From c38ef62fd4a36f6c712b320f701c5f9b8e51b32e Mon Sep 17 00:00:00 2001 From: smilkuri Date: Wed, 26 Nov 2025 17:00:38 +0000 Subject: [PATCH 1/2] chore(codegen): generate corresponding clients for conflict params --- clients/client-s3/src/endpoint/EndpointParameters.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/clients/client-s3/src/endpoint/EndpointParameters.ts b/clients/client-s3/src/endpoint/EndpointParameters.ts index ef8c8531dc360..ac1a97e08cc15 100644 --- a/clients/client-s3/src/endpoint/EndpointParameters.ts +++ b/clients/client-s3/src/endpoint/EndpointParameters.ts @@ -5,6 +5,9 @@ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provi * @public */ export interface ClientInputEndpointParameters { + clientContextParams?: { + disableS3ExpressSessionAuth?: boolean | undefined | Provider; + }; region?: string | undefined | Provider; useFipsEndpoint?: boolean | undefined | Provider; useDualstackEndpoint?: boolean | undefined | Provider; @@ -17,8 +20,14 @@ export interface ClientInputEndpointParameters { disableS3ExpressSessionAuth?: boolean | undefined | Provider; } -export type ClientResolvedEndpointParameters = Omit & { +export type ClientResolvedEndpointParameters = Omit< + ClientInputEndpointParameters, + "endpoint" | "clientContextParams" +> & { defaultSigningName: string; + clientContextParams: { + disableS3ExpressSessionAuth?: boolean | undefined | Provider; + }; }; export const resolveClientEndpointParameters = ( @@ -32,6 +41,7 @@ export const resolveClientEndpointParameters = ( useGlobalEndpoint: options.useGlobalEndpoint ?? false, disableMultiregionAccessPoints: options.disableMultiregionAccessPoints ?? false, defaultSigningName: "s3", + clientContextParams: options.clientContextParams ?? {}, }); }; From 4b00871768d82b8d7f129a88e51612ec5c0fbddf Mon Sep 17 00:00:00 2001 From: smilkuri Date: Mon, 1 Dec 2025 20:45:02 +0000 Subject: [PATCH 2/2] chore(codegen): changes after building protocol-test codegen --- clients/client-accessanalyzer/package.json | 12 +- .../src/AccessAnalyzer.ts | 4 +- .../src/AccessAnalyzerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/ApplyArchiveRuleCommand.ts | 10 +- .../commands/CancelPolicyGenerationCommand.ts | 10 +- .../commands/CheckAccessNotGrantedCommand.ts | 10 +- .../src/commands/CheckNoNewAccessCommand.ts | 10 +- .../commands/CheckNoPublicAccessCommand.ts | 10 +- .../commands/CreateAccessPreviewCommand.ts | 10 +- .../src/commands/CreateAnalyzerCommand.ts | 10 +- .../src/commands/CreateArchiveRuleCommand.ts | 10 +- .../src/commands/DeleteAnalyzerCommand.ts | 10 +- .../src/commands/DeleteArchiveRuleCommand.ts | 10 +- .../GenerateFindingRecommendationCommand.ts | 10 +- .../src/commands/GetAccessPreviewCommand.ts | 10 +- .../commands/GetAnalyzedResourceCommand.ts | 10 +- .../src/commands/GetAnalyzerCommand.ts | 10 +- .../src/commands/GetArchiveRuleCommand.ts | 10 +- .../src/commands/GetFindingCommand.ts | 10 +- .../GetFindingRecommendationCommand.ts | 10 +- .../src/commands/GetFindingV2Command.ts | 10 +- .../commands/GetFindingsStatisticsCommand.ts | 10 +- .../src/commands/GetGeneratedPolicyCommand.ts | 10 +- .../ListAccessPreviewFindingsCommand.ts | 10 +- .../src/commands/ListAccessPreviewsCommand.ts | 10 +- .../commands/ListAnalyzedResourcesCommand.ts | 10 +- .../src/commands/ListAnalyzersCommand.ts | 10 +- .../src/commands/ListArchiveRulesCommand.ts | 10 +- .../src/commands/ListFindingsCommand.ts | 10 +- .../src/commands/ListFindingsV2Command.ts | 10 +- .../commands/ListPolicyGenerationsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../commands/StartPolicyGenerationCommand.ts | 10 +- .../src/commands/StartResourceScanCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateAnalyzerCommand.ts | 10 +- .../src/commands/UpdateArchiveRuleCommand.ts | 10 +- .../src/commands/UpdateFindingsCommand.ts | 10 +- .../src/commands/ValidatePolicyCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/AccessAnalyzerServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetFindingRecommendationPaginator.ts | 2 +- .../src/pagination/GetFindingV2Paginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAccessPreviewFindingsPaginator.ts | 2 +- .../pagination/ListAccessPreviewsPaginator.ts | 2 +- .../ListAnalyzedResourcesPaginator.ts | 2 +- .../src/pagination/ListAnalyzersPaginator.ts | 2 +- .../pagination/ListArchiveRulesPaginator.ts | 2 +- .../src/pagination/ListFindingsPaginator.ts | 2 +- .../src/pagination/ListFindingsV2Paginator.ts | 2 +- .../ListPolicyGenerationsPaginator.ts | 2 +- .../src/pagination/ValidatePolicyPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-account/package.json | 12 +- clients/client-account/src/Account.ts | 4 +- clients/client-account/src/AccountClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptPrimaryEmailUpdateCommand.ts | 6 +- .../commands/DeleteAlternateContactCommand.ts | 6 +- .../src/commands/DisableRegionCommand.ts | 6 +- .../src/commands/EnableRegionCommand.ts | 6 +- .../commands/GetAccountInformationCommand.ts | 6 +- .../commands/GetAlternateContactCommand.ts | 6 +- .../commands/GetContactInformationCommand.ts | 6 +- .../src/commands/GetPrimaryEmailCommand.ts | 6 +- .../src/commands/GetRegionOptStatusCommand.ts | 6 +- .../src/commands/ListRegionsCommand.ts | 6 +- .../src/commands/PutAccountNameCommand.ts | 6 +- .../commands/PutAlternateContactCommand.ts | 6 +- .../commands/PutContactInformationCommand.ts | 6 +- .../StartPrimaryEmailUpdateCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AccountServiceException.ts | 2 +- clients/client-account/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListRegionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-account/src/runtimeConfig.ts | 8 +- .../client-account/src/runtimeExtensions.ts | 2 +- .../client-account/src/schemas/schemas_0.ts | 2 +- clients/client-acm-pca/package.json | 12 +- clients/client-acm-pca/src/ACMPCA.ts | 4 +- clients/client-acm-pca/src/ACMPCAClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...eCertificateAuthorityAuditReportCommand.ts | 6 +- .../CreateCertificateAuthorityCommand.ts | 6 +- .../src/commands/CreatePermissionCommand.ts | 6 +- .../DeleteCertificateAuthorityCommand.ts | 6 +- .../src/commands/DeletePermissionCommand.ts | 6 +- .../src/commands/DeletePolicyCommand.ts | 6 +- ...eCertificateAuthorityAuditReportCommand.ts | 6 +- .../DescribeCertificateAuthorityCommand.ts | 6 +- ...tCertificateAuthorityCertificateCommand.ts | 6 +- .../GetCertificateAuthorityCsrCommand.ts | 6 +- .../src/commands/GetCertificateCommand.ts | 6 +- .../src/commands/GetPolicyCommand.ts | 6 +- ...tCertificateAuthorityCertificateCommand.ts | 6 +- .../src/commands/IssueCertificateCommand.ts | 6 +- .../ListCertificateAuthoritiesCommand.ts | 6 +- .../src/commands/ListPermissionsCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../src/commands/PutPolicyCommand.ts | 6 +- .../RestoreCertificateAuthorityCommand.ts | 6 +- .../src/commands/RevokeCertificateCommand.ts | 6 +- .../TagCertificateAuthorityCommand.ts | 6 +- .../UntagCertificateAuthorityCommand.ts | 6 +- .../UpdateCertificateAuthorityCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ACMPCAServiceException.ts | 2 +- clients/client-acm-pca/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListCertificateAuthoritiesPaginator.ts | 2 +- .../pagination/ListPermissionsPaginator.ts | 2 +- .../src/pagination/ListTagsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-acm-pca/src/runtimeConfig.ts | 8 +- .../client-acm-pca/src/runtimeExtensions.ts | 2 +- .../client-acm-pca/src/schemas/schemas_0.ts | 2 +- clients/client-acm/package.json | 12 +- clients/client-acm/src/ACM.ts | 4 +- clients/client-acm/src/ACMClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AddTagsToCertificateCommand.ts | 6 +- .../src/commands/DeleteCertificateCommand.ts | 6 +- .../commands/DescribeCertificateCommand.ts | 6 +- .../src/commands/ExportCertificateCommand.ts | 6 +- .../GetAccountConfigurationCommand.ts | 6 +- .../src/commands/GetCertificateCommand.ts | 6 +- .../src/commands/ImportCertificateCommand.ts | 6 +- .../src/commands/ListCertificatesCommand.ts | 6 +- .../commands/ListTagsForCertificateCommand.ts | 6 +- .../PutAccountConfigurationCommand.ts | 6 +- .../RemoveTagsFromCertificateCommand.ts | 6 +- .../src/commands/RenewCertificateCommand.ts | 6 +- .../src/commands/RequestCertificateCommand.ts | 6 +- .../commands/ResendValidationEmailCommand.ts | 6 +- .../src/commands/RevokeCertificateCommand.ts | 6 +- .../UpdateCertificateOptionsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-acm/src/extensionConfiguration.ts | 8 +- .../src/models/ACMServiceException.ts | 2 +- clients/client-acm/src/models/errors.ts | 2 +- .../client-acm/src/pagination/Interfaces.ts | 2 +- .../pagination/ListCertificatesPaginator.ts | 2 +- .../client-acm/src/runtimeConfig.browser.ts | 7 +- .../client-acm/src/runtimeConfig.native.ts | 2 +- .../client-acm/src/runtimeConfig.shared.ts | 4 +- clients/client-acm/src/runtimeConfig.ts | 8 +- clients/client-acm/src/runtimeExtensions.ts | 2 +- clients/client-acm/src/schemas/schemas_0.ts | 2 +- clients/client-aiops/package.json | 12 +- clients/client-aiops/src/AIOps.ts | 4 +- clients/client-aiops/src/AIOpsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateInvestigationGroupCommand.ts | 6 +- .../DeleteInvestigationGroupCommand.ts | 6 +- .../DeleteInvestigationGroupPolicyCommand.ts | 6 +- .../commands/GetInvestigationGroupCommand.ts | 6 +- .../GetInvestigationGroupPolicyCommand.ts | 6 +- .../ListInvestigationGroupsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../PutInvestigationGroupPolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateInvestigationGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AIOpsServiceException.ts | 2 +- clients/client-aiops/src/models/errors.ts | 2 +- .../client-aiops/src/pagination/Interfaces.ts | 2 +- .../ListInvestigationGroupsPaginator.ts | 2 +- .../client-aiops/src/runtimeConfig.browser.ts | 7 +- .../client-aiops/src/runtimeConfig.native.ts | 2 +- .../client-aiops/src/runtimeConfig.shared.ts | 4 +- clients/client-aiops/src/runtimeConfig.ts | 8 +- clients/client-aiops/src/runtimeExtensions.ts | 2 +- clients/client-aiops/src/schemas/schemas_0.ts | 2 +- clients/client-amp/package.json | 12 +- clients/client-amp/src/Amp.ts | 4 +- clients/client-amp/src/AmpClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateAlertManagerDefinitionCommand.ts | 6 +- .../commands/CreateAnomalyDetectorCommand.ts | 6 +- .../CreateLoggingConfigurationCommand.ts | 6 +- .../CreateQueryLoggingConfigurationCommand.ts | 9 +- .../CreateRuleGroupsNamespaceCommand.ts | 6 +- .../src/commands/CreateScraperCommand.ts | 6 +- .../src/commands/CreateWorkspaceCommand.ts | 6 +- .../DeleteAlertManagerDefinitionCommand.ts | 6 +- .../commands/DeleteAnomalyDetectorCommand.ts | 6 +- .../DeleteLoggingConfigurationCommand.ts | 6 +- .../DeleteQueryLoggingConfigurationCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../DeleteRuleGroupsNamespaceCommand.ts | 6 +- .../src/commands/DeleteScraperCommand.ts | 6 +- ...eleteScraperLoggingConfigurationCommand.ts | 6 +- .../src/commands/DeleteWorkspaceCommand.ts | 6 +- .../DescribeAlertManagerDefinitionCommand.ts | 6 +- .../DescribeAnomalyDetectorCommand.ts | 6 +- .../DescribeLoggingConfigurationCommand.ts | 6 +- ...escribeQueryLoggingConfigurationCommand.ts | 6 +- .../commands/DescribeResourcePolicyCommand.ts | 6 +- .../DescribeRuleGroupsNamespaceCommand.ts | 6 +- .../src/commands/DescribeScraperCommand.ts | 6 +- ...cribeScraperLoggingConfigurationCommand.ts | 6 +- .../src/commands/DescribeWorkspaceCommand.ts | 6 +- .../DescribeWorkspaceConfigurationCommand.ts | 6 +- .../GetDefaultScraperConfigurationCommand.ts | 6 +- .../commands/ListAnomalyDetectorsCommand.ts | 6 +- .../ListRuleGroupsNamespacesCommand.ts | 6 +- .../src/commands/ListScrapersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWorkspacesCommand.ts | 6 +- .../PutAlertManagerDefinitionCommand.ts | 6 +- .../src/commands/PutAnomalyDetectorCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../commands/PutRuleGroupsNamespaceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateLoggingConfigurationCommand.ts | 6 +- .../UpdateQueryLoggingConfigurationCommand.ts | 9 +- .../src/commands/UpdateScraperCommand.ts | 6 +- ...pdateScraperLoggingConfigurationCommand.ts | 6 +- .../commands/UpdateWorkspaceAliasCommand.ts | 6 +- .../UpdateWorkspaceConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-amp/src/extensionConfiguration.ts | 8 +- .../src/models/AmpServiceException.ts | 2 +- clients/client-amp/src/models/errors.ts | 2 +- .../client-amp/src/pagination/Interfaces.ts | 2 +- .../ListAnomalyDetectorsPaginator.ts | 2 +- .../ListRuleGroupsNamespacesPaginator.ts | 2 +- .../src/pagination/ListScrapersPaginator.ts | 2 +- .../src/pagination/ListWorkspacesPaginator.ts | 2 +- .../client-amp/src/runtimeConfig.browser.ts | 7 +- .../client-amp/src/runtimeConfig.native.ts | 2 +- .../client-amp/src/runtimeConfig.shared.ts | 4 +- clients/client-amp/src/runtimeConfig.ts | 8 +- clients/client-amp/src/runtimeExtensions.ts | 2 +- clients/client-amp/src/schemas/schemas_0.ts | 2 +- clients/client-amplify/package.json | 12 +- clients/client-amplify/src/Amplify.ts | 4 +- clients/client-amplify/src/AmplifyClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateAppCommand.ts | 6 +- .../CreateBackendEnvironmentCommand.ts | 6 +- .../src/commands/CreateBranchCommand.ts | 6 +- .../src/commands/CreateDeploymentCommand.ts | 6 +- .../CreateDomainAssociationCommand.ts | 6 +- .../src/commands/CreateWebhookCommand.ts | 6 +- .../src/commands/DeleteAppCommand.ts | 6 +- .../DeleteBackendEnvironmentCommand.ts | 6 +- .../src/commands/DeleteBranchCommand.ts | 6 +- .../DeleteDomainAssociationCommand.ts | 6 +- .../src/commands/DeleteJobCommand.ts | 6 +- .../src/commands/DeleteWebhookCommand.ts | 6 +- .../src/commands/GenerateAccessLogsCommand.ts | 6 +- .../src/commands/GetAppCommand.ts | 6 +- .../src/commands/GetArtifactUrlCommand.ts | 6 +- .../commands/GetBackendEnvironmentCommand.ts | 6 +- .../src/commands/GetBranchCommand.ts | 6 +- .../commands/GetDomainAssociationCommand.ts | 6 +- .../src/commands/GetJobCommand.ts | 6 +- .../src/commands/GetWebhookCommand.ts | 6 +- .../src/commands/ListAppsCommand.ts | 6 +- .../src/commands/ListArtifactsCommand.ts | 6 +- .../ListBackendEnvironmentsCommand.ts | 6 +- .../src/commands/ListBranchesCommand.ts | 6 +- .../commands/ListDomainAssociationsCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWebhooksCommand.ts | 6 +- .../src/commands/StartDeploymentCommand.ts | 6 +- .../src/commands/StartJobCommand.ts | 6 +- .../src/commands/StopJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAppCommand.ts | 6 +- .../src/commands/UpdateBranchCommand.ts | 6 +- .../UpdateDomainAssociationCommand.ts | 6 +- .../src/commands/UpdateWebhookCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AmplifyServiceException.ts | 2 +- clients/client-amplify/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAppsPaginator.ts | 2 +- .../src/pagination/ListBranchesPaginator.ts | 2 +- .../ListDomainAssociationsPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-amplify/src/runtimeConfig.ts | 8 +- .../client-amplify/src/runtimeExtensions.ts | 2 +- .../client-amplify/src/schemas/schemas_0.ts | 2 +- clients/client-amplifybackend/package.json | 12 +- .../src/AmplifyBackend.ts | 4 +- .../src/AmplifyBackendClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CloneBackendCommand.ts | 10 +- .../src/commands/CreateBackendAPICommand.ts | 10 +- .../src/commands/CreateBackendAuthCommand.ts | 10 +- .../src/commands/CreateBackendCommand.ts | 10 +- .../commands/CreateBackendConfigCommand.ts | 10 +- .../commands/CreateBackendStorageCommand.ts | 10 +- .../src/commands/CreateTokenCommand.ts | 10 +- .../src/commands/DeleteBackendAPICommand.ts | 10 +- .../src/commands/DeleteBackendAuthCommand.ts | 10 +- .../src/commands/DeleteBackendCommand.ts | 10 +- .../commands/DeleteBackendStorageCommand.ts | 10 +- .../src/commands/DeleteTokenCommand.ts | 10 +- .../GenerateBackendAPIModelsCommand.ts | 10 +- .../src/commands/GetBackendAPICommand.ts | 10 +- .../commands/GetBackendAPIModelsCommand.ts | 10 +- .../src/commands/GetBackendAuthCommand.ts | 10 +- .../src/commands/GetBackendCommand.ts | 10 +- .../src/commands/GetBackendJobCommand.ts | 10 +- .../src/commands/GetBackendStorageCommand.ts | 10 +- .../src/commands/GetTokenCommand.ts | 10 +- .../src/commands/ImportBackendAuthCommand.ts | 10 +- .../commands/ImportBackendStorageCommand.ts | 10 +- .../src/commands/ListBackendJobsCommand.ts | 10 +- .../src/commands/ListS3BucketsCommand.ts | 10 +- .../src/commands/RemoveAllBackendsCommand.ts | 10 +- .../commands/RemoveBackendConfigCommand.ts | 10 +- .../src/commands/UpdateBackendAPICommand.ts | 10 +- .../src/commands/UpdateBackendAuthCommand.ts | 10 +- .../commands/UpdateBackendConfigCommand.ts | 10 +- .../src/commands/UpdateBackendJobCommand.ts | 10 +- .../commands/UpdateBackendStorageCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/AmplifyBackendServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-amplifyuibuilder/package.json | 12 +- .../src/AmplifyUIBuilder.ts | 4 +- .../src/AmplifyUIBuilderClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateComponentCommand.ts | 10 +- .../src/commands/CreateFormCommand.ts | 10 +- .../src/commands/CreateThemeCommand.ts | 10 +- .../src/commands/DeleteComponentCommand.ts | 10 +- .../src/commands/DeleteFormCommand.ts | 10 +- .../src/commands/DeleteThemeCommand.ts | 10 +- .../commands/ExchangeCodeForTokenCommand.ts | 10 +- .../src/commands/ExportComponentsCommand.ts | 10 +- .../src/commands/ExportFormsCommand.ts | 10 +- .../src/commands/ExportThemesCommand.ts | 10 +- .../src/commands/GetCodegenJobCommand.ts | 10 +- .../src/commands/GetComponentCommand.ts | 10 +- .../src/commands/GetFormCommand.ts | 10 +- .../src/commands/GetMetadataCommand.ts | 10 +- .../src/commands/GetThemeCommand.ts | 10 +- .../src/commands/ListCodegenJobsCommand.ts | 10 +- .../src/commands/ListComponentsCommand.ts | 10 +- .../src/commands/ListFormsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/ListThemesCommand.ts | 10 +- .../src/commands/PutMetadataFlagCommand.ts | 10 +- .../src/commands/RefreshTokenCommand.ts | 10 +- .../src/commands/StartCodegenJobCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateComponentCommand.ts | 10 +- .../src/commands/UpdateFormCommand.ts | 10 +- .../src/commands/UpdateThemeCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../AmplifyUIBuilderServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../pagination/ExportComponentsPaginator.ts | 2 +- .../src/pagination/ExportFormsPaginator.ts | 2 +- .../src/pagination/ExportThemesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListCodegenJobsPaginator.ts | 2 +- .../src/pagination/ListComponentsPaginator.ts | 2 +- .../src/pagination/ListFormsPaginator.ts | 2 +- .../src/pagination/ListThemesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-api-gateway/package.json | 12 +- clients/client-api-gateway/src/APIGateway.ts | 514 +- .../src/APIGatewayClient.ts | 340 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateApiKeyCommand.ts | 6 +- .../src/commands/CreateAuthorizerCommand.ts | 6 +- .../commands/CreateBasePathMappingCommand.ts | 6 +- .../src/commands/CreateDeploymentCommand.ts | 6 +- .../CreateDocumentationPartCommand.ts | 6 +- .../CreateDocumentationVersionCommand.ts | 6 +- ...reateDomainNameAccessAssociationCommand.ts | 6 +- .../src/commands/CreateDomainNameCommand.ts | 6 +- .../src/commands/CreateModelCommand.ts | 6 +- .../commands/CreateRequestValidatorCommand.ts | 6 +- .../src/commands/CreateResourceCommand.ts | 6 +- .../src/commands/CreateRestApiCommand.ts | 6 +- .../src/commands/CreateStageCommand.ts | 6 +- .../src/commands/CreateUsagePlanCommand.ts | 6 +- .../src/commands/CreateUsagePlanKeyCommand.ts | 6 +- .../src/commands/CreateVpcLinkCommand.ts | 6 +- .../src/commands/DeleteApiKeyCommand.ts | 6 +- .../src/commands/DeleteAuthorizerCommand.ts | 6 +- .../commands/DeleteBasePathMappingCommand.ts | 6 +- .../DeleteClientCertificateCommand.ts | 6 +- .../src/commands/DeleteDeploymentCommand.ts | 6 +- .../DeleteDocumentationPartCommand.ts | 6 +- .../DeleteDocumentationVersionCommand.ts | 6 +- ...eleteDomainNameAccessAssociationCommand.ts | 6 +- .../src/commands/DeleteDomainNameCommand.ts | 6 +- .../commands/DeleteGatewayResponseCommand.ts | 6 +- .../src/commands/DeleteIntegrationCommand.ts | 6 +- .../DeleteIntegrationResponseCommand.ts | 6 +- .../src/commands/DeleteMethodCommand.ts | 6 +- .../commands/DeleteMethodResponseCommand.ts | 6 +- .../src/commands/DeleteModelCommand.ts | 6 +- .../commands/DeleteRequestValidatorCommand.ts | 6 +- .../src/commands/DeleteResourceCommand.ts | 6 +- .../src/commands/DeleteRestApiCommand.ts | 6 +- .../src/commands/DeleteStageCommand.ts | 6 +- .../src/commands/DeleteUsagePlanCommand.ts | 6 +- .../src/commands/DeleteUsagePlanKeyCommand.ts | 6 +- .../src/commands/DeleteVpcLinkCommand.ts | 6 +- .../FlushStageAuthorizersCacheCommand.ts | 6 +- .../src/commands/FlushStageCacheCommand.ts | 6 +- .../GenerateClientCertificateCommand.ts | 6 +- .../src/commands/GetAccountCommand.ts | 6 +- .../src/commands/GetApiKeyCommand.ts | 6 +- .../src/commands/GetApiKeysCommand.ts | 6 +- .../src/commands/GetAuthorizerCommand.ts | 6 +- .../src/commands/GetAuthorizersCommand.ts | 6 +- .../src/commands/GetBasePathMappingCommand.ts | 6 +- .../commands/GetBasePathMappingsCommand.ts | 6 +- .../commands/GetClientCertificateCommand.ts | 6 +- .../commands/GetClientCertificatesCommand.ts | 6 +- .../src/commands/GetDeploymentCommand.ts | 6 +- .../src/commands/GetDeploymentsCommand.ts | 6 +- .../commands/GetDocumentationPartCommand.ts | 6 +- .../commands/GetDocumentationPartsCommand.ts | 6 +- .../GetDocumentationVersionCommand.ts | 6 +- .../GetDocumentationVersionsCommand.ts | 6 +- .../GetDomainNameAccessAssociationsCommand.ts | 6 +- .../src/commands/GetDomainNameCommand.ts | 6 +- .../src/commands/GetDomainNamesCommand.ts | 6 +- .../src/commands/GetExportCommand.ts | 6 +- .../src/commands/GetGatewayResponseCommand.ts | 6 +- .../commands/GetGatewayResponsesCommand.ts | 6 +- .../src/commands/GetIntegrationCommand.ts | 6 +- .../commands/GetIntegrationResponseCommand.ts | 6 +- .../src/commands/GetMethodCommand.ts | 6 +- .../src/commands/GetMethodResponseCommand.ts | 6 +- .../src/commands/GetModelCommand.ts | 6 +- .../src/commands/GetModelTemplateCommand.ts | 6 +- .../src/commands/GetModelsCommand.ts | 6 +- .../commands/GetRequestValidatorCommand.ts | 6 +- .../commands/GetRequestValidatorsCommand.ts | 6 +- .../src/commands/GetResourceCommand.ts | 6 +- .../src/commands/GetResourcesCommand.ts | 6 +- .../src/commands/GetRestApiCommand.ts | 6 +- .../src/commands/GetRestApisCommand.ts | 6 +- .../src/commands/GetSdkCommand.ts | 6 +- .../src/commands/GetSdkTypeCommand.ts | 6 +- .../src/commands/GetSdkTypesCommand.ts | 6 +- .../src/commands/GetStageCommand.ts | 6 +- .../src/commands/GetStagesCommand.ts | 6 +- .../src/commands/GetTagsCommand.ts | 6 +- .../src/commands/GetUsageCommand.ts | 6 +- .../src/commands/GetUsagePlanCommand.ts | 6 +- .../src/commands/GetUsagePlanKeyCommand.ts | 6 +- .../src/commands/GetUsagePlanKeysCommand.ts | 6 +- .../src/commands/GetUsagePlansCommand.ts | 6 +- .../src/commands/GetVpcLinkCommand.ts | 6 +- .../src/commands/GetVpcLinksCommand.ts | 6 +- .../src/commands/ImportApiKeysCommand.ts | 6 +- .../ImportDocumentationPartsCommand.ts | 6 +- .../src/commands/ImportRestApiCommand.ts | 6 +- .../src/commands/PutGatewayResponseCommand.ts | 6 +- .../src/commands/PutIntegrationCommand.ts | 6 +- .../commands/PutIntegrationResponseCommand.ts | 6 +- .../src/commands/PutMethodCommand.ts | 6 +- .../src/commands/PutMethodResponseCommand.ts | 6 +- .../src/commands/PutRestApiCommand.ts | 6 +- ...ejectDomainNameAccessAssociationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../commands/TestInvokeAuthorizerCommand.ts | 6 +- .../src/commands/TestInvokeMethodCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAccountCommand.ts | 6 +- .../src/commands/UpdateApiKeyCommand.ts | 6 +- .../src/commands/UpdateAuthorizerCommand.ts | 6 +- .../commands/UpdateBasePathMappingCommand.ts | 6 +- .../UpdateClientCertificateCommand.ts | 6 +- .../src/commands/UpdateDeploymentCommand.ts | 6 +- .../UpdateDocumentationPartCommand.ts | 6 +- .../UpdateDocumentationVersionCommand.ts | 6 +- .../src/commands/UpdateDomainNameCommand.ts | 6 +- .../commands/UpdateGatewayResponseCommand.ts | 6 +- .../src/commands/UpdateIntegrationCommand.ts | 6 +- .../UpdateIntegrationResponseCommand.ts | 6 +- .../src/commands/UpdateMethodCommand.ts | 6 +- .../commands/UpdateMethodResponseCommand.ts | 6 +- .../src/commands/UpdateModelCommand.ts | 6 +- .../commands/UpdateRequestValidatorCommand.ts | 6 +- .../src/commands/UpdateResourceCommand.ts | 6 +- .../src/commands/UpdateRestApiCommand.ts | 6 +- .../src/commands/UpdateStageCommand.ts | 6 +- .../src/commands/UpdateUsageCommand.ts | 6 +- .../src/commands/UpdateUsagePlanCommand.ts | 6 +- .../src/commands/UpdateVpcLinkCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/APIGatewayServiceException.ts | 2 +- .../client-api-gateway/src/models/errors.ts | 2 +- .../client-api-gateway/src/models/models_0.ts | 2 +- .../src/pagination/GetApiKeysPaginator.ts | 2 +- .../GetBasePathMappingsPaginator.ts | 2 +- .../GetClientCertificatesPaginator.ts | 2 +- .../src/pagination/GetDeploymentsPaginator.ts | 2 +- .../src/pagination/GetDomainNamesPaginator.ts | 2 +- .../src/pagination/GetModelsPaginator.ts | 2 +- .../src/pagination/GetResourcesPaginator.ts | 2 +- .../src/pagination/GetRestApisPaginator.ts | 2 +- .../src/pagination/GetUsagePaginator.ts | 2 +- .../pagination/GetUsagePlanKeysPaginator.ts | 2 +- .../src/pagination/GetUsagePlansPaginator.ts | 2 +- .../src/pagination/GetVpcLinksPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-api-gateway/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ApiGatewayManagementApi.ts | 4 +- .../src/ApiGatewayManagementApiClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DeleteConnectionCommand.ts | 6 +- .../src/commands/GetConnectionCommand.ts | 6 +- .../src/commands/PostToConnectionCommand.ts | 4 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...ApiGatewayManagementApiServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-apigatewayv2/package.json | 12 +- .../client-apigatewayv2/src/ApiGatewayV2.ts | 4 +- .../src/ApiGatewayV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateApiCommand.ts | 6 +- .../src/commands/CreateApiMappingCommand.ts | 6 +- .../src/commands/CreateAuthorizerCommand.ts | 6 +- .../src/commands/CreateDeploymentCommand.ts | 6 +- .../src/commands/CreateDomainNameCommand.ts | 6 +- .../src/commands/CreateIntegrationCommand.ts | 6 +- .../CreateIntegrationResponseCommand.ts | 6 +- .../src/commands/CreateModelCommand.ts | 6 +- .../src/commands/CreatePortalCommand.ts | 6 +- .../commands/CreatePortalProductCommand.ts | 6 +- .../src/commands/CreateProductPageCommand.ts | 6 +- .../CreateProductRestEndpointPageCommand.ts | 6 +- .../src/commands/CreateRouteCommand.ts | 6 +- .../commands/CreateRouteResponseCommand.ts | 6 +- .../src/commands/CreateRoutingRuleCommand.ts | 6 +- .../src/commands/CreateStageCommand.ts | 6 +- .../src/commands/CreateVpcLinkCommand.ts | 6 +- .../DeleteAccessLogSettingsCommand.ts | 6 +- .../src/commands/DeleteApiCommand.ts | 6 +- .../src/commands/DeleteApiMappingCommand.ts | 6 +- .../src/commands/DeleteAuthorizerCommand.ts | 6 +- .../DeleteCorsConfigurationCommand.ts | 6 +- .../src/commands/DeleteDeploymentCommand.ts | 6 +- .../src/commands/DeleteDomainNameCommand.ts | 6 +- .../src/commands/DeleteIntegrationCommand.ts | 6 +- .../DeleteIntegrationResponseCommand.ts | 6 +- .../src/commands/DeleteModelCommand.ts | 6 +- .../src/commands/DeletePortalCommand.ts | 6 +- .../commands/DeletePortalProductCommand.ts | 6 +- ...DeletePortalProductSharingPolicyCommand.ts | 6 +- .../src/commands/DeleteProductPageCommand.ts | 6 +- .../DeleteProductRestEndpointPageCommand.ts | 6 +- .../src/commands/DeleteRouteCommand.ts | 6 +- .../DeleteRouteRequestParameterCommand.ts | 6 +- .../commands/DeleteRouteResponseCommand.ts | 6 +- .../commands/DeleteRouteSettingsCommand.ts | 6 +- .../src/commands/DeleteRoutingRuleCommand.ts | 6 +- .../src/commands/DeleteStageCommand.ts | 6 +- .../src/commands/DeleteVpcLinkCommand.ts | 6 +- .../src/commands/DisablePortalCommand.ts | 6 +- .../src/commands/ExportApiCommand.ts | 6 +- .../src/commands/GetApiCommand.ts | 6 +- .../src/commands/GetApiMappingCommand.ts | 6 +- .../src/commands/GetApiMappingsCommand.ts | 6 +- .../src/commands/GetApisCommand.ts | 6 +- .../src/commands/GetAuthorizerCommand.ts | 6 +- .../src/commands/GetAuthorizersCommand.ts | 6 +- .../src/commands/GetDeploymentCommand.ts | 6 +- .../src/commands/GetDeploymentsCommand.ts | 6 +- .../src/commands/GetDomainNameCommand.ts | 6 +- .../src/commands/GetDomainNamesCommand.ts | 6 +- .../src/commands/GetIntegrationCommand.ts | 6 +- .../commands/GetIntegrationResponseCommand.ts | 6 +- .../GetIntegrationResponsesCommand.ts | 6 +- .../src/commands/GetIntegrationsCommand.ts | 6 +- .../src/commands/GetModelCommand.ts | 6 +- .../src/commands/GetModelTemplateCommand.ts | 6 +- .../src/commands/GetModelsCommand.ts | 6 +- .../src/commands/GetPortalCommand.ts | 6 +- .../src/commands/GetPortalProductCommand.ts | 6 +- .../GetPortalProductSharingPolicyCommand.ts | 6 +- .../src/commands/GetProductPageCommand.ts | 6 +- .../GetProductRestEndpointPageCommand.ts | 6 +- .../src/commands/GetRouteCommand.ts | 6 +- .../src/commands/GetRouteResponseCommand.ts | 6 +- .../src/commands/GetRouteResponsesCommand.ts | 6 +- .../src/commands/GetRoutesCommand.ts | 6 +- .../src/commands/GetRoutingRuleCommand.ts | 6 +- .../src/commands/GetStageCommand.ts | 6 +- .../src/commands/GetStagesCommand.ts | 6 +- .../src/commands/GetTagsCommand.ts | 6 +- .../src/commands/GetVpcLinkCommand.ts | 6 +- .../src/commands/GetVpcLinksCommand.ts | 6 +- .../src/commands/ImportApiCommand.ts | 6 +- .../src/commands/ListPortalProductsCommand.ts | 6 +- .../src/commands/ListPortalsCommand.ts | 6 +- .../src/commands/ListProductPagesCommand.ts | 6 +- .../ListProductRestEndpointPagesCommand.ts | 6 +- .../src/commands/ListRoutingRulesCommand.ts | 6 +- .../src/commands/PreviewPortalCommand.ts | 6 +- .../src/commands/PublishPortalCommand.ts | 6 +- .../PutPortalProductSharingPolicyCommand.ts | 6 +- .../src/commands/PutRoutingRuleCommand.ts | 6 +- .../src/commands/ReimportApiCommand.ts | 6 +- .../commands/ResetAuthorizersCacheCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApiCommand.ts | 6 +- .../src/commands/UpdateApiMappingCommand.ts | 6 +- .../src/commands/UpdateAuthorizerCommand.ts | 6 +- .../src/commands/UpdateDeploymentCommand.ts | 6 +- .../src/commands/UpdateDomainNameCommand.ts | 6 +- .../src/commands/UpdateIntegrationCommand.ts | 6 +- .../UpdateIntegrationResponseCommand.ts | 6 +- .../src/commands/UpdateModelCommand.ts | 6 +- .../src/commands/UpdatePortalCommand.ts | 6 +- .../commands/UpdatePortalProductCommand.ts | 6 +- .../src/commands/UpdateProductPageCommand.ts | 6 +- .../UpdateProductRestEndpointPageCommand.ts | 6 +- .../src/commands/UpdateRouteCommand.ts | 6 +- .../commands/UpdateRouteResponseCommand.ts | 6 +- .../src/commands/UpdateStageCommand.ts | 6 +- .../src/commands/UpdateVpcLinkCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ApiGatewayV2ServiceException.ts | 2 +- .../client-apigatewayv2/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListRoutingRulesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-apigatewayv2/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-app-mesh/package.json | 12 +- clients/client-app-mesh/src/AppMesh.ts | 4 +- clients/client-app-mesh/src/AppMeshClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateGatewayRouteCommand.ts | 6 +- .../src/commands/CreateMeshCommand.ts | 6 +- .../src/commands/CreateRouteCommand.ts | 6 +- .../commands/CreateVirtualGatewayCommand.ts | 6 +- .../src/commands/CreateVirtualNodeCommand.ts | 6 +- .../commands/CreateVirtualRouterCommand.ts | 6 +- .../commands/CreateVirtualServiceCommand.ts | 6 +- .../src/commands/DeleteGatewayRouteCommand.ts | 6 +- .../src/commands/DeleteMeshCommand.ts | 6 +- .../src/commands/DeleteRouteCommand.ts | 6 +- .../commands/DeleteVirtualGatewayCommand.ts | 6 +- .../src/commands/DeleteVirtualNodeCommand.ts | 6 +- .../commands/DeleteVirtualRouterCommand.ts | 6 +- .../commands/DeleteVirtualServiceCommand.ts | 6 +- .../commands/DescribeGatewayRouteCommand.ts | 6 +- .../src/commands/DescribeMeshCommand.ts | 6 +- .../src/commands/DescribeRouteCommand.ts | 6 +- .../commands/DescribeVirtualGatewayCommand.ts | 6 +- .../commands/DescribeVirtualNodeCommand.ts | 6 +- .../commands/DescribeVirtualRouterCommand.ts | 6 +- .../commands/DescribeVirtualServiceCommand.ts | 6 +- .../src/commands/ListGatewayRoutesCommand.ts | 6 +- .../src/commands/ListMeshesCommand.ts | 6 +- .../src/commands/ListRoutesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListVirtualGatewaysCommand.ts | 6 +- .../src/commands/ListVirtualNodesCommand.ts | 6 +- .../src/commands/ListVirtualRoutersCommand.ts | 6 +- .../commands/ListVirtualServicesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateGatewayRouteCommand.ts | 6 +- .../src/commands/UpdateMeshCommand.ts | 6 +- .../src/commands/UpdateRouteCommand.ts | 6 +- .../commands/UpdateVirtualGatewayCommand.ts | 6 +- .../src/commands/UpdateVirtualNodeCommand.ts | 6 +- .../commands/UpdateVirtualRouterCommand.ts | 6 +- .../commands/UpdateVirtualServiceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AppMeshServiceException.ts | 2 +- clients/client-app-mesh/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListGatewayRoutesPaginator.ts | 2 +- .../src/pagination/ListMeshesPaginator.ts | 2 +- .../src/pagination/ListRoutesPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../ListVirtualGatewaysPaginator.ts | 2 +- .../pagination/ListVirtualNodesPaginator.ts | 2 +- .../pagination/ListVirtualRoutersPaginator.ts | 2 +- .../ListVirtualServicesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-app-mesh/src/runtimeConfig.ts | 8 +- .../client-app-mesh/src/runtimeExtensions.ts | 2 +- .../client-app-mesh/src/schemas/schemas_0.ts | 2 +- clients/client-appconfig/package.json | 12 +- clients/client-appconfig/src/AppConfig.ts | 4 +- .../client-appconfig/src/AppConfigClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../CreateConfigurationProfileCommand.ts | 6 +- .../CreateDeploymentStrategyCommand.ts | 6 +- .../src/commands/CreateEnvironmentCommand.ts | 6 +- .../CreateExtensionAssociationCommand.ts | 6 +- .../src/commands/CreateExtensionCommand.ts | 6 +- ...CreateHostedConfigurationVersionCommand.ts | 4 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../DeleteConfigurationProfileCommand.ts | 6 +- .../DeleteDeploymentStrategyCommand.ts | 6 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../DeleteExtensionAssociationCommand.ts | 6 +- .../src/commands/DeleteExtensionCommand.ts | 6 +- ...DeleteHostedConfigurationVersionCommand.ts | 6 +- .../src/commands/GetAccountSettingsCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../src/commands/GetConfigurationCommand.ts | 6 +- .../GetConfigurationProfileCommand.ts | 6 +- .../src/commands/GetDeploymentCommand.ts | 6 +- .../commands/GetDeploymentStrategyCommand.ts | 6 +- .../src/commands/GetEnvironmentCommand.ts | 6 +- .../GetExtensionAssociationCommand.ts | 6 +- .../src/commands/GetExtensionCommand.ts | 6 +- .../GetHostedConfigurationVersionCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../ListConfigurationProfilesCommand.ts | 6 +- .../ListDeploymentStrategiesCommand.ts | 6 +- .../src/commands/ListDeploymentsCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../ListExtensionAssociationsCommand.ts | 6 +- .../src/commands/ListExtensionsCommand.ts | 6 +- .../ListHostedConfigurationVersionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartDeploymentCommand.ts | 6 +- .../src/commands/StopDeploymentCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAccountSettingsCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../UpdateConfigurationProfileCommand.ts | 6 +- .../UpdateDeploymentStrategyCommand.ts | 6 +- .../src/commands/UpdateEnvironmentCommand.ts | 6 +- .../UpdateExtensionAssociationCommand.ts | 6 +- .../src/commands/UpdateExtensionCommand.ts | 6 +- .../commands/ValidateConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AppConfigServiceException.ts | 2 +- clients/client-appconfig/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../ListConfigurationProfilesPaginator.ts | 2 +- .../ListDeploymentStrategiesPaginator.ts | 2 +- .../pagination/ListDeploymentsPaginator.ts | 2 +- .../pagination/ListEnvironmentsPaginator.ts | 2 +- .../ListExtensionAssociationsPaginator.ts | 2 +- .../src/pagination/ListExtensionsPaginator.ts | 2 +- ...istHostedConfigurationVersionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-appconfig/src/runtimeConfig.ts | 8 +- .../client-appconfig/src/runtimeExtensions.ts | 2 +- .../client-appconfig/src/schemas/schemas_0.ts | 2 +- clients/client-appconfigdata/package.json | 12 +- .../client-appconfigdata/src/AppConfigData.ts | 4 +- .../src/AppConfigDataClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/GetLatestConfigurationCommand.ts | 6 +- .../StartConfigurationSessionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/AppConfigDataServiceException.ts | 2 +- .../client-appconfigdata/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-appconfigdata/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-appfabric/package.json | 12 +- clients/client-appfabric/src/AppFabric.ts | 4 +- .../client-appfabric/src/AppFabricClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchGetUserAccessTasksCommand.ts | 6 +- .../ConnectAppAuthorizationCommand.ts | 6 +- .../commands/CreateAppAuthorizationCommand.ts | 6 +- .../src/commands/CreateAppBundleCommand.ts | 6 +- .../src/commands/CreateIngestionCommand.ts | 6 +- .../CreateIngestionDestinationCommand.ts | 6 +- .../commands/DeleteAppAuthorizationCommand.ts | 6 +- .../src/commands/DeleteAppBundleCommand.ts | 6 +- .../src/commands/DeleteIngestionCommand.ts | 6 +- .../DeleteIngestionDestinationCommand.ts | 6 +- .../commands/GetAppAuthorizationCommand.ts | 6 +- .../src/commands/GetAppBundleCommand.ts | 6 +- .../src/commands/GetIngestionCommand.ts | 6 +- .../GetIngestionDestinationCommand.ts | 6 +- .../commands/ListAppAuthorizationsCommand.ts | 6 +- .../src/commands/ListAppBundlesCommand.ts | 6 +- .../ListIngestionDestinationsCommand.ts | 6 +- .../src/commands/ListIngestionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartIngestionCommand.ts | 6 +- .../commands/StartUserAccessTasksCommand.ts | 6 +- .../src/commands/StopIngestionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAppAuthorizationCommand.ts | 6 +- .../UpdateIngestionDestinationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AppFabricServiceException.ts | 2 +- clients/client-appfabric/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAppAuthorizationsPaginator.ts | 2 +- .../src/pagination/ListAppBundlesPaginator.ts | 2 +- .../ListIngestionDestinationsPaginator.ts | 2 +- .../src/pagination/ListIngestionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-appfabric/src/runtimeConfig.ts | 8 +- .../client-appfabric/src/runtimeExtensions.ts | 2 +- .../client-appfabric/src/schemas/schemas_0.ts | 2 +- clients/client-appflow/package.json | 12 +- clients/client-appflow/src/Appflow.ts | 4 +- clients/client-appflow/src/AppflowClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CancelFlowExecutionsCommand.ts | 6 +- .../commands/CreateConnectorProfileCommand.ts | 6 +- .../src/commands/CreateFlowCommand.ts | 6 +- .../commands/DeleteConnectorProfileCommand.ts | 6 +- .../src/commands/DeleteFlowCommand.ts | 6 +- .../src/commands/DescribeConnectorCommand.ts | 6 +- .../DescribeConnectorEntityCommand.ts | 6 +- .../DescribeConnectorProfilesCommand.ts | 6 +- .../src/commands/DescribeConnectorsCommand.ts | 6 +- .../src/commands/DescribeFlowCommand.ts | 6 +- .../DescribeFlowExecutionRecordsCommand.ts | 6 +- .../commands/ListConnectorEntitiesCommand.ts | 6 +- .../src/commands/ListConnectorsCommand.ts | 6 +- .../src/commands/ListFlowsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RegisterConnectorCommand.ts | 6 +- .../ResetConnectorMetadataCacheCommand.ts | 6 +- .../src/commands/StartFlowCommand.ts | 6 +- .../src/commands/StopFlowCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../commands/UnregisterConnectorCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateConnectorProfileCommand.ts | 6 +- .../UpdateConnectorRegistrationCommand.ts | 6 +- .../src/commands/UpdateFlowCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AppflowServiceException.ts | 2 +- clients/client-appflow/src/models/errors.ts | 2 +- .../DescribeConnectorProfilesPaginator.ts | 2 +- .../pagination/DescribeConnectorsPaginator.ts | 2 +- .../DescribeFlowExecutionRecordsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListConnectorsPaginator.ts | 2 +- .../src/pagination/ListFlowsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-appflow/src/runtimeConfig.ts | 8 +- .../client-appflow/src/runtimeExtensions.ts | 2 +- .../client-appflow/src/schemas/schemas_0.ts | 2 +- clients/client-appintegrations/package.json | 12 +- .../src/AppIntegrations.ts | 4 +- .../src/AppIntegrationsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateApplicationCommand.ts | 10 +- ...CreateDataIntegrationAssociationCommand.ts | 13 +- .../commands/CreateDataIntegrationCommand.ts | 10 +- .../commands/CreateEventIntegrationCommand.ts | 10 +- .../src/commands/DeleteApplicationCommand.ts | 10 +- .../commands/DeleteDataIntegrationCommand.ts | 10 +- .../commands/DeleteEventIntegrationCommand.ts | 10 +- .../src/commands/GetApplicationCommand.ts | 10 +- .../src/commands/GetDataIntegrationCommand.ts | 10 +- .../commands/GetEventIntegrationCommand.ts | 10 +- .../ListApplicationAssociationsCommand.ts | 10 +- .../src/commands/ListApplicationsCommand.ts | 10 +- .../ListDataIntegrationAssociationsCommand.ts | 13 +- .../commands/ListDataIntegrationsCommand.ts | 10 +- ...ListEventIntegrationAssociationsCommand.ts | 13 +- .../commands/ListEventIntegrationsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateApplicationCommand.ts | 10 +- ...UpdateDataIntegrationAssociationCommand.ts | 13 +- .../commands/UpdateDataIntegrationCommand.ts | 10 +- .../commands/UpdateEventIntegrationCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/AppIntegrationsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListApplicationAssociationsPaginator.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- ...istDataIntegrationAssociationsPaginator.ts | 2 +- .../ListDataIntegrationsPaginator.ts | 2 +- ...stEventIntegrationAssociationsPaginator.ts | 2 +- .../ListEventIntegrationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ApplicationAutoScaling.ts | 4 +- .../src/ApplicationAutoScalingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/DeleteScalingPolicyCommand.ts | 6 +- .../commands/DeleteScheduledActionCommand.ts | 6 +- .../DeregisterScalableTargetCommand.ts | 6 +- .../DescribeScalableTargetsCommand.ts | 6 +- .../DescribeScalingActivitiesCommand.ts | 6 +- .../DescribeScalingPoliciesCommand.ts | 6 +- .../DescribeScheduledActionsCommand.ts | 6 +- .../GetPredictiveScalingForecastCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutScalingPolicyCommand.ts | 6 +- .../src/commands/PutScheduledActionCommand.ts | 6 +- .../commands/RegisterScalableTargetCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ApplicationAutoScalingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeScalableTargetsPaginator.ts | 2 +- .../DescribeScalingActivitiesPaginator.ts | 2 +- .../DescribeScalingPoliciesPaginator.ts | 2 +- .../DescribeScheduledActionsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ApplicationDiscoveryService.ts | 7 +- .../src/ApplicationDiscoveryServiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...eConfigurationItemsToApplicationCommand.ts | 6 +- .../src/commands/BatchDeleteAgentsCommand.ts | 6 +- .../commands/BatchDeleteImportDataCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../src/commands/CreateTagsCommand.ts | 6 +- .../src/commands/DeleteApplicationsCommand.ts | 6 +- .../src/commands/DeleteTagsCommand.ts | 6 +- .../src/commands/DescribeAgentsCommand.ts | 6 +- ...ribeBatchDeleteConfigurationTaskCommand.ts | 6 +- .../commands/DescribeConfigurationsCommand.ts | 6 +- .../DescribeContinuousExportsCommand.ts | 6 +- .../DescribeExportConfigurationsCommand.ts | 6 +- .../commands/DescribeExportTasksCommand.ts | 6 +- .../commands/DescribeImportTasksCommand.ts | 6 +- .../src/commands/DescribeTagsCommand.ts | 6 +- ...onfigurationItemsFromApplicationCommand.ts | 6 +- .../commands/ExportConfigurationsCommand.ts | 6 +- .../commands/GetDiscoverySummaryCommand.ts | 6 +- .../src/commands/ListConfigurationsCommand.ts | 6 +- .../commands/ListServerNeighborsCommand.ts | 6 +- ...tartBatchDeleteConfigurationTaskCommand.ts | 6 +- .../commands/StartContinuousExportCommand.ts | 6 +- .../StartDataCollectionByAgentIdsCommand.ts | 6 +- .../src/commands/StartExportTaskCommand.ts | 6 +- .../src/commands/StartImportTaskCommand.ts | 6 +- .../commands/StopContinuousExportCommand.ts | 6 +- .../StopDataCollectionByAgentIdsCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...icationDiscoveryServiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/DescribeAgentsPaginator.ts | 2 +- .../DescribeContinuousExportsPaginator.ts | 2 +- .../DescribeExportConfigurationsPaginator.ts | 2 +- .../DescribeExportTasksPaginator.ts | 2 +- .../DescribeImportTasksPaginator.ts | 2 +- .../src/pagination/DescribeTagsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListConfigurationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-application-insights/package.json | 12 +- .../src/ApplicationInsights.ts | 4 +- .../src/ApplicationInsightsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/AddWorkloadCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../src/commands/CreateComponentCommand.ts | 6 +- .../src/commands/CreateLogPatternCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../src/commands/DeleteComponentCommand.ts | 6 +- .../src/commands/DeleteLogPatternCommand.ts | 6 +- .../commands/DescribeApplicationCommand.ts | 6 +- .../src/commands/DescribeComponentCommand.ts | 6 +- .../DescribeComponentConfigurationCommand.ts | 6 +- ...onentConfigurationRecommendationCommand.ts | 6 +- .../src/commands/DescribeLogPatternCommand.ts | 6 +- .../commands/DescribeObservationCommand.ts | 6 +- .../src/commands/DescribeProblemCommand.ts | 6 +- .../DescribeProblemObservationsCommand.ts | 6 +- .../src/commands/DescribeWorkloadCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../src/commands/ListComponentsCommand.ts | 6 +- .../ListConfigurationHistoryCommand.ts | 6 +- .../src/commands/ListLogPatternSetsCommand.ts | 6 +- .../src/commands/ListLogPatternsCommand.ts | 6 +- .../src/commands/ListProblemsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWorkloadsCommand.ts | 6 +- .../src/commands/RemoveWorkloadCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../src/commands/UpdateComponentCommand.ts | 6 +- .../UpdateComponentConfigurationCommand.ts | 6 +- .../src/commands/UpdateLogPatternCommand.ts | 6 +- .../src/commands/UpdateProblemCommand.ts | 6 +- .../src/commands/UpdateWorkloadCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ApplicationInsightsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../src/pagination/ListComponentsPaginator.ts | 2 +- .../ListConfigurationHistoryPaginator.ts | 2 +- .../pagination/ListLogPatternSetsPaginator.ts | 2 +- .../pagination/ListLogPatternsPaginator.ts | 2 +- .../src/pagination/ListProblemsPaginator.ts | 2 +- .../src/pagination/ListWorkloadsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-application-signals/package.json | 12 +- .../src/ApplicationSignals.ts | 4 +- .../src/ApplicationSignalsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- ...erviceLevelObjectiveBudgetReportCommand.ts | 6 +- .../BatchUpdateExclusionWindowsCommand.ts | 6 +- .../CreateServiceLevelObjectiveCommand.ts | 6 +- .../DeleteGroupingConfigurationCommand.ts | 6 +- .../DeleteServiceLevelObjectiveCommand.ts | 6 +- .../src/commands/GetServiceCommand.ts | 6 +- .../GetServiceLevelObjectiveCommand.ts | 6 +- .../src/commands/ListAuditFindingsCommand.ts | 6 +- .../src/commands/ListEntityEventsCommand.ts | 6 +- ...ListGroupingAttributeDefinitionsCommand.ts | 6 +- .../ListServiceDependenciesCommand.ts | 6 +- .../commands/ListServiceDependentsCommand.ts | 6 +- ...ceLevelObjectiveExclusionWindowsCommand.ts | 6 +- .../ListServiceLevelObjectivesCommand.ts | 6 +- .../commands/ListServiceOperationsCommand.ts | 6 +- .../src/commands/ListServiceStatesCommand.ts | 6 +- .../src/commands/ListServicesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../PutGroupingConfigurationCommand.ts | 6 +- .../src/commands/StartDiscoveryCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateServiceLevelObjectiveCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ApplicationSignalsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListEntityEventsPaginator.ts | 2 +- .../ListServiceDependenciesPaginator.ts | 2 +- .../ListServiceDependentsPaginator.ts | 2 +- ...LevelObjectiveExclusionWindowsPaginator.ts | 2 +- .../ListServiceLevelObjectivesPaginator.ts | 2 +- .../ListServiceOperationsPaginator.ts | 2 +- .../pagination/ListServiceStatesPaginator.ts | 2 +- .../src/pagination/ListServicesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ApplicationCostProfiler.ts | 4 +- .../src/ApplicationCostProfilerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/DeleteReportDefinitionCommand.ts | 6 +- .../commands/GetReportDefinitionCommand.ts | 6 +- .../commands/ImportApplicationUsageCommand.ts | 6 +- .../commands/ListReportDefinitionsCommand.ts | 6 +- .../commands/PutReportDefinitionCommand.ts | 6 +- .../commands/UpdateReportDefinitionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...ApplicationCostProfilerServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListReportDefinitionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-apprunner/package.json | 12 +- clients/client-apprunner/src/AppRunner.ts | 4 +- .../client-apprunner/src/AppRunnerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateCustomDomainCommand.ts | 6 +- .../CreateAutoScalingConfigurationCommand.ts | 6 +- .../src/commands/CreateConnectionCommand.ts | 6 +- ...CreateObservabilityConfigurationCommand.ts | 9 +- .../src/commands/CreateServiceCommand.ts | 6 +- .../src/commands/CreateVpcConnectorCommand.ts | 6 +- .../CreateVpcIngressConnectionCommand.ts | 6 +- .../DeleteAutoScalingConfigurationCommand.ts | 6 +- .../src/commands/DeleteConnectionCommand.ts | 6 +- ...DeleteObservabilityConfigurationCommand.ts | 9 +- .../src/commands/DeleteServiceCommand.ts | 6 +- .../src/commands/DeleteVpcConnectorCommand.ts | 6 +- .../DeleteVpcIngressConnectionCommand.ts | 6 +- ...DescribeAutoScalingConfigurationCommand.ts | 9 +- .../commands/DescribeCustomDomainsCommand.ts | 6 +- ...scribeObservabilityConfigurationCommand.ts | 6 +- .../src/commands/DescribeServiceCommand.ts | 6 +- .../commands/DescribeVpcConnectorCommand.ts | 6 +- .../DescribeVpcIngressConnectionCommand.ts | 6 +- .../DisassociateCustomDomainCommand.ts | 6 +- .../ListAutoScalingConfigurationsCommand.ts | 6 +- .../src/commands/ListConnectionsCommand.ts | 6 +- .../ListObservabilityConfigurationsCommand.ts | 9 +- .../src/commands/ListOperationsCommand.ts | 6 +- .../src/commands/ListServicesCommand.ts | 6 +- ...vicesForAutoScalingConfigurationCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListVpcConnectorsCommand.ts | 6 +- .../ListVpcIngressConnectionsCommand.ts | 6 +- .../src/commands/PauseServiceCommand.ts | 6 +- .../src/commands/ResumeServiceCommand.ts | 6 +- .../src/commands/StartDeploymentCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...eDefaultAutoScalingConfigurationCommand.ts | 6 +- .../src/commands/UpdateServiceCommand.ts | 6 +- .../UpdateVpcIngressConnectionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AppRunnerServiceException.ts | 2 +- clients/client-apprunner/src/models/errors.ts | 2 +- .../DescribeCustomDomainsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAutoScalingConfigurationsPaginator.ts | 2 +- .../pagination/ListConnectionsPaginator.ts | 2 +- ...istObservabilityConfigurationsPaginator.ts | 2 +- .../src/pagination/ListOperationsPaginator.ts | 2 +- ...cesForAutoScalingConfigurationPaginator.ts | 2 +- .../src/pagination/ListServicesPaginator.ts | 2 +- .../pagination/ListVpcConnectorsPaginator.ts | 2 +- .../ListVpcIngressConnectionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-apprunner/src/runtimeConfig.ts | 8 +- .../client-apprunner/src/runtimeExtensions.ts | 2 +- .../client-apprunner/src/schemas/schemas_0.ts | 2 +- clients/client-appstream/package.json | 12 +- clients/client-appstream/src/AppStream.ts | 4 +- .../client-appstream/src/AppStreamClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...AssociateAppBlockBuilderAppBlockCommand.ts | 9 +- .../AssociateApplicationFleetCommand.ts | 6 +- ...ssociateApplicationToEntitlementCommand.ts | 9 +- .../src/commands/AssociateFleetCommand.ts | 6 +- .../AssociateSoftwareToImageBuilderCommand.ts | 6 +- .../BatchAssociateUserStackCommand.ts | 6 +- .../BatchDisassociateUserStackCommand.ts | 6 +- .../src/commands/CopyImageCommand.ts | 6 +- .../commands/CreateAppBlockBuilderCommand.ts | 6 +- ...reateAppBlockBuilderStreamingURLCommand.ts | 9 +- .../src/commands/CreateAppBlockCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../commands/CreateDirectoryConfigCommand.ts | 6 +- .../src/commands/CreateEntitlementCommand.ts | 6 +- .../commands/CreateExportImageTaskCommand.ts | 6 +- .../src/commands/CreateFleetCommand.ts | 6 +- .../src/commands/CreateImageBuilderCommand.ts | 6 +- .../CreateImageBuilderStreamingURLCommand.ts | 6 +- .../commands/CreateImportedImageCommand.ts | 6 +- .../src/commands/CreateStackCommand.ts | 6 +- .../src/commands/CreateStreamingURLCommand.ts | 6 +- .../commands/CreateThemeForStackCommand.ts | 6 +- .../src/commands/CreateUpdatedImageCommand.ts | 6 +- .../CreateUsageReportSubscriptionCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../commands/DeleteAppBlockBuilderCommand.ts | 6 +- .../src/commands/DeleteAppBlockCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../commands/DeleteDirectoryConfigCommand.ts | 6 +- .../src/commands/DeleteEntitlementCommand.ts | 6 +- .../src/commands/DeleteFleetCommand.ts | 6 +- .../src/commands/DeleteImageBuilderCommand.ts | 6 +- .../src/commands/DeleteImageCommand.ts | 6 +- .../commands/DeleteImagePermissionsCommand.ts | 6 +- .../src/commands/DeleteStackCommand.ts | 6 +- .../commands/DeleteThemeForStackCommand.ts | 6 +- .../DeleteUsageReportSubscriptionCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- ...BlockBuilderAppBlockAssociationsCommand.ts | 6 +- .../DescribeAppBlockBuildersCommand.ts | 6 +- .../src/commands/DescribeAppBlocksCommand.ts | 6 +- .../DescribeAppLicenseUsageCommand.ts | 6 +- ...ribeApplicationFleetAssociationsCommand.ts | 6 +- .../commands/DescribeApplicationsCommand.ts | 6 +- .../DescribeDirectoryConfigsCommand.ts | 6 +- .../commands/DescribeEntitlementsCommand.ts | 6 +- .../src/commands/DescribeFleetsCommand.ts | 6 +- .../commands/DescribeImageBuildersCommand.ts | 6 +- .../DescribeImagePermissionsCommand.ts | 6 +- .../src/commands/DescribeImagesCommand.ts | 6 +- .../src/commands/DescribeSessionsCommand.ts | 6 +- .../DescribeSoftwareAssociationsCommand.ts | 6 +- .../src/commands/DescribeStacksCommand.ts | 6 +- .../commands/DescribeThemeForStackCommand.ts | 6 +- ...DescribeUsageReportSubscriptionsCommand.ts | 9 +- .../DescribeUserStackAssociationsCommand.ts | 6 +- .../src/commands/DescribeUsersCommand.ts | 6 +- .../src/commands/DisableUserCommand.ts | 6 +- ...associateAppBlockBuilderAppBlockCommand.ts | 6 +- .../DisassociateApplicationFleetCommand.ts | 6 +- ...ociateApplicationFromEntitlementCommand.ts | 6 +- .../src/commands/DisassociateFleetCommand.ts | 6 +- ...ssociateSoftwareFromImageBuilderCommand.ts | 6 +- .../src/commands/EnableUserCommand.ts | 6 +- .../src/commands/ExpireSessionCommand.ts | 6 +- .../src/commands/GetExportImageTaskCommand.ts | 6 +- .../commands/ListAssociatedFleetsCommand.ts | 6 +- .../commands/ListAssociatedStacksCommand.ts | 6 +- .../ListEntitledApplicationsCommand.ts | 6 +- .../commands/ListExportImageTasksCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/StartAppBlockBuilderCommand.ts | 6 +- .../src/commands/StartFleetCommand.ts | 6 +- .../src/commands/StartImageBuilderCommand.ts | 6 +- ...SoftwareDeploymentToImageBuilderCommand.ts | 6 +- .../commands/StopAppBlockBuilderCommand.ts | 6 +- .../src/commands/StopFleetCommand.ts | 6 +- .../src/commands/StopImageBuilderCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAppBlockBuilderCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../commands/UpdateDirectoryConfigCommand.ts | 6 +- .../src/commands/UpdateEntitlementCommand.ts | 6 +- .../src/commands/UpdateFleetCommand.ts | 6 +- .../commands/UpdateImagePermissionsCommand.ts | 6 +- .../src/commands/UpdateStackCommand.ts | 6 +- .../commands/UpdateThemeForStackCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AppStreamServiceException.ts | 2 +- clients/client-appstream/src/models/errors.ts | 2 +- ...ockBuilderAppBlockAssociationsPaginator.ts | 2 +- .../DescribeAppBlockBuildersPaginator.ts | 2 +- .../DescribeImagePermissionsPaginator.ts | 2 +- .../src/pagination/DescribeImagesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-appstream/src/runtimeConfig.ts | 8 +- .../client-appstream/src/runtimeExtensions.ts | 2 +- .../client-appstream/src/schemas/schemas_0.ts | 2 +- clients/client-appsync/package.json | 12 +- clients/client-appsync/src/AppSync.ts | 4 +- clients/client-appsync/src/AppSyncClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateApiCommand.ts | 6 +- .../AssociateMergedGraphqlApiCommand.ts | 6 +- .../AssociateSourceGraphqlApiCommand.ts | 6 +- .../src/commands/CreateApiCacheCommand.ts | 6 +- .../src/commands/CreateApiCommand.ts | 6 +- .../src/commands/CreateApiKeyCommand.ts | 6 +- .../commands/CreateChannelNamespaceCommand.ts | 6 +- .../src/commands/CreateDataSourceCommand.ts | 6 +- .../src/commands/CreateDomainNameCommand.ts | 6 +- .../src/commands/CreateFunctionCommand.ts | 6 +- .../src/commands/CreateGraphqlApiCommand.ts | 6 +- .../src/commands/CreateResolverCommand.ts | 6 +- .../src/commands/CreateTypeCommand.ts | 6 +- .../src/commands/DeleteApiCacheCommand.ts | 6 +- .../src/commands/DeleteApiCommand.ts | 6 +- .../src/commands/DeleteApiKeyCommand.ts | 6 +- .../commands/DeleteChannelNamespaceCommand.ts | 6 +- .../src/commands/DeleteDataSourceCommand.ts | 6 +- .../src/commands/DeleteDomainNameCommand.ts | 6 +- .../src/commands/DeleteFunctionCommand.ts | 6 +- .../src/commands/DeleteGraphqlApiCommand.ts | 6 +- .../src/commands/DeleteResolverCommand.ts | 6 +- .../src/commands/DeleteTypeCommand.ts | 6 +- .../src/commands/DisassociateApiCommand.ts | 6 +- .../DisassociateMergedGraphqlApiCommand.ts | 6 +- .../DisassociateSourceGraphqlApiCommand.ts | 6 +- .../src/commands/EvaluateCodeCommand.ts | 6 +- .../EvaluateMappingTemplateCommand.ts | 6 +- .../src/commands/FlushApiCacheCommand.ts | 6 +- .../src/commands/GetApiAssociationCommand.ts | 6 +- .../src/commands/GetApiCacheCommand.ts | 6 +- .../src/commands/GetApiCommand.ts | 6 +- .../commands/GetChannelNamespaceCommand.ts | 6 +- .../src/commands/GetDataSourceCommand.ts | 6 +- .../GetDataSourceIntrospectionCommand.ts | 6 +- .../src/commands/GetDomainNameCommand.ts | 6 +- .../src/commands/GetFunctionCommand.ts | 6 +- .../src/commands/GetGraphqlApiCommand.ts | 6 +- ...etGraphqlApiEnvironmentVariablesCommand.ts | 6 +- .../commands/GetIntrospectionSchemaCommand.ts | 6 +- .../src/commands/GetResolverCommand.ts | 6 +- .../GetSchemaCreationStatusCommand.ts | 6 +- .../GetSourceApiAssociationCommand.ts | 6 +- .../src/commands/GetTypeCommand.ts | 6 +- .../src/commands/ListApiKeysCommand.ts | 6 +- .../src/commands/ListApisCommand.ts | 6 +- .../commands/ListChannelNamespacesCommand.ts | 6 +- .../src/commands/ListDataSourcesCommand.ts | 6 +- .../src/commands/ListDomainNamesCommand.ts | 6 +- .../src/commands/ListFunctionsCommand.ts | 6 +- .../src/commands/ListGraphqlApisCommand.ts | 6 +- .../ListResolversByFunctionCommand.ts | 6 +- .../src/commands/ListResolversCommand.ts | 6 +- .../ListSourceApiAssociationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTypesByAssociationCommand.ts | 6 +- .../src/commands/ListTypesCommand.ts | 6 +- ...utGraphqlApiEnvironmentVariablesCommand.ts | 6 +- .../StartDataSourceIntrospectionCommand.ts | 6 +- .../commands/StartSchemaCreationCommand.ts | 6 +- .../src/commands/StartSchemaMergeCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApiCacheCommand.ts | 6 +- .../src/commands/UpdateApiCommand.ts | 6 +- .../src/commands/UpdateApiKeyCommand.ts | 6 +- .../commands/UpdateChannelNamespaceCommand.ts | 6 +- .../src/commands/UpdateDataSourceCommand.ts | 6 +- .../src/commands/UpdateDomainNameCommand.ts | 6 +- .../src/commands/UpdateFunctionCommand.ts | 6 +- .../src/commands/UpdateGraphqlApiCommand.ts | 6 +- .../src/commands/UpdateResolverCommand.ts | 6 +- .../UpdateSourceApiAssociationCommand.ts | 6 +- .../src/commands/UpdateTypeCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AppSyncServiceException.ts | 2 +- clients/client-appsync/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListApiKeysPaginator.ts | 2 +- .../src/pagination/ListApisPaginator.ts | 2 +- .../ListChannelNamespacesPaginator.ts | 2 +- .../pagination/ListDataSourcesPaginator.ts | 2 +- .../pagination/ListDomainNamesPaginator.ts | 2 +- .../src/pagination/ListFunctionsPaginator.ts | 2 +- .../pagination/ListGraphqlApisPaginator.ts | 2 +- .../ListResolversByFunctionPaginator.ts | 2 +- .../src/pagination/ListResolversPaginator.ts | 2 +- .../ListSourceApiAssociationsPaginator.ts | 2 +- .../ListTypesByAssociationPaginator.ts | 2 +- .../src/pagination/ListTypesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-appsync/src/runtimeConfig.ts | 8 +- .../client-appsync/src/runtimeExtensions.ts | 2 +- .../client-appsync/src/schemas/schemas_0.ts | 2 +- clients/client-arc-region-switch/package.json | 12 +- .../src/ARCRegionSwitch.ts | 4 +- .../src/ARCRegionSwitchClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../ApprovePlanExecutionStepCommand.ts | 10 +- .../commands/CancelPlanExecutionCommand.ts | 10 +- .../src/commands/CreatePlanCommand.ts | 10 +- .../src/commands/DeletePlanCommand.ts | 10 +- .../src/commands/GetPlanCommand.ts | 10 +- .../GetPlanEvaluationStatusCommand.ts | 10 +- .../src/commands/GetPlanExecutionCommand.ts | 10 +- .../src/commands/GetPlanInRegionCommand.ts | 10 +- .../ListPlanExecutionEventsCommand.ts | 10 +- .../src/commands/ListPlanExecutionsCommand.ts | 10 +- .../src/commands/ListPlansCommand.ts | 10 +- .../src/commands/ListPlansInRegionCommand.ts | 10 +- .../ListRoute53HealthChecksCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/StartPlanExecutionCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdatePlanCommand.ts | 10 +- .../commands/UpdatePlanExecutionCommand.ts | 10 +- .../UpdatePlanExecutionStepCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ARCRegionSwitchServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetPlanEvaluationStatusPaginator.ts | 2 +- .../pagination/GetPlanExecutionPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListPlanExecutionEventsPaginator.ts | 2 +- .../pagination/ListPlanExecutionsPaginator.ts | 2 +- .../pagination/ListPlansInRegionPaginator.ts | 2 +- .../src/pagination/ListPlansPaginator.ts | 2 +- .../ListRoute53HealthChecksPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-arc-zonal-shift/package.json | 12 +- .../src/ARCZonalShift.ts | 4 +- .../src/ARCZonalShiftClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelPracticeRunCommand.ts | 6 +- .../src/commands/CancelZonalShiftCommand.ts | 6 +- .../CreatePracticeRunConfigurationCommand.ts | 6 +- .../DeletePracticeRunConfigurationCommand.ts | 6 +- ...oshiftObserverNotificationStatusCommand.ts | 6 +- .../src/commands/GetManagedResourceCommand.ts | 6 +- .../src/commands/ListAutoshiftsCommand.ts | 6 +- .../commands/ListManagedResourcesCommand.ts | 6 +- .../src/commands/ListZonalShiftsCommand.ts | 6 +- .../src/commands/StartPracticeRunCommand.ts | 6 +- .../src/commands/StartZonalShiftCommand.ts | 6 +- ...oshiftObserverNotificationStatusCommand.ts | 6 +- .../UpdatePracticeRunConfigurationCommand.ts | 6 +- ...pdateZonalAutoshiftConfigurationCommand.ts | 6 +- .../src/commands/UpdateZonalShiftCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ARCZonalShiftServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAutoshiftsPaginator.ts | 2 +- .../ListManagedResourcesPaginator.ts | 2 +- .../pagination/ListZonalShiftsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-artifact/package.json | 12 +- clients/client-artifact/src/Artifact.ts | 4 +- clients/client-artifact/src/ArtifactClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetAccountSettingsCommand.ts | 6 +- .../src/commands/GetReportCommand.ts | 6 +- .../src/commands/GetReportMetadataCommand.ts | 6 +- .../src/commands/GetTermForReportCommand.ts | 6 +- .../commands/ListCustomerAgreementsCommand.ts | 6 +- .../src/commands/ListReportsCommand.ts | 6 +- .../src/commands/PutAccountSettingsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ArtifactServiceException.ts | 2 +- clients/client-artifact/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListCustomerAgreementsPaginator.ts | 2 +- .../src/pagination/ListReportsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-artifact/src/runtimeConfig.ts | 8 +- .../client-artifact/src/runtimeExtensions.ts | 2 +- .../client-artifact/src/schemas/schemas_0.ts | 2 +- clients/client-athena/package.json | 12 +- clients/client-athena/src/Athena.ts | 4 +- clients/client-athena/src/AthenaClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchGetNamedQueryCommand.ts | 6 +- .../BatchGetPreparedStatementCommand.ts | 6 +- .../commands/BatchGetQueryExecutionCommand.ts | 6 +- .../CancelCapacityReservationCommand.ts | 6 +- .../CreateCapacityReservationCommand.ts | 6 +- .../src/commands/CreateDataCatalogCommand.ts | 6 +- .../src/commands/CreateNamedQueryCommand.ts | 6 +- .../src/commands/CreateNotebookCommand.ts | 6 +- .../CreatePreparedStatementCommand.ts | 6 +- .../CreatePresignedNotebookUrlCommand.ts | 6 +- .../src/commands/CreateWorkGroupCommand.ts | 6 +- .../DeleteCapacityReservationCommand.ts | 6 +- .../src/commands/DeleteDataCatalogCommand.ts | 6 +- .../src/commands/DeleteNamedQueryCommand.ts | 6 +- .../src/commands/DeleteNotebookCommand.ts | 6 +- .../DeletePreparedStatementCommand.ts | 6 +- .../src/commands/DeleteWorkGroupCommand.ts | 6 +- .../src/commands/ExportNotebookCommand.ts | 6 +- .../GetCalculationExecutionCodeCommand.ts | 6 +- .../GetCalculationExecutionCommand.ts | 6 +- .../GetCalculationExecutionStatusCommand.ts | 6 +- ...tCapacityAssignmentConfigurationCommand.ts | 9 +- .../commands/GetCapacityReservationCommand.ts | 6 +- .../src/commands/GetDataCatalogCommand.ts | 6 +- .../src/commands/GetDatabaseCommand.ts | 6 +- .../src/commands/GetNamedQueryCommand.ts | 6 +- .../commands/GetNotebookMetadataCommand.ts | 6 +- .../commands/GetPreparedStatementCommand.ts | 6 +- .../src/commands/GetQueryExecutionCommand.ts | 6 +- .../src/commands/GetQueryResultsCommand.ts | 6 +- .../GetQueryRuntimeStatisticsCommand.ts | 6 +- .../commands/GetResourceDashboardCommand.ts | 6 +- .../src/commands/GetSessionCommand.ts | 6 +- .../src/commands/GetSessionEndpointCommand.ts | 6 +- .../src/commands/GetSessionStatusCommand.ts | 6 +- .../src/commands/GetTableMetadataCommand.ts | 6 +- .../src/commands/GetWorkGroupCommand.ts | 6 +- .../src/commands/ImportNotebookCommand.ts | 6 +- .../ListApplicationDPUSizesCommand.ts | 6 +- .../ListCalculationExecutionsCommand.ts | 6 +- .../ListCapacityReservationsCommand.ts | 6 +- .../src/commands/ListDataCatalogsCommand.ts | 6 +- .../src/commands/ListDatabasesCommand.ts | 6 +- .../src/commands/ListEngineVersionsCommand.ts | 6 +- .../src/commands/ListExecutorsCommand.ts | 6 +- .../src/commands/ListNamedQueriesCommand.ts | 6 +- .../commands/ListNotebookMetadataCommand.ts | 6 +- .../commands/ListNotebookSessionsCommand.ts | 6 +- .../commands/ListPreparedStatementsCommand.ts | 6 +- .../commands/ListQueryExecutionsCommand.ts | 6 +- .../src/commands/ListSessionsCommand.ts | 6 +- .../src/commands/ListTableMetadataCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWorkGroupsCommand.ts | 6 +- ...tCapacityAssignmentConfigurationCommand.ts | 9 +- .../StartCalculationExecutionCommand.ts | 6 +- .../commands/StartQueryExecutionCommand.ts | 6 +- .../src/commands/StartSessionCommand.ts | 6 +- .../StopCalculationExecutionCommand.ts | 6 +- .../src/commands/StopQueryExecutionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TerminateSessionCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateCapacityReservationCommand.ts | 6 +- .../src/commands/UpdateDataCatalogCommand.ts | 6 +- .../src/commands/UpdateNamedQueryCommand.ts | 6 +- .../src/commands/UpdateNotebookCommand.ts | 6 +- .../commands/UpdateNotebookMetadataCommand.ts | 6 +- .../UpdatePreparedStatementCommand.ts | 6 +- .../src/commands/UpdateWorkGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AthenaServiceException.ts | 2 +- clients/client-athena/src/models/errors.ts | 2 +- .../pagination/GetQueryResultsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListApplicationDPUSizesPaginator.ts | 2 +- .../ListCalculationExecutionsPaginator.ts | 2 +- .../ListCapacityReservationsPaginator.ts | 2 +- .../pagination/ListDataCatalogsPaginator.ts | 2 +- .../src/pagination/ListDatabasesPaginator.ts | 2 +- .../pagination/ListEngineVersionsPaginator.ts | 2 +- .../src/pagination/ListExecutorsPaginator.ts | 2 +- .../pagination/ListNamedQueriesPaginator.ts | 2 +- .../ListPreparedStatementsPaginator.ts | 2 +- .../ListQueryExecutionsPaginator.ts | 2 +- .../src/pagination/ListSessionsPaginator.ts | 2 +- .../pagination/ListTableMetadataPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/pagination/ListWorkGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-athena/src/runtimeConfig.native.ts | 2 +- .../client-athena/src/runtimeConfig.shared.ts | 4 +- clients/client-athena/src/runtimeConfig.ts | 8 +- .../client-athena/src/runtimeExtensions.ts | 2 +- .../client-athena/src/schemas/schemas_0.ts | 2 +- clients/client-auditmanager/package.json | 12 +- .../client-auditmanager/src/AuditManager.ts | 4 +- .../src/AuditManagerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...teAssessmentReportEvidenceFolderCommand.ts | 6 +- ...ssociateAssessmentReportEvidenceCommand.ts | 6 +- ...atchCreateDelegationByAssessmentCommand.ts | 6 +- ...atchDeleteDelegationByAssessmentCommand.ts | 6 +- ...ssociateAssessmentReportEvidenceCommand.ts | 6 +- ...mportEvidenceToAssessmentControlCommand.ts | 6 +- .../src/commands/CreateAssessmentCommand.ts | 6 +- .../CreateAssessmentFrameworkCommand.ts | 6 +- .../commands/CreateAssessmentReportCommand.ts | 6 +- .../src/commands/CreateControlCommand.ts | 6 +- .../src/commands/DeleteAssessmentCommand.ts | 6 +- .../DeleteAssessmentFrameworkCommand.ts | 6 +- .../DeleteAssessmentFrameworkShareCommand.ts | 6 +- .../commands/DeleteAssessmentReportCommand.ts | 6 +- .../src/commands/DeleteControlCommand.ts | 6 +- .../src/commands/DeregisterAccountCommand.ts | 6 +- ...registerOrganizationAdminAccountCommand.ts | 6 +- ...teAssessmentReportEvidenceFolderCommand.ts | 6 +- .../src/commands/GetAccountStatusCommand.ts | 6 +- .../src/commands/GetAssessmentCommand.ts | 6 +- .../commands/GetAssessmentFrameworkCommand.ts | 6 +- .../commands/GetAssessmentReportUrlCommand.ts | 6 +- .../src/commands/GetChangeLogsCommand.ts | 6 +- .../src/commands/GetControlCommand.ts | 6 +- .../src/commands/GetDelegationsCommand.ts | 6 +- .../GetEvidenceByEvidenceFolderCommand.ts | 6 +- .../src/commands/GetEvidenceCommand.ts | 6 +- .../GetEvidenceFileUploadUrlCommand.ts | 6 +- .../src/commands/GetEvidenceFolderCommand.ts | 6 +- .../GetEvidenceFoldersByAssessmentCommand.ts | 6 +- ...idenceFoldersByAssessmentControlCommand.ts | 6 +- .../GetInsightsByAssessmentCommand.ts | 6 +- .../src/commands/GetInsightsCommand.ts | 6 +- .../GetOrganizationAdminAccountCommand.ts | 6 +- .../src/commands/GetServicesInScopeCommand.ts | 6 +- .../src/commands/GetSettingsCommand.ts | 6 +- ...ntControlInsightsByControlDomainCommand.ts | 6 +- ...AssessmentFrameworkShareRequestsCommand.ts | 6 +- .../ListAssessmentFrameworksCommand.ts | 6 +- .../commands/ListAssessmentReportsCommand.ts | 6 +- .../src/commands/ListAssessmentsCommand.ts | 6 +- ...ontrolDomainInsightsByAssessmentCommand.ts | 6 +- .../ListControlDomainInsightsCommand.ts | 6 +- ...stControlInsightsByControlDomainCommand.ts | 6 +- .../src/commands/ListControlsCommand.ts | 6 +- .../ListKeywordsForDataSourceCommand.ts | 6 +- .../src/commands/ListNotificationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RegisterAccountCommand.ts | 6 +- ...RegisterOrganizationAdminAccountCommand.ts | 9 +- .../StartAssessmentFrameworkShareCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAssessmentCommand.ts | 6 +- .../UpdateAssessmentControlCommand.ts | 6 +- ...UpdateAssessmentControlSetStatusCommand.ts | 9 +- .../UpdateAssessmentFrameworkCommand.ts | 6 +- .../UpdateAssessmentFrameworkShareCommand.ts | 6 +- .../commands/UpdateAssessmentStatusCommand.ts | 6 +- .../src/commands/UpdateControlCommand.ts | 6 +- .../src/commands/UpdateSettingsCommand.ts | 6 +- ...alidateAssessmentReportIntegrityCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/AuditManagerServiceException.ts | 2 +- .../client-auditmanager/src/models/errors.ts | 2 +- .../src/pagination/GetChangeLogsPaginator.ts | 2 +- .../src/pagination/GetDelegationsPaginator.ts | 2 +- .../GetEvidenceByEvidenceFolderPaginator.ts | 2 +- ...enceFoldersByAssessmentControlPaginator.ts | 2 +- ...GetEvidenceFoldersByAssessmentPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...ControlInsightsByControlDomainPaginator.ts | 2 +- ...sessmentFrameworkShareRequestsPaginator.ts | 2 +- .../ListAssessmentFrameworksPaginator.ts | 2 +- .../ListAssessmentReportsPaginator.ts | 2 +- .../pagination/ListAssessmentsPaginator.ts | 2 +- ...trolDomainInsightsByAssessmentPaginator.ts | 2 +- .../ListControlDomainInsightsPaginator.ts | 2 +- ...ControlInsightsByControlDomainPaginator.ts | 2 +- .../src/pagination/ListControlsPaginator.ts | 2 +- .../ListKeywordsForDataSourcePaginator.ts | 2 +- .../pagination/ListNotificationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-auditmanager/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-auto-scaling-plans/package.json | 12 +- .../src/AutoScalingPlans.ts | 4 +- .../src/AutoScalingPlansClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateScalingPlanCommand.ts | 10 +- .../src/commands/DeleteScalingPlanCommand.ts | 10 +- .../DescribeScalingPlanResourcesCommand.ts | 10 +- .../commands/DescribeScalingPlansCommand.ts | 10 +- ...tScalingPlanResourceForecastDataCommand.ts | 10 +- .../src/commands/UpdateScalingPlanCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../AutoScalingPlansServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-auto-scaling/package.json | 12 +- .../client-auto-scaling/src/AutoScaling.ts | 4 +- .../src/AutoScalingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AttachInstancesCommand.ts | 6 +- .../AttachLoadBalancerTargetGroupsCommand.ts | 6 +- .../commands/AttachLoadBalancersCommand.ts | 6 +- .../commands/AttachTrafficSourcesCommand.ts | 6 +- .../BatchDeleteScheduledActionCommand.ts | 6 +- ...tchPutScheduledUpdateGroupActionCommand.ts | 9 +- .../commands/CancelInstanceRefreshCommand.ts | 6 +- .../CompleteLifecycleActionCommand.ts | 6 +- .../commands/CreateAutoScalingGroupCommand.ts | 6 +- .../CreateLaunchConfigurationCommand.ts | 6 +- .../src/commands/CreateOrUpdateTagsCommand.ts | 6 +- .../commands/DeleteAutoScalingGroupCommand.ts | 6 +- .../DeleteLaunchConfigurationCommand.ts | 6 +- .../commands/DeleteLifecycleHookCommand.ts | 6 +- .../DeleteNotificationConfigurationCommand.ts | 6 +- .../src/commands/DeletePolicyCommand.ts | 6 +- .../commands/DeleteScheduledActionCommand.ts | 6 +- .../src/commands/DeleteTagsCommand.ts | 6 +- .../src/commands/DeleteWarmPoolCommand.ts | 6 +- .../commands/DescribeAccountLimitsCommand.ts | 6 +- .../DescribeAdjustmentTypesCommand.ts | 6 +- .../DescribeAutoScalingGroupsCommand.ts | 6 +- .../DescribeAutoScalingInstancesCommand.ts | 6 +- ...ribeAutoScalingNotificationTypesCommand.ts | 6 +- .../DescribeInstanceRefreshesCommand.ts | 6 +- .../DescribeLaunchConfigurationsCommand.ts | 6 +- .../DescribeLifecycleHookTypesCommand.ts | 6 +- .../commands/DescribeLifecycleHooksCommand.ts | 6 +- ...DescribeLoadBalancerTargetGroupsCommand.ts | 9 +- .../commands/DescribeLoadBalancersCommand.ts | 6 +- .../DescribeMetricCollectionTypesCommand.ts | 6 +- ...scribeNotificationConfigurationsCommand.ts | 9 +- .../src/commands/DescribePoliciesCommand.ts | 6 +- .../DescribeScalingActivitiesCommand.ts | 6 +- .../DescribeScalingProcessTypesCommand.ts | 6 +- .../DescribeScheduledActionsCommand.ts | 6 +- .../src/commands/DescribeTagsCommand.ts | 6 +- .../DescribeTerminationPolicyTypesCommand.ts | 6 +- .../commands/DescribeTrafficSourcesCommand.ts | 6 +- .../src/commands/DescribeWarmPoolCommand.ts | 6 +- .../src/commands/DetachInstancesCommand.ts | 6 +- .../DetachLoadBalancerTargetGroupsCommand.ts | 6 +- .../commands/DetachLoadBalancersCommand.ts | 6 +- .../commands/DetachTrafficSourcesCommand.ts | 6 +- .../DisableMetricsCollectionCommand.ts | 6 +- .../EnableMetricsCollectionCommand.ts | 6 +- .../src/commands/EnterStandbyCommand.ts | 6 +- .../src/commands/ExecutePolicyCommand.ts | 6 +- .../src/commands/ExitStandbyCommand.ts | 6 +- .../GetPredictiveScalingForecastCommand.ts | 6 +- .../src/commands/LaunchInstancesCommand.ts | 6 +- .../src/commands/PutLifecycleHookCommand.ts | 6 +- .../PutNotificationConfigurationCommand.ts | 6 +- .../src/commands/PutScalingPolicyCommand.ts | 6 +- .../PutScheduledUpdateGroupActionCommand.ts | 6 +- .../src/commands/PutWarmPoolCommand.ts | 6 +- .../RecordLifecycleActionHeartbeatCommand.ts | 6 +- .../src/commands/ResumeProcessesCommand.ts | 6 +- .../RollbackInstanceRefreshCommand.ts | 6 +- .../src/commands/SetDesiredCapacityCommand.ts | 6 +- .../src/commands/SetInstanceHealthCommand.ts | 6 +- .../commands/SetInstanceProtectionCommand.ts | 6 +- .../commands/StartInstanceRefreshCommand.ts | 6 +- .../src/commands/SuspendProcessesCommand.ts | 6 +- ...minateInstanceInAutoScalingGroupCommand.ts | 6 +- .../commands/UpdateAutoScalingGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/AutoScalingServiceException.ts | 2 +- .../client-auto-scaling/src/models/errors.ts | 2 +- .../DescribeAutoScalingGroupsPaginator.ts | 2 +- .../DescribeAutoScalingInstancesPaginator.ts | 2 +- .../DescribeInstanceRefreshesPaginator.ts | 2 +- .../DescribeLaunchConfigurationsPaginator.ts | 2 +- ...scribeLoadBalancerTargetGroupsPaginator.ts | 2 +- .../DescribeLoadBalancersPaginator.ts | 2 +- ...ribeNotificationConfigurationsPaginator.ts | 2 +- .../pagination/DescribePoliciesPaginator.ts | 2 +- .../DescribeScalingActivitiesPaginator.ts | 2 +- .../DescribeScheduledActionsPaginator.ts | 2 +- .../src/pagination/DescribeTagsPaginator.ts | 2 +- .../DescribeTrafficSourcesPaginator.ts | 2 +- .../pagination/DescribeWarmPoolPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-auto-scaling/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-b2bi/package.json | 12 +- clients/client-b2bi/src/B2bi.ts | 4 +- clients/client-b2bi/src/B2biClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateCapabilityCommand.ts | 6 +- .../src/commands/CreatePartnershipCommand.ts | 6 +- .../src/commands/CreateProfileCommand.ts | 6 +- .../CreateStarterMappingTemplateCommand.ts | 6 +- .../src/commands/CreateTransformerCommand.ts | 6 +- .../src/commands/DeleteCapabilityCommand.ts | 6 +- .../src/commands/DeletePartnershipCommand.ts | 6 +- .../src/commands/DeleteProfileCommand.ts | 6 +- .../src/commands/DeleteTransformerCommand.ts | 6 +- .../src/commands/GenerateMappingCommand.ts | 6 +- .../src/commands/GetCapabilityCommand.ts | 6 +- .../src/commands/GetPartnershipCommand.ts | 6 +- .../src/commands/GetProfileCommand.ts | 6 +- .../src/commands/GetTransformerCommand.ts | 6 +- .../src/commands/GetTransformerJobCommand.ts | 6 +- .../src/commands/ListCapabilitiesCommand.ts | 6 +- .../src/commands/ListPartnershipsCommand.ts | 6 +- .../src/commands/ListProfilesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTransformersCommand.ts | 6 +- .../commands/StartTransformerJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TestConversionCommand.ts | 6 +- .../src/commands/TestMappingCommand.ts | 6 +- .../src/commands/TestParsingCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateCapabilityCommand.ts | 6 +- .../src/commands/UpdatePartnershipCommand.ts | 6 +- .../src/commands/UpdateProfileCommand.ts | 6 +- .../src/commands/UpdateTransformerCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-b2bi/src/extensionConfiguration.ts | 8 +- .../src/models/B2biServiceException.ts | 2 +- clients/client-b2bi/src/models/errors.ts | 2 +- .../client-b2bi/src/pagination/Interfaces.ts | 2 +- .../pagination/ListCapabilitiesPaginator.ts | 2 +- .../pagination/ListPartnershipsPaginator.ts | 2 +- .../src/pagination/ListProfilesPaginator.ts | 2 +- .../pagination/ListTransformersPaginator.ts | 2 +- .../client-b2bi/src/runtimeConfig.browser.ts | 7 +- .../client-b2bi/src/runtimeConfig.native.ts | 2 +- .../client-b2bi/src/runtimeConfig.shared.ts | 4 +- clients/client-b2bi/src/runtimeConfig.ts | 8 +- clients/client-b2bi/src/runtimeExtensions.ts | 2 +- clients/client-b2bi/src/schemas/schemas_0.ts | 2 +- clients/client-backup-gateway/package.json | 12 +- .../src/BackupGateway.ts | 4 +- .../src/BackupGatewayClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateGatewayToServerCommand.ts | 6 +- .../src/commands/CreateGatewayCommand.ts | 6 +- .../src/commands/DeleteGatewayCommand.ts | 6 +- .../src/commands/DeleteHypervisorCommand.ts | 6 +- .../DisassociateGatewayFromServerCommand.ts | 6 +- .../GetBandwidthRateLimitScheduleCommand.ts | 6 +- .../src/commands/GetGatewayCommand.ts | 6 +- .../src/commands/GetHypervisorCommand.ts | 6 +- .../GetHypervisorPropertyMappingsCommand.ts | 6 +- .../src/commands/GetVirtualMachineCommand.ts | 6 +- .../ImportHypervisorConfigurationCommand.ts | 6 +- .../src/commands/ListGatewaysCommand.ts | 6 +- .../src/commands/ListHypervisorsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListVirtualMachinesCommand.ts | 6 +- .../PutBandwidthRateLimitScheduleCommand.ts | 6 +- .../PutHypervisorPropertyMappingsCommand.ts | 6 +- .../PutMaintenanceStartTimeCommand.ts | 6 +- ...StartVirtualMachinesMetadataSyncCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../TestHypervisorConfigurationCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateGatewayInformationCommand.ts | 6 +- .../UpdateGatewaySoftwareNowCommand.ts | 6 +- .../src/commands/UpdateHypervisorCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/BackupGatewayServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListGatewaysPaginator.ts | 2 +- .../pagination/ListHypervisorsPaginator.ts | 2 +- .../ListVirtualMachinesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-backup/package.json | 12 +- clients/client-backup/src/Backup.ts | 4 +- clients/client-backup/src/BackupClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...ociateBackupVaultMpaApprovalTeamCommand.ts | 6 +- .../src/commands/CancelLegalHoldCommand.ts | 6 +- .../src/commands/CreateBackupPlanCommand.ts | 6 +- .../commands/CreateBackupSelectionCommand.ts | 6 +- .../src/commands/CreateBackupVaultCommand.ts | 6 +- .../src/commands/CreateFrameworkCommand.ts | 6 +- .../src/commands/CreateLegalHoldCommand.ts | 6 +- ...ateLogicallyAirGappedBackupVaultCommand.ts | 6 +- .../src/commands/CreateReportPlanCommand.ts | 6 +- .../CreateRestoreAccessBackupVaultCommand.ts | 6 +- .../CreateRestoreTestingPlanCommand.ts | 6 +- .../CreateRestoreTestingSelectionCommand.ts | 6 +- .../CreateTieringConfigurationCommand.ts | 6 +- .../src/commands/DeleteBackupPlanCommand.ts | 6 +- .../commands/DeleteBackupSelectionCommand.ts | 6 +- .../DeleteBackupVaultAccessPolicyCommand.ts | 6 +- .../src/commands/DeleteBackupVaultCommand.ts | 6 +- ...leteBackupVaultLockConfigurationCommand.ts | 6 +- .../DeleteBackupVaultNotificationsCommand.ts | 6 +- .../src/commands/DeleteFrameworkCommand.ts | 6 +- .../commands/DeleteRecoveryPointCommand.ts | 6 +- .../src/commands/DeleteReportPlanCommand.ts | 6 +- .../DeleteRestoreTestingPlanCommand.ts | 6 +- .../DeleteRestoreTestingSelectionCommand.ts | 6 +- .../DeleteTieringConfigurationCommand.ts | 6 +- .../src/commands/DescribeBackupJobCommand.ts | 6 +- .../commands/DescribeBackupVaultCommand.ts | 6 +- .../src/commands/DescribeCopyJobCommand.ts | 6 +- .../src/commands/DescribeFrameworkCommand.ts | 6 +- .../commands/DescribeGlobalSettingsCommand.ts | 6 +- .../DescribeProtectedResourceCommand.ts | 6 +- .../commands/DescribeRecoveryPointCommand.ts | 6 +- .../commands/DescribeRegionSettingsCommand.ts | 6 +- .../src/commands/DescribeReportJobCommand.ts | 6 +- .../src/commands/DescribeReportPlanCommand.ts | 6 +- .../src/commands/DescribeRestoreJobCommand.ts | 6 +- .../src/commands/DescribeScanJobCommand.ts | 6 +- ...ociateBackupVaultMpaApprovalTeamCommand.ts | 6 +- .../DisassociateRecoveryPointCommand.ts | 6 +- ...associateRecoveryPointFromParentCommand.ts | 6 +- .../ExportBackupPlanTemplateCommand.ts | 6 +- .../src/commands/GetBackupPlanCommand.ts | 6 +- .../commands/GetBackupPlanFromJSONCommand.ts | 6 +- .../GetBackupPlanFromTemplateCommand.ts | 6 +- .../src/commands/GetBackupSelectionCommand.ts | 6 +- .../GetBackupVaultAccessPolicyCommand.ts | 6 +- .../GetBackupVaultNotificationsCommand.ts | 6 +- .../src/commands/GetLegalHoldCommand.ts | 6 +- .../GetRecoveryPointIndexDetailsCommand.ts | 6 +- .../GetRecoveryPointRestoreMetadataCommand.ts | 6 +- .../commands/GetRestoreJobMetadataCommand.ts | 6 +- ...etRestoreTestingInferredMetadataCommand.ts | 9 +- .../commands/GetRestoreTestingPlanCommand.ts | 6 +- .../GetRestoreTestingSelectionCommand.ts | 6 +- .../GetSupportedResourceTypesCommand.ts | 6 +- .../GetTieringConfigurationCommand.ts | 6 +- .../commands/ListBackupJobSummariesCommand.ts | 6 +- .../src/commands/ListBackupJobsCommand.ts | 6 +- .../ListBackupPlanTemplatesCommand.ts | 6 +- .../commands/ListBackupPlanVersionsCommand.ts | 6 +- .../src/commands/ListBackupPlansCommand.ts | 6 +- .../commands/ListBackupSelectionsCommand.ts | 6 +- .../src/commands/ListBackupVaultsCommand.ts | 6 +- .../commands/ListCopyJobSummariesCommand.ts | 6 +- .../src/commands/ListCopyJobsCommand.ts | 6 +- .../src/commands/ListFrameworksCommand.ts | 6 +- .../ListIndexedRecoveryPointsCommand.ts | 6 +- .../src/commands/ListLegalHoldsCommand.ts | 6 +- ...tProtectedResourcesByBackupVaultCommand.ts | 6 +- .../commands/ListProtectedResourcesCommand.ts | 6 +- .../ListRecoveryPointsByBackupVaultCommand.ts | 6 +- .../ListRecoveryPointsByLegalHoldCommand.ts | 6 +- .../ListRecoveryPointsByResourceCommand.ts | 6 +- .../src/commands/ListReportJobsCommand.ts | 6 +- .../src/commands/ListReportPlansCommand.ts | 6 +- .../ListRestoreAccessBackupVaultsCommand.ts | 6 +- .../ListRestoreJobSummariesCommand.ts | 6 +- ...stRestoreJobsByProtectedResourceCommand.ts | 9 +- .../src/commands/ListRestoreJobsCommand.ts | 6 +- .../ListRestoreTestingPlansCommand.ts | 6 +- .../ListRestoreTestingSelectionsCommand.ts | 6 +- .../commands/ListScanJobSummariesCommand.ts | 6 +- .../src/commands/ListScanJobsCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../ListTieringConfigurationsCommand.ts | 6 +- .../PutBackupVaultAccessPolicyCommand.ts | 6 +- .../PutBackupVaultLockConfigurationCommand.ts | 6 +- .../PutBackupVaultNotificationsCommand.ts | 6 +- .../PutRestoreValidationResultCommand.ts | 6 +- .../RevokeRestoreAccessBackupVaultCommand.ts | 6 +- .../src/commands/StartBackupJobCommand.ts | 6 +- .../src/commands/StartCopyJobCommand.ts | 6 +- .../src/commands/StartReportJobCommand.ts | 6 +- .../src/commands/StartRestoreJobCommand.ts | 6 +- .../src/commands/StartScanJobCommand.ts | 6 +- .../src/commands/StopBackupJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBackupPlanCommand.ts | 6 +- .../src/commands/UpdateFrameworkCommand.ts | 6 +- .../commands/UpdateGlobalSettingsCommand.ts | 6 +- ...UpdateRecoveryPointIndexSettingsCommand.ts | 6 +- .../UpdateRecoveryPointLifecycleCommand.ts | 6 +- .../commands/UpdateRegionSettingsCommand.ts | 6 +- .../src/commands/UpdateReportPlanCommand.ts | 6 +- .../UpdateRestoreTestingPlanCommand.ts | 6 +- .../UpdateRestoreTestingSelectionCommand.ts | 6 +- .../UpdateTieringConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/BackupServiceException.ts | 2 +- clients/client-backup/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListBackupJobSummariesPaginator.ts | 2 +- .../src/pagination/ListBackupJobsPaginator.ts | 2 +- .../ListBackupPlanTemplatesPaginator.ts | 2 +- .../ListBackupPlanVersionsPaginator.ts | 2 +- .../pagination/ListBackupPlansPaginator.ts | 2 +- .../ListBackupSelectionsPaginator.ts | 2 +- .../pagination/ListBackupVaultsPaginator.ts | 2 +- .../ListCopyJobSummariesPaginator.ts | 2 +- .../src/pagination/ListCopyJobsPaginator.ts | 2 +- .../src/pagination/ListFrameworksPaginator.ts | 2 +- .../ListIndexedRecoveryPointsPaginator.ts | 2 +- .../src/pagination/ListLegalHoldsPaginator.ts | 2 +- ...rotectedResourcesByBackupVaultPaginator.ts | 2 +- .../ListProtectedResourcesPaginator.ts | 2 +- ...istRecoveryPointsByBackupVaultPaginator.ts | 2 +- .../ListRecoveryPointsByLegalHoldPaginator.ts | 2 +- .../ListRecoveryPointsByResourcePaginator.ts | 2 +- .../src/pagination/ListReportJobsPaginator.ts | 2 +- .../pagination/ListReportPlansPaginator.ts | 2 +- .../ListRestoreAccessBackupVaultsPaginator.ts | 2 +- .../ListRestoreJobSummariesPaginator.ts | 2 +- ...RestoreJobsByProtectedResourcePaginator.ts | 2 +- .../pagination/ListRestoreJobsPaginator.ts | 2 +- .../ListRestoreTestingPlansPaginator.ts | 2 +- .../ListRestoreTestingSelectionsPaginator.ts | 2 +- .../ListScanJobSummariesPaginator.ts | 2 +- .../src/pagination/ListScanJobsPaginator.ts | 2 +- .../src/pagination/ListTagsPaginator.ts | 2 +- .../ListTieringConfigurationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-backup/src/runtimeConfig.native.ts | 2 +- .../client-backup/src/runtimeConfig.shared.ts | 4 +- clients/client-backup/src/runtimeConfig.ts | 8 +- .../client-backup/src/runtimeExtensions.ts | 2 +- .../client-backup/src/schemas/schemas_0.ts | 2 +- clients/client-backupsearch/package.json | 12 +- .../client-backupsearch/src/BackupSearch.ts | 4 +- .../src/BackupSearchClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetSearchJobCommand.ts | 6 +- .../GetSearchResultExportJobCommand.ts | 6 +- .../commands/ListSearchJobBackupsCommand.ts | 6 +- .../commands/ListSearchJobResultsCommand.ts | 6 +- .../src/commands/ListSearchJobsCommand.ts | 6 +- .../ListSearchResultExportJobsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartSearchJobCommand.ts | 6 +- .../StartSearchResultExportJobCommand.ts | 6 +- .../src/commands/StopSearchJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/BackupSearchServiceException.ts | 2 +- .../client-backupsearch/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListSearchJobBackupsPaginator.ts | 2 +- .../ListSearchJobResultsPaginator.ts | 2 +- .../src/pagination/ListSearchJobsPaginator.ts | 2 +- .../ListSearchResultExportJobsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-backupsearch/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-batch/package.json | 12 +- clients/client-batch/src/Batch.ts | 4 +- clients/client-batch/src/BatchClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelJobCommand.ts | 6 +- .../CreateComputeEnvironmentCommand.ts | 6 +- .../CreateConsumableResourceCommand.ts | 6 +- .../src/commands/CreateJobQueueCommand.ts | 6 +- .../commands/CreateSchedulingPolicyCommand.ts | 6 +- .../CreateServiceEnvironmentCommand.ts | 6 +- .../DeleteComputeEnvironmentCommand.ts | 6 +- .../DeleteConsumableResourceCommand.ts | 6 +- .../src/commands/DeleteJobQueueCommand.ts | 6 +- .../commands/DeleteSchedulingPolicyCommand.ts | 6 +- .../DeleteServiceEnvironmentCommand.ts | 6 +- .../DeregisterJobDefinitionCommand.ts | 6 +- .../DescribeComputeEnvironmentsCommand.ts | 6 +- .../DescribeConsumableResourceCommand.ts | 6 +- .../commands/DescribeJobDefinitionsCommand.ts | 6 +- .../src/commands/DescribeJobQueuesCommand.ts | 6 +- .../src/commands/DescribeJobsCommand.ts | 6 +- .../DescribeSchedulingPoliciesCommand.ts | 6 +- .../DescribeServiceEnvironmentsCommand.ts | 6 +- .../src/commands/DescribeServiceJobCommand.ts | 6 +- .../commands/GetJobQueueSnapshotCommand.ts | 6 +- .../ListConsumableResourcesCommand.ts | 6 +- .../ListJobsByConsumableResourceCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../commands/ListSchedulingPoliciesCommand.ts | 6 +- .../src/commands/ListServiceJobsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/RegisterJobDefinitionCommand.ts | 6 +- .../src/commands/SubmitJobCommand.ts | 6 +- .../src/commands/SubmitServiceJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TerminateJobCommand.ts | 6 +- .../commands/TerminateServiceJobCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateComputeEnvironmentCommand.ts | 6 +- .../UpdateConsumableResourceCommand.ts | 6 +- .../src/commands/UpdateJobQueueCommand.ts | 6 +- .../commands/UpdateSchedulingPolicyCommand.ts | 6 +- .../UpdateServiceEnvironmentCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/BatchServiceException.ts | 2 +- clients/client-batch/src/models/errors.ts | 2 +- .../DescribeComputeEnvironmentsPaginator.ts | 2 +- .../DescribeJobDefinitionsPaginator.ts | 2 +- .../pagination/DescribeJobQueuesPaginator.ts | 2 +- .../DescribeServiceEnvironmentsPaginator.ts | 2 +- .../client-batch/src/pagination/Interfaces.ts | 2 +- .../ListConsumableResourcesPaginator.ts | 2 +- .../ListJobsByConsumableResourcePaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../ListSchedulingPoliciesPaginator.ts | 2 +- .../pagination/ListServiceJobsPaginator.ts | 2 +- .../client-batch/src/runtimeConfig.browser.ts | 7 +- .../client-batch/src/runtimeConfig.native.ts | 2 +- .../client-batch/src/runtimeConfig.shared.ts | 4 +- clients/client-batch/src/runtimeConfig.ts | 8 +- clients/client-batch/src/runtimeExtensions.ts | 2 +- clients/client-batch/src/schemas/schemas_0.ts | 2 +- clients/client-bcm-dashboards/package.json | 12 +- .../src/BCMDashboards.ts | 4 +- .../src/BCMDashboardsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateDashboardCommand.ts | 6 +- .../src/commands/DeleteDashboardCommand.ts | 6 +- .../src/commands/GetDashboardCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/ListDashboardsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDashboardCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/BCMDashboardsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDashboardsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-bcm-data-exports/package.json | 12 +- .../src/BCMDataExports.ts | 4 +- .../src/BCMDataExportsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateExportCommand.ts | 10 +- .../src/commands/DeleteExportCommand.ts | 10 +- .../src/commands/GetExecutionCommand.ts | 10 +- .../src/commands/GetExportCommand.ts | 10 +- .../src/commands/GetTableCommand.ts | 10 +- .../src/commands/ListExecutionsCommand.ts | 10 +- .../src/commands/ListExportsCommand.ts | 10 +- .../src/commands/ListTablesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateExportCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/BCMDataExportsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListExecutionsPaginator.ts | 2 +- .../src/pagination/ListExportsPaginator.ts | 2 +- .../src/pagination/ListTablesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/BCMPricingCalculator.ts | 4 +- .../src/BCMPricingCalculatorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...llScenarioCommitmentModificationCommand.ts | 6 +- ...ateBillScenarioUsageModificationCommand.ts | 6 +- ...BatchCreateWorkloadEstimateUsageCommand.ts | 9 +- ...llScenarioCommitmentModificationCommand.ts | 6 +- ...eteBillScenarioUsageModificationCommand.ts | 6 +- ...BatchDeleteWorkloadEstimateUsageCommand.ts | 9 +- ...llScenarioCommitmentModificationCommand.ts | 6 +- ...ateBillScenarioUsageModificationCommand.ts | 6 +- ...BatchUpdateWorkloadEstimateUsageCommand.ts | 9 +- .../src/commands/CreateBillEstimateCommand.ts | 6 +- .../src/commands/CreateBillScenarioCommand.ts | 6 +- .../commands/CreateWorkloadEstimateCommand.ts | 6 +- .../src/commands/DeleteBillEstimateCommand.ts | 6 +- .../src/commands/DeleteBillScenarioCommand.ts | 6 +- .../commands/DeleteWorkloadEstimateCommand.ts | 6 +- .../src/commands/GetBillEstimateCommand.ts | 6 +- .../src/commands/GetBillScenarioCommand.ts | 6 +- .../src/commands/GetPreferencesCommand.ts | 6 +- .../commands/GetWorkloadEstimateCommand.ts | 6 +- .../ListBillEstimateCommitmentsCommand.ts | 6 +- ...mateInputCommitmentModificationsCommand.ts | 6 +- ...lEstimateInputUsageModificationsCommand.ts | 6 +- .../ListBillEstimateLineItemsCommand.ts | 6 +- .../src/commands/ListBillEstimatesCommand.ts | 6 +- ...lScenarioCommitmentModificationsCommand.ts | 6 +- ...stBillScenarioUsageModificationsCommand.ts | 6 +- .../src/commands/ListBillScenariosCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListWorkloadEstimateUsageCommand.ts | 6 +- .../commands/ListWorkloadEstimatesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBillEstimateCommand.ts | 6 +- .../src/commands/UpdateBillScenarioCommand.ts | 6 +- .../src/commands/UpdatePreferencesCommand.ts | 6 +- .../commands/UpdateWorkloadEstimateCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../BCMPricingCalculatorServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListBillEstimateCommitmentsPaginator.ts | 2 +- ...teInputCommitmentModificationsPaginator.ts | 2 +- ...stimateInputUsageModificationsPaginator.ts | 2 +- .../ListBillEstimateLineItemsPaginator.ts | 2 +- .../pagination/ListBillEstimatesPaginator.ts | 2 +- ...cenarioCommitmentModificationsPaginator.ts | 2 +- ...BillScenarioUsageModificationsPaginator.ts | 2 +- .../pagination/ListBillScenariosPaginator.ts | 2 +- .../ListWorkloadEstimateUsagePaginator.ts | 2 +- .../ListWorkloadEstimatesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/BCMRecommendedActions.ts | 4 +- .../src/BCMRecommendedActionsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ListRecommendedActionsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../BCMRecommendedActionsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListRecommendedActionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-bedrock-agent-runtime/package.json | 12 +- .../src/BedrockAgentRuntime.ts | 4 +- .../src/BedrockAgentRuntimeClient.ts | 71 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/CreateInvocationCommand.ts | 6 +- .../src/commands/CreateSessionCommand.ts | 6 +- .../src/commands/DeleteAgentMemoryCommand.ts | 6 +- .../src/commands/DeleteSessionCommand.ts | 6 +- .../src/commands/EndSessionCommand.ts | 6 +- .../src/commands/GenerateQueryCommand.ts | 6 +- .../src/commands/GetAgentMemoryCommand.ts | 6 +- .../GetExecutionFlowSnapshotCommand.ts | 6 +- .../src/commands/GetFlowExecutionCommand.ts | 6 +- .../src/commands/GetInvocationStepCommand.ts | 6 +- .../src/commands/GetSessionCommand.ts | 6 +- .../src/commands/InvokeAgentCommand.ts | 6 +- .../src/commands/InvokeFlowCommand.ts | 6 +- .../src/commands/InvokeInlineAgentCommand.ts | 8 +- .../ListFlowExecutionEventsCommand.ts | 6 +- .../src/commands/ListFlowExecutionsCommand.ts | 6 +- .../commands/ListInvocationStepsCommand.ts | 6 +- .../src/commands/ListInvocationsCommand.ts | 6 +- .../src/commands/ListSessionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/OptimizePromptCommand.ts | 6 +- .../src/commands/PutInvocationStepCommand.ts | 6 +- .../src/commands/RerankCommand.ts | 6 +- .../commands/RetrieveAndGenerateCommand.ts | 6 +- .../RetrieveAndGenerateStreamCommand.ts | 6 +- .../src/commands/RetrieveCommand.ts | 6 +- .../src/commands/StartFlowExecutionCommand.ts | 6 +- .../src/commands/StopFlowExecutionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateSessionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../BedrockAgentRuntimeServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/GetAgentMemoryPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListFlowExecutionEventsPaginator.ts | 2 +- .../pagination/ListFlowExecutionsPaginator.ts | 2 +- .../ListInvocationStepsPaginator.ts | 2 +- .../pagination/ListInvocationsPaginator.ts | 2 +- .../src/pagination/ListSessionsPaginator.ts | 2 +- .../src/pagination/RerankPaginator.ts | 2 +- .../src/pagination/RetrievePaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-bedrock-agent/package.json | 12 +- .../client-bedrock-agent/src/BedrockAgent.ts | 4 +- .../src/BedrockAgentClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateAgentCollaboratorCommand.ts | 6 +- .../AssociateAgentKnowledgeBaseCommand.ts | 6 +- .../commands/CreateAgentActionGroupCommand.ts | 6 +- .../src/commands/CreateAgentAliasCommand.ts | 6 +- .../src/commands/CreateAgentCommand.ts | 6 +- .../src/commands/CreateDataSourceCommand.ts | 6 +- .../src/commands/CreateFlowAliasCommand.ts | 6 +- .../src/commands/CreateFlowCommand.ts | 6 +- .../src/commands/CreateFlowVersionCommand.ts | 8 +- .../commands/CreateKnowledgeBaseCommand.ts | 6 +- .../src/commands/CreatePromptCommand.ts | 6 +- .../commands/CreatePromptVersionCommand.ts | 6 +- .../commands/DeleteAgentActionGroupCommand.ts | 6 +- .../src/commands/DeleteAgentAliasCommand.ts | 6 +- .../src/commands/DeleteAgentCommand.ts | 6 +- .../src/commands/DeleteAgentVersionCommand.ts | 6 +- .../src/commands/DeleteDataSourceCommand.ts | 6 +- .../src/commands/DeleteFlowAliasCommand.ts | 6 +- .../src/commands/DeleteFlowCommand.ts | 6 +- .../src/commands/DeleteFlowVersionCommand.ts | 6 +- .../commands/DeleteKnowledgeBaseCommand.ts | 6 +- .../DeleteKnowledgeBaseDocumentsCommand.ts | 6 +- .../src/commands/DeletePromptCommand.ts | 6 +- .../DisassociateAgentCollaboratorCommand.ts | 6 +- .../DisassociateAgentKnowledgeBaseCommand.ts | 6 +- .../commands/GetAgentActionGroupCommand.ts | 6 +- .../src/commands/GetAgentAliasCommand.ts | 6 +- .../commands/GetAgentCollaboratorCommand.ts | 6 +- .../src/commands/GetAgentCommand.ts | 6 +- .../commands/GetAgentKnowledgeBaseCommand.ts | 6 +- .../src/commands/GetAgentVersionCommand.ts | 6 +- .../src/commands/GetDataSourceCommand.ts | 6 +- .../src/commands/GetFlowAliasCommand.ts | 6 +- .../src/commands/GetFlowCommand.ts | 8 +- .../src/commands/GetFlowVersionCommand.ts | 8 +- .../src/commands/GetIngestionJobCommand.ts | 6 +- .../src/commands/GetKnowledgeBaseCommand.ts | 6 +- .../GetKnowledgeBaseDocumentsCommand.ts | 6 +- .../src/commands/GetPromptCommand.ts | 6 +- .../IngestKnowledgeBaseDocumentsCommand.ts | 6 +- .../commands/ListAgentActionGroupsCommand.ts | 6 +- .../src/commands/ListAgentAliasesCommand.ts | 6 +- .../commands/ListAgentCollaboratorsCommand.ts | 6 +- .../ListAgentKnowledgeBasesCommand.ts | 6 +- .../src/commands/ListAgentVersionsCommand.ts | 6 +- .../src/commands/ListAgentsCommand.ts | 6 +- .../src/commands/ListDataSourcesCommand.ts | 6 +- .../src/commands/ListFlowAliasesCommand.ts | 6 +- .../src/commands/ListFlowVersionsCommand.ts | 6 +- .../src/commands/ListFlowsCommand.ts | 6 +- .../src/commands/ListIngestionJobsCommand.ts | 6 +- .../ListKnowledgeBaseDocumentsCommand.ts | 6 +- .../src/commands/ListKnowledgeBasesCommand.ts | 6 +- .../src/commands/ListPromptsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PrepareAgentCommand.ts | 6 +- .../src/commands/PrepareFlowCommand.ts | 6 +- .../src/commands/StartIngestionJobCommand.ts | 6 +- .../src/commands/StopIngestionJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAgentActionGroupCommand.ts | 6 +- .../src/commands/UpdateAgentAliasCommand.ts | 6 +- .../UpdateAgentCollaboratorCommand.ts | 6 +- .../src/commands/UpdateAgentCommand.ts | 6 +- .../UpdateAgentKnowledgeBaseCommand.ts | 6 +- .../src/commands/UpdateDataSourceCommand.ts | 6 +- .../src/commands/UpdateFlowAliasCommand.ts | 6 +- .../src/commands/UpdateFlowCommand.ts | 6 +- .../commands/UpdateKnowledgeBaseCommand.ts | 6 +- .../src/commands/UpdatePromptCommand.ts | 6 +- .../commands/ValidateFlowDefinitionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/BedrockAgentServiceException.ts | 2 +- .../client-bedrock-agent/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAgentActionGroupsPaginator.ts | 2 +- .../pagination/ListAgentAliasesPaginator.ts | 2 +- .../ListAgentCollaboratorsPaginator.ts | 2 +- .../ListAgentKnowledgeBasesPaginator.ts | 2 +- .../pagination/ListAgentVersionsPaginator.ts | 2 +- .../src/pagination/ListAgentsPaginator.ts | 2 +- .../pagination/ListDataSourcesPaginator.ts | 2 +- .../pagination/ListFlowAliasesPaginator.ts | 2 +- .../pagination/ListFlowVersionsPaginator.ts | 2 +- .../src/pagination/ListFlowsPaginator.ts | 2 +- .../pagination/ListIngestionJobsPaginator.ts | 2 +- .../ListKnowledgeBaseDocumentsPaginator.ts | 2 +- .../pagination/ListKnowledgeBasesPaginator.ts | 2 +- .../src/pagination/ListPromptsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-bedrock-agent/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/BedrockAgentCoreControl.ts | 4 +- .../src/BedrockAgentCoreControlClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateAgentRuntimeCommand.ts | 6 +- .../CreateAgentRuntimeEndpointCommand.ts | 6 +- .../CreateApiKeyCredentialProviderCommand.ts | 6 +- .../src/commands/CreateBrowserCommand.ts | 6 +- .../commands/CreateCodeInterpreterCommand.ts | 6 +- .../src/commands/CreateGatewayCommand.ts | 6 +- .../commands/CreateGatewayTargetCommand.ts | 6 +- .../src/commands/CreateMemoryCommand.ts | 6 +- .../CreateOauth2CredentialProviderCommand.ts | 6 +- .../commands/CreateWorkloadIdentityCommand.ts | 6 +- .../src/commands/DeleteAgentRuntimeCommand.ts | 6 +- .../DeleteAgentRuntimeEndpointCommand.ts | 6 +- .../DeleteApiKeyCredentialProviderCommand.ts | 6 +- .../src/commands/DeleteBrowserCommand.ts | 6 +- .../commands/DeleteCodeInterpreterCommand.ts | 6 +- .../src/commands/DeleteGatewayCommand.ts | 6 +- .../commands/DeleteGatewayTargetCommand.ts | 6 +- .../src/commands/DeleteMemoryCommand.ts | 6 +- .../DeleteOauth2CredentialProviderCommand.ts | 6 +- .../commands/DeleteWorkloadIdentityCommand.ts | 6 +- .../src/commands/GetAgentRuntimeCommand.ts | 6 +- .../GetAgentRuntimeEndpointCommand.ts | 6 +- .../GetApiKeyCredentialProviderCommand.ts | 6 +- .../src/commands/GetBrowserCommand.ts | 6 +- .../src/commands/GetCodeInterpreterCommand.ts | 6 +- .../src/commands/GetGatewayCommand.ts | 6 +- .../src/commands/GetGatewayTargetCommand.ts | 6 +- .../src/commands/GetMemoryCommand.ts | 6 +- .../GetOauth2CredentialProviderCommand.ts | 6 +- .../src/commands/GetTokenVaultCommand.ts | 6 +- .../commands/GetWorkloadIdentityCommand.ts | 6 +- .../ListAgentRuntimeEndpointsCommand.ts | 6 +- .../ListAgentRuntimeVersionsCommand.ts | 6 +- .../src/commands/ListAgentRuntimesCommand.ts | 6 +- .../ListApiKeyCredentialProvidersCommand.ts | 6 +- .../src/commands/ListBrowsersCommand.ts | 6 +- .../commands/ListCodeInterpretersCommand.ts | 6 +- .../src/commands/ListGatewayTargetsCommand.ts | 6 +- .../src/commands/ListGatewaysCommand.ts | 6 +- .../src/commands/ListMemoriesCommand.ts | 6 +- .../ListOauth2CredentialProvidersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListWorkloadIdentitiesCommand.ts | 6 +- .../src/commands/SetTokenVaultCMKCommand.ts | 6 +- .../SynchronizeGatewayTargetsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAgentRuntimeCommand.ts | 6 +- .../UpdateAgentRuntimeEndpointCommand.ts | 6 +- .../UpdateApiKeyCredentialProviderCommand.ts | 6 +- .../src/commands/UpdateGatewayCommand.ts | 6 +- .../commands/UpdateGatewayTargetCommand.ts | 6 +- .../src/commands/UpdateMemoryCommand.ts | 6 +- .../UpdateOauth2CredentialProviderCommand.ts | 6 +- .../commands/UpdateWorkloadIdentityCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...BedrockAgentCoreControlServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAgentRuntimeEndpointsPaginator.ts | 2 +- .../ListAgentRuntimeVersionsPaginator.ts | 2 +- .../pagination/ListAgentRuntimesPaginator.ts | 2 +- .../ListApiKeyCredentialProvidersPaginator.ts | 2 +- .../src/pagination/ListBrowsersPaginator.ts | 2 +- .../ListCodeInterpretersPaginator.ts | 2 +- .../pagination/ListGatewayTargetsPaginator.ts | 2 +- .../src/pagination/ListGatewaysPaginator.ts | 2 +- .../src/pagination/ListMemoriesPaginator.ts | 2 +- .../ListOauth2CredentialProvidersPaginator.ts | 2 +- .../ListWorkloadIdentitiesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-bedrock-agentcore/package.json | 12 +- .../src/BedrockAgentCore.ts | 4 +- .../src/BedrockAgentCoreClient.ts | 73 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchCreateMemoryRecordsCommand.ts | 10 +- .../BatchDeleteMemoryRecordsCommand.ts | 10 +- .../BatchUpdateMemoryRecordsCommand.ts | 10 +- .../CompleteResourceTokenAuthCommand.ts | 10 +- .../src/commands/CreateEventCommand.ts | 10 +- .../src/commands/DeleteEventCommand.ts | 10 +- .../src/commands/DeleteMemoryRecordCommand.ts | 10 +- .../src/commands/GetAgentCardCommand.ts | 10 +- .../src/commands/GetBrowserSessionCommand.ts | 10 +- .../GetCodeInterpreterSessionCommand.ts | 10 +- .../src/commands/GetEventCommand.ts | 10 +- .../src/commands/GetMemoryRecordCommand.ts | 10 +- .../src/commands/GetResourceApiKeyCommand.ts | 10 +- .../commands/GetResourceOauth2TokenCommand.ts | 10 +- .../commands/GetWorkloadAccessTokenCommand.ts | 10 +- .../GetWorkloadAccessTokenForJWTCommand.ts | 10 +- .../GetWorkloadAccessTokenForUserIdCommand.ts | 13 +- .../src/commands/InvokeAgentRuntimeCommand.ts | 8 +- .../commands/InvokeCodeInterpreterCommand.ts | 10 +- .../src/commands/ListActorsCommand.ts | 10 +- .../commands/ListBrowserSessionsCommand.ts | 10 +- .../ListCodeInterpreterSessionsCommand.ts | 10 +- .../src/commands/ListEventsCommand.ts | 10 +- .../ListMemoryExtractionJobsCommand.ts | 10 +- .../src/commands/ListMemoryRecordsCommand.ts | 10 +- .../src/commands/ListSessionsCommand.ts | 10 +- .../commands/RetrieveMemoryRecordsCommand.ts | 10 +- .../commands/StartBrowserSessionCommand.ts | 10 +- .../StartCodeInterpreterSessionCommand.ts | 10 +- .../StartMemoryExtractionJobCommand.ts | 10 +- .../src/commands/StopBrowserSessionCommand.ts | 10 +- .../StopCodeInterpreterSessionCommand.ts | 10 +- .../src/commands/StopRuntimeSessionCommand.ts | 10 +- .../commands/UpdateBrowserStreamCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../BedrockAgentCoreServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListActorsPaginator.ts | 2 +- .../src/pagination/ListEventsPaginator.ts | 2 +- .../ListMemoryExtractionJobsPaginator.ts | 2 +- .../pagination/ListMemoryRecordsPaginator.ts | 2 +- .../src/pagination/ListSessionsPaginator.ts | 2 +- .../RetrieveMemoryRecordsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/BedrockDataAutomationRuntime.ts | 7 +- .../src/BedrockDataAutomationRuntimeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../GetDataAutomationStatusCommand.ts | 6 +- .../InvokeDataAutomationAsyncCommand.ts | 6 +- .../commands/InvokeDataAutomationCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...ckDataAutomationRuntimeServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/BedrockDataAutomation.ts | 4 +- .../src/BedrockDataAutomationClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateBlueprintCommand.ts | 6 +- .../commands/CreateBlueprintVersionCommand.ts | 6 +- .../CreateDataAutomationProjectCommand.ts | 6 +- .../src/commands/DeleteBlueprintCommand.ts | 6 +- .../DeleteDataAutomationProjectCommand.ts | 6 +- .../src/commands/GetBlueprintCommand.ts | 6 +- .../GetDataAutomationProjectCommand.ts | 6 +- .../src/commands/ListBlueprintsCommand.ts | 6 +- .../ListDataAutomationProjectsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBlueprintCommand.ts | 6 +- .../UpdateDataAutomationProjectCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../BedrockDataAutomationServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListBlueprintsPaginator.ts | 2 +- .../ListDataAutomationProjectsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-bedrock-runtime/package.json | 12 +- .../src/BedrockRuntime.ts | 4 +- .../src/BedrockRuntimeClient.ts | 81 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 14 +- .../src/commands/ApplyGuardrailCommand.ts | 10 +- .../src/commands/ConverseCommand.ts | 10 +- .../src/commands/ConverseStreamCommand.ts | 10 +- .../src/commands/CountTokensCommand.ts | 10 +- .../src/commands/GetAsyncInvokeCommand.ts | 10 +- .../src/commands/InvokeModelCommand.ts | 8 +- ...vokeModelWithBidirectionalStreamCommand.ts | 10 +- .../InvokeModelWithResponseStreamCommand.ts | 10 +- .../src/commands/ListAsyncInvokesCommand.ts | 10 +- .../src/commands/StartAsyncInvokeCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/BedrockRuntimeServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAsyncInvokesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 10 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-bedrock/package.json | 12 +- clients/client-bedrock/src/Bedrock.ts | 4 +- clients/client-bedrock/src/BedrockClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 14 +- .../BatchDeleteEvaluationJobCommand.ts | 6 +- ...atedReasoningPolicyBuildWorkflowCommand.ts | 6 +- .../CreateAutomatedReasoningPolicyCommand.ts | 6 +- ...AutomatedReasoningPolicyTestCaseCommand.ts | 6 +- ...eAutomatedReasoningPolicyVersionCommand.ts | 6 +- .../src/commands/CreateCustomModelCommand.ts | 6 +- .../CreateCustomModelDeploymentCommand.ts | 6 +- .../commands/CreateEvaluationJobCommand.ts | 8 +- .../CreateFoundationModelAgreementCommand.ts | 6 +- .../src/commands/CreateGuardrailCommand.ts | 6 +- .../commands/CreateGuardrailVersionCommand.ts | 6 +- .../commands/CreateInferenceProfileCommand.ts | 6 +- .../CreateMarketplaceModelEndpointCommand.ts | 6 +- .../src/commands/CreateModelCopyJobCommand.ts | 6 +- .../CreateModelCustomizationJobCommand.ts | 6 +- .../commands/CreateModelImportJobCommand.ts | 6 +- .../CreateModelInvocationJobCommand.ts | 6 +- .../src/commands/CreatePromptRouterCommand.ts | 6 +- ...CreateProvisionedModelThroughputCommand.ts | 9 +- ...atedReasoningPolicyBuildWorkflowCommand.ts | 6 +- .../DeleteAutomatedReasoningPolicyCommand.ts | 6 +- ...AutomatedReasoningPolicyTestCaseCommand.ts | 6 +- .../src/commands/DeleteCustomModelCommand.ts | 6 +- .../DeleteCustomModelDeploymentCommand.ts | 6 +- ...teEnforcedGuardrailConfigurationCommand.ts | 6 +- .../DeleteFoundationModelAgreementCommand.ts | 6 +- .../src/commands/DeleteGuardrailCommand.ts | 6 +- .../commands/DeleteImportedModelCommand.ts | 6 +- .../commands/DeleteInferenceProfileCommand.ts | 6 +- .../DeleteMarketplaceModelEndpointCommand.ts | 6 +- ...elInvocationLoggingConfigurationCommand.ts | 6 +- .../src/commands/DeletePromptRouterCommand.ts | 6 +- ...DeleteProvisionedModelThroughputCommand.ts | 9 +- ...registerMarketplaceModelEndpointCommand.ts | 6 +- ...tAutomatedReasoningPolicyVersionCommand.ts | 6 +- ...omatedReasoningPolicyAnnotationsCommand.ts | 6 +- ...atedReasoningPolicyBuildWorkflowCommand.ts | 6 +- ...gPolicyBuildWorkflowResultAssetsCommand.ts | 6 +- .../GetAutomatedReasoningPolicyCommand.ts | 6 +- ...matedReasoningPolicyNextScenarioCommand.ts | 6 +- ...AutomatedReasoningPolicyTestCaseCommand.ts | 6 +- ...tomatedReasoningPolicyTestResultCommand.ts | 6 +- .../src/commands/GetCustomModelCommand.ts | 6 +- .../GetCustomModelDeploymentCommand.ts | 6 +- .../src/commands/GetEvaluationJobCommand.ts | 8 +- .../GetFoundationModelAvailabilityCommand.ts | 6 +- .../src/commands/GetFoundationModelCommand.ts | 6 +- .../src/commands/GetGuardrailCommand.ts | 6 +- .../src/commands/GetImportedModelCommand.ts | 6 +- .../commands/GetInferenceProfileCommand.ts | 6 +- .../GetMarketplaceModelEndpointCommand.ts | 6 +- .../src/commands/GetModelCopyJobCommand.ts | 6 +- .../GetModelCustomizationJobCommand.ts | 6 +- .../src/commands/GetModelImportJobCommand.ts | 6 +- .../commands/GetModelInvocationJobCommand.ts | 6 +- ...elInvocationLoggingConfigurationCommand.ts | 6 +- .../src/commands/GetPromptRouterCommand.ts | 6 +- .../GetProvisionedModelThroughputCommand.ts | 6 +- .../GetUseCaseForModelAccessCommand.ts | 6 +- .../ListAutomatedReasoningPoliciesCommand.ts | 6 +- ...tedReasoningPolicyBuildWorkflowsCommand.ts | 6 +- ...utomatedReasoningPolicyTestCasesCommand.ts | 6 +- ...omatedReasoningPolicyTestResultsCommand.ts | 6 +- .../ListCustomModelDeploymentsCommand.ts | 6 +- .../src/commands/ListCustomModelsCommand.ts | 6 +- ...tEnforcedGuardrailsConfigurationCommand.ts | 6 +- .../src/commands/ListEvaluationJobsCommand.ts | 6 +- ...stFoundationModelAgreementOffersCommand.ts | 6 +- .../commands/ListFoundationModelsCommand.ts | 6 +- .../src/commands/ListGuardrailsCommand.ts | 6 +- .../src/commands/ListImportedModelsCommand.ts | 6 +- .../commands/ListInferenceProfilesCommand.ts | 6 +- .../ListMarketplaceModelEndpointsCommand.ts | 6 +- .../src/commands/ListModelCopyJobsCommand.ts | 6 +- .../ListModelCustomizationJobsCommand.ts | 6 +- .../commands/ListModelImportJobsCommand.ts | 6 +- .../ListModelInvocationJobsCommand.ts | 6 +- .../src/commands/ListPromptRoutersCommand.ts | 6 +- .../ListProvisionedModelThroughputsCommand.ts | 9 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...utEnforcedGuardrailConfigurationCommand.ts | 6 +- ...elInvocationLoggingConfigurationCommand.ts | 6 +- .../PutUseCaseForModelAccessCommand.ts | 6 +- ...RegisterMarketplaceModelEndpointCommand.ts | 9 +- ...atedReasoningPolicyBuildWorkflowCommand.ts | 6 +- ...matedReasoningPolicyTestWorkflowCommand.ts | 6 +- .../src/commands/StopEvaluationJobCommand.ts | 6 +- .../StopModelCustomizationJobCommand.ts | 6 +- .../commands/StopModelInvocationJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...omatedReasoningPolicyAnnotationsCommand.ts | 6 +- .../UpdateAutomatedReasoningPolicyCommand.ts | 6 +- ...AutomatedReasoningPolicyTestCaseCommand.ts | 6 +- .../src/commands/UpdateGuardrailCommand.ts | 6 +- .../UpdateMarketplaceModelEndpointCommand.ts | 6 +- ...UpdateProvisionedModelThroughputCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/BedrockServiceException.ts | 2 +- clients/client-bedrock/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...ListAutomatedReasoningPoliciesPaginator.ts | 2 +- ...dReasoningPolicyBuildWorkflowsPaginator.ts | 2 +- ...omatedReasoningPolicyTestCasesPaginator.ts | 2 +- ...atedReasoningPolicyTestResultsPaginator.ts | 2 +- .../ListCustomModelDeploymentsPaginator.ts | 2 +- .../pagination/ListCustomModelsPaginator.ts | 2 +- ...nforcedGuardrailsConfigurationPaginator.ts | 2 +- .../pagination/ListEvaluationJobsPaginator.ts | 2 +- .../src/pagination/ListGuardrailsPaginator.ts | 2 +- .../pagination/ListImportedModelsPaginator.ts | 2 +- .../ListInferenceProfilesPaginator.ts | 2 +- .../ListMarketplaceModelEndpointsPaginator.ts | 2 +- .../pagination/ListModelCopyJobsPaginator.ts | 2 +- .../ListModelCustomizationJobsPaginator.ts | 2 +- .../ListModelImportJobsPaginator.ts | 2 +- .../ListModelInvocationJobsPaginator.ts | 2 +- .../pagination/ListPromptRoutersPaginator.ts | 2 +- ...istProvisionedModelThroughputsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-bedrock/src/runtimeConfig.ts | 10 +- .../client-bedrock/src/runtimeExtensions.ts | 2 +- .../client-bedrock/src/schemas/schemas_0.ts | 2 +- clients/client-billing/package.json | 12 +- clients/client-billing/src/Billing.ts | 4 +- clients/client-billing/src/BillingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateSourceViewsCommand.ts | 6 +- .../src/commands/CreateBillingViewCommand.ts | 6 +- .../src/commands/DeleteBillingViewCommand.ts | 6 +- .../DisassociateSourceViewsCommand.ts | 6 +- .../src/commands/GetBillingViewCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/ListBillingViewsCommand.ts | 6 +- .../ListSourceViewsForBillingViewCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBillingViewCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/BillingServiceException.ts | 2 +- clients/client-billing/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListBillingViewsPaginator.ts | 2 +- .../ListSourceViewsForBillingViewPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-billing/src/runtimeConfig.ts | 8 +- .../client-billing/src/runtimeExtensions.ts | 2 +- .../client-billing/src/schemas/schemas_0.ts | 2 +- clients/client-billingconductor/package.json | 12 +- .../src/Billingconductor.ts | 4 +- .../src/BillingconductorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateAccountsCommand.ts | 10 +- .../commands/AssociatePricingRulesCommand.ts | 10 +- ...sociateResourcesToCustomLineItemCommand.ts | 10 +- ...ciateResourcesFromCustomLineItemCommand.ts | 10 +- .../src/commands/CreateBillingGroupCommand.ts | 10 +- .../commands/CreateCustomLineItemCommand.ts | 10 +- .../src/commands/CreatePricingPlanCommand.ts | 10 +- .../src/commands/CreatePricingRuleCommand.ts | 10 +- .../src/commands/DeleteBillingGroupCommand.ts | 10 +- .../commands/DeleteCustomLineItemCommand.ts | 10 +- .../src/commands/DeletePricingPlanCommand.ts | 10 +- .../src/commands/DeletePricingRuleCommand.ts | 10 +- .../commands/DisassociateAccountsCommand.ts | 10 +- .../DisassociatePricingRulesCommand.ts | 10 +- .../GetBillingGroupCostReportCommand.ts | 10 +- .../ListAccountAssociationsCommand.ts | 10 +- .../ListBillingGroupCostReportsCommand.ts | 10 +- .../src/commands/ListBillingGroupsCommand.ts | 10 +- .../ListCustomLineItemVersionsCommand.ts | 10 +- .../commands/ListCustomLineItemsCommand.ts | 10 +- ...ngPlansAssociatedWithPricingRuleCommand.ts | 10 +- .../src/commands/ListPricingPlansCommand.ts | 10 +- ...cingRulesAssociatedToPricingPlanCommand.ts | 10 +- .../src/commands/ListPricingRulesCommand.ts | 10 +- ...ourcesAssociatedToCustomLineItemCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateBillingGroupCommand.ts | 10 +- .../commands/UpdateCustomLineItemCommand.ts | 10 +- .../src/commands/UpdatePricingPlanCommand.ts | 10 +- .../src/commands/UpdatePricingRuleCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../BillingconductorServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetBillingGroupCostReportPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAccountAssociationsPaginator.ts | 2 +- .../ListBillingGroupCostReportsPaginator.ts | 2 +- .../pagination/ListBillingGroupsPaginator.ts | 2 +- .../ListCustomLineItemVersionsPaginator.ts | 2 +- .../ListCustomLineItemsPaginator.ts | 2 +- ...PlansAssociatedWithPricingRulePaginator.ts | 2 +- .../pagination/ListPricingPlansPaginator.ts | 2 +- ...ngRulesAssociatedToPricingPlanPaginator.ts | 2 +- .../pagination/ListPricingRulesPaginator.ts | 2 +- ...rcesAssociatedToCustomLineItemPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-braket/package.json | 12 +- clients/client-braket/src/Braket.ts | 4 +- clients/client-braket/src/BraketClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelJobCommand.ts | 6 +- .../src/commands/CancelQuantumTaskCommand.ts | 6 +- .../src/commands/CreateJobCommand.ts | 6 +- .../src/commands/CreateQuantumTaskCommand.ts | 6 +- .../commands/CreateSpendingLimitCommand.ts | 6 +- .../commands/DeleteSpendingLimitCommand.ts | 6 +- .../src/commands/GetDeviceCommand.ts | 6 +- .../src/commands/GetJobCommand.ts | 6 +- .../src/commands/GetQuantumTaskCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/SearchDevicesCommand.ts | 6 +- .../src/commands/SearchJobsCommand.ts | 6 +- .../src/commands/SearchQuantumTasksCommand.ts | 6 +- .../commands/SearchSpendingLimitsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateSpendingLimitCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/BraketServiceException.ts | 2 +- clients/client-braket/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/SearchDevicesPaginator.ts | 2 +- .../src/pagination/SearchJobsPaginator.ts | 2 +- .../pagination/SearchQuantumTasksPaginator.ts | 2 +- .../SearchSpendingLimitsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-braket/src/runtimeConfig.native.ts | 2 +- .../client-braket/src/runtimeConfig.shared.ts | 4 +- clients/client-braket/src/runtimeConfig.ts | 8 +- .../client-braket/src/runtimeExtensions.ts | 2 +- .../client-braket/src/schemas/schemas_0.ts | 2 +- clients/client-budgets/package.json | 12 +- clients/client-budgets/src/Budgets.ts | 4 +- clients/client-budgets/src/BudgetsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateBudgetActionCommand.ts | 6 +- .../src/commands/CreateBudgetCommand.ts | 6 +- .../src/commands/CreateNotificationCommand.ts | 6 +- .../src/commands/CreateSubscriberCommand.ts | 6 +- .../src/commands/DeleteBudgetActionCommand.ts | 6 +- .../src/commands/DeleteBudgetCommand.ts | 6 +- .../src/commands/DeleteNotificationCommand.ts | 6 +- .../src/commands/DeleteSubscriberCommand.ts | 6 +- .../commands/DescribeBudgetActionCommand.ts | 6 +- .../DescribeBudgetActionHistoriesCommand.ts | 6 +- .../DescribeBudgetActionsForAccountCommand.ts | 9 +- .../DescribeBudgetActionsForBudgetCommand.ts | 6 +- .../src/commands/DescribeBudgetCommand.ts | 6 +- ...ibeBudgetNotificationsForAccountCommand.ts | 6 +- ...DescribeBudgetPerformanceHistoryCommand.ts | 9 +- .../src/commands/DescribeBudgetsCommand.ts | 6 +- .../DescribeNotificationsForBudgetCommand.ts | 6 +- ...scribeSubscribersForNotificationCommand.ts | 6 +- .../commands/ExecuteBudgetActionCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBudgetActionCommand.ts | 6 +- .../src/commands/UpdateBudgetCommand.ts | 6 +- .../src/commands/UpdateNotificationCommand.ts | 6 +- .../src/commands/UpdateSubscriberCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/BudgetsServiceException.ts | 2 +- clients/client-budgets/src/models/errors.ts | 2 +- .../DescribeBudgetActionHistoriesPaginator.ts | 2 +- ...escribeBudgetActionsForAccountPaginator.ts | 2 +- ...DescribeBudgetActionsForBudgetPaginator.ts | 2 +- ...eBudgetNotificationsForAccountPaginator.ts | 2 +- ...scribeBudgetPerformanceHistoryPaginator.ts | 2 +- .../pagination/DescribeBudgetsPaginator.ts | 2 +- ...DescribeNotificationsForBudgetPaginator.ts | 2 +- ...ribeSubscribersForNotificationPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-budgets/src/runtimeConfig.ts | 8 +- .../client-budgets/src/runtimeExtensions.ts | 2 +- .../client-budgets/src/schemas/schemas_0.ts | 2 +- clients/client-chatbot/package.json | 12 +- clients/client-chatbot/src/Chatbot.ts | 4 +- clients/client-chatbot/src/ChatbotClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateToConfigurationCommand.ts | 6 +- .../CreateChimeWebhookConfigurationCommand.ts | 6 +- .../src/commands/CreateCustomActionCommand.ts | 6 +- ...crosoftTeamsChannelConfigurationCommand.ts | 6 +- .../CreateSlackChannelConfigurationCommand.ts | 6 +- .../DeleteChimeWebhookConfigurationCommand.ts | 6 +- .../src/commands/DeleteCustomActionCommand.ts | 6 +- ...crosoftTeamsChannelConfigurationCommand.ts | 6 +- ...leteMicrosoftTeamsConfiguredTeamCommand.ts | 6 +- ...DeleteMicrosoftTeamsUserIdentityCommand.ts | 9 +- .../DeleteSlackChannelConfigurationCommand.ts | 6 +- .../DeleteSlackUserIdentityCommand.ts | 6 +- ...eleteSlackWorkspaceAuthorizationCommand.ts | 9 +- ...scribeChimeWebhookConfigurationsCommand.ts | 6 +- ...scribeSlackChannelConfigurationsCommand.ts | 6 +- .../DescribeSlackUserIdentitiesCommand.ts | 6 +- .../DescribeSlackWorkspacesCommand.ts | 6 +- .../DisassociateFromConfigurationCommand.ts | 6 +- .../commands/GetAccountPreferencesCommand.ts | 6 +- .../src/commands/GetCustomActionCommand.ts | 6 +- ...crosoftTeamsChannelConfigurationCommand.ts | 6 +- .../src/commands/ListAssociationsCommand.ts | 6 +- .../src/commands/ListCustomActionsCommand.ts | 6 +- ...rosoftTeamsChannelConfigurationsCommand.ts | 6 +- ...istMicrosoftTeamsConfiguredTeamsCommand.ts | 9 +- ...ListMicrosoftTeamsUserIdentitiesCommand.ts | 9 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateAccountPreferencesCommand.ts | 6 +- .../UpdateChimeWebhookConfigurationCommand.ts | 6 +- .../src/commands/UpdateCustomActionCommand.ts | 6 +- ...crosoftTeamsChannelConfigurationCommand.ts | 6 +- .../UpdateSlackChannelConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ChatbotServiceException.ts | 2 +- clients/client-chatbot/src/models/errors.ts | 2 +- ...ribeChimeWebhookConfigurationsPaginator.ts | 2 +- ...ribeSlackChannelConfigurationsPaginator.ts | 2 +- .../DescribeSlackUserIdentitiesPaginator.ts | 2 +- .../DescribeSlackWorkspacesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAssociationsPaginator.ts | 2 +- .../pagination/ListCustomActionsPaginator.ts | 2 +- ...softTeamsChannelConfigurationsPaginator.ts | 2 +- ...tMicrosoftTeamsConfiguredTeamsPaginator.ts | 2 +- ...stMicrosoftTeamsUserIdentitiesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-chatbot/src/runtimeConfig.ts | 8 +- .../client-chatbot/src/runtimeExtensions.ts | 2 +- .../client-chatbot/src/schemas/schemas_0.ts | 2 +- .../client-chime-sdk-identity/package.json | 12 +- .../src/ChimeSDKIdentity.ts | 4 +- .../src/ChimeSDKIdentityClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateAppInstanceAdminCommand.ts | 10 +- .../commands/CreateAppInstanceBotCommand.ts | 10 +- .../src/commands/CreateAppInstanceCommand.ts | 10 +- .../commands/CreateAppInstanceUserCommand.ts | 10 +- .../commands/DeleteAppInstanceAdminCommand.ts | 10 +- .../commands/DeleteAppInstanceBotCommand.ts | 10 +- .../src/commands/DeleteAppInstanceCommand.ts | 10 +- .../commands/DeleteAppInstanceUserCommand.ts | 10 +- ...eregisterAppInstanceUserEndpointCommand.ts | 10 +- .../DescribeAppInstanceAdminCommand.ts | 10 +- .../commands/DescribeAppInstanceBotCommand.ts | 10 +- .../commands/DescribeAppInstanceCommand.ts | 10 +- .../DescribeAppInstanceUserCommand.ts | 10 +- .../DescribeAppInstanceUserEndpointCommand.ts | 13 +- .../GetAppInstanceRetentionSettingsCommand.ts | 13 +- .../commands/ListAppInstanceAdminsCommand.ts | 10 +- .../commands/ListAppInstanceBotsCommand.ts | 10 +- .../ListAppInstanceUserEndpointsCommand.ts | 10 +- .../commands/ListAppInstanceUsersCommand.ts | 10 +- .../src/commands/ListAppInstancesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../PutAppInstanceRetentionSettingsCommand.ts | 13 +- ...ppInstanceUserExpirationSettingsCommand.ts | 10 +- .../RegisterAppInstanceUserEndpointCommand.ts | 13 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdateAppInstanceBotCommand.ts | 10 +- .../src/commands/UpdateAppInstanceCommand.ts | 10 +- .../commands/UpdateAppInstanceUserCommand.ts | 10 +- .../UpdateAppInstanceUserEndpointCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ChimeSDKIdentityServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAppInstanceAdminsPaginator.ts | 2 +- .../ListAppInstanceBotsPaginator.ts | 2 +- .../ListAppInstanceUserEndpointsPaginator.ts | 2 +- .../ListAppInstanceUsersPaginator.ts | 2 +- .../pagination/ListAppInstancesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ChimeSDKMediaPipelines.ts | 4 +- .../src/ChimeSDKMediaPipelinesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateMediaCapturePipelineCommand.ts | 6 +- ...CreateMediaConcatenationPipelineCommand.ts | 9 +- .../CreateMediaInsightsPipelineCommand.ts | 6 +- ...diaInsightsPipelineConfigurationCommand.ts | 6 +- ...CreateMediaLiveConnectorPipelineCommand.ts | 9 +- ...iaPipelineKinesisVideoStreamPoolCommand.ts | 6 +- .../CreateMediaStreamPipelineCommand.ts | 6 +- .../DeleteMediaCapturePipelineCommand.ts | 6 +- ...diaInsightsPipelineConfigurationCommand.ts | 6 +- .../commands/DeleteMediaPipelineCommand.ts | 6 +- ...iaPipelineKinesisVideoStreamPoolCommand.ts | 6 +- .../GetMediaCapturePipelineCommand.ts | 6 +- ...diaInsightsPipelineConfigurationCommand.ts | 6 +- .../src/commands/GetMediaPipelineCommand.ts | 6 +- ...iaPipelineKinesisVideoStreamPoolCommand.ts | 6 +- .../commands/GetSpeakerSearchTaskCommand.ts | 6 +- .../GetVoiceToneAnalysisTaskCommand.ts | 6 +- .../ListMediaCapturePipelinesCommand.ts | 6 +- ...iaInsightsPipelineConfigurationsCommand.ts | 6 +- ...aPipelineKinesisVideoStreamPoolsCommand.ts | 6 +- .../src/commands/ListMediaPipelinesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/StartSpeakerSearchTaskCommand.ts | 6 +- .../StartVoiceToneAnalysisTaskCommand.ts | 6 +- .../commands/StopSpeakerSearchTaskCommand.ts | 6 +- .../StopVoiceToneAnalysisTaskCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...diaInsightsPipelineConfigurationCommand.ts | 6 +- ...pdateMediaInsightsPipelineStatusCommand.ts | 6 +- ...iaPipelineKinesisVideoStreamPoolCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ChimeSDKMediaPipelinesServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListMediaCapturePipelinesPaginator.ts | 2 +- ...InsightsPipelineConfigurationsPaginator.ts | 2 +- ...ipelineKinesisVideoStreamPoolsPaginator.ts | 2 +- .../pagination/ListMediaPipelinesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-chime-sdk-meetings/package.json | 12 +- .../src/ChimeSDKMeetings.ts | 4 +- .../src/ChimeSDKMeetingsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchCreateAttendeeCommand.ts | 10 +- ...UpdateAttendeeCapabilitiesExceptCommand.ts | 10 +- .../src/commands/CreateAttendeeCommand.ts | 10 +- .../src/commands/CreateMeetingCommand.ts | 10 +- .../CreateMeetingWithAttendeesCommand.ts | 10 +- .../src/commands/DeleteAttendeeCommand.ts | 10 +- .../src/commands/DeleteMeetingCommand.ts | 10 +- .../src/commands/GetAttendeeCommand.ts | 10 +- .../src/commands/GetMeetingCommand.ts | 10 +- .../src/commands/ListAttendeesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../StartMeetingTranscriptionCommand.ts | 10 +- .../StopMeetingTranscriptionCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../UpdateAttendeeCapabilitiesCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ChimeSDKMeetingsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAttendeesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-chime-sdk-messaging/package.json | 12 +- .../src/ChimeSDKMessaging.ts | 4 +- .../src/ChimeSDKMessagingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateChannelFlowCommand.ts | 6 +- .../BatchCreateChannelMembershipCommand.ts | 6 +- .../commands/ChannelFlowCallbackCommand.ts | 6 +- .../src/commands/CreateChannelBanCommand.ts | 6 +- .../src/commands/CreateChannelCommand.ts | 6 +- .../src/commands/CreateChannelFlowCommand.ts | 6 +- .../CreateChannelMembershipCommand.ts | 6 +- .../commands/CreateChannelModeratorCommand.ts | 6 +- .../src/commands/DeleteChannelBanCommand.ts | 6 +- .../src/commands/DeleteChannelCommand.ts | 6 +- .../src/commands/DeleteChannelFlowCommand.ts | 6 +- .../DeleteChannelMembershipCommand.ts | 6 +- .../commands/DeleteChannelMessageCommand.ts | 6 +- .../commands/DeleteChannelModeratorCommand.ts | 6 +- ...MessagingStreamingConfigurationsCommand.ts | 6 +- .../src/commands/DescribeChannelBanCommand.ts | 6 +- .../src/commands/DescribeChannelCommand.ts | 6 +- .../commands/DescribeChannelFlowCommand.ts | 6 +- .../DescribeChannelMembershipCommand.ts | 6 +- ...nnelMembershipForAppInstanceUserCommand.ts | 6 +- ...hannelModeratedByAppInstanceUserCommand.ts | 6 +- .../DescribeChannelModeratorCommand.ts | 6 +- .../DisassociateChannelFlowCommand.ts | 6 +- .../GetChannelMembershipPreferencesCommand.ts | 9 +- .../src/commands/GetChannelMessageCommand.ts | 6 +- .../GetChannelMessageStatusCommand.ts | 6 +- .../GetMessagingSessionEndpointCommand.ts | 6 +- ...MessagingStreamingConfigurationsCommand.ts | 6 +- .../src/commands/ListChannelBansCommand.ts | 6 +- .../src/commands/ListChannelFlowsCommand.ts | 6 +- .../commands/ListChannelMembershipsCommand.ts | 6 +- ...nelMembershipsForAppInstanceUserCommand.ts | 6 +- .../commands/ListChannelMessagesCommand.ts | 6 +- .../commands/ListChannelModeratorsCommand.ts | 6 +- ...hannelsAssociatedWithChannelFlowCommand.ts | 6 +- .../src/commands/ListChannelsCommand.ts | 6 +- ...annelsModeratedByAppInstanceUserCommand.ts | 6 +- .../src/commands/ListSubChannelsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../PutChannelExpirationSettingsCommand.ts | 6 +- .../PutChannelMembershipPreferencesCommand.ts | 9 +- ...MessagingStreamingConfigurationsCommand.ts | 6 +- .../commands/RedactChannelMessageCommand.ts | 6 +- .../src/commands/SearchChannelsCommand.ts | 6 +- .../src/commands/SendChannelMessageCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateChannelCommand.ts | 6 +- .../src/commands/UpdateChannelFlowCommand.ts | 6 +- .../commands/UpdateChannelMessageCommand.ts | 6 +- .../UpdateChannelReadMarkerCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ChimeSDKMessagingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListChannelBansPaginator.ts | 2 +- .../pagination/ListChannelFlowsPaginator.ts | 2 +- ...lMembershipsForAppInstanceUserPaginator.ts | 2 +- .../ListChannelMembershipsPaginator.ts | 2 +- .../ListChannelMessagesPaginator.ts | 2 +- .../ListChannelModeratorsPaginator.ts | 2 +- ...nnelsAssociatedWithChannelFlowPaginator.ts | 2 +- ...nelsModeratedByAppInstanceUserPaginator.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- .../pagination/ListSubChannelsPaginator.ts | 2 +- .../src/pagination/SearchChannelsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-chime-sdk-voice/package.json | 12 +- .../src/ChimeSDKVoice.ts | 4 +- .../src/ChimeSDKVoiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...tePhoneNumbersWithVoiceConnectorCommand.ts | 6 +- ...neNumbersWithVoiceConnectorGroupCommand.ts | 6 +- .../commands/BatchDeletePhoneNumberCommand.ts | 6 +- .../commands/BatchUpdatePhoneNumberCommand.ts | 6 +- .../commands/CreatePhoneNumberOrderCommand.ts | 6 +- .../src/commands/CreateProxySessionCommand.ts | 6 +- .../CreateSipMediaApplicationCallCommand.ts | 6 +- .../CreateSipMediaApplicationCommand.ts | 6 +- .../src/commands/CreateSipRuleCommand.ts | 6 +- .../commands/CreateVoiceConnectorCommand.ts | 6 +- .../CreateVoiceConnectorGroupCommand.ts | 6 +- .../src/commands/CreateVoiceProfileCommand.ts | 6 +- .../CreateVoiceProfileDomainCommand.ts | 6 +- .../src/commands/DeletePhoneNumberCommand.ts | 6 +- .../src/commands/DeleteProxySessionCommand.ts | 6 +- .../DeleteSipMediaApplicationCommand.ts | 6 +- .../src/commands/DeleteSipRuleCommand.ts | 6 +- .../commands/DeleteVoiceConnectorCommand.ts | 6 +- ...torEmergencyCallingConfigurationCommand.ts | 6 +- ...ctorExternalSystemsConfigurationCommand.ts | 6 +- .../DeleteVoiceConnectorGroupCommand.ts | 6 +- .../DeleteVoiceConnectorOriginationCommand.ts | 6 +- .../DeleteVoiceConnectorProxyCommand.ts | 6 +- ...eConnectorStreamingConfigurationCommand.ts | 6 +- .../DeleteVoiceConnectorTerminationCommand.ts | 6 +- ...eConnectorTerminationCredentialsCommand.ts | 6 +- .../src/commands/DeleteVoiceProfileCommand.ts | 6 +- .../DeleteVoiceProfileDomainCommand.ts | 6 +- ...tePhoneNumbersFromVoiceConnectorCommand.ts | 6 +- ...neNumbersFromVoiceConnectorGroupCommand.ts | 6 +- .../src/commands/GetGlobalSettingsCommand.ts | 6 +- .../src/commands/GetPhoneNumberCommand.ts | 6 +- .../commands/GetPhoneNumberOrderCommand.ts | 6 +- .../commands/GetPhoneNumberSettingsCommand.ts | 6 +- .../src/commands/GetProxySessionCommand.ts | 6 +- ...plicationAlexaSkillConfigurationCommand.ts | 6 +- .../commands/GetSipMediaApplicationCommand.ts | 6 +- ...aApplicationLoggingConfigurationCommand.ts | 6 +- .../src/commands/GetSipRuleCommand.ts | 6 +- .../commands/GetSpeakerSearchTaskCommand.ts | 6 +- .../src/commands/GetVoiceConnectorCommand.ts | 6 +- ...torEmergencyCallingConfigurationCommand.ts | 6 +- ...ctorExternalSystemsConfigurationCommand.ts | 6 +- .../commands/GetVoiceConnectorGroupCommand.ts | 6 +- ...iceConnectorLoggingConfigurationCommand.ts | 6 +- .../GetVoiceConnectorOriginationCommand.ts | 6 +- .../commands/GetVoiceConnectorProxyCommand.ts | 6 +- ...eConnectorStreamingConfigurationCommand.ts | 6 +- .../GetVoiceConnectorTerminationCommand.ts | 6 +- ...tVoiceConnectorTerminationHealthCommand.ts | 6 +- .../src/commands/GetVoiceProfileCommand.ts | 6 +- .../commands/GetVoiceProfileDomainCommand.ts | 6 +- .../GetVoiceToneAnalysisTaskCommand.ts | 6 +- ...stAvailableVoiceConnectorRegionsCommand.ts | 6 +- .../commands/ListPhoneNumberOrdersCommand.ts | 6 +- .../src/commands/ListPhoneNumbersCommand.ts | 6 +- .../src/commands/ListProxySessionsCommand.ts | 6 +- .../ListSipMediaApplicationsCommand.ts | 6 +- .../src/commands/ListSipRulesCommand.ts | 6 +- ...istSupportedPhoneNumberCountriesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListVoiceConnectorGroupsCommand.ts | 6 +- ...eConnectorTerminationCredentialsCommand.ts | 6 +- .../commands/ListVoiceConnectorsCommand.ts | 6 +- .../ListVoiceProfileDomainsCommand.ts | 6 +- .../src/commands/ListVoiceProfilesCommand.ts | 6 +- ...plicationAlexaSkillConfigurationCommand.ts | 6 +- ...aApplicationLoggingConfigurationCommand.ts | 6 +- ...torEmergencyCallingConfigurationCommand.ts | 6 +- ...ctorExternalSystemsConfigurationCommand.ts | 6 +- ...iceConnectorLoggingConfigurationCommand.ts | 6 +- .../PutVoiceConnectorOriginationCommand.ts | 6 +- .../commands/PutVoiceConnectorProxyCommand.ts | 6 +- ...eConnectorStreamingConfigurationCommand.ts | 6 +- .../PutVoiceConnectorTerminationCommand.ts | 6 +- ...eConnectorTerminationCredentialsCommand.ts | 6 +- .../src/commands/RestorePhoneNumberCommand.ts | 6 +- .../SearchAvailablePhoneNumbersCommand.ts | 6 +- .../commands/StartSpeakerSearchTaskCommand.ts | 6 +- .../StartVoiceToneAnalysisTaskCommand.ts | 6 +- .../commands/StopSpeakerSearchTaskCommand.ts | 6 +- .../StopVoiceToneAnalysisTaskCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateGlobalSettingsCommand.ts | 6 +- .../src/commands/UpdatePhoneNumberCommand.ts | 6 +- .../UpdatePhoneNumberSettingsCommand.ts | 6 +- .../src/commands/UpdateProxySessionCommand.ts | 6 +- .../UpdateSipMediaApplicationCallCommand.ts | 6 +- .../UpdateSipMediaApplicationCommand.ts | 6 +- .../src/commands/UpdateSipRuleCommand.ts | 6 +- .../commands/UpdateVoiceConnectorCommand.ts | 6 +- .../UpdateVoiceConnectorGroupCommand.ts | 6 +- .../src/commands/UpdateVoiceProfileCommand.ts | 6 +- .../UpdateVoiceProfileDomainCommand.ts | 6 +- .../commands/ValidateE911AddressCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ChimeSDKVoiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListPhoneNumberOrdersPaginator.ts | 2 +- .../pagination/ListPhoneNumbersPaginator.ts | 2 +- .../pagination/ListProxySessionsPaginator.ts | 2 +- .../ListSipMediaApplicationsPaginator.ts | 2 +- .../src/pagination/ListSipRulesPaginator.ts | 2 +- .../ListVoiceConnectorGroupsPaginator.ts | 2 +- .../ListVoiceConnectorsPaginator.ts | 2 +- .../ListVoiceProfileDomainsPaginator.ts | 2 +- .../pagination/ListVoiceProfilesPaginator.ts | 2 +- .../SearchAvailablePhoneNumbersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-chime/package.json | 12 +- clients/client-chime/src/Chime.ts | 4 +- clients/client-chime/src/ChimeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociatePhoneNumberWithUserCommand.ts | 6 +- ...eSigninDelegateGroupsWithAccountCommand.ts | 6 +- .../BatchCreateRoomMembershipCommand.ts | 6 +- .../commands/BatchDeletePhoneNumberCommand.ts | 6 +- .../src/commands/BatchSuspendUserCommand.ts | 6 +- .../src/commands/BatchUnsuspendUserCommand.ts | 6 +- .../commands/BatchUpdatePhoneNumberCommand.ts | 6 +- .../src/commands/BatchUpdateUserCommand.ts | 6 +- .../src/commands/CreateAccountCommand.ts | 6 +- .../src/commands/CreateBotCommand.ts | 6 +- .../commands/CreateMeetingDialOutCommand.ts | 6 +- .../commands/CreatePhoneNumberOrderCommand.ts | 6 +- .../src/commands/CreateRoomCommand.ts | 6 +- .../commands/CreateRoomMembershipCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/DeleteAccountCommand.ts | 6 +- .../DeleteEventsConfigurationCommand.ts | 6 +- .../src/commands/DeletePhoneNumberCommand.ts | 6 +- .../src/commands/DeleteRoomCommand.ts | 6 +- .../commands/DeleteRoomMembershipCommand.ts | 6 +- .../DisassociatePhoneNumberFromUserCommand.ts | 9 +- ...eSigninDelegateGroupsFromAccountCommand.ts | 6 +- .../src/commands/GetAccountCommand.ts | 6 +- .../src/commands/GetAccountSettingsCommand.ts | 6 +- .../src/commands/GetBotCommand.ts | 6 +- .../commands/GetEventsConfigurationCommand.ts | 6 +- .../src/commands/GetGlobalSettingsCommand.ts | 6 +- .../src/commands/GetPhoneNumberCommand.ts | 6 +- .../commands/GetPhoneNumberOrderCommand.ts | 6 +- .../commands/GetPhoneNumberSettingsCommand.ts | 6 +- .../commands/GetRetentionSettingsCommand.ts | 6 +- .../src/commands/GetRoomCommand.ts | 6 +- .../src/commands/GetUserCommand.ts | 6 +- .../src/commands/GetUserSettingsCommand.ts | 6 +- .../src/commands/InviteUsersCommand.ts | 6 +- .../src/commands/ListAccountsCommand.ts | 6 +- .../src/commands/ListBotsCommand.ts | 6 +- .../commands/ListPhoneNumberOrdersCommand.ts | 6 +- .../src/commands/ListPhoneNumbersCommand.ts | 6 +- .../commands/ListRoomMembershipsCommand.ts | 6 +- .../src/commands/ListRoomsCommand.ts | 6 +- ...istSupportedPhoneNumberCountriesCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../src/commands/LogoutUserCommand.ts | 6 +- .../commands/PutEventsConfigurationCommand.ts | 6 +- .../commands/PutRetentionSettingsCommand.ts | 6 +- .../RedactConversationMessageCommand.ts | 6 +- .../src/commands/RedactRoomMessageCommand.ts | 6 +- .../RegenerateSecurityTokenCommand.ts | 6 +- .../src/commands/ResetPersonalPINCommand.ts | 6 +- .../src/commands/RestorePhoneNumberCommand.ts | 6 +- .../SearchAvailablePhoneNumbersCommand.ts | 6 +- .../src/commands/UpdateAccountCommand.ts | 6 +- .../commands/UpdateAccountSettingsCommand.ts | 6 +- .../src/commands/UpdateBotCommand.ts | 6 +- .../commands/UpdateGlobalSettingsCommand.ts | 6 +- .../src/commands/UpdatePhoneNumberCommand.ts | 6 +- .../UpdatePhoneNumberSettingsCommand.ts | 6 +- .../src/commands/UpdateRoomCommand.ts | 6 +- .../commands/UpdateRoomMembershipCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/commands/UpdateUserSettingsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ChimeServiceException.ts | 2 +- clients/client-chime/src/models/errors.ts | 2 +- .../client-chime/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAccountsPaginator.ts | 2 +- .../src/pagination/ListBotsPaginator.ts | 2 +- .../ListPhoneNumberOrdersPaginator.ts | 2 +- .../pagination/ListPhoneNumbersPaginator.ts | 2 +- .../ListRoomMembershipsPaginator.ts | 2 +- .../src/pagination/ListRoomsPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../SearchAvailablePhoneNumbersPaginator.ts | 2 +- .../client-chime/src/runtimeConfig.browser.ts | 7 +- .../client-chime/src/runtimeConfig.native.ts | 2 +- .../client-chime/src/runtimeConfig.shared.ts | 4 +- clients/client-chime/src/runtimeConfig.ts | 8 +- clients/client-chime/src/runtimeExtensions.ts | 2 +- clients/client-chime/src/schemas/schemas_0.ts | 2 +- clients/client-cleanrooms/package.json | 12 +- clients/client-cleanrooms/src/CleanRooms.ts | 4 +- .../client-cleanrooms/src/CleanRoomsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...GetCollaborationAnalysisTemplateCommand.ts | 6 +- .../BatchGetSchemaAnalysisRuleCommand.ts | 6 +- .../src/commands/BatchGetSchemaCommand.ts | 6 +- .../commands/CreateAnalysisTemplateCommand.ts | 6 +- ...CreateCollaborationChangeRequestCommand.ts | 6 +- .../commands/CreateCollaborationCommand.ts | 6 +- ...nfiguredAudienceModelAssociationCommand.ts | 6 +- ...reateConfiguredTableAnalysisRuleCommand.ts | 9 +- ...uredTableAssociationAnalysisRuleCommand.ts | 6 +- ...CreateConfiguredTableAssociationCommand.ts | 6 +- .../commands/CreateConfiguredTableCommand.ts | 6 +- .../commands/CreateIdMappingTableCommand.ts | 6 +- .../CreateIdNamespaceAssociationCommand.ts | 6 +- .../src/commands/CreateMembershipCommand.ts | 6 +- .../CreatePrivacyBudgetTemplateCommand.ts | 6 +- .../commands/DeleteAnalysisTemplateCommand.ts | 6 +- .../commands/DeleteCollaborationCommand.ts | 6 +- ...nfiguredAudienceModelAssociationCommand.ts | 6 +- ...eleteConfiguredTableAnalysisRuleCommand.ts | 9 +- ...uredTableAssociationAnalysisRuleCommand.ts | 6 +- ...DeleteConfiguredTableAssociationCommand.ts | 6 +- .../commands/DeleteConfiguredTableCommand.ts | 6 +- .../commands/DeleteIdMappingTableCommand.ts | 6 +- .../DeleteIdNamespaceAssociationCommand.ts | 6 +- .../src/commands/DeleteMemberCommand.ts | 6 +- .../src/commands/DeleteMembershipCommand.ts | 6 +- .../DeletePrivacyBudgetTemplateCommand.ts | 6 +- .../commands/GetAnalysisTemplateCommand.ts | 6 +- ...GetCollaborationAnalysisTemplateCommand.ts | 6 +- .../GetCollaborationChangeRequestCommand.ts | 6 +- .../src/commands/GetCollaborationCommand.ts | 6 +- ...nfiguredAudienceModelAssociationCommand.ts | 6 +- ...laborationIdNamespaceAssociationCommand.ts | 6 +- ...llaborationPrivacyBudgetTemplateCommand.ts | 6 +- ...nfiguredAudienceModelAssociationCommand.ts | 6 +- .../GetConfiguredTableAnalysisRuleCommand.ts | 6 +- ...uredTableAssociationAnalysisRuleCommand.ts | 6 +- .../GetConfiguredTableAssociationCommand.ts | 6 +- .../src/commands/GetConfiguredTableCommand.ts | 6 +- .../src/commands/GetIdMappingTableCommand.ts | 6 +- .../GetIdNamespaceAssociationCommand.ts | 6 +- .../src/commands/GetMembershipCommand.ts | 6 +- .../GetPrivacyBudgetTemplateCommand.ts | 6 +- .../src/commands/GetProtectedJobCommand.ts | 6 +- .../src/commands/GetProtectedQueryCommand.ts | 8 +- .../commands/GetSchemaAnalysisRuleCommand.ts | 6 +- .../src/commands/GetSchemaCommand.ts | 6 +- .../commands/ListAnalysisTemplatesCommand.ts | 6 +- ...stCollaborationAnalysisTemplatesCommand.ts | 9 +- .../ListCollaborationChangeRequestsCommand.ts | 6 +- ...figuredAudienceModelAssociationsCommand.ts | 6 +- ...aborationIdNamespaceAssociationsCommand.ts | 6 +- ...laborationPrivacyBudgetTemplatesCommand.ts | 6 +- .../ListCollaborationPrivacyBudgetsCommand.ts | 6 +- .../src/commands/ListCollaborationsCommand.ts | 6 +- ...figuredAudienceModelAssociationsCommand.ts | 6 +- .../ListConfiguredTableAssociationsCommand.ts | 6 +- .../commands/ListConfiguredTablesCommand.ts | 6 +- .../commands/ListIdMappingTablesCommand.ts | 6 +- .../ListIdNamespaceAssociationsCommand.ts | 6 +- .../src/commands/ListMembersCommand.ts | 6 +- .../src/commands/ListMembershipsCommand.ts | 6 +- .../ListPrivacyBudgetTemplatesCommand.ts | 6 +- .../src/commands/ListPrivacyBudgetsCommand.ts | 6 +- .../src/commands/ListProtectedJobsCommand.ts | 6 +- .../commands/ListProtectedQueriesCommand.ts | 6 +- .../src/commands/ListSchemasCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/PopulateIdMappingTableCommand.ts | 6 +- .../commands/PreviewPrivacyImpactCommand.ts | 6 +- .../src/commands/StartProtectedJobCommand.ts | 6 +- .../commands/StartProtectedQueryCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAnalysisTemplateCommand.ts | 6 +- .../commands/UpdateCollaborationCommand.ts | 6 +- ...nfiguredAudienceModelAssociationCommand.ts | 6 +- ...pdateConfiguredTableAnalysisRuleCommand.ts | 9 +- ...uredTableAssociationAnalysisRuleCommand.ts | 6 +- ...UpdateConfiguredTableAssociationCommand.ts | 6 +- .../commands/UpdateConfiguredTableCommand.ts | 6 +- .../commands/UpdateIdMappingTableCommand.ts | 6 +- .../UpdateIdNamespaceAssociationCommand.ts | 6 +- .../src/commands/UpdateMembershipCommand.ts | 6 +- .../UpdatePrivacyBudgetTemplateCommand.ts | 6 +- .../src/commands/UpdateProtectedJobCommand.ts | 6 +- .../commands/UpdateProtectedQueryCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CleanRoomsServiceException.ts | 2 +- .../client-cleanrooms/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAnalysisTemplatesPaginator.ts | 2 +- ...CollaborationAnalysisTemplatesPaginator.ts | 2 +- ...istCollaborationChangeRequestsPaginator.ts | 2 +- ...guredAudienceModelAssociationsPaginator.ts | 2 +- ...orationIdNamespaceAssociationsPaginator.ts | 2 +- ...borationPrivacyBudgetTemplatesPaginator.ts | 2 +- ...istCollaborationPrivacyBudgetsPaginator.ts | 2 +- .../pagination/ListCollaborationsPaginator.ts | 2 +- ...guredAudienceModelAssociationsPaginator.ts | 2 +- ...istConfiguredTableAssociationsPaginator.ts | 2 +- .../ListConfiguredTablesPaginator.ts | 2 +- .../ListIdMappingTablesPaginator.ts | 2 +- .../ListIdNamespaceAssociationsPaginator.ts | 2 +- .../src/pagination/ListMembersPaginator.ts | 2 +- .../pagination/ListMembershipsPaginator.ts | 2 +- .../ListPrivacyBudgetTemplatesPaginator.ts | 2 +- .../pagination/ListPrivacyBudgetsPaginator.ts | 2 +- .../pagination/ListProtectedJobsPaginator.ts | 2 +- .../ListProtectedQueriesPaginator.ts | 2 +- .../src/pagination/ListSchemasPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cleanrooms/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cleanroomsml/package.json | 12 +- .../client-cleanroomsml/src/CleanRoomsML.ts | 4 +- .../src/CleanRoomsMLClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelTrainedModelCommand.ts | 6 +- .../CancelTrainedModelInferenceJobCommand.ts | 6 +- .../commands/CreateAudienceModelCommand.ts | 6 +- .../CreateConfiguredAudienceModelCommand.ts | 6 +- ...figuredModelAlgorithmAssociationCommand.ts | 6 +- .../CreateConfiguredModelAlgorithmCommand.ts | 6 +- .../commands/CreateMLInputChannelCommand.ts | 6 +- .../src/commands/CreateTrainedModelCommand.ts | 6 +- .../commands/CreateTrainingDatasetCommand.ts | 6 +- .../DeleteAudienceGenerationJobCommand.ts | 6 +- .../commands/DeleteAudienceModelCommand.ts | 6 +- .../DeleteConfiguredAudienceModelCommand.ts | 6 +- ...eteConfiguredAudienceModelPolicyCommand.ts | 6 +- ...figuredModelAlgorithmAssociationCommand.ts | 6 +- .../DeleteConfiguredModelAlgorithmCommand.ts | 6 +- .../commands/DeleteMLConfigurationCommand.ts | 6 +- .../DeleteMLInputChannelDataCommand.ts | 6 +- .../DeleteTrainedModelOutputCommand.ts | 6 +- .../commands/DeleteTrainingDatasetCommand.ts | 6 +- .../GetAudienceGenerationJobCommand.ts | 6 +- .../src/commands/GetAudienceModelCommand.ts | 6 +- ...figuredModelAlgorithmAssociationCommand.ts | 6 +- .../GetCollaborationMLInputChannelCommand.ts | 6 +- .../GetCollaborationTrainedModelCommand.ts | 6 +- .../GetConfiguredAudienceModelCommand.ts | 6 +- ...GetConfiguredAudienceModelPolicyCommand.ts | 9 +- ...figuredModelAlgorithmAssociationCommand.ts | 6 +- .../GetConfiguredModelAlgorithmCommand.ts | 6 +- .../src/commands/GetMLConfigurationCommand.ts | 6 +- .../src/commands/GetMLInputChannelCommand.ts | 6 +- .../src/commands/GetTrainedModelCommand.ts | 6 +- .../GetTrainedModelInferenceJobCommand.ts | 6 +- .../src/commands/GetTrainingDatasetCommand.ts | 6 +- .../commands/ListAudienceExportJobsCommand.ts | 6 +- .../ListAudienceGenerationJobsCommand.ts | 6 +- .../src/commands/ListAudienceModelsCommand.ts | 6 +- ...iguredModelAlgorithmAssociationsCommand.ts | 6 +- ...ListCollaborationMLInputChannelsCommand.ts | 9 +- ...laborationTrainedModelExportJobsCommand.ts | 6 +- ...orationTrainedModelInferenceJobsCommand.ts | 6 +- .../ListCollaborationTrainedModelsCommand.ts | 6 +- .../ListConfiguredAudienceModelsCommand.ts | 6 +- ...iguredModelAlgorithmAssociationsCommand.ts | 6 +- .../ListConfiguredModelAlgorithmsCommand.ts | 6 +- .../commands/ListMLInputChannelsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListTrainedModelInferenceJobsCommand.ts | 6 +- .../ListTrainedModelVersionsCommand.ts | 6 +- .../src/commands/ListTrainedModelsCommand.ts | 6 +- .../commands/ListTrainingDatasetsCommand.ts | 6 +- ...PutConfiguredAudienceModelPolicyCommand.ts | 9 +- .../src/commands/PutMLConfigurationCommand.ts | 6 +- .../commands/StartAudienceExportJobCommand.ts | 6 +- .../StartAudienceGenerationJobCommand.ts | 6 +- .../StartTrainedModelExportJobCommand.ts | 6 +- .../StartTrainedModelInferenceJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateConfiguredAudienceModelCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CleanRoomsMLServiceException.ts | 2 +- .../client-cleanroomsml/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAudienceExportJobsPaginator.ts | 2 +- .../ListAudienceGenerationJobsPaginator.ts | 2 +- .../pagination/ListAudienceModelsPaginator.ts | 2 +- ...uredModelAlgorithmAssociationsPaginator.ts | 2 +- ...stCollaborationMLInputChannelsPaginator.ts | 2 +- ...borationTrainedModelExportJobsPaginator.ts | 2 +- ...ationTrainedModelInferenceJobsPaginator.ts | 2 +- ...ListCollaborationTrainedModelsPaginator.ts | 2 +- .../ListConfiguredAudienceModelsPaginator.ts | 2 +- ...uredModelAlgorithmAssociationsPaginator.ts | 2 +- .../ListConfiguredModelAlgorithmsPaginator.ts | 2 +- .../ListMLInputChannelsPaginator.ts | 2 +- .../ListTrainedModelInferenceJobsPaginator.ts | 2 +- .../ListTrainedModelVersionsPaginator.ts | 2 +- .../pagination/ListTrainedModelsPaginator.ts | 2 +- .../ListTrainingDatasetsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cleanroomsml/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloud9/package.json | 12 +- clients/client-cloud9/src/Cloud9.ts | 4 +- clients/client-cloud9/src/Cloud9Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateEnvironmentEC2Command.ts | 6 +- .../CreateEnvironmentMembershipCommand.ts | 6 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../DeleteEnvironmentMembershipCommand.ts | 6 +- .../DescribeEnvironmentMembershipsCommand.ts | 6 +- .../DescribeEnvironmentStatusCommand.ts | 6 +- .../commands/DescribeEnvironmentsCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateEnvironmentCommand.ts | 6 +- .../UpdateEnvironmentMembershipCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/Cloud9ServiceException.ts | 2 +- clients/client-cloud9/src/models/errors.ts | 2 +- ...DescribeEnvironmentMembershipsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListEnvironmentsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-cloud9/src/runtimeConfig.native.ts | 2 +- .../client-cloud9/src/runtimeConfig.shared.ts | 4 +- clients/client-cloud9/src/runtimeConfig.ts | 8 +- .../client-cloud9/src/runtimeExtensions.ts | 2 +- .../client-cloud9/src/schemas/schemas_0.ts | 2 +- clients/client-cloudcontrol/package.json | 12 +- .../client-cloudcontrol/src/CloudControl.ts | 4 +- .../src/CloudControlClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CancelResourceRequestCommand.ts | 6 +- .../src/commands/CreateResourceCommand.ts | 6 +- .../src/commands/DeleteResourceCommand.ts | 6 +- .../src/commands/GetResourceCommand.ts | 6 +- .../GetResourceRequestStatusCommand.ts | 6 +- .../commands/ListResourceRequestsCommand.ts | 6 +- .../src/commands/ListResourcesCommand.ts | 6 +- .../src/commands/UpdateResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CloudControlServiceException.ts | 2 +- .../client-cloudcontrol/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListResourceRequestsPaginator.ts | 2 +- .../src/pagination/ListResourcesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cloudcontrol/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-clouddirectory/package.json | 12 +- .../src/CloudDirectory.ts | 4 +- .../src/CloudDirectoryClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddFacetToObjectCommand.ts | 10 +- .../src/commands/ApplySchemaCommand.ts | 10 +- .../src/commands/AttachObjectCommand.ts | 10 +- .../src/commands/AttachPolicyCommand.ts | 10 +- .../src/commands/AttachToIndexCommand.ts | 10 +- .../src/commands/AttachTypedLinkCommand.ts | 10 +- .../src/commands/BatchReadCommand.ts | 10 +- .../src/commands/BatchWriteCommand.ts | 10 +- .../src/commands/CreateDirectoryCommand.ts | 10 +- .../src/commands/CreateFacetCommand.ts | 10 +- .../src/commands/CreateIndexCommand.ts | 10 +- .../src/commands/CreateObjectCommand.ts | 10 +- .../src/commands/CreateSchemaCommand.ts | 10 +- .../commands/CreateTypedLinkFacetCommand.ts | 10 +- .../src/commands/DeleteDirectoryCommand.ts | 10 +- .../src/commands/DeleteFacetCommand.ts | 10 +- .../src/commands/DeleteObjectCommand.ts | 10 +- .../src/commands/DeleteSchemaCommand.ts | 10 +- .../commands/DeleteTypedLinkFacetCommand.ts | 10 +- .../src/commands/DetachFromIndexCommand.ts | 10 +- .../src/commands/DetachObjectCommand.ts | 10 +- .../src/commands/DetachPolicyCommand.ts | 10 +- .../src/commands/DetachTypedLinkCommand.ts | 10 +- .../src/commands/DisableDirectoryCommand.ts | 10 +- .../src/commands/EnableDirectoryCommand.ts | 10 +- .../GetAppliedSchemaVersionCommand.ts | 10 +- .../src/commands/GetDirectoryCommand.ts | 10 +- .../src/commands/GetFacetCommand.ts | 10 +- .../src/commands/GetLinkAttributesCommand.ts | 10 +- .../commands/GetObjectAttributesCommand.ts | 10 +- .../commands/GetObjectInformationCommand.ts | 10 +- .../src/commands/GetSchemaAsJsonCommand.ts | 10 +- .../GetTypedLinkFacetInformationCommand.ts | 10 +- .../commands/ListAppliedSchemaArnsCommand.ts | 10 +- .../commands/ListAttachedIndicesCommand.ts | 10 +- .../ListDevelopmentSchemaArnsCommand.ts | 10 +- .../src/commands/ListDirectoriesCommand.ts | 10 +- .../commands/ListFacetAttributesCommand.ts | 10 +- .../src/commands/ListFacetNamesCommand.ts | 10 +- .../commands/ListIncomingTypedLinksCommand.ts | 10 +- .../src/commands/ListIndexCommand.ts | 10 +- .../commands/ListManagedSchemaArnsCommand.ts | 10 +- .../commands/ListObjectAttributesCommand.ts | 10 +- .../src/commands/ListObjectChildrenCommand.ts | 10 +- .../commands/ListObjectParentPathsCommand.ts | 10 +- .../src/commands/ListObjectParentsCommand.ts | 10 +- .../src/commands/ListObjectPoliciesCommand.ts | 10 +- .../commands/ListOutgoingTypedLinksCommand.ts | 10 +- .../commands/ListPolicyAttachmentsCommand.ts | 10 +- .../ListPublishedSchemaArnsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../ListTypedLinkFacetAttributesCommand.ts | 10 +- .../ListTypedLinkFacetNamesCommand.ts | 10 +- .../src/commands/LookupPolicyCommand.ts | 10 +- .../src/commands/PublishSchemaCommand.ts | 10 +- .../src/commands/PutSchemaFromJsonCommand.ts | 10 +- .../commands/RemoveFacetFromObjectCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateFacetCommand.ts | 10 +- .../commands/UpdateLinkAttributesCommand.ts | 10 +- .../commands/UpdateObjectAttributesCommand.ts | 10 +- .../src/commands/UpdateSchemaCommand.ts | 10 +- .../commands/UpdateTypedLinkFacetCommand.ts | 10 +- .../commands/UpgradeAppliedSchemaCommand.ts | 10 +- .../commands/UpgradePublishedSchemaCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CloudDirectoryServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAppliedSchemaArnsPaginator.ts | 2 +- .../ListAttachedIndicesPaginator.ts | 2 +- .../ListDevelopmentSchemaArnsPaginator.ts | 2 +- .../pagination/ListDirectoriesPaginator.ts | 2 +- .../ListFacetAttributesPaginator.ts | 2 +- .../src/pagination/ListFacetNamesPaginator.ts | 2 +- .../src/pagination/ListIndexPaginator.ts | 2 +- .../ListManagedSchemaArnsPaginator.ts | 2 +- .../ListObjectAttributesPaginator.ts | 2 +- .../pagination/ListObjectChildrenPaginator.ts | 2 +- .../ListObjectParentPathsPaginator.ts | 2 +- .../pagination/ListObjectParentsPaginator.ts | 2 +- .../pagination/ListObjectPoliciesPaginator.ts | 2 +- .../ListPolicyAttachmentsPaginator.ts | 2 +- .../ListPublishedSchemaArnsPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../ListTypedLinkFacetAttributesPaginator.ts | 2 +- .../ListTypedLinkFacetNamesPaginator.ts | 2 +- .../src/pagination/LookupPolicyPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudformation/package.json | 12 +- .../src/CloudFormation.ts | 4 +- .../src/CloudFormationClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../ActivateOrganizationsAccessCommand.ts | 10 +- .../src/commands/ActivateTypeCommand.ts | 10 +- .../BatchDescribeTypeConfigurationsCommand.ts | 10 +- .../src/commands/CancelUpdateStackCommand.ts | 10 +- .../commands/ContinueUpdateRollbackCommand.ts | 10 +- .../src/commands/CreateChangeSetCommand.ts | 10 +- .../CreateGeneratedTemplateCommand.ts | 10 +- .../src/commands/CreateStackCommand.ts | 10 +- .../commands/CreateStackInstancesCommand.ts | 10 +- .../commands/CreateStackRefactorCommand.ts | 10 +- .../src/commands/CreateStackSetCommand.ts | 10 +- .../DeactivateOrganizationsAccessCommand.ts | 10 +- .../src/commands/DeactivateTypeCommand.ts | 10 +- .../src/commands/DeleteChangeSetCommand.ts | 10 +- .../DeleteGeneratedTemplateCommand.ts | 10 +- .../src/commands/DeleteStackCommand.ts | 10 +- .../commands/DeleteStackInstancesCommand.ts | 10 +- .../src/commands/DeleteStackSetCommand.ts | 10 +- .../src/commands/DeregisterTypeCommand.ts | 10 +- .../commands/DescribeAccountLimitsCommand.ts | 10 +- .../src/commands/DescribeChangeSetCommand.ts | 10 +- .../commands/DescribeChangeSetHooksCommand.ts | 10 +- .../src/commands/DescribeEventsCommand.ts | 10 +- .../DescribeGeneratedTemplateCommand.ts | 10 +- .../DescribeOrganizationsAccessCommand.ts | 10 +- .../src/commands/DescribePublisherCommand.ts | 10 +- .../commands/DescribeResourceScanCommand.ts | 10 +- ...escribeStackDriftDetectionStatusCommand.ts | 13 +- .../commands/DescribeStackEventsCommand.ts | 10 +- .../commands/DescribeStackInstanceCommand.ts | 10 +- .../commands/DescribeStackRefactorCommand.ts | 10 +- .../commands/DescribeStackResourceCommand.ts | 10 +- .../DescribeStackResourceDriftsCommand.ts | 10 +- .../commands/DescribeStackResourcesCommand.ts | 10 +- .../src/commands/DescribeStackSetCommand.ts | 10 +- .../DescribeStackSetOperationCommand.ts | 10 +- .../src/commands/DescribeStacksCommand.ts | 10 +- .../src/commands/DescribeTypeCommand.ts | 10 +- .../DescribeTypeRegistrationCommand.ts | 10 +- .../src/commands/DetectStackDriftCommand.ts | 10 +- .../DetectStackResourceDriftCommand.ts | 10 +- .../commands/DetectStackSetDriftCommand.ts | 10 +- .../commands/EstimateTemplateCostCommand.ts | 10 +- .../src/commands/ExecuteChangeSetCommand.ts | 10 +- .../commands/ExecuteStackRefactorCommand.ts | 10 +- .../commands/GetGeneratedTemplateCommand.ts | 10 +- .../src/commands/GetHookResultCommand.ts | 10 +- .../src/commands/GetStackPolicyCommand.ts | 10 +- .../src/commands/GetTemplateCommand.ts | 10 +- .../src/commands/GetTemplateSummaryCommand.ts | 10 +- .../commands/ImportStacksToStackSetCommand.ts | 10 +- .../src/commands/ListChangeSetsCommand.ts | 10 +- .../src/commands/ListExportsCommand.ts | 10 +- .../commands/ListGeneratedTemplatesCommand.ts | 10 +- .../src/commands/ListHookResultsCommand.ts | 10 +- .../src/commands/ListImportsCommand.ts | 10 +- ...ListResourceScanRelatedResourcesCommand.ts | 10 +- .../ListResourceScanResourcesCommand.ts | 10 +- .../src/commands/ListResourceScansCommand.ts | 10 +- .../ListStackInstanceResourceDriftsCommand.ts | 10 +- .../src/commands/ListStackInstancesCommand.ts | 10 +- .../ListStackRefactorActionsCommand.ts | 10 +- .../src/commands/ListStackRefactorsCommand.ts | 10 +- .../src/commands/ListStackResourcesCommand.ts | 10 +- ...istStackSetAutoDeploymentTargetsCommand.ts | 13 +- .../ListStackSetOperationResultsCommand.ts | 10 +- .../commands/ListStackSetOperationsCommand.ts | 10 +- .../src/commands/ListStackSetsCommand.ts | 10 +- .../src/commands/ListStacksCommand.ts | 10 +- .../commands/ListTypeRegistrationsCommand.ts | 10 +- .../src/commands/ListTypeVersionsCommand.ts | 10 +- .../src/commands/ListTypesCommand.ts | 10 +- .../src/commands/PublishTypeCommand.ts | 10 +- .../commands/RecordHandlerProgressCommand.ts | 10 +- .../src/commands/RegisterPublisherCommand.ts | 10 +- .../src/commands/RegisterTypeCommand.ts | 10 +- .../src/commands/RollbackStackCommand.ts | 10 +- .../src/commands/SetStackPolicyCommand.ts | 10 +- .../commands/SetTypeConfigurationCommand.ts | 10 +- .../commands/SetTypeDefaultVersionCommand.ts | 10 +- .../src/commands/SignalResourceCommand.ts | 10 +- .../src/commands/StartResourceScanCommand.ts | 10 +- .../commands/StopStackSetOperationCommand.ts | 10 +- .../src/commands/TestTypeCommand.ts | 10 +- .../UpdateGeneratedTemplateCommand.ts | 10 +- .../src/commands/UpdateStackCommand.ts | 10 +- .../commands/UpdateStackInstancesCommand.ts | 10 +- .../src/commands/UpdateStackSetCommand.ts | 10 +- .../UpdateTerminationProtectionCommand.ts | 10 +- .../src/commands/ValidateTemplateCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CloudFormationServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeAccountLimitsPaginator.ts | 2 +- .../pagination/DescribeChangeSetPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- .../DescribeStackEventsPaginator.ts | 2 +- .../DescribeStackResourceDriftsPaginator.ts | 2 +- .../src/pagination/DescribeStacksPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChangeSetsPaginator.ts | 2 +- .../src/pagination/ListExportsPaginator.ts | 2 +- .../ListGeneratedTemplatesPaginator.ts | 2 +- .../src/pagination/ListImportsPaginator.ts | 2 +- ...stResourceScanRelatedResourcesPaginator.ts | 2 +- .../ListResourceScanResourcesPaginator.ts | 2 +- .../pagination/ListResourceScansPaginator.ts | 2 +- .../pagination/ListStackInstancesPaginator.ts | 2 +- .../ListStackRefactorActionsPaginator.ts | 2 +- .../pagination/ListStackRefactorsPaginator.ts | 2 +- .../pagination/ListStackResourcesPaginator.ts | 2 +- .../ListStackSetOperationResultsPaginator.ts | 2 +- .../ListStackSetOperationsPaginator.ts | 2 +- .../src/pagination/ListStackSetsPaginator.ts | 2 +- .../src/pagination/ListStacksPaginator.ts | 2 +- .../ListTypeRegistrationsPaginator.ts | 2 +- .../pagination/ListTypeVersionsPaginator.ts | 2 +- .../src/pagination/ListTypesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/CloudFrontKeyValueStore.ts | 4 +- .../src/CloudFrontKeyValueStoreClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 8 +- .../src/commands/DeleteKeyCommand.ts | 6 +- .../commands/DescribeKeyValueStoreCommand.ts | 6 +- .../src/commands/GetKeyCommand.ts | 6 +- .../src/commands/ListKeysCommand.ts | 6 +- .../src/commands/PutKeyCommand.ts | 6 +- .../src/commands/UpdateKeysCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...CloudFrontKeyValueStoreServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListKeysPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudfront/package.json | 12 +- clients/client-cloudfront/src/CloudFront.ts | 4 +- .../client-cloudfront/src/CloudFrontClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateAliasCommand.ts | 6 +- ...ssociateDistributionTenantWebACLCommand.ts | 9 +- .../AssociateDistributionWebACLCommand.ts | 6 +- .../src/commands/CopyDistributionCommand.ts | 6 +- .../commands/CreateAnycastIpListCommand.ts | 6 +- .../src/commands/CreateCachePolicyCommand.ts | 6 +- ...teCloudFrontOriginAccessIdentityCommand.ts | 6 +- .../CreateConnectionFunctionCommand.ts | 6 +- .../commands/CreateConnectionGroupCommand.ts | 6 +- ...CreateContinuousDeploymentPolicyCommand.ts | 9 +- .../src/commands/CreateDistributionCommand.ts | 6 +- .../CreateDistributionTenantCommand.ts | 6 +- .../CreateDistributionWithTagsCommand.ts | 6 +- ...CreateFieldLevelEncryptionConfigCommand.ts | 9 +- ...reateFieldLevelEncryptionProfileCommand.ts | 9 +- .../src/commands/CreateFunctionCommand.ts | 6 +- .../src/commands/CreateInvalidationCommand.ts | 6 +- ...nvalidationForDistributionTenantCommand.ts | 6 +- .../src/commands/CreateKeyGroupCommand.ts | 6 +- .../commands/CreateKeyValueStoreCommand.ts | 6 +- .../CreateMonitoringSubscriptionCommand.ts | 6 +- .../CreateOriginAccessControlCommand.ts | 6 +- .../CreateOriginRequestPolicyCommand.ts | 6 +- .../src/commands/CreatePublicKeyCommand.ts | 6 +- .../CreateRealtimeLogConfigCommand.ts | 6 +- .../CreateResponseHeadersPolicyCommand.ts | 6 +- .../CreateStreamingDistributionCommand.ts | 6 +- ...ateStreamingDistributionWithTagsCommand.ts | 6 +- .../src/commands/CreateTrustStoreCommand.ts | 6 +- .../src/commands/CreateVpcOriginCommand.ts | 6 +- .../commands/DeleteAnycastIpListCommand.ts | 6 +- .../src/commands/DeleteCachePolicyCommand.ts | 6 +- ...teCloudFrontOriginAccessIdentityCommand.ts | 6 +- .../DeleteConnectionFunctionCommand.ts | 6 +- .../commands/DeleteConnectionGroupCommand.ts | 6 +- ...DeleteContinuousDeploymentPolicyCommand.ts | 6 +- .../src/commands/DeleteDistributionCommand.ts | 6 +- .../DeleteDistributionTenantCommand.ts | 6 +- ...DeleteFieldLevelEncryptionConfigCommand.ts | 6 +- ...eleteFieldLevelEncryptionProfileCommand.ts | 6 +- .../src/commands/DeleteFunctionCommand.ts | 6 +- .../src/commands/DeleteKeyGroupCommand.ts | 6 +- .../commands/DeleteKeyValueStoreCommand.ts | 6 +- .../DeleteMonitoringSubscriptionCommand.ts | 6 +- .../DeleteOriginAccessControlCommand.ts | 6 +- .../DeleteOriginRequestPolicyCommand.ts | 6 +- .../src/commands/DeletePublicKeyCommand.ts | 6 +- .../DeleteRealtimeLogConfigCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../DeleteResponseHeadersPolicyCommand.ts | 6 +- .../DeleteStreamingDistributionCommand.ts | 6 +- .../src/commands/DeleteTrustStoreCommand.ts | 6 +- .../src/commands/DeleteVpcOriginCommand.ts | 6 +- .../DescribeConnectionFunctionCommand.ts | 6 +- .../src/commands/DescribeFunctionCommand.ts | 6 +- .../commands/DescribeKeyValueStoreCommand.ts | 6 +- ...ssociateDistributionTenantWebACLCommand.ts | 6 +- .../DisassociateDistributionWebACLCommand.ts | 6 +- .../src/commands/GetAnycastIpListCommand.ts | 6 +- .../src/commands/GetCachePolicyCommand.ts | 6 +- .../commands/GetCachePolicyConfigCommand.ts | 6 +- ...etCloudFrontOriginAccessIdentityCommand.ts | 9 +- ...dFrontOriginAccessIdentityConfigCommand.ts | 6 +- .../commands/GetConnectionFunctionCommand.ts | 6 +- ...ConnectionGroupByRoutingEndpointCommand.ts | 6 +- .../src/commands/GetConnectionGroupCommand.ts | 6 +- .../GetContinuousDeploymentPolicyCommand.ts | 6 +- ...ContinuousDeploymentPolicyConfigCommand.ts | 6 +- .../src/commands/GetDistributionCommand.ts | 6 +- .../commands/GetDistributionConfigCommand.ts | 6 +- .../GetDistributionTenantByDomainCommand.ts | 6 +- .../commands/GetDistributionTenantCommand.ts | 6 +- .../GetFieldLevelEncryptionCommand.ts | 6 +- .../GetFieldLevelEncryptionConfigCommand.ts | 6 +- .../GetFieldLevelEncryptionProfileCommand.ts | 6 +- ...ieldLevelEncryptionProfileConfigCommand.ts | 6 +- .../src/commands/GetFunctionCommand.ts | 6 +- .../src/commands/GetInvalidationCommand.ts | 6 +- ...nvalidationForDistributionTenantCommand.ts | 6 +- .../src/commands/GetKeyGroupCommand.ts | 6 +- .../src/commands/GetKeyGroupConfigCommand.ts | 6 +- .../GetManagedCertificateDetailsCommand.ts | 8 +- .../GetMonitoringSubscriptionCommand.ts | 6 +- .../commands/GetOriginAccessControlCommand.ts | 6 +- .../GetOriginAccessControlConfigCommand.ts | 6 +- .../commands/GetOriginRequestPolicyCommand.ts | 6 +- .../GetOriginRequestPolicyConfigCommand.ts | 6 +- .../src/commands/GetPublicKeyCommand.ts | 6 +- .../src/commands/GetPublicKeyConfigCommand.ts | 6 +- .../commands/GetRealtimeLogConfigCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../GetResponseHeadersPolicyCommand.ts | 6 +- .../GetResponseHeadersPolicyConfigCommand.ts | 6 +- .../GetStreamingDistributionCommand.ts | 6 +- .../GetStreamingDistributionConfigCommand.ts | 6 +- .../src/commands/GetTrustStoreCommand.ts | 6 +- .../src/commands/GetVpcOriginCommand.ts | 6 +- .../src/commands/ListAnycastIpListsCommand.ts | 6 +- .../src/commands/ListCachePoliciesCommand.ts | 6 +- ...CloudFrontOriginAccessIdentitiesCommand.ts | 6 +- .../commands/ListConflictingAliasesCommand.ts | 6 +- .../ListConnectionFunctionsCommand.ts | 6 +- .../commands/ListConnectionGroupsCommand.ts | 6 +- ...ListContinuousDeploymentPoliciesCommand.ts | 9 +- ...stributionTenantsByCustomizationCommand.ts | 6 +- .../ListDistributionTenantsCommand.ts | 6 +- ...stDistributionsByAnycastIpListIdCommand.ts | 6 +- ...ListDistributionsByCachePolicyIdCommand.ts | 9 +- ...istributionsByConnectionFunctionCommand.ts | 6 +- ...istDistributionsByConnectionModeCommand.ts | 9 +- .../ListDistributionsByKeyGroupCommand.ts | 6 +- ...ributionsByOriginRequestPolicyIdCommand.ts | 6 +- ...ListDistributionsByOwnedResourceCommand.ts | 9 +- ...DistributionsByRealtimeLogConfigCommand.ts | 6 +- ...butionsByResponseHeadersPolicyIdCommand.ts | 6 +- .../ListDistributionsByTrustStoreCommand.ts | 6 +- .../ListDistributionsByVpcOriginIdCommand.ts | 6 +- .../ListDistributionsByWebACLIdCommand.ts | 6 +- .../src/commands/ListDistributionsCommand.ts | 6 +- .../commands/ListDomainConflictsCommand.ts | 6 +- .../ListFieldLevelEncryptionConfigsCommand.ts | 6 +- ...ListFieldLevelEncryptionProfilesCommand.ts | 9 +- .../src/commands/ListFunctionsCommand.ts | 6 +- .../src/commands/ListInvalidationsCommand.ts | 6 +- ...validationsForDistributionTenantCommand.ts | 6 +- .../src/commands/ListKeyGroupsCommand.ts | 6 +- .../src/commands/ListKeyValueStoresCommand.ts | 6 +- .../ListOriginAccessControlsCommand.ts | 6 +- .../ListOriginRequestPoliciesCommand.ts | 6 +- .../src/commands/ListPublicKeysCommand.ts | 6 +- .../commands/ListRealtimeLogConfigsCommand.ts | 6 +- .../ListResponseHeadersPoliciesCommand.ts | 6 +- .../ListStreamingDistributionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTrustStoresCommand.ts | 6 +- .../src/commands/ListVpcOriginsCommand.ts | 6 +- .../PublishConnectionFunctionCommand.ts | 6 +- .../src/commands/PublishFunctionCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../commands/TestConnectionFunctionCommand.ts | 6 +- .../src/commands/TestFunctionCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAnycastIpListCommand.ts | 6 +- .../src/commands/UpdateCachePolicyCommand.ts | 6 +- ...teCloudFrontOriginAccessIdentityCommand.ts | 6 +- .../UpdateConnectionFunctionCommand.ts | 6 +- .../commands/UpdateConnectionGroupCommand.ts | 6 +- ...UpdateContinuousDeploymentPolicyCommand.ts | 9 +- .../src/commands/UpdateDistributionCommand.ts | 6 +- .../UpdateDistributionTenantCommand.ts | 6 +- ...ateDistributionWithStagingConfigCommand.ts | 6 +- .../UpdateDomainAssociationCommand.ts | 6 +- ...UpdateFieldLevelEncryptionConfigCommand.ts | 9 +- ...pdateFieldLevelEncryptionProfileCommand.ts | 9 +- .../src/commands/UpdateFunctionCommand.ts | 6 +- .../src/commands/UpdateKeyGroupCommand.ts | 6 +- .../commands/UpdateKeyValueStoreCommand.ts | 6 +- .../UpdateOriginAccessControlCommand.ts | 6 +- .../UpdateOriginRequestPolicyCommand.ts | 6 +- .../src/commands/UpdatePublicKeyCommand.ts | 6 +- .../UpdateRealtimeLogConfigCommand.ts | 6 +- .../UpdateResponseHeadersPolicyCommand.ts | 6 +- .../UpdateStreamingDistributionCommand.ts | 6 +- .../src/commands/UpdateTrustStoreCommand.ts | 6 +- .../src/commands/UpdateVpcOriginCommand.ts | 6 +- .../commands/VerifyDnsConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CloudFrontServiceException.ts | 2 +- .../client-cloudfront/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...oudFrontOriginAccessIdentitiesPaginator.ts | 2 +- .../ListConnectionFunctionsPaginator.ts | 2 +- .../ListConnectionGroupsPaginator.ts | 2 +- ...ributionTenantsByCustomizationPaginator.ts | 2 +- .../ListDistributionTenantsPaginator.ts | 2 +- ...tributionsByConnectionFunctionPaginator.ts | 2 +- ...tDistributionsByConnectionModePaginator.ts | 2 +- .../ListDistributionsByTrustStorePaginator.ts | 2 +- .../pagination/ListDistributionsPaginator.ts | 2 +- .../ListDomainConflictsPaginator.ts | 2 +- ...lidationsForDistributionTenantPaginator.ts | 2 +- .../pagination/ListInvalidationsPaginator.ts | 2 +- .../pagination/ListKeyValueStoresPaginator.ts | 2 +- .../ListOriginAccessControlsPaginator.ts | 2 +- .../src/pagination/ListPublicKeysPaginator.ts | 2 +- .../ListStreamingDistributionsPaginator.ts | 2 +- .../pagination/ListTrustStoresPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cloudfront/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudhsm-v2/package.json | 12 +- clients/client-cloudhsm-v2/src/CloudHSMV2.ts | 4 +- .../src/CloudHSMV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CopyBackupToRegionCommand.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../src/commands/CreateHsmCommand.ts | 6 +- .../src/commands/DeleteBackupCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../src/commands/DeleteHsmCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DescribeBackupsCommand.ts | 6 +- .../src/commands/DescribeClustersCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/InitializeClusterCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../commands/ModifyBackupAttributesCommand.ts | 6 +- .../src/commands/ModifyClusterCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/RestoreBackupCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CloudHSMV2ServiceException.ts | 2 +- .../client-cloudhsm-v2/src/models/errors.ts | 2 +- .../pagination/DescribeBackupsPaginator.ts | 2 +- .../pagination/DescribeClustersPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListTagsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cloudhsm-v2/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudhsm/package.json | 12 +- clients/client-cloudhsm/src/CloudHSM.ts | 4 +- clients/client-cloudhsm/src/CloudHSMClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddTagsToResourceCommand.ts | 6 +- .../src/commands/CreateHapgCommand.ts | 6 +- .../src/commands/CreateHsmCommand.ts | 6 +- .../src/commands/CreateLunaClientCommand.ts | 6 +- .../src/commands/DeleteHapgCommand.ts | 6 +- .../src/commands/DeleteHsmCommand.ts | 6 +- .../src/commands/DeleteLunaClientCommand.ts | 6 +- .../src/commands/DescribeHapgCommand.ts | 6 +- .../src/commands/DescribeHsmCommand.ts | 6 +- .../src/commands/DescribeLunaClientCommand.ts | 6 +- .../src/commands/GetConfigCommand.ts | 6 +- .../src/commands/ListAvailableZonesCommand.ts | 6 +- .../src/commands/ListHapgsCommand.ts | 6 +- .../src/commands/ListHsmsCommand.ts | 6 +- .../src/commands/ListLunaClientsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ModifyHapgCommand.ts | 6 +- .../src/commands/ModifyHsmCommand.ts | 6 +- .../src/commands/ModifyLunaClientCommand.ts | 6 +- .../commands/RemoveTagsFromResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CloudHSMServiceException.ts | 2 +- clients/client-cloudhsm/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-cloudhsm/src/runtimeConfig.ts | 8 +- .../client-cloudhsm/src/runtimeExtensions.ts | 2 +- .../client-cloudhsm/src/schemas/schemas_0.ts | 2 +- .../client-cloudsearch-domain/package.json | 12 +- .../src/CloudSearchDomain.ts | 4 +- .../src/CloudSearchDomainClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/SearchCommand.ts | 6 +- .../src/commands/SuggestCommand.ts | 6 +- .../src/commands/UploadDocumentsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../CloudSearchDomainServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudsearch/package.json | 12 +- clients/client-cloudsearch/src/CloudSearch.ts | 4 +- .../src/CloudSearchClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BuildSuggestersCommand.ts | 6 +- .../src/commands/CreateDomainCommand.ts | 6 +- .../commands/DefineAnalysisSchemeCommand.ts | 6 +- .../src/commands/DefineExpressionCommand.ts | 6 +- .../src/commands/DefineIndexFieldCommand.ts | 6 +- .../src/commands/DefineSuggesterCommand.ts | 6 +- .../commands/DeleteAnalysisSchemeCommand.ts | 6 +- .../src/commands/DeleteDomainCommand.ts | 6 +- .../src/commands/DeleteExpressionCommand.ts | 6 +- .../src/commands/DeleteIndexFieldCommand.ts | 6 +- .../src/commands/DeleteSuggesterCommand.ts | 6 +- .../DescribeAnalysisSchemesCommand.ts | 6 +- .../DescribeAvailabilityOptionsCommand.ts | 6 +- .../DescribeDomainEndpointOptionsCommand.ts | 6 +- .../src/commands/DescribeDomainsCommand.ts | 6 +- .../commands/DescribeExpressionsCommand.ts | 6 +- .../commands/DescribeIndexFieldsCommand.ts | 6 +- .../DescribeScalingParametersCommand.ts | 6 +- .../DescribeServiceAccessPoliciesCommand.ts | 6 +- .../src/commands/DescribeSuggestersCommand.ts | 6 +- .../src/commands/IndexDocumentsCommand.ts | 6 +- .../src/commands/ListDomainNamesCommand.ts | 6 +- .../UpdateAvailabilityOptionsCommand.ts | 6 +- .../UpdateDomainEndpointOptionsCommand.ts | 6 +- .../UpdateScalingParametersCommand.ts | 6 +- .../UpdateServiceAccessPoliciesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CloudSearchServiceException.ts | 2 +- .../client-cloudsearch/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cloudsearch/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudtrail-data/package.json | 12 +- .../src/CloudTrailData.ts | 4 +- .../src/CloudTrailDataClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/PutAuditEventsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CloudTrailDataServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudtrail/package.json | 12 +- clients/client-cloudtrail/src/CloudTrail.ts | 4 +- .../client-cloudtrail/src/CloudTrailClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddTagsCommand.ts | 6 +- .../src/commands/CancelQueryCommand.ts | 6 +- .../src/commands/CreateChannelCommand.ts | 6 +- .../src/commands/CreateDashboardCommand.ts | 6 +- .../commands/CreateEventDataStoreCommand.ts | 6 +- .../src/commands/CreateTrailCommand.ts | 6 +- .../src/commands/DeleteChannelCommand.ts | 6 +- .../src/commands/DeleteDashboardCommand.ts | 6 +- .../commands/DeleteEventDataStoreCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DeleteTrailCommand.ts | 6 +- ...gisterOrganizationDelegatedAdminCommand.ts | 6 +- .../src/commands/DescribeQueryCommand.ts | 6 +- .../src/commands/DescribeTrailsCommand.ts | 6 +- .../src/commands/DisableFederationCommand.ts | 6 +- .../src/commands/EnableFederationCommand.ts | 6 +- .../src/commands/GenerateQueryCommand.ts | 6 +- .../src/commands/GetChannelCommand.ts | 6 +- .../src/commands/GetDashboardCommand.ts | 6 +- .../commands/GetEventConfigurationCommand.ts | 6 +- .../src/commands/GetEventDataStoreCommand.ts | 6 +- .../src/commands/GetEventSelectorsCommand.ts | 6 +- .../src/commands/GetImportCommand.ts | 6 +- .../commands/GetInsightSelectorsCommand.ts | 6 +- .../src/commands/GetQueryResultsCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/GetTrailCommand.ts | 6 +- .../src/commands/GetTrailStatusCommand.ts | 6 +- .../src/commands/ListChannelsCommand.ts | 6 +- .../src/commands/ListDashboardsCommand.ts | 6 +- .../commands/ListEventDataStoresCommand.ts | 6 +- .../src/commands/ListImportFailuresCommand.ts | 6 +- .../src/commands/ListImportsCommand.ts | 6 +- .../src/commands/ListInsightsDataCommand.ts | 6 +- .../commands/ListInsightsMetricDataCommand.ts | 6 +- .../src/commands/ListPublicKeysCommand.ts | 6 +- .../src/commands/ListQueriesCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../src/commands/ListTrailsCommand.ts | 6 +- .../src/commands/LookupEventsCommand.ts | 6 +- .../commands/PutEventConfigurationCommand.ts | 6 +- .../src/commands/PutEventSelectorsCommand.ts | 6 +- .../commands/PutInsightSelectorsCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- ...gisterOrganizationDelegatedAdminCommand.ts | 6 +- .../src/commands/RemoveTagsCommand.ts | 6 +- .../commands/RestoreEventDataStoreCommand.ts | 6 +- .../commands/SearchSampleQueriesCommand.ts | 6 +- .../commands/StartDashboardRefreshCommand.ts | 6 +- .../StartEventDataStoreIngestionCommand.ts | 6 +- .../src/commands/StartImportCommand.ts | 6 +- .../src/commands/StartLoggingCommand.ts | 6 +- .../src/commands/StartQueryCommand.ts | 6 +- .../StopEventDataStoreIngestionCommand.ts | 6 +- .../src/commands/StopImportCommand.ts | 6 +- .../src/commands/StopLoggingCommand.ts | 6 +- .../src/commands/UpdateChannelCommand.ts | 6 +- .../src/commands/UpdateDashboardCommand.ts | 6 +- .../commands/UpdateEventDataStoreCommand.ts | 6 +- .../src/commands/UpdateTrailCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CloudTrailServiceException.ts | 2 +- .../client-cloudtrail/src/models/errors.ts | 2 +- .../pagination/GetQueryResultsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- .../ListEventDataStoresPaginator.ts | 2 +- .../pagination/ListImportFailuresPaginator.ts | 2 +- .../src/pagination/ListImportsPaginator.ts | 2 +- .../pagination/ListInsightsDataPaginator.ts | 2 +- .../ListInsightsMetricDataPaginator.ts | 2 +- .../src/pagination/ListPublicKeysPaginator.ts | 2 +- .../src/pagination/ListQueriesPaginator.ts | 2 +- .../src/pagination/ListTagsPaginator.ts | 2 +- .../src/pagination/ListTrailsPaginator.ts | 2 +- .../src/pagination/LookupEventsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cloudtrail/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudwatch-events/package.json | 12 +- .../src/CloudWatchEvents.ts | 4 +- .../src/CloudWatchEventsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ActivateEventSourceCommand.ts | 10 +- .../src/commands/CancelReplayCommand.ts | 10 +- .../commands/CreateApiDestinationCommand.ts | 10 +- .../src/commands/CreateArchiveCommand.ts | 10 +- .../src/commands/CreateConnectionCommand.ts | 10 +- .../src/commands/CreateEventBusCommand.ts | 10 +- .../CreatePartnerEventSourceCommand.ts | 10 +- .../commands/DeactivateEventSourceCommand.ts | 10 +- .../commands/DeauthorizeConnectionCommand.ts | 10 +- .../commands/DeleteApiDestinationCommand.ts | 10 +- .../src/commands/DeleteArchiveCommand.ts | 10 +- .../src/commands/DeleteConnectionCommand.ts | 10 +- .../src/commands/DeleteEventBusCommand.ts | 10 +- .../DeletePartnerEventSourceCommand.ts | 10 +- .../src/commands/DeleteRuleCommand.ts | 10 +- .../commands/DescribeApiDestinationCommand.ts | 10 +- .../src/commands/DescribeArchiveCommand.ts | 10 +- .../src/commands/DescribeConnectionCommand.ts | 10 +- .../src/commands/DescribeEventBusCommand.ts | 10 +- .../commands/DescribeEventSourceCommand.ts | 10 +- .../DescribePartnerEventSourceCommand.ts | 10 +- .../src/commands/DescribeReplayCommand.ts | 10 +- .../src/commands/DescribeRuleCommand.ts | 10 +- .../src/commands/DisableRuleCommand.ts | 10 +- .../src/commands/EnableRuleCommand.ts | 10 +- .../commands/ListApiDestinationsCommand.ts | 10 +- .../src/commands/ListArchivesCommand.ts | 10 +- .../src/commands/ListConnectionsCommand.ts | 10 +- .../src/commands/ListEventBusesCommand.ts | 10 +- .../src/commands/ListEventSourcesCommand.ts | 10 +- .../ListPartnerEventSourceAccountsCommand.ts | 10 +- .../ListPartnerEventSourcesCommand.ts | 10 +- .../src/commands/ListReplaysCommand.ts | 10 +- .../commands/ListRuleNamesByTargetCommand.ts | 10 +- .../src/commands/ListRulesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/ListTargetsByRuleCommand.ts | 10 +- .../src/commands/PutEventsCommand.ts | 10 +- .../src/commands/PutPartnerEventsCommand.ts | 10 +- .../src/commands/PutPermissionCommand.ts | 10 +- .../src/commands/PutRuleCommand.ts | 10 +- .../src/commands/PutTargetsCommand.ts | 10 +- .../src/commands/RemovePermissionCommand.ts | 10 +- .../src/commands/RemoveTargetsCommand.ts | 10 +- .../src/commands/StartReplayCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/TestEventPatternCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdateApiDestinationCommand.ts | 10 +- .../src/commands/UpdateArchiveCommand.ts | 10 +- .../src/commands/UpdateConnectionCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../CloudWatchEventsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudwatch-logs/package.json | 12 +- .../src/CloudWatchLogs.ts | 4 +- .../src/CloudWatchLogsClient.ts | 71 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateKmsKeyCommand.ts | 10 +- .../src/commands/CancelExportTaskCommand.ts | 10 +- .../src/commands/CreateDeliveryCommand.ts | 10 +- .../src/commands/CreateExportTaskCommand.ts | 10 +- .../CreateLogAnomalyDetectorCommand.ts | 10 +- .../src/commands/CreateLogGroupCommand.ts | 10 +- .../src/commands/CreateLogStreamCommand.ts | 10 +- .../commands/CreateScheduledQueryCommand.ts | 10 +- .../commands/DeleteAccountPolicyCommand.ts | 10 +- .../DeleteDataProtectionPolicyCommand.ts | 10 +- .../src/commands/DeleteDeliveryCommand.ts | 10 +- .../DeleteDeliveryDestinationCommand.ts | 10 +- .../DeleteDeliveryDestinationPolicyCommand.ts | 10 +- .../commands/DeleteDeliverySourceCommand.ts | 10 +- .../src/commands/DeleteDestinationCommand.ts | 10 +- .../src/commands/DeleteIndexPolicyCommand.ts | 10 +- .../src/commands/DeleteIntegrationCommand.ts | 10 +- .../DeleteLogAnomalyDetectorCommand.ts | 10 +- .../src/commands/DeleteLogGroupCommand.ts | 10 +- .../src/commands/DeleteLogStreamCommand.ts | 10 +- .../src/commands/DeleteMetricFilterCommand.ts | 10 +- .../commands/DeleteQueryDefinitionCommand.ts | 10 +- .../commands/DeleteResourcePolicyCommand.ts | 10 +- .../commands/DeleteRetentionPolicyCommand.ts | 10 +- .../commands/DeleteScheduledQueryCommand.ts | 10 +- .../DeleteSubscriptionFilterCommand.ts | 10 +- .../src/commands/DeleteTransformerCommand.ts | 10 +- .../DescribeAccountPoliciesCommand.ts | 10 +- .../DescribeConfigurationTemplatesCommand.ts | 10 +- .../src/commands/DescribeDeliveriesCommand.ts | 10 +- .../DescribeDeliveryDestinationsCommand.ts | 10 +- .../DescribeDeliverySourcesCommand.ts | 10 +- .../commands/DescribeDestinationsCommand.ts | 10 +- .../commands/DescribeExportTasksCommand.ts | 10 +- .../commands/DescribeFieldIndexesCommand.ts | 10 +- .../commands/DescribeIndexPoliciesCommand.ts | 10 +- .../src/commands/DescribeLogGroupsCommand.ts | 10 +- .../src/commands/DescribeLogStreamsCommand.ts | 10 +- .../commands/DescribeMetricFiltersCommand.ts | 10 +- .../src/commands/DescribeQueriesCommand.ts | 10 +- .../DescribeQueryDefinitionsCommand.ts | 10 +- .../DescribeResourcePoliciesCommand.ts | 10 +- .../DescribeSubscriptionFiltersCommand.ts | 10 +- .../src/commands/DisassociateKmsKeyCommand.ts | 10 +- .../src/commands/FilterLogEventsCommand.ts | 10 +- .../GetDataProtectionPolicyCommand.ts | 10 +- .../src/commands/GetDeliveryCommand.ts | 10 +- .../commands/GetDeliveryDestinationCommand.ts | 10 +- .../GetDeliveryDestinationPolicyCommand.ts | 10 +- .../src/commands/GetDeliverySourceCommand.ts | 10 +- .../src/commands/GetIntegrationCommand.ts | 10 +- .../commands/GetLogAnomalyDetectorCommand.ts | 10 +- .../src/commands/GetLogEventsCommand.ts | 10 +- .../src/commands/GetLogGroupFieldsCommand.ts | 10 +- .../src/commands/GetLogObjectCommand.ts | 10 +- .../src/commands/GetLogRecordCommand.ts | 10 +- .../src/commands/GetQueryResultsCommand.ts | 10 +- .../src/commands/GetScheduledQueryCommand.ts | 10 +- .../GetScheduledQueryHistoryCommand.ts | 10 +- .../src/commands/GetTransformerCommand.ts | 10 +- .../src/commands/ListAnomaliesCommand.ts | 10 +- .../src/commands/ListIntegrationsCommand.ts | 10 +- .../ListLogAnomalyDetectorsCommand.ts | 10 +- .../src/commands/ListLogGroupsCommand.ts | 10 +- .../commands/ListLogGroupsForQueryCommand.ts | 10 +- .../commands/ListScheduledQueriesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/ListTagsLogGroupCommand.ts | 10 +- .../src/commands/PutAccountPolicyCommand.ts | 10 +- .../PutDataProtectionPolicyCommand.ts | 10 +- .../commands/PutDeliveryDestinationCommand.ts | 10 +- .../PutDeliveryDestinationPolicyCommand.ts | 10 +- .../src/commands/PutDeliverySourceCommand.ts | 10 +- .../src/commands/PutDestinationCommand.ts | 10 +- .../commands/PutDestinationPolicyCommand.ts | 10 +- .../src/commands/PutIndexPolicyCommand.ts | 10 +- .../src/commands/PutIntegrationCommand.ts | 10 +- .../src/commands/PutLogEventsCommand.ts | 10 +- .../PutLogGroupDeletionProtectionCommand.ts | 10 +- .../src/commands/PutMetricFilterCommand.ts | 10 +- .../src/commands/PutQueryDefinitionCommand.ts | 10 +- .../src/commands/PutResourcePolicyCommand.ts | 10 +- .../src/commands/PutRetentionPolicyCommand.ts | 10 +- .../commands/PutSubscriptionFilterCommand.ts | 10 +- .../src/commands/PutTransformerCommand.ts | 10 +- .../src/commands/StartLiveTailCommand.ts | 10 +- .../src/commands/StartQueryCommand.ts | 10 +- .../src/commands/StopQueryCommand.ts | 10 +- .../src/commands/TagLogGroupCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/TestMetricFilterCommand.ts | 10 +- .../src/commands/TestTransformerCommand.ts | 10 +- .../src/commands/UntagLogGroupCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateAnomalyCommand.ts | 10 +- .../UpdateDeliveryConfigurationCommand.ts | 10 +- .../UpdateLogAnomalyDetectorCommand.ts | 10 +- .../commands/UpdateScheduledQueryCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CloudWatchLogsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- ...DescribeConfigurationTemplatesPaginator.ts | 2 +- .../pagination/DescribeDeliveriesPaginator.ts | 2 +- .../DescribeDeliveryDestinationsPaginator.ts | 2 +- .../DescribeDeliverySourcesPaginator.ts | 2 +- .../DescribeDestinationsPaginator.ts | 2 +- .../pagination/DescribeLogGroupsPaginator.ts | 2 +- .../pagination/DescribeLogStreamsPaginator.ts | 2 +- .../DescribeMetricFiltersPaginator.ts | 2 +- .../DescribeSubscriptionFiltersPaginator.ts | 2 +- .../pagination/FilterLogEventsPaginator.ts | 2 +- .../src/pagination/GetLogEventsPaginator.ts | 2 +- .../GetScheduledQueryHistoryPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAnomaliesPaginator.ts | 2 +- .../ListLogAnomalyDetectorsPaginator.ts | 2 +- .../ListLogGroupsForQueryPaginator.ts | 2 +- .../ListScheduledQueriesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cloudwatch/package.json | 14 +- clients/client-cloudwatch/src/CloudWatch.ts | 4 +- .../client-cloudwatch/src/CloudWatchClient.ts | 69 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DeleteAlarmsCommand.ts | 6 +- .../commands/DeleteAnomalyDetectorCommand.ts | 6 +- .../src/commands/DeleteDashboardsCommand.ts | 6 +- .../src/commands/DeleteInsightRulesCommand.ts | 6 +- .../src/commands/DeleteMetricStreamCommand.ts | 6 +- .../DescribeAlarmContributorsCommand.ts | 6 +- .../commands/DescribeAlarmHistoryCommand.ts | 6 +- .../src/commands/DescribeAlarmsCommand.ts | 6 +- .../DescribeAlarmsForMetricCommand.ts | 6 +- .../DescribeAnomalyDetectorsCommand.ts | 6 +- .../commands/DescribeInsightRulesCommand.ts | 6 +- .../commands/DisableAlarmActionsCommand.ts | 6 +- .../commands/DisableInsightRulesCommand.ts | 6 +- .../src/commands/EnableAlarmActionsCommand.ts | 6 +- .../src/commands/EnableInsightRulesCommand.ts | 6 +- .../src/commands/GetDashboardCommand.ts | 6 +- .../commands/GetInsightRuleReportCommand.ts | 6 +- .../src/commands/GetMetricDataCommand.ts | 6 +- .../commands/GetMetricStatisticsCommand.ts | 6 +- .../src/commands/GetMetricStreamCommand.ts | 6 +- .../commands/GetMetricWidgetImageCommand.ts | 6 +- .../src/commands/ListDashboardsCommand.ts | 6 +- .../ListManagedInsightRulesCommand.ts | 6 +- .../src/commands/ListMetricStreamsCommand.ts | 6 +- .../src/commands/ListMetricsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutAnomalyDetectorCommand.ts | 6 +- .../src/commands/PutCompositeAlarmCommand.ts | 6 +- .../src/commands/PutDashboardCommand.ts | 6 +- .../src/commands/PutInsightRuleCommand.ts | 6 +- .../commands/PutManagedInsightRulesCommand.ts | 6 +- .../src/commands/PutMetricAlarmCommand.ts | 6 +- .../src/commands/PutMetricDataCommand.ts | 6 +- .../src/commands/PutMetricStreamCommand.ts | 6 +- .../src/commands/SetAlarmStateCommand.ts | 6 +- .../src/commands/StartMetricStreamsCommand.ts | 6 +- .../src/commands/StopMetricStreamsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CloudWatchServiceException.ts | 2 +- .../client-cloudwatch/src/models/errors.ts | 2 +- .../DescribeAlarmHistoryPaginator.ts | 2 +- .../src/pagination/DescribeAlarmsPaginator.ts | 2 +- .../DescribeAnomalyDetectorsPaginator.ts | 2 +- .../DescribeInsightRulesPaginator.ts | 2 +- .../src/pagination/GetMetricDataPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDashboardsPaginator.ts | 2 +- .../ListManagedInsightRulesPaginator.ts | 2 +- .../pagination/ListMetricStreamsPaginator.ts | 2 +- .../src/pagination/ListMetricsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cloudwatch/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-codeartifact/package.json | 12 +- .../client-codeartifact/src/Codeartifact.ts | 4 +- .../src/CodeartifactClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateExternalConnectionCommand.ts | 6 +- .../commands/CopyPackageVersionsCommand.ts | 6 +- .../src/commands/CreateDomainCommand.ts | 6 +- .../src/commands/CreatePackageGroupCommand.ts | 6 +- .../src/commands/CreateRepositoryCommand.ts | 6 +- .../src/commands/DeleteDomainCommand.ts | 6 +- .../DeleteDomainPermissionsPolicyCommand.ts | 6 +- .../src/commands/DeletePackageCommand.ts | 6 +- .../src/commands/DeletePackageGroupCommand.ts | 6 +- .../commands/DeletePackageVersionsCommand.ts | 6 +- .../src/commands/DeleteRepositoryCommand.ts | 6 +- ...eleteRepositoryPermissionsPolicyCommand.ts | 9 +- .../src/commands/DescribeDomainCommand.ts | 6 +- .../src/commands/DescribePackageCommand.ts | 6 +- .../commands/DescribePackageGroupCommand.ts | 6 +- .../commands/DescribePackageVersionCommand.ts | 6 +- .../src/commands/DescribeRepositoryCommand.ts | 6 +- .../DisassociateExternalConnectionCommand.ts | 6 +- .../commands/DisposePackageVersionsCommand.ts | 6 +- .../GetAssociatedPackageGroupCommand.ts | 6 +- .../commands/GetAuthorizationTokenCommand.ts | 6 +- .../GetDomainPermissionsPolicyCommand.ts | 6 +- .../commands/GetPackageVersionAssetCommand.ts | 6 +- .../GetPackageVersionReadmeCommand.ts | 6 +- .../commands/GetRepositoryEndpointCommand.ts | 6 +- .../GetRepositoryPermissionsPolicyCommand.ts | 6 +- .../ListAllowedRepositoriesForGroupCommand.ts | 6 +- .../commands/ListAssociatedPackagesCommand.ts | 6 +- .../src/commands/ListDomainsCommand.ts | 6 +- .../src/commands/ListPackageGroupsCommand.ts | 6 +- .../ListPackageVersionAssetsCommand.ts | 6 +- .../ListPackageVersionDependenciesCommand.ts | 6 +- .../commands/ListPackageVersionsCommand.ts | 6 +- .../src/commands/ListPackagesCommand.ts | 6 +- .../src/commands/ListRepositoriesCommand.ts | 6 +- .../ListRepositoriesInDomainCommand.ts | 6 +- .../commands/ListSubPackageGroupsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/PublishPackageVersionCommand.ts | 6 +- .../PutDomainPermissionsPolicyCommand.ts | 6 +- .../PutPackageOriginConfigurationCommand.ts | 6 +- .../PutRepositoryPermissionsPolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdatePackageGroupCommand.ts | 6 +- ...ePackageGroupOriginConfigurationCommand.ts | 6 +- .../UpdatePackageVersionsStatusCommand.ts | 6 +- .../src/commands/UpdateRepositoryCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CodeartifactServiceException.ts | 2 +- .../client-codeartifact/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...istAllowedRepositoriesForGroupPaginator.ts | 2 +- .../ListAssociatedPackagesPaginator.ts | 2 +- .../src/pagination/ListDomainsPaginator.ts | 2 +- .../pagination/ListPackageGroupsPaginator.ts | 2 +- .../ListPackageVersionAssetsPaginator.ts | 2 +- .../ListPackageVersionsPaginator.ts | 2 +- .../src/pagination/ListPackagesPaginator.ts | 2 +- .../ListRepositoriesInDomainPaginator.ts | 2 +- .../pagination/ListRepositoriesPaginator.ts | 2 +- .../ListSubPackageGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-codeartifact/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-codebuild/package.json | 12 +- clients/client-codebuild/src/CodeBuild.ts | 4 +- .../client-codebuild/src/CodeBuildClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchDeleteBuildsCommand.ts | 6 +- .../commands/BatchGetBuildBatchesCommand.ts | 6 +- .../src/commands/BatchGetBuildsCommand.ts | 6 +- .../BatchGetCommandExecutionsCommand.ts | 6 +- .../src/commands/BatchGetFleetsCommand.ts | 6 +- .../src/commands/BatchGetProjectsCommand.ts | 6 +- .../commands/BatchGetReportGroupsCommand.ts | 6 +- .../src/commands/BatchGetReportsCommand.ts | 6 +- .../src/commands/BatchGetSandboxesCommand.ts | 6 +- .../src/commands/CreateFleetCommand.ts | 6 +- .../src/commands/CreateProjectCommand.ts | 6 +- .../src/commands/CreateReportGroupCommand.ts | 6 +- .../src/commands/CreateWebhookCommand.ts | 6 +- .../src/commands/DeleteBuildBatchCommand.ts | 6 +- .../src/commands/DeleteFleetCommand.ts | 6 +- .../src/commands/DeleteProjectCommand.ts | 6 +- .../src/commands/DeleteReportCommand.ts | 6 +- .../src/commands/DeleteReportGroupCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../DeleteSourceCredentialsCommand.ts | 6 +- .../src/commands/DeleteWebhookCommand.ts | 6 +- .../commands/DescribeCodeCoveragesCommand.ts | 6 +- .../src/commands/DescribeTestCasesCommand.ts | 6 +- .../commands/GetReportGroupTrendCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../ImportSourceCredentialsCommand.ts | 6 +- .../commands/InvalidateProjectCacheCommand.ts | 6 +- .../src/commands/ListBuildBatchesCommand.ts | 6 +- .../ListBuildBatchesForProjectCommand.ts | 6 +- .../src/commands/ListBuildsCommand.ts | 6 +- .../commands/ListBuildsForProjectCommand.ts | 6 +- .../ListCommandExecutionsForSandboxCommand.ts | 6 +- .../ListCuratedEnvironmentImagesCommand.ts | 6 +- .../src/commands/ListFleetsCommand.ts | 6 +- .../src/commands/ListProjectsCommand.ts | 6 +- .../src/commands/ListReportGroupsCommand.ts | 6 +- .../src/commands/ListReportsCommand.ts | 6 +- .../ListReportsForReportGroupCommand.ts | 6 +- .../src/commands/ListSandboxesCommand.ts | 6 +- .../ListSandboxesForProjectCommand.ts | 6 +- .../src/commands/ListSharedProjectsCommand.ts | 6 +- .../commands/ListSharedReportGroupsCommand.ts | 6 +- .../commands/ListSourceCredentialsCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/RetryBuildBatchCommand.ts | 6 +- .../src/commands/RetryBuildCommand.ts | 6 +- .../src/commands/StartBuildBatchCommand.ts | 6 +- .../src/commands/StartBuildCommand.ts | 6 +- .../commands/StartCommandExecutionCommand.ts | 6 +- .../src/commands/StartSandboxCommand.ts | 6 +- .../commands/StartSandboxConnectionCommand.ts | 6 +- .../src/commands/StopBuildBatchCommand.ts | 6 +- .../src/commands/StopBuildCommand.ts | 6 +- .../src/commands/StopSandboxCommand.ts | 6 +- .../src/commands/UpdateFleetCommand.ts | 6 +- .../src/commands/UpdateProjectCommand.ts | 6 +- .../UpdateProjectVisibilityCommand.ts | 6 +- .../src/commands/UpdateReportGroupCommand.ts | 6 +- .../src/commands/UpdateWebhookCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CodeBuildServiceException.ts | 2 +- clients/client-codebuild/src/models/errors.ts | 2 +- .../DescribeCodeCoveragesPaginator.ts | 2 +- .../pagination/DescribeTestCasesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListBuildBatchesForProjectPaginator.ts | 2 +- .../pagination/ListBuildBatchesPaginator.ts | 2 +- .../ListBuildsForProjectPaginator.ts | 2 +- .../src/pagination/ListBuildsPaginator.ts | 2 +- ...istCommandExecutionsForSandboxPaginator.ts | 2 +- .../src/pagination/ListFleetsPaginator.ts | 2 +- .../src/pagination/ListProjectsPaginator.ts | 2 +- .../pagination/ListReportGroupsPaginator.ts | 2 +- .../ListReportsForReportGroupPaginator.ts | 2 +- .../src/pagination/ListReportsPaginator.ts | 2 +- .../ListSandboxesForProjectPaginator.ts | 2 +- .../src/pagination/ListSandboxesPaginator.ts | 2 +- .../pagination/ListSharedProjectsPaginator.ts | 2 +- .../ListSharedReportGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-codebuild/src/runtimeConfig.ts | 8 +- .../client-codebuild/src/runtimeExtensions.ts | 2 +- .../client-codebuild/src/schemas/schemas_0.ts | 2 +- clients/client-codecatalyst/package.json | 12 +- .../client-codecatalyst/src/CodeCatalyst.ts | 4 +- .../src/CodeCatalystClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 14 +- .../src/commands/CreateAccessTokenCommand.ts | 6 +- .../commands/CreateDevEnvironmentCommand.ts | 6 +- .../src/commands/CreateProjectCommand.ts | 6 +- .../CreateSourceRepositoryBranchCommand.ts | 6 +- .../commands/CreateSourceRepositoryCommand.ts | 6 +- .../src/commands/DeleteAccessTokenCommand.ts | 6 +- .../commands/DeleteDevEnvironmentCommand.ts | 6 +- .../src/commands/DeleteProjectCommand.ts | 6 +- .../commands/DeleteSourceRepositoryCommand.ts | 6 +- .../src/commands/DeleteSpaceCommand.ts | 6 +- .../src/commands/GetDevEnvironmentCommand.ts | 6 +- .../src/commands/GetProjectCommand.ts | 6 +- .../GetSourceRepositoryCloneUrlsCommand.ts | 6 +- .../commands/GetSourceRepositoryCommand.ts | 6 +- .../src/commands/GetSpaceCommand.ts | 6 +- .../src/commands/GetSubscriptionCommand.ts | 6 +- .../src/commands/GetUserDetailsCommand.ts | 6 +- .../src/commands/GetWorkflowCommand.ts | 6 +- .../src/commands/GetWorkflowRunCommand.ts | 6 +- .../src/commands/ListAccessTokensCommand.ts | 6 +- .../ListDevEnvironmentSessionsCommand.ts | 6 +- .../commands/ListDevEnvironmentsCommand.ts | 6 +- .../src/commands/ListEventLogsCommand.ts | 6 +- .../src/commands/ListProjectsCommand.ts | 6 +- .../commands/ListSourceRepositoriesCommand.ts | 6 +- .../ListSourceRepositoryBranchesCommand.ts | 6 +- .../src/commands/ListSpacesCommand.ts | 6 +- .../src/commands/ListWorkflowRunsCommand.ts | 6 +- .../src/commands/ListWorkflowsCommand.ts | 6 +- .../commands/StartDevEnvironmentCommand.ts | 6 +- .../StartDevEnvironmentSessionCommand.ts | 6 +- .../src/commands/StartWorkflowRunCommand.ts | 6 +- .../src/commands/StopDevEnvironmentCommand.ts | 6 +- .../StopDevEnvironmentSessionCommand.ts | 6 +- .../commands/UpdateDevEnvironmentCommand.ts | 6 +- .../src/commands/UpdateProjectCommand.ts | 6 +- .../src/commands/UpdateSpaceCommand.ts | 6 +- .../src/commands/VerifySessionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CodeCatalystServiceException.ts | 2 +- .../client-codecatalyst/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAccessTokensPaginator.ts | 2 +- .../ListDevEnvironmentSessionsPaginator.ts | 2 +- .../ListDevEnvironmentsPaginator.ts | 2 +- .../src/pagination/ListEventLogsPaginator.ts | 2 +- .../src/pagination/ListProjectsPaginator.ts | 2 +- .../ListSourceRepositoriesPaginator.ts | 2 +- .../ListSourceRepositoryBranchesPaginator.ts | 2 +- .../src/pagination/ListSpacesPaginator.ts | 2 +- .../pagination/ListWorkflowRunsPaginator.ts | 2 +- .../src/pagination/ListWorkflowsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-codecatalyst/src/runtimeConfig.ts | 10 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-codecommit/package.json | 12 +- clients/client-codecommit/src/CodeCommit.ts | 4 +- .../client-codecommit/src/CodeCommitClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...provalRuleTemplateWithRepositoryCommand.ts | 6 +- ...ovalRuleTemplateWithRepositoriesCommand.ts | 6 +- .../BatchDescribeMergeConflictsCommand.ts | 6 +- ...ovalRuleTemplateFromRepositoriesCommand.ts | 6 +- .../src/commands/BatchGetCommitsCommand.ts | 6 +- .../commands/BatchGetRepositoriesCommand.ts | 6 +- .../CreateApprovalRuleTemplateCommand.ts | 6 +- .../src/commands/CreateBranchCommand.ts | 6 +- .../src/commands/CreateCommitCommand.ts | 6 +- .../CreatePullRequestApprovalRuleCommand.ts | 6 +- .../src/commands/CreatePullRequestCommand.ts | 6 +- .../src/commands/CreateRepositoryCommand.ts | 6 +- .../CreateUnreferencedMergeCommitCommand.ts | 6 +- .../DeleteApprovalRuleTemplateCommand.ts | 6 +- .../src/commands/DeleteBranchCommand.ts | 6 +- .../commands/DeleteCommentContentCommand.ts | 6 +- .../src/commands/DeleteFileCommand.ts | 6 +- .../DeletePullRequestApprovalRuleCommand.ts | 6 +- .../src/commands/DeleteRepositoryCommand.ts | 6 +- .../commands/DescribeMergeConflictsCommand.ts | 6 +- .../DescribePullRequestEventsCommand.ts | 6 +- ...provalRuleTemplateFromRepositoryCommand.ts | 6 +- ...EvaluatePullRequestApprovalRulesCommand.ts | 6 +- .../GetApprovalRuleTemplateCommand.ts | 6 +- .../src/commands/GetBlobCommand.ts | 6 +- .../src/commands/GetBranchCommand.ts | 6 +- .../src/commands/GetCommentCommand.ts | 6 +- .../commands/GetCommentReactionsCommand.ts | 6 +- .../GetCommentsForComparedCommitCommand.ts | 6 +- .../GetCommentsForPullRequestCommand.ts | 6 +- .../src/commands/GetCommitCommand.ts | 6 +- .../src/commands/GetDifferencesCommand.ts | 6 +- .../src/commands/GetFileCommand.ts | 6 +- .../src/commands/GetFolderCommand.ts | 6 +- .../src/commands/GetMergeCommitCommand.ts | 6 +- .../src/commands/GetMergeConflictsCommand.ts | 6 +- .../src/commands/GetMergeOptionsCommand.ts | 6 +- .../GetPullRequestApprovalStatesCommand.ts | 6 +- .../src/commands/GetPullRequestCommand.ts | 6 +- .../GetPullRequestOverrideStateCommand.ts | 6 +- .../src/commands/GetRepositoryCommand.ts | 6 +- .../commands/GetRepositoryTriggersCommand.ts | 6 +- .../ListApprovalRuleTemplatesCommand.ts | 6 +- ...provalRuleTemplatesForRepositoryCommand.ts | 6 +- .../src/commands/ListBranchesCommand.ts | 6 +- .../commands/ListFileCommitHistoryCommand.ts | 6 +- .../src/commands/ListPullRequestsCommand.ts | 6 +- .../src/commands/ListRepositoriesCommand.ts | 6 +- ...ositoriesForApprovalRuleTemplateCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../MergeBranchesByFastForwardCommand.ts | 6 +- .../commands/MergeBranchesBySquashCommand.ts | 6 +- .../MergeBranchesByThreeWayCommand.ts | 6 +- .../MergePullRequestByFastForwardCommand.ts | 6 +- .../MergePullRequestBySquashCommand.ts | 6 +- .../MergePullRequestByThreeWayCommand.ts | 6 +- ...OverridePullRequestApprovalRulesCommand.ts | 6 +- .../PostCommentForComparedCommitCommand.ts | 6 +- .../PostCommentForPullRequestCommand.ts | 6 +- .../src/commands/PostCommentReplyCommand.ts | 6 +- .../src/commands/PutCommentReactionCommand.ts | 6 +- .../src/commands/PutFileCommand.ts | 6 +- .../commands/PutRepositoryTriggersCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../commands/TestRepositoryTriggersCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...pdateApprovalRuleTemplateContentCommand.ts | 9 +- ...eApprovalRuleTemplateDescriptionCommand.ts | 6 +- .../UpdateApprovalRuleTemplateNameCommand.ts | 6 +- .../src/commands/UpdateCommentCommand.ts | 6 +- .../commands/UpdateDefaultBranchCommand.ts | 6 +- ...tePullRequestApprovalRuleContentCommand.ts | 6 +- .../UpdatePullRequestApprovalStateCommand.ts | 6 +- .../UpdatePullRequestDescriptionCommand.ts | 6 +- .../UpdatePullRequestStatusCommand.ts | 6 +- .../commands/UpdatePullRequestTitleCommand.ts | 6 +- .../UpdateRepositoryDescriptionCommand.ts | 6 +- .../UpdateRepositoryEncryptionKeyCommand.ts | 6 +- .../commands/UpdateRepositoryNameCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CodeCommitServiceException.ts | 2 +- .../client-codecommit/src/models/errors.ts | 2 +- .../DescribeMergeConflictsPaginator.ts | 2 +- .../DescribePullRequestEventsPaginator.ts | 2 +- .../GetCommentReactionsPaginator.ts | 2 +- .../GetCommentsForComparedCommitPaginator.ts | 2 +- .../GetCommentsForPullRequestPaginator.ts | 2 +- .../src/pagination/GetDifferencesPaginator.ts | 2 +- .../pagination/GetMergeConflictsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListApprovalRuleTemplatesPaginator.ts | 2 +- ...ovalRuleTemplatesForRepositoryPaginator.ts | 2 +- .../src/pagination/ListBranchesPaginator.ts | 2 +- .../ListFileCommitHistoryPaginator.ts | 2 +- .../pagination/ListPullRequestsPaginator.ts | 2 +- ...itoriesForApprovalRuleTemplatePaginator.ts | 2 +- .../pagination/ListRepositoriesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-codecommit/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-codeconnections/package.json | 12 +- .../src/CodeConnections.ts | 4 +- .../src/CodeConnectionsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateConnectionCommand.ts | 10 +- .../src/commands/CreateHostCommand.ts | 10 +- .../commands/CreateRepositoryLinkCommand.ts | 10 +- .../CreateSyncConfigurationCommand.ts | 10 +- .../src/commands/DeleteConnectionCommand.ts | 10 +- .../src/commands/DeleteHostCommand.ts | 10 +- .../commands/DeleteRepositoryLinkCommand.ts | 10 +- .../DeleteSyncConfigurationCommand.ts | 10 +- .../src/commands/GetConnectionCommand.ts | 10 +- .../src/commands/GetHostCommand.ts | 10 +- .../src/commands/GetRepositoryLinkCommand.ts | 10 +- .../GetRepositorySyncStatusCommand.ts | 10 +- .../commands/GetResourceSyncStatusCommand.ts | 10 +- .../commands/GetSyncBlockerSummaryCommand.ts | 10 +- .../commands/GetSyncConfigurationCommand.ts | 10 +- .../src/commands/ListConnectionsCommand.ts | 10 +- .../src/commands/ListHostsCommand.ts | 10 +- .../commands/ListRepositoryLinksCommand.ts | 10 +- .../ListRepositorySyncDefinitionsCommand.ts | 10 +- .../commands/ListSyncConfigurationsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateHostCommand.ts | 10 +- .../commands/UpdateRepositoryLinkCommand.ts | 10 +- .../src/commands/UpdateSyncBlockerCommand.ts | 10 +- .../UpdateSyncConfigurationCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CodeConnectionsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListConnectionsPaginator.ts | 2 +- .../src/pagination/ListHostsPaginator.ts | 2 +- .../ListRepositoryLinksPaginator.ts | 2 +- .../ListSyncConfigurationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-codedeploy/package.json | 12 +- clients/client-codedeploy/src/CodeDeploy.ts | 4 +- .../client-codedeploy/src/CodeDeployClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AddTagsToOnPremisesInstancesCommand.ts | 6 +- .../BatchGetApplicationRevisionsCommand.ts | 6 +- .../commands/BatchGetApplicationsCommand.ts | 6 +- .../BatchGetDeploymentGroupsCommand.ts | 6 +- .../BatchGetDeploymentInstancesCommand.ts | 6 +- .../BatchGetDeploymentTargetsCommand.ts | 6 +- .../commands/BatchGetDeploymentsCommand.ts | 6 +- .../BatchGetOnPremisesInstancesCommand.ts | 6 +- .../src/commands/ContinueDeploymentCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../src/commands/CreateDeploymentCommand.ts | 6 +- .../commands/CreateDeploymentConfigCommand.ts | 6 +- .../commands/CreateDeploymentGroupCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../commands/DeleteDeploymentConfigCommand.ts | 6 +- .../commands/DeleteDeploymentGroupCommand.ts | 6 +- .../DeleteGitHubAccountTokenCommand.ts | 6 +- .../DeleteResourcesByExternalIdCommand.ts | 6 +- .../DeregisterOnPremisesInstanceCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../commands/GetApplicationRevisionCommand.ts | 6 +- .../src/commands/GetDeploymentCommand.ts | 6 +- .../commands/GetDeploymentConfigCommand.ts | 6 +- .../src/commands/GetDeploymentGroupCommand.ts | 6 +- .../commands/GetDeploymentInstanceCommand.ts | 6 +- .../commands/GetDeploymentTargetCommand.ts | 6 +- .../commands/GetOnPremisesInstanceCommand.ts | 6 +- .../ListApplicationRevisionsCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../commands/ListDeploymentConfigsCommand.ts | 6 +- .../commands/ListDeploymentGroupsCommand.ts | 6 +- .../ListDeploymentInstancesCommand.ts | 6 +- .../commands/ListDeploymentTargetsCommand.ts | 6 +- .../src/commands/ListDeploymentsCommand.ts | 6 +- .../ListGitHubAccountTokenNamesCommand.ts | 6 +- .../ListOnPremisesInstancesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...ifecycleEventHookExecutionStatusCommand.ts | 6 +- .../RegisterApplicationRevisionCommand.ts | 6 +- .../RegisterOnPremisesInstanceCommand.ts | 6 +- ...emoveTagsFromOnPremisesInstancesCommand.ts | 6 +- ...ipWaitTimeForInstanceTerminationCommand.ts | 6 +- .../src/commands/StopDeploymentCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../commands/UpdateDeploymentGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CodeDeployServiceException.ts | 2 +- .../client-codedeploy/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListApplicationRevisionsPaginator.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../ListDeploymentConfigsPaginator.ts | 2 +- .../ListDeploymentGroupsPaginator.ts | 2 +- .../ListDeploymentInstancesPaginator.ts | 2 +- .../pagination/ListDeploymentsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-codedeploy/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-codeguru-reviewer/package.json | 12 +- .../src/CodeGuruReviewer.ts | 4 +- .../src/CodeGuruReviewerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateRepositoryCommand.ts | 10 +- .../src/commands/CreateCodeReviewCommand.ts | 10 +- .../src/commands/DescribeCodeReviewCommand.ts | 10 +- .../DescribeRecommendationFeedbackCommand.ts | 10 +- .../DescribeRepositoryAssociationCommand.ts | 10 +- .../commands/DisassociateRepositoryCommand.ts | 10 +- .../src/commands/ListCodeReviewsCommand.ts | 10 +- .../ListRecommendationFeedbackCommand.ts | 10 +- .../commands/ListRecommendationsCommand.ts | 10 +- .../ListRepositoryAssociationsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../PutRecommendationFeedbackCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../CodeGuruReviewerServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListCodeReviewsPaginator.ts | 2 +- .../ListRecommendationFeedbackPaginator.ts | 2 +- .../ListRecommendationsPaginator.ts | 2 +- .../ListRepositoryAssociationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-codeguru-security/package.json | 12 +- .../src/CodeGuruSecurity.ts | 4 +- .../src/CodeGuruSecurityClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchGetFindingsCommand.ts | 10 +- .../src/commands/CreateScanCommand.ts | 10 +- .../src/commands/CreateUploadUrlCommand.ts | 10 +- .../GetAccountConfigurationCommand.ts | 10 +- .../src/commands/GetFindingsCommand.ts | 10 +- .../src/commands/GetMetricsSummaryCommand.ts | 10 +- .../src/commands/GetScanCommand.ts | 10 +- .../commands/ListFindingsMetricsCommand.ts | 10 +- .../src/commands/ListScansCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../UpdateAccountConfigurationCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../CodeGuruSecurityServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/GetFindingsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListFindingsMetricsPaginator.ts | 2 +- .../src/pagination/ListScansPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-codeguruprofiler/package.json | 12 +- .../src/CodeGuruProfiler.ts | 4 +- .../src/CodeGuruProfilerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AddNotificationChannelsCommand.ts | 10 +- .../BatchGetFrameMetricDataCommand.ts | 10 +- .../src/commands/ConfigureAgentCommand.ts | 10 +- .../commands/CreateProfilingGroupCommand.ts | 10 +- .../commands/DeleteProfilingGroupCommand.ts | 10 +- .../commands/DescribeProfilingGroupCommand.ts | 10 +- .../GetFindingsReportAccountSummaryCommand.ts | 13 +- .../GetNotificationConfigurationCommand.ts | 10 +- .../src/commands/GetPolicyCommand.ts | 10 +- .../src/commands/GetProfileCommand.ts | 10 +- .../src/commands/GetRecommendationsCommand.ts | 10 +- .../commands/ListFindingsReportsCommand.ts | 10 +- .../src/commands/ListProfileTimesCommand.ts | 10 +- .../commands/ListProfilingGroupsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/PostAgentProfileCommand.ts | 10 +- .../src/commands/PutPermissionCommand.ts | 10 +- .../RemoveNotificationChannelCommand.ts | 10 +- .../src/commands/RemovePermissionCommand.ts | 10 +- .../src/commands/SubmitFeedbackCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdateProfilingGroupCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../CodeGuruProfilerServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- ...etFindingsReportAccountSummaryPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListFindingsReportsPaginator.ts | 2 +- .../pagination/ListProfileTimesPaginator.ts | 2 +- .../ListProfilingGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-codepipeline/package.json | 12 +- .../client-codepipeline/src/CodePipeline.ts | 4 +- .../src/CodePipelineClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcknowledgeJobCommand.ts | 6 +- .../AcknowledgeThirdPartyJobCommand.ts | 6 +- .../commands/CreateCustomActionTypeCommand.ts | 6 +- .../src/commands/CreatePipelineCommand.ts | 6 +- .../commands/DeleteCustomActionTypeCommand.ts | 6 +- .../src/commands/DeletePipelineCommand.ts | 6 +- .../src/commands/DeleteWebhookCommand.ts | 6 +- .../DeregisterWebhookWithThirdPartyCommand.ts | 6 +- .../commands/DisableStageTransitionCommand.ts | 6 +- .../commands/EnableStageTransitionCommand.ts | 6 +- .../src/commands/GetActionTypeCommand.ts | 6 +- .../src/commands/GetJobDetailsCommand.ts | 6 +- .../src/commands/GetPipelineCommand.ts | 6 +- .../commands/GetPipelineExecutionCommand.ts | 6 +- .../src/commands/GetPipelineStateCommand.ts | 6 +- .../GetThirdPartyJobDetailsCommand.ts | 6 +- .../commands/ListActionExecutionsCommand.ts | 6 +- .../src/commands/ListActionTypesCommand.ts | 6 +- ...ListDeployActionExecutionTargetsCommand.ts | 6 +- .../commands/ListPipelineExecutionsCommand.ts | 6 +- .../src/commands/ListPipelinesCommand.ts | 6 +- .../src/commands/ListRuleExecutionsCommand.ts | 6 +- .../src/commands/ListRuleTypesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWebhooksCommand.ts | 6 +- .../commands/OverrideStageConditionCommand.ts | 6 +- .../src/commands/PollForJobsCommand.ts | 6 +- .../commands/PollForThirdPartyJobsCommand.ts | 6 +- .../src/commands/PutActionRevisionCommand.ts | 6 +- .../src/commands/PutApprovalResultCommand.ts | 6 +- .../commands/PutJobFailureResultCommand.ts | 6 +- .../commands/PutJobSuccessResultCommand.ts | 6 +- .../PutThirdPartyJobFailureResultCommand.ts | 6 +- .../PutThirdPartyJobSuccessResultCommand.ts | 6 +- .../src/commands/PutWebhookCommand.ts | 6 +- .../RegisterWebhookWithThirdPartyCommand.ts | 6 +- .../commands/RetryStageExecutionCommand.ts | 6 +- .../src/commands/RollbackStageCommand.ts | 6 +- .../commands/StartPipelineExecutionCommand.ts | 6 +- .../commands/StopPipelineExecutionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateActionTypeCommand.ts | 6 +- .../src/commands/UpdatePipelineCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CodePipelineServiceException.ts | 2 +- .../client-codepipeline/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListActionExecutionsPaginator.ts | 2 +- .../pagination/ListActionTypesPaginator.ts | 2 +- ...stDeployActionExecutionTargetsPaginator.ts | 2 +- .../ListPipelineExecutionsPaginator.ts | 2 +- .../src/pagination/ListPipelinesPaginator.ts | 2 +- .../pagination/ListRuleExecutionsPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/pagination/ListWebhooksPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-codepipeline/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-codestar-connections/package.json | 12 +- .../src/CodeStarConnections.ts | 4 +- .../src/CodeStarConnectionsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/CreateConnectionCommand.ts | 6 +- .../src/commands/CreateHostCommand.ts | 6 +- .../commands/CreateRepositoryLinkCommand.ts | 6 +- .../CreateSyncConfigurationCommand.ts | 6 +- .../src/commands/DeleteConnectionCommand.ts | 6 +- .../src/commands/DeleteHostCommand.ts | 6 +- .../commands/DeleteRepositoryLinkCommand.ts | 6 +- .../DeleteSyncConfigurationCommand.ts | 6 +- .../src/commands/GetConnectionCommand.ts | 6 +- .../src/commands/GetHostCommand.ts | 6 +- .../src/commands/GetRepositoryLinkCommand.ts | 6 +- .../GetRepositorySyncStatusCommand.ts | 6 +- .../commands/GetResourceSyncStatusCommand.ts | 6 +- .../commands/GetSyncBlockerSummaryCommand.ts | 6 +- .../commands/GetSyncConfigurationCommand.ts | 6 +- .../src/commands/ListConnectionsCommand.ts | 6 +- .../src/commands/ListHostsCommand.ts | 6 +- .../commands/ListRepositoryLinksCommand.ts | 6 +- .../ListRepositorySyncDefinitionsCommand.ts | 6 +- .../commands/ListSyncConfigurationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateHostCommand.ts | 6 +- .../commands/UpdateRepositoryLinkCommand.ts | 6 +- .../src/commands/UpdateSyncBlockerCommand.ts | 6 +- .../UpdateSyncConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../CodeStarConnectionsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListConnectionsPaginator.ts | 2 +- .../src/pagination/ListHostsPaginator.ts | 2 +- .../ListRepositoryLinksPaginator.ts | 2 +- .../ListSyncConfigurationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/CodestarNotifications.ts | 4 +- .../src/CodestarNotificationsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateNotificationRuleCommand.ts | 6 +- .../commands/DeleteNotificationRuleCommand.ts | 6 +- .../src/commands/DeleteTargetCommand.ts | 6 +- .../DescribeNotificationRuleCommand.ts | 6 +- .../src/commands/ListEventTypesCommand.ts | 6 +- .../commands/ListNotificationRulesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTargetsCommand.ts | 6 +- .../src/commands/SubscribeCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UnsubscribeCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateNotificationRuleCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../CodestarNotificationsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListEventTypesPaginator.ts | 2 +- .../ListNotificationRulesPaginator.ts | 2 +- .../src/pagination/ListTargetsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/CognitoIdentityProvider.ts | 4 +- .../src/CognitoIdentityProviderClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AddCustomAttributesCommand.ts | 6 +- .../commands/AdminAddUserToGroupCommand.ts | 6 +- .../src/commands/AdminConfirmSignUpCommand.ts | 6 +- .../src/commands/AdminCreateUserCommand.ts | 6 +- .../AdminDeleteUserAttributesCommand.ts | 6 +- .../src/commands/AdminDeleteUserCommand.ts | 6 +- .../AdminDisableProviderForUserCommand.ts | 6 +- .../src/commands/AdminDisableUserCommand.ts | 6 +- .../src/commands/AdminEnableUserCommand.ts | 6 +- .../src/commands/AdminForgetDeviceCommand.ts | 6 +- .../src/commands/AdminGetDeviceCommand.ts | 6 +- .../src/commands/AdminGetUserCommand.ts | 6 +- .../src/commands/AdminInitiateAuthCommand.ts | 6 +- .../AdminLinkProviderForUserCommand.ts | 6 +- .../src/commands/AdminListDevicesCommand.ts | 6 +- .../commands/AdminListGroupsForUserCommand.ts | 6 +- .../AdminListUserAuthEventsCommand.ts | 6 +- .../AdminRemoveUserFromGroupCommand.ts | 6 +- .../commands/AdminResetUserPasswordCommand.ts | 6 +- .../AdminRespondToAuthChallengeCommand.ts | 6 +- .../AdminSetUserMFAPreferenceCommand.ts | 6 +- .../commands/AdminSetUserPasswordCommand.ts | 6 +- .../commands/AdminSetUserSettingsCommand.ts | 6 +- .../AdminUpdateAuthEventFeedbackCommand.ts | 6 +- .../AdminUpdateDeviceStatusCommand.ts | 6 +- .../AdminUpdateUserAttributesCommand.ts | 6 +- .../commands/AdminUserGlobalSignOutCommand.ts | 6 +- .../commands/AssociateSoftwareTokenCommand.ts | 6 +- .../src/commands/ChangePasswordCommand.ts | 6 +- .../CompleteWebAuthnRegistrationCommand.ts | 6 +- .../src/commands/ConfirmDeviceCommand.ts | 6 +- .../commands/ConfirmForgotPasswordCommand.ts | 6 +- .../src/commands/ConfirmSignUpCommand.ts | 6 +- .../src/commands/CreateGroupCommand.ts | 6 +- .../commands/CreateIdentityProviderCommand.ts | 6 +- .../CreateManagedLoginBrandingCommand.ts | 6 +- .../commands/CreateResourceServerCommand.ts | 6 +- .../src/commands/CreateTermsCommand.ts | 6 +- .../commands/CreateUserImportJobCommand.ts | 6 +- .../commands/CreateUserPoolClientCommand.ts | 6 +- .../src/commands/CreateUserPoolCommand.ts | 6 +- .../commands/CreateUserPoolDomainCommand.ts | 6 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../commands/DeleteIdentityProviderCommand.ts | 6 +- .../DeleteManagedLoginBrandingCommand.ts | 6 +- .../commands/DeleteResourceServerCommand.ts | 6 +- .../src/commands/DeleteTermsCommand.ts | 6 +- .../commands/DeleteUserAttributesCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../commands/DeleteUserPoolClientCommand.ts | 6 +- .../src/commands/DeleteUserPoolCommand.ts | 6 +- .../commands/DeleteUserPoolDomainCommand.ts | 6 +- .../DeleteWebAuthnCredentialCommand.ts | 6 +- .../DescribeIdentityProviderCommand.ts | 6 +- ...ribeManagedLoginBrandingByClientCommand.ts | 6 +- .../DescribeManagedLoginBrandingCommand.ts | 6 +- .../commands/DescribeResourceServerCommand.ts | 6 +- .../DescribeRiskConfigurationCommand.ts | 6 +- .../src/commands/DescribeTermsCommand.ts | 6 +- .../commands/DescribeUserImportJobCommand.ts | 6 +- .../commands/DescribeUserPoolClientCommand.ts | 6 +- .../src/commands/DescribeUserPoolCommand.ts | 6 +- .../commands/DescribeUserPoolDomainCommand.ts | 6 +- .../src/commands/ForgetDeviceCommand.ts | 6 +- .../src/commands/ForgotPasswordCommand.ts | 6 +- .../src/commands/GetCSVHeaderCommand.ts | 6 +- .../src/commands/GetDeviceCommand.ts | 6 +- .../src/commands/GetGroupCommand.ts | 6 +- .../GetIdentityProviderByIdentifierCommand.ts | 9 +- .../GetLogDeliveryConfigurationCommand.ts | 6 +- .../commands/GetSigningCertificateCommand.ts | 6 +- .../GetTokensFromRefreshTokenCommand.ts | 6 +- .../src/commands/GetUICustomizationCommand.ts | 6 +- ...GetUserAttributeVerificationCodeCommand.ts | 9 +- .../src/commands/GetUserAuthFactorsCommand.ts | 6 +- .../src/commands/GetUserCommand.ts | 6 +- .../commands/GetUserPoolMfaConfigCommand.ts | 6 +- .../src/commands/GlobalSignOutCommand.ts | 6 +- .../src/commands/InitiateAuthCommand.ts | 6 +- .../src/commands/ListDevicesCommand.ts | 6 +- .../src/commands/ListGroupsCommand.ts | 6 +- .../commands/ListIdentityProvidersCommand.ts | 6 +- .../commands/ListResourceServersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTermsCommand.ts | 6 +- .../src/commands/ListUserImportJobsCommand.ts | 6 +- .../commands/ListUserPoolClientsCommand.ts | 6 +- .../src/commands/ListUserPoolsCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../src/commands/ListUsersInGroupCommand.ts | 6 +- .../ListWebAuthnCredentialsCommand.ts | 6 +- .../commands/ResendConfirmationCodeCommand.ts | 6 +- .../commands/RespondToAuthChallengeCommand.ts | 6 +- .../src/commands/RevokeTokenCommand.ts | 6 +- .../SetLogDeliveryConfigurationCommand.ts | 6 +- .../commands/SetRiskConfigurationCommand.ts | 6 +- .../src/commands/SetUICustomizationCommand.ts | 6 +- .../commands/SetUserMFAPreferenceCommand.ts | 6 +- .../commands/SetUserPoolMfaConfigCommand.ts | 6 +- .../src/commands/SetUserSettingsCommand.ts | 6 +- .../src/commands/SignUpCommand.ts | 6 +- .../src/commands/StartUserImportJobCommand.ts | 6 +- .../StartWebAuthnRegistrationCommand.ts | 6 +- .../src/commands/StopUserImportJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateAuthEventFeedbackCommand.ts | 6 +- .../src/commands/UpdateDeviceStatusCommand.ts | 6 +- .../src/commands/UpdateGroupCommand.ts | 6 +- .../commands/UpdateIdentityProviderCommand.ts | 6 +- .../UpdateManagedLoginBrandingCommand.ts | 6 +- .../commands/UpdateResourceServerCommand.ts | 6 +- .../src/commands/UpdateTermsCommand.ts | 6 +- .../commands/UpdateUserAttributesCommand.ts | 6 +- .../commands/UpdateUserPoolClientCommand.ts | 8 +- .../src/commands/UpdateUserPoolCommand.ts | 6 +- .../commands/UpdateUserPoolDomainCommand.ts | 6 +- .../commands/VerifySoftwareTokenCommand.ts | 6 +- .../commands/VerifyUserAttributeCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...CognitoIdentityProviderServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../AdminListGroupsForUserPaginator.ts | 2 +- .../AdminListUserAuthEventsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListGroupsPaginator.ts | 2 +- .../ListIdentityProvidersPaginator.ts | 2 +- .../ListResourceServersPaginator.ts | 2 +- .../ListUserPoolClientsPaginator.ts | 2 +- .../src/pagination/ListUserPoolsPaginator.ts | 2 +- .../pagination/ListUsersInGroupPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cognito-identity/package.json | 12 +- .../src/CognitoIdentity.ts | 4 +- .../src/CognitoIdentityClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateIdentityPoolCommand.ts | 10 +- .../src/commands/DeleteIdentitiesCommand.ts | 10 +- .../src/commands/DeleteIdentityPoolCommand.ts | 10 +- .../src/commands/DescribeIdentityCommand.ts | 10 +- .../commands/DescribeIdentityPoolCommand.ts | 10 +- .../GetCredentialsForIdentityCommand.ts | 10 +- .../src/commands/GetIdCommand.ts | 10 +- .../commands/GetIdentityPoolRolesCommand.ts | 10 +- .../src/commands/GetOpenIdTokenCommand.ts | 10 +- ...tOpenIdTokenForDeveloperIdentityCommand.ts | 10 +- .../GetPrincipalTagAttributeMapCommand.ts | 10 +- .../src/commands/ListIdentitiesCommand.ts | 10 +- .../src/commands/ListIdentityPoolsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../LookupDeveloperIdentityCommand.ts | 10 +- .../MergeDeveloperIdentitiesCommand.ts | 10 +- .../commands/SetIdentityPoolRolesCommand.ts | 10 +- .../SetPrincipalTagAttributeMapCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../UnlinkDeveloperIdentityCommand.ts | 10 +- .../src/commands/UnlinkIdentityCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateIdentityPoolCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CognitoIdentityServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListIdentityPoolsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cognito-sync/package.json | 12 +- .../client-cognito-sync/src/CognitoSync.ts | 4 +- .../src/CognitoSyncClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BulkPublishCommand.ts | 6 +- .../src/commands/DeleteDatasetCommand.ts | 6 +- .../src/commands/DescribeDatasetCommand.ts | 6 +- .../DescribeIdentityPoolUsageCommand.ts | 6 +- .../commands/DescribeIdentityUsageCommand.ts | 6 +- .../commands/GetBulkPublishDetailsCommand.ts | 6 +- .../src/commands/GetCognitoEventsCommand.ts | 6 +- .../GetIdentityPoolConfigurationCommand.ts | 6 +- .../src/commands/ListDatasetsCommand.ts | 6 +- .../commands/ListIdentityPoolUsageCommand.ts | 6 +- .../src/commands/ListRecordsCommand.ts | 6 +- .../src/commands/RegisterDeviceCommand.ts | 6 +- .../src/commands/SetCognitoEventsCommand.ts | 6 +- .../SetIdentityPoolConfigurationCommand.ts | 6 +- .../src/commands/SubscribeToDatasetCommand.ts | 6 +- .../commands/UnsubscribeFromDatasetCommand.ts | 6 +- .../src/commands/UpdateRecordsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/CognitoSyncServiceException.ts | 2 +- .../client-cognito-sync/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cognito-sync/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-comprehend/package.json | 12 +- clients/client-comprehend/src/Comprehend.ts | 4 +- .../client-comprehend/src/ComprehendClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchDetectDominantLanguageCommand.ts | 6 +- .../commands/BatchDetectEntitiesCommand.ts | 6 +- .../commands/BatchDetectKeyPhrasesCommand.ts | 6 +- .../commands/BatchDetectSentimentCommand.ts | 6 +- .../src/commands/BatchDetectSyntaxCommand.ts | 6 +- .../BatchDetectTargetedSentimentCommand.ts | 6 +- .../src/commands/ClassifyDocumentCommand.ts | 6 +- .../commands/ContainsPiiEntitiesCommand.ts | 6 +- .../src/commands/CreateDatasetCommand.ts | 6 +- .../CreateDocumentClassifierCommand.ts | 6 +- .../src/commands/CreateEndpointCommand.ts | 6 +- .../commands/CreateEntityRecognizerCommand.ts | 6 +- .../src/commands/CreateFlywheelCommand.ts | 6 +- .../DeleteDocumentClassifierCommand.ts | 6 +- .../src/commands/DeleteEndpointCommand.ts | 6 +- .../commands/DeleteEntityRecognizerCommand.ts | 6 +- .../src/commands/DeleteFlywheelCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DescribeDatasetCommand.ts | 6 +- ...escribeDocumentClassificationJobCommand.ts | 6 +- .../DescribeDocumentClassifierCommand.ts | 6 +- ...ribeDominantLanguageDetectionJobCommand.ts | 6 +- .../src/commands/DescribeEndpointCommand.ts | 6 +- .../DescribeEntitiesDetectionJobCommand.ts | 6 +- .../DescribeEntityRecognizerCommand.ts | 6 +- .../DescribeEventsDetectionJobCommand.ts | 6 +- .../src/commands/DescribeFlywheelCommand.ts | 6 +- .../DescribeFlywheelIterationCommand.ts | 6 +- .../DescribeKeyPhrasesDetectionJobCommand.ts | 6 +- .../DescribePiiEntitiesDetectionJobCommand.ts | 9 +- .../commands/DescribeResourcePolicyCommand.ts | 6 +- .../DescribeSentimentDetectionJobCommand.ts | 6 +- ...ibeTargetedSentimentDetectionJobCommand.ts | 6 +- .../DescribeTopicsDetectionJobCommand.ts | 6 +- .../commands/DetectDominantLanguageCommand.ts | 6 +- .../src/commands/DetectEntitiesCommand.ts | 6 +- .../src/commands/DetectKeyPhrasesCommand.ts | 6 +- .../src/commands/DetectPiiEntitiesCommand.ts | 6 +- .../src/commands/DetectSentimentCommand.ts | 6 +- .../src/commands/DetectSyntaxCommand.ts | 6 +- .../DetectTargetedSentimentCommand.ts | 6 +- .../src/commands/DetectToxicContentCommand.ts | 6 +- .../src/commands/ImportModelCommand.ts | 6 +- .../src/commands/ListDatasetsCommand.ts | 6 +- .../ListDocumentClassificationJobsCommand.ts | 6 +- .../ListDocumentClassifierSummariesCommand.ts | 9 +- .../ListDocumentClassifiersCommand.ts | 6 +- ...istDominantLanguageDetectionJobsCommand.ts | 6 +- .../src/commands/ListEndpointsCommand.ts | 6 +- .../ListEntitiesDetectionJobsCommand.ts | 6 +- .../ListEntityRecognizerSummariesCommand.ts | 6 +- .../commands/ListEntityRecognizersCommand.ts | 6 +- .../ListEventsDetectionJobsCommand.ts | 6 +- .../ListFlywheelIterationHistoryCommand.ts | 6 +- .../src/commands/ListFlywheelsCommand.ts | 6 +- .../ListKeyPhrasesDetectionJobsCommand.ts | 6 +- .../ListPiiEntitiesDetectionJobsCommand.ts | 6 +- .../ListSentimentDetectionJobsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...stTargetedSentimentDetectionJobsCommand.ts | 6 +- .../ListTopicsDetectionJobsCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../StartDocumentClassificationJobCommand.ts | 6 +- ...tartDominantLanguageDetectionJobCommand.ts | 6 +- .../StartEntitiesDetectionJobCommand.ts | 6 +- .../StartEventsDetectionJobCommand.ts | 6 +- .../commands/StartFlywheelIterationCommand.ts | 6 +- .../StartKeyPhrasesDetectionJobCommand.ts | 6 +- .../StartPiiEntitiesDetectionJobCommand.ts | 6 +- .../StartSentimentDetectionJobCommand.ts | 6 +- ...artTargetedSentimentDetectionJobCommand.ts | 6 +- .../StartTopicsDetectionJobCommand.ts | 6 +- ...StopDominantLanguageDetectionJobCommand.ts | 9 +- .../StopEntitiesDetectionJobCommand.ts | 6 +- .../commands/StopEventsDetectionJobCommand.ts | 6 +- .../StopKeyPhrasesDetectionJobCommand.ts | 6 +- .../StopPiiEntitiesDetectionJobCommand.ts | 6 +- .../StopSentimentDetectionJobCommand.ts | 6 +- ...topTargetedSentimentDetectionJobCommand.ts | 6 +- .../StopTrainingDocumentClassifierCommand.ts | 6 +- .../StopTrainingEntityRecognizerCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateEndpointCommand.ts | 6 +- .../src/commands/UpdateFlywheelCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ComprehendServiceException.ts | 2 +- .../client-comprehend/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDatasetsPaginator.ts | 2 +- ...ListDocumentClassificationJobsPaginator.ts | 2 +- ...istDocumentClassifierSummariesPaginator.ts | 2 +- .../ListDocumentClassifiersPaginator.ts | 2 +- ...tDominantLanguageDetectionJobsPaginator.ts | 2 +- .../src/pagination/ListEndpointsPaginator.ts | 2 +- .../ListEntitiesDetectionJobsPaginator.ts | 2 +- .../ListEntityRecognizerSummariesPaginator.ts | 2 +- .../ListEntityRecognizersPaginator.ts | 2 +- .../ListEventsDetectionJobsPaginator.ts | 2 +- .../ListFlywheelIterationHistoryPaginator.ts | 2 +- .../src/pagination/ListFlywheelsPaginator.ts | 2 +- .../ListKeyPhrasesDetectionJobsPaginator.ts | 2 +- .../ListPiiEntitiesDetectionJobsPaginator.ts | 2 +- .../ListSentimentDetectionJobsPaginator.ts | 2 +- ...TargetedSentimentDetectionJobsPaginator.ts | 2 +- .../ListTopicsDetectionJobsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-comprehend/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-comprehendmedical/package.json | 12 +- .../src/ComprehendMedical.ts | 4 +- .../src/ComprehendMedicalClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../DescribeEntitiesDetectionV2JobCommand.ts | 6 +- .../DescribeICD10CMInferenceJobCommand.ts | 6 +- .../DescribePHIDetectionJobCommand.ts | 6 +- .../DescribeRxNormInferenceJobCommand.ts | 6 +- .../DescribeSNOMEDCTInferenceJobCommand.ts | 6 +- .../src/commands/DetectEntitiesCommand.ts | 6 +- .../src/commands/DetectEntitiesV2Command.ts | 6 +- .../src/commands/DetectPHICommand.ts | 6 +- .../src/commands/InferICD10CMCommand.ts | 6 +- .../src/commands/InferRxNormCommand.ts | 6 +- .../src/commands/InferSNOMEDCTCommand.ts | 6 +- .../ListEntitiesDetectionV2JobsCommand.ts | 6 +- .../ListICD10CMInferenceJobsCommand.ts | 6 +- .../commands/ListPHIDetectionJobsCommand.ts | 6 +- .../ListRxNormInferenceJobsCommand.ts | 6 +- .../ListSNOMEDCTInferenceJobsCommand.ts | 6 +- .../StartEntitiesDetectionV2JobCommand.ts | 6 +- .../StartICD10CMInferenceJobCommand.ts | 6 +- .../commands/StartPHIDetectionJobCommand.ts | 6 +- .../StartRxNormInferenceJobCommand.ts | 6 +- .../StartSNOMEDCTInferenceJobCommand.ts | 6 +- .../StopEntitiesDetectionV2JobCommand.ts | 6 +- .../StopICD10CMInferenceJobCommand.ts | 6 +- .../commands/StopPHIDetectionJobCommand.ts | 6 +- .../commands/StopRxNormInferenceJobCommand.ts | 6 +- .../StopSNOMEDCTInferenceJobCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ComprehendMedicalServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ComputeOptimizerAutomation.ts | 7 +- .../src/ComputeOptimizerAutomationClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateAccountsCommand.ts | 6 +- .../commands/CreateAutomationRuleCommand.ts | 6 +- .../commands/DeleteAutomationRuleCommand.ts | 6 +- .../commands/DisassociateAccountsCommand.ts | 6 +- .../src/commands/GetAutomationEventCommand.ts | 6 +- .../src/commands/GetAutomationRuleCommand.ts | 6 +- .../GetEnrollmentConfigurationCommand.ts | 6 +- .../src/commands/ListAccountsCommand.ts | 6 +- .../ListAutomationEventStepsCommand.ts | 6 +- .../ListAutomationEventSummariesCommand.ts | 6 +- .../commands/ListAutomationEventsCommand.ts | 6 +- .../ListAutomationRulePreviewCommand.ts | 6 +- ...stAutomationRulePreviewSummariesCommand.ts | 6 +- .../commands/ListAutomationRulesCommand.ts | 6 +- .../ListRecommendedActionSummariesCommand.ts | 6 +- .../commands/ListRecommendedActionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../RollbackAutomationEventCommand.ts | 6 +- .../commands/StartAutomationEventCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAutomationRuleCommand.ts | 6 +- .../UpdateEnrollmentConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...puteOptimizerAutomationServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAccountsPaginator.ts | 2 +- .../ListAutomationEventStepsPaginator.ts | 2 +- .../ListAutomationEventSummariesPaginator.ts | 2 +- .../ListAutomationEventsPaginator.ts | 2 +- .../ListAutomationRulePreviewPaginator.ts | 2 +- ...AutomationRulePreviewSummariesPaginator.ts | 2 +- .../ListAutomationRulesPaginator.ts | 2 +- ...ListRecommendedActionSummariesPaginator.ts | 2 +- .../ListRecommendedActionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-compute-optimizer/package.json | 12 +- .../src/ComputeOptimizer.ts | 4 +- .../src/ComputeOptimizerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../DeleteRecommendationPreferencesCommand.ts | 13 +- ...DescribeRecommendationExportJobsCommand.ts | 13 +- ...tAutoScalingGroupRecommendationsCommand.ts | 10 +- .../ExportEBSVolumeRecommendationsCommand.ts | 10 +- ...ExportEC2InstanceRecommendationsCommand.ts | 13 +- .../ExportECSServiceRecommendationsCommand.ts | 13 +- .../ExportIdleRecommendationsCommand.ts | 10 +- ...ortLambdaFunctionRecommendationsCommand.ts | 10 +- .../ExportLicenseRecommendationsCommand.ts | 10 +- ...ExportRDSDatabaseRecommendationsCommand.ts | 13 +- ...tAutoScalingGroupRecommendationsCommand.ts | 10 +- .../GetEBSVolumeRecommendationsCommand.ts | 10 +- .../GetEC2InstanceRecommendationsCommand.ts | 10 +- ...C2RecommendationProjectedMetricsCommand.ts | 10 +- ...ceRecommendationProjectedMetricsCommand.ts | 10 +- .../GetECSServiceRecommendationsCommand.ts | 10 +- ...fectiveRecommendationPreferencesCommand.ts | 10 +- .../commands/GetEnrollmentStatusCommand.ts | 10 +- ...nrollmentStatusesForOrganizationCommand.ts | 10 +- .../commands/GetIdleRecommendationsCommand.ts | 10 +- ...GetLambdaFunctionRecommendationsCommand.ts | 13 +- .../GetLicenseRecommendationsCommand.ts | 10 +- ...seRecommendationProjectedMetricsCommand.ts | 10 +- .../GetRDSDatabaseRecommendationsCommand.ts | 10 +- .../GetRecommendationPreferencesCommand.ts | 10 +- .../GetRecommendationSummariesCommand.ts | 10 +- .../PutRecommendationPreferencesCommand.ts | 10 +- .../commands/UpdateEnrollmentStatusCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ComputeOptimizerServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- ...scribeRecommendationExportJobsPaginator.ts | 2 +- ...ollmentStatusesForOrganizationPaginator.ts | 2 +- ...tLambdaFunctionRecommendationsPaginator.ts | 2 +- .../GetRecommendationPreferencesPaginator.ts | 2 +- .../GetRecommendationSummariesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-config-service/package.json | 12 +- .../src/ConfigService.ts | 4 +- .../src/ConfigServiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateResourceTypesCommand.ts | 6 +- .../BatchGetAggregateResourceConfigCommand.ts | 9 +- .../commands/BatchGetResourceConfigCommand.ts | 6 +- .../DeleteAggregationAuthorizationCommand.ts | 6 +- .../src/commands/DeleteConfigRuleCommand.ts | 6 +- .../DeleteConfigurationAggregatorCommand.ts | 6 +- .../DeleteConfigurationRecorderCommand.ts | 6 +- .../commands/DeleteConformancePackCommand.ts | 6 +- .../commands/DeleteDeliveryChannelCommand.ts | 6 +- .../DeleteEvaluationResultsCommand.ts | 6 +- .../DeleteOrganizationConfigRuleCommand.ts | 6 +- ...eleteOrganizationConformancePackCommand.ts | 6 +- .../DeletePendingAggregationRequestCommand.ts | 6 +- .../DeleteRemediationConfigurationCommand.ts | 6 +- .../DeleteRemediationExceptionsCommand.ts | 6 +- .../commands/DeleteResourceConfigCommand.ts | 6 +- .../DeleteRetentionConfigurationCommand.ts | 6 +- ...rviceLinkedConfigurationRecorderCommand.ts | 6 +- .../src/commands/DeleteStoredQueryCommand.ts | 6 +- .../commands/DeliverConfigSnapshotCommand.ts | 6 +- ...AggregateComplianceByConfigRulesCommand.ts | 6 +- ...gateComplianceByConformancePacksCommand.ts | 6 +- ...escribeAggregationAuthorizationsCommand.ts | 6 +- .../DescribeComplianceByConfigRuleCommand.ts | 6 +- .../DescribeComplianceByResourceCommand.ts | 6 +- ...scribeConfigRuleEvaluationStatusCommand.ts | 6 +- .../commands/DescribeConfigRulesCommand.ts | 6 +- ...igurationAggregatorSourcesStatusCommand.ts | 6 +- ...DescribeConfigurationAggregatorsCommand.ts | 9 +- ...cribeConfigurationRecorderStatusCommand.ts | 6 +- .../DescribeConfigurationRecordersCommand.ts | 6 +- ...escribeConformancePackComplianceCommand.ts | 6 +- .../DescribeConformancePackStatusCommand.ts | 6 +- .../DescribeConformancePacksCommand.ts | 6 +- .../DescribeDeliveryChannelStatusCommand.ts | 6 +- .../DescribeDeliveryChannelsCommand.ts | 6 +- ...beOrganizationConfigRuleStatusesCommand.ts | 6 +- .../DescribeOrganizationConfigRulesCommand.ts | 9 +- ...anizationConformancePackStatusesCommand.ts | 6 +- ...ribeOrganizationConformancePacksCommand.ts | 6 +- ...scribePendingAggregationRequestsCommand.ts | 6 +- ...escribeRemediationConfigurationsCommand.ts | 6 +- .../DescribeRemediationExceptionsCommand.ts | 6 +- ...scribeRemediationExecutionStatusCommand.ts | 6 +- .../DescribeRetentionConfigurationsCommand.ts | 9 +- .../DisassociateResourceTypesCommand.ts | 6 +- ...ateComplianceDetailsByConfigRuleCommand.ts | 6 +- ...egateConfigRuleComplianceSummaryCommand.ts | 6 +- ...ConformancePackComplianceSummaryCommand.ts | 6 +- ...ggregateDiscoveredResourceCountsCommand.ts | 6 +- .../GetAggregateResourceConfigCommand.ts | 6 +- ...GetComplianceDetailsByConfigRuleCommand.ts | 9 +- .../GetComplianceDetailsByResourceCommand.ts | 6 +- ...GetComplianceSummaryByConfigRuleCommand.ts | 6 +- ...tComplianceSummaryByResourceTypeCommand.ts | 6 +- ...ConformancePackComplianceDetailsCommand.ts | 6 +- ...ConformancePackComplianceSummaryCommand.ts | 6 +- .../commands/GetCustomRulePolicyCommand.ts | 6 +- .../GetDiscoveredResourceCountsCommand.ts | 6 +- ...nizationConfigRuleDetailedStatusCommand.ts | 6 +- ...ionConformancePackDetailedStatusCommand.ts | 6 +- .../GetOrganizationCustomRulePolicyCommand.ts | 9 +- .../GetResourceConfigHistoryCommand.ts | 6 +- .../GetResourceEvaluationSummaryCommand.ts | 6 +- .../src/commands/GetStoredQueryCommand.ts | 6 +- ...ListAggregateDiscoveredResourcesCommand.ts | 9 +- .../ListConfigurationRecordersCommand.ts | 6 +- ...tConformancePackComplianceScoresCommand.ts | 6 +- .../ListDiscoveredResourcesCommand.ts | 6 +- .../ListResourceEvaluationsCommand.ts | 6 +- .../src/commands/ListStoredQueriesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../PutAggregationAuthorizationCommand.ts | 6 +- .../src/commands/PutConfigRuleCommand.ts | 6 +- .../PutConfigurationAggregatorCommand.ts | 6 +- .../PutConfigurationRecorderCommand.ts | 6 +- .../src/commands/PutConformancePackCommand.ts | 6 +- .../src/commands/PutDeliveryChannelCommand.ts | 6 +- .../src/commands/PutEvaluationsCommand.ts | 6 +- .../commands/PutExternalEvaluationCommand.ts | 6 +- .../PutOrganizationConfigRuleCommand.ts | 6 +- .../PutOrganizationConformancePackCommand.ts | 6 +- .../PutRemediationConfigurationsCommand.ts | 6 +- .../PutRemediationExceptionsCommand.ts | 6 +- .../src/commands/PutResourceConfigCommand.ts | 6 +- .../PutRetentionConfigurationCommand.ts | 6 +- ...rviceLinkedConfigurationRecorderCommand.ts | 6 +- .../src/commands/PutStoredQueryCommand.ts | 6 +- .../SelectAggregateResourceConfigCommand.ts | 6 +- .../commands/SelectResourceConfigCommand.ts | 6 +- .../StartConfigRulesEvaluationCommand.ts | 6 +- .../StartConfigurationRecorderCommand.ts | 6 +- .../StartRemediationExecutionCommand.ts | 6 +- .../StartResourceEvaluationCommand.ts | 6 +- .../StopConfigurationRecorderCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ConfigServiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- ...gregateComplianceByConfigRulesPaginator.ts | 2 +- ...teComplianceByConformancePacksPaginator.ts | 2 +- ...cribeAggregationAuthorizationsPaginator.ts | 2 +- ...DescribeComplianceByConfigRulePaginator.ts | 2 +- .../DescribeComplianceByResourcePaginator.ts | 2 +- ...ribeConfigRuleEvaluationStatusPaginator.ts | 2 +- .../DescribeConfigRulesPaginator.ts | 2 +- ...urationAggregatorSourcesStatusPaginator.ts | 2 +- ...scribeConfigurationAggregatorsPaginator.ts | 2 +- ...cribeConformancePackCompliancePaginator.ts | 2 +- .../DescribeConformancePackStatusPaginator.ts | 2 +- .../DescribeConformancePacksPaginator.ts | 2 +- ...OrganizationConfigRuleStatusesPaginator.ts | 2 +- ...escribeOrganizationConfigRulesPaginator.ts | 2 +- ...izationConformancePackStatusesPaginator.ts | 2 +- ...beOrganizationConformancePacksPaginator.ts | 2 +- ...ribePendingAggregationRequestsPaginator.ts | 2 +- .../DescribeRemediationExceptionsPaginator.ts | 2 +- ...ribeRemediationExecutionStatusPaginator.ts | 2 +- ...escribeRetentionConfigurationsPaginator.ts | 2 +- ...eComplianceDetailsByConfigRulePaginator.ts | 2 +- ...ateConfigRuleComplianceSummaryPaginator.ts | 2 +- ...nformancePackComplianceSummaryPaginator.ts | 2 +- ...regateDiscoveredResourceCountsPaginator.ts | 2 +- ...tComplianceDetailsByConfigRulePaginator.ts | 2 +- ...GetComplianceDetailsByResourcePaginator.ts | 2 +- ...nformancePackComplianceDetailsPaginator.ts | 2 +- ...nformancePackComplianceSummaryPaginator.ts | 2 +- .../GetDiscoveredResourceCountsPaginator.ts | 2 +- ...zationConfigRuleDetailedStatusPaginator.ts | 2 +- ...nConformancePackDetailedStatusPaginator.ts | 2 +- .../GetResourceConfigHistoryPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...stAggregateDiscoveredResourcesPaginator.ts | 2 +- .../ListConfigurationRecordersPaginator.ts | 2 +- ...onformancePackComplianceScoresPaginator.ts | 2 +- .../ListDiscoveredResourcesPaginator.ts | 2 +- .../ListResourceEvaluationsPaginator.ts | 2 +- .../pagination/ListStoredQueriesPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../SelectAggregateResourceConfigPaginator.ts | 2 +- .../SelectResourceConfigPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-connect-contact-lens/package.json | 12 +- .../src/ConnectContactLens.ts | 4 +- .../src/ConnectContactLensClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- ...tRealtimeContactAnalysisSegmentsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ConnectContactLensServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...ealtimeContactAnalysisSegmentsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-connect/package.json | 12 +- clients/client-connect/src/Connect.ts | 4 +- clients/client-connect/src/ConnectClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ActivateEvaluationFormCommand.ts | 6 +- .../AssociateAnalyticsDataSetCommand.ts | 6 +- .../AssociateApprovedOriginCommand.ts | 6 +- .../src/commands/AssociateBotCommand.ts | 6 +- .../AssociateContactWithUserCommand.ts | 6 +- .../AssociateDefaultVocabularyCommand.ts | 6 +- .../AssociateEmailAddressAliasCommand.ts | 6 +- .../src/commands/AssociateFlowCommand.ts | 6 +- .../AssociateInstanceStorageConfigCommand.ts | 6 +- .../AssociateLambdaFunctionCommand.ts | 6 +- .../src/commands/AssociateLexBotCommand.ts | 6 +- .../AssociatePhoneNumberContactFlowCommand.ts | 6 +- .../AssociateQueueQuickConnectsCommand.ts | 6 +- .../AssociateRoutingProfileQueuesCommand.ts | 6 +- .../commands/AssociateSecurityKeyCommand.ts | 6 +- .../AssociateSecurityProfilesCommand.ts | 6 +- ...iateTrafficDistributionGroupUserCommand.ts | 6 +- .../AssociateUserProficienciesCommand.ts | 6 +- .../src/commands/AssociateWorkspaceCommand.ts | 6 +- .../BatchAssociateAnalyticsDataSetCommand.ts | 6 +- .../BatchCreateDataTableValueCommand.ts | 6 +- .../BatchDeleteDataTableValueCommand.ts | 6 +- .../BatchDescribeDataTableValueCommand.ts | 6 +- ...atchDisassociateAnalyticsDataSetCommand.ts | 6 +- .../BatchGetAttachedFileMetadataCommand.ts | 6 +- .../BatchGetFlowAssociationCommand.ts | 6 +- .../src/commands/BatchPutContactCommand.ts | 6 +- .../BatchUpdateDataTableValueCommand.ts | 6 +- .../src/commands/ClaimPhoneNumberCommand.ts | 6 +- .../CompleteAttachedFileUploadCommand.ts | 6 +- .../src/commands/CreateAgentStatusCommand.ts | 6 +- .../src/commands/CreateContactCommand.ts | 8 +- .../src/commands/CreateContactFlowCommand.ts | 6 +- .../CreateContactFlowModuleAliasCommand.ts | 6 +- .../CreateContactFlowModuleCommand.ts | 6 +- .../CreateContactFlowModuleVersionCommand.ts | 6 +- .../CreateContactFlowVersionCommand.ts | 6 +- .../CreateDataTableAttributeCommand.ts | 6 +- .../src/commands/CreateDataTableCommand.ts | 6 +- .../src/commands/CreateEmailAddressCommand.ts | 6 +- .../commands/CreateEvaluationFormCommand.ts | 8 +- .../commands/CreateHoursOfOperationCommand.ts | 6 +- .../CreateHoursOfOperationOverrideCommand.ts | 6 +- .../src/commands/CreateInstanceCommand.ts | 6 +- .../CreateIntegrationAssociationCommand.ts | 6 +- .../src/commands/CreateParticipantCommand.ts | 6 +- ...eatePersistentContactAssociationCommand.ts | 6 +- .../CreatePredefinedAttributeCommand.ts | 6 +- .../src/commands/CreatePromptCommand.ts | 6 +- ...eatePushNotificationRegistrationCommand.ts | 6 +- .../src/commands/CreateQueueCommand.ts | 6 +- .../src/commands/CreateQuickConnectCommand.ts | 6 +- .../commands/CreateRoutingProfileCommand.ts | 6 +- .../src/commands/CreateRuleCommand.ts | 6 +- .../commands/CreateSecurityProfileCommand.ts | 6 +- .../src/commands/CreateTaskTemplateCommand.ts | 6 +- .../CreateTrafficDistributionGroupCommand.ts | 6 +- .../src/commands/CreateUseCaseCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../CreateUserHierarchyGroupCommand.ts | 6 +- .../src/commands/CreateViewCommand.ts | 6 +- .../src/commands/CreateViewVersionCommand.ts | 6 +- .../src/commands/CreateVocabularyCommand.ts | 6 +- .../src/commands/CreateWorkspaceCommand.ts | 6 +- .../commands/CreateWorkspacePageCommand.ts | 6 +- .../DeactivateEvaluationFormCommand.ts | 6 +- .../src/commands/DeleteAttachedFileCommand.ts | 6 +- .../DeleteContactEvaluationCommand.ts | 6 +- .../src/commands/DeleteContactFlowCommand.ts | 6 +- .../DeleteContactFlowModuleAliasCommand.ts | 6 +- .../DeleteContactFlowModuleCommand.ts | 6 +- .../DeleteContactFlowModuleVersionCommand.ts | 6 +- .../DeleteContactFlowVersionCommand.ts | 6 +- .../DeleteDataTableAttributeCommand.ts | 6 +- .../src/commands/DeleteDataTableCommand.ts | 6 +- .../src/commands/DeleteEmailAddressCommand.ts | 6 +- .../commands/DeleteEvaluationFormCommand.ts | 6 +- .../commands/DeleteHoursOfOperationCommand.ts | 6 +- .../DeleteHoursOfOperationOverrideCommand.ts | 6 +- .../src/commands/DeleteInstanceCommand.ts | 6 +- .../DeleteIntegrationAssociationCommand.ts | 6 +- .../DeletePredefinedAttributeCommand.ts | 6 +- .../src/commands/DeletePromptCommand.ts | 6 +- ...letePushNotificationRegistrationCommand.ts | 6 +- .../src/commands/DeleteQueueCommand.ts | 6 +- .../src/commands/DeleteQuickConnectCommand.ts | 6 +- .../commands/DeleteRoutingProfileCommand.ts | 6 +- .../src/commands/DeleteRuleCommand.ts | 6 +- .../commands/DeleteSecurityProfileCommand.ts | 6 +- .../src/commands/DeleteTaskTemplateCommand.ts | 6 +- .../DeleteTrafficDistributionGroupCommand.ts | 6 +- .../src/commands/DeleteUseCaseCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../DeleteUserHierarchyGroupCommand.ts | 6 +- .../src/commands/DeleteViewCommand.ts | 6 +- .../src/commands/DeleteViewVersionCommand.ts | 6 +- .../src/commands/DeleteVocabularyCommand.ts | 6 +- .../src/commands/DeleteWorkspaceCommand.ts | 6 +- .../commands/DeleteWorkspaceMediaCommand.ts | 6 +- .../commands/DeleteWorkspacePageCommand.ts | 6 +- .../commands/DescribeAgentStatusCommand.ts | 6 +- .../DescribeAuthenticationProfileCommand.ts | 6 +- .../src/commands/DescribeContactCommand.ts | 8 +- .../DescribeContactEvaluationCommand.ts | 8 +- .../commands/DescribeContactFlowCommand.ts | 6 +- .../DescribeContactFlowModuleAliasCommand.ts | 6 +- .../DescribeContactFlowModuleCommand.ts | 6 +- .../DescribeDataTableAttributeCommand.ts | 6 +- .../src/commands/DescribeDataTableCommand.ts | 6 +- .../commands/DescribeEmailAddressCommand.ts | 6 +- .../commands/DescribeEvaluationFormCommand.ts | 8 +- .../DescribeHoursOfOperationCommand.ts | 6 +- ...DescribeHoursOfOperationOverrideCommand.ts | 9 +- .../DescribeInstanceAttributeCommand.ts | 6 +- .../src/commands/DescribeInstanceCommand.ts | 6 +- .../DescribeInstanceStorageConfigCommand.ts | 6 +- .../commands/DescribePhoneNumberCommand.ts | 6 +- .../DescribePredefinedAttributeCommand.ts | 6 +- .../src/commands/DescribePromptCommand.ts | 6 +- .../src/commands/DescribeQueueCommand.ts | 6 +- .../commands/DescribeQuickConnectCommand.ts | 6 +- .../commands/DescribeRoutingProfileCommand.ts | 6 +- .../src/commands/DescribeRuleCommand.ts | 6 +- .../DescribeSecurityProfileCommand.ts | 6 +- ...DescribeTrafficDistributionGroupCommand.ts | 9 +- .../src/commands/DescribeUserCommand.ts | 6 +- .../DescribeUserHierarchyGroupCommand.ts | 6 +- .../DescribeUserHierarchyStructureCommand.ts | 6 +- .../src/commands/DescribeViewCommand.ts | 6 +- .../src/commands/DescribeVocabularyCommand.ts | 6 +- .../src/commands/DescribeWorkspaceCommand.ts | 6 +- .../DisassociateAnalyticsDataSetCommand.ts | 6 +- .../DisassociateApprovedOriginCommand.ts | 6 +- .../src/commands/DisassociateBotCommand.ts | 6 +- .../DisassociateEmailAddressAliasCommand.ts | 6 +- .../src/commands/DisassociateFlowCommand.ts | 6 +- ...isassociateInstanceStorageConfigCommand.ts | 6 +- .../DisassociateLambdaFunctionCommand.ts | 6 +- .../src/commands/DisassociateLexBotCommand.ts | 6 +- ...sassociatePhoneNumberContactFlowCommand.ts | 6 +- .../DisassociateQueueQuickConnectsCommand.ts | 6 +- ...DisassociateRoutingProfileQueuesCommand.ts | 6 +- .../DisassociateSecurityKeyCommand.ts | 6 +- .../DisassociateSecurityProfilesCommand.ts | 6 +- ...iateTrafficDistributionGroupUserCommand.ts | 6 +- .../DisassociateUserProficienciesCommand.ts | 6 +- .../commands/DisassociateWorkspaceCommand.ts | 6 +- .../src/commands/DismissUserContactCommand.ts | 6 +- .../EvaluateDataTableValuesCommand.ts | 6 +- .../src/commands/GetAttachedFileCommand.ts | 6 +- .../commands/GetContactAttributesCommand.ts | 6 +- .../src/commands/GetContactMetricsCommand.ts | 6 +- .../commands/GetCurrentMetricDataCommand.ts | 6 +- .../src/commands/GetCurrentUserDataCommand.ts | 6 +- .../GetEffectiveHoursOfOperationsCommand.ts | 6 +- .../src/commands/GetFederationTokenCommand.ts | 6 +- .../src/commands/GetFlowAssociationCommand.ts | 6 +- .../src/commands/GetMetricDataCommand.ts | 6 +- .../src/commands/GetMetricDataV2Command.ts | 6 +- .../src/commands/GetPromptFileCommand.ts | 6 +- .../src/commands/GetTaskTemplateCommand.ts | 6 +- .../commands/GetTrafficDistributionCommand.ts | 6 +- .../src/commands/ImportPhoneNumberCommand.ts | 6 +- .../commands/ImportWorkspaceMediaCommand.ts | 6 +- .../src/commands/ListAgentStatusesCommand.ts | 6 +- .../ListAnalyticsDataAssociationsCommand.ts | 6 +- .../ListAnalyticsDataLakeDataSetsCommand.ts | 6 +- .../commands/ListApprovedOriginsCommand.ts | 6 +- .../commands/ListAssociatedContactsCommand.ts | 6 +- .../ListAuthenticationProfilesCommand.ts | 6 +- .../src/commands/ListBotsCommand.ts | 6 +- .../commands/ListContactEvaluationsCommand.ts | 6 +- .../ListContactFlowModuleAliasesCommand.ts | 6 +- .../ListContactFlowModuleVersionsCommand.ts | 6 +- .../commands/ListContactFlowModulesCommand.ts | 6 +- .../ListContactFlowVersionsCommand.ts | 6 +- .../src/commands/ListContactFlowsCommand.ts | 8 +- .../commands/ListContactReferencesCommand.ts | 6 +- .../ListDataTableAttributesCommand.ts | 6 +- .../ListDataTablePrimaryValuesCommand.ts | 6 +- .../commands/ListDataTableValuesCommand.ts | 6 +- .../src/commands/ListDataTablesCommand.ts | 6 +- .../ListDefaultVocabulariesCommand.ts | 6 +- .../ListEntitySecurityProfilesCommand.ts | 6 +- .../ListEvaluationFormVersionsCommand.ts | 6 +- .../commands/ListEvaluationFormsCommand.ts | 6 +- .../commands/ListFlowAssociationsCommand.ts | 6 +- .../ListHoursOfOperationOverridesCommand.ts | 6 +- .../commands/ListHoursOfOperationsCommand.ts | 6 +- .../commands/ListInstanceAttributesCommand.ts | 6 +- .../ListInstanceStorageConfigsCommand.ts | 6 +- .../src/commands/ListInstancesCommand.ts | 6 +- .../ListIntegrationAssociationsCommand.ts | 6 +- .../commands/ListLambdaFunctionsCommand.ts | 6 +- .../src/commands/ListLexBotsCommand.ts | 6 +- .../src/commands/ListPhoneNumbersCommand.ts | 6 +- .../src/commands/ListPhoneNumbersV2Command.ts | 6 +- .../ListPredefinedAttributesCommand.ts | 6 +- .../src/commands/ListPromptsCommand.ts | 6 +- .../commands/ListQueueQuickConnectsCommand.ts | 6 +- .../src/commands/ListQueuesCommand.ts | 6 +- .../src/commands/ListQuickConnectsCommand.ts | 6 +- ...ealtimeContactAnalysisSegmentsV2Command.ts | 6 +- ...ingProfileManualAssignmentQueuesCommand.ts | 6 +- .../ListRoutingProfileQueuesCommand.ts | 6 +- .../commands/ListRoutingProfilesCommand.ts | 6 +- .../src/commands/ListRulesCommand.ts | 6 +- .../src/commands/ListSecurityKeysCommand.ts | 6 +- .../ListSecurityProfileApplicationsCommand.ts | 9 +- .../ListSecurityProfileFlowModulesCommand.ts | 6 +- .../ListSecurityProfilePermissionsCommand.ts | 6 +- .../commands/ListSecurityProfilesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTaskTemplatesCommand.ts | 6 +- ...istTrafficDistributionGroupUsersCommand.ts | 6 +- .../ListTrafficDistributionGroupsCommand.ts | 6 +- .../src/commands/ListUseCasesCommand.ts | 6 +- .../ListUserHierarchyGroupsCommand.ts | 6 +- .../commands/ListUserProficienciesCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../src/commands/ListViewVersionsCommand.ts | 6 +- .../src/commands/ListViewsCommand.ts | 6 +- .../src/commands/ListWorkspaceMediaCommand.ts | 6 +- .../src/commands/ListWorkspacePagesCommand.ts | 6 +- .../src/commands/ListWorkspacesCommand.ts | 6 +- .../src/commands/MonitorContactCommand.ts | 6 +- .../src/commands/PauseContactCommand.ts | 6 +- .../src/commands/PutUserStatusCommand.ts | 6 +- .../src/commands/ReleasePhoneNumberCommand.ts | 6 +- .../src/commands/ReplicateInstanceCommand.ts | 6 +- .../src/commands/ResumeContactCommand.ts | 6 +- .../commands/ResumeContactRecordingCommand.ts | 6 +- .../commands/SearchAgentStatusesCommand.ts | 8 +- .../SearchAvailablePhoneNumbersCommand.ts | 6 +- .../SearchContactEvaluationsCommand.ts | 8 +- .../SearchContactFlowModulesCommand.ts | 8 +- .../src/commands/SearchContactFlowsCommand.ts | 8 +- .../src/commands/SearchContactsCommand.ts | 8 +- .../src/commands/SearchDataTablesCommand.ts | 8 +- .../commands/SearchEmailAddressesCommand.ts | 8 +- .../commands/SearchEvaluationFormsCommand.ts | 8 +- .../SearchHoursOfOperationOverridesCommand.ts | 8 +- .../SearchHoursOfOperationsCommand.ts | 8 +- .../SearchPredefinedAttributesCommand.ts | 8 +- .../src/commands/SearchPromptsCommand.ts | 8 +- .../src/commands/SearchQueuesCommand.ts | 8 +- .../commands/SearchQuickConnectsCommand.ts | 8 +- .../src/commands/SearchResourceTagsCommand.ts | 6 +- .../commands/SearchRoutingProfilesCommand.ts | 8 +- .../commands/SearchSecurityProfilesCommand.ts | 8 +- .../SearchUserHierarchyGroupsCommand.ts | 8 +- .../src/commands/SearchUsersCommand.ts | 8 +- .../src/commands/SearchViewsCommand.ts | 8 +- .../src/commands/SearchVocabulariesCommand.ts | 6 +- .../SearchWorkspaceAssociationsCommand.ts | 8 +- .../src/commands/SearchWorkspacesCommand.ts | 8 +- .../SendChatIntegrationEventCommand.ts | 6 +- .../src/commands/SendOutboundEmailCommand.ts | 6 +- .../StartAttachedFileUploadCommand.ts | 6 +- .../src/commands/StartChatContactCommand.ts | 8 +- .../commands/StartContactEvaluationCommand.ts | 6 +- .../StartContactMediaProcessingCommand.ts | 6 +- .../commands/StartContactRecordingCommand.ts | 6 +- .../commands/StartContactStreamingCommand.ts | 6 +- .../src/commands/StartEmailContactCommand.ts | 8 +- .../StartOutboundChatContactCommand.ts | 8 +- .../StartOutboundEmailContactCommand.ts | 8 +- .../StartOutboundVoiceContactCommand.ts | 6 +- .../src/commands/StartScreenSharingCommand.ts | 6 +- .../src/commands/StartTaskContactCommand.ts | 6 +- .../src/commands/StartWebRTCContactCommand.ts | 6 +- .../src/commands/StopContactCommand.ts | 6 +- .../StopContactMediaProcessingCommand.ts | 6 +- .../commands/StopContactRecordingCommand.ts | 6 +- .../commands/StopContactStreamingCommand.ts | 6 +- .../SubmitContactEvaluationCommand.ts | 6 +- .../SuspendContactRecordingCommand.ts | 6 +- .../src/commands/TagContactCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TransferContactCommand.ts | 6 +- .../src/commands/UntagContactCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAgentStatusCommand.ts | 6 +- .../UpdateAuthenticationProfileCommand.ts | 6 +- .../UpdateContactAttributesCommand.ts | 6 +- .../src/commands/UpdateContactCommand.ts | 6 +- .../UpdateContactEvaluationCommand.ts | 6 +- .../UpdateContactFlowContentCommand.ts | 6 +- .../UpdateContactFlowMetadataCommand.ts | 6 +- .../UpdateContactFlowModuleAliasCommand.ts | 6 +- .../UpdateContactFlowModuleContentCommand.ts | 6 +- .../UpdateContactFlowModuleMetadataCommand.ts | 9 +- .../commands/UpdateContactFlowNameCommand.ts | 6 +- .../UpdateContactRoutingDataCommand.ts | 6 +- .../commands/UpdateContactScheduleCommand.ts | 6 +- .../UpdateDataTableAttributeCommand.ts | 6 +- .../UpdateDataTableMetadataCommand.ts | 6 +- .../UpdateDataTablePrimaryValuesCommand.ts | 6 +- .../UpdateEmailAddressMetadataCommand.ts | 6 +- .../commands/UpdateEvaluationFormCommand.ts | 6 +- .../commands/UpdateHoursOfOperationCommand.ts | 6 +- .../UpdateHoursOfOperationOverrideCommand.ts | 6 +- .../UpdateInstanceAttributeCommand.ts | 6 +- .../UpdateInstanceStorageConfigCommand.ts | 6 +- .../UpdateParticipantAuthenticationCommand.ts | 9 +- .../UpdateParticipantRoleConfigCommand.ts | 6 +- .../src/commands/UpdatePhoneNumberCommand.ts | 6 +- .../UpdatePhoneNumberMetadataCommand.ts | 6 +- .../UpdatePredefinedAttributeCommand.ts | 6 +- .../src/commands/UpdatePromptCommand.ts | 6 +- .../UpdateQueueHoursOfOperationCommand.ts | 6 +- .../commands/UpdateQueueMaxContactsCommand.ts | 6 +- .../src/commands/UpdateQueueNameCommand.ts | 6 +- .../UpdateQueueOutboundCallerConfigCommand.ts | 6 +- .../UpdateQueueOutboundEmailConfigCommand.ts | 6 +- .../src/commands/UpdateQueueStatusCommand.ts | 6 +- .../UpdateQuickConnectConfigCommand.ts | 6 +- .../commands/UpdateQuickConnectNameCommand.ts | 6 +- ...ingProfileAgentAvailabilityTimerCommand.ts | 6 +- .../UpdateRoutingProfileConcurrencyCommand.ts | 6 +- ...utingProfileDefaultOutboundQueueCommand.ts | 6 +- .../UpdateRoutingProfileNameCommand.ts | 6 +- .../UpdateRoutingProfileQueuesCommand.ts | 6 +- .../src/commands/UpdateRuleCommand.ts | 6 +- .../commands/UpdateSecurityProfileCommand.ts | 6 +- .../src/commands/UpdateTaskTemplateCommand.ts | 6 +- .../UpdateTrafficDistributionCommand.ts | 6 +- .../commands/UpdateUserHierarchyCommand.ts | 6 +- .../UpdateUserHierarchyGroupNameCommand.ts | 6 +- .../UpdateUserHierarchyStructureCommand.ts | 6 +- .../commands/UpdateUserIdentityInfoCommand.ts | 6 +- .../commands/UpdateUserPhoneConfigCommand.ts | 6 +- .../UpdateUserProficienciesCommand.ts | 6 +- .../UpdateUserRoutingProfileCommand.ts | 6 +- .../UpdateUserSecurityProfilesCommand.ts | 6 +- .../src/commands/UpdateViewContentCommand.ts | 6 +- .../src/commands/UpdateViewMetadataCommand.ts | 6 +- .../UpdateWorkspaceMetadataCommand.ts | 6 +- .../commands/UpdateWorkspacePageCommand.ts | 6 +- .../commands/UpdateWorkspaceThemeCommand.ts | 6 +- .../UpdateWorkspaceVisibilityCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ConnectServiceException.ts | 2 +- clients/client-connect/src/models/errors.ts | 2 +- .../EvaluateDataTableValuesPaginator.ts | 2 +- .../GetCurrentMetricDataPaginator.ts | 2 +- .../pagination/GetCurrentUserDataPaginator.ts | 2 +- .../src/pagination/GetMetricDataPaginator.ts | 2 +- .../pagination/GetMetricDataV2Paginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAgentStatusesPaginator.ts | 2 +- .../ListApprovedOriginsPaginator.ts | 2 +- .../ListAuthenticationProfilesPaginator.ts | 2 +- .../src/pagination/ListBotsPaginator.ts | 2 +- .../ListContactEvaluationsPaginator.ts | 2 +- .../ListContactFlowModuleAliasesPaginator.ts | 2 +- .../ListContactFlowModuleVersionsPaginator.ts | 2 +- .../ListContactFlowModulesPaginator.ts | 2 +- .../ListContactFlowVersionsPaginator.ts | 2 +- .../pagination/ListContactFlowsPaginator.ts | 2 +- .../ListContactReferencesPaginator.ts | 2 +- .../ListDataTableAttributesPaginator.ts | 2 +- .../ListDataTablePrimaryValuesPaginator.ts | 2 +- .../ListDataTableValuesPaginator.ts | 2 +- .../src/pagination/ListDataTablesPaginator.ts | 2 +- .../ListDefaultVocabulariesPaginator.ts | 2 +- .../ListEvaluationFormVersionsPaginator.ts | 2 +- .../ListEvaluationFormsPaginator.ts | 2 +- .../ListFlowAssociationsPaginator.ts | 2 +- .../ListHoursOfOperationOverridesPaginator.ts | 2 +- .../ListHoursOfOperationsPaginator.ts | 2 +- .../ListInstanceAttributesPaginator.ts | 2 +- .../ListInstanceStorageConfigsPaginator.ts | 2 +- .../src/pagination/ListInstancesPaginator.ts | 2 +- .../ListIntegrationAssociationsPaginator.ts | 2 +- .../ListLambdaFunctionsPaginator.ts | 2 +- .../src/pagination/ListLexBotsPaginator.ts | 2 +- .../pagination/ListPhoneNumbersPaginator.ts | 2 +- .../pagination/ListPhoneNumbersV2Paginator.ts | 2 +- .../ListPredefinedAttributesPaginator.ts | 2 +- .../src/pagination/ListPromptsPaginator.ts | 2 +- .../ListQueueQuickConnectsPaginator.ts | 2 +- .../src/pagination/ListQueuesPaginator.ts | 2 +- .../pagination/ListQuickConnectsPaginator.ts | 2 +- ...ltimeContactAnalysisSegmentsV2Paginator.ts | 2 +- ...gProfileManualAssignmentQueuesPaginator.ts | 2 +- .../ListRoutingProfileQueuesPaginator.ts | 2 +- .../ListRoutingProfilesPaginator.ts | 2 +- .../src/pagination/ListRulesPaginator.ts | 2 +- .../pagination/ListSecurityKeysPaginator.ts | 2 +- ...istSecurityProfileApplicationsPaginator.ts | 2 +- ...ListSecurityProfilePermissionsPaginator.ts | 2 +- .../ListSecurityProfilesPaginator.ts | 2 +- .../pagination/ListTaskTemplatesPaginator.ts | 2 +- ...tTrafficDistributionGroupUsersPaginator.ts | 2 +- .../ListTrafficDistributionGroupsPaginator.ts | 2 +- .../src/pagination/ListUseCasesPaginator.ts | 2 +- .../ListUserHierarchyGroupsPaginator.ts | 2 +- .../ListUserProficienciesPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../pagination/ListViewVersionsPaginator.ts | 2 +- .../src/pagination/ListViewsPaginator.ts | 2 +- .../pagination/ListWorkspacePagesPaginator.ts | 2 +- .../src/pagination/ListWorkspacesPaginator.ts | 2 +- .../SearchAgentStatusesPaginator.ts | 2 +- .../SearchAvailablePhoneNumbersPaginator.ts | 2 +- .../SearchContactFlowModulesPaginator.ts | 2 +- .../pagination/SearchContactFlowsPaginator.ts | 2 +- .../src/pagination/SearchContactsPaginator.ts | 2 +- .../pagination/SearchDataTablesPaginator.ts | 2 +- ...earchHoursOfOperationOverridesPaginator.ts | 2 +- .../SearchHoursOfOperationsPaginator.ts | 2 +- .../SearchPredefinedAttributesPaginator.ts | 2 +- .../src/pagination/SearchPromptsPaginator.ts | 2 +- .../src/pagination/SearchQueuesPaginator.ts | 2 +- .../SearchQuickConnectsPaginator.ts | 2 +- .../pagination/SearchResourceTagsPaginator.ts | 2 +- .../SearchRoutingProfilesPaginator.ts | 2 +- .../SearchSecurityProfilesPaginator.ts | 2 +- .../SearchUserHierarchyGroupsPaginator.ts | 2 +- .../src/pagination/SearchUsersPaginator.ts | 2 +- .../src/pagination/SearchViewsPaginator.ts | 2 +- .../pagination/SearchVocabulariesPaginator.ts | 2 +- .../SearchWorkspaceAssociationsPaginator.ts | 2 +- .../pagination/SearchWorkspacesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-connect/src/runtimeConfig.ts | 8 +- .../client-connect/src/runtimeExtensions.ts | 2 +- .../client-connect/src/schemas/schemas_0.ts | 2 +- clients/client-connectcampaigns/package.json | 12 +- .../src/ConnectCampaigns.ts | 4 +- .../src/ConnectCampaignsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateCampaignCommand.ts | 10 +- .../src/commands/DeleteCampaignCommand.ts | 10 +- .../DeleteConnectInstanceConfigCommand.ts | 10 +- .../DeleteInstanceOnboardingJobCommand.ts | 10 +- .../src/commands/DescribeCampaignCommand.ts | 10 +- .../commands/GetCampaignStateBatchCommand.ts | 10 +- .../src/commands/GetCampaignStateCommand.ts | 10 +- .../GetConnectInstanceConfigCommand.ts | 10 +- .../GetInstanceOnboardingJobStatusCommand.ts | 10 +- .../src/commands/ListCampaignsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/PauseCampaignCommand.ts | 10 +- .../commands/PutDialRequestBatchCommand.ts | 10 +- .../src/commands/ResumeCampaignCommand.ts | 10 +- .../src/commands/StartCampaignCommand.ts | 10 +- .../StartInstanceOnboardingJobCommand.ts | 10 +- .../src/commands/StopCampaignCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../UpdateCampaignDialerConfigCommand.ts | 10 +- .../src/commands/UpdateCampaignNameCommand.ts | 10 +- ...UpdateCampaignOutboundCallConfigCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ConnectCampaignsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListCampaignsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-connectcampaignsv2/package.json | 12 +- .../src/ConnectCampaignsV2.ts | 4 +- .../src/ConnectCampaignsV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/CreateCampaignCommand.ts | 6 +- ...leteCampaignChannelSubtypeConfigCommand.ts | 6 +- .../src/commands/DeleteCampaignCommand.ts | 6 +- ...eleteCampaignCommunicationLimitsCommand.ts | 6 +- .../DeleteCampaignCommunicationTimeCommand.ts | 6 +- .../DeleteConnectInstanceConfigCommand.ts | 6 +- ...DeleteConnectInstanceIntegrationCommand.ts | 6 +- .../DeleteInstanceOnboardingJobCommand.ts | 6 +- .../src/commands/DescribeCampaignCommand.ts | 6 +- .../commands/GetCampaignStateBatchCommand.ts | 6 +- .../src/commands/GetCampaignStateCommand.ts | 6 +- .../GetConnectInstanceConfigCommand.ts | 6 +- .../GetInstanceCommunicationLimitsCommand.ts | 6 +- .../GetInstanceOnboardingJobStatusCommand.ts | 6 +- .../src/commands/ListCampaignsCommand.ts | 6 +- .../ListConnectInstanceIntegrationsCommand.ts | 9 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PauseCampaignCommand.ts | 6 +- .../PutConnectInstanceIntegrationCommand.ts | 6 +- .../PutInstanceCommunicationLimitsCommand.ts | 6 +- .../PutOutboundRequestBatchCommand.ts | 6 +- .../PutProfileOutboundRequestBatchCommand.ts | 6 +- .../src/commands/ResumeCampaignCommand.ts | 6 +- .../src/commands/StartCampaignCommand.ts | 6 +- .../StartInstanceOnboardingJobCommand.ts | 6 +- .../src/commands/StopCampaignCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...dateCampaignChannelSubtypeConfigCommand.ts | 6 +- ...pdateCampaignCommunicationLimitsCommand.ts | 6 +- .../UpdateCampaignCommunicationTimeCommand.ts | 6 +- .../UpdateCampaignFlowAssociationCommand.ts | 6 +- .../src/commands/UpdateCampaignNameCommand.ts | 6 +- .../commands/UpdateCampaignScheduleCommand.ts | 6 +- .../commands/UpdateCampaignSourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ConnectCampaignsV2ServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListCampaignsPaginator.ts | 2 +- ...istConnectInstanceIntegrationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-connectcases/package.json | 12 +- .../client-connectcases/src/ConnectCases.ts | 4 +- .../src/ConnectCasesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchGetCaseRuleCommand.ts | 6 +- .../src/commands/BatchGetFieldCommand.ts | 6 +- .../commands/BatchPutFieldOptionsCommand.ts | 6 +- .../src/commands/CreateCaseCommand.ts | 6 +- .../src/commands/CreateCaseRuleCommand.ts | 6 +- .../src/commands/CreateDomainCommand.ts | 6 +- .../src/commands/CreateFieldCommand.ts | 6 +- .../src/commands/CreateLayoutCommand.ts | 6 +- .../src/commands/CreateRelatedItemCommand.ts | 6 +- .../src/commands/CreateTemplateCommand.ts | 6 +- .../src/commands/DeleteCaseCommand.ts | 6 +- .../src/commands/DeleteCaseRuleCommand.ts | 6 +- .../src/commands/DeleteDomainCommand.ts | 6 +- .../src/commands/DeleteFieldCommand.ts | 6 +- .../src/commands/DeleteLayoutCommand.ts | 6 +- .../src/commands/DeleteRelatedItemCommand.ts | 6 +- .../src/commands/DeleteTemplateCommand.ts | 6 +- .../src/commands/GetCaseAuditEventsCommand.ts | 6 +- .../src/commands/GetCaseCommand.ts | 6 +- .../GetCaseEventConfigurationCommand.ts | 6 +- .../src/commands/GetDomainCommand.ts | 6 +- .../src/commands/GetLayoutCommand.ts | 6 +- .../src/commands/GetTemplateCommand.ts | 6 +- .../src/commands/ListCaseRulesCommand.ts | 6 +- .../commands/ListCasesForContactCommand.ts | 6 +- .../src/commands/ListDomainsCommand.ts | 6 +- .../src/commands/ListFieldOptionsCommand.ts | 6 +- .../src/commands/ListFieldsCommand.ts | 6 +- .../src/commands/ListLayoutsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTemplatesCommand.ts | 6 +- .../PutCaseEventConfigurationCommand.ts | 6 +- .../commands/SearchAllRelatedItemsCommand.ts | 6 +- .../src/commands/SearchCasesCommand.ts | 6 +- .../src/commands/SearchRelatedItemsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateCaseCommand.ts | 6 +- .../src/commands/UpdateCaseRuleCommand.ts | 6 +- .../src/commands/UpdateFieldCommand.ts | 6 +- .../src/commands/UpdateLayoutCommand.ts | 6 +- .../src/commands/UpdateTemplateCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ConnectCasesServiceException.ts | 2 +- .../client-connectcases/src/models/errors.ts | 2 +- .../pagination/GetCaseAuditEventsPaginator.ts | 2 +- .../src/pagination/GetCasePaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListCaseRulesPaginator.ts | 2 +- .../ListCasesForContactPaginator.ts | 2 +- .../src/pagination/ListDomainsPaginator.ts | 2 +- .../pagination/ListFieldOptionsPaginator.ts | 2 +- .../src/pagination/ListFieldsPaginator.ts | 2 +- .../src/pagination/ListLayoutsPaginator.ts | 2 +- .../src/pagination/ListTemplatesPaginator.ts | 2 +- .../SearchAllRelatedItemsPaginator.ts | 2 +- .../src/pagination/SearchCasesPaginator.ts | 2 +- .../pagination/SearchRelatedItemsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-connectcases/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-connectparticipant/package.json | 12 +- .../src/ConnectParticipant.ts | 4 +- .../src/ConnectParticipantClient.ts | 62 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../CancelParticipantAuthenticationCommand.ts | 9 +- .../CompleteAttachmentUploadCommand.ts | 6 +- .../CreateParticipantConnectionCommand.ts | 6 +- .../src/commands/DescribeViewCommand.ts | 6 +- .../commands/DisconnectParticipantCommand.ts | 6 +- .../src/commands/GetAttachmentCommand.ts | 6 +- .../commands/GetAuthenticationUrlCommand.ts | 6 +- .../src/commands/GetTranscriptCommand.ts | 6 +- .../src/commands/SendEventCommand.ts | 6 +- .../src/commands/SendMessageCommand.ts | 6 +- .../commands/StartAttachmentUploadCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ConnectParticipantServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/GetTranscriptPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-controlcatalog/package.json | 12 +- .../src/ControlCatalog.ts | 4 +- .../src/ControlCatalogClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetControlCommand.ts | 10 +- .../src/commands/ListCommonControlsCommand.ts | 10 +- .../commands/ListControlMappingsCommand.ts | 10 +- .../src/commands/ListControlsCommand.ts | 10 +- .../src/commands/ListDomainsCommand.ts | 10 +- .../src/commands/ListObjectivesCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ControlCatalogServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListCommonControlsPaginator.ts | 2 +- .../ListControlMappingsPaginator.ts | 2 +- .../src/pagination/ListControlsPaginator.ts | 2 +- .../src/pagination/ListDomainsPaginator.ts | 2 +- .../src/pagination/ListObjectivesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-controltower/package.json | 12 +- .../client-controltower/src/ControlTower.ts | 4 +- .../src/ControlTowerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateLandingZoneCommand.ts | 6 +- .../src/commands/DeleteLandingZoneCommand.ts | 6 +- .../src/commands/DisableBaselineCommand.ts | 6 +- .../src/commands/DisableControlCommand.ts | 6 +- .../src/commands/EnableBaselineCommand.ts | 6 +- .../src/commands/EnableControlCommand.ts | 6 +- .../src/commands/GetBaselineCommand.ts | 6 +- .../commands/GetBaselineOperationCommand.ts | 6 +- .../commands/GetControlOperationCommand.ts | 6 +- .../src/commands/GetEnabledBaselineCommand.ts | 6 +- .../src/commands/GetEnabledControlCommand.ts | 6 +- .../src/commands/GetLandingZoneCommand.ts | 6 +- .../GetLandingZoneOperationCommand.ts | 6 +- .../src/commands/ListBaselinesCommand.ts | 6 +- .../commands/ListControlOperationsCommand.ts | 6 +- .../commands/ListEnabledBaselinesCommand.ts | 6 +- .../commands/ListEnabledControlsCommand.ts | 6 +- .../ListLandingZoneOperationsCommand.ts | 6 +- .../src/commands/ListLandingZonesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ResetEnabledBaselineCommand.ts | 6 +- .../commands/ResetEnabledControlCommand.ts | 6 +- .../src/commands/ResetLandingZoneCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateEnabledBaselineCommand.ts | 6 +- .../commands/UpdateEnabledControlCommand.ts | 6 +- .../src/commands/UpdateLandingZoneCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ControlTowerServiceException.ts | 2 +- .../client-controltower/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListBaselinesPaginator.ts | 2 +- .../ListControlOperationsPaginator.ts | 2 +- .../ListEnabledBaselinesPaginator.ts | 2 +- .../ListEnabledControlsPaginator.ts | 2 +- .../ListLandingZoneOperationsPaginator.ts | 2 +- .../pagination/ListLandingZonesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-controltower/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/CostAndUsageReportService.ts | 7 +- .../src/CostAndUsageReportServiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/DeleteReportDefinitionCommand.ts | 6 +- .../DescribeReportDefinitionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ModifyReportDefinitionCommand.ts | 6 +- .../commands/PutReportDefinitionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...stAndUsageReportServiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeReportDefinitionsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-cost-explorer/package.json | 12 +- .../client-cost-explorer/src/CostExplorer.ts | 4 +- .../src/CostExplorerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateAnomalyMonitorCommand.ts | 6 +- .../CreateAnomalySubscriptionCommand.ts | 6 +- .../CreateCostCategoryDefinitionCommand.ts | 6 +- .../commands/DeleteAnomalyMonitorCommand.ts | 6 +- .../DeleteAnomalySubscriptionCommand.ts | 6 +- .../DeleteCostCategoryDefinitionCommand.ts | 6 +- .../DescribeCostCategoryDefinitionCommand.ts | 6 +- .../src/commands/GetAnomaliesCommand.ts | 6 +- .../src/commands/GetAnomalyMonitorsCommand.ts | 6 +- .../GetAnomalySubscriptionsCommand.ts | 6 +- .../GetApproximateUsageRecordsCommand.ts | 6 +- .../GetCommitmentPurchaseAnalysisCommand.ts | 6 +- .../src/commands/GetCostAndUsageCommand.ts | 6 +- .../GetCostAndUsageComparisonsCommand.ts | 6 +- .../GetCostAndUsageWithResourcesCommand.ts | 6 +- .../src/commands/GetCostCategoriesCommand.ts | 6 +- .../GetCostComparisonDriversCommand.ts | 6 +- .../src/commands/GetCostForecastCommand.ts | 6 +- .../src/commands/GetDimensionValuesCommand.ts | 6 +- .../commands/GetReservationCoverageCommand.ts | 6 +- ...eservationPurchaseRecommendationCommand.ts | 6 +- .../GetReservationUtilizationCommand.ts | 6 +- .../GetRightsizingRecommendationCommand.ts | 6 +- ...lanPurchaseRecommendationDetailsCommand.ts | 6 +- .../GetSavingsPlansCoverageCommand.ts | 6 +- ...vingsPlansPurchaseRecommendationCommand.ts | 6 +- .../GetSavingsPlansUtilizationCommand.ts | 6 +- ...etSavingsPlansUtilizationDetailsCommand.ts | 6 +- .../src/commands/GetTagsCommand.ts | 6 +- .../src/commands/GetUsageForecastCommand.ts | 6 +- .../ListCommitmentPurchaseAnalysesCommand.ts | 6 +- ...CostAllocationTagBackfillHistoryCommand.ts | 6 +- .../commands/ListCostAllocationTagsCommand.ts | 6 +- .../ListCostCategoryDefinitionsCommand.ts | 6 +- ...PurchaseRecommendationGenerationCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ProvideAnomalyFeedbackCommand.ts | 6 +- .../StartCommitmentPurchaseAnalysisCommand.ts | 9 +- .../StartCostAllocationTagBackfillCommand.ts | 6 +- ...PurchaseRecommendationGenerationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAnomalyMonitorCommand.ts | 6 +- .../UpdateAnomalySubscriptionCommand.ts | 6 +- .../UpdateCostAllocationTagsStatusCommand.ts | 6 +- .../UpdateCostCategoryDefinitionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/CostExplorerServiceException.ts | 2 +- .../client-cost-explorer/src/models/errors.ts | 2 +- .../src/pagination/GetAnomaliesPaginator.ts | 2 +- .../pagination/GetAnomalyMonitorsPaginator.ts | 2 +- .../GetAnomalySubscriptionsPaginator.ts | 2 +- .../GetCostAndUsageComparisonsPaginator.ts | 2 +- .../GetCostComparisonDriversPaginator.ts | 2 +- .../GetSavingsPlansCoveragePaginator.ts | 2 +- ...SavingsPlansUtilizationDetailsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...stAllocationTagBackfillHistoryPaginator.ts | 2 +- .../ListCostAllocationTagsPaginator.ts | 2 +- .../ListCostCategoryDefinitionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-cost-explorer/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-cost-optimization-hub/package.json | 12 +- .../src/CostOptimizationHub.ts | 4 +- .../src/CostOptimizationHubClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/GetPreferencesCommand.ts | 6 +- .../src/commands/GetRecommendationCommand.ts | 6 +- .../commands/ListEfficiencyMetricsCommand.ts | 6 +- .../commands/ListEnrollmentStatusesCommand.ts | 6 +- .../ListRecommendationSummariesCommand.ts | 6 +- .../commands/ListRecommendationsCommand.ts | 6 +- .../commands/UpdateEnrollmentStatusCommand.ts | 6 +- .../src/commands/UpdatePreferencesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../CostOptimizationHubServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListEfficiencyMetricsPaginator.ts | 2 +- .../ListEnrollmentStatusesPaginator.ts | 2 +- .../ListRecommendationSummariesPaginator.ts | 2 +- .../ListRecommendationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-customer-profiles/package.json | 12 +- .../src/CustomerProfiles.ts | 4 +- .../src/CustomerProfilesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddProfileKeyCommand.ts | 10 +- ...GetCalculatedAttributeForProfileCommand.ts | 10 +- .../src/commands/BatchGetProfileCommand.ts | 10 +- ...ateCalculatedAttributeDefinitionCommand.ts | 10 +- .../src/commands/CreateDomainCommand.ts | 10 +- .../src/commands/CreateDomainLayoutCommand.ts | 10 +- .../src/commands/CreateEventStreamCommand.ts | 10 +- .../src/commands/CreateEventTriggerCommand.ts | 10 +- .../CreateIntegrationWorkflowCommand.ts | 10 +- .../src/commands/CreateProfileCommand.ts | 10 +- .../src/commands/CreateRecommenderCommand.ts | 10 +- .../CreateSegmentDefinitionCommand.ts | 10 +- .../commands/CreateSegmentEstimateCommand.ts | 10 +- .../commands/CreateSegmentSnapshotCommand.ts | 10 +- .../src/commands/CreateUploadJobCommand.ts | 10 +- ...eteCalculatedAttributeDefinitionCommand.ts | 10 +- .../src/commands/DeleteDomainCommand.ts | 10 +- .../src/commands/DeleteDomainLayoutCommand.ts | 10 +- .../commands/DeleteDomainObjectTypeCommand.ts | 10 +- .../src/commands/DeleteEventStreamCommand.ts | 10 +- .../src/commands/DeleteEventTriggerCommand.ts | 10 +- .../src/commands/DeleteIntegrationCommand.ts | 10 +- .../src/commands/DeleteProfileCommand.ts | 10 +- .../src/commands/DeleteProfileKeyCommand.ts | 10 +- .../commands/DeleteProfileObjectCommand.ts | 10 +- .../DeleteProfileObjectTypeCommand.ts | 10 +- .../src/commands/DeleteRecommenderCommand.ts | 10 +- .../DeleteSegmentDefinitionCommand.ts | 10 +- .../src/commands/DeleteWorkflowCommand.ts | 10 +- .../DetectProfileObjectTypeCommand.ts | 10 +- .../commands/GetAutoMergingPreviewCommand.ts | 10 +- ...GetCalculatedAttributeDefinitionCommand.ts | 13 +- ...GetCalculatedAttributeForProfileCommand.ts | 13 +- .../src/commands/GetDomainCommand.ts | 10 +- .../src/commands/GetDomainLayoutCommand.ts | 10 +- .../commands/GetDomainObjectTypeCommand.ts | 10 +- .../src/commands/GetEventStreamCommand.ts | 10 +- .../src/commands/GetEventTriggerCommand.ts | 10 +- .../GetIdentityResolutionJobCommand.ts | 10 +- .../src/commands/GetIntegrationCommand.ts | 10 +- .../src/commands/GetMatchesCommand.ts | 10 +- ...GetObjectTypeAttributeStatisticsCommand.ts | 13 +- .../GetProfileHistoryRecordCommand.ts | 10 +- .../commands/GetProfileObjectTypeCommand.ts | 10 +- .../GetProfileObjectTypeTemplateCommand.ts | 10 +- .../GetProfileRecommendationsCommand.ts | 10 +- .../src/commands/GetRecommenderCommand.ts | 10 +- .../commands/GetSegmentDefinitionCommand.ts | 10 +- .../src/commands/GetSegmentEstimateCommand.ts | 10 +- .../commands/GetSegmentMembershipCommand.ts | 10 +- .../src/commands/GetSegmentSnapshotCommand.ts | 10 +- .../src/commands/GetSimilarProfilesCommand.ts | 10 +- .../src/commands/GetUploadJobCommand.ts | 10 +- .../src/commands/GetUploadJobPathCommand.ts | 10 +- .../src/commands/GetWorkflowCommand.ts | 10 +- .../src/commands/GetWorkflowStepsCommand.ts | 10 +- .../ListAccountIntegrationsCommand.ts | 10 +- ...stCalculatedAttributeDefinitionsCommand.ts | 10 +- ...stCalculatedAttributesForProfileCommand.ts | 10 +- .../src/commands/ListDomainLayoutsCommand.ts | 10 +- .../commands/ListDomainObjectTypesCommand.ts | 10 +- .../src/commands/ListDomainsCommand.ts | 10 +- .../src/commands/ListEventStreamsCommand.ts | 10 +- .../src/commands/ListEventTriggersCommand.ts | 10 +- .../ListIdentityResolutionJobsCommand.ts | 10 +- .../src/commands/ListIntegrationsCommand.ts | 10 +- .../ListObjectTypeAttributeValuesCommand.ts | 10 +- .../ListObjectTypeAttributesCommand.ts | 10 +- .../ListProfileAttributeValuesCommand.ts | 10 +- .../ListProfileHistoryRecordsCommand.ts | 10 +- .../ListProfileObjectTypeTemplatesCommand.ts | 10 +- .../commands/ListProfileObjectTypesCommand.ts | 10 +- .../src/commands/ListProfileObjectsCommand.ts | 10 +- .../commands/ListRecommenderRecipesCommand.ts | 10 +- .../src/commands/ListRecommendersCommand.ts | 10 +- .../commands/ListRuleBasedMatchesCommand.ts | 10 +- .../commands/ListSegmentDefinitionsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/ListUploadJobsCommand.ts | 10 +- .../src/commands/ListWorkflowsCommand.ts | 10 +- .../src/commands/MergeProfilesCommand.ts | 10 +- .../commands/PutDomainObjectTypeCommand.ts | 10 +- .../src/commands/PutIntegrationCommand.ts | 10 +- .../src/commands/PutProfileObjectCommand.ts | 10 +- .../commands/PutProfileObjectTypeCommand.ts | 10 +- .../src/commands/SearchProfilesCommand.ts | 10 +- .../src/commands/StartRecommenderCommand.ts | 10 +- .../src/commands/StartUploadJobCommand.ts | 10 +- .../src/commands/StopRecommenderCommand.ts | 12 +- .../src/commands/StopUploadJobCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- ...ateCalculatedAttributeDefinitionCommand.ts | 10 +- .../src/commands/UpdateDomainCommand.ts | 10 +- .../src/commands/UpdateDomainLayoutCommand.ts | 10 +- .../src/commands/UpdateEventTriggerCommand.ts | 10 +- .../src/commands/UpdateProfileCommand.ts | 10 +- .../src/commands/UpdateRecommenderCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../CustomerProfilesServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../pagination/GetSimilarProfilesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListDomainLayoutsPaginator.ts | 2 +- .../ListDomainObjectTypesPaginator.ts | 2 +- .../pagination/ListEventStreamsPaginator.ts | 2 +- .../pagination/ListEventTriggersPaginator.ts | 2 +- .../ListObjectTypeAttributesPaginator.ts | 2 +- .../ListRecommenderRecipesPaginator.ts | 2 +- .../pagination/ListRecommendersPaginator.ts | 2 +- .../ListRuleBasedMatchesPaginator.ts | 2 +- .../ListSegmentDefinitionsPaginator.ts | 2 +- .../src/pagination/ListUploadJobsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-data-pipeline/package.json | 12 +- .../client-data-pipeline/src/DataPipeline.ts | 4 +- .../src/DataPipelineClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/ActivatePipelineCommand.ts | 6 +- .../src/commands/AddTagsCommand.ts | 6 +- .../src/commands/CreatePipelineCommand.ts | 6 +- .../src/commands/DeactivatePipelineCommand.ts | 6 +- .../src/commands/DeletePipelineCommand.ts | 6 +- .../src/commands/DescribeObjectsCommand.ts | 6 +- .../src/commands/DescribePipelinesCommand.ts | 6 +- .../src/commands/EvaluateExpressionCommand.ts | 6 +- .../commands/GetPipelineDefinitionCommand.ts | 6 +- .../src/commands/ListPipelinesCommand.ts | 6 +- .../src/commands/PollForTaskCommand.ts | 6 +- .../commands/PutPipelineDefinitionCommand.ts | 6 +- .../src/commands/QueryObjectsCommand.ts | 6 +- .../src/commands/RemoveTagsCommand.ts | 6 +- .../src/commands/ReportTaskProgressCommand.ts | 6 +- .../ReportTaskRunnerHeartbeatCommand.ts | 6 +- .../src/commands/SetStatusCommand.ts | 6 +- .../src/commands/SetTaskStatusCommand.ts | 6 +- .../ValidatePipelineDefinitionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/DataPipelineServiceException.ts | 2 +- .../client-data-pipeline/src/models/errors.ts | 2 +- .../pagination/DescribeObjectsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListPipelinesPaginator.ts | 2 +- .../src/pagination/QueryObjectsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-data-pipeline/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/DatabaseMigrationService.ts | 4 +- .../src/DatabaseMigrationServiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddTagsToResourceCommand.ts | 6 +- .../ApplyPendingMaintenanceActionCommand.ts | 6 +- .../BatchStartRecommendationsCommand.ts | 6 +- .../CancelMetadataModelConversionCommand.ts | 6 +- .../CancelMetadataModelCreationCommand.ts | 6 +- ...ncelReplicationTaskAssessmentRunCommand.ts | 6 +- .../commands/CreateDataMigrationCommand.ts | 6 +- .../src/commands/CreateDataProviderCommand.ts | 6 +- .../src/commands/CreateEndpointCommand.ts | 6 +- .../CreateEventSubscriptionCommand.ts | 6 +- .../CreateFleetAdvisorCollectorCommand.ts | 6 +- .../commands/CreateInstanceProfileCommand.ts | 6 +- .../commands/CreateMigrationProjectCommand.ts | 6 +- .../CreateReplicationConfigCommand.ts | 6 +- .../CreateReplicationInstanceCommand.ts | 6 +- .../CreateReplicationSubnetGroupCommand.ts | 6 +- .../commands/CreateReplicationTaskCommand.ts | 6 +- .../src/commands/DeleteCertificateCommand.ts | 6 +- .../src/commands/DeleteConnectionCommand.ts | 6 +- .../commands/DeleteDataMigrationCommand.ts | 6 +- .../src/commands/DeleteDataProviderCommand.ts | 6 +- .../src/commands/DeleteEndpointCommand.ts | 6 +- .../DeleteEventSubscriptionCommand.ts | 6 +- .../DeleteFleetAdvisorCollectorCommand.ts | 6 +- .../DeleteFleetAdvisorDatabasesCommand.ts | 6 +- .../commands/DeleteInstanceProfileCommand.ts | 6 +- .../commands/DeleteMigrationProjectCommand.ts | 6 +- .../DeleteReplicationConfigCommand.ts | 6 +- .../DeleteReplicationInstanceCommand.ts | 6 +- .../DeleteReplicationSubnetGroupCommand.ts | 6 +- ...leteReplicationTaskAssessmentRunCommand.ts | 6 +- .../commands/DeleteReplicationTaskCommand.ts | 6 +- .../DescribeAccountAttributesCommand.ts | 6 +- ...eApplicableIndividualAssessmentsCommand.ts | 6 +- .../commands/DescribeCertificatesCommand.ts | 6 +- .../commands/DescribeConnectionsCommand.ts | 6 +- .../DescribeConversionConfigurationCommand.ts | 9 +- .../commands/DescribeDataMigrationsCommand.ts | 6 +- .../commands/DescribeDataProvidersCommand.ts | 6 +- .../DescribeEndpointSettingsCommand.ts | 6 +- .../commands/DescribeEndpointTypesCommand.ts | 6 +- .../src/commands/DescribeEndpointsCommand.ts | 6 +- .../commands/DescribeEngineVersionsCommand.ts | 6 +- .../DescribeEventCategoriesCommand.ts | 6 +- .../DescribeEventSubscriptionsCommand.ts | 6 +- .../src/commands/DescribeEventsCommand.ts | 6 +- ...escribeExtensionPackAssociationsCommand.ts | 6 +- .../DescribeFleetAdvisorCollectorsCommand.ts | 6 +- .../DescribeFleetAdvisorDatabasesCommand.ts | 6 +- .../DescribeFleetAdvisorLsaAnalysisCommand.ts | 9 +- ...eFleetAdvisorSchemaObjectSummaryCommand.ts | 6 +- .../DescribeFleetAdvisorSchemasCommand.ts | 6 +- .../DescribeInstanceProfilesCommand.ts | 6 +- ...DescribeMetadataModelAssessmentsCommand.ts | 9 +- .../DescribeMetadataModelChildrenCommand.ts | 6 +- .../commands/DescribeMetadataModelCommand.ts | 6 +- ...DescribeMetadataModelConversionsCommand.ts | 9 +- .../DescribeMetadataModelCreationsCommand.ts | 6 +- ...ribeMetadataModelExportsAsScriptCommand.ts | 6 +- ...ribeMetadataModelExportsToTargetCommand.ts | 6 +- .../DescribeMetadataModelImportsCommand.ts | 6 +- .../DescribeMigrationProjectsCommand.ts | 6 +- ...ibeOrderableReplicationInstancesCommand.ts | 6 +- ...escribePendingMaintenanceActionsCommand.ts | 6 +- ...escribeRecommendationLimitationsCommand.ts | 6 +- .../DescribeRecommendationsCommand.ts | 6 +- .../DescribeRefreshSchemasStatusCommand.ts | 6 +- .../DescribeReplicationConfigsCommand.ts | 6 +- ...cribeReplicationInstanceTaskLogsCommand.ts | 6 +- .../DescribeReplicationInstancesCommand.ts | 6 +- .../DescribeReplicationSubnetGroupsCommand.ts | 9 +- ...scribeReplicationTableStatisticsCommand.ts | 6 +- ...ReplicationTaskAssessmentResultsCommand.ts | 6 +- ...ibeReplicationTaskAssessmentRunsCommand.ts | 6 +- ...icationTaskIndividualAssessmentsCommand.ts | 6 +- .../DescribeReplicationTasksCommand.ts | 6 +- .../commands/DescribeReplicationsCommand.ts | 6 +- .../src/commands/DescribeSchemasCommand.ts | 6 +- .../DescribeTableStatisticsCommand.ts | 6 +- .../ExportMetadataModelAssessmentCommand.ts | 6 +- .../GetTargetSelectionRulesCommand.ts | 6 +- .../src/commands/ImportCertificateCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ModifyConversionConfigurationCommand.ts | 6 +- .../commands/ModifyDataMigrationCommand.ts | 6 +- .../src/commands/ModifyDataProviderCommand.ts | 6 +- .../src/commands/ModifyEndpointCommand.ts | 6 +- .../ModifyEventSubscriptionCommand.ts | 6 +- .../commands/ModifyInstanceProfileCommand.ts | 6 +- .../commands/ModifyMigrationProjectCommand.ts | 6 +- .../ModifyReplicationConfigCommand.ts | 6 +- .../ModifyReplicationInstanceCommand.ts | 6 +- .../ModifyReplicationSubnetGroupCommand.ts | 6 +- .../commands/ModifyReplicationTaskCommand.ts | 6 +- .../commands/MoveReplicationTaskCommand.ts | 6 +- .../RebootReplicationInstanceCommand.ts | 8 +- .../src/commands/RefreshSchemasCommand.ts | 6 +- .../ReloadReplicationTablesCommand.ts | 6 +- .../src/commands/ReloadTablesCommand.ts | 6 +- .../commands/RemoveTagsFromResourceCommand.ts | 6 +- .../RunFleetAdvisorLsaAnalysisCommand.ts | 6 +- .../src/commands/StartDataMigrationCommand.ts | 6 +- .../StartExtensionPackAssociationCommand.ts | 6 +- .../StartMetadataModelAssessmentCommand.ts | 6 +- .../StartMetadataModelConversionCommand.ts | 6 +- .../StartMetadataModelCreationCommand.ts | 6 +- ...StartMetadataModelExportAsScriptCommand.ts | 9 +- ...StartMetadataModelExportToTargetCommand.ts | 9 +- .../StartMetadataModelImportCommand.ts | 6 +- .../commands/StartRecommendationsCommand.ts | 6 +- .../src/commands/StartReplicationCommand.ts | 6 +- .../StartReplicationTaskAssessmentCommand.ts | 6 +- ...tartReplicationTaskAssessmentRunCommand.ts | 6 +- .../commands/StartReplicationTaskCommand.ts | 6 +- .../src/commands/StopDataMigrationCommand.ts | 6 +- .../src/commands/StopReplicationCommand.ts | 6 +- .../commands/StopReplicationTaskCommand.ts | 6 +- .../src/commands/TestConnectionCommand.ts | 6 +- ...UpdateSubscriptionsToEventBridgeCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...atabaseMigrationServiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- ...pplicableIndividualAssessmentsPaginator.ts | 2 +- .../DescribeCertificatesPaginator.ts | 2 +- .../DescribeConnectionsPaginator.ts | 2 +- .../DescribeDataMigrationsPaginator.ts | 2 +- .../DescribeDataProvidersPaginator.ts | 2 +- .../DescribeEndpointSettingsPaginator.ts | 2 +- .../DescribeEndpointTypesPaginator.ts | 2 +- .../pagination/DescribeEndpointsPaginator.ts | 2 +- .../DescribeEngineVersionsPaginator.ts | 2 +- .../DescribeEventSubscriptionsPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- ...cribeExtensionPackAssociationsPaginator.ts | 2 +- ...DescribeFleetAdvisorCollectorsPaginator.ts | 2 +- .../DescribeFleetAdvisorDatabasesPaginator.ts | 2 +- ...escribeFleetAdvisorLsaAnalysisPaginator.ts | 2 +- ...leetAdvisorSchemaObjectSummaryPaginator.ts | 2 +- .../DescribeFleetAdvisorSchemasPaginator.ts | 2 +- .../DescribeInstanceProfilesPaginator.ts | 2 +- ...scribeMetadataModelAssessmentsPaginator.ts | 2 +- .../DescribeMetadataModelChildrenPaginator.ts | 2 +- ...scribeMetadataModelConversionsPaginator.ts | 2 +- ...DescribeMetadataModelCreationsPaginator.ts | 2 +- ...beMetadataModelExportsAsScriptPaginator.ts | 2 +- ...beMetadataModelExportsToTargetPaginator.ts | 2 +- .../DescribeMetadataModelImportsPaginator.ts | 2 +- .../DescribeMigrationProjectsPaginator.ts | 2 +- ...eOrderableReplicationInstancesPaginator.ts | 2 +- ...cribePendingMaintenanceActionsPaginator.ts | 2 +- ...cribeRecommendationLimitationsPaginator.ts | 2 +- .../DescribeRecommendationsPaginator.ts | 2 +- .../DescribeReplicationConfigsPaginator.ts | 2 +- ...ibeReplicationInstanceTaskLogsPaginator.ts | 2 +- .../DescribeReplicationInstancesPaginator.ts | 2 +- ...escribeReplicationSubnetGroupsPaginator.ts | 2 +- ...ribeReplicationTableStatisticsPaginator.ts | 2 +- ...plicationTaskAssessmentResultsPaginator.ts | 2 +- ...eReplicationTaskAssessmentRunsPaginator.ts | 2 +- ...ationTaskIndividualAssessmentsPaginator.ts | 2 +- .../DescribeReplicationTasksPaginator.ts | 2 +- .../DescribeReplicationsPaginator.ts | 2 +- .../pagination/DescribeSchemasPaginator.ts | 2 +- .../DescribeTableStatisticsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-databrew/package.json | 12 +- clients/client-databrew/src/DataBrew.ts | 4 +- clients/client-databrew/src/DataBrewClient.ts | 62 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchDeleteRecipeVersionCommand.ts | 6 +- .../src/commands/CreateDatasetCommand.ts | 6 +- .../src/commands/CreateProfileJobCommand.ts | 6 +- .../src/commands/CreateProjectCommand.ts | 6 +- .../src/commands/CreateRecipeCommand.ts | 6 +- .../src/commands/CreateRecipeJobCommand.ts | 6 +- .../src/commands/CreateRulesetCommand.ts | 6 +- .../src/commands/CreateScheduleCommand.ts | 6 +- .../src/commands/DeleteDatasetCommand.ts | 6 +- .../src/commands/DeleteJobCommand.ts | 6 +- .../src/commands/DeleteProjectCommand.ts | 6 +- .../commands/DeleteRecipeVersionCommand.ts | 6 +- .../src/commands/DeleteRulesetCommand.ts | 6 +- .../src/commands/DeleteScheduleCommand.ts | 6 +- .../src/commands/DescribeDatasetCommand.ts | 6 +- .../src/commands/DescribeJobCommand.ts | 6 +- .../src/commands/DescribeJobRunCommand.ts | 6 +- .../src/commands/DescribeProjectCommand.ts | 6 +- .../src/commands/DescribeRecipeCommand.ts | 6 +- .../src/commands/DescribeRulesetCommand.ts | 6 +- .../src/commands/DescribeScheduleCommand.ts | 6 +- .../src/commands/ListDatasetsCommand.ts | 6 +- .../src/commands/ListJobRunsCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../src/commands/ListProjectsCommand.ts | 6 +- .../src/commands/ListRecipeVersionsCommand.ts | 6 +- .../src/commands/ListRecipesCommand.ts | 6 +- .../src/commands/ListRulesetsCommand.ts | 6 +- .../src/commands/ListSchedulesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PublishRecipeCommand.ts | 6 +- .../SendProjectSessionActionCommand.ts | 6 +- .../src/commands/StartJobRunCommand.ts | 6 +- .../commands/StartProjectSessionCommand.ts | 6 +- .../src/commands/StopJobRunCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDatasetCommand.ts | 6 +- .../src/commands/UpdateProfileJobCommand.ts | 6 +- .../src/commands/UpdateProjectCommand.ts | 6 +- .../src/commands/UpdateRecipeCommand.ts | 6 +- .../src/commands/UpdateRecipeJobCommand.ts | 6 +- .../src/commands/UpdateRulesetCommand.ts | 6 +- .../src/commands/UpdateScheduleCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/DataBrewServiceException.ts | 2 +- clients/client-databrew/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDatasetsPaginator.ts | 2 +- .../src/pagination/ListJobRunsPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../src/pagination/ListProjectsPaginator.ts | 2 +- .../pagination/ListRecipeVersionsPaginator.ts | 2 +- .../src/pagination/ListRecipesPaginator.ts | 2 +- .../src/pagination/ListRulesetsPaginator.ts | 2 +- .../src/pagination/ListSchedulesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-databrew/src/runtimeConfig.ts | 8 +- .../client-databrew/src/runtimeExtensions.ts | 2 +- .../client-databrew/src/schemas/schemas_0.ts | 2 +- clients/client-dataexchange/package.json | 12 +- .../client-dataexchange/src/DataExchange.ts | 4 +- .../src/DataExchangeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptDataGrantCommand.ts | 6 +- .../src/commands/CancelJobCommand.ts | 6 +- .../src/commands/CreateDataGrantCommand.ts | 6 +- .../src/commands/CreateDataSetCommand.ts | 6 +- .../src/commands/CreateEventActionCommand.ts | 6 +- .../src/commands/CreateJobCommand.ts | 6 +- .../src/commands/CreateRevisionCommand.ts | 6 +- .../src/commands/DeleteAssetCommand.ts | 6 +- .../src/commands/DeleteDataGrantCommand.ts | 6 +- .../src/commands/DeleteDataSetCommand.ts | 6 +- .../src/commands/DeleteEventActionCommand.ts | 6 +- .../src/commands/DeleteRevisionCommand.ts | 6 +- .../src/commands/GetAssetCommand.ts | 6 +- .../src/commands/GetDataGrantCommand.ts | 6 +- .../src/commands/GetDataSetCommand.ts | 6 +- .../src/commands/GetEventActionCommand.ts | 6 +- .../src/commands/GetJobCommand.ts | 6 +- .../commands/GetReceivedDataGrantCommand.ts | 6 +- .../src/commands/GetRevisionCommand.ts | 6 +- .../src/commands/ListDataGrantsCommand.ts | 6 +- .../commands/ListDataSetRevisionsCommand.ts | 6 +- .../src/commands/ListDataSetsCommand.ts | 6 +- .../src/commands/ListEventActionsCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../commands/ListReceivedDataGrantsCommand.ts | 6 +- .../src/commands/ListRevisionAssetsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RevokeRevisionCommand.ts | 6 +- .../src/commands/SendApiAssetCommand.ts | 6 +- .../SendDataSetNotificationCommand.ts | 6 +- .../src/commands/StartJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAssetCommand.ts | 6 +- .../src/commands/UpdateDataSetCommand.ts | 6 +- .../src/commands/UpdateEventActionCommand.ts | 6 +- .../src/commands/UpdateRevisionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/DataExchangeServiceException.ts | 2 +- .../client-dataexchange/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDataGrantsPaginator.ts | 2 +- .../ListDataSetRevisionsPaginator.ts | 2 +- .../src/pagination/ListDataSetsPaginator.ts | 2 +- .../pagination/ListEventActionsPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../ListReceivedDataGrantsPaginator.ts | 2 +- .../pagination/ListRevisionAssetsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-dataexchange/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-datasync/package.json | 12 +- clients/client-datasync/src/DataSync.ts | 4 +- clients/client-datasync/src/DataSyncClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CancelTaskExecutionCommand.ts | 6 +- .../src/commands/CreateAgentCommand.ts | 6 +- .../CreateLocationAzureBlobCommand.ts | 6 +- .../src/commands/CreateLocationEfsCommand.ts | 6 +- .../CreateLocationFsxLustreCommand.ts | 6 +- .../commands/CreateLocationFsxOntapCommand.ts | 6 +- .../CreateLocationFsxOpenZfsCommand.ts | 6 +- .../CreateLocationFsxWindowsCommand.ts | 6 +- .../src/commands/CreateLocationHdfsCommand.ts | 6 +- .../src/commands/CreateLocationNfsCommand.ts | 6 +- .../CreateLocationObjectStorageCommand.ts | 6 +- .../src/commands/CreateLocationS3Command.ts | 6 +- .../src/commands/CreateLocationSmbCommand.ts | 6 +- .../src/commands/CreateTaskCommand.ts | 6 +- .../src/commands/DeleteAgentCommand.ts | 6 +- .../src/commands/DeleteLocationCommand.ts | 6 +- .../src/commands/DeleteTaskCommand.ts | 6 +- .../src/commands/DescribeAgentCommand.ts | 6 +- .../DescribeLocationAzureBlobCommand.ts | 6 +- .../commands/DescribeLocationEfsCommand.ts | 6 +- .../DescribeLocationFsxLustreCommand.ts | 6 +- .../DescribeLocationFsxOntapCommand.ts | 6 +- .../DescribeLocationFsxOpenZfsCommand.ts | 6 +- .../DescribeLocationFsxWindowsCommand.ts | 6 +- .../commands/DescribeLocationHdfsCommand.ts | 6 +- .../commands/DescribeLocationNfsCommand.ts | 6 +- .../DescribeLocationObjectStorageCommand.ts | 6 +- .../src/commands/DescribeLocationS3Command.ts | 6 +- .../commands/DescribeLocationSmbCommand.ts | 6 +- .../src/commands/DescribeTaskCommand.ts | 6 +- .../commands/DescribeTaskExecutionCommand.ts | 6 +- .../src/commands/ListAgentsCommand.ts | 6 +- .../src/commands/ListLocationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTaskExecutionsCommand.ts | 6 +- .../src/commands/ListTasksCommand.ts | 6 +- .../src/commands/StartTaskExecutionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAgentCommand.ts | 6 +- .../UpdateLocationAzureBlobCommand.ts | 6 +- .../src/commands/UpdateLocationEfsCommand.ts | 6 +- .../UpdateLocationFsxLustreCommand.ts | 6 +- .../commands/UpdateLocationFsxOntapCommand.ts | 6 +- .../UpdateLocationFsxOpenZfsCommand.ts | 6 +- .../UpdateLocationFsxWindowsCommand.ts | 6 +- .../src/commands/UpdateLocationHdfsCommand.ts | 6 +- .../src/commands/UpdateLocationNfsCommand.ts | 6 +- .../UpdateLocationObjectStorageCommand.ts | 6 +- .../src/commands/UpdateLocationS3Command.ts | 6 +- .../src/commands/UpdateLocationSmbCommand.ts | 6 +- .../src/commands/UpdateTaskCommand.ts | 6 +- .../commands/UpdateTaskExecutionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/DataSyncServiceException.ts | 2 +- clients/client-datasync/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAgentsPaginator.ts | 2 +- .../src/pagination/ListLocationsPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../pagination/ListTaskExecutionsPaginator.ts | 2 +- .../src/pagination/ListTasksPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-datasync/src/runtimeConfig.ts | 8 +- .../client-datasync/src/runtimeExtensions.ts | 2 +- .../client-datasync/src/schemas/schemas_0.ts | 2 +- clients/client-datazone/package.json | 12 +- clients/client-datazone/src/DataZone.ts | 4 +- clients/client-datazone/src/DataZoneClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptPredictionsCommand.ts | 6 +- .../AcceptSubscriptionRequestCommand.ts | 6 +- .../src/commands/AddEntityOwnerCommand.ts | 6 +- .../src/commands/AddPolicyGrantCommand.ts | 6 +- .../AssociateEnvironmentRoleCommand.ts | 6 +- .../commands/AssociateGovernedTermsCommand.ts | 6 +- .../BatchGetAttributesMetadataCommand.ts | 6 +- .../BatchPutAttributesMetadataCommand.ts | 6 +- .../CancelMetadataGenerationRunCommand.ts | 6 +- .../src/commands/CancelSubscriptionCommand.ts | 6 +- .../src/commands/CreateAccountPoolCommand.ts | 6 +- .../src/commands/CreateAssetCommand.ts | 6 +- .../src/commands/CreateAssetFilterCommand.ts | 6 +- .../commands/CreateAssetRevisionCommand.ts | 6 +- .../src/commands/CreateAssetTypeCommand.ts | 6 +- .../src/commands/CreateConnectionCommand.ts | 6 +- .../src/commands/CreateDataProductCommand.ts | 6 +- .../CreateDataProductRevisionCommand.ts | 6 +- .../src/commands/CreateDataSourceCommand.ts | 6 +- .../src/commands/CreateDomainCommand.ts | 6 +- .../src/commands/CreateDomainUnitCommand.ts | 6 +- .../CreateEnvironmentActionCommand.ts | 6 +- .../CreateEnvironmentBlueprintCommand.ts | 6 +- .../src/commands/CreateEnvironmentCommand.ts | 6 +- .../CreateEnvironmentProfileCommand.ts | 6 +- .../src/commands/CreateFormTypeCommand.ts | 6 +- .../src/commands/CreateGlossaryCommand.ts | 6 +- .../src/commands/CreateGlossaryTermCommand.ts | 6 +- .../src/commands/CreateGroupProfileCommand.ts | 6 +- .../commands/CreateListingChangeSetCommand.ts | 6 +- .../src/commands/CreateProjectCommand.ts | 6 +- .../CreateProjectMembershipCommand.ts | 6 +- .../commands/CreateProjectProfileCommand.ts | 6 +- .../src/commands/CreateRuleCommand.ts | 6 +- .../CreateSubscriptionGrantCommand.ts | 6 +- .../CreateSubscriptionRequestCommand.ts | 6 +- .../CreateSubscriptionTargetCommand.ts | 6 +- .../src/commands/CreateUserProfileCommand.ts | 6 +- .../src/commands/DeleteAccountPoolCommand.ts | 6 +- .../src/commands/DeleteAssetCommand.ts | 6 +- .../src/commands/DeleteAssetFilterCommand.ts | 6 +- .../src/commands/DeleteAssetTypeCommand.ts | 6 +- .../src/commands/DeleteConnectionCommand.ts | 6 +- .../src/commands/DeleteDataProductCommand.ts | 6 +- .../src/commands/DeleteDataSourceCommand.ts | 6 +- .../src/commands/DeleteDomainCommand.ts | 6 +- .../src/commands/DeleteDomainUnitCommand.ts | 6 +- .../DeleteEnvironmentActionCommand.ts | 6 +- .../DeleteEnvironmentBlueprintCommand.ts | 6 +- ...nvironmentBlueprintConfigurationCommand.ts | 6 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../DeleteEnvironmentProfileCommand.ts | 6 +- .../src/commands/DeleteFormTypeCommand.ts | 6 +- .../src/commands/DeleteGlossaryCommand.ts | 6 +- .../src/commands/DeleteGlossaryTermCommand.ts | 6 +- .../src/commands/DeleteListingCommand.ts | 6 +- .../src/commands/DeleteProjectCommand.ts | 6 +- .../DeleteProjectMembershipCommand.ts | 6 +- .../commands/DeleteProjectProfileCommand.ts | 6 +- .../src/commands/DeleteRuleCommand.ts | 6 +- .../DeleteSubscriptionGrantCommand.ts | 6 +- .../DeleteSubscriptionRequestCommand.ts | 6 +- .../DeleteSubscriptionTargetCommand.ts | 6 +- .../DeleteTimeSeriesDataPointsCommand.ts | 6 +- .../DisassociateEnvironmentRoleCommand.ts | 6 +- .../DisassociateGovernedTermsCommand.ts | 6 +- .../src/commands/GetAccountPoolCommand.ts | 6 +- .../src/commands/GetAssetCommand.ts | 6 +- .../src/commands/GetAssetFilterCommand.ts | 8 +- .../src/commands/GetAssetTypeCommand.ts | 6 +- .../src/commands/GetConnectionCommand.ts | 6 +- .../src/commands/GetDataProductCommand.ts | 6 +- .../src/commands/GetDataSourceCommand.ts | 6 +- .../src/commands/GetDataSourceRunCommand.ts | 6 +- .../src/commands/GetDomainCommand.ts | 6 +- .../src/commands/GetDomainUnitCommand.ts | 6 +- .../commands/GetEnvironmentActionCommand.ts | 6 +- .../GetEnvironmentBlueprintCommand.ts | 6 +- ...nvironmentBlueprintConfigurationCommand.ts | 6 +- .../src/commands/GetEnvironmentCommand.ts | 6 +- .../GetEnvironmentCredentialsCommand.ts | 6 +- .../commands/GetEnvironmentProfileCommand.ts | 6 +- .../src/commands/GetFormTypeCommand.ts | 6 +- .../src/commands/GetGlossaryCommand.ts | 6 +- .../src/commands/GetGlossaryTermCommand.ts | 6 +- .../src/commands/GetGroupProfileCommand.ts | 6 +- .../commands/GetIamPortalLoginUrlCommand.ts | 6 +- .../src/commands/GetJobRunCommand.ts | 6 +- .../src/commands/GetLineageEventCommand.ts | 6 +- .../src/commands/GetLineageNodeCommand.ts | 6 +- .../src/commands/GetListingCommand.ts | 6 +- .../GetMetadataGenerationRunCommand.ts | 6 +- .../src/commands/GetProjectCommand.ts | 6 +- .../src/commands/GetProjectProfileCommand.ts | 6 +- .../src/commands/GetRuleCommand.ts | 6 +- .../src/commands/GetSubscriptionCommand.ts | 6 +- .../commands/GetSubscriptionGrantCommand.ts | 6 +- .../GetSubscriptionRequestDetailsCommand.ts | 6 +- .../commands/GetSubscriptionTargetCommand.ts | 6 +- .../commands/GetTimeSeriesDataPointCommand.ts | 6 +- .../src/commands/GetUserProfileCommand.ts | 6 +- .../src/commands/ListAccountPoolsCommand.ts | 6 +- .../ListAccountsInAccountPoolCommand.ts | 6 +- .../src/commands/ListAssetFiltersCommand.ts | 6 +- .../src/commands/ListAssetRevisionsCommand.ts | 6 +- .../src/commands/ListConnectionsCommand.ts | 6 +- .../ListDataProductRevisionsCommand.ts | 6 +- .../ListDataSourceRunActivitiesCommand.ts | 6 +- .../src/commands/ListDataSourceRunsCommand.ts | 6 +- .../src/commands/ListDataSourcesCommand.ts | 6 +- .../ListDomainUnitsForParentCommand.ts | 6 +- .../src/commands/ListDomainsCommand.ts | 6 +- .../src/commands/ListEntityOwnersCommand.ts | 6 +- .../commands/ListEnvironmentActionsCommand.ts | 6 +- ...vironmentBlueprintConfigurationsCommand.ts | 6 +- .../ListEnvironmentBlueprintsCommand.ts | 6 +- .../ListEnvironmentProfilesCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../src/commands/ListJobRunsCommand.ts | 6 +- .../src/commands/ListLineageEventsCommand.ts | 6 +- .../commands/ListLineageNodeHistoryCommand.ts | 6 +- .../ListMetadataGenerationRunsCommand.ts | 6 +- .../src/commands/ListNotificationsCommand.ts | 6 +- .../src/commands/ListPolicyGrantsCommand.ts | 6 +- .../commands/ListProjectMembershipsCommand.ts | 6 +- .../commands/ListProjectProfilesCommand.ts | 6 +- .../src/commands/ListProjectsCommand.ts | 6 +- .../src/commands/ListRulesCommand.ts | 6 +- .../commands/ListSubscriptionGrantsCommand.ts | 6 +- .../ListSubscriptionRequestsCommand.ts | 6 +- .../ListSubscriptionTargetsCommand.ts | 6 +- .../src/commands/ListSubscriptionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListTimeSeriesDataPointsCommand.ts | 6 +- .../src/commands/PostLineageEventCommand.ts | 6 +- .../PostTimeSeriesDataPointsCommand.ts | 6 +- ...nvironmentBlueprintConfigurationCommand.ts | 6 +- .../src/commands/RejectPredictionsCommand.ts | 6 +- .../RejectSubscriptionRequestCommand.ts | 6 +- .../src/commands/RemoveEntityOwnerCommand.ts | 6 +- .../src/commands/RemovePolicyGrantCommand.ts | 6 +- .../src/commands/RevokeSubscriptionCommand.ts | 6 +- .../src/commands/SearchCommand.ts | 8 +- .../commands/SearchGroupProfilesCommand.ts | 6 +- .../src/commands/SearchListingsCommand.ts | 8 +- .../src/commands/SearchTypesCommand.ts | 8 +- .../src/commands/SearchUserProfilesCommand.ts | 6 +- .../src/commands/StartDataSourceRunCommand.ts | 6 +- .../StartMetadataGenerationRunCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAccountPoolCommand.ts | 6 +- .../src/commands/UpdateAssetFilterCommand.ts | 6 +- .../src/commands/UpdateConnectionCommand.ts | 6 +- .../src/commands/UpdateDataSourceCommand.ts | 6 +- .../src/commands/UpdateDomainCommand.ts | 6 +- .../src/commands/UpdateDomainUnitCommand.ts | 6 +- .../UpdateEnvironmentActionCommand.ts | 6 +- .../UpdateEnvironmentBlueprintCommand.ts | 6 +- .../src/commands/UpdateEnvironmentCommand.ts | 6 +- .../UpdateEnvironmentProfileCommand.ts | 6 +- .../src/commands/UpdateGlossaryCommand.ts | 6 +- .../src/commands/UpdateGlossaryTermCommand.ts | 6 +- .../src/commands/UpdateGroupProfileCommand.ts | 6 +- .../src/commands/UpdateProjectCommand.ts | 6 +- .../commands/UpdateProjectProfileCommand.ts | 6 +- .../UpdateRootDomainUnitOwnerCommand.ts | 6 +- .../src/commands/UpdateRuleCommand.ts | 6 +- .../UpdateSubscriptionGrantStatusCommand.ts | 6 +- .../UpdateSubscriptionRequestCommand.ts | 6 +- .../UpdateSubscriptionTargetCommand.ts | 6 +- .../src/commands/UpdateUserProfileCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/DataZoneServiceException.ts | 2 +- clients/client-datazone/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAccountPoolsPaginator.ts | 2 +- .../ListAccountsInAccountPoolPaginator.ts | 2 +- .../pagination/ListAssetFiltersPaginator.ts | 2 +- .../pagination/ListAssetRevisionsPaginator.ts | 2 +- .../pagination/ListConnectionsPaginator.ts | 2 +- .../ListDataProductRevisionsPaginator.ts | 2 +- .../ListDataSourceRunActivitiesPaginator.ts | 2 +- .../pagination/ListDataSourceRunsPaginator.ts | 2 +- .../pagination/ListDataSourcesPaginator.ts | 2 +- .../ListDomainUnitsForParentPaginator.ts | 2 +- .../src/pagination/ListDomainsPaginator.ts | 2 +- .../pagination/ListEntityOwnersPaginator.ts | 2 +- .../ListEnvironmentActionsPaginator.ts | 2 +- ...ronmentBlueprintConfigurationsPaginator.ts | 2 +- .../ListEnvironmentBlueprintsPaginator.ts | 2 +- .../ListEnvironmentProfilesPaginator.ts | 2 +- .../pagination/ListEnvironmentsPaginator.ts | 2 +- .../src/pagination/ListJobRunsPaginator.ts | 2 +- .../pagination/ListLineageEventsPaginator.ts | 2 +- .../ListLineageNodeHistoryPaginator.ts | 2 +- .../ListMetadataGenerationRunsPaginator.ts | 2 +- .../pagination/ListNotificationsPaginator.ts | 2 +- .../pagination/ListPolicyGrantsPaginator.ts | 2 +- .../ListProjectMembershipsPaginator.ts | 2 +- .../ListProjectProfilesPaginator.ts | 2 +- .../src/pagination/ListProjectsPaginator.ts | 2 +- .../src/pagination/ListRulesPaginator.ts | 2 +- .../ListSubscriptionGrantsPaginator.ts | 2 +- .../ListSubscriptionRequestsPaginator.ts | 2 +- .../ListSubscriptionTargetsPaginator.ts | 2 +- .../pagination/ListSubscriptionsPaginator.ts | 2 +- .../ListTimeSeriesDataPointsPaginator.ts | 2 +- .../SearchGroupProfilesPaginator.ts | 2 +- .../src/pagination/SearchListingsPaginator.ts | 2 +- .../src/pagination/SearchPaginator.ts | 2 +- .../src/pagination/SearchTypesPaginator.ts | 2 +- .../pagination/SearchUserProfilesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-datazone/src/runtimeConfig.ts | 8 +- .../client-datazone/src/runtimeExtensions.ts | 2 +- .../client-datazone/src/schemas/schemas_0.ts | 2 +- clients/client-dax/package.json | 12 +- clients/client-dax/src/DAX.ts | 4 +- clients/client-dax/src/DAXClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../commands/CreateParameterGroupCommand.ts | 6 +- .../src/commands/CreateSubnetGroupCommand.ts | 6 +- .../DecreaseReplicationFactorCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../commands/DeleteParameterGroupCommand.ts | 6 +- .../src/commands/DeleteSubnetGroupCommand.ts | 6 +- .../src/commands/DescribeClustersCommand.ts | 6 +- .../DescribeDefaultParametersCommand.ts | 6 +- .../src/commands/DescribeEventsCommand.ts | 6 +- .../DescribeParameterGroupsCommand.ts | 6 +- .../src/commands/DescribeParametersCommand.ts | 6 +- .../commands/DescribeSubnetGroupsCommand.ts | 6 +- .../IncreaseReplicationFactorCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../src/commands/RebootNodeCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../commands/UpdateParameterGroupCommand.ts | 6 +- .../src/commands/UpdateSubnetGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-dax/src/extensionConfiguration.ts | 8 +- .../src/models/DAXServiceException.ts | 2 +- clients/client-dax/src/models/errors.ts | 2 +- .../client-dax/src/runtimeConfig.browser.ts | 7 +- .../client-dax/src/runtimeConfig.native.ts | 2 +- .../client-dax/src/runtimeConfig.shared.ts | 4 +- clients/client-dax/src/runtimeConfig.ts | 8 +- clients/client-dax/src/runtimeExtensions.ts | 2 +- clients/client-dax/src/schemas/schemas_0.ts | 2 +- clients/client-deadline/package.json | 12 +- clients/client-deadline/src/Deadline.ts | 4 +- clients/client-deadline/src/DeadlineClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateMemberToFarmCommand.ts | 6 +- .../commands/AssociateMemberToFleetCommand.ts | 6 +- .../commands/AssociateMemberToJobCommand.ts | 6 +- .../commands/AssociateMemberToQueueCommand.ts | 6 +- .../commands/AssumeFleetRoleForReadCommand.ts | 6 +- .../AssumeFleetRoleForWorkerCommand.ts | 6 +- .../commands/AssumeQueueRoleForReadCommand.ts | 6 +- .../commands/AssumeQueueRoleForUserCommand.ts | 6 +- .../AssumeQueueRoleForWorkerCommand.ts | 6 +- .../src/commands/BatchGetJobEntityCommand.ts | 6 +- .../src/commands/CopyJobTemplateCommand.ts | 6 +- .../src/commands/CreateBudgetCommand.ts | 6 +- .../src/commands/CreateFarmCommand.ts | 6 +- .../src/commands/CreateFleetCommand.ts | 6 +- .../src/commands/CreateJobCommand.ts | 6 +- .../commands/CreateLicenseEndpointCommand.ts | 6 +- .../src/commands/CreateLimitCommand.ts | 6 +- .../src/commands/CreateMonitorCommand.ts | 6 +- .../src/commands/CreateQueueCommand.ts | 6 +- .../commands/CreateQueueEnvironmentCommand.ts | 6 +- .../CreateQueueFleetAssociationCommand.ts | 6 +- .../CreateQueueLimitAssociationCommand.ts | 6 +- .../commands/CreateStorageProfileCommand.ts | 6 +- .../src/commands/CreateWorkerCommand.ts | 6 +- .../src/commands/DeleteBudgetCommand.ts | 6 +- .../src/commands/DeleteFarmCommand.ts | 6 +- .../src/commands/DeleteFleetCommand.ts | 6 +- .../commands/DeleteLicenseEndpointCommand.ts | 6 +- .../src/commands/DeleteLimitCommand.ts | 6 +- .../commands/DeleteMeteredProductCommand.ts | 6 +- .../src/commands/DeleteMonitorCommand.ts | 6 +- .../src/commands/DeleteQueueCommand.ts | 6 +- .../commands/DeleteQueueEnvironmentCommand.ts | 6 +- .../DeleteQueueFleetAssociationCommand.ts | 6 +- .../DeleteQueueLimitAssociationCommand.ts | 6 +- .../commands/DeleteStorageProfileCommand.ts | 6 +- .../src/commands/DeleteWorkerCommand.ts | 6 +- .../DisassociateMemberFromFarmCommand.ts | 6 +- .../DisassociateMemberFromFleetCommand.ts | 6 +- .../DisassociateMemberFromJobCommand.ts | 6 +- .../DisassociateMemberFromQueueCommand.ts | 6 +- .../src/commands/GetBudgetCommand.ts | 6 +- .../src/commands/GetFarmCommand.ts | 6 +- .../src/commands/GetFleetCommand.ts | 6 +- .../src/commands/GetJobCommand.ts | 6 +- .../src/commands/GetLicenseEndpointCommand.ts | 6 +- .../src/commands/GetLimitCommand.ts | 6 +- .../src/commands/GetMonitorCommand.ts | 6 +- .../src/commands/GetQueueCommand.ts | 6 +- .../commands/GetQueueEnvironmentCommand.ts | 6 +- .../GetQueueFleetAssociationCommand.ts | 6 +- .../GetQueueLimitAssociationCommand.ts | 6 +- .../src/commands/GetSessionActionCommand.ts | 6 +- .../src/commands/GetSessionCommand.ts | 6 +- ...GetSessionsStatisticsAggregationCommand.ts | 9 +- .../src/commands/GetStepCommand.ts | 6 +- .../src/commands/GetStorageProfileCommand.ts | 6 +- .../GetStorageProfileForQueueCommand.ts | 6 +- .../src/commands/GetTaskCommand.ts | 6 +- .../src/commands/GetWorkerCommand.ts | 6 +- .../ListAvailableMeteredProductsCommand.ts | 6 +- .../src/commands/ListBudgetsCommand.ts | 6 +- .../src/commands/ListFarmMembersCommand.ts | 6 +- .../src/commands/ListFarmsCommand.ts | 6 +- .../src/commands/ListFleetMembersCommand.ts | 6 +- .../src/commands/ListFleetsCommand.ts | 6 +- .../src/commands/ListJobMembersCommand.ts | 6 +- .../ListJobParameterDefinitionsCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../commands/ListLicenseEndpointsCommand.ts | 6 +- .../src/commands/ListLimitsCommand.ts | 6 +- .../commands/ListMeteredProductsCommand.ts | 8 +- .../src/commands/ListMonitorsCommand.ts | 6 +- .../commands/ListQueueEnvironmentsCommand.ts | 6 +- .../ListQueueFleetAssociationsCommand.ts | 6 +- .../ListQueueLimitAssociationsCommand.ts | 6 +- .../src/commands/ListQueueMembersCommand.ts | 6 +- .../src/commands/ListQueuesCommand.ts | 6 +- .../src/commands/ListSessionActionsCommand.ts | 6 +- .../src/commands/ListSessionsCommand.ts | 6 +- .../commands/ListSessionsForWorkerCommand.ts | 6 +- .../src/commands/ListStepConsumersCommand.ts | 6 +- .../commands/ListStepDependenciesCommand.ts | 6 +- .../src/commands/ListStepsCommand.ts | 6 +- .../commands/ListStorageProfilesCommand.ts | 6 +- .../ListStorageProfilesForQueueCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTasksCommand.ts | 6 +- .../src/commands/ListWorkersCommand.ts | 6 +- .../src/commands/PutMeteredProductCommand.ts | 6 +- .../src/commands/SearchJobsCommand.ts | 6 +- .../src/commands/SearchStepsCommand.ts | 6 +- .../src/commands/SearchTasksCommand.ts | 6 +- .../src/commands/SearchWorkersCommand.ts | 6 +- ...artSessionsStatisticsAggregationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBudgetCommand.ts | 6 +- .../src/commands/UpdateFarmCommand.ts | 6 +- .../src/commands/UpdateFleetCommand.ts | 6 +- .../src/commands/UpdateJobCommand.ts | 6 +- .../src/commands/UpdateLimitCommand.ts | 6 +- .../src/commands/UpdateMonitorCommand.ts | 6 +- .../src/commands/UpdateQueueCommand.ts | 6 +- .../commands/UpdateQueueEnvironmentCommand.ts | 6 +- .../UpdateQueueFleetAssociationCommand.ts | 6 +- .../UpdateQueueLimitAssociationCommand.ts | 6 +- .../src/commands/UpdateSessionCommand.ts | 6 +- .../src/commands/UpdateStepCommand.ts | 6 +- .../commands/UpdateStorageProfileCommand.ts | 6 +- .../src/commands/UpdateTaskCommand.ts | 6 +- .../src/commands/UpdateWorkerCommand.ts | 6 +- .../commands/UpdateWorkerScheduleCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/DeadlineServiceException.ts | 2 +- clients/client-deadline/src/models/errors.ts | 2 +- ...tSessionsStatisticsAggregationPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAvailableMeteredProductsPaginator.ts | 2 +- .../src/pagination/ListBudgetsPaginator.ts | 2 +- .../pagination/ListFarmMembersPaginator.ts | 2 +- .../src/pagination/ListFarmsPaginator.ts | 2 +- .../pagination/ListFleetMembersPaginator.ts | 2 +- .../src/pagination/ListFleetsPaginator.ts | 2 +- .../src/pagination/ListJobMembersPaginator.ts | 2 +- .../ListJobParameterDefinitionsPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../ListLicenseEndpointsPaginator.ts | 2 +- .../src/pagination/ListLimitsPaginator.ts | 2 +- .../ListMeteredProductsPaginator.ts | 2 +- .../src/pagination/ListMonitorsPaginator.ts | 2 +- .../ListQueueEnvironmentsPaginator.ts | 2 +- .../ListQueueFleetAssociationsPaginator.ts | 2 +- .../ListQueueLimitAssociationsPaginator.ts | 2 +- .../pagination/ListQueueMembersPaginator.ts | 2 +- .../src/pagination/ListQueuesPaginator.ts | 2 +- .../pagination/ListSessionActionsPaginator.ts | 2 +- .../ListSessionsForWorkerPaginator.ts | 2 +- .../src/pagination/ListSessionsPaginator.ts | 2 +- .../pagination/ListStepConsumersPaginator.ts | 2 +- .../ListStepDependenciesPaginator.ts | 2 +- .../src/pagination/ListStepsPaginator.ts | 2 +- .../ListStorageProfilesForQueuePaginator.ts | 2 +- .../ListStorageProfilesPaginator.ts | 2 +- .../src/pagination/ListTasksPaginator.ts | 2 +- .../src/pagination/ListWorkersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-deadline/src/runtimeConfig.ts | 8 +- .../client-deadline/src/runtimeExtensions.ts | 2 +- .../client-deadline/src/schemas/schemas_0.ts | 2 +- clients/client-detective/package.json | 12 +- clients/client-detective/src/Detective.ts | 4 +- .../client-detective/src/DetectiveClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptInvitationCommand.ts | 6 +- .../BatchGetGraphMemberDatasourcesCommand.ts | 6 +- .../BatchGetMembershipDatasourcesCommand.ts | 6 +- .../src/commands/CreateGraphCommand.ts | 6 +- .../src/commands/CreateMembersCommand.ts | 6 +- .../src/commands/DeleteGraphCommand.ts | 6 +- .../src/commands/DeleteMembersCommand.ts | 6 +- ...escribeOrganizationConfigurationCommand.ts | 6 +- .../DisableOrganizationAdminAccountCommand.ts | 4 +- .../commands/DisassociateMembershipCommand.ts | 6 +- .../EnableOrganizationAdminAccountCommand.ts | 6 +- .../src/commands/GetInvestigationCommand.ts | 6 +- .../src/commands/GetMembersCommand.ts | 6 +- .../commands/ListDatasourcePackagesCommand.ts | 6 +- .../src/commands/ListGraphsCommand.ts | 6 +- .../src/commands/ListIndicatorsCommand.ts | 6 +- .../src/commands/ListInvestigationsCommand.ts | 6 +- .../src/commands/ListInvitationsCommand.ts | 6 +- .../src/commands/ListMembersCommand.ts | 6 +- .../ListOrganizationAdminAccountsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RejectInvitationCommand.ts | 6 +- .../src/commands/StartInvestigationCommand.ts | 6 +- .../commands/StartMonitoringMemberCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateDatasourcePackagesCommand.ts | 6 +- .../UpdateInvestigationStateCommand.ts | 6 +- .../UpdateOrganizationConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/DetectiveServiceException.ts | 2 +- clients/client-detective/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDatasourcePackagesPaginator.ts | 2 +- .../src/pagination/ListGraphsPaginator.ts | 2 +- .../pagination/ListInvitationsPaginator.ts | 2 +- .../src/pagination/ListMembersPaginator.ts | 2 +- .../ListOrganizationAdminAccountsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-detective/src/runtimeConfig.ts | 8 +- .../client-detective/src/runtimeExtensions.ts | 2 +- .../client-detective/src/schemas/schemas_0.ts | 2 +- clients/client-device-farm/package.json | 12 +- clients/client-device-farm/src/DeviceFarm.ts | 4 +- .../src/DeviceFarmClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateDevicePoolCommand.ts | 6 +- .../commands/CreateInstanceProfileCommand.ts | 6 +- .../commands/CreateNetworkProfileCommand.ts | 6 +- .../src/commands/CreateProjectCommand.ts | 6 +- .../CreateRemoteAccessSessionCommand.ts | 6 +- .../commands/CreateTestGridProjectCommand.ts | 6 +- .../src/commands/CreateTestGridUrlCommand.ts | 6 +- .../src/commands/CreateUploadCommand.ts | 6 +- .../CreateVPCEConfigurationCommand.ts | 6 +- .../src/commands/DeleteDevicePoolCommand.ts | 6 +- .../commands/DeleteInstanceProfileCommand.ts | 6 +- .../commands/DeleteNetworkProfileCommand.ts | 6 +- .../src/commands/DeleteProjectCommand.ts | 6 +- .../DeleteRemoteAccessSessionCommand.ts | 6 +- .../src/commands/DeleteRunCommand.ts | 6 +- .../commands/DeleteTestGridProjectCommand.ts | 6 +- .../src/commands/DeleteUploadCommand.ts | 6 +- .../DeleteVPCEConfigurationCommand.ts | 6 +- .../src/commands/GetAccountSettingsCommand.ts | 6 +- .../src/commands/GetDeviceCommand.ts | 6 +- .../src/commands/GetDeviceInstanceCommand.ts | 6 +- .../src/commands/GetDevicePoolCommand.ts | 6 +- .../GetDevicePoolCompatibilityCommand.ts | 6 +- .../src/commands/GetInstanceProfileCommand.ts | 6 +- .../src/commands/GetJobCommand.ts | 6 +- .../src/commands/GetNetworkProfileCommand.ts | 6 +- .../src/commands/GetOfferingStatusCommand.ts | 6 +- .../src/commands/GetProjectCommand.ts | 6 +- .../commands/GetRemoteAccessSessionCommand.ts | 6 +- .../src/commands/GetRunCommand.ts | 6 +- .../src/commands/GetSuiteCommand.ts | 6 +- .../src/commands/GetTestCommand.ts | 6 +- .../src/commands/GetTestGridProjectCommand.ts | 6 +- .../src/commands/GetTestGridSessionCommand.ts | 6 +- .../src/commands/GetUploadCommand.ts | 6 +- .../commands/GetVPCEConfigurationCommand.ts | 6 +- .../InstallToRemoteAccessSessionCommand.ts | 6 +- .../src/commands/ListArtifactsCommand.ts | 6 +- .../commands/ListDeviceInstancesCommand.ts | 6 +- .../src/commands/ListDevicePoolsCommand.ts | 6 +- .../src/commands/ListDevicesCommand.ts | 6 +- .../commands/ListInstanceProfilesCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../commands/ListNetworkProfilesCommand.ts | 6 +- .../commands/ListOfferingPromotionsCommand.ts | 6 +- .../ListOfferingTransactionsCommand.ts | 6 +- .../src/commands/ListOfferingsCommand.ts | 6 +- .../src/commands/ListProjectsCommand.ts | 6 +- .../ListRemoteAccessSessionsCommand.ts | 6 +- .../src/commands/ListRunsCommand.ts | 6 +- .../src/commands/ListSamplesCommand.ts | 6 +- .../src/commands/ListSuitesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTestGridProjectsCommand.ts | 6 +- .../ListTestGridSessionActionsCommand.ts | 6 +- .../ListTestGridSessionArtifactsCommand.ts | 6 +- .../commands/ListTestGridSessionsCommand.ts | 6 +- .../src/commands/ListTestsCommand.ts | 6 +- .../src/commands/ListUniqueProblemsCommand.ts | 6 +- .../src/commands/ListUploadsCommand.ts | 6 +- .../commands/ListVPCEConfigurationsCommand.ts | 6 +- .../src/commands/PurchaseOfferingCommand.ts | 6 +- .../src/commands/RenewOfferingCommand.ts | 6 +- .../src/commands/ScheduleRunCommand.ts | 6 +- .../src/commands/StopJobCommand.ts | 6 +- .../StopRemoteAccessSessionCommand.ts | 6 +- .../src/commands/StopRunCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateDeviceInstanceCommand.ts | 6 +- .../src/commands/UpdateDevicePoolCommand.ts | 6 +- .../commands/UpdateInstanceProfileCommand.ts | 6 +- .../commands/UpdateNetworkProfileCommand.ts | 6 +- .../src/commands/UpdateProjectCommand.ts | 6 +- .../commands/UpdateTestGridProjectCommand.ts | 6 +- .../src/commands/UpdateUploadCommand.ts | 6 +- .../UpdateVPCEConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/DeviceFarmServiceException.ts | 2 +- .../client-device-farm/src/models/errors.ts | 2 +- .../pagination/GetOfferingStatusPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListArtifactsPaginator.ts | 2 +- .../pagination/ListDevicePoolsPaginator.ts | 2 +- .../src/pagination/ListDevicesPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../ListOfferingTransactionsPaginator.ts | 2 +- .../src/pagination/ListOfferingsPaginator.ts | 2 +- .../src/pagination/ListProjectsPaginator.ts | 2 +- .../src/pagination/ListRunsPaginator.ts | 2 +- .../src/pagination/ListSamplesPaginator.ts | 2 +- .../src/pagination/ListSuitesPaginator.ts | 2 +- .../ListTestGridProjectsPaginator.ts | 2 +- .../ListTestGridSessionActionsPaginator.ts | 2 +- .../ListTestGridSessionArtifactsPaginator.ts | 2 +- .../ListTestGridSessionsPaginator.ts | 2 +- .../src/pagination/ListTestsPaginator.ts | 2 +- .../pagination/ListUniqueProblemsPaginator.ts | 2 +- .../src/pagination/ListUploadsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-device-farm/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-devops-guru/package.json | 12 +- clients/client-devops-guru/src/DevOpsGuru.ts | 4 +- .../src/DevOpsGuruClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AddNotificationChannelCommand.ts | 6 +- .../src/commands/DeleteInsightCommand.ts | 6 +- .../commands/DescribeAccountHealthCommand.ts | 6 +- .../DescribeAccountOverviewCommand.ts | 6 +- .../src/commands/DescribeAnomalyCommand.ts | 6 +- .../DescribeEventSourcesConfigCommand.ts | 6 +- .../src/commands/DescribeFeedbackCommand.ts | 6 +- .../src/commands/DescribeInsightCommand.ts | 6 +- .../DescribeOrganizationHealthCommand.ts | 6 +- .../DescribeOrganizationOverviewCommand.ts | 6 +- ...nizationResourceCollectionHealthCommand.ts | 6 +- ...DescribeResourceCollectionHealthCommand.ts | 9 +- .../DescribeServiceIntegrationCommand.ts | 6 +- .../src/commands/GetCostEstimationCommand.ts | 6 +- .../commands/GetResourceCollectionCommand.ts | 6 +- .../ListAnomaliesForInsightCommand.ts | 6 +- .../commands/ListAnomalousLogGroupsCommand.ts | 6 +- .../src/commands/ListEventsCommand.ts | 6 +- .../src/commands/ListInsightsCommand.ts | 6 +- .../commands/ListMonitoredResourcesCommand.ts | 6 +- .../ListNotificationChannelsCommand.ts | 6 +- .../ListOrganizationInsightsCommand.ts | 6 +- .../commands/ListRecommendationsCommand.ts | 6 +- .../src/commands/PutFeedbackCommand.ts | 6 +- .../RemoveNotificationChannelCommand.ts | 6 +- .../src/commands/SearchInsightsCommand.ts | 6 +- .../SearchOrganizationInsightsCommand.ts | 6 +- .../commands/StartCostEstimationCommand.ts | 6 +- .../UpdateEventSourcesConfigCommand.ts | 6 +- .../UpdateResourceCollectionCommand.ts | 6 +- .../UpdateServiceIntegrationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/DevOpsGuruServiceException.ts | 2 +- .../client-devops-guru/src/models/errors.ts | 2 +- ...zationResourceCollectionHealthPaginator.ts | 2 +- ...scribeResourceCollectionHealthPaginator.ts | 2 +- .../pagination/GetCostEstimationPaginator.ts | 2 +- .../GetResourceCollectionPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAnomaliesForInsightPaginator.ts | 2 +- .../ListAnomalousLogGroupsPaginator.ts | 2 +- .../src/pagination/ListEventsPaginator.ts | 2 +- .../src/pagination/ListInsightsPaginator.ts | 2 +- .../ListMonitoredResourcesPaginator.ts | 2 +- .../ListNotificationChannelsPaginator.ts | 2 +- .../ListOrganizationInsightsPaginator.ts | 2 +- .../ListRecommendationsPaginator.ts | 2 +- .../src/pagination/SearchInsightsPaginator.ts | 2 +- .../SearchOrganizationInsightsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-devops-guru/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-direct-connect/package.json | 12 +- .../src/DirectConnect.ts | 4 +- .../src/DirectConnectClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...onnectGatewayAssociationProposalCommand.ts | 6 +- ...AllocateConnectionOnInterconnectCommand.ts | 6 +- .../AllocateHostedConnectionCommand.ts | 6 +- .../AllocatePrivateVirtualInterfaceCommand.ts | 6 +- .../AllocatePublicVirtualInterfaceCommand.ts | 6 +- .../AllocateTransitVirtualInterfaceCommand.ts | 6 +- .../AssociateConnectionWithLagCommand.ts | 6 +- .../AssociateHostedConnectionCommand.ts | 6 +- .../src/commands/AssociateMacSecKeyCommand.ts | 6 +- .../AssociateVirtualInterfaceCommand.ts | 6 +- .../src/commands/ConfirmConnectionCommand.ts | 6 +- .../ConfirmCustomerAgreementCommand.ts | 6 +- .../ConfirmPrivateVirtualInterfaceCommand.ts | 6 +- .../ConfirmPublicVirtualInterfaceCommand.ts | 6 +- .../ConfirmTransitVirtualInterfaceCommand.ts | 6 +- .../src/commands/CreateBGPPeerCommand.ts | 6 +- .../src/commands/CreateConnectionCommand.ts | 6 +- ...eDirectConnectGatewayAssociationCommand.ts | 6 +- ...onnectGatewayAssociationProposalCommand.ts | 6 +- .../CreateDirectConnectGatewayCommand.ts | 6 +- .../src/commands/CreateInterconnectCommand.ts | 6 +- .../src/commands/CreateLagCommand.ts | 6 +- .../CreatePrivateVirtualInterfaceCommand.ts | 6 +- .../CreatePublicVirtualInterfaceCommand.ts | 6 +- .../CreateTransitVirtualInterfaceCommand.ts | 6 +- .../src/commands/DeleteBGPPeerCommand.ts | 6 +- .../src/commands/DeleteConnectionCommand.ts | 6 +- ...eDirectConnectGatewayAssociationCommand.ts | 6 +- ...onnectGatewayAssociationProposalCommand.ts | 6 +- .../DeleteDirectConnectGatewayCommand.ts | 6 +- .../src/commands/DeleteInterconnectCommand.ts | 6 +- .../src/commands/DeleteLagCommand.ts | 6 +- .../commands/DeleteVirtualInterfaceCommand.ts | 6 +- .../commands/DescribeConnectionLoaCommand.ts | 6 +- .../commands/DescribeConnectionsCommand.ts | 6 +- ...escribeConnectionsOnInterconnectCommand.ts | 6 +- .../DescribeCustomerMetadataCommand.ts | 6 +- ...nnectGatewayAssociationProposalsCommand.ts | 6 +- ...DirectConnectGatewayAssociationsCommand.ts | 6 +- ...eDirectConnectGatewayAttachmentsCommand.ts | 6 +- .../DescribeDirectConnectGatewaysCommand.ts | 6 +- .../DescribeHostedConnectionsCommand.ts | 6 +- .../DescribeInterconnectLoaCommand.ts | 6 +- .../commands/DescribeInterconnectsCommand.ts | 6 +- .../src/commands/DescribeLagsCommand.ts | 6 +- .../src/commands/DescribeLoaCommand.ts | 6 +- .../src/commands/DescribeLocationsCommand.ts | 6 +- .../DescribeRouterConfigurationCommand.ts | 6 +- .../src/commands/DescribeTagsCommand.ts | 6 +- .../DescribeVirtualGatewaysCommand.ts | 6 +- .../DescribeVirtualInterfacesCommand.ts | 6 +- .../DisassociateConnectionFromLagCommand.ts | 6 +- .../commands/DisassociateMacSecKeyCommand.ts | 6 +- .../ListVirtualInterfaceTestHistoryCommand.ts | 9 +- .../commands/StartBgpFailoverTestCommand.ts | 6 +- .../commands/StopBgpFailoverTestCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateConnectionCommand.ts | 6 +- ...eDirectConnectGatewayAssociationCommand.ts | 6 +- .../UpdateDirectConnectGatewayCommand.ts | 6 +- .../src/commands/UpdateLagCommand.ts | 6 +- ...UpdateVirtualInterfaceAttributesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/DirectConnectServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/DirectoryServiceData.ts | 4 +- .../src/DirectoryServiceDataClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddGroupMemberCommand.ts | 6 +- .../src/commands/CreateGroupCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../src/commands/DescribeGroupCommand.ts | 6 +- .../src/commands/DescribeUserCommand.ts | 6 +- .../src/commands/DisableUserCommand.ts | 6 +- .../src/commands/ListGroupMembersCommand.ts | 6 +- .../src/commands/ListGroupsCommand.ts | 6 +- .../commands/ListGroupsForMemberCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../src/commands/RemoveGroupMemberCommand.ts | 6 +- .../src/commands/SearchGroupsCommand.ts | 6 +- .../src/commands/SearchUsersCommand.ts | 6 +- .../src/commands/UpdateGroupCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../DirectoryServiceDataServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListGroupMembersPaginator.ts | 2 +- .../ListGroupsForMemberPaginator.ts | 2 +- .../src/pagination/ListGroupsPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../src/pagination/SearchGroupsPaginator.ts | 2 +- .../src/pagination/SearchUsersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-directory-service/package.json | 12 +- .../src/DirectoryService.ts | 4 +- .../src/DirectoryServiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AcceptSharedDirectoryCommand.ts | 10 +- .../src/commands/AddIpRoutesCommand.ts | 10 +- .../src/commands/AddRegionCommand.ts | 10 +- .../src/commands/AddTagsToResourceCommand.ts | 10 +- .../commands/CancelSchemaExtensionCommand.ts | 10 +- .../src/commands/ConnectDirectoryCommand.ts | 10 +- .../src/commands/CreateAliasCommand.ts | 10 +- .../src/commands/CreateComputerCommand.ts | 10 +- .../CreateConditionalForwarderCommand.ts | 10 +- .../src/commands/CreateDirectoryCommand.ts | 10 +- .../src/commands/CreateHybridADCommand.ts | 10 +- .../commands/CreateLogSubscriptionCommand.ts | 10 +- .../src/commands/CreateMicrosoftADCommand.ts | 10 +- .../src/commands/CreateSnapshotCommand.ts | 10 +- .../src/commands/CreateTrustCommand.ts | 10 +- .../src/commands/DeleteADAssessmentCommand.ts | 10 +- .../DeleteConditionalForwarderCommand.ts | 10 +- .../src/commands/DeleteDirectoryCommand.ts | 10 +- .../commands/DeleteLogSubscriptionCommand.ts | 10 +- .../src/commands/DeleteSnapshotCommand.ts | 10 +- .../src/commands/DeleteTrustCommand.ts | 10 +- .../commands/DeregisterCertificateCommand.ts | 10 +- .../commands/DeregisterEventTopicCommand.ts | 10 +- .../commands/DescribeADAssessmentCommand.ts | 10 +- .../DescribeCAEnrollmentPolicyCommand.ts | 10 +- .../commands/DescribeCertificateCommand.ts | 10 +- ...ribeClientAuthenticationSettingsCommand.ts | 10 +- .../DescribeConditionalForwardersCommand.ts | 10 +- .../commands/DescribeDirectoriesCommand.ts | 10 +- .../DescribeDirectoryDataAccessCommand.ts | 10 +- .../DescribeDomainControllersCommand.ts | 10 +- .../commands/DescribeEventTopicsCommand.ts | 10 +- .../commands/DescribeHybridADUpdateCommand.ts | 10 +- .../commands/DescribeLDAPSSettingsCommand.ts | 10 +- .../src/commands/DescribeRegionsCommand.ts | 10 +- .../src/commands/DescribeSettingsCommand.ts | 10 +- .../DescribeSharedDirectoriesCommand.ts | 10 +- .../src/commands/DescribeSnapshotsCommand.ts | 10 +- .../src/commands/DescribeTrustsCommand.ts | 10 +- .../DescribeUpdateDirectoryCommand.ts | 10 +- .../DisableCAEnrollmentPolicyCommand.ts | 10 +- .../DisableClientAuthenticationCommand.ts | 10 +- .../DisableDirectoryDataAccessCommand.ts | 10 +- .../src/commands/DisableLDAPSCommand.ts | 10 +- .../src/commands/DisableRadiusCommand.ts | 10 +- .../src/commands/DisableSsoCommand.ts | 10 +- .../EnableCAEnrollmentPolicyCommand.ts | 10 +- .../EnableClientAuthenticationCommand.ts | 10 +- .../EnableDirectoryDataAccessCommand.ts | 10 +- .../src/commands/EnableLDAPSCommand.ts | 10 +- .../src/commands/EnableRadiusCommand.ts | 10 +- .../src/commands/EnableSsoCommand.ts | 10 +- .../src/commands/GetDirectoryLimitsCommand.ts | 10 +- .../src/commands/GetSnapshotLimitsCommand.ts | 10 +- .../src/commands/ListADAssessmentsCommand.ts | 10 +- .../src/commands/ListCertificatesCommand.ts | 10 +- .../src/commands/ListIpRoutesCommand.ts | 10 +- .../commands/ListLogSubscriptionsCommand.ts | 10 +- .../commands/ListSchemaExtensionsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../commands/RegisterCertificateCommand.ts | 10 +- .../src/commands/RegisterEventTopicCommand.ts | 10 +- .../commands/RejectSharedDirectoryCommand.ts | 10 +- .../src/commands/RemoveIpRoutesCommand.ts | 10 +- .../src/commands/RemoveRegionCommand.ts | 10 +- .../commands/RemoveTagsFromResourceCommand.ts | 10 +- .../src/commands/ResetUserPasswordCommand.ts | 10 +- .../commands/RestoreFromSnapshotCommand.ts | 10 +- .../src/commands/ShareDirectoryCommand.ts | 10 +- .../src/commands/StartADAssessmentCommand.ts | 10 +- .../commands/StartSchemaExtensionCommand.ts | 10 +- .../src/commands/UnshareDirectoryCommand.ts | 10 +- .../UpdateConditionalForwarderCommand.ts | 10 +- .../commands/UpdateDirectorySetupCommand.ts | 10 +- .../src/commands/UpdateHybridADCommand.ts | 10 +- .../UpdateNumberOfDomainControllersCommand.ts | 10 +- .../src/commands/UpdateRadiusCommand.ts | 10 +- .../src/commands/UpdateSettingsCommand.ts | 10 +- .../src/commands/UpdateTrustCommand.ts | 10 +- .../src/commands/VerifyTrustCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../DirectoryServiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- ...beClientAuthenticationSettingsPaginator.ts | 2 +- .../DescribeDirectoriesPaginator.ts | 2 +- .../DescribeDomainControllersPaginator.ts | 2 +- .../DescribeLDAPSSettingsPaginator.ts | 2 +- .../pagination/DescribeRegionsPaginator.ts | 2 +- .../DescribeSharedDirectoriesPaginator.ts | 2 +- .../pagination/DescribeSnapshotsPaginator.ts | 2 +- .../src/pagination/DescribeTrustsPaginator.ts | 2 +- .../DescribeUpdateDirectoryPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListADAssessmentsPaginator.ts | 2 +- .../pagination/ListCertificatesPaginator.ts | 2 +- .../src/pagination/ListIpRoutesPaginator.ts | 2 +- .../ListLogSubscriptionsPaginator.ts | 2 +- .../ListSchemaExtensionsPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-dlm/package.json | 12 +- clients/client-dlm/src/DLM.ts | 4 +- clients/client-dlm/src/DLMClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateLifecyclePolicyCommand.ts | 6 +- .../commands/DeleteLifecyclePolicyCommand.ts | 6 +- .../commands/GetLifecyclePoliciesCommand.ts | 6 +- .../src/commands/GetLifecyclePolicyCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateLifecyclePolicyCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-dlm/src/extensionConfiguration.ts | 8 +- .../src/models/DLMServiceException.ts | 2 +- clients/client-dlm/src/models/errors.ts | 2 +- .../client-dlm/src/runtimeConfig.browser.ts | 7 +- .../client-dlm/src/runtimeConfig.native.ts | 2 +- .../client-dlm/src/runtimeConfig.shared.ts | 4 +- clients/client-dlm/src/runtimeConfig.ts | 8 +- clients/client-dlm/src/runtimeExtensions.ts | 2 +- clients/client-dlm/src/schemas/schemas_0.ts | 2 +- clients/client-docdb-elastic/package.json | 12 +- .../client-docdb-elastic/src/DocDBElastic.ts | 4 +- .../src/DocDBElasticClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../ApplyPendingMaintenanceActionCommand.ts | 6 +- .../commands/CopyClusterSnapshotCommand.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../commands/CreateClusterSnapshotCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../commands/DeleteClusterSnapshotCommand.ts | 6 +- .../src/commands/GetClusterCommand.ts | 6 +- .../src/commands/GetClusterSnapshotCommand.ts | 6 +- .../GetPendingMaintenanceActionCommand.ts | 6 +- .../commands/ListClusterSnapshotsCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../ListPendingMaintenanceActionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../RestoreClusterFromSnapshotCommand.ts | 6 +- .../src/commands/StartClusterCommand.ts | 6 +- .../src/commands/StopClusterCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/DocDBElasticServiceException.ts | 2 +- .../client-docdb-elastic/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListClusterSnapshotsPaginator.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../ListPendingMaintenanceActionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-docdb-elastic/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-docdb/package.json | 12 +- clients/client-docdb/src/DocDB.ts | 4 +- clients/client-docdb/src/DocDBClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...ddSourceIdentifierToSubscriptionCommand.ts | 9 +- .../src/commands/AddTagsToResourceCommand.ts | 6 +- .../ApplyPendingMaintenanceActionCommand.ts | 6 +- .../CopyDBClusterParameterGroupCommand.ts | 6 +- .../commands/CopyDBClusterSnapshotCommand.ts | 6 +- .../src/commands/CreateDBClusterCommand.ts | 6 +- .../CreateDBClusterParameterGroupCommand.ts | 6 +- .../CreateDBClusterSnapshotCommand.ts | 6 +- .../src/commands/CreateDBInstanceCommand.ts | 6 +- .../commands/CreateDBSubnetGroupCommand.ts | 6 +- .../CreateEventSubscriptionCommand.ts | 6 +- .../commands/CreateGlobalClusterCommand.ts | 6 +- .../src/commands/DeleteDBClusterCommand.ts | 6 +- .../DeleteDBClusterParameterGroupCommand.ts | 6 +- .../DeleteDBClusterSnapshotCommand.ts | 6 +- .../src/commands/DeleteDBInstanceCommand.ts | 6 +- .../commands/DeleteDBSubnetGroupCommand.ts | 6 +- .../DeleteEventSubscriptionCommand.ts | 6 +- .../commands/DeleteGlobalClusterCommand.ts | 6 +- .../commands/DescribeCertificatesCommand.ts | 6 +- ...DescribeDBClusterParameterGroupsCommand.ts | 6 +- .../DescribeDBClusterParametersCommand.ts | 6 +- ...cribeDBClusterSnapshotAttributesCommand.ts | 6 +- .../DescribeDBClusterSnapshotsCommand.ts | 6 +- .../src/commands/DescribeDBClustersCommand.ts | 6 +- .../DescribeDBEngineVersionsCommand.ts | 6 +- .../commands/DescribeDBInstancesCommand.ts | 6 +- .../commands/DescribeDBSubnetGroupsCommand.ts | 6 +- ...beEngineDefaultClusterParametersCommand.ts | 6 +- .../DescribeEventCategoriesCommand.ts | 6 +- .../DescribeEventSubscriptionsCommand.ts | 6 +- .../src/commands/DescribeEventsCommand.ts | 6 +- .../commands/DescribeGlobalClustersCommand.ts | 6 +- ...scribeOrderableDBInstanceOptionsCommand.ts | 6 +- ...escribePendingMaintenanceActionsCommand.ts | 6 +- .../src/commands/FailoverDBClusterCommand.ts | 6 +- .../commands/FailoverGlobalClusterCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ModifyDBClusterCommand.ts | 6 +- .../ModifyDBClusterParameterGroupCommand.ts | 6 +- ...ModifyDBClusterSnapshotAttributeCommand.ts | 9 +- .../src/commands/ModifyDBInstanceCommand.ts | 6 +- .../commands/ModifyDBSubnetGroupCommand.ts | 6 +- .../ModifyEventSubscriptionCommand.ts | 6 +- .../commands/ModifyGlobalClusterCommand.ts | 6 +- .../src/commands/RebootDBInstanceCommand.ts | 6 +- .../RemoveFromGlobalClusterCommand.ts | 6 +- ...SourceIdentifierFromSubscriptionCommand.ts | 6 +- .../commands/RemoveTagsFromResourceCommand.ts | 6 +- .../ResetDBClusterParameterGroupCommand.ts | 6 +- .../RestoreDBClusterFromSnapshotCommand.ts | 6 +- .../RestoreDBClusterToPointInTimeCommand.ts | 6 +- .../src/commands/StartDBClusterCommand.ts | 6 +- .../src/commands/StopDBClusterCommand.ts | 6 +- .../SwitchoverGlobalClusterCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/DocDBServiceException.ts | 2 +- clients/client-docdb/src/models/errors.ts | 2 +- .../DescribeCertificatesPaginator.ts | 2 +- ...scribeDBClusterParameterGroupsPaginator.ts | 2 +- .../DescribeDBClusterParametersPaginator.ts | 2 +- .../DescribeDBClusterSnapshotsPaginator.ts | 2 +- .../pagination/DescribeDBClustersPaginator.ts | 2 +- .../DescribeDBEngineVersionsPaginator.ts | 2 +- .../DescribeDBInstancesPaginator.ts | 2 +- .../DescribeDBSubnetGroupsPaginator.ts | 2 +- .../DescribeEventSubscriptionsPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- .../DescribeGlobalClustersPaginator.ts | 2 +- ...ribeOrderableDBInstanceOptionsPaginator.ts | 2 +- ...cribePendingMaintenanceActionsPaginator.ts | 2 +- .../client-docdb/src/pagination/Interfaces.ts | 2 +- .../client-docdb/src/runtimeConfig.browser.ts | 7 +- .../client-docdb/src/runtimeConfig.native.ts | 2 +- .../client-docdb/src/runtimeConfig.shared.ts | 4 +- clients/client-docdb/src/runtimeConfig.ts | 8 +- clients/client-docdb/src/runtimeExtensions.ts | 2 +- clients/client-docdb/src/schemas/schemas_0.ts | 2 +- clients/client-drs/package.json | 12 +- clients/client-drs/src/Drs.ts | 4 +- clients/client-drs/src/DrsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateSourceNetworkStackCommand.ts | 6 +- .../CreateExtendedSourceServerCommand.ts | 6 +- ...reateLaunchConfigurationTemplateCommand.ts | 6 +- ...ReplicationConfigurationTemplateCommand.ts | 9 +- .../commands/CreateSourceNetworkCommand.ts | 6 +- .../src/commands/DeleteJobCommand.ts | 6 +- .../src/commands/DeleteLaunchActionCommand.ts | 6 +- ...eleteLaunchConfigurationTemplateCommand.ts | 6 +- .../commands/DeleteRecoveryInstanceCommand.ts | 6 +- ...ReplicationConfigurationTemplateCommand.ts | 6 +- .../commands/DeleteSourceNetworkCommand.ts | 6 +- .../src/commands/DeleteSourceServerCommand.ts | 6 +- .../commands/DescribeJobLogItemsCommand.ts | 6 +- .../src/commands/DescribeJobsCommand.ts | 6 +- ...ribeLaunchConfigurationTemplatesCommand.ts | 6 +- .../DescribeRecoveryInstancesCommand.ts | 6 +- .../DescribeRecoverySnapshotsCommand.ts | 6 +- ...eplicationConfigurationTemplatesCommand.ts | 6 +- .../commands/DescribeSourceNetworksCommand.ts | 6 +- .../commands/DescribeSourceServersCommand.ts | 6 +- .../DisconnectRecoveryInstanceCommand.ts | 6 +- .../commands/DisconnectSourceServerCommand.ts | 6 +- .../ExportSourceNetworkCfnTemplateCommand.ts | 6 +- ...FailbackReplicationConfigurationCommand.ts | 6 +- .../commands/GetLaunchConfigurationCommand.ts | 6 +- .../GetReplicationConfigurationCommand.ts | 6 +- .../src/commands/InitializeServiceCommand.ts | 6 +- .../ListExtensibleSourceServersCommand.ts | 6 +- .../src/commands/ListLaunchActionsCommand.ts | 6 +- .../commands/ListStagingAccountsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutLaunchActionCommand.ts | 6 +- .../commands/RetryDataReplicationCommand.ts | 6 +- .../src/commands/ReverseReplicationCommand.ts | 6 +- .../commands/StartFailbackLaunchCommand.ts | 6 +- .../src/commands/StartRecoveryCommand.ts | 6 +- .../src/commands/StartReplicationCommand.ts | 6 +- .../StartSourceNetworkRecoveryCommand.ts | 6 +- .../StartSourceNetworkReplicationCommand.ts | 6 +- .../src/commands/StopFailbackCommand.ts | 6 +- .../src/commands/StopReplicationCommand.ts | 6 +- .../StopSourceNetworkReplicationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../TerminateRecoveryInstancesCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...FailbackReplicationConfigurationCommand.ts | 6 +- .../UpdateLaunchConfigurationCommand.ts | 6 +- ...pdateLaunchConfigurationTemplateCommand.ts | 6 +- .../UpdateReplicationConfigurationCommand.ts | 6 +- ...ReplicationConfigurationTemplateCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-drs/src/extensionConfiguration.ts | 8 +- .../src/models/DrsServiceException.ts | 2 +- clients/client-drs/src/models/errors.ts | 2 +- .../DescribeJobLogItemsPaginator.ts | 2 +- .../src/pagination/DescribeJobsPaginator.ts | 2 +- ...beLaunchConfigurationTemplatesPaginator.ts | 2 +- .../DescribeRecoveryInstancesPaginator.ts | 2 +- .../DescribeRecoverySnapshotsPaginator.ts | 2 +- ...licationConfigurationTemplatesPaginator.ts | 2 +- .../DescribeSourceNetworksPaginator.ts | 2 +- .../DescribeSourceServersPaginator.ts | 2 +- .../client-drs/src/pagination/Interfaces.ts | 2 +- .../ListExtensibleSourceServersPaginator.ts | 2 +- .../pagination/ListLaunchActionsPaginator.ts | 2 +- .../ListStagingAccountsPaginator.ts | 2 +- .../client-drs/src/runtimeConfig.browser.ts | 7 +- .../client-drs/src/runtimeConfig.native.ts | 2 +- .../client-drs/src/runtimeConfig.shared.ts | 4 +- clients/client-drs/src/runtimeConfig.ts | 8 +- clients/client-drs/src/runtimeExtensions.ts | 2 +- clients/client-drs/src/schemas/schemas_0.ts | 2 +- clients/client-dsql/package.json | 12 +- clients/client-dsql/src/DSQL.ts | 4 +- clients/client-dsql/src/DSQLClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../commands/DeleteClusterPolicyCommand.ts | 6 +- .../src/commands/GetClusterCommand.ts | 6 +- .../src/commands/GetClusterPolicyCommand.ts | 6 +- .../GetVpcEndpointServiceNameCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutClusterPolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-dsql/src/extensionConfiguration.ts | 8 +- .../src/models/DSQLServiceException.ts | 2 +- clients/client-dsql/src/models/errors.ts | 2 +- .../client-dsql/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../client-dsql/src/runtimeConfig.browser.ts | 7 +- .../client-dsql/src/runtimeConfig.native.ts | 2 +- .../client-dsql/src/runtimeConfig.shared.ts | 4 +- clients/client-dsql/src/runtimeConfig.ts | 8 +- clients/client-dsql/src/runtimeExtensions.ts | 2 +- clients/client-dsql/src/schemas/schemas_0.ts | 2 +- clients/client-dynamodb-streams/package.json | 12 +- .../src/DynamoDBStreams.ts | 4 +- .../src/DynamoDBStreamsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DescribeStreamCommand.ts | 10 +- .../src/commands/GetRecordsCommand.ts | 10 +- .../src/commands/GetShardIteratorCommand.ts | 10 +- .../src/commands/ListStreamsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/DynamoDBStreamsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-dynamodb/package.json | 12 +- clients/client-dynamodb/src/DynamoDB.ts | 4 +- clients/client-dynamodb/src/DynamoDBClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchExecuteStatementCommand.ts | 6 +- .../src/commands/BatchGetItemCommand.ts | 6 +- .../src/commands/BatchWriteItemCommand.ts | 6 +- .../src/commands/CreateBackupCommand.ts | 6 +- .../src/commands/CreateGlobalTableCommand.ts | 6 +- .../src/commands/CreateTableCommand.ts | 6 +- .../src/commands/DeleteBackupCommand.ts | 6 +- .../src/commands/DeleteItemCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DeleteTableCommand.ts | 6 +- .../src/commands/DescribeBackupCommand.ts | 6 +- .../DescribeContinuousBackupsCommand.ts | 6 +- .../DescribeContributorInsightsCommand.ts | 6 +- .../src/commands/DescribeEndpointsCommand.ts | 6 +- .../src/commands/DescribeExportCommand.ts | 6 +- .../commands/DescribeGlobalTableCommand.ts | 6 +- .../DescribeGlobalTableSettingsCommand.ts | 6 +- .../src/commands/DescribeImportCommand.ts | 6 +- ...cribeKinesisStreamingDestinationCommand.ts | 6 +- .../src/commands/DescribeLimitsCommand.ts | 6 +- .../src/commands/DescribeTableCommand.ts | 6 +- .../DescribeTableReplicaAutoScalingCommand.ts | 6 +- .../src/commands/DescribeTimeToLiveCommand.ts | 6 +- ...sableKinesisStreamingDestinationCommand.ts | 6 +- ...nableKinesisStreamingDestinationCommand.ts | 6 +- .../src/commands/ExecuteStatementCommand.ts | 6 +- .../src/commands/ExecuteTransactionCommand.ts | 6 +- .../ExportTableToPointInTimeCommand.ts | 6 +- .../src/commands/GetItemCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/ImportTableCommand.ts | 6 +- .../src/commands/ListBackupsCommand.ts | 6 +- .../ListContributorInsightsCommand.ts | 6 +- .../src/commands/ListExportsCommand.ts | 6 +- .../src/commands/ListGlobalTablesCommand.ts | 6 +- .../src/commands/ListImportsCommand.ts | 6 +- .../src/commands/ListTablesCommand.ts | 6 +- .../src/commands/ListTagsOfResourceCommand.ts | 6 +- .../src/commands/PutItemCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/QueryCommand.ts | 6 +- .../commands/RestoreTableFromBackupCommand.ts | 6 +- .../RestoreTableToPointInTimeCommand.ts | 6 +- .../src/commands/ScanCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TransactGetItemsCommand.ts | 6 +- .../src/commands/TransactWriteItemsCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateContinuousBackupsCommand.ts | 6 +- .../UpdateContributorInsightsCommand.ts | 6 +- .../src/commands/UpdateGlobalTableCommand.ts | 6 +- .../UpdateGlobalTableSettingsCommand.ts | 6 +- .../src/commands/UpdateItemCommand.ts | 6 +- ...pdateKinesisStreamingDestinationCommand.ts | 9 +- .../src/commands/UpdateTableCommand.ts | 6 +- .../UpdateTableReplicaAutoScalingCommand.ts | 6 +- .../src/commands/UpdateTimeToLiveCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/DynamoDBServiceException.ts | 2 +- clients/client-dynamodb/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListContributorInsightsPaginator.ts | 2 +- .../src/pagination/ListExportsPaginator.ts | 2 +- .../src/pagination/ListImportsPaginator.ts | 2 +- .../src/pagination/ListTablesPaginator.ts | 2 +- .../src/pagination/QueryPaginator.ts | 2 +- .../src/pagination/ScanPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-dynamodb/src/runtimeConfig.ts | 8 +- .../client-dynamodb/src/runtimeExtensions.ts | 2 +- .../client-dynamodb/src/schemas/schemas_0.ts | 2 +- clients/client-ebs/package.json | 12 +- clients/client-ebs/src/EBS.ts | 4 +- clients/client-ebs/src/EBSClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CompleteSnapshotCommand.ts | 6 +- .../src/commands/GetSnapshotBlockCommand.ts | 6 +- .../src/commands/ListChangedBlocksCommand.ts | 6 +- .../src/commands/ListSnapshotBlocksCommand.ts | 6 +- .../src/commands/PutSnapshotBlockCommand.ts | 6 +- .../src/commands/StartSnapshotCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-ebs/src/extensionConfiguration.ts | 8 +- .../src/models/EBSServiceException.ts | 2 +- clients/client-ebs/src/models/errors.ts | 2 +- .../client-ebs/src/pagination/Interfaces.ts | 2 +- .../pagination/ListChangedBlocksPaginator.ts | 2 +- .../pagination/ListSnapshotBlocksPaginator.ts | 2 +- .../client-ebs/src/runtimeConfig.browser.ts | 7 +- .../client-ebs/src/runtimeConfig.native.ts | 2 +- .../client-ebs/src/runtimeConfig.shared.ts | 4 +- clients/client-ebs/src/runtimeConfig.ts | 8 +- clients/client-ebs/src/runtimeExtensions.ts | 2 +- clients/client-ebs/src/schemas/schemas_0.ts | 2 +- .../client-ec2-instance-connect/package.json | 12 +- .../src/EC2InstanceConnect.ts | 4 +- .../src/EC2InstanceConnectClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/SendSSHPublicKeyCommand.ts | 6 +- .../SendSerialConsoleSSHPublicKeyCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../EC2InstanceConnectServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ec2/package.json | 12 +- clients/client-ec2/src/EC2.ts | 4 +- clients/client-ec2/src/EC2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AcceptAddressTransferCommand.ts | 6 +- ...acityReservationBillingOwnershipCommand.ts | 6 +- ...ptReservedInstancesExchangeQuoteCommand.ts | 6 +- ...tewayMulticastDomainAssociationsCommand.ts | 6 +- ...tTransitGatewayPeeringAttachmentCommand.ts | 6 +- ...cceptTransitGatewayVpcAttachmentCommand.ts | 9 +- .../AcceptVpcEndpointConnectionsCommand.ts | 6 +- .../AcceptVpcPeeringConnectionCommand.ts | 6 +- .../src/commands/AdvertiseByoipCidrCommand.ts | 6 +- .../src/commands/AllocateAddressCommand.ts | 6 +- .../src/commands/AllocateHostsCommand.ts | 6 +- .../commands/AllocateIpamPoolCidrCommand.ts | 6 +- ...tyGroupsToClientVpnTargetNetworkCommand.ts | 6 +- .../commands/AssignIpv6AddressesCommand.ts | 6 +- .../AssignPrivateIpAddressesCommand.ts | 6 +- .../AssignPrivateNatGatewayAddressCommand.ts | 6 +- .../src/commands/AssociateAddressCommand.ts | 6 +- ...eCapacityReservationBillingOwnerCommand.ts | 6 +- .../AssociateClientVpnTargetNetworkCommand.ts | 6 +- .../commands/AssociateDhcpOptionsCommand.ts | 6 +- ...sociateEnclaveCertificateIamRoleCommand.ts | 6 +- .../AssociateIamInstanceProfileCommand.ts | 6 +- .../AssociateInstanceEventWindowCommand.ts | 6 +- .../commands/AssociateIpamByoasnCommand.ts | 6 +- .../AssociateIpamResourceDiscoveryCommand.ts | 6 +- .../AssociateNatGatewayAddressCommand.ts | 6 +- .../commands/AssociateRouteServerCommand.ts | 6 +- .../commands/AssociateRouteTableCommand.ts | 6 +- .../AssociateSecurityGroupVpcCommand.ts | 6 +- .../AssociateSubnetCidrBlockCommand.ts | 6 +- ...ateTransitGatewayMulticastDomainCommand.ts | 6 +- ...sociateTransitGatewayPolicyTableCommand.ts | 6 +- ...ssociateTransitGatewayRouteTableCommand.ts | 9 +- .../AssociateTrunkInterfaceCommand.ts | 6 +- .../commands/AssociateVpcCidrBlockCommand.ts | 6 +- .../commands/AttachClassicLinkVpcCommand.ts | 6 +- .../commands/AttachInternetGatewayCommand.ts | 6 +- .../commands/AttachNetworkInterfaceCommand.ts | 6 +- ...ttachVerifiedAccessTrustProviderCommand.ts | 9 +- .../src/commands/AttachVolumeCommand.ts | 6 +- .../src/commands/AttachVpnGatewayCommand.ts | 6 +- .../AuthorizeClientVpnIngressCommand.ts | 6 +- .../AuthorizeSecurityGroupEgressCommand.ts | 6 +- .../AuthorizeSecurityGroupIngressCommand.ts | 6 +- .../src/commands/BundleInstanceCommand.ts | 6 +- .../src/commands/CancelBundleTaskCommand.ts | 6 +- .../CancelCapacityReservationCommand.ts | 6 +- .../CancelCapacityReservationFleetsCommand.ts | 6 +- .../commands/CancelConversionTaskCommand.ts | 6 +- .../CancelDeclarativePoliciesReportCommand.ts | 6 +- .../src/commands/CancelExportTaskCommand.ts | 6 +- .../CancelImageLaunchPermissionCommand.ts | 6 +- .../src/commands/CancelImportTaskCommand.ts | 6 +- .../CancelReservedInstancesListingCommand.ts | 6 +- .../CancelSpotFleetRequestsCommand.ts | 6 +- .../CancelSpotInstanceRequestsCommand.ts | 6 +- .../commands/ConfirmProductInstanceCommand.ts | 6 +- .../src/commands/CopyFpgaImageCommand.ts | 6 +- .../src/commands/CopyImageCommand.ts | 6 +- .../src/commands/CopySnapshotCommand.ts | 6 +- .../src/commands/CopyVolumesCommand.ts | 6 +- .../CreateCapacityManagerDataExportCommand.ts | 6 +- ...teCapacityReservationBySplittingCommand.ts | 6 +- .../CreateCapacityReservationCommand.ts | 6 +- .../CreateCapacityReservationFleetCommand.ts | 6 +- .../commands/CreateCarrierGatewayCommand.ts | 6 +- .../CreateClientVpnEndpointCommand.ts | 6 +- .../commands/CreateClientVpnRouteCommand.ts | 6 +- .../src/commands/CreateCoipCidrCommand.ts | 6 +- .../src/commands/CreateCoipPoolCommand.ts | 6 +- .../commands/CreateCustomerGatewayCommand.ts | 6 +- .../commands/CreateDefaultSubnetCommand.ts | 6 +- .../src/commands/CreateDefaultVpcCommand.ts | 6 +- ...teDelegateMacVolumeOwnershipTaskCommand.ts | 6 +- .../src/commands/CreateDhcpOptionsCommand.ts | 6 +- .../CreateEgressOnlyInternetGatewayCommand.ts | 6 +- .../src/commands/CreateFleetCommand.ts | 6 +- .../src/commands/CreateFlowLogsCommand.ts | 6 +- .../src/commands/CreateFpgaImageCommand.ts | 6 +- .../src/commands/CreateImageCommand.ts | 6 +- .../commands/CreateImageUsageReportCommand.ts | 6 +- .../CreateInstanceConnectEndpointCommand.ts | 6 +- .../CreateInstanceEventWindowCommand.ts | 6 +- .../CreateInstanceExportTaskCommand.ts | 6 +- .../commands/CreateInternetGatewayCommand.ts | 6 +- ...bleCapacityReservationAllocationCommand.ts | 6 +- .../src/commands/CreateIpamCommand.ts | 6 +- ...xternalResourceVerificationTokenCommand.ts | 6 +- .../src/commands/CreateIpamPolicyCommand.ts | 6 +- .../src/commands/CreateIpamPoolCommand.ts | 6 +- .../CreateIpamPrefixListResolverCommand.ts | 6 +- ...eateIpamPrefixListResolverTargetCommand.ts | 6 +- .../CreateIpamResourceDiscoveryCommand.ts | 6 +- .../src/commands/CreateIpamScopeCommand.ts | 6 +- .../src/commands/CreateKeyPairCommand.ts | 6 +- .../commands/CreateLaunchTemplateCommand.ts | 6 +- .../CreateLaunchTemplateVersionCommand.ts | 6 +- .../CreateLocalGatewayRouteCommand.ts | 6 +- .../CreateLocalGatewayRouteTableCommand.ts | 6 +- ...VirtualInterfaceGroupAssociationCommand.ts | 6 +- ...lGatewayRouteTableVpcAssociationCommand.ts | 6 +- ...eateLocalGatewayVirtualInterfaceCommand.ts | 6 +- ...ocalGatewayVirtualInterfaceGroupCommand.ts | 6 +- ...egrityProtectionModificationTaskCommand.ts | 6 +- .../CreateManagedPrefixListCommand.ts | 6 +- .../src/commands/CreateNatGatewayCommand.ts | 6 +- .../src/commands/CreateNetworkAclCommand.ts | 6 +- .../commands/CreateNetworkAclEntryCommand.ts | 6 +- ...CreateNetworkInsightsAccessScopeCommand.ts | 9 +- .../CreateNetworkInsightsPathCommand.ts | 6 +- .../commands/CreateNetworkInterfaceCommand.ts | 6 +- ...CreateNetworkInterfacePermissionCommand.ts | 9 +- .../commands/CreatePlacementGroupCommand.ts | 6 +- .../commands/CreatePublicIpv4PoolCommand.ts | 6 +- .../CreateReplaceRootVolumeTaskCommand.ts | 6 +- .../CreateReservedInstancesListingCommand.ts | 6 +- .../commands/CreateRestoreImageTaskCommand.ts | 6 +- .../src/commands/CreateRouteCommand.ts | 6 +- .../src/commands/CreateRouteServerCommand.ts | 6 +- .../CreateRouteServerEndpointCommand.ts | 6 +- .../commands/CreateRouteServerPeerCommand.ts | 6 +- .../src/commands/CreateRouteTableCommand.ts | 6 +- .../commands/CreateSecurityGroupCommand.ts | 6 +- .../src/commands/CreateSnapshotCommand.ts | 6 +- .../src/commands/CreateSnapshotsCommand.ts | 6 +- .../CreateSpotDatafeedSubscriptionCommand.ts | 8 +- .../commands/CreateStoreImageTaskCommand.ts | 6 +- .../CreateSubnetCidrReservationCommand.ts | 6 +- .../src/commands/CreateSubnetCommand.ts | 6 +- .../src/commands/CreateTagsCommand.ts | 6 +- .../CreateTrafficMirrorFilterCommand.ts | 6 +- .../CreateTrafficMirrorFilterRuleCommand.ts | 6 +- .../CreateTrafficMirrorSessionCommand.ts | 6 +- .../CreateTrafficMirrorTargetCommand.ts | 6 +- .../commands/CreateTransitGatewayCommand.ts | 6 +- .../CreateTransitGatewayConnectCommand.ts | 6 +- .../CreateTransitGatewayConnectPeerCommand.ts | 6 +- ...eateTransitGatewayMeteringPolicyCommand.ts | 6 +- ...ransitGatewayMeteringPolicyEntryCommand.ts | 6 +- ...ateTransitGatewayMulticastDomainCommand.ts | 6 +- ...eTransitGatewayPeeringAttachmentCommand.ts | 6 +- .../CreateTransitGatewayPolicyTableCommand.ts | 6 +- ...ransitGatewayPrefixListReferenceCommand.ts | 6 +- .../CreateTransitGatewayRouteCommand.ts | 6 +- ...sitGatewayRouteTableAnnouncementCommand.ts | 6 +- .../CreateTransitGatewayRouteTableCommand.ts | 6 +- ...reateTransitGatewayVpcAttachmentCommand.ts | 9 +- .../CreateVerifiedAccessEndpointCommand.ts | 6 +- .../CreateVerifiedAccessGroupCommand.ts | 6 +- .../CreateVerifiedAccessInstanceCommand.ts | 6 +- ...reateVerifiedAccessTrustProviderCommand.ts | 9 +- .../src/commands/CreateVolumeCommand.ts | 8 +- ...ateVpcBlockPublicAccessExclusionCommand.ts | 6 +- .../src/commands/CreateVpcCommand.ts | 6 +- .../CreateVpcEncryptionControlCommand.ts | 6 +- .../src/commands/CreateVpcEndpointCommand.ts | 6 +- ...pcEndpointConnectionNotificationCommand.ts | 6 +- ...eVpcEndpointServiceConfigurationCommand.ts | 6 +- .../CreateVpcPeeringConnectionCommand.ts | 6 +- .../commands/CreateVpnConcentratorCommand.ts | 6 +- .../commands/CreateVpnConnectionCommand.ts | 6 +- .../CreateVpnConnectionRouteCommand.ts | 6 +- .../src/commands/CreateVpnGatewayCommand.ts | 6 +- .../DeleteCapacityManagerDataExportCommand.ts | 6 +- .../commands/DeleteCarrierGatewayCommand.ts | 6 +- .../DeleteClientVpnEndpointCommand.ts | 6 +- .../commands/DeleteClientVpnRouteCommand.ts | 6 +- .../src/commands/DeleteCoipCidrCommand.ts | 6 +- .../src/commands/DeleteCoipPoolCommand.ts | 6 +- .../commands/DeleteCustomerGatewayCommand.ts | 6 +- .../src/commands/DeleteDhcpOptionsCommand.ts | 6 +- .../DeleteEgressOnlyInternetGatewayCommand.ts | 6 +- .../src/commands/DeleteFleetsCommand.ts | 6 +- .../src/commands/DeleteFlowLogsCommand.ts | 6 +- .../src/commands/DeleteFpgaImageCommand.ts | 6 +- .../commands/DeleteImageUsageReportCommand.ts | 6 +- .../DeleteInstanceConnectEndpointCommand.ts | 6 +- .../DeleteInstanceEventWindowCommand.ts | 6 +- .../commands/DeleteInternetGatewayCommand.ts | 6 +- .../src/commands/DeleteIpamCommand.ts | 6 +- ...xternalResourceVerificationTokenCommand.ts | 6 +- .../src/commands/DeleteIpamPolicyCommand.ts | 6 +- .../src/commands/DeleteIpamPoolCommand.ts | 6 +- .../DeleteIpamPrefixListResolverCommand.ts | 6 +- ...leteIpamPrefixListResolverTargetCommand.ts | 6 +- .../DeleteIpamResourceDiscoveryCommand.ts | 6 +- .../src/commands/DeleteIpamScopeCommand.ts | 6 +- .../src/commands/DeleteKeyPairCommand.ts | 6 +- .../commands/DeleteLaunchTemplateCommand.ts | 6 +- .../DeleteLaunchTemplateVersionsCommand.ts | 6 +- .../DeleteLocalGatewayRouteCommand.ts | 6 +- .../DeleteLocalGatewayRouteTableCommand.ts | 6 +- ...VirtualInterfaceGroupAssociationCommand.ts | 6 +- ...lGatewayRouteTableVpcAssociationCommand.ts | 6 +- ...leteLocalGatewayVirtualInterfaceCommand.ts | 6 +- ...ocalGatewayVirtualInterfaceGroupCommand.ts | 6 +- .../DeleteManagedPrefixListCommand.ts | 6 +- .../src/commands/DeleteNatGatewayCommand.ts | 6 +- .../src/commands/DeleteNetworkAclCommand.ts | 6 +- .../commands/DeleteNetworkAclEntryCommand.ts | 6 +- ...tworkInsightsAccessScopeAnalysisCommand.ts | 6 +- ...DeleteNetworkInsightsAccessScopeCommand.ts | 9 +- .../DeleteNetworkInsightsAnalysisCommand.ts | 6 +- .../DeleteNetworkInsightsPathCommand.ts | 6 +- .../commands/DeleteNetworkInterfaceCommand.ts | 6 +- ...DeleteNetworkInterfacePermissionCommand.ts | 9 +- .../commands/DeletePlacementGroupCommand.ts | 6 +- .../commands/DeletePublicIpv4PoolCommand.ts | 6 +- .../DeleteQueuedReservedInstancesCommand.ts | 6 +- .../src/commands/DeleteRouteCommand.ts | 6 +- .../src/commands/DeleteRouteServerCommand.ts | 6 +- .../DeleteRouteServerEndpointCommand.ts | 6 +- .../commands/DeleteRouteServerPeerCommand.ts | 6 +- .../src/commands/DeleteRouteTableCommand.ts | 6 +- .../commands/DeleteSecurityGroupCommand.ts | 6 +- .../src/commands/DeleteSnapshotCommand.ts | 6 +- .../DeleteSpotDatafeedSubscriptionCommand.ts | 6 +- .../DeleteSubnetCidrReservationCommand.ts | 6 +- .../src/commands/DeleteSubnetCommand.ts | 6 +- .../src/commands/DeleteTagsCommand.ts | 6 +- .../DeleteTrafficMirrorFilterCommand.ts | 6 +- .../DeleteTrafficMirrorFilterRuleCommand.ts | 6 +- .../DeleteTrafficMirrorSessionCommand.ts | 6 +- .../DeleteTrafficMirrorTargetCommand.ts | 6 +- .../commands/DeleteTransitGatewayCommand.ts | 6 +- .../DeleteTransitGatewayConnectCommand.ts | 6 +- .../DeleteTransitGatewayConnectPeerCommand.ts | 6 +- ...leteTransitGatewayMeteringPolicyCommand.ts | 6 +- ...ransitGatewayMeteringPolicyEntryCommand.ts | 6 +- ...eteTransitGatewayMulticastDomainCommand.ts | 6 +- ...eTransitGatewayPeeringAttachmentCommand.ts | 6 +- .../DeleteTransitGatewayPolicyTableCommand.ts | 8 +- ...ransitGatewayPrefixListReferenceCommand.ts | 6 +- .../DeleteTransitGatewayRouteCommand.ts | 6 +- ...sitGatewayRouteTableAnnouncementCommand.ts | 6 +- .../DeleteTransitGatewayRouteTableCommand.ts | 6 +- ...eleteTransitGatewayVpcAttachmentCommand.ts | 9 +- .../DeleteVerifiedAccessEndpointCommand.ts | 6 +- .../DeleteVerifiedAccessGroupCommand.ts | 6 +- .../DeleteVerifiedAccessInstanceCommand.ts | 6 +- ...eleteVerifiedAccessTrustProviderCommand.ts | 9 +- .../src/commands/DeleteVolumeCommand.ts | 6 +- ...eteVpcBlockPublicAccessExclusionCommand.ts | 6 +- .../src/commands/DeleteVpcCommand.ts | 6 +- .../DeleteVpcEncryptionControlCommand.ts | 6 +- ...cEndpointConnectionNotificationsCommand.ts | 6 +- ...VpcEndpointServiceConfigurationsCommand.ts | 6 +- .../src/commands/DeleteVpcEndpointsCommand.ts | 6 +- .../DeleteVpcPeeringConnectionCommand.ts | 6 +- .../commands/DeleteVpnConcentratorCommand.ts | 6 +- .../commands/DeleteVpnConnectionCommand.ts | 6 +- .../DeleteVpnConnectionRouteCommand.ts | 6 +- .../src/commands/DeleteVpnGatewayCommand.ts | 6 +- .../commands/DeprovisionByoipCidrCommand.ts | 6 +- .../commands/DeprovisionIpamByoasnCommand.ts | 6 +- .../DeprovisionIpamPoolCidrCommand.ts | 6 +- .../DeprovisionPublicIpv4PoolCidrCommand.ts | 6 +- .../src/commands/DeregisterImageCommand.ts | 6 +- ...tanceEventNotificationAttributesCommand.ts | 6 +- ...nsitGatewayMulticastGroupMembersCommand.ts | 6 +- ...nsitGatewayMulticastGroupSourcesCommand.ts | 6 +- .../DescribeAccountAttributesCommand.ts | 6 +- .../DescribeAddressTransfersCommand.ts | 6 +- .../DescribeAddressesAttributeCommand.ts | 6 +- .../src/commands/DescribeAddressesCommand.ts | 6 +- .../DescribeAggregateIdFormatCommand.ts | 6 +- .../DescribeAvailabilityZonesCommand.ts | 6 +- ...rkPerformanceMetricSubscriptionsCommand.ts | 6 +- .../commands/DescribeBundleTasksCommand.ts | 6 +- .../src/commands/DescribeByoipCidrsCommand.ts | 6 +- ...ibeCapacityBlockExtensionHistoryCommand.ts | 6 +- ...eCapacityBlockExtensionOfferingsCommand.ts | 6 +- .../DescribeCapacityBlockOfferingsCommand.ts | 6 +- .../DescribeCapacityBlockStatusCommand.ts | 6 +- .../commands/DescribeCapacityBlocksCommand.ts | 6 +- ...scribeCapacityManagerDataExportsCommand.ts | 6 +- ...pacityReservationBillingRequestsCommand.ts | 6 +- ...escribeCapacityReservationFleetsCommand.ts | 9 +- ...cribeCapacityReservationTopologyCommand.ts | 6 +- .../DescribeCapacityReservationsCommand.ts | 6 +- .../DescribeCarrierGatewaysCommand.ts | 6 +- .../DescribeClassicLinkInstancesCommand.ts | 6 +- ...cribeClientVpnAuthorizationRulesCommand.ts | 6 +- .../DescribeClientVpnConnectionsCommand.ts | 6 +- .../DescribeClientVpnEndpointsCommand.ts | 6 +- .../DescribeClientVpnRoutesCommand.ts | 6 +- .../DescribeClientVpnTargetNetworksCommand.ts | 6 +- .../src/commands/DescribeCoipPoolsCommand.ts | 6 +- .../DescribeConversionTasksCommand.ts | 6 +- .../DescribeCustomerGatewaysCommand.ts | 6 +- ...scribeDeclarativePoliciesReportsCommand.ts | 6 +- .../commands/DescribeDhcpOptionsCommand.ts | 6 +- ...scribeEgressOnlyInternetGatewaysCommand.ts | 6 +- .../commands/DescribeElasticGpusCommand.ts | 6 +- .../DescribeExportImageTasksCommand.ts | 6 +- .../commands/DescribeExportTasksCommand.ts | 6 +- .../DescribeFastLaunchImagesCommand.ts | 6 +- .../DescribeFastSnapshotRestoresCommand.ts | 6 +- .../commands/DescribeFleetHistoryCommand.ts | 6 +- .../commands/DescribeFleetInstancesCommand.ts | 6 +- .../src/commands/DescribeFleetsCommand.ts | 6 +- .../src/commands/DescribeFlowLogsCommand.ts | 6 +- .../DescribeFpgaImageAttributeCommand.ts | 6 +- .../src/commands/DescribeFpgaImagesCommand.ts | 6 +- ...DescribeHostReservationOfferingsCommand.ts | 9 +- .../DescribeHostReservationsCommand.ts | 6 +- .../src/commands/DescribeHostsCommand.ts | 6 +- ...beIamInstanceProfileAssociationsCommand.ts | 6 +- .../src/commands/DescribeIdFormatCommand.ts | 6 +- .../DescribeIdentityIdFormatCommand.ts | 6 +- .../commands/DescribeImageAttributeCommand.ts | 6 +- .../DescribeImageReferencesCommand.ts | 6 +- .../DescribeImageUsageReportEntriesCommand.ts | 6 +- .../DescribeImageUsageReportsCommand.ts | 6 +- .../src/commands/DescribeImagesCommand.ts | 6 +- .../DescribeImportImageTasksCommand.ts | 6 +- .../DescribeImportSnapshotTasksCommand.ts | 6 +- .../DescribeInstanceAttributeCommand.ts | 6 +- ...DescribeInstanceConnectEndpointsCommand.ts | 9 +- ...ribeInstanceCreditSpecificationsCommand.ts | 6 +- ...tanceEventNotificationAttributesCommand.ts | 6 +- .../DescribeInstanceEventWindowsCommand.ts | 6 +- .../DescribeInstanceImageMetadataCommand.ts | 6 +- ...scribeInstanceSqlHaHistoryStatesCommand.ts | 6 +- .../DescribeInstanceSqlHaStatesCommand.ts | 6 +- .../commands/DescribeInstanceStatusCommand.ts | 6 +- .../DescribeInstanceTopologyCommand.ts | 6 +- .../DescribeInstanceTypeOfferingsCommand.ts | 6 +- .../commands/DescribeInstanceTypesCommand.ts | 6 +- .../src/commands/DescribeInstancesCommand.ts | 8 +- .../DescribeInternetGatewaysCommand.ts | 6 +- .../src/commands/DescribeIpamByoasnCommand.ts | 6 +- ...ternalResourceVerificationTokensCommand.ts | 6 +- .../commands/DescribeIpamPoliciesCommand.ts | 6 +- .../src/commands/DescribeIpamPoolsCommand.ts | 6 +- ...ibeIpamPrefixListResolverTargetsCommand.ts | 6 +- .../DescribeIpamPrefixListResolversCommand.ts | 6 +- .../DescribeIpamResourceDiscoveriesCommand.ts | 6 +- ...pamResourceDiscoveryAssociationsCommand.ts | 6 +- .../src/commands/DescribeIpamScopesCommand.ts | 6 +- .../src/commands/DescribeIpamsCommand.ts | 6 +- .../src/commands/DescribeIpv6PoolsCommand.ts | 6 +- .../src/commands/DescribeKeyPairsCommand.ts | 6 +- .../DescribeLaunchTemplateVersionsCommand.ts | 6 +- .../DescribeLaunchTemplatesCommand.ts | 6 +- ...irtualInterfaceGroupAssociationsCommand.ts | 6 +- ...GatewayRouteTableVpcAssociationsCommand.ts | 6 +- .../DescribeLocalGatewayRouteTablesCommand.ts | 6 +- ...calGatewayVirtualInterfaceGroupsCommand.ts | 6 +- ...ibeLocalGatewayVirtualInterfacesCommand.ts | 6 +- .../commands/DescribeLocalGatewaysCommand.ts | 6 +- .../DescribeLockedSnapshotsCommand.ts | 6 +- .../src/commands/DescribeMacHostsCommand.ts | 6 +- .../DescribeMacModificationTasksCommand.ts | 6 +- .../DescribeManagedPrefixListsCommand.ts | 6 +- .../DescribeMovingAddressesCommand.ts | 6 +- .../commands/DescribeNatGatewaysCommand.ts | 6 +- .../commands/DescribeNetworkAclsCommand.ts | 6 +- ...tworkInsightsAccessScopeAnalysesCommand.ts | 6 +- ...cribeNetworkInsightsAccessScopesCommand.ts | 6 +- .../DescribeNetworkInsightsAnalysesCommand.ts | 6 +- .../DescribeNetworkInsightsPathsCommand.ts | 6 +- ...escribeNetworkInterfaceAttributeCommand.ts | 9 +- ...cribeNetworkInterfacePermissionsCommand.ts | 6 +- .../DescribeNetworkInterfacesCommand.ts | 6 +- .../commands/DescribeOutpostLagsCommand.ts | 6 +- .../DescribePlacementGroupsCommand.ts | 6 +- .../commands/DescribePrefixListsCommand.ts | 6 +- .../DescribePrincipalIdFormatCommand.ts | 6 +- .../DescribePublicIpv4PoolsCommand.ts | 6 +- .../src/commands/DescribeRegionsCommand.ts | 6 +- .../DescribeReplaceRootVolumeTasksCommand.ts | 6 +- .../DescribeReservedInstancesCommand.ts | 6 +- ...escribeReservedInstancesListingsCommand.ts | 9 +- ...beReservedInstancesModificationsCommand.ts | 6 +- ...scribeReservedInstancesOfferingsCommand.ts | 6 +- .../DescribeRouteServerEndpointsCommand.ts | 6 +- .../DescribeRouteServerPeersCommand.ts | 6 +- .../commands/DescribeRouteServersCommand.ts | 6 +- .../commands/DescribeRouteTablesCommand.ts | 6 +- ...ibeScheduledInstanceAvailabilityCommand.ts | 6 +- .../DescribeScheduledInstancesCommand.ts | 6 +- .../DescribeSecurityGroupReferencesCommand.ts | 6 +- .../DescribeSecurityGroupRulesCommand.ts | 6 +- ...ribeSecurityGroupVpcAssociationsCommand.ts | 6 +- .../commands/DescribeSecurityGroupsCommand.ts | 6 +- ...ribeServiceLinkVirtualInterfacesCommand.ts | 6 +- .../DescribeSnapshotAttributeCommand.ts | 6 +- .../DescribeSnapshotTierStatusCommand.ts | 6 +- .../src/commands/DescribeSnapshotsCommand.ts | 6 +- ...DescribeSpotDatafeedSubscriptionCommand.ts | 9 +- .../DescribeSpotFleetInstancesCommand.ts | 6 +- .../DescribeSpotFleetRequestHistoryCommand.ts | 9 +- .../DescribeSpotFleetRequestsCommand.ts | 6 +- .../DescribeSpotInstanceRequestsCommand.ts | 6 +- .../DescribeSpotPriceHistoryCommand.ts | 6 +- .../DescribeStaleSecurityGroupsCommand.ts | 6 +- .../DescribeStoreImageTasksCommand.ts | 6 +- .../src/commands/DescribeSubnetsCommand.ts | 6 +- .../src/commands/DescribeTagsCommand.ts | 6 +- ...DescribeTrafficMirrorFilterRulesCommand.ts | 9 +- .../DescribeTrafficMirrorFiltersCommand.ts | 6 +- .../DescribeTrafficMirrorSessionsCommand.ts | 6 +- .../DescribeTrafficMirrorTargetsCommand.ts | 6 +- ...escribeTransitGatewayAttachmentsCommand.ts | 9 +- ...scribeTransitGatewayConnectPeersCommand.ts | 6 +- .../DescribeTransitGatewayConnectsCommand.ts | 6 +- ...beTransitGatewayMeteringPoliciesCommand.ts | 6 +- ...beTransitGatewayMulticastDomainsCommand.ts | 6 +- ...TransitGatewayPeeringAttachmentsCommand.ts | 6 +- ...scribeTransitGatewayPolicyTablesCommand.ts | 6 +- ...itGatewayRouteTableAnnouncementsCommand.ts | 6 +- ...escribeTransitGatewayRouteTablesCommand.ts | 9 +- ...ribeTransitGatewayVpcAttachmentsCommand.ts | 6 +- .../DescribeTransitGatewaysCommand.ts | 6 +- ...scribeTrunkInterfaceAssociationsCommand.ts | 6 +- .../DescribeVerifiedAccessEndpointsCommand.ts | 6 +- .../DescribeVerifiedAccessGroupsCommand.ts | 6 +- ...essInstanceLoggingConfigurationsCommand.ts | 8 +- .../DescribeVerifiedAccessInstancesCommand.ts | 6 +- ...ribeVerifiedAccessTrustProvidersCommand.ts | 6 +- .../DescribeVolumeAttributeCommand.ts | 6 +- .../commands/DescribeVolumeStatusCommand.ts | 6 +- .../src/commands/DescribeVolumesCommand.ts | 6 +- .../DescribeVolumesModificationsCommand.ts | 6 +- .../commands/DescribeVpcAttributeCommand.ts | 6 +- ...beVpcBlockPublicAccessExclusionsCommand.ts | 6 +- ...cribeVpcBlockPublicAccessOptionsCommand.ts | 6 +- .../commands/DescribeVpcClassicLinkCommand.ts | 6 +- ...DescribeVpcClassicLinkDnsSupportCommand.ts | 9 +- .../DescribeVpcEncryptionControlsCommand.ts | 6 +- .../DescribeVpcEndpointAssociationsCommand.ts | 6 +- ...cEndpointConnectionNotificationsCommand.ts | 6 +- .../DescribeVpcEndpointConnectionsCommand.ts | 6 +- ...VpcEndpointServiceConfigurationsCommand.ts | 6 +- ...ibeVpcEndpointServicePermissionsCommand.ts | 6 +- .../DescribeVpcEndpointServicesCommand.ts | 6 +- .../commands/DescribeVpcEndpointsCommand.ts | 6 +- .../DescribeVpcPeeringConnectionsCommand.ts | 6 +- .../src/commands/DescribeVpcsCommand.ts | 6 +- .../DescribeVpnConcentratorsCommand.ts | 6 +- .../commands/DescribeVpnConnectionsCommand.ts | 6 +- .../commands/DescribeVpnGatewaysCommand.ts | 6 +- .../commands/DetachClassicLinkVpcCommand.ts | 6 +- .../commands/DetachInternetGatewayCommand.ts | 6 +- .../commands/DetachNetworkInterfaceCommand.ts | 6 +- ...etachVerifiedAccessTrustProviderCommand.ts | 9 +- .../src/commands/DetachVolumeCommand.ts | 8 +- .../src/commands/DetachVpnGatewayCommand.ts | 6 +- .../commands/DisableAddressTransferCommand.ts | 6 +- .../DisableAllowedImagesSettingsCommand.ts | 6 +- ...orkPerformanceMetricSubscriptionCommand.ts | 6 +- .../commands/DisableCapacityManagerCommand.ts | 6 +- .../DisableEbsEncryptionByDefaultCommand.ts | 6 +- .../src/commands/DisableFastLaunchCommand.ts | 6 +- .../DisableFastSnapshotRestoresCommand.ts | 6 +- .../DisableImageBlockPublicAccessCommand.ts | 6 +- .../src/commands/DisableImageCommand.ts | 6 +- .../DisableImageDeprecationCommand.ts | 6 +- ...bleImageDeregistrationProtectionCommand.ts | 6 +- ...leInstanceSqlHaStandbyDetectionsCommand.ts | 6 +- ...ableIpamOrganizationAdminAccountCommand.ts | 6 +- .../src/commands/DisableIpamPolicyCommand.ts | 6 +- .../DisableRouteServerPropagationCommand.ts | 6 +- .../DisableSerialConsoleAccessCommand.ts | 6 +- ...DisableSnapshotBlockPublicAccessCommand.ts | 9 +- ...nsitGatewayRouteTablePropagationCommand.ts | 6 +- .../DisableVgwRoutePropagationCommand.ts | 6 +- .../commands/DisableVpcClassicLinkCommand.ts | 6 +- .../DisableVpcClassicLinkDnsSupportCommand.ts | 6 +- .../commands/DisassociateAddressCommand.ts | 6 +- ...eCapacityReservationBillingOwnerCommand.ts | 6 +- ...sassociateClientVpnTargetNetworkCommand.ts | 6 +- ...sociateEnclaveCertificateIamRoleCommand.ts | 6 +- .../DisassociateIamInstanceProfileCommand.ts | 6 +- .../DisassociateInstanceEventWindowCommand.ts | 6 +- .../commands/DisassociateIpamByoasnCommand.ts | 6 +- ...isassociateIpamResourceDiscoveryCommand.ts | 9 +- .../DisassociateNatGatewayAddressCommand.ts | 6 +- .../DisassociateRouteServerCommand.ts | 6 +- .../commands/DisassociateRouteTableCommand.ts | 6 +- .../DisassociateSecurityGroupVpcCommand.ts | 6 +- .../DisassociateSubnetCidrBlockCommand.ts | 6 +- ...ateTransitGatewayMulticastDomainCommand.ts | 6 +- ...sociateTransitGatewayPolicyTableCommand.ts | 6 +- ...ssociateTransitGatewayRouteTableCommand.ts | 6 +- .../DisassociateTrunkInterfaceCommand.ts | 6 +- .../DisassociateVpcCidrBlockCommand.ts | 6 +- .../commands/EnableAddressTransferCommand.ts | 6 +- .../EnableAllowedImagesSettingsCommand.ts | 6 +- ...orkPerformanceMetricSubscriptionCommand.ts | 6 +- .../commands/EnableCapacityManagerCommand.ts | 6 +- .../EnableEbsEncryptionByDefaultCommand.ts | 6 +- .../src/commands/EnableFastLaunchCommand.ts | 6 +- .../EnableFastSnapshotRestoresCommand.ts | 6 +- .../EnableImageBlockPublicAccessCommand.ts | 6 +- .../src/commands/EnableImageCommand.ts | 6 +- .../commands/EnableImageDeprecationCommand.ts | 6 +- ...bleImageDeregistrationProtectionCommand.ts | 6 +- ...leInstanceSqlHaStandbyDetectionsCommand.ts | 6 +- ...ableIpamOrganizationAdminAccountCommand.ts | 6 +- .../src/commands/EnableIpamPolicyCommand.ts | 6 +- ...ilityAnalyzerOrganizationSharingCommand.ts | 6 +- .../EnableRouteServerPropagationCommand.ts | 6 +- .../EnableSerialConsoleAccessCommand.ts | 6 +- .../EnableSnapshotBlockPublicAccessCommand.ts | 6 +- ...nsitGatewayRouteTablePropagationCommand.ts | 6 +- .../EnableVgwRoutePropagationCommand.ts | 6 +- .../src/commands/EnableVolumeIOCommand.ts | 6 +- .../commands/EnableVpcClassicLinkCommand.ts | 6 +- .../EnableVpcClassicLinkDnsSupportCommand.ts | 6 +- ...nClientCertificateRevocationListCommand.ts | 6 +- ...portClientVpnClientConfigurationCommand.ts | 6 +- .../src/commands/ExportImageCommand.ts | 6 +- .../ExportTransitGatewayRoutesCommand.ts | 6 +- ...ccessInstanceClientConfigurationCommand.ts | 6 +- .../GetActiveVpnTunnelStatusCommand.ts | 6 +- .../GetAllowedImagesSettingsCommand.ts | 6 +- ...ciatedEnclaveCertificateIamRolesCommand.ts | 6 +- .../GetAssociatedIpv6PoolCidrsCommand.ts | 6 +- .../GetAwsNetworkPerformanceDataCommand.ts | 6 +- .../GetCapacityManagerAttributesCommand.ts | 6 +- .../GetCapacityManagerMetricDataCommand.ts | 6 +- ...tCapacityManagerMetricDimensionsCommand.ts | 6 +- .../GetCapacityReservationUsageCommand.ts | 6 +- .../src/commands/GetCoipPoolUsageCommand.ts | 6 +- .../src/commands/GetConsoleOutputCommand.ts | 6 +- .../commands/GetConsoleScreenshotCommand.ts | 6 +- ...DeclarativePoliciesReportSummaryCommand.ts | 6 +- .../GetDefaultCreditSpecificationCommand.ts | 6 +- .../commands/GetEbsDefaultKmsKeyIdCommand.ts | 6 +- .../GetEbsEncryptionByDefaultCommand.ts | 6 +- .../commands/GetEnabledIpamPolicyCommand.ts | 6 +- .../GetFlowLogsIntegrationTemplateCommand.ts | 6 +- .../GetGroupsForCapacityReservationCommand.ts | 6 +- ...etHostReservationPurchasePreviewCommand.ts | 9 +- .../src/commands/GetImageAncestryCommand.ts | 6 +- .../GetImageBlockPublicAccessStateCommand.ts | 6 +- .../GetInstanceMetadataDefaultsCommand.ts | 6 +- .../commands/GetInstanceTpmEkPubCommand.ts | 6 +- ...nceTypesFromInstanceRequirementsCommand.ts | 6 +- .../commands/GetInstanceUefiDataCommand.ts | 6 +- .../commands/GetIpamAddressHistoryCommand.ts | 6 +- .../GetIpamDiscoveredAccountsCommand.ts | 6 +- ...GetIpamDiscoveredPublicAddressesCommand.ts | 9 +- .../GetIpamDiscoveredResourceCidrsCommand.ts | 6 +- .../GetIpamPolicyAllocationRulesCommand.ts | 6 +- ...GetIpamPolicyOrganizationTargetsCommand.ts | 9 +- .../commands/GetIpamPoolAllocationsCommand.ts | 6 +- .../src/commands/GetIpamPoolCidrsCommand.ts | 6 +- .../GetIpamPrefixListResolverRulesCommand.ts | 6 +- ...PrefixListResolverVersionEntriesCommand.ts | 6 +- ...etIpamPrefixListResolverVersionsCommand.ts | 9 +- .../commands/GetIpamResourceCidrsCommand.ts | 6 +- .../commands/GetLaunchTemplateDataCommand.ts | 6 +- ...GetManagedPrefixListAssociationsCommand.ts | 9 +- .../GetManagedPrefixListEntriesCommand.ts | 6 +- ...ightsAccessScopeAnalysisFindingsCommand.ts | 6 +- ...etworkInsightsAccessScopeContentCommand.ts | 6 +- .../src/commands/GetPasswordDataCommand.ts | 6 +- ...etReservedInstancesExchangeQuoteCommand.ts | 9 +- .../GetRouteServerAssociationsCommand.ts | 6 +- .../GetRouteServerPropagationsCommand.ts | 6 +- .../GetRouteServerRoutingDatabaseCommand.ts | 6 +- .../GetSecurityGroupsForVpcCommand.ts | 6 +- .../GetSerialConsoleAccessStatusCommand.ts | 6 +- ...etSnapshotBlockPublicAccessStateCommand.ts | 9 +- .../commands/GetSpotPlacementScoresCommand.ts | 6 +- .../GetSubnetCidrReservationsCommand.ts | 6 +- ...sitGatewayAttachmentPropagationsCommand.ts | 6 +- ...nsitGatewayMeteringPolicyEntriesCommand.ts | 6 +- ...tewayMulticastDomainAssociationsCommand.ts | 6 +- ...itGatewayPolicyTableAssociationsCommand.ts | 6 +- ...TransitGatewayPolicyTableEntriesCommand.ts | 6 +- ...ansitGatewayPrefixListReferencesCommand.ts | 6 +- ...sitGatewayRouteTableAssociationsCommand.ts | 6 +- ...sitGatewayRouteTablePropagationsCommand.ts | 6 +- .../GetVerifiedAccessEndpointPolicyCommand.ts | 6 +- ...GetVerifiedAccessEndpointTargetsCommand.ts | 9 +- .../GetVerifiedAccessGroupPolicyCommand.ts | 6 +- ...cesBlockingEncryptionEnforcementCommand.ts | 6 +- ...nectionDeviceSampleConfigurationCommand.ts | 6 +- .../GetVpnConnectionDeviceTypesCommand.ts | 6 +- .../GetVpnTunnelReplacementStatusCommand.ts | 6 +- ...nClientCertificateRevocationListCommand.ts | 6 +- .../src/commands/ImportImageCommand.ts | 6 +- .../src/commands/ImportInstanceCommand.ts | 6 +- .../src/commands/ImportKeyPairCommand.ts | 6 +- .../src/commands/ImportSnapshotCommand.ts | 6 +- .../src/commands/ImportVolumeCommand.ts | 6 +- .../commands/ListImagesInRecycleBinCommand.ts | 6 +- .../ListSnapshotsInRecycleBinCommand.ts | 6 +- .../ListVolumesInRecycleBinCommand.ts | 6 +- .../src/commands/LockSnapshotCommand.ts | 6 +- .../commands/ModifyAddressAttributeCommand.ts | 6 +- .../ModifyAvailabilityZoneGroupCommand.ts | 6 +- .../ModifyCapacityReservationCommand.ts | 6 +- .../ModifyCapacityReservationFleetCommand.ts | 6 +- .../ModifyClientVpnEndpointCommand.ts | 6 +- ...ModifyDefaultCreditSpecificationCommand.ts | 9 +- .../ModifyEbsDefaultKmsKeyIdCommand.ts | 6 +- .../src/commands/ModifyFleetCommand.ts | 6 +- .../ModifyFpgaImageAttributeCommand.ts | 6 +- .../src/commands/ModifyHostsCommand.ts | 6 +- .../src/commands/ModifyIdFormatCommand.ts | 6 +- .../commands/ModifyIdentityIdFormatCommand.ts | 6 +- .../commands/ModifyImageAttributeCommand.ts | 6 +- .../ModifyInstanceAttributeCommand.ts | 6 +- ...nceCapacityReservationAttributesCommand.ts | 6 +- .../ModifyInstanceConnectEndpointCommand.ts | 6 +- .../ModifyInstanceCpuOptionsCommand.ts | 6 +- ...odifyInstanceCreditSpecificationCommand.ts | 9 +- .../ModifyInstanceEventStartTimeCommand.ts | 6 +- .../ModifyInstanceEventWindowCommand.ts | 6 +- ...ModifyInstanceMaintenanceOptionsCommand.ts | 9 +- .../ModifyInstanceMetadataDefaultsCommand.ts | 6 +- .../ModifyInstanceMetadataOptionsCommand.ts | 6 +- ...nstanceNetworkPerformanceOptionsCommand.ts | 9 +- .../ModifyInstancePlacementCommand.ts | 6 +- .../src/commands/ModifyIpamCommand.ts | 6 +- .../ModifyIpamPolicyAllocationRulesCommand.ts | 6 +- .../src/commands/ModifyIpamPoolCommand.ts | 6 +- .../ModifyIpamPrefixListResolverCommand.ts | 6 +- ...difyIpamPrefixListResolverTargetCommand.ts | 6 +- .../commands/ModifyIpamResourceCidrCommand.ts | 6 +- .../ModifyIpamResourceDiscoveryCommand.ts | 6 +- .../src/commands/ModifyIpamScopeCommand.ts | 6 +- .../commands/ModifyLaunchTemplateCommand.ts | 6 +- .../ModifyLocalGatewayRouteCommand.ts | 6 +- .../ModifyManagedPrefixListCommand.ts | 6 +- .../ModifyNetworkInterfaceAttributeCommand.ts | 6 +- .../ModifyPrivateDnsNameOptionsCommand.ts | 6 +- .../ModifyPublicIpDnsNameOptionsCommand.ts | 6 +- .../ModifyReservedInstancesCommand.ts | 6 +- .../src/commands/ModifyRouteServerCommand.ts | 6 +- .../ModifySecurityGroupRulesCommand.ts | 6 +- .../ModifySnapshotAttributeCommand.ts | 6 +- .../src/commands/ModifySnapshotTierCommand.ts | 6 +- .../commands/ModifySpotFleetRequestCommand.ts | 6 +- .../commands/ModifySubnetAttributeCommand.ts | 6 +- ...afficMirrorFilterNetworkServicesCommand.ts | 6 +- .../ModifyTrafficMirrorFilterRuleCommand.ts | 6 +- .../ModifyTrafficMirrorSessionCommand.ts | 6 +- .../commands/ModifyTransitGatewayCommand.ts | 6 +- ...difyTransitGatewayMeteringPolicyCommand.ts | 6 +- ...ransitGatewayPrefixListReferenceCommand.ts | 6 +- ...odifyTransitGatewayVpcAttachmentCommand.ts | 9 +- .../ModifyVerifiedAccessEndpointCommand.ts | 6 +- ...difyVerifiedAccessEndpointPolicyCommand.ts | 6 +- .../ModifyVerifiedAccessGroupCommand.ts | 6 +- .../ModifyVerifiedAccessGroupPolicyCommand.ts | 6 +- .../ModifyVerifiedAccessInstanceCommand.ts | 6 +- ...cessInstanceLoggingConfigurationCommand.ts | 6 +- ...odifyVerifiedAccessTrustProviderCommand.ts | 9 +- .../commands/ModifyVolumeAttributeCommand.ts | 6 +- .../src/commands/ModifyVolumeCommand.ts | 6 +- .../src/commands/ModifyVpcAttributeCommand.ts | 6 +- ...ifyVpcBlockPublicAccessExclusionCommand.ts | 6 +- ...odifyVpcBlockPublicAccessOptionsCommand.ts | 9 +- .../ModifyVpcEncryptionControlCommand.ts | 6 +- .../src/commands/ModifyVpcEndpointCommand.ts | 6 +- ...pcEndpointConnectionNotificationCommand.ts | 6 +- ...yVpcEndpointServiceConfigurationCommand.ts | 6 +- ...dpointServicePayerResponsibilityCommand.ts | 6 +- ...ifyVpcEndpointServicePermissionsCommand.ts | 6 +- ...odifyVpcPeeringConnectionOptionsCommand.ts | 9 +- .../src/commands/ModifyVpcTenancyCommand.ts | 6 +- .../commands/ModifyVpnConnectionCommand.ts | 6 +- .../ModifyVpnConnectionOptionsCommand.ts | 6 +- .../ModifyVpnTunnelCertificateCommand.ts | 6 +- .../commands/ModifyVpnTunnelOptionsCommand.ts | 6 +- .../src/commands/MonitorInstancesCommand.ts | 6 +- .../src/commands/MoveAddressToVpcCommand.ts | 6 +- .../commands/MoveByoipCidrToIpamCommand.ts | 6 +- ...MoveCapacityReservationInstancesCommand.ts | 9 +- .../src/commands/ProvisionByoipCidrCommand.ts | 6 +- .../commands/ProvisionIpamByoasnCommand.ts | 6 +- .../commands/ProvisionIpamPoolCidrCommand.ts | 6 +- .../ProvisionPublicIpv4PoolCidrCommand.ts | 6 +- .../commands/PurchaseCapacityBlockCommand.ts | 6 +- .../PurchaseCapacityBlockExtensionCommand.ts | 6 +- .../PurchaseHostReservationCommand.ts | 6 +- ...urchaseReservedInstancesOfferingCommand.ts | 9 +- .../PurchaseScheduledInstancesCommand.ts | 6 +- .../src/commands/RebootInstancesCommand.ts | 6 +- .../src/commands/RegisterImageCommand.ts | 6 +- ...tanceEventNotificationAttributesCommand.ts | 6 +- ...nsitGatewayMulticastGroupMembersCommand.ts | 6 +- ...nsitGatewayMulticastGroupSourcesCommand.ts | 6 +- ...acityReservationBillingOwnershipCommand.ts | 6 +- ...tewayMulticastDomainAssociationsCommand.ts | 6 +- ...tTransitGatewayPeeringAttachmentCommand.ts | 6 +- ...ejectTransitGatewayVpcAttachmentCommand.ts | 9 +- .../RejectVpcEndpointConnectionsCommand.ts | 6 +- .../RejectVpcPeeringConnectionCommand.ts | 6 +- .../src/commands/ReleaseAddressCommand.ts | 6 +- .../src/commands/ReleaseHostsCommand.ts | 6 +- .../ReleaseIpamPoolAllocationCommand.ts | 6 +- ...aceIamInstanceProfileAssociationCommand.ts | 6 +- ...eCriteriaInAllowedImagesSettingsCommand.ts | 6 +- .../ReplaceNetworkAclAssociationCommand.ts | 6 +- .../commands/ReplaceNetworkAclEntryCommand.ts | 6 +- .../src/commands/ReplaceRouteCommand.ts | 6 +- .../ReplaceRouteTableAssociationCommand.ts | 6 +- .../ReplaceTransitGatewayRouteCommand.ts | 6 +- .../src/commands/ReplaceVpnTunnelCommand.ts | 6 +- .../commands/ReportInstanceStatusCommand.ts | 6 +- .../src/commands/RequestSpotFleetCommand.ts | 6 +- .../commands/RequestSpotInstancesCommand.ts | 6 +- .../commands/ResetAddressAttributeCommand.ts | 6 +- .../ResetEbsDefaultKmsKeyIdCommand.ts | 6 +- .../ResetFpgaImageAttributeCommand.ts | 6 +- .../commands/ResetImageAttributeCommand.ts | 6 +- .../commands/ResetInstanceAttributeCommand.ts | 6 +- .../ResetNetworkInterfaceAttributeCommand.ts | 6 +- .../commands/ResetSnapshotAttributeCommand.ts | 6 +- .../RestoreAddressToClassicCommand.ts | 6 +- .../RestoreImageFromRecycleBinCommand.ts | 6 +- .../RestoreManagedPrefixListVersionCommand.ts | 6 +- .../RestoreSnapshotFromRecycleBinCommand.ts | 6 +- .../commands/RestoreSnapshotTierCommand.ts | 6 +- .../RestoreVolumeFromRecycleBinCommand.ts | 6 +- .../commands/RevokeClientVpnIngressCommand.ts | 6 +- .../RevokeSecurityGroupEgressCommand.ts | 6 +- .../RevokeSecurityGroupIngressCommand.ts | 6 +- .../src/commands/RunInstancesCommand.ts | 8 +- .../commands/RunScheduledInstancesCommand.ts | 6 +- .../SearchLocalGatewayRoutesCommand.ts | 6 +- ...rchTransitGatewayMulticastGroupsCommand.ts | 6 +- .../SearchTransitGatewayRoutesCommand.ts | 6 +- .../SendDiagnosticInterruptCommand.ts | 6 +- .../StartDeclarativePoliciesReportCommand.ts | 6 +- .../src/commands/StartInstancesCommand.ts | 6 +- ...tworkInsightsAccessScopeAnalysisCommand.ts | 6 +- .../StartNetworkInsightsAnalysisCommand.ts | 6 +- ...intServicePrivateDnsVerificationCommand.ts | 6 +- .../src/commands/StopInstancesCommand.ts | 6 +- .../TerminateClientVpnConnectionsCommand.ts | 6 +- .../src/commands/TerminateInstancesCommand.ts | 6 +- .../commands/UnassignIpv6AddressesCommand.ts | 6 +- .../UnassignPrivateIpAddressesCommand.ts | 6 +- ...UnassignPrivateNatGatewayAddressCommand.ts | 9 +- .../src/commands/UnlockSnapshotCommand.ts | 6 +- .../src/commands/UnmonitorInstancesCommand.ts | 6 +- ...pacityManagerOrganizationsAccessCommand.ts | 6 +- ...bleCapacityReservationAllocationCommand.ts | 6 +- ...urityGroupRuleDescriptionsEgressCommand.ts | 6 +- ...rityGroupRuleDescriptionsIngressCommand.ts | 6 +- .../src/commands/WithdrawByoipCidrCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-ec2/src/extensionConfiguration.ts | 8 +- .../src/models/EC2ServiceException.ts | 2 +- .../DescribeAddressTransfersPaginator.ts | 2 +- .../DescribeAddressesAttributePaginator.ts | 2 +- ...PerformanceMetricSubscriptionsPaginator.ts | 2 +- .../pagination/DescribeByoipCidrsPaginator.ts | 2 +- ...eCapacityBlockExtensionHistoryPaginator.ts | 2 +- ...apacityBlockExtensionOfferingsPaginator.ts | 2 +- ...DescribeCapacityBlockOfferingsPaginator.ts | 2 +- .../DescribeCapacityBlockStatusPaginator.ts | 2 +- .../DescribeCapacityBlocksPaginator.ts | 2 +- ...ribeCapacityManagerDataExportsPaginator.ts | 2 +- ...cityReservationBillingRequestsPaginator.ts | 2 +- ...cribeCapacityReservationFleetsPaginator.ts | 2 +- .../DescribeCapacityReservationsPaginator.ts | 2 +- .../DescribeCarrierGatewaysPaginator.ts | 2 +- .../DescribeClassicLinkInstancesPaginator.ts | 2 +- ...ibeClientVpnAuthorizationRulesPaginator.ts | 2 +- .../DescribeClientVpnConnectionsPaginator.ts | 2 +- .../DescribeClientVpnEndpointsPaginator.ts | 2 +- .../DescribeClientVpnRoutesPaginator.ts | 2 +- ...escribeClientVpnTargetNetworksPaginator.ts | 2 +- .../pagination/DescribeCoipPoolsPaginator.ts | 2 +- .../DescribeDhcpOptionsPaginator.ts | 2 +- ...ribeEgressOnlyInternetGatewaysPaginator.ts | 2 +- .../DescribeExportImageTasksPaginator.ts | 2 +- .../DescribeFastLaunchImagesPaginator.ts | 2 +- .../DescribeFastSnapshotRestoresPaginator.ts | 2 +- .../src/pagination/DescribeFleetsPaginator.ts | 2 +- .../pagination/DescribeFlowLogsPaginator.ts | 2 +- .../pagination/DescribeFpgaImagesPaginator.ts | 2 +- ...scribeHostReservationOfferingsPaginator.ts | 2 +- .../DescribeHostReservationsPaginator.ts | 2 +- .../src/pagination/DescribeHostsPaginator.ts | 2 +- ...IamInstanceProfileAssociationsPaginator.ts | 2 +- .../DescribeImageReferencesPaginator.ts | 2 +- ...escribeImageUsageReportEntriesPaginator.ts | 2 +- .../DescribeImageUsageReportsPaginator.ts | 2 +- .../src/pagination/DescribeImagesPaginator.ts | 2 +- .../DescribeImportImageTasksPaginator.ts | 2 +- .../DescribeImportSnapshotTasksPaginator.ts | 2 +- ...scribeInstanceConnectEndpointsPaginator.ts | 2 +- ...beInstanceCreditSpecificationsPaginator.ts | 2 +- .../DescribeInstanceEventWindowsPaginator.ts | 2 +- .../DescribeInstanceImageMetadataPaginator.ts | 2 +- .../DescribeInstanceStatusPaginator.ts | 2 +- .../DescribeInstanceTopologyPaginator.ts | 2 +- .../DescribeInstanceTypeOfferingsPaginator.ts | 2 +- .../DescribeInstanceTypesPaginator.ts | 2 +- .../pagination/DescribeInstancesPaginator.ts | 2 +- .../DescribeInternetGatewaysPaginator.ts | 2 +- .../pagination/DescribeIpamPoolsPaginator.ts | 2 +- ...eIpamPrefixListResolverTargetsPaginator.ts | 2 +- ...escribeIpamPrefixListResolversPaginator.ts | 2 +- ...escribeIpamResourceDiscoveriesPaginator.ts | 2 +- ...mResourceDiscoveryAssociationsPaginator.ts | 2 +- .../pagination/DescribeIpamScopesPaginator.ts | 2 +- .../src/pagination/DescribeIpamsPaginator.ts | 2 +- .../pagination/DescribeIpv6PoolsPaginator.ts | 2 +- ...DescribeLaunchTemplateVersionsPaginator.ts | 2 +- .../DescribeLaunchTemplatesPaginator.ts | 2 +- ...tualInterfaceGroupAssociationsPaginator.ts | 2 +- ...tewayRouteTableVpcAssociationsPaginator.ts | 2 +- ...escribeLocalGatewayRouteTablesPaginator.ts | 2 +- ...lGatewayVirtualInterfaceGroupsPaginator.ts | 2 +- ...eLocalGatewayVirtualInterfacesPaginator.ts | 2 +- .../DescribeLocalGatewaysPaginator.ts | 2 +- .../pagination/DescribeMacHostsPaginator.ts | 2 +- .../DescribeMacModificationTasksPaginator.ts | 2 +- .../DescribeManagedPrefixListsPaginator.ts | 2 +- .../DescribeMovingAddressesPaginator.ts | 2 +- .../DescribeNatGatewaysPaginator.ts | 2 +- .../DescribeNetworkAclsPaginator.ts | 2 +- ...orkInsightsAccessScopeAnalysesPaginator.ts | 2 +- ...ibeNetworkInsightsAccessScopesPaginator.ts | 2 +- ...escribeNetworkInsightsAnalysesPaginator.ts | 2 +- .../DescribeNetworkInsightsPathsPaginator.ts | 2 +- ...ibeNetworkInterfacePermissionsPaginator.ts | 2 +- .../DescribeNetworkInterfacesPaginator.ts | 2 +- .../DescribePrefixListsPaginator.ts | 2 +- .../DescribePrincipalIdFormatPaginator.ts | 2 +- .../DescribePublicIpv4PoolsPaginator.ts | 2 +- ...DescribeReplaceRootVolumeTasksPaginator.ts | 2 +- ...ReservedInstancesModificationsPaginator.ts | 2 +- ...ribeReservedInstancesOfferingsPaginator.ts | 2 +- .../DescribeRouteServerEndpointsPaginator.ts | 2 +- .../DescribeRouteServerPeersPaginator.ts | 2 +- .../DescribeRouteServersPaginator.ts | 2 +- .../DescribeRouteTablesPaginator.ts | 2 +- ...eScheduledInstanceAvailabilityPaginator.ts | 2 +- .../DescribeScheduledInstancesPaginator.ts | 2 +- .../DescribeSecurityGroupRulesPaginator.ts | 2 +- ...beSecurityGroupVpcAssociationsPaginator.ts | 2 +- .../DescribeSecurityGroupsPaginator.ts | 2 +- .../DescribeSnapshotTierStatusPaginator.ts | 2 +- .../pagination/DescribeSnapshotsPaginator.ts | 2 +- .../DescribeSpotFleetRequestsPaginator.ts | 2 +- .../DescribeSpotInstanceRequestsPaginator.ts | 2 +- .../DescribeSpotPriceHistoryPaginator.ts | 2 +- .../DescribeStaleSecurityGroupsPaginator.ts | 2 +- .../DescribeStoreImageTasksPaginator.ts | 2 +- .../pagination/DescribeSubnetsPaginator.ts | 2 +- .../src/pagination/DescribeTagsPaginator.ts | 2 +- .../DescribeTrafficMirrorFiltersPaginator.ts | 2 +- .../DescribeTrafficMirrorSessionsPaginator.ts | 2 +- .../DescribeTrafficMirrorTargetsPaginator.ts | 2 +- ...cribeTransitGatewayAttachmentsPaginator.ts | 2 +- ...ribeTransitGatewayConnectPeersPaginator.ts | 2 +- ...DescribeTransitGatewayConnectsPaginator.ts | 2 +- ...TransitGatewayMulticastDomainsPaginator.ts | 2 +- ...ansitGatewayPeeringAttachmentsPaginator.ts | 2 +- ...ribeTransitGatewayPolicyTablesPaginator.ts | 2 +- ...GatewayRouteTableAnnouncementsPaginator.ts | 2 +- ...cribeTransitGatewayRouteTablesPaginator.ts | 2 +- ...beTransitGatewayVpcAttachmentsPaginator.ts | 2 +- .../DescribeTransitGatewaysPaginator.ts | 2 +- ...ribeTrunkInterfaceAssociationsPaginator.ts | 2 +- ...escribeVerifiedAccessEndpointsPaginator.ts | 2 +- .../DescribeVerifiedAccessGroupsPaginator.ts | 2 +- ...sInstanceLoggingConfigurationsPaginator.ts | 2 +- ...escribeVerifiedAccessInstancesPaginator.ts | 2 +- ...beVerifiedAccessTrustProvidersPaginator.ts | 2 +- .../DescribeVolumeStatusPaginator.ts | 2 +- .../DescribeVolumesModificationsPaginator.ts | 2 +- .../pagination/DescribeVolumesPaginator.ts | 2 +- ...scribeVpcClassicLinkDnsSupportPaginator.ts | 2 +- ...ndpointConnectionNotificationsPaginator.ts | 2 +- ...DescribeVpcEndpointConnectionsPaginator.ts | 2 +- ...cEndpointServiceConfigurationsPaginator.ts | 2 +- ...eVpcEndpointServicePermissionsPaginator.ts | 2 +- .../DescribeVpcEndpointsPaginator.ts | 2 +- .../DescribeVpcPeeringConnectionsPaginator.ts | 2 +- .../src/pagination/DescribeVpcsPaginator.ts | 2 +- .../DescribeVpnConcentratorsPaginator.ts | 2 +- .../GetAssociatedIpv6PoolCidrsPaginator.ts | 2 +- .../GetAwsNetworkPerformanceDataPaginator.ts | 2 +- .../GetCapacityManagerMetricDataPaginator.ts | 2 +- ...apacityManagerMetricDimensionsPaginator.ts | 2 +- ...etGroupsForCapacityReservationPaginator.ts | 2 +- ...eTypesFromInstanceRequirementsPaginator.ts | 2 +- .../GetIpamAddressHistoryPaginator.ts | 2 +- .../GetIpamDiscoveredAccountsPaginator.ts | 2 +- ...GetIpamDiscoveredResourceCidrsPaginator.ts | 2 +- .../GetIpamPoolAllocationsPaginator.ts | 2 +- .../pagination/GetIpamPoolCidrsPaginator.ts | 2 +- ...GetIpamPrefixListResolverRulesPaginator.ts | 2 +- ...efixListResolverVersionEntriesPaginator.ts | 2 +- ...IpamPrefixListResolverVersionsPaginator.ts | 2 +- .../GetIpamResourceCidrsPaginator.ts | 2 +- ...tManagedPrefixListAssociationsPaginator.ts | 2 +- .../GetManagedPrefixListEntriesPaginator.ts | 2 +- ...htsAccessScopeAnalysisFindingsPaginator.ts | 2 +- .../GetSecurityGroupsForVpcPaginator.ts | 2 +- .../GetSpotPlacementScoresPaginator.ts | 2 +- ...tGatewayAttachmentPropagationsPaginator.ts | 2 +- ...wayMulticastDomainAssociationsPaginator.ts | 2 +- ...GatewayPolicyTableAssociationsPaginator.ts | 2 +- ...sitGatewayPrefixListReferencesPaginator.ts | 2 +- ...tGatewayRouteTableAssociationsPaginator.ts | 2 +- ...tGatewayRouteTablePropagationsPaginator.ts | 2 +- .../GetVpnConnectionDeviceTypesPaginator.ts | 2 +- .../client-ec2/src/pagination/Interfaces.ts | 2 +- .../ListImagesInRecycleBinPaginator.ts | 2 +- .../ListSnapshotsInRecycleBinPaginator.ts | 2 +- .../SearchLocalGatewayRoutesPaginator.ts | 2 +- ...hTransitGatewayMulticastGroupsPaginator.ts | 2 +- .../client-ec2/src/runtimeConfig.browser.ts | 7 +- .../client-ec2/src/runtimeConfig.native.ts | 2 +- .../client-ec2/src/runtimeConfig.shared.ts | 4 +- clients/client-ec2/src/runtimeConfig.ts | 8 +- clients/client-ec2/src/runtimeExtensions.ts | 2 +- clients/client-ec2/src/schemas/schemas_0.ts | 2 +- clients/client-ecr-public/package.json | 12 +- clients/client-ecr-public/src/ECRPUBLIC.ts | 4 +- .../client-ecr-public/src/ECRPUBLICClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchCheckLayerAvailabilityCommand.ts | 6 +- .../src/commands/BatchDeleteImageCommand.ts | 6 +- .../commands/CompleteLayerUploadCommand.ts | 6 +- .../src/commands/CreateRepositoryCommand.ts | 6 +- .../src/commands/DeleteRepositoryCommand.ts | 6 +- .../commands/DeleteRepositoryPolicyCommand.ts | 6 +- .../src/commands/DescribeImageTagsCommand.ts | 6 +- .../src/commands/DescribeImagesCommand.ts | 6 +- .../src/commands/DescribeRegistriesCommand.ts | 6 +- .../commands/DescribeRepositoriesCommand.ts | 6 +- .../commands/GetAuthorizationTokenCommand.ts | 6 +- .../commands/GetRegistryCatalogDataCommand.ts | 6 +- .../GetRepositoryCatalogDataCommand.ts | 6 +- .../commands/GetRepositoryPolicyCommand.ts | 6 +- .../commands/InitiateLayerUploadCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutImageCommand.ts | 6 +- .../commands/PutRegistryCatalogDataCommand.ts | 6 +- .../PutRepositoryCatalogDataCommand.ts | 6 +- .../commands/SetRepositoryPolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UploadLayerPartCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ECRPUBLICServiceException.ts | 2 +- .../client-ecr-public/src/models/errors.ts | 2 +- .../pagination/DescribeImageTagsPaginator.ts | 2 +- .../src/pagination/DescribeImagesPaginator.ts | 2 +- .../pagination/DescribeRegistriesPaginator.ts | 2 +- .../DescribeRepositoriesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-ecr-public/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ecr/package.json | 12 +- clients/client-ecr/src/ECR.ts | 4 +- clients/client-ecr/src/ECRClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchCheckLayerAvailabilityCommand.ts | 6 +- .../src/commands/BatchDeleteImageCommand.ts | 6 +- .../src/commands/BatchGetImageCommand.ts | 6 +- ...tRepositoryScanningConfigurationCommand.ts | 6 +- .../commands/CompleteLayerUploadCommand.ts | 6 +- .../CreatePullThroughCacheRuleCommand.ts | 6 +- .../src/commands/CreateRepositoryCommand.ts | 6 +- ...CreateRepositoryCreationTemplateCommand.ts | 9 +- .../commands/DeleteLifecyclePolicyCommand.ts | 6 +- .../DeletePullThroughCacheRuleCommand.ts | 6 +- .../commands/DeleteRegistryPolicyCommand.ts | 6 +- .../src/commands/DeleteRepositoryCommand.ts | 6 +- ...DeleteRepositoryCreationTemplateCommand.ts | 9 +- .../commands/DeleteRepositoryPolicyCommand.ts | 6 +- .../DeleteSigningConfigurationCommand.ts | 6 +- ...eregisterPullTimeUpdateExclusionCommand.ts | 6 +- .../DescribeImageReplicationStatusCommand.ts | 6 +- .../DescribeImageScanFindingsCommand.ts | 6 +- .../DescribeImageSigningStatusCommand.ts | 6 +- .../src/commands/DescribeImagesCommand.ts | 6 +- .../DescribePullThroughCacheRulesCommand.ts | 6 +- .../src/commands/DescribeRegistryCommand.ts | 6 +- .../commands/DescribeRepositoriesCommand.ts | 6 +- ...cribeRepositoryCreationTemplatesCommand.ts | 6 +- .../src/commands/GetAccountSettingCommand.ts | 6 +- .../commands/GetAuthorizationTokenCommand.ts | 6 +- .../commands/GetDownloadUrlForLayerCommand.ts | 6 +- .../src/commands/GetLifecyclePolicyCommand.ts | 6 +- .../GetLifecyclePolicyPreviewCommand.ts | 6 +- .../src/commands/GetRegistryPolicyCommand.ts | 6 +- ...GetRegistryScanningConfigurationCommand.ts | 9 +- .../commands/GetRepositoryPolicyCommand.ts | 6 +- .../GetSigningConfigurationCommand.ts | 6 +- .../commands/InitiateLayerUploadCommand.ts | 6 +- .../src/commands/ListImageReferrersCommand.ts | 6 +- .../src/commands/ListImagesCommand.ts | 6 +- .../ListPullTimeUpdateExclusionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutAccountSettingCommand.ts | 6 +- .../src/commands/PutImageCommand.ts | 6 +- .../PutImageScanningConfigurationCommand.ts | 6 +- .../commands/PutImageTagMutabilityCommand.ts | 6 +- .../src/commands/PutLifecyclePolicyCommand.ts | 6 +- .../src/commands/PutRegistryPolicyCommand.ts | 6 +- ...PutRegistryScanningConfigurationCommand.ts | 9 +- .../PutReplicationConfigurationCommand.ts | 6 +- .../PutSigningConfigurationCommand.ts | 6 +- .../RegisterPullTimeUpdateExclusionCommand.ts | 9 +- .../commands/SetRepositoryPolicyCommand.ts | 6 +- .../src/commands/StartImageScanCommand.ts | 6 +- .../StartLifecyclePolicyPreviewCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateImageStorageClassCommand.ts | 6 +- .../UpdatePullThroughCacheRuleCommand.ts | 6 +- ...UpdateRepositoryCreationTemplateCommand.ts | 9 +- .../src/commands/UploadLayerPartCommand.ts | 6 +- .../ValidatePullThroughCacheRuleCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-ecr/src/extensionConfiguration.ts | 8 +- .../src/models/ECRServiceException.ts | 2 +- clients/client-ecr/src/models/errors.ts | 2 +- .../DescribeImageScanFindingsPaginator.ts | 2 +- .../src/pagination/DescribeImagesPaginator.ts | 2 +- .../DescribePullThroughCacheRulesPaginator.ts | 2 +- .../DescribeRepositoriesPaginator.ts | 2 +- ...ibeRepositoryCreationTemplatesPaginator.ts | 2 +- .../GetLifecyclePolicyPreviewPaginator.ts | 2 +- .../client-ecr/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListImagesPaginator.ts | 2 +- .../client-ecr/src/runtimeConfig.browser.ts | 7 +- .../client-ecr/src/runtimeConfig.native.ts | 2 +- .../client-ecr/src/runtimeConfig.shared.ts | 4 +- clients/client-ecr/src/runtimeConfig.ts | 8 +- clients/client-ecr/src/runtimeExtensions.ts | 2 +- clients/client-ecr/src/schemas/schemas_0.ts | 2 +- clients/client-ecs/package.json | 12 +- clients/client-ecs/src/ECS.ts | 4 +- clients/client-ecs/src/ECSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateCapacityProviderCommand.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../CreateExpressGatewayServiceCommand.ts | 6 +- .../src/commands/CreateServiceCommand.ts | 6 +- .../src/commands/CreateTaskSetCommand.ts | 6 +- .../commands/DeleteAccountSettingCommand.ts | 6 +- .../src/commands/DeleteAttributesCommand.ts | 6 +- .../commands/DeleteCapacityProviderCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../DeleteExpressGatewayServiceCommand.ts | 6 +- .../src/commands/DeleteServiceCommand.ts | 6 +- .../commands/DeleteTaskDefinitionsCommand.ts | 6 +- .../src/commands/DeleteTaskSetCommand.ts | 6 +- .../DeregisterContainerInstanceCommand.ts | 6 +- .../DeregisterTaskDefinitionCommand.ts | 6 +- .../DescribeCapacityProvidersCommand.ts | 6 +- .../src/commands/DescribeClustersCommand.ts | 6 +- .../DescribeContainerInstancesCommand.ts | 6 +- .../DescribeExpressGatewayServiceCommand.ts | 6 +- .../DescribeServiceDeploymentsCommand.ts | 6 +- .../DescribeServiceRevisionsCommand.ts | 6 +- .../src/commands/DescribeServicesCommand.ts | 6 +- .../commands/DescribeTaskDefinitionCommand.ts | 6 +- .../src/commands/DescribeTaskSetsCommand.ts | 6 +- .../src/commands/DescribeTasksCommand.ts | 6 +- .../commands/DiscoverPollEndpointCommand.ts | 6 +- .../src/commands/ExecuteCommandCommand.ts | 6 +- .../src/commands/GetTaskProtectionCommand.ts | 6 +- .../commands/ListAccountSettingsCommand.ts | 6 +- .../src/commands/ListAttributesCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../commands/ListContainerInstancesCommand.ts | 6 +- .../commands/ListServiceDeploymentsCommand.ts | 6 +- .../ListServicesByNamespaceCommand.ts | 6 +- .../src/commands/ListServicesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListTaskDefinitionFamiliesCommand.ts | 6 +- .../commands/ListTaskDefinitionsCommand.ts | 6 +- .../src/commands/ListTasksCommand.ts | 6 +- .../src/commands/PutAccountSettingCommand.ts | 6 +- .../PutAccountSettingDefaultCommand.ts | 6 +- .../src/commands/PutAttributesCommand.ts | 6 +- .../PutClusterCapacityProvidersCommand.ts | 6 +- .../RegisterContainerInstanceCommand.ts | 6 +- .../commands/RegisterTaskDefinitionCommand.ts | 6 +- .../client-ecs/src/commands/RunTaskCommand.ts | 6 +- .../src/commands/StartTaskCommand.ts | 6 +- .../commands/StopServiceDeploymentCommand.ts | 6 +- .../src/commands/StopTaskCommand.ts | 6 +- .../SubmitAttachmentStateChangesCommand.ts | 6 +- .../SubmitContainerStateChangeCommand.ts | 6 +- .../commands/SubmitTaskStateChangeCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateCapacityProviderCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../commands/UpdateClusterSettingsCommand.ts | 6 +- .../commands/UpdateContainerAgentCommand.ts | 6 +- .../UpdateContainerInstancesStateCommand.ts | 6 +- .../UpdateExpressGatewayServiceCommand.ts | 6 +- .../src/commands/UpdateServiceCommand.ts | 6 +- .../UpdateServicePrimaryTaskSetCommand.ts | 6 +- .../commands/UpdateTaskProtectionCommand.ts | 6 +- .../src/commands/UpdateTaskSetCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-ecs/src/extensionConfiguration.ts | 8 +- .../src/models/ECSServiceException.ts | 2 +- clients/client-ecs/src/models/errors.ts | 2 +- .../client-ecs/src/pagination/Interfaces.ts | 2 +- .../ListAccountSettingsPaginator.ts | 2 +- .../src/pagination/ListAttributesPaginator.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../ListContainerInstancesPaginator.ts | 2 +- .../ListServicesByNamespacePaginator.ts | 2 +- .../src/pagination/ListServicesPaginator.ts | 2 +- .../ListTaskDefinitionFamiliesPaginator.ts | 2 +- .../ListTaskDefinitionsPaginator.ts | 2 +- .../src/pagination/ListTasksPaginator.ts | 2 +- .../client-ecs/src/runtimeConfig.browser.ts | 7 +- .../client-ecs/src/runtimeConfig.native.ts | 2 +- .../client-ecs/src/runtimeConfig.shared.ts | 4 +- clients/client-ecs/src/runtimeConfig.ts | 8 +- clients/client-ecs/src/runtimeExtensions.ts | 2 +- clients/client-ecs/src/schemas/schemas_0.ts | 2 +- clients/client-efs/package.json | 12 +- clients/client-efs/src/EFS.ts | 4 +- clients/client-efs/src/EFSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateAccessPointCommand.ts | 6 +- .../src/commands/CreateFileSystemCommand.ts | 6 +- .../src/commands/CreateMountTargetCommand.ts | 6 +- .../CreateReplicationConfigurationCommand.ts | 6 +- .../src/commands/CreateTagsCommand.ts | 6 +- .../src/commands/DeleteAccessPointCommand.ts | 6 +- .../src/commands/DeleteFileSystemCommand.ts | 6 +- .../commands/DeleteFileSystemPolicyCommand.ts | 6 +- .../src/commands/DeleteMountTargetCommand.ts | 6 +- .../DeleteReplicationConfigurationCommand.ts | 6 +- .../src/commands/DeleteTagsCommand.ts | 6 +- .../commands/DescribeAccessPointsCommand.ts | 6 +- .../DescribeAccountPreferencesCommand.ts | 6 +- .../commands/DescribeBackupPolicyCommand.ts | 6 +- .../DescribeFileSystemPolicyCommand.ts | 6 +- .../commands/DescribeFileSystemsCommand.ts | 6 +- .../DescribeLifecycleConfigurationCommand.ts | 6 +- ...escribeMountTargetSecurityGroupsCommand.ts | 6 +- .../commands/DescribeMountTargetsCommand.ts | 6 +- ...escribeReplicationConfigurationsCommand.ts | 6 +- .../src/commands/DescribeTagsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ModifyMountTargetSecurityGroupsCommand.ts | 6 +- .../commands/PutAccountPreferencesCommand.ts | 6 +- .../src/commands/PutBackupPolicyCommand.ts | 6 +- .../commands/PutFileSystemPolicyCommand.ts | 6 +- .../PutLifecycleConfigurationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateFileSystemCommand.ts | 6 +- .../UpdateFileSystemProtectionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-efs/src/extensionConfiguration.ts | 8 +- .../src/models/EFSServiceException.ts | 2 +- clients/client-efs/src/models/errors.ts | 2 +- .../DescribeAccessPointsPaginator.ts | 2 +- .../DescribeFileSystemsPaginator.ts | 2 +- .../DescribeMountTargetsPaginator.ts | 2 +- ...cribeReplicationConfigurationsPaginator.ts | 2 +- .../src/pagination/DescribeTagsPaginator.ts | 2 +- .../client-efs/src/pagination/Interfaces.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../client-efs/src/runtimeConfig.browser.ts | 7 +- .../client-efs/src/runtimeConfig.native.ts | 2 +- .../client-efs/src/runtimeConfig.shared.ts | 4 +- clients/client-efs/src/runtimeConfig.ts | 8 +- clients/client-efs/src/runtimeExtensions.ts | 2 +- clients/client-efs/src/schemas/schemas_0.ts | 2 +- clients/client-eks-auth/package.json | 12 +- clients/client-eks-auth/src/EKSAuth.ts | 4 +- clients/client-eks-auth/src/EKSAuthClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssumeRoleForPodIdentityCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/EKSAuthServiceException.ts | 2 +- clients/client-eks-auth/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-eks-auth/src/runtimeConfig.ts | 8 +- .../client-eks-auth/src/runtimeExtensions.ts | 2 +- .../client-eks-auth/src/schemas/schemas_0.ts | 7 +- clients/client-eks/package.json | 12 +- clients/client-eks/src/EKS.ts | 4 +- clients/client-eks/src/EKSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateAccessPolicyCommand.ts | 6 +- .../AssociateEncryptionConfigCommand.ts | 6 +- .../AssociateIdentityProviderConfigCommand.ts | 9 +- .../src/commands/CreateAccessEntryCommand.ts | 6 +- .../src/commands/CreateAddonCommand.ts | 6 +- .../src/commands/CreateCapabilityCommand.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../CreateEksAnywhereSubscriptionCommand.ts | 6 +- .../commands/CreateFargateProfileCommand.ts | 6 +- .../src/commands/CreateNodegroupCommand.ts | 6 +- .../CreatePodIdentityAssociationCommand.ts | 6 +- .../src/commands/DeleteAccessEntryCommand.ts | 6 +- .../src/commands/DeleteAddonCommand.ts | 6 +- .../src/commands/DeleteCapabilityCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../DeleteEksAnywhereSubscriptionCommand.ts | 6 +- .../commands/DeleteFargateProfileCommand.ts | 6 +- .../src/commands/DeleteNodegroupCommand.ts | 6 +- .../DeletePodIdentityAssociationCommand.ts | 6 +- .../src/commands/DeregisterClusterCommand.ts | 6 +- .../commands/DescribeAccessEntryCommand.ts | 6 +- .../src/commands/DescribeAddonCommand.ts | 6 +- .../DescribeAddonConfigurationCommand.ts | 6 +- .../commands/DescribeAddonVersionsCommand.ts | 6 +- .../src/commands/DescribeCapabilityCommand.ts | 6 +- .../src/commands/DescribeClusterCommand.ts | 6 +- .../DescribeClusterVersionsCommand.ts | 6 +- .../DescribeEksAnywhereSubscriptionCommand.ts | 9 +- .../commands/DescribeFargateProfileCommand.ts | 6 +- .../DescribeIdentityProviderConfigCommand.ts | 6 +- .../src/commands/DescribeInsightCommand.ts | 6 +- .../DescribeInsightsRefreshCommand.ts | 6 +- .../src/commands/DescribeNodegroupCommand.ts | 6 +- .../DescribePodIdentityAssociationCommand.ts | 6 +- .../src/commands/DescribeUpdateCommand.ts | 6 +- .../DisassociateAccessPolicyCommand.ts | 6 +- ...sassociateIdentityProviderConfigCommand.ts | 6 +- .../src/commands/ListAccessEntriesCommand.ts | 6 +- .../src/commands/ListAccessPoliciesCommand.ts | 6 +- .../src/commands/ListAddonsCommand.ts | 6 +- .../ListAssociatedAccessPoliciesCommand.ts | 6 +- .../src/commands/ListCapabilitiesCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../ListEksAnywhereSubscriptionsCommand.ts | 6 +- .../commands/ListFargateProfilesCommand.ts | 6 +- .../ListIdentityProviderConfigsCommand.ts | 6 +- .../src/commands/ListInsightsCommand.ts | 6 +- .../src/commands/ListNodegroupsCommand.ts | 6 +- .../ListPodIdentityAssociationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListUpdatesCommand.ts | 6 +- .../src/commands/RegisterClusterCommand.ts | 6 +- .../commands/StartInsightsRefreshCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAccessEntryCommand.ts | 6 +- .../src/commands/UpdateAddonCommand.ts | 6 +- .../src/commands/UpdateCapabilityCommand.ts | 6 +- .../commands/UpdateClusterConfigCommand.ts | 6 +- .../commands/UpdateClusterVersionCommand.ts | 6 +- .../UpdateEksAnywhereSubscriptionCommand.ts | 6 +- .../commands/UpdateNodegroupConfigCommand.ts | 6 +- .../commands/UpdateNodegroupVersionCommand.ts | 6 +- .../UpdatePodIdentityAssociationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-eks/src/extensionConfiguration.ts | 8 +- .../src/models/EKSServiceException.ts | 2 +- clients/client-eks/src/models/errors.ts | 2 +- .../DescribeAddonVersionsPaginator.ts | 2 +- .../DescribeClusterVersionsPaginator.ts | 2 +- .../client-eks/src/pagination/Interfaces.ts | 2 +- .../pagination/ListAccessEntriesPaginator.ts | 2 +- .../pagination/ListAccessPoliciesPaginator.ts | 2 +- .../src/pagination/ListAddonsPaginator.ts | 2 +- .../ListAssociatedAccessPoliciesPaginator.ts | 2 +- .../pagination/ListCapabilitiesPaginator.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../ListEksAnywhereSubscriptionsPaginator.ts | 2 +- .../ListFargateProfilesPaginator.ts | 2 +- .../ListIdentityProviderConfigsPaginator.ts | 2 +- .../src/pagination/ListInsightsPaginator.ts | 2 +- .../src/pagination/ListNodegroupsPaginator.ts | 2 +- .../ListPodIdentityAssociationsPaginator.ts | 2 +- .../src/pagination/ListUpdatesPaginator.ts | 2 +- .../client-eks/src/runtimeConfig.browser.ts | 7 +- .../client-eks/src/runtimeConfig.native.ts | 2 +- .../client-eks/src/runtimeConfig.shared.ts | 4 +- clients/client-eks/src/runtimeConfig.ts | 8 +- clients/client-eks/src/runtimeExtensions.ts | 2 +- clients/client-eks/src/schemas/schemas_0.ts | 2 +- clients/client-elastic-beanstalk/package.json | 12 +- .../src/ElasticBeanstalk.ts | 4 +- .../src/ElasticBeanstalkClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AbortEnvironmentUpdateCommand.ts | 10 +- .../ApplyEnvironmentManagedActionCommand.ts | 10 +- ...sociateEnvironmentOperationsRoleCommand.ts | 10 +- .../commands/CheckDNSAvailabilityCommand.ts | 10 +- .../commands/ComposeEnvironmentsCommand.ts | 10 +- .../src/commands/CreateApplicationCommand.ts | 10 +- .../CreateApplicationVersionCommand.ts | 10 +- .../CreateConfigurationTemplateCommand.ts | 10 +- .../src/commands/CreateEnvironmentCommand.ts | 10 +- .../commands/CreatePlatformVersionCommand.ts | 10 +- .../commands/CreateStorageLocationCommand.ts | 10 +- .../src/commands/DeleteApplicationCommand.ts | 10 +- .../DeleteApplicationVersionCommand.ts | 10 +- .../DeleteConfigurationTemplateCommand.ts | 10 +- .../DeleteEnvironmentConfigurationCommand.ts | 10 +- .../commands/DeletePlatformVersionCommand.ts | 10 +- .../DescribeAccountAttributesCommand.ts | 10 +- .../DescribeApplicationVersionsCommand.ts | 10 +- .../commands/DescribeApplicationsCommand.ts | 10 +- .../DescribeConfigurationOptionsCommand.ts | 10 +- .../DescribeConfigurationSettingsCommand.ts | 10 +- .../DescribeEnvironmentHealthCommand.ts | 10 +- ...eEnvironmentManagedActionHistoryCommand.ts | 10 +- ...escribeEnvironmentManagedActionsCommand.ts | 13 +- .../DescribeEnvironmentResourcesCommand.ts | 10 +- .../commands/DescribeEnvironmentsCommand.ts | 10 +- .../src/commands/DescribeEventsCommand.ts | 10 +- .../DescribeInstancesHealthCommand.ts | 10 +- .../DescribePlatformVersionCommand.ts | 10 +- ...sociateEnvironmentOperationsRoleCommand.ts | 10 +- .../ListAvailableSolutionStacksCommand.ts | 10 +- .../commands/ListPlatformBranchesCommand.ts | 10 +- .../commands/ListPlatformVersionsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/RebuildEnvironmentCommand.ts | 10 +- .../commands/RequestEnvironmentInfoCommand.ts | 10 +- .../src/commands/RestartAppServerCommand.ts | 10 +- .../RetrieveEnvironmentInfoCommand.ts | 10 +- .../commands/SwapEnvironmentCNAMEsCommand.ts | 10 +- .../commands/TerminateEnvironmentCommand.ts | 10 +- .../src/commands/UpdateApplicationCommand.ts | 10 +- ...dateApplicationResourceLifecycleCommand.ts | 10 +- .../UpdateApplicationVersionCommand.ts | 10 +- .../UpdateConfigurationTemplateCommand.ts | 10 +- .../src/commands/UpdateEnvironmentCommand.ts | 10 +- .../commands/UpdateTagsForResourceCommand.ts | 10 +- .../ValidateConfigurationSettingsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...asticBeanstalkSyntheticServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- ...nvironmentManagedActionHistoryPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListPlatformBranchesPaginator.ts | 2 +- .../ListPlatformVersionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ElasticLoadBalancingV2.ts | 4 +- .../src/ElasticLoadBalancingV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AddListenerCertificatesCommand.ts | 6 +- .../src/commands/AddTagsCommand.ts | 6 +- .../AddTrustStoreRevocationsCommand.ts | 6 +- .../src/commands/CreateListenerCommand.ts | 6 +- .../src/commands/CreateLoadBalancerCommand.ts | 6 +- .../src/commands/CreateRuleCommand.ts | 6 +- .../src/commands/CreateTargetGroupCommand.ts | 6 +- .../src/commands/CreateTrustStoreCommand.ts | 6 +- .../src/commands/DeleteListenerCommand.ts | 6 +- .../src/commands/DeleteLoadBalancerCommand.ts | 6 +- .../src/commands/DeleteRuleCommand.ts | 6 +- ...eleteSharedTrustStoreAssociationCommand.ts | 9 +- .../src/commands/DeleteTargetGroupCommand.ts | 6 +- .../src/commands/DeleteTrustStoreCommand.ts | 6 +- .../src/commands/DeregisterTargetsCommand.ts | 6 +- .../commands/DescribeAccountLimitsCommand.ts | 6 +- .../DescribeCapacityReservationCommand.ts | 6 +- .../DescribeListenerAttributesCommand.ts | 6 +- .../DescribeListenerCertificatesCommand.ts | 6 +- .../src/commands/DescribeListenersCommand.ts | 6 +- .../DescribeLoadBalancerAttributesCommand.ts | 6 +- .../commands/DescribeLoadBalancersCommand.ts | 6 +- .../src/commands/DescribeRulesCommand.ts | 6 +- .../commands/DescribeSSLPoliciesCommand.ts | 6 +- .../src/commands/DescribeTagsCommand.ts | 6 +- .../DescribeTargetGroupAttributesCommand.ts | 6 +- .../commands/DescribeTargetGroupsCommand.ts | 6 +- .../commands/DescribeTargetHealthCommand.ts | 6 +- .../DescribeTrustStoreAssociationsCommand.ts | 6 +- .../DescribeTrustStoreRevocationsCommand.ts | 6 +- .../commands/DescribeTrustStoresCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- ...etTrustStoreCaCertificatesBundleCommand.ts | 9 +- .../GetTrustStoreRevocationContentCommand.ts | 6 +- .../ModifyCapacityReservationCommand.ts | 6 +- .../src/commands/ModifyIpPoolsCommand.ts | 6 +- .../ModifyListenerAttributesCommand.ts | 6 +- .../src/commands/ModifyListenerCommand.ts | 6 +- .../ModifyLoadBalancerAttributesCommand.ts | 6 +- .../src/commands/ModifyRuleCommand.ts | 6 +- .../ModifyTargetGroupAttributesCommand.ts | 6 +- .../src/commands/ModifyTargetGroupCommand.ts | 6 +- .../src/commands/ModifyTrustStoreCommand.ts | 6 +- .../src/commands/RegisterTargetsCommand.ts | 6 +- .../RemoveListenerCertificatesCommand.ts | 6 +- .../src/commands/RemoveTagsCommand.ts | 6 +- .../RemoveTrustStoreRevocationsCommand.ts | 6 +- .../src/commands/SetIpAddressTypeCommand.ts | 6 +- .../src/commands/SetRulePrioritiesCommand.ts | 6 +- .../src/commands/SetSecurityGroupsCommand.ts | 6 +- .../src/commands/SetSubnetsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ElasticLoadBalancingV2ServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeAccountLimitsPaginator.ts | 2 +- .../DescribeListenerCertificatesPaginator.ts | 2 +- .../pagination/DescribeListenersPaginator.ts | 2 +- .../DescribeLoadBalancersPaginator.ts | 2 +- .../src/pagination/DescribeRulesPaginator.ts | 2 +- .../DescribeTargetGroupsPaginator.ts | 2 +- ...DescribeTrustStoreAssociationsPaginator.ts | 2 +- .../DescribeTrustStoreRevocationsPaginator.ts | 2 +- .../DescribeTrustStoresPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ElasticLoadBalancing.ts | 4 +- .../src/ElasticLoadBalancingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddTagsCommand.ts | 6 +- ...pplySecurityGroupsToLoadBalancerCommand.ts | 9 +- .../AttachLoadBalancerToSubnetsCommand.ts | 6 +- .../commands/ConfigureHealthCheckCommand.ts | 6 +- .../CreateAppCookieStickinessPolicyCommand.ts | 6 +- .../CreateLBCookieStickinessPolicyCommand.ts | 6 +- .../src/commands/CreateLoadBalancerCommand.ts | 6 +- .../CreateLoadBalancerListenersCommand.ts | 6 +- .../CreateLoadBalancerPolicyCommand.ts | 6 +- .../src/commands/DeleteLoadBalancerCommand.ts | 6 +- .../DeleteLoadBalancerListenersCommand.ts | 6 +- .../DeleteLoadBalancerPolicyCommand.ts | 6 +- ...egisterInstancesFromLoadBalancerCommand.ts | 6 +- .../commands/DescribeAccountLimitsCommand.ts | 6 +- .../commands/DescribeInstanceHealthCommand.ts | 6 +- .../DescribeLoadBalancerAttributesCommand.ts | 6 +- .../DescribeLoadBalancerPoliciesCommand.ts | 6 +- .../DescribeLoadBalancerPolicyTypesCommand.ts | 6 +- .../commands/DescribeLoadBalancersCommand.ts | 6 +- .../src/commands/DescribeTagsCommand.ts | 6 +- .../DetachLoadBalancerFromSubnetsCommand.ts | 6 +- ...AvailabilityZonesForLoadBalancerCommand.ts | 6 +- ...AvailabilityZonesForLoadBalancerCommand.ts | 6 +- .../ModifyLoadBalancerAttributesCommand.ts | 6 +- ...egisterInstancesWithLoadBalancerCommand.ts | 6 +- .../src/commands/RemoveTagsCommand.ts | 6 +- ...adBalancerListenerSSLCertificateCommand.ts | 6 +- ...BalancerPoliciesForBackendServerCommand.ts | 6 +- ...etLoadBalancerPoliciesOfListenerCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ElasticLoadBalancingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeLoadBalancersPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-elastic-transcoder/package.json | 12 +- .../src/ElasticTranscoder.ts | 4 +- .../src/ElasticTranscoderClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelJobCommand.ts | 6 +- .../src/commands/CreateJobCommand.ts | 6 +- .../src/commands/CreatePipelineCommand.ts | 6 +- .../src/commands/CreatePresetCommand.ts | 6 +- .../src/commands/DeletePipelineCommand.ts | 6 +- .../src/commands/DeletePresetCommand.ts | 6 +- .../src/commands/ListJobsByPipelineCommand.ts | 6 +- .../src/commands/ListJobsByStatusCommand.ts | 6 +- .../src/commands/ListPipelinesCommand.ts | 6 +- .../src/commands/ListPresetsCommand.ts | 6 +- .../src/commands/ReadJobCommand.ts | 6 +- .../src/commands/ReadPipelineCommand.ts | 6 +- .../src/commands/ReadPresetCommand.ts | 6 +- .../src/commands/TestRoleCommand.ts | 6 +- .../src/commands/UpdatePipelineCommand.ts | 6 +- .../UpdatePipelineNotificationsCommand.ts | 6 +- .../commands/UpdatePipelineStatusCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ElasticTranscoderServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListJobsByPipelinePaginator.ts | 2 +- .../pagination/ListJobsByStatusPaginator.ts | 2 +- .../src/pagination/ListPipelinesPaginator.ts | 2 +- .../src/pagination/ListPresetsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-elasticache/package.json | 12 +- clients/client-elasticache/src/ElastiCache.ts | 4 +- .../src/ElastiCacheClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddTagsToResourceCommand.ts | 6 +- ...thorizeCacheSecurityGroupIngressCommand.ts | 6 +- .../commands/BatchApplyUpdateActionCommand.ts | 6 +- .../commands/BatchStopUpdateActionCommand.ts | 6 +- .../src/commands/CompleteMigrationCommand.ts | 6 +- .../CopyServerlessCacheSnapshotCommand.ts | 6 +- .../src/commands/CopySnapshotCommand.ts | 6 +- .../src/commands/CreateCacheClusterCommand.ts | 6 +- .../CreateCacheParameterGroupCommand.ts | 6 +- .../CreateCacheSecurityGroupCommand.ts | 6 +- .../commands/CreateCacheSubnetGroupCommand.ts | 6 +- .../CreateGlobalReplicationGroupCommand.ts | 6 +- .../commands/CreateReplicationGroupCommand.ts | 6 +- .../commands/CreateServerlessCacheCommand.ts | 6 +- .../CreateServerlessCacheSnapshotCommand.ts | 6 +- .../src/commands/CreateSnapshotCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/CreateUserGroupCommand.ts | 6 +- ...deGroupsInGlobalReplicationGroupCommand.ts | 6 +- .../commands/DecreaseReplicaCountCommand.ts | 6 +- .../src/commands/DeleteCacheClusterCommand.ts | 6 +- .../DeleteCacheParameterGroupCommand.ts | 6 +- .../DeleteCacheSecurityGroupCommand.ts | 6 +- .../commands/DeleteCacheSubnetGroupCommand.ts | 6 +- .../DeleteGlobalReplicationGroupCommand.ts | 6 +- .../commands/DeleteReplicationGroupCommand.ts | 6 +- .../commands/DeleteServerlessCacheCommand.ts | 6 +- .../DeleteServerlessCacheSnapshotCommand.ts | 6 +- .../src/commands/DeleteSnapshotCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../src/commands/DeleteUserGroupCommand.ts | 6 +- .../commands/DescribeCacheClustersCommand.ts | 6 +- .../DescribeCacheEngineVersionsCommand.ts | 6 +- .../DescribeCacheParameterGroupsCommand.ts | 6 +- .../DescribeCacheParametersCommand.ts | 6 +- .../DescribeCacheSecurityGroupsCommand.ts | 6 +- .../DescribeCacheSubnetGroupsCommand.ts | 6 +- .../DescribeEngineDefaultParametersCommand.ts | 6 +- .../src/commands/DescribeEventsCommand.ts | 6 +- .../DescribeGlobalReplicationGroupsCommand.ts | 6 +- .../DescribeReplicationGroupsCommand.ts | 6 +- .../DescribeReservedCacheNodesCommand.ts | 6 +- ...cribeReservedCacheNodesOfferingsCommand.ts | 6 +- ...DescribeServerlessCacheSnapshotsCommand.ts | 9 +- .../DescribeServerlessCachesCommand.ts | 6 +- .../commands/DescribeServiceUpdatesCommand.ts | 6 +- .../src/commands/DescribeSnapshotsCommand.ts | 6 +- .../commands/DescribeUpdateActionsCommand.ts | 6 +- .../src/commands/DescribeUserGroupsCommand.ts | 6 +- .../src/commands/DescribeUsersCommand.ts | 6 +- ...sassociateGlobalReplicationGroupCommand.ts | 6 +- .../ExportServerlessCacheSnapshotCommand.ts | 6 +- .../FailoverGlobalReplicationGroupCommand.ts | 6 +- ...deGroupsInGlobalReplicationGroupCommand.ts | 6 +- .../commands/IncreaseReplicaCountCommand.ts | 6 +- ...ListAllowedNodeTypeModificationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ModifyCacheClusterCommand.ts | 6 +- .../ModifyCacheParameterGroupCommand.ts | 6 +- .../commands/ModifyCacheSubnetGroupCommand.ts | 6 +- .../ModifyGlobalReplicationGroupCommand.ts | 6 +- .../commands/ModifyReplicationGroupCommand.ts | 6 +- ...plicationGroupShardConfigurationCommand.ts | 6 +- .../commands/ModifyServerlessCacheCommand.ts | 6 +- .../src/commands/ModifyUserCommand.ts | 6 +- .../src/commands/ModifyUserGroupCommand.ts | 6 +- ...rchaseReservedCacheNodesOfferingCommand.ts | 6 +- ...nceSlotsInGlobalReplicationGroupCommand.ts | 6 +- .../src/commands/RebootCacheClusterCommand.ts | 6 +- .../commands/RemoveTagsFromResourceCommand.ts | 6 +- .../ResetCacheParameterGroupCommand.ts | 6 +- .../RevokeCacheSecurityGroupIngressCommand.ts | 6 +- .../src/commands/StartMigrationCommand.ts | 6 +- .../src/commands/TestFailoverCommand.ts | 6 +- .../src/commands/TestMigrationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ElastiCacheServiceException.ts | 2 +- .../client-elasticache/src/models/errors.ts | 2 +- .../DescribeCacheClustersPaginator.ts | 2 +- .../DescribeCacheEngineVersionsPaginator.ts | 2 +- .../DescribeCacheParameterGroupsPaginator.ts | 2 +- .../DescribeCacheParametersPaginator.ts | 2 +- .../DescribeCacheSecurityGroupsPaginator.ts | 2 +- .../DescribeCacheSubnetGroupsPaginator.ts | 2 +- ...escribeEngineDefaultParametersPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- ...escribeGlobalReplicationGroupsPaginator.ts | 2 +- .../DescribeReplicationGroupsPaginator.ts | 2 +- ...ibeReservedCacheNodesOfferingsPaginator.ts | 2 +- .../DescribeReservedCacheNodesPaginator.ts | 2 +- ...scribeServerlessCacheSnapshotsPaginator.ts | 2 +- .../DescribeServerlessCachesPaginator.ts | 2 +- .../DescribeServiceUpdatesPaginator.ts | 2 +- .../pagination/DescribeSnapshotsPaginator.ts | 2 +- .../DescribeUpdateActionsPaginator.ts | 2 +- .../pagination/DescribeUserGroupsPaginator.ts | 2 +- .../src/pagination/DescribeUsersPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-elasticache/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-elasticsearch-service/package.json | 12 +- .../src/ElasticsearchService.ts | 4 +- .../src/ElasticsearchServiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...oundCrossClusterSearchConnectionCommand.ts | 6 +- .../src/commands/AddTagsCommand.ts | 6 +- .../src/commands/AssociatePackageCommand.ts | 6 +- .../AuthorizeVpcEndpointAccessCommand.ts | 6 +- .../CancelDomainConfigChangeCommand.ts | 6 +- ...asticsearchServiceSoftwareUpdateCommand.ts | 6 +- .../CreateElasticsearchDomainCommand.ts | 6 +- ...oundCrossClusterSearchConnectionCommand.ts | 6 +- .../src/commands/CreatePackageCommand.ts | 6 +- .../src/commands/CreateVpcEndpointCommand.ts | 6 +- .../DeleteElasticsearchDomainCommand.ts | 6 +- .../DeleteElasticsearchServiceRoleCommand.ts | 4 +- ...oundCrossClusterSearchConnectionCommand.ts | 6 +- ...oundCrossClusterSearchConnectionCommand.ts | 6 +- .../src/commands/DeletePackageCommand.ts | 6 +- .../src/commands/DeleteVpcEndpointCommand.ts | 6 +- .../DescribeDomainAutoTunesCommand.ts | 6 +- .../DescribeDomainChangeProgressCommand.ts | 6 +- .../DescribeElasticsearchDomainCommand.ts | 6 +- ...escribeElasticsearchDomainConfigCommand.ts | 6 +- .../DescribeElasticsearchDomainsCommand.ts | 6 +- ...eElasticsearchInstanceTypeLimitsCommand.ts | 6 +- ...undCrossClusterSearchConnectionsCommand.ts | 6 +- ...undCrossClusterSearchConnectionsCommand.ts | 6 +- .../src/commands/DescribePackagesCommand.ts | 6 +- ...edElasticsearchInstanceOfferingsCommand.ts | 6 +- ...beReservedElasticsearchInstancesCommand.ts | 6 +- .../commands/DescribeVpcEndpointsCommand.ts | 6 +- .../src/commands/DissociatePackageCommand.ts | 6 +- ...tCompatibleElasticsearchVersionsCommand.ts | 6 +- .../GetPackageVersionHistoryCommand.ts | 6 +- .../src/commands/GetUpgradeHistoryCommand.ts | 6 +- .../src/commands/GetUpgradeStatusCommand.ts | 6 +- .../src/commands/ListDomainNamesCommand.ts | 6 +- .../commands/ListDomainsForPackageCommand.ts | 6 +- .../ListElasticsearchInstanceTypesCommand.ts | 6 +- .../ListElasticsearchVersionsCommand.ts | 6 +- .../commands/ListPackagesForDomainCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../commands/ListVpcEndpointAccessCommand.ts | 6 +- .../src/commands/ListVpcEndpointsCommand.ts | 6 +- .../ListVpcEndpointsForDomainCommand.ts | 6 +- ...vedElasticsearchInstanceOfferingCommand.ts | 6 +- ...oundCrossClusterSearchConnectionCommand.ts | 6 +- .../src/commands/RemoveTagsCommand.ts | 6 +- .../RevokeVpcEndpointAccessCommand.ts | 6 +- ...asticsearchServiceSoftwareUpdateCommand.ts | 6 +- .../UpdateElasticsearchDomainConfigCommand.ts | 9 +- .../src/commands/UpdatePackageCommand.ts | 6 +- .../src/commands/UpdateVpcEndpointCommand.ts | 6 +- .../UpgradeElasticsearchDomainCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ElasticsearchServiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeDomainAutoTunesPaginator.ts | 2 +- ...dCrossClusterSearchConnectionsPaginator.ts | 2 +- ...dCrossClusterSearchConnectionsPaginator.ts | 2 +- .../pagination/DescribePackagesPaginator.ts | 2 +- ...ElasticsearchInstanceOfferingsPaginator.ts | 2 +- ...ReservedElasticsearchInstancesPaginator.ts | 2 +- .../GetPackageVersionHistoryPaginator.ts | 2 +- .../pagination/GetUpgradeHistoryPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDomainsForPackagePaginator.ts | 2 +- ...ListElasticsearchInstanceTypesPaginator.ts | 2 +- .../ListElasticsearchVersionsPaginator.ts | 2 +- .../ListPackagesForDomainPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-emr-containers/package.json | 12 +- .../src/EMRContainers.ts | 4 +- .../src/EMRContainersClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelJobRunCommand.ts | 6 +- .../src/commands/CreateJobTemplateCommand.ts | 6 +- .../commands/CreateManagedEndpointCommand.ts | 6 +- .../CreateSecurityConfigurationCommand.ts | 6 +- .../commands/CreateVirtualClusterCommand.ts | 6 +- .../src/commands/DeleteJobTemplateCommand.ts | 6 +- .../commands/DeleteManagedEndpointCommand.ts | 6 +- .../commands/DeleteVirtualClusterCommand.ts | 6 +- .../src/commands/DescribeJobRunCommand.ts | 6 +- .../commands/DescribeJobTemplateCommand.ts | 6 +- .../DescribeManagedEndpointCommand.ts | 6 +- .../DescribeSecurityConfigurationCommand.ts | 6 +- .../commands/DescribeVirtualClusterCommand.ts | 6 +- ...anagedEndpointSessionCredentialsCommand.ts | 6 +- .../src/commands/ListJobRunsCommand.ts | 6 +- .../src/commands/ListJobTemplatesCommand.ts | 6 +- .../commands/ListManagedEndpointsCommand.ts | 6 +- .../ListSecurityConfigurationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListVirtualClustersCommand.ts | 6 +- .../src/commands/StartJobRunCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/EMRContainersServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListJobRunsPaginator.ts | 2 +- .../pagination/ListJobTemplatesPaginator.ts | 2 +- .../ListManagedEndpointsPaginator.ts | 2 +- .../ListSecurityConfigurationsPaginator.ts | 2 +- .../ListVirtualClustersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-emr-serverless/package.json | 12 +- .../src/EMRServerless.ts | 4 +- .../src/EMRServerlessClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelJobRunCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../commands/GetDashboardForJobRunCommand.ts | 6 +- .../src/commands/GetJobRunCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../src/commands/ListJobRunAttemptsCommand.ts | 6 +- .../src/commands/ListJobRunsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartApplicationCommand.ts | 6 +- .../src/commands/StartJobRunCommand.ts | 6 +- .../src/commands/StopApplicationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/EMRServerlessServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../pagination/ListJobRunAttemptsPaginator.ts | 2 +- .../src/pagination/ListJobRunsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-emr/package.json | 12 +- clients/client-emr/src/EMR.ts | 4 +- clients/client-emr/src/EMRClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddInstanceFleetCommand.ts | 6 +- .../src/commands/AddInstanceGroupsCommand.ts | 6 +- .../src/commands/AddJobFlowStepsCommand.ts | 6 +- .../client-emr/src/commands/AddTagsCommand.ts | 6 +- .../src/commands/CancelStepsCommand.ts | 6 +- .../commands/CreatePersistentAppUICommand.ts | 6 +- .../CreateSecurityConfigurationCommand.ts | 6 +- .../src/commands/CreateStudioCommand.ts | 6 +- .../CreateStudioSessionMappingCommand.ts | 6 +- .../DeleteSecurityConfigurationCommand.ts | 6 +- .../src/commands/DeleteStudioCommand.ts | 6 +- .../DeleteStudioSessionMappingCommand.ts | 6 +- .../src/commands/DescribeClusterCommand.ts | 6 +- .../src/commands/DescribeJobFlowsCommand.ts | 6 +- .../DescribeNotebookExecutionCommand.ts | 6 +- .../DescribePersistentAppUICommand.ts | 6 +- .../commands/DescribeReleaseLabelCommand.ts | 6 +- .../DescribeSecurityConfigurationCommand.ts | 6 +- .../src/commands/DescribeStepCommand.ts | 6 +- .../src/commands/DescribeStudioCommand.ts | 6 +- .../GetAutoTerminationPolicyCommand.ts | 6 +- ...etBlockPublicAccessConfigurationCommand.ts | 9 +- .../GetClusterSessionCredentialsCommand.ts | 6 +- .../GetManagedScalingPolicyCommand.ts | 6 +- .../GetOnClusterAppUIPresignedURLCommand.ts | 6 +- .../GetPersistentAppUIPresignedURLCommand.ts | 6 +- .../GetStudioSessionMappingCommand.ts | 6 +- .../commands/ListBootstrapActionsCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../src/commands/ListInstanceFleetsCommand.ts | 6 +- .../src/commands/ListInstanceGroupsCommand.ts | 6 +- .../src/commands/ListInstancesCommand.ts | 6 +- .../commands/ListNotebookExecutionsCommand.ts | 6 +- .../src/commands/ListReleaseLabelsCommand.ts | 6 +- .../ListSecurityConfigurationsCommand.ts | 6 +- .../src/commands/ListStepsCommand.ts | 6 +- .../ListStudioSessionMappingsCommand.ts | 6 +- .../src/commands/ListStudiosCommand.ts | 6 +- .../ListSupportedInstanceTypesCommand.ts | 6 +- .../src/commands/ModifyClusterCommand.ts | 6 +- .../commands/ModifyInstanceFleetCommand.ts | 6 +- .../commands/ModifyInstanceGroupsCommand.ts | 6 +- .../commands/PutAutoScalingPolicyCommand.ts | 6 +- .../PutAutoTerminationPolicyCommand.ts | 6 +- ...utBlockPublicAccessConfigurationCommand.ts | 9 +- .../PutManagedScalingPolicyCommand.ts | 6 +- .../RemoveAutoScalingPolicyCommand.ts | 6 +- .../RemoveAutoTerminationPolicyCommand.ts | 6 +- .../RemoveManagedScalingPolicyCommand.ts | 6 +- .../src/commands/RemoveTagsCommand.ts | 6 +- .../src/commands/RunJobFlowCommand.ts | 6 +- .../SetKeepJobFlowAliveWhenNoStepsCommand.ts | 6 +- .../SetTerminationProtectionCommand.ts | 6 +- .../SetUnhealthyNodeReplacementCommand.ts | 6 +- .../commands/SetVisibleToAllUsersCommand.ts | 6 +- .../commands/StartNotebookExecutionCommand.ts | 6 +- .../commands/StopNotebookExecutionCommand.ts | 6 +- .../src/commands/TerminateJobFlowsCommand.ts | 6 +- .../src/commands/UpdateStudioCommand.ts | 6 +- .../UpdateStudioSessionMappingCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-emr/src/extensionConfiguration.ts | 8 +- .../src/models/EMRServiceException.ts | 2 +- clients/client-emr/src/models/errors.ts | 2 +- .../client-emr/src/pagination/Interfaces.ts | 2 +- .../ListBootstrapActionsPaginator.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../pagination/ListInstanceFleetsPaginator.ts | 2 +- .../pagination/ListInstanceGroupsPaginator.ts | 2 +- .../src/pagination/ListInstancesPaginator.ts | 2 +- .../ListNotebookExecutionsPaginator.ts | 2 +- .../pagination/ListReleaseLabelsPaginator.ts | 2 +- .../ListSecurityConfigurationsPaginator.ts | 2 +- .../src/pagination/ListStepsPaginator.ts | 2 +- .../ListStudioSessionMappingsPaginator.ts | 2 +- .../src/pagination/ListStudiosPaginator.ts | 2 +- .../ListSupportedInstanceTypesPaginator.ts | 2 +- .../client-emr/src/runtimeConfig.browser.ts | 7 +- .../client-emr/src/runtimeConfig.native.ts | 2 +- .../client-emr/src/runtimeConfig.shared.ts | 4 +- clients/client-emr/src/runtimeConfig.ts | 8 +- clients/client-emr/src/runtimeExtensions.ts | 2 +- clients/client-emr/src/schemas/schemas_0.ts | 2 +- clients/client-entityresolution/package.json | 12 +- .../src/EntityResolution.ts | 4 +- .../src/EntityResolutionClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddPolicyStatementCommand.ts | 10 +- .../commands/BatchDeleteUniqueIdCommand.ts | 10 +- .../CreateIdMappingWorkflowCommand.ts | 10 +- .../src/commands/CreateIdNamespaceCommand.ts | 10 +- .../commands/CreateMatchingWorkflowCommand.ts | 10 +- .../commands/CreateSchemaMappingCommand.ts | 10 +- .../DeleteIdMappingWorkflowCommand.ts | 10 +- .../src/commands/DeleteIdNamespaceCommand.ts | 10 +- .../commands/DeleteMatchingWorkflowCommand.ts | 10 +- .../commands/DeletePolicyStatementCommand.ts | 10 +- .../commands/DeleteSchemaMappingCommand.ts | 10 +- .../src/commands/GenerateMatchIdCommand.ts | 10 +- .../src/commands/GetIdMappingJobCommand.ts | 10 +- .../commands/GetIdMappingWorkflowCommand.ts | 10 +- .../src/commands/GetIdNamespaceCommand.ts | 10 +- .../src/commands/GetMatchIdCommand.ts | 10 +- .../src/commands/GetMatchingJobCommand.ts | 10 +- .../commands/GetMatchingWorkflowCommand.ts | 10 +- .../src/commands/GetPolicyCommand.ts | 10 +- .../src/commands/GetProviderServiceCommand.ts | 10 +- .../src/commands/GetSchemaMappingCommand.ts | 10 +- .../src/commands/ListIdMappingJobsCommand.ts | 10 +- .../commands/ListIdMappingWorkflowsCommand.ts | 10 +- .../src/commands/ListIdNamespacesCommand.ts | 10 +- .../src/commands/ListMatchingJobsCommand.ts | 10 +- .../commands/ListMatchingWorkflowsCommand.ts | 10 +- .../commands/ListProviderServicesCommand.ts | 10 +- .../src/commands/ListSchemaMappingsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/PutPolicyCommand.ts | 10 +- .../src/commands/StartIdMappingJobCommand.ts | 10 +- .../src/commands/StartMatchingJobCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../UpdateIdMappingWorkflowCommand.ts | 10 +- .../src/commands/UpdateIdNamespaceCommand.ts | 10 +- .../commands/UpdateMatchingWorkflowCommand.ts | 10 +- .../commands/UpdateSchemaMappingCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../EntityResolutionServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListIdMappingJobsPaginator.ts | 2 +- .../ListIdMappingWorkflowsPaginator.ts | 2 +- .../pagination/ListIdNamespacesPaginator.ts | 2 +- .../pagination/ListMatchingJobsPaginator.ts | 2 +- .../ListMatchingWorkflowsPaginator.ts | 2 +- .../ListProviderServicesPaginator.ts | 2 +- .../pagination/ListSchemaMappingsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-eventbridge/package.json | 12 +- clients/client-eventbridge/src/EventBridge.ts | 4 +- .../src/EventBridgeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 8 +- .../commands/ActivateEventSourceCommand.ts | 6 +- .../src/commands/CancelReplayCommand.ts | 6 +- .../commands/CreateApiDestinationCommand.ts | 6 +- .../src/commands/CreateArchiveCommand.ts | 6 +- .../src/commands/CreateConnectionCommand.ts | 6 +- .../src/commands/CreateEndpointCommand.ts | 6 +- .../src/commands/CreateEventBusCommand.ts | 6 +- .../CreatePartnerEventSourceCommand.ts | 6 +- .../commands/DeactivateEventSourceCommand.ts | 6 +- .../commands/DeauthorizeConnectionCommand.ts | 6 +- .../commands/DeleteApiDestinationCommand.ts | 6 +- .../src/commands/DeleteArchiveCommand.ts | 6 +- .../src/commands/DeleteConnectionCommand.ts | 6 +- .../src/commands/DeleteEndpointCommand.ts | 6 +- .../src/commands/DeleteEventBusCommand.ts | 6 +- .../DeletePartnerEventSourceCommand.ts | 6 +- .../src/commands/DeleteRuleCommand.ts | 6 +- .../commands/DescribeApiDestinationCommand.ts | 6 +- .../src/commands/DescribeArchiveCommand.ts | 6 +- .../src/commands/DescribeConnectionCommand.ts | 6 +- .../src/commands/DescribeEndpointCommand.ts | 6 +- .../src/commands/DescribeEventBusCommand.ts | 6 +- .../commands/DescribeEventSourceCommand.ts | 6 +- .../DescribePartnerEventSourceCommand.ts | 6 +- .../src/commands/DescribeReplayCommand.ts | 6 +- .../src/commands/DescribeRuleCommand.ts | 6 +- .../src/commands/DisableRuleCommand.ts | 6 +- .../src/commands/EnableRuleCommand.ts | 6 +- .../commands/ListApiDestinationsCommand.ts | 6 +- .../src/commands/ListArchivesCommand.ts | 6 +- .../src/commands/ListConnectionsCommand.ts | 6 +- .../src/commands/ListEndpointsCommand.ts | 6 +- .../src/commands/ListEventBusesCommand.ts | 6 +- .../src/commands/ListEventSourcesCommand.ts | 6 +- .../ListPartnerEventSourceAccountsCommand.ts | 6 +- .../ListPartnerEventSourcesCommand.ts | 6 +- .../src/commands/ListReplaysCommand.ts | 6 +- .../commands/ListRuleNamesByTargetCommand.ts | 6 +- .../src/commands/ListRulesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTargetsByRuleCommand.ts | 6 +- .../src/commands/PutEventsCommand.ts | 6 +- .../src/commands/PutPartnerEventsCommand.ts | 6 +- .../src/commands/PutPermissionCommand.ts | 6 +- .../src/commands/PutRuleCommand.ts | 6 +- .../src/commands/PutTargetsCommand.ts | 6 +- .../src/commands/RemovePermissionCommand.ts | 6 +- .../src/commands/RemoveTargetsCommand.ts | 6 +- .../src/commands/StartReplayCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TestEventPatternCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateApiDestinationCommand.ts | 6 +- .../src/commands/UpdateArchiveCommand.ts | 6 +- .../src/commands/UpdateConnectionCommand.ts | 6 +- .../src/commands/UpdateEndpointCommand.ts | 6 +- .../src/commands/UpdateEventBusCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/EventBridgeServiceException.ts | 2 +- .../client-eventbridge/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-eventbridge/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-evidently/package.json | 12 +- clients/client-evidently/src/Evidently.ts | 4 +- .../client-evidently/src/EvidentlyClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchEvaluateFeatureCommand.ts | 6 +- .../src/commands/CreateExperimentCommand.ts | 6 +- .../src/commands/CreateFeatureCommand.ts | 6 +- .../src/commands/CreateLaunchCommand.ts | 6 +- .../src/commands/CreateProjectCommand.ts | 6 +- .../src/commands/CreateSegmentCommand.ts | 6 +- .../src/commands/DeleteExperimentCommand.ts | 6 +- .../src/commands/DeleteFeatureCommand.ts | 6 +- .../src/commands/DeleteLaunchCommand.ts | 6 +- .../src/commands/DeleteProjectCommand.ts | 6 +- .../src/commands/DeleteSegmentCommand.ts | 6 +- .../src/commands/EvaluateFeatureCommand.ts | 6 +- .../src/commands/GetExperimentCommand.ts | 6 +- .../commands/GetExperimentResultsCommand.ts | 6 +- .../src/commands/GetFeatureCommand.ts | 6 +- .../src/commands/GetLaunchCommand.ts | 6 +- .../src/commands/GetProjectCommand.ts | 6 +- .../src/commands/GetSegmentCommand.ts | 6 +- .../src/commands/ListExperimentsCommand.ts | 6 +- .../src/commands/ListFeaturesCommand.ts | 6 +- .../src/commands/ListLaunchesCommand.ts | 6 +- .../src/commands/ListProjectsCommand.ts | 6 +- .../commands/ListSegmentReferencesCommand.ts | 6 +- .../src/commands/ListSegmentsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutProjectEventsCommand.ts | 6 +- .../src/commands/StartExperimentCommand.ts | 6 +- .../src/commands/StartLaunchCommand.ts | 6 +- .../src/commands/StopExperimentCommand.ts | 6 +- .../src/commands/StopLaunchCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TestSegmentPatternCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateExperimentCommand.ts | 6 +- .../src/commands/UpdateFeatureCommand.ts | 6 +- .../src/commands/UpdateLaunchCommand.ts | 6 +- .../src/commands/UpdateProjectCommand.ts | 6 +- .../UpdateProjectDataDeliveryCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/EvidentlyServiceException.ts | 2 +- clients/client-evidently/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListExperimentsPaginator.ts | 2 +- .../src/pagination/ListFeaturesPaginator.ts | 2 +- .../src/pagination/ListLaunchesPaginator.ts | 2 +- .../src/pagination/ListProjectsPaginator.ts | 2 +- .../ListSegmentReferencesPaginator.ts | 2 +- .../src/pagination/ListSegmentsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-evidently/src/runtimeConfig.ts | 8 +- .../client-evidently/src/runtimeExtensions.ts | 2 +- .../client-evidently/src/schemas/schemas_0.ts | 2 +- clients/client-evs/package.json | 12 +- clients/client-evs/src/Evs.ts | 4 +- clients/client-evs/src/EvsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateEipToVlanCommand.ts | 6 +- .../src/commands/CreateEnvironmentCommand.ts | 6 +- .../commands/CreateEnvironmentHostCommand.ts | 6 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../commands/DeleteEnvironmentHostCommand.ts | 6 +- .../DisassociateEipFromVlanCommand.ts | 6 +- .../src/commands/GetEnvironmentCommand.ts | 6 +- .../commands/ListEnvironmentHostsCommand.ts | 6 +- .../commands/ListEnvironmentVlansCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-evs/src/extensionConfiguration.ts | 8 +- .../src/models/EvsServiceException.ts | 2 +- clients/client-evs/src/models/errors.ts | 2 +- .../client-evs/src/pagination/Interfaces.ts | 2 +- .../ListEnvironmentHostsPaginator.ts | 2 +- .../ListEnvironmentVlansPaginator.ts | 2 +- .../pagination/ListEnvironmentsPaginator.ts | 2 +- .../client-evs/src/runtimeConfig.browser.ts | 7 +- .../client-evs/src/runtimeConfig.native.ts | 2 +- .../client-evs/src/runtimeConfig.shared.ts | 4 +- clients/client-evs/src/runtimeConfig.ts | 8 +- clients/client-evs/src/runtimeExtensions.ts | 2 +- clients/client-evs/src/schemas/schemas_0.ts | 2 +- clients/client-finspace-data/package.json | 12 +- .../client-finspace-data/src/FinspaceData.ts | 4 +- .../src/FinspaceDataClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateUserToPermissionGroupCommand.ts | 6 +- .../src/commands/CreateChangesetCommand.ts | 6 +- .../src/commands/CreateDataViewCommand.ts | 6 +- .../src/commands/CreateDatasetCommand.ts | 6 +- .../commands/CreatePermissionGroupCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/DeleteDatasetCommand.ts | 6 +- .../commands/DeletePermissionGroupCommand.ts | 6 +- .../src/commands/DisableUserCommand.ts | 6 +- ...associateUserFromPermissionGroupCommand.ts | 6 +- .../src/commands/EnableUserCommand.ts | 6 +- .../src/commands/GetChangesetCommand.ts | 6 +- .../src/commands/GetDataViewCommand.ts | 6 +- .../src/commands/GetDatasetCommand.ts | 6 +- ...GetExternalDataViewAccessDetailsCommand.ts | 9 +- .../src/commands/GetPermissionGroupCommand.ts | 6 +- ...GetProgrammaticAccessCredentialsCommand.ts | 9 +- .../src/commands/GetUserCommand.ts | 6 +- .../src/commands/GetWorkingLocationCommand.ts | 6 +- .../src/commands/ListChangesetsCommand.ts | 6 +- .../src/commands/ListDataViewsCommand.ts | 6 +- .../src/commands/ListDatasetsCommand.ts | 6 +- .../ListPermissionGroupsByUserCommand.ts | 6 +- .../commands/ListPermissionGroupsCommand.ts | 6 +- .../ListUsersByPermissionGroupCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../src/commands/ResetUserPasswordCommand.ts | 6 +- .../src/commands/UpdateChangesetCommand.ts | 6 +- .../src/commands/UpdateDatasetCommand.ts | 6 +- .../commands/UpdatePermissionGroupCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/FinspaceDataServiceException.ts | 2 +- .../client-finspace-data/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChangesetsPaginator.ts | 2 +- .../src/pagination/ListDataViewsPaginator.ts | 2 +- .../src/pagination/ListDatasetsPaginator.ts | 2 +- .../ListPermissionGroupsPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-finspace-data/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-finspace/package.json | 12 +- clients/client-finspace/src/Finspace.ts | 4 +- clients/client-finspace/src/FinspaceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateEnvironmentCommand.ts | 6 +- .../src/commands/CreateKxChangesetCommand.ts | 6 +- .../src/commands/CreateKxClusterCommand.ts | 6 +- .../src/commands/CreateKxDatabaseCommand.ts | 6 +- .../src/commands/CreateKxDataviewCommand.ts | 6 +- .../commands/CreateKxEnvironmentCommand.ts | 6 +- .../commands/CreateKxScalingGroupCommand.ts | 6 +- .../src/commands/CreateKxUserCommand.ts | 6 +- .../src/commands/CreateKxVolumeCommand.ts | 6 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../src/commands/DeleteKxClusterCommand.ts | 6 +- .../commands/DeleteKxClusterNodeCommand.ts | 6 +- .../src/commands/DeleteKxDatabaseCommand.ts | 6 +- .../src/commands/DeleteKxDataviewCommand.ts | 6 +- .../commands/DeleteKxEnvironmentCommand.ts | 6 +- .../commands/DeleteKxScalingGroupCommand.ts | 6 +- .../src/commands/DeleteKxUserCommand.ts | 6 +- .../src/commands/DeleteKxVolumeCommand.ts | 6 +- .../src/commands/GetEnvironmentCommand.ts | 6 +- .../src/commands/GetKxChangesetCommand.ts | 6 +- .../src/commands/GetKxClusterCommand.ts | 6 +- .../commands/GetKxConnectionStringCommand.ts | 6 +- .../src/commands/GetKxDatabaseCommand.ts | 6 +- .../src/commands/GetKxDataviewCommand.ts | 6 +- .../src/commands/GetKxEnvironmentCommand.ts | 6 +- .../src/commands/GetKxScalingGroupCommand.ts | 6 +- .../src/commands/GetKxUserCommand.ts | 6 +- .../src/commands/GetKxVolumeCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../src/commands/ListKxChangesetsCommand.ts | 6 +- .../src/commands/ListKxClusterNodesCommand.ts | 6 +- .../src/commands/ListKxClustersCommand.ts | 6 +- .../src/commands/ListKxDatabasesCommand.ts | 6 +- .../src/commands/ListKxDataviewsCommand.ts | 6 +- .../src/commands/ListKxEnvironmentsCommand.ts | 6 +- .../commands/ListKxScalingGroupsCommand.ts | 6 +- .../src/commands/ListKxUsersCommand.ts | 6 +- .../src/commands/ListKxVolumesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateEnvironmentCommand.ts | 6 +- ...UpdateKxClusterCodeConfigurationCommand.ts | 9 +- .../UpdateKxClusterDatabasesCommand.ts | 6 +- .../src/commands/UpdateKxDatabaseCommand.ts | 6 +- .../src/commands/UpdateKxDataviewCommand.ts | 6 +- .../commands/UpdateKxEnvironmentCommand.ts | 6 +- .../UpdateKxEnvironmentNetworkCommand.ts | 6 +- .../src/commands/UpdateKxUserCommand.ts | 6 +- .../src/commands/UpdateKxVolumeCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/FinspaceServiceException.ts | 2 +- clients/client-finspace/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListKxChangesetsPaginator.ts | 2 +- .../pagination/ListKxClusterNodesPaginator.ts | 2 +- .../pagination/ListKxDatabasesPaginator.ts | 2 +- .../pagination/ListKxDataviewsPaginator.ts | 2 +- .../pagination/ListKxEnvironmentsPaginator.ts | 2 +- .../ListKxScalingGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-finspace/src/runtimeConfig.ts | 8 +- .../client-finspace/src/runtimeExtensions.ts | 2 +- .../client-finspace/src/schemas/schemas_0.ts | 2 +- clients/client-firehose/package.json | 12 +- clients/client-firehose/src/Firehose.ts | 4 +- clients/client-firehose/src/FirehoseClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateDeliveryStreamCommand.ts | 6 +- .../commands/DeleteDeliveryStreamCommand.ts | 6 +- .../commands/DescribeDeliveryStreamCommand.ts | 6 +- .../commands/ListDeliveryStreamsCommand.ts | 6 +- .../ListTagsForDeliveryStreamCommand.ts | 6 +- .../src/commands/PutRecordBatchCommand.ts | 6 +- .../src/commands/PutRecordCommand.ts | 6 +- .../StartDeliveryStreamEncryptionCommand.ts | 6 +- .../StopDeliveryStreamEncryptionCommand.ts | 6 +- .../src/commands/TagDeliveryStreamCommand.ts | 6 +- .../commands/UntagDeliveryStreamCommand.ts | 6 +- .../src/commands/UpdateDestinationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/FirehoseServiceException.ts | 2 +- clients/client-firehose/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-firehose/src/runtimeConfig.ts | 8 +- .../client-firehose/src/runtimeExtensions.ts | 2 +- .../client-firehose/src/schemas/schemas_0.ts | 2 +- clients/client-fis/package.json | 12 +- clients/client-fis/src/Fis.ts | 4 +- clients/client-fis/src/FisClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateExperimentTemplateCommand.ts | 6 +- ...CreateTargetAccountConfigurationCommand.ts | 9 +- .../DeleteExperimentTemplateCommand.ts | 6 +- ...DeleteTargetAccountConfigurationCommand.ts | 9 +- .../src/commands/GetActionCommand.ts | 6 +- .../src/commands/GetExperimentCommand.ts | 6 +- ...rimentTargetAccountConfigurationCommand.ts | 6 +- .../commands/GetExperimentTemplateCommand.ts | 6 +- .../src/commands/GetSafetyLeverCommand.ts | 6 +- .../GetTargetAccountConfigurationCommand.ts | 6 +- .../commands/GetTargetResourceTypeCommand.ts | 6 +- .../src/commands/ListActionsCommand.ts | 6 +- .../ListExperimentResolvedTargetsCommand.ts | 6 +- ...imentTargetAccountConfigurationsCommand.ts | 6 +- .../ListExperimentTemplatesCommand.ts | 6 +- .../src/commands/ListExperimentsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListTargetAccountConfigurationsCommand.ts | 9 +- .../ListTargetResourceTypesCommand.ts | 6 +- .../src/commands/StartExperimentCommand.ts | 6 +- .../src/commands/StopExperimentCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateExperimentTemplateCommand.ts | 6 +- .../commands/UpdateSafetyLeverStateCommand.ts | 6 +- ...UpdateTargetAccountConfigurationCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-fis/src/extensionConfiguration.ts | 8 +- .../src/models/FisServiceException.ts | 2 +- clients/client-fis/src/models/errors.ts | 2 +- .../client-fis/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListActionsPaginator.ts | 2 +- .../ListExperimentResolvedTargetsPaginator.ts | 2 +- .../ListExperimentTemplatesPaginator.ts | 2 +- .../pagination/ListExperimentsPaginator.ts | 2 +- ...istTargetAccountConfigurationsPaginator.ts | 2 +- .../ListTargetResourceTypesPaginator.ts | 2 +- .../client-fis/src/runtimeConfig.browser.ts | 7 +- .../client-fis/src/runtimeConfig.native.ts | 2 +- .../client-fis/src/runtimeConfig.shared.ts | 4 +- clients/client-fis/src/runtimeConfig.ts | 8 +- clients/client-fis/src/runtimeExtensions.ts | 2 +- clients/client-fis/src/schemas/schemas_0.ts | 2 +- clients/client-fms/package.json | 12 +- clients/client-fms/src/FMS.ts | 4 +- clients/client-fms/src/FMSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateAdminAccountCommand.ts | 6 +- .../AssociateThirdPartyFirewallCommand.ts | 6 +- .../commands/BatchAssociateResourceCommand.ts | 6 +- .../BatchDisassociateResourceCommand.ts | 6 +- .../src/commands/DeleteAppsListCommand.ts | 6 +- .../DeleteNotificationChannelCommand.ts | 6 +- .../src/commands/DeletePolicyCommand.ts | 6 +- .../commands/DeleteProtocolsListCommand.ts | 6 +- .../src/commands/DeleteResourceSetCommand.ts | 6 +- .../DisassociateAdminAccountCommand.ts | 6 +- .../DisassociateThirdPartyFirewallCommand.ts | 6 +- .../src/commands/GetAdminAccountCommand.ts | 6 +- .../src/commands/GetAdminScopeCommand.ts | 6 +- .../src/commands/GetAppsListCommand.ts | 6 +- .../commands/GetComplianceDetailCommand.ts | 6 +- .../commands/GetNotificationChannelCommand.ts | 6 +- .../src/commands/GetPolicyCommand.ts | 6 +- .../commands/GetProtectionStatusCommand.ts | 6 +- .../src/commands/GetProtocolsListCommand.ts | 6 +- .../src/commands/GetResourceSetCommand.ts | 6 +- ...rdPartyFirewallAssociationStatusCommand.ts | 6 +- .../commands/GetViolationDetailsCommand.ts | 6 +- ...ListAdminAccountsForOrganizationCommand.ts | 9 +- .../ListAdminsManagingAccountCommand.ts | 6 +- .../src/commands/ListAppsListsCommand.ts | 6 +- .../commands/ListComplianceStatusCommand.ts | 6 +- .../ListDiscoveredResourcesCommand.ts | 6 +- .../src/commands/ListMemberAccountsCommand.ts | 6 +- .../src/commands/ListPoliciesCommand.ts | 6 +- .../src/commands/ListProtocolsListsCommand.ts | 6 +- .../ListResourceSetResourcesCommand.ts | 6 +- .../src/commands/ListResourceSetsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...irdPartyFirewallFirewallPoliciesCommand.ts | 6 +- .../src/commands/PutAdminAccountCommand.ts | 6 +- .../src/commands/PutAppsListCommand.ts | 6 +- .../commands/PutNotificationChannelCommand.ts | 6 +- .../src/commands/PutPolicyCommand.ts | 6 +- .../src/commands/PutProtocolsListCommand.ts | 6 +- .../src/commands/PutResourceSetCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-fms/src/extensionConfiguration.ts | 8 +- .../src/models/FMSServiceException.ts | 2 +- clients/client-fms/src/models/errors.ts | 2 +- .../client-fms/src/pagination/Interfaces.ts | 2 +- ...stAdminAccountsForOrganizationPaginator.ts | 2 +- .../ListAdminsManagingAccountPaginator.ts | 2 +- .../src/pagination/ListAppsListsPaginator.ts | 2 +- .../ListComplianceStatusPaginator.ts | 2 +- .../pagination/ListMemberAccountsPaginator.ts | 2 +- .../src/pagination/ListPoliciesPaginator.ts | 2 +- .../pagination/ListProtocolsListsPaginator.ts | 2 +- ...dPartyFirewallFirewallPoliciesPaginator.ts | 2 +- .../client-fms/src/runtimeConfig.browser.ts | 7 +- .../client-fms/src/runtimeConfig.native.ts | 2 +- .../client-fms/src/runtimeConfig.shared.ts | 4 +- clients/client-fms/src/runtimeConfig.ts | 8 +- clients/client-fms/src/runtimeExtensions.ts | 2 +- clients/client-fms/src/schemas/schemas_0.ts | 2 +- clients/client-forecast/package.json | 12 +- clients/client-forecast/src/Forecast.ts | 4 +- clients/client-forecast/src/ForecastClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateAutoPredictorCommand.ts | 6 +- .../src/commands/CreateDatasetCommand.ts | 6 +- .../src/commands/CreateDatasetGroupCommand.ts | 6 +- .../commands/CreateDatasetImportJobCommand.ts | 6 +- .../commands/CreateExplainabilityCommand.ts | 6 +- .../CreateExplainabilityExportCommand.ts | 6 +- .../src/commands/CreateForecastCommand.ts | 6 +- .../CreateForecastExportJobCommand.ts | 6 +- .../src/commands/CreateMonitorCommand.ts | 6 +- ...CreatePredictorBacktestExportJobCommand.ts | 9 +- .../src/commands/CreatePredictorCommand.ts | 6 +- .../commands/CreateWhatIfAnalysisCommand.ts | 6 +- .../commands/CreateWhatIfForecastCommand.ts | 6 +- .../CreateWhatIfForecastExportCommand.ts | 6 +- .../src/commands/DeleteDatasetCommand.ts | 6 +- .../src/commands/DeleteDatasetGroupCommand.ts | 6 +- .../commands/DeleteDatasetImportJobCommand.ts | 6 +- .../commands/DeleteExplainabilityCommand.ts | 6 +- .../DeleteExplainabilityExportCommand.ts | 6 +- .../src/commands/DeleteForecastCommand.ts | 6 +- .../DeleteForecastExportJobCommand.ts | 6 +- .../src/commands/DeleteMonitorCommand.ts | 6 +- ...DeletePredictorBacktestExportJobCommand.ts | 6 +- .../src/commands/DeletePredictorCommand.ts | 6 +- .../src/commands/DeleteResourceTreeCommand.ts | 6 +- .../commands/DeleteWhatIfAnalysisCommand.ts | 6 +- .../commands/DeleteWhatIfForecastCommand.ts | 6 +- .../DeleteWhatIfForecastExportCommand.ts | 6 +- .../commands/DescribeAutoPredictorCommand.ts | 6 +- .../src/commands/DescribeDatasetCommand.ts | 6 +- .../commands/DescribeDatasetGroupCommand.ts | 6 +- .../DescribeDatasetImportJobCommand.ts | 6 +- .../commands/DescribeExplainabilityCommand.ts | 6 +- .../DescribeExplainabilityExportCommand.ts | 6 +- .../src/commands/DescribeForecastCommand.ts | 6 +- .../DescribeForecastExportJobCommand.ts | 6 +- .../src/commands/DescribeMonitorCommand.ts | 6 +- ...scribePredictorBacktestExportJobCommand.ts | 6 +- .../src/commands/DescribePredictorCommand.ts | 6 +- .../commands/DescribeWhatIfAnalysisCommand.ts | 6 +- .../commands/DescribeWhatIfForecastCommand.ts | 6 +- .../DescribeWhatIfForecastExportCommand.ts | 6 +- .../src/commands/GetAccuracyMetricsCommand.ts | 6 +- .../src/commands/ListDatasetGroupsCommand.ts | 6 +- .../commands/ListDatasetImportJobsCommand.ts | 6 +- .../src/commands/ListDatasetsCommand.ts | 6 +- .../commands/ListExplainabilitiesCommand.ts | 6 +- .../ListExplainabilityExportsCommand.ts | 6 +- .../commands/ListForecastExportJobsCommand.ts | 6 +- .../src/commands/ListForecastsCommand.ts | 6 +- .../commands/ListMonitorEvaluationsCommand.ts | 6 +- .../src/commands/ListMonitorsCommand.ts | 6 +- .../ListPredictorBacktestExportJobsCommand.ts | 9 +- .../src/commands/ListPredictorsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWhatIfAnalysesCommand.ts | 6 +- .../ListWhatIfForecastExportsCommand.ts | 6 +- .../commands/ListWhatIfForecastsCommand.ts | 6 +- .../src/commands/ResumeResourceCommand.ts | 6 +- .../src/commands/StopResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDatasetGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ForecastServiceException.ts | 2 +- clients/client-forecast/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListDatasetGroupsPaginator.ts | 2 +- .../ListDatasetImportJobsPaginator.ts | 2 +- .../src/pagination/ListDatasetsPaginator.ts | 2 +- .../ListExplainabilitiesPaginator.ts | 2 +- .../ListExplainabilityExportsPaginator.ts | 2 +- .../ListForecastExportJobsPaginator.ts | 2 +- .../src/pagination/ListForecastsPaginator.ts | 2 +- .../ListMonitorEvaluationsPaginator.ts | 2 +- .../src/pagination/ListMonitorsPaginator.ts | 2 +- ...istPredictorBacktestExportJobsPaginator.ts | 2 +- .../src/pagination/ListPredictorsPaginator.ts | 2 +- .../pagination/ListWhatIfAnalysesPaginator.ts | 2 +- .../ListWhatIfForecastExportsPaginator.ts | 2 +- .../ListWhatIfForecastsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-forecast/src/runtimeConfig.ts | 8 +- .../client-forecast/src/runtimeExtensions.ts | 2 +- .../client-forecast/src/schemas/schemas_0.ts | 2 +- clients/client-forecastquery/package.json | 12 +- .../client-forecastquery/src/Forecastquery.ts | 4 +- .../src/ForecastqueryClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/QueryForecastCommand.ts | 6 +- .../commands/QueryWhatIfForecastCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ForecastqueryServiceException.ts | 2 +- .../client-forecastquery/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-forecastquery/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-frauddetector/package.json | 12 +- .../client-frauddetector/src/FraudDetector.ts | 4 +- .../src/FraudDetectorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchCreateVariableCommand.ts | 6 +- .../src/commands/BatchGetVariableCommand.ts | 6 +- .../commands/CancelBatchImportJobCommand.ts | 6 +- .../CancelBatchPredictionJobCommand.ts | 6 +- .../commands/CreateBatchImportJobCommand.ts | 6 +- .../CreateBatchPredictionJobCommand.ts | 6 +- .../commands/CreateDetectorVersionCommand.ts | 6 +- .../src/commands/CreateListCommand.ts | 6 +- .../src/commands/CreateModelCommand.ts | 6 +- .../src/commands/CreateModelVersionCommand.ts | 6 +- .../src/commands/CreateRuleCommand.ts | 6 +- .../src/commands/CreateVariableCommand.ts | 6 +- .../commands/DeleteBatchImportJobCommand.ts | 6 +- .../DeleteBatchPredictionJobCommand.ts | 6 +- .../src/commands/DeleteDetectorCommand.ts | 6 +- .../commands/DeleteDetectorVersionCommand.ts | 6 +- .../src/commands/DeleteEntityTypeCommand.ts | 6 +- .../src/commands/DeleteEventCommand.ts | 6 +- .../src/commands/DeleteEventTypeCommand.ts | 6 +- .../DeleteEventsByEventTypeCommand.ts | 6 +- .../commands/DeleteExternalModelCommand.ts | 6 +- .../src/commands/DeleteLabelCommand.ts | 6 +- .../src/commands/DeleteListCommand.ts | 6 +- .../src/commands/DeleteModelCommand.ts | 6 +- .../src/commands/DeleteModelVersionCommand.ts | 6 +- .../src/commands/DeleteOutcomeCommand.ts | 6 +- .../src/commands/DeleteRuleCommand.ts | 6 +- .../src/commands/DeleteVariableCommand.ts | 6 +- .../src/commands/DescribeDetectorCommand.ts | 6 +- .../commands/DescribeModelVersionsCommand.ts | 6 +- .../src/commands/GetBatchImportJobsCommand.ts | 6 +- .../commands/GetBatchPredictionJobsCommand.ts | 6 +- ...GetDeleteEventsByEventTypeStatusCommand.ts | 9 +- .../src/commands/GetDetectorVersionCommand.ts | 6 +- .../src/commands/GetDetectorsCommand.ts | 6 +- .../src/commands/GetEntityTypesCommand.ts | 6 +- .../src/commands/GetEventCommand.ts | 6 +- .../src/commands/GetEventPredictionCommand.ts | 6 +- .../GetEventPredictionMetadataCommand.ts | 6 +- .../src/commands/GetEventTypesCommand.ts | 6 +- .../src/commands/GetExternalModelsCommand.ts | 6 +- .../commands/GetKMSEncryptionKeyCommand.ts | 6 +- .../src/commands/GetLabelsCommand.ts | 6 +- .../src/commands/GetListElementsCommand.ts | 6 +- .../src/commands/GetListsMetadataCommand.ts | 6 +- .../src/commands/GetModelVersionCommand.ts | 6 +- .../src/commands/GetModelsCommand.ts | 6 +- .../src/commands/GetOutcomesCommand.ts | 6 +- .../src/commands/GetRulesCommand.ts | 6 +- .../src/commands/GetVariablesCommand.ts | 6 +- .../commands/ListEventPredictionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutDetectorCommand.ts | 6 +- .../src/commands/PutEntityTypeCommand.ts | 6 +- .../src/commands/PutEventTypeCommand.ts | 6 +- .../src/commands/PutExternalModelCommand.ts | 6 +- .../commands/PutKMSEncryptionKeyCommand.ts | 6 +- .../src/commands/PutLabelCommand.ts | 6 +- .../src/commands/PutOutcomeCommand.ts | 6 +- .../src/commands/SendEventCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateDetectorVersionCommand.ts | 6 +- .../UpdateDetectorVersionMetadataCommand.ts | 6 +- .../UpdateDetectorVersionStatusCommand.ts | 6 +- .../src/commands/UpdateEventLabelCommand.ts | 6 +- .../src/commands/UpdateListCommand.ts | 6 +- .../src/commands/UpdateModelCommand.ts | 6 +- .../src/commands/UpdateModelVersionCommand.ts | 6 +- .../UpdateModelVersionStatusCommand.ts | 6 +- .../src/commands/UpdateRuleMetadataCommand.ts | 6 +- .../src/commands/UpdateRuleVersionCommand.ts | 6 +- .../src/commands/UpdateVariableCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/FraudDetectorServiceException.ts | 2 +- .../client-frauddetector/src/models/errors.ts | 2 +- .../DescribeModelVersionsPaginator.ts | 2 +- .../pagination/GetBatchImportJobsPaginator.ts | 2 +- .../GetBatchPredictionJobsPaginator.ts | 2 +- .../src/pagination/GetDetectorsPaginator.ts | 2 +- .../src/pagination/GetEntityTypesPaginator.ts | 2 +- .../src/pagination/GetEventTypesPaginator.ts | 2 +- .../pagination/GetExternalModelsPaginator.ts | 2 +- .../src/pagination/GetLabelsPaginator.ts | 2 +- .../pagination/GetListElementsPaginator.ts | 2 +- .../pagination/GetListsMetadataPaginator.ts | 2 +- .../src/pagination/GetModelsPaginator.ts | 2 +- .../src/pagination/GetOutcomesPaginator.ts | 2 +- .../src/pagination/GetRulesPaginator.ts | 2 +- .../src/pagination/GetVariablesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListEventPredictionsPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-frauddetector/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-freetier/package.json | 12 +- clients/client-freetier/src/FreeTier.ts | 4 +- clients/client-freetier/src/FreeTierClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetAccountActivityCommand.ts | 6 +- .../commands/GetAccountPlanStateCommand.ts | 6 +- .../src/commands/GetFreeTierUsageCommand.ts | 6 +- .../commands/ListAccountActivitiesCommand.ts | 6 +- .../src/commands/UpgradeAccountPlanCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/FreeTierServiceException.ts | 2 +- clients/client-freetier/src/models/errors.ts | 2 +- .../pagination/GetFreeTierUsagePaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAccountActivitiesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-freetier/src/runtimeConfig.ts | 8 +- .../client-freetier/src/runtimeExtensions.ts | 2 +- .../client-freetier/src/schemas/schemas_0.ts | 2 +- clients/client-fsx/package.json | 12 +- clients/client-fsx/src/FSx.ts | 4 +- clients/client-fsx/src/FSxClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateFileSystemAliasesCommand.ts | 6 +- .../CancelDataRepositoryTaskCommand.ts | 6 +- .../src/commands/CopyBackupCommand.ts | 6 +- .../CopySnapshotAndUpdateVolumeCommand.ts | 6 +- .../CreateAndAttachS3AccessPointCommand.ts | 6 +- .../src/commands/CreateBackupCommand.ts | 6 +- .../CreateDataRepositoryAssociationCommand.ts | 9 +- .../CreateDataRepositoryTaskCommand.ts | 6 +- .../src/commands/CreateFileCacheCommand.ts | 6 +- .../src/commands/CreateFileSystemCommand.ts | 6 +- .../CreateFileSystemFromBackupCommand.ts | 6 +- .../src/commands/CreateSnapshotCommand.ts | 6 +- .../CreateStorageVirtualMachineCommand.ts | 6 +- .../src/commands/CreateVolumeCommand.ts | 6 +- .../commands/CreateVolumeFromBackupCommand.ts | 6 +- .../src/commands/DeleteBackupCommand.ts | 6 +- .../DeleteDataRepositoryAssociationCommand.ts | 9 +- .../src/commands/DeleteFileCacheCommand.ts | 6 +- .../src/commands/DeleteFileSystemCommand.ts | 6 +- .../src/commands/DeleteSnapshotCommand.ts | 6 +- .../DeleteStorageVirtualMachineCommand.ts | 6 +- .../src/commands/DeleteVolumeCommand.ts | 6 +- .../src/commands/DescribeBackupsCommand.ts | 6 +- ...scribeDataRepositoryAssociationsCommand.ts | 6 +- .../DescribeDataRepositoryTasksCommand.ts | 6 +- .../src/commands/DescribeFileCachesCommand.ts | 6 +- .../DescribeFileSystemAliasesCommand.ts | 6 +- .../commands/DescribeFileSystemsCommand.ts | 6 +- ...DescribeS3AccessPointAttachmentsCommand.ts | 9 +- .../DescribeSharedVpcConfigurationCommand.ts | 6 +- .../src/commands/DescribeSnapshotsCommand.ts | 6 +- .../DescribeStorageVirtualMachinesCommand.ts | 6 +- .../src/commands/DescribeVolumesCommand.ts | 6 +- .../DetachAndDeleteS3AccessPointCommand.ts | 6 +- .../DisassociateFileSystemAliasesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ReleaseFileSystemNfsV3LocksCommand.ts | 6 +- .../RestoreVolumeFromSnapshotCommand.ts | 6 +- .../StartMisconfiguredStateRecoveryCommand.ts | 9 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateDataRepositoryAssociationCommand.ts | 9 +- .../src/commands/UpdateFileCacheCommand.ts | 6 +- .../src/commands/UpdateFileSystemCommand.ts | 6 +- .../UpdateSharedVpcConfigurationCommand.ts | 6 +- .../src/commands/UpdateSnapshotCommand.ts | 6 +- .../UpdateStorageVirtualMachineCommand.ts | 6 +- .../src/commands/UpdateVolumeCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-fsx/src/extensionConfiguration.ts | 8 +- .../src/models/FSxServiceException.ts | 2 +- clients/client-fsx/src/models/errors.ts | 2 +- .../pagination/DescribeBackupsPaginator.ts | 2 +- ...ribeDataRepositoryAssociationsPaginator.ts | 2 +- .../DescribeDataRepositoryTasksPaginator.ts | 2 +- .../pagination/DescribeFileCachesPaginator.ts | 2 +- .../DescribeFileSystemAliasesPaginator.ts | 2 +- .../DescribeFileSystemsPaginator.ts | 2 +- ...scribeS3AccessPointAttachmentsPaginator.ts | 2 +- .../pagination/DescribeSnapshotsPaginator.ts | 2 +- ...DescribeStorageVirtualMachinesPaginator.ts | 2 +- .../pagination/DescribeVolumesPaginator.ts | 2 +- .../client-fsx/src/pagination/Interfaces.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../client-fsx/src/runtimeConfig.browser.ts | 7 +- .../client-fsx/src/runtimeConfig.native.ts | 2 +- .../client-fsx/src/runtimeConfig.shared.ts | 4 +- clients/client-fsx/src/runtimeConfig.ts | 8 +- clients/client-fsx/src/runtimeExtensions.ts | 2 +- clients/client-fsx/src/schemas/schemas_0.ts | 2 +- clients/client-gamelift/package.json | 12 +- clients/client-gamelift/src/GameLift.ts | 4 +- clients/client-gamelift/src/GameLiftClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptMatchCommand.ts | 6 +- .../src/commands/ClaimGameServerCommand.ts | 6 +- .../src/commands/CreateAliasCommand.ts | 6 +- .../src/commands/CreateBuildCommand.ts | 6 +- .../commands/CreateContainerFleetCommand.ts | 6 +- .../CreateContainerGroupDefinitionCommand.ts | 6 +- .../src/commands/CreateFleetCommand.ts | 6 +- .../commands/CreateFleetLocationsCommand.ts | 6 +- .../commands/CreateGameServerGroupCommand.ts | 6 +- .../src/commands/CreateGameSessionCommand.ts | 6 +- .../commands/CreateGameSessionQueueCommand.ts | 6 +- .../src/commands/CreateLocationCommand.ts | 6 +- .../CreateMatchmakingConfigurationCommand.ts | 6 +- .../CreateMatchmakingRuleSetCommand.ts | 6 +- .../commands/CreatePlayerSessionCommand.ts | 6 +- .../commands/CreatePlayerSessionsCommand.ts | 6 +- .../src/commands/CreateScriptCommand.ts | 6 +- .../CreateVpcPeeringAuthorizationCommand.ts | 6 +- .../CreateVpcPeeringConnectionCommand.ts | 6 +- .../src/commands/DeleteAliasCommand.ts | 6 +- .../src/commands/DeleteBuildCommand.ts | 6 +- .../commands/DeleteContainerFleetCommand.ts | 6 +- .../DeleteContainerGroupDefinitionCommand.ts | 6 +- .../src/commands/DeleteFleetCommand.ts | 6 +- .../commands/DeleteFleetLocationsCommand.ts | 6 +- .../commands/DeleteGameServerGroupCommand.ts | 6 +- .../commands/DeleteGameSessionQueueCommand.ts | 6 +- .../src/commands/DeleteLocationCommand.ts | 6 +- .../DeleteMatchmakingConfigurationCommand.ts | 6 +- .../DeleteMatchmakingRuleSetCommand.ts | 6 +- .../commands/DeleteScalingPolicyCommand.ts | 6 +- .../src/commands/DeleteScriptCommand.ts | 6 +- .../DeleteVpcPeeringAuthorizationCommand.ts | 6 +- .../DeleteVpcPeeringConnectionCommand.ts | 6 +- .../src/commands/DeregisterComputeCommand.ts | 6 +- .../commands/DeregisterGameServerCommand.ts | 6 +- .../src/commands/DescribeAliasCommand.ts | 6 +- .../src/commands/DescribeBuildCommand.ts | 6 +- .../src/commands/DescribeComputeCommand.ts | 6 +- .../commands/DescribeContainerFleetCommand.ts | 6 +- ...DescribeContainerGroupDefinitionCommand.ts | 6 +- .../DescribeEC2InstanceLimitsCommand.ts | 6 +- .../DescribeFleetAttributesCommand.ts | 6 +- .../commands/DescribeFleetCapacityCommand.ts | 6 +- .../DescribeFleetDeploymentCommand.ts | 6 +- .../commands/DescribeFleetEventsCommand.ts | 6 +- .../DescribeFleetLocationAttributesCommand.ts | 6 +- .../DescribeFleetLocationCapacityCommand.ts | 6 +- ...DescribeFleetLocationUtilizationCommand.ts | 6 +- .../DescribeFleetPortSettingsCommand.ts | 6 +- .../DescribeFleetUtilizationCommand.ts | 6 +- .../src/commands/DescribeGameServerCommand.ts | 6 +- .../DescribeGameServerGroupCommand.ts | 6 +- .../DescribeGameServerInstancesCommand.ts | 6 +- .../DescribeGameSessionDetailsCommand.ts | 6 +- .../DescribeGameSessionPlacementCommand.ts | 6 +- .../DescribeGameSessionQueuesCommand.ts | 6 +- .../commands/DescribeGameSessionsCommand.ts | 6 +- .../src/commands/DescribeInstancesCommand.ts | 6 +- .../commands/DescribeMatchmakingCommand.ts | 6 +- ...escribeMatchmakingConfigurationsCommand.ts | 9 +- .../DescribeMatchmakingRuleSetsCommand.ts | 6 +- .../commands/DescribePlayerSessionsCommand.ts | 6 +- .../DescribeRuntimeConfigurationCommand.ts | 6 +- .../DescribeScalingPoliciesCommand.ts | 6 +- .../src/commands/DescribeScriptCommand.ts | 6 +- ...DescribeVpcPeeringAuthorizationsCommand.ts | 6 +- .../DescribeVpcPeeringConnectionsCommand.ts | 6 +- .../src/commands/GetComputeAccessCommand.ts | 6 +- .../commands/GetComputeAuthTokenCommand.ts | 6 +- .../commands/GetGameSessionLogUrlCommand.ts | 6 +- .../src/commands/GetInstanceAccessCommand.ts | 6 +- .../src/commands/ListAliasesCommand.ts | 6 +- .../src/commands/ListBuildsCommand.ts | 6 +- .../src/commands/ListComputeCommand.ts | 6 +- .../commands/ListContainerFleetsCommand.ts | 6 +- ...ContainerGroupDefinitionVersionsCommand.ts | 6 +- .../ListContainerGroupDefinitionsCommand.ts | 6 +- .../commands/ListFleetDeploymentsCommand.ts | 6 +- .../src/commands/ListFleetsCommand.ts | 6 +- .../commands/ListGameServerGroupsCommand.ts | 6 +- .../src/commands/ListGameServersCommand.ts | 6 +- .../src/commands/ListLocationsCommand.ts | 6 +- .../src/commands/ListScriptsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutScalingPolicyCommand.ts | 6 +- .../src/commands/RegisterComputeCommand.ts | 6 +- .../src/commands/RegisterGameServerCommand.ts | 6 +- .../RequestUploadCredentialsCommand.ts | 6 +- .../src/commands/ResolveAliasCommand.ts | 6 +- .../commands/ResumeGameServerGroupCommand.ts | 6 +- .../src/commands/SearchGameSessionsCommand.ts | 6 +- .../src/commands/StartFleetActionsCommand.ts | 6 +- .../StartGameSessionPlacementCommand.ts | 6 +- .../src/commands/StartMatchBackfillCommand.ts | 6 +- .../src/commands/StartMatchmakingCommand.ts | 6 +- .../src/commands/StopFleetActionsCommand.ts | 6 +- .../StopGameSessionPlacementCommand.ts | 6 +- .../src/commands/StopMatchmakingCommand.ts | 6 +- .../commands/SuspendGameServerGroupCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../commands/TerminateGameSessionCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAliasCommand.ts | 6 +- .../src/commands/UpdateBuildCommand.ts | 6 +- .../commands/UpdateContainerFleetCommand.ts | 6 +- .../UpdateContainerGroupDefinitionCommand.ts | 6 +- .../commands/UpdateFleetAttributesCommand.ts | 6 +- .../commands/UpdateFleetCapacityCommand.ts | 6 +- .../UpdateFleetPortSettingsCommand.ts | 6 +- .../src/commands/UpdateGameServerCommand.ts | 6 +- .../commands/UpdateGameServerGroupCommand.ts | 6 +- .../src/commands/UpdateGameSessionCommand.ts | 6 +- .../commands/UpdateGameSessionQueueCommand.ts | 6 +- .../UpdateMatchmakingConfigurationCommand.ts | 6 +- .../UpdateRuntimeConfigurationCommand.ts | 6 +- .../src/commands/UpdateScriptCommand.ts | 6 +- .../ValidateMatchmakingRuleSetCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GameLiftServiceException.ts | 2 +- clients/client-gamelift/src/models/errors.ts | 2 +- .../DescribeFleetAttributesPaginator.ts | 2 +- .../DescribeFleetCapacityPaginator.ts | 2 +- .../DescribeFleetEventsPaginator.ts | 2 +- ...escribeFleetLocationAttributesPaginator.ts | 2 +- .../DescribeFleetUtilizationPaginator.ts | 2 +- .../DescribeGameServerInstancesPaginator.ts | 2 +- .../DescribeGameSessionDetailsPaginator.ts | 2 +- .../DescribeGameSessionQueuesPaginator.ts | 2 +- .../DescribeGameSessionsPaginator.ts | 2 +- .../pagination/DescribeInstancesPaginator.ts | 2 +- ...cribeMatchmakingConfigurationsPaginator.ts | 2 +- .../DescribeMatchmakingRuleSetsPaginator.ts | 2 +- .../DescribePlayerSessionsPaginator.ts | 2 +- .../DescribeScalingPoliciesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAliasesPaginator.ts | 2 +- .../src/pagination/ListBuildsPaginator.ts | 2 +- .../src/pagination/ListComputePaginator.ts | 2 +- .../ListContainerFleetsPaginator.ts | 2 +- ...ntainerGroupDefinitionVersionsPaginator.ts | 2 +- .../ListContainerGroupDefinitionsPaginator.ts | 2 +- .../ListFleetDeploymentsPaginator.ts | 2 +- .../src/pagination/ListFleetsPaginator.ts | 2 +- .../ListGameServerGroupsPaginator.ts | 2 +- .../pagination/ListGameServersPaginator.ts | 2 +- .../src/pagination/ListLocationsPaginator.ts | 2 +- .../src/pagination/ListScriptsPaginator.ts | 2 +- .../pagination/SearchGameSessionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-gamelift/src/runtimeConfig.ts | 8 +- .../client-gamelift/src/runtimeExtensions.ts | 2 +- .../client-gamelift/src/schemas/schemas_0.ts | 2 +- clients/client-gameliftstreams/package.json | 12 +- .../src/GameLiftStreams.ts | 4 +- .../src/GameLiftStreamsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AddStreamGroupLocationsCommand.ts | 10 +- .../commands/AssociateApplicationsCommand.ts | 10 +- .../src/commands/CreateApplicationCommand.ts | 10 +- .../src/commands/CreateStreamGroupCommand.ts | 10 +- .../CreateStreamSessionConnectionCommand.ts | 10 +- .../src/commands/DeleteApplicationCommand.ts | 10 +- .../src/commands/DeleteStreamGroupCommand.ts | 10 +- .../DisassociateApplicationsCommand.ts | 10 +- .../ExportStreamSessionFilesCommand.ts | 10 +- .../src/commands/GetApplicationCommand.ts | 10 +- .../src/commands/GetStreamGroupCommand.ts | 10 +- .../src/commands/GetStreamSessionCommand.ts | 10 +- .../src/commands/ListApplicationsCommand.ts | 10 +- .../src/commands/ListStreamGroupsCommand.ts | 10 +- .../ListStreamSessionsByAccountCommand.ts | 10 +- .../src/commands/ListStreamSessionsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../RemoveStreamGroupLocationsCommand.ts | 10 +- .../src/commands/StartStreamSessionCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../commands/TerminateStreamSessionCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateApplicationCommand.ts | 10 +- .../src/commands/UpdateStreamGroupCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/GameLiftStreamsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../pagination/ListStreamGroupsPaginator.ts | 2 +- .../ListStreamSessionsByAccountPaginator.ts | 2 +- .../pagination/ListStreamSessionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-geo-maps/package.json | 12 +- clients/client-geo-maps/src/GeoMaps.ts | 4 +- clients/client-geo-maps/src/GeoMapsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetGlyphsCommand.ts | 6 +- .../src/commands/GetSpritesCommand.ts | 6 +- .../src/commands/GetStaticMapCommand.ts | 6 +- .../src/commands/GetStyleDescriptorCommand.ts | 6 +- .../src/commands/GetTileCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GeoMapsServiceException.ts | 2 +- clients/client-geo-maps/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-geo-maps/src/runtimeConfig.ts | 8 +- .../client-geo-maps/src/runtimeExtensions.ts | 2 +- .../client-geo-maps/src/schemas/schemas_0.ts | 2 +- clients/client-geo-places/package.json | 12 +- clients/client-geo-places/src/GeoPlaces.ts | 4 +- .../client-geo-places/src/GeoPlacesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AutocompleteCommand.ts | 6 +- .../src/commands/GeocodeCommand.ts | 6 +- .../src/commands/GetPlaceCommand.ts | 6 +- .../src/commands/ReverseGeocodeCommand.ts | 6 +- .../src/commands/SearchNearbyCommand.ts | 6 +- .../src/commands/SearchTextCommand.ts | 6 +- .../src/commands/SuggestCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GeoPlacesServiceException.ts | 2 +- .../client-geo-places/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-geo-places/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-geo-routes/package.json | 12 +- clients/client-geo-routes/src/GeoRoutes.ts | 4 +- .../client-geo-routes/src/GeoRoutesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CalculateIsolinesCommand.ts | 6 +- .../commands/CalculateRouteMatrixCommand.ts | 6 +- .../src/commands/CalculateRoutesCommand.ts | 6 +- .../src/commands/OptimizeWaypointsCommand.ts | 6 +- .../src/commands/SnapToRoadsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GeoRoutesServiceException.ts | 2 +- .../client-geo-routes/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-geo-routes/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-glacier/package.json | 12 +- clients/client-glacier/src/Glacier.ts | 142 +- clients/client-glacier/src/GlacierClient.ts | 139 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AbortMultipartUploadCommand.ts | 6 +- .../src/commands/AbortVaultLockCommand.ts | 6 +- .../src/commands/AddTagsToVaultCommand.ts | 6 +- .../CompleteMultipartUploadCommand.ts | 6 +- .../src/commands/CompleteVaultLockCommand.ts | 6 +- .../src/commands/CreateVaultCommand.ts | 6 +- .../src/commands/DeleteArchiveCommand.ts | 6 +- .../DeleteVaultAccessPolicyCommand.ts | 6 +- .../src/commands/DeleteVaultCommand.ts | 6 +- .../DeleteVaultNotificationsCommand.ts | 6 +- .../src/commands/DescribeJobCommand.ts | 6 +- .../src/commands/DescribeVaultCommand.ts | 6 +- .../commands/GetDataRetrievalPolicyCommand.ts | 6 +- .../src/commands/GetJobOutputCommand.ts | 6 +- .../commands/GetVaultAccessPolicyCommand.ts | 6 +- .../src/commands/GetVaultLockCommand.ts | 6 +- .../commands/GetVaultNotificationsCommand.ts | 6 +- .../src/commands/InitiateJobCommand.ts | 6 +- .../InitiateMultipartUploadCommand.ts | 6 +- .../src/commands/InitiateVaultLockCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../commands/ListMultipartUploadsCommand.ts | 6 +- .../src/commands/ListPartsCommand.ts | 6 +- .../ListProvisionedCapacityCommand.ts | 6 +- .../src/commands/ListTagsForVaultCommand.ts | 6 +- .../src/commands/ListVaultsCommand.ts | 6 +- .../PurchaseProvisionedCapacityCommand.ts | 6 +- .../commands/RemoveTagsFromVaultCommand.ts | 6 +- .../commands/SetDataRetrievalPolicyCommand.ts | 6 +- .../commands/SetVaultAccessPolicyCommand.ts | 6 +- .../commands/SetVaultNotificationsCommand.ts | 6 +- .../src/commands/UploadArchiveCommand.ts | 6 +- .../commands/UploadMultipartPartCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GlacierServiceException.ts | 2 +- clients/client-glacier/src/models/errors.ts | 2 +- clients/client-glacier/src/models/models_0.ts | 4 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../ListMultipartUploadsPaginator.ts | 2 +- .../src/pagination/ListPartsPaginator.ts | 2 +- .../src/pagination/ListVaultsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-glacier/src/runtimeConfig.ts | 8 +- .../client-glacier/src/runtimeExtensions.ts | 2 +- .../client-glacier/src/schemas/schemas_0.ts | 2 +- .../src/waiters/waitForVaultExists.ts | 2 +- .../src/waiters/waitForVaultNotExists.ts | 2 +- .../client-global-accelerator/package.json | 12 +- .../src/GlobalAccelerator.ts | 4 +- .../src/GlobalAcceleratorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AddCustomRoutingEndpointsCommand.ts | 6 +- .../src/commands/AddEndpointsCommand.ts | 6 +- .../src/commands/AdvertiseByoipCidrCommand.ts | 6 +- .../AllowCustomRoutingTrafficCommand.ts | 6 +- .../src/commands/CreateAcceleratorCommand.ts | 6 +- .../CreateCrossAccountAttachmentCommand.ts | 6 +- .../CreateCustomRoutingAcceleratorCommand.ts | 6 +- ...CreateCustomRoutingEndpointGroupCommand.ts | 9 +- .../CreateCustomRoutingListenerCommand.ts | 6 +- .../commands/CreateEndpointGroupCommand.ts | 6 +- .../src/commands/CreateListenerCommand.ts | 6 +- .../src/commands/DeleteAcceleratorCommand.ts | 6 +- .../DeleteCrossAccountAttachmentCommand.ts | 6 +- .../DeleteCustomRoutingAcceleratorCommand.ts | 6 +- ...DeleteCustomRoutingEndpointGroupCommand.ts | 6 +- .../DeleteCustomRoutingListenerCommand.ts | 6 +- .../commands/DeleteEndpointGroupCommand.ts | 6 +- .../src/commands/DeleteListenerCommand.ts | 6 +- .../DenyCustomRoutingTrafficCommand.ts | 6 +- .../commands/DeprovisionByoipCidrCommand.ts | 6 +- .../DescribeAcceleratorAttributesCommand.ts | 6 +- .../commands/DescribeAcceleratorCommand.ts | 6 +- .../DescribeCrossAccountAttachmentCommand.ts | 6 +- ...stomRoutingAcceleratorAttributesCommand.ts | 6 +- ...DescribeCustomRoutingAcceleratorCommand.ts | 9 +- ...scribeCustomRoutingEndpointGroupCommand.ts | 6 +- .../DescribeCustomRoutingListenerCommand.ts | 6 +- .../commands/DescribeEndpointGroupCommand.ts | 6 +- .../src/commands/DescribeListenerCommand.ts | 6 +- .../src/commands/ListAcceleratorsCommand.ts | 6 +- .../src/commands/ListByoipCidrsCommand.ts | 6 +- .../ListCrossAccountAttachmentsCommand.ts | 6 +- ...ListCrossAccountResourceAccountsCommand.ts | 9 +- .../ListCrossAccountResourcesCommand.ts | 6 +- .../ListCustomRoutingAcceleratorsCommand.ts | 6 +- .../ListCustomRoutingEndpointGroupsCommand.ts | 9 +- .../ListCustomRoutingListenersCommand.ts | 6 +- ...RoutingPortMappingsByDestinationCommand.ts | 6 +- .../ListCustomRoutingPortMappingsCommand.ts | 6 +- .../src/commands/ListEndpointGroupsCommand.ts | 6 +- .../src/commands/ListListenersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ProvisionByoipCidrCommand.ts | 6 +- .../RemoveCustomRoutingEndpointsCommand.ts | 6 +- .../src/commands/RemoveEndpointsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateAcceleratorAttributesCommand.ts | 6 +- .../src/commands/UpdateAcceleratorCommand.ts | 6 +- .../UpdateCrossAccountAttachmentCommand.ts | 6 +- ...stomRoutingAcceleratorAttributesCommand.ts | 6 +- .../UpdateCustomRoutingAcceleratorCommand.ts | 6 +- .../UpdateCustomRoutingListenerCommand.ts | 6 +- .../commands/UpdateEndpointGroupCommand.ts | 6 +- .../src/commands/UpdateListenerCommand.ts | 6 +- .../src/commands/WithdrawByoipCidrCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../GlobalAcceleratorServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAcceleratorsPaginator.ts | 2 +- .../src/pagination/ListByoipCidrsPaginator.ts | 2 +- .../ListCrossAccountAttachmentsPaginator.ts | 2 +- .../ListCrossAccountResourcesPaginator.ts | 2 +- .../ListCustomRoutingAcceleratorsPaginator.ts | 2 +- ...istCustomRoutingEndpointGroupsPaginator.ts | 2 +- .../ListCustomRoutingListenersPaginator.ts | 2 +- ...utingPortMappingsByDestinationPaginator.ts | 2 +- .../ListCustomRoutingPortMappingsPaginator.ts | 2 +- .../pagination/ListEndpointGroupsPaginator.ts | 2 +- .../src/pagination/ListListenersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-glue/package.json | 12 +- clients/client-glue/src/Glue.ts | 4 +- clients/client-glue/src/GlueClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchCreatePartitionCommand.ts | 6 +- .../commands/BatchDeleteConnectionCommand.ts | 6 +- .../commands/BatchDeletePartitionCommand.ts | 6 +- .../src/commands/BatchDeleteTableCommand.ts | 6 +- .../BatchDeleteTableVersionCommand.ts | 6 +- .../src/commands/BatchGetBlueprintsCommand.ts | 6 +- .../src/commands/BatchGetCrawlersCommand.ts | 6 +- .../BatchGetCustomEntityTypesCommand.ts | 6 +- .../BatchGetDataQualityResultCommand.ts | 6 +- .../commands/BatchGetDevEndpointsCommand.ts | 6 +- .../src/commands/BatchGetJobsCommand.ts | 8 +- .../src/commands/BatchGetPartitionCommand.ts | 6 +- .../commands/BatchGetTableOptimizerCommand.ts | 6 +- .../src/commands/BatchGetTriggersCommand.ts | 6 +- .../src/commands/BatchGetWorkflowsCommand.ts | 6 +- ...utDataQualityStatisticAnnotationCommand.ts | 6 +- .../src/commands/BatchStopJobRunCommand.ts | 6 +- .../commands/BatchUpdatePartitionCommand.ts | 6 +- ...DataQualityRuleRecommendationRunCommand.ts | 6 +- ...lDataQualityRulesetEvaluationRunCommand.ts | 6 +- .../src/commands/CancelMLTaskRunCommand.ts | 6 +- .../src/commands/CancelStatementCommand.ts | 6 +- .../CheckSchemaVersionValidityCommand.ts | 6 +- .../src/commands/CreateBlueprintCommand.ts | 6 +- .../src/commands/CreateCatalogCommand.ts | 6 +- .../src/commands/CreateClassifierCommand.ts | 6 +- ...eateColumnStatisticsTaskSettingsCommand.ts | 6 +- .../src/commands/CreateConnectionCommand.ts | 6 +- .../src/commands/CreateCrawlerCommand.ts | 6 +- .../commands/CreateCustomEntityTypeCommand.ts | 6 +- .../CreateDataQualityRulesetCommand.ts | 8 +- .../src/commands/CreateDatabaseCommand.ts | 6 +- .../src/commands/CreateDevEndpointCommand.ts | 6 +- ...eGlueIdentityCenterConfigurationCommand.ts | 6 +- .../src/commands/CreateIntegrationCommand.ts | 6 +- ...reateIntegrationResourcePropertyCommand.ts | 6 +- ...CreateIntegrationTablePropertiesCommand.ts | 9 +- .../src/commands/CreateJobCommand.ts | 8 +- .../src/commands/CreateMLTransformCommand.ts | 6 +- .../src/commands/CreatePartitionCommand.ts | 6 +- .../commands/CreatePartitionIndexCommand.ts | 6 +- .../src/commands/CreateRegistryCommand.ts | 6 +- .../src/commands/CreateSchemaCommand.ts | 6 +- .../src/commands/CreateScriptCommand.ts | 6 +- .../CreateSecurityConfigurationCommand.ts | 6 +- .../src/commands/CreateSessionCommand.ts | 6 +- .../src/commands/CreateTableCommand.ts | 6 +- .../commands/CreateTableOptimizerCommand.ts | 6 +- .../src/commands/CreateTriggerCommand.ts | 6 +- .../src/commands/CreateUsageProfileCommand.ts | 6 +- .../CreateUserDefinedFunctionCommand.ts | 6 +- .../src/commands/CreateWorkflowCommand.ts | 6 +- .../src/commands/DeleteBlueprintCommand.ts | 6 +- .../src/commands/DeleteCatalogCommand.ts | 6 +- .../src/commands/DeleteClassifierCommand.ts | 6 +- ...leteColumnStatisticsForPartitionCommand.ts | 6 +- .../DeleteColumnStatisticsForTableCommand.ts | 6 +- ...leteColumnStatisticsTaskSettingsCommand.ts | 6 +- .../src/commands/DeleteConnectionCommand.ts | 6 +- .../src/commands/DeleteCrawlerCommand.ts | 6 +- .../commands/DeleteCustomEntityTypeCommand.ts | 6 +- .../DeleteDataQualityRulesetCommand.ts | 6 +- .../src/commands/DeleteDatabaseCommand.ts | 6 +- .../src/commands/DeleteDevEndpointCommand.ts | 6 +- ...eGlueIdentityCenterConfigurationCommand.ts | 6 +- .../src/commands/DeleteIntegrationCommand.ts | 6 +- ...eleteIntegrationResourcePropertyCommand.ts | 6 +- ...DeleteIntegrationTablePropertiesCommand.ts | 9 +- .../src/commands/DeleteJobCommand.ts | 6 +- .../src/commands/DeleteMLTransformCommand.ts | 6 +- .../src/commands/DeletePartitionCommand.ts | 6 +- .../commands/DeletePartitionIndexCommand.ts | 6 +- .../src/commands/DeleteRegistryCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DeleteSchemaCommand.ts | 6 +- .../commands/DeleteSchemaVersionsCommand.ts | 6 +- .../DeleteSecurityConfigurationCommand.ts | 6 +- .../src/commands/DeleteSessionCommand.ts | 6 +- .../src/commands/DeleteTableCommand.ts | 6 +- .../commands/DeleteTableOptimizerCommand.ts | 6 +- .../src/commands/DeleteTableVersionCommand.ts | 6 +- .../src/commands/DeleteTriggerCommand.ts | 6 +- .../src/commands/DeleteUsageProfileCommand.ts | 6 +- .../DeleteUserDefinedFunctionCommand.ts | 6 +- .../src/commands/DeleteWorkflowCommand.ts | 6 +- .../commands/DescribeConnectionTypeCommand.ts | 6 +- .../src/commands/DescribeEntityCommand.ts | 6 +- .../DescribeInboundIntegrationsCommand.ts | 6 +- .../commands/DescribeIntegrationsCommand.ts | 6 +- .../src/commands/GetBlueprintCommand.ts | 6 +- .../src/commands/GetBlueprintRunCommand.ts | 6 +- .../src/commands/GetBlueprintRunsCommand.ts | 6 +- .../src/commands/GetCatalogCommand.ts | 6 +- .../commands/GetCatalogImportStatusCommand.ts | 6 +- .../src/commands/GetCatalogsCommand.ts | 6 +- .../src/commands/GetClassifierCommand.ts | 6 +- .../src/commands/GetClassifiersCommand.ts | 6 +- .../GetColumnStatisticsForPartitionCommand.ts | 9 +- .../GetColumnStatisticsForTableCommand.ts | 6 +- .../GetColumnStatisticsTaskRunCommand.ts | 6 +- .../GetColumnStatisticsTaskRunsCommand.ts | 6 +- .../GetColumnStatisticsTaskSettingsCommand.ts | 9 +- .../src/commands/GetConnectionCommand.ts | 6 +- .../src/commands/GetConnectionsCommand.ts | 6 +- .../src/commands/GetCrawlerCommand.ts | 6 +- .../src/commands/GetCrawlerMetricsCommand.ts | 6 +- .../src/commands/GetCrawlersCommand.ts | 6 +- .../commands/GetCustomEntityTypeCommand.ts | 6 +- ...GetDataCatalogEncryptionSettingsCommand.ts | 9 +- .../commands/GetDataQualityModelCommand.ts | 6 +- .../GetDataQualityModelResultCommand.ts | 6 +- .../commands/GetDataQualityResultCommand.ts | 6 +- ...DataQualityRuleRecommendationRunCommand.ts | 6 +- .../commands/GetDataQualityRulesetCommand.ts | 6 +- ...tDataQualityRulesetEvaluationRunCommand.ts | 6 +- .../src/commands/GetDatabaseCommand.ts | 6 +- .../src/commands/GetDatabasesCommand.ts | 6 +- .../src/commands/GetDataflowGraphCommand.ts | 6 +- .../src/commands/GetDevEndpointCommand.ts | 6 +- .../src/commands/GetDevEndpointsCommand.ts | 6 +- .../src/commands/GetEntityRecordsCommand.ts | 6 +- ...tGlueIdentityCenterConfigurationCommand.ts | 6 +- .../GetIntegrationResourcePropertyCommand.ts | 6 +- .../GetIntegrationTablePropertiesCommand.ts | 6 +- .../src/commands/GetJobBookmarkCommand.ts | 6 +- .../client-glue/src/commands/GetJobCommand.ts | 8 +- .../src/commands/GetJobRunCommand.ts | 6 +- .../src/commands/GetJobRunsCommand.ts | 6 +- .../src/commands/GetJobsCommand.ts | 8 +- .../src/commands/GetMLTaskRunCommand.ts | 6 +- .../src/commands/GetMLTaskRunsCommand.ts | 6 +- .../src/commands/GetMLTransformCommand.ts | 6 +- .../src/commands/GetMLTransformsCommand.ts | 6 +- .../src/commands/GetMappingCommand.ts | 6 +- .../src/commands/GetPartitionCommand.ts | 6 +- .../commands/GetPartitionIndexesCommand.ts | 6 +- .../src/commands/GetPartitionsCommand.ts | 6 +- .../src/commands/GetPlanCommand.ts | 6 +- .../src/commands/GetRegistryCommand.ts | 6 +- .../commands/GetResourcePoliciesCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../commands/GetSchemaByDefinitionCommand.ts | 6 +- .../src/commands/GetSchemaCommand.ts | 6 +- .../src/commands/GetSchemaVersionCommand.ts | 6 +- .../commands/GetSchemaVersionsDiffCommand.ts | 6 +- .../GetSecurityConfigurationCommand.ts | 6 +- .../GetSecurityConfigurationsCommand.ts | 6 +- .../src/commands/GetSessionCommand.ts | 6 +- .../src/commands/GetStatementCommand.ts | 6 +- .../src/commands/GetTableCommand.ts | 8 +- .../src/commands/GetTableOptimizerCommand.ts | 6 +- .../src/commands/GetTableVersionCommand.ts | 8 +- .../src/commands/GetTableVersionsCommand.ts | 8 +- .../src/commands/GetTablesCommand.ts | 8 +- .../src/commands/GetTagsCommand.ts | 6 +- .../src/commands/GetTriggerCommand.ts | 6 +- .../src/commands/GetTriggersCommand.ts | 6 +- .../GetUnfilteredPartitionMetadataCommand.ts | 6 +- .../GetUnfilteredPartitionsMetadataCommand.ts | 9 +- .../GetUnfilteredTableMetadataCommand.ts | 8 +- .../src/commands/GetUsageProfileCommand.ts | 6 +- .../commands/GetUserDefinedFunctionCommand.ts | 6 +- .../GetUserDefinedFunctionsCommand.ts | 6 +- .../src/commands/GetWorkflowCommand.ts | 6 +- .../src/commands/GetWorkflowRunCommand.ts | 6 +- .../GetWorkflowRunPropertiesCommand.ts | 6 +- .../src/commands/GetWorkflowRunsCommand.ts | 6 +- .../commands/ImportCatalogToGlueCommand.ts | 6 +- .../src/commands/ListBlueprintsCommand.ts | 6 +- .../ListColumnStatisticsTaskRunsCommand.ts | 6 +- .../commands/ListConnectionTypesCommand.ts | 6 +- .../src/commands/ListCrawlersCommand.ts | 6 +- .../src/commands/ListCrawlsCommand.ts | 6 +- .../commands/ListCustomEntityTypesCommand.ts | 6 +- .../commands/ListDataQualityResultsCommand.ts | 6 +- ...ataQualityRuleRecommendationRunsCommand.ts | 6 +- ...DataQualityRulesetEvaluationRunsCommand.ts | 6 +- .../ListDataQualityRulesetsCommand.ts | 6 +- ...tDataQualityStatisticAnnotationsCommand.ts | 6 +- .../ListDataQualityStatisticsCommand.ts | 6 +- .../src/commands/ListDevEndpointsCommand.ts | 6 +- .../src/commands/ListEntitiesCommand.ts | 6 +- ...istIntegrationResourcePropertiesCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../src/commands/ListMLTransformsCommand.ts | 6 +- .../src/commands/ListRegistriesCommand.ts | 6 +- .../src/commands/ListSchemaVersionsCommand.ts | 6 +- .../src/commands/ListSchemasCommand.ts | 6 +- .../src/commands/ListSessionsCommand.ts | 6 +- .../src/commands/ListStatementsCommand.ts | 6 +- .../commands/ListTableOptimizerRunsCommand.ts | 6 +- .../src/commands/ListTriggersCommand.ts | 6 +- .../src/commands/ListUsageProfilesCommand.ts | 6 +- .../src/commands/ListWorkflowsCommand.ts | 6 +- .../src/commands/ModifyIntegrationCommand.ts | 6 +- ...PutDataCatalogEncryptionSettingsCommand.ts | 9 +- .../PutDataQualityProfileAnnotationCommand.ts | 9 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../PutSchemaVersionMetadataCommand.ts | 6 +- .../PutWorkflowRunPropertiesCommand.ts | 6 +- .../QuerySchemaVersionMetadataCommand.ts | 6 +- .../commands/RegisterSchemaVersionCommand.ts | 6 +- .../RemoveSchemaVersionMetadataCommand.ts | 6 +- .../src/commands/ResetJobBookmarkCommand.ts | 6 +- .../src/commands/ResumeWorkflowRunCommand.ts | 6 +- .../src/commands/RunStatementCommand.ts | 6 +- .../src/commands/SearchTablesCommand.ts | 8 +- .../src/commands/StartBlueprintRunCommand.ts | 6 +- .../StartColumnStatisticsTaskRunCommand.ts | 6 +- ...tColumnStatisticsTaskRunScheduleCommand.ts | 6 +- .../src/commands/StartCrawlerCommand.ts | 6 +- .../commands/StartCrawlerScheduleCommand.ts | 6 +- ...DataQualityRuleRecommendationRunCommand.ts | 6 +- ...tDataQualityRulesetEvaluationRunCommand.ts | 6 +- .../StartExportLabelsTaskRunCommand.ts | 6 +- .../StartImportLabelsTaskRunCommand.ts | 6 +- .../src/commands/StartJobRunCommand.ts | 6 +- .../StartMLEvaluationTaskRunCommand.ts | 6 +- ...rtMLLabelingSetGenerationTaskRunCommand.ts | 6 +- .../src/commands/StartTriggerCommand.ts | 6 +- .../src/commands/StartWorkflowRunCommand.ts | 6 +- .../StopColumnStatisticsTaskRunCommand.ts | 6 +- ...pColumnStatisticsTaskRunScheduleCommand.ts | 6 +- .../src/commands/StopCrawlerCommand.ts | 6 +- .../commands/StopCrawlerScheduleCommand.ts | 6 +- .../src/commands/StopSessionCommand.ts | 6 +- .../src/commands/StopTriggerCommand.ts | 6 +- .../src/commands/StopWorkflowRunCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TestConnectionCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBlueprintCommand.ts | 6 +- .../src/commands/UpdateCatalogCommand.ts | 6 +- .../src/commands/UpdateClassifierCommand.ts | 6 +- ...dateColumnStatisticsForPartitionCommand.ts | 6 +- .../UpdateColumnStatisticsForTableCommand.ts | 6 +- ...dateColumnStatisticsTaskSettingsCommand.ts | 6 +- .../src/commands/UpdateConnectionCommand.ts | 6 +- .../src/commands/UpdateCrawlerCommand.ts | 6 +- .../commands/UpdateCrawlerScheduleCommand.ts | 6 +- .../UpdateDataQualityRulesetCommand.ts | 6 +- .../src/commands/UpdateDatabaseCommand.ts | 6 +- .../src/commands/UpdateDevEndpointCommand.ts | 6 +- ...eGlueIdentityCenterConfigurationCommand.ts | 6 +- ...pdateIntegrationResourcePropertyCommand.ts | 6 +- ...UpdateIntegrationTablePropertiesCommand.ts | 9 +- .../src/commands/UpdateJobCommand.ts | 8 +- .../UpdateJobFromSourceControlCommand.ts | 6 +- .../src/commands/UpdateMLTransformCommand.ts | 6 +- .../src/commands/UpdatePartitionCommand.ts | 6 +- .../src/commands/UpdateRegistryCommand.ts | 6 +- .../src/commands/UpdateSchemaCommand.ts | 6 +- .../UpdateSourceControlFromJobCommand.ts | 6 +- .../src/commands/UpdateTableCommand.ts | 6 +- .../commands/UpdateTableOptimizerCommand.ts | 6 +- .../src/commands/UpdateTriggerCommand.ts | 8 +- .../src/commands/UpdateUsageProfileCommand.ts | 6 +- .../UpdateUserDefinedFunctionCommand.ts | 6 +- .../src/commands/UpdateWorkflowCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-glue/src/extensionConfiguration.ts | 8 +- .../src/models/GlueServiceException.ts | 2 +- clients/client-glue/src/models/errors.ts | 2 +- .../src/pagination/DescribeEntityPaginator.ts | 2 +- .../pagination/GetBlueprintRunsPaginator.ts | 2 +- .../src/pagination/GetClassifiersPaginator.ts | 2 +- .../GetColumnStatisticsTaskRunsPaginator.ts | 2 +- .../src/pagination/GetConnectionsPaginator.ts | 2 +- .../pagination/GetCrawlerMetricsPaginator.ts | 2 +- .../src/pagination/GetCrawlersPaginator.ts | 2 +- .../src/pagination/GetDatabasesPaginator.ts | 2 +- .../pagination/GetDevEndpointsPaginator.ts | 2 +- .../src/pagination/GetJobRunsPaginator.ts | 2 +- .../src/pagination/GetJobsPaginator.ts | 2 +- .../src/pagination/GetMLTaskRunsPaginator.ts | 2 +- .../pagination/GetMLTransformsPaginator.ts | 2 +- .../GetPartitionIndexesPaginator.ts | 2 +- .../src/pagination/GetPartitionsPaginator.ts | 2 +- .../GetResourcePoliciesPaginator.ts | 2 +- .../GetSecurityConfigurationsPaginator.ts | 2 +- .../pagination/GetTableVersionsPaginator.ts | 2 +- .../src/pagination/GetTablesPaginator.ts | 2 +- .../src/pagination/GetTriggersPaginator.ts | 2 +- ...etUnfilteredPartitionsMetadataPaginator.ts | 2 +- .../GetUserDefinedFunctionsPaginator.ts | 2 +- .../pagination/GetWorkflowRunsPaginator.ts | 2 +- .../client-glue/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListBlueprintsPaginator.ts | 2 +- .../ListColumnStatisticsTaskRunsPaginator.ts | 2 +- .../ListConnectionTypesPaginator.ts | 2 +- .../src/pagination/ListCrawlersPaginator.ts | 2 +- .../ListCustomEntityTypesPaginator.ts | 2 +- .../ListDataQualityResultsPaginator.ts | 2 +- ...aQualityRuleRecommendationRunsPaginator.ts | 2 +- ...taQualityRulesetEvaluationRunsPaginator.ts | 2 +- .../ListDataQualityRulesetsPaginator.ts | 2 +- .../pagination/ListDevEndpointsPaginator.ts | 2 +- .../src/pagination/ListEntitiesPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../pagination/ListMLTransformsPaginator.ts | 2 +- .../src/pagination/ListRegistriesPaginator.ts | 2 +- .../pagination/ListSchemaVersionsPaginator.ts | 2 +- .../src/pagination/ListSchemasPaginator.ts | 2 +- .../src/pagination/ListSessionsPaginator.ts | 2 +- .../ListTableOptimizerRunsPaginator.ts | 2 +- .../src/pagination/ListTriggersPaginator.ts | 2 +- .../pagination/ListUsageProfilesPaginator.ts | 2 +- .../src/pagination/ListWorkflowsPaginator.ts | 2 +- .../src/pagination/SearchTablesPaginator.ts | 2 +- .../client-glue/src/runtimeConfig.browser.ts | 7 +- .../client-glue/src/runtimeConfig.native.ts | 2 +- .../client-glue/src/runtimeConfig.shared.ts | 4 +- clients/client-glue/src/runtimeConfig.ts | 8 +- clients/client-glue/src/runtimeExtensions.ts | 2 +- clients/client-glue/src/schemas/schemas_0.ts | 2 +- clients/client-grafana/package.json | 12 +- clients/client-grafana/src/Grafana.ts | 4 +- clients/client-grafana/src/GrafanaClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateLicenseCommand.ts | 6 +- .../commands/CreateWorkspaceApiKeyCommand.ts | 6 +- .../src/commands/CreateWorkspaceCommand.ts | 6 +- .../CreateWorkspaceServiceAccountCommand.ts | 6 +- ...eateWorkspaceServiceAccountTokenCommand.ts | 6 +- .../commands/DeleteWorkspaceApiKeyCommand.ts | 6 +- .../src/commands/DeleteWorkspaceCommand.ts | 6 +- .../DeleteWorkspaceServiceAccountCommand.ts | 6 +- ...leteWorkspaceServiceAccountTokenCommand.ts | 6 +- .../DescribeWorkspaceAuthenticationCommand.ts | 9 +- .../src/commands/DescribeWorkspaceCommand.ts | 6 +- .../DescribeWorkspaceConfigurationCommand.ts | 6 +- .../commands/DisassociateLicenseCommand.ts | 6 +- .../src/commands/ListPermissionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListVersionsCommand.ts | 6 +- ...istWorkspaceServiceAccountTokensCommand.ts | 6 +- .../ListWorkspaceServiceAccountsCommand.ts | 6 +- .../src/commands/ListWorkspacesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdatePermissionsCommand.ts | 6 +- .../UpdateWorkspaceAuthenticationCommand.ts | 6 +- .../src/commands/UpdateWorkspaceCommand.ts | 6 +- .../UpdateWorkspaceConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GrafanaServiceException.ts | 2 +- clients/client-grafana/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListPermissionsPaginator.ts | 2 +- .../src/pagination/ListVersionsPaginator.ts | 2 +- ...tWorkspaceServiceAccountTokensPaginator.ts | 2 +- .../ListWorkspaceServiceAccountsPaginator.ts | 2 +- .../src/pagination/ListWorkspacesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-grafana/src/runtimeConfig.ts | 8 +- .../client-grafana/src/runtimeExtensions.ts | 2 +- .../client-grafana/src/schemas/schemas_0.ts | 2 +- clients/client-greengrass/package.json | 12 +- clients/client-greengrass/src/Greengrass.ts | 4 +- .../client-greengrass/src/GreengrassClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateRoleToGroupCommand.ts | 6 +- .../AssociateServiceRoleToAccountCommand.ts | 6 +- .../CreateConnectorDefinitionCommand.ts | 6 +- ...CreateConnectorDefinitionVersionCommand.ts | 9 +- .../commands/CreateCoreDefinitionCommand.ts | 6 +- .../CreateCoreDefinitionVersionCommand.ts | 6 +- .../src/commands/CreateDeploymentCommand.ts | 6 +- .../commands/CreateDeviceDefinitionCommand.ts | 6 +- .../CreateDeviceDefinitionVersionCommand.ts | 6 +- .../CreateFunctionDefinitionCommand.ts | 6 +- .../CreateFunctionDefinitionVersionCommand.ts | 9 +- .../CreateGroupCertificateAuthorityCommand.ts | 9 +- .../src/commands/CreateGroupCommand.ts | 6 +- .../src/commands/CreateGroupVersionCommand.ts | 6 +- .../commands/CreateLoggerDefinitionCommand.ts | 6 +- .../CreateLoggerDefinitionVersionCommand.ts | 6 +- .../CreateResourceDefinitionCommand.ts | 6 +- .../CreateResourceDefinitionVersionCommand.ts | 9 +- .../CreateSoftwareUpdateJobCommand.ts | 6 +- .../CreateSubscriptionDefinitionCommand.ts | 6 +- ...ateSubscriptionDefinitionVersionCommand.ts | 6 +- .../DeleteConnectorDefinitionCommand.ts | 6 +- .../commands/DeleteCoreDefinitionCommand.ts | 6 +- .../commands/DeleteDeviceDefinitionCommand.ts | 6 +- .../DeleteFunctionDefinitionCommand.ts | 6 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../commands/DeleteLoggerDefinitionCommand.ts | 6 +- .../DeleteResourceDefinitionCommand.ts | 6 +- .../DeleteSubscriptionDefinitionCommand.ts | 6 +- .../DisassociateRoleFromGroupCommand.ts | 6 +- ...sassociateServiceRoleFromAccountCommand.ts | 6 +- .../src/commands/GetAssociatedRoleCommand.ts | 6 +- .../GetBulkDeploymentStatusCommand.ts | 6 +- .../commands/GetConnectivityInfoCommand.ts | 6 +- .../commands/GetConnectorDefinitionCommand.ts | 6 +- .../GetConnectorDefinitionVersionCommand.ts | 6 +- .../src/commands/GetCoreDefinitionCommand.ts | 6 +- .../GetCoreDefinitionVersionCommand.ts | 6 +- .../commands/GetDeploymentStatusCommand.ts | 6 +- .../commands/GetDeviceDefinitionCommand.ts | 6 +- .../GetDeviceDefinitionVersionCommand.ts | 6 +- .../commands/GetFunctionDefinitionCommand.ts | 6 +- .../GetFunctionDefinitionVersionCommand.ts | 6 +- .../GetGroupCertificateAuthorityCommand.ts | 6 +- ...GetGroupCertificateConfigurationCommand.ts | 9 +- .../src/commands/GetGroupCommand.ts | 6 +- .../src/commands/GetGroupVersionCommand.ts | 6 +- .../commands/GetLoggerDefinitionCommand.ts | 6 +- .../GetLoggerDefinitionVersionCommand.ts | 6 +- .../commands/GetResourceDefinitionCommand.ts | 6 +- .../GetResourceDefinitionVersionCommand.ts | 6 +- .../GetServiceRoleForAccountCommand.ts | 6 +- .../GetSubscriptionDefinitionCommand.ts | 6 +- ...GetSubscriptionDefinitionVersionCommand.ts | 9 +- .../GetThingRuntimeConfigurationCommand.ts | 6 +- ...istBulkDeploymentDetailedReportsCommand.ts | 6 +- .../commands/ListBulkDeploymentsCommand.ts | 6 +- .../ListConnectorDefinitionVersionsCommand.ts | 9 +- .../ListConnectorDefinitionsCommand.ts | 6 +- .../ListCoreDefinitionVersionsCommand.ts | 6 +- .../commands/ListCoreDefinitionsCommand.ts | 6 +- .../src/commands/ListDeploymentsCommand.ts | 6 +- .../ListDeviceDefinitionVersionsCommand.ts | 6 +- .../commands/ListDeviceDefinitionsCommand.ts | 6 +- .../ListFunctionDefinitionVersionsCommand.ts | 6 +- .../ListFunctionDefinitionsCommand.ts | 6 +- .../ListGroupCertificateAuthoritiesCommand.ts | 9 +- .../src/commands/ListGroupVersionsCommand.ts | 6 +- .../src/commands/ListGroupsCommand.ts | 6 +- .../ListLoggerDefinitionVersionsCommand.ts | 6 +- .../commands/ListLoggerDefinitionsCommand.ts | 6 +- .../ListResourceDefinitionVersionsCommand.ts | 6 +- .../ListResourceDefinitionsCommand.ts | 6 +- ...stSubscriptionDefinitionVersionsCommand.ts | 6 +- .../ListSubscriptionDefinitionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ResetDeploymentsCommand.ts | 6 +- .../commands/StartBulkDeploymentCommand.ts | 6 +- .../src/commands/StopBulkDeploymentCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateConnectivityInfoCommand.ts | 6 +- .../UpdateConnectorDefinitionCommand.ts | 6 +- .../commands/UpdateCoreDefinitionCommand.ts | 6 +- .../commands/UpdateDeviceDefinitionCommand.ts | 6 +- .../UpdateFunctionDefinitionCommand.ts | 6 +- ...ateGroupCertificateConfigurationCommand.ts | 6 +- .../src/commands/UpdateGroupCommand.ts | 6 +- .../commands/UpdateLoggerDefinitionCommand.ts | 6 +- .../UpdateResourceDefinitionCommand.ts | 6 +- .../UpdateSubscriptionDefinitionCommand.ts | 6 +- .../UpdateThingRuntimeConfigurationCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GreengrassServiceException.ts | 2 +- .../client-greengrass/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-greengrass/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-greengrassv2/package.json | 12 +- .../client-greengrassv2/src/GreengrassV2.ts | 4 +- .../src/GreengrassV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateServiceRoleToAccountCommand.ts | 6 +- ...ociateClientDeviceWithCoreDeviceCommand.ts | 6 +- ...ociateClientDeviceFromCoreDeviceCommand.ts | 6 +- .../src/commands/CancelDeploymentCommand.ts | 6 +- .../commands/CreateComponentVersionCommand.ts | 6 +- .../src/commands/CreateDeploymentCommand.ts | 6 +- .../src/commands/DeleteComponentCommand.ts | 6 +- .../src/commands/DeleteCoreDeviceCommand.ts | 6 +- .../src/commands/DeleteDeploymentCommand.ts | 6 +- .../src/commands/DescribeComponentCommand.ts | 6 +- ...sassociateServiceRoleFromAccountCommand.ts | 6 +- .../src/commands/GetComponentCommand.ts | 6 +- .../GetComponentVersionArtifactCommand.ts | 6 +- .../commands/GetConnectivityInfoCommand.ts | 6 +- .../src/commands/GetCoreDeviceCommand.ts | 6 +- .../src/commands/GetDeploymentCommand.ts | 6 +- .../GetServiceRoleForAccountCommand.ts | 6 +- ...tDevicesAssociatedWithCoreDeviceCommand.ts | 6 +- .../commands/ListComponentVersionsCommand.ts | 6 +- .../src/commands/ListComponentsCommand.ts | 6 +- .../src/commands/ListCoreDevicesCommand.ts | 6 +- .../src/commands/ListDeploymentsCommand.ts | 6 +- .../ListEffectiveDeploymentsCommand.ts | 6 +- .../ListInstalledComponentsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ResolveComponentCandidatesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateConnectivityInfoCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/GreengrassV2ServiceException.ts | 2 +- .../client-greengrassv2/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...evicesAssociatedWithCoreDevicePaginator.ts | 2 +- .../ListComponentVersionsPaginator.ts | 2 +- .../src/pagination/ListComponentsPaginator.ts | 2 +- .../pagination/ListCoreDevicesPaginator.ts | 2 +- .../pagination/ListDeploymentsPaginator.ts | 2 +- .../ListEffectiveDeploymentsPaginator.ts | 2 +- .../ListInstalledComponentsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-greengrassv2/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-groundstation/package.json | 12 +- .../client-groundstation/src/GroundStation.ts | 4 +- .../src/GroundStationClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelContactCommand.ts | 6 +- .../src/commands/CreateConfigCommand.ts | 6 +- .../CreateDataflowEndpointGroupCommand.ts | 6 +- .../CreateDataflowEndpointGroupV2Command.ts | 6 +- .../src/commands/CreateEphemerisCommand.ts | 6 +- .../commands/CreateMissionProfileCommand.ts | 6 +- .../src/commands/DeleteConfigCommand.ts | 6 +- .../DeleteDataflowEndpointGroupCommand.ts | 6 +- .../src/commands/DeleteEphemerisCommand.ts | 6 +- .../commands/DeleteMissionProfileCommand.ts | 6 +- .../src/commands/DescribeContactCommand.ts | 6 +- .../src/commands/DescribeEphemerisCommand.ts | 6 +- .../commands/GetAgentConfigurationCommand.ts | 6 +- .../GetAgentTaskResponseUrlCommand.ts | 6 +- .../src/commands/GetConfigCommand.ts | 6 +- .../GetDataflowEndpointGroupCommand.ts | 6 +- .../src/commands/GetMinuteUsageCommand.ts | 6 +- .../src/commands/GetMissionProfileCommand.ts | 6 +- .../src/commands/GetSatelliteCommand.ts | 6 +- .../src/commands/ListConfigsCommand.ts | 6 +- .../src/commands/ListContactsCommand.ts | 6 +- .../ListDataflowEndpointGroupsCommand.ts | 6 +- .../src/commands/ListEphemeridesCommand.ts | 6 +- .../src/commands/ListGroundStationsCommand.ts | 6 +- .../commands/ListMissionProfilesCommand.ts | 6 +- .../src/commands/ListSatellitesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RegisterAgentCommand.ts | 6 +- .../src/commands/ReserveContactCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAgentStatusCommand.ts | 6 +- .../src/commands/UpdateConfigCommand.ts | 6 +- .../src/commands/UpdateEphemerisCommand.ts | 6 +- .../commands/UpdateMissionProfileCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/GroundStationServiceException.ts | 2 +- .../client-groundstation/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListConfigsPaginator.ts | 2 +- .../src/pagination/ListContactsPaginator.ts | 2 +- .../ListDataflowEndpointGroupsPaginator.ts | 2 +- .../pagination/ListEphemeridesPaginator.ts | 2 +- .../pagination/ListGroundStationsPaginator.ts | 2 +- .../ListMissionProfilesPaginator.ts | 2 +- .../src/pagination/ListSatellitesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-groundstation/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-guardduty/package.json | 12 +- clients/client-guardduty/src/GuardDuty.ts | 4 +- .../client-guardduty/src/GuardDutyClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptAdministratorInvitationCommand.ts | 6 +- .../src/commands/AcceptInvitationCommand.ts | 6 +- .../src/commands/ArchiveFindingsCommand.ts | 6 +- .../src/commands/CreateDetectorCommand.ts | 6 +- .../src/commands/CreateFilterCommand.ts | 6 +- .../src/commands/CreateIPSetCommand.ts | 6 +- .../CreateMalwareProtectionPlanCommand.ts | 6 +- .../src/commands/CreateMembersCommand.ts | 6 +- .../CreatePublishingDestinationCommand.ts | 6 +- .../commands/CreateSampleFindingsCommand.ts | 6 +- .../commands/CreateThreatEntitySetCommand.ts | 6 +- .../commands/CreateThreatIntelSetCommand.ts | 6 +- .../commands/CreateTrustedEntitySetCommand.ts | 6 +- .../src/commands/DeclineInvitationsCommand.ts | 6 +- .../src/commands/DeleteDetectorCommand.ts | 6 +- .../src/commands/DeleteFilterCommand.ts | 6 +- .../src/commands/DeleteIPSetCommand.ts | 6 +- .../src/commands/DeleteInvitationsCommand.ts | 6 +- .../DeleteMalwareProtectionPlanCommand.ts | 6 +- .../src/commands/DeleteMembersCommand.ts | 6 +- .../DeletePublishingDestinationCommand.ts | 6 +- .../commands/DeleteThreatEntitySetCommand.ts | 6 +- .../commands/DeleteThreatIntelSetCommand.ts | 6 +- .../commands/DeleteTrustedEntitySetCommand.ts | 6 +- .../commands/DescribeMalwareScansCommand.ts | 6 +- ...escribeOrganizationConfigurationCommand.ts | 6 +- .../DescribePublishingDestinationCommand.ts | 6 +- .../DisableOrganizationAdminAccountCommand.ts | 9 +- ...ssociateFromAdministratorAccountCommand.ts | 6 +- .../DisassociateFromMasterAccountCommand.ts | 6 +- .../commands/DisassociateMembersCommand.ts | 6 +- .../EnableOrganizationAdminAccountCommand.ts | 6 +- .../GetAdministratorAccountCommand.ts | 6 +- .../commands/GetCoverageStatisticsCommand.ts | 6 +- .../src/commands/GetDetectorCommand.ts | 6 +- .../src/commands/GetFilterCommand.ts | 6 +- .../src/commands/GetFindingsCommand.ts | 6 +- .../commands/GetFindingsStatisticsCommand.ts | 6 +- .../src/commands/GetIPSetCommand.ts | 6 +- .../commands/GetInvitationsCountCommand.ts | 6 +- .../GetMalwareProtectionPlanCommand.ts | 6 +- .../src/commands/GetMalwareScanCommand.ts | 6 +- .../commands/GetMalwareScanSettingsCommand.ts | 6 +- .../src/commands/GetMasterAccountCommand.ts | 6 +- .../src/commands/GetMemberDetectorsCommand.ts | 6 +- .../src/commands/GetMembersCommand.ts | 6 +- .../GetOrganizationStatisticsCommand.ts | 6 +- .../GetRemainingFreeTrialDaysCommand.ts | 6 +- .../src/commands/GetThreatEntitySetCommand.ts | 6 +- .../src/commands/GetThreatIntelSetCommand.ts | 6 +- .../commands/GetTrustedEntitySetCommand.ts | 6 +- .../src/commands/GetUsageStatisticsCommand.ts | 6 +- .../src/commands/InviteMembersCommand.ts | 6 +- .../src/commands/ListCoverageCommand.ts | 6 +- .../src/commands/ListDetectorsCommand.ts | 6 +- .../src/commands/ListFiltersCommand.ts | 6 +- .../src/commands/ListFindingsCommand.ts | 6 +- .../src/commands/ListIPSetsCommand.ts | 6 +- .../src/commands/ListInvitationsCommand.ts | 6 +- .../ListMalwareProtectionPlansCommand.ts | 6 +- .../src/commands/ListMalwareScansCommand.ts | 6 +- .../src/commands/ListMembersCommand.ts | 6 +- .../ListOrganizationAdminAccountsCommand.ts | 6 +- .../ListPublishingDestinationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListThreatEntitySetsCommand.ts | 6 +- .../commands/ListThreatIntelSetsCommand.ts | 6 +- .../commands/ListTrustedEntitySetsCommand.ts | 6 +- .../commands/SendObjectMalwareScanCommand.ts | 6 +- .../src/commands/StartMalwareScanCommand.ts | 6 +- .../commands/StartMonitoringMembersCommand.ts | 6 +- .../commands/StopMonitoringMembersCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UnarchiveFindingsCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDetectorCommand.ts | 6 +- .../src/commands/UpdateFilterCommand.ts | 6 +- .../commands/UpdateFindingsFeedbackCommand.ts | 6 +- .../src/commands/UpdateIPSetCommand.ts | 6 +- .../UpdateMalwareProtectionPlanCommand.ts | 6 +- .../UpdateMalwareScanSettingsCommand.ts | 6 +- .../commands/UpdateMemberDetectorsCommand.ts | 6 +- .../UpdateOrganizationConfigurationCommand.ts | 9 +- .../UpdatePublishingDestinationCommand.ts | 6 +- .../commands/UpdateThreatEntitySetCommand.ts | 6 +- .../commands/UpdateThreatIntelSetCommand.ts | 6 +- .../commands/UpdateTrustedEntitySetCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GuardDutyServiceException.ts | 2 +- clients/client-guardduty/src/models/errors.ts | 2 +- .../DescribeMalwareScansPaginator.ts | 2 +- ...cribeOrganizationConfigurationPaginator.ts | 2 +- .../pagination/GetUsageStatisticsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListCoveragePaginator.ts | 2 +- .../src/pagination/ListDetectorsPaginator.ts | 2 +- .../src/pagination/ListFiltersPaginator.ts | 2 +- .../src/pagination/ListFindingsPaginator.ts | 2 +- .../src/pagination/ListIPSetsPaginator.ts | 2 +- .../pagination/ListInvitationsPaginator.ts | 2 +- .../pagination/ListMalwareScansPaginator.ts | 2 +- .../src/pagination/ListMembersPaginator.ts | 2 +- .../ListOrganizationAdminAccountsPaginator.ts | 2 +- .../ListPublishingDestinationsPaginator.ts | 2 +- .../ListThreatEntitySetsPaginator.ts | 2 +- .../ListThreatIntelSetsPaginator.ts | 2 +- .../ListTrustedEntitySetsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-guardduty/src/runtimeConfig.ts | 8 +- .../client-guardduty/src/runtimeExtensions.ts | 2 +- .../client-guardduty/src/schemas/schemas_0.ts | 2 +- clients/client-health/package.json | 12 +- clients/client-health/src/Health.ts | 4 +- clients/client-health/src/HealthClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...eAffectedAccountsForOrganizationCommand.ts | 6 +- .../DescribeAffectedEntitiesCommand.ts | 6 +- ...eAffectedEntitiesForOrganizationCommand.ts | 6 +- .../DescribeEntityAggregatesCommand.ts | 6 +- ...eEntityAggregatesForOrganizationCommand.ts | 6 +- .../DescribeEventAggregatesCommand.ts | 6 +- .../commands/DescribeEventDetailsCommand.ts | 6 +- ...cribeEventDetailsForOrganizationCommand.ts | 6 +- .../src/commands/DescribeEventTypesCommand.ts | 6 +- .../src/commands/DescribeEventsCommand.ts | 6 +- .../DescribeEventsForOrganizationCommand.ts | 6 +- ...althServiceStatusForOrganizationCommand.ts | 6 +- ...althServiceAccessForOrganizationCommand.ts | 4 +- ...althServiceAccessForOrganizationCommand.ts | 4 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/HealthServiceException.ts | 2 +- clients/client-health/src/models/errors.ts | 2 +- ...ffectedAccountsForOrganizationPaginator.ts | 2 +- ...ffectedEntitiesForOrganizationPaginator.ts | 2 +- .../DescribeAffectedEntitiesPaginator.ts | 2 +- .../DescribeEventAggregatesPaginator.ts | 2 +- .../pagination/DescribeEventTypesPaginator.ts | 2 +- .../DescribeEventsForOrganizationPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-health/src/runtimeConfig.native.ts | 2 +- .../client-health/src/runtimeConfig.shared.ts | 4 +- clients/client-health/src/runtimeConfig.ts | 8 +- .../client-health/src/runtimeExtensions.ts | 2 +- .../client-health/src/schemas/schemas_0.ts | 2 +- clients/client-healthlake/package.json | 12 +- clients/client-healthlake/src/HealthLake.ts | 4 +- .../client-healthlake/src/HealthLakeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateFHIRDatastoreCommand.ts | 6 +- .../commands/DeleteFHIRDatastoreCommand.ts | 6 +- .../commands/DescribeFHIRDatastoreCommand.ts | 6 +- .../commands/DescribeFHIRExportJobCommand.ts | 6 +- .../commands/DescribeFHIRImportJobCommand.ts | 6 +- .../src/commands/ListFHIRDatastoresCommand.ts | 6 +- .../src/commands/ListFHIRExportJobsCommand.ts | 6 +- .../src/commands/ListFHIRImportJobsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartFHIRExportJobCommand.ts | 6 +- .../src/commands/StartFHIRImportJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/HealthLakeServiceException.ts | 2 +- .../client-healthlake/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListFHIRDatastoresPaginator.ts | 2 +- .../pagination/ListFHIRExportJobsPaginator.ts | 2 +- .../pagination/ListFHIRImportJobsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-healthlake/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iam/package.json | 12 +- clients/client-iam/src/IAM.ts | 4 +- clients/client-iam/src/IAMClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptDelegationRequestCommand.ts | 6 +- ...dClientIDToOpenIDConnectProviderCommand.ts | 6 +- .../AddRoleToInstanceProfileCommand.ts | 6 +- .../src/commands/AddUserToGroupCommand.ts | 6 +- .../AssociateDelegationRequestCommand.ts | 6 +- .../src/commands/AttachGroupPolicyCommand.ts | 6 +- .../src/commands/AttachRolePolicyCommand.ts | 6 +- .../src/commands/AttachUserPolicyCommand.ts | 6 +- .../src/commands/ChangePasswordCommand.ts | 6 +- .../src/commands/CreateAccessKeyCommand.ts | 6 +- .../src/commands/CreateAccountAliasCommand.ts | 6 +- .../CreateDelegationRequestCommand.ts | 6 +- .../src/commands/CreateGroupCommand.ts | 6 +- .../commands/CreateInstanceProfileCommand.ts | 6 +- .../src/commands/CreateLoginProfileCommand.ts | 6 +- .../CreateOpenIDConnectProviderCommand.ts | 6 +- .../src/commands/CreatePolicyCommand.ts | 6 +- .../commands/CreatePolicyVersionCommand.ts | 6 +- .../src/commands/CreateRoleCommand.ts | 6 +- .../src/commands/CreateSAMLProviderCommand.ts | 6 +- .../CreateServiceLinkedRoleCommand.ts | 6 +- .../CreateServiceSpecificCredentialCommand.ts | 9 +- .../src/commands/CreateUserCommand.ts | 6 +- .../commands/CreateVirtualMFADeviceCommand.ts | 6 +- .../commands/DeactivateMFADeviceCommand.ts | 6 +- .../src/commands/DeleteAccessKeyCommand.ts | 6 +- .../src/commands/DeleteAccountAliasCommand.ts | 6 +- .../DeleteAccountPasswordPolicyCommand.ts | 4 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../src/commands/DeleteGroupPolicyCommand.ts | 6 +- .../commands/DeleteInstanceProfileCommand.ts | 6 +- .../src/commands/DeleteLoginProfileCommand.ts | 6 +- .../DeleteOpenIDConnectProviderCommand.ts | 6 +- .../src/commands/DeletePolicyCommand.ts | 6 +- .../commands/DeletePolicyVersionCommand.ts | 6 +- .../src/commands/DeleteRoleCommand.ts | 6 +- .../DeleteRolePermissionsBoundaryCommand.ts | 6 +- .../src/commands/DeleteRolePolicyCommand.ts | 6 +- .../src/commands/DeleteSAMLProviderCommand.ts | 6 +- .../src/commands/DeleteSSHPublicKeyCommand.ts | 6 +- .../DeleteServerCertificateCommand.ts | 6 +- .../DeleteServiceLinkedRoleCommand.ts | 6 +- .../DeleteServiceSpecificCredentialCommand.ts | 6 +- .../DeleteSigningCertificateCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../DeleteUserPermissionsBoundaryCommand.ts | 6 +- .../src/commands/DeleteUserPolicyCommand.ts | 6 +- .../commands/DeleteVirtualMFADeviceCommand.ts | 6 +- .../src/commands/DetachGroupPolicyCommand.ts | 6 +- .../src/commands/DetachRolePolicyCommand.ts | 6 +- .../src/commands/DetachUserPolicyCommand.ts | 6 +- ...zationsRootCredentialsManagementCommand.ts | 6 +- ...DisableOrganizationsRootSessionsCommand.ts | 9 +- ...bleOutboundWebIdentityFederationCommand.ts | 4 +- .../src/commands/EnableMFADeviceCommand.ts | 6 +- ...zationsRootCredentialsManagementCommand.ts | 6 +- .../EnableOrganizationsRootSessionsCommand.ts | 9 +- ...bleOutboundWebIdentityFederationCommand.ts | 6 +- .../GenerateCredentialReportCommand.ts | 6 +- ...enerateOrganizationsAccessReportCommand.ts | 6 +- ...nerateServiceLastAccessedDetailsCommand.ts | 6 +- .../commands/GetAccessKeyLastUsedCommand.ts | 6 +- .../GetAccountAuthorizationDetailsCommand.ts | 6 +- .../GetAccountPasswordPolicyCommand.ts | 6 +- .../src/commands/GetAccountSummaryCommand.ts | 6 +- .../GetContextKeysForCustomPolicyCommand.ts | 6 +- ...GetContextKeysForPrincipalPolicyCommand.ts | 6 +- .../commands/GetCredentialReportCommand.ts | 6 +- .../commands/GetDelegationRequestCommand.ts | 6 +- .../src/commands/GetGroupCommand.ts | 6 +- .../src/commands/GetGroupPolicyCommand.ts | 6 +- .../GetHumanReadableSummaryCommand.ts | 6 +- .../src/commands/GetInstanceProfileCommand.ts | 6 +- .../src/commands/GetLoginProfileCommand.ts | 6 +- .../src/commands/GetMFADeviceCommand.ts | 6 +- .../GetOpenIDConnectProviderCommand.ts | 6 +- .../GetOrganizationsAccessReportCommand.ts | 6 +- ...utboundWebIdentityFederationInfoCommand.ts | 6 +- .../src/commands/GetPolicyCommand.ts | 6 +- .../src/commands/GetPolicyVersionCommand.ts | 6 +- .../client-iam/src/commands/GetRoleCommand.ts | 6 +- .../src/commands/GetRolePolicyCommand.ts | 6 +- .../src/commands/GetSAMLProviderCommand.ts | 6 +- .../src/commands/GetSSHPublicKeyCommand.ts | 6 +- .../commands/GetServerCertificateCommand.ts | 6 +- .../GetServiceLastAccessedDetailsCommand.ts | 6 +- ...eLastAccessedDetailsWithEntitiesCommand.ts | 6 +- ...tServiceLinkedRoleDeletionStatusCommand.ts | 6 +- .../client-iam/src/commands/GetUserCommand.ts | 6 +- .../src/commands/GetUserPolicyCommand.ts | 6 +- .../src/commands/ListAccessKeysCommand.ts | 6 +- .../src/commands/ListAccountAliasesCommand.ts | 6 +- .../ListAttachedGroupPoliciesCommand.ts | 6 +- .../ListAttachedRolePoliciesCommand.ts | 6 +- .../ListAttachedUserPoliciesCommand.ts | 6 +- .../commands/ListDelegationRequestsCommand.ts | 6 +- .../commands/ListEntitiesForPolicyCommand.ts | 6 +- .../src/commands/ListGroupPoliciesCommand.ts | 6 +- .../src/commands/ListGroupsCommand.ts | 6 +- .../src/commands/ListGroupsForUserCommand.ts | 6 +- .../ListInstanceProfileTagsCommand.ts | 6 +- .../commands/ListInstanceProfilesCommand.ts | 6 +- .../ListInstanceProfilesForRoleCommand.ts | 6 +- .../src/commands/ListMFADeviceTagsCommand.ts | 6 +- .../src/commands/ListMFADevicesCommand.ts | 6 +- .../ListOpenIDConnectProviderTagsCommand.ts | 6 +- .../ListOpenIDConnectProvidersCommand.ts | 6 +- .../ListOrganizationsFeaturesCommand.ts | 6 +- .../src/commands/ListPoliciesCommand.ts | 6 +- ...istPoliciesGrantingServiceAccessCommand.ts | 6 +- .../src/commands/ListPolicyTagsCommand.ts | 6 +- .../src/commands/ListPolicyVersionsCommand.ts | 6 +- .../src/commands/ListRolePoliciesCommand.ts | 6 +- .../src/commands/ListRoleTagsCommand.ts | 6 +- .../src/commands/ListRolesCommand.ts | 6 +- .../commands/ListSAMLProviderTagsCommand.ts | 6 +- .../src/commands/ListSAMLProvidersCommand.ts | 6 +- .../src/commands/ListSSHPublicKeysCommand.ts | 6 +- .../ListServerCertificateTagsCommand.ts | 6 +- .../commands/ListServerCertificatesCommand.ts | 6 +- .../ListServiceSpecificCredentialsCommand.ts | 6 +- .../ListSigningCertificatesCommand.ts | 6 +- .../src/commands/ListUserPoliciesCommand.ts | 6 +- .../src/commands/ListUserTagsCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../commands/ListVirtualMFADevicesCommand.ts | 6 +- .../src/commands/PutGroupPolicyCommand.ts | 6 +- .../PutRolePermissionsBoundaryCommand.ts | 6 +- .../src/commands/PutRolePolicyCommand.ts | 6 +- .../PutUserPermissionsBoundaryCommand.ts | 6 +- .../src/commands/PutUserPolicyCommand.ts | 6 +- .../RejectDelegationRequestCommand.ts | 6 +- ...lientIDFromOpenIDConnectProviderCommand.ts | 6 +- .../RemoveRoleFromInstanceProfileCommand.ts | 6 +- .../commands/RemoveUserFromGroupCommand.ts | 6 +- .../ResetServiceSpecificCredentialCommand.ts | 6 +- .../src/commands/ResyncMFADeviceCommand.ts | 6 +- .../commands/SendDelegationTokenCommand.ts | 6 +- .../SetDefaultPolicyVersionCommand.ts | 6 +- ...tSecurityTokenServicePreferencesCommand.ts | 6 +- .../commands/SimulateCustomPolicyCommand.ts | 6 +- .../SimulatePrincipalPolicyCommand.ts | 6 +- .../src/commands/TagInstanceProfileCommand.ts | 6 +- .../src/commands/TagMFADeviceCommand.ts | 6 +- .../TagOpenIDConnectProviderCommand.ts | 6 +- .../src/commands/TagPolicyCommand.ts | 6 +- .../client-iam/src/commands/TagRoleCommand.ts | 6 +- .../src/commands/TagSAMLProviderCommand.ts | 6 +- .../commands/TagServerCertificateCommand.ts | 6 +- .../client-iam/src/commands/TagUserCommand.ts | 6 +- .../commands/UntagInstanceProfileCommand.ts | 6 +- .../src/commands/UntagMFADeviceCommand.ts | 6 +- .../UntagOpenIDConnectProviderCommand.ts | 6 +- .../src/commands/UntagPolicyCommand.ts | 6 +- .../src/commands/UntagRoleCommand.ts | 6 +- .../src/commands/UntagSAMLProviderCommand.ts | 6 +- .../commands/UntagServerCertificateCommand.ts | 6 +- .../src/commands/UntagUserCommand.ts | 6 +- .../src/commands/UpdateAccessKeyCommand.ts | 6 +- .../UpdateAccountPasswordPolicyCommand.ts | 6 +- .../commands/UpdateAssumeRolePolicyCommand.ts | 6 +- .../UpdateDelegationRequestCommand.ts | 6 +- .../src/commands/UpdateGroupCommand.ts | 6 +- .../src/commands/UpdateLoginProfileCommand.ts | 6 +- ...eOpenIDConnectProviderThumbprintCommand.ts | 6 +- .../src/commands/UpdateRoleCommand.ts | 6 +- .../commands/UpdateRoleDescriptionCommand.ts | 6 +- .../src/commands/UpdateSAMLProviderCommand.ts | 6 +- .../src/commands/UpdateSSHPublicKeyCommand.ts | 6 +- .../UpdateServerCertificateCommand.ts | 6 +- .../UpdateServiceSpecificCredentialCommand.ts | 6 +- .../UpdateSigningCertificateCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/commands/UploadSSHPublicKeyCommand.ts | 6 +- .../UploadServerCertificateCommand.ts | 6 +- .../UploadSigningCertificateCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-iam/src/extensionConfiguration.ts | 8 +- .../src/models/IAMServiceException.ts | 2 +- clients/client-iam/src/models/errors.ts | 2 +- ...GetAccountAuthorizationDetailsPaginator.ts | 2 +- .../src/pagination/GetGroupPaginator.ts | 2 +- .../client-iam/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAccessKeysPaginator.ts | 2 +- .../pagination/ListAccountAliasesPaginator.ts | 2 +- .../ListAttachedGroupPoliciesPaginator.ts | 2 +- .../ListAttachedRolePoliciesPaginator.ts | 2 +- .../ListAttachedUserPoliciesPaginator.ts | 2 +- .../ListEntitiesForPolicyPaginator.ts | 2 +- .../pagination/ListGroupPoliciesPaginator.ts | 2 +- .../pagination/ListGroupsForUserPaginator.ts | 2 +- .../src/pagination/ListGroupsPaginator.ts | 2 +- .../ListInstanceProfileTagsPaginator.ts | 2 +- .../ListInstanceProfilesForRolePaginator.ts | 2 +- .../ListInstanceProfilesPaginator.ts | 2 +- .../pagination/ListMFADeviceTagsPaginator.ts | 2 +- .../src/pagination/ListMFADevicesPaginator.ts | 2 +- .../ListOpenIDConnectProviderTagsPaginator.ts | 2 +- .../src/pagination/ListPoliciesPaginator.ts | 2 +- .../src/pagination/ListPolicyTagsPaginator.ts | 2 +- .../pagination/ListPolicyVersionsPaginator.ts | 2 +- .../pagination/ListRolePoliciesPaginator.ts | 2 +- .../src/pagination/ListRoleTagsPaginator.ts | 2 +- .../src/pagination/ListRolesPaginator.ts | 2 +- .../ListSAMLProviderTagsPaginator.ts | 2 +- .../pagination/ListSSHPublicKeysPaginator.ts | 2 +- .../ListServerCertificateTagsPaginator.ts | 2 +- .../ListServerCertificatesPaginator.ts | 2 +- .../ListSigningCertificatesPaginator.ts | 2 +- .../pagination/ListUserPoliciesPaginator.ts | 2 +- .../src/pagination/ListUserTagsPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../ListVirtualMFADevicesPaginator.ts | 2 +- .../SimulateCustomPolicyPaginator.ts | 2 +- .../SimulatePrincipalPolicyPaginator.ts | 2 +- .../client-iam/src/runtimeConfig.browser.ts | 7 +- .../client-iam/src/runtimeConfig.native.ts | 2 +- .../client-iam/src/runtimeConfig.shared.ts | 4 +- clients/client-iam/src/runtimeConfig.ts | 8 +- clients/client-iam/src/runtimeExtensions.ts | 2 +- clients/client-iam/src/schemas/schemas_0.ts | 2 +- clients/client-identitystore/package.json | 12 +- .../client-identitystore/src/Identitystore.ts | 4 +- .../src/IdentitystoreClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateGroupCommand.ts | 6 +- .../commands/CreateGroupMembershipCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../commands/DeleteGroupMembershipCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../src/commands/DescribeGroupCommand.ts | 6 +- .../DescribeGroupMembershipCommand.ts | 6 +- .../src/commands/DescribeUserCommand.ts | 6 +- .../src/commands/GetGroupIdCommand.ts | 6 +- .../commands/GetGroupMembershipIdCommand.ts | 6 +- .../src/commands/GetUserIdCommand.ts | 6 +- .../src/commands/IsMemberInGroupsCommand.ts | 6 +- .../commands/ListGroupMembershipsCommand.ts | 6 +- .../ListGroupMembershipsForMemberCommand.ts | 6 +- .../src/commands/ListGroupsCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../src/commands/UpdateGroupCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/IdentitystoreServiceException.ts | 2 +- .../client-identitystore/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListGroupMembershipsForMemberPaginator.ts | 2 +- .../ListGroupMembershipsPaginator.ts | 2 +- .../src/pagination/ListGroupsPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-identitystore/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-imagebuilder/package.json | 12 +- .../client-imagebuilder/src/Imagebuilder.ts | 4 +- .../src/ImagebuilderClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CancelImageCreationCommand.ts | 6 +- .../CancelLifecycleExecutionCommand.ts | 6 +- .../src/commands/CreateComponentCommand.ts | 6 +- .../commands/CreateContainerRecipeCommand.ts | 6 +- .../CreateDistributionConfigurationCommand.ts | 9 +- .../src/commands/CreateImageCommand.ts | 6 +- .../commands/CreateImagePipelineCommand.ts | 6 +- .../src/commands/CreateImageRecipeCommand.ts | 6 +- ...reateInfrastructureConfigurationCommand.ts | 6 +- .../commands/CreateLifecyclePolicyCommand.ts | 6 +- .../src/commands/CreateWorkflowCommand.ts | 6 +- .../src/commands/DeleteComponentCommand.ts | 6 +- .../commands/DeleteContainerRecipeCommand.ts | 6 +- .../DeleteDistributionConfigurationCommand.ts | 9 +- .../src/commands/DeleteImageCommand.ts | 6 +- .../commands/DeleteImagePipelineCommand.ts | 6 +- .../src/commands/DeleteImageRecipeCommand.ts | 6 +- ...eleteInfrastructureConfigurationCommand.ts | 6 +- .../commands/DeleteLifecyclePolicyCommand.ts | 6 +- .../src/commands/DeleteWorkflowCommand.ts | 6 +- .../src/commands/DistributeImageCommand.ts | 6 +- .../src/commands/GetComponentCommand.ts | 6 +- .../src/commands/GetComponentPolicyCommand.ts | 6 +- .../src/commands/GetContainerRecipeCommand.ts | 6 +- .../GetContainerRecipePolicyCommand.ts | 6 +- .../GetDistributionConfigurationCommand.ts | 6 +- .../src/commands/GetImageCommand.ts | 6 +- .../src/commands/GetImagePipelineCommand.ts | 6 +- .../src/commands/GetImagePolicyCommand.ts | 6 +- .../src/commands/GetImageRecipeCommand.ts | 6 +- .../commands/GetImageRecipePolicyCommand.ts | 6 +- .../GetInfrastructureConfigurationCommand.ts | 6 +- .../commands/GetLifecycleExecutionCommand.ts | 6 +- .../src/commands/GetLifecyclePolicyCommand.ts | 6 +- .../commands/GetMarketplaceResourceCommand.ts | 6 +- .../src/commands/GetWorkflowCommand.ts | 6 +- .../commands/GetWorkflowExecutionCommand.ts | 6 +- .../GetWorkflowStepExecutionCommand.ts | 6 +- .../src/commands/ImportComponentCommand.ts | 6 +- .../src/commands/ImportDiskImageCommand.ts | 6 +- .../src/commands/ImportVmImageCommand.ts | 6 +- .../ListComponentBuildVersionsCommand.ts | 6 +- .../src/commands/ListComponentsCommand.ts | 6 +- .../commands/ListContainerRecipesCommand.ts | 6 +- .../ListDistributionConfigurationsCommand.ts | 6 +- .../commands/ListImageBuildVersionsCommand.ts | 6 +- .../src/commands/ListImagePackagesCommand.ts | 6 +- .../ListImagePipelineImagesCommand.ts | 6 +- .../src/commands/ListImagePipelinesCommand.ts | 6 +- .../src/commands/ListImageRecipesCommand.ts | 6 +- ...ListImageScanFindingAggregationsCommand.ts | 9 +- .../commands/ListImageScanFindingsCommand.ts | 6 +- .../src/commands/ListImagesCommand.ts | 6 +- ...ListInfrastructureConfigurationsCommand.ts | 9 +- .../ListLifecycleExecutionResourcesCommand.ts | 9 +- .../ListLifecycleExecutionsCommand.ts | 6 +- .../commands/ListLifecyclePoliciesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListWaitingWorkflowStepsCommand.ts | 6 +- .../ListWorkflowBuildVersionsCommand.ts | 6 +- .../commands/ListWorkflowExecutionsCommand.ts | 6 +- .../ListWorkflowStepExecutionsCommand.ts | 6 +- .../src/commands/ListWorkflowsCommand.ts | 6 +- .../src/commands/PutComponentPolicyCommand.ts | 6 +- .../PutContainerRecipePolicyCommand.ts | 6 +- .../src/commands/PutImagePolicyCommand.ts | 6 +- .../commands/PutImageRecipePolicyCommand.ts | 6 +- .../src/commands/RetryImageCommand.ts | 6 +- .../commands/SendWorkflowStepActionCommand.ts | 6 +- .../StartImagePipelineExecutionCommand.ts | 6 +- .../StartResourceStateUpdateCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateDistributionConfigurationCommand.ts | 9 +- .../commands/UpdateImagePipelineCommand.ts | 6 +- ...pdateInfrastructureConfigurationCommand.ts | 6 +- .../commands/UpdateLifecyclePolicyCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ImagebuilderServiceException.ts | 2 +- .../client-imagebuilder/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListComponentBuildVersionsPaginator.ts | 2 +- .../src/pagination/ListComponentsPaginator.ts | 2 +- .../ListContainerRecipesPaginator.ts | 2 +- ...ListDistributionConfigurationsPaginator.ts | 2 +- .../ListImageBuildVersionsPaginator.ts | 2 +- .../pagination/ListImagePackagesPaginator.ts | 2 +- .../ListImagePipelineImagesPaginator.ts | 2 +- .../pagination/ListImagePipelinesPaginator.ts | 2 +- .../pagination/ListImageRecipesPaginator.ts | 2 +- ...stImageScanFindingAggregationsPaginator.ts | 2 +- .../ListImageScanFindingsPaginator.ts | 2 +- .../src/pagination/ListImagesPaginator.ts | 2 +- ...stInfrastructureConfigurationsPaginator.ts | 2 +- ...istLifecycleExecutionResourcesPaginator.ts | 2 +- .../ListLifecycleExecutionsPaginator.ts | 2 +- .../ListLifecyclePoliciesPaginator.ts | 2 +- .../ListWaitingWorkflowStepsPaginator.ts | 2 +- .../ListWorkflowBuildVersionsPaginator.ts | 2 +- .../ListWorkflowExecutionsPaginator.ts | 2 +- .../ListWorkflowStepExecutionsPaginator.ts | 2 +- .../src/pagination/ListWorkflowsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-imagebuilder/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-inspector-scan/package.json | 12 +- .../src/InspectorScan.ts | 4 +- .../src/InspectorScanClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/ScanSbomCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/InspectorScanServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-inspector/package.json | 12 +- clients/client-inspector/src/Inspector.ts | 4 +- .../client-inspector/src/InspectorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AddAttributesToFindingsCommand.ts | 6 +- .../commands/CreateAssessmentTargetCommand.ts | 6 +- .../CreateAssessmentTemplateCommand.ts | 6 +- .../CreateExclusionsPreviewCommand.ts | 6 +- .../commands/CreateResourceGroupCommand.ts | 6 +- .../commands/DeleteAssessmentRunCommand.ts | 6 +- .../commands/DeleteAssessmentTargetCommand.ts | 6 +- .../DeleteAssessmentTemplateCommand.ts | 6 +- .../commands/DescribeAssessmentRunsCommand.ts | 6 +- .../DescribeAssessmentTargetsCommand.ts | 6 +- .../DescribeAssessmentTemplatesCommand.ts | 6 +- .../DescribeCrossAccountAccessRoleCommand.ts | 6 +- .../src/commands/DescribeExclusionsCommand.ts | 6 +- .../src/commands/DescribeFindingsCommand.ts | 6 +- .../commands/DescribeResourceGroupsCommand.ts | 6 +- .../commands/DescribeRulesPackagesCommand.ts | 6 +- .../commands/GetAssessmentReportCommand.ts | 6 +- .../commands/GetExclusionsPreviewCommand.ts | 6 +- .../commands/GetTelemetryMetadataCommand.ts | 6 +- .../ListAssessmentRunAgentsCommand.ts | 6 +- .../src/commands/ListAssessmentRunsCommand.ts | 6 +- .../commands/ListAssessmentTargetsCommand.ts | 6 +- .../ListAssessmentTemplatesCommand.ts | 6 +- .../commands/ListEventSubscriptionsCommand.ts | 6 +- .../src/commands/ListExclusionsCommand.ts | 6 +- .../src/commands/ListFindingsCommand.ts | 6 +- .../src/commands/ListRulesPackagesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PreviewAgentsCommand.ts | 6 +- .../RegisterCrossAccountAccessRoleCommand.ts | 6 +- .../RemoveAttributesFromFindingsCommand.ts | 6 +- .../src/commands/SetTagsForResourceCommand.ts | 6 +- .../src/commands/StartAssessmentRunCommand.ts | 6 +- .../src/commands/StopAssessmentRunCommand.ts | 6 +- .../src/commands/SubscribeToEventCommand.ts | 6 +- .../commands/UnsubscribeFromEventCommand.ts | 6 +- .../commands/UpdateAssessmentTargetCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/InspectorServiceException.ts | 2 +- clients/client-inspector/src/models/errors.ts | 2 +- .../GetExclusionsPreviewPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAssessmentRunAgentsPaginator.ts | 2 +- .../pagination/ListAssessmentRunsPaginator.ts | 2 +- .../ListAssessmentTargetsPaginator.ts | 2 +- .../ListAssessmentTemplatesPaginator.ts | 2 +- .../ListEventSubscriptionsPaginator.ts | 2 +- .../src/pagination/ListExclusionsPaginator.ts | 2 +- .../src/pagination/ListFindingsPaginator.ts | 2 +- .../pagination/ListRulesPackagesPaginator.ts | 2 +- .../src/pagination/PreviewAgentsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-inspector/src/runtimeConfig.ts | 8 +- .../client-inspector/src/runtimeExtensions.ts | 2 +- .../client-inspector/src/schemas/schemas_0.ts | 2 +- clients/client-inspector2/package.json | 12 +- clients/client-inspector2/src/Inspector2.ts | 4 +- .../client-inspector2/src/Inspector2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateMemberCommand.ts | 6 +- ...ateCodeSecurityScanConfigurationCommand.ts | 6 +- ...ateCodeSecurityScanConfigurationCommand.ts | 6 +- .../commands/BatchGetAccountStatusCommand.ts | 6 +- .../commands/BatchGetCodeSnippetCommand.ts | 6 +- .../commands/BatchGetFindingDetailsCommand.ts | 6 +- .../commands/BatchGetFreeTrialInfoCommand.ts | 6 +- ...GetMemberEc2DeepInspectionStatusCommand.ts | 6 +- ...ateMemberEc2DeepInspectionStatusCommand.ts | 6 +- .../commands/CancelFindingsReportCommand.ts | 6 +- .../src/commands/CancelSbomExportCommand.ts | 6 +- .../CreateCisScanConfigurationCommand.ts | 6 +- .../CreateCodeSecurityIntegrationCommand.ts | 6 +- ...ateCodeSecurityScanConfigurationCommand.ts | 6 +- .../src/commands/CreateFilterCommand.ts | 6 +- .../commands/CreateFindingsReportCommand.ts | 6 +- .../src/commands/CreateSbomExportCommand.ts | 6 +- .../DeleteCisScanConfigurationCommand.ts | 6 +- .../DeleteCodeSecurityIntegrationCommand.ts | 6 +- ...eteCodeSecurityScanConfigurationCommand.ts | 6 +- .../src/commands/DeleteFilterCommand.ts | 6 +- ...escribeOrganizationConfigurationCommand.ts | 6 +- .../src/commands/DisableCommand.ts | 6 +- .../DisableDelegatedAdminAccountCommand.ts | 6 +- .../src/commands/DisassociateMemberCommand.ts | 6 +- .../src/commands/EnableCommand.ts | 6 +- .../EnableDelegatedAdminAccountCommand.ts | 6 +- .../src/commands/GetCisScanReportCommand.ts | 6 +- .../GetCisScanResultDetailsCommand.ts | 6 +- .../commands/GetClustersForImageCommand.ts | 6 +- .../GetCodeSecurityIntegrationCommand.ts | 6 +- .../commands/GetCodeSecurityScanCommand.ts | 6 +- ...GetCodeSecurityScanConfigurationCommand.ts | 9 +- .../src/commands/GetConfigurationCommand.ts | 6 +- .../GetDelegatedAdminAccountCommand.ts | 6 +- ...etEc2DeepInspectionConfigurationCommand.ts | 6 +- .../src/commands/GetEncryptionKeyCommand.ts | 6 +- .../GetFindingsReportStatusCommand.ts | 6 +- .../src/commands/GetMemberCommand.ts | 6 +- .../src/commands/GetSbomExportCommand.ts | 6 +- .../commands/ListAccountPermissionsCommand.ts | 6 +- .../ListCisScanConfigurationsCommand.ts | 6 +- ...CisScanResultsAggregatedByChecksCommand.ts | 6 +- ...esultsAggregatedByTargetResourceCommand.ts | 6 +- .../src/commands/ListCisScansCommand.ts | 6 +- .../ListCodeSecurityIntegrationsCommand.ts | 6 +- ...ityScanConfigurationAssociationsCommand.ts | 6 +- ...stCodeSecurityScanConfigurationsCommand.ts | 6 +- .../src/commands/ListCoverageCommand.ts | 6 +- .../commands/ListCoverageStatisticsCommand.ts | 6 +- .../ListDelegatedAdminAccountsCommand.ts | 6 +- .../src/commands/ListFiltersCommand.ts | 6 +- .../ListFindingAggregationsCommand.ts | 6 +- .../src/commands/ListFindingsCommand.ts | 6 +- .../src/commands/ListMembersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListUsageTotalsCommand.ts | 6 +- .../src/commands/ResetEncryptionKeyCommand.ts | 6 +- .../commands/SearchVulnerabilitiesCommand.ts | 6 +- .../commands/SendCisSessionHealthCommand.ts | 6 +- .../SendCisSessionTelemetryCommand.ts | 6 +- .../src/commands/StartCisSessionCommand.ts | 8 +- .../commands/StartCodeSecurityScanCommand.ts | 6 +- .../src/commands/StopCisSessionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateCisScanConfigurationCommand.ts | 6 +- .../UpdateCodeSecurityIntegrationCommand.ts | 6 +- ...ateCodeSecurityScanConfigurationCommand.ts | 6 +- .../commands/UpdateConfigurationCommand.ts | 6 +- ...teEc2DeepInspectionConfigurationCommand.ts | 6 +- .../commands/UpdateEncryptionKeyCommand.ts | 6 +- .../src/commands/UpdateFilterCommand.ts | 6 +- ...rgEc2DeepInspectionConfigurationCommand.ts | 6 +- .../UpdateOrganizationConfigurationCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/Inspector2ServiceException.ts | 2 +- .../client-inspector2/src/models/errors.ts | 2 +- .../GetCisScanResultDetailsPaginator.ts | 2 +- .../GetClustersForImagePaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAccountPermissionsPaginator.ts | 2 +- .../ListCisScanConfigurationsPaginator.ts | 2 +- ...sScanResultsAggregatedByChecksPaginator.ts | 2 +- ...ultsAggregatedByTargetResourcePaginator.ts | 2 +- .../src/pagination/ListCisScansPaginator.ts | 2 +- .../src/pagination/ListCoveragePaginator.ts | 2 +- .../ListCoverageStatisticsPaginator.ts | 2 +- .../ListDelegatedAdminAccountsPaginator.ts | 2 +- .../src/pagination/ListFiltersPaginator.ts | 2 +- .../ListFindingAggregationsPaginator.ts | 2 +- .../src/pagination/ListFindingsPaginator.ts | 2 +- .../src/pagination/ListMembersPaginator.ts | 2 +- .../pagination/ListUsageTotalsPaginator.ts | 2 +- .../SearchVulnerabilitiesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-inspector2/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-internetmonitor/package.json | 12 +- .../src/InternetMonitor.ts | 4 +- .../src/InternetMonitorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateMonitorCommand.ts | 10 +- .../src/commands/DeleteMonitorCommand.ts | 10 +- .../src/commands/GetHealthEventCommand.ts | 10 +- .../src/commands/GetInternetEventCommand.ts | 10 +- .../src/commands/GetMonitorCommand.ts | 10 +- .../src/commands/GetQueryResultsCommand.ts | 10 +- .../src/commands/GetQueryStatusCommand.ts | 10 +- .../src/commands/ListHealthEventsCommand.ts | 10 +- .../src/commands/ListInternetEventsCommand.ts | 10 +- .../src/commands/ListMonitorsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/StartQueryCommand.ts | 10 +- .../src/commands/StopQueryCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateMonitorCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/InternetMonitorServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../pagination/GetQueryResultsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListHealthEventsPaginator.ts | 2 +- .../pagination/ListInternetEventsPaginator.ts | 2 +- .../src/pagination/ListMonitorsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-invoicing/package.json | 12 +- clients/client-invoicing/src/Invoicing.ts | 4 +- .../client-invoicing/src/InvoicingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchGetInvoiceProfileCommand.ts | 6 +- .../src/commands/CreateInvoiceUnitCommand.ts | 6 +- ...reateProcurementPortalPreferenceCommand.ts | 6 +- .../src/commands/DeleteInvoiceUnitCommand.ts | 6 +- ...eleteProcurementPortalPreferenceCommand.ts | 6 +- .../src/commands/GetInvoicePDFCommand.ts | 6 +- .../src/commands/GetInvoiceUnitCommand.ts | 6 +- .../GetProcurementPortalPreferenceCommand.ts | 6 +- .../commands/ListInvoiceSummariesCommand.ts | 6 +- .../src/commands/ListInvoiceUnitsCommand.ts | 6 +- ...ListProcurementPortalPreferencesCommand.ts | 9 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../PutProcurementPortalPreferenceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateInvoiceUnitCommand.ts | 6 +- ...rocurementPortalPreferenceStatusCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/InvoicingServiceException.ts | 2 +- clients/client-invoicing/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListInvoiceSummariesPaginator.ts | 2 +- .../pagination/ListInvoiceUnitsPaginator.ts | 2 +- ...stProcurementPortalPreferencesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-invoicing/src/runtimeConfig.ts | 8 +- .../client-invoicing/src/runtimeExtensions.ts | 2 +- .../client-invoicing/src/schemas/schemas_0.ts | 2 +- clients/client-iot-data-plane/package.json | 12 +- .../client-iot-data-plane/src/IoTDataPlane.ts | 4 +- .../src/IoTDataPlaneClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DeleteConnectionCommand.ts | 6 +- .../src/commands/DeleteThingShadowCommand.ts | 6 +- .../src/commands/GetRetainedMessageCommand.ts | 6 +- .../src/commands/GetThingShadowCommand.ts | 6 +- .../ListNamedShadowsForThingCommand.ts | 6 +- .../commands/ListRetainedMessagesCommand.ts | 6 +- .../src/commands/PublishCommand.ts | 4 +- .../src/commands/UpdateThingShadowCommand.ts | 4 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/IoTDataPlaneServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListRetainedMessagesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iot-events-data/package.json | 12 +- .../src/IoTEventsData.ts | 4 +- .../src/IoTEventsDataClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchAcknowledgeAlarmCommand.ts | 6 +- .../commands/BatchDeleteDetectorCommand.ts | 6 +- .../src/commands/BatchDisableAlarmCommand.ts | 6 +- .../src/commands/BatchEnableAlarmCommand.ts | 6 +- .../src/commands/BatchPutMessageCommand.ts | 6 +- .../src/commands/BatchResetAlarmCommand.ts | 6 +- .../src/commands/BatchSnoozeAlarmCommand.ts | 6 +- .../commands/BatchUpdateDetectorCommand.ts | 6 +- .../src/commands/DescribeAlarmCommand.ts | 6 +- .../src/commands/DescribeDetectorCommand.ts | 6 +- .../src/commands/ListAlarmsCommand.ts | 6 +- .../src/commands/ListDetectorsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/IoTEventsDataServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iot-events/package.json | 12 +- clients/client-iot-events/src/IoTEvents.ts | 4 +- .../client-iot-events/src/IoTEventsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateAlarmModelCommand.ts | 6 +- .../commands/CreateDetectorModelCommand.ts | 6 +- .../src/commands/CreateInputCommand.ts | 6 +- .../src/commands/DeleteAlarmModelCommand.ts | 6 +- .../commands/DeleteDetectorModelCommand.ts | 6 +- .../src/commands/DeleteInputCommand.ts | 6 +- .../src/commands/DescribeAlarmModelCommand.ts | 6 +- .../DescribeDetectorModelAnalysisCommand.ts | 6 +- .../commands/DescribeDetectorModelCommand.ts | 6 +- .../src/commands/DescribeInputCommand.ts | 6 +- .../commands/DescribeLoggingOptionsCommand.ts | 6 +- .../GetDetectorModelAnalysisResultsCommand.ts | 9 +- .../commands/ListAlarmModelVersionsCommand.ts | 6 +- .../src/commands/ListAlarmModelsCommand.ts | 6 +- .../ListDetectorModelVersionsCommand.ts | 6 +- .../src/commands/ListDetectorModelsCommand.ts | 6 +- .../src/commands/ListInputRoutingsCommand.ts | 6 +- .../src/commands/ListInputsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutLoggingOptionsCommand.ts | 6 +- .../StartDetectorModelAnalysisCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAlarmModelCommand.ts | 6 +- .../commands/UpdateDetectorModelCommand.ts | 6 +- .../src/commands/UpdateInputCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/IoTEventsServiceException.ts | 2 +- .../client-iot-events/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-iot-events/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-iot-jobs-data-plane/package.json | 12 +- .../src/IoTJobsDataPlane.ts | 4 +- .../src/IoTJobsDataPlaneClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/DescribeJobExecutionCommand.ts | 10 +- .../GetPendingJobExecutionsCommand.ts | 10 +- .../commands/StartCommandExecutionCommand.ts | 10 +- .../StartNextPendingJobExecutionCommand.ts | 10 +- .../src/commands/UpdateJobExecutionCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../IoTJobsDataPlaneServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/IoTManagedIntegrations.ts | 4 +- .../src/IoTManagedIntegrationsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateAccountAssociationCommand.ts | 6 +- .../commands/CreateCloudConnectorCommand.ts | 6 +- .../CreateConnectorDestinationCommand.ts | 6 +- .../commands/CreateCredentialLockerCommand.ts | 6 +- .../src/commands/CreateDestinationCommand.ts | 6 +- .../CreateEventLogConfigurationCommand.ts | 6 +- .../src/commands/CreateManagedThingCommand.ts | 6 +- .../CreateNotificationConfigurationCommand.ts | 9 +- .../src/commands/CreateOtaTaskCommand.ts | 6 +- .../CreateOtaTaskConfigurationCommand.ts | 6 +- .../CreateProvisioningProfileCommand.ts | 6 +- .../DeleteAccountAssociationCommand.ts | 6 +- .../commands/DeleteCloudConnectorCommand.ts | 6 +- .../DeleteConnectorDestinationCommand.ts | 6 +- .../commands/DeleteCredentialLockerCommand.ts | 6 +- .../src/commands/DeleteDestinationCommand.ts | 6 +- .../DeleteEventLogConfigurationCommand.ts | 6 +- .../src/commands/DeleteManagedThingCommand.ts | 6 +- .../DeleteNotificationConfigurationCommand.ts | 6 +- .../src/commands/DeleteOtaTaskCommand.ts | 6 +- .../DeleteOtaTaskConfigurationCommand.ts | 6 +- .../DeleteProvisioningProfileCommand.ts | 6 +- .../DeregisterAccountAssociationCommand.ts | 6 +- .../commands/GetAccountAssociationCommand.ts | 6 +- .../src/commands/GetCloudConnectorCommand.ts | 6 +- .../GetConnectorDestinationCommand.ts | 6 +- .../commands/GetCredentialLockerCommand.ts | 6 +- .../src/commands/GetCustomEndpointCommand.ts | 6 +- ...etDefaultEncryptionConfigurationCommand.ts | 6 +- .../src/commands/GetDestinationCommand.ts | 6 +- .../src/commands/GetDeviceDiscoveryCommand.ts | 6 +- .../GetEventLogConfigurationCommand.ts | 6 +- .../commands/GetHubConfigurationCommand.ts | 6 +- .../GetManagedThingCapabilitiesCommand.ts | 6 +- .../GetManagedThingCertificateCommand.ts | 6 +- .../src/commands/GetManagedThingCommand.ts | 6 +- .../GetManagedThingConnectivityDataCommand.ts | 9 +- .../GetManagedThingMetaDataCommand.ts | 6 +- .../commands/GetManagedThingStateCommand.ts | 6 +- .../GetNotificationConfigurationCommand.ts | 6 +- .../src/commands/GetOtaTaskCommand.ts | 6 +- .../GetOtaTaskConfigurationCommand.ts | 6 +- .../commands/GetProvisioningProfileCommand.ts | 6 +- .../GetRuntimeLogConfigurationCommand.ts | 6 +- .../src/commands/GetSchemaVersionCommand.ts | 6 +- .../ListAccountAssociationsCommand.ts | 6 +- .../commands/ListCloudConnectorsCommand.ts | 6 +- .../ListConnectorDestinationsCommand.ts | 6 +- .../commands/ListCredentialLockersCommand.ts | 6 +- .../src/commands/ListDestinationsCommand.ts | 6 +- .../commands/ListDeviceDiscoveriesCommand.ts | 6 +- .../commands/ListDiscoveredDevicesCommand.ts | 6 +- .../ListEventLogConfigurationsCommand.ts | 6 +- ...tManagedThingAccountAssociationsCommand.ts | 6 +- .../ListManagedThingSchemasCommand.ts | 6 +- .../src/commands/ListManagedThingsCommand.ts | 6 +- .../ListNotificationConfigurationsCommand.ts | 6 +- .../ListOtaTaskConfigurationsCommand.ts | 6 +- .../commands/ListOtaTaskExecutionsCommand.ts | 6 +- .../src/commands/ListOtaTasksCommand.ts | 6 +- .../ListProvisioningProfilesCommand.ts | 6 +- .../src/commands/ListSchemaVersionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...utDefaultEncryptionConfigurationCommand.ts | 6 +- .../commands/PutHubConfigurationCommand.ts | 6 +- .../PutRuntimeLogConfigurationCommand.ts | 6 +- .../RegisterAccountAssociationCommand.ts | 6 +- .../commands/RegisterCustomEndpointCommand.ts | 6 +- .../ResetRuntimeLogConfigurationCommand.ts | 6 +- .../src/commands/SendConnectorEventCommand.ts | 6 +- .../SendManagedThingCommandCommand.ts | 6 +- .../StartAccountAssociationRefreshCommand.ts | 6 +- .../commands/StartDeviceDiscoveryCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateAccountAssociationCommand.ts | 6 +- .../commands/UpdateCloudConnectorCommand.ts | 6 +- .../UpdateConnectorDestinationCommand.ts | 6 +- .../src/commands/UpdateDestinationCommand.ts | 6 +- .../UpdateEventLogConfigurationCommand.ts | 6 +- .../src/commands/UpdateManagedThingCommand.ts | 6 +- .../UpdateNotificationConfigurationCommand.ts | 6 +- .../src/commands/UpdateOtaTaskCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../IoTManagedIntegrationsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAccountAssociationsPaginator.ts | 2 +- .../ListCloudConnectorsPaginator.ts | 2 +- .../ListConnectorDestinationsPaginator.ts | 2 +- .../ListCredentialLockersPaginator.ts | 2 +- .../pagination/ListDestinationsPaginator.ts | 2 +- .../ListDeviceDiscoveriesPaginator.ts | 2 +- .../ListDiscoveredDevicesPaginator.ts | 2 +- .../ListEventLogConfigurationsPaginator.ts | 2 +- ...anagedThingAccountAssociationsPaginator.ts | 2 +- .../ListManagedThingSchemasPaginator.ts | 2 +- .../pagination/ListManagedThingsPaginator.ts | 2 +- ...ListNotificationConfigurationsPaginator.ts | 2 +- .../ListOtaTaskConfigurationsPaginator.ts | 2 +- .../ListOtaTaskExecutionsPaginator.ts | 2 +- .../src/pagination/ListOtaTasksPaginator.ts | 2 +- .../ListProvisioningProfilesPaginator.ts | 2 +- .../pagination/ListSchemaVersionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iot-wireless/package.json | 12 +- .../client-iot-wireless/src/IoTWireless.ts | 4 +- .../src/IoTWirelessClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...iateAwsAccountWithPartnerAccountCommand.ts | 6 +- ...ciateMulticastGroupWithFuotaTaskCommand.ts | 6 +- ...ciateWirelessDeviceWithFuotaTaskCommand.ts | 6 +- ...WirelessDeviceWithMulticastGroupCommand.ts | 6 +- ...AssociateWirelessDeviceWithThingCommand.ts | 9 +- ...teWirelessGatewayWithCertificateCommand.ts | 6 +- ...ssociateWirelessGatewayWithThingCommand.ts | 6 +- .../CancelMulticastGroupSessionCommand.ts | 6 +- .../src/commands/CreateDestinationCommand.ts | 6 +- .../commands/CreateDeviceProfileCommand.ts | 6 +- .../src/commands/CreateFuotaTaskCommand.ts | 6 +- .../commands/CreateMulticastGroupCommand.ts | 6 +- ...eateNetworkAnalyzerConfigurationCommand.ts | 6 +- .../commands/CreateServiceProfileCommand.ts | 6 +- .../commands/CreateWirelessDeviceCommand.ts | 6 +- .../commands/CreateWirelessGatewayCommand.ts | 6 +- .../CreateWirelessGatewayTaskCommand.ts | 6 +- ...ateWirelessGatewayTaskDefinitionCommand.ts | 6 +- .../src/commands/DeleteDestinationCommand.ts | 6 +- .../commands/DeleteDeviceProfileCommand.ts | 6 +- .../src/commands/DeleteFuotaTaskCommand.ts | 6 +- .../commands/DeleteMulticastGroupCommand.ts | 6 +- ...leteNetworkAnalyzerConfigurationCommand.ts | 6 +- .../commands/DeleteQueuedMessagesCommand.ts | 6 +- .../commands/DeleteServiceProfileCommand.ts | 6 +- .../commands/DeleteWirelessDeviceCommand.ts | 6 +- .../DeleteWirelessDeviceImportTaskCommand.ts | 6 +- .../commands/DeleteWirelessGatewayCommand.ts | 6 +- .../DeleteWirelessGatewayTaskCommand.ts | 6 +- ...eteWirelessGatewayTaskDefinitionCommand.ts | 6 +- .../DeregisterWirelessDeviceCommand.ts | 6 +- ...iateAwsAccountFromPartnerAccountCommand.ts | 6 +- ...ciateMulticastGroupFromFuotaTaskCommand.ts | 6 +- ...ciateWirelessDeviceFromFuotaTaskCommand.ts | 6 +- ...WirelessDeviceFromMulticastGroupCommand.ts | 6 +- ...associateWirelessDeviceFromThingCommand.ts | 6 +- ...teWirelessGatewayFromCertificateCommand.ts | 6 +- ...ssociateWirelessGatewayFromThingCommand.ts | 6 +- .../src/commands/GetDestinationCommand.ts | 6 +- .../src/commands/GetDeviceProfileCommand.ts | 6 +- ...ventConfigurationByResourceTypesCommand.ts | 6 +- .../src/commands/GetFuotaTaskCommand.ts | 6 +- .../GetLogLevelsByResourceTypesCommand.ts | 6 +- .../commands/GetMetricConfigurationCommand.ts | 6 +- .../src/commands/GetMetricsCommand.ts | 6 +- .../src/commands/GetMulticastGroupCommand.ts | 6 +- .../GetMulticastGroupSessionCommand.ts | 6 +- .../GetNetworkAnalyzerConfigurationCommand.ts | 9 +- .../src/commands/GetPartnerAccountCommand.ts | 6 +- .../src/commands/GetPositionCommand.ts | 6 +- .../GetPositionConfigurationCommand.ts | 6 +- .../commands/GetPositionEstimateCommand.ts | 6 +- .../GetResourceEventConfigurationCommand.ts | 6 +- .../commands/GetResourceLogLevelCommand.ts | 6 +- .../commands/GetResourcePositionCommand.ts | 6 +- .../src/commands/GetServiceEndpointCommand.ts | 6 +- .../src/commands/GetServiceProfileCommand.ts | 6 +- .../src/commands/GetWirelessDeviceCommand.ts | 6 +- .../GetWirelessDeviceImportTaskCommand.ts | 6 +- .../GetWirelessDeviceStatisticsCommand.ts | 6 +- .../GetWirelessGatewayCertificateCommand.ts | 6 +- .../src/commands/GetWirelessGatewayCommand.ts | 6 +- ...relessGatewayFirmwareInformationCommand.ts | 6 +- .../GetWirelessGatewayStatisticsCommand.ts | 6 +- .../commands/GetWirelessGatewayTaskCommand.ts | 6 +- ...GetWirelessGatewayTaskDefinitionCommand.ts | 9 +- .../src/commands/ListDestinationsCommand.ts | 6 +- .../src/commands/ListDeviceProfilesCommand.ts | 6 +- ...vicesForWirelessDeviceImportTaskCommand.ts | 6 +- .../ListEventConfigurationsCommand.ts | 6 +- .../src/commands/ListFuotaTasksCommand.ts | 6 +- .../ListMulticastGroupsByFuotaTaskCommand.ts | 6 +- .../commands/ListMulticastGroupsCommand.ts | 6 +- ...istNetworkAnalyzerConfigurationsCommand.ts | 6 +- .../commands/ListPartnerAccountsCommand.ts | 6 +- .../ListPositionConfigurationsCommand.ts | 6 +- .../src/commands/ListQueuedMessagesCommand.ts | 6 +- .../commands/ListServiceProfilesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListWirelessDeviceImportTasksCommand.ts | 6 +- .../commands/ListWirelessDevicesCommand.ts | 6 +- ...stWirelessGatewayTaskDefinitionsCommand.ts | 6 +- .../commands/ListWirelessGatewaysCommand.ts | 6 +- .../PutPositionConfigurationCommand.ts | 6 +- .../commands/PutResourceLogLevelCommand.ts | 6 +- .../ResetAllResourceLogLevelsCommand.ts | 6 +- .../commands/ResetResourceLogLevelCommand.ts | 6 +- .../SendDataToMulticastGroupCommand.ts | 6 +- .../SendDataToWirelessDeviceCommand.ts | 6 +- ...WirelessDeviceWithMulticastGroupCommand.ts | 8 +- ...WirelessDeviceFromMulticastGroupCommand.ts | 6 +- .../src/commands/StartFuotaTaskCommand.ts | 6 +- .../StartMulticastGroupSessionCommand.ts | 6 +- ...rtSingleWirelessDeviceImportTaskCommand.ts | 6 +- .../StartWirelessDeviceImportTaskCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TestWirelessDeviceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDestinationCommand.ts | 6 +- ...ventConfigurationByResourceTypesCommand.ts | 6 +- .../src/commands/UpdateFuotaTaskCommand.ts | 6 +- .../UpdateLogLevelsByResourceTypesCommand.ts | 6 +- .../UpdateMetricConfigurationCommand.ts | 6 +- .../commands/UpdateMulticastGroupCommand.ts | 6 +- ...dateNetworkAnalyzerConfigurationCommand.ts | 6 +- .../commands/UpdatePartnerAccountCommand.ts | 6 +- .../src/commands/UpdatePositionCommand.ts | 6 +- ...UpdateResourceEventConfigurationCommand.ts | 9 +- .../commands/UpdateResourcePositionCommand.ts | 6 +- .../commands/UpdateWirelessDeviceCommand.ts | 6 +- .../UpdateWirelessDeviceImportTaskCommand.ts | 6 +- .../commands/UpdateWirelessGatewayCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/IoTWirelessServiceException.ts | 2 +- .../client-iot-wireless/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListDestinationsPaginator.ts | 2 +- .../pagination/ListDeviceProfilesPaginator.ts | 2 +- .../src/pagination/ListFuotaTasksPaginator.ts | 2 +- ...ListMulticastGroupsByFuotaTaskPaginator.ts | 2 +- .../ListMulticastGroupsPaginator.ts | 2 +- ...tNetworkAnalyzerConfigurationsPaginator.ts | 2 +- .../ListPositionConfigurationsPaginator.ts | 2 +- .../pagination/ListQueuedMessagesPaginator.ts | 2 +- .../ListServiceProfilesPaginator.ts | 2 +- .../ListWirelessDevicesPaginator.ts | 2 +- .../ListWirelessGatewaysPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-iot-wireless/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iot/package.json | 12 +- clients/client-iot/src/IoT.ts | 4 +- clients/client-iot/src/IoTClient.ts | 62 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptCertificateTransferCommand.ts | 6 +- .../commands/AddThingToBillingGroupCommand.ts | 6 +- .../commands/AddThingToThingGroupCommand.ts | 6 +- .../AssociateSbomWithPackageVersionCommand.ts | 9 +- .../AssociateTargetsWithJobCommand.ts | 6 +- .../src/commands/AttachPolicyCommand.ts | 6 +- .../commands/AttachPrincipalPolicyCommand.ts | 6 +- .../commands/AttachSecurityProfileCommand.ts | 6 +- .../commands/AttachThingPrincipalCommand.ts | 6 +- ...CancelAuditMitigationActionsTaskCommand.ts | 9 +- .../src/commands/CancelAuditTaskCommand.ts | 6 +- .../CancelCertificateTransferCommand.ts | 6 +- ...ancelDetectMitigationActionsTaskCommand.ts | 6 +- .../src/commands/CancelJobCommand.ts | 6 +- .../src/commands/CancelJobExecutionCommand.ts | 6 +- .../commands/ClearDefaultAuthorizerCommand.ts | 6 +- .../ConfirmTopicRuleDestinationCommand.ts | 6 +- .../commands/CreateAuditSuppressionCommand.ts | 6 +- .../src/commands/CreateAuthorizerCommand.ts | 6 +- .../src/commands/CreateBillingGroupCommand.ts | 6 +- .../CreateCertificateFromCsrCommand.ts | 6 +- .../CreateCertificateProviderCommand.ts | 6 +- .../src/commands/CreateCommandCommand.ts | 6 +- .../src/commands/CreateCustomMetricCommand.ts | 6 +- .../src/commands/CreateDimensionCommand.ts | 6 +- .../CreateDomainConfigurationCommand.ts | 6 +- .../CreateDynamicThingGroupCommand.ts | 6 +- .../src/commands/CreateFleetMetricCommand.ts | 6 +- .../src/commands/CreateJobCommand.ts | 6 +- .../src/commands/CreateJobTemplateCommand.ts | 6 +- .../CreateKeysAndCertificateCommand.ts | 6 +- .../commands/CreateMitigationActionCommand.ts | 6 +- .../src/commands/CreateOTAUpdateCommand.ts | 6 +- .../src/commands/CreatePackageCommand.ts | 6 +- .../commands/CreatePackageVersionCommand.ts | 6 +- .../src/commands/CreatePolicyCommand.ts | 6 +- .../commands/CreatePolicyVersionCommand.ts | 6 +- .../CreateProvisioningClaimCommand.ts | 6 +- .../CreateProvisioningTemplateCommand.ts | 6 +- ...reateProvisioningTemplateVersionCommand.ts | 6 +- .../src/commands/CreateRoleAliasCommand.ts | 6 +- .../commands/CreateScheduledAuditCommand.ts | 6 +- .../commands/CreateSecurityProfileCommand.ts | 6 +- .../src/commands/CreateStreamCommand.ts | 6 +- .../src/commands/CreateThingCommand.ts | 6 +- .../src/commands/CreateThingGroupCommand.ts | 6 +- .../src/commands/CreateThingTypeCommand.ts | 6 +- .../src/commands/CreateTopicRuleCommand.ts | 6 +- .../CreateTopicRuleDestinationCommand.ts | 6 +- .../DeleteAccountAuditConfigurationCommand.ts | 9 +- .../commands/DeleteAuditSuppressionCommand.ts | 6 +- .../src/commands/DeleteAuthorizerCommand.ts | 6 +- .../src/commands/DeleteBillingGroupCommand.ts | 6 +- .../commands/DeleteCACertificateCommand.ts | 6 +- .../src/commands/DeleteCertificateCommand.ts | 6 +- .../DeleteCertificateProviderCommand.ts | 6 +- .../src/commands/DeleteCommandCommand.ts | 6 +- .../commands/DeleteCommandExecutionCommand.ts | 6 +- .../src/commands/DeleteCustomMetricCommand.ts | 6 +- .../src/commands/DeleteDimensionCommand.ts | 6 +- .../DeleteDomainConfigurationCommand.ts | 6 +- .../DeleteDynamicThingGroupCommand.ts | 6 +- .../src/commands/DeleteFleetMetricCommand.ts | 6 +- .../src/commands/DeleteJobCommand.ts | 6 +- .../src/commands/DeleteJobExecutionCommand.ts | 6 +- .../src/commands/DeleteJobTemplateCommand.ts | 6 +- .../commands/DeleteMitigationActionCommand.ts | 6 +- .../src/commands/DeleteOTAUpdateCommand.ts | 6 +- .../src/commands/DeletePackageCommand.ts | 6 +- .../commands/DeletePackageVersionCommand.ts | 6 +- .../src/commands/DeletePolicyCommand.ts | 6 +- .../commands/DeletePolicyVersionCommand.ts | 6 +- .../DeleteProvisioningTemplateCommand.ts | 6 +- ...eleteProvisioningTemplateVersionCommand.ts | 6 +- .../commands/DeleteRegistrationCodeCommand.ts | 6 +- .../src/commands/DeleteRoleAliasCommand.ts | 6 +- .../commands/DeleteScheduledAuditCommand.ts | 6 +- .../commands/DeleteSecurityProfileCommand.ts | 6 +- .../src/commands/DeleteStreamCommand.ts | 6 +- .../src/commands/DeleteThingCommand.ts | 6 +- .../src/commands/DeleteThingGroupCommand.ts | 6 +- .../src/commands/DeleteThingTypeCommand.ts | 6 +- .../src/commands/DeleteTopicRuleCommand.ts | 6 +- .../DeleteTopicRuleDestinationCommand.ts | 6 +- .../commands/DeleteV2LoggingLevelCommand.ts | 6 +- .../src/commands/DeprecateThingTypeCommand.ts | 6 +- ...escribeAccountAuditConfigurationCommand.ts | 6 +- .../commands/DescribeAuditFindingCommand.ts | 6 +- ...scribeAuditMitigationActionsTaskCommand.ts | 8 +- .../DescribeAuditSuppressionCommand.ts | 6 +- .../src/commands/DescribeAuditTaskCommand.ts | 6 +- .../src/commands/DescribeAuthorizerCommand.ts | 6 +- .../commands/DescribeBillingGroupCommand.ts | 6 +- .../commands/DescribeCACertificateCommand.ts | 6 +- .../commands/DescribeCertificateCommand.ts | 6 +- .../DescribeCertificateProviderCommand.ts | 6 +- .../commands/DescribeCustomMetricCommand.ts | 6 +- .../DescribeDefaultAuthorizerCommand.ts | 6 +- ...cribeDetectMitigationActionsTaskCommand.ts | 6 +- .../src/commands/DescribeDimensionCommand.ts | 6 +- .../DescribeDomainConfigurationCommand.ts | 6 +- .../DescribeEncryptionConfigurationCommand.ts | 9 +- .../src/commands/DescribeEndpointCommand.ts | 6 +- .../DescribeEventConfigurationsCommand.ts | 6 +- .../commands/DescribeFleetMetricCommand.ts | 6 +- .../src/commands/DescribeIndexCommand.ts | 6 +- .../src/commands/DescribeJobCommand.ts | 6 +- .../commands/DescribeJobExecutionCommand.ts | 6 +- .../commands/DescribeJobTemplateCommand.ts | 6 +- .../DescribeManagedJobTemplateCommand.ts | 6 +- .../DescribeMitigationActionCommand.ts | 6 +- .../DescribeProvisioningTemplateCommand.ts | 6 +- ...cribeProvisioningTemplateVersionCommand.ts | 6 +- .../src/commands/DescribeRoleAliasCommand.ts | 6 +- .../commands/DescribeScheduledAuditCommand.ts | 6 +- .../DescribeSecurityProfileCommand.ts | 6 +- .../src/commands/DescribeStreamCommand.ts | 6 +- .../src/commands/DescribeThingCommand.ts | 6 +- .../src/commands/DescribeThingGroupCommand.ts | 6 +- .../DescribeThingRegistrationTaskCommand.ts | 6 +- .../src/commands/DescribeThingTypeCommand.ts | 6 +- .../src/commands/DetachPolicyCommand.ts | 6 +- .../commands/DetachPrincipalPolicyCommand.ts | 6 +- .../commands/DetachSecurityProfileCommand.ts | 6 +- .../commands/DetachThingPrincipalCommand.ts | 6 +- .../src/commands/DisableTopicRuleCommand.ts | 6 +- ...sassociateSbomFromPackageVersionCommand.ts | 6 +- .../src/commands/EnableTopicRuleCommand.ts | 6 +- ...etBehaviorModelTrainingSummariesCommand.ts | 6 +- .../commands/GetBucketsAggregationCommand.ts | 6 +- .../src/commands/GetCardinalityCommand.ts | 6 +- .../src/commands/GetCommandCommand.ts | 6 +- .../commands/GetCommandExecutionCommand.ts | 6 +- .../commands/GetEffectivePoliciesCommand.ts | 6 +- .../GetIndexingConfigurationCommand.ts | 6 +- .../src/commands/GetJobDocumentCommand.ts | 6 +- .../src/commands/GetLoggingOptionsCommand.ts | 6 +- .../src/commands/GetOTAUpdateCommand.ts | 6 +- .../src/commands/GetPackageCommand.ts | 6 +- .../GetPackageConfigurationCommand.ts | 6 +- .../src/commands/GetPackageVersionCommand.ts | 6 +- .../src/commands/GetPercentilesCommand.ts | 6 +- .../src/commands/GetPolicyCommand.ts | 6 +- .../src/commands/GetPolicyVersionCommand.ts | 6 +- .../commands/GetRegistrationCodeCommand.ts | 6 +- .../src/commands/GetStatisticsCommand.ts | 6 +- .../GetThingConnectivityDataCommand.ts | 6 +- .../src/commands/GetTopicRuleCommand.ts | 6 +- .../GetTopicRuleDestinationCommand.ts | 6 +- .../commands/GetV2LoggingOptionsCommand.ts | 6 +- .../commands/ListActiveViolationsCommand.ts | 6 +- .../commands/ListAttachedPoliciesCommand.ts | 6 +- .../src/commands/ListAuditFindingsCommand.ts | 6 +- ...AuditMitigationActionsExecutionsCommand.ts | 6 +- .../ListAuditMitigationActionsTasksCommand.ts | 9 +- .../commands/ListAuditSuppressionsCommand.ts | 6 +- .../src/commands/ListAuditTasksCommand.ts | 6 +- .../src/commands/ListAuthorizersCommand.ts | 6 +- .../src/commands/ListBillingGroupsCommand.ts | 6 +- .../src/commands/ListCACertificatesCommand.ts | 6 +- .../ListCertificateProvidersCommand.ts | 6 +- .../commands/ListCertificatesByCACommand.ts | 6 +- .../src/commands/ListCertificatesCommand.ts | 6 +- .../commands/ListCommandExecutionsCommand.ts | 6 +- .../src/commands/ListCommandsCommand.ts | 6 +- .../src/commands/ListCustomMetricsCommand.ts | 6 +- ...etectMitigationActionsExecutionsCommand.ts | 6 +- ...ListDetectMitigationActionsTasksCommand.ts | 9 +- .../src/commands/ListDimensionsCommand.ts | 6 +- .../ListDomainConfigurationsCommand.ts | 6 +- .../src/commands/ListFleetMetricsCommand.ts | 6 +- .../src/commands/ListIndicesCommand.ts | 6 +- .../ListJobExecutionsForJobCommand.ts | 6 +- .../ListJobExecutionsForThingCommand.ts | 6 +- .../src/commands/ListJobTemplatesCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../ListManagedJobTemplatesCommand.ts | 6 +- .../src/commands/ListMetricValuesCommand.ts | 6 +- .../commands/ListMitigationActionsCommand.ts | 6 +- .../src/commands/ListOTAUpdatesCommand.ts | 6 +- .../ListOutgoingCertificatesCommand.ts | 6 +- .../commands/ListPackageVersionsCommand.ts | 6 +- .../src/commands/ListPackagesCommand.ts | 6 +- .../src/commands/ListPoliciesCommand.ts | 6 +- .../commands/ListPolicyPrincipalsCommand.ts | 6 +- .../src/commands/ListPolicyVersionsCommand.ts | 6 +- .../commands/ListPrincipalPoliciesCommand.ts | 6 +- .../commands/ListPrincipalThingsCommand.ts | 6 +- .../commands/ListPrincipalThingsV2Command.ts | 6 +- ...ListProvisioningTemplateVersionsCommand.ts | 9 +- .../ListProvisioningTemplatesCommand.ts | 6 +- ...tRelatedResourcesForAuditFindingCommand.ts | 6 +- .../src/commands/ListRoleAliasesCommand.ts | 6 +- .../ListSbomValidationResultsCommand.ts | 6 +- .../commands/ListScheduledAuditsCommand.ts | 6 +- .../commands/ListSecurityProfilesCommand.ts | 6 +- .../ListSecurityProfilesForTargetCommand.ts | 6 +- .../src/commands/ListStreamsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTargetsForPolicyCommand.ts | 6 +- .../ListTargetsForSecurityProfileCommand.ts | 6 +- .../src/commands/ListThingGroupsCommand.ts | 6 +- .../ListThingGroupsForThingCommand.ts | 6 +- .../commands/ListThingPrincipalsCommand.ts | 8 +- .../commands/ListThingPrincipalsV2Command.ts | 6 +- ...ListThingRegistrationTaskReportsCommand.ts | 9 +- .../ListThingRegistrationTasksCommand.ts | 6 +- .../src/commands/ListThingTypesCommand.ts | 6 +- .../src/commands/ListThingsCommand.ts | 6 +- .../ListThingsInBillingGroupCommand.ts | 6 +- .../commands/ListThingsInThingGroupCommand.ts | 6 +- .../ListTopicRuleDestinationsCommand.ts | 6 +- .../src/commands/ListTopicRulesCommand.ts | 6 +- .../commands/ListV2LoggingLevelsCommand.ts | 6 +- .../commands/ListViolationEventsCommand.ts | 6 +- .../PutVerificationStateOnViolationCommand.ts | 9 +- .../commands/RegisterCACertificateCommand.ts | 6 +- .../commands/RegisterCertificateCommand.ts | 6 +- .../RegisterCertificateWithoutCACommand.ts | 6 +- .../src/commands/RegisterThingCommand.ts | 6 +- .../RejectCertificateTransferCommand.ts | 6 +- .../RemoveThingFromBillingGroupCommand.ts | 6 +- .../RemoveThingFromThingGroupCommand.ts | 6 +- .../src/commands/ReplaceTopicRuleCommand.ts | 6 +- .../src/commands/SearchIndexCommand.ts | 6 +- .../commands/SetDefaultAuthorizerCommand.ts | 6 +- .../SetDefaultPolicyVersionCommand.ts | 6 +- .../src/commands/SetLoggingOptionsCommand.ts | 6 +- .../src/commands/SetV2LoggingLevelCommand.ts | 6 +- .../commands/SetV2LoggingOptionsCommand.ts | 6 +- .../StartAuditMitigationActionsTaskCommand.ts | 9 +- ...StartDetectMitigationActionsTaskCommand.ts | 9 +- .../commands/StartOnDemandAuditTaskCommand.ts | 6 +- .../StartThingRegistrationTaskCommand.ts | 6 +- .../StopThingRegistrationTaskCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TestAuthorizationCommand.ts | 6 +- .../commands/TestInvokeAuthorizerCommand.ts | 6 +- .../commands/TransferCertificateCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateAccountAuditConfigurationCommand.ts | 9 +- .../commands/UpdateAuditSuppressionCommand.ts | 6 +- .../src/commands/UpdateAuthorizerCommand.ts | 6 +- .../src/commands/UpdateBillingGroupCommand.ts | 6 +- .../commands/UpdateCACertificateCommand.ts | 6 +- .../src/commands/UpdateCertificateCommand.ts | 6 +- .../UpdateCertificateProviderCommand.ts | 6 +- .../src/commands/UpdateCommandCommand.ts | 6 +- .../src/commands/UpdateCustomMetricCommand.ts | 6 +- .../src/commands/UpdateDimensionCommand.ts | 6 +- .../UpdateDomainConfigurationCommand.ts | 6 +- .../UpdateDynamicThingGroupCommand.ts | 6 +- .../UpdateEncryptionConfigurationCommand.ts | 6 +- .../UpdateEventConfigurationsCommand.ts | 6 +- .../src/commands/UpdateFleetMetricCommand.ts | 6 +- .../UpdateIndexingConfigurationCommand.ts | 6 +- .../src/commands/UpdateJobCommand.ts | 6 +- .../commands/UpdateMitigationActionCommand.ts | 6 +- .../src/commands/UpdatePackageCommand.ts | 6 +- .../UpdatePackageConfigurationCommand.ts | 6 +- .../commands/UpdatePackageVersionCommand.ts | 6 +- .../UpdateProvisioningTemplateCommand.ts | 6 +- .../src/commands/UpdateRoleAliasCommand.ts | 6 +- .../commands/UpdateScheduledAuditCommand.ts | 6 +- .../commands/UpdateSecurityProfileCommand.ts | 6 +- .../src/commands/UpdateStreamCommand.ts | 6 +- .../src/commands/UpdateThingCommand.ts | 6 +- .../src/commands/UpdateThingGroupCommand.ts | 6 +- .../UpdateThingGroupsForThingCommand.ts | 6 +- .../src/commands/UpdateThingTypeCommand.ts | 6 +- .../UpdateTopicRuleDestinationCommand.ts | 6 +- ...ValidateSecurityProfileBehaviorsCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-iot/src/extensionConfiguration.ts | 8 +- .../src/models/IoTServiceException.ts | 2 +- clients/client-iot/src/models/errors.ts | 2 +- ...BehaviorModelTrainingSummariesPaginator.ts | 2 +- .../client-iot/src/pagination/Interfaces.ts | 2 +- .../ListActiveViolationsPaginator.ts | 2 +- .../ListAttachedPoliciesPaginator.ts | 2 +- .../pagination/ListAuditFindingsPaginator.ts | 2 +- ...ditMitigationActionsExecutionsPaginator.ts | 2 +- ...istAuditMitigationActionsTasksPaginator.ts | 2 +- .../ListAuditSuppressionsPaginator.ts | 2 +- .../src/pagination/ListAuditTasksPaginator.ts | 2 +- .../pagination/ListAuthorizersPaginator.ts | 2 +- .../pagination/ListBillingGroupsPaginator.ts | 2 +- .../pagination/ListCACertificatesPaginator.ts | 2 +- .../ListCertificatesByCAPaginator.ts | 2 +- .../pagination/ListCertificatesPaginator.ts | 2 +- .../ListCommandExecutionsPaginator.ts | 2 +- .../src/pagination/ListCommandsPaginator.ts | 2 +- .../pagination/ListCustomMetricsPaginator.ts | 2 +- ...ectMitigationActionsExecutionsPaginator.ts | 2 +- ...stDetectMitigationActionsTasksPaginator.ts | 2 +- .../src/pagination/ListDimensionsPaginator.ts | 2 +- .../ListDomainConfigurationsPaginator.ts | 2 +- .../pagination/ListFleetMetricsPaginator.ts | 2 +- .../src/pagination/ListIndicesPaginator.ts | 2 +- .../ListJobExecutionsForJobPaginator.ts | 2 +- .../ListJobExecutionsForThingPaginator.ts | 2 +- .../pagination/ListJobTemplatesPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../ListManagedJobTemplatesPaginator.ts | 2 +- .../pagination/ListMetricValuesPaginator.ts | 2 +- .../ListMitigationActionsPaginator.ts | 2 +- .../src/pagination/ListOTAUpdatesPaginator.ts | 2 +- .../ListOutgoingCertificatesPaginator.ts | 2 +- .../ListPackageVersionsPaginator.ts | 2 +- .../src/pagination/ListPackagesPaginator.ts | 2 +- .../src/pagination/ListPoliciesPaginator.ts | 2 +- .../ListPolicyPrincipalsPaginator.ts | 2 +- .../ListPrincipalPoliciesPaginator.ts | 2 +- .../ListPrincipalThingsPaginator.ts | 2 +- .../ListPrincipalThingsV2Paginator.ts | 2 +- ...stProvisioningTemplateVersionsPaginator.ts | 2 +- .../ListProvisioningTemplatesPaginator.ts | 2 +- ...elatedResourcesForAuditFindingPaginator.ts | 2 +- .../pagination/ListRoleAliasesPaginator.ts | 2 +- .../ListSbomValidationResultsPaginator.ts | 2 +- .../ListScheduledAuditsPaginator.ts | 2 +- .../ListSecurityProfilesForTargetPaginator.ts | 2 +- .../ListSecurityProfilesPaginator.ts | 2 +- .../src/pagination/ListStreamsPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../ListTargetsForPolicyPaginator.ts | 2 +- .../ListTargetsForSecurityProfilePaginator.ts | 2 +- .../ListThingGroupsForThingPaginator.ts | 2 +- .../pagination/ListThingGroupsPaginator.ts | 2 +- .../ListThingPrincipalsPaginator.ts | 2 +- .../ListThingPrincipalsV2Paginator.ts | 2 +- ...stThingRegistrationTaskReportsPaginator.ts | 2 +- .../ListThingRegistrationTasksPaginator.ts | 2 +- .../src/pagination/ListThingTypesPaginator.ts | 2 +- .../ListThingsInBillingGroupPaginator.ts | 2 +- .../ListThingsInThingGroupPaginator.ts | 2 +- .../src/pagination/ListThingsPaginator.ts | 2 +- .../ListTopicRuleDestinationsPaginator.ts | 2 +- .../src/pagination/ListTopicRulesPaginator.ts | 2 +- .../ListV2LoggingLevelsPaginator.ts | 2 +- .../ListViolationEventsPaginator.ts | 2 +- .../client-iot/src/runtimeConfig.browser.ts | 7 +- .../client-iot/src/runtimeConfig.native.ts | 2 +- .../client-iot/src/runtimeConfig.shared.ts | 4 +- clients/client-iot/src/runtimeConfig.ts | 8 +- clients/client-iot/src/runtimeExtensions.ts | 2 +- clients/client-iot/src/schemas/schemas_0.ts | 2 +- clients/client-iotanalytics/package.json | 12 +- .../client-iotanalytics/src/IoTAnalytics.ts | 4 +- .../src/IoTAnalyticsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchPutMessageCommand.ts | 6 +- .../CancelPipelineReprocessingCommand.ts | 6 +- .../src/commands/CreateChannelCommand.ts | 6 +- .../src/commands/CreateDatasetCommand.ts | 6 +- .../commands/CreateDatasetContentCommand.ts | 6 +- .../src/commands/CreateDatastoreCommand.ts | 6 +- .../src/commands/CreatePipelineCommand.ts | 6 +- .../src/commands/DeleteChannelCommand.ts | 6 +- .../src/commands/DeleteDatasetCommand.ts | 6 +- .../commands/DeleteDatasetContentCommand.ts | 6 +- .../src/commands/DeleteDatastoreCommand.ts | 6 +- .../src/commands/DeletePipelineCommand.ts | 6 +- .../src/commands/DescribeChannelCommand.ts | 6 +- .../src/commands/DescribeDatasetCommand.ts | 6 +- .../src/commands/DescribeDatastoreCommand.ts | 6 +- .../commands/DescribeLoggingOptionsCommand.ts | 6 +- .../src/commands/DescribePipelineCommand.ts | 6 +- .../src/commands/GetDatasetContentCommand.ts | 6 +- .../src/commands/ListChannelsCommand.ts | 6 +- .../commands/ListDatasetContentsCommand.ts | 6 +- .../src/commands/ListDatasetsCommand.ts | 6 +- .../src/commands/ListDatastoresCommand.ts | 6 +- .../src/commands/ListPipelinesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutLoggingOptionsCommand.ts | 6 +- .../commands/RunPipelineActivityCommand.ts | 6 +- .../src/commands/SampleChannelDataCommand.ts | 6 +- .../StartPipelineReprocessingCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateChannelCommand.ts | 6 +- .../src/commands/UpdateDatasetCommand.ts | 6 +- .../src/commands/UpdateDatastoreCommand.ts | 6 +- .../src/commands/UpdatePipelineCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/IoTAnalyticsServiceException.ts | 2 +- .../client-iotanalytics/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- .../ListDatasetContentsPaginator.ts | 2 +- .../src/pagination/ListDatasetsPaginator.ts | 2 +- .../src/pagination/ListDatastoresPaginator.ts | 2 +- .../src/pagination/ListPipelinesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-iotanalytics/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iotdeviceadvisor/package.json | 12 +- .../src/IotDeviceAdvisor.ts | 4 +- .../src/IotDeviceAdvisorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateSuiteDefinitionCommand.ts | 10 +- .../commands/DeleteSuiteDefinitionCommand.ts | 10 +- .../src/commands/GetEndpointCommand.ts | 10 +- .../src/commands/GetSuiteDefinitionCommand.ts | 10 +- .../src/commands/GetSuiteRunCommand.ts | 10 +- .../src/commands/GetSuiteRunReportCommand.ts | 10 +- .../commands/ListSuiteDefinitionsCommand.ts | 10 +- .../src/commands/ListSuiteRunsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/StartSuiteRunCommand.ts | 10 +- .../src/commands/StopSuiteRunCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdateSuiteDefinitionCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../IotDeviceAdvisorServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListSuiteDefinitionsPaginator.ts | 2 +- .../src/pagination/ListSuiteRunsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iotfleetwise/package.json | 12 +- .../client-iotfleetwise/src/IoTFleetWise.ts | 4 +- .../src/IoTFleetWiseClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateVehicleFleetCommand.ts | 6 +- .../src/commands/BatchCreateVehicleCommand.ts | 6 +- .../src/commands/BatchUpdateVehicleCommand.ts | 6 +- .../src/commands/CreateCampaignCommand.ts | 6 +- .../commands/CreateDecoderManifestCommand.ts | 6 +- .../src/commands/CreateFleetCommand.ts | 6 +- .../commands/CreateModelManifestCommand.ts | 6 +- .../commands/CreateSignalCatalogCommand.ts | 6 +- .../commands/CreateStateTemplateCommand.ts | 6 +- .../src/commands/CreateVehicleCommand.ts | 6 +- .../src/commands/DeleteCampaignCommand.ts | 6 +- .../commands/DeleteDecoderManifestCommand.ts | 6 +- .../src/commands/DeleteFleetCommand.ts | 6 +- .../commands/DeleteModelManifestCommand.ts | 6 +- .../commands/DeleteSignalCatalogCommand.ts | 6 +- .../commands/DeleteStateTemplateCommand.ts | 6 +- .../src/commands/DeleteVehicleCommand.ts | 6 +- .../DisassociateVehicleFleetCommand.ts | 6 +- .../src/commands/GetCampaignCommand.ts | 6 +- .../src/commands/GetDecoderManifestCommand.ts | 6 +- .../GetEncryptionConfigurationCommand.ts | 6 +- .../src/commands/GetFleetCommand.ts | 6 +- .../src/commands/GetLoggingOptionsCommand.ts | 6 +- .../src/commands/GetModelManifestCommand.ts | 6 +- .../GetRegisterAccountStatusCommand.ts | 6 +- .../src/commands/GetSignalCatalogCommand.ts | 6 +- .../src/commands/GetStateTemplateCommand.ts | 6 +- .../src/commands/GetVehicleCommand.ts | 6 +- .../src/commands/GetVehicleStatusCommand.ts | 6 +- .../commands/ImportDecoderManifestCommand.ts | 6 +- .../commands/ImportSignalCatalogCommand.ts | 6 +- .../src/commands/ListCampaignsCommand.ts | 6 +- ...DecoderManifestNetworkInterfacesCommand.ts | 6 +- .../ListDecoderManifestSignalsCommand.ts | 6 +- .../commands/ListDecoderManifestsCommand.ts | 6 +- .../src/commands/ListFleetsCommand.ts | 6 +- .../commands/ListFleetsForVehicleCommand.ts | 6 +- .../commands/ListModelManifestNodesCommand.ts | 6 +- .../src/commands/ListModelManifestsCommand.ts | 6 +- .../commands/ListSignalCatalogNodesCommand.ts | 6 +- .../src/commands/ListSignalCatalogsCommand.ts | 6 +- .../src/commands/ListStateTemplatesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListVehiclesCommand.ts | 6 +- .../commands/ListVehiclesInFleetCommand.ts | 6 +- .../PutEncryptionConfigurationCommand.ts | 6 +- .../src/commands/PutLoggingOptionsCommand.ts | 6 +- .../src/commands/RegisterAccountCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateCampaignCommand.ts | 6 +- .../commands/UpdateDecoderManifestCommand.ts | 6 +- .../src/commands/UpdateFleetCommand.ts | 6 +- .../commands/UpdateModelManifestCommand.ts | 6 +- .../commands/UpdateSignalCatalogCommand.ts | 6 +- .../commands/UpdateStateTemplateCommand.ts | 6 +- .../src/commands/UpdateVehicleCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/IoTFleetWiseServiceException.ts | 2 +- .../client-iotfleetwise/src/models/errors.ts | 2 +- .../pagination/GetVehicleStatusPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListCampaignsPaginator.ts | 2 +- ...coderManifestNetworkInterfacesPaginator.ts | 2 +- .../ListDecoderManifestSignalsPaginator.ts | 2 +- .../ListDecoderManifestsPaginator.ts | 2 +- .../ListFleetsForVehiclePaginator.ts | 2 +- .../src/pagination/ListFleetsPaginator.ts | 2 +- .../ListModelManifestNodesPaginator.ts | 2 +- .../pagination/ListModelManifestsPaginator.ts | 2 +- .../ListSignalCatalogNodesPaginator.ts | 2 +- .../pagination/ListSignalCatalogsPaginator.ts | 2 +- .../pagination/ListStateTemplatesPaginator.ts | 2 +- .../ListVehiclesInFleetPaginator.ts | 2 +- .../src/pagination/ListVehiclesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-iotfleetwise/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-iotsecuretunneling/package.json | 12 +- .../src/IoTSecureTunneling.ts | 4 +- .../src/IoTSecureTunnelingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/CloseTunnelCommand.ts | 6 +- .../src/commands/DescribeTunnelCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTunnelsCommand.ts | 6 +- .../src/commands/OpenTunnelCommand.ts | 6 +- .../RotateTunnelAccessTokenCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../IoTSecureTunnelingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListTunnelsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iotsitewise/package.json | 12 +- clients/client-iotsitewise/src/IoTSiteWise.ts | 4 +- .../src/IoTSiteWiseClient.ts | 71 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateAssetsCommand.ts | 6 +- ...sociateTimeSeriesToAssetPropertyCommand.ts | 6 +- .../BatchAssociateProjectAssetsCommand.ts | 6 +- .../BatchDisassociateProjectAssetsCommand.ts | 6 +- .../BatchGetAssetPropertyAggregatesCommand.ts | 9 +- .../BatchGetAssetPropertyValueCommand.ts | 6 +- ...atchGetAssetPropertyValueHistoryCommand.ts | 6 +- .../BatchPutAssetPropertyValueCommand.ts | 6 +- .../src/commands/CreateAccessPolicyCommand.ts | 6 +- .../src/commands/CreateAssetCommand.ts | 6 +- .../src/commands/CreateAssetModelCommand.ts | 6 +- .../CreateAssetModelCompositeModelCommand.ts | 6 +- .../commands/CreateBulkImportJobCommand.ts | 6 +- .../commands/CreateComputationModelCommand.ts | 8 +- .../src/commands/CreateDashboardCommand.ts | 6 +- .../src/commands/CreateDatasetCommand.ts | 6 +- .../src/commands/CreateGatewayCommand.ts | 6 +- .../src/commands/CreatePortalCommand.ts | 6 +- .../src/commands/CreateProjectCommand.ts | 6 +- .../src/commands/DeleteAccessPolicyCommand.ts | 6 +- .../src/commands/DeleteAssetCommand.ts | 6 +- .../src/commands/DeleteAssetModelCommand.ts | 6 +- .../DeleteAssetModelCompositeModelCommand.ts | 6 +- ...eAssetModelInterfaceRelationshipCommand.ts | 6 +- .../commands/DeleteComputationModelCommand.ts | 6 +- .../src/commands/DeleteDashboardCommand.ts | 6 +- .../src/commands/DeleteDatasetCommand.ts | 6 +- .../src/commands/DeleteGatewayCommand.ts | 6 +- .../src/commands/DeletePortalCommand.ts | 6 +- .../src/commands/DeleteProjectCommand.ts | 6 +- .../src/commands/DeleteTimeSeriesCommand.ts | 6 +- .../commands/DescribeAccessPolicyCommand.ts | 6 +- .../src/commands/DescribeActionCommand.ts | 6 +- .../src/commands/DescribeAssetCommand.ts | 6 +- .../DescribeAssetCompositeModelCommand.ts | 6 +- .../src/commands/DescribeAssetModelCommand.ts | 6 +- ...DescribeAssetModelCompositeModelCommand.ts | 9 +- ...eAssetModelInterfaceRelationshipCommand.ts | 6 +- .../commands/DescribeAssetPropertyCommand.ts | 6 +- .../commands/DescribeBulkImportJobCommand.ts | 6 +- .../DescribeComputationModelCommand.ts | 8 +- ...ComputationModelExecutionSummaryCommand.ts | 6 +- .../src/commands/DescribeDashboardCommand.ts | 6 +- .../src/commands/DescribeDatasetCommand.ts | 6 +- ...beDefaultEncryptionConfigurationCommand.ts | 6 +- .../src/commands/DescribeExecutionCommand.ts | 6 +- ...beGatewayCapabilityConfigurationCommand.ts | 6 +- .../src/commands/DescribeGatewayCommand.ts | 6 +- .../commands/DescribeLoggingOptionsCommand.ts | 6 +- .../src/commands/DescribePortalCommand.ts | 6 +- .../src/commands/DescribeProjectCommand.ts | 6 +- .../DescribeStorageConfigurationCommand.ts | 6 +- .../src/commands/DescribeTimeSeriesCommand.ts | 6 +- .../src/commands/DisassociateAssetsCommand.ts | 6 +- ...ciateTimeSeriesFromAssetPropertyCommand.ts | 6 +- .../src/commands/ExecuteActionCommand.ts | 6 +- .../src/commands/ExecuteQueryCommand.ts | 8 +- .../GetAssetPropertyAggregatesCommand.ts | 6 +- .../commands/GetAssetPropertyValueCommand.ts | 6 +- .../GetAssetPropertyValueHistoryCommand.ts | 6 +- ...tInterpolatedAssetPropertyValuesCommand.ts | 6 +- .../src/commands/InvokeAssistantCommand.ts | 6 +- .../src/commands/ListAccessPoliciesCommand.ts | 6 +- .../src/commands/ListActionsCommand.ts | 6 +- .../ListAssetModelCompositeModelsCommand.ts | 6 +- .../ListAssetModelPropertiesCommand.ts | 6 +- .../src/commands/ListAssetModelsCommand.ts | 6 +- .../commands/ListAssetPropertiesCommand.ts | 6 +- .../commands/ListAssetRelationshipsCommand.ts | 6 +- .../src/commands/ListAssetsCommand.ts | 6 +- .../commands/ListAssociatedAssetsCommand.ts | 6 +- .../src/commands/ListBulkImportJobsCommand.ts | 6 +- .../ListCompositionRelationshipsCommand.ts | 6 +- ...omputationModelDataBindingUsagesCommand.ts | 6 +- ...mputationModelResolveToResourcesCommand.ts | 6 +- .../commands/ListComputationModelsCommand.ts | 6 +- .../src/commands/ListDashboardsCommand.ts | 6 +- .../src/commands/ListDatasetsCommand.ts | 6 +- .../src/commands/ListExecutionsCommand.ts | 6 +- .../src/commands/ListGatewaysCommand.ts | 6 +- .../ListInterfaceRelationshipsCommand.ts | 6 +- .../src/commands/ListPortalsCommand.ts | 6 +- .../src/commands/ListProjectAssetsCommand.ts | 6 +- .../src/commands/ListProjectsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTimeSeriesCommand.ts | 6 +- ...tAssetModelInterfaceRelationshipCommand.ts | 6 +- ...utDefaultEncryptionConfigurationCommand.ts | 6 +- .../src/commands/PutLoggingOptionsCommand.ts | 6 +- .../PutStorageConfigurationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAccessPolicyCommand.ts | 6 +- .../src/commands/UpdateAssetCommand.ts | 6 +- .../src/commands/UpdateAssetModelCommand.ts | 6 +- .../UpdateAssetModelCompositeModelCommand.ts | 6 +- .../commands/UpdateAssetPropertyCommand.ts | 6 +- .../commands/UpdateComputationModelCommand.ts | 6 +- .../src/commands/UpdateDashboardCommand.ts | 6 +- .../src/commands/UpdateDatasetCommand.ts | 6 +- ...teGatewayCapabilityConfigurationCommand.ts | 6 +- .../src/commands/UpdateGatewayCommand.ts | 6 +- .../src/commands/UpdatePortalCommand.ts | 6 +- .../src/commands/UpdateProjectCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/IoTSiteWiseServiceException.ts | 2 +- .../client-iotsitewise/src/models/errors.ts | 2 +- ...atchGetAssetPropertyAggregatesPaginator.ts | 2 +- ...chGetAssetPropertyValueHistoryPaginator.ts | 2 +- .../BatchGetAssetPropertyValuePaginator.ts | 2 +- .../src/pagination/ExecuteQueryPaginator.ts | 2 +- .../GetAssetPropertyAggregatesPaginator.ts | 2 +- .../GetAssetPropertyValueHistoryPaginator.ts | 2 +- ...nterpolatedAssetPropertyValuesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAccessPoliciesPaginator.ts | 2 +- .../ListAssetModelCompositeModelsPaginator.ts | 2 +- .../ListAssetModelPropertiesPaginator.ts | 2 +- .../pagination/ListAssetModelsPaginator.ts | 2 +- .../ListAssetPropertiesPaginator.ts | 2 +- .../ListAssetRelationshipsPaginator.ts | 2 +- .../src/pagination/ListAssetsPaginator.ts | 2 +- .../ListAssociatedAssetsPaginator.ts | 2 +- .../pagination/ListBulkImportJobsPaginator.ts | 2 +- .../ListCompositionRelationshipsPaginator.ts | 2 +- ...putationModelDataBindingUsagesPaginator.ts | 2 +- ...utationModelResolveToResourcesPaginator.ts | 2 +- .../ListComputationModelsPaginator.ts | 2 +- .../src/pagination/ListDashboardsPaginator.ts | 2 +- .../src/pagination/ListDatasetsPaginator.ts | 2 +- .../src/pagination/ListExecutionsPaginator.ts | 2 +- .../src/pagination/ListGatewaysPaginator.ts | 2 +- .../ListInterfaceRelationshipsPaginator.ts | 2 +- .../src/pagination/ListPortalsPaginator.ts | 2 +- .../pagination/ListProjectAssetsPaginator.ts | 2 +- .../src/pagination/ListProjectsPaginator.ts | 2 +- .../src/pagination/ListTimeSeriesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-iotsitewise/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iotthingsgraph/package.json | 12 +- .../src/IoTThingsGraph.ts | 4 +- .../src/IoTThingsGraphClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateEntityToThingCommand.ts | 10 +- .../src/commands/CreateFlowTemplateCommand.ts | 10 +- .../commands/CreateSystemInstanceCommand.ts | 10 +- .../commands/CreateSystemTemplateCommand.ts | 10 +- .../src/commands/DeleteFlowTemplateCommand.ts | 10 +- .../src/commands/DeleteNamespaceCommand.ts | 10 +- .../commands/DeleteSystemInstanceCommand.ts | 10 +- .../commands/DeleteSystemTemplateCommand.ts | 10 +- .../commands/DeploySystemInstanceCommand.ts | 10 +- .../commands/DeprecateFlowTemplateCommand.ts | 10 +- .../DeprecateSystemTemplateCommand.ts | 10 +- .../src/commands/DescribeNamespaceCommand.ts | 10 +- .../DissociateEntityFromThingCommand.ts | 10 +- .../src/commands/GetEntitiesCommand.ts | 10 +- .../src/commands/GetFlowTemplateCommand.ts | 10 +- .../GetFlowTemplateRevisionsCommand.ts | 10 +- .../GetNamespaceDeletionStatusCommand.ts | 10 +- .../src/commands/GetSystemInstanceCommand.ts | 10 +- .../src/commands/GetSystemTemplateCommand.ts | 10 +- .../GetSystemTemplateRevisionsCommand.ts | 10 +- .../src/commands/GetUploadStatusCommand.ts | 10 +- .../ListFlowExecutionMessagesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/SearchEntitiesCommand.ts | 10 +- .../commands/SearchFlowExecutionsCommand.ts | 10 +- .../commands/SearchFlowTemplatesCommand.ts | 10 +- .../commands/SearchSystemInstancesCommand.ts | 10 +- .../commands/SearchSystemTemplatesCommand.ts | 10 +- .../src/commands/SearchThingsCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../commands/UndeploySystemInstanceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateFlowTemplateCommand.ts | 10 +- .../commands/UpdateSystemTemplateCommand.ts | 10 +- .../UploadEntityDefinitionsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/IoTThingsGraphServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetFlowTemplateRevisionsPaginator.ts | 2 +- .../GetSystemTemplateRevisionsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListFlowExecutionMessagesPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/pagination/SearchEntitiesPaginator.ts | 2 +- .../SearchFlowExecutionsPaginator.ts | 2 +- .../SearchFlowTemplatesPaginator.ts | 2 +- .../SearchSystemInstancesPaginator.ts | 2 +- .../SearchSystemTemplatesPaginator.ts | 2 +- .../src/pagination/SearchThingsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-iottwinmaker/package.json | 12 +- .../client-iottwinmaker/src/IoTTwinMaker.ts | 4 +- .../src/IoTTwinMakerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchPutPropertyValuesCommand.ts | 6 +- .../CancelMetadataTransferJobCommand.ts | 6 +- .../commands/CreateComponentTypeCommand.ts | 6 +- .../src/commands/CreateEntityCommand.ts | 6 +- .../CreateMetadataTransferJobCommand.ts | 6 +- .../src/commands/CreateSceneCommand.ts | 6 +- .../src/commands/CreateSyncJobCommand.ts | 6 +- .../src/commands/CreateWorkspaceCommand.ts | 6 +- .../commands/DeleteComponentTypeCommand.ts | 6 +- .../src/commands/DeleteEntityCommand.ts | 6 +- .../src/commands/DeleteSceneCommand.ts | 6 +- .../src/commands/DeleteSyncJobCommand.ts | 6 +- .../src/commands/DeleteWorkspaceCommand.ts | 6 +- .../src/commands/ExecuteQueryCommand.ts | 6 +- .../src/commands/GetComponentTypeCommand.ts | 6 +- .../src/commands/GetEntityCommand.ts | 6 +- .../commands/GetMetadataTransferJobCommand.ts | 6 +- .../src/commands/GetPricingPlanCommand.ts | 6 +- .../src/commands/GetPropertyValueCommand.ts | 6 +- .../GetPropertyValueHistoryCommand.ts | 6 +- .../src/commands/GetSceneCommand.ts | 6 +- .../src/commands/GetSyncJobCommand.ts | 6 +- .../src/commands/GetWorkspaceCommand.ts | 6 +- .../src/commands/ListComponentTypesCommand.ts | 6 +- .../src/commands/ListComponentsCommand.ts | 6 +- .../src/commands/ListEntitiesCommand.ts | 6 +- .../ListMetadataTransferJobsCommand.ts | 6 +- .../src/commands/ListPropertiesCommand.ts | 6 +- .../src/commands/ListScenesCommand.ts | 6 +- .../src/commands/ListSyncJobsCommand.ts | 6 +- .../src/commands/ListSyncResourcesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWorkspacesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateComponentTypeCommand.ts | 6 +- .../src/commands/UpdateEntityCommand.ts | 6 +- .../src/commands/UpdatePricingPlanCommand.ts | 6 +- .../src/commands/UpdateSceneCommand.ts | 6 +- .../src/commands/UpdateWorkspaceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/IoTTwinMakerServiceException.ts | 2 +- .../client-iottwinmaker/src/models/errors.ts | 2 +- .../src/pagination/ExecuteQueryPaginator.ts | 2 +- .../GetPropertyValueHistoryPaginator.ts | 2 +- .../pagination/GetPropertyValuePaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListComponentTypesPaginator.ts | 2 +- .../src/pagination/ListComponentsPaginator.ts | 2 +- .../src/pagination/ListEntitiesPaginator.ts | 2 +- .../ListMetadataTransferJobsPaginator.ts | 2 +- .../src/pagination/ListPropertiesPaginator.ts | 2 +- .../src/pagination/ListScenesPaginator.ts | 2 +- .../src/pagination/ListSyncJobsPaginator.ts | 2 +- .../pagination/ListSyncResourcesPaginator.ts | 2 +- .../src/pagination/ListWorkspacesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-iottwinmaker/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ivs-realtime/package.json | 12 +- .../client-ivs-realtime/src/IVSRealTime.ts | 4 +- .../src/IVSRealTimeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateEncoderConfigurationCommand.ts | 6 +- .../CreateIngestConfigurationCommand.ts | 6 +- .../commands/CreateParticipantTokenCommand.ts | 6 +- .../src/commands/CreateStageCommand.ts | 6 +- .../CreateStorageConfigurationCommand.ts | 6 +- .../DeleteEncoderConfigurationCommand.ts | 6 +- .../DeleteIngestConfigurationCommand.ts | 6 +- .../src/commands/DeletePublicKeyCommand.ts | 6 +- .../src/commands/DeleteStageCommand.ts | 6 +- .../DeleteStorageConfigurationCommand.ts | 6 +- .../commands/DisconnectParticipantCommand.ts | 6 +- .../src/commands/GetCompositionCommand.ts | 6 +- .../GetEncoderConfigurationCommand.ts | 6 +- .../commands/GetIngestConfigurationCommand.ts | 6 +- .../src/commands/GetParticipantCommand.ts | 6 +- .../src/commands/GetPublicKeyCommand.ts | 6 +- .../src/commands/GetStageCommand.ts | 6 +- .../src/commands/GetStageSessionCommand.ts | 6 +- .../GetStorageConfigurationCommand.ts | 6 +- .../src/commands/ImportPublicKeyCommand.ts | 6 +- .../src/commands/ListCompositionsCommand.ts | 6 +- .../ListEncoderConfigurationsCommand.ts | 6 +- .../ListIngestConfigurationsCommand.ts | 6 +- .../commands/ListParticipantEventsCommand.ts | 6 +- .../ListParticipantReplicasCommand.ts | 6 +- .../src/commands/ListParticipantsCommand.ts | 6 +- .../src/commands/ListPublicKeysCommand.ts | 6 +- .../src/commands/ListStageSessionsCommand.ts | 6 +- .../src/commands/ListStagesCommand.ts | 6 +- .../ListStorageConfigurationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartCompositionCommand.ts | 6 +- .../StartParticipantReplicationCommand.ts | 6 +- .../src/commands/StopCompositionCommand.ts | 6 +- .../StopParticipantReplicationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateIngestConfigurationCommand.ts | 6 +- .../src/commands/UpdateStageCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/IVSRealTimeServiceException.ts | 2 +- .../client-ivs-realtime/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListCompositionsPaginator.ts | 2 +- .../ListEncoderConfigurationsPaginator.ts | 2 +- .../ListIngestConfigurationsPaginator.ts | 2 +- .../ListParticipantEventsPaginator.ts | 2 +- .../ListParticipantReplicasPaginator.ts | 2 +- .../pagination/ListParticipantsPaginator.ts | 2 +- .../src/pagination/ListPublicKeysPaginator.ts | 2 +- .../pagination/ListStageSessionsPaginator.ts | 2 +- .../src/pagination/ListStagesPaginator.ts | 2 +- .../ListStorageConfigurationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-ivs-realtime/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ivs/package.json | 12 +- clients/client-ivs/src/Ivs.ts | 4 +- clients/client-ivs/src/IvsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchGetChannelCommand.ts | 6 +- .../src/commands/BatchGetStreamKeyCommand.ts | 6 +- ...atchStartViewerSessionRevocationCommand.ts | 6 +- .../src/commands/CreateChannelCommand.ts | 6 +- .../CreatePlaybackRestrictionPolicyCommand.ts | 9 +- .../CreateRecordingConfigurationCommand.ts | 6 +- .../src/commands/CreateStreamKeyCommand.ts | 6 +- .../src/commands/DeleteChannelCommand.ts | 6 +- .../commands/DeletePlaybackKeyPairCommand.ts | 6 +- .../DeletePlaybackRestrictionPolicyCommand.ts | 6 +- .../DeleteRecordingConfigurationCommand.ts | 6 +- .../src/commands/DeleteStreamKeyCommand.ts | 6 +- .../src/commands/GetChannelCommand.ts | 6 +- .../src/commands/GetPlaybackKeyPairCommand.ts | 6 +- .../GetPlaybackRestrictionPolicyCommand.ts | 6 +- .../GetRecordingConfigurationCommand.ts | 6 +- .../src/commands/GetStreamCommand.ts | 6 +- .../src/commands/GetStreamKeyCommand.ts | 6 +- .../src/commands/GetStreamSessionCommand.ts | 6 +- .../commands/ImportPlaybackKeyPairCommand.ts | 6 +- .../src/commands/ListChannelsCommand.ts | 6 +- .../commands/ListPlaybackKeyPairsCommand.ts | 6 +- .../ListPlaybackRestrictionPoliciesCommand.ts | 9 +- .../ListRecordingConfigurationsCommand.ts | 6 +- .../src/commands/ListStreamKeysCommand.ts | 6 +- .../src/commands/ListStreamSessionsCommand.ts | 6 +- .../src/commands/ListStreamsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutMetadataCommand.ts | 6 +- .../StartViewerSessionRevocationCommand.ts | 6 +- .../src/commands/StopStreamCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateChannelCommand.ts | 6 +- .../UpdatePlaybackRestrictionPolicyCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-ivs/src/extensionConfiguration.ts | 8 +- .../src/models/IvsServiceException.ts | 2 +- clients/client-ivs/src/models/errors.ts | 2 +- .../client-ivs/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- .../ListPlaybackKeyPairsPaginator.ts | 2 +- ...istPlaybackRestrictionPoliciesPaginator.ts | 2 +- .../ListRecordingConfigurationsPaginator.ts | 2 +- .../src/pagination/ListStreamKeysPaginator.ts | 2 +- .../pagination/ListStreamSessionsPaginator.ts | 2 +- .../src/pagination/ListStreamsPaginator.ts | 2 +- .../client-ivs/src/runtimeConfig.browser.ts | 7 +- .../client-ivs/src/runtimeConfig.native.ts | 2 +- .../client-ivs/src/runtimeConfig.shared.ts | 4 +- clients/client-ivs/src/runtimeConfig.ts | 8 +- clients/client-ivs/src/runtimeExtensions.ts | 2 +- clients/client-ivs/src/schemas/schemas_0.ts | 2 +- clients/client-ivschat/package.json | 12 +- clients/client-ivschat/src/Ivschat.ts | 4 +- clients/client-ivschat/src/IvschatClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateChatTokenCommand.ts | 6 +- .../CreateLoggingConfigurationCommand.ts | 6 +- .../src/commands/CreateRoomCommand.ts | 6 +- .../DeleteLoggingConfigurationCommand.ts | 6 +- .../src/commands/DeleteMessageCommand.ts | 6 +- .../src/commands/DeleteRoomCommand.ts | 6 +- .../src/commands/DisconnectUserCommand.ts | 6 +- .../GetLoggingConfigurationCommand.ts | 6 +- .../src/commands/GetRoomCommand.ts | 6 +- .../ListLoggingConfigurationsCommand.ts | 6 +- .../src/commands/ListRoomsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/SendEventCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateLoggingConfigurationCommand.ts | 6 +- .../src/commands/UpdateRoomCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/IvschatServiceException.ts | 2 +- clients/client-ivschat/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListLoggingConfigurationsPaginator.ts | 2 +- .../src/pagination/ListRoomsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-ivschat/src/runtimeConfig.ts | 8 +- .../client-ivschat/src/runtimeExtensions.ts | 2 +- .../client-ivschat/src/schemas/schemas_0.ts | 2 +- clients/client-kafka/package.json | 12 +- clients/client-kafka/src/Kafka.ts | 4 +- clients/client-kafka/src/KafkaClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchAssociateScramSecretCommand.ts | 6 +- .../BatchDisassociateScramSecretCommand.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../src/commands/CreateClusterV2Command.ts | 6 +- .../commands/CreateConfigurationCommand.ts | 6 +- .../src/commands/CreateReplicatorCommand.ts | 6 +- .../commands/CreateVpcConnectionCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../commands/DeleteClusterPolicyCommand.ts | 6 +- .../commands/DeleteConfigurationCommand.ts | 6 +- .../src/commands/DeleteReplicatorCommand.ts | 6 +- .../commands/DeleteVpcConnectionCommand.ts | 6 +- .../src/commands/DescribeClusterCommand.ts | 6 +- .../DescribeClusterOperationCommand.ts | 6 +- .../DescribeClusterOperationV2Command.ts | 6 +- .../src/commands/DescribeClusterV2Command.ts | 6 +- .../commands/DescribeConfigurationCommand.ts | 6 +- .../DescribeConfigurationRevisionCommand.ts | 6 +- .../src/commands/DescribeReplicatorCommand.ts | 6 +- .../src/commands/DescribeTopicCommand.ts | 6 +- .../DescribeTopicPartitionsCommand.ts | 6 +- .../commands/DescribeVpcConnectionCommand.ts | 6 +- .../commands/GetBootstrapBrokersCommand.ts | 6 +- .../src/commands/GetClusterPolicyCommand.ts | 6 +- .../GetCompatibleKafkaVersionsCommand.ts | 6 +- .../ListClientVpcConnectionsCommand.ts | 6 +- .../commands/ListClusterOperationsCommand.ts | 6 +- .../ListClusterOperationsV2Command.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../src/commands/ListClustersV2Command.ts | 6 +- .../ListConfigurationRevisionsCommand.ts | 6 +- .../src/commands/ListConfigurationsCommand.ts | 6 +- .../src/commands/ListKafkaVersionsCommand.ts | 6 +- .../src/commands/ListNodesCommand.ts | 6 +- .../src/commands/ListReplicatorsCommand.ts | 6 +- .../src/commands/ListScramSecretsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTopicsCommand.ts | 6 +- .../src/commands/ListVpcConnectionsCommand.ts | 6 +- .../src/commands/PutClusterPolicyCommand.ts | 6 +- .../src/commands/RebootBrokerCommand.ts | 6 +- .../RejectClientVpcConnectionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBrokerCountCommand.ts | 6 +- .../commands/UpdateBrokerStorageCommand.ts | 6 +- .../src/commands/UpdateBrokerTypeCommand.ts | 6 +- .../UpdateClusterConfigurationCommand.ts | 6 +- .../UpdateClusterKafkaVersionCommand.ts | 6 +- .../commands/UpdateConfigurationCommand.ts | 6 +- .../src/commands/UpdateConnectivityCommand.ts | 6 +- .../src/commands/UpdateMonitoringCommand.ts | 6 +- .../src/commands/UpdateRebalancingCommand.ts | 6 +- .../commands/UpdateReplicationInfoCommand.ts | 6 +- .../src/commands/UpdateSecurityCommand.ts | 6 +- .../src/commands/UpdateStorageCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/KafkaServiceException.ts | 2 +- clients/client-kafka/src/models/errors.ts | 2 +- .../DescribeTopicPartitionsPaginator.ts | 2 +- .../client-kafka/src/pagination/Interfaces.ts | 2 +- .../ListClientVpcConnectionsPaginator.ts | 2 +- .../ListClusterOperationsPaginator.ts | 2 +- .../ListClusterOperationsV2Paginator.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../src/pagination/ListClustersV2Paginator.ts | 2 +- .../ListConfigurationRevisionsPaginator.ts | 2 +- .../pagination/ListConfigurationsPaginator.ts | 2 +- .../pagination/ListKafkaVersionsPaginator.ts | 2 +- .../src/pagination/ListNodesPaginator.ts | 2 +- .../pagination/ListReplicatorsPaginator.ts | 2 +- .../pagination/ListScramSecretsPaginator.ts | 2 +- .../src/pagination/ListTopicsPaginator.ts | 2 +- .../pagination/ListVpcConnectionsPaginator.ts | 2 +- .../client-kafka/src/runtimeConfig.browser.ts | 7 +- .../client-kafka/src/runtimeConfig.native.ts | 2 +- .../client-kafka/src/runtimeConfig.shared.ts | 4 +- clients/client-kafka/src/runtimeConfig.ts | 8 +- clients/client-kafka/src/runtimeExtensions.ts | 2 +- clients/client-kafka/src/schemas/schemas_0.ts | 2 +- clients/client-kafkaconnect/package.json | 12 +- .../client-kafkaconnect/src/KafkaConnect.ts | 4 +- .../src/KafkaConnectClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateConnectorCommand.ts | 6 +- .../src/commands/CreateCustomPluginCommand.ts | 6 +- .../CreateWorkerConfigurationCommand.ts | 6 +- .../src/commands/DeleteConnectorCommand.ts | 6 +- .../src/commands/DeleteCustomPluginCommand.ts | 6 +- .../DeleteWorkerConfigurationCommand.ts | 6 +- .../src/commands/DescribeConnectorCommand.ts | 6 +- .../DescribeConnectorOperationCommand.ts | 6 +- .../commands/DescribeCustomPluginCommand.ts | 6 +- .../DescribeWorkerConfigurationCommand.ts | 6 +- .../ListConnectorOperationsCommand.ts | 6 +- .../src/commands/ListConnectorsCommand.ts | 6 +- .../src/commands/ListCustomPluginsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListWorkerConfigurationsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateConnectorCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/KafkaConnectServiceException.ts | 2 +- .../client-kafkaconnect/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListConnectorOperationsPaginator.ts | 2 +- .../src/pagination/ListConnectorsPaginator.ts | 2 +- .../pagination/ListCustomPluginsPaginator.ts | 2 +- .../ListWorkerConfigurationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-kafkaconnect/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-kendra-ranking/package.json | 12 +- .../src/KendraRanking.ts | 4 +- .../src/KendraRankingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateRescoreExecutionPlanCommand.ts | 6 +- .../DeleteRescoreExecutionPlanCommand.ts | 6 +- .../DescribeRescoreExecutionPlanCommand.ts | 6 +- .../ListRescoreExecutionPlansCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RescoreCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateRescoreExecutionPlanCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/KendraRankingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListRescoreExecutionPlansPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-kendra/package.json | 12 +- clients/client-kendra/src/Kendra.ts | 4 +- clients/client-kendra/src/KendraClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateEntitiesToExperienceCommand.ts | 6 +- .../AssociatePersonasToEntitiesCommand.ts | 6 +- .../commands/BatchDeleteDocumentCommand.ts | 6 +- .../BatchDeleteFeaturedResultsSetCommand.ts | 6 +- .../commands/BatchGetDocumentStatusCommand.ts | 6 +- .../src/commands/BatchPutDocumentCommand.ts | 6 +- .../commands/ClearQuerySuggestionsCommand.ts | 6 +- ...CreateAccessControlConfigurationCommand.ts | 9 +- .../src/commands/CreateDataSourceCommand.ts | 6 +- .../src/commands/CreateExperienceCommand.ts | 6 +- .../src/commands/CreateFaqCommand.ts | 6 +- .../CreateFeaturedResultsSetCommand.ts | 6 +- .../src/commands/CreateIndexCommand.ts | 6 +- .../CreateQuerySuggestionsBlockListCommand.ts | 9 +- .../src/commands/CreateThesaurusCommand.ts | 6 +- ...DeleteAccessControlConfigurationCommand.ts | 9 +- .../src/commands/DeleteDataSourceCommand.ts | 6 +- .../src/commands/DeleteExperienceCommand.ts | 6 +- .../src/commands/DeleteFaqCommand.ts | 6 +- .../src/commands/DeleteIndexCommand.ts | 6 +- .../commands/DeletePrincipalMappingCommand.ts | 6 +- .../DeleteQuerySuggestionsBlockListCommand.ts | 6 +- .../src/commands/DeleteThesaurusCommand.ts | 6 +- ...scribeAccessControlConfigurationCommand.ts | 6 +- .../src/commands/DescribeDataSourceCommand.ts | 6 +- .../src/commands/DescribeExperienceCommand.ts | 6 +- .../src/commands/DescribeFaqCommand.ts | 6 +- .../DescribeFeaturedResultsSetCommand.ts | 6 +- .../src/commands/DescribeIndexCommand.ts | 6 +- .../DescribePrincipalMappingCommand.ts | 6 +- ...escribeQuerySuggestionsBlockListCommand.ts | 6 +- .../DescribeQuerySuggestionsConfigCommand.ts | 6 +- .../src/commands/DescribeThesaurusCommand.ts | 6 +- ...sassociateEntitiesFromExperienceCommand.ts | 6 +- ...DisassociatePersonasFromEntitiesCommand.ts | 9 +- .../commands/GetQuerySuggestionsCommand.ts | 6 +- .../src/commands/GetSnapshotsCommand.ts | 6 +- .../ListAccessControlConfigurationsCommand.ts | 9 +- .../commands/ListDataSourceSyncJobsCommand.ts | 6 +- .../src/commands/ListDataSourcesCommand.ts | 6 +- .../src/commands/ListEntityPersonasCommand.ts | 6 +- .../commands/ListExperienceEntitiesCommand.ts | 6 +- .../src/commands/ListExperiencesCommand.ts | 6 +- .../src/commands/ListFaqsCommand.ts | 6 +- .../ListFeaturedResultsSetsCommand.ts | 6 +- .../ListGroupsOlderThanOrderingIdCommand.ts | 6 +- .../src/commands/ListIndicesCommand.ts | 6 +- .../ListQuerySuggestionsBlockListsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListThesauriCommand.ts | 6 +- .../commands/PutPrincipalMappingCommand.ts | 6 +- .../src/commands/QueryCommand.ts | 6 +- .../src/commands/RetrieveCommand.ts | 6 +- .../commands/StartDataSourceSyncJobCommand.ts | 6 +- .../commands/StopDataSourceSyncJobCommand.ts | 6 +- .../src/commands/SubmitFeedbackCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...UpdateAccessControlConfigurationCommand.ts | 9 +- .../src/commands/UpdateDataSourceCommand.ts | 6 +- .../src/commands/UpdateExperienceCommand.ts | 6 +- .../UpdateFeaturedResultsSetCommand.ts | 6 +- .../src/commands/UpdateIndexCommand.ts | 6 +- .../UpdateQuerySuggestionsBlockListCommand.ts | 6 +- .../UpdateQuerySuggestionsConfigCommand.ts | 6 +- .../src/commands/UpdateThesaurusCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/KendraServiceException.ts | 2 +- clients/client-kendra/src/models/errors.ts | 2 +- .../src/pagination/GetSnapshotsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...istAccessControlConfigurationsPaginator.ts | 2 +- .../ListDataSourceSyncJobsPaginator.ts | 2 +- .../pagination/ListDataSourcesPaginator.ts | 2 +- .../pagination/ListEntityPersonasPaginator.ts | 2 +- .../ListExperienceEntitiesPaginator.ts | 2 +- .../pagination/ListExperiencesPaginator.ts | 2 +- .../src/pagination/ListFaqsPaginator.ts | 2 +- .../ListGroupsOlderThanOrderingIdPaginator.ts | 2 +- .../src/pagination/ListIndicesPaginator.ts | 2 +- ...ListQuerySuggestionsBlockListsPaginator.ts | 2 +- .../src/pagination/ListThesauriPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-kendra/src/runtimeConfig.native.ts | 2 +- .../client-kendra/src/runtimeConfig.shared.ts | 4 +- clients/client-kendra/src/runtimeConfig.ts | 8 +- .../client-kendra/src/runtimeExtensions.ts | 2 +- .../client-kendra/src/schemas/schemas_0.ts | 2 +- clients/client-keyspaces/package.json | 12 +- clients/client-keyspaces/src/Keyspaces.ts | 4 +- .../client-keyspaces/src/KeyspacesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateKeyspaceCommand.ts | 6 +- .../src/commands/CreateTableCommand.ts | 6 +- .../src/commands/CreateTypeCommand.ts | 6 +- .../src/commands/DeleteKeyspaceCommand.ts | 6 +- .../src/commands/DeleteTableCommand.ts | 6 +- .../src/commands/DeleteTypeCommand.ts | 6 +- .../src/commands/GetKeyspaceCommand.ts | 6 +- .../GetTableAutoScalingSettingsCommand.ts | 6 +- .../src/commands/GetTableCommand.ts | 6 +- .../src/commands/GetTypeCommand.ts | 6 +- .../src/commands/ListKeyspacesCommand.ts | 6 +- .../src/commands/ListTablesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTypesCommand.ts | 6 +- .../src/commands/RestoreTableCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateKeyspaceCommand.ts | 6 +- .../src/commands/UpdateTableCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/KeyspacesServiceException.ts | 2 +- clients/client-keyspaces/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListKeyspacesPaginator.ts | 2 +- .../src/pagination/ListTablesPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/pagination/ListTypesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-keyspaces/src/runtimeConfig.ts | 8 +- .../client-keyspaces/src/runtimeExtensions.ts | 2 +- .../client-keyspaces/src/schemas/schemas_0.ts | 2 +- clients/client-keyspacesstreams/package.json | 12 +- .../src/KeyspacesStreams.ts | 4 +- .../src/KeyspacesStreamsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetRecordsCommand.ts | 10 +- .../src/commands/GetShardIteratorCommand.ts | 10 +- .../src/commands/GetStreamCommand.ts | 10 +- .../src/commands/ListStreamsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../KeyspacesStreamsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/GetStreamPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListStreamsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-kinesis-analytics-v2/package.json | 12 +- .../src/KinesisAnalyticsV2.ts | 4 +- .../src/KinesisAnalyticsV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- ...plicationCloudWatchLoggingOptionCommand.ts | 6 +- .../commands/AddApplicationInputCommand.ts | 6 +- ...tionInputProcessingConfigurationCommand.ts | 6 +- .../commands/AddApplicationOutputCommand.ts | 6 +- ...ddApplicationReferenceDataSourceCommand.ts | 6 +- .../AddApplicationVpcConfigurationCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../CreateApplicationPresignedUrlCommand.ts | 6 +- .../CreateApplicationSnapshotCommand.ts | 6 +- ...plicationCloudWatchLoggingOptionCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- ...tionInputProcessingConfigurationCommand.ts | 6 +- .../DeleteApplicationOutputCommand.ts | 6 +- ...teApplicationReferenceDataSourceCommand.ts | 6 +- .../DeleteApplicationSnapshotCommand.ts | 6 +- ...eleteApplicationVpcConfigurationCommand.ts | 6 +- .../commands/DescribeApplicationCommand.ts | 6 +- .../DescribeApplicationOperationCommand.ts | 6 +- .../DescribeApplicationSnapshotCommand.ts | 6 +- .../DescribeApplicationVersionCommand.ts | 6 +- .../commands/DiscoverInputSchemaCommand.ts | 6 +- .../ListApplicationOperationsCommand.ts | 6 +- .../ListApplicationSnapshotsCommand.ts | 6 +- .../ListApplicationVersionsCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/RollbackApplicationCommand.ts | 6 +- .../src/commands/StartApplicationCommand.ts | 6 +- .../src/commands/StopApplicationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- ...licationMaintenanceConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../KinesisAnalyticsV2ServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListApplicationOperationsPaginator.ts | 2 +- .../ListApplicationSnapshotsPaginator.ts | 2 +- .../ListApplicationVersionsPaginator.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-kinesis-analytics/package.json | 12 +- .../src/KinesisAnalytics.ts | 4 +- .../src/KinesisAnalyticsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...plicationCloudWatchLoggingOptionCommand.ts | 10 +- .../commands/AddApplicationInputCommand.ts | 10 +- ...tionInputProcessingConfigurationCommand.ts | 10 +- .../commands/AddApplicationOutputCommand.ts | 10 +- ...ddApplicationReferenceDataSourceCommand.ts | 10 +- .../src/commands/CreateApplicationCommand.ts | 10 +- ...plicationCloudWatchLoggingOptionCommand.ts | 10 +- .../src/commands/DeleteApplicationCommand.ts | 10 +- ...tionInputProcessingConfigurationCommand.ts | 10 +- .../DeleteApplicationOutputCommand.ts | 10 +- ...teApplicationReferenceDataSourceCommand.ts | 10 +- .../commands/DescribeApplicationCommand.ts | 10 +- .../commands/DiscoverInputSchemaCommand.ts | 10 +- .../src/commands/ListApplicationsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/StartApplicationCommand.ts | 10 +- .../src/commands/StopApplicationCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateApplicationCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../KinesisAnalyticsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/KinesisVideoArchivedMedia.ts | 7 +- .../src/KinesisVideoArchivedMediaClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetClipCommand.ts | 6 +- .../GetDASHStreamingSessionURLCommand.ts | 6 +- .../GetHLSStreamingSessionURLCommand.ts | 6 +- .../src/commands/GetImagesCommand.ts | 6 +- .../GetMediaForFragmentListCommand.ts | 6 +- .../src/commands/ListFragmentsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...nesisVideoArchivedMediaServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/GetImagesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListFragmentsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-kinesis-video-media/package.json | 12 +- .../src/KinesisVideoMedia.ts | 4 +- .../src/KinesisVideoMediaClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetMediaCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../KinesisVideoMediaServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 7 +- .../package.json | 12 +- .../src/KinesisVideoSignaling.ts | 4 +- .../src/KinesisVideoSignalingClient.ts | 62 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetIceServerConfigCommand.ts | 6 +- .../commands/SendAlexaOfferToMasterCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../KinesisVideoSignalingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/KinesisVideoWebRTCStorage.ts | 7 +- .../src/KinesisVideoWebRTCStorageClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../JoinStorageSessionAsViewerCommand.ts | 6 +- .../src/commands/JoinStorageSessionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...nesisVideoWebRTCStorageServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-kinesis-video/package.json | 12 +- .../client-kinesis-video/src/KinesisVideo.ts | 4 +- .../src/KinesisVideoClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateSignalingChannelCommand.ts | 6 +- .../src/commands/CreateStreamCommand.ts | 6 +- .../DeleteEdgeConfigurationCommand.ts | 6 +- .../commands/DeleteSignalingChannelCommand.ts | 6 +- .../src/commands/DeleteStreamCommand.ts | 6 +- .../DescribeEdgeConfigurationCommand.ts | 6 +- ...ribeImageGenerationConfigurationCommand.ts | 6 +- ...cribeMappedResourceConfigurationCommand.ts | 6 +- ...escribeMediaStorageConfigurationCommand.ts | 9 +- ...escribeNotificationConfigurationCommand.ts | 9 +- .../DescribeSignalingChannelCommand.ts | 6 +- .../src/commands/DescribeStreamCommand.ts | 6 +- ...scribeStreamStorageConfigurationCommand.ts | 9 +- .../src/commands/GetDataEndpointCommand.ts | 6 +- .../GetSignalingChannelEndpointCommand.ts | 6 +- .../ListEdgeAgentConfigurationsCommand.ts | 6 +- .../commands/ListSignalingChannelsCommand.ts | 6 +- .../src/commands/ListStreamsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTagsForStreamCommand.ts | 6 +- .../StartEdgeConfigurationUpdateCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TagStreamCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UntagStreamCommand.ts | 6 +- .../commands/UpdateDataRetentionCommand.ts | 6 +- ...dateImageGenerationConfigurationCommand.ts | 9 +- .../UpdateMediaStorageConfigurationCommand.ts | 6 +- .../UpdateNotificationConfigurationCommand.ts | 6 +- .../commands/UpdateSignalingChannelCommand.ts | 6 +- .../src/commands/UpdateStreamCommand.ts | 6 +- ...UpdateStreamStorageConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/KinesisVideoServiceException.ts | 2 +- .../client-kinesis-video/src/models/errors.ts | 2 +- ...ibeMappedResourceConfigurationPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListEdgeAgentConfigurationsPaginator.ts | 2 +- .../ListSignalingChannelsPaginator.ts | 2 +- .../src/pagination/ListStreamsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-kinesis-video/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-kinesis/package.json | 12 +- clients/client-kinesis/src/Kinesis.ts | 4 +- clients/client-kinesis/src/KinesisClient.ts | 71 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddTagsToStreamCommand.ts | 6 +- .../src/commands/CreateStreamCommand.ts | 6 +- .../DecreaseStreamRetentionPeriodCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DeleteStreamCommand.ts | 6 +- .../DeregisterStreamConsumerCommand.ts | 6 +- .../DescribeAccountSettingsCommand.ts | 6 +- .../src/commands/DescribeLimitsCommand.ts | 6 +- .../src/commands/DescribeStreamCommand.ts | 6 +- .../commands/DescribeStreamConsumerCommand.ts | 6 +- .../commands/DescribeStreamSummaryCommand.ts | 6 +- .../DisableEnhancedMonitoringCommand.ts | 6 +- .../EnableEnhancedMonitoringCommand.ts | 6 +- .../src/commands/GetRecordsCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/GetShardIteratorCommand.ts | 6 +- .../IncreaseStreamRetentionPeriodCommand.ts | 6 +- .../src/commands/ListShardsCommand.ts | 6 +- .../commands/ListStreamConsumersCommand.ts | 6 +- .../src/commands/ListStreamsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTagsForStreamCommand.ts | 6 +- .../src/commands/MergeShardsCommand.ts | 6 +- .../src/commands/PutRecordCommand.ts | 6 +- .../src/commands/PutRecordsCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../commands/RegisterStreamConsumerCommand.ts | 6 +- .../commands/RemoveTagsFromStreamCommand.ts | 6 +- .../src/commands/SplitShardCommand.ts | 6 +- .../commands/StartStreamEncryptionCommand.ts | 6 +- .../commands/StopStreamEncryptionCommand.ts | 6 +- .../src/commands/SubscribeToShardCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAccountSettingsCommand.ts | 6 +- .../commands/UpdateMaxRecordSizeCommand.ts | 6 +- .../src/commands/UpdateShardCountCommand.ts | 6 +- .../src/commands/UpdateStreamModeCommand.ts | 6 +- .../UpdateStreamWarmThroughputCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/KinesisServiceException.ts | 2 +- clients/client-kinesis/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListStreamConsumersPaginator.ts | 2 +- .../src/pagination/ListStreamsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-kinesis/src/runtimeConfig.ts | 8 +- .../client-kinesis/src/runtimeExtensions.ts | 2 +- .../client-kinesis/src/schemas/schemas_0.ts | 2 +- clients/client-kms/package.json | 12 +- clients/client-kms/src/KMS.ts | 4 +- clients/client-kms/src/KMSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelKeyDeletionCommand.ts | 6 +- .../commands/ConnectCustomKeyStoreCommand.ts | 6 +- .../src/commands/CreateAliasCommand.ts | 6 +- .../commands/CreateCustomKeyStoreCommand.ts | 6 +- .../src/commands/CreateGrantCommand.ts | 6 +- .../src/commands/CreateKeyCommand.ts | 6 +- .../client-kms/src/commands/DecryptCommand.ts | 6 +- .../src/commands/DeleteAliasCommand.ts | 6 +- .../commands/DeleteCustomKeyStoreCommand.ts | 6 +- .../DeleteImportedKeyMaterialCommand.ts | 6 +- .../src/commands/DeriveSharedSecretCommand.ts | 6 +- .../DescribeCustomKeyStoresCommand.ts | 6 +- .../src/commands/DescribeKeyCommand.ts | 6 +- .../src/commands/DisableKeyCommand.ts | 6 +- .../src/commands/DisableKeyRotationCommand.ts | 6 +- .../DisconnectCustomKeyStoreCommand.ts | 6 +- .../src/commands/EnableKeyCommand.ts | 6 +- .../src/commands/EnableKeyRotationCommand.ts | 6 +- .../client-kms/src/commands/EncryptCommand.ts | 6 +- .../src/commands/GenerateDataKeyCommand.ts | 6 +- .../commands/GenerateDataKeyPairCommand.ts | 6 +- ...erateDataKeyPairWithoutPlaintextCommand.ts | 6 +- .../GenerateDataKeyWithoutPlaintextCommand.ts | 9 +- .../src/commands/GenerateMacCommand.ts | 6 +- .../src/commands/GenerateRandomCommand.ts | 6 +- .../src/commands/GetKeyPolicyCommand.ts | 6 +- .../commands/GetKeyRotationStatusCommand.ts | 6 +- .../commands/GetParametersForImportCommand.ts | 6 +- .../src/commands/GetPublicKeyCommand.ts | 6 +- .../src/commands/ImportKeyMaterialCommand.ts | 6 +- .../src/commands/ListAliasesCommand.ts | 6 +- .../src/commands/ListGrantsCommand.ts | 6 +- .../src/commands/ListKeyPoliciesCommand.ts | 6 +- .../src/commands/ListKeyRotationsCommand.ts | 6 +- .../src/commands/ListKeysCommand.ts | 6 +- .../src/commands/ListResourceTagsCommand.ts | 6 +- .../commands/ListRetirableGrantsCommand.ts | 6 +- .../src/commands/PutKeyPolicyCommand.ts | 6 +- .../src/commands/ReEncryptCommand.ts | 6 +- .../src/commands/ReplicateKeyCommand.ts | 6 +- .../src/commands/RetireGrantCommand.ts | 6 +- .../src/commands/RevokeGrantCommand.ts | 6 +- .../src/commands/RotateKeyOnDemandCommand.ts | 6 +- .../commands/ScheduleKeyDeletionCommand.ts | 6 +- .../client-kms/src/commands/SignCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAliasCommand.ts | 6 +- .../commands/UpdateCustomKeyStoreCommand.ts | 6 +- .../commands/UpdateKeyDescriptionCommand.ts | 6 +- .../commands/UpdatePrimaryRegionCommand.ts | 6 +- .../client-kms/src/commands/VerifyCommand.ts | 6 +- .../src/commands/VerifyMacCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-kms/src/extensionConfiguration.ts | 8 +- .../src/models/KMSServiceException.ts | 2 +- clients/client-kms/src/models/errors.ts | 2 +- .../DescribeCustomKeyStoresPaginator.ts | 2 +- .../client-kms/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAliasesPaginator.ts | 2 +- .../src/pagination/ListGrantsPaginator.ts | 2 +- .../pagination/ListKeyPoliciesPaginator.ts | 2 +- .../pagination/ListKeyRotationsPaginator.ts | 2 +- .../src/pagination/ListKeysPaginator.ts | 2 +- .../pagination/ListResourceTagsPaginator.ts | 2 +- .../ListRetirableGrantsPaginator.ts | 2 +- .../client-kms/src/runtimeConfig.browser.ts | 7 +- .../client-kms/src/runtimeConfig.native.ts | 2 +- .../client-kms/src/runtimeConfig.shared.ts | 4 +- clients/client-kms/src/runtimeConfig.ts | 8 +- clients/client-kms/src/runtimeExtensions.ts | 2 +- clients/client-kms/src/schemas/schemas_0.ts | 2 +- clients/client-lakeformation/package.json | 12 +- .../client-lakeformation/src/LakeFormation.ts | 4 +- .../src/LakeFormationClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AddLFTagsToResourceCommand.ts | 6 +- .../AssumeDecoratedRoleWithSAMLCommand.ts | 6 +- .../commands/BatchGrantPermissionsCommand.ts | 6 +- .../commands/BatchRevokePermissionsCommand.ts | 6 +- .../src/commands/CancelTransactionCommand.ts | 6 +- .../src/commands/CommitTransactionCommand.ts | 6 +- .../commands/CreateDataCellsFilterCommand.ts | 6 +- .../src/commands/CreateLFTagCommand.ts | 6 +- .../commands/CreateLFTagExpressionCommand.ts | 6 +- ...ationIdentityCenterConfigurationCommand.ts | 6 +- .../CreateLakeFormationOptInCommand.ts | 6 +- .../commands/DeleteDataCellsFilterCommand.ts | 6 +- .../src/commands/DeleteLFTagCommand.ts | 6 +- .../commands/DeleteLFTagExpressionCommand.ts | 6 +- ...ationIdentityCenterConfigurationCommand.ts | 6 +- .../DeleteLakeFormationOptInCommand.ts | 6 +- .../commands/DeleteObjectsOnCancelCommand.ts | 6 +- .../src/commands/DeregisterResourceCommand.ts | 6 +- ...ationIdentityCenterConfigurationCommand.ts | 6 +- .../src/commands/DescribeResourceCommand.ts | 6 +- .../commands/DescribeTransactionCommand.ts | 6 +- .../src/commands/ExtendTransactionCommand.ts | 6 +- .../src/commands/GetDataCellsFilterCommand.ts | 6 +- .../commands/GetDataLakePrincipalCommand.ts | 6 +- .../commands/GetDataLakeSettingsCommand.ts | 6 +- .../GetEffectivePermissionsForPathCommand.ts | 6 +- .../src/commands/GetLFTagCommand.ts | 6 +- .../src/commands/GetLFTagExpressionCommand.ts | 6 +- .../src/commands/GetQueryStateCommand.ts | 6 +- .../src/commands/GetQueryStatisticsCommand.ts | 6 +- .../src/commands/GetResourceLFTagsCommand.ts | 6 +- .../src/commands/GetTableObjectsCommand.ts | 6 +- ...emporaryGluePartitionCredentialsCommand.ts | 6 +- ...GetTemporaryGlueTableCredentialsCommand.ts | 9 +- .../src/commands/GetWorkUnitResultsCommand.ts | 6 +- .../src/commands/GetWorkUnitsCommand.ts | 6 +- .../src/commands/GrantPermissionsCommand.ts | 6 +- .../commands/ListDataCellsFilterCommand.ts | 6 +- .../commands/ListLFTagExpressionsCommand.ts | 6 +- .../src/commands/ListLFTagsCommand.ts | 6 +- .../ListLakeFormationOptInsCommand.ts | 6 +- .../src/commands/ListPermissionsCommand.ts | 6 +- .../src/commands/ListResourcesCommand.ts | 6 +- .../ListTableStorageOptimizersCommand.ts | 6 +- .../src/commands/ListTransactionsCommand.ts | 6 +- .../commands/PutDataLakeSettingsCommand.ts | 6 +- .../src/commands/RegisterResourceCommand.ts | 6 +- .../RemoveLFTagsFromResourceCommand.ts | 6 +- .../src/commands/RevokePermissionsCommand.ts | 6 +- .../SearchDatabasesByLFTagsCommand.ts | 6 +- .../commands/SearchTablesByLFTagsCommand.ts | 6 +- .../src/commands/StartQueryPlanningCommand.ts | 6 +- .../src/commands/StartTransactionCommand.ts | 6 +- .../commands/UpdateDataCellsFilterCommand.ts | 6 +- .../src/commands/UpdateLFTagCommand.ts | 6 +- .../commands/UpdateLFTagExpressionCommand.ts | 6 +- ...ationIdentityCenterConfigurationCommand.ts | 6 +- .../src/commands/UpdateResourceCommand.ts | 6 +- .../src/commands/UpdateTableObjectsCommand.ts | 6 +- .../UpdateTableStorageOptimizerCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/LakeFormationServiceException.ts | 2 +- .../client-lakeformation/src/models/errors.ts | 2 +- ...GetEffectivePermissionsForPathPaginator.ts | 2 +- .../pagination/GetTableObjectsPaginator.ts | 2 +- .../src/pagination/GetWorkUnitsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDataCellsFilterPaginator.ts | 2 +- .../ListLFTagExpressionsPaginator.ts | 2 +- .../src/pagination/ListLFTagsPaginator.ts | 2 +- .../ListLakeFormationOptInsPaginator.ts | 2 +- .../pagination/ListPermissionsPaginator.ts | 2 +- .../src/pagination/ListResourcesPaginator.ts | 2 +- .../ListTableStorageOptimizersPaginator.ts | 2 +- .../pagination/ListTransactionsPaginator.ts | 2 +- .../SearchDatabasesByLFTagsPaginator.ts | 2 +- .../SearchTablesByLFTagsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-lakeformation/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-lambda/package.json | 12 +- clients/client-lambda/src/Lambda.ts | 4 +- clients/client-lambda/src/LambdaClient.ts | 71 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AddLayerVersionPermissionCommand.ts | 6 +- .../src/commands/AddPermissionCommand.ts | 6 +- .../src/commands/CreateAliasCommand.ts | 6 +- .../commands/CreateCapacityProviderCommand.ts | 6 +- .../CreateCodeSigningConfigCommand.ts | 6 +- .../CreateEventSourceMappingCommand.ts | 6 +- .../src/commands/CreateFunctionCommand.ts | 6 +- .../CreateFunctionUrlConfigCommand.ts | 6 +- .../src/commands/DeleteAliasCommand.ts | 6 +- .../commands/DeleteCapacityProviderCommand.ts | 6 +- .../DeleteCodeSigningConfigCommand.ts | 6 +- .../DeleteEventSourceMappingCommand.ts | 6 +- .../DeleteFunctionCodeSigningConfigCommand.ts | 6 +- .../src/commands/DeleteFunctionCommand.ts | 6 +- .../DeleteFunctionConcurrencyCommand.ts | 6 +- .../DeleteFunctionEventInvokeConfigCommand.ts | 6 +- .../DeleteFunctionUrlConfigCommand.ts | 6 +- .../src/commands/DeleteLayerVersionCommand.ts | 6 +- ...leteProvisionedConcurrencyConfigCommand.ts | 6 +- .../src/commands/GetAccountSettingsCommand.ts | 6 +- .../src/commands/GetAliasCommand.ts | 6 +- .../commands/GetCapacityProviderCommand.ts | 6 +- .../commands/GetCodeSigningConfigCommand.ts | 6 +- .../commands/GetEventSourceMappingCommand.ts | 6 +- .../GetFunctionCodeSigningConfigCommand.ts | 6 +- .../src/commands/GetFunctionCommand.ts | 6 +- .../commands/GetFunctionConcurrencyCommand.ts | 6 +- .../GetFunctionConfigurationCommand.ts | 6 +- .../GetFunctionEventInvokeConfigCommand.ts | 6 +- .../GetFunctionRecursionConfigCommand.ts | 6 +- .../GetFunctionScalingConfigCommand.ts | 6 +- .../commands/GetFunctionUrlConfigCommand.ts | 6 +- .../commands/GetLayerVersionByArnCommand.ts | 6 +- .../src/commands/GetLayerVersionCommand.ts | 6 +- .../commands/GetLayerVersionPolicyCommand.ts | 6 +- .../src/commands/GetPolicyCommand.ts | 6 +- .../GetProvisionedConcurrencyConfigCommand.ts | 9 +- .../GetRuntimeManagementConfigCommand.ts | 6 +- .../src/commands/InvokeAsyncCommand.ts | 6 +- .../src/commands/InvokeCommand.ts | 4 +- .../InvokeWithResponseStreamCommand.ts | 6 +- .../src/commands/ListAliasesCommand.ts | 6 +- .../commands/ListCapacityProvidersCommand.ts | 6 +- .../commands/ListCodeSigningConfigsCommand.ts | 6 +- .../ListEventSourceMappingsCommand.ts | 6 +- .../ListFunctionEventInvokeConfigsCommand.ts | 6 +- .../commands/ListFunctionUrlConfigsCommand.ts | 6 +- ...nctionVersionsByCapacityProviderCommand.ts | 6 +- ...ListFunctionsByCodeSigningConfigCommand.ts | 9 +- .../src/commands/ListFunctionsCommand.ts | 6 +- .../src/commands/ListLayerVersionsCommand.ts | 6 +- .../src/commands/ListLayersCommand.ts | 6 +- ...istProvisionedConcurrencyConfigsCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../commands/ListVersionsByFunctionCommand.ts | 6 +- .../commands/PublishLayerVersionCommand.ts | 6 +- .../src/commands/PublishVersionCommand.ts | 6 +- .../PutFunctionCodeSigningConfigCommand.ts | 6 +- .../commands/PutFunctionConcurrencyCommand.ts | 6 +- .../PutFunctionEventInvokeConfigCommand.ts | 6 +- .../PutFunctionRecursionConfigCommand.ts | 6 +- .../PutFunctionScalingConfigCommand.ts | 6 +- .../PutProvisionedConcurrencyConfigCommand.ts | 9 +- .../PutRuntimeManagementConfigCommand.ts | 6 +- .../RemoveLayerVersionPermissionCommand.ts | 6 +- .../src/commands/RemovePermissionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAliasCommand.ts | 6 +- .../commands/UpdateCapacityProviderCommand.ts | 6 +- .../UpdateCodeSigningConfigCommand.ts | 6 +- .../UpdateEventSourceMappingCommand.ts | 6 +- .../src/commands/UpdateFunctionCodeCommand.ts | 6 +- .../UpdateFunctionConfigurationCommand.ts | 6 +- .../UpdateFunctionEventInvokeConfigCommand.ts | 6 +- .../UpdateFunctionUrlConfigCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/LambdaServiceException.ts | 2 +- clients/client-lambda/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAliasesPaginator.ts | 2 +- .../ListCapacityProvidersPaginator.ts | 2 +- .../ListCodeSigningConfigsPaginator.ts | 2 +- .../ListEventSourceMappingsPaginator.ts | 2 +- ...ListFunctionEventInvokeConfigsPaginator.ts | 2 +- .../ListFunctionUrlConfigsPaginator.ts | 2 +- ...tionVersionsByCapacityProviderPaginator.ts | 2 +- ...stFunctionsByCodeSigningConfigPaginator.ts | 2 +- .../src/pagination/ListFunctionsPaginator.ts | 2 +- .../pagination/ListLayerVersionsPaginator.ts | 2 +- .../src/pagination/ListLayersPaginator.ts | 2 +- ...tProvisionedConcurrencyConfigsPaginator.ts | 2 +- .../ListVersionsByFunctionPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-lambda/src/runtimeConfig.native.ts | 2 +- .../client-lambda/src/runtimeConfig.shared.ts | 4 +- clients/client-lambda/src/runtimeConfig.ts | 8 +- .../client-lambda/src/runtimeExtensions.ts | 2 +- .../client-lambda/src/schemas/schemas_0.ts | 2 +- clients/client-launch-wizard/package.json | 12 +- .../client-launch-wizard/src/LaunchWizard.ts | 4 +- .../src/LaunchWizardClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateDeploymentCommand.ts | 6 +- .../src/commands/DeleteDeploymentCommand.ts | 6 +- .../src/commands/GetDeploymentCommand.ts | 6 +- .../src/commands/GetWorkloadCommand.ts | 6 +- .../GetWorkloadDeploymentPatternCommand.ts | 6 +- .../commands/ListDeploymentEventsCommand.ts | 6 +- .../src/commands/ListDeploymentsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListWorkloadDeploymentPatternsCommand.ts | 6 +- .../src/commands/ListWorkloadsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/LaunchWizardServiceException.ts | 2 +- .../client-launch-wizard/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDeploymentEventsPaginator.ts | 2 +- .../pagination/ListDeploymentsPaginator.ts | 2 +- ...ListWorkloadDeploymentPatternsPaginator.ts | 2 +- .../src/pagination/ListWorkloadsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-launch-wizard/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/LexModelBuildingService.ts | 4 +- .../src/LexModelBuildingServiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateBotVersionCommand.ts | 6 +- .../commands/CreateIntentVersionCommand.ts | 6 +- .../commands/CreateSlotTypeVersionCommand.ts | 6 +- .../src/commands/DeleteBotAliasCommand.ts | 6 +- .../DeleteBotChannelAssociationCommand.ts | 6 +- .../src/commands/DeleteBotCommand.ts | 6 +- .../src/commands/DeleteBotVersionCommand.ts | 6 +- .../src/commands/DeleteIntentCommand.ts | 6 +- .../commands/DeleteIntentVersionCommand.ts | 6 +- .../src/commands/DeleteSlotTypeCommand.ts | 6 +- .../commands/DeleteSlotTypeVersionCommand.ts | 6 +- .../src/commands/DeleteUtterancesCommand.ts | 6 +- .../src/commands/GetBotAliasCommand.ts | 6 +- .../src/commands/GetBotAliasesCommand.ts | 6 +- .../GetBotChannelAssociationCommand.ts | 6 +- .../GetBotChannelAssociationsCommand.ts | 6 +- .../src/commands/GetBotCommand.ts | 6 +- .../src/commands/GetBotVersionsCommand.ts | 6 +- .../src/commands/GetBotsCommand.ts | 6 +- .../src/commands/GetBuiltinIntentCommand.ts | 6 +- .../src/commands/GetBuiltinIntentsCommand.ts | 6 +- .../commands/GetBuiltinSlotTypesCommand.ts | 6 +- .../src/commands/GetExportCommand.ts | 6 +- .../src/commands/GetImportCommand.ts | 6 +- .../src/commands/GetIntentCommand.ts | 6 +- .../src/commands/GetIntentVersionsCommand.ts | 6 +- .../src/commands/GetIntentsCommand.ts | 6 +- .../src/commands/GetMigrationCommand.ts | 6 +- .../src/commands/GetMigrationsCommand.ts | 6 +- .../src/commands/GetSlotTypeCommand.ts | 6 +- .../commands/GetSlotTypeVersionsCommand.ts | 6 +- .../src/commands/GetSlotTypesCommand.ts | 6 +- .../src/commands/GetUtterancesViewCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutBotAliasCommand.ts | 6 +- .../src/commands/PutBotCommand.ts | 6 +- .../src/commands/PutIntentCommand.ts | 6 +- .../src/commands/PutSlotTypeCommand.ts | 6 +- .../src/commands/StartImportCommand.ts | 6 +- .../src/commands/StartMigrationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...LexModelBuildingServiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/GetBotAliasesPaginator.ts | 2 +- .../GetBotChannelAssociationsPaginator.ts | 2 +- .../src/pagination/GetBotVersionsPaginator.ts | 2 +- .../src/pagination/GetBotsPaginator.ts | 2 +- .../pagination/GetBuiltinIntentsPaginator.ts | 2 +- .../GetBuiltinSlotTypesPaginator.ts | 2 +- .../pagination/GetIntentVersionsPaginator.ts | 2 +- .../src/pagination/GetIntentsPaginator.ts | 2 +- .../src/pagination/GetMigrationsPaginator.ts | 2 +- .../GetSlotTypeVersionsPaginator.ts | 2 +- .../src/pagination/GetSlotTypesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-lex-models-v2/package.json | 12 +- .../client-lex-models-v2/src/LexModelsV2.ts | 4 +- .../src/LexModelsV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchCreateCustomVocabularyItemCommand.ts | 9 +- .../BatchDeleteCustomVocabularyItemCommand.ts | 9 +- .../BatchUpdateCustomVocabularyItemCommand.ts | 9 +- .../src/commands/BuildBotLocaleCommand.ts | 6 +- .../src/commands/CreateBotAliasCommand.ts | 6 +- .../src/commands/CreateBotCommand.ts | 6 +- .../src/commands/CreateBotLocaleCommand.ts | 6 +- .../src/commands/CreateBotReplicaCommand.ts | 6 +- .../src/commands/CreateBotVersionCommand.ts | 6 +- .../src/commands/CreateExportCommand.ts | 6 +- .../src/commands/CreateIntentCommand.ts | 6 +- .../commands/CreateResourcePolicyCommand.ts | 6 +- .../CreateResourcePolicyStatementCommand.ts | 6 +- .../src/commands/CreateSlotCommand.ts | 6 +- .../src/commands/CreateSlotTypeCommand.ts | 6 +- .../CreateTestSetDiscrepancyReportCommand.ts | 6 +- .../src/commands/CreateUploadUrlCommand.ts | 6 +- .../src/commands/DeleteBotAliasCommand.ts | 6 +- .../src/commands/DeleteBotCommand.ts | 6 +- .../src/commands/DeleteBotLocaleCommand.ts | 6 +- .../src/commands/DeleteBotReplicaCommand.ts | 6 +- .../src/commands/DeleteBotVersionCommand.ts | 6 +- .../commands/DeleteCustomVocabularyCommand.ts | 6 +- .../src/commands/DeleteExportCommand.ts | 6 +- .../src/commands/DeleteImportCommand.ts | 6 +- .../src/commands/DeleteIntentCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../DeleteResourcePolicyStatementCommand.ts | 6 +- .../src/commands/DeleteSlotCommand.ts | 6 +- .../src/commands/DeleteSlotTypeCommand.ts | 6 +- .../src/commands/DeleteTestSetCommand.ts | 6 +- .../src/commands/DeleteUtterancesCommand.ts | 6 +- .../src/commands/DescribeBotAliasCommand.ts | 6 +- .../src/commands/DescribeBotCommand.ts | 6 +- .../src/commands/DescribeBotLocaleCommand.ts | 6 +- .../DescribeBotRecommendationCommand.ts | 6 +- .../src/commands/DescribeBotReplicaCommand.ts | 6 +- .../DescribeBotResourceGenerationCommand.ts | 6 +- .../src/commands/DescribeBotVersionCommand.ts | 6 +- ...DescribeCustomVocabularyMetadataCommand.ts | 9 +- .../src/commands/DescribeExportCommand.ts | 6 +- .../src/commands/DescribeImportCommand.ts | 6 +- .../src/commands/DescribeIntentCommand.ts | 8 +- .../commands/DescribeResourcePolicyCommand.ts | 6 +- .../src/commands/DescribeSlotCommand.ts | 8 +- .../src/commands/DescribeSlotTypeCommand.ts | 6 +- .../commands/DescribeTestExecutionCommand.ts | 6 +- .../src/commands/DescribeTestSetCommand.ts | 6 +- ...DescribeTestSetDiscrepancyReportCommand.ts | 9 +- .../DescribeTestSetGenerationCommand.ts | 6 +- .../src/commands/GenerateBotElementCommand.ts | 6 +- .../GetTestExecutionArtifactsUrlCommand.ts | 6 +- .../ListAggregatedUtterancesCommand.ts | 6 +- .../commands/ListBotAliasReplicasCommand.ts | 6 +- .../src/commands/ListBotAliasesCommand.ts | 6 +- .../src/commands/ListBotLocalesCommand.ts | 6 +- .../commands/ListBotRecommendationsCommand.ts | 6 +- .../src/commands/ListBotReplicasCommand.ts | 6 +- .../ListBotResourceGenerationsCommand.ts | 6 +- .../commands/ListBotVersionReplicasCommand.ts | 6 +- .../src/commands/ListBotVersionsCommand.ts | 6 +- .../src/commands/ListBotsCommand.ts | 6 +- .../src/commands/ListBuiltInIntentsCommand.ts | 6 +- .../commands/ListBuiltInSlotTypesCommand.ts | 6 +- .../ListCustomVocabularyItemsCommand.ts | 6 +- .../src/commands/ListExportsCommand.ts | 6 +- .../src/commands/ListImportsCommand.ts | 6 +- .../src/commands/ListIntentMetricsCommand.ts | 6 +- .../src/commands/ListIntentPathsCommand.ts | 6 +- .../commands/ListIntentStageMetricsCommand.ts | 6 +- .../src/commands/ListIntentsCommand.ts | 6 +- .../commands/ListRecommendedIntentsCommand.ts | 6 +- .../ListSessionAnalyticsDataCommand.ts | 6 +- .../src/commands/ListSessionMetricsCommand.ts | 6 +- .../src/commands/ListSlotTypesCommand.ts | 6 +- .../src/commands/ListSlotsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListTestExecutionResultItemsCommand.ts | 6 +- .../src/commands/ListTestExecutionsCommand.ts | 6 +- .../src/commands/ListTestSetRecordsCommand.ts | 6 +- .../src/commands/ListTestSetsCommand.ts | 6 +- .../ListUtteranceAnalyticsDataCommand.ts | 6 +- .../commands/ListUtteranceMetricsCommand.ts | 6 +- .../SearchAssociatedTranscriptsCommand.ts | 6 +- .../commands/StartBotRecommendationCommand.ts | 6 +- .../StartBotResourceGenerationCommand.ts | 6 +- .../src/commands/StartImportCommand.ts | 6 +- .../src/commands/StartTestExecutionCommand.ts | 6 +- .../commands/StartTestSetGenerationCommand.ts | 6 +- .../commands/StopBotRecommendationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBotAliasCommand.ts | 6 +- .../src/commands/UpdateBotCommand.ts | 6 +- .../src/commands/UpdateBotLocaleCommand.ts | 6 +- .../UpdateBotRecommendationCommand.ts | 6 +- .../src/commands/UpdateExportCommand.ts | 6 +- .../src/commands/UpdateIntentCommand.ts | 6 +- .../commands/UpdateResourcePolicyCommand.ts | 6 +- .../src/commands/UpdateSlotCommand.ts | 6 +- .../src/commands/UpdateSlotTypeCommand.ts | 6 +- .../src/commands/UpdateTestSetCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/LexModelsV2ServiceException.ts | 2 +- .../client-lex-models-v2/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAggregatedUtterancesPaginator.ts | 2 +- .../ListBotAliasReplicasPaginator.ts | 2 +- .../src/pagination/ListBotAliasesPaginator.ts | 2 +- .../src/pagination/ListBotLocalesPaginator.ts | 2 +- .../ListBotRecommendationsPaginator.ts | 2 +- .../ListBotResourceGenerationsPaginator.ts | 2 +- .../ListBotVersionReplicasPaginator.ts | 2 +- .../pagination/ListBotVersionsPaginator.ts | 2 +- .../src/pagination/ListBotsPaginator.ts | 2 +- .../pagination/ListBuiltInIntentsPaginator.ts | 2 +- .../ListBuiltInSlotTypesPaginator.ts | 2 +- .../ListCustomVocabularyItemsPaginator.ts | 2 +- .../src/pagination/ListExportsPaginator.ts | 2 +- .../src/pagination/ListImportsPaginator.ts | 2 +- .../pagination/ListIntentMetricsPaginator.ts | 2 +- .../ListIntentStageMetricsPaginator.ts | 2 +- .../src/pagination/ListIntentsPaginator.ts | 2 +- .../ListRecommendedIntentsPaginator.ts | 2 +- .../ListSessionAnalyticsDataPaginator.ts | 2 +- .../pagination/ListSessionMetricsPaginator.ts | 2 +- .../src/pagination/ListSlotTypesPaginator.ts | 2 +- .../src/pagination/ListSlotsPaginator.ts | 2 +- .../ListTestExecutionResultItemsPaginator.ts | 2 +- .../pagination/ListTestExecutionsPaginator.ts | 2 +- .../pagination/ListTestSetRecordsPaginator.ts | 2 +- .../src/pagination/ListTestSetsPaginator.ts | 2 +- .../ListUtteranceAnalyticsDataPaginator.ts | 2 +- .../ListUtteranceMetricsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-lex-models-v2/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-lex-runtime-service/package.json | 12 +- .../src/LexRuntimeService.ts | 4 +- .../src/LexRuntimeServiceClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DeleteSessionCommand.ts | 6 +- .../src/commands/GetSessionCommand.ts | 6 +- .../src/commands/PostContentCommand.ts | 4 +- .../src/commands/PostTextCommand.ts | 6 +- .../src/commands/PutSessionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../LexRuntimeServiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-lex-runtime-v2/package.json | 12 +- .../client-lex-runtime-v2/src/LexRuntimeV2.ts | 4 +- .../src/LexRuntimeV2Client.ts | 77 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DeleteSessionCommand.ts | 6 +- .../src/commands/GetSessionCommand.ts | 6 +- .../src/commands/PutSessionCommand.ts | 6 +- .../src/commands/RecognizeTextCommand.ts | 6 +- .../src/commands/RecognizeUtteranceCommand.ts | 4 +- .../src/commands/StartConversationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/LexRuntimeV2ServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/LicenseManagerLinuxSubscriptions.ts | 7 +- .../LicenseManagerLinuxSubscriptionsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../DeregisterSubscriptionProviderCommand.ts | 6 +- ...etRegisteredSubscriptionProviderCommand.ts | 6 +- .../src/commands/GetServiceSettingsCommand.ts | 6 +- .../ListLinuxSubscriptionInstancesCommand.ts | 6 +- .../commands/ListLinuxSubscriptionsCommand.ts | 6 +- ...tRegisteredSubscriptionProvidersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../RegisterSubscriptionProviderCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateServiceSettingsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...nagerLinuxSubscriptionsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...ListLinuxSubscriptionInstancesPaginator.ts | 2 +- .../ListLinuxSubscriptionsPaginator.ts | 2 +- ...egisteredSubscriptionProvidersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/LicenseManagerUserSubscriptions.ts | 7 +- .../LicenseManagerUserSubscriptionsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateUserCommand.ts | 6 +- .../CreateLicenseServerEndpointCommand.ts | 6 +- .../DeleteLicenseServerEndpointCommand.ts | 6 +- .../DeregisterIdentityProviderCommand.ts | 6 +- .../src/commands/DisassociateUserCommand.ts | 6 +- .../commands/ListIdentityProvidersCommand.ts | 6 +- .../src/commands/ListInstancesCommand.ts | 6 +- .../ListLicenseServerEndpointsCommand.ts | 6 +- .../ListProductSubscriptionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListUserAssociationsCommand.ts | 6 +- .../RegisterIdentityProviderCommand.ts | 6 +- .../StartProductSubscriptionCommand.ts | 6 +- .../StopProductSubscriptionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateIdentityProviderSettingsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...anagerUserSubscriptionsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListIdentityProvidersPaginator.ts | 2 +- .../src/pagination/ListInstancesPaginator.ts | 2 +- .../ListLicenseServerEndpointsPaginator.ts | 2 +- .../ListProductSubscriptionsPaginator.ts | 2 +- .../ListUserAssociationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-license-manager/package.json | 12 +- .../src/LicenseManager.ts | 4 +- .../src/LicenseManagerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptGrantCommand.ts | 10 +- .../src/commands/CheckInLicenseCommand.ts | 10 +- .../commands/CheckoutBorrowLicenseCommand.ts | 10 +- .../src/commands/CheckoutLicenseCommand.ts | 10 +- .../src/commands/CreateGrantCommand.ts | 10 +- .../src/commands/CreateGrantVersionCommand.ts | 10 +- .../CreateLicenseAssetGroupCommand.ts | 10 +- .../CreateLicenseAssetRulesetCommand.ts | 10 +- .../src/commands/CreateLicenseCommand.ts | 10 +- .../CreateLicenseConfigurationCommand.ts | 10 +- ...LicenseConversionTaskForResourceCommand.ts | 10 +- ...ateLicenseManagerReportGeneratorCommand.ts | 10 +- .../commands/CreateLicenseVersionCommand.ts | 10 +- .../src/commands/CreateTokenCommand.ts | 10 +- .../src/commands/DeleteGrantCommand.ts | 10 +- .../DeleteLicenseAssetGroupCommand.ts | 10 +- .../DeleteLicenseAssetRulesetCommand.ts | 10 +- .../src/commands/DeleteLicenseCommand.ts | 10 +- .../DeleteLicenseConfigurationCommand.ts | 10 +- ...eteLicenseManagerReportGeneratorCommand.ts | 10 +- .../src/commands/DeleteTokenCommand.ts | 10 +- .../ExtendLicenseConsumptionCommand.ts | 10 +- .../src/commands/GetAccessTokenCommand.ts | 10 +- .../src/commands/GetGrantCommand.ts | 10 +- .../commands/GetLicenseAssetGroupCommand.ts | 10 +- .../commands/GetLicenseAssetRulesetCommand.ts | 10 +- .../src/commands/GetLicenseCommand.ts | 10 +- .../GetLicenseConfigurationCommand.ts | 10 +- .../GetLicenseConversionTaskCommand.ts | 10 +- ...GetLicenseManagerReportGeneratorCommand.ts | 13 +- .../src/commands/GetLicenseUsageCommand.ts | 10 +- .../src/commands/GetServiceSettingsCommand.ts | 10 +- .../ListAssetsForLicenseAssetGroupCommand.ts | 10 +- ...ociationsForLicenseConfigurationCommand.ts | 10 +- .../commands/ListDistributedGrantsCommand.ts | 10 +- ...orLicenseConfigurationOperationsCommand.ts | 10 +- .../commands/ListLicenseAssetGroupsCommand.ts | 10 +- .../ListLicenseAssetRulesetsCommand.ts | 10 +- .../ListLicenseConfigurationsCommand.ts | 10 +- ...nseConfigurationsForOrganizationCommand.ts | 10 +- .../ListLicenseConversionTasksCommand.ts | 10 +- ...stLicenseManagerReportGeneratorsCommand.ts | 10 +- ...LicenseSpecificationsForResourceCommand.ts | 10 +- .../commands/ListLicenseVersionsCommand.ts | 10 +- .../src/commands/ListLicensesCommand.ts | 10 +- .../src/commands/ListReceivedGrantsCommand.ts | 10 +- ...istReceivedGrantsForOrganizationCommand.ts | 10 +- .../commands/ListReceivedLicensesCommand.ts | 10 +- ...tReceivedLicensesForOrganizationCommand.ts | 10 +- .../commands/ListResourceInventoryCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/ListTokensCommand.ts | 10 +- ...ListUsageForLicenseConfigurationCommand.ts | 13 +- .../src/commands/RejectGrantCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../UpdateLicenseAssetGroupCommand.ts | 10 +- .../UpdateLicenseAssetRulesetCommand.ts | 10 +- .../UpdateLicenseConfigurationCommand.ts | 10 +- ...ateLicenseManagerReportGeneratorCommand.ts | 10 +- ...LicenseSpecificationsForResourceCommand.ts | 10 +- .../commands/UpdateServiceSettingsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/LicenseManagerServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-lightsail/package.json | 12 +- clients/client-lightsail/src/Lightsail.ts | 4 +- .../client-lightsail/src/LightsailClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AllocateStaticIpCommand.ts | 6 +- .../AttachCertificateToDistributionCommand.ts | 6 +- .../src/commands/AttachDiskCommand.ts | 6 +- .../AttachInstancesToLoadBalancerCommand.ts | 6 +- ...AttachLoadBalancerTlsCertificateCommand.ts | 9 +- .../src/commands/AttachStaticIpCommand.ts | 6 +- .../CloseInstancePublicPortsCommand.ts | 6 +- .../src/commands/CopySnapshotCommand.ts | 6 +- .../commands/CreateBucketAccessKeyCommand.ts | 6 +- .../src/commands/CreateBucketCommand.ts | 6 +- .../src/commands/CreateCertificateCommand.ts | 6 +- .../CreateCloudFormationStackCommand.ts | 6 +- .../commands/CreateContactMethodCommand.ts | 6 +- .../commands/CreateContainerServiceCommand.ts | 6 +- ...CreateContainerServiceDeploymentCommand.ts | 9 +- ...ateContainerServiceRegistryLoginCommand.ts | 6 +- .../src/commands/CreateDiskCommand.ts | 6 +- .../commands/CreateDiskFromSnapshotCommand.ts | 6 +- .../src/commands/CreateDiskSnapshotCommand.ts | 6 +- .../src/commands/CreateDistributionCommand.ts | 6 +- .../src/commands/CreateDomainCommand.ts | 6 +- .../src/commands/CreateDomainEntryCommand.ts | 6 +- .../CreateGUISessionAccessDetailsCommand.ts | 6 +- .../commands/CreateInstanceSnapshotCommand.ts | 6 +- .../src/commands/CreateInstancesCommand.ts | 6 +- .../CreateInstancesFromSnapshotCommand.ts | 6 +- .../src/commands/CreateKeyPairCommand.ts | 6 +- .../src/commands/CreateLoadBalancerCommand.ts | 6 +- ...CreateLoadBalancerTlsCertificateCommand.ts | 9 +- .../CreateRelationalDatabaseCommand.ts | 6 +- ...teRelationalDatabaseFromSnapshotCommand.ts | 6 +- ...CreateRelationalDatabaseSnapshotCommand.ts | 9 +- .../src/commands/DeleteAlarmCommand.ts | 6 +- .../src/commands/DeleteAutoSnapshotCommand.ts | 6 +- .../commands/DeleteBucketAccessKeyCommand.ts | 6 +- .../src/commands/DeleteBucketCommand.ts | 6 +- .../src/commands/DeleteCertificateCommand.ts | 6 +- .../commands/DeleteContactMethodCommand.ts | 6 +- .../commands/DeleteContainerImageCommand.ts | 6 +- .../commands/DeleteContainerServiceCommand.ts | 6 +- .../src/commands/DeleteDiskCommand.ts | 6 +- .../src/commands/DeleteDiskSnapshotCommand.ts | 6 +- .../src/commands/DeleteDistributionCommand.ts | 6 +- .../src/commands/DeleteDomainCommand.ts | 6 +- .../src/commands/DeleteDomainEntryCommand.ts | 6 +- .../src/commands/DeleteInstanceCommand.ts | 6 +- .../commands/DeleteInstanceSnapshotCommand.ts | 6 +- .../src/commands/DeleteKeyPairCommand.ts | 6 +- .../commands/DeleteKnownHostKeysCommand.ts | 6 +- .../src/commands/DeleteLoadBalancerCommand.ts | 6 +- ...DeleteLoadBalancerTlsCertificateCommand.ts | 9 +- .../DeleteRelationalDatabaseCommand.ts | 6 +- ...DeleteRelationalDatabaseSnapshotCommand.ts | 9 +- ...etachCertificateFromDistributionCommand.ts | 9 +- .../src/commands/DetachDiskCommand.ts | 6 +- .../DetachInstancesFromLoadBalancerCommand.ts | 6 +- .../src/commands/DetachStaticIpCommand.ts | 6 +- .../src/commands/DisableAddOnCommand.ts | 6 +- .../commands/DownloadDefaultKeyPairCommand.ts | 6 +- .../src/commands/EnableAddOnCommand.ts | 6 +- .../src/commands/ExportSnapshotCommand.ts | 6 +- .../src/commands/GetActiveNamesCommand.ts | 6 +- .../src/commands/GetAlarmsCommand.ts | 6 +- .../src/commands/GetAutoSnapshotsCommand.ts | 6 +- .../src/commands/GetBlueprintsCommand.ts | 6 +- .../commands/GetBucketAccessKeysCommand.ts | 6 +- .../src/commands/GetBucketBundlesCommand.ts | 6 +- .../commands/GetBucketMetricDataCommand.ts | 6 +- .../src/commands/GetBucketsCommand.ts | 6 +- .../src/commands/GetBundlesCommand.ts | 6 +- .../src/commands/GetCertificatesCommand.ts | 6 +- .../GetCloudFormationStackRecordsCommand.ts | 6 +- .../src/commands/GetContactMethodsCommand.ts | 6 +- .../GetContainerAPIMetadataCommand.ts | 6 +- .../src/commands/GetContainerImagesCommand.ts | 6 +- .../src/commands/GetContainerLogCommand.ts | 6 +- .../GetContainerServiceDeploymentsCommand.ts | 6 +- .../GetContainerServiceMetricDataCommand.ts | 6 +- .../GetContainerServicePowersCommand.ts | 6 +- .../commands/GetContainerServicesCommand.ts | 6 +- .../src/commands/GetCostEstimateCommand.ts | 6 +- .../src/commands/GetDiskCommand.ts | 6 +- .../src/commands/GetDiskSnapshotCommand.ts | 6 +- .../src/commands/GetDiskSnapshotsCommand.ts | 6 +- .../src/commands/GetDisksCommand.ts | 6 +- .../commands/GetDistributionBundlesCommand.ts | 6 +- .../GetDistributionLatestCacheResetCommand.ts | 6 +- .../GetDistributionMetricDataCommand.ts | 6 +- .../src/commands/GetDistributionsCommand.ts | 6 +- .../src/commands/GetDomainCommand.ts | 6 +- .../src/commands/GetDomainsCommand.ts | 6 +- .../GetExportSnapshotRecordsCommand.ts | 6 +- .../GetInstanceAccessDetailsCommand.ts | 6 +- .../src/commands/GetInstanceCommand.ts | 6 +- .../commands/GetInstanceMetricDataCommand.ts | 6 +- .../commands/GetInstancePortStatesCommand.ts | 6 +- .../commands/GetInstanceSnapshotCommand.ts | 6 +- .../commands/GetInstanceSnapshotsCommand.ts | 6 +- .../src/commands/GetInstanceStateCommand.ts | 6 +- .../src/commands/GetInstancesCommand.ts | 6 +- .../src/commands/GetKeyPairCommand.ts | 6 +- .../src/commands/GetKeyPairsCommand.ts | 6 +- .../src/commands/GetLoadBalancerCommand.ts | 8 +- .../GetLoadBalancerMetricDataCommand.ts | 6 +- .../GetLoadBalancerTlsCertificatesCommand.ts | 6 +- .../GetLoadBalancerTlsPoliciesCommand.ts | 6 +- .../src/commands/GetLoadBalancersCommand.ts | 6 +- .../src/commands/GetOperationCommand.ts | 6 +- .../src/commands/GetOperationsCommand.ts | 6 +- .../GetOperationsForResourceCommand.ts | 6 +- .../src/commands/GetRegionsCommand.ts | 6 +- .../GetRelationalDatabaseBlueprintsCommand.ts | 6 +- .../GetRelationalDatabaseBundlesCommand.ts | 6 +- .../commands/GetRelationalDatabaseCommand.ts | 6 +- .../GetRelationalDatabaseEventsCommand.ts | 6 +- .../GetRelationalDatabaseLogEventsCommand.ts | 6 +- .../GetRelationalDatabaseLogStreamsCommand.ts | 6 +- ...tionalDatabaseMasterUserPasswordCommand.ts | 6 +- .../GetRelationalDatabaseMetricDataCommand.ts | 6 +- .../GetRelationalDatabaseParametersCommand.ts | 6 +- .../GetRelationalDatabaseSnapshotCommand.ts | 6 +- .../GetRelationalDatabaseSnapshotsCommand.ts | 6 +- .../commands/GetRelationalDatabasesCommand.ts | 6 +- .../src/commands/GetSetupHistoryCommand.ts | 6 +- .../src/commands/GetStaticIpCommand.ts | 6 +- .../src/commands/GetStaticIpsCommand.ts | 6 +- .../src/commands/ImportKeyPairCommand.ts | 6 +- .../src/commands/IsVpcPeeredCommand.ts | 6 +- .../OpenInstancePublicPortsCommand.ts | 6 +- .../src/commands/PeerVpcCommand.ts | 6 +- .../src/commands/PutAlarmCommand.ts | 6 +- .../commands/PutInstancePublicPortsCommand.ts | 6 +- .../src/commands/RebootInstanceCommand.ts | 6 +- .../RebootRelationalDatabaseCommand.ts | 6 +- .../commands/RegisterContainerImageCommand.ts | 6 +- .../src/commands/ReleaseStaticIpCommand.ts | 6 +- .../commands/ResetDistributionCacheCommand.ts | 6 +- .../SendContactMethodVerificationCommand.ts | 6 +- .../src/commands/SetIpAddressTypeCommand.ts | 6 +- .../SetResourceAccessForBucketCommand.ts | 6 +- .../src/commands/SetupInstanceHttpsCommand.ts | 6 +- .../src/commands/StartGUISessionCommand.ts | 6 +- .../src/commands/StartInstanceCommand.ts | 6 +- .../StartRelationalDatabaseCommand.ts | 6 +- .../src/commands/StopGUISessionCommand.ts | 6 +- .../src/commands/StopInstanceCommand.ts | 6 +- .../commands/StopRelationalDatabaseCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TestAlarmCommand.ts | 6 +- .../src/commands/UnpeerVpcCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBucketBundleCommand.ts | 6 +- .../src/commands/UpdateBucketCommand.ts | 6 +- .../commands/UpdateContainerServiceCommand.ts | 6 +- .../UpdateDistributionBundleCommand.ts | 6 +- .../src/commands/UpdateDistributionCommand.ts | 6 +- .../src/commands/UpdateDomainEntryCommand.ts | 6 +- .../UpdateInstanceMetadataOptionsCommand.ts | 6 +- .../UpdateLoadBalancerAttributeCommand.ts | 6 +- .../UpdateRelationalDatabaseCommand.ts | 6 +- ...dateRelationalDatabaseParametersCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/LightsailServiceException.ts | 2 +- clients/client-lightsail/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-lightsail/src/runtimeConfig.ts | 8 +- .../client-lightsail/src/runtimeExtensions.ts | 2 +- .../client-lightsail/src/schemas/schemas_0.ts | 2 +- clients/client-location/package.json | 12 +- clients/client-location/src/Location.ts | 4 +- clients/client-location/src/LocationClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateTrackerConsumerCommand.ts | 6 +- ...BatchDeleteDevicePositionHistoryCommand.ts | 9 +- .../commands/BatchDeleteGeofenceCommand.ts | 6 +- .../commands/BatchEvaluateGeofencesCommand.ts | 6 +- .../commands/BatchGetDevicePositionCommand.ts | 6 +- .../src/commands/BatchPutGeofenceCommand.ts | 6 +- .../BatchUpdateDevicePositionCommand.ts | 6 +- .../src/commands/CalculateRouteCommand.ts | 6 +- .../commands/CalculateRouteMatrixCommand.ts | 6 +- .../CreateGeofenceCollectionCommand.ts | 6 +- .../src/commands/CreateKeyCommand.ts | 6 +- .../src/commands/CreateMapCommand.ts | 6 +- .../src/commands/CreatePlaceIndexCommand.ts | 6 +- .../commands/CreateRouteCalculatorCommand.ts | 6 +- .../src/commands/CreateTrackerCommand.ts | 6 +- .../DeleteGeofenceCollectionCommand.ts | 6 +- .../src/commands/DeleteKeyCommand.ts | 6 +- .../src/commands/DeleteMapCommand.ts | 6 +- .../src/commands/DeletePlaceIndexCommand.ts | 6 +- .../commands/DeleteRouteCalculatorCommand.ts | 6 +- .../src/commands/DeleteTrackerCommand.ts | 6 +- .../DescribeGeofenceCollectionCommand.ts | 6 +- .../src/commands/DescribeKeyCommand.ts | 6 +- .../src/commands/DescribeMapCommand.ts | 6 +- .../src/commands/DescribePlaceIndexCommand.ts | 6 +- .../DescribeRouteCalculatorCommand.ts | 6 +- .../src/commands/DescribeTrackerCommand.ts | 6 +- .../DisassociateTrackerConsumerCommand.ts | 6 +- .../commands/ForecastGeofenceEventsCommand.ts | 6 +- .../src/commands/GetDevicePositionCommand.ts | 6 +- .../GetDevicePositionHistoryCommand.ts | 6 +- .../src/commands/GetGeofenceCommand.ts | 6 +- .../src/commands/GetMapGlyphsCommand.ts | 6 +- .../src/commands/GetMapSpritesCommand.ts | 6 +- .../commands/GetMapStyleDescriptorCommand.ts | 6 +- .../src/commands/GetMapTileCommand.ts | 6 +- .../src/commands/GetPlaceCommand.ts | 6 +- .../commands/ListDevicePositionsCommand.ts | 6 +- .../ListGeofenceCollectionsCommand.ts | 6 +- .../src/commands/ListGeofencesCommand.ts | 6 +- .../src/commands/ListKeysCommand.ts | 6 +- .../src/commands/ListMapsCommand.ts | 6 +- .../src/commands/ListPlaceIndexesCommand.ts | 6 +- .../commands/ListRouteCalculatorsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTrackerConsumersCommand.ts | 6 +- .../src/commands/ListTrackersCommand.ts | 6 +- .../src/commands/PutGeofenceCommand.ts | 6 +- .../SearchPlaceIndexForPositionCommand.ts | 6 +- .../SearchPlaceIndexForSuggestionsCommand.ts | 6 +- .../SearchPlaceIndexForTextCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateGeofenceCollectionCommand.ts | 6 +- .../src/commands/UpdateKeyCommand.ts | 6 +- .../src/commands/UpdateMapCommand.ts | 6 +- .../src/commands/UpdatePlaceIndexCommand.ts | 6 +- .../commands/UpdateRouteCalculatorCommand.ts | 6 +- .../src/commands/UpdateTrackerCommand.ts | 6 +- .../commands/VerifyDevicePositionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/LocationServiceException.ts | 2 +- clients/client-location/src/models/errors.ts | 2 +- .../ForecastGeofenceEventsPaginator.ts | 2 +- .../GetDevicePositionHistoryPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDevicePositionsPaginator.ts | 2 +- .../ListGeofenceCollectionsPaginator.ts | 2 +- .../src/pagination/ListGeofencesPaginator.ts | 2 +- .../src/pagination/ListKeysPaginator.ts | 2 +- .../src/pagination/ListMapsPaginator.ts | 2 +- .../pagination/ListPlaceIndexesPaginator.ts | 2 +- .../ListRouteCalculatorsPaginator.ts | 2 +- .../ListTrackerConsumersPaginator.ts | 2 +- .../src/pagination/ListTrackersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-location/src/runtimeConfig.ts | 8 +- .../client-location/src/runtimeExtensions.ts | 2 +- .../client-location/src/schemas/schemas_0.ts | 2 +- clients/client-lookoutequipment/package.json | 12 +- .../src/LookoutEquipment.ts | 4 +- .../src/LookoutEquipmentClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateDatasetCommand.ts | 10 +- .../CreateInferenceSchedulerCommand.ts | 10 +- .../src/commands/CreateLabelCommand.ts | 10 +- .../src/commands/CreateLabelGroupCommand.ts | 10 +- .../src/commands/CreateModelCommand.ts | 10 +- .../CreateRetrainingSchedulerCommand.ts | 10 +- .../src/commands/DeleteDatasetCommand.ts | 10 +- .../DeleteInferenceSchedulerCommand.ts | 10 +- .../src/commands/DeleteLabelCommand.ts | 10 +- .../src/commands/DeleteLabelGroupCommand.ts | 10 +- .../src/commands/DeleteModelCommand.ts | 10 +- .../commands/DeleteResourcePolicyCommand.ts | 10 +- .../DeleteRetrainingSchedulerCommand.ts | 10 +- .../DescribeDataIngestionJobCommand.ts | 10 +- .../src/commands/DescribeDatasetCommand.ts | 10 +- .../DescribeInferenceSchedulerCommand.ts | 10 +- .../src/commands/DescribeLabelCommand.ts | 10 +- .../src/commands/DescribeLabelGroupCommand.ts | 10 +- .../src/commands/DescribeModelCommand.ts | 10 +- .../commands/DescribeModelVersionCommand.ts | 10 +- .../commands/DescribeResourcePolicyCommand.ts | 10 +- .../DescribeRetrainingSchedulerCommand.ts | 10 +- .../src/commands/ImportDatasetCommand.ts | 10 +- .../src/commands/ImportModelVersionCommand.ts | 10 +- .../commands/ListDataIngestionJobsCommand.ts | 10 +- .../src/commands/ListDatasetsCommand.ts | 10 +- .../commands/ListInferenceEventsCommand.ts | 10 +- .../ListInferenceExecutionsCommand.ts | 10 +- .../ListInferenceSchedulersCommand.ts | 10 +- .../src/commands/ListLabelGroupsCommand.ts | 10 +- .../src/commands/ListLabelsCommand.ts | 10 +- .../src/commands/ListModelVersionsCommand.ts | 10 +- .../src/commands/ListModelsCommand.ts | 10 +- .../ListRetrainingSchedulersCommand.ts | 10 +- .../commands/ListSensorStatisticsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/PutResourcePolicyCommand.ts | 10 +- .../commands/StartDataIngestionJobCommand.ts | 10 +- .../StartInferenceSchedulerCommand.ts | 10 +- .../StartRetrainingSchedulerCommand.ts | 10 +- .../commands/StopInferenceSchedulerCommand.ts | 10 +- .../StopRetrainingSchedulerCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../UpdateActiveModelVersionCommand.ts | 10 +- .../UpdateInferenceSchedulerCommand.ts | 10 +- .../src/commands/UpdateLabelGroupCommand.ts | 10 +- .../src/commands/UpdateModelCommand.ts | 10 +- .../UpdateRetrainingSchedulerCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../LookoutEquipmentServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDataIngestionJobsPaginator.ts | 2 +- .../src/pagination/ListDatasetsPaginator.ts | 2 +- .../ListInferenceEventsPaginator.ts | 2 +- .../ListInferenceExecutionsPaginator.ts | 2 +- .../ListInferenceSchedulersPaginator.ts | 2 +- .../pagination/ListLabelGroupsPaginator.ts | 2 +- .../src/pagination/ListLabelsPaginator.ts | 2 +- .../pagination/ListModelVersionsPaginator.ts | 2 +- .../src/pagination/ListModelsPaginator.ts | 2 +- .../ListRetrainingSchedulersPaginator.ts | 2 +- .../ListSensorStatisticsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-m2/package.json | 12 +- clients/client-m2/src/M2.ts | 4 +- clients/client-m2/src/M2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CancelBatchJobExecutionCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../CreateDataSetExportTaskCommand.ts | 6 +- .../CreateDataSetImportTaskCommand.ts | 6 +- .../src/commands/CreateDeploymentCommand.ts | 6 +- .../src/commands/CreateEnvironmentCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- ...DeleteApplicationFromEnvironmentCommand.ts | 9 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../commands/GetApplicationVersionCommand.ts | 6 +- .../commands/GetBatchJobExecutionCommand.ts | 6 +- .../src/commands/GetDataSetDetailsCommand.ts | 6 +- .../commands/GetDataSetExportTaskCommand.ts | 6 +- .../commands/GetDataSetImportTaskCommand.ts | 6 +- .../src/commands/GetDeploymentCommand.ts | 6 +- .../src/commands/GetEnvironmentCommand.ts | 6 +- .../GetSignedBluinsightsUrlCommand.ts | 6 +- .../ListApplicationVersionsCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../ListBatchJobDefinitionsCommand.ts | 6 +- .../commands/ListBatchJobExecutionsCommand.ts | 6 +- .../ListBatchJobRestartPointsCommand.ts | 6 +- .../ListDataSetExportHistoryCommand.ts | 6 +- .../ListDataSetImportHistoryCommand.ts | 6 +- .../src/commands/ListDataSetsCommand.ts | 6 +- .../src/commands/ListDeploymentsCommand.ts | 6 +- .../src/commands/ListEngineVersionsCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartApplicationCommand.ts | 6 +- .../src/commands/StartBatchJobCommand.ts | 6 +- .../src/commands/StopApplicationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../src/commands/UpdateEnvironmentCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-m2/src/extensionConfiguration.ts | 8 +- .../src/models/M2ServiceException.ts | 2 +- clients/client-m2/src/models/errors.ts | 2 +- .../client-m2/src/pagination/Interfaces.ts | 2 +- .../ListApplicationVersionsPaginator.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../ListBatchJobDefinitionsPaginator.ts | 2 +- .../ListBatchJobExecutionsPaginator.ts | 2 +- .../ListDataSetExportHistoryPaginator.ts | 2 +- .../ListDataSetImportHistoryPaginator.ts | 2 +- .../src/pagination/ListDataSetsPaginator.ts | 2 +- .../pagination/ListDeploymentsPaginator.ts | 2 +- .../pagination/ListEngineVersionsPaginator.ts | 2 +- .../pagination/ListEnvironmentsPaginator.ts | 2 +- .../client-m2/src/runtimeConfig.browser.ts | 7 +- clients/client-m2/src/runtimeConfig.native.ts | 2 +- clients/client-m2/src/runtimeConfig.shared.ts | 4 +- clients/client-m2/src/runtimeConfig.ts | 8 +- clients/client-m2/src/runtimeExtensions.ts | 2 +- clients/client-m2/src/schemas/schemas_0.ts | 2 +- clients/client-machine-learning/package.json | 12 +- .../src/MachineLearning.ts | 116 +- .../src/MachineLearningClient.ts | 124 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddTagsCommand.ts | 10 +- .../commands/CreateBatchPredictionCommand.ts | 10 +- .../CreateDataSourceFromRDSCommand.ts | 10 +- .../CreateDataSourceFromRedshiftCommand.ts | 10 +- .../commands/CreateDataSourceFromS3Command.ts | 10 +- .../src/commands/CreateEvaluationCommand.ts | 10 +- .../src/commands/CreateMLModelCommand.ts | 10 +- .../commands/CreateRealtimeEndpointCommand.ts | 10 +- .../commands/DeleteBatchPredictionCommand.ts | 10 +- .../src/commands/DeleteDataSourceCommand.ts | 10 +- .../src/commands/DeleteEvaluationCommand.ts | 10 +- .../src/commands/DeleteMLModelCommand.ts | 10 +- .../commands/DeleteRealtimeEndpointCommand.ts | 10 +- .../src/commands/DeleteTagsCommand.ts | 10 +- .../DescribeBatchPredictionsCommand.ts | 10 +- .../commands/DescribeDataSourcesCommand.ts | 10 +- .../commands/DescribeEvaluationsCommand.ts | 10 +- .../src/commands/DescribeMLModelsCommand.ts | 10 +- .../src/commands/DescribeTagsCommand.ts | 10 +- .../src/commands/GetBatchPredictionCommand.ts | 10 +- .../src/commands/GetDataSourceCommand.ts | 10 +- .../src/commands/GetEvaluationCommand.ts | 10 +- .../src/commands/GetMLModelCommand.ts | 10 +- .../src/commands/PredictCommand.ts | 10 +- .../commands/UpdateBatchPredictionCommand.ts | 10 +- .../src/commands/UpdateDataSourceCommand.ts | 10 +- .../src/commands/UpdateEvaluationCommand.ts | 10 +- .../src/commands/UpdateMLModelCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MachineLearningServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/models/models_0.ts | 2 +- .../DescribeBatchPredictionsPaginator.ts | 2 +- .../DescribeDataSourcesPaginator.ts | 2 +- .../DescribeEvaluationsPaginator.ts | 2 +- .../pagination/DescribeMLModelsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../waitForBatchPredictionAvailable.ts | 2 +- .../src/waiters/waitForDataSourceAvailable.ts | 5 +- .../src/waiters/waitForEvaluationAvailable.ts | 5 +- .../src/waiters/waitForMLModelAvailable.ts | 2 +- clients/client-macie2/package.json | 12 +- clients/client-macie2/src/Macie2.ts | 4 +- clients/client-macie2/src/Macie2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptInvitationCommand.ts | 6 +- .../BatchGetCustomDataIdentifiersCommand.ts | 6 +- ...UpdateAutomatedDiscoveryAccountsCommand.ts | 6 +- .../src/commands/CreateAllowListCommand.ts | 6 +- .../CreateClassificationJobCommand.ts | 6 +- .../CreateCustomDataIdentifierCommand.ts | 6 +- .../commands/CreateFindingsFilterCommand.ts | 6 +- .../src/commands/CreateInvitationsCommand.ts | 6 +- .../src/commands/CreateMemberCommand.ts | 6 +- .../commands/CreateSampleFindingsCommand.ts | 6 +- .../src/commands/DeclineInvitationsCommand.ts | 6 +- .../src/commands/DeleteAllowListCommand.ts | 6 +- .../DeleteCustomDataIdentifierCommand.ts | 6 +- .../commands/DeleteFindingsFilterCommand.ts | 6 +- .../src/commands/DeleteInvitationsCommand.ts | 6 +- .../src/commands/DeleteMemberCommand.ts | 6 +- .../src/commands/DescribeBucketsCommand.ts | 6 +- .../DescribeClassificationJobCommand.ts | 6 +- ...escribeOrganizationConfigurationCommand.ts | 6 +- .../src/commands/DisableMacieCommand.ts | 6 +- .../DisableOrganizationAdminAccountCommand.ts | 9 +- ...ssociateFromAdministratorAccountCommand.ts | 6 +- .../DisassociateFromMasterAccountCommand.ts | 6 +- .../src/commands/DisassociateMemberCommand.ts | 6 +- .../src/commands/EnableMacieCommand.ts | 6 +- .../EnableOrganizationAdminAccountCommand.ts | 6 +- .../GetAdministratorAccountCommand.ts | 6 +- .../src/commands/GetAllowListCommand.ts | 6 +- ...tAutomatedDiscoveryConfigurationCommand.ts | 6 +- .../commands/GetBucketStatisticsCommand.ts | 6 +- ...lassificationExportConfigurationCommand.ts | 6 +- .../commands/GetClassificationScopeCommand.ts | 6 +- .../GetCustomDataIdentifierCommand.ts | 6 +- .../commands/GetFindingStatisticsCommand.ts | 6 +- .../src/commands/GetFindingsCommand.ts | 6 +- .../src/commands/GetFindingsFilterCommand.ts | 6 +- ...FindingsPublicationConfigurationCommand.ts | 6 +- .../commands/GetInvitationsCountCommand.ts | 6 +- .../src/commands/GetMacieSessionCommand.ts | 6 +- .../src/commands/GetMasterAccountCommand.ts | 6 +- .../src/commands/GetMemberCommand.ts | 6 +- .../src/commands/GetResourceProfileCommand.ts | 6 +- .../commands/GetRevealConfigurationCommand.ts | 6 +- ...itiveDataOccurrencesAvailabilityCommand.ts | 6 +- .../GetSensitiveDataOccurrencesCommand.ts | 6 +- ...GetSensitivityInspectionTemplateCommand.ts | 9 +- .../src/commands/GetUsageStatisticsCommand.ts | 6 +- .../src/commands/GetUsageTotalsCommand.ts | 6 +- .../src/commands/ListAllowListsCommand.ts | 6 +- .../ListAutomatedDiscoveryAccountsCommand.ts | 6 +- .../commands/ListClassificationJobsCommand.ts | 6 +- .../ListClassificationScopesCommand.ts | 6 +- .../ListCustomDataIdentifiersCommand.ts | 6 +- .../src/commands/ListFindingsCommand.ts | 6 +- .../commands/ListFindingsFiltersCommand.ts | 6 +- .../src/commands/ListInvitationsCommand.ts | 6 +- .../ListManagedDataIdentifiersCommand.ts | 6 +- .../src/commands/ListMembersCommand.ts | 6 +- .../ListOrganizationAdminAccountsCommand.ts | 6 +- .../ListResourceProfileArtifactsCommand.ts | 6 +- .../ListResourceProfileDetectionsCommand.ts | 6 +- ...stSensitivityInspectionTemplatesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...lassificationExportConfigurationCommand.ts | 6 +- ...FindingsPublicationConfigurationCommand.ts | 6 +- .../src/commands/SearchResourcesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../TestCustomDataIdentifierCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAllowListCommand.ts | 6 +- ...eAutomatedDiscoveryConfigurationCommand.ts | 6 +- .../UpdateClassificationJobCommand.ts | 6 +- .../UpdateClassificationScopeCommand.ts | 6 +- .../commands/UpdateFindingsFilterCommand.ts | 6 +- .../src/commands/UpdateMacieSessionCommand.ts | 6 +- .../commands/UpdateMemberSessionCommand.ts | 6 +- .../UpdateOrganizationConfigurationCommand.ts | 9 +- .../commands/UpdateResourceProfileCommand.ts | 6 +- .../UpdateResourceProfileDetectionsCommand.ts | 9 +- .../UpdateRevealConfigurationCommand.ts | 6 +- ...ateSensitivityInspectionTemplateCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/Macie2ServiceException.ts | 2 +- clients/client-macie2/src/models/errors.ts | 2 +- .../pagination/DescribeBucketsPaginator.ts | 2 +- .../pagination/GetUsageStatisticsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAllowListsPaginator.ts | 2 +- ...ListAutomatedDiscoveryAccountsPaginator.ts | 2 +- .../ListClassificationJobsPaginator.ts | 2 +- .../ListClassificationScopesPaginator.ts | 2 +- .../ListCustomDataIdentifiersPaginator.ts | 2 +- .../ListFindingsFiltersPaginator.ts | 2 +- .../src/pagination/ListFindingsPaginator.ts | 2 +- .../pagination/ListInvitationsPaginator.ts | 2 +- .../ListManagedDataIdentifiersPaginator.ts | 2 +- .../src/pagination/ListMembersPaginator.ts | 2 +- .../ListOrganizationAdminAccountsPaginator.ts | 2 +- .../ListResourceProfileArtifactsPaginator.ts | 2 +- .../ListResourceProfileDetectionsPaginator.ts | 2 +- ...SensitivityInspectionTemplatesPaginator.ts | 2 +- .../pagination/SearchResourcesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-macie2/src/runtimeConfig.native.ts | 2 +- .../client-macie2/src/runtimeConfig.shared.ts | 4 +- clients/client-macie2/src/runtimeConfig.ts | 8 +- .../client-macie2/src/runtimeExtensions.ts | 2 +- .../client-macie2/src/schemas/schemas_0.ts | 2 +- clients/client-mailmanager/package.json | 12 +- clients/client-mailmanager/src/MailManager.ts | 4 +- .../src/MailManagerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateAddonInstanceCommand.ts | 6 +- .../CreateAddonSubscriptionCommand.ts | 6 +- .../src/commands/CreateAddressListCommand.ts | 6 +- .../CreateAddressListImportJobCommand.ts | 6 +- .../src/commands/CreateArchiveCommand.ts | 6 +- .../src/commands/CreateIngressPointCommand.ts | 6 +- .../src/commands/CreateRelayCommand.ts | 6 +- .../src/commands/CreateRuleSetCommand.ts | 6 +- .../commands/CreateTrafficPolicyCommand.ts | 6 +- .../commands/DeleteAddonInstanceCommand.ts | 6 +- .../DeleteAddonSubscriptionCommand.ts | 6 +- .../src/commands/DeleteAddressListCommand.ts | 6 +- .../src/commands/DeleteArchiveCommand.ts | 6 +- .../src/commands/DeleteIngressPointCommand.ts | 6 +- .../src/commands/DeleteRelayCommand.ts | 6 +- .../src/commands/DeleteRuleSetCommand.ts | 6 +- .../commands/DeleteTrafficPolicyCommand.ts | 6 +- .../DeregisterMemberFromAddressListCommand.ts | 9 +- .../src/commands/GetAddonInstanceCommand.ts | 6 +- .../commands/GetAddonSubscriptionCommand.ts | 6 +- .../src/commands/GetAddressListCommand.ts | 6 +- .../GetAddressListImportJobCommand.ts | 6 +- .../src/commands/GetArchiveCommand.ts | 6 +- .../src/commands/GetArchiveExportCommand.ts | 6 +- .../src/commands/GetArchiveMessageCommand.ts | 6 +- .../GetArchiveMessageContentCommand.ts | 6 +- .../src/commands/GetArchiveSearchCommand.ts | 6 +- .../GetArchiveSearchResultsCommand.ts | 6 +- .../src/commands/GetIngressPointCommand.ts | 6 +- .../commands/GetMemberOfAddressListCommand.ts | 6 +- .../src/commands/GetRelayCommand.ts | 6 +- .../src/commands/GetRuleSetCommand.ts | 6 +- .../src/commands/GetTrafficPolicyCommand.ts | 6 +- .../src/commands/ListAddonInstancesCommand.ts | 6 +- .../commands/ListAddonSubscriptionsCommand.ts | 6 +- .../ListAddressListImportJobsCommand.ts | 6 +- .../src/commands/ListAddressListsCommand.ts | 6 +- .../src/commands/ListArchiveExportsCommand.ts | 6 +- .../commands/ListArchiveSearchesCommand.ts | 6 +- .../src/commands/ListArchivesCommand.ts | 6 +- .../src/commands/ListIngressPointsCommand.ts | 6 +- .../ListMembersOfAddressListCommand.ts | 6 +- .../src/commands/ListRelaysCommand.ts | 6 +- .../src/commands/ListRuleSetsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTrafficPoliciesCommand.ts | 6 +- .../RegisterMemberToAddressListCommand.ts | 6 +- .../StartAddressListImportJobCommand.ts | 6 +- .../src/commands/StartArchiveExportCommand.ts | 6 +- .../src/commands/StartArchiveSearchCommand.ts | 6 +- .../StopAddressListImportJobCommand.ts | 6 +- .../src/commands/StopArchiveExportCommand.ts | 6 +- .../src/commands/StopArchiveSearchCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateArchiveCommand.ts | 6 +- .../src/commands/UpdateIngressPointCommand.ts | 6 +- .../src/commands/UpdateRelayCommand.ts | 6 +- .../src/commands/UpdateRuleSetCommand.ts | 6 +- .../commands/UpdateTrafficPolicyCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/MailManagerServiceException.ts | 2 +- .../client-mailmanager/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAddonInstancesPaginator.ts | 2 +- .../ListAddonSubscriptionsPaginator.ts | 2 +- .../ListAddressListImportJobsPaginator.ts | 2 +- .../pagination/ListAddressListsPaginator.ts | 2 +- .../pagination/ListArchiveExportsPaginator.ts | 2 +- .../ListArchiveSearchesPaginator.ts | 2 +- .../src/pagination/ListArchivesPaginator.ts | 2 +- .../pagination/ListIngressPointsPaginator.ts | 2 +- .../ListMembersOfAddressListPaginator.ts | 2 +- .../src/pagination/ListRelaysPaginator.ts | 2 +- .../src/pagination/ListRuleSetsPaginator.ts | 2 +- .../ListTrafficPoliciesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-mailmanager/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ManagedBlockchainQuery.ts | 4 +- .../src/ManagedBlockchainQueryClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchGetTokenBalanceCommand.ts | 6 +- .../src/commands/GetAssetContractCommand.ts | 6 +- .../src/commands/GetTokenBalanceCommand.ts | 6 +- .../src/commands/GetTransactionCommand.ts | 6 +- .../src/commands/ListAssetContractsCommand.ts | 6 +- .../ListFilteredTransactionEventsCommand.ts | 6 +- .../src/commands/ListTokenBalancesCommand.ts | 6 +- .../commands/ListTransactionEventsCommand.ts | 6 +- .../src/commands/ListTransactionsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ManagedBlockchainQueryServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAssetContractsPaginator.ts | 2 +- .../ListFilteredTransactionEventsPaginator.ts | 2 +- .../pagination/ListTokenBalancesPaginator.ts | 2 +- .../ListTransactionEventsPaginator.ts | 2 +- .../pagination/ListTransactionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-managedblockchain/package.json | 12 +- .../src/ManagedBlockchain.ts | 4 +- .../src/ManagedBlockchainClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateAccessorCommand.ts | 6 +- .../src/commands/CreateMemberCommand.ts | 6 +- .../src/commands/CreateNetworkCommand.ts | 6 +- .../src/commands/CreateNodeCommand.ts | 6 +- .../src/commands/CreateProposalCommand.ts | 6 +- .../src/commands/DeleteAccessorCommand.ts | 6 +- .../src/commands/DeleteMemberCommand.ts | 6 +- .../src/commands/DeleteNodeCommand.ts | 6 +- .../src/commands/GetAccessorCommand.ts | 6 +- .../src/commands/GetMemberCommand.ts | 6 +- .../src/commands/GetNetworkCommand.ts | 6 +- .../src/commands/GetNodeCommand.ts | 6 +- .../src/commands/GetProposalCommand.ts | 6 +- .../src/commands/ListAccessorsCommand.ts | 6 +- .../src/commands/ListInvitationsCommand.ts | 6 +- .../src/commands/ListMembersCommand.ts | 6 +- .../src/commands/ListNetworksCommand.ts | 6 +- .../src/commands/ListNodesCommand.ts | 6 +- .../src/commands/ListProposalVotesCommand.ts | 6 +- .../src/commands/ListProposalsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RejectInvitationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateMemberCommand.ts | 6 +- .../src/commands/UpdateNodeCommand.ts | 6 +- .../src/commands/VoteOnProposalCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ManagedBlockchainServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAccessorsPaginator.ts | 2 +- .../pagination/ListInvitationsPaginator.ts | 2 +- .../src/pagination/ListMembersPaginator.ts | 2 +- .../src/pagination/ListNetworksPaginator.ts | 2 +- .../src/pagination/ListNodesPaginator.ts | 2 +- .../pagination/ListProposalVotesPaginator.ts | 2 +- .../src/pagination/ListProposalsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-marketplace-agreement/package.json | 12 +- .../src/MarketplaceAgreement.ts | 4 +- .../src/MarketplaceAgreementClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DescribeAgreementCommand.ts | 6 +- .../src/commands/GetAgreementTermsCommand.ts | 6 +- .../src/commands/SearchAgreementsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../MarketplaceAgreementServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../pagination/GetAgreementTermsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/SearchAgreementsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-marketplace-catalog/package.json | 12 +- .../src/MarketplaceCatalog.ts | 4 +- .../src/MarketplaceCatalogClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../commands/BatchDescribeEntitiesCommand.ts | 6 +- .../src/commands/CancelChangeSetCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DescribeChangeSetCommand.ts | 6 +- .../src/commands/DescribeEntityCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/ListChangeSetsCommand.ts | 6 +- .../src/commands/ListEntitiesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/StartChangeSetCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../MarketplaceCatalogServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChangeSetsPaginator.ts | 2 +- .../src/pagination/ListEntitiesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/MarketplaceCommerceAnalytics.ts | 7 +- .../src/MarketplaceCommerceAnalyticsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GenerateDataSetCommand.ts | 6 +- .../commands/StartSupportDataExportCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...tplaceCommerceAnalyticsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/MarketplaceDeployment.ts | 4 +- .../src/MarketplaceDeploymentClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/PutDeploymentParameterCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../MarketplaceDeploymentServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/MarketplaceEntitlementService.ts | 7 +- .../MarketplaceEntitlementServiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetEntitlementsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...placeEntitlementServiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../pagination/GetEntitlementsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-marketplace-metering/package.json | 12 +- .../src/MarketplaceMetering.ts | 4 +- .../src/MarketplaceMeteringClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/BatchMeterUsageCommand.ts | 6 +- .../src/commands/MeterUsageCommand.ts | 6 +- .../src/commands/RegisterUsageCommand.ts | 6 +- .../src/commands/ResolveCustomerCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../MarketplaceMeteringServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-marketplace-reporting/package.json | 12 +- .../src/MarketplaceReporting.ts | 4 +- .../src/MarketplaceReportingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetBuyerDashboardCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../MarketplaceReportingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-mediaconnect/package.json | 12 +- .../client-mediaconnect/src/MediaConnect.ts | 4 +- .../src/MediaConnectClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddBridgeOutputsCommand.ts | 6 +- .../src/commands/AddBridgeSourcesCommand.ts | 6 +- .../commands/AddFlowMediaStreamsCommand.ts | 6 +- .../src/commands/AddFlowOutputsCommand.ts | 6 +- .../src/commands/AddFlowSourcesCommand.ts | 6 +- .../commands/AddFlowVpcInterfacesCommand.ts | 6 +- .../commands/BatchGetRouterInputCommand.ts | 6 +- .../BatchGetRouterNetworkInterfaceCommand.ts | 6 +- .../commands/BatchGetRouterOutputCommand.ts | 6 +- .../src/commands/CreateBridgeCommand.ts | 6 +- .../src/commands/CreateFlowCommand.ts | 6 +- .../src/commands/CreateGatewayCommand.ts | 6 +- .../src/commands/CreateRouterInputCommand.ts | 6 +- .../CreateRouterNetworkInterfaceCommand.ts | 6 +- .../src/commands/CreateRouterOutputCommand.ts | 6 +- .../src/commands/DeleteBridgeCommand.ts | 6 +- .../src/commands/DeleteFlowCommand.ts | 6 +- .../src/commands/DeleteGatewayCommand.ts | 6 +- .../src/commands/DeleteRouterInputCommand.ts | 6 +- .../DeleteRouterNetworkInterfaceCommand.ts | 6 +- .../src/commands/DeleteRouterOutputCommand.ts | 6 +- .../DeregisterGatewayInstanceCommand.ts | 6 +- .../src/commands/DescribeBridgeCommand.ts | 6 +- .../src/commands/DescribeFlowCommand.ts | 6 +- .../DescribeFlowSourceMetadataCommand.ts | 6 +- .../DescribeFlowSourceThumbnailCommand.ts | 6 +- .../src/commands/DescribeGatewayCommand.ts | 6 +- .../DescribeGatewayInstanceCommand.ts | 6 +- .../src/commands/DescribeOfferingCommand.ts | 6 +- .../commands/DescribeReservationCommand.ts | 6 +- .../src/commands/GetRouterInputCommand.ts | 6 +- .../GetRouterInputSourceMetadataCommand.ts | 6 +- .../GetRouterInputThumbnailCommand.ts | 6 +- .../GetRouterNetworkInterfaceCommand.ts | 6 +- .../src/commands/GetRouterOutputCommand.ts | 6 +- .../commands/GrantFlowEntitlementsCommand.ts | 6 +- .../src/commands/ListBridgesCommand.ts | 6 +- .../src/commands/ListEntitlementsCommand.ts | 6 +- .../src/commands/ListFlowsCommand.ts | 6 +- .../commands/ListGatewayInstancesCommand.ts | 6 +- .../src/commands/ListGatewaysCommand.ts | 6 +- .../src/commands/ListOfferingsCommand.ts | 6 +- .../src/commands/ListReservationsCommand.ts | 6 +- .../src/commands/ListRouterInputsCommand.ts | 6 +- .../ListRouterNetworkInterfacesCommand.ts | 6 +- .../src/commands/ListRouterOutputsCommand.ts | 6 +- .../ListTagsForGlobalResourceCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PurchaseOfferingCommand.ts | 6 +- .../src/commands/RemoveBridgeOutputCommand.ts | 6 +- .../src/commands/RemoveBridgeSourceCommand.ts | 6 +- .../commands/RemoveFlowMediaStreamCommand.ts | 6 +- .../src/commands/RemoveFlowOutputCommand.ts | 6 +- .../src/commands/RemoveFlowSourceCommand.ts | 6 +- .../commands/RemoveFlowVpcInterfaceCommand.ts | 6 +- .../src/commands/RestartRouterInputCommand.ts | 6 +- .../commands/RestartRouterOutputCommand.ts | 6 +- .../commands/RevokeFlowEntitlementCommand.ts | 6 +- .../src/commands/StartFlowCommand.ts | 6 +- .../src/commands/StartRouterInputCommand.ts | 6 +- .../src/commands/StartRouterOutputCommand.ts | 6 +- .../src/commands/StopFlowCommand.ts | 6 +- .../src/commands/StopRouterInputCommand.ts | 6 +- .../src/commands/StopRouterOutputCommand.ts | 6 +- .../src/commands/TagGlobalResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TakeRouterInputCommand.ts | 6 +- .../commands/UntagGlobalResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateBridgeCommand.ts | 6 +- .../src/commands/UpdateBridgeOutputCommand.ts | 6 +- .../src/commands/UpdateBridgeSourceCommand.ts | 6 +- .../src/commands/UpdateBridgeStateCommand.ts | 6 +- .../src/commands/UpdateFlowCommand.ts | 6 +- .../commands/UpdateFlowEntitlementCommand.ts | 6 +- .../commands/UpdateFlowMediaStreamCommand.ts | 6 +- .../src/commands/UpdateFlowOutputCommand.ts | 6 +- .../src/commands/UpdateFlowSourceCommand.ts | 6 +- .../commands/UpdateGatewayInstanceCommand.ts | 6 +- .../src/commands/UpdateRouterInputCommand.ts | 6 +- .../UpdateRouterNetworkInterfaceCommand.ts | 6 +- .../src/commands/UpdateRouterOutputCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MediaConnectServiceException.ts | 2 +- .../client-mediaconnect/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListBridgesPaginator.ts | 2 +- .../pagination/ListEntitlementsPaginator.ts | 2 +- .../src/pagination/ListFlowsPaginator.ts | 2 +- .../ListGatewayInstancesPaginator.ts | 2 +- .../src/pagination/ListGatewaysPaginator.ts | 2 +- .../src/pagination/ListOfferingsPaginator.ts | 2 +- .../pagination/ListReservationsPaginator.ts | 2 +- .../pagination/ListRouterInputsPaginator.ts | 2 +- .../ListRouterNetworkInterfacesPaginator.ts | 2 +- .../pagination/ListRouterOutputsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-mediaconnect/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-mediaconvert/package.json | 12 +- .../client-mediaconvert/src/MediaConvert.ts | 4 +- .../src/MediaConvertClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateCertificateCommand.ts | 6 +- .../src/commands/CancelJobCommand.ts | 6 +- .../src/commands/CreateJobCommand.ts | 6 +- .../src/commands/CreateJobTemplateCommand.ts | 6 +- .../src/commands/CreatePresetCommand.ts | 6 +- .../src/commands/CreateQueueCommand.ts | 6 +- .../commands/CreateResourceShareCommand.ts | 6 +- .../src/commands/DeleteJobTemplateCommand.ts | 6 +- .../src/commands/DeletePolicyCommand.ts | 6 +- .../src/commands/DeletePresetCommand.ts | 6 +- .../src/commands/DeleteQueueCommand.ts | 6 +- .../src/commands/DescribeEndpointsCommand.ts | 6 +- .../DisassociateCertificateCommand.ts | 6 +- .../src/commands/GetJobCommand.ts | 6 +- .../src/commands/GetJobTemplateCommand.ts | 6 +- .../commands/GetJobsQueryResultsCommand.ts | 6 +- .../src/commands/GetPolicyCommand.ts | 6 +- .../src/commands/GetPresetCommand.ts | 6 +- .../src/commands/GetQueueCommand.ts | 6 +- .../src/commands/ListJobTemplatesCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../src/commands/ListPresetsCommand.ts | 6 +- .../src/commands/ListQueuesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListVersionsCommand.ts | 6 +- .../src/commands/ProbeCommand.ts | 6 +- .../src/commands/PutPolicyCommand.ts | 6 +- .../src/commands/SearchJobsCommand.ts | 6 +- .../src/commands/StartJobsQueryCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateJobTemplateCommand.ts | 6 +- .../src/commands/UpdatePresetCommand.ts | 6 +- .../src/commands/UpdateQueueCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MediaConvertServiceException.ts | 2 +- .../client-mediaconvert/src/models/errors.ts | 2 +- .../pagination/DescribeEndpointsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListJobTemplatesPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../src/pagination/ListPresetsPaginator.ts | 2 +- .../src/pagination/ListQueuesPaginator.ts | 2 +- .../src/pagination/ListVersionsPaginator.ts | 2 +- .../src/pagination/SearchJobsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-mediaconvert/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-medialive/package.json | 12 +- clients/client-medialive/src/MediaLive.ts | 4 +- .../client-medialive/src/MediaLiveClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptInputDeviceTransferCommand.ts | 6 +- .../src/commands/BatchDeleteCommand.ts | 6 +- .../src/commands/BatchStartCommand.ts | 6 +- .../src/commands/BatchStopCommand.ts | 6 +- .../commands/BatchUpdateScheduleCommand.ts | 6 +- .../CancelInputDeviceTransferCommand.ts | 6 +- .../src/commands/ClaimDeviceCommand.ts | 6 +- .../src/commands/CreateChannelCommand.ts | 6 +- .../CreateChannelPlacementGroupCommand.ts | 6 +- .../CreateCloudWatchAlarmTemplateCommand.ts | 6 +- ...eateCloudWatchAlarmTemplateGroupCommand.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../CreateEventBridgeRuleTemplateCommand.ts | 6 +- ...eateEventBridgeRuleTemplateGroupCommand.ts | 6 +- .../src/commands/CreateInputCommand.ts | 6 +- .../CreateInputSecurityGroupCommand.ts | 6 +- .../src/commands/CreateMultiplexCommand.ts | 6 +- .../commands/CreateMultiplexProgramCommand.ts | 6 +- .../src/commands/CreateNetworkCommand.ts | 6 +- .../src/commands/CreateNodeCommand.ts | 6 +- .../CreateNodeRegistrationScriptCommand.ts | 6 +- .../src/commands/CreatePartnerInputCommand.ts | 6 +- .../src/commands/CreateSdiSourceCommand.ts | 6 +- .../src/commands/CreateSignalMapCommand.ts | 6 +- .../src/commands/CreateTagsCommand.ts | 6 +- .../src/commands/DeleteChannelCommand.ts | 6 +- .../DeleteChannelPlacementGroupCommand.ts | 6 +- .../DeleteCloudWatchAlarmTemplateCommand.ts | 6 +- ...leteCloudWatchAlarmTemplateGroupCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../DeleteEventBridgeRuleTemplateCommand.ts | 6 +- ...leteEventBridgeRuleTemplateGroupCommand.ts | 6 +- .../src/commands/DeleteInputCommand.ts | 6 +- .../DeleteInputSecurityGroupCommand.ts | 6 +- .../src/commands/DeleteMultiplexCommand.ts | 6 +- .../commands/DeleteMultiplexProgramCommand.ts | 6 +- .../src/commands/DeleteNetworkCommand.ts | 6 +- .../src/commands/DeleteNodeCommand.ts | 6 +- .../src/commands/DeleteReservationCommand.ts | 6 +- .../src/commands/DeleteScheduleCommand.ts | 6 +- .../src/commands/DeleteSdiSourceCommand.ts | 6 +- .../src/commands/DeleteSignalMapCommand.ts | 6 +- .../src/commands/DeleteTagsCommand.ts | 6 +- .../DescribeAccountConfigurationCommand.ts | 6 +- .../src/commands/DescribeChannelCommand.ts | 6 +- .../DescribeChannelPlacementGroupCommand.ts | 6 +- .../src/commands/DescribeClusterCommand.ts | 6 +- .../src/commands/DescribeInputCommand.ts | 6 +- .../commands/DescribeInputDeviceCommand.ts | 6 +- .../DescribeInputDeviceThumbnailCommand.ts | 6 +- .../DescribeInputSecurityGroupCommand.ts | 6 +- .../src/commands/DescribeMultiplexCommand.ts | 6 +- .../DescribeMultiplexProgramCommand.ts | 6 +- .../src/commands/DescribeNetworkCommand.ts | 6 +- .../src/commands/DescribeNodeCommand.ts | 6 +- .../src/commands/DescribeOfferingCommand.ts | 6 +- .../commands/DescribeReservationCommand.ts | 6 +- .../src/commands/DescribeScheduleCommand.ts | 6 +- .../src/commands/DescribeSdiSourceCommand.ts | 6 +- .../src/commands/DescribeThumbnailsCommand.ts | 6 +- .../GetCloudWatchAlarmTemplateCommand.ts | 6 +- .../GetCloudWatchAlarmTemplateGroupCommand.ts | 9 +- .../GetEventBridgeRuleTemplateCommand.ts | 6 +- .../GetEventBridgeRuleTemplateGroupCommand.ts | 9 +- .../src/commands/GetSignalMapCommand.ts | 6 +- .../src/commands/ListAlertsCommand.ts | 6 +- .../ListChannelPlacementGroupsCommand.ts | 6 +- .../src/commands/ListChannelsCommand.ts | 6 +- ...istCloudWatchAlarmTemplateGroupsCommand.ts | 6 +- .../ListCloudWatchAlarmTemplatesCommand.ts | 6 +- .../src/commands/ListClusterAlertsCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- ...istEventBridgeRuleTemplateGroupsCommand.ts | 6 +- .../ListEventBridgeRuleTemplatesCommand.ts | 6 +- .../ListInputDeviceTransfersCommand.ts | 6 +- .../src/commands/ListInputDevicesCommand.ts | 6 +- .../ListInputSecurityGroupsCommand.ts | 6 +- .../src/commands/ListInputsCommand.ts | 6 +- .../commands/ListMultiplexAlertsCommand.ts | 6 +- .../commands/ListMultiplexProgramsCommand.ts | 6 +- .../src/commands/ListMultiplexesCommand.ts | 6 +- .../src/commands/ListNetworksCommand.ts | 6 +- .../src/commands/ListNodesCommand.ts | 6 +- .../src/commands/ListOfferingsCommand.ts | 6 +- .../src/commands/ListReservationsCommand.ts | 6 +- .../src/commands/ListSdiSourcesCommand.ts | 6 +- .../src/commands/ListSignalMapsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListVersionsCommand.ts | 6 +- .../src/commands/PurchaseOfferingCommand.ts | 6 +- .../src/commands/RebootInputDeviceCommand.ts | 6 +- .../RejectInputDeviceTransferCommand.ts | 6 +- .../RestartChannelPipelinesCommand.ts | 6 +- .../src/commands/StartChannelCommand.ts | 6 +- .../StartDeleteMonitorDeploymentCommand.ts | 6 +- .../src/commands/StartInputDeviceCommand.ts | 6 +- ...tartInputDeviceMaintenanceWindowCommand.ts | 6 +- .../commands/StartMonitorDeploymentCommand.ts | 6 +- .../src/commands/StartMultiplexCommand.ts | 6 +- .../commands/StartUpdateSignalMapCommand.ts | 6 +- .../src/commands/StopChannelCommand.ts | 6 +- .../src/commands/StopInputDeviceCommand.ts | 6 +- .../src/commands/StopMultiplexCommand.ts | 6 +- .../commands/TransferInputDeviceCommand.ts | 6 +- .../UpdateAccountConfigurationCommand.ts | 6 +- .../src/commands/UpdateChannelClassCommand.ts | 6 +- .../src/commands/UpdateChannelCommand.ts | 6 +- .../UpdateChannelPlacementGroupCommand.ts | 6 +- .../UpdateCloudWatchAlarmTemplateCommand.ts | 6 +- ...dateCloudWatchAlarmTemplateGroupCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../UpdateEventBridgeRuleTemplateCommand.ts | 6 +- ...dateEventBridgeRuleTemplateGroupCommand.ts | 6 +- .../src/commands/UpdateInputCommand.ts | 6 +- .../src/commands/UpdateInputDeviceCommand.ts | 6 +- .../UpdateInputSecurityGroupCommand.ts | 6 +- .../src/commands/UpdateMultiplexCommand.ts | 6 +- .../commands/UpdateMultiplexProgramCommand.ts | 6 +- .../src/commands/UpdateNetworkCommand.ts | 6 +- .../src/commands/UpdateNodeCommand.ts | 6 +- .../src/commands/UpdateNodeStateCommand.ts | 6 +- .../src/commands/UpdateReservationCommand.ts | 6 +- .../src/commands/UpdateSdiSourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/MediaLiveServiceException.ts | 2 +- clients/client-medialive/src/models/errors.ts | 2 +- .../pagination/DescribeSchedulePaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAlertsPaginator.ts | 2 +- .../ListChannelPlacementGroupsPaginator.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- ...tCloudWatchAlarmTemplateGroupsPaginator.ts | 2 +- .../ListCloudWatchAlarmTemplatesPaginator.ts | 2 +- .../pagination/ListClusterAlertsPaginator.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- ...tEventBridgeRuleTemplateGroupsPaginator.ts | 2 +- .../ListEventBridgeRuleTemplatesPaginator.ts | 2 +- .../ListInputDeviceTransfersPaginator.ts | 2 +- .../pagination/ListInputDevicesPaginator.ts | 2 +- .../ListInputSecurityGroupsPaginator.ts | 2 +- .../src/pagination/ListInputsPaginator.ts | 2 +- .../ListMultiplexAlertsPaginator.ts | 2 +- .../ListMultiplexProgramsPaginator.ts | 2 +- .../pagination/ListMultiplexesPaginator.ts | 2 +- .../src/pagination/ListNetworksPaginator.ts | 2 +- .../src/pagination/ListNodesPaginator.ts | 2 +- .../src/pagination/ListOfferingsPaginator.ts | 2 +- .../pagination/ListReservationsPaginator.ts | 2 +- .../src/pagination/ListSdiSourcesPaginator.ts | 2 +- .../src/pagination/ListSignalMapsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-medialive/src/runtimeConfig.ts | 8 +- .../client-medialive/src/runtimeExtensions.ts | 2 +- .../client-medialive/src/schemas/schemas_0.ts | 2 +- clients/client-mediapackage-vod/package.json | 12 +- .../src/MediaPackageVod.ts | 4 +- .../src/MediaPackageVodClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/ConfigureLogsCommand.ts | 10 +- .../src/commands/CreateAssetCommand.ts | 10 +- .../CreatePackagingConfigurationCommand.ts | 10 +- .../commands/CreatePackagingGroupCommand.ts | 10 +- .../src/commands/DeleteAssetCommand.ts | 10 +- .../DeletePackagingConfigurationCommand.ts | 10 +- .../commands/DeletePackagingGroupCommand.ts | 10 +- .../src/commands/DescribeAssetCommand.ts | 10 +- .../DescribePackagingConfigurationCommand.ts | 10 +- .../commands/DescribePackagingGroupCommand.ts | 10 +- .../src/commands/ListAssetsCommand.ts | 10 +- .../ListPackagingConfigurationsCommand.ts | 10 +- .../commands/ListPackagingGroupsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdatePackagingGroupCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MediaPackageVodServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAssetsPaginator.ts | 2 +- .../ListPackagingConfigurationsPaginator.ts | 2 +- .../ListPackagingGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-mediapackage/package.json | 12 +- .../client-mediapackage/src/MediaPackage.ts | 4 +- .../src/MediaPackageClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/ConfigureLogsCommand.ts | 6 +- .../src/commands/CreateChannelCommand.ts | 6 +- .../src/commands/CreateHarvestJobCommand.ts | 6 +- .../commands/CreateOriginEndpointCommand.ts | 6 +- .../src/commands/DeleteChannelCommand.ts | 6 +- .../commands/DeleteOriginEndpointCommand.ts | 6 +- .../src/commands/DescribeChannelCommand.ts | 6 +- .../src/commands/DescribeHarvestJobCommand.ts | 6 +- .../commands/DescribeOriginEndpointCommand.ts | 6 +- .../src/commands/ListChannelsCommand.ts | 6 +- .../src/commands/ListHarvestJobsCommand.ts | 6 +- .../commands/ListOriginEndpointsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../RotateChannelCredentialsCommand.ts | 6 +- .../RotateIngestEndpointCredentialsCommand.ts | 9 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateChannelCommand.ts | 6 +- .../commands/UpdateOriginEndpointCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MediaPackageServiceException.ts | 2 +- .../client-mediapackage/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- .../pagination/ListHarvestJobsPaginator.ts | 2 +- .../ListOriginEndpointsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-mediapackage/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-mediapackagev2/package.json | 12 +- .../src/MediaPackageV2.ts | 4 +- .../src/MediaPackageV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelHarvestJobCommand.ts | 10 +- .../src/commands/CreateChannelCommand.ts | 10 +- .../src/commands/CreateChannelGroupCommand.ts | 10 +- .../src/commands/CreateHarvestJobCommand.ts | 10 +- .../commands/CreateOriginEndpointCommand.ts | 10 +- .../src/commands/DeleteChannelCommand.ts | 10 +- .../src/commands/DeleteChannelGroupCommand.ts | 10 +- .../commands/DeleteChannelPolicyCommand.ts | 10 +- .../commands/DeleteOriginEndpointCommand.ts | 10 +- .../DeleteOriginEndpointPolicyCommand.ts | 10 +- .../src/commands/GetChannelCommand.ts | 10 +- .../src/commands/GetChannelGroupCommand.ts | 10 +- .../src/commands/GetChannelPolicyCommand.ts | 10 +- .../src/commands/GetHarvestJobCommand.ts | 10 +- .../src/commands/GetOriginEndpointCommand.ts | 10 +- .../GetOriginEndpointPolicyCommand.ts | 10 +- .../src/commands/ListChannelGroupsCommand.ts | 10 +- .../src/commands/ListChannelsCommand.ts | 10 +- .../src/commands/ListHarvestJobsCommand.ts | 10 +- .../commands/ListOriginEndpointsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/PutChannelPolicyCommand.ts | 10 +- .../PutOriginEndpointPolicyCommand.ts | 10 +- .../src/commands/ResetChannelStateCommand.ts | 10 +- .../ResetOriginEndpointStateCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateChannelCommand.ts | 10 +- .../src/commands/UpdateChannelGroupCommand.ts | 10 +- .../commands/UpdateOriginEndpointCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MediaPackageV2ServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListChannelGroupsPaginator.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- .../pagination/ListHarvestJobsPaginator.ts | 2 +- .../ListOriginEndpointsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-mediastore-data/package.json | 12 +- .../src/MediaStoreData.ts | 4 +- .../src/MediaStoreDataClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DeleteObjectCommand.ts | 10 +- .../src/commands/DescribeObjectCommand.ts | 10 +- .../src/commands/GetObjectCommand.ts | 10 +- .../src/commands/ListItemsCommand.ts | 10 +- .../src/commands/PutObjectCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MediaStoreDataServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListItemsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-mediastore/package.json | 12 +- clients/client-mediastore/src/MediaStore.ts | 4 +- .../client-mediastore/src/MediaStoreClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateContainerCommand.ts | 6 +- .../src/commands/DeleteContainerCommand.ts | 6 +- .../commands/DeleteContainerPolicyCommand.ts | 6 +- .../src/commands/DeleteCorsPolicyCommand.ts | 6 +- .../commands/DeleteLifecyclePolicyCommand.ts | 6 +- .../src/commands/DeleteMetricPolicyCommand.ts | 6 +- .../src/commands/DescribeContainerCommand.ts | 6 +- .../src/commands/GetContainerPolicyCommand.ts | 6 +- .../src/commands/GetCorsPolicyCommand.ts | 6 +- .../src/commands/GetLifecyclePolicyCommand.ts | 6 +- .../src/commands/GetMetricPolicyCommand.ts | 6 +- .../src/commands/ListContainersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutContainerPolicyCommand.ts | 6 +- .../src/commands/PutCorsPolicyCommand.ts | 6 +- .../src/commands/PutLifecyclePolicyCommand.ts | 6 +- .../src/commands/PutMetricPolicyCommand.ts | 6 +- .../src/commands/StartAccessLoggingCommand.ts | 6 +- .../src/commands/StopAccessLoggingCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/MediaStoreServiceException.ts | 2 +- .../client-mediastore/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListContainersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-mediastore/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-mediatailor/package.json | 12 +- clients/client-mediatailor/src/MediaTailor.ts | 4 +- .../src/MediaTailorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../ConfigureLogsForChannelCommand.ts | 6 +- ...gureLogsForPlaybackConfigurationCommand.ts | 6 +- .../src/commands/CreateChannelCommand.ts | 6 +- .../src/commands/CreateLiveSourceCommand.ts | 6 +- .../commands/CreatePrefetchScheduleCommand.ts | 6 +- .../src/commands/CreateProgramCommand.ts | 6 +- .../commands/CreateSourceLocationCommand.ts | 6 +- .../src/commands/CreateVodSourceCommand.ts | 6 +- .../src/commands/DeleteChannelCommand.ts | 6 +- .../commands/DeleteChannelPolicyCommand.ts | 6 +- .../src/commands/DeleteLiveSourceCommand.ts | 6 +- .../DeletePlaybackConfigurationCommand.ts | 6 +- .../commands/DeletePrefetchScheduleCommand.ts | 6 +- .../src/commands/DeleteProgramCommand.ts | 6 +- .../commands/DeleteSourceLocationCommand.ts | 6 +- .../src/commands/DeleteVodSourceCommand.ts | 6 +- .../src/commands/DescribeChannelCommand.ts | 6 +- .../src/commands/DescribeLiveSourceCommand.ts | 6 +- .../src/commands/DescribeProgramCommand.ts | 6 +- .../commands/DescribeSourceLocationCommand.ts | 6 +- .../src/commands/DescribeVodSourceCommand.ts | 6 +- .../src/commands/GetChannelPolicyCommand.ts | 6 +- .../src/commands/GetChannelScheduleCommand.ts | 6 +- .../GetPlaybackConfigurationCommand.ts | 6 +- .../commands/GetPrefetchScheduleCommand.ts | 6 +- .../src/commands/ListAlertsCommand.ts | 6 +- .../src/commands/ListChannelsCommand.ts | 6 +- .../src/commands/ListLiveSourcesCommand.ts | 6 +- .../ListPlaybackConfigurationsCommand.ts | 6 +- .../commands/ListPrefetchSchedulesCommand.ts | 6 +- .../commands/ListSourceLocationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListVodSourcesCommand.ts | 6 +- .../src/commands/PutChannelPolicyCommand.ts | 6 +- .../PutPlaybackConfigurationCommand.ts | 6 +- .../src/commands/StartChannelCommand.ts | 6 +- .../src/commands/StopChannelCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateChannelCommand.ts | 6 +- .../src/commands/UpdateLiveSourceCommand.ts | 6 +- .../src/commands/UpdateProgramCommand.ts | 6 +- .../commands/UpdateSourceLocationCommand.ts | 6 +- .../src/commands/UpdateVodSourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/MediaTailorServiceException.ts | 2 +- .../client-mediatailor/src/models/errors.ts | 2 +- .../pagination/GetChannelSchedulePaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAlertsPaginator.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- .../pagination/ListLiveSourcesPaginator.ts | 2 +- .../ListPlaybackConfigurationsPaginator.ts | 2 +- .../ListPrefetchSchedulesPaginator.ts | 2 +- .../ListSourceLocationsPaginator.ts | 2 +- .../src/pagination/ListVodSourcesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-mediatailor/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-medical-imaging/package.json | 12 +- .../src/MedicalImaging.ts | 4 +- .../src/MedicalImagingClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CopyImageSetCommand.ts | 10 +- .../src/commands/CreateDatastoreCommand.ts | 10 +- .../src/commands/DeleteDatastoreCommand.ts | 10 +- .../src/commands/DeleteImageSetCommand.ts | 10 +- .../src/commands/GetDICOMImportJobCommand.ts | 10 +- .../src/commands/GetDatastoreCommand.ts | 10 +- .../src/commands/GetImageFrameCommand.ts | 10 +- .../src/commands/GetImageSetCommand.ts | 10 +- .../commands/GetImageSetMetadataCommand.ts | 10 +- .../commands/ListDICOMImportJobsCommand.ts | 10 +- .../src/commands/ListDatastoresCommand.ts | 10 +- .../commands/ListImageSetVersionsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/SearchImageSetsCommand.ts | 10 +- .../commands/StartDICOMImportJobCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdateImageSetMetadataCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MedicalImagingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDICOMImportJobsPaginator.ts | 2 +- .../src/pagination/ListDatastoresPaginator.ts | 2 +- .../ListImageSetVersionsPaginator.ts | 2 +- .../pagination/SearchImageSetsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-memorydb/package.json | 12 +- clients/client-memorydb/src/MemoryDB.ts | 4 +- clients/client-memorydb/src/MemoryDBClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchUpdateClusterCommand.ts | 6 +- .../src/commands/CopySnapshotCommand.ts | 6 +- .../src/commands/CreateACLCommand.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../CreateMultiRegionClusterCommand.ts | 6 +- .../commands/CreateParameterGroupCommand.ts | 6 +- .../src/commands/CreateSnapshotCommand.ts | 6 +- .../src/commands/CreateSubnetGroupCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/DeleteACLCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../DeleteMultiRegionClusterCommand.ts | 6 +- .../commands/DeleteParameterGroupCommand.ts | 6 +- .../src/commands/DeleteSnapshotCommand.ts | 6 +- .../src/commands/DeleteSubnetGroupCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../src/commands/DescribeACLsCommand.ts | 6 +- .../src/commands/DescribeClustersCommand.ts | 6 +- .../commands/DescribeEngineVersionsCommand.ts | 6 +- .../src/commands/DescribeEventsCommand.ts | 6 +- .../DescribeMultiRegionClustersCommand.ts | 6 +- ...scribeMultiRegionParameterGroupsCommand.ts | 6 +- .../DescribeMultiRegionParametersCommand.ts | 6 +- .../DescribeParameterGroupsCommand.ts | 6 +- .../src/commands/DescribeParametersCommand.ts | 6 +- .../commands/DescribeReservedNodesCommand.ts | 6 +- .../DescribeReservedNodesOfferingsCommand.ts | 6 +- .../commands/DescribeServiceUpdatesCommand.ts | 6 +- .../src/commands/DescribeSnapshotsCommand.ts | 6 +- .../commands/DescribeSubnetGroupsCommand.ts | 6 +- .../src/commands/DescribeUsersCommand.ts | 6 +- .../src/commands/FailoverShardCommand.ts | 6 +- ...AllowedMultiRegionClusterUpdatesCommand.ts | 6 +- .../ListAllowedNodeTypeUpdatesCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../PurchaseReservedNodesOfferingCommand.ts | 6 +- .../commands/ResetParameterGroupCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateACLCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../UpdateMultiRegionClusterCommand.ts | 6 +- .../commands/UpdateParameterGroupCommand.ts | 6 +- .../src/commands/UpdateSubnetGroupCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/MemoryDBServiceException.ts | 2 +- clients/client-memorydb/src/models/errors.ts | 2 +- .../src/pagination/DescribeACLsPaginator.ts | 2 +- .../pagination/DescribeClustersPaginator.ts | 2 +- .../DescribeEngineVersionsPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- .../DescribeMultiRegionClustersPaginator.ts | 2 +- .../DescribeParameterGroupsPaginator.ts | 2 +- .../pagination/DescribeParametersPaginator.ts | 2 +- ...DescribeReservedNodesOfferingsPaginator.ts | 2 +- .../DescribeReservedNodesPaginator.ts | 2 +- .../DescribeServiceUpdatesPaginator.ts | 2 +- .../pagination/DescribeSnapshotsPaginator.ts | 2 +- .../DescribeSubnetGroupsPaginator.ts | 2 +- .../src/pagination/DescribeUsersPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-memorydb/src/runtimeConfig.ts | 8 +- .../client-memorydb/src/runtimeExtensions.ts | 2 +- .../client-memorydb/src/schemas/schemas_0.ts | 2 +- clients/client-mgn/package.json | 12 +- clients/client-mgn/src/Mgn.ts | 4 +- clients/client-mgn/src/MgnClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/ArchiveApplicationCommand.ts | 6 +- .../src/commands/ArchiveWaveCommand.ts | 6 +- .../commands/AssociateApplicationsCommand.ts | 6 +- .../commands/AssociateSourceServersCommand.ts | 6 +- .../ChangeServerLifeCycleStateCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../src/commands/CreateConnectorCommand.ts | 6 +- ...reateLaunchConfigurationTemplateCommand.ts | 6 +- ...ReplicationConfigurationTemplateCommand.ts | 9 +- .../src/commands/CreateWaveCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../src/commands/DeleteConnectorCommand.ts | 6 +- .../src/commands/DeleteJobCommand.ts | 6 +- ...eleteLaunchConfigurationTemplateCommand.ts | 6 +- ...ReplicationConfigurationTemplateCommand.ts | 6 +- .../src/commands/DeleteSourceServerCommand.ts | 6 +- .../commands/DeleteVcenterClientCommand.ts | 6 +- .../src/commands/DeleteWaveCommand.ts | 6 +- .../commands/DescribeJobLogItemsCommand.ts | 6 +- .../src/commands/DescribeJobsCommand.ts | 6 +- ...ribeLaunchConfigurationTemplatesCommand.ts | 6 +- ...eplicationConfigurationTemplatesCommand.ts | 6 +- .../commands/DescribeSourceServersCommand.ts | 6 +- .../commands/DescribeVcenterClientsCommand.ts | 6 +- .../DisassociateApplicationsCommand.ts | 6 +- .../DisassociateSourceServersCommand.ts | 6 +- .../commands/DisconnectFromServiceCommand.ts | 6 +- .../src/commands/FinalizeCutoverCommand.ts | 6 +- .../commands/GetLaunchConfigurationCommand.ts | 6 +- .../GetReplicationConfigurationCommand.ts | 6 +- .../src/commands/InitializeServiceCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../src/commands/ListConnectorsCommand.ts | 6 +- .../src/commands/ListExportErrorsCommand.ts | 6 +- .../src/commands/ListExportsCommand.ts | 6 +- .../src/commands/ListImportErrorsCommand.ts | 6 +- .../src/commands/ListImportsCommand.ts | 6 +- .../commands/ListManagedAccountsCommand.ts | 6 +- .../ListSourceServerActionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTemplateActionsCommand.ts | 6 +- .../src/commands/ListWavesCommand.ts | 6 +- .../src/commands/MarkAsArchivedCommand.ts | 6 +- .../src/commands/PauseReplicationCommand.ts | 6 +- .../commands/PutSourceServerActionCommand.ts | 6 +- .../src/commands/PutTemplateActionCommand.ts | 6 +- .../RemoveSourceServerActionCommand.ts | 6 +- .../commands/RemoveTemplateActionCommand.ts | 6 +- .../src/commands/ResumeReplicationCommand.ts | 6 +- .../commands/RetryDataReplicationCommand.ts | 6 +- .../src/commands/StartCutoverCommand.ts | 6 +- .../src/commands/StartExportCommand.ts | 6 +- .../src/commands/StartImportCommand.ts | 6 +- .../src/commands/StartReplicationCommand.ts | 6 +- .../src/commands/StartTestCommand.ts | 6 +- .../src/commands/StopReplicationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../TerminateTargetInstancesCommand.ts | 6 +- .../commands/UnarchiveApplicationCommand.ts | 6 +- .../src/commands/UnarchiveWaveCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../src/commands/UpdateConnectorCommand.ts | 6 +- .../UpdateLaunchConfigurationCommand.ts | 6 +- ...pdateLaunchConfigurationTemplateCommand.ts | 6 +- .../UpdateReplicationConfigurationCommand.ts | 6 +- ...ReplicationConfigurationTemplateCommand.ts | 9 +- .../src/commands/UpdateSourceServerCommand.ts | 6 +- ...pdateSourceServerReplicationTypeCommand.ts | 6 +- .../src/commands/UpdateWaveCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-mgn/src/extensionConfiguration.ts | 8 +- .../src/models/MgnServiceException.ts | 2 +- clients/client-mgn/src/models/errors.ts | 2 +- .../DescribeJobLogItemsPaginator.ts | 2 +- .../src/pagination/DescribeJobsPaginator.ts | 2 +- ...beLaunchConfigurationTemplatesPaginator.ts | 2 +- ...licationConfigurationTemplatesPaginator.ts | 2 +- .../DescribeSourceServersPaginator.ts | 2 +- .../DescribeVcenterClientsPaginator.ts | 2 +- .../client-mgn/src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../src/pagination/ListConnectorsPaginator.ts | 2 +- .../pagination/ListExportErrorsPaginator.ts | 2 +- .../src/pagination/ListExportsPaginator.ts | 2 +- .../pagination/ListImportErrorsPaginator.ts | 2 +- .../src/pagination/ListImportsPaginator.ts | 2 +- .../ListManagedAccountsPaginator.ts | 2 +- .../ListSourceServerActionsPaginator.ts | 2 +- .../ListTemplateActionsPaginator.ts | 2 +- .../src/pagination/ListWavesPaginator.ts | 2 +- .../client-mgn/src/runtimeConfig.browser.ts | 7 +- .../client-mgn/src/runtimeConfig.native.ts | 2 +- .../client-mgn/src/runtimeConfig.shared.ts | 4 +- clients/client-mgn/src/runtimeConfig.ts | 8 +- clients/client-mgn/src/runtimeExtensions.ts | 2 +- clients/client-mgn/src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/MigrationHubRefactorSpaces.ts | 7 +- .../src/MigrationHubRefactorSpacesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../src/commands/CreateEnvironmentCommand.ts | 6 +- .../src/commands/CreateRouteCommand.ts | 6 +- .../src/commands/CreateServiceCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DeleteRouteCommand.ts | 6 +- .../src/commands/DeleteServiceCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../src/commands/GetEnvironmentCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/GetRouteCommand.ts | 6 +- .../src/commands/GetServiceCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../commands/ListEnvironmentVpcsCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../src/commands/ListRoutesCommand.ts | 6 +- .../src/commands/ListServicesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateRouteCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...rationHubRefactorSpacesServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../ListEnvironmentVpcsPaginator.ts | 2 +- .../pagination/ListEnvironmentsPaginator.ts | 2 +- .../src/pagination/ListRoutesPaginator.ts | 2 +- .../src/pagination/ListServicesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-migration-hub/package.json | 12 +- .../client-migration-hub/src/MigrationHub.ts | 4 +- .../src/MigrationHubClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateCreatedArtifactCommand.ts | 6 +- .../AssociateDiscoveredResourceCommand.ts | 6 +- .../AssociateSourceResourceCommand.ts | 6 +- .../CreateProgressUpdateStreamCommand.ts | 6 +- .../DeleteProgressUpdateStreamCommand.ts | 6 +- .../DescribeApplicationStateCommand.ts | 6 +- .../commands/DescribeMigrationTaskCommand.ts | 6 +- .../DisassociateCreatedArtifactCommand.ts | 6 +- .../DisassociateDiscoveredResourceCommand.ts | 6 +- .../DisassociateSourceResourceCommand.ts | 6 +- .../commands/ImportMigrationTaskCommand.ts | 6 +- .../commands/ListApplicationStatesCommand.ts | 6 +- .../commands/ListCreatedArtifactsCommand.ts | 6 +- .../ListDiscoveredResourcesCommand.ts | 6 +- .../ListMigrationTaskUpdatesCommand.ts | 6 +- .../src/commands/ListMigrationTasksCommand.ts | 6 +- .../ListProgressUpdateStreamsCommand.ts | 6 +- .../commands/ListSourceResourcesCommand.ts | 6 +- .../commands/NotifyApplicationStateCommand.ts | 6 +- .../NotifyMigrationTaskStateCommand.ts | 6 +- .../commands/PutResourceAttributesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MigrationHubServiceException.ts | 2 +- .../client-migration-hub/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListApplicationStatesPaginator.ts | 2 +- .../ListCreatedArtifactsPaginator.ts | 2 +- .../ListDiscoveredResourcesPaginator.ts | 2 +- .../ListMigrationTaskUpdatesPaginator.ts | 2 +- .../pagination/ListMigrationTasksPaginator.ts | 2 +- .../ListProgressUpdateStreamsPaginator.ts | 2 +- .../ListSourceResourcesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-migration-hub/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-migrationhub-config/package.json | 12 +- .../src/MigrationHubConfig.ts | 4 +- .../src/MigrationHubConfigClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../CreateHomeRegionControlCommand.ts | 6 +- .../DeleteHomeRegionControlCommand.ts | 6 +- .../DescribeHomeRegionControlsCommand.ts | 6 +- .../src/commands/GetHomeRegionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../MigrationHubConfigServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeHomeRegionControlsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/MigrationHubOrchestrator.ts | 4 +- .../src/MigrationHubOrchestratorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateTemplateCommand.ts | 6 +- .../src/commands/CreateWorkflowCommand.ts | 6 +- .../src/commands/CreateWorkflowStepCommand.ts | 6 +- .../CreateWorkflowStepGroupCommand.ts | 6 +- .../src/commands/DeleteTemplateCommand.ts | 6 +- .../src/commands/DeleteWorkflowCommand.ts | 6 +- .../src/commands/DeleteWorkflowStepCommand.ts | 6 +- .../DeleteWorkflowStepGroupCommand.ts | 6 +- .../src/commands/GetTemplateCommand.ts | 6 +- .../src/commands/GetTemplateStepCommand.ts | 6 +- .../commands/GetTemplateStepGroupCommand.ts | 6 +- .../src/commands/GetWorkflowCommand.ts | 6 +- .../src/commands/GetWorkflowStepCommand.ts | 6 +- .../commands/GetWorkflowStepGroupCommand.ts | 6 +- .../src/commands/ListPluginsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTemplateStepGroupsCommand.ts | 6 +- .../src/commands/ListTemplateStepsCommand.ts | 6 +- .../src/commands/ListTemplatesCommand.ts | 6 +- .../commands/ListWorkflowStepGroupsCommand.ts | 6 +- .../src/commands/ListWorkflowStepsCommand.ts | 6 +- .../src/commands/ListWorkflowsCommand.ts | 6 +- .../src/commands/RetryWorkflowStepCommand.ts | 6 +- .../src/commands/StartWorkflowCommand.ts | 6 +- .../src/commands/StopWorkflowCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateTemplateCommand.ts | 6 +- .../src/commands/UpdateWorkflowCommand.ts | 6 +- .../src/commands/UpdateWorkflowStepCommand.ts | 6 +- .../UpdateWorkflowStepGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...igrationHubOrchestratorServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListPluginsPaginator.ts | 2 +- .../ListTemplateStepGroupsPaginator.ts | 2 +- .../pagination/ListTemplateStepsPaginator.ts | 2 +- .../src/pagination/ListTemplatesPaginator.ts | 2 +- .../ListWorkflowStepGroupsPaginator.ts | 2 +- .../pagination/ListWorkflowStepsPaginator.ts | 2 +- .../src/pagination/ListWorkflowsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-migrationhubstrategy/package.json | 12 +- .../src/MigrationHubStrategy.ts | 4 +- .../src/MigrationHubStrategyClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../GetApplicationComponentDetailsCommand.ts | 6 +- ...etApplicationComponentStrategiesCommand.ts | 6 +- .../src/commands/GetAssessmentCommand.ts | 6 +- .../src/commands/GetImportFileTaskCommand.ts | 6 +- .../commands/GetLatestAssessmentIdCommand.ts | 6 +- .../GetPortfolioPreferencesCommand.ts | 6 +- .../commands/GetPortfolioSummaryCommand.ts | 6 +- .../GetRecommendationReportDetailsCommand.ts | 6 +- .../src/commands/GetServerDetailsCommand.ts | 6 +- .../commands/GetServerStrategiesCommand.ts | 6 +- .../commands/ListAnalyzableServersCommand.ts | 6 +- .../ListApplicationComponentsCommand.ts | 6 +- .../src/commands/ListCollectorsCommand.ts | 6 +- .../src/commands/ListImportFileTaskCommand.ts | 6 +- .../src/commands/ListServersCommand.ts | 6 +- .../PutPortfolioPreferencesCommand.ts | 6 +- .../src/commands/StartAssessmentCommand.ts | 6 +- .../commands/StartImportFileTaskCommand.ts | 6 +- ...rtRecommendationReportGenerationCommand.ts | 6 +- .../src/commands/StopAssessmentCommand.ts | 6 +- ...UpdateApplicationComponentConfigCommand.ts | 9 +- .../src/commands/UpdateServerConfigCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../MigrationHubStrategyServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../pagination/GetServerDetailsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAnalyzableServersPaginator.ts | 2 +- .../ListApplicationComponentsPaginator.ts | 2 +- .../src/pagination/ListCollectorsPaginator.ts | 2 +- .../pagination/ListImportFileTaskPaginator.ts | 2 +- .../src/pagination/ListServersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-mpa/package.json | 12 +- clients/client-mpa/src/MPA.ts | 4 +- clients/client-mpa/src/MPAClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelSessionCommand.ts | 6 +- .../src/commands/CreateApprovalTeamCommand.ts | 6 +- .../commands/CreateIdentitySourceCommand.ts | 6 +- .../commands/DeleteIdentitySourceCommand.ts | 6 +- ...eleteInactiveApprovalTeamVersionCommand.ts | 6 +- .../src/commands/GetApprovalTeamCommand.ts | 6 +- .../src/commands/GetIdentitySourceCommand.ts | 6 +- .../src/commands/GetPolicyVersionCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/GetSessionCommand.ts | 6 +- .../src/commands/ListApprovalTeamsCommand.ts | 6 +- .../commands/ListIdentitySourcesCommand.ts | 6 +- .../src/commands/ListPoliciesCommand.ts | 6 +- .../src/commands/ListPolicyVersionsCommand.ts | 6 +- .../commands/ListResourcePoliciesCommand.ts | 6 +- .../src/commands/ListSessionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../StartActiveApprovalTeamDeletionCommand.ts | 9 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApprovalTeamCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-mpa/src/extensionConfiguration.ts | 8 +- .../src/models/MPAServiceException.ts | 2 +- clients/client-mpa/src/models/errors.ts | 2 +- .../client-mpa/src/pagination/Interfaces.ts | 2 +- .../pagination/ListApprovalTeamsPaginator.ts | 2 +- .../ListIdentitySourcesPaginator.ts | 2 +- .../src/pagination/ListPoliciesPaginator.ts | 2 +- .../pagination/ListPolicyVersionsPaginator.ts | 2 +- .../ListResourcePoliciesPaginator.ts | 2 +- .../src/pagination/ListSessionsPaginator.ts | 2 +- .../client-mpa/src/runtimeConfig.browser.ts | 7 +- .../client-mpa/src/runtimeConfig.native.ts | 2 +- .../client-mpa/src/runtimeConfig.shared.ts | 4 +- clients/client-mpa/src/runtimeConfig.ts | 8 +- clients/client-mpa/src/runtimeExtensions.ts | 2 +- clients/client-mpa/src/schemas/schemas_0.ts | 2 +- clients/client-mq/package.json | 12 +- clients/client-mq/src/Mq.ts | 4 +- clients/client-mq/src/MqClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateBrokerCommand.ts | 6 +- .../commands/CreateConfigurationCommand.ts | 6 +- .../src/commands/CreateTagsCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/DeleteBrokerCommand.ts | 6 +- .../commands/DeleteConfigurationCommand.ts | 6 +- .../src/commands/DeleteTagsCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../src/commands/DescribeBrokerCommand.ts | 6 +- .../DescribeBrokerEngineTypesCommand.ts | 6 +- .../DescribeBrokerInstanceOptionsCommand.ts | 6 +- .../commands/DescribeConfigurationCommand.ts | 6 +- .../DescribeConfigurationRevisionCommand.ts | 6 +- .../src/commands/DescribeUserCommand.ts | 6 +- .../src/commands/ListBrokersCommand.ts | 6 +- .../ListConfigurationRevisionsCommand.ts | 6 +- .../src/commands/ListConfigurationsCommand.ts | 6 +- .../client-mq/src/commands/ListTagsCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../client-mq/src/commands/PromoteCommand.ts | 6 +- .../src/commands/RebootBrokerCommand.ts | 6 +- .../src/commands/UpdateBrokerCommand.ts | 6 +- .../commands/UpdateConfigurationCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-mq/src/extensionConfiguration.ts | 8 +- .../src/models/MqServiceException.ts | 2 +- clients/client-mq/src/models/errors.ts | 2 +- .../client-mq/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListBrokersPaginator.ts | 2 +- .../client-mq/src/runtimeConfig.browser.ts | 7 +- clients/client-mq/src/runtimeConfig.native.ts | 2 +- clients/client-mq/src/runtimeConfig.shared.ts | 4 +- clients/client-mq/src/runtimeConfig.ts | 8 +- clients/client-mq/src/runtimeExtensions.ts | 2 +- clients/client-mq/src/schemas/schemas_0.ts | 2 +- clients/client-mturk/package.json | 12 +- clients/client-mturk/src/MTurk.ts | 4 +- clients/client-mturk/src/MTurkClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptQualificationRequestCommand.ts | 6 +- .../src/commands/ApproveAssignmentCommand.ts | 6 +- ...AssociateQualificationWithWorkerCommand.ts | 9 +- ...reateAdditionalAssignmentsForHITCommand.ts | 6 +- .../src/commands/CreateHITCommand.ts | 6 +- .../src/commands/CreateHITTypeCommand.ts | 6 +- .../commands/CreateHITWithHITTypeCommand.ts | 6 +- .../CreateQualificationTypeCommand.ts | 6 +- .../src/commands/CreateWorkerBlockCommand.ts | 6 +- .../src/commands/DeleteHITCommand.ts | 6 +- .../DeleteQualificationTypeCommand.ts | 6 +- .../src/commands/DeleteWorkerBlockCommand.ts | 6 +- ...associateQualificationFromWorkerCommand.ts | 6 +- .../src/commands/GetAccountBalanceCommand.ts | 6 +- .../src/commands/GetAssignmentCommand.ts | 6 +- .../src/commands/GetFileUploadURLCommand.ts | 6 +- .../src/commands/GetHITCommand.ts | 6 +- .../commands/GetQualificationScoreCommand.ts | 6 +- .../commands/GetQualificationTypeCommand.ts | 6 +- .../commands/ListAssignmentsForHITCommand.ts | 6 +- .../src/commands/ListBonusPaymentsCommand.ts | 6 +- .../src/commands/ListHITsCommand.ts | 6 +- .../ListHITsForQualificationTypeCommand.ts | 6 +- .../ListQualificationRequestsCommand.ts | 6 +- .../commands/ListQualificationTypesCommand.ts | 6 +- .../ListReviewPolicyResultsForHITCommand.ts | 6 +- .../src/commands/ListReviewableHITsCommand.ts | 6 +- .../src/commands/ListWorkerBlocksCommand.ts | 6 +- ...ListWorkersWithQualificationTypeCommand.ts | 9 +- .../src/commands/NotifyWorkersCommand.ts | 6 +- .../src/commands/RejectAssignmentCommand.ts | 6 +- .../RejectQualificationRequestCommand.ts | 6 +- .../src/commands/SendBonusCommand.ts | 6 +- .../SendTestEventNotificationCommand.ts | 6 +- .../commands/UpdateExpirationForHITCommand.ts | 6 +- .../commands/UpdateHITReviewStatusCommand.ts | 6 +- .../src/commands/UpdateHITTypeOfHITCommand.ts | 6 +- .../UpdateNotificationSettingsCommand.ts | 6 +- .../UpdateQualificationTypeCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/MTurkServiceException.ts | 2 +- clients/client-mturk/src/models/errors.ts | 2 +- .../client-mturk/src/pagination/Interfaces.ts | 2 +- .../ListAssignmentsForHITPaginator.ts | 2 +- .../pagination/ListBonusPaymentsPaginator.ts | 2 +- .../ListHITsForQualificationTypePaginator.ts | 2 +- .../src/pagination/ListHITsPaginator.ts | 2 +- .../ListQualificationRequestsPaginator.ts | 2 +- .../ListQualificationTypesPaginator.ts | 2 +- .../ListReviewPolicyResultsForHITPaginator.ts | 2 +- .../pagination/ListReviewableHITsPaginator.ts | 2 +- .../pagination/ListWorkerBlocksPaginator.ts | 2 +- ...stWorkersWithQualificationTypePaginator.ts | 2 +- .../client-mturk/src/runtimeConfig.browser.ts | 7 +- .../client-mturk/src/runtimeConfig.native.ts | 2 +- .../client-mturk/src/runtimeConfig.shared.ts | 4 +- clients/client-mturk/src/runtimeConfig.ts | 8 +- clients/client-mturk/src/runtimeExtensions.ts | 2 +- clients/client-mturk/src/schemas/schemas_0.ts | 2 +- clients/client-mwaa-serverless/package.json | 12 +- .../src/MWAAServerless.ts | 4 +- .../src/MWAAServerlessClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateWorkflowCommand.ts | 10 +- .../src/commands/DeleteWorkflowCommand.ts | 10 +- .../src/commands/GetTaskInstanceCommand.ts | 10 +- .../src/commands/GetWorkflowCommand.ts | 10 +- .../src/commands/GetWorkflowRunCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/ListTaskInstancesCommand.ts | 10 +- .../src/commands/ListWorkflowRunsCommand.ts | 10 +- .../commands/ListWorkflowVersionsCommand.ts | 10 +- .../src/commands/ListWorkflowsCommand.ts | 10 +- .../src/commands/StartWorkflowRunCommand.ts | 10 +- .../src/commands/StopWorkflowRunCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateWorkflowCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/MWAAServerlessServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListTaskInstancesPaginator.ts | 2 +- .../pagination/ListWorkflowRunsPaginator.ts | 2 +- .../ListWorkflowVersionsPaginator.ts | 2 +- .../src/pagination/ListWorkflowsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-mwaa/package.json | 12 +- clients/client-mwaa/src/MWAA.ts | 4 +- clients/client-mwaa/src/MWAAClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateCliTokenCommand.ts | 6 +- .../src/commands/CreateEnvironmentCommand.ts | 6 +- .../commands/CreateWebLoginTokenCommand.ts | 6 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../src/commands/GetEnvironmentCommand.ts | 6 +- .../src/commands/InvokeRestApiCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PublishMetricsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateEnvironmentCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-mwaa/src/extensionConfiguration.ts | 8 +- .../src/models/MWAAServiceException.ts | 2 +- clients/client-mwaa/src/models/errors.ts | 2 +- .../client-mwaa/src/pagination/Interfaces.ts | 2 +- .../pagination/ListEnvironmentsPaginator.ts | 2 +- .../client-mwaa/src/runtimeConfig.browser.ts | 7 +- .../client-mwaa/src/runtimeConfig.native.ts | 2 +- .../client-mwaa/src/runtimeConfig.shared.ts | 4 +- clients/client-mwaa/src/runtimeConfig.ts | 8 +- clients/client-mwaa/src/runtimeExtensions.ts | 2 +- clients/client-mwaa/src/schemas/schemas_0.ts | 2 +- clients/client-neptune-graph/package.json | 12 +- .../client-neptune-graph/src/NeptuneGraph.ts | 4 +- .../src/NeptuneGraphClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelExportTaskCommand.ts | 6 +- .../src/commands/CancelImportTaskCommand.ts | 6 +- .../src/commands/CancelQueryCommand.ts | 6 +- .../src/commands/CreateGraphCommand.ts | 6 +- .../commands/CreateGraphSnapshotCommand.ts | 6 +- .../CreateGraphUsingImportTaskCommand.ts | 6 +- .../CreatePrivateGraphEndpointCommand.ts | 6 +- .../src/commands/DeleteGraphCommand.ts | 6 +- .../commands/DeleteGraphSnapshotCommand.ts | 6 +- .../DeletePrivateGraphEndpointCommand.ts | 6 +- .../src/commands/ExecuteQueryCommand.ts | 6 +- .../src/commands/GetExportTaskCommand.ts | 6 +- .../src/commands/GetGraphCommand.ts | 6 +- .../src/commands/GetGraphSnapshotCommand.ts | 6 +- .../src/commands/GetGraphSummaryCommand.ts | 6 +- .../src/commands/GetImportTaskCommand.ts | 6 +- .../GetPrivateGraphEndpointCommand.ts | 6 +- .../src/commands/GetQueryCommand.ts | 6 +- .../src/commands/ListExportTasksCommand.ts | 6 +- .../src/commands/ListGraphSnapshotsCommand.ts | 6 +- .../src/commands/ListGraphsCommand.ts | 6 +- .../src/commands/ListImportTasksCommand.ts | 6 +- .../ListPrivateGraphEndpointsCommand.ts | 6 +- .../src/commands/ListQueriesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ResetGraphCommand.ts | 6 +- .../RestoreGraphFromSnapshotCommand.ts | 6 +- .../src/commands/StartExportTaskCommand.ts | 6 +- .../src/commands/StartGraphCommand.ts | 6 +- .../src/commands/StartImportTaskCommand.ts | 6 +- .../src/commands/StopGraphCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateGraphCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/NeptuneGraphServiceException.ts | 2 +- .../client-neptune-graph/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListExportTasksPaginator.ts | 2 +- .../pagination/ListGraphSnapshotsPaginator.ts | 2 +- .../src/pagination/ListGraphsPaginator.ts | 2 +- .../pagination/ListImportTasksPaginator.ts | 2 +- .../ListPrivateGraphEndpointsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-neptune-graph/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-neptune/package.json | 12 +- clients/client-neptune/src/Neptune.ts | 4 +- clients/client-neptune/src/NeptuneClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddRoleToDBClusterCommand.ts | 6 +- ...ddSourceIdentifierToSubscriptionCommand.ts | 9 +- .../src/commands/AddTagsToResourceCommand.ts | 6 +- .../ApplyPendingMaintenanceActionCommand.ts | 6 +- .../CopyDBClusterParameterGroupCommand.ts | 6 +- .../commands/CopyDBClusterSnapshotCommand.ts | 6 +- .../commands/CopyDBParameterGroupCommand.ts | 6 +- .../src/commands/CreateDBClusterCommand.ts | 6 +- .../CreateDBClusterEndpointCommand.ts | 6 +- .../CreateDBClusterParameterGroupCommand.ts | 6 +- .../CreateDBClusterSnapshotCommand.ts | 6 +- .../src/commands/CreateDBInstanceCommand.ts | 6 +- .../commands/CreateDBParameterGroupCommand.ts | 6 +- .../commands/CreateDBSubnetGroupCommand.ts | 6 +- .../CreateEventSubscriptionCommand.ts | 6 +- .../commands/CreateGlobalClusterCommand.ts | 6 +- .../src/commands/DeleteDBClusterCommand.ts | 6 +- .../DeleteDBClusterEndpointCommand.ts | 6 +- .../DeleteDBClusterParameterGroupCommand.ts | 6 +- .../DeleteDBClusterSnapshotCommand.ts | 6 +- .../src/commands/DeleteDBInstanceCommand.ts | 6 +- .../commands/DeleteDBParameterGroupCommand.ts | 6 +- .../commands/DeleteDBSubnetGroupCommand.ts | 6 +- .../DeleteEventSubscriptionCommand.ts | 6 +- .../commands/DeleteGlobalClusterCommand.ts | 6 +- .../DescribeDBClusterEndpointsCommand.ts | 6 +- ...DescribeDBClusterParameterGroupsCommand.ts | 6 +- .../DescribeDBClusterParametersCommand.ts | 6 +- ...cribeDBClusterSnapshotAttributesCommand.ts | 6 +- .../DescribeDBClusterSnapshotsCommand.ts | 6 +- .../src/commands/DescribeDBClustersCommand.ts | 6 +- .../DescribeDBEngineVersionsCommand.ts | 6 +- .../commands/DescribeDBInstancesCommand.ts | 6 +- .../DescribeDBParameterGroupsCommand.ts | 6 +- .../commands/DescribeDBParametersCommand.ts | 6 +- .../commands/DescribeDBSubnetGroupsCommand.ts | 6 +- ...beEngineDefaultClusterParametersCommand.ts | 6 +- .../DescribeEngineDefaultParametersCommand.ts | 6 +- .../DescribeEventCategoriesCommand.ts | 6 +- .../DescribeEventSubscriptionsCommand.ts | 6 +- .../src/commands/DescribeEventsCommand.ts | 6 +- .../commands/DescribeGlobalClustersCommand.ts | 6 +- ...scribeOrderableDBInstanceOptionsCommand.ts | 6 +- ...escribePendingMaintenanceActionsCommand.ts | 6 +- ...ribeValidDBInstanceModificationsCommand.ts | 6 +- .../src/commands/FailoverDBClusterCommand.ts | 6 +- .../commands/FailoverGlobalClusterCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ModifyDBClusterCommand.ts | 6 +- .../ModifyDBClusterEndpointCommand.ts | 6 +- .../ModifyDBClusterParameterGroupCommand.ts | 6 +- ...ModifyDBClusterSnapshotAttributeCommand.ts | 9 +- .../src/commands/ModifyDBInstanceCommand.ts | 6 +- .../commands/ModifyDBParameterGroupCommand.ts | 6 +- .../commands/ModifyDBSubnetGroupCommand.ts | 6 +- .../ModifyEventSubscriptionCommand.ts | 6 +- .../commands/ModifyGlobalClusterCommand.ts | 6 +- .../PromoteReadReplicaDBClusterCommand.ts | 6 +- .../src/commands/RebootDBInstanceCommand.ts | 6 +- .../RemoveFromGlobalClusterCommand.ts | 6 +- .../RemoveRoleFromDBClusterCommand.ts | 6 +- ...SourceIdentifierFromSubscriptionCommand.ts | 6 +- .../commands/RemoveTagsFromResourceCommand.ts | 6 +- .../ResetDBClusterParameterGroupCommand.ts | 6 +- .../commands/ResetDBParameterGroupCommand.ts | 6 +- .../RestoreDBClusterFromSnapshotCommand.ts | 6 +- .../RestoreDBClusterToPointInTimeCommand.ts | 6 +- .../src/commands/StartDBClusterCommand.ts | 6 +- .../src/commands/StopDBClusterCommand.ts | 6 +- .../SwitchoverGlobalClusterCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/NeptuneServiceException.ts | 2 +- clients/client-neptune/src/models/errors.ts | 2 +- .../DescribeDBClusterEndpointsPaginator.ts | 2 +- ...scribeDBClusterParameterGroupsPaginator.ts | 2 +- .../DescribeDBClusterParametersPaginator.ts | 2 +- .../DescribeDBClusterSnapshotsPaginator.ts | 2 +- .../pagination/DescribeDBClustersPaginator.ts | 2 +- .../DescribeDBEngineVersionsPaginator.ts | 2 +- .../DescribeDBInstancesPaginator.ts | 2 +- .../DescribeDBParameterGroupsPaginator.ts | 2 +- .../DescribeDBParametersPaginator.ts | 2 +- .../DescribeDBSubnetGroupsPaginator.ts | 2 +- ...escribeEngineDefaultParametersPaginator.ts | 2 +- .../DescribeEventSubscriptionsPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- .../DescribeGlobalClustersPaginator.ts | 2 +- ...ribeOrderableDBInstanceOptionsPaginator.ts | 2 +- ...cribePendingMaintenanceActionsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-neptune/src/runtimeConfig.ts | 8 +- .../client-neptune/src/runtimeExtensions.ts | 2 +- .../client-neptune/src/schemas/schemas_0.ts | 2 +- clients/client-neptunedata/package.json | 12 +- clients/client-neptunedata/src/Neptunedata.ts | 4 +- .../src/NeptunedataClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelGremlinQueryCommand.ts | 6 +- .../src/commands/CancelLoaderJobCommand.ts | 6 +- .../CancelMLDataProcessingJobCommand.ts | 6 +- .../CancelMLModelTrainingJobCommand.ts | 6 +- .../CancelMLModelTransformJobCommand.ts | 6 +- .../commands/CancelOpenCypherQueryCommand.ts | 6 +- .../src/commands/CreateMLEndpointCommand.ts | 6 +- .../src/commands/DeleteMLEndpointCommand.ts | 6 +- .../DeletePropertygraphStatisticsCommand.ts | 6 +- .../commands/DeleteSparqlStatisticsCommand.ts | 6 +- .../src/commands/ExecuteFastResetCommand.ts | 6 +- .../ExecuteGremlinExplainQueryCommand.ts | 6 +- .../ExecuteGremlinProfileQueryCommand.ts | 6 +- .../commands/ExecuteGremlinQueryCommand.ts | 6 +- .../ExecuteOpenCypherExplainQueryCommand.ts | 6 +- .../commands/ExecuteOpenCypherQueryCommand.ts | 6 +- .../src/commands/GetEngineStatusCommand.ts | 6 +- .../commands/GetGremlinQueryStatusCommand.ts | 6 +- .../src/commands/GetLoaderJobStatusCommand.ts | 6 +- .../commands/GetMLDataProcessingJobCommand.ts | 6 +- .../src/commands/GetMLEndpointCommand.ts | 6 +- .../commands/GetMLModelTrainingJobCommand.ts | 6 +- .../commands/GetMLModelTransformJobCommand.ts | 6 +- .../GetOpenCypherQueryStatusCommand.ts | 6 +- .../GetPropertygraphStatisticsCommand.ts | 6 +- .../commands/GetPropertygraphStreamCommand.ts | 6 +- .../GetPropertygraphSummaryCommand.ts | 6 +- .../src/commands/GetRDFGraphSummaryCommand.ts | 6 +- .../commands/GetSparqlStatisticsCommand.ts | 6 +- .../src/commands/GetSparqlStreamCommand.ts | 6 +- .../src/commands/ListGremlinQueriesCommand.ts | 6 +- .../src/commands/ListLoaderJobsCommand.ts | 6 +- .../ListMLDataProcessingJobsCommand.ts | 6 +- .../src/commands/ListMLEndpointsCommand.ts | 6 +- .../ListMLModelTrainingJobsCommand.ts | 6 +- .../ListMLModelTransformJobsCommand.ts | 6 +- .../commands/ListOpenCypherQueriesCommand.ts | 6 +- .../ManagePropertygraphStatisticsCommand.ts | 6 +- .../commands/ManageSparqlStatisticsCommand.ts | 6 +- .../src/commands/StartLoaderJobCommand.ts | 6 +- .../StartMLDataProcessingJobCommand.ts | 6 +- .../StartMLModelTrainingJobCommand.ts | 6 +- .../StartMLModelTransformJobCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/NeptunedataServiceException.ts | 2 +- .../client-neptunedata/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-neptunedata/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-network-firewall/package.json | 12 +- .../src/NetworkFirewall.ts | 4 +- .../src/NetworkFirewallClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...FirewallTransitGatewayAttachmentCommand.ts | 10 +- .../AssociateAvailabilityZonesCommand.ts | 10 +- .../AssociateFirewallPolicyCommand.ts | 10 +- .../src/commands/AssociateSubnetsCommand.ts | 10 +- ...chRuleGroupsToProxyConfigurationCommand.ts | 10 +- .../src/commands/CreateFirewallCommand.ts | 10 +- .../commands/CreateFirewallPolicyCommand.ts | 10 +- .../src/commands/CreateProxyCommand.ts | 10 +- .../CreateProxyConfigurationCommand.ts | 10 +- .../commands/CreateProxyRuleGroupCommand.ts | 10 +- .../src/commands/CreateProxyRulesCommand.ts | 10 +- .../src/commands/CreateRuleGroupCommand.ts | 10 +- ...CreateTLSInspectionConfigurationCommand.ts | 13 +- .../CreateVpcEndpointAssociationCommand.ts | 10 +- .../src/commands/DeleteFirewallCommand.ts | 10 +- .../commands/DeleteFirewallPolicyCommand.ts | 10 +- ...FirewallTransitGatewayAttachmentCommand.ts | 10 +- .../src/commands/DeleteProxyCommand.ts | 10 +- .../DeleteProxyConfigurationCommand.ts | 10 +- .../commands/DeleteProxyRuleGroupCommand.ts | 10 +- .../src/commands/DeleteProxyRulesCommand.ts | 10 +- .../commands/DeleteResourcePolicyCommand.ts | 10 +- .../src/commands/DeleteRuleGroupCommand.ts | 10 +- ...DeleteTLSInspectionConfigurationCommand.ts | 13 +- .../DeleteVpcEndpointAssociationCommand.ts | 10 +- .../src/commands/DescribeFirewallCommand.ts | 10 +- .../DescribeFirewallMetadataCommand.ts | 10 +- .../commands/DescribeFirewallPolicyCommand.ts | 10 +- .../commands/DescribeFlowOperationCommand.ts | 10 +- .../DescribeLoggingConfigurationCommand.ts | 10 +- .../src/commands/DescribeProxyCommand.ts | 10 +- .../DescribeProxyConfigurationCommand.ts | 10 +- .../src/commands/DescribeProxyRuleCommand.ts | 10 +- .../commands/DescribeProxyRuleGroupCommand.ts | 10 +- .../commands/DescribeResourcePolicyCommand.ts | 10 +- .../src/commands/DescribeRuleGroupCommand.ts | 10 +- .../DescribeRuleGroupMetadataCommand.ts | 10 +- .../DescribeRuleGroupSummaryCommand.ts | 10 +- ...scribeTLSInspectionConfigurationCommand.ts | 10 +- .../DescribeVpcEndpointAssociationCommand.ts | 10 +- ...RuleGroupsFromProxyConfigurationCommand.ts | 10 +- .../DisassociateAvailabilityZonesCommand.ts | 10 +- .../commands/DisassociateSubnetsCommand.ts | 10 +- .../GetAnalysisReportResultsCommand.ts | 10 +- .../commands/ListAnalysisReportsCommand.ts | 10 +- .../commands/ListFirewallPoliciesCommand.ts | 10 +- .../src/commands/ListFirewallsCommand.ts | 10 +- .../ListFlowOperationResultsCommand.ts | 10 +- .../src/commands/ListFlowOperationsCommand.ts | 10 +- .../src/commands/ListProxiesCommand.ts | 10 +- .../ListProxyConfigurationsCommand.ts | 10 +- .../commands/ListProxyRuleGroupsCommand.ts | 10 +- .../src/commands/ListRuleGroupsCommand.ts | 10 +- .../ListTLSInspectionConfigurationsCommand.ts | 13 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../ListVpcEndpointAssociationsCommand.ts | 10 +- .../src/commands/PutResourcePolicyCommand.ts | 10 +- ...FirewallTransitGatewayAttachmentCommand.ts | 10 +- .../commands/StartAnalysisReportCommand.ts | 10 +- .../src/commands/StartFlowCaptureCommand.ts | 10 +- .../src/commands/StartFlowFlushCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- ...AvailabilityZoneChangeProtectionCommand.ts | 10 +- .../UpdateFirewallAnalysisSettingsCommand.ts | 10 +- .../UpdateFirewallDeleteProtectionCommand.ts | 10 +- .../UpdateFirewallDescriptionCommand.ts | 10 +- ...eFirewallEncryptionConfigurationCommand.ts | 10 +- ...teFirewallPolicyChangeProtectionCommand.ts | 10 +- .../commands/UpdateFirewallPolicyCommand.ts | 10 +- .../UpdateLoggingConfigurationCommand.ts | 10 +- .../src/commands/UpdateProxyCommand.ts | 10 +- .../UpdateProxyConfigurationCommand.ts | 10 +- .../src/commands/UpdateProxyRuleCommand.ts | 10 +- .../UpdateProxyRuleGroupPrioritiesCommand.ts | 10 +- .../UpdateProxyRulePrioritiesCommand.ts | 10 +- .../src/commands/UpdateRuleGroupCommand.ts | 10 +- .../UpdateSubnetChangeProtectionCommand.ts | 10 +- ...UpdateTLSInspectionConfigurationCommand.ts | 13 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/NetworkFirewallServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetAnalysisReportResultsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAnalysisReportsPaginator.ts | 2 +- .../ListFirewallPoliciesPaginator.ts | 2 +- .../src/pagination/ListFirewallsPaginator.ts | 2 +- .../ListFlowOperationResultsPaginator.ts | 2 +- .../pagination/ListFlowOperationsPaginator.ts | 2 +- .../src/pagination/ListProxiesPaginator.ts | 2 +- .../ListProxyConfigurationsPaginator.ts | 2 +- .../ListProxyRuleGroupsPaginator.ts | 2 +- .../src/pagination/ListRuleGroupsPaginator.ts | 2 +- ...istTLSInspectionConfigurationsPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../ListVpcEndpointAssociationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-networkflowmonitor/package.json | 12 +- .../src/NetworkFlowMonitor.ts | 4 +- .../src/NetworkFlowMonitorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/CreateMonitorCommand.ts | 6 +- .../src/commands/CreateScopeCommand.ts | 6 +- .../src/commands/DeleteMonitorCommand.ts | 6 +- .../src/commands/DeleteScopeCommand.ts | 6 +- .../src/commands/GetMonitorCommand.ts | 6 +- ...eryResultsMonitorTopContributorsCommand.ts | 6 +- ...sWorkloadInsightsTopContributorsCommand.ts | 6 +- ...kloadInsightsTopContributorsDataCommand.ts | 6 +- ...ueryStatusMonitorTopContributorsCommand.ts | 6 +- ...sWorkloadInsightsTopContributorsCommand.ts | 6 +- ...kloadInsightsTopContributorsDataCommand.ts | 6 +- .../src/commands/GetScopeCommand.ts | 6 +- .../src/commands/ListMonitorsCommand.ts | 6 +- .../src/commands/ListScopesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...StartQueryMonitorTopContributorsCommand.ts | 6 +- ...yWorkloadInsightsTopContributorsCommand.ts | 6 +- ...kloadInsightsTopContributorsDataCommand.ts | 6 +- .../StopQueryMonitorTopContributorsCommand.ts | 6 +- ...yWorkloadInsightsTopContributorsCommand.ts | 6 +- ...kloadInsightsTopContributorsDataCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateMonitorCommand.ts | 6 +- .../src/commands/UpdateScopeCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../NetworkFlowMonitorServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- ...yResultsMonitorTopContributorsPaginator.ts | 2 +- ...oadInsightsTopContributorsDataPaginator.ts | 2 +- ...orkloadInsightsTopContributorsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListMonitorsPaginator.ts | 2 +- .../src/pagination/ListScopesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-networkmanager/package.json | 12 +- .../src/NetworkManager.ts | 4 +- .../src/NetworkManagerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptAttachmentCommand.ts | 10 +- .../commands/AssociateConnectPeerCommand.ts | 10 +- .../AssociateCustomerGatewayCommand.ts | 10 +- .../src/commands/AssociateLinkCommand.ts | 10 +- ...sociateTransitGatewayConnectPeerCommand.ts | 10 +- .../CreateConnectAttachmentCommand.ts | 10 +- .../src/commands/CreateConnectPeerCommand.ts | 10 +- .../src/commands/CreateConnectionCommand.ts | 10 +- .../src/commands/CreateCoreNetworkCommand.ts | 10 +- ...CoreNetworkPrefixListAssociationCommand.ts | 10 +- .../src/commands/CreateDeviceCommand.ts | 10 +- ...teDirectConnectGatewayAttachmentCommand.ts | 10 +- .../commands/CreateGlobalNetworkCommand.ts | 10 +- .../src/commands/CreateLinkCommand.ts | 10 +- .../src/commands/CreateSiteCommand.ts | 10 +- .../CreateSiteToSiteVpnAttachmentCommand.ts | 10 +- .../CreateTransitGatewayPeeringCommand.ts | 10 +- ...ansitGatewayRouteTableAttachmentCommand.ts | 10 +- .../commands/CreateVpcAttachmentCommand.ts | 10 +- .../src/commands/DeleteAttachmentCommand.ts | 10 +- .../src/commands/DeleteConnectPeerCommand.ts | 10 +- .../src/commands/DeleteConnectionCommand.ts | 10 +- .../src/commands/DeleteCoreNetworkCommand.ts | 10 +- .../DeleteCoreNetworkPolicyVersionCommand.ts | 10 +- ...CoreNetworkPrefixListAssociationCommand.ts | 10 +- .../src/commands/DeleteDeviceCommand.ts | 10 +- .../commands/DeleteGlobalNetworkCommand.ts | 10 +- .../src/commands/DeleteLinkCommand.ts | 10 +- .../src/commands/DeletePeeringCommand.ts | 10 +- .../commands/DeleteResourcePolicyCommand.ts | 10 +- .../src/commands/DeleteSiteCommand.ts | 10 +- .../DeregisterTransitGatewayCommand.ts | 10 +- .../commands/DescribeGlobalNetworksCommand.ts | 10 +- .../DisassociateConnectPeerCommand.ts | 10 +- .../DisassociateCustomerGatewayCommand.ts | 10 +- .../src/commands/DisassociateLinkCommand.ts | 10 +- ...sociateTransitGatewayConnectPeerCommand.ts | 10 +- .../ExecuteCoreNetworkChangeSetCommand.ts | 10 +- .../commands/GetConnectAttachmentCommand.ts | 10 +- .../GetConnectPeerAssociationsCommand.ts | 10 +- .../src/commands/GetConnectPeerCommand.ts | 10 +- .../src/commands/GetConnectionsCommand.ts | 10 +- .../GetCoreNetworkChangeEventsCommand.ts | 10 +- .../GetCoreNetworkChangeSetCommand.ts | 10 +- .../src/commands/GetCoreNetworkCommand.ts | 10 +- .../commands/GetCoreNetworkPolicyCommand.ts | 10 +- .../GetCustomerGatewayAssociationsCommand.ts | 10 +- .../src/commands/GetDevicesCommand.ts | 10 +- ...etDirectConnectGatewayAttachmentCommand.ts | 10 +- .../commands/GetLinkAssociationsCommand.ts | 10 +- .../src/commands/GetLinksCommand.ts | 10 +- .../GetNetworkResourceCountsCommand.ts | 10 +- .../GetNetworkResourceRelationshipsCommand.ts | 13 +- .../commands/GetNetworkResourcesCommand.ts | 10 +- .../src/commands/GetNetworkRoutesCommand.ts | 10 +- .../commands/GetNetworkTelemetryCommand.ts | 10 +- .../src/commands/GetResourcePolicyCommand.ts | 10 +- .../src/commands/GetRouteAnalysisCommand.ts | 10 +- .../GetSiteToSiteVpnAttachmentCommand.ts | 10 +- .../src/commands/GetSitesCommand.ts | 10 +- ...itGatewayConnectPeerAssociationsCommand.ts | 10 +- .../GetTransitGatewayPeeringCommand.ts | 10 +- .../GetTransitGatewayRegistrationsCommand.ts | 10 +- ...ansitGatewayRouteTableAttachmentCommand.ts | 10 +- .../src/commands/GetVpcAttachmentCommand.ts | 10 +- ...achmentRoutingPolicyAssociationsCommand.ts | 10 +- .../src/commands/ListAttachmentsCommand.ts | 10 +- .../src/commands/ListConnectPeersCommand.ts | 10 +- .../ListCoreNetworkPolicyVersionsCommand.ts | 10 +- ...oreNetworkPrefixListAssociationsCommand.ts | 10 +- ...istCoreNetworkRoutingInformationCommand.ts | 10 +- .../src/commands/ListCoreNetworksCommand.ts | 10 +- ...tOrganizationServiceAccessStatusCommand.ts | 10 +- .../src/commands/ListPeeringsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../PutAttachmentRoutingPolicyLabelCommand.ts | 13 +- .../commands/PutCoreNetworkPolicyCommand.ts | 10 +- .../src/commands/PutResourcePolicyCommand.ts | 10 +- .../commands/RegisterTransitGatewayCommand.ts | 10 +- .../src/commands/RejectAttachmentCommand.ts | 10 +- ...moveAttachmentRoutingPolicyLabelCommand.ts | 10 +- .../RestoreCoreNetworkPolicyVersionCommand.ts | 13 +- ...tOrganizationServiceAccessUpdateCommand.ts | 10 +- .../src/commands/StartRouteAnalysisCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateConnectionCommand.ts | 10 +- .../src/commands/UpdateCoreNetworkCommand.ts | 10 +- .../src/commands/UpdateDeviceCommand.ts | 10 +- ...teDirectConnectGatewayAttachmentCommand.ts | 10 +- .../commands/UpdateGlobalNetworkCommand.ts | 10 +- .../src/commands/UpdateLinkCommand.ts | 10 +- .../UpdateNetworkResourceMetadataCommand.ts | 10 +- .../src/commands/UpdateSiteCommand.ts | 10 +- .../commands/UpdateVpcAttachmentCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/NetworkManagerServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeGlobalNetworksPaginator.ts | 2 +- .../GetConnectPeerAssociationsPaginator.ts | 2 +- .../src/pagination/GetConnectionsPaginator.ts | 2 +- .../GetCoreNetworkChangeEventsPaginator.ts | 2 +- .../GetCoreNetworkChangeSetPaginator.ts | 2 +- ...GetCustomerGatewayAssociationsPaginator.ts | 2 +- .../src/pagination/GetDevicesPaginator.ts | 2 +- .../GetLinkAssociationsPaginator.ts | 2 +- .../src/pagination/GetLinksPaginator.ts | 2 +- .../GetNetworkResourceCountsPaginator.ts | 2 +- ...etNetworkResourceRelationshipsPaginator.ts | 2 +- .../GetNetworkResourcesPaginator.ts | 2 +- .../GetNetworkTelemetryPaginator.ts | 2 +- .../src/pagination/GetSitesPaginator.ts | 2 +- ...GatewayConnectPeerAssociationsPaginator.ts | 2 +- ...GetTransitGatewayRegistrationsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...hmentRoutingPolicyAssociationsPaginator.ts | 2 +- .../pagination/ListAttachmentsPaginator.ts | 2 +- .../pagination/ListConnectPeersPaginator.ts | 2 +- .../ListCoreNetworkPolicyVersionsPaginator.ts | 2 +- ...eNetworkPrefixListAssociationsPaginator.ts | 2 +- ...tCoreNetworkRoutingInformationPaginator.ts | 2 +- .../pagination/ListCoreNetworksPaginator.ts | 2 +- .../src/pagination/ListPeeringsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-networkmonitor/package.json | 12 +- .../src/NetworkMonitor.ts | 4 +- .../src/NetworkMonitorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateMonitorCommand.ts | 10 +- .../src/commands/CreateProbeCommand.ts | 10 +- .../src/commands/DeleteMonitorCommand.ts | 10 +- .../src/commands/DeleteProbeCommand.ts | 10 +- .../src/commands/GetMonitorCommand.ts | 10 +- .../src/commands/GetProbeCommand.ts | 10 +- .../src/commands/ListMonitorsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateMonitorCommand.ts | 10 +- .../src/commands/UpdateProbeCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/NetworkMonitorServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListMonitorsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-notifications/package.json | 12 +- .../client-notifications/src/Notifications.ts | 4 +- .../src/NotificationsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateChannelCommand.ts | 6 +- ...anagedNotificationAccountContactCommand.ts | 6 +- ...gedNotificationAdditionalChannelCommand.ts | 6 +- .../AssociateOrganizationalUnitCommand.ts | 6 +- .../src/commands/CreateEventRuleCommand.ts | 6 +- .../CreateNotificationConfigurationCommand.ts | 9 +- .../src/commands/DeleteEventRuleCommand.ts | 6 +- .../DeleteNotificationConfigurationCommand.ts | 9 +- .../DeregisterNotificationHubCommand.ts | 6 +- ...tificationsAccessForOrganizationCommand.ts | 6 +- .../commands/DisassociateChannelCommand.ts | 6 +- ...anagedNotificationAccountContactCommand.ts | 6 +- ...gedNotificationAdditionalChannelCommand.ts | 6 +- .../DisassociateOrganizationalUnitCommand.ts | 6 +- ...tificationsAccessForOrganizationCommand.ts | 6 +- .../src/commands/GetEventRuleCommand.ts | 6 +- ...GetManagedNotificationChildEventCommand.ts | 9 +- ...ManagedNotificationConfigurationCommand.ts | 6 +- .../GetManagedNotificationEventCommand.ts | 6 +- .../GetNotificationConfigurationCommand.ts | 6 +- .../commands/GetNotificationEventCommand.ts | 6 +- ...tificationsAccessForOrganizationCommand.ts | 6 +- .../src/commands/ListChannelsCommand.ts | 6 +- .../src/commands/ListEventRulesCommand.ts | 6 +- ...dNotificationChannelAssociationsCommand.ts | 6 +- ...stManagedNotificationChildEventsCommand.ts | 6 +- ...anagedNotificationConfigurationsCommand.ts | 6 +- .../ListManagedNotificationEventsCommand.ts | 6 +- .../src/commands/ListMemberAccountsCommand.ts | 6 +- .../ListNotificationConfigurationsCommand.ts | 6 +- .../commands/ListNotificationEventsCommand.ts | 6 +- .../commands/ListNotificationHubsCommand.ts | 6 +- .../ListOrganizationalUnitsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../RegisterNotificationHubCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateEventRuleCommand.ts | 6 +- .../UpdateNotificationConfigurationCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/NotificationsServiceException.ts | 2 +- .../client-notifications/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- .../src/pagination/ListEventRulesPaginator.ts | 2 +- ...otificationChannelAssociationsPaginator.ts | 2 +- ...ManagedNotificationChildEventsPaginator.ts | 2 +- ...agedNotificationConfigurationsPaginator.ts | 2 +- .../ListManagedNotificationEventsPaginator.ts | 2 +- .../pagination/ListMemberAccountsPaginator.ts | 2 +- ...ListNotificationConfigurationsPaginator.ts | 2 +- .../ListNotificationEventsPaginator.ts | 2 +- .../ListNotificationHubsPaginator.ts | 2 +- .../ListOrganizationalUnitsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-notifications/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-notificationscontacts/package.json | 12 +- .../src/NotificationsContacts.ts | 4 +- .../src/NotificationsContactsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ActivateEmailContactCommand.ts | 6 +- .../src/commands/CreateEmailContactCommand.ts | 6 +- .../src/commands/DeleteEmailContactCommand.ts | 6 +- .../src/commands/GetEmailContactCommand.ts | 6 +- .../src/commands/ListEmailContactsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/SendActivationCodeCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../NotificationsContactsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListEmailContactsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-oam/package.json | 12 +- clients/client-oam/src/OAM.ts | 4 +- clients/client-oam/src/OAMClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateLinkCommand.ts | 6 +- .../src/commands/CreateSinkCommand.ts | 6 +- .../src/commands/DeleteLinkCommand.ts | 6 +- .../src/commands/DeleteSinkCommand.ts | 6 +- .../client-oam/src/commands/GetLinkCommand.ts | 6 +- .../client-oam/src/commands/GetSinkCommand.ts | 6 +- .../src/commands/GetSinkPolicyCommand.ts | 6 +- .../src/commands/ListAttachedLinksCommand.ts | 6 +- .../src/commands/ListLinksCommand.ts | 6 +- .../src/commands/ListSinksCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutSinkPolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateLinkCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-oam/src/extensionConfiguration.ts | 8 +- .../src/models/OAMServiceException.ts | 2 +- clients/client-oam/src/models/errors.ts | 2 +- .../client-oam/src/pagination/Interfaces.ts | 2 +- .../pagination/ListAttachedLinksPaginator.ts | 2 +- .../src/pagination/ListLinksPaginator.ts | 2 +- .../src/pagination/ListSinksPaginator.ts | 2 +- .../client-oam/src/runtimeConfig.browser.ts | 7 +- .../client-oam/src/runtimeConfig.native.ts | 2 +- .../client-oam/src/runtimeConfig.shared.ts | 4 +- clients/client-oam/src/runtimeConfig.ts | 8 +- clients/client-oam/src/runtimeExtensions.ts | 2 +- clients/client-oam/src/schemas/schemas_0.ts | 2 +- .../client-observabilityadmin/package.json | 12 +- .../src/ObservabilityAdmin.ts | 4 +- .../src/ObservabilityAdminClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- ...entralizationRuleForOrganizationCommand.ts | 6 +- .../commands/CreateTelemetryRuleCommand.ts | 6 +- ...eateTelemetryRuleForOrganizationCommand.ts | 9 +- ...entralizationRuleForOrganizationCommand.ts | 6 +- .../commands/DeleteTelemetryRuleCommand.ts | 6 +- ...leteTelemetryRuleForOrganizationCommand.ts | 6 +- ...entralizationRuleForOrganizationCommand.ts | 6 +- .../GetTelemetryEnrichmentStatusCommand.ts | 6 +- .../GetTelemetryEvaluationStatusCommand.ts | 6 +- ...yEvaluationStatusForOrganizationCommand.ts | 6 +- .../src/commands/GetTelemetryRuleCommand.ts | 6 +- .../GetTelemetryRuleForOrganizationCommand.ts | 6 +- ...ntralizationRulesForOrganizationCommand.ts | 6 +- .../commands/ListResourceTelemetryCommand.ts | 6 +- ...ResourceTelemetryForOrganizationCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTelemetryRulesCommand.ts | 6 +- ...istTelemetryRulesForOrganizationCommand.ts | 9 +- .../StartTelemetryEnrichmentCommand.ts | 6 +- .../StartTelemetryEvaluationCommand.ts | 4 +- ...lemetryEvaluationForOrganizationCommand.ts | 4 +- .../StopTelemetryEnrichmentCommand.ts | 6 +- .../StopTelemetryEvaluationCommand.ts | 4 +- ...lemetryEvaluationForOrganizationCommand.ts | 4 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...entralizationRuleForOrganizationCommand.ts | 6 +- .../commands/UpdateTelemetryRuleCommand.ts | 6 +- ...dateTelemetryRuleForOrganizationCommand.ts | 9 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ObservabilityAdminServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...ralizationRulesForOrganizationPaginator.ts | 2 +- ...sourceTelemetryForOrganizationPaginator.ts | 2 +- .../ListResourceTelemetryPaginator.ts | 2 +- ...tTelemetryRulesForOrganizationPaginator.ts | 2 +- .../pagination/ListTelemetryRulesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-odb/package.json | 12 +- clients/client-odb/src/Odb.ts | 4 +- clients/client-odb/src/OdbClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptMarketplaceRegistrationCommand.ts | 6 +- .../AssociateIamRoleToResourceCommand.ts | 6 +- .../CreateCloudAutonomousVmClusterCommand.ts | 6 +- ...CreateCloudExadataInfrastructureCommand.ts | 6 +- .../commands/CreateCloudVmClusterCommand.ts | 6 +- .../src/commands/CreateOdbNetworkCommand.ts | 6 +- .../CreateOdbPeeringConnectionCommand.ts | 6 +- .../DeleteCloudAutonomousVmClusterCommand.ts | 6 +- ...DeleteCloudExadataInfrastructureCommand.ts | 6 +- .../commands/DeleteCloudVmClusterCommand.ts | 6 +- .../src/commands/DeleteOdbNetworkCommand.ts | 6 +- .../DeleteOdbPeeringConnectionCommand.ts | 6 +- .../DisassociateIamRoleFromResourceCommand.ts | 6 +- .../GetCloudAutonomousVmClusterCommand.ts | 6 +- .../GetCloudExadataInfrastructureCommand.ts | 6 +- ...frastructureUnallocatedResourcesCommand.ts | 6 +- .../src/commands/GetCloudVmClusterCommand.ts | 6 +- .../src/commands/GetDbNodeCommand.ts | 6 +- .../src/commands/GetDbServerCommand.ts | 6 +- .../commands/GetOciOnboardingStatusCommand.ts | 6 +- .../src/commands/GetOdbNetworkCommand.ts | 6 +- .../GetOdbPeeringConnectionCommand.ts | 6 +- .../src/commands/InitializeServiceCommand.ts | 6 +- .../ListAutonomousVirtualMachinesCommand.ts | 6 +- .../ListCloudAutonomousVmClustersCommand.ts | 6 +- .../ListCloudExadataInfrastructuresCommand.ts | 6 +- .../commands/ListCloudVmClustersCommand.ts | 6 +- .../src/commands/ListDbNodesCommand.ts | 6 +- .../src/commands/ListDbServersCommand.ts | 6 +- .../src/commands/ListDbSystemShapesCommand.ts | 6 +- .../src/commands/ListGiVersionsCommand.ts | 6 +- .../src/commands/ListOdbNetworksCommand.ts | 6 +- .../ListOdbPeeringConnectionsCommand.ts | 6 +- .../src/commands/ListSystemVersionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RebootDbNodeCommand.ts | 6 +- .../src/commands/StartDbNodeCommand.ts | 6 +- .../src/commands/StopDbNodeCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...UpdateCloudExadataInfrastructureCommand.ts | 6 +- .../src/commands/UpdateOdbNetworkCommand.ts | 6 +- .../UpdateOdbPeeringConnectionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-odb/src/extensionConfiguration.ts | 8 +- .../src/models/OdbServiceException.ts | 2 +- clients/client-odb/src/models/errors.ts | 2 +- .../client-odb/src/pagination/Interfaces.ts | 2 +- .../ListAutonomousVirtualMachinesPaginator.ts | 2 +- .../ListCloudAutonomousVmClustersPaginator.ts | 2 +- ...istCloudExadataInfrastructuresPaginator.ts | 2 +- .../ListCloudVmClustersPaginator.ts | 2 +- .../src/pagination/ListDbNodesPaginator.ts | 2 +- .../src/pagination/ListDbServersPaginator.ts | 2 +- .../pagination/ListDbSystemShapesPaginator.ts | 2 +- .../src/pagination/ListGiVersionsPaginator.ts | 2 +- .../pagination/ListOdbNetworksPaginator.ts | 2 +- .../ListOdbPeeringConnectionsPaginator.ts | 2 +- .../pagination/ListSystemVersionsPaginator.ts | 2 +- .../client-odb/src/runtimeConfig.browser.ts | 7 +- .../client-odb/src/runtimeConfig.native.ts | 2 +- .../client-odb/src/runtimeConfig.shared.ts | 4 +- clients/client-odb/src/runtimeConfig.ts | 8 +- clients/client-odb/src/runtimeExtensions.ts | 2 +- clients/client-odb/src/schemas/schemas_0.ts | 2 +- clients/client-omics/package.json | 12 +- clients/client-omics/src/Omics.ts | 4 +- clients/client-omics/src/OmicsClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AbortMultipartReadSetUploadCommand.ts | 6 +- .../src/commands/AcceptShareCommand.ts | 6 +- .../src/commands/BatchDeleteReadSetCommand.ts | 6 +- .../CancelAnnotationImportJobCommand.ts | 6 +- .../src/commands/CancelRunCommand.ts | 6 +- .../commands/CancelVariantImportJobCommand.ts | 6 +- .../CompleteMultipartReadSetUploadCommand.ts | 6 +- .../commands/CreateAnnotationStoreCommand.ts | 6 +- .../CreateAnnotationStoreVersionCommand.ts | 6 +- .../CreateMultipartReadSetUploadCommand.ts | 6 +- .../commands/CreateReferenceStoreCommand.ts | 6 +- .../src/commands/CreateRunCacheCommand.ts | 6 +- .../src/commands/CreateRunGroupCommand.ts | 6 +- .../commands/CreateSequenceStoreCommand.ts | 6 +- .../src/commands/CreateShareCommand.ts | 6 +- .../src/commands/CreateVariantStoreCommand.ts | 6 +- .../src/commands/CreateWorkflowCommand.ts | 6 +- .../commands/CreateWorkflowVersionCommand.ts | 6 +- .../commands/DeleteAnnotationStoreCommand.ts | 6 +- .../DeleteAnnotationStoreVersionsCommand.ts | 6 +- .../src/commands/DeleteReferenceCommand.ts | 6 +- .../commands/DeleteReferenceStoreCommand.ts | 6 +- .../src/commands/DeleteRunCacheCommand.ts | 6 +- .../src/commands/DeleteRunCommand.ts | 6 +- .../src/commands/DeleteRunGroupCommand.ts | 6 +- .../commands/DeleteS3AccessPolicyCommand.ts | 6 +- .../commands/DeleteSequenceStoreCommand.ts | 6 +- .../src/commands/DeleteShareCommand.ts | 6 +- .../src/commands/DeleteVariantStoreCommand.ts | 6 +- .../src/commands/DeleteWorkflowCommand.ts | 6 +- .../commands/DeleteWorkflowVersionCommand.ts | 6 +- .../commands/GetAnnotationImportJobCommand.ts | 6 +- .../src/commands/GetAnnotationStoreCommand.ts | 6 +- .../GetAnnotationStoreVersionCommand.ts | 6 +- .../GetReadSetActivationJobCommand.ts | 6 +- .../src/commands/GetReadSetCommand.ts | 6 +- .../commands/GetReadSetExportJobCommand.ts | 6 +- .../commands/GetReadSetImportJobCommand.ts | 6 +- .../src/commands/GetReadSetMetadataCommand.ts | 6 +- .../src/commands/GetReferenceCommand.ts | 6 +- .../commands/GetReferenceImportJobCommand.ts | 6 +- .../commands/GetReferenceMetadataCommand.ts | 6 +- .../src/commands/GetReferenceStoreCommand.ts | 6 +- .../src/commands/GetRunCacheCommand.ts | 6 +- .../src/commands/GetRunCommand.ts | 6 +- .../src/commands/GetRunGroupCommand.ts | 6 +- .../src/commands/GetRunTaskCommand.ts | 6 +- .../src/commands/GetS3AccessPolicyCommand.ts | 6 +- .../src/commands/GetSequenceStoreCommand.ts | 6 +- .../src/commands/GetShareCommand.ts | 6 +- .../commands/GetVariantImportJobCommand.ts | 6 +- .../src/commands/GetVariantStoreCommand.ts | 6 +- .../src/commands/GetWorkflowCommand.ts | 6 +- .../src/commands/GetWorkflowVersionCommand.ts | 6 +- .../ListAnnotationImportJobsCommand.ts | 6 +- .../ListAnnotationStoreVersionsCommand.ts | 6 +- .../commands/ListAnnotationStoresCommand.ts | 6 +- .../ListMultipartReadSetUploadsCommand.ts | 6 +- .../ListReadSetActivationJobsCommand.ts | 6 +- .../commands/ListReadSetExportJobsCommand.ts | 6 +- .../commands/ListReadSetImportJobsCommand.ts | 6 +- .../commands/ListReadSetUploadPartsCommand.ts | 6 +- .../src/commands/ListReadSetsCommand.ts | 6 +- .../ListReferenceImportJobsCommand.ts | 6 +- .../commands/ListReferenceStoresCommand.ts | 6 +- .../src/commands/ListReferencesCommand.ts | 6 +- .../src/commands/ListRunCachesCommand.ts | 6 +- .../src/commands/ListRunGroupsCommand.ts | 6 +- .../src/commands/ListRunTasksCommand.ts | 6 +- .../src/commands/ListRunsCommand.ts | 6 +- .../src/commands/ListSequenceStoresCommand.ts | 6 +- .../src/commands/ListSharesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListVariantImportJobsCommand.ts | 6 +- .../src/commands/ListVariantStoresCommand.ts | 6 +- .../commands/ListWorkflowVersionsCommand.ts | 6 +- .../src/commands/ListWorkflowsCommand.ts | 6 +- .../src/commands/PutS3AccessPolicyCommand.ts | 6 +- .../StartAnnotationImportJobCommand.ts | 6 +- .../StartReadSetActivationJobCommand.ts | 6 +- .../commands/StartReadSetExportJobCommand.ts | 6 +- .../commands/StartReadSetImportJobCommand.ts | 6 +- .../StartReferenceImportJobCommand.ts | 6 +- .../src/commands/StartRunCommand.ts | 6 +- .../commands/StartVariantImportJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAnnotationStoreCommand.ts | 6 +- .../UpdateAnnotationStoreVersionCommand.ts | 6 +- .../src/commands/UpdateRunCacheCommand.ts | 6 +- .../src/commands/UpdateRunGroupCommand.ts | 6 +- .../commands/UpdateSequenceStoreCommand.ts | 6 +- .../src/commands/UpdateVariantStoreCommand.ts | 6 +- .../src/commands/UpdateWorkflowCommand.ts | 6 +- .../commands/UpdateWorkflowVersionCommand.ts | 6 +- .../src/commands/UploadReadSetPartCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/OmicsServiceException.ts | 2 +- clients/client-omics/src/models/errors.ts | 2 +- .../client-omics/src/pagination/Interfaces.ts | 2 +- .../ListAnnotationImportJobsPaginator.ts | 2 +- .../ListAnnotationStoreVersionsPaginator.ts | 2 +- .../ListAnnotationStoresPaginator.ts | 2 +- .../ListMultipartReadSetUploadsPaginator.ts | 2 +- .../ListReadSetActivationJobsPaginator.ts | 2 +- .../ListReadSetExportJobsPaginator.ts | 2 +- .../ListReadSetImportJobsPaginator.ts | 2 +- .../ListReadSetUploadPartsPaginator.ts | 2 +- .../src/pagination/ListReadSetsPaginator.ts | 2 +- .../ListReferenceImportJobsPaginator.ts | 2 +- .../ListReferenceStoresPaginator.ts | 2 +- .../src/pagination/ListReferencesPaginator.ts | 2 +- .../src/pagination/ListRunCachesPaginator.ts | 2 +- .../src/pagination/ListRunGroupsPaginator.ts | 2 +- .../src/pagination/ListRunTasksPaginator.ts | 2 +- .../src/pagination/ListRunsPaginator.ts | 2 +- .../pagination/ListSequenceStoresPaginator.ts | 2 +- .../src/pagination/ListSharesPaginator.ts | 2 +- .../ListVariantImportJobsPaginator.ts | 2 +- .../pagination/ListVariantStoresPaginator.ts | 2 +- .../ListWorkflowVersionsPaginator.ts | 2 +- .../src/pagination/ListWorkflowsPaginator.ts | 2 +- .../client-omics/src/runtimeConfig.browser.ts | 7 +- .../client-omics/src/runtimeConfig.native.ts | 2 +- .../client-omics/src/runtimeConfig.shared.ts | 4 +- clients/client-omics/src/runtimeConfig.ts | 8 +- clients/client-omics/src/runtimeExtensions.ts | 2 +- clients/client-omics/src/schemas/schemas_0.ts | 2 +- clients/client-opensearch/package.json | 12 +- clients/client-opensearch/src/OpenSearch.ts | 4 +- .../client-opensearch/src/OpenSearchClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptInboundConnectionCommand.ts | 6 +- .../src/commands/AddDataSourceCommand.ts | 6 +- .../AddDirectQueryDataSourceCommand.ts | 6 +- .../src/commands/AddTagsCommand.ts | 6 +- .../src/commands/AssociatePackageCommand.ts | 6 +- .../src/commands/AssociatePackagesCommand.ts | 6 +- .../AuthorizeVpcEndpointAccessCommand.ts | 6 +- .../CancelDomainConfigChangeCommand.ts | 6 +- .../CancelServiceSoftwareUpdateCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../src/commands/CreateDomainCommand.ts | 6 +- .../src/commands/CreateIndexCommand.ts | 6 +- .../CreateOutboundConnectionCommand.ts | 6 +- .../src/commands/CreatePackageCommand.ts | 6 +- .../src/commands/CreateVpcEndpointCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../src/commands/DeleteDataSourceCommand.ts | 6 +- .../DeleteDirectQueryDataSourceCommand.ts | 6 +- .../src/commands/DeleteDomainCommand.ts | 6 +- .../DeleteInboundConnectionCommand.ts | 6 +- .../src/commands/DeleteIndexCommand.ts | 6 +- .../DeleteOutboundConnectionCommand.ts | 6 +- .../src/commands/DeletePackageCommand.ts | 6 +- .../src/commands/DeleteVpcEndpointCommand.ts | 6 +- .../DescribeDomainAutoTunesCommand.ts | 6 +- .../DescribeDomainChangeProgressCommand.ts | 6 +- .../src/commands/DescribeDomainCommand.ts | 6 +- .../commands/DescribeDomainConfigCommand.ts | 6 +- .../commands/DescribeDomainHealthCommand.ts | 6 +- .../commands/DescribeDomainNodesCommand.ts | 6 +- .../src/commands/DescribeDomainsCommand.ts | 6 +- .../commands/DescribeDryRunProgressCommand.ts | 6 +- .../DescribeInboundConnectionsCommand.ts | 6 +- .../DescribeInstanceTypeLimitsCommand.ts | 6 +- .../DescribeOutboundConnectionsCommand.ts | 6 +- .../src/commands/DescribePackagesCommand.ts | 6 +- ...escribeReservedInstanceOfferingsCommand.ts | 6 +- .../DescribeReservedInstancesCommand.ts | 6 +- .../commands/DescribeVpcEndpointsCommand.ts | 6 +- .../src/commands/DissociatePackageCommand.ts | 6 +- .../src/commands/DissociatePackagesCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../commands/GetCompatibleVersionsCommand.ts | 6 +- .../src/commands/GetDataSourceCommand.ts | 6 +- .../GetDefaultApplicationSettingCommand.ts | 6 +- .../GetDirectQueryDataSourceCommand.ts | 6 +- .../GetDomainMaintenanceStatusCommand.ts | 6 +- .../src/commands/GetIndexCommand.ts | 6 +- .../GetPackageVersionHistoryCommand.ts | 6 +- .../src/commands/GetUpgradeHistoryCommand.ts | 6 +- .../src/commands/GetUpgradeStatusCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../src/commands/ListDataSourcesCommand.ts | 6 +- .../ListDirectQueryDataSourcesCommand.ts | 6 +- .../commands/ListDomainMaintenancesCommand.ts | 6 +- .../src/commands/ListDomainNamesCommand.ts | 6 +- .../commands/ListDomainsForPackageCommand.ts | 6 +- .../ListInstanceTypeDetailsCommand.ts | 6 +- .../commands/ListPackagesForDomainCommand.ts | 6 +- .../commands/ListScheduledActionsCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../src/commands/ListVersionsCommand.ts | 6 +- .../commands/ListVpcEndpointAccessCommand.ts | 6 +- .../src/commands/ListVpcEndpointsCommand.ts | 6 +- .../ListVpcEndpointsForDomainCommand.ts | 6 +- ...PurchaseReservedInstanceOfferingCommand.ts | 9 +- .../PutDefaultApplicationSettingCommand.ts | 6 +- .../RejectInboundConnectionCommand.ts | 6 +- .../src/commands/RemoveTagsCommand.ts | 6 +- .../RevokeVpcEndpointAccessCommand.ts | 6 +- .../commands/StartDomainMaintenanceCommand.ts | 6 +- .../StartServiceSoftwareUpdateCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../src/commands/UpdateDataSourceCommand.ts | 6 +- .../UpdateDirectQueryDataSourceCommand.ts | 6 +- .../src/commands/UpdateDomainConfigCommand.ts | 6 +- .../src/commands/UpdateIndexCommand.ts | 6 +- .../src/commands/UpdatePackageCommand.ts | 6 +- .../src/commands/UpdatePackageScopeCommand.ts | 6 +- .../commands/UpdateScheduledActionCommand.ts | 6 +- .../src/commands/UpdateVpcEndpointCommand.ts | 6 +- .../src/commands/UpgradeDomainCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/OpenSearchServiceException.ts | 2 +- .../client-opensearch/src/models/errors.ts | 2 +- .../DescribeDomainAutoTunesPaginator.ts | 2 +- .../DescribeInboundConnectionsPaginator.ts | 2 +- .../DescribeOutboundConnectionsPaginator.ts | 2 +- .../pagination/DescribePackagesPaginator.ts | 2 +- ...cribeReservedInstanceOfferingsPaginator.ts | 2 +- .../DescribeReservedInstancesPaginator.ts | 2 +- .../GetPackageVersionHistoryPaginator.ts | 2 +- .../pagination/GetUpgradeHistoryPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../ListDomainMaintenancesPaginator.ts | 2 +- .../ListDomainsForPackagePaginator.ts | 2 +- .../ListInstanceTypeDetailsPaginator.ts | 2 +- .../ListPackagesForDomainPaginator.ts | 2 +- .../ListScheduledActionsPaginator.ts | 2 +- .../src/pagination/ListVersionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-opensearch/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-opensearchserverless/package.json | 12 +- .../src/OpenSearchServerless.ts | 4 +- .../src/OpenSearchServerlessClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchGetCollectionCommand.ts | 6 +- ...BatchGetEffectiveLifecyclePolicyCommand.ts | 9 +- .../BatchGetLifecyclePolicyCommand.ts | 6 +- .../commands/BatchGetVpcEndpointCommand.ts | 6 +- .../src/commands/CreateAccessPolicyCommand.ts | 6 +- .../src/commands/CreateCollectionCommand.ts | 6 +- .../src/commands/CreateIndexCommand.ts | 6 +- .../commands/CreateLifecyclePolicyCommand.ts | 6 +- .../commands/CreateSecurityConfigCommand.ts | 6 +- .../commands/CreateSecurityPolicyCommand.ts | 6 +- .../src/commands/CreateVpcEndpointCommand.ts | 6 +- .../src/commands/DeleteAccessPolicyCommand.ts | 6 +- .../src/commands/DeleteCollectionCommand.ts | 6 +- .../src/commands/DeleteIndexCommand.ts | 6 +- .../commands/DeleteLifecyclePolicyCommand.ts | 6 +- .../commands/DeleteSecurityConfigCommand.ts | 6 +- .../commands/DeleteSecurityPolicyCommand.ts | 6 +- .../src/commands/DeleteVpcEndpointCommand.ts | 6 +- .../src/commands/GetAccessPolicyCommand.ts | 6 +- .../src/commands/GetAccountSettingsCommand.ts | 6 +- .../src/commands/GetIndexCommand.ts | 6 +- .../src/commands/GetPoliciesStatsCommand.ts | 6 +- .../src/commands/GetSecurityConfigCommand.ts | 6 +- .../src/commands/GetSecurityPolicyCommand.ts | 6 +- .../src/commands/ListAccessPoliciesCommand.ts | 6 +- .../src/commands/ListCollectionsCommand.ts | 6 +- .../commands/ListLifecyclePoliciesCommand.ts | 6 +- .../commands/ListSecurityConfigsCommand.ts | 6 +- .../commands/ListSecurityPoliciesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListVpcEndpointsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAccessPolicyCommand.ts | 6 +- .../commands/UpdateAccountSettingsCommand.ts | 6 +- .../src/commands/UpdateCollectionCommand.ts | 6 +- .../src/commands/UpdateIndexCommand.ts | 6 +- .../commands/UpdateLifecyclePolicyCommand.ts | 6 +- .../commands/UpdateSecurityConfigCommand.ts | 6 +- .../commands/UpdateSecurityPolicyCommand.ts | 6 +- .../src/commands/UpdateVpcEndpointCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../OpenSearchServerlessServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAccessPoliciesPaginator.ts | 2 +- .../pagination/ListCollectionsPaginator.ts | 2 +- .../ListLifecyclePoliciesPaginator.ts | 2 +- .../ListSecurityConfigsPaginator.ts | 2 +- .../ListSecurityPoliciesPaginator.ts | 2 +- .../pagination/ListVpcEndpointsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-organizations/package.json | 12 +- .../client-organizations/src/Organizations.ts | 4 +- .../src/OrganizationsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptHandshakeCommand.ts | 6 +- .../src/commands/AttachPolicyCommand.ts | 6 +- .../src/commands/CancelHandshakeCommand.ts | 6 +- .../src/commands/CloseAccountCommand.ts | 6 +- .../src/commands/CreateAccountCommand.ts | 6 +- .../commands/CreateGovCloudAccountCommand.ts | 6 +- .../src/commands/CreateOrganizationCommand.ts | 6 +- .../CreateOrganizationalUnitCommand.ts | 6 +- .../src/commands/CreatePolicyCommand.ts | 6 +- .../src/commands/DeclineHandshakeCommand.ts | 6 +- .../src/commands/DeleteOrganizationCommand.ts | 4 +- .../DeleteOrganizationalUnitCommand.ts | 6 +- .../src/commands/DeletePolicyCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 4 +- ...DeregisterDelegatedAdministratorCommand.ts | 6 +- .../src/commands/DescribeAccountCommand.ts | 6 +- .../DescribeCreateAccountStatusCommand.ts | 6 +- .../DescribeEffectivePolicyCommand.ts | 6 +- .../src/commands/DescribeHandshakeCommand.ts | 6 +- .../commands/DescribeOrganizationCommand.ts | 6 +- .../DescribeOrganizationalUnitCommand.ts | 6 +- .../src/commands/DescribePolicyCommand.ts | 6 +- .../commands/DescribeResourcePolicyCommand.ts | 6 +- .../DescribeResponsibilityTransferCommand.ts | 6 +- .../src/commands/DetachPolicyCommand.ts | 6 +- .../DisableAWSServiceAccessCommand.ts | 6 +- .../src/commands/DisablePolicyTypeCommand.ts | 6 +- .../commands/EnableAWSServiceAccessCommand.ts | 6 +- .../src/commands/EnableAllFeaturesCommand.ts | 6 +- .../src/commands/EnablePolicyTypeCommand.ts | 6 +- .../InviteAccountToOrganizationCommand.ts | 6 +- ...nizationToTransferResponsibilityCommand.ts | 6 +- .../src/commands/LeaveOrganizationCommand.ts | 4 +- ...tAWSServiceAccessForOrganizationCommand.ts | 6 +- .../src/commands/ListAccountsCommand.ts | 6 +- .../commands/ListAccountsForParentCommand.ts | 6 +- ...countsWithInvalidEffectivePolicyCommand.ts | 6 +- .../src/commands/ListChildrenCommand.ts | 6 +- .../ListCreateAccountStatusCommand.ts | 6 +- .../ListDelegatedAdministratorsCommand.ts | 6 +- .../ListDelegatedServicesForAccountCommand.ts | 9 +- ...tEffectivePolicyValidationErrorsCommand.ts | 6 +- .../ListHandshakesForAccountCommand.ts | 6 +- .../ListHandshakesForOrganizationCommand.ts | 6 +- ...stInboundResponsibilityTransfersCommand.ts | 6 +- ...ListOrganizationalUnitsForParentCommand.ts | 9 +- ...tOutboundResponsibilityTransfersCommand.ts | 6 +- .../src/commands/ListParentsCommand.ts | 6 +- .../src/commands/ListPoliciesCommand.ts | 6 +- .../commands/ListPoliciesForTargetCommand.ts | 6 +- .../src/commands/ListRootsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTargetsForPolicyCommand.ts | 6 +- .../src/commands/MoveAccountCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../RegisterDelegatedAdministratorCommand.ts | 6 +- .../RemoveAccountFromOrganizationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../TerminateResponsibilityTransferCommand.ts | 9 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateOrganizationalUnitCommand.ts | 6 +- .../src/commands/UpdatePolicyCommand.ts | 6 +- .../UpdateResponsibilityTransferCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/OrganizationsServiceException.ts | 2 +- .../client-organizations/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...WSServiceAccessForOrganizationPaginator.ts | 2 +- .../ListAccountsForParentPaginator.ts | 2 +- .../src/pagination/ListAccountsPaginator.ts | 2 +- ...untsWithInvalidEffectivePolicyPaginator.ts | 2 +- .../src/pagination/ListChildrenPaginator.ts | 2 +- .../ListCreateAccountStatusPaginator.ts | 2 +- .../ListDelegatedAdministratorsPaginator.ts | 2 +- ...istDelegatedServicesForAccountPaginator.ts | 2 +- ...ffectivePolicyValidationErrorsPaginator.ts | 2 +- .../ListHandshakesForAccountPaginator.ts | 2 +- .../ListHandshakesForOrganizationPaginator.ts | 2 +- ...stOrganizationalUnitsForParentPaginator.ts | 2 +- .../src/pagination/ListParentsPaginator.ts | 2 +- .../ListPoliciesForTargetPaginator.ts | 2 +- .../src/pagination/ListPoliciesPaginator.ts | 2 +- .../src/pagination/ListRootsPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../ListTargetsForPolicyPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-organizations/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-osis/package.json | 12 +- clients/client-osis/src/OSIS.ts | 4 +- clients/client-osis/src/OSISClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreatePipelineCommand.ts | 6 +- .../commands/CreatePipelineEndpointCommand.ts | 6 +- .../src/commands/DeletePipelineCommand.ts | 6 +- .../commands/DeletePipelineEndpointCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../commands/GetPipelineBlueprintCommand.ts | 6 +- .../GetPipelineChangeProgressCommand.ts | 6 +- .../src/commands/GetPipelineCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../commands/ListPipelineBlueprintsCommand.ts | 6 +- .../ListPipelineEndpointConnectionsCommand.ts | 9 +- .../commands/ListPipelineEndpointsCommand.ts | 6 +- .../src/commands/ListPipelinesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- ...evokePipelineEndpointConnectionsCommand.ts | 6 +- .../src/commands/StartPipelineCommand.ts | 6 +- .../src/commands/StopPipelineCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdatePipelineCommand.ts | 6 +- .../src/commands/ValidatePipelineCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-osis/src/extensionConfiguration.ts | 8 +- .../src/models/OSISServiceException.ts | 2 +- clients/client-osis/src/models/errors.ts | 2 +- .../client-osis/src/pagination/Interfaces.ts | 2 +- ...istPipelineEndpointConnectionsPaginator.ts | 2 +- .../ListPipelineEndpointsPaginator.ts | 2 +- .../src/pagination/ListPipelinesPaginator.ts | 2 +- .../client-osis/src/runtimeConfig.browser.ts | 7 +- .../client-osis/src/runtimeConfig.native.ts | 2 +- .../client-osis/src/runtimeConfig.shared.ts | 4 +- clients/client-osis/src/runtimeConfig.ts | 8 +- clients/client-osis/src/runtimeExtensions.ts | 2 +- clients/client-osis/src/schemas/schemas_0.ts | 2 +- clients/client-outposts/package.json | 12 +- clients/client-outposts/src/Outposts.ts | 4 +- clients/client-outposts/src/OutpostsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelCapacityTaskCommand.ts | 6 +- .../src/commands/CancelOrderCommand.ts | 6 +- .../src/commands/CreateOrderCommand.ts | 6 +- .../src/commands/CreateOutpostCommand.ts | 6 +- .../src/commands/CreateSiteCommand.ts | 6 +- .../src/commands/DeleteOutpostCommand.ts | 6 +- .../src/commands/DeleteSiteCommand.ts | 6 +- .../src/commands/GetCapacityTaskCommand.ts | 6 +- .../src/commands/GetCatalogItemCommand.ts | 6 +- .../src/commands/GetConnectionCommand.ts | 6 +- .../src/commands/GetOrderCommand.ts | 6 +- .../GetOutpostBillingInformationCommand.ts | 6 +- .../src/commands/GetOutpostCommand.ts | 6 +- .../GetOutpostInstanceTypesCommand.ts | 6 +- ...GetOutpostSupportedInstanceTypesCommand.ts | 6 +- .../src/commands/GetSiteAddressCommand.ts | 6 +- .../src/commands/GetSiteCommand.ts | 6 +- .../src/commands/ListAssetInstancesCommand.ts | 6 +- .../src/commands/ListAssetsCommand.ts | 6 +- ...BlockingInstancesForCapacityTaskCommand.ts | 6 +- .../src/commands/ListCapacityTasksCommand.ts | 6 +- .../src/commands/ListCatalogItemsCommand.ts | 6 +- .../src/commands/ListOrdersCommand.ts | 6 +- .../src/commands/ListOutpostsCommand.ts | 6 +- .../src/commands/ListSitesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartCapacityTaskCommand.ts | 6 +- .../src/commands/StartConnectionCommand.ts | 6 +- .../StartOutpostDecommissionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateOutpostCommand.ts | 6 +- .../src/commands/UpdateSiteAddressCommand.ts | 6 +- .../src/commands/UpdateSiteCommand.ts | 6 +- ...UpdateSiteRackPhysicalPropertiesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/OutpostsServiceException.ts | 2 +- clients/client-outposts/src/models/errors.ts | 2 +- .../GetOutpostBillingInformationPaginator.ts | 2 +- .../GetOutpostInstanceTypesPaginator.ts | 2 +- ...tOutpostSupportedInstanceTypesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAssetInstancesPaginator.ts | 2 +- .../src/pagination/ListAssetsPaginator.ts | 2 +- ...ockingInstancesForCapacityTaskPaginator.ts | 2 +- .../pagination/ListCapacityTasksPaginator.ts | 2 +- .../pagination/ListCatalogItemsPaginator.ts | 2 +- .../src/pagination/ListOrdersPaginator.ts | 2 +- .../src/pagination/ListOutpostsPaginator.ts | 2 +- .../src/pagination/ListSitesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-outposts/src/runtimeConfig.ts | 8 +- .../client-outposts/src/runtimeExtensions.ts | 2 +- .../client-outposts/src/schemas/schemas_0.ts | 2 +- clients/client-panorama/package.json | 12 +- clients/client-panorama/src/Panorama.ts | 4 +- clients/client-panorama/src/PanoramaClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateApplicationInstanceCommand.ts | 6 +- .../commands/CreateJobForDevicesCommand.ts | 6 +- .../CreateNodeFromTemplateJobCommand.ts | 6 +- .../src/commands/CreatePackageCommand.ts | 6 +- .../commands/CreatePackageImportJobCommand.ts | 6 +- .../src/commands/DeleteDeviceCommand.ts | 6 +- .../src/commands/DeletePackageCommand.ts | 6 +- .../DeregisterPackageVersionCommand.ts | 6 +- .../DescribeApplicationInstanceCommand.ts | 6 +- ...scribeApplicationInstanceDetailsCommand.ts | 6 +- .../src/commands/DescribeDeviceCommand.ts | 6 +- .../src/commands/DescribeDeviceJobCommand.ts | 6 +- .../src/commands/DescribeNodeCommand.ts | 6 +- .../DescribeNodeFromTemplateJobCommand.ts | 6 +- .../src/commands/DescribePackageCommand.ts | 6 +- .../DescribePackageImportJobCommand.ts | 6 +- .../commands/DescribePackageVersionCommand.ts | 6 +- ...tApplicationInstanceDependenciesCommand.ts | 6 +- ...ApplicationInstanceNodeInstancesCommand.ts | 6 +- .../ListApplicationInstancesCommand.ts | 6 +- .../src/commands/ListDevicesCommand.ts | 6 +- .../src/commands/ListDevicesJobsCommand.ts | 6 +- .../ListNodeFromTemplateJobsCommand.ts | 6 +- .../src/commands/ListNodesCommand.ts | 6 +- .../commands/ListPackageImportJobsCommand.ts | 6 +- .../src/commands/ListPackagesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ProvisionDeviceCommand.ts | 6 +- .../commands/RegisterPackageVersionCommand.ts | 6 +- .../RemoveApplicationInstanceCommand.ts | 6 +- ...ApplicationInstanceNodeInstancesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateDeviceMetadataCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/PanoramaServiceException.ts | 2 +- clients/client-panorama/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...pplicationInstanceDependenciesPaginator.ts | 2 +- ...plicationInstanceNodeInstancesPaginator.ts | 2 +- .../ListApplicationInstancesPaginator.ts | 2 +- .../pagination/ListDevicesJobsPaginator.ts | 2 +- .../src/pagination/ListDevicesPaginator.ts | 2 +- .../ListNodeFromTemplateJobsPaginator.ts | 2 +- .../src/pagination/ListNodesPaginator.ts | 2 +- .../ListPackageImportJobsPaginator.ts | 2 +- .../src/pagination/ListPackagesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-panorama/src/runtimeConfig.ts | 8 +- .../client-panorama/src/runtimeExtensions.ts | 2 +- .../client-panorama/src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/PartnerCentralAccount.ts | 4 +- .../src/PartnerCentralAccountClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptConnectionInvitationCommand.ts | 6 +- ...TrainingCertificationEmailDomainCommand.ts | 6 +- .../src/commands/CancelConnectionCommand.ts | 6 +- .../CancelConnectionInvitationCommand.ts | 6 +- .../CancelProfileUpdateTaskCommand.ts | 6 +- .../CreateConnectionInvitationCommand.ts | 6 +- .../src/commands/CreatePartnerCommand.ts | 6 +- ...TrainingCertificationEmailDomainCommand.ts | 6 +- .../commands/GetAllianceLeadContactCommand.ts | 6 +- .../src/commands/GetConnectionCommand.ts | 6 +- .../GetConnectionInvitationCommand.ts | 6 +- .../GetConnectionPreferencesCommand.ts | 6 +- .../src/commands/GetPartnerCommand.ts | 6 +- .../commands/GetProfileUpdateTaskCommand.ts | 6 +- .../commands/GetProfileVisibilityCommand.ts | 6 +- .../ListConnectionInvitationsCommand.ts | 6 +- .../src/commands/ListConnectionsCommand.ts | 6 +- .../src/commands/ListPartnersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/PutAllianceLeadContactCommand.ts | 6 +- .../commands/PutProfileVisibilityCommand.ts | 6 +- .../RejectConnectionInvitationCommand.ts | 6 +- .../SendEmailVerificationCodeCommand.ts | 6 +- .../commands/StartProfileUpdateTaskCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateConnectionPreferencesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PartnerCentralAccountServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListConnectionInvitationsPaginator.ts | 2 +- .../pagination/ListConnectionsPaginator.ts | 2 +- .../src/pagination/ListPartnersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/PartnerCentralBenefits.ts | 4 +- .../src/PartnerCentralBenefitsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AmendBenefitApplicationCommand.ts | 6 +- ...ociateBenefitApplicationResourceCommand.ts | 6 +- .../CancelBenefitApplicationCommand.ts | 6 +- .../CreateBenefitApplicationCommand.ts | 6 +- ...ociateBenefitApplicationResourceCommand.ts | 6 +- .../commands/GetBenefitAllocationCommand.ts | 6 +- .../commands/GetBenefitApplicationCommand.ts | 6 +- .../src/commands/GetBenefitCommand.ts | 6 +- .../commands/ListBenefitAllocationsCommand.ts | 6 +- .../ListBenefitApplicationsCommand.ts | 6 +- .../src/commands/ListBenefitsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../RecallBenefitApplicationCommand.ts | 6 +- .../SubmitBenefitApplicationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateBenefitApplicationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PartnerCentralBenefitsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListBenefitAllocationsPaginator.ts | 2 +- .../ListBenefitApplicationsPaginator.ts | 2 +- .../src/pagination/ListBenefitsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/PartnerCentralChannel.ts | 4 +- .../src/PartnerCentralChannelClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 8 +- .../commands/AcceptChannelHandshakeCommand.ts | 6 +- .../commands/CancelChannelHandshakeCommand.ts | 6 +- .../commands/CreateChannelHandshakeCommand.ts | 6 +- .../CreateProgramManagementAccountCommand.ts | 6 +- .../src/commands/CreateRelationshipCommand.ts | 6 +- .../DeleteProgramManagementAccountCommand.ts | 6 +- .../src/commands/DeleteRelationshipCommand.ts | 6 +- .../src/commands/GetRelationshipCommand.ts | 6 +- .../commands/ListChannelHandshakesCommand.ts | 6 +- .../ListProgramManagementAccountsCommand.ts | 6 +- .../src/commands/ListRelationshipsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/RejectChannelHandshakeCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateProgramManagementAccountCommand.ts | 6 +- .../src/commands/UpdateRelationshipCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PartnerCentralChannelServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListChannelHandshakesPaginator.ts | 2 +- .../ListProgramManagementAccountsPaginator.ts | 2 +- .../pagination/ListRelationshipsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/PartnerCentralSelling.ts | 4 +- .../src/PartnerCentralSellingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptEngagementInvitationCommand.ts | 6 +- .../src/commands/AssignOpportunityCommand.ts | 6 +- .../commands/AssociateOpportunityCommand.ts | 6 +- .../src/commands/CreateEngagementCommand.ts | 6 +- .../CreateEngagementContextCommand.ts | 6 +- .../CreateEngagementInvitationCommand.ts | 6 +- .../src/commands/CreateOpportunityCommand.ts | 6 +- .../commands/CreateResourceSnapshotCommand.ts | 6 +- .../CreateResourceSnapshotJobCommand.ts | 6 +- .../DeleteResourceSnapshotJobCommand.ts | 6 +- .../DisassociateOpportunityCommand.ts | 6 +- .../GetAwsOpportunitySummaryCommand.ts | 6 +- .../src/commands/GetEngagementCommand.ts | 6 +- .../GetEngagementInvitationCommand.ts | 6 +- .../src/commands/GetOpportunityCommand.ts | 6 +- .../commands/GetResourceSnapshotCommand.ts | 6 +- .../commands/GetResourceSnapshotJobCommand.ts | 6 +- .../GetSellingSystemSettingsCommand.ts | 6 +- ...gementByAcceptingInvitationTasksCommand.ts | 6 +- ...stEngagementFromOpportunityTasksCommand.ts | 6 +- .../ListEngagementInvitationsCommand.ts | 6 +- .../commands/ListEngagementMembersCommand.ts | 6 +- ...stEngagementResourceAssociationsCommand.ts | 6 +- .../src/commands/ListEngagementsCommand.ts | 6 +- .../src/commands/ListOpportunitiesCommand.ts | 6 +- ...stOpportunityFromEngagementTasksCommand.ts | 6 +- .../ListResourceSnapshotJobsCommand.ts | 6 +- .../commands/ListResourceSnapshotsCommand.ts | 6 +- .../src/commands/ListSolutionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../PutSellingSystemSettingsCommand.ts | 6 +- .../RejectEngagementInvitationCommand.ts | 6 +- ...agementByAcceptingInvitationTaskCommand.ts | 6 +- ...artEngagementFromOpportunityTaskCommand.ts | 6 +- ...artOpportunityFromEngagementTaskCommand.ts | 6 +- .../StartResourceSnapshotJobCommand.ts | 6 +- .../StopResourceSnapshotJobCommand.ts | 6 +- .../src/commands/SubmitOpportunityCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateEngagementContextCommand.ts | 6 +- .../src/commands/UpdateOpportunityCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PartnerCentralSellingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...mentByAcceptingInvitationTasksPaginator.ts | 2 +- ...EngagementFromOpportunityTasksPaginator.ts | 2 +- .../ListEngagementInvitationsPaginator.ts | 2 +- .../ListEngagementMembersPaginator.ts | 2 +- ...EngagementResourceAssociationsPaginator.ts | 2 +- .../pagination/ListEngagementsPaginator.ts | 2 +- .../pagination/ListOpportunitiesPaginator.ts | 2 +- ...OpportunityFromEngagementTasksPaginator.ts | 2 +- .../ListResourceSnapshotJobsPaginator.ts | 2 +- .../ListResourceSnapshotsPaginator.ts | 2 +- .../src/pagination/ListSolutionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/PaymentCryptographyData.ts | 4 +- .../src/PaymentCryptographyDataClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DecryptDataCommand.ts | 6 +- .../src/commands/EncryptDataCommand.ts | 6 +- .../GenerateCardValidationDataCommand.ts | 6 +- .../src/commands/GenerateMacCommand.ts | 6 +- .../GenerateMacEmvPinChangeCommand.ts | 6 +- .../src/commands/GeneratePinDataCommand.ts | 6 +- .../src/commands/ReEncryptDataCommand.ts | 6 +- .../commands/TranslateKeyMaterialCommand.ts | 6 +- .../src/commands/TranslatePinDataCommand.ts | 6 +- .../VerifyAuthRequestCryptogramCommand.ts | 6 +- .../VerifyCardValidationDataCommand.ts | 6 +- .../src/commands/VerifyMacCommand.ts | 6 +- .../src/commands/VerifyPinDataCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...PaymentCryptographyDataServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-payment-cryptography/package.json | 12 +- .../src/PaymentCryptography.ts | 4 +- .../src/PaymentCryptographyClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../AddKeyReplicationRegionsCommand.ts | 6 +- .../src/commands/CreateAliasCommand.ts | 6 +- .../src/commands/CreateKeyCommand.ts | 6 +- .../src/commands/DeleteAliasCommand.ts | 6 +- .../src/commands/DeleteKeyCommand.ts | 6 +- ...ableDefaultKeyReplicationRegionsCommand.ts | 6 +- ...ableDefaultKeyReplicationRegionsCommand.ts | 9 +- .../src/commands/ExportKeyCommand.ts | 6 +- .../src/commands/GetAliasCommand.ts | 6 +- .../GetCertificateSigningRequestCommand.ts | 6 +- .../GetDefaultKeyReplicationRegionsCommand.ts | 6 +- .../src/commands/GetKeyCommand.ts | 6 +- .../commands/GetParametersForExportCommand.ts | 6 +- .../commands/GetParametersForImportCommand.ts | 6 +- .../GetPublicKeyCertificateCommand.ts | 6 +- .../src/commands/ImportKeyCommand.ts | 6 +- .../src/commands/ListAliasesCommand.ts | 6 +- .../src/commands/ListKeysCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../RemoveKeyReplicationRegionsCommand.ts | 6 +- .../src/commands/RestoreKeyCommand.ts | 6 +- .../src/commands/StartKeyUsageCommand.ts | 6 +- .../src/commands/StopKeyUsageCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAliasCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PaymentCryptographyServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAliasesPaginator.ts | 2 +- .../src/pagination/ListKeysPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-pca-connector-ad/package.json | 12 +- .../src/PcaConnectorAd.ts | 4 +- .../src/PcaConnectorAdClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateConnectorCommand.ts | 10 +- .../CreateDirectoryRegistrationCommand.ts | 10 +- .../CreateServicePrincipalNameCommand.ts | 10 +- .../src/commands/CreateTemplateCommand.ts | 10 +- ...eTemplateGroupAccessControlEntryCommand.ts | 10 +- .../src/commands/DeleteConnectorCommand.ts | 10 +- .../DeleteDirectoryRegistrationCommand.ts | 10 +- .../DeleteServicePrincipalNameCommand.ts | 10 +- .../src/commands/DeleteTemplateCommand.ts | 10 +- ...eTemplateGroupAccessControlEntryCommand.ts | 10 +- .../src/commands/GetConnectorCommand.ts | 10 +- .../GetDirectoryRegistrationCommand.ts | 10 +- .../GetServicePrincipalNameCommand.ts | 10 +- .../src/commands/GetTemplateCommand.ts | 10 +- ...tTemplateGroupAccessControlEntryCommand.ts | 10 +- .../src/commands/ListConnectorsCommand.ts | 10 +- .../ListDirectoryRegistrationsCommand.ts | 10 +- .../ListServicePrincipalNamesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- ...emplateGroupAccessControlEntriesCommand.ts | 10 +- .../src/commands/ListTemplatesCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateTemplateCommand.ts | 10 +- ...eTemplateGroupAccessControlEntryCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/PcaConnectorAdServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListConnectorsPaginator.ts | 2 +- .../ListDirectoryRegistrationsPaginator.ts | 2 +- .../ListServicePrincipalNamesPaginator.ts | 2 +- ...plateGroupAccessControlEntriesPaginator.ts | 2 +- .../src/pagination/ListTemplatesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-pca-connector-scep/package.json | 12 +- .../src/PcaConnectorScep.ts | 4 +- .../src/PcaConnectorScepClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateChallengeCommand.ts | 10 +- .../src/commands/CreateConnectorCommand.ts | 10 +- .../src/commands/DeleteChallengeCommand.ts | 10 +- .../src/commands/DeleteConnectorCommand.ts | 10 +- .../commands/GetChallengeMetadataCommand.ts | 10 +- .../commands/GetChallengePasswordCommand.ts | 10 +- .../src/commands/GetConnectorCommand.ts | 10 +- .../commands/ListChallengeMetadataCommand.ts | 10 +- .../src/commands/ListConnectorsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PcaConnectorScepServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListChallengeMetadataPaginator.ts | 2 +- .../src/pagination/ListConnectorsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-pcs/package.json | 12 +- clients/client-pcs/src/PCS.ts | 4 +- clients/client-pcs/src/PCSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../commands/CreateComputeNodeGroupCommand.ts | 6 +- .../src/commands/CreateQueueCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../commands/DeleteComputeNodeGroupCommand.ts | 6 +- .../src/commands/DeleteQueueCommand.ts | 6 +- .../src/commands/GetClusterCommand.ts | 6 +- .../commands/GetComputeNodeGroupCommand.ts | 6 +- .../src/commands/GetQueueCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../commands/ListComputeNodeGroupsCommand.ts | 6 +- .../src/commands/ListQueuesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...RegisterComputeNodeGroupInstanceCommand.ts | 9 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../commands/UpdateComputeNodeGroupCommand.ts | 6 +- .../src/commands/UpdateQueueCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-pcs/src/extensionConfiguration.ts | 8 +- .../src/models/PCSServiceException.ts | 2 +- clients/client-pcs/src/models/errors.ts | 2 +- .../client-pcs/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../ListComputeNodeGroupsPaginator.ts | 2 +- .../src/pagination/ListQueuesPaginator.ts | 2 +- .../client-pcs/src/runtimeConfig.browser.ts | 7 +- .../client-pcs/src/runtimeConfig.native.ts | 2 +- .../client-pcs/src/runtimeConfig.shared.ts | 4 +- clients/client-pcs/src/runtimeConfig.ts | 8 +- clients/client-pcs/src/runtimeExtensions.ts | 2 +- clients/client-pcs/src/schemas/schemas_0.ts | 2 +- .../client-personalize-events/package.json | 12 +- .../src/PersonalizeEvents.ts | 4 +- .../src/PersonalizeEventsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/PutActionInteractionsCommand.ts | 6 +- .../src/commands/PutActionsCommand.ts | 6 +- .../src/commands/PutEventsCommand.ts | 6 +- .../src/commands/PutItemsCommand.ts | 6 +- .../src/commands/PutUsersCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PersonalizeEventsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-personalize-runtime/package.json | 12 +- .../src/PersonalizeRuntime.ts | 4 +- .../src/PersonalizeRuntimeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../GetActionRecommendationsCommand.ts | 6 +- .../commands/GetPersonalizedRankingCommand.ts | 6 +- .../src/commands/GetRecommendationsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PersonalizeRuntimeServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-personalize/package.json | 12 +- clients/client-personalize/src/Personalize.ts | 4 +- .../src/PersonalizeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateBatchInferenceJobCommand.ts | 6 +- .../commands/CreateBatchSegmentJobCommand.ts | 6 +- .../src/commands/CreateCampaignCommand.ts | 6 +- .../commands/CreateDataDeletionJobCommand.ts | 6 +- .../src/commands/CreateDatasetCommand.ts | 6 +- .../commands/CreateDatasetExportJobCommand.ts | 6 +- .../src/commands/CreateDatasetGroupCommand.ts | 6 +- .../commands/CreateDatasetImportJobCommand.ts | 6 +- .../src/commands/CreateEventTrackerCommand.ts | 6 +- .../src/commands/CreateFilterCommand.ts | 6 +- .../CreateMetricAttributionCommand.ts | 6 +- .../src/commands/CreateRecommenderCommand.ts | 6 +- .../src/commands/CreateSchemaCommand.ts | 6 +- .../src/commands/CreateSolutionCommand.ts | 6 +- .../commands/CreateSolutionVersionCommand.ts | 6 +- .../src/commands/DeleteCampaignCommand.ts | 6 +- .../src/commands/DeleteDatasetCommand.ts | 6 +- .../src/commands/DeleteDatasetGroupCommand.ts | 6 +- .../src/commands/DeleteEventTrackerCommand.ts | 6 +- .../src/commands/DeleteFilterCommand.ts | 6 +- .../DeleteMetricAttributionCommand.ts | 6 +- .../src/commands/DeleteRecommenderCommand.ts | 6 +- .../src/commands/DeleteSchemaCommand.ts | 6 +- .../src/commands/DeleteSolutionCommand.ts | 6 +- .../src/commands/DescribeAlgorithmCommand.ts | 6 +- .../DescribeBatchInferenceJobCommand.ts | 6 +- .../DescribeBatchSegmentJobCommand.ts | 6 +- .../src/commands/DescribeCampaignCommand.ts | 6 +- .../DescribeDataDeletionJobCommand.ts | 6 +- .../src/commands/DescribeDatasetCommand.ts | 6 +- .../DescribeDatasetExportJobCommand.ts | 6 +- .../commands/DescribeDatasetGroupCommand.ts | 6 +- .../DescribeDatasetImportJobCommand.ts | 6 +- .../commands/DescribeEventTrackerCommand.ts | 6 +- .../DescribeFeatureTransformationCommand.ts | 6 +- .../src/commands/DescribeFilterCommand.ts | 6 +- .../DescribeMetricAttributionCommand.ts | 6 +- .../src/commands/DescribeRecipeCommand.ts | 6 +- .../commands/DescribeRecommenderCommand.ts | 6 +- .../src/commands/DescribeSchemaCommand.ts | 6 +- .../src/commands/DescribeSolutionCommand.ts | 6 +- .../DescribeSolutionVersionCommand.ts | 6 +- .../src/commands/GetSolutionMetricsCommand.ts | 6 +- .../commands/ListBatchInferenceJobsCommand.ts | 6 +- .../commands/ListBatchSegmentJobsCommand.ts | 6 +- .../src/commands/ListCampaignsCommand.ts | 6 +- .../commands/ListDataDeletionJobsCommand.ts | 6 +- .../commands/ListDatasetExportJobsCommand.ts | 6 +- .../src/commands/ListDatasetGroupsCommand.ts | 6 +- .../commands/ListDatasetImportJobsCommand.ts | 6 +- .../src/commands/ListDatasetsCommand.ts | 6 +- .../src/commands/ListEventTrackersCommand.ts | 6 +- .../src/commands/ListFiltersCommand.ts | 6 +- .../ListMetricAttributionMetricsCommand.ts | 6 +- .../commands/ListMetricAttributionsCommand.ts | 6 +- .../src/commands/ListRecipesCommand.ts | 6 +- .../src/commands/ListRecommendersCommand.ts | 6 +- .../src/commands/ListSchemasCommand.ts | 6 +- .../commands/ListSolutionVersionsCommand.ts | 6 +- .../src/commands/ListSolutionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartRecommenderCommand.ts | 6 +- .../src/commands/StopRecommenderCommand.ts | 6 +- .../StopSolutionVersionCreationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateCampaignCommand.ts | 6 +- .../src/commands/UpdateDatasetCommand.ts | 6 +- .../UpdateMetricAttributionCommand.ts | 6 +- .../src/commands/UpdateRecommenderCommand.ts | 6 +- .../src/commands/UpdateSolutionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/PersonalizeServiceException.ts | 2 +- .../client-personalize/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListBatchInferenceJobsPaginator.ts | 2 +- .../ListBatchSegmentJobsPaginator.ts | 2 +- .../src/pagination/ListCampaignsPaginator.ts | 2 +- .../ListDatasetExportJobsPaginator.ts | 2 +- .../pagination/ListDatasetGroupsPaginator.ts | 2 +- .../ListDatasetImportJobsPaginator.ts | 2 +- .../src/pagination/ListDatasetsPaginator.ts | 2 +- .../pagination/ListEventTrackersPaginator.ts | 2 +- .../src/pagination/ListFiltersPaginator.ts | 2 +- .../ListMetricAttributionMetricsPaginator.ts | 2 +- .../ListMetricAttributionsPaginator.ts | 2 +- .../src/pagination/ListRecipesPaginator.ts | 2 +- .../pagination/ListRecommendersPaginator.ts | 2 +- .../src/pagination/ListSchemasPaginator.ts | 2 +- .../ListSolutionVersionsPaginator.ts | 2 +- .../src/pagination/ListSolutionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-personalize/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-pi/package.json | 12 +- clients/client-pi/src/PI.ts | 4 +- clients/client-pi/src/PIClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreatePerformanceAnalysisReportCommand.ts | 9 +- .../DeletePerformanceAnalysisReportCommand.ts | 9 +- .../commands/DescribeDimensionKeysCommand.ts | 6 +- .../commands/GetDimensionKeyDetailsCommand.ts | 6 +- .../GetPerformanceAnalysisReportCommand.ts | 6 +- .../commands/GetResourceMetadataCommand.ts | 6 +- .../src/commands/GetResourceMetricsCommand.ts | 6 +- .../ListAvailableResourceDimensionsCommand.ts | 9 +- .../ListAvailableResourceMetricsCommand.ts | 6 +- .../ListPerformanceAnalysisReportsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-pi/src/extensionConfiguration.ts | 8 +- .../src/models/PIServiceException.ts | 2 +- clients/client-pi/src/models/errors.ts | 2 +- .../DescribeDimensionKeysPaginator.ts | 2 +- .../pagination/GetResourceMetricsPaginator.ts | 2 +- .../client-pi/src/pagination/Interfaces.ts | 2 +- ...istAvailableResourceDimensionsPaginator.ts | 2 +- .../ListAvailableResourceMetricsPaginator.ts | 2 +- ...ListPerformanceAnalysisReportsPaginator.ts | 2 +- .../client-pi/src/runtimeConfig.browser.ts | 7 +- clients/client-pi/src/runtimeConfig.native.ts | 2 +- clients/client-pi/src/runtimeConfig.shared.ts | 4 +- clients/client-pi/src/runtimeConfig.ts | 8 +- clients/client-pi/src/runtimeExtensions.ts | 2 +- clients/client-pi/src/schemas/schemas_0.ts | 2 +- clients/client-pinpoint-email/package.json | 12 +- .../src/PinpointEmail.ts | 4 +- .../src/PinpointEmailClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateConfigurationSetCommand.ts | 6 +- ...ConfigurationSetEventDestinationCommand.ts | 6 +- .../commands/CreateDedicatedIpPoolCommand.ts | 6 +- .../CreateDeliverabilityTestReportCommand.ts | 6 +- .../commands/CreateEmailIdentityCommand.ts | 6 +- .../commands/DeleteConfigurationSetCommand.ts | 6 +- ...ConfigurationSetEventDestinationCommand.ts | 6 +- .../commands/DeleteDedicatedIpPoolCommand.ts | 6 +- .../commands/DeleteEmailIdentityCommand.ts | 6 +- .../src/commands/GetAccountCommand.ts | 6 +- .../commands/GetBlacklistReportsCommand.ts | 6 +- .../commands/GetConfigurationSetCommand.ts | 6 +- ...onfigurationSetEventDestinationsCommand.ts | 6 +- .../src/commands/GetDedicatedIpCommand.ts | 6 +- .../src/commands/GetDedicatedIpsCommand.ts | 6 +- ...etDeliverabilityDashboardOptionsCommand.ts | 6 +- .../GetDeliverabilityTestReportCommand.ts | 6 +- .../GetDomainDeliverabilityCampaignCommand.ts | 9 +- .../GetDomainStatisticsReportCommand.ts | 6 +- .../src/commands/GetEmailIdentityCommand.ts | 6 +- .../commands/ListConfigurationSetsCommand.ts | 6 +- .../commands/ListDedicatedIpPoolsCommand.ts | 6 +- .../ListDeliverabilityTestReportsCommand.ts | 6 +- ...istDomainDeliverabilityCampaignsCommand.ts | 6 +- .../commands/ListEmailIdentitiesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...countDedicatedIpWarmupAttributesCommand.ts | 6 +- .../PutAccountSendingAttributesCommand.ts | 6 +- ...tConfigurationSetDeliveryOptionsCommand.ts | 6 +- ...onfigurationSetReputationOptionsCommand.ts | 6 +- ...utConfigurationSetSendingOptionsCommand.ts | 6 +- ...tConfigurationSetTrackingOptionsCommand.ts | 6 +- .../commands/PutDedicatedIpInPoolCommand.ts | 6 +- .../PutDedicatedIpWarmupAttributesCommand.ts | 6 +- ...PutDeliverabilityDashboardOptionCommand.ts | 9 +- .../PutEmailIdentityDkimAttributesCommand.ts | 6 +- ...tEmailIdentityFeedbackAttributesCommand.ts | 6 +- ...tEmailIdentityMailFromAttributesCommand.ts | 6 +- .../src/commands/SendEmailCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...ConfigurationSetEventDestinationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/PinpointEmailServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../pagination/GetDedicatedIpsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListConfigurationSetsPaginator.ts | 2 +- .../ListDedicatedIpPoolsPaginator.ts | 2 +- .../ListDeliverabilityTestReportsPaginator.ts | 2 +- ...tDomainDeliverabilityCampaignsPaginator.ts | 2 +- .../ListEmailIdentitiesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-pinpoint-sms-voice-v2/package.json | 12 +- .../src/PinpointSMSVoiceV2.ts | 4 +- .../src/PinpointSMSVoiceV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../AssociateOriginationIdentityCommand.ts | 6 +- .../AssociateProtectConfigurationCommand.ts | 6 +- .../src/commands/CarrierLookupCommand.ts | 6 +- .../commands/CreateConfigurationSetCommand.ts | 6 +- .../commands/CreateEventDestinationCommand.ts | 6 +- .../src/commands/CreateOptOutListCommand.ts | 6 +- .../src/commands/CreatePoolCommand.ts | 6 +- .../CreateProtectConfigurationCommand.ts | 6 +- .../CreateRegistrationAssociationCommand.ts | 6 +- .../CreateRegistrationAttachmentCommand.ts | 6 +- .../src/commands/CreateRegistrationCommand.ts | 6 +- .../CreateRegistrationVersionCommand.ts | 6 +- .../CreateVerifiedDestinationNumberCommand.ts | 6 +- ...countDefaultProtectConfigurationCommand.ts | 6 +- .../commands/DeleteConfigurationSetCommand.ts | 6 +- .../DeleteDefaultMessageTypeCommand.ts | 6 +- .../commands/DeleteDefaultSenderIdCommand.ts | 6 +- .../commands/DeleteEventDestinationCommand.ts | 6 +- .../src/commands/DeleteKeywordCommand.ts | 6 +- ...teMediaMessageSpendLimitOverrideCommand.ts | 6 +- .../src/commands/DeleteOptOutListCommand.ts | 6 +- .../commands/DeleteOptedOutNumberCommand.ts | 6 +- .../src/commands/DeletePoolCommand.ts | 6 +- .../DeleteProtectConfigurationCommand.ts | 6 +- ...nfigurationRuleSetNumberOverrideCommand.ts | 6 +- .../DeleteRegistrationAttachmentCommand.ts | 6 +- .../src/commands/DeleteRegistrationCommand.ts | 6 +- .../DeleteRegistrationFieldValueCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- ...eteTextMessageSpendLimitOverrideCommand.ts | 6 +- .../DeleteVerifiedDestinationNumberCommand.ts | 6 +- ...teVoiceMessageSpendLimitOverrideCommand.ts | 6 +- .../DescribeAccountAttributesCommand.ts | 6 +- .../commands/DescribeAccountLimitsCommand.ts | 6 +- .../DescribeConfigurationSetsCommand.ts | 6 +- .../src/commands/DescribeKeywordsCommand.ts | 6 +- .../commands/DescribeOptOutListsCommand.ts | 6 +- .../DescribeOptedOutNumbersCommand.ts | 6 +- .../commands/DescribePhoneNumbersCommand.ts | 6 +- .../src/commands/DescribePoolsCommand.ts | 6 +- .../DescribeProtectConfigurationsCommand.ts | 6 +- .../DescribeRegistrationAttachmentsCommand.ts | 6 +- ...ribeRegistrationFieldDefinitionsCommand.ts | 6 +- .../DescribeRegistrationFieldValuesCommand.ts | 6 +- ...beRegistrationSectionDefinitionsCommand.ts | 6 +- ...cribeRegistrationTypeDefinitionsCommand.ts | 6 +- .../DescribeRegistrationVersionsCommand.ts | 6 +- .../commands/DescribeRegistrationsCommand.ts | 6 +- .../src/commands/DescribeSenderIdsCommand.ts | 6 +- .../commands/DescribeSpendLimitsCommand.ts | 6 +- ...scribeVerifiedDestinationNumbersCommand.ts | 6 +- .../DisassociateOriginationIdentityCommand.ts | 6 +- ...DisassociateProtectConfigurationCommand.ts | 9 +- .../DiscardRegistrationVersionCommand.ts | 6 +- ...otectConfigurationCountryRuleSetCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../ListPoolOriginationIdentitiesCommand.ts | 6 +- ...figurationRuleSetNumberOverridesCommand.ts | 6 +- .../ListRegistrationAssociationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutKeywordCommand.ts | 6 +- .../src/commands/PutMessageFeedbackCommand.ts | 6 +- .../src/commands/PutOptedOutNumberCommand.ts | 6 +- ...nfigurationRuleSetNumberOverrideCommand.ts | 6 +- .../PutRegistrationFieldValueCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/ReleasePhoneNumberCommand.ts | 6 +- .../src/commands/ReleaseSenderIdCommand.ts | 6 +- .../src/commands/RequestPhoneNumberCommand.ts | 6 +- .../src/commands/RequestSenderIdCommand.ts | 6 +- ...estinationNumberVerificationCodeCommand.ts | 6 +- .../src/commands/SendMediaMessageCommand.ts | 6 +- .../src/commands/SendTextMessageCommand.ts | 6 +- .../src/commands/SendVoiceMessageCommand.ts | 6 +- ...countDefaultProtectConfigurationCommand.ts | 6 +- ...SetDefaultMessageFeedbackEnabledCommand.ts | 9 +- .../commands/SetDefaultMessageTypeCommand.ts | 6 +- .../src/commands/SetDefaultSenderIdCommand.ts | 6 +- ...etMediaMessageSpendLimitOverrideCommand.ts | 9 +- ...SetTextMessageSpendLimitOverrideCommand.ts | 9 +- ...etVoiceMessageSpendLimitOverrideCommand.ts | 9 +- .../SubmitRegistrationVersionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateEventDestinationCommand.ts | 6 +- .../src/commands/UpdatePhoneNumberCommand.ts | 6 +- .../src/commands/UpdatePoolCommand.ts | 6 +- .../UpdateProtectConfigurationCommand.ts | 6 +- ...otectConfigurationCountryRuleSetCommand.ts | 6 +- .../src/commands/UpdateSenderIdCommand.ts | 6 +- .../VerifyDestinationNumberCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PinpointSMSVoiceV2ServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeAccountAttributesPaginator.ts | 2 +- .../DescribeAccountLimitsPaginator.ts | 2 +- .../DescribeConfigurationSetsPaginator.ts | 2 +- .../pagination/DescribeKeywordsPaginator.ts | 2 +- .../DescribeOptOutListsPaginator.ts | 2 +- .../DescribeOptedOutNumbersPaginator.ts | 2 +- .../DescribePhoneNumbersPaginator.ts | 2 +- .../src/pagination/DescribePoolsPaginator.ts | 2 +- .../DescribeProtectConfigurationsPaginator.ts | 2 +- ...escribeRegistrationAttachmentsPaginator.ts | 2 +- ...beRegistrationFieldDefinitionsPaginator.ts | 2 +- ...escribeRegistrationFieldValuesPaginator.ts | 2 +- ...RegistrationSectionDefinitionsPaginator.ts | 2 +- ...ibeRegistrationTypeDefinitionsPaginator.ts | 2 +- .../DescribeRegistrationVersionsPaginator.ts | 2 +- .../DescribeRegistrationsPaginator.ts | 2 +- .../pagination/DescribeSenderIdsPaginator.ts | 2 +- .../DescribeSpendLimitsPaginator.ts | 2 +- ...ribeVerifiedDestinationNumbersPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListPoolOriginationIdentitiesPaginator.ts | 2 +- ...gurationRuleSetNumberOverridesPaginator.ts | 2 +- .../ListRegistrationAssociationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-pinpoint-sms-voice/package.json | 12 +- .../src/PinpointSMSVoice.ts | 4 +- .../src/PinpointSMSVoiceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateConfigurationSetCommand.ts | 10 +- ...ConfigurationSetEventDestinationCommand.ts | 10 +- .../commands/DeleteConfigurationSetCommand.ts | 10 +- ...ConfigurationSetEventDestinationCommand.ts | 10 +- ...onfigurationSetEventDestinationsCommand.ts | 10 +- .../commands/ListConfigurationSetsCommand.ts | 10 +- .../src/commands/SendVoiceMessageCommand.ts | 10 +- ...ConfigurationSetEventDestinationCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../PinpointSMSVoiceServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-pinpoint/package.json | 12 +- clients/client-pinpoint/src/Pinpoint.ts | 4 +- clients/client-pinpoint/src/PinpointClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateAppCommand.ts | 6 +- .../src/commands/CreateCampaignCommand.ts | 6 +- .../commands/CreateEmailTemplateCommand.ts | 6 +- .../src/commands/CreateExportJobCommand.ts | 6 +- .../src/commands/CreateImportJobCommand.ts | 6 +- .../commands/CreateInAppTemplateCommand.ts | 6 +- .../src/commands/CreateJourneyCommand.ts | 6 +- .../src/commands/CreatePushTemplateCommand.ts | 6 +- .../CreateRecommenderConfigurationCommand.ts | 6 +- .../src/commands/CreateSegmentCommand.ts | 6 +- .../src/commands/CreateSmsTemplateCommand.ts | 6 +- .../commands/CreateVoiceTemplateCommand.ts | 6 +- .../src/commands/DeleteAdmChannelCommand.ts | 6 +- .../src/commands/DeleteApnsChannelCommand.ts | 6 +- .../DeleteApnsSandboxChannelCommand.ts | 6 +- .../commands/DeleteApnsVoipChannelCommand.ts | 6 +- .../DeleteApnsVoipSandboxChannelCommand.ts | 6 +- .../src/commands/DeleteAppCommand.ts | 6 +- .../src/commands/DeleteBaiduChannelCommand.ts | 6 +- .../src/commands/DeleteCampaignCommand.ts | 6 +- .../src/commands/DeleteEmailChannelCommand.ts | 6 +- .../commands/DeleteEmailTemplateCommand.ts | 6 +- .../src/commands/DeleteEndpointCommand.ts | 6 +- .../src/commands/DeleteEventStreamCommand.ts | 6 +- .../src/commands/DeleteGcmChannelCommand.ts | 6 +- .../commands/DeleteInAppTemplateCommand.ts | 6 +- .../src/commands/DeleteJourneyCommand.ts | 6 +- .../src/commands/DeletePushTemplateCommand.ts | 6 +- .../DeleteRecommenderConfigurationCommand.ts | 6 +- .../src/commands/DeleteSegmentCommand.ts | 6 +- .../src/commands/DeleteSmsChannelCommand.ts | 6 +- .../src/commands/DeleteSmsTemplateCommand.ts | 6 +- .../commands/DeleteUserEndpointsCommand.ts | 6 +- .../src/commands/DeleteVoiceChannelCommand.ts | 6 +- .../commands/DeleteVoiceTemplateCommand.ts | 6 +- .../src/commands/GetAdmChannelCommand.ts | 6 +- .../src/commands/GetApnsChannelCommand.ts | 6 +- .../commands/GetApnsSandboxChannelCommand.ts | 6 +- .../src/commands/GetApnsVoipChannelCommand.ts | 6 +- .../GetApnsVoipSandboxChannelCommand.ts | 6 +- .../src/commands/GetAppCommand.ts | 6 +- .../GetApplicationDateRangeKpiCommand.ts | 6 +- .../commands/GetApplicationSettingsCommand.ts | 6 +- .../src/commands/GetAppsCommand.ts | 6 +- .../src/commands/GetBaiduChannelCommand.ts | 6 +- .../commands/GetCampaignActivitiesCommand.ts | 6 +- .../src/commands/GetCampaignCommand.ts | 6 +- .../GetCampaignDateRangeKpiCommand.ts | 6 +- .../src/commands/GetCampaignVersionCommand.ts | 6 +- .../commands/GetCampaignVersionsCommand.ts | 6 +- .../src/commands/GetCampaignsCommand.ts | 6 +- .../src/commands/GetChannelsCommand.ts | 6 +- .../src/commands/GetEmailChannelCommand.ts | 6 +- .../src/commands/GetEmailTemplateCommand.ts | 6 +- .../src/commands/GetEndpointCommand.ts | 6 +- .../src/commands/GetEventStreamCommand.ts | 6 +- .../src/commands/GetExportJobCommand.ts | 6 +- .../src/commands/GetExportJobsCommand.ts | 6 +- .../src/commands/GetGcmChannelCommand.ts | 6 +- .../src/commands/GetImportJobCommand.ts | 6 +- .../src/commands/GetImportJobsCommand.ts | 6 +- .../src/commands/GetInAppMessagesCommand.ts | 6 +- .../src/commands/GetInAppTemplateCommand.ts | 6 +- .../src/commands/GetJourneyCommand.ts | 8 +- .../commands/GetJourneyDateRangeKpiCommand.ts | 6 +- ...tJourneyExecutionActivityMetricsCommand.ts | 6 +- .../GetJourneyExecutionMetricsCommand.ts | 6 +- ...urneyRunExecutionActivityMetricsCommand.ts | 6 +- .../GetJourneyRunExecutionMetricsCommand.ts | 6 +- .../src/commands/GetJourneyRunsCommand.ts | 6 +- .../src/commands/GetPushTemplateCommand.ts | 6 +- .../GetRecommenderConfigurationCommand.ts | 6 +- .../GetRecommenderConfigurationsCommand.ts | 6 +- .../src/commands/GetSegmentCommand.ts | 6 +- .../commands/GetSegmentExportJobsCommand.ts | 6 +- .../commands/GetSegmentImportJobsCommand.ts | 6 +- .../src/commands/GetSegmentVersionCommand.ts | 6 +- .../src/commands/GetSegmentVersionsCommand.ts | 6 +- .../src/commands/GetSegmentsCommand.ts | 6 +- .../src/commands/GetSmsChannelCommand.ts | 6 +- .../src/commands/GetSmsTemplateCommand.ts | 6 +- .../src/commands/GetUserEndpointsCommand.ts | 6 +- .../src/commands/GetVoiceChannelCommand.ts | 6 +- .../src/commands/GetVoiceTemplateCommand.ts | 6 +- .../src/commands/ListJourneysCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTemplateVersionsCommand.ts | 6 +- .../src/commands/ListTemplatesCommand.ts | 6 +- .../commands/PhoneNumberValidateCommand.ts | 6 +- .../src/commands/PutEventStreamCommand.ts | 6 +- .../src/commands/PutEventsCommand.ts | 6 +- .../src/commands/RemoveAttributesCommand.ts | 6 +- .../src/commands/SendMessagesCommand.ts | 6 +- .../src/commands/SendOTPMessageCommand.ts | 6 +- .../src/commands/SendUsersMessagesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAdmChannelCommand.ts | 6 +- .../src/commands/UpdateApnsChannelCommand.ts | 6 +- .../UpdateApnsSandboxChannelCommand.ts | 6 +- .../commands/UpdateApnsVoipChannelCommand.ts | 6 +- .../UpdateApnsVoipSandboxChannelCommand.ts | 6 +- .../UpdateApplicationSettingsCommand.ts | 6 +- .../src/commands/UpdateBaiduChannelCommand.ts | 6 +- .../src/commands/UpdateCampaignCommand.ts | 6 +- .../src/commands/UpdateEmailChannelCommand.ts | 6 +- .../commands/UpdateEmailTemplateCommand.ts | 6 +- .../src/commands/UpdateEndpointCommand.ts | 6 +- .../commands/UpdateEndpointsBatchCommand.ts | 6 +- .../src/commands/UpdateGcmChannelCommand.ts | 6 +- .../commands/UpdateInAppTemplateCommand.ts | 6 +- .../src/commands/UpdateJourneyCommand.ts | 6 +- .../src/commands/UpdateJourneyStateCommand.ts | 6 +- .../src/commands/UpdatePushTemplateCommand.ts | 6 +- .../UpdateRecommenderConfigurationCommand.ts | 6 +- .../src/commands/UpdateSegmentCommand.ts | 6 +- .../src/commands/UpdateSmsChannelCommand.ts | 6 +- .../src/commands/UpdateSmsTemplateCommand.ts | 6 +- .../UpdateTemplateActiveVersionCommand.ts | 6 +- .../src/commands/UpdateVoiceChannelCommand.ts | 6 +- .../commands/UpdateVoiceTemplateCommand.ts | 6 +- .../src/commands/VerifyOTPMessageCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/PinpointServiceException.ts | 2 +- clients/client-pinpoint/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-pinpoint/src/runtimeConfig.ts | 8 +- .../client-pinpoint/src/runtimeExtensions.ts | 2 +- .../client-pinpoint/src/schemas/schemas_0.ts | 2 +- clients/client-pipes/package.json | 12 +- clients/client-pipes/src/Pipes.ts | 4 +- clients/client-pipes/src/PipesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreatePipeCommand.ts | 6 +- .../src/commands/DeletePipeCommand.ts | 6 +- .../src/commands/DescribePipeCommand.ts | 6 +- .../src/commands/ListPipesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartPipeCommand.ts | 6 +- .../src/commands/StopPipeCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdatePipeCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/PipesServiceException.ts | 2 +- clients/client-pipes/src/models/errors.ts | 2 +- .../client-pipes/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListPipesPaginator.ts | 2 +- .../client-pipes/src/runtimeConfig.browser.ts | 7 +- .../client-pipes/src/runtimeConfig.native.ts | 2 +- .../client-pipes/src/runtimeConfig.shared.ts | 4 +- clients/client-pipes/src/runtimeConfig.ts | 8 +- clients/client-pipes/src/runtimeExtensions.ts | 2 +- clients/client-pipes/src/schemas/schemas_0.ts | 2 +- clients/client-polly/package.json | 12 +- clients/client-polly/src/Polly.ts | 4 +- clients/client-polly/src/PollyClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DeleteLexiconCommand.ts | 6 +- .../src/commands/DescribeVoicesCommand.ts | 6 +- .../src/commands/GetLexiconCommand.ts | 6 +- .../commands/GetSpeechSynthesisTaskCommand.ts | 6 +- .../src/commands/ListLexiconsCommand.ts | 6 +- .../ListSpeechSynthesisTasksCommand.ts | 6 +- .../src/commands/PutLexiconCommand.ts | 6 +- .../StartSpeechSynthesisTaskCommand.ts | 6 +- .../src/commands/SynthesizeSpeechCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/PollyServiceException.ts | 2 +- clients/client-polly/src/models/errors.ts | 2 +- .../client-polly/src/pagination/Interfaces.ts | 2 +- .../ListSpeechSynthesisTasksPaginator.ts | 2 +- .../client-polly/src/runtimeConfig.browser.ts | 7 +- .../client-polly/src/runtimeConfig.native.ts | 2 +- .../client-polly/src/runtimeConfig.shared.ts | 4 +- clients/client-polly/src/runtimeConfig.ts | 8 +- clients/client-polly/src/runtimeExtensions.ts | 2 +- clients/client-polly/src/schemas/schemas_0.ts | 2 +- clients/client-pricing/package.json | 12 +- clients/client-pricing/src/Pricing.ts | 4 +- clients/client-pricing/src/PricingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DescribeServicesCommand.ts | 6 +- .../src/commands/GetAttributeValuesCommand.ts | 6 +- .../commands/GetPriceListFileUrlCommand.ts | 6 +- .../src/commands/GetProductsCommand.ts | 6 +- .../src/commands/ListPriceListsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/PricingServiceException.ts | 2 +- clients/client-pricing/src/models/errors.ts | 2 +- .../pagination/DescribeServicesPaginator.ts | 2 +- .../pagination/GetAttributeValuesPaginator.ts | 2 +- .../src/pagination/GetProductsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListPriceListsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-pricing/src/runtimeConfig.ts | 8 +- .../client-pricing/src/runtimeExtensions.ts | 2 +- .../client-pricing/src/schemas/schemas_0.ts | 2 +- clients/client-proton/package.json | 12 +- clients/client-proton/src/Proton.ts | 4 +- clients/client-proton/src/ProtonClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...ceptEnvironmentAccountConnectionCommand.ts | 9 +- .../CancelComponentDeploymentCommand.ts | 6 +- .../CancelEnvironmentDeploymentCommand.ts | 6 +- .../CancelServiceInstanceDeploymentCommand.ts | 6 +- .../CancelServicePipelineDeploymentCommand.ts | 6 +- .../src/commands/CreateComponentCommand.ts | 6 +- ...eateEnvironmentAccountConnectionCommand.ts | 9 +- .../src/commands/CreateEnvironmentCommand.ts | 6 +- .../CreateEnvironmentTemplateCommand.ts | 6 +- ...CreateEnvironmentTemplateVersionCommand.ts | 6 +- .../src/commands/CreateRepositoryCommand.ts | 6 +- .../src/commands/CreateServiceCommand.ts | 6 +- .../commands/CreateServiceInstanceCommand.ts | 6 +- .../CreateServiceSyncConfigCommand.ts | 6 +- .../commands/CreateServiceTemplateCommand.ts | 6 +- .../CreateServiceTemplateVersionCommand.ts | 6 +- .../CreateTemplateSyncConfigCommand.ts | 6 +- .../src/commands/DeleteComponentCommand.ts | 6 +- .../src/commands/DeleteDeploymentCommand.ts | 6 +- ...leteEnvironmentAccountConnectionCommand.ts | 9 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../DeleteEnvironmentTemplateCommand.ts | 6 +- ...DeleteEnvironmentTemplateVersionCommand.ts | 6 +- .../src/commands/DeleteRepositoryCommand.ts | 6 +- .../src/commands/DeleteServiceCommand.ts | 6 +- .../DeleteServiceSyncConfigCommand.ts | 6 +- .../commands/DeleteServiceTemplateCommand.ts | 6 +- .../DeleteServiceTemplateVersionCommand.ts | 6 +- .../DeleteTemplateSyncConfigCommand.ts | 6 +- .../src/commands/GetAccountSettingsCommand.ts | 6 +- .../src/commands/GetComponentCommand.ts | 6 +- .../src/commands/GetDeploymentCommand.ts | 6 +- .../GetEnvironmentAccountConnectionCommand.ts | 6 +- .../src/commands/GetEnvironmentCommand.ts | 6 +- .../commands/GetEnvironmentTemplateCommand.ts | 6 +- .../GetEnvironmentTemplateVersionCommand.ts | 6 +- .../src/commands/GetRepositoryCommand.ts | 6 +- .../GetRepositorySyncStatusCommand.ts | 6 +- .../commands/GetResourcesSummaryCommand.ts | 6 +- .../src/commands/GetServiceCommand.ts | 6 +- .../src/commands/GetServiceInstanceCommand.ts | 6 +- .../GetServiceInstanceSyncStatusCommand.ts | 6 +- .../GetServiceSyncBlockerSummaryCommand.ts | 6 +- .../commands/GetServiceSyncConfigCommand.ts | 6 +- .../src/commands/GetServiceTemplateCommand.ts | 6 +- .../GetServiceTemplateVersionCommand.ts | 6 +- .../commands/GetTemplateSyncConfigCommand.ts | 6 +- .../commands/GetTemplateSyncStatusCommand.ts | 6 +- .../commands/ListComponentOutputsCommand.ts | 6 +- ...istComponentProvisionedResourcesCommand.ts | 9 +- .../src/commands/ListComponentsCommand.ts | 6 +- .../src/commands/ListDeploymentsCommand.ts | 6 +- ...istEnvironmentAccountConnectionsCommand.ts | 9 +- .../commands/ListEnvironmentOutputsCommand.ts | 6 +- ...tEnvironmentProvisionedResourcesCommand.ts | 6 +- .../ListEnvironmentTemplateVersionsCommand.ts | 6 +- .../ListEnvironmentTemplatesCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../src/commands/ListRepositoriesCommand.ts | 6 +- .../ListRepositorySyncDefinitionsCommand.ts | 6 +- .../ListServiceInstanceOutputsCommand.ts | 6 +- ...viceInstanceProvisionedResourcesCommand.ts | 6 +- .../commands/ListServiceInstancesCommand.ts | 6 +- .../ListServicePipelineOutputsCommand.ts | 6 +- ...vicePipelineProvisionedResourcesCommand.ts | 6 +- .../ListServiceTemplateVersionsCommand.ts | 6 +- .../commands/ListServiceTemplatesCommand.ts | 6 +- .../src/commands/ListServicesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...fyResourceDeploymentStatusChangeCommand.ts | 6 +- ...jectEnvironmentAccountConnectionCommand.ts | 9 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAccountSettingsCommand.ts | 6 +- .../src/commands/UpdateComponentCommand.ts | 6 +- ...dateEnvironmentAccountConnectionCommand.ts | 9 +- .../src/commands/UpdateEnvironmentCommand.ts | 6 +- .../UpdateEnvironmentTemplateCommand.ts | 6 +- ...UpdateEnvironmentTemplateVersionCommand.ts | 6 +- .../src/commands/UpdateServiceCommand.ts | 6 +- .../commands/UpdateServiceInstanceCommand.ts | 6 +- .../commands/UpdateServicePipelineCommand.ts | 6 +- .../UpdateServiceSyncBlockerCommand.ts | 6 +- .../UpdateServiceSyncConfigCommand.ts | 6 +- .../commands/UpdateServiceTemplateCommand.ts | 6 +- .../UpdateServiceTemplateVersionCommand.ts | 6 +- .../UpdateTemplateSyncConfigCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ProtonServiceException.ts | 2 +- clients/client-proton/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListComponentOutputsPaginator.ts | 2 +- ...tComponentProvisionedResourcesPaginator.ts | 2 +- .../src/pagination/ListComponentsPaginator.ts | 2 +- .../pagination/ListDeploymentsPaginator.ts | 2 +- ...tEnvironmentAccountConnectionsPaginator.ts | 2 +- .../ListEnvironmentOutputsPaginator.ts | 2 +- ...nvironmentProvisionedResourcesPaginator.ts | 2 +- ...istEnvironmentTemplateVersionsPaginator.ts | 2 +- .../ListEnvironmentTemplatesPaginator.ts | 2 +- .../pagination/ListEnvironmentsPaginator.ts | 2 +- .../pagination/ListRepositoriesPaginator.ts | 2 +- .../ListRepositorySyncDefinitionsPaginator.ts | 2 +- .../ListServiceInstanceOutputsPaginator.ts | 2 +- ...ceInstanceProvisionedResourcesPaginator.ts | 2 +- .../ListServiceInstancesPaginator.ts | 2 +- .../ListServicePipelineOutputsPaginator.ts | 2 +- ...cePipelineProvisionedResourcesPaginator.ts | 2 +- .../ListServiceTemplateVersionsPaginator.ts | 2 +- .../ListServiceTemplatesPaginator.ts | 2 +- .../src/pagination/ListServicesPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-proton/src/runtimeConfig.native.ts | 2 +- .../client-proton/src/runtimeConfig.shared.ts | 4 +- clients/client-proton/src/runtimeConfig.ts | 8 +- .../client-proton/src/runtimeExtensions.ts | 2 +- .../client-proton/src/schemas/schemas_0.ts | 2 +- clients/client-qapps/package.json | 12 +- clients/client-qapps/src/QApps.ts | 4 +- clients/client-qapps/src/QAppsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateLibraryItemReviewCommand.ts | 6 +- .../commands/AssociateQAppWithUserCommand.ts | 6 +- .../commands/BatchCreateCategoryCommand.ts | 6 +- .../commands/BatchDeleteCategoryCommand.ts | 6 +- .../commands/BatchUpdateCategoryCommand.ts | 6 +- .../src/commands/CreateLibraryItemCommand.ts | 6 +- .../src/commands/CreatePresignedUrlCommand.ts | 6 +- .../src/commands/CreateQAppCommand.ts | 6 +- .../src/commands/DeleteLibraryItemCommand.ts | 6 +- .../src/commands/DeleteQAppCommand.ts | 6 +- .../DescribeQAppPermissionsCommand.ts | 6 +- .../DisassociateLibraryItemReviewCommand.ts | 6 +- .../DisassociateQAppFromUserCommand.ts | 6 +- .../commands/ExportQAppSessionDataCommand.ts | 6 +- .../src/commands/GetLibraryItemCommand.ts | 6 +- .../src/commands/GetQAppCommand.ts | 6 +- .../src/commands/GetQAppSessionCommand.ts | 6 +- .../commands/GetQAppSessionMetadataCommand.ts | 6 +- .../src/commands/ImportDocumentCommand.ts | 6 +- .../src/commands/ListCategoriesCommand.ts | 6 +- .../src/commands/ListLibraryItemsCommand.ts | 6 +- .../commands/ListQAppSessionDataCommand.ts | 6 +- .../src/commands/ListQAppsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PredictQAppCommand.ts | 6 +- .../src/commands/StartQAppSessionCommand.ts | 6 +- .../src/commands/StopQAppSessionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateLibraryItemCommand.ts | 6 +- .../UpdateLibraryItemMetadataCommand.ts | 6 +- .../src/commands/UpdateQAppCommand.ts | 6 +- .../commands/UpdateQAppPermissionsCommand.ts | 6 +- .../src/commands/UpdateQAppSessionCommand.ts | 6 +- .../UpdateQAppSessionMetadataCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/QAppsServiceException.ts | 2 +- clients/client-qapps/src/models/errors.ts | 2 +- .../client-qapps/src/pagination/Interfaces.ts | 2 +- .../pagination/ListLibraryItemsPaginator.ts | 2 +- .../src/pagination/ListQAppsPaginator.ts | 2 +- .../client-qapps/src/runtimeConfig.browser.ts | 7 +- .../client-qapps/src/runtimeConfig.native.ts | 2 +- .../client-qapps/src/runtimeConfig.shared.ts | 4 +- clients/client-qapps/src/runtimeConfig.ts | 8 +- clients/client-qapps/src/runtimeExtensions.ts | 2 +- clients/client-qapps/src/schemas/schemas_0.ts | 2 +- clients/client-qbusiness/package.json | 12 +- clients/client-qbusiness/src/QBusiness.ts | 4 +- .../client-qbusiness/src/QBusinessClient.ts | 75 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociatePermissionCommand.ts | 6 +- .../commands/BatchDeleteDocumentCommand.ts | 6 +- .../src/commands/BatchPutDocumentCommand.ts | 6 +- .../src/commands/CancelSubscriptionCommand.ts | 6 +- .../src/commands/ChatCommand.ts | 8 +- .../src/commands/ChatSyncCommand.ts | 8 +- .../commands/CheckDocumentAccessCommand.ts | 6 +- .../CreateAnonymousWebExperienceUrlCommand.ts | 9 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../CreateChatResponseConfigurationCommand.ts | 9 +- .../src/commands/CreateDataAccessorCommand.ts | 8 +- .../src/commands/CreateDataSourceCommand.ts | 6 +- .../src/commands/CreateIndexCommand.ts | 6 +- .../src/commands/CreatePluginCommand.ts | 6 +- .../src/commands/CreateRetrieverCommand.ts | 6 +- .../src/commands/CreateSubscriptionCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../commands/CreateWebExperienceCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../src/commands/DeleteAttachmentCommand.ts | 6 +- .../DeleteChatControlsConfigurationCommand.ts | 9 +- .../DeleteChatResponseConfigurationCommand.ts | 9 +- .../src/commands/DeleteConversationCommand.ts | 6 +- .../src/commands/DeleteDataAccessorCommand.ts | 6 +- .../src/commands/DeleteDataSourceCommand.ts | 6 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../src/commands/DeleteIndexCommand.ts | 6 +- .../src/commands/DeletePluginCommand.ts | 6 +- .../src/commands/DeleteRetrieverCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../commands/DeleteWebExperienceCommand.ts | 6 +- .../commands/DisassociatePermissionCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../GetChatControlsConfigurationCommand.ts | 6 +- .../GetChatResponseConfigurationCommand.ts | 6 +- .../src/commands/GetDataAccessorCommand.ts | 8 +- .../src/commands/GetDataSourceCommand.ts | 6 +- .../src/commands/GetDocumentContentCommand.ts | 6 +- .../src/commands/GetGroupCommand.ts | 6 +- .../src/commands/GetIndexCommand.ts | 6 +- .../src/commands/GetMediaCommand.ts | 6 +- .../src/commands/GetPluginCommand.ts | 6 +- .../src/commands/GetPolicyCommand.ts | 6 +- .../src/commands/GetRetrieverCommand.ts | 6 +- .../src/commands/GetUserCommand.ts | 6 +- .../src/commands/GetWebExperienceCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../src/commands/ListAttachmentsCommand.ts | 6 +- .../ListChatResponseConfigurationsCommand.ts | 6 +- .../src/commands/ListConversationsCommand.ts | 6 +- .../src/commands/ListDataAccessorsCommand.ts | 6 +- .../commands/ListDataSourceSyncJobsCommand.ts | 6 +- .../src/commands/ListDataSourcesCommand.ts | 6 +- .../src/commands/ListDocumentsCommand.ts | 6 +- .../src/commands/ListGroupsCommand.ts | 6 +- .../src/commands/ListIndicesCommand.ts | 6 +- .../src/commands/ListMessagesCommand.ts | 6 +- .../src/commands/ListPluginActionsCommand.ts | 6 +- .../commands/ListPluginTypeActionsCommand.ts | 6 +- .../commands/ListPluginTypeMetadataCommand.ts | 6 +- .../src/commands/ListPluginsCommand.ts | 6 +- .../src/commands/ListRetrieversCommand.ts | 6 +- .../src/commands/ListSubscriptionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWebExperiencesCommand.ts | 6 +- .../src/commands/PutFeedbackCommand.ts | 6 +- .../src/commands/PutGroupCommand.ts | 6 +- .../commands/SearchRelevantContentCommand.ts | 8 +- .../commands/StartDataSourceSyncJobCommand.ts | 6 +- .../commands/StopDataSourceSyncJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../UpdateChatControlsConfigurationCommand.ts | 9 +- .../UpdateChatResponseConfigurationCommand.ts | 9 +- .../src/commands/UpdateDataAccessorCommand.ts | 8 +- .../src/commands/UpdateDataSourceCommand.ts | 6 +- .../src/commands/UpdateIndexCommand.ts | 6 +- .../src/commands/UpdatePluginCommand.ts | 6 +- .../src/commands/UpdateRetrieverCommand.ts | 6 +- .../src/commands/UpdateSubscriptionCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../commands/UpdateWebExperienceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/QBusinessServiceException.ts | 2 +- clients/client-qbusiness/src/models/errors.ts | 2 +- .../GetChatControlsConfigurationPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../pagination/ListAttachmentsPaginator.ts | 2 +- ...ListChatResponseConfigurationsPaginator.ts | 2 +- .../pagination/ListConversationsPaginator.ts | 2 +- .../pagination/ListDataAccessorsPaginator.ts | 2 +- .../ListDataSourceSyncJobsPaginator.ts | 2 +- .../pagination/ListDataSourcesPaginator.ts | 2 +- .../src/pagination/ListDocumentsPaginator.ts | 2 +- .../src/pagination/ListGroupsPaginator.ts | 2 +- .../src/pagination/ListIndicesPaginator.ts | 2 +- .../src/pagination/ListMessagesPaginator.ts | 2 +- .../pagination/ListPluginActionsPaginator.ts | 2 +- .../ListPluginTypeActionsPaginator.ts | 2 +- .../ListPluginTypeMetadataPaginator.ts | 2 +- .../src/pagination/ListPluginsPaginator.ts | 2 +- .../src/pagination/ListRetrieversPaginator.ts | 2 +- .../pagination/ListSubscriptionsPaginator.ts | 2 +- .../pagination/ListWebExperiencesPaginator.ts | 2 +- .../SearchRelevantContentPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-qbusiness/src/runtimeConfig.ts | 8 +- .../client-qbusiness/src/runtimeExtensions.ts | 2 +- .../client-qbusiness/src/schemas/schemas_0.ts | 2 +- clients/client-qconnect/package.json | 12 +- clients/client-qconnect/src/QConnect.ts | 4 +- clients/client-qconnect/src/QConnectClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../ActivateMessageTemplateCommand.ts | 6 +- .../src/commands/CreateAIAgentCommand.ts | 6 +- .../commands/CreateAIAgentVersionCommand.ts | 6 +- .../src/commands/CreateAIGuardrailCommand.ts | 6 +- .../CreateAIGuardrailVersionCommand.ts | 6 +- .../src/commands/CreateAIPromptCommand.ts | 6 +- .../commands/CreateAIPromptVersionCommand.ts | 6 +- .../CreateAssistantAssociationCommand.ts | 6 +- .../src/commands/CreateAssistantCommand.ts | 6 +- .../CreateContentAssociationCommand.ts | 6 +- .../src/commands/CreateContentCommand.ts | 6 +- .../commands/CreateKnowledgeBaseCommand.ts | 6 +- .../CreateMessageTemplateAttachmentCommand.ts | 9 +- .../commands/CreateMessageTemplateCommand.ts | 6 +- .../CreateMessageTemplateVersionCommand.ts | 6 +- .../commands/CreateQuickResponseCommand.ts | 6 +- .../src/commands/CreateSessionCommand.ts | 6 +- .../DeactivateMessageTemplateCommand.ts | 6 +- .../src/commands/DeleteAIAgentCommand.ts | 6 +- .../commands/DeleteAIAgentVersionCommand.ts | 6 +- .../src/commands/DeleteAIGuardrailCommand.ts | 6 +- .../DeleteAIGuardrailVersionCommand.ts | 6 +- .../src/commands/DeleteAIPromptCommand.ts | 6 +- .../commands/DeleteAIPromptVersionCommand.ts | 6 +- .../DeleteAssistantAssociationCommand.ts | 6 +- .../src/commands/DeleteAssistantCommand.ts | 6 +- .../DeleteContentAssociationCommand.ts | 6 +- .../src/commands/DeleteContentCommand.ts | 6 +- .../src/commands/DeleteImportJobCommand.ts | 6 +- .../commands/DeleteKnowledgeBaseCommand.ts | 6 +- .../DeleteMessageTemplateAttachmentCommand.ts | 9 +- .../commands/DeleteMessageTemplateCommand.ts | 6 +- .../commands/DeleteQuickResponseCommand.ts | 6 +- .../src/commands/GetAIAgentCommand.ts | 6 +- .../src/commands/GetAIGuardrailCommand.ts | 6 +- .../src/commands/GetAIPromptCommand.ts | 6 +- .../GetAssistantAssociationCommand.ts | 6 +- .../src/commands/GetAssistantCommand.ts | 6 +- .../commands/GetContentAssociationCommand.ts | 6 +- .../src/commands/GetContentCommand.ts | 6 +- .../src/commands/GetContentSummaryCommand.ts | 6 +- .../src/commands/GetImportJobCommand.ts | 6 +- .../src/commands/GetKnowledgeBaseCommand.ts | 6 +- .../src/commands/GetMessageTemplateCommand.ts | 6 +- .../src/commands/GetNextMessageCommand.ts | 6 +- .../src/commands/GetQuickResponseCommand.ts | 6 +- .../src/commands/GetRecommendationsCommand.ts | 8 +- .../src/commands/GetSessionCommand.ts | 6 +- .../commands/ListAIAgentVersionsCommand.ts | 6 +- .../src/commands/ListAIAgentsCommand.ts | 6 +- .../ListAIGuardrailVersionsCommand.ts | 6 +- .../src/commands/ListAIGuardrailsCommand.ts | 6 +- .../commands/ListAIPromptVersionsCommand.ts | 6 +- .../src/commands/ListAIPromptsCommand.ts | 6 +- .../ListAssistantAssociationsCommand.ts | 6 +- .../src/commands/ListAssistantsCommand.ts | 6 +- .../ListContentAssociationsCommand.ts | 6 +- .../src/commands/ListContentsCommand.ts | 6 +- .../src/commands/ListImportJobsCommand.ts | 6 +- .../src/commands/ListKnowledgeBasesCommand.ts | 6 +- .../ListMessageTemplateVersionsCommand.ts | 6 +- .../commands/ListMessageTemplatesCommand.ts | 6 +- .../src/commands/ListMessagesCommand.ts | 6 +- .../src/commands/ListQuickResponsesCommand.ts | 6 +- .../src/commands/ListSpansCommand.ts | 8 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../NotifyRecommendationsReceivedCommand.ts | 6 +- .../src/commands/PutFeedbackCommand.ts | 6 +- .../src/commands/QueryAssistantCommand.ts | 8 +- .../commands/RemoveAssistantAIAgentCommand.ts | 6 +- .../RemoveKnowledgeBaseTemplateUriCommand.ts | 6 +- .../commands/RenderMessageTemplateCommand.ts | 6 +- .../src/commands/RetrieveCommand.ts | 8 +- .../src/commands/SearchContentCommand.ts | 6 +- .../commands/SearchMessageTemplatesCommand.ts | 6 +- .../commands/SearchQuickResponsesCommand.ts | 6 +- .../src/commands/SearchSessionsCommand.ts | 6 +- .../src/commands/SendMessageCommand.ts | 6 +- .../src/commands/StartContentUploadCommand.ts | 6 +- .../src/commands/StartImportJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAIAgentCommand.ts | 6 +- .../src/commands/UpdateAIGuardrailCommand.ts | 6 +- .../src/commands/UpdateAIPromptCommand.ts | 6 +- .../commands/UpdateAssistantAIAgentCommand.ts | 6 +- .../src/commands/UpdateContentCommand.ts | 6 +- .../UpdateKnowledgeBaseTemplateUriCommand.ts | 6 +- .../commands/UpdateMessageTemplateCommand.ts | 6 +- .../UpdateMessageTemplateMetadataCommand.ts | 6 +- .../commands/UpdateQuickResponseCommand.ts | 6 +- .../src/commands/UpdateSessionCommand.ts | 6 +- .../src/commands/UpdateSessionDataCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/QConnectServiceException.ts | 2 +- clients/client-qconnect/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAIAgentVersionsPaginator.ts | 2 +- .../src/pagination/ListAIAgentsPaginator.ts | 2 +- .../ListAIGuardrailVersionsPaginator.ts | 2 +- .../pagination/ListAIGuardrailsPaginator.ts | 2 +- .../ListAIPromptVersionsPaginator.ts | 2 +- .../src/pagination/ListAIPromptsPaginator.ts | 2 +- .../ListAssistantAssociationsPaginator.ts | 2 +- .../src/pagination/ListAssistantsPaginator.ts | 2 +- .../ListContentAssociationsPaginator.ts | 2 +- .../src/pagination/ListContentsPaginator.ts | 2 +- .../src/pagination/ListImportJobsPaginator.ts | 2 +- .../pagination/ListKnowledgeBasesPaginator.ts | 2 +- .../ListMessageTemplateVersionsPaginator.ts | 2 +- .../ListMessageTemplatesPaginator.ts | 2 +- .../src/pagination/ListMessagesPaginator.ts | 2 +- .../pagination/ListQuickResponsesPaginator.ts | 2 +- .../src/pagination/ListSpansPaginator.ts | 2 +- .../src/pagination/QueryAssistantPaginator.ts | 2 +- .../src/pagination/SearchContentPaginator.ts | 2 +- .../SearchMessageTemplatesPaginator.ts | 2 +- .../SearchQuickResponsesPaginator.ts | 2 +- .../src/pagination/SearchSessionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-qconnect/src/runtimeConfig.ts | 8 +- .../client-qconnect/src/runtimeExtensions.ts | 2 +- .../client-qconnect/src/schemas/schemas_0.ts | 2 +- clients/client-quicksight/package.json | 12 +- clients/client-quicksight/src/QuickSight.ts | 4 +- .../client-quicksight/src/QuickSightClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchCreateTopicReviewedAnswerCommand.ts | 8 +- .../BatchDeleteTopicReviewedAnswerCommand.ts | 6 +- .../src/commands/CancelIngestionCommand.ts | 6 +- .../CreateAccountCustomizationCommand.ts | 6 +- .../CreateAccountSubscriptionCommand.ts | 6 +- .../commands/CreateActionConnectorCommand.ts | 6 +- .../src/commands/CreateAnalysisCommand.ts | 6 +- .../src/commands/CreateBrandCommand.ts | 6 +- .../CreateCustomPermissionsCommand.ts | 6 +- .../src/commands/CreateDashboardCommand.ts | 6 +- .../src/commands/CreateDataSetCommand.ts | 6 +- .../src/commands/CreateDataSourceCommand.ts | 6 +- .../src/commands/CreateFolderCommand.ts | 6 +- .../commands/CreateFolderMembershipCommand.ts | 6 +- .../src/commands/CreateGroupCommand.ts | 6 +- .../commands/CreateGroupMembershipCommand.ts | 6 +- .../CreateIAMPolicyAssignmentCommand.ts | 6 +- .../src/commands/CreateIngestionCommand.ts | 6 +- .../src/commands/CreateNamespaceCommand.ts | 6 +- .../commands/CreateRefreshScheduleCommand.ts | 6 +- .../commands/CreateRoleMembershipCommand.ts | 6 +- .../commands/CreateTemplateAliasCommand.ts | 6 +- .../src/commands/CreateTemplateCommand.ts | 6 +- .../src/commands/CreateThemeAliasCommand.ts | 6 +- .../src/commands/CreateThemeCommand.ts | 6 +- .../src/commands/CreateTopicCommand.ts | 6 +- .../CreateTopicRefreshScheduleCommand.ts | 6 +- .../commands/CreateVPCConnectionCommand.ts | 6 +- .../DeleteAccountCustomPermissionCommand.ts | 6 +- .../DeleteAccountCustomizationCommand.ts | 6 +- .../DeleteAccountSubscriptionCommand.ts | 6 +- .../commands/DeleteActionConnectorCommand.ts | 6 +- .../src/commands/DeleteAnalysisCommand.ts | 6 +- .../commands/DeleteBrandAssignmentCommand.ts | 6 +- .../src/commands/DeleteBrandCommand.ts | 6 +- .../DeleteCustomPermissionsCommand.ts | 6 +- .../src/commands/DeleteDashboardCommand.ts | 6 +- .../src/commands/DeleteDataSetCommand.ts | 6 +- .../DeleteDataSetRefreshPropertiesCommand.ts | 6 +- .../src/commands/DeleteDataSourceCommand.ts | 6 +- ...eleteDefaultQBusinessApplicationCommand.ts | 6 +- .../src/commands/DeleteFolderCommand.ts | 6 +- .../commands/DeleteFolderMembershipCommand.ts | 6 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../commands/DeleteGroupMembershipCommand.ts | 6 +- .../DeleteIAMPolicyAssignmentCommand.ts | 6 +- .../DeleteIdentityPropagationConfigCommand.ts | 9 +- .../src/commands/DeleteNamespaceCommand.ts | 6 +- .../commands/DeleteRefreshScheduleCommand.ts | 6 +- .../DeleteRoleCustomPermissionCommand.ts | 6 +- .../commands/DeleteRoleMembershipCommand.ts | 6 +- .../commands/DeleteTemplateAliasCommand.ts | 6 +- .../src/commands/DeleteTemplateCommand.ts | 6 +- .../src/commands/DeleteThemeAliasCommand.ts | 6 +- .../src/commands/DeleteThemeCommand.ts | 6 +- .../src/commands/DeleteTopicCommand.ts | 6 +- .../DeleteTopicRefreshScheduleCommand.ts | 6 +- .../DeleteUserByPrincipalIdCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../DeleteUserCustomPermissionCommand.ts | 6 +- .../commands/DeleteVPCConnectionCommand.ts | 6 +- .../DescribeAccountCustomPermissionCommand.ts | 9 +- .../DescribeAccountCustomizationCommand.ts | 6 +- .../DescribeAccountSettingsCommand.ts | 6 +- .../DescribeAccountSubscriptionCommand.ts | 6 +- .../DescribeActionConnectorCommand.ts | 6 +- ...scribeActionConnectorPermissionsCommand.ts | 6 +- .../src/commands/DescribeAnalysisCommand.ts | 6 +- .../DescribeAnalysisDefinitionCommand.ts | 6 +- .../DescribeAnalysisPermissionsCommand.ts | 6 +- .../DescribeAssetBundleExportJobCommand.ts | 6 +- .../DescribeAssetBundleImportJobCommand.ts | 6 +- .../DescribeBrandAssignmentCommand.ts | 6 +- .../src/commands/DescribeBrandCommand.ts | 6 +- .../DescribeBrandPublishedVersionCommand.ts | 6 +- .../DescribeCustomPermissionsCommand.ts | 6 +- .../src/commands/DescribeDashboardCommand.ts | 6 +- .../DescribeDashboardDefinitionCommand.ts | 6 +- .../DescribeDashboardPermissionsCommand.ts | 6 +- .../DescribeDashboardSnapshotJobCommand.ts | 6 +- ...scribeDashboardSnapshotJobResultCommand.ts | 6 +- ...escribeDashboardsQAConfigurationCommand.ts | 6 +- .../src/commands/DescribeDataSetCommand.ts | 6 +- .../DescribeDataSetPermissionsCommand.ts | 6 +- ...DescribeDataSetRefreshPropertiesCommand.ts | 9 +- .../src/commands/DescribeDataSourceCommand.ts | 6 +- .../DescribeDataSourcePermissionsCommand.ts | 6 +- ...cribeDefaultQBusinessApplicationCommand.ts | 6 +- .../src/commands/DescribeFolderCommand.ts | 6 +- .../DescribeFolderPermissionsCommand.ts | 6 +- ...escribeFolderResolvedPermissionsCommand.ts | 6 +- .../src/commands/DescribeGroupCommand.ts | 6 +- .../DescribeGroupMembershipCommand.ts | 6 +- .../DescribeIAMPolicyAssignmentCommand.ts | 6 +- .../src/commands/DescribeIngestionCommand.ts | 6 +- .../commands/DescribeIpRestrictionCommand.ts | 6 +- .../DescribeKeyRegistrationCommand.ts | 6 +- .../src/commands/DescribeNamespaceCommand.ts | 6 +- ...ibeQPersonalizationConfigurationCommand.ts | 6 +- ...beQuickSightQSearchConfigurationCommand.ts | 6 +- .../DescribeRefreshScheduleCommand.ts | 6 +- .../DescribeRoleCustomPermissionCommand.ts | 6 +- .../commands/DescribeTemplateAliasCommand.ts | 6 +- .../src/commands/DescribeTemplateCommand.ts | 6 +- .../DescribeTemplateDefinitionCommand.ts | 6 +- .../DescribeTemplatePermissionsCommand.ts | 6 +- .../src/commands/DescribeThemeAliasCommand.ts | 6 +- .../src/commands/DescribeThemeCommand.ts | 6 +- .../DescribeThemePermissionsCommand.ts | 6 +- .../src/commands/DescribeTopicCommand.ts | 6 +- .../DescribeTopicPermissionsCommand.ts | 6 +- .../commands/DescribeTopicRefreshCommand.ts | 6 +- .../DescribeTopicRefreshScheduleCommand.ts | 6 +- .../src/commands/DescribeUserCommand.ts | 6 +- .../commands/DescribeVPCConnectionCommand.ts | 6 +- ...GenerateEmbedUrlForAnonymousUserCommand.ts | 9 +- ...enerateEmbedUrlForRegisteredUserCommand.ts | 6 +- ...UrlForRegisteredUserWithIdentityCommand.ts | 6 +- .../commands/GetDashboardEmbedUrlCommand.ts | 6 +- .../src/commands/GetFlowMetadataCommand.ts | 6 +- .../src/commands/GetFlowPermissionsCommand.ts | 6 +- .../src/commands/GetSessionEmbedUrlCommand.ts | 6 +- .../commands/ListActionConnectorsCommand.ts | 6 +- .../src/commands/ListAnalysesCommand.ts | 6 +- .../ListAssetBundleExportJobsCommand.ts | 6 +- .../ListAssetBundleImportJobsCommand.ts | 6 +- .../src/commands/ListBrandsCommand.ts | 6 +- .../commands/ListCustomPermissionsCommand.ts | 6 +- .../commands/ListDashboardVersionsCommand.ts | 6 +- .../src/commands/ListDashboardsCommand.ts | 6 +- .../src/commands/ListDataSetsCommand.ts | 6 +- .../src/commands/ListDataSourcesCommand.ts | 6 +- .../src/commands/ListFlowsCommand.ts | 6 +- .../src/commands/ListFolderMembersCommand.ts | 6 +- .../src/commands/ListFoldersCommand.ts | 6 +- .../commands/ListFoldersForResourceCommand.ts | 6 +- .../commands/ListGroupMembershipsCommand.ts | 6 +- .../src/commands/ListGroupsCommand.ts | 6 +- .../ListIAMPolicyAssignmentsCommand.ts | 6 +- .../ListIAMPolicyAssignmentsForUserCommand.ts | 9 +- .../ListIdentityPropagationConfigsCommand.ts | 6 +- .../src/commands/ListIngestionsCommand.ts | 6 +- .../src/commands/ListNamespacesCommand.ts | 6 +- .../commands/ListRefreshSchedulesCommand.ts | 6 +- .../commands/ListRoleMembershipsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTemplateAliasesCommand.ts | 6 +- .../commands/ListTemplateVersionsCommand.ts | 6 +- .../src/commands/ListTemplatesCommand.ts | 6 +- .../src/commands/ListThemeAliasesCommand.ts | 6 +- .../src/commands/ListThemeVersionsCommand.ts | 6 +- .../src/commands/ListThemesCommand.ts | 6 +- .../ListTopicRefreshSchedulesCommand.ts | 6 +- .../ListTopicReviewedAnswersCommand.ts | 6 +- .../src/commands/ListTopicsCommand.ts | 6 +- .../src/commands/ListUserGroupsCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../src/commands/ListVPCConnectionsCommand.ts | 6 +- .../src/commands/PredictQAResultsCommand.ts | 6 +- .../PutDataSetRefreshPropertiesCommand.ts | 6 +- .../src/commands/RegisterUserCommand.ts | 6 +- .../src/commands/RestoreAnalysisCommand.ts | 6 +- .../commands/SearchActionConnectorsCommand.ts | 6 +- .../src/commands/SearchAnalysesCommand.ts | 6 +- .../src/commands/SearchDashboardsCommand.ts | 6 +- .../src/commands/SearchDataSetsCommand.ts | 6 +- .../src/commands/SearchDataSourcesCommand.ts | 6 +- .../src/commands/SearchFlowsCommand.ts | 6 +- .../src/commands/SearchFoldersCommand.ts | 6 +- .../src/commands/SearchGroupsCommand.ts | 6 +- .../src/commands/SearchTopicsCommand.ts | 6 +- .../StartAssetBundleExportJobCommand.ts | 6 +- .../StartAssetBundleImportJobCommand.ts | 6 +- .../StartDashboardSnapshotJobCommand.ts | 6 +- ...tartDashboardSnapshotJobScheduleCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateAccountCustomPermissionCommand.ts | 6 +- .../UpdateAccountCustomizationCommand.ts | 6 +- .../commands/UpdateAccountSettingsCommand.ts | 6 +- .../commands/UpdateActionConnectorCommand.ts | 6 +- ...UpdateActionConnectorPermissionsCommand.ts | 9 +- .../src/commands/UpdateAnalysisCommand.ts | 6 +- .../UpdateAnalysisPermissionsCommand.ts | 6 +- ...pplicationWithTokenExchangeGrantCommand.ts | 6 +- .../commands/UpdateBrandAssignmentCommand.ts | 6 +- .../src/commands/UpdateBrandCommand.ts | 6 +- .../UpdateBrandPublishedVersionCommand.ts | 6 +- .../UpdateCustomPermissionsCommand.ts | 6 +- .../src/commands/UpdateDashboardCommand.ts | 6 +- .../commands/UpdateDashboardLinksCommand.ts | 6 +- .../UpdateDashboardPermissionsCommand.ts | 6 +- .../UpdateDashboardPublishedVersionCommand.ts | 9 +- .../UpdateDashboardsQAConfigurationCommand.ts | 9 +- .../src/commands/UpdateDataSetCommand.ts | 6 +- .../UpdateDataSetPermissionsCommand.ts | 6 +- .../src/commands/UpdateDataSourceCommand.ts | 6 +- .../UpdateDataSourcePermissionsCommand.ts | 6 +- ...pdateDefaultQBusinessApplicationCommand.ts | 6 +- .../commands/UpdateFlowPermissionsCommand.ts | 6 +- .../src/commands/UpdateFolderCommand.ts | 6 +- .../UpdateFolderPermissionsCommand.ts | 6 +- .../src/commands/UpdateGroupCommand.ts | 6 +- .../UpdateIAMPolicyAssignmentCommand.ts | 6 +- .../UpdateIdentityPropagationConfigCommand.ts | 9 +- .../commands/UpdateIpRestrictionCommand.ts | 6 +- .../commands/UpdateKeyRegistrationCommand.ts | 6 +- .../UpdatePublicSharingSettingsCommand.ts | 6 +- ...ateQPersonalizationConfigurationCommand.ts | 6 +- ...teQuickSightQSearchConfigurationCommand.ts | 6 +- .../commands/UpdateRefreshScheduleCommand.ts | 6 +- .../UpdateRoleCustomPermissionCommand.ts | 6 +- ...UpdateSPICECapacityConfigurationCommand.ts | 9 +- .../commands/UpdateTemplateAliasCommand.ts | 6 +- .../src/commands/UpdateTemplateCommand.ts | 6 +- .../UpdateTemplatePermissionsCommand.ts | 6 +- .../src/commands/UpdateThemeAliasCommand.ts | 6 +- .../src/commands/UpdateThemeCommand.ts | 6 +- .../commands/UpdateThemePermissionsCommand.ts | 6 +- .../src/commands/UpdateTopicCommand.ts | 6 +- .../commands/UpdateTopicPermissionsCommand.ts | 6 +- .../UpdateTopicRefreshScheduleCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../UpdateUserCustomPermissionCommand.ts | 6 +- .../commands/UpdateVPCConnectionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/QuickSightServiceException.ts | 2 +- .../client-quicksight/src/models/errors.ts | 2 +- .../DescribeFolderPermissionsPaginator.ts | 2 +- ...cribeFolderResolvedPermissionsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListActionConnectorsPaginator.ts | 2 +- .../src/pagination/ListAnalysesPaginator.ts | 2 +- .../ListAssetBundleExportJobsPaginator.ts | 2 +- .../ListAssetBundleImportJobsPaginator.ts | 2 +- .../src/pagination/ListBrandsPaginator.ts | 2 +- .../ListCustomPermissionsPaginator.ts | 2 +- .../ListDashboardVersionsPaginator.ts | 2 +- .../src/pagination/ListDashboardsPaginator.ts | 2 +- .../src/pagination/ListDataSetsPaginator.ts | 2 +- .../pagination/ListDataSourcesPaginator.ts | 2 +- .../src/pagination/ListFlowsPaginator.ts | 2 +- .../pagination/ListFolderMembersPaginator.ts | 2 +- .../ListFoldersForResourcePaginator.ts | 2 +- .../src/pagination/ListFoldersPaginator.ts | 2 +- .../ListGroupMembershipsPaginator.ts | 2 +- .../src/pagination/ListGroupsPaginator.ts | 2 +- ...istIAMPolicyAssignmentsForUserPaginator.ts | 2 +- .../ListIAMPolicyAssignmentsPaginator.ts | 2 +- .../src/pagination/ListIngestionsPaginator.ts | 2 +- .../src/pagination/ListNamespacesPaginator.ts | 2 +- .../ListRoleMembershipsPaginator.ts | 2 +- .../ListTemplateAliasesPaginator.ts | 2 +- .../ListTemplateVersionsPaginator.ts | 2 +- .../src/pagination/ListTemplatesPaginator.ts | 2 +- .../pagination/ListThemeVersionsPaginator.ts | 2 +- .../src/pagination/ListThemesPaginator.ts | 2 +- .../src/pagination/ListTopicsPaginator.ts | 2 +- .../src/pagination/ListUserGroupsPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../pagination/ListVPCConnectionsPaginator.ts | 2 +- .../SearchActionConnectorsPaginator.ts | 2 +- .../src/pagination/SearchAnalysesPaginator.ts | 2 +- .../pagination/SearchDashboardsPaginator.ts | 2 +- .../src/pagination/SearchDataSetsPaginator.ts | 2 +- .../pagination/SearchDataSourcesPaginator.ts | 2 +- .../src/pagination/SearchFlowsPaginator.ts | 2 +- .../src/pagination/SearchFoldersPaginator.ts | 2 +- .../src/pagination/SearchGroupsPaginator.ts | 2 +- .../src/pagination/SearchTopicsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-quicksight/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ram/package.json | 12 +- clients/client-ram/src/RAM.ts | 4 +- clients/client-ram/src/RAMClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptResourceShareInvitationCommand.ts | 6 +- .../commands/AssociateResourceShareCommand.ts | 6 +- ...AssociateResourceSharePermissionCommand.ts | 9 +- .../src/commands/CreatePermissionCommand.ts | 6 +- .../CreatePermissionVersionCommand.ts | 6 +- .../commands/CreateResourceShareCommand.ts | 6 +- .../src/commands/DeletePermissionCommand.ts | 6 +- .../DeletePermissionVersionCommand.ts | 6 +- .../commands/DeleteResourceShareCommand.ts | 6 +- .../DisassociateResourceShareCommand.ts | 6 +- ...associateResourceSharePermissionCommand.ts | 6 +- ...EnableSharingWithAwsOrganizationCommand.ts | 9 +- .../src/commands/GetPermissionCommand.ts | 6 +- .../commands/GetResourcePoliciesCommand.ts | 6 +- .../GetResourceShareAssociationsCommand.ts | 6 +- .../GetResourceShareInvitationsCommand.ts | 6 +- .../src/commands/GetResourceSharesCommand.ts | 6 +- .../ListPendingInvitationResourcesCommand.ts | 6 +- .../ListPermissionAssociationsCommand.ts | 6 +- .../commands/ListPermissionVersionsCommand.ts | 6 +- .../src/commands/ListPermissionsCommand.ts | 6 +- .../src/commands/ListPrincipalsCommand.ts | 6 +- ...eplacePermissionAssociationsWorkCommand.ts | 6 +- .../ListResourceSharePermissionsCommand.ts | 6 +- .../src/commands/ListResourceTypesCommand.ts | 6 +- .../src/commands/ListResourcesCommand.ts | 6 +- ...omotePermissionCreatedFromPolicyCommand.ts | 6 +- ...teResourceShareCreatedFromPolicyCommand.ts | 6 +- .../RejectResourceShareInvitationCommand.ts | 6 +- .../ReplacePermissionAssociationsCommand.ts | 6 +- .../SetDefaultPermissionVersionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateResourceShareCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-ram/src/extensionConfiguration.ts | 8 +- .../src/models/RAMServiceException.ts | 2 +- clients/client-ram/src/models/errors.ts | 2 +- .../GetResourcePoliciesPaginator.ts | 2 +- .../GetResourceShareAssociationsPaginator.ts | 2 +- .../GetResourceShareInvitationsPaginator.ts | 2 +- .../pagination/GetResourceSharesPaginator.ts | 2 +- .../client-ram/src/pagination/Interfaces.ts | 2 +- ...ListPendingInvitationResourcesPaginator.ts | 2 +- .../ListPermissionAssociationsPaginator.ts | 2 +- .../ListPermissionVersionsPaginator.ts | 2 +- .../pagination/ListPermissionsPaginator.ts | 2 +- .../src/pagination/ListPrincipalsPaginator.ts | 2 +- ...lacePermissionAssociationsWorkPaginator.ts | 2 +- .../ListResourceSharePermissionsPaginator.ts | 2 +- .../pagination/ListResourceTypesPaginator.ts | 2 +- .../src/pagination/ListResourcesPaginator.ts | 2 +- .../client-ram/src/runtimeConfig.browser.ts | 7 +- .../client-ram/src/runtimeConfig.native.ts | 2 +- .../client-ram/src/runtimeConfig.shared.ts | 4 +- clients/client-ram/src/runtimeConfig.ts | 8 +- clients/client-ram/src/runtimeExtensions.ts | 2 +- clients/client-ram/src/schemas/schemas_0.ts | 2 +- clients/client-rbin/package.json | 12 +- clients/client-rbin/src/Rbin.ts | 4 +- clients/client-rbin/src/RbinClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateRuleCommand.ts | 6 +- .../src/commands/DeleteRuleCommand.ts | 6 +- .../src/commands/GetRuleCommand.ts | 6 +- .../src/commands/ListRulesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/LockRuleCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UnlockRuleCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateRuleCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-rbin/src/extensionConfiguration.ts | 8 +- .../src/models/RbinServiceException.ts | 2 +- clients/client-rbin/src/models/errors.ts | 2 +- .../client-rbin/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListRulesPaginator.ts | 2 +- .../client-rbin/src/runtimeConfig.browser.ts | 7 +- .../client-rbin/src/runtimeConfig.native.ts | 2 +- .../client-rbin/src/runtimeConfig.shared.ts | 4 +- clients/client-rbin/src/runtimeConfig.ts | 8 +- clients/client-rbin/src/runtimeExtensions.ts | 2 +- clients/client-rbin/src/schemas/schemas_0.ts | 2 +- clients/client-rds-data/package.json | 12 +- clients/client-rds-data/src/RDSData.ts | 4 +- clients/client-rds-data/src/RDSDataClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchExecuteStatementCommand.ts | 6 +- .../src/commands/BeginTransactionCommand.ts | 6 +- .../src/commands/CommitTransactionCommand.ts | 6 +- .../src/commands/ExecuteSqlCommand.ts | 6 +- .../src/commands/ExecuteStatementCommand.ts | 6 +- .../commands/RollbackTransactionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/RDSDataServiceException.ts | 2 +- clients/client-rds-data/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-rds-data/src/runtimeConfig.ts | 8 +- .../client-rds-data/src/runtimeExtensions.ts | 2 +- .../client-rds-data/src/schemas/schemas_0.ts | 2 +- clients/client-rds/package.json | 12 +- clients/client-rds/src/RDS.ts | 4 +- clients/client-rds/src/RDSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddRoleToDBClusterCommand.ts | 6 +- .../commands/AddRoleToDBInstanceCommand.ts | 6 +- ...ddSourceIdentifierToSubscriptionCommand.ts | 9 +- .../src/commands/AddTagsToResourceCommand.ts | 6 +- .../ApplyPendingMaintenanceActionCommand.ts | 6 +- .../AuthorizeDBSecurityGroupIngressCommand.ts | 6 +- .../src/commands/BacktrackDBClusterCommand.ts | 6 +- .../src/commands/CancelExportTaskCommand.ts | 6 +- .../CopyDBClusterParameterGroupCommand.ts | 6 +- .../commands/CopyDBClusterSnapshotCommand.ts | 6 +- .../commands/CopyDBParameterGroupCommand.ts | 6 +- .../src/commands/CopyDBSnapshotCommand.ts | 6 +- .../src/commands/CopyOptionGroupCommand.ts | 6 +- .../CreateBlueGreenDeploymentCommand.ts | 6 +- .../CreateCustomDBEngineVersionCommand.ts | 6 +- .../src/commands/CreateDBClusterCommand.ts | 6 +- .../CreateDBClusterEndpointCommand.ts | 6 +- .../CreateDBClusterParameterGroupCommand.ts | 6 +- .../CreateDBClusterSnapshotCommand.ts | 6 +- .../src/commands/CreateDBInstanceCommand.ts | 6 +- .../CreateDBInstanceReadReplicaCommand.ts | 6 +- .../commands/CreateDBParameterGroupCommand.ts | 6 +- .../src/commands/CreateDBProxyCommand.ts | 6 +- .../commands/CreateDBProxyEndpointCommand.ts | 6 +- .../commands/CreateDBSecurityGroupCommand.ts | 6 +- .../src/commands/CreateDBShardGroupCommand.ts | 6 +- .../src/commands/CreateDBSnapshotCommand.ts | 6 +- .../commands/CreateDBSubnetGroupCommand.ts | 6 +- .../CreateEventSubscriptionCommand.ts | 6 +- .../commands/CreateGlobalClusterCommand.ts | 6 +- .../src/commands/CreateIntegrationCommand.ts | 6 +- .../src/commands/CreateOptionGroupCommand.ts | 6 +- .../commands/CreateTenantDatabaseCommand.ts | 6 +- .../DeleteBlueGreenDeploymentCommand.ts | 6 +- .../DeleteCustomDBEngineVersionCommand.ts | 6 +- .../DeleteDBClusterAutomatedBackupCommand.ts | 6 +- .../src/commands/DeleteDBClusterCommand.ts | 6 +- .../DeleteDBClusterEndpointCommand.ts | 6 +- .../DeleteDBClusterParameterGroupCommand.ts | 6 +- .../DeleteDBClusterSnapshotCommand.ts | 6 +- .../DeleteDBInstanceAutomatedBackupCommand.ts | 6 +- .../src/commands/DeleteDBInstanceCommand.ts | 6 +- .../commands/DeleteDBParameterGroupCommand.ts | 6 +- .../src/commands/DeleteDBProxyCommand.ts | 6 +- .../commands/DeleteDBProxyEndpointCommand.ts | 6 +- .../commands/DeleteDBSecurityGroupCommand.ts | 6 +- .../src/commands/DeleteDBShardGroupCommand.ts | 6 +- .../src/commands/DeleteDBSnapshotCommand.ts | 6 +- .../commands/DeleteDBSubnetGroupCommand.ts | 6 +- .../DeleteEventSubscriptionCommand.ts | 6 +- .../commands/DeleteGlobalClusterCommand.ts | 6 +- .../src/commands/DeleteIntegrationCommand.ts | 6 +- .../src/commands/DeleteOptionGroupCommand.ts | 6 +- .../commands/DeleteTenantDatabaseCommand.ts | 6 +- .../DeregisterDBProxyTargetsCommand.ts | 6 +- .../DescribeAccountAttributesCommand.ts | 6 +- .../DescribeBlueGreenDeploymentsCommand.ts | 6 +- .../commands/DescribeCertificatesCommand.ts | 6 +- ...escribeDBClusterAutomatedBackupsCommand.ts | 6 +- .../DescribeDBClusterBacktracksCommand.ts | 6 +- .../DescribeDBClusterEndpointsCommand.ts | 6 +- ...DescribeDBClusterParameterGroupsCommand.ts | 6 +- .../DescribeDBClusterParametersCommand.ts | 6 +- ...cribeDBClusterSnapshotAttributesCommand.ts | 6 +- .../DescribeDBClusterSnapshotsCommand.ts | 6 +- .../src/commands/DescribeDBClustersCommand.ts | 6 +- .../DescribeDBEngineVersionsCommand.ts | 6 +- ...scribeDBInstanceAutomatedBackupsCommand.ts | 6 +- .../commands/DescribeDBInstancesCommand.ts | 6 +- .../src/commands/DescribeDBLogFilesCommand.ts | 6 +- .../DescribeDBMajorEngineVersionsCommand.ts | 6 +- .../DescribeDBParameterGroupsCommand.ts | 6 +- .../commands/DescribeDBParametersCommand.ts | 6 +- .../src/commands/DescribeDBProxiesCommand.ts | 6 +- .../DescribeDBProxyEndpointsCommand.ts | 6 +- .../DescribeDBProxyTargetGroupsCommand.ts | 6 +- .../commands/DescribeDBProxyTargetsCommand.ts | 6 +- .../DescribeDBRecommendationsCommand.ts | 6 +- .../DescribeDBSecurityGroupsCommand.ts | 6 +- .../commands/DescribeDBShardGroupsCommand.ts | 6 +- .../DescribeDBSnapshotAttributesCommand.ts | 6 +- ...escribeDBSnapshotTenantDatabasesCommand.ts | 6 +- .../commands/DescribeDBSnapshotsCommand.ts | 6 +- .../commands/DescribeDBSubnetGroupsCommand.ts | 6 +- ...beEngineDefaultClusterParametersCommand.ts | 6 +- .../DescribeEngineDefaultParametersCommand.ts | 6 +- .../DescribeEventCategoriesCommand.ts | 6 +- .../DescribeEventSubscriptionsCommand.ts | 6 +- .../src/commands/DescribeEventsCommand.ts | 6 +- .../commands/DescribeExportTasksCommand.ts | 6 +- .../commands/DescribeGlobalClustersCommand.ts | 6 +- .../commands/DescribeIntegrationsCommand.ts | 6 +- .../DescribeOptionGroupOptionsCommand.ts | 6 +- .../commands/DescribeOptionGroupsCommand.ts | 6 +- ...scribeOrderableDBInstanceOptionsCommand.ts | 6 +- ...escribePendingMaintenanceActionsCommand.ts | 6 +- .../DescribeReservedDBInstancesCommand.ts | 6 +- ...ribeReservedDBInstancesOfferingsCommand.ts | 9 +- .../commands/DescribeSourceRegionsCommand.ts | 6 +- .../DescribeTenantDatabasesCommand.ts | 6 +- ...ribeValidDBInstanceModificationsCommand.ts | 8 +- .../commands/DisableHttpEndpointCommand.ts | 6 +- .../DownloadDBLogFilePortionCommand.ts | 6 +- .../src/commands/EnableHttpEndpointCommand.ts | 6 +- .../src/commands/FailoverDBClusterCommand.ts | 6 +- .../commands/FailoverGlobalClusterCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ModifyActivityStreamCommand.ts | 6 +- .../src/commands/ModifyCertificatesCommand.ts | 6 +- .../ModifyCurrentDBClusterCapacityCommand.ts | 6 +- .../ModifyCustomDBEngineVersionCommand.ts | 8 +- .../src/commands/ModifyDBClusterCommand.ts | 6 +- .../ModifyDBClusterEndpointCommand.ts | 8 +- .../ModifyDBClusterParameterGroupCommand.ts | 6 +- ...ModifyDBClusterSnapshotAttributeCommand.ts | 9 +- .../src/commands/ModifyDBInstanceCommand.ts | 6 +- .../commands/ModifyDBParameterGroupCommand.ts | 6 +- .../src/commands/ModifyDBProxyCommand.ts | 6 +- .../commands/ModifyDBProxyEndpointCommand.ts | 6 +- .../ModifyDBProxyTargetGroupCommand.ts | 6 +- .../commands/ModifyDBRecommendationCommand.ts | 6 +- .../src/commands/ModifyDBShardGroupCommand.ts | 8 +- .../ModifyDBSnapshotAttributeCommand.ts | 6 +- .../src/commands/ModifyDBSnapshotCommand.ts | 6 +- .../commands/ModifyDBSubnetGroupCommand.ts | 6 +- .../ModifyEventSubscriptionCommand.ts | 6 +- .../commands/ModifyGlobalClusterCommand.ts | 6 +- .../src/commands/ModifyIntegrationCommand.ts | 8 +- .../src/commands/ModifyOptionGroupCommand.ts | 6 +- .../commands/ModifyTenantDatabaseCommand.ts | 6 +- .../src/commands/PromoteReadReplicaCommand.ts | 6 +- .../PromoteReadReplicaDBClusterCommand.ts | 6 +- ...chaseReservedDBInstancesOfferingCommand.ts | 6 +- .../src/commands/RebootDBClusterCommand.ts | 6 +- .../src/commands/RebootDBInstanceCommand.ts | 6 +- .../src/commands/RebootDBShardGroupCommand.ts | 8 +- .../commands/RegisterDBProxyTargetsCommand.ts | 6 +- .../RemoveFromGlobalClusterCommand.ts | 6 +- .../RemoveRoleFromDBClusterCommand.ts | 6 +- .../RemoveRoleFromDBInstanceCommand.ts | 6 +- ...SourceIdentifierFromSubscriptionCommand.ts | 6 +- .../commands/RemoveTagsFromResourceCommand.ts | 6 +- .../ResetDBClusterParameterGroupCommand.ts | 6 +- .../commands/ResetDBParameterGroupCommand.ts | 6 +- .../commands/RestoreDBClusterFromS3Command.ts | 6 +- .../RestoreDBClusterFromSnapshotCommand.ts | 6 +- .../RestoreDBClusterToPointInTimeCommand.ts | 6 +- .../RestoreDBInstanceFromDBSnapshotCommand.ts | 6 +- .../RestoreDBInstanceFromS3Command.ts | 6 +- .../RestoreDBInstanceToPointInTimeCommand.ts | 6 +- .../RevokeDBSecurityGroupIngressCommand.ts | 6 +- .../commands/StartActivityStreamCommand.ts | 6 +- .../src/commands/StartDBClusterCommand.ts | 6 +- ...tanceAutomatedBackupsReplicationCommand.ts | 6 +- .../src/commands/StartDBInstanceCommand.ts | 6 +- .../src/commands/StartExportTaskCommand.ts | 8 +- .../src/commands/StopActivityStreamCommand.ts | 6 +- .../src/commands/StopDBClusterCommand.ts | 6 +- ...tanceAutomatedBackupsReplicationCommand.ts | 6 +- .../src/commands/StopDBInstanceCommand.ts | 6 +- .../SwitchoverBlueGreenDeploymentCommand.ts | 6 +- .../SwitchoverGlobalClusterCommand.ts | 6 +- .../commands/SwitchoverReadReplicaCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-rds/src/extensionConfiguration.ts | 8 +- .../src/models/RDSServiceException.ts | 2 +- clients/client-rds/src/models/errors.ts | 2 +- .../DescribeBlueGreenDeploymentsPaginator.ts | 2 +- .../DescribeCertificatesPaginator.ts | 2 +- ...cribeDBClusterAutomatedBackupsPaginator.ts | 2 +- .../DescribeDBClusterBacktracksPaginator.ts | 2 +- .../DescribeDBClusterEndpointsPaginator.ts | 2 +- ...scribeDBClusterParameterGroupsPaginator.ts | 2 +- .../DescribeDBClusterParametersPaginator.ts | 2 +- .../DescribeDBClusterSnapshotsPaginator.ts | 2 +- .../pagination/DescribeDBClustersPaginator.ts | 2 +- .../DescribeDBEngineVersionsPaginator.ts | 2 +- ...ribeDBInstanceAutomatedBackupsPaginator.ts | 2 +- .../DescribeDBInstancesPaginator.ts | 2 +- .../pagination/DescribeDBLogFilesPaginator.ts | 2 +- .../DescribeDBMajorEngineVersionsPaginator.ts | 2 +- .../DescribeDBParameterGroupsPaginator.ts | 2 +- .../DescribeDBParametersPaginator.ts | 2 +- .../pagination/DescribeDBProxiesPaginator.ts | 2 +- .../DescribeDBProxyEndpointsPaginator.ts | 2 +- .../DescribeDBProxyTargetGroupsPaginator.ts | 2 +- .../DescribeDBProxyTargetsPaginator.ts | 2 +- .../DescribeDBRecommendationsPaginator.ts | 2 +- .../DescribeDBSecurityGroupsPaginator.ts | 2 +- ...cribeDBSnapshotTenantDatabasesPaginator.ts | 2 +- .../DescribeDBSnapshotsPaginator.ts | 2 +- .../DescribeDBSubnetGroupsPaginator.ts | 2 +- ...escribeEngineDefaultParametersPaginator.ts | 2 +- .../DescribeEventSubscriptionsPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- .../DescribeExportTasksPaginator.ts | 2 +- .../DescribeGlobalClustersPaginator.ts | 2 +- .../DescribeIntegrationsPaginator.ts | 2 +- .../DescribeOptionGroupOptionsPaginator.ts | 2 +- .../DescribeOptionGroupsPaginator.ts | 2 +- ...ribeOrderableDBInstanceOptionsPaginator.ts | 2 +- ...cribePendingMaintenanceActionsPaginator.ts | 2 +- ...beReservedDBInstancesOfferingsPaginator.ts | 2 +- .../DescribeReservedDBInstancesPaginator.ts | 2 +- .../DescribeSourceRegionsPaginator.ts | 2 +- .../DescribeTenantDatabasesPaginator.ts | 2 +- .../DownloadDBLogFilePortionPaginator.ts | 2 +- .../client-rds/src/pagination/Interfaces.ts | 2 +- .../client-rds/src/runtimeConfig.browser.ts | 7 +- .../client-rds/src/runtimeConfig.native.ts | 2 +- .../client-rds/src/runtimeConfig.shared.ts | 4 +- clients/client-rds/src/runtimeConfig.ts | 8 +- clients/client-rds/src/runtimeExtensions.ts | 2 +- clients/client-rds/src/schemas/schemas_0.ts | 2 +- clients/client-redshift-data/package.json | 12 +- .../client-redshift-data/src/RedshiftData.ts | 4 +- .../src/RedshiftDataClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchExecuteStatementCommand.ts | 6 +- .../src/commands/CancelStatementCommand.ts | 6 +- .../src/commands/DescribeStatementCommand.ts | 6 +- .../src/commands/DescribeTableCommand.ts | 6 +- .../src/commands/ExecuteStatementCommand.ts | 6 +- .../src/commands/GetStatementResultCommand.ts | 6 +- .../commands/GetStatementResultV2Command.ts | 6 +- .../src/commands/ListDatabasesCommand.ts | 6 +- .../src/commands/ListSchemasCommand.ts | 6 +- .../src/commands/ListStatementsCommand.ts | 6 +- .../src/commands/ListTablesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/RedshiftDataServiceException.ts | 2 +- .../client-redshift-data/src/models/errors.ts | 2 +- .../src/pagination/DescribeTablePaginator.ts | 2 +- .../pagination/GetStatementResultPaginator.ts | 2 +- .../GetStatementResultV2Paginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDatabasesPaginator.ts | 2 +- .../src/pagination/ListSchemasPaginator.ts | 2 +- .../src/pagination/ListStatementsPaginator.ts | 2 +- .../src/pagination/ListTablesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-redshift-data/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-redshift-serverless/package.json | 12 +- .../src/RedshiftServerless.ts | 4 +- .../src/RedshiftServerlessClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../ConvertRecoveryPointToSnapshotCommand.ts | 6 +- .../CreateCustomDomainAssociationCommand.ts | 6 +- .../commands/CreateEndpointAccessCommand.ts | 6 +- .../src/commands/CreateNamespaceCommand.ts | 6 +- .../src/commands/CreateReservationCommand.ts | 6 +- .../commands/CreateScheduledActionCommand.ts | 6 +- .../src/commands/CreateSnapshotCommand.ts | 6 +- .../CreateSnapshotCopyConfigurationCommand.ts | 9 +- .../src/commands/CreateUsageLimitCommand.ts | 6 +- .../src/commands/CreateWorkgroupCommand.ts | 6 +- .../DeleteCustomDomainAssociationCommand.ts | 6 +- .../commands/DeleteEndpointAccessCommand.ts | 6 +- .../src/commands/DeleteNamespaceCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../commands/DeleteScheduledActionCommand.ts | 6 +- .../src/commands/DeleteSnapshotCommand.ts | 6 +- .../DeleteSnapshotCopyConfigurationCommand.ts | 9 +- .../src/commands/DeleteUsageLimitCommand.ts | 6 +- .../src/commands/DeleteWorkgroupCommand.ts | 6 +- .../src/commands/GetCredentialsCommand.ts | 6 +- .../GetCustomDomainAssociationCommand.ts | 6 +- .../src/commands/GetEndpointAccessCommand.ts | 6 +- .../src/commands/GetNamespaceCommand.ts | 6 +- .../src/commands/GetRecoveryPointCommand.ts | 6 +- .../src/commands/GetReservationCommand.ts | 6 +- .../commands/GetReservationOfferingCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/GetScheduledActionCommand.ts | 6 +- .../src/commands/GetSnapshotCommand.ts | 6 +- .../commands/GetTableRestoreStatusCommand.ts | 6 +- .../src/commands/GetTrackCommand.ts | 6 +- .../src/commands/GetUsageLimitCommand.ts | 6 +- .../src/commands/GetWorkgroupCommand.ts | 6 +- .../ListCustomDomainAssociationsCommand.ts | 6 +- .../src/commands/ListEndpointAccessCommand.ts | 6 +- .../commands/ListManagedWorkgroupsCommand.ts | 6 +- .../src/commands/ListNamespacesCommand.ts | 6 +- .../src/commands/ListRecoveryPointsCommand.ts | 6 +- .../ListReservationOfferingsCommand.ts | 6 +- .../src/commands/ListReservationsCommand.ts | 6 +- .../commands/ListScheduledActionsCommand.ts | 6 +- .../ListSnapshotCopyConfigurationsCommand.ts | 6 +- .../src/commands/ListSnapshotsCommand.ts | 6 +- .../commands/ListTableRestoreStatusCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTracksCommand.ts | 6 +- .../src/commands/ListUsageLimitsCommand.ts | 6 +- .../src/commands/ListWorkgroupsCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../RestoreFromRecoveryPointCommand.ts | 6 +- .../commands/RestoreFromSnapshotCommand.ts | 6 +- .../RestoreTableFromRecoveryPointCommand.ts | 6 +- .../RestoreTableFromSnapshotCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateCustomDomainAssociationCommand.ts | 6 +- .../commands/UpdateEndpointAccessCommand.ts | 6 +- .../UpdateLakehouseConfigurationCommand.ts | 6 +- .../src/commands/UpdateNamespaceCommand.ts | 6 +- .../commands/UpdateScheduledActionCommand.ts | 6 +- .../src/commands/UpdateSnapshotCommand.ts | 6 +- .../UpdateSnapshotCopyConfigurationCommand.ts | 9 +- .../src/commands/UpdateUsageLimitCommand.ts | 6 +- .../src/commands/UpdateWorkgroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../RedshiftServerlessServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListCustomDomainAssociationsPaginator.ts | 2 +- .../pagination/ListEndpointAccessPaginator.ts | 2 +- .../ListManagedWorkgroupsPaginator.ts | 2 +- .../src/pagination/ListNamespacesPaginator.ts | 2 +- .../pagination/ListRecoveryPointsPaginator.ts | 2 +- .../ListReservationOfferingsPaginator.ts | 2 +- .../pagination/ListReservationsPaginator.ts | 2 +- .../ListScheduledActionsPaginator.ts | 2 +- ...ListSnapshotCopyConfigurationsPaginator.ts | 2 +- .../src/pagination/ListSnapshotsPaginator.ts | 2 +- .../ListTableRestoreStatusPaginator.ts | 2 +- .../src/pagination/ListTracksPaginator.ts | 2 +- .../pagination/ListUsageLimitsPaginator.ts | 2 +- .../src/pagination/ListWorkgroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-redshift/package.json | 12 +- clients/client-redshift/src/Redshift.ts | 4 +- clients/client-redshift/src/RedshiftClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptReservedNodeExchangeCommand.ts | 9 +- .../src/commands/AddPartnerCommand.ts | 6 +- .../AssociateDataShareConsumerCommand.ts | 6 +- ...orizeClusterSecurityGroupIngressCommand.ts | 6 +- .../src/commands/AuthorizeDataShareCommand.ts | 6 +- .../AuthorizeEndpointAccessCommand.ts | 6 +- .../AuthorizeSnapshotAccessCommand.ts | 6 +- .../BatchDeleteClusterSnapshotsCommand.ts | 6 +- .../BatchModifyClusterSnapshotsCommand.ts | 6 +- .../src/commands/CancelResizeCommand.ts | 6 +- .../commands/CopyClusterSnapshotCommand.ts | 6 +- .../CreateAuthenticationProfileCommand.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../CreateClusterParameterGroupCommand.ts | 6 +- .../CreateClusterSecurityGroupCommand.ts | 6 +- .../commands/CreateClusterSnapshotCommand.ts | 6 +- .../CreateClusterSubnetGroupCommand.ts | 6 +- .../CreateCustomDomainAssociationCommand.ts | 6 +- .../commands/CreateEndpointAccessCommand.ts | 6 +- .../CreateEventSubscriptionCommand.ts | 6 +- .../CreateHsmClientCertificateCommand.ts | 6 +- .../commands/CreateHsmConfigurationCommand.ts | 6 +- .../src/commands/CreateIntegrationCommand.ts | 6 +- .../CreateRedshiftIdcApplicationCommand.ts | 6 +- .../commands/CreateScheduledActionCommand.ts | 6 +- .../CreateSnapshotCopyGrantCommand.ts | 6 +- .../commands/CreateSnapshotScheduleCommand.ts | 6 +- .../src/commands/CreateTagsCommand.ts | 6 +- .../src/commands/CreateUsageLimitCommand.ts | 6 +- .../commands/DeauthorizeDataShareCommand.ts | 6 +- .../DeleteAuthenticationProfileCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../DeleteClusterParameterGroupCommand.ts | 6 +- .../DeleteClusterSecurityGroupCommand.ts | 6 +- .../commands/DeleteClusterSnapshotCommand.ts | 6 +- .../DeleteClusterSubnetGroupCommand.ts | 6 +- .../DeleteCustomDomainAssociationCommand.ts | 6 +- .../commands/DeleteEndpointAccessCommand.ts | 6 +- .../DeleteEventSubscriptionCommand.ts | 6 +- .../DeleteHsmClientCertificateCommand.ts | 6 +- .../commands/DeleteHsmConfigurationCommand.ts | 6 +- .../src/commands/DeleteIntegrationCommand.ts | 6 +- .../src/commands/DeletePartnerCommand.ts | 6 +- .../DeleteRedshiftIdcApplicationCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../commands/DeleteScheduledActionCommand.ts | 6 +- .../DeleteSnapshotCopyGrantCommand.ts | 6 +- .../commands/DeleteSnapshotScheduleCommand.ts | 6 +- .../src/commands/DeleteTagsCommand.ts | 6 +- .../src/commands/DeleteUsageLimitCommand.ts | 6 +- .../commands/DeregisterNamespaceCommand.ts | 6 +- .../DescribeAccountAttributesCommand.ts | 6 +- .../DescribeAuthenticationProfilesCommand.ts | 6 +- .../DescribeClusterDbRevisionsCommand.ts | 6 +- .../DescribeClusterParameterGroupsCommand.ts | 6 +- .../DescribeClusterParametersCommand.ts | 6 +- .../DescribeClusterSecurityGroupsCommand.ts | 6 +- .../DescribeClusterSnapshotsCommand.ts | 6 +- .../DescribeClusterSubnetGroupsCommand.ts | 6 +- .../commands/DescribeClusterTracksCommand.ts | 6 +- .../DescribeClusterVersionsCommand.ts | 6 +- .../src/commands/DescribeClustersCommand.ts | 6 +- ...DescribeCustomDomainAssociationsCommand.ts | 6 +- .../src/commands/DescribeDataSharesCommand.ts | 6 +- .../DescribeDataSharesForConsumerCommand.ts | 6 +- .../DescribeDataSharesForProducerCommand.ts | 6 +- ...DescribeDefaultClusterParametersCommand.ts | 9 +- .../commands/DescribeEndpointAccessCommand.ts | 6 +- .../DescribeEndpointAuthorizationCommand.ts | 6 +- .../DescribeEventCategoriesCommand.ts | 6 +- .../DescribeEventSubscriptionsCommand.ts | 6 +- .../src/commands/DescribeEventsCommand.ts | 6 +- .../DescribeHsmClientCertificatesCommand.ts | 6 +- .../DescribeHsmConfigurationsCommand.ts | 6 +- .../DescribeInboundIntegrationsCommand.ts | 6 +- .../commands/DescribeIntegrationsCommand.ts | 6 +- .../commands/DescribeLoggingStatusCommand.ts | 6 +- ...DescribeNodeConfigurationOptionsCommand.ts | 6 +- .../DescribeOrderableClusterOptionsCommand.ts | 6 +- .../src/commands/DescribePartnersCommand.ts | 6 +- .../DescribeRedshiftIdcApplicationsCommand.ts | 6 +- ...scribeReservedNodeExchangeStatusCommand.ts | 6 +- .../DescribeReservedNodeOfferingsCommand.ts | 6 +- .../commands/DescribeReservedNodesCommand.ts | 6 +- .../src/commands/DescribeResizeCommand.ts | 6 +- .../DescribeScheduledActionsCommand.ts | 6 +- .../DescribeSnapshotCopyGrantsCommand.ts | 6 +- .../DescribeSnapshotSchedulesCommand.ts | 6 +- .../src/commands/DescribeStorageCommand.ts | 6 +- .../DescribeTableRestoreStatusCommand.ts | 6 +- .../src/commands/DescribeTagsCommand.ts | 6 +- .../commands/DescribeUsageLimitsCommand.ts | 6 +- .../src/commands/DisableLoggingCommand.ts | 6 +- .../commands/DisableSnapshotCopyCommand.ts | 6 +- .../DisassociateDataShareConsumerCommand.ts | 6 +- .../src/commands/EnableLoggingCommand.ts | 6 +- .../src/commands/EnableSnapshotCopyCommand.ts | 6 +- .../commands/FailoverPrimaryComputeCommand.ts | 6 +- .../commands/GetClusterCredentialsCommand.ts | 6 +- .../GetClusterCredentialsWithIAMCommand.ts | 6 +- .../GetIdentityCenterAuthTokenCommand.ts | 6 +- ...NodeExchangeConfigurationOptionsCommand.ts | 6 +- ...GetReservedNodeExchangeOfferingsCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../commands/ListRecommendationsCommand.ts | 6 +- .../ModifyAquaConfigurationCommand.ts | 6 +- .../ModifyAuthenticationProfileCommand.ts | 6 +- .../src/commands/ModifyClusterCommand.ts | 6 +- .../ModifyClusterDbRevisionCommand.ts | 6 +- .../commands/ModifyClusterIamRolesCommand.ts | 6 +- .../ModifyClusterMaintenanceCommand.ts | 6 +- .../ModifyClusterParameterGroupCommand.ts | 6 +- .../commands/ModifyClusterSnapshotCommand.ts | 6 +- .../ModifyClusterSnapshotScheduleCommand.ts | 6 +- .../ModifyClusterSubnetGroupCommand.ts | 6 +- .../ModifyCustomDomainAssociationCommand.ts | 6 +- .../commands/ModifyEndpointAccessCommand.ts | 6 +- .../ModifyEventSubscriptionCommand.ts | 6 +- .../src/commands/ModifyIntegrationCommand.ts | 6 +- .../ModifyLakehouseConfigurationCommand.ts | 8 +- .../ModifyRedshiftIdcApplicationCommand.ts | 6 +- .../commands/ModifyScheduledActionCommand.ts | 8 +- ...odifySnapshotCopyRetentionPeriodCommand.ts | 9 +- .../commands/ModifySnapshotScheduleCommand.ts | 8 +- .../src/commands/ModifyUsageLimitCommand.ts | 8 +- .../src/commands/PauseClusterCommand.ts | 8 +- .../PurchaseReservedNodeOfferingCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/RebootClusterCommand.ts | 6 +- .../src/commands/RegisterNamespaceCommand.ts | 6 +- .../src/commands/RejectDataShareCommand.ts | 8 +- .../ResetClusterParameterGroupCommand.ts | 8 +- .../src/commands/ResizeClusterCommand.ts | 8 +- .../RestoreFromClusterSnapshotCommand.ts | 6 +- .../RestoreTableFromClusterSnapshotCommand.ts | 6 +- .../src/commands/ResumeClusterCommand.ts | 8 +- ...evokeClusterSecurityGroupIngressCommand.ts | 9 +- .../commands/RevokeEndpointAccessCommand.ts | 8 +- .../commands/RevokeSnapshotAccessCommand.ts | 6 +- .../commands/RotateEncryptionKeyCommand.ts | 6 +- .../commands/UpdatePartnerStatusCommand.ts | 8 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/RedshiftServiceException.ts | 2 +- clients/client-redshift/src/models/errors.ts | 2 +- .../DescribeClusterDbRevisionsPaginator.ts | 2 +- ...DescribeClusterParameterGroupsPaginator.ts | 2 +- .../DescribeClusterParametersPaginator.ts | 2 +- .../DescribeClusterSecurityGroupsPaginator.ts | 2 +- .../DescribeClusterSnapshotsPaginator.ts | 2 +- .../DescribeClusterSubnetGroupsPaginator.ts | 2 +- .../DescribeClusterTracksPaginator.ts | 2 +- .../DescribeClusterVersionsPaginator.ts | 2 +- .../pagination/DescribeClustersPaginator.ts | 2 +- ...scribeCustomDomainAssociationsPaginator.ts | 2 +- .../DescribeDataSharesForConsumerPaginator.ts | 2 +- .../DescribeDataSharesForProducerPaginator.ts | 2 +- .../pagination/DescribeDataSharesPaginator.ts | 2 +- ...scribeDefaultClusterParametersPaginator.ts | 2 +- .../DescribeEndpointAccessPaginator.ts | 2 +- .../DescribeEndpointAuthorizationPaginator.ts | 2 +- .../DescribeEventSubscriptionsPaginator.ts | 2 +- .../src/pagination/DescribeEventsPaginator.ts | 2 +- .../DescribeHsmClientCertificatesPaginator.ts | 2 +- .../DescribeHsmConfigurationsPaginator.ts | 2 +- .../DescribeInboundIntegrationsPaginator.ts | 2 +- .../DescribeIntegrationsPaginator.ts | 2 +- ...scribeNodeConfigurationOptionsPaginator.ts | 2 +- ...escribeOrderableClusterOptionsPaginator.ts | 2 +- ...escribeRedshiftIdcApplicationsPaginator.ts | 2 +- ...ribeReservedNodeExchangeStatusPaginator.ts | 2 +- .../DescribeReservedNodeOfferingsPaginator.ts | 2 +- .../DescribeReservedNodesPaginator.ts | 2 +- .../DescribeScheduledActionsPaginator.ts | 2 +- .../DescribeSnapshotCopyGrantsPaginator.ts | 2 +- .../DescribeSnapshotSchedulesPaginator.ts | 2 +- .../DescribeTableRestoreStatusPaginator.ts | 2 +- .../src/pagination/DescribeTagsPaginator.ts | 2 +- .../DescribeUsageLimitsPaginator.ts | 2 +- ...deExchangeConfigurationOptionsPaginator.ts | 2 +- ...tReservedNodeExchangeOfferingsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListRecommendationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-redshift/src/runtimeConfig.ts | 8 +- .../client-redshift/src/runtimeExtensions.ts | 2 +- .../client-redshift/src/schemas/schemas_0.ts | 2 +- clients/client-rekognition/package.json | 12 +- clients/client-rekognition/src/Rekognition.ts | 4 +- .../src/RekognitionClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateFacesCommand.ts | 6 +- .../src/commands/CompareFacesCommand.ts | 6 +- .../src/commands/CopyProjectVersionCommand.ts | 6 +- .../src/commands/CreateCollectionCommand.ts | 6 +- .../src/commands/CreateDatasetCommand.ts | 6 +- .../CreateFaceLivenessSessionCommand.ts | 6 +- .../src/commands/CreateProjectCommand.ts | 6 +- .../commands/CreateProjectVersionCommand.ts | 6 +- .../commands/CreateStreamProcessorCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/DeleteCollectionCommand.ts | 6 +- .../src/commands/DeleteDatasetCommand.ts | 6 +- .../src/commands/DeleteFacesCommand.ts | 6 +- .../src/commands/DeleteProjectCommand.ts | 6 +- .../commands/DeleteProjectPolicyCommand.ts | 6 +- .../commands/DeleteProjectVersionCommand.ts | 6 +- .../commands/DeleteStreamProcessorCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../src/commands/DescribeCollectionCommand.ts | 6 +- .../src/commands/DescribeDatasetCommand.ts | 6 +- .../DescribeProjectVersionsCommand.ts | 6 +- .../src/commands/DescribeProjectsCommand.ts | 6 +- .../DescribeStreamProcessorCommand.ts | 6 +- .../src/commands/DetectCustomLabelsCommand.ts | 6 +- .../src/commands/DetectFacesCommand.ts | 6 +- .../src/commands/DetectLabelsCommand.ts | 6 +- .../commands/DetectModerationLabelsCommand.ts | 6 +- .../DetectProtectiveEquipmentCommand.ts | 6 +- .../src/commands/DetectTextCommand.ts | 6 +- .../src/commands/DisassociateFacesCommand.ts | 6 +- .../DistributeDatasetEntriesCommand.ts | 6 +- .../src/commands/GetCelebrityInfoCommand.ts | 6 +- .../GetCelebrityRecognitionCommand.ts | 6 +- .../commands/GetContentModerationCommand.ts | 6 +- .../src/commands/GetFaceDetectionCommand.ts | 6 +- .../GetFaceLivenessSessionResultsCommand.ts | 6 +- .../src/commands/GetFaceSearchCommand.ts | 6 +- .../src/commands/GetLabelDetectionCommand.ts | 6 +- .../commands/GetMediaAnalysisJobCommand.ts | 6 +- .../src/commands/GetPersonTrackingCommand.ts | 6 +- .../commands/GetSegmentDetectionCommand.ts | 6 +- .../src/commands/GetTextDetectionCommand.ts | 6 +- .../src/commands/IndexFacesCommand.ts | 6 +- .../src/commands/ListCollectionsCommand.ts | 6 +- .../src/commands/ListDatasetEntriesCommand.ts | 6 +- .../src/commands/ListDatasetLabelsCommand.ts | 6 +- .../src/commands/ListFacesCommand.ts | 6 +- .../commands/ListMediaAnalysisJobsCommand.ts | 6 +- .../commands/ListProjectPoliciesCommand.ts | 6 +- .../commands/ListStreamProcessorsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../src/commands/PutProjectPolicyCommand.ts | 6 +- .../commands/RecognizeCelebritiesCommand.ts | 6 +- .../src/commands/SearchFacesByImageCommand.ts | 6 +- .../src/commands/SearchFacesCommand.ts | 6 +- .../src/commands/SearchUsersByImageCommand.ts | 6 +- .../src/commands/SearchUsersCommand.ts | 6 +- .../StartCelebrityRecognitionCommand.ts | 6 +- .../commands/StartContentModerationCommand.ts | 6 +- .../src/commands/StartFaceDetectionCommand.ts | 6 +- .../src/commands/StartFaceSearchCommand.ts | 6 +- .../commands/StartLabelDetectionCommand.ts | 6 +- .../commands/StartMediaAnalysisJobCommand.ts | 6 +- .../commands/StartPersonTrackingCommand.ts | 6 +- .../commands/StartProjectVersionCommand.ts | 6 +- .../commands/StartSegmentDetectionCommand.ts | 6 +- .../commands/StartStreamProcessorCommand.ts | 6 +- .../src/commands/StartTextDetectionCommand.ts | 6 +- .../src/commands/StopProjectVersionCommand.ts | 6 +- .../commands/StopStreamProcessorCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateDatasetEntriesCommand.ts | 6 +- .../commands/UpdateStreamProcessorCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/RekognitionServiceException.ts | 2 +- .../client-rekognition/src/models/errors.ts | 2 +- .../DescribeProjectVersionsPaginator.ts | 2 +- .../pagination/DescribeProjectsPaginator.ts | 2 +- .../GetCelebrityRecognitionPaginator.ts | 2 +- .../GetContentModerationPaginator.ts | 2 +- .../pagination/GetFaceDetectionPaginator.ts | 2 +- .../src/pagination/GetFaceSearchPaginator.ts | 2 +- .../pagination/GetLabelDetectionPaginator.ts | 2 +- .../pagination/GetPersonTrackingPaginator.ts | 2 +- .../GetSegmentDetectionPaginator.ts | 2 +- .../pagination/GetTextDetectionPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListCollectionsPaginator.ts | 2 +- .../pagination/ListDatasetEntriesPaginator.ts | 2 +- .../pagination/ListDatasetLabelsPaginator.ts | 2 +- .../src/pagination/ListFacesPaginator.ts | 2 +- .../ListMediaAnalysisJobsPaginator.ts | 2 +- .../ListProjectPoliciesPaginator.ts | 2 +- .../ListStreamProcessorsPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-rekognition/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-rekognitionstreaming/package.json | 12 +- .../src/RekognitionStreaming.ts | 4 +- .../src/RekognitionStreamingClient.ts | 81 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../StartFaceLivenessSessionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../RekognitionStreamingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-repostspace/package.json | 12 +- clients/client-repostspace/src/Repostspace.ts | 4 +- .../src/RepostspaceClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchAddChannelRoleToAccessorsCommand.ts | 6 +- .../src/commands/BatchAddRoleCommand.ts | 6 +- ...chRemoveChannelRoleFromAccessorsCommand.ts | 6 +- .../src/commands/BatchRemoveRoleCommand.ts | 6 +- .../src/commands/CreateChannelCommand.ts | 6 +- .../src/commands/CreateSpaceCommand.ts | 6 +- .../src/commands/DeleteSpaceCommand.ts | 6 +- .../src/commands/DeregisterAdminCommand.ts | 6 +- .../src/commands/GetChannelCommand.ts | 6 +- .../src/commands/GetSpaceCommand.ts | 6 +- .../src/commands/ListChannelsCommand.ts | 6 +- .../src/commands/ListSpacesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RegisterAdminCommand.ts | 6 +- .../src/commands/SendInvitesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateChannelCommand.ts | 6 +- .../src/commands/UpdateSpaceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/RepostspaceServiceException.ts | 2 +- .../client-repostspace/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChannelsPaginator.ts | 2 +- .../src/pagination/ListSpacesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-repostspace/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-resiliencehub/package.json | 12 +- .../client-resiliencehub/src/Resiliencehub.ts | 4 +- .../src/ResiliencehubClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...tResourceGroupingRecommendationsCommand.ts | 6 +- ...dDraftAppVersionResourceMappingsCommand.ts | 6 +- .../BatchUpdateRecommendationStatusCommand.ts | 9 +- .../src/commands/CreateAppCommand.ts | 6 +- .../CreateAppVersionAppComponentCommand.ts | 6 +- .../CreateAppVersionResourceCommand.ts | 6 +- .../CreateRecommendationTemplateCommand.ts | 6 +- .../commands/CreateResiliencyPolicyCommand.ts | 6 +- .../commands/DeleteAppAssessmentCommand.ts | 6 +- .../src/commands/DeleteAppCommand.ts | 6 +- .../commands/DeleteAppInputSourceCommand.ts | 6 +- .../DeleteAppVersionAppComponentCommand.ts | 6 +- .../DeleteAppVersionResourceCommand.ts | 6 +- .../DeleteRecommendationTemplateCommand.ts | 6 +- .../commands/DeleteResiliencyPolicyCommand.ts | 6 +- .../commands/DescribeAppAssessmentCommand.ts | 6 +- .../src/commands/DescribeAppCommand.ts | 6 +- .../DescribeAppVersionAppComponentCommand.ts | 6 +- .../src/commands/DescribeAppVersionCommand.ts | 6 +- .../DescribeAppVersionResourceCommand.ts | 6 +- ...VersionResourcesResolutionStatusCommand.ts | 6 +- .../DescribeAppVersionTemplateCommand.ts | 6 +- ...tAppVersionResourcesImportStatusCommand.ts | 6 +- .../commands/DescribeMetricsExportCommand.ts | 6 +- .../DescribeResiliencyPolicyCommand.ts | 6 +- ...sourceGroupingRecommendationTaskCommand.ts | 6 +- ...ImportResourcesToDraftAppVersionCommand.ts | 9 +- .../ListAlarmRecommendationsCommand.ts | 6 +- ...istAppAssessmentComplianceDriftsCommand.ts | 6 +- .../ListAppAssessmentResourceDriftsCommand.ts | 9 +- .../src/commands/ListAppAssessmentsCommand.ts | 6 +- .../ListAppComponentCompliancesCommand.ts | 6 +- .../ListAppComponentRecommendationsCommand.ts | 9 +- .../commands/ListAppInputSourcesCommand.ts | 6 +- .../ListAppVersionAppComponentsCommand.ts | 6 +- .../ListAppVersionResourceMappingsCommand.ts | 6 +- .../ListAppVersionResourcesCommand.ts | 6 +- .../src/commands/ListAppVersionsCommand.ts | 6 +- .../src/commands/ListAppsCommand.ts | 6 +- .../src/commands/ListMetricsCommand.ts | 6 +- .../ListRecommendationTemplatesCommand.ts | 6 +- .../commands/ListResiliencyPoliciesCommand.ts | 6 +- ...tResourceGroupingRecommendationsCommand.ts | 6 +- .../commands/ListSopRecommendationsCommand.ts | 6 +- .../ListSuggestedResiliencyPoliciesCommand.ts | 9 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListTestRecommendationsCommand.ts | 6 +- ...stUnsupportedAppVersionResourcesCommand.ts | 6 +- .../src/commands/PublishAppVersionCommand.ts | 6 +- .../PutDraftAppVersionTemplateCommand.ts | 6 +- ...tResourceGroupingRecommendationsCommand.ts | 6 +- ...eDraftAppVersionResourceMappingsCommand.ts | 6 +- .../ResolveAppVersionResourcesCommand.ts | 6 +- .../src/commands/StartAppAssessmentCommand.ts | 6 +- .../src/commands/StartMetricsExportCommand.ts | 6 +- ...sourceGroupingRecommendationTaskCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAppCommand.ts | 6 +- .../UpdateAppVersionAppComponentCommand.ts | 6 +- .../src/commands/UpdateAppVersionCommand.ts | 6 +- .../UpdateAppVersionResourceCommand.ts | 6 +- .../commands/UpdateResiliencyPolicyCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ResiliencehubServiceException.ts | 2 +- .../client-resiliencehub/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAlarmRecommendationsPaginator.ts | 2 +- ...tAppAssessmentComplianceDriftsPaginator.ts | 2 +- ...istAppAssessmentResourceDriftsPaginator.ts | 2 +- .../pagination/ListAppAssessmentsPaginator.ts | 2 +- .../ListAppComponentCompliancesPaginator.ts | 2 +- ...istAppComponentRecommendationsPaginator.ts | 2 +- .../ListAppInputSourcesPaginator.ts | 2 +- .../ListAppVersionAppComponentsPaginator.ts | 2 +- ...ListAppVersionResourceMappingsPaginator.ts | 2 +- .../ListAppVersionResourcesPaginator.ts | 2 +- .../pagination/ListAppVersionsPaginator.ts | 2 +- .../src/pagination/ListAppsPaginator.ts | 2 +- .../src/pagination/ListMetricsPaginator.ts | 2 +- .../ListRecommendationTemplatesPaginator.ts | 2 +- .../ListResiliencyPoliciesPaginator.ts | 2 +- ...esourceGroupingRecommendationsPaginator.ts | 2 +- .../ListSopRecommendationsPaginator.ts | 2 +- ...istSuggestedResiliencyPoliciesPaginator.ts | 2 +- .../ListTestRecommendationsPaginator.ts | 2 +- ...UnsupportedAppVersionResourcesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-resiliencehub/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-resource-explorer-2/package.json | 12 +- .../src/ResourceExplorer2.ts | 4 +- .../src/ResourceExplorer2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateDefaultViewCommand.ts | 6 +- .../src/commands/BatchGetViewCommand.ts | 6 +- .../src/commands/CreateIndexCommand.ts | 6 +- .../CreateResourceExplorerSetupCommand.ts | 6 +- .../src/commands/CreateViewCommand.ts | 6 +- .../src/commands/DeleteIndexCommand.ts | 6 +- .../DeleteResourceExplorerSetupCommand.ts | 6 +- .../src/commands/DeleteViewCommand.ts | 6 +- .../DisassociateDefaultViewCommand.ts | 4 +- ...AccountLevelServiceConfigurationCommand.ts | 6 +- .../src/commands/GetDefaultViewCommand.ts | 6 +- .../src/commands/GetIndexCommand.ts | 6 +- .../src/commands/GetManagedViewCommand.ts | 6 +- .../GetResourceExplorerSetupCommand.ts | 6 +- .../src/commands/GetServiceIndexCommand.ts | 6 +- .../src/commands/GetServiceViewCommand.ts | 6 +- .../src/commands/GetViewCommand.ts | 6 +- .../src/commands/ListIndexesCommand.ts | 6 +- .../commands/ListIndexesForMembersCommand.ts | 6 +- .../src/commands/ListManagedViewsCommand.ts | 6 +- .../src/commands/ListResourcesCommand.ts | 6 +- .../src/commands/ListServiceIndexesCommand.ts | 6 +- .../src/commands/ListServiceViewsCommand.ts | 6 +- .../ListStreamingAccessForServicesCommand.ts | 6 +- .../ListSupportedResourceTypesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListViewsCommand.ts | 6 +- .../src/commands/SearchCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateIndexTypeCommand.ts | 6 +- .../src/commands/UpdateViewCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ResourceExplorer2ServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetResourceExplorerSetupPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListIndexesForMembersPaginator.ts | 2 +- .../src/pagination/ListIndexesPaginator.ts | 2 +- .../pagination/ListManagedViewsPaginator.ts | 2 +- .../src/pagination/ListResourcesPaginator.ts | 2 +- .../pagination/ListServiceIndexesPaginator.ts | 2 +- .../pagination/ListServiceViewsPaginator.ts | 2 +- ...ListStreamingAccessForServicesPaginator.ts | 2 +- .../ListSupportedResourceTypesPaginator.ts | 2 +- .../src/pagination/ListViewsPaginator.ts | 2 +- .../src/pagination/SearchPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ResourceGroupsTaggingAPI.ts | 4 +- .../src/ResourceGroupsTaggingAPIClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/DescribeReportCreationCommand.ts | 6 +- .../commands/GetComplianceSummaryCommand.ts | 6 +- .../src/commands/GetResourcesCommand.ts | 6 +- .../src/commands/GetTagKeysCommand.ts | 6 +- .../src/commands/GetTagValuesCommand.ts | 6 +- .../src/commands/ListRequiredTagsCommand.ts | 6 +- .../commands/StartReportCreationCommand.ts | 6 +- .../src/commands/TagResourcesCommand.ts | 6 +- .../src/commands/UntagResourcesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...esourceGroupsTaggingAPIServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetComplianceSummaryPaginator.ts | 2 +- .../src/pagination/GetResourcesPaginator.ts | 2 +- .../src/pagination/GetTagKeysPaginator.ts | 2 +- .../src/pagination/GetTagValuesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListRequiredTagsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-resource-groups/package.json | 12 +- .../src/ResourceGroups.ts | 4 +- .../src/ResourceGroupsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelTagSyncTaskCommand.ts | 10 +- .../src/commands/CreateGroupCommand.ts | 10 +- .../src/commands/DeleteGroupCommand.ts | 10 +- .../src/commands/GetAccountSettingsCommand.ts | 10 +- .../src/commands/GetGroupCommand.ts | 10 +- .../commands/GetGroupConfigurationCommand.ts | 10 +- .../src/commands/GetGroupQueryCommand.ts | 10 +- .../src/commands/GetTagSyncTaskCommand.ts | 10 +- .../src/commands/GetTagsCommand.ts | 10 +- .../src/commands/GroupResourcesCommand.ts | 10 +- .../src/commands/ListGroupResourcesCommand.ts | 10 +- .../commands/ListGroupingStatusesCommand.ts | 10 +- .../src/commands/ListGroupsCommand.ts | 10 +- .../src/commands/ListTagSyncTasksCommand.ts | 10 +- .../commands/PutGroupConfigurationCommand.ts | 10 +- .../src/commands/SearchResourcesCommand.ts | 10 +- .../src/commands/StartTagSyncTaskCommand.ts | 10 +- .../src/commands/TagCommand.ts | 10 +- .../src/commands/UngroupResourcesCommand.ts | 10 +- .../src/commands/UntagCommand.ts | 10 +- .../commands/UpdateAccountSettingsCommand.ts | 10 +- .../src/commands/UpdateGroupCommand.ts | 10 +- .../src/commands/UpdateGroupQueryCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ResourceGroupsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListGroupResourcesPaginator.ts | 2 +- .../ListGroupingStatusesPaginator.ts | 2 +- .../src/pagination/ListGroupsPaginator.ts | 2 +- .../pagination/ListTagSyncTasksPaginator.ts | 2 +- .../pagination/SearchResourcesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-rolesanywhere/package.json | 12 +- .../client-rolesanywhere/src/RolesAnywhere.ts | 4 +- .../src/RolesAnywhereClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateProfileCommand.ts | 6 +- .../src/commands/CreateTrustAnchorCommand.ts | 6 +- .../commands/DeleteAttributeMappingCommand.ts | 6 +- .../src/commands/DeleteCrlCommand.ts | 6 +- .../src/commands/DeleteProfileCommand.ts | 6 +- .../src/commands/DeleteTrustAnchorCommand.ts | 6 +- .../src/commands/DisableCrlCommand.ts | 6 +- .../src/commands/DisableProfileCommand.ts | 6 +- .../src/commands/DisableTrustAnchorCommand.ts | 6 +- .../src/commands/EnableCrlCommand.ts | 6 +- .../src/commands/EnableProfileCommand.ts | 6 +- .../src/commands/EnableTrustAnchorCommand.ts | 6 +- .../src/commands/GetCrlCommand.ts | 6 +- .../src/commands/GetProfileCommand.ts | 6 +- .../src/commands/GetSubjectCommand.ts | 6 +- .../src/commands/GetTrustAnchorCommand.ts | 6 +- .../src/commands/ImportCrlCommand.ts | 6 +- .../src/commands/ListCrlsCommand.ts | 6 +- .../src/commands/ListProfilesCommand.ts | 6 +- .../src/commands/ListSubjectsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTrustAnchorsCommand.ts | 6 +- .../commands/PutAttributeMappingCommand.ts | 6 +- .../PutNotificationSettingsCommand.ts | 6 +- .../ResetNotificationSettingsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateCrlCommand.ts | 6 +- .../src/commands/UpdateProfileCommand.ts | 6 +- .../src/commands/UpdateTrustAnchorCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/RolesAnywhereServiceException.ts | 2 +- .../client-rolesanywhere/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListCrlsPaginator.ts | 2 +- .../src/pagination/ListProfilesPaginator.ts | 2 +- .../src/pagination/ListSubjectsPaginator.ts | 2 +- .../pagination/ListTrustAnchorsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-rolesanywhere/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-route-53-domains/package.json | 12 +- .../src/Route53Domains.ts | 4 +- .../src/Route53DomainsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...ainTransferFromAnotherAwsAccountCommand.ts | 10 +- ...ssociateDelegationSignerToDomainCommand.ts | 10 +- ...omainTransferToAnotherAwsAccountCommand.ts | 10 +- .../CheckDomainAvailabilityCommand.ts | 10 +- .../CheckDomainTransferabilityCommand.ts | 10 +- .../src/commands/DeleteDomainCommand.ts | 10 +- .../commands/DeleteTagsForDomainCommand.ts | 10 +- .../commands/DisableDomainAutoRenewCommand.ts | 10 +- .../DisableDomainTransferLockCommand.ts | 10 +- ...ociateDelegationSignerFromDomainCommand.ts | 10 +- .../commands/EnableDomainAutoRenewCommand.ts | 10 +- .../EnableDomainTransferLockCommand.ts | 10 +- .../GetContactReachabilityStatusCommand.ts | 10 +- .../src/commands/GetDomainDetailCommand.ts | 10 +- .../commands/GetDomainSuggestionsCommand.ts | 10 +- .../src/commands/GetOperationDetailCommand.ts | 10 +- .../src/commands/ListDomainsCommand.ts | 10 +- .../src/commands/ListOperationsCommand.ts | 10 +- .../src/commands/ListPricesCommand.ts | 10 +- .../src/commands/ListTagsForDomainCommand.ts | 10 +- .../src/commands/PushDomainCommand.ts | 10 +- .../src/commands/RegisterDomainCommand.ts | 10 +- ...ainTransferFromAnotherAwsAccountCommand.ts | 10 +- .../src/commands/RenewDomainCommand.ts | 10 +- .../ResendContactReachabilityEmailCommand.ts | 10 +- .../ResendOperationAuthorizationCommand.ts | 10 +- .../commands/RetrieveDomainAuthCodeCommand.ts | 10 +- .../src/commands/TransferDomainCommand.ts | 10 +- ...ransferDomainToAnotherAwsAccountCommand.ts | 10 +- .../commands/UpdateDomainContactCommand.ts | 10 +- .../UpdateDomainContactPrivacyCommand.ts | 10 +- .../UpdateDomainNameserversCommand.ts | 10 +- .../commands/UpdateTagsForDomainCommand.ts | 10 +- .../src/commands/ViewBillingCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/Route53DomainsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDomainsPaginator.ts | 2 +- .../src/pagination/ListOperationsPaginator.ts | 2 +- .../src/pagination/ListPricesPaginator.ts | 2 +- .../src/pagination/ViewBillingPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-route-53/package.json | 12 +- clients/client-route-53/src/Route53.ts | 4 +- clients/client-route-53/src/Route53Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ActivateKeySigningKeyCommand.ts | 6 +- .../AssociateVPCWithHostedZoneCommand.ts | 6 +- .../commands/ChangeCidrCollectionCommand.ts | 6 +- .../ChangeResourceRecordSetsCommand.ts | 6 +- .../commands/ChangeTagsForResourceCommand.ts | 6 +- .../commands/CreateCidrCollectionCommand.ts | 6 +- .../src/commands/CreateHealthCheckCommand.ts | 6 +- .../src/commands/CreateHostedZoneCommand.ts | 6 +- .../commands/CreateKeySigningKeyCommand.ts | 6 +- .../CreateQueryLoggingConfigCommand.ts | 6 +- .../CreateReusableDelegationSetCommand.ts | 6 +- .../commands/CreateTrafficPolicyCommand.ts | 6 +- .../CreateTrafficPolicyInstanceCommand.ts | 6 +- .../CreateTrafficPolicyVersionCommand.ts | 6 +- ...reateVPCAssociationAuthorizationCommand.ts | 6 +- .../DeactivateKeySigningKeyCommand.ts | 6 +- .../commands/DeleteCidrCollectionCommand.ts | 6 +- .../src/commands/DeleteHealthCheckCommand.ts | 6 +- .../src/commands/DeleteHostedZoneCommand.ts | 6 +- .../commands/DeleteKeySigningKeyCommand.ts | 6 +- .../DeleteQueryLoggingConfigCommand.ts | 6 +- .../DeleteReusableDelegationSetCommand.ts | 6 +- .../commands/DeleteTrafficPolicyCommand.ts | 6 +- .../DeleteTrafficPolicyInstanceCommand.ts | 6 +- ...eleteVPCAssociationAuthorizationCommand.ts | 6 +- .../DisableHostedZoneDNSSECCommand.ts | 6 +- .../DisassociateVPCFromHostedZoneCommand.ts | 6 +- .../commands/EnableHostedZoneDNSSECCommand.ts | 6 +- .../src/commands/GetAccountLimitCommand.ts | 6 +- .../src/commands/GetChangeCommand.ts | 6 +- .../src/commands/GetCheckerIpRangesCommand.ts | 6 +- .../src/commands/GetDNSSECCommand.ts | 6 +- .../src/commands/GetGeoLocationCommand.ts | 6 +- .../src/commands/GetHealthCheckCommand.ts | 6 +- .../commands/GetHealthCheckCountCommand.ts | 6 +- .../GetHealthCheckLastFailureReasonCommand.ts | 9 +- .../commands/GetHealthCheckStatusCommand.ts | 6 +- .../src/commands/GetHostedZoneCommand.ts | 6 +- .../src/commands/GetHostedZoneCountCommand.ts | 6 +- .../src/commands/GetHostedZoneLimitCommand.ts | 6 +- .../commands/GetQueryLoggingConfigCommand.ts | 6 +- .../GetReusableDelegationSetCommand.ts | 6 +- .../GetReusableDelegationSetLimitCommand.ts | 6 +- .../src/commands/GetTrafficPolicyCommand.ts | 6 +- .../GetTrafficPolicyInstanceCommand.ts | 6 +- .../GetTrafficPolicyInstanceCountCommand.ts | 6 +- .../src/commands/ListCidrBlocksCommand.ts | 6 +- .../commands/ListCidrCollectionsCommand.ts | 6 +- .../src/commands/ListCidrLocationsCommand.ts | 6 +- .../src/commands/ListGeoLocationsCommand.ts | 6 +- .../src/commands/ListHealthChecksCommand.ts | 6 +- .../commands/ListHostedZonesByNameCommand.ts | 6 +- .../commands/ListHostedZonesByVPCCommand.ts | 6 +- .../src/commands/ListHostedZonesCommand.ts | 6 +- .../ListQueryLoggingConfigsCommand.ts | 6 +- .../commands/ListResourceRecordSetsCommand.ts | 6 +- .../ListReusableDelegationSetsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTagsForResourcesCommand.ts | 6 +- .../commands/ListTrafficPoliciesCommand.ts | 6 +- ...afficPolicyInstancesByHostedZoneCommand.ts | 6 +- ...stTrafficPolicyInstancesByPolicyCommand.ts | 6 +- .../ListTrafficPolicyInstancesCommand.ts | 6 +- .../ListTrafficPolicyVersionsCommand.ts | 6 +- ...ListVPCAssociationAuthorizationsCommand.ts | 9 +- .../src/commands/TestDNSAnswerCommand.ts | 6 +- .../src/commands/UpdateHealthCheckCommand.ts | 6 +- .../UpdateHostedZoneCommentCommand.ts | 6 +- .../UpdateHostedZoneFeaturesCommand.ts | 6 +- .../UpdateTrafficPolicyCommentCommand.ts | 6 +- .../UpdateTrafficPolicyInstanceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/Route53ServiceException.ts | 2 +- clients/client-route-53/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListCidrBlocksPaginator.ts | 2 +- .../ListCidrCollectionsPaginator.ts | 2 +- .../pagination/ListCidrLocationsPaginator.ts | 2 +- .../pagination/ListHealthChecksPaginator.ts | 2 +- .../pagination/ListHostedZonesPaginator.ts | 2 +- .../ListQueryLoggingConfigsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-route-53/src/runtimeConfig.ts | 8 +- .../client-route-53/src/runtimeExtensions.ts | 2 +- .../client-route-53/src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/Route53RecoveryCluster.ts | 4 +- .../src/Route53RecoveryClusterClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/GetRoutingControlStateCommand.ts | 6 +- .../commands/ListRoutingControlsCommand.ts | 6 +- .../UpdateRoutingControlStateCommand.ts | 6 +- .../UpdateRoutingControlStatesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../Route53RecoveryClusterServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListRoutingControlsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/Route53RecoveryControlConfig.ts | 7 +- .../src/Route53RecoveryControlConfigClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../src/commands/CreateControlPanelCommand.ts | 6 +- .../commands/CreateRoutingControlCommand.ts | 6 +- .../src/commands/CreateSafetyRuleCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../src/commands/DeleteControlPanelCommand.ts | 6 +- .../commands/DeleteRoutingControlCommand.ts | 6 +- .../src/commands/DeleteSafetyRuleCommand.ts | 6 +- .../src/commands/DescribeClusterCommand.ts | 6 +- .../commands/DescribeControlPanelCommand.ts | 6 +- .../commands/DescribeRoutingControlCommand.ts | 6 +- .../src/commands/DescribeSafetyRuleCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- ...istAssociatedRoute53HealthChecksCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../src/commands/ListControlPanelsCommand.ts | 6 +- .../commands/ListRoutingControlsCommand.ts | 6 +- .../src/commands/ListSafetyRulesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../src/commands/UpdateControlPanelCommand.ts | 6 +- .../commands/UpdateRoutingControlCommand.ts | 6 +- .../src/commands/UpdateSafetyRuleCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...53RecoveryControlConfigServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...tAssociatedRoute53HealthChecksPaginator.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../pagination/ListControlPanelsPaginator.ts | 2 +- .../ListRoutingControlsPaginator.ts | 2 +- .../pagination/ListSafetyRulesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/Route53RecoveryReadiness.ts | 4 +- .../src/Route53RecoveryReadinessClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateCellCommand.ts | 6 +- .../CreateCrossAccountAuthorizationCommand.ts | 9 +- .../commands/CreateReadinessCheckCommand.ts | 6 +- .../commands/CreateRecoveryGroupCommand.ts | 6 +- .../src/commands/CreateResourceSetCommand.ts | 6 +- .../src/commands/DeleteCellCommand.ts | 6 +- .../DeleteCrossAccountAuthorizationCommand.ts | 9 +- .../commands/DeleteReadinessCheckCommand.ts | 6 +- .../commands/DeleteRecoveryGroupCommand.ts | 6 +- .../src/commands/DeleteResourceSetCommand.ts | 6 +- .../GetArchitectureRecommendationsCommand.ts | 6 +- .../src/commands/GetCellCommand.ts | 6 +- .../GetCellReadinessSummaryCommand.ts | 6 +- .../src/commands/GetReadinessCheckCommand.ts | 6 +- .../GetReadinessCheckResourceStatusCommand.ts | 9 +- .../GetReadinessCheckStatusCommand.ts | 6 +- .../src/commands/GetRecoveryGroupCommand.ts | 6 +- ...GetRecoveryGroupReadinessSummaryCommand.ts | 9 +- .../src/commands/GetResourceSetCommand.ts | 6 +- .../src/commands/ListCellsCommand.ts | 6 +- .../ListCrossAccountAuthorizationsCommand.ts | 6 +- .../commands/ListReadinessChecksCommand.ts | 6 +- .../src/commands/ListRecoveryGroupsCommand.ts | 6 +- .../src/commands/ListResourceSetsCommand.ts | 6 +- .../src/commands/ListRulesCommand.ts | 6 +- .../commands/ListTagsForResourcesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateCellCommand.ts | 6 +- .../commands/UpdateReadinessCheckCommand.ts | 6 +- .../commands/UpdateRecoveryGroupCommand.ts | 6 +- .../src/commands/UpdateResourceSetCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...oute53RecoveryReadinessServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetCellReadinessSummaryPaginator.ts | 2 +- ...etReadinessCheckResourceStatusPaginator.ts | 2 +- .../GetReadinessCheckStatusPaginator.ts | 2 +- ...tRecoveryGroupReadinessSummaryPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListCellsPaginator.ts | 2 +- ...ListCrossAccountAuthorizationsPaginator.ts | 2 +- .../ListReadinessChecksPaginator.ts | 2 +- .../pagination/ListRecoveryGroupsPaginator.ts | 2 +- .../pagination/ListResourceSetsPaginator.ts | 2 +- .../src/pagination/ListRulesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-route53globalresolver/package.json | 12 +- .../src/Route53GlobalResolver.ts | 4 +- .../src/Route53GlobalResolverClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateHostedZoneCommand.ts | 6 +- .../BatchCreateFirewallRuleCommand.ts | 6 +- .../BatchDeleteFirewallRuleCommand.ts | 6 +- .../BatchUpdateFirewallRuleCommand.ts | 6 +- .../src/commands/CreateAccessSourceCommand.ts | 6 +- .../src/commands/CreateAccessTokenCommand.ts | 6 +- .../src/commands/CreateDNSViewCommand.ts | 6 +- .../CreateFirewallDomainListCommand.ts | 6 +- .../src/commands/CreateFirewallRuleCommand.ts | 6 +- .../commands/CreateGlobalResolverCommand.ts | 6 +- .../src/commands/DeleteAccessSourceCommand.ts | 6 +- .../src/commands/DeleteAccessTokenCommand.ts | 6 +- .../src/commands/DeleteDNSViewCommand.ts | 6 +- .../DeleteFirewallDomainListCommand.ts | 6 +- .../src/commands/DeleteFirewallRuleCommand.ts | 6 +- .../commands/DeleteGlobalResolverCommand.ts | 6 +- .../src/commands/DisableDNSViewCommand.ts | 6 +- .../commands/DisassociateHostedZoneCommand.ts | 6 +- .../src/commands/EnableDNSViewCommand.ts | 6 +- .../src/commands/GetAccessSourceCommand.ts | 6 +- .../src/commands/GetAccessTokenCommand.ts | 6 +- .../src/commands/GetDNSViewCommand.ts | 6 +- .../commands/GetFirewallDomainListCommand.ts | 6 +- .../src/commands/GetFirewallRuleCommand.ts | 6 +- .../src/commands/GetGlobalResolverCommand.ts | 6 +- .../GetHostedZoneAssociationCommand.ts | 6 +- .../GetManagedFirewallDomainListCommand.ts | 6 +- .../commands/ImportFirewallDomainsCommand.ts | 6 +- .../src/commands/ListAccessSourcesCommand.ts | 6 +- .../src/commands/ListAccessTokensCommand.ts | 6 +- .../src/commands/ListDNSViewsCommand.ts | 6 +- .../ListFirewallDomainListsCommand.ts | 6 +- .../commands/ListFirewallDomainsCommand.ts | 6 +- .../src/commands/ListFirewallRulesCommand.ts | 6 +- .../commands/ListGlobalResolversCommand.ts | 6 +- .../ListHostedZoneAssociationsCommand.ts | 6 +- .../ListManagedFirewallDomainListsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAccessSourceCommand.ts | 6 +- .../src/commands/UpdateAccessTokenCommand.ts | 6 +- .../src/commands/UpdateDNSViewCommand.ts | 6 +- .../commands/UpdateFirewallDomainsCommand.ts | 6 +- .../src/commands/UpdateFirewallRuleCommand.ts | 6 +- .../commands/UpdateGlobalResolverCommand.ts | 6 +- .../UpdateHostedZoneAssociationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../Route53GlobalResolverServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAccessSourcesPaginator.ts | 2 +- .../pagination/ListAccessTokensPaginator.ts | 2 +- .../src/pagination/ListDNSViewsPaginator.ts | 2 +- .../ListFirewallDomainListsPaginator.ts | 2 +- .../ListFirewallDomainsPaginator.ts | 2 +- .../pagination/ListFirewallRulesPaginator.ts | 2 +- .../ListGlobalResolversPaginator.ts | 2 +- .../ListHostedZoneAssociationsPaginator.ts | 2 +- ...ListManagedFirewallDomainListsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-route53profiles/package.json | 12 +- .../src/Route53Profiles.ts | 4 +- .../src/Route53ProfilesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateProfileCommand.ts | 10 +- .../AssociateResourceToProfileCommand.ts | 10 +- .../src/commands/CreateProfileCommand.ts | 10 +- .../src/commands/DeleteProfileCommand.ts | 10 +- .../commands/DisassociateProfileCommand.ts | 10 +- .../DisassociateResourceFromProfileCommand.ts | 13 +- .../commands/GetProfileAssociationCommand.ts | 10 +- .../src/commands/GetProfileCommand.ts | 10 +- .../GetProfileResourceAssociationCommand.ts | 10 +- .../ListProfileAssociationsCommand.ts | 10 +- .../ListProfileResourceAssociationsCommand.ts | 13 +- .../src/commands/ListProfilesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- ...UpdateProfileResourceAssociationCommand.ts | 13 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/Route53ProfilesServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListProfileAssociationsPaginator.ts | 2 +- ...istProfileResourceAssociationsPaginator.ts | 2 +- .../src/pagination/ListProfilesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-route53resolver/package.json | 12 +- .../src/Route53Resolver.ts | 4 +- .../src/Route53ResolverClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateFirewallRuleGroupCommand.ts | 10 +- ...sociateResolverEndpointIpAddressCommand.ts | 10 +- .../AssociateResolverQueryLogConfigCommand.ts | 13 +- .../commands/AssociateResolverRuleCommand.ts | 10 +- .../CreateFirewallDomainListCommand.ts | 10 +- .../src/commands/CreateFirewallRuleCommand.ts | 10 +- .../CreateFirewallRuleGroupCommand.ts | 10 +- .../commands/CreateOutpostResolverCommand.ts | 10 +- .../commands/CreateResolverEndpointCommand.ts | 10 +- .../CreateResolverQueryLogConfigCommand.ts | 10 +- .../src/commands/CreateResolverRuleCommand.ts | 10 +- .../DeleteFirewallDomainListCommand.ts | 10 +- .../src/commands/DeleteFirewallRuleCommand.ts | 10 +- .../DeleteFirewallRuleGroupCommand.ts | 10 +- .../commands/DeleteOutpostResolverCommand.ts | 10 +- .../commands/DeleteResolverEndpointCommand.ts | 10 +- .../DeleteResolverQueryLogConfigCommand.ts | 10 +- .../src/commands/DeleteResolverRuleCommand.ts | 10 +- .../DisassociateFirewallRuleGroupCommand.ts | 10 +- ...sociateResolverEndpointIpAddressCommand.ts | 10 +- ...sassociateResolverQueryLogConfigCommand.ts | 10 +- .../DisassociateResolverRuleCommand.ts | 10 +- .../src/commands/GetFirewallConfigCommand.ts | 10 +- .../commands/GetFirewallDomainListCommand.ts | 10 +- .../GetFirewallRuleGroupAssociationCommand.ts | 13 +- .../commands/GetFirewallRuleGroupCommand.ts | 10 +- .../GetFirewallRuleGroupPolicyCommand.ts | 10 +- .../src/commands/GetOutpostResolverCommand.ts | 10 +- .../src/commands/GetResolverConfigCommand.ts | 10 +- .../GetResolverDnssecConfigCommand.ts | 10 +- .../commands/GetResolverEndpointCommand.ts | 10 +- ...esolverQueryLogConfigAssociationCommand.ts | 10 +- .../GetResolverQueryLogConfigCommand.ts | 10 +- .../GetResolverQueryLogConfigPolicyCommand.ts | 13 +- .../GetResolverRuleAssociationCommand.ts | 10 +- .../src/commands/GetResolverRuleCommand.ts | 10 +- .../commands/GetResolverRulePolicyCommand.ts | 10 +- .../commands/ImportFirewallDomainsCommand.ts | 10 +- .../commands/ListFirewallConfigsCommand.ts | 10 +- .../ListFirewallDomainListsCommand.ts | 10 +- .../commands/ListFirewallDomainsCommand.ts | 10 +- ...istFirewallRuleGroupAssociationsCommand.ts | 10 +- .../commands/ListFirewallRuleGroupsCommand.ts | 10 +- .../src/commands/ListFirewallRulesCommand.ts | 10 +- .../commands/ListOutpostResolversCommand.ts | 10 +- .../commands/ListResolverConfigsCommand.ts | 10 +- .../ListResolverDnssecConfigsCommand.ts | 10 +- .../ListResolverEndpointIpAddressesCommand.ts | 13 +- .../commands/ListResolverEndpointsCommand.ts | 10 +- ...solverQueryLogConfigAssociationsCommand.ts | 10 +- .../ListResolverQueryLogConfigsCommand.ts | 10 +- .../ListResolverRuleAssociationsCommand.ts | 10 +- .../src/commands/ListResolverRulesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../PutFirewallRuleGroupPolicyCommand.ts | 10 +- .../PutResolverQueryLogConfigPolicyCommand.ts | 13 +- .../commands/PutResolverRulePolicyCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdateFirewallConfigCommand.ts | 10 +- .../commands/UpdateFirewallDomainsCommand.ts | 10 +- .../src/commands/UpdateFirewallRuleCommand.ts | 10 +- ...dateFirewallRuleGroupAssociationCommand.ts | 10 +- .../commands/UpdateOutpostResolverCommand.ts | 10 +- .../commands/UpdateResolverConfigCommand.ts | 10 +- .../UpdateResolverDnssecConfigCommand.ts | 10 +- .../commands/UpdateResolverEndpointCommand.ts | 10 +- .../src/commands/UpdateResolverRuleCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/Route53ResolverServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListFirewallConfigsPaginator.ts | 2 +- .../ListFirewallDomainListsPaginator.ts | 2 +- .../ListFirewallDomainsPaginator.ts | 2 +- ...tFirewallRuleGroupAssociationsPaginator.ts | 2 +- .../ListFirewallRuleGroupsPaginator.ts | 2 +- .../pagination/ListFirewallRulesPaginator.ts | 2 +- .../ListOutpostResolversPaginator.ts | 2 +- .../ListResolverConfigsPaginator.ts | 2 +- .../ListResolverDnssecConfigsPaginator.ts | 2 +- ...istResolverEndpointIpAddressesPaginator.ts | 2 +- .../ListResolverEndpointsPaginator.ts | 2 +- ...lverQueryLogConfigAssociationsPaginator.ts | 2 +- .../ListResolverQueryLogConfigsPaginator.ts | 2 +- .../ListResolverRuleAssociationsPaginator.ts | 2 +- .../pagination/ListResolverRulesPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-rtbfabric/package.json | 12 +- clients/client-rtbfabric/src/RTBFabric.ts | 4 +- .../client-rtbfabric/src/RTBFabricClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptLinkCommand.ts | 6 +- .../CreateInboundExternalLinkCommand.ts | 6 +- .../src/commands/CreateLinkCommand.ts | 6 +- .../CreateOutboundExternalLinkCommand.ts | 6 +- .../commands/CreateRequesterGatewayCommand.ts | 6 +- .../commands/CreateResponderGatewayCommand.ts | 6 +- .../DeleteInboundExternalLinkCommand.ts | 6 +- .../src/commands/DeleteLinkCommand.ts | 6 +- .../DeleteOutboundExternalLinkCommand.ts | 6 +- .../commands/DeleteRequesterGatewayCommand.ts | 6 +- .../commands/DeleteResponderGatewayCommand.ts | 6 +- .../commands/GetInboundExternalLinkCommand.ts | 6 +- .../src/commands/GetLinkCommand.ts | 6 +- .../GetOutboundExternalLinkCommand.ts | 6 +- .../commands/GetRequesterGatewayCommand.ts | 6 +- .../commands/GetResponderGatewayCommand.ts | 6 +- .../src/commands/ListLinksCommand.ts | 6 +- .../commands/ListRequesterGatewaysCommand.ts | 6 +- .../commands/ListResponderGatewaysCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/RejectLinkCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateLinkCommand.ts | 6 +- .../commands/UpdateLinkModuleFlowCommand.ts | 6 +- .../commands/UpdateRequesterGatewayCommand.ts | 6 +- .../commands/UpdateResponderGatewayCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/RTBFabricServiceException.ts | 2 +- clients/client-rtbfabric/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListLinksPaginator.ts | 2 +- .../ListRequesterGatewaysPaginator.ts | 2 +- .../ListResponderGatewaysPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-rtbfabric/src/runtimeConfig.ts | 8 +- .../client-rtbfabric/src/runtimeExtensions.ts | 2 +- .../client-rtbfabric/src/schemas/schemas_0.ts | 2 +- clients/client-rum/package.json | 12 +- clients/client-rum/src/RUM.ts | 4 +- clients/client-rum/src/RUMClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchCreateRumMetricDefinitionsCommand.ts | 9 +- .../BatchDeleteRumMetricDefinitionsCommand.ts | 9 +- .../BatchGetRumMetricDefinitionsCommand.ts | 6 +- .../src/commands/CreateAppMonitorCommand.ts | 6 +- .../src/commands/DeleteAppMonitorCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../DeleteRumMetricsDestinationCommand.ts | 6 +- .../src/commands/GetAppMonitorCommand.ts | 6 +- .../src/commands/GetAppMonitorDataCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/ListAppMonitorsCommand.ts | 6 +- .../ListRumMetricsDestinationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/PutRumEventsCommand.ts | 6 +- .../PutRumMetricsDestinationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAppMonitorCommand.ts | 6 +- .../UpdateRumMetricDefinitionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-rum/src/extensionConfiguration.ts | 8 +- .../src/models/RUMServiceException.ts | 2 +- clients/client-rum/src/models/errors.ts | 2 +- .../BatchGetRumMetricDefinitionsPaginator.ts | 2 +- .../pagination/GetAppMonitorDataPaginator.ts | 2 +- .../client-rum/src/pagination/Interfaces.ts | 2 +- .../pagination/ListAppMonitorsPaginator.ts | 2 +- .../ListRumMetricsDestinationsPaginator.ts | 2 +- .../client-rum/src/runtimeConfig.browser.ts | 7 +- .../client-rum/src/runtimeConfig.native.ts | 2 +- .../client-rum/src/runtimeConfig.shared.ts | 4 +- clients/client-rum/src/runtimeConfig.ts | 8 +- clients/client-rum/src/runtimeExtensions.ts | 2 +- clients/client-rum/src/schemas/schemas_0.ts | 2 +- clients/client-s3-control/package.json | 12 +- clients/client-s3-control/src/S3Control.ts | 4 +- .../client-s3-control/src/S3ControlClient.ts | 73 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...ociateAccessGrantsIdentityCenterCommand.ts | 6 +- .../src/commands/CreateAccessGrantCommand.ts | 6 +- .../CreateAccessGrantsInstanceCommand.ts | 6 +- .../CreateAccessGrantsLocationCommand.ts | 6 +- .../src/commands/CreateAccessPointCommand.ts | 6 +- ...CreateAccessPointForObjectLambdaCommand.ts | 9 +- .../src/commands/CreateBucketCommand.ts | 6 +- .../src/commands/CreateJobCommand.ts | 6 +- .../CreateMultiRegionAccessPointCommand.ts | 6 +- .../commands/CreateStorageLensGroupCommand.ts | 6 +- .../src/commands/DeleteAccessGrantCommand.ts | 6 +- .../DeleteAccessGrantsInstanceCommand.ts | 6 +- ...cessGrantsInstanceResourcePolicyCommand.ts | 6 +- .../DeleteAccessGrantsLocationCommand.ts | 6 +- .../src/commands/DeleteAccessPointCommand.ts | 6 +- ...DeleteAccessPointForObjectLambdaCommand.ts | 6 +- .../DeleteAccessPointPolicyCommand.ts | 6 +- ...AccessPointPolicyForObjectLambdaCommand.ts | 6 +- .../commands/DeleteAccessPointScopeCommand.ts | 6 +- .../src/commands/DeleteBucketCommand.ts | 6 +- ...leteBucketLifecycleConfigurationCommand.ts | 6 +- .../src/commands/DeleteBucketPolicyCommand.ts | 6 +- .../DeleteBucketReplicationCommand.ts | 6 +- .../commands/DeleteBucketTaggingCommand.ts | 6 +- .../src/commands/DeleteJobTaggingCommand.ts | 6 +- .../DeleteMultiRegionAccessPointCommand.ts | 6 +- .../DeletePublicAccessBlockCommand.ts | 6 +- .../DeleteStorageLensConfigurationCommand.ts | 6 +- ...eStorageLensConfigurationTaggingCommand.ts | 6 +- .../commands/DeleteStorageLensGroupCommand.ts | 6 +- .../src/commands/DescribeJobCommand.ts | 6 +- ...eMultiRegionAccessPointOperationCommand.ts | 6 +- ...ociateAccessGrantsIdentityCenterCommand.ts | 6 +- .../src/commands/GetAccessGrantCommand.ts | 6 +- .../GetAccessGrantsInstanceCommand.ts | 6 +- ...GetAccessGrantsInstanceForPrefixCommand.ts | 9 +- ...cessGrantsInstanceResourcePolicyCommand.ts | 6 +- .../GetAccessGrantsLocationCommand.ts | 6 +- .../src/commands/GetAccessPointCommand.ts | 6 +- ...ointConfigurationForObjectLambdaCommand.ts | 6 +- .../GetAccessPointForObjectLambdaCommand.ts | 6 +- .../commands/GetAccessPointPolicyCommand.ts | 6 +- ...AccessPointPolicyForObjectLambdaCommand.ts | 6 +- .../GetAccessPointPolicyStatusCommand.ts | 6 +- ...PointPolicyStatusForObjectLambdaCommand.ts | 6 +- .../commands/GetAccessPointScopeCommand.ts | 6 +- .../src/commands/GetBucketCommand.ts | 6 +- .../GetBucketLifecycleConfigurationCommand.ts | 6 +- .../src/commands/GetBucketPolicyCommand.ts | 6 +- .../commands/GetBucketReplicationCommand.ts | 6 +- .../src/commands/GetBucketTaggingCommand.ts | 6 +- .../commands/GetBucketVersioningCommand.ts | 6 +- .../src/commands/GetDataAccessCommand.ts | 6 +- .../src/commands/GetJobTaggingCommand.ts | 6 +- .../GetMultiRegionAccessPointCommand.ts | 6 +- .../GetMultiRegionAccessPointPolicyCommand.ts | 6 +- ...ltiRegionAccessPointPolicyStatusCommand.ts | 6 +- .../GetMultiRegionAccessPointRoutesCommand.ts | 6 +- .../commands/GetPublicAccessBlockCommand.ts | 6 +- .../GetStorageLensConfigurationCommand.ts | 6 +- ...tStorageLensConfigurationTaggingCommand.ts | 6 +- .../commands/GetStorageLensGroupCommand.ts | 6 +- .../src/commands/ListAccessGrantsCommand.ts | 6 +- .../ListAccessGrantsInstancesCommand.ts | 6 +- .../ListAccessGrantsLocationsCommand.ts | 6 +- .../src/commands/ListAccessPointsCommand.ts | 6 +- ...tAccessPointsForDirectoryBucketsCommand.ts | 6 +- .../ListAccessPointsForObjectLambdaCommand.ts | 6 +- .../commands/ListCallerAccessGrantsCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../ListMultiRegionAccessPointsCommand.ts | 6 +- .../commands/ListRegionalBucketsCommand.ts | 6 +- .../ListStorageLensConfigurationsCommand.ts | 6 +- .../commands/ListStorageLensGroupsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...cessGrantsInstanceResourcePolicyCommand.ts | 6 +- ...ointConfigurationForObjectLambdaCommand.ts | 6 +- .../commands/PutAccessPointPolicyCommand.ts | 6 +- ...AccessPointPolicyForObjectLambdaCommand.ts | 6 +- .../commands/PutAccessPointScopeCommand.ts | 6 +- .../PutBucketLifecycleConfigurationCommand.ts | 6 +- .../src/commands/PutBucketPolicyCommand.ts | 6 +- .../commands/PutBucketReplicationCommand.ts | 6 +- .../src/commands/PutBucketTaggingCommand.ts | 6 +- .../commands/PutBucketVersioningCommand.ts | 6 +- .../src/commands/PutJobTaggingCommand.ts | 6 +- .../PutMultiRegionAccessPointPolicyCommand.ts | 6 +- .../commands/PutPublicAccessBlockCommand.ts | 6 +- .../PutStorageLensConfigurationCommand.ts | 6 +- ...tStorageLensConfigurationTaggingCommand.ts | 6 +- ...bmitMultiRegionAccessPointRoutesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateAccessGrantsLocationCommand.ts | 6 +- .../src/commands/UpdateJobPriorityCommand.ts | 6 +- .../src/commands/UpdateJobStatusCommand.ts | 6 +- .../commands/UpdateStorageLensGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/S3ControlServiceException.ts | 2 +- .../client-s3-control/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAccessGrantsInstancesPaginator.ts | 2 +- .../ListAccessGrantsLocationsPaginator.ts | 2 +- .../pagination/ListAccessGrantsPaginator.ts | 2 +- ...ccessPointsForDirectoryBucketsPaginator.ts | 2 +- ...istAccessPointsForObjectLambdaPaginator.ts | 2 +- .../pagination/ListAccessPointsPaginator.ts | 2 +- .../ListCallerAccessGrantsPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../ListMultiRegionAccessPointsPaginator.ts | 2 +- .../ListRegionalBucketsPaginator.ts | 2 +- .../ListStorageLensConfigurationsPaginator.ts | 2 +- .../ListStorageLensGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-s3-control/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-s3/package.json | 12 +- clients/client-s3/src/S3.ts | 4 +- clients/client-s3/src/S3Client.ts | 73 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 8 +- .../commands/AbortMultipartUploadCommand.ts | 6 +- .../CompleteMultipartUploadCommand.ts | 6 +- .../src/commands/CopyObjectCommand.ts | 6 +- .../src/commands/CreateBucketCommand.ts | 6 +- ...reateBucketMetadataConfigurationCommand.ts | 6 +- ...BucketMetadataTableConfigurationCommand.ts | 6 +- .../commands/CreateMultipartUploadCommand.ts | 6 +- .../src/commands/CreateSessionCommand.ts | 6 +- ...leteBucketAnalyticsConfigurationCommand.ts | 6 +- .../src/commands/DeleteBucketCommand.ts | 6 +- .../src/commands/DeleteBucketCorsCommand.ts | 6 +- .../commands/DeleteBucketEncryptionCommand.ts | 6 +- ...tIntelligentTieringConfigurationCommand.ts | 6 +- ...leteBucketInventoryConfigurationCommand.ts | 6 +- .../commands/DeleteBucketLifecycleCommand.ts | 6 +- ...eleteBucketMetadataConfigurationCommand.ts | 6 +- ...BucketMetadataTableConfigurationCommand.ts | 6 +- ...DeleteBucketMetricsConfigurationCommand.ts | 6 +- .../DeleteBucketOwnershipControlsCommand.ts | 6 +- .../src/commands/DeleteBucketPolicyCommand.ts | 6 +- .../DeleteBucketReplicationCommand.ts | 6 +- .../commands/DeleteBucketTaggingCommand.ts | 6 +- .../commands/DeleteBucketWebsiteCommand.ts | 6 +- .../src/commands/DeleteObjectCommand.ts | 6 +- .../commands/DeleteObjectTaggingCommand.ts | 6 +- .../src/commands/DeleteObjectsCommand.ts | 6 +- .../DeletePublicAccessBlockCommand.ts | 6 +- .../src/commands/GetBucketAbacCommand.ts | 6 +- ...GetBucketAccelerateConfigurationCommand.ts | 9 +- .../src/commands/GetBucketAclCommand.ts | 6 +- .../GetBucketAnalyticsConfigurationCommand.ts | 6 +- .../src/commands/GetBucketCorsCommand.ts | 6 +- .../commands/GetBucketEncryptionCommand.ts | 6 +- ...tIntelligentTieringConfigurationCommand.ts | 6 +- .../GetBucketInventoryConfigurationCommand.ts | 6 +- .../GetBucketLifecycleConfigurationCommand.ts | 6 +- .../src/commands/GetBucketLocationCommand.ts | 6 +- .../src/commands/GetBucketLoggingCommand.ts | 6 +- .../GetBucketMetadataConfigurationCommand.ts | 6 +- ...BucketMetadataTableConfigurationCommand.ts | 6 +- .../GetBucketMetricsConfigurationCommand.ts | 6 +- ...tBucketNotificationConfigurationCommand.ts | 6 +- .../GetBucketOwnershipControlsCommand.ts | 6 +- .../src/commands/GetBucketPolicyCommand.ts | 6 +- .../commands/GetBucketPolicyStatusCommand.ts | 6 +- .../commands/GetBucketReplicationCommand.ts | 6 +- .../GetBucketRequestPaymentCommand.ts | 6 +- .../src/commands/GetBucketTaggingCommand.ts | 6 +- .../commands/GetBucketVersioningCommand.ts | 6 +- .../src/commands/GetBucketWebsiteCommand.ts | 6 +- .../src/commands/GetObjectAclCommand.ts | 6 +- .../commands/GetObjectAttributesCommand.ts | 6 +- .../src/commands/GetObjectCommand.ts | 6 +- .../src/commands/GetObjectLegalHoldCommand.ts | 6 +- .../GetObjectLockConfigurationCommand.ts | 6 +- .../src/commands/GetObjectRetentionCommand.ts | 6 +- .../src/commands/GetObjectTaggingCommand.ts | 6 +- .../src/commands/GetObjectTorrentCommand.ts | 6 +- .../commands/GetPublicAccessBlockCommand.ts | 6 +- .../src/commands/HeadBucketCommand.ts | 6 +- .../src/commands/HeadObjectCommand.ts | 6 +- ...istBucketAnalyticsConfigurationsCommand.ts | 9 +- ...IntelligentTieringConfigurationsCommand.ts | 6 +- ...istBucketInventoryConfigurationsCommand.ts | 9 +- .../ListBucketMetricsConfigurationsCommand.ts | 6 +- .../src/commands/ListBucketsCommand.ts | 6 +- .../commands/ListDirectoryBucketsCommand.ts | 6 +- .../commands/ListMultipartUploadsCommand.ts | 6 +- .../src/commands/ListObjectVersionsCommand.ts | 6 +- .../src/commands/ListObjectsCommand.ts | 6 +- .../src/commands/ListObjectsV2Command.ts | 6 +- .../src/commands/ListPartsCommand.ts | 6 +- .../src/commands/PutBucketAbacCommand.ts | 6 +- ...PutBucketAccelerateConfigurationCommand.ts | 6 +- .../src/commands/PutBucketAclCommand.ts | 6 +- .../PutBucketAnalyticsConfigurationCommand.ts | 6 +- .../src/commands/PutBucketCorsCommand.ts | 6 +- .../commands/PutBucketEncryptionCommand.ts | 6 +- ...tIntelligentTieringConfigurationCommand.ts | 6 +- .../PutBucketInventoryConfigurationCommand.ts | 6 +- .../PutBucketLifecycleConfigurationCommand.ts | 6 +- .../src/commands/PutBucketLoggingCommand.ts | 6 +- .../PutBucketMetricsConfigurationCommand.ts | 6 +- ...tBucketNotificationConfigurationCommand.ts | 6 +- .../PutBucketOwnershipControlsCommand.ts | 6 +- .../src/commands/PutBucketPolicyCommand.ts | 6 +- .../commands/PutBucketReplicationCommand.ts | 6 +- .../PutBucketRequestPaymentCommand.ts | 6 +- .../src/commands/PutBucketTaggingCommand.ts | 6 +- .../commands/PutBucketVersioningCommand.ts | 6 +- .../src/commands/PutBucketWebsiteCommand.ts | 6 +- .../src/commands/PutObjectAclCommand.ts | 6 +- .../src/commands/PutObjectCommand.ts | 6 +- .../src/commands/PutObjectLegalHoldCommand.ts | 6 +- .../PutObjectLockConfigurationCommand.ts | 6 +- .../src/commands/PutObjectRetentionCommand.ts | 6 +- .../src/commands/PutObjectTaggingCommand.ts | 6 +- .../commands/PutPublicAccessBlockCommand.ts | 6 +- .../src/commands/RenameObjectCommand.ts | 6 +- .../src/commands/RestoreObjectCommand.ts | 8 +- .../commands/SelectObjectContentCommand.ts | 6 +- ...adataInventoryTableConfigurationCommand.ts | 6 +- ...etadataJournalTableConfigurationCommand.ts | 6 +- .../src/commands/UploadPartCommand.ts | 6 +- .../src/commands/UploadPartCopyCommand.ts | 6 +- .../commands/WriteGetObjectResponseCommand.ts | 4 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-s3/src/extensionConfiguration.ts | 8 +- .../src/models/S3ServiceException.ts | 2 +- clients/client-s3/src/models/errors.ts | 2 +- .../client-s3/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListBucketsPaginator.ts | 2 +- .../ListDirectoryBucketsPaginator.ts | 2 +- .../src/pagination/ListObjectsV2Paginator.ts | 2 +- .../src/pagination/ListPartsPaginator.ts | 2 +- .../client-s3/src/runtimeConfig.browser.ts | 7 +- clients/client-s3/src/runtimeConfig.native.ts | 2 +- clients/client-s3/src/runtimeConfig.shared.ts | 4 +- clients/client-s3/src/runtimeConfig.ts | 8 +- clients/client-s3/src/runtimeExtensions.ts | 2 +- clients/client-s3/src/schemas/schemas_0.ts | 2 +- clients/client-s3outposts/package.json | 12 +- clients/client-s3outposts/src/S3Outposts.ts | 4 +- .../client-s3outposts/src/S3OutpostsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateEndpointCommand.ts | 6 +- .../src/commands/DeleteEndpointCommand.ts | 6 +- .../src/commands/ListEndpointsCommand.ts | 6 +- .../src/commands/ListOutpostsWithS3Command.ts | 6 +- .../commands/ListSharedEndpointsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/S3OutpostsServiceException.ts | 2 +- .../client-s3outposts/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListEndpointsPaginator.ts | 2 +- .../pagination/ListOutpostsWithS3Paginator.ts | 2 +- .../ListSharedEndpointsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-s3outposts/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-s3tables/package.json | 12 +- clients/client-s3tables/src/S3Tables.ts | 4 +- clients/client-s3tables/src/S3TablesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateNamespaceCommand.ts | 6 +- .../src/commands/CreateTableBucketCommand.ts | 6 +- .../src/commands/CreateTableCommand.ts | 6 +- .../src/commands/DeleteNamespaceCommand.ts | 6 +- .../src/commands/DeleteTableBucketCommand.ts | 6 +- .../DeleteTableBucketEncryptionCommand.ts | 6 +- ...eTableBucketMetricsConfigurationCommand.ts | 6 +- .../DeleteTableBucketPolicyCommand.ts | 6 +- .../src/commands/DeleteTableCommand.ts | 6 +- .../src/commands/DeleteTablePolicyCommand.ts | 6 +- .../src/commands/GetNamespaceCommand.ts | 6 +- .../src/commands/GetTableBucketCommand.ts | 6 +- .../GetTableBucketEncryptionCommand.ts | 6 +- ...leBucketMaintenanceConfigurationCommand.ts | 6 +- ...tTableBucketMetricsConfigurationCommand.ts | 6 +- .../commands/GetTableBucketPolicyCommand.ts | 6 +- .../src/commands/GetTableCommand.ts | 6 +- .../src/commands/GetTableEncryptionCommand.ts | 6 +- ...GetTableMaintenanceConfigurationCommand.ts | 9 +- .../GetTableMaintenanceJobStatusCommand.ts | 6 +- .../GetTableMetadataLocationCommand.ts | 6 +- .../src/commands/GetTablePolicyCommand.ts | 6 +- .../src/commands/ListNamespacesCommand.ts | 6 +- .../src/commands/ListTableBucketsCommand.ts | 6 +- .../src/commands/ListTablesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../PutTableBucketEncryptionCommand.ts | 6 +- ...leBucketMaintenanceConfigurationCommand.ts | 6 +- ...tTableBucketMetricsConfigurationCommand.ts | 6 +- .../commands/PutTableBucketPolicyCommand.ts | 6 +- ...PutTableMaintenanceConfigurationCommand.ts | 6 +- .../src/commands/PutTablePolicyCommand.ts | 6 +- .../src/commands/RenameTableCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateTableMetadataLocationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/S3TablesServiceException.ts | 2 +- clients/client-s3tables/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListNamespacesPaginator.ts | 2 +- .../pagination/ListTableBucketsPaginator.ts | 2 +- .../src/pagination/ListTablesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-s3tables/src/runtimeConfig.ts | 8 +- .../client-s3tables/src/runtimeExtensions.ts | 2 +- .../client-s3tables/src/schemas/schemas_0.ts | 2 +- clients/client-s3vectors/package.json | 12 +- clients/client-s3vectors/src/S3Vectors.ts | 4 +- .../client-s3vectors/src/S3VectorsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateIndexCommand.ts | 6 +- .../src/commands/CreateVectorBucketCommand.ts | 6 +- .../src/commands/DeleteIndexCommand.ts | 6 +- .../src/commands/DeleteVectorBucketCommand.ts | 6 +- .../DeleteVectorBucketPolicyCommand.ts | 6 +- .../src/commands/DeleteVectorsCommand.ts | 6 +- .../src/commands/GetIndexCommand.ts | 6 +- .../src/commands/GetVectorBucketCommand.ts | 6 +- .../commands/GetVectorBucketPolicyCommand.ts | 6 +- .../src/commands/GetVectorsCommand.ts | 6 +- .../src/commands/ListIndexesCommand.ts | 6 +- .../src/commands/ListVectorBucketsCommand.ts | 6 +- .../src/commands/ListVectorsCommand.ts | 6 +- .../commands/PutVectorBucketPolicyCommand.ts | 6 +- .../src/commands/PutVectorsCommand.ts | 6 +- .../src/commands/QueryVectorsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/S3VectorsServiceException.ts | 2 +- clients/client-s3vectors/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListIndexesPaginator.ts | 2 +- .../pagination/ListVectorBucketsPaginator.ts | 2 +- .../src/pagination/ListVectorsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-s3vectors/src/runtimeConfig.ts | 8 +- .../client-s3vectors/src/runtimeExtensions.ts | 2 +- .../client-s3vectors/src/schemas/schemas_0.ts | 2 +- .../client-sagemaker-a2i-runtime/package.json | 12 +- .../src/SageMakerA2IRuntime.ts | 4 +- .../src/SageMakerA2IRuntimeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/DeleteHumanLoopCommand.ts | 6 +- .../src/commands/DescribeHumanLoopCommand.ts | 6 +- .../src/commands/ListHumanLoopsCommand.ts | 6 +- .../src/commands/StartHumanLoopCommand.ts | 6 +- .../src/commands/StopHumanLoopCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../SageMakerA2IRuntimeServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListHumanLoopsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-sagemaker-edge/package.json | 12 +- .../src/SagemakerEdge.ts | 4 +- .../src/SagemakerEdgeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetDeploymentsCommand.ts | 6 +- .../commands/GetDeviceRegistrationCommand.ts | 6 +- .../src/commands/SendHeartbeatCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/SagemakerEdgeServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/SageMakerFeatureStoreRuntime.ts | 7 +- .../src/SageMakerFeatureStoreRuntimeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchGetRecordCommand.ts | 6 +- .../src/commands/DeleteRecordCommand.ts | 6 +- .../src/commands/GetRecordCommand.ts | 6 +- .../src/commands/PutRecordCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...akerFeatureStoreRuntimeServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-sagemaker-geospatial/package.json | 12 +- .../src/SageMakerGeospatial.ts | 4 +- .../src/SageMakerGeospatialClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../DeleteEarthObservationJobCommand.ts | 6 +- .../DeleteVectorEnrichmentJobCommand.ts | 6 +- .../ExportEarthObservationJobCommand.ts | 6 +- .../ExportVectorEnrichmentJobCommand.ts | 6 +- .../commands/GetEarthObservationJobCommand.ts | 6 +- .../GetRasterDataCollectionCommand.ts | 6 +- .../src/commands/GetTileCommand.ts | 6 +- .../commands/GetVectorEnrichmentJobCommand.ts | 6 +- .../ListEarthObservationJobsCommand.ts | 6 +- .../ListRasterDataCollectionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListVectorEnrichmentJobsCommand.ts | 6 +- .../SearchRasterDataCollectionCommand.ts | 6 +- .../StartEarthObservationJobCommand.ts | 6 +- .../StartVectorEnrichmentJobCommand.ts | 6 +- .../StopEarthObservationJobCommand.ts | 6 +- .../StopVectorEnrichmentJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../SageMakerGeospatialServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListEarthObservationJobsPaginator.ts | 2 +- .../ListRasterDataCollectionsPaginator.ts | 2 +- .../ListVectorEnrichmentJobsPaginator.ts | 2 +- .../SearchRasterDataCollectionPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-sagemaker-metrics/package.json | 12 +- .../src/SageMakerMetrics.ts | 4 +- .../src/SageMakerMetricsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchGetMetricsCommand.ts | 10 +- .../src/commands/BatchPutMetricsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../SageMakerMetricsServiceException.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/SageMakerRuntimeHTTP2.ts | 4 +- .../src/SageMakerRuntimeHTTP2Client.ts | 75 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...eEndpointWithBidirectionalStreamCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../SageMakerRuntimeHTTP2ServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 7 +- clients/client-sagemaker-runtime/package.json | 12 +- .../src/SageMakerRuntime.ts | 4 +- .../src/SageMakerRuntimeClient.ts | 71 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/InvokeEndpointAsyncCommand.ts | 10 +- .../src/commands/InvokeEndpointCommand.ts | 8 +- ...InvokeEndpointWithResponseStreamCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../SageMakerRuntimeServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 7 +- clients/client-sagemaker/package.json | 12 +- clients/client-sagemaker/src/SageMaker.ts | 4 +- .../client-sagemaker/src/SageMakerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddAssociationCommand.ts | 6 +- .../src/commands/AddTagsCommand.ts | 6 +- .../AssociateTrialComponentCommand.ts | 6 +- .../AttachClusterNodeVolumeCommand.ts | 6 +- .../commands/BatchAddClusterNodesCommand.ts | 6 +- .../BatchDeleteClusterNodesCommand.ts | 6 +- .../BatchDescribeModelPackageCommand.ts | 6 +- .../BatchRebootClusterNodesCommand.ts | 6 +- .../BatchReplaceClusterNodesCommand.ts | 6 +- .../src/commands/CreateActionCommand.ts | 6 +- .../src/commands/CreateAlgorithmCommand.ts | 6 +- .../src/commands/CreateAppCommand.ts | 6 +- .../commands/CreateAppImageConfigCommand.ts | 6 +- .../src/commands/CreateArtifactCommand.ts | 6 +- .../src/commands/CreateAutoMLJobCommand.ts | 6 +- .../src/commands/CreateAutoMLJobV2Command.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../CreateClusterSchedulerConfigCommand.ts | 6 +- .../commands/CreateCodeRepositoryCommand.ts | 6 +- .../commands/CreateCompilationJobCommand.ts | 6 +- .../src/commands/CreateComputeQuotaCommand.ts | 6 +- .../src/commands/CreateContextCommand.ts | 6 +- .../CreateDataQualityJobDefinitionCommand.ts | 6 +- .../src/commands/CreateDeviceFleetCommand.ts | 6 +- .../src/commands/CreateDomainCommand.ts | 6 +- .../CreateEdgeDeploymentPlanCommand.ts | 6 +- .../CreateEdgeDeploymentStageCommand.ts | 6 +- .../commands/CreateEdgePackagingJobCommand.ts | 6 +- .../src/commands/CreateEndpointCommand.ts | 6 +- .../commands/CreateEndpointConfigCommand.ts | 6 +- .../src/commands/CreateExperimentCommand.ts | 6 +- .../src/commands/CreateFeatureGroupCommand.ts | 6 +- .../commands/CreateFlowDefinitionCommand.ts | 6 +- .../src/commands/CreateHubCommand.ts | 6 +- .../CreateHubContentPresignedUrlsCommand.ts | 6 +- .../CreateHubContentReferenceCommand.ts | 6 +- .../src/commands/CreateHumanTaskUiCommand.ts | 6 +- .../CreateHyperParameterTuningJobCommand.ts | 6 +- .../src/commands/CreateImageCommand.ts | 6 +- .../src/commands/CreateImageVersionCommand.ts | 6 +- .../CreateInferenceComponentCommand.ts | 6 +- .../CreateInferenceExperimentCommand.ts | 6 +- ...reateInferenceRecommendationsJobCommand.ts | 6 +- .../src/commands/CreateLabelingJobCommand.ts | 6 +- .../CreateMlflowTrackingServerCommand.ts | 6 +- .../CreateModelBiasJobDefinitionCommand.ts | 6 +- .../src/commands/CreateModelCardCommand.ts | 6 +- .../CreateModelCardExportJobCommand.ts | 6 +- .../src/commands/CreateModelCommand.ts | 6 +- ...ModelExplainabilityJobDefinitionCommand.ts | 6 +- .../src/commands/CreateModelPackageCommand.ts | 6 +- .../CreateModelPackageGroupCommand.ts | 6 +- .../CreateModelQualityJobDefinitionCommand.ts | 9 +- .../CreateMonitoringScheduleCommand.ts | 6 +- .../commands/CreateNotebookInstanceCommand.ts | 6 +- ...eNotebookInstanceLifecycleConfigCommand.ts | 6 +- .../commands/CreateOptimizationJobCommand.ts | 6 +- .../src/commands/CreatePartnerAppCommand.ts | 6 +- .../CreatePartnerAppPresignedUrlCommand.ts | 6 +- .../src/commands/CreatePipelineCommand.ts | 6 +- .../CreatePresignedDomainUrlCommand.ts | 6 +- ...PresignedMlflowTrackingServerUrlCommand.ts | 6 +- ...eatePresignedNotebookInstanceUrlCommand.ts | 9 +- .../commands/CreateProcessingJobCommand.ts | 6 +- .../src/commands/CreateProjectCommand.ts | 6 +- .../src/commands/CreateSpaceCommand.ts | 6 +- .../CreateStudioLifecycleConfigCommand.ts | 6 +- .../src/commands/CreateTrainingJobCommand.ts | 8 +- .../src/commands/CreateTrainingPlanCommand.ts | 6 +- .../src/commands/CreateTransformJobCommand.ts | 6 +- .../src/commands/CreateTrialCommand.ts | 6 +- .../commands/CreateTrialComponentCommand.ts | 6 +- .../src/commands/CreateUserProfileCommand.ts | 6 +- .../src/commands/CreateWorkforceCommand.ts | 6 +- .../src/commands/CreateWorkteamCommand.ts | 6 +- .../src/commands/DeleteActionCommand.ts | 6 +- .../src/commands/DeleteAlgorithmCommand.ts | 6 +- .../src/commands/DeleteAppCommand.ts | 6 +- .../commands/DeleteAppImageConfigCommand.ts | 6 +- .../src/commands/DeleteArtifactCommand.ts | 6 +- .../src/commands/DeleteAssociationCommand.ts | 6 +- .../src/commands/DeleteClusterCommand.ts | 6 +- .../DeleteClusterSchedulerConfigCommand.ts | 6 +- .../commands/DeleteCodeRepositoryCommand.ts | 6 +- .../commands/DeleteCompilationJobCommand.ts | 6 +- .../src/commands/DeleteComputeQuotaCommand.ts | 6 +- .../src/commands/DeleteContextCommand.ts | 6 +- .../DeleteDataQualityJobDefinitionCommand.ts | 6 +- .../src/commands/DeleteDeviceFleetCommand.ts | 6 +- .../src/commands/DeleteDomainCommand.ts | 6 +- .../DeleteEdgeDeploymentPlanCommand.ts | 6 +- .../DeleteEdgeDeploymentStageCommand.ts | 6 +- .../src/commands/DeleteEndpointCommand.ts | 6 +- .../commands/DeleteEndpointConfigCommand.ts | 6 +- .../src/commands/DeleteExperimentCommand.ts | 6 +- .../src/commands/DeleteFeatureGroupCommand.ts | 6 +- .../commands/DeleteFlowDefinitionCommand.ts | 6 +- .../src/commands/DeleteHubCommand.ts | 6 +- .../src/commands/DeleteHubContentCommand.ts | 6 +- .../DeleteHubContentReferenceCommand.ts | 6 +- .../src/commands/DeleteHumanTaskUiCommand.ts | 6 +- .../DeleteHyperParameterTuningJobCommand.ts | 6 +- .../src/commands/DeleteImageCommand.ts | 6 +- .../src/commands/DeleteImageVersionCommand.ts | 6 +- .../DeleteInferenceComponentCommand.ts | 6 +- .../DeleteInferenceExperimentCommand.ts | 6 +- .../DeleteMlflowTrackingServerCommand.ts | 6 +- .../DeleteModelBiasJobDefinitionCommand.ts | 6 +- .../src/commands/DeleteModelCardCommand.ts | 6 +- .../src/commands/DeleteModelCommand.ts | 6 +- ...ModelExplainabilityJobDefinitionCommand.ts | 6 +- .../src/commands/DeleteModelPackageCommand.ts | 6 +- .../DeleteModelPackageGroupCommand.ts | 6 +- .../DeleteModelPackageGroupPolicyCommand.ts | 6 +- .../DeleteModelQualityJobDefinitionCommand.ts | 6 +- .../DeleteMonitoringScheduleCommand.ts | 6 +- .../commands/DeleteNotebookInstanceCommand.ts | 6 +- ...eNotebookInstanceLifecycleConfigCommand.ts | 6 +- .../commands/DeleteOptimizationJobCommand.ts | 6 +- .../src/commands/DeletePartnerAppCommand.ts | 6 +- .../src/commands/DeletePipelineCommand.ts | 6 +- .../commands/DeleteProcessingJobCommand.ts | 6 +- .../src/commands/DeleteProjectCommand.ts | 6 +- .../src/commands/DeleteSpaceCommand.ts | 6 +- .../DeleteStudioLifecycleConfigCommand.ts | 6 +- .../src/commands/DeleteTagsCommand.ts | 6 +- .../src/commands/DeleteTrainingJobCommand.ts | 6 +- .../src/commands/DeleteTrialCommand.ts | 6 +- .../commands/DeleteTrialComponentCommand.ts | 6 +- .../src/commands/DeleteUserProfileCommand.ts | 6 +- .../src/commands/DeleteWorkforceCommand.ts | 6 +- .../src/commands/DeleteWorkteamCommand.ts | 6 +- .../src/commands/DeregisterDevicesCommand.ts | 6 +- .../src/commands/DescribeActionCommand.ts | 6 +- .../src/commands/DescribeAlgorithmCommand.ts | 6 +- .../src/commands/DescribeAppCommand.ts | 6 +- .../commands/DescribeAppImageConfigCommand.ts | 6 +- .../src/commands/DescribeArtifactCommand.ts | 6 +- .../src/commands/DescribeAutoMLJobCommand.ts | 6 +- .../commands/DescribeAutoMLJobV2Command.ts | 6 +- .../src/commands/DescribeClusterCommand.ts | 6 +- .../commands/DescribeClusterEventCommand.ts | 6 +- .../commands/DescribeClusterNodeCommand.ts | 6 +- .../DescribeClusterSchedulerConfigCommand.ts | 6 +- .../commands/DescribeCodeRepositoryCommand.ts | 6 +- .../commands/DescribeCompilationJobCommand.ts | 6 +- .../commands/DescribeComputeQuotaCommand.ts | 6 +- .../src/commands/DescribeContextCommand.ts | 6 +- ...DescribeDataQualityJobDefinitionCommand.ts | 9 +- .../src/commands/DescribeDeviceCommand.ts | 6 +- .../commands/DescribeDeviceFleetCommand.ts | 6 +- .../src/commands/DescribeDomainCommand.ts | 6 +- .../DescribeEdgeDeploymentPlanCommand.ts | 6 +- .../DescribeEdgePackagingJobCommand.ts | 6 +- .../src/commands/DescribeEndpointCommand.ts | 6 +- .../commands/DescribeEndpointConfigCommand.ts | 6 +- .../src/commands/DescribeExperimentCommand.ts | 6 +- .../commands/DescribeFeatureGroupCommand.ts | 6 +- .../DescribeFeatureMetadataCommand.ts | 6 +- .../commands/DescribeFlowDefinitionCommand.ts | 6 +- .../src/commands/DescribeHubCommand.ts | 6 +- .../src/commands/DescribeHubContentCommand.ts | 6 +- .../commands/DescribeHumanTaskUiCommand.ts | 6 +- .../DescribeHyperParameterTuningJobCommand.ts | 9 +- .../src/commands/DescribeImageCommand.ts | 6 +- .../commands/DescribeImageVersionCommand.ts | 6 +- .../DescribeInferenceComponentCommand.ts | 6 +- .../DescribeInferenceExperimentCommand.ts | 6 +- ...cribeInferenceRecommendationsJobCommand.ts | 6 +- .../commands/DescribeLabelingJobCommand.ts | 6 +- .../commands/DescribeLineageGroupCommand.ts | 6 +- .../DescribeMlflowTrackingServerCommand.ts | 6 +- .../DescribeModelBiasJobDefinitionCommand.ts | 6 +- .../src/commands/DescribeModelCardCommand.ts | 6 +- .../DescribeModelCardExportJobCommand.ts | 6 +- .../src/commands/DescribeModelCommand.ts | 6 +- ...ModelExplainabilityJobDefinitionCommand.ts | 6 +- .../commands/DescribeModelPackageCommand.ts | 6 +- .../DescribeModelPackageGroupCommand.ts | 6 +- ...escribeModelQualityJobDefinitionCommand.ts | 6 +- .../DescribeMonitoringScheduleCommand.ts | 6 +- .../DescribeNotebookInstanceCommand.ts | 6 +- ...eNotebookInstanceLifecycleConfigCommand.ts | 6 +- .../DescribeOptimizationJobCommand.ts | 6 +- .../src/commands/DescribePartnerAppCommand.ts | 6 +- .../src/commands/DescribePipelineCommand.ts | 6 +- ...bePipelineDefinitionForExecutionCommand.ts | 6 +- .../DescribePipelineExecutionCommand.ts | 6 +- .../commands/DescribeProcessingJobCommand.ts | 6 +- .../src/commands/DescribeProjectCommand.ts | 6 +- .../DescribeReservedCapacityCommand.ts | 6 +- .../src/commands/DescribeSpaceCommand.ts | 6 +- .../DescribeStudioLifecycleConfigCommand.ts | 6 +- .../DescribeSubscribedWorkteamCommand.ts | 6 +- .../commands/DescribeTrainingJobCommand.ts | 6 +- .../commands/DescribeTrainingPlanCommand.ts | 6 +- .../commands/DescribeTransformJobCommand.ts | 6 +- .../src/commands/DescribeTrialCommand.ts | 6 +- .../commands/DescribeTrialComponentCommand.ts | 6 +- .../commands/DescribeUserProfileCommand.ts | 6 +- .../src/commands/DescribeWorkforceCommand.ts | 6 +- .../src/commands/DescribeWorkteamCommand.ts | 6 +- .../DetachClusterNodeVolumeCommand.ts | 6 +- ...SagemakerServicecatalogPortfolioCommand.ts | 6 +- .../DisassociateTrialComponentCommand.ts | 6 +- ...SagemakerServicecatalogPortfolioCommand.ts | 6 +- .../commands/GetDeviceFleetReportCommand.ts | 6 +- .../commands/GetLineageGroupPolicyCommand.ts | 6 +- .../GetModelPackageGroupPolicyCommand.ts | 6 +- ...kerServicecatalogPortfolioStatusCommand.ts | 6 +- ...alingConfigurationRecommendationCommand.ts | 6 +- .../commands/GetSearchSuggestionsCommand.ts | 6 +- .../src/commands/ImportHubContentCommand.ts | 6 +- .../src/commands/ListActionsCommand.ts | 6 +- .../src/commands/ListAlgorithmsCommand.ts | 6 +- .../src/commands/ListAliasesCommand.ts | 6 +- .../commands/ListAppImageConfigsCommand.ts | 6 +- .../src/commands/ListAppsCommand.ts | 6 +- .../src/commands/ListArtifactsCommand.ts | 6 +- .../src/commands/ListAssociationsCommand.ts | 6 +- .../src/commands/ListAutoMLJobsCommand.ts | 6 +- .../ListCandidatesForAutoMLJobCommand.ts | 6 +- .../src/commands/ListClusterEventsCommand.ts | 6 +- .../src/commands/ListClusterNodesCommand.ts | 6 +- .../ListClusterSchedulerConfigsCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../commands/ListCodeRepositoriesCommand.ts | 6 +- .../commands/ListCompilationJobsCommand.ts | 6 +- .../src/commands/ListComputeQuotasCommand.ts | 6 +- .../src/commands/ListContextsCommand.ts | 6 +- .../ListDataQualityJobDefinitionsCommand.ts | 6 +- .../src/commands/ListDeviceFleetsCommand.ts | 6 +- .../src/commands/ListDevicesCommand.ts | 6 +- .../src/commands/ListDomainsCommand.ts | 6 +- .../ListEdgeDeploymentPlansCommand.ts | 6 +- .../commands/ListEdgePackagingJobsCommand.ts | 6 +- .../commands/ListEndpointConfigsCommand.ts | 6 +- .../src/commands/ListEndpointsCommand.ts | 6 +- .../src/commands/ListExperimentsCommand.ts | 6 +- .../src/commands/ListFeatureGroupsCommand.ts | 6 +- .../commands/ListFlowDefinitionsCommand.ts | 6 +- .../commands/ListHubContentVersionsCommand.ts | 6 +- .../src/commands/ListHubContentsCommand.ts | 6 +- .../src/commands/ListHubsCommand.ts | 6 +- .../src/commands/ListHumanTaskUisCommand.ts | 6 +- .../ListHyperParameterTuningJobsCommand.ts | 6 +- .../src/commands/ListImageVersionsCommand.ts | 6 +- .../src/commands/ListImagesCommand.ts | 6 +- .../ListInferenceComponentsCommand.ts | 6 +- .../ListInferenceExperimentsCommand.ts | 6 +- ...InferenceRecommendationsJobStepsCommand.ts | 6 +- ...ListInferenceRecommendationsJobsCommand.ts | 9 +- .../src/commands/ListLabelingJobsCommand.ts | 6 +- .../ListLabelingJobsForWorkteamCommand.ts | 6 +- .../src/commands/ListLineageGroupsCommand.ts | 6 +- .../ListMlflowTrackingServersCommand.ts | 6 +- .../ListModelBiasJobDefinitionsCommand.ts | 6 +- .../ListModelCardExportJobsCommand.ts | 6 +- .../commands/ListModelCardVersionsCommand.ts | 6 +- .../src/commands/ListModelCardsCommand.ts | 6 +- ...odelExplainabilityJobDefinitionsCommand.ts | 6 +- .../src/commands/ListModelMetadataCommand.ts | 6 +- .../commands/ListModelPackageGroupsCommand.ts | 6 +- .../src/commands/ListModelPackagesCommand.ts | 6 +- .../ListModelQualityJobDefinitionsCommand.ts | 6 +- .../src/commands/ListModelsCommand.ts | 6 +- .../ListMonitoringAlertHistoryCommand.ts | 6 +- .../commands/ListMonitoringAlertsCommand.ts | 6 +- .../ListMonitoringExecutionsCommand.ts | 6 +- .../ListMonitoringSchedulesCommand.ts | 6 +- ...NotebookInstanceLifecycleConfigsCommand.ts | 6 +- .../commands/ListNotebookInstancesCommand.ts | 6 +- .../commands/ListOptimizationJobsCommand.ts | 6 +- .../src/commands/ListPartnerAppsCommand.ts | 6 +- .../ListPipelineExecutionStepsCommand.ts | 6 +- .../commands/ListPipelineExecutionsCommand.ts | 6 +- ...stPipelineParametersForExecutionCommand.ts | 6 +- .../commands/ListPipelineVersionsCommand.ts | 6 +- .../src/commands/ListPipelinesCommand.ts | 6 +- .../src/commands/ListProcessingJobsCommand.ts | 6 +- .../src/commands/ListProjectsCommand.ts | 6 +- .../commands/ListResourceCatalogsCommand.ts | 6 +- .../src/commands/ListSpacesCommand.ts | 6 +- .../src/commands/ListStageDevicesCommand.ts | 6 +- .../ListStudioLifecycleConfigsCommand.ts | 6 +- .../ListSubscribedWorkteamsCommand.ts | 6 +- .../src/commands/ListTagsCommand.ts | 6 +- .../src/commands/ListTrainingJobsCommand.ts | 6 +- ...ngJobsForHyperParameterTuningJobCommand.ts | 6 +- .../src/commands/ListTrainingPlansCommand.ts | 8 +- .../src/commands/ListTransformJobsCommand.ts | 6 +- .../commands/ListTrialComponentsCommand.ts | 6 +- .../src/commands/ListTrialsCommand.ts | 6 +- ...stUltraServersByReservedCapacityCommand.ts | 6 +- .../src/commands/ListUserProfilesCommand.ts | 6 +- .../src/commands/ListWorkforcesCommand.ts | 6 +- .../src/commands/ListWorkteamsCommand.ts | 6 +- .../PutModelPackageGroupPolicyCommand.ts | 6 +- .../src/commands/QueryLineageCommand.ts | 6 +- .../src/commands/RegisterDevicesCommand.ts | 6 +- .../src/commands/RenderUiTemplateCommand.ts | 6 +- .../commands/RetryPipelineExecutionCommand.ts | 6 +- .../src/commands/SearchCommand.ts | 6 +- .../SearchTrainingPlanOfferingsCommand.ts | 6 +- ...SendPipelineExecutionStepFailureCommand.ts | 9 +- ...SendPipelineExecutionStepSuccessCommand.ts | 9 +- .../StartEdgeDeploymentStageCommand.ts | 6 +- .../StartInferenceExperimentCommand.ts | 6 +- .../StartMlflowTrackingServerCommand.ts | 6 +- .../StartMonitoringScheduleCommand.ts | 6 +- .../commands/StartNotebookInstanceCommand.ts | 6 +- .../commands/StartPipelineExecutionCommand.ts | 6 +- .../src/commands/StartSessionCommand.ts | 6 +- .../src/commands/StopAutoMLJobCommand.ts | 6 +- .../src/commands/StopCompilationJobCommand.ts | 6 +- .../StopEdgeDeploymentStageCommand.ts | 6 +- .../commands/StopEdgePackagingJobCommand.ts | 6 +- .../StopHyperParameterTuningJobCommand.ts | 6 +- .../StopInferenceExperimentCommand.ts | 6 +- .../StopInferenceRecommendationsJobCommand.ts | 6 +- .../src/commands/StopLabelingJobCommand.ts | 6 +- .../StopMlflowTrackingServerCommand.ts | 6 +- .../commands/StopMonitoringScheduleCommand.ts | 6 +- .../commands/StopNotebookInstanceCommand.ts | 6 +- .../commands/StopOptimizationJobCommand.ts | 6 +- .../commands/StopPipelineExecutionCommand.ts | 6 +- .../src/commands/StopProcessingJobCommand.ts | 6 +- .../src/commands/StopTrainingJobCommand.ts | 6 +- .../src/commands/StopTransformJobCommand.ts | 6 +- .../src/commands/UpdateActionCommand.ts | 6 +- .../commands/UpdateAppImageConfigCommand.ts | 6 +- .../src/commands/UpdateArtifactCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../UpdateClusterSchedulerConfigCommand.ts | 6 +- .../commands/UpdateClusterSoftwareCommand.ts | 6 +- .../commands/UpdateCodeRepositoryCommand.ts | 6 +- .../src/commands/UpdateComputeQuotaCommand.ts | 6 +- .../src/commands/UpdateContextCommand.ts | 6 +- .../src/commands/UpdateDeviceFleetCommand.ts | 6 +- .../src/commands/UpdateDevicesCommand.ts | 6 +- .../src/commands/UpdateDomainCommand.ts | 6 +- .../src/commands/UpdateEndpointCommand.ts | 6 +- ...dateEndpointWeightsAndCapacitiesCommand.ts | 9 +- .../src/commands/UpdateExperimentCommand.ts | 6 +- .../src/commands/UpdateFeatureGroupCommand.ts | 6 +- .../commands/UpdateFeatureMetadataCommand.ts | 6 +- .../src/commands/UpdateHubCommand.ts | 6 +- .../src/commands/UpdateHubContentCommand.ts | 6 +- .../UpdateHubContentReferenceCommand.ts | 6 +- .../src/commands/UpdateImageCommand.ts | 6 +- .../src/commands/UpdateImageVersionCommand.ts | 6 +- .../UpdateInferenceComponentCommand.ts | 6 +- ...eInferenceComponentRuntimeConfigCommand.ts | 6 +- .../UpdateInferenceExperimentCommand.ts | 6 +- .../UpdateMlflowTrackingServerCommand.ts | 6 +- .../src/commands/UpdateModelCardCommand.ts | 6 +- .../src/commands/UpdateModelPackageCommand.ts | 6 +- .../commands/UpdateMonitoringAlertCommand.ts | 6 +- .../UpdateMonitoringScheduleCommand.ts | 6 +- .../commands/UpdateNotebookInstanceCommand.ts | 6 +- ...eNotebookInstanceLifecycleConfigCommand.ts | 6 +- .../src/commands/UpdatePartnerAppCommand.ts | 6 +- .../src/commands/UpdatePipelineCommand.ts | 6 +- .../UpdatePipelineExecutionCommand.ts | 6 +- .../commands/UpdatePipelineVersionCommand.ts | 6 +- .../src/commands/UpdateProjectCommand.ts | 6 +- .../src/commands/UpdateSpaceCommand.ts | 6 +- .../src/commands/UpdateTrainingJobCommand.ts | 6 +- .../src/commands/UpdateTrialCommand.ts | 6 +- .../commands/UpdateTrialComponentCommand.ts | 6 +- .../src/commands/UpdateUserProfileCommand.ts | 6 +- .../src/commands/UpdateWorkforceCommand.ts | 6 +- .../src/commands/UpdateWorkteamCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SageMakerServiceException.ts | 2 +- clients/client-sagemaker/src/models/errors.ts | 2 +- .../CreateHubContentPresignedUrlsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListActionsPaginator.ts | 2 +- .../src/pagination/ListAlgorithmsPaginator.ts | 2 +- .../src/pagination/ListAliasesPaginator.ts | 2 +- .../ListAppImageConfigsPaginator.ts | 2 +- .../src/pagination/ListAppsPaginator.ts | 2 +- .../src/pagination/ListArtifactsPaginator.ts | 2 +- .../pagination/ListAssociationsPaginator.ts | 2 +- .../src/pagination/ListAutoMLJobsPaginator.ts | 2 +- .../ListCandidatesForAutoMLJobPaginator.ts | 2 +- .../pagination/ListClusterEventsPaginator.ts | 2 +- .../pagination/ListClusterNodesPaginator.ts | 2 +- .../ListClusterSchedulerConfigsPaginator.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../ListCodeRepositoriesPaginator.ts | 2 +- .../ListCompilationJobsPaginator.ts | 2 +- .../pagination/ListComputeQuotasPaginator.ts | 2 +- .../src/pagination/ListContextsPaginator.ts | 2 +- .../ListDataQualityJobDefinitionsPaginator.ts | 2 +- .../pagination/ListDeviceFleetsPaginator.ts | 2 +- .../src/pagination/ListDevicesPaginator.ts | 2 +- .../src/pagination/ListDomainsPaginator.ts | 2 +- .../ListEdgeDeploymentPlansPaginator.ts | 2 +- .../ListEdgePackagingJobsPaginator.ts | 2 +- .../ListEndpointConfigsPaginator.ts | 2 +- .../src/pagination/ListEndpointsPaginator.ts | 2 +- .../pagination/ListExperimentsPaginator.ts | 2 +- .../pagination/ListFeatureGroupsPaginator.ts | 2 +- .../ListFlowDefinitionsPaginator.ts | 2 +- .../pagination/ListHumanTaskUisPaginator.ts | 2 +- .../ListHyperParameterTuningJobsPaginator.ts | 2 +- .../pagination/ListImageVersionsPaginator.ts | 2 +- .../src/pagination/ListImagesPaginator.ts | 2 +- .../ListInferenceComponentsPaginator.ts | 2 +- .../ListInferenceExperimentsPaginator.ts | 2 +- ...ferenceRecommendationsJobStepsPaginator.ts | 2 +- ...stInferenceRecommendationsJobsPaginator.ts | 2 +- .../ListLabelingJobsForWorkteamPaginator.ts | 2 +- .../pagination/ListLabelingJobsPaginator.ts | 2 +- .../pagination/ListLineageGroupsPaginator.ts | 2 +- .../ListMlflowTrackingServersPaginator.ts | 2 +- .../ListModelBiasJobDefinitionsPaginator.ts | 2 +- .../ListModelCardExportJobsPaginator.ts | 2 +- .../ListModelCardVersionsPaginator.ts | 2 +- .../src/pagination/ListModelCardsPaginator.ts | 2 +- ...elExplainabilityJobDefinitionsPaginator.ts | 2 +- .../pagination/ListModelMetadataPaginator.ts | 2 +- .../ListModelPackageGroupsPaginator.ts | 2 +- .../pagination/ListModelPackagesPaginator.ts | 2 +- ...ListModelQualityJobDefinitionsPaginator.ts | 2 +- .../src/pagination/ListModelsPaginator.ts | 2 +- .../ListMonitoringAlertHistoryPaginator.ts | 2 +- .../ListMonitoringAlertsPaginator.ts | 2 +- .../ListMonitoringExecutionsPaginator.ts | 2 +- .../ListMonitoringSchedulesPaginator.ts | 2 +- ...tebookInstanceLifecycleConfigsPaginator.ts | 2 +- .../ListNotebookInstancesPaginator.ts | 2 +- .../ListOptimizationJobsPaginator.ts | 2 +- .../pagination/ListPartnerAppsPaginator.ts | 2 +- .../ListPipelineExecutionStepsPaginator.ts | 2 +- .../ListPipelineExecutionsPaginator.ts | 2 +- ...PipelineParametersForExecutionPaginator.ts | 2 +- .../ListPipelineVersionsPaginator.ts | 2 +- .../src/pagination/ListPipelinesPaginator.ts | 2 +- .../pagination/ListProcessingJobsPaginator.ts | 2 +- .../src/pagination/ListProjectsPaginator.ts | 2 +- .../ListResourceCatalogsPaginator.ts | 2 +- .../src/pagination/ListSpacesPaginator.ts | 2 +- .../pagination/ListStageDevicesPaginator.ts | 2 +- .../ListStudioLifecycleConfigsPaginator.ts | 2 +- .../ListSubscribedWorkteamsPaginator.ts | 2 +- .../src/pagination/ListTagsPaginator.ts | 2 +- ...JobsForHyperParameterTuningJobPaginator.ts | 2 +- .../pagination/ListTrainingJobsPaginator.ts | 2 +- .../pagination/ListTrainingPlansPaginator.ts | 2 +- .../pagination/ListTransformJobsPaginator.ts | 2 +- .../ListTrialComponentsPaginator.ts | 2 +- .../src/pagination/ListTrialsPaginator.ts | 2 +- ...UltraServersByReservedCapacityPaginator.ts | 2 +- .../pagination/ListUserProfilesPaginator.ts | 2 +- .../src/pagination/ListWorkforcesPaginator.ts | 2 +- .../src/pagination/ListWorkteamsPaginator.ts | 2 +- .../src/pagination/QueryLineagePaginator.ts | 2 +- .../src/pagination/SearchPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-sagemaker/src/runtimeConfig.ts | 8 +- .../client-sagemaker/src/runtimeExtensions.ts | 2 +- .../client-sagemaker/src/schemas/schemas_0.ts | 2 +- clients/client-savingsplans/package.json | 12 +- .../client-savingsplans/src/Savingsplans.ts | 4 +- .../src/SavingsplansClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateSavingsPlanCommand.ts | 6 +- .../DeleteQueuedSavingsPlanCommand.ts | 6 +- .../DescribeSavingsPlanRatesCommand.ts | 6 +- .../commands/DescribeSavingsPlansCommand.ts | 6 +- ...escribeSavingsPlansOfferingRatesCommand.ts | 6 +- .../DescribeSavingsPlansOfferingsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ReturnSavingsPlanCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/SavingsplansServiceException.ts | 2 +- .../client-savingsplans/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-savingsplans/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-scheduler/package.json | 12 +- clients/client-scheduler/src/Scheduler.ts | 4 +- .../client-scheduler/src/SchedulerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateScheduleCommand.ts | 6 +- .../commands/CreateScheduleGroupCommand.ts | 6 +- .../src/commands/DeleteScheduleCommand.ts | 6 +- .../commands/DeleteScheduleGroupCommand.ts | 6 +- .../src/commands/GetScheduleCommand.ts | 6 +- .../src/commands/GetScheduleGroupCommand.ts | 6 +- .../src/commands/ListScheduleGroupsCommand.ts | 6 +- .../src/commands/ListSchedulesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateScheduleCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SchedulerServiceException.ts | 2 +- clients/client-scheduler/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListScheduleGroupsPaginator.ts | 2 +- .../src/pagination/ListSchedulesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-scheduler/src/runtimeConfig.ts | 8 +- .../client-scheduler/src/runtimeExtensions.ts | 2 +- .../client-scheduler/src/schemas/schemas_0.ts | 2 +- clients/client-schemas/package.json | 12 +- clients/client-schemas/src/Schemas.ts | 4 +- clients/client-schemas/src/SchemasClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateDiscovererCommand.ts | 6 +- .../src/commands/CreateRegistryCommand.ts | 6 +- .../src/commands/CreateSchemaCommand.ts | 6 +- .../src/commands/DeleteDiscovererCommand.ts | 6 +- .../src/commands/DeleteRegistryCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DeleteSchemaCommand.ts | 6 +- .../commands/DeleteSchemaVersionCommand.ts | 6 +- .../commands/DescribeCodeBindingCommand.ts | 6 +- .../src/commands/DescribeDiscovererCommand.ts | 6 +- .../src/commands/DescribeRegistryCommand.ts | 6 +- .../src/commands/DescribeSchemaCommand.ts | 6 +- .../src/commands/ExportSchemaCommand.ts | 6 +- .../commands/GetCodeBindingSourceCommand.ts | 6 +- .../commands/GetDiscoveredSchemaCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/ListDiscoverersCommand.ts | 6 +- .../src/commands/ListRegistriesCommand.ts | 6 +- .../src/commands/ListSchemaVersionsCommand.ts | 6 +- .../src/commands/ListSchemasCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutCodeBindingCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/SearchSchemasCommand.ts | 6 +- .../src/commands/StartDiscovererCommand.ts | 6 +- .../src/commands/StopDiscovererCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDiscovererCommand.ts | 6 +- .../src/commands/UpdateRegistryCommand.ts | 6 +- .../src/commands/UpdateSchemaCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SchemasServiceException.ts | 2 +- clients/client-schemas/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListDiscoverersPaginator.ts | 2 +- .../src/pagination/ListRegistriesPaginator.ts | 2 +- .../pagination/ListSchemaVersionsPaginator.ts | 2 +- .../src/pagination/ListSchemasPaginator.ts | 2 +- .../src/pagination/SearchSchemasPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-schemas/src/runtimeConfig.ts | 8 +- .../client-schemas/src/runtimeExtensions.ts | 2 +- .../client-schemas/src/schemas/schemas_0.ts | 2 +- clients/client-secrets-manager/package.json | 12 +- .../src/SecretsManager.ts | 4 +- .../src/SecretsManagerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/BatchGetSecretValueCommand.ts | 10 +- .../src/commands/CancelRotateSecretCommand.ts | 10 +- .../src/commands/CreateSecretCommand.ts | 10 +- .../commands/DeleteResourcePolicyCommand.ts | 10 +- .../src/commands/DeleteSecretCommand.ts | 10 +- .../src/commands/DescribeSecretCommand.ts | 10 +- .../src/commands/GetRandomPasswordCommand.ts | 10 +- .../src/commands/GetResourcePolicyCommand.ts | 10 +- .../src/commands/GetSecretValueCommand.ts | 10 +- .../commands/ListSecretVersionIdsCommand.ts | 10 +- .../src/commands/ListSecretsCommand.ts | 10 +- .../src/commands/PutResourcePolicyCommand.ts | 10 +- .../src/commands/PutSecretValueCommand.ts | 10 +- .../RemoveRegionsFromReplicationCommand.ts | 10 +- .../ReplicateSecretToRegionsCommand.ts | 10 +- .../src/commands/RestoreSecretCommand.ts | 10 +- .../src/commands/RotateSecretCommand.ts | 10 +- .../StopReplicationToReplicaCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateSecretCommand.ts | 10 +- .../UpdateSecretVersionStageCommand.ts | 10 +- .../commands/ValidateResourcePolicyCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/SecretsManagerServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../BatchGetSecretValuePaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListSecretVersionIdsPaginator.ts | 2 +- .../src/pagination/ListSecretsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-security-ir/package.json | 12 +- clients/client-security-ir/src/SecurityIR.ts | 4 +- .../src/SecurityIRClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchGetMemberAccountDetailsCommand.ts | 6 +- .../src/commands/CancelMembershipCommand.ts | 6 +- .../src/commands/CloseCaseCommand.ts | 6 +- .../src/commands/CreateCaseCommand.ts | 6 +- .../src/commands/CreateCaseCommentCommand.ts | 6 +- .../src/commands/CreateMembershipCommand.ts | 6 +- .../GetCaseAttachmentDownloadUrlCommand.ts | 6 +- .../GetCaseAttachmentUploadUrlCommand.ts | 6 +- .../src/commands/GetCaseCommand.ts | 6 +- .../src/commands/GetMembershipCommand.ts | 6 +- .../src/commands/ListCaseEditsCommand.ts | 6 +- .../src/commands/ListCasesCommand.ts | 6 +- .../src/commands/ListCommentsCommand.ts | 6 +- .../src/commands/ListInvestigationsCommand.ts | 6 +- .../src/commands/ListMembershipsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/SendFeedbackCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateCaseCommand.ts | 6 +- .../src/commands/UpdateCaseCommentCommand.ts | 6 +- .../src/commands/UpdateCaseStatusCommand.ts | 6 +- .../src/commands/UpdateMembershipCommand.ts | 6 +- .../src/commands/UpdateResolverTypeCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SecurityIRServiceException.ts | 2 +- .../client-security-ir/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListCaseEditsPaginator.ts | 2 +- .../src/pagination/ListCasesPaginator.ts | 2 +- .../src/pagination/ListCommentsPaginator.ts | 2 +- .../pagination/ListInvestigationsPaginator.ts | 2 +- .../pagination/ListMembershipsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-security-ir/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-securityhub/package.json | 12 +- clients/client-securityhub/src/SecurityHub.ts | 4 +- .../src/SecurityHubClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptAdministratorInvitationCommand.ts | 6 +- .../src/commands/AcceptInvitationCommand.ts | 6 +- .../BatchDeleteAutomationRulesCommand.ts | 6 +- .../commands/BatchDisableStandardsCommand.ts | 6 +- .../commands/BatchEnableStandardsCommand.ts | 6 +- .../BatchGetAutomationRulesCommand.ts | 6 +- ...tConfigurationPolicyAssociationsCommand.ts | 6 +- .../BatchGetSecurityControlsCommand.ts | 6 +- ...hGetStandardsControlAssociationsCommand.ts | 6 +- .../commands/BatchImportFindingsCommand.ts | 6 +- .../BatchUpdateAutomationRulesCommand.ts | 6 +- .../commands/BatchUpdateFindingsCommand.ts | 6 +- .../commands/BatchUpdateFindingsV2Command.ts | 6 +- ...dateStandardsControlAssociationsCommand.ts | 6 +- .../ConnectorRegistrationsV2Command.ts | 6 +- .../src/commands/CreateActionTargetCommand.ts | 6 +- .../src/commands/CreateAggregatorV2Command.ts | 6 +- .../commands/CreateAutomationRuleCommand.ts | 6 +- .../commands/CreateAutomationRuleV2Command.ts | 8 +- .../CreateConfigurationPolicyCommand.ts | 6 +- .../src/commands/CreateConnectorV2Command.ts | 6 +- .../CreateFindingAggregatorCommand.ts | 6 +- .../src/commands/CreateInsightCommand.ts | 6 +- .../src/commands/CreateMembersCommand.ts | 6 +- .../src/commands/CreateTicketV2Command.ts | 6 +- .../src/commands/DeclineInvitationsCommand.ts | 6 +- .../src/commands/DeleteActionTargetCommand.ts | 6 +- .../src/commands/DeleteAggregatorV2Command.ts | 6 +- .../commands/DeleteAutomationRuleV2Command.ts | 6 +- .../DeleteConfigurationPolicyCommand.ts | 6 +- .../src/commands/DeleteConnectorV2Command.ts | 6 +- .../DeleteFindingAggregatorCommand.ts | 6 +- .../src/commands/DeleteInsightCommand.ts | 6 +- .../src/commands/DeleteInvitationsCommand.ts | 6 +- .../src/commands/DeleteMembersCommand.ts | 6 +- .../commands/DescribeActionTargetsCommand.ts | 6 +- .../src/commands/DescribeHubCommand.ts | 6 +- ...escribeOrganizationConfigurationCommand.ts | 6 +- .../src/commands/DescribeProductsCommand.ts | 6 +- .../src/commands/DescribeProductsV2Command.ts | 6 +- .../commands/DescribeSecurityHubV2Command.ts | 6 +- .../src/commands/DescribeStandardsCommand.ts | 6 +- .../DescribeStandardsControlsCommand.ts | 6 +- .../DisableImportFindingsForProductCommand.ts | 9 +- .../DisableOrganizationAdminAccountCommand.ts | 9 +- .../src/commands/DisableSecurityHubCommand.ts | 6 +- .../commands/DisableSecurityHubV2Command.ts | 6 +- ...ssociateFromAdministratorAccountCommand.ts | 6 +- .../DisassociateFromMasterAccountCommand.ts | 6 +- .../commands/DisassociateMembersCommand.ts | 6 +- .../EnableImportFindingsForProductCommand.ts | 6 +- .../EnableOrganizationAdminAccountCommand.ts | 6 +- .../src/commands/EnableSecurityHubCommand.ts | 6 +- .../commands/EnableSecurityHubV2Command.ts | 6 +- .../GetAdministratorAccountCommand.ts | 6 +- .../src/commands/GetAggregatorV2Command.ts | 6 +- .../commands/GetAutomationRuleV2Command.ts | 8 +- ...etConfigurationPolicyAssociationCommand.ts | 6 +- .../commands/GetConfigurationPolicyCommand.ts | 6 +- .../src/commands/GetConnectorV2Command.ts | 6 +- .../commands/GetEnabledStandardsCommand.ts | 6 +- .../commands/GetFindingAggregatorCommand.ts | 6 +- .../src/commands/GetFindingHistoryCommand.ts | 6 +- .../commands/GetFindingStatisticsV2Command.ts | 8 +- .../src/commands/GetFindingsCommand.ts | 6 +- .../commands/GetFindingsTrendsV2Command.ts | 8 +- .../src/commands/GetFindingsV2Command.ts | 8 +- .../src/commands/GetInsightResultsCommand.ts | 6 +- .../src/commands/GetInsightsCommand.ts | 6 +- .../commands/GetInvitationsCountCommand.ts | 6 +- .../src/commands/GetMasterAccountCommand.ts | 6 +- .../src/commands/GetMembersCommand.ts | 6 +- .../GetResourcesStatisticsV2Command.ts | 8 +- .../commands/GetResourcesTrendsV2Command.ts | 8 +- .../src/commands/GetResourcesV2Command.ts | 8 +- .../GetSecurityControlDefinitionCommand.ts | 6 +- .../src/commands/InviteMembersCommand.ts | 6 +- .../src/commands/ListAggregatorsV2Command.ts | 6 +- .../commands/ListAutomationRulesCommand.ts | 6 +- .../commands/ListAutomationRulesV2Command.ts | 6 +- .../ListConfigurationPoliciesCommand.ts | 6 +- ...tConfigurationPolicyAssociationsCommand.ts | 6 +- .../src/commands/ListConnectorsV2Command.ts | 6 +- .../ListEnabledProductsForImportCommand.ts | 6 +- .../commands/ListFindingAggregatorsCommand.ts | 6 +- .../src/commands/ListInvitationsCommand.ts | 6 +- .../src/commands/ListMembersCommand.ts | 6 +- .../ListOrganizationAdminAccountsCommand.ts | 6 +- .../ListSecurityControlDefinitionsCommand.ts | 6 +- ...ListStandardsControlAssociationsCommand.ts | 8 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...rtConfigurationPolicyAssociationCommand.ts | 6 +- ...onfigurationPolicyDisassociationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateActionTargetCommand.ts | 6 +- .../src/commands/UpdateAggregatorV2Command.ts | 6 +- .../commands/UpdateAutomationRuleV2Command.ts | 6 +- .../UpdateConfigurationPolicyCommand.ts | 6 +- .../src/commands/UpdateConnectorV2Command.ts | 6 +- .../UpdateFindingAggregatorCommand.ts | 6 +- .../src/commands/UpdateFindingsCommand.ts | 6 +- .../src/commands/UpdateInsightCommand.ts | 6 +- .../UpdateOrganizationConfigurationCommand.ts | 9 +- .../commands/UpdateSecurityControlCommand.ts | 6 +- .../UpdateSecurityHubConfigurationCommand.ts | 6 +- .../commands/UpdateStandardsControlCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SecurityHubServiceException.ts | 2 +- .../client-securityhub/src/models/errors.ts | 2 +- .../DescribeActionTargetsPaginator.ts | 2 +- .../pagination/DescribeProductsPaginator.ts | 2 +- .../pagination/DescribeProductsV2Paginator.ts | 2 +- .../DescribeStandardsControlsPaginator.ts | 2 +- .../pagination/DescribeStandardsPaginator.ts | 2 +- .../GetEnabledStandardsPaginator.ts | 2 +- .../pagination/GetFindingHistoryPaginator.ts | 2 +- .../src/pagination/GetFindingsPaginator.ts | 2 +- .../GetFindingsTrendsV2Paginator.ts | 2 +- .../src/pagination/GetFindingsV2Paginator.ts | 2 +- .../src/pagination/GetInsightsPaginator.ts | 2 +- .../GetResourcesTrendsV2Paginator.ts | 2 +- .../src/pagination/GetResourcesV2Paginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAggregatorsV2Paginator.ts | 2 +- .../ListConfigurationPoliciesPaginator.ts | 2 +- ...onfigurationPolicyAssociationsPaginator.ts | 2 +- .../ListEnabledProductsForImportPaginator.ts | 2 +- .../ListFindingAggregatorsPaginator.ts | 2 +- .../pagination/ListInvitationsPaginator.ts | 2 +- .../src/pagination/ListMembersPaginator.ts | 2 +- .../ListOrganizationAdminAccountsPaginator.ts | 2 +- ...ListSecurityControlDefinitionsPaginator.ts | 2 +- ...stStandardsControlAssociationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-securityhub/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-securitylake/package.json | 12 +- .../client-securitylake/src/SecurityLake.ts | 4 +- .../src/SecurityLakeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateAwsLogSourceCommand.ts | 6 +- .../commands/CreateCustomLogSourceCommand.ts | 6 +- .../src/commands/CreateDataLakeCommand.ts | 6 +- ...ateDataLakeExceptionSubscriptionCommand.ts | 6 +- ...ataLakeOrganizationConfigurationCommand.ts | 6 +- .../src/commands/CreateSubscriberCommand.ts | 6 +- .../CreateSubscriberNotificationCommand.ts | 6 +- .../src/commands/DeleteAwsLogSourceCommand.ts | 6 +- .../commands/DeleteCustomLogSourceCommand.ts | 6 +- .../src/commands/DeleteDataLakeCommand.ts | 6 +- ...eteDataLakeExceptionSubscriptionCommand.ts | 6 +- ...ataLakeOrganizationConfigurationCommand.ts | 6 +- .../src/commands/DeleteSubscriberCommand.ts | 6 +- .../DeleteSubscriberNotificationCommand.ts | 6 +- ...erDataLakeDelegatedAdministratorCommand.ts | 6 +- ...GetDataLakeExceptionSubscriptionCommand.ts | 9 +- ...ataLakeOrganizationConfigurationCommand.ts | 6 +- .../src/commands/GetDataLakeSourcesCommand.ts | 6 +- .../src/commands/GetSubscriberCommand.ts | 6 +- .../commands/ListDataLakeExceptionsCommand.ts | 6 +- .../src/commands/ListDataLakesCommand.ts | 6 +- .../src/commands/ListLogSourcesCommand.ts | 6 +- .../src/commands/ListSubscribersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...erDataLakeDelegatedAdministratorCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDataLakeCommand.ts | 6 +- ...ateDataLakeExceptionSubscriptionCommand.ts | 6 +- .../src/commands/UpdateSubscriberCommand.ts | 6 +- .../UpdateSubscriberNotificationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/SecurityLakeServiceException.ts | 2 +- .../client-securitylake/src/models/errors.ts | 2 +- .../pagination/GetDataLakeSourcesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDataLakeExceptionsPaginator.ts | 2 +- .../src/pagination/ListLogSourcesPaginator.ts | 2 +- .../pagination/ListSubscribersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-securitylake/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ServerlessApplicationRepository.ts | 7 +- .../ServerlessApplicationRepositoryClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../CreateApplicationVersionCommand.ts | 6 +- .../CreateCloudFormationChangeSetCommand.ts | 6 +- .../CreateCloudFormationTemplateCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../commands/GetApplicationPolicyCommand.ts | 6 +- .../GetCloudFormationTemplateCommand.ts | 6 +- .../ListApplicationDependenciesCommand.ts | 6 +- .../ListApplicationVersionsCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../commands/PutApplicationPolicyCommand.ts | 6 +- .../src/commands/UnshareApplicationCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...ssApplicationRepositoryServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListApplicationDependenciesPaginator.ts | 2 +- .../ListApplicationVersionsPaginator.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/ServiceCatalogAppRegistry.ts | 7 +- .../src/ServiceCatalogAppRegistryClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateAttributeGroupCommand.ts | 6 +- .../src/commands/AssociateResourceCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- .../commands/CreateAttributeGroupCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../commands/DeleteAttributeGroupCommand.ts | 6 +- .../DisassociateAttributeGroupCommand.ts | 6 +- .../commands/DisassociateResourceCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../commands/GetAssociatedResourceCommand.ts | 6 +- .../src/commands/GetAttributeGroupCommand.ts | 6 +- .../src/commands/GetConfigurationCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../ListAssociatedAttributeGroupsCommand.ts | 6 +- .../ListAssociatedResourcesCommand.ts | 6 +- .../commands/ListAttributeGroupsCommand.ts | 6 +- ...istAttributeGroupsForApplicationCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutConfigurationCommand.ts | 6 +- .../src/commands/SyncResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- .../commands/UpdateAttributeGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- ...rviceCatalogAppRegistryServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../ListAssociatedAttributeGroupsPaginator.ts | 2 +- .../ListAssociatedResourcesPaginator.ts | 2 +- ...tAttributeGroupsForApplicationPaginator.ts | 2 +- .../ListAttributeGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-service-catalog/package.json | 12 +- .../src/ServiceCatalog.ts | 4 +- .../src/ServiceCatalogClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AcceptPortfolioShareCommand.ts | 10 +- .../AssociateBudgetWithResourceCommand.ts | 10 +- .../AssociatePrincipalWithPortfolioCommand.ts | 10 +- .../AssociateProductWithPortfolioCommand.ts | 10 +- ...ceActionWithProvisioningArtifactCommand.ts | 10 +- .../AssociateTagOptionWithResourceCommand.ts | 10 +- ...ceActionWithProvisioningArtifactCommand.ts | 10 +- ...ceActionFromProvisioningArtifactCommand.ts | 10 +- .../src/commands/CopyProductCommand.ts | 10 +- .../src/commands/CreateConstraintCommand.ts | 10 +- .../src/commands/CreatePortfolioCommand.ts | 10 +- .../commands/CreatePortfolioShareCommand.ts | 10 +- .../src/commands/CreateProductCommand.ts | 10 +- .../CreateProvisionedProductPlanCommand.ts | 10 +- .../CreateProvisioningArtifactCommand.ts | 10 +- .../commands/CreateServiceActionCommand.ts | 10 +- .../src/commands/CreateTagOptionCommand.ts | 10 +- .../src/commands/DeleteConstraintCommand.ts | 10 +- .../src/commands/DeletePortfolioCommand.ts | 10 +- .../commands/DeletePortfolioShareCommand.ts | 10 +- .../src/commands/DeleteProductCommand.ts | 10 +- .../DeleteProvisionedProductPlanCommand.ts | 10 +- .../DeleteProvisioningArtifactCommand.ts | 10 +- .../commands/DeleteServiceActionCommand.ts | 10 +- .../src/commands/DeleteTagOptionCommand.ts | 10 +- .../src/commands/DescribeConstraintCommand.ts | 10 +- .../DescribeCopyProductStatusCommand.ts | 10 +- .../src/commands/DescribePortfolioCommand.ts | 10 +- .../DescribePortfolioShareStatusCommand.ts | 10 +- .../DescribePortfolioSharesCommand.ts | 10 +- .../commands/DescribeProductAsAdminCommand.ts | 10 +- .../src/commands/DescribeProductCommand.ts | 10 +- .../commands/DescribeProductViewCommand.ts | 10 +- .../DescribeProvisionedProductCommand.ts | 10 +- .../DescribeProvisionedProductPlanCommand.ts | 10 +- .../DescribeProvisioningArtifactCommand.ts | 10 +- .../DescribeProvisioningParametersCommand.ts | 10 +- .../src/commands/DescribeRecordCommand.ts | 10 +- .../commands/DescribeServiceActionCommand.ts | 10 +- ...ServiceActionExecutionParametersCommand.ts | 10 +- .../src/commands/DescribeTagOptionCommand.ts | 10 +- .../DisableAWSOrganizationsAccessCommand.ts | 10 +- .../DisassociateBudgetFromResourceCommand.ts | 10 +- ...sassociatePrincipalFromPortfolioCommand.ts | 13 +- ...DisassociateProductFromPortfolioCommand.ts | 10 +- ...ceActionFromProvisioningArtifactCommand.ts | 10 +- ...isassociateTagOptionFromResourceCommand.ts | 13 +- .../EnableAWSOrganizationsAccessCommand.ts | 10 +- .../ExecuteProvisionedProductPlanCommand.ts | 10 +- ...eProvisionedProductServiceActionCommand.ts | 10 +- .../GetAWSOrganizationsAccessStatusCommand.ts | 10 +- .../GetProvisionedProductOutputsCommand.ts | 10 +- .../ImportAsProvisionedProductCommand.ts | 10 +- .../ListAcceptedPortfolioSharesCommand.ts | 10 +- .../commands/ListBudgetsForResourceCommand.ts | 10 +- .../ListConstraintsForPortfolioCommand.ts | 10 +- .../src/commands/ListLaunchPathsCommand.ts | 10 +- .../ListOrganizationPortfolioAccessCommand.ts | 10 +- .../commands/ListPortfolioAccessCommand.ts | 10 +- .../src/commands/ListPortfoliosCommand.ts | 10 +- .../ListPortfoliosForProductCommand.ts | 10 +- .../ListPrincipalsForPortfolioCommand.ts | 10 +- .../ListProvisionedProductPlansCommand.ts | 10 +- .../ListProvisioningArtifactsCommand.ts | 10 +- ...sioningArtifactsForServiceActionCommand.ts | 10 +- .../src/commands/ListRecordHistoryCommand.ts | 10 +- .../ListResourcesForTagOptionCommand.ts | 10 +- .../src/commands/ListServiceActionsCommand.ts | 10 +- ...ceActionsForProvisioningArtifactCommand.ts | 10 +- ...ckInstancesForProvisionedProductCommand.ts | 10 +- .../src/commands/ListTagOptionsCommand.ts | 10 +- ...isionProductEngineWorkflowResultCommand.ts | 10 +- ...ionedProductEngineWorkflowResultCommand.ts | 10 +- ...ionedProductEngineWorkflowResultCommand.ts | 10 +- .../src/commands/ProvisionProductCommand.ts | 10 +- .../commands/RejectPortfolioShareCommand.ts | 10 +- .../ScanProvisionedProductsCommand.ts | 10 +- .../commands/SearchProductsAsAdminCommand.ts | 10 +- .../src/commands/SearchProductsCommand.ts | 10 +- .../SearchProvisionedProductsCommand.ts | 10 +- .../TerminateProvisionedProductCommand.ts | 10 +- .../src/commands/UpdateConstraintCommand.ts | 10 +- .../src/commands/UpdatePortfolioCommand.ts | 10 +- .../commands/UpdatePortfolioShareCommand.ts | 10 +- .../src/commands/UpdateProductCommand.ts | 10 +- .../UpdateProvisionedProductCommand.ts | 10 +- ...dateProvisionedProductPropertiesCommand.ts | 13 +- .../UpdateProvisioningArtifactCommand.ts | 10 +- .../commands/UpdateServiceActionCommand.ts | 10 +- .../src/commands/UpdateTagOptionCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ServiceCatalogServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribePortfolioSharesPaginator.ts | 2 +- .../GetProvisionedProductOutputsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAcceptedPortfolioSharesPaginator.ts | 2 +- .../ListBudgetsForResourcePaginator.ts | 2 +- .../ListConstraintsForPortfolioPaginator.ts | 2 +- .../pagination/ListLaunchPathsPaginator.ts | 2 +- ...istOrganizationPortfolioAccessPaginator.ts | 2 +- .../ListPortfolioAccessPaginator.ts | 2 +- .../ListPortfoliosForProductPaginator.ts | 2 +- .../src/pagination/ListPortfoliosPaginator.ts | 2 +- .../ListPrincipalsForPortfolioPaginator.ts | 2 +- ...oningArtifactsForServiceActionPaginator.ts | 2 +- .../ListResourcesForTagOptionPaginator.ts | 2 +- ...ActionsForProvisioningArtifactPaginator.ts | 2 +- .../pagination/ListServiceActionsPaginator.ts | 2 +- .../src/pagination/ListTagOptionsPaginator.ts | 2 +- .../SearchProductsAsAdminPaginator.ts | 2 +- .../src/pagination/SearchProductsPaginator.ts | 2 +- .../SearchProvisionedProductsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-service-quotas/package.json | 12 +- .../src/ServiceQuotas.ts | 4 +- .../src/ServiceQuotasClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateServiceQuotaTemplateCommand.ts | 6 +- .../src/commands/CreateSupportCaseCommand.ts | 6 +- ...QuotaIncreaseRequestFromTemplateCommand.ts | 6 +- ...DisassociateServiceQuotaTemplateCommand.ts | 9 +- .../GetAWSDefaultServiceQuotaCommand.ts | 6 +- ...sociationForServiceQuotaTemplateCommand.ts | 6 +- .../GetAutoManagementConfigurationCommand.ts | 6 +- .../GetRequestedServiceQuotaChangeCommand.ts | 6 +- .../src/commands/GetServiceQuotaCommand.ts | 6 +- ...QuotaIncreaseRequestFromTemplateCommand.ts | 6 +- .../ListAWSDefaultServiceQuotasCommand.ts | 6 +- ...ServiceQuotaChangeHistoryByQuotaCommand.ts | 6 +- ...questedServiceQuotaChangeHistoryCommand.ts | 6 +- ...eQuotaIncreaseRequestsInTemplateCommand.ts | 6 +- .../src/commands/ListServiceQuotasCommand.ts | 6 +- .../src/commands/ListServicesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- ...QuotaIncreaseRequestIntoTemplateCommand.ts | 6 +- .../RequestServiceQuotaIncreaseCommand.ts | 6 +- .../commands/StartAutoManagementCommand.ts | 6 +- .../src/commands/StopAutoManagementCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateAutoManagementCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/ServiceQuotasServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAWSDefaultServiceQuotasPaginator.ts | 2 +- ...rviceQuotaChangeHistoryByQuotaPaginator.ts | 2 +- ...estedServiceQuotaChangeHistoryPaginator.ts | 2 +- ...uotaIncreaseRequestsInTemplatePaginator.ts | 2 +- .../pagination/ListServiceQuotasPaginator.ts | 2 +- .../src/pagination/ListServicesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-servicediscovery/package.json | 12 +- .../src/ServiceDiscovery.ts | 4 +- .../src/ServiceDiscoveryClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateHttpNamespaceCommand.ts | 10 +- .../CreatePrivateDnsNamespaceCommand.ts | 10 +- .../CreatePublicDnsNamespaceCommand.ts | 10 +- .../src/commands/CreateServiceCommand.ts | 10 +- .../src/commands/DeleteNamespaceCommand.ts | 10 +- .../DeleteServiceAttributesCommand.ts | 10 +- .../src/commands/DeleteServiceCommand.ts | 10 +- .../src/commands/DeregisterInstanceCommand.ts | 10 +- .../src/commands/DiscoverInstancesCommand.ts | 10 +- .../DiscoverInstancesRevisionCommand.ts | 10 +- .../src/commands/GetInstanceCommand.ts | 10 +- .../GetInstancesHealthStatusCommand.ts | 10 +- .../src/commands/GetNamespaceCommand.ts | 10 +- .../src/commands/GetOperationCommand.ts | 10 +- .../commands/GetServiceAttributesCommand.ts | 10 +- .../src/commands/GetServiceCommand.ts | 10 +- .../src/commands/ListInstancesCommand.ts | 10 +- .../src/commands/ListNamespacesCommand.ts | 10 +- .../src/commands/ListOperationsCommand.ts | 10 +- .../src/commands/ListServicesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/RegisterInstanceCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdateHttpNamespaceCommand.ts | 10 +- ...UpdateInstanceCustomHealthStatusCommand.ts | 10 +- .../UpdatePrivateDnsNamespaceCommand.ts | 10 +- .../UpdatePublicDnsNamespaceCommand.ts | 10 +- .../UpdateServiceAttributesCommand.ts | 10 +- .../src/commands/UpdateServiceCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../ServiceDiscoveryServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetInstancesHealthStatusPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListInstancesPaginator.ts | 2 +- .../src/pagination/ListNamespacesPaginator.ts | 2 +- .../src/pagination/ListOperationsPaginator.ts | 2 +- .../src/pagination/ListServicesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ses/package.json | 12 +- clients/client-ses/src/SES.ts | 4 +- clients/client-ses/src/SESClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CloneReceiptRuleSetCommand.ts | 6 +- .../commands/CreateConfigurationSetCommand.ts | 6 +- ...ConfigurationSetEventDestinationCommand.ts | 6 +- ...eConfigurationSetTrackingOptionsCommand.ts | 6 +- ...eCustomVerificationEmailTemplateCommand.ts | 6 +- .../commands/CreateReceiptFilterCommand.ts | 6 +- .../src/commands/CreateReceiptRuleCommand.ts | 6 +- .../commands/CreateReceiptRuleSetCommand.ts | 6 +- .../src/commands/CreateTemplateCommand.ts | 6 +- .../commands/DeleteConfigurationSetCommand.ts | 6 +- ...ConfigurationSetEventDestinationCommand.ts | 6 +- ...eConfigurationSetTrackingOptionsCommand.ts | 6 +- ...eCustomVerificationEmailTemplateCommand.ts | 6 +- .../src/commands/DeleteIdentityCommand.ts | 6 +- .../commands/DeleteIdentityPolicyCommand.ts | 6 +- .../commands/DeleteReceiptFilterCommand.ts | 6 +- .../src/commands/DeleteReceiptRuleCommand.ts | 6 +- .../commands/DeleteReceiptRuleSetCommand.ts | 6 +- .../src/commands/DeleteTemplateCommand.ts | 6 +- .../DeleteVerifiedEmailAddressCommand.ts | 6 +- .../DescribeActiveReceiptRuleSetCommand.ts | 6 +- .../DescribeConfigurationSetCommand.ts | 6 +- .../commands/DescribeReceiptRuleCommand.ts | 6 +- .../commands/DescribeReceiptRuleSetCommand.ts | 6 +- .../GetAccountSendingEnabledCommand.ts | 6 +- ...tCustomVerificationEmailTemplateCommand.ts | 6 +- .../GetIdentityDkimAttributesCommand.ts | 6 +- ...IdentityMailFromDomainAttributesCommand.ts | 6 +- ...etIdentityNotificationAttributesCommand.ts | 6 +- .../commands/GetIdentityPoliciesCommand.ts | 6 +- ...etIdentityVerificationAttributesCommand.ts | 6 +- .../src/commands/GetSendQuotaCommand.ts | 6 +- .../src/commands/GetSendStatisticsCommand.ts | 6 +- .../src/commands/GetTemplateCommand.ts | 6 +- .../commands/ListConfigurationSetsCommand.ts | 6 +- ...CustomVerificationEmailTemplatesCommand.ts | 6 +- .../src/commands/ListIdentitiesCommand.ts | 6 +- .../commands/ListIdentityPoliciesCommand.ts | 6 +- .../src/commands/ListReceiptFiltersCommand.ts | 6 +- .../commands/ListReceiptRuleSetsCommand.ts | 6 +- .../src/commands/ListTemplatesCommand.ts | 6 +- .../ListVerifiedEmailAddressesCommand.ts | 6 +- ...tConfigurationSetDeliveryOptionsCommand.ts | 6 +- .../src/commands/PutIdentityPolicyCommand.ts | 6 +- .../commands/ReorderReceiptRuleSetCommand.ts | 6 +- .../src/commands/SendBounceCommand.ts | 6 +- .../commands/SendBulkTemplatedEmailCommand.ts | 6 +- .../SendCustomVerificationEmailCommand.ts | 6 +- .../src/commands/SendEmailCommand.ts | 6 +- .../src/commands/SendRawEmailCommand.ts | 6 +- .../src/commands/SendTemplatedEmailCommand.ts | 6 +- .../SetActiveReceiptRuleSetCommand.ts | 6 +- .../commands/SetIdentityDkimEnabledCommand.ts | 6 +- ...dentityFeedbackForwardingEnabledCommand.ts | 6 +- ...ityHeadersInNotificationsEnabledCommand.ts | 6 +- .../SetIdentityMailFromDomainCommand.ts | 6 +- .../SetIdentityNotificationTopicCommand.ts | 6 +- .../commands/SetReceiptRulePositionCommand.ts | 6 +- .../src/commands/TestRenderTemplateCommand.ts | 6 +- .../UpdateAccountSendingEnabledCommand.ts | 6 +- ...ConfigurationSetEventDestinationCommand.ts | 6 +- ...ationSetReputationMetricsEnabledCommand.ts | 6 +- ...teConfigurationSetSendingEnabledCommand.ts | 6 +- ...eConfigurationSetTrackingOptionsCommand.ts | 6 +- ...eCustomVerificationEmailTemplateCommand.ts | 6 +- .../src/commands/UpdateReceiptRuleCommand.ts | 6 +- .../src/commands/UpdateTemplateCommand.ts | 6 +- .../src/commands/VerifyDomainDkimCommand.ts | 6 +- .../commands/VerifyDomainIdentityCommand.ts | 6 +- .../src/commands/VerifyEmailAddressCommand.ts | 6 +- .../commands/VerifyEmailIdentityCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-ses/src/extensionConfiguration.ts | 8 +- .../src/models/SESServiceException.ts | 2 +- clients/client-ses/src/models/errors.ts | 2 +- .../client-ses/src/pagination/Interfaces.ts | 2 +- ...stomVerificationEmailTemplatesPaginator.ts | 2 +- .../src/pagination/ListIdentitiesPaginator.ts | 2 +- .../client-ses/src/runtimeConfig.browser.ts | 7 +- .../client-ses/src/runtimeConfig.native.ts | 2 +- .../client-ses/src/runtimeConfig.shared.ts | 4 +- clients/client-ses/src/runtimeConfig.ts | 8 +- clients/client-ses/src/runtimeExtensions.ts | 2 +- clients/client-ses/src/schemas/schemas_0.ts | 2 +- clients/client-sesv2/package.json | 12 +- clients/client-sesv2/src/SESv2.ts | 4 +- clients/client-sesv2/src/SESv2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 8 +- .../src/commands/BatchGetMetricDataCommand.ts | 6 +- .../src/commands/CancelExportJobCommand.ts | 6 +- .../commands/CreateConfigurationSetCommand.ts | 6 +- ...ConfigurationSetEventDestinationCommand.ts | 6 +- .../src/commands/CreateContactCommand.ts | 6 +- .../src/commands/CreateContactListCommand.ts | 6 +- ...eCustomVerificationEmailTemplateCommand.ts | 6 +- .../commands/CreateDedicatedIpPoolCommand.ts | 6 +- .../CreateDeliverabilityTestReportCommand.ts | 6 +- .../commands/CreateEmailIdentityCommand.ts | 6 +- .../CreateEmailIdentityPolicyCommand.ts | 6 +- .../commands/CreateEmailTemplateCommand.ts | 6 +- .../src/commands/CreateExportJobCommand.ts | 6 +- .../src/commands/CreateImportJobCommand.ts | 6 +- .../CreateMultiRegionEndpointCommand.ts | 6 +- .../src/commands/CreateTenantCommand.ts | 6 +- .../CreateTenantResourceAssociationCommand.ts | 9 +- .../commands/DeleteConfigurationSetCommand.ts | 6 +- ...ConfigurationSetEventDestinationCommand.ts | 6 +- .../src/commands/DeleteContactCommand.ts | 6 +- .../src/commands/DeleteContactListCommand.ts | 6 +- ...eCustomVerificationEmailTemplateCommand.ts | 6 +- .../commands/DeleteDedicatedIpPoolCommand.ts | 6 +- .../commands/DeleteEmailIdentityCommand.ts | 6 +- .../DeleteEmailIdentityPolicyCommand.ts | 6 +- .../commands/DeleteEmailTemplateCommand.ts | 6 +- .../DeleteMultiRegionEndpointCommand.ts | 6 +- .../DeleteSuppressedDestinationCommand.ts | 6 +- .../src/commands/DeleteTenantCommand.ts | 6 +- .../DeleteTenantResourceAssociationCommand.ts | 9 +- .../src/commands/GetAccountCommand.ts | 6 +- .../commands/GetBlacklistReportsCommand.ts | 6 +- .../commands/GetConfigurationSetCommand.ts | 6 +- ...onfigurationSetEventDestinationsCommand.ts | 6 +- .../src/commands/GetContactCommand.ts | 6 +- .../src/commands/GetContactListCommand.ts | 6 +- ...tCustomVerificationEmailTemplateCommand.ts | 6 +- .../src/commands/GetDedicatedIpCommand.ts | 6 +- .../src/commands/GetDedicatedIpPoolCommand.ts | 6 +- .../src/commands/GetDedicatedIpsCommand.ts | 6 +- ...etDeliverabilityDashboardOptionsCommand.ts | 6 +- .../GetDeliverabilityTestReportCommand.ts | 6 +- .../GetDomainDeliverabilityCampaignCommand.ts | 9 +- .../GetDomainStatisticsReportCommand.ts | 6 +- .../src/commands/GetEmailIdentityCommand.ts | 6 +- .../GetEmailIdentityPoliciesCommand.ts | 6 +- .../src/commands/GetEmailTemplateCommand.ts | 6 +- .../src/commands/GetExportJobCommand.ts | 6 +- .../src/commands/GetImportJobCommand.ts | 6 +- .../src/commands/GetMessageInsightsCommand.ts | 6 +- .../commands/GetMultiRegionEndpointCommand.ts | 6 +- .../commands/GetReputationEntityCommand.ts | 6 +- .../GetSuppressedDestinationCommand.ts | 6 +- .../src/commands/GetTenantCommand.ts | 6 +- .../commands/ListConfigurationSetsCommand.ts | 6 +- .../src/commands/ListContactListsCommand.ts | 6 +- .../src/commands/ListContactsCommand.ts | 6 +- ...CustomVerificationEmailTemplatesCommand.ts | 6 +- .../commands/ListDedicatedIpPoolsCommand.ts | 6 +- .../ListDeliverabilityTestReportsCommand.ts | 6 +- ...istDomainDeliverabilityCampaignsCommand.ts | 6 +- .../commands/ListEmailIdentitiesCommand.ts | 6 +- .../src/commands/ListEmailTemplatesCommand.ts | 6 +- .../src/commands/ListExportJobsCommand.ts | 6 +- .../src/commands/ListImportJobsCommand.ts | 6 +- .../ListMultiRegionEndpointsCommand.ts | 6 +- .../commands/ListRecommendationsCommand.ts | 6 +- .../commands/ListReputationEntitiesCommand.ts | 6 +- .../commands/ListResourceTenantsCommand.ts | 6 +- .../ListSuppressedDestinationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTenantResourcesCommand.ts | 6 +- .../src/commands/ListTenantsCommand.ts | 6 +- ...countDedicatedIpWarmupAttributesCommand.ts | 6 +- .../src/commands/PutAccountDetailsCommand.ts | 6 +- .../PutAccountSendingAttributesCommand.ts | 6 +- .../PutAccountSuppressionAttributesCommand.ts | 9 +- .../PutAccountVdmAttributesCommand.ts | 6 +- ...ConfigurationSetArchivingOptionsCommand.ts | 6 +- ...tConfigurationSetDeliveryOptionsCommand.ts | 6 +- ...onfigurationSetReputationOptionsCommand.ts | 6 +- ...utConfigurationSetSendingOptionsCommand.ts | 6 +- ...nfigurationSetSuppressionOptionsCommand.ts | 6 +- ...tConfigurationSetTrackingOptionsCommand.ts | 6 +- .../PutConfigurationSetVdmOptionsCommand.ts | 6 +- .../commands/PutDedicatedIpInPoolCommand.ts | 6 +- ...DedicatedIpPoolScalingAttributesCommand.ts | 6 +- .../PutDedicatedIpWarmupAttributesCommand.ts | 6 +- ...PutDeliverabilityDashboardOptionCommand.ts | 9 +- ...entityConfigurationSetAttributesCommand.ts | 6 +- .../PutEmailIdentityDkimAttributesCommand.ts | 6 +- ...ailIdentityDkimSigningAttributesCommand.ts | 6 +- ...tEmailIdentityFeedbackAttributesCommand.ts | 6 +- ...tEmailIdentityMailFromAttributesCommand.ts | 6 +- .../PutSuppressedDestinationCommand.ts | 6 +- .../src/commands/SendBulkEmailCommand.ts | 6 +- .../SendCustomVerificationEmailCommand.ts | 6 +- .../src/commands/SendEmailCommand.ts | 8 +- .../src/commands/TagResourceCommand.ts | 6 +- .../TestRenderEmailTemplateCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...ConfigurationSetEventDestinationCommand.ts | 6 +- .../src/commands/UpdateContactCommand.ts | 6 +- .../src/commands/UpdateContactListCommand.ts | 6 +- ...eCustomVerificationEmailTemplateCommand.ts | 6 +- .../UpdateEmailIdentityPolicyCommand.ts | 6 +- .../commands/UpdateEmailTemplateCommand.ts | 6 +- ...ationEntityCustomerManagedStatusCommand.ts | 6 +- .../UpdateReputationEntityPolicyCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SESv2ServiceException.ts | 2 +- clients/client-sesv2/src/models/errors.ts | 2 +- .../pagination/GetDedicatedIpsPaginator.ts | 2 +- .../client-sesv2/src/pagination/Interfaces.ts | 2 +- .../ListConfigurationSetsPaginator.ts | 2 +- .../pagination/ListContactListsPaginator.ts | 2 +- .../src/pagination/ListContactsPaginator.ts | 2 +- ...stomVerificationEmailTemplatesPaginator.ts | 2 +- .../ListDedicatedIpPoolsPaginator.ts | 2 +- .../ListDeliverabilityTestReportsPaginator.ts | 2 +- ...tDomainDeliverabilityCampaignsPaginator.ts | 2 +- .../ListEmailIdentitiesPaginator.ts | 2 +- .../pagination/ListEmailTemplatesPaginator.ts | 2 +- .../src/pagination/ListExportJobsPaginator.ts | 2 +- .../src/pagination/ListImportJobsPaginator.ts | 2 +- .../ListMultiRegionEndpointsPaginator.ts | 2 +- .../ListRecommendationsPaginator.ts | 2 +- .../ListReputationEntitiesPaginator.ts | 2 +- .../ListResourceTenantsPaginator.ts | 2 +- .../ListSuppressedDestinationsPaginator.ts | 2 +- .../ListTenantResourcesPaginator.ts | 2 +- .../src/pagination/ListTenantsPaginator.ts | 2 +- .../client-sesv2/src/runtimeConfig.browser.ts | 7 +- .../client-sesv2/src/runtimeConfig.native.ts | 2 +- .../client-sesv2/src/runtimeConfig.shared.ts | 4 +- clients/client-sesv2/src/runtimeConfig.ts | 8 +- clients/client-sesv2/src/runtimeExtensions.ts | 2 +- clients/client-sesv2/src/schemas/schemas_0.ts | 2 +- clients/client-sfn/package.json | 12 +- clients/client-sfn/src/SFN.ts | 4 +- clients/client-sfn/src/SFNClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateActivityCommand.ts | 6 +- .../CreateStateMachineAliasCommand.ts | 6 +- .../src/commands/CreateStateMachineCommand.ts | 6 +- .../src/commands/DeleteActivityCommand.ts | 6 +- .../DeleteStateMachineAliasCommand.ts | 6 +- .../src/commands/DeleteStateMachineCommand.ts | 6 +- .../DeleteStateMachineVersionCommand.ts | 6 +- .../src/commands/DescribeActivityCommand.ts | 6 +- .../src/commands/DescribeExecutionCommand.ts | 6 +- .../src/commands/DescribeMapRunCommand.ts | 6 +- .../DescribeStateMachineAliasCommand.ts | 6 +- .../commands/DescribeStateMachineCommand.ts | 6 +- ...DescribeStateMachineForExecutionCommand.ts | 6 +- .../src/commands/GetActivityTaskCommand.ts | 6 +- .../commands/GetExecutionHistoryCommand.ts | 6 +- .../src/commands/ListActivitiesCommand.ts | 6 +- .../src/commands/ListExecutionsCommand.ts | 6 +- .../src/commands/ListMapRunsCommand.ts | 6 +- .../ListStateMachineAliasesCommand.ts | 6 +- .../ListStateMachineVersionsCommand.ts | 6 +- .../src/commands/ListStateMachinesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../PublishStateMachineVersionCommand.ts | 6 +- .../src/commands/RedriveExecutionCommand.ts | 6 +- .../src/commands/SendTaskFailureCommand.ts | 6 +- .../src/commands/SendTaskHeartbeatCommand.ts | 6 +- .../src/commands/SendTaskSuccessCommand.ts | 6 +- .../src/commands/StartExecutionCommand.ts | 6 +- .../src/commands/StartSyncExecutionCommand.ts | 6 +- .../src/commands/StopExecutionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TestStateCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateMapRunCommand.ts | 6 +- .../UpdateStateMachineAliasCommand.ts | 6 +- .../src/commands/UpdateStateMachineCommand.ts | 6 +- .../ValidateStateMachineDefinitionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-sfn/src/extensionConfiguration.ts | 8 +- .../src/models/SFNServiceException.ts | 2 +- clients/client-sfn/src/models/errors.ts | 2 +- .../GetExecutionHistoryPaginator.ts | 2 +- .../client-sfn/src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListActivitiesPaginator.ts | 2 +- .../src/pagination/ListExecutionsPaginator.ts | 2 +- .../src/pagination/ListMapRunsPaginator.ts | 2 +- .../pagination/ListStateMachinesPaginator.ts | 2 +- .../client-sfn/src/runtimeConfig.browser.ts | 7 +- .../client-sfn/src/runtimeConfig.native.ts | 2 +- .../client-sfn/src/runtimeConfig.shared.ts | 4 +- clients/client-sfn/src/runtimeConfig.ts | 8 +- clients/client-sfn/src/runtimeExtensions.ts | 2 +- clients/client-sfn/src/schemas/schemas_0.ts | 2 +- clients/client-shield/package.json | 12 +- clients/client-shield/src/Shield.ts | 4 +- clients/client-shield/src/ShieldClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AssociateDRTLogBucketCommand.ts | 6 +- .../src/commands/AssociateDRTRoleCommand.ts | 6 +- .../commands/AssociateHealthCheckCommand.ts | 6 +- ...ociateProactiveEngagementDetailsCommand.ts | 6 +- .../src/commands/CreateProtectionCommand.ts | 6 +- .../commands/CreateProtectionGroupCommand.ts | 6 +- .../src/commands/CreateSubscriptionCommand.ts | 6 +- .../src/commands/DeleteProtectionCommand.ts | 6 +- .../commands/DeleteProtectionGroupCommand.ts | 6 +- .../src/commands/DeleteSubscriptionCommand.ts | 6 +- .../src/commands/DescribeAttackCommand.ts | 6 +- .../DescribeAttackStatisticsCommand.ts | 6 +- .../src/commands/DescribeDRTAccessCommand.ts | 6 +- ...DescribeEmergencyContactSettingsCommand.ts | 9 +- .../src/commands/DescribeProtectionCommand.ts | 6 +- .../DescribeProtectionGroupCommand.ts | 6 +- .../commands/DescribeSubscriptionCommand.ts | 6 +- ...pplicationLayerAutomaticResponseCommand.ts | 6 +- .../DisableProactiveEngagementCommand.ts | 6 +- .../DisassociateDRTLogBucketCommand.ts | 6 +- .../commands/DisassociateDRTRoleCommand.ts | 6 +- .../DisassociateHealthCheckCommand.ts | 6 +- ...pplicationLayerAutomaticResponseCommand.ts | 6 +- .../EnableProactiveEngagementCommand.ts | 6 +- .../commands/GetSubscriptionStateCommand.ts | 6 +- .../src/commands/ListAttacksCommand.ts | 6 +- .../commands/ListProtectionGroupsCommand.ts | 6 +- .../src/commands/ListProtectionsCommand.ts | 6 +- .../ListResourcesInProtectionGroupCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- ...pplicationLayerAutomaticResponseCommand.ts | 6 +- .../UpdateEmergencyContactSettingsCommand.ts | 6 +- .../commands/UpdateProtectionGroupCommand.ts | 6 +- .../src/commands/UpdateSubscriptionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/ShieldServiceException.ts | 2 +- clients/client-shield/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAttacksPaginator.ts | 2 +- .../ListProtectionGroupsPaginator.ts | 2 +- .../pagination/ListProtectionsPaginator.ts | 2 +- ...ListResourcesInProtectionGroupPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-shield/src/runtimeConfig.native.ts | 2 +- .../client-shield/src/runtimeConfig.shared.ts | 4 +- clients/client-shield/src/runtimeConfig.ts | 8 +- .../client-shield/src/runtimeExtensions.ts | 2 +- .../client-shield/src/schemas/schemas_0.ts | 2 +- clients/client-signer/package.json | 12 +- clients/client-signer/src/Signer.ts | 4 +- clients/client-signer/src/SignerClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AddProfilePermissionCommand.ts | 6 +- .../commands/CancelSigningProfileCommand.ts | 6 +- .../src/commands/DescribeSigningJobCommand.ts | 6 +- .../commands/GetRevocationStatusCommand.ts | 6 +- .../src/commands/GetSigningPlatformCommand.ts | 6 +- .../src/commands/GetSigningProfileCommand.ts | 6 +- .../commands/ListProfilePermissionsCommand.ts | 6 +- .../src/commands/ListSigningJobsCommand.ts | 6 +- .../commands/ListSigningPlatformsCommand.ts | 6 +- .../commands/ListSigningProfilesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutSigningProfileCommand.ts | 6 +- .../RemoveProfilePermissionCommand.ts | 6 +- .../src/commands/RevokeSignatureCommand.ts | 6 +- .../commands/RevokeSigningProfileCommand.ts | 6 +- .../src/commands/SignPayloadCommand.ts | 6 +- .../src/commands/StartSigningJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SignerServiceException.ts | 2 +- clients/client-signer/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListSigningJobsPaginator.ts | 2 +- .../ListSigningPlatformsPaginator.ts | 2 +- .../ListSigningProfilesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-signer/src/runtimeConfig.native.ts | 2 +- .../client-signer/src/runtimeConfig.shared.ts | 4 +- clients/client-signer/src/runtimeConfig.ts | 8 +- .../client-signer/src/runtimeExtensions.ts | 2 +- .../client-signer/src/schemas/schemas_0.ts | 2 +- clients/client-signin/package.json | 12 +- clients/client-signin/src/Signin.ts | 4 +- clients/client-signin/src/SigninClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateOAuth2TokenCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SigninServiceException.ts | 2 +- clients/client-signin/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-signin/src/runtimeConfig.native.ts | 2 +- .../client-signin/src/runtimeConfig.shared.ts | 4 +- clients/client-signin/src/runtimeConfig.ts | 8 +- .../client-signin/src/runtimeExtensions.ts | 2 +- .../client-signin/src/schemas/schemas_0.ts | 7 +- clients/client-simspaceweaver/package.json | 12 +- .../src/SimSpaceWeaver.ts | 4 +- .../src/SimSpaceWeaverClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateSnapshotCommand.ts | 10 +- .../src/commands/DeleteAppCommand.ts | 10 +- .../src/commands/DeleteSimulationCommand.ts | 10 +- .../src/commands/DescribeAppCommand.ts | 10 +- .../src/commands/DescribeSimulationCommand.ts | 10 +- .../src/commands/ListAppsCommand.ts | 10 +- .../src/commands/ListSimulationsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/StartAppCommand.ts | 10 +- .../src/commands/StartClockCommand.ts | 10 +- .../src/commands/StartSimulationCommand.ts | 10 +- .../src/commands/StopAppCommand.ts | 10 +- .../src/commands/StopClockCommand.ts | 10 +- .../src/commands/StopSimulationCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/SimSpaceWeaverServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAppsPaginator.ts | 2 +- .../pagination/ListSimulationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/SnowDeviceManagement.ts | 4 +- .../src/SnowDeviceManagementClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelTaskCommand.ts | 6 +- .../src/commands/CreateTaskCommand.ts | 6 +- .../src/commands/DescribeDeviceCommand.ts | 6 +- .../DescribeDeviceEc2InstancesCommand.ts | 6 +- .../src/commands/DescribeExecutionCommand.ts | 6 +- .../src/commands/DescribeTaskCommand.ts | 6 +- .../commands/ListDeviceResourcesCommand.ts | 6 +- .../src/commands/ListDevicesCommand.ts | 6 +- .../src/commands/ListExecutionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTasksCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../SnowDeviceManagementServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDeviceResourcesPaginator.ts | 2 +- .../src/pagination/ListDevicesPaginator.ts | 2 +- .../src/pagination/ListExecutionsPaginator.ts | 2 +- .../src/pagination/ListTasksPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-snowball/package.json | 12 +- clients/client-snowball/src/Snowball.ts | 4 +- clients/client-snowball/src/SnowballClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelClusterCommand.ts | 6 +- .../src/commands/CancelJobCommand.ts | 6 +- .../src/commands/CreateAddressCommand.ts | 6 +- .../src/commands/CreateClusterCommand.ts | 6 +- .../src/commands/CreateJobCommand.ts | 6 +- .../commands/CreateLongTermPricingCommand.ts | 6 +- .../CreateReturnShippingLabelCommand.ts | 6 +- .../src/commands/DescribeAddressCommand.ts | 6 +- .../src/commands/DescribeAddressesCommand.ts | 6 +- .../src/commands/DescribeClusterCommand.ts | 6 +- .../src/commands/DescribeJobCommand.ts | 6 +- .../DescribeReturnShippingLabelCommand.ts | 6 +- .../src/commands/GetJobManifestCommand.ts | 6 +- .../src/commands/GetJobUnlockCodeCommand.ts | 6 +- .../src/commands/GetSnowballUsageCommand.ts | 6 +- .../src/commands/GetSoftwareUpdatesCommand.ts | 6 +- .../src/commands/ListClusterJobsCommand.ts | 6 +- .../src/commands/ListClustersCommand.ts | 6 +- .../commands/ListCompatibleImagesCommand.ts | 6 +- .../src/commands/ListJobsCommand.ts | 6 +- .../commands/ListLongTermPricingCommand.ts | 6 +- .../commands/ListPickupLocationsCommand.ts | 6 +- .../commands/ListServiceVersionsCommand.ts | 6 +- .../src/commands/UpdateClusterCommand.ts | 6 +- .../src/commands/UpdateJobCommand.ts | 6 +- .../commands/UpdateJobShipmentStateCommand.ts | 6 +- .../commands/UpdateLongTermPricingCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SnowballServiceException.ts | 2 +- clients/client-snowball/src/models/errors.ts | 2 +- .../pagination/DescribeAddressesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListClusterJobsPaginator.ts | 2 +- .../src/pagination/ListClustersPaginator.ts | 2 +- .../ListCompatibleImagesPaginator.ts | 2 +- .../src/pagination/ListJobsPaginator.ts | 2 +- .../ListLongTermPricingPaginator.ts | 2 +- .../ListPickupLocationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-snowball/src/runtimeConfig.ts | 8 +- .../client-snowball/src/runtimeExtensions.ts | 2 +- .../client-snowball/src/schemas/schemas_0.ts | 2 +- clients/client-sns/package.json | 12 +- clients/client-sns/src/SNS.ts | 4 +- clients/client-sns/src/SNSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddPermissionCommand.ts | 6 +- .../CheckIfPhoneNumberIsOptedOutCommand.ts | 6 +- .../commands/ConfirmSubscriptionCommand.ts | 6 +- .../CreatePlatformApplicationCommand.ts | 6 +- .../commands/CreatePlatformEndpointCommand.ts | 6 +- .../CreateSMSSandboxPhoneNumberCommand.ts | 6 +- .../src/commands/CreateTopicCommand.ts | 6 +- .../src/commands/DeleteEndpointCommand.ts | 6 +- .../DeletePlatformApplicationCommand.ts | 6 +- .../DeleteSMSSandboxPhoneNumberCommand.ts | 6 +- .../src/commands/DeleteTopicCommand.ts | 6 +- .../GetDataProtectionPolicyCommand.ts | 6 +- .../commands/GetEndpointAttributesCommand.ts | 6 +- ...GetPlatformApplicationAttributesCommand.ts | 9 +- .../src/commands/GetSMSAttributesCommand.ts | 6 +- .../GetSMSSandboxAccountStatusCommand.ts | 6 +- .../GetSubscriptionAttributesCommand.ts | 6 +- .../src/commands/GetTopicAttributesCommand.ts | 6 +- ...stEndpointsByPlatformApplicationCommand.ts | 6 +- .../commands/ListOriginationNumbersCommand.ts | 6 +- .../ListPhoneNumbersOptedOutCommand.ts | 6 +- .../ListPlatformApplicationsCommand.ts | 6 +- .../ListSMSSandboxPhoneNumbersCommand.ts | 6 +- .../ListSubscriptionsByTopicCommand.ts | 6 +- .../src/commands/ListSubscriptionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTopicsCommand.ts | 6 +- .../src/commands/OptInPhoneNumberCommand.ts | 6 +- .../src/commands/PublishBatchCommand.ts | 6 +- .../client-sns/src/commands/PublishCommand.ts | 6 +- .../PutDataProtectionPolicyCommand.ts | 6 +- .../src/commands/RemovePermissionCommand.ts | 6 +- .../commands/SetEndpointAttributesCommand.ts | 6 +- ...SetPlatformApplicationAttributesCommand.ts | 6 +- .../src/commands/SetSMSAttributesCommand.ts | 6 +- .../SetSubscriptionAttributesCommand.ts | 6 +- .../src/commands/SetTopicAttributesCommand.ts | 6 +- .../src/commands/SubscribeCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UnsubscribeCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../VerifySMSSandboxPhoneNumberCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-sns/src/extensionConfiguration.ts | 8 +- .../src/models/SNSServiceException.ts | 2 +- clients/client-sns/src/models/errors.ts | 2 +- .../client-sns/src/pagination/Interfaces.ts | 2 +- ...EndpointsByPlatformApplicationPaginator.ts | 2 +- .../ListOriginationNumbersPaginator.ts | 2 +- .../ListPhoneNumbersOptedOutPaginator.ts | 2 +- .../ListPlatformApplicationsPaginator.ts | 2 +- .../ListSMSSandboxPhoneNumbersPaginator.ts | 2 +- .../ListSubscriptionsByTopicPaginator.ts | 2 +- .../pagination/ListSubscriptionsPaginator.ts | 2 +- .../src/pagination/ListTopicsPaginator.ts | 2 +- .../client-sns/src/runtimeConfig.browser.ts | 7 +- .../client-sns/src/runtimeConfig.native.ts | 2 +- .../client-sns/src/runtimeConfig.shared.ts | 4 +- clients/client-sns/src/runtimeConfig.ts | 8 +- clients/client-sns/src/runtimeExtensions.ts | 2 +- clients/client-sns/src/schemas/schemas_0.ts | 2 +- clients/client-socialmessaging/package.json | 12 +- .../src/SocialMessaging.ts | 4 +- .../src/SocialMessagingClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...AssociateWhatsAppBusinessAccountCommand.ts | 10 +- .../CreateWhatsAppMessageTemplateCommand.ts | 10 +- ...atsAppMessageTemplateFromLibraryCommand.ts | 10 +- ...eateWhatsAppMessageTemplateMediaCommand.ts | 13 +- .../DeleteWhatsAppMessageMediaCommand.ts | 10 +- .../DeleteWhatsAppMessageTemplateCommand.ts | 10 +- ...associateWhatsAppBusinessAccountCommand.ts | 10 +- ...GetLinkedWhatsAppBusinessAccountCommand.ts | 10 +- ...atsAppBusinessAccountPhoneNumberCommand.ts | 10 +- .../GetWhatsAppMessageMediaCommand.ts | 10 +- .../GetWhatsAppMessageTemplateCommand.ts | 10 +- ...stLinkedWhatsAppBusinessAccountsCommand.ts | 13 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../ListWhatsAppMessageTemplatesCommand.ts | 10 +- .../ListWhatsAppTemplateLibraryCommand.ts | 10 +- .../PostWhatsAppMessageMediaCommand.ts | 10 +- ...BusinessAccountEventDestinationsCommand.ts | 10 +- .../commands/SendWhatsAppMessageCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../UpdateWhatsAppMessageTemplateCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/SocialMessagingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...LinkedWhatsAppBusinessAccountsPaginator.ts | 2 +- .../ListWhatsAppMessageTemplatesPaginator.ts | 2 +- .../ListWhatsAppTemplateLibraryPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-sqs/package.json | 12 +- clients/client-sqs/src/SQS.ts | 4 +- clients/client-sqs/src/SQSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddPermissionCommand.ts | 6 +- .../commands/CancelMessageMoveTaskCommand.ts | 6 +- .../ChangeMessageVisibilityBatchCommand.ts | 6 +- .../ChangeMessageVisibilityCommand.ts | 6 +- .../src/commands/CreateQueueCommand.ts | 6 +- .../src/commands/DeleteMessageBatchCommand.ts | 6 +- .../src/commands/DeleteMessageCommand.ts | 6 +- .../src/commands/DeleteQueueCommand.ts | 6 +- .../src/commands/GetQueueAttributesCommand.ts | 6 +- .../src/commands/GetQueueUrlCommand.ts | 6 +- .../ListDeadLetterSourceQueuesCommand.ts | 6 +- .../commands/ListMessageMoveTasksCommand.ts | 6 +- .../src/commands/ListQueueTagsCommand.ts | 6 +- .../src/commands/ListQueuesCommand.ts | 6 +- .../src/commands/PurgeQueueCommand.ts | 6 +- .../src/commands/ReceiveMessageCommand.ts | 6 +- .../src/commands/RemovePermissionCommand.ts | 6 +- .../src/commands/SendMessageBatchCommand.ts | 6 +- .../src/commands/SendMessageCommand.ts | 6 +- .../src/commands/SetQueueAttributesCommand.ts | 6 +- .../commands/StartMessageMoveTaskCommand.ts | 6 +- .../src/commands/TagQueueCommand.ts | 6 +- .../src/commands/UntagQueueCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-sqs/src/extensionConfiguration.ts | 8 +- .../src/models/SQSServiceException.ts | 2 +- clients/client-sqs/src/models/errors.ts | 2 +- .../client-sqs/src/pagination/Interfaces.ts | 2 +- .../ListDeadLetterSourceQueuesPaginator.ts | 2 +- .../src/pagination/ListQueuesPaginator.ts | 2 +- .../client-sqs/src/runtimeConfig.browser.ts | 7 +- .../client-sqs/src/runtimeConfig.native.ts | 2 +- .../client-sqs/src/runtimeConfig.shared.ts | 4 +- clients/client-sqs/src/runtimeConfig.ts | 8 +- clients/client-sqs/src/runtimeExtensions.ts | 2 +- clients/client-sqs/src/schemas/schemas_0.ts | 2 +- clients/client-ssm-contacts/package.json | 12 +- .../client-ssm-contacts/src/SSMContacts.ts | 4 +- .../src/SSMContactsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AcceptPageCommand.ts | 6 +- .../commands/ActivateContactChannelCommand.ts | 6 +- .../commands/CreateContactChannelCommand.ts | 6 +- .../src/commands/CreateContactCommand.ts | 6 +- .../src/commands/CreateRotationCommand.ts | 6 +- .../commands/CreateRotationOverrideCommand.ts | 6 +- .../DeactivateContactChannelCommand.ts | 6 +- .../commands/DeleteContactChannelCommand.ts | 6 +- .../src/commands/DeleteContactCommand.ts | 6 +- .../src/commands/DeleteRotationCommand.ts | 6 +- .../commands/DeleteRotationOverrideCommand.ts | 6 +- .../src/commands/DescribeEngagementCommand.ts | 6 +- .../src/commands/DescribePageCommand.ts | 6 +- .../src/commands/GetContactChannelCommand.ts | 6 +- .../src/commands/GetContactCommand.ts | 6 +- .../src/commands/GetContactPolicyCommand.ts | 6 +- .../src/commands/GetRotationCommand.ts | 6 +- .../commands/GetRotationOverrideCommand.ts | 6 +- .../commands/ListContactChannelsCommand.ts | 6 +- .../src/commands/ListContactsCommand.ts | 6 +- .../src/commands/ListEngagementsCommand.ts | 6 +- .../src/commands/ListPageReceiptsCommand.ts | 6 +- .../commands/ListPageResolutionsCommand.ts | 6 +- .../src/commands/ListPagesByContactCommand.ts | 6 +- .../commands/ListPagesByEngagementCommand.ts | 6 +- .../ListPreviewRotationShiftsCommand.ts | 6 +- .../commands/ListRotationOverridesCommand.ts | 6 +- .../src/commands/ListRotationShiftsCommand.ts | 6 +- .../src/commands/ListRotationsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutContactPolicyCommand.ts | 6 +- .../src/commands/SendActivationCodeCommand.ts | 6 +- .../src/commands/StartEngagementCommand.ts | 6 +- .../src/commands/StopEngagementCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateContactChannelCommand.ts | 6 +- .../src/commands/UpdateContactCommand.ts | 6 +- .../src/commands/UpdateRotationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SSMContactsServiceException.ts | 2 +- .../client-ssm-contacts/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListContactChannelsPaginator.ts | 2 +- .../src/pagination/ListContactsPaginator.ts | 2 +- .../pagination/ListEngagementsPaginator.ts | 2 +- .../pagination/ListPageReceiptsPaginator.ts | 2 +- .../ListPageResolutionsPaginator.ts | 2 +- .../pagination/ListPagesByContactPaginator.ts | 2 +- .../ListPagesByEngagementPaginator.ts | 2 +- .../ListPreviewRotationShiftsPaginator.ts | 2 +- .../ListRotationOverridesPaginator.ts | 2 +- .../pagination/ListRotationShiftsPaginator.ts | 2 +- .../src/pagination/ListRotationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-ssm-contacts/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ssm-guiconnect/package.json | 12 +- .../src/SSMGuiConnect.ts | 4 +- .../src/SSMGuiConnectClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...teConnectionRecordingPreferencesCommand.ts | 6 +- ...etConnectionRecordingPreferencesCommand.ts | 6 +- ...teConnectionRecordingPreferencesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/SSMGuiConnectServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ssm-incidents/package.json | 12 +- .../client-ssm-incidents/src/SSMIncidents.ts | 4 +- .../src/SSMIncidentsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchGetIncidentFindingsCommand.ts | 6 +- .../commands/CreateReplicationSetCommand.ts | 6 +- .../src/commands/CreateResponsePlanCommand.ts | 6 +- .../commands/CreateTimelineEventCommand.ts | 6 +- .../commands/DeleteIncidentRecordCommand.ts | 6 +- .../commands/DeleteReplicationSetCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DeleteResponsePlanCommand.ts | 6 +- .../commands/DeleteTimelineEventCommand.ts | 6 +- .../src/commands/GetIncidentRecordCommand.ts | 6 +- .../src/commands/GetReplicationSetCommand.ts | 6 +- .../commands/GetResourcePoliciesCommand.ts | 6 +- .../src/commands/GetResponsePlanCommand.ts | 6 +- .../src/commands/GetTimelineEventCommand.ts | 6 +- .../commands/ListIncidentFindingsCommand.ts | 6 +- .../commands/ListIncidentRecordsCommand.ts | 6 +- .../src/commands/ListRelatedItemsCommand.ts | 6 +- .../commands/ListReplicationSetsCommand.ts | 6 +- .../src/commands/ListResponsePlansCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTimelineEventsCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/StartIncidentCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateDeletionProtectionCommand.ts | 6 +- .../commands/UpdateIncidentRecordCommand.ts | 6 +- .../src/commands/UpdateRelatedItemsCommand.ts | 6 +- .../commands/UpdateReplicationSetCommand.ts | 6 +- .../src/commands/UpdateResponsePlanCommand.ts | 6 +- .../commands/UpdateTimelineEventCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/SSMIncidentsServiceException.ts | 2 +- .../client-ssm-incidents/src/models/errors.ts | 2 +- .../GetResourcePoliciesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListIncidentFindingsPaginator.ts | 2 +- .../ListIncidentRecordsPaginator.ts | 2 +- .../pagination/ListRelatedItemsPaginator.ts | 2 +- .../ListReplicationSetsPaginator.ts | 2 +- .../pagination/ListResponsePlansPaginator.ts | 2 +- .../pagination/ListTimelineEventsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-ssm-incidents/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ssm-quicksetup/package.json | 12 +- .../src/SSMQuickSetup.ts | 4 +- .../src/SSMQuickSetupClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateConfigurationManagerCommand.ts | 6 +- .../DeleteConfigurationManagerCommand.ts | 6 +- .../src/commands/GetConfigurationCommand.ts | 6 +- .../GetConfigurationManagerCommand.ts | 6 +- .../src/commands/GetServiceSettingsCommand.ts | 6 +- .../ListConfigurationManagersCommand.ts | 6 +- .../src/commands/ListConfigurationsCommand.ts | 6 +- .../commands/ListQuickSetupTypesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateConfigurationDefinitionCommand.ts | 6 +- .../UpdateConfigurationManagerCommand.ts | 6 +- .../commands/UpdateServiceSettingsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/SSMQuickSetupServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListConfigurationManagersPaginator.ts | 2 +- .../pagination/ListConfigurationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-ssm-sap/package.json | 12 +- clients/client-ssm-sap/src/SsmSap.ts | 4 +- clients/client-ssm-sap/src/SsmSapClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../DeleteResourcePermissionCommand.ts | 6 +- .../commands/DeregisterApplicationCommand.ts | 6 +- .../src/commands/GetApplicationCommand.ts | 6 +- .../src/commands/GetComponentCommand.ts | 6 +- .../GetConfigurationCheckOperationCommand.ts | 6 +- .../src/commands/GetDatabaseCommand.ts | 6 +- .../src/commands/GetOperationCommand.ts | 6 +- .../commands/GetResourcePermissionCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- .../src/commands/ListComponentsCommand.ts | 6 +- ...istConfigurationCheckDefinitionsCommand.ts | 9 +- ...ListConfigurationCheckOperationsCommand.ts | 6 +- .../src/commands/ListDatabasesCommand.ts | 6 +- .../commands/ListOperationEventsCommand.ts | 6 +- .../src/commands/ListOperationsCommand.ts | 6 +- .../commands/ListSubCheckResultsCommand.ts | 6 +- .../ListSubCheckRuleResultsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/PutResourcePermissionCommand.ts | 6 +- .../commands/RegisterApplicationCommand.ts | 6 +- .../src/commands/StartApplicationCommand.ts | 6 +- .../StartApplicationRefreshCommand.ts | 6 +- .../StartConfigurationChecksCommand.ts | 6 +- .../src/commands/StopApplicationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateApplicationSettingsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SsmSapServiceException.ts | 2 +- clients/client-ssm-sap/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- .../src/pagination/ListComponentsPaginator.ts | 2 +- ...tConfigurationCheckDefinitionsPaginator.ts | 2 +- ...stConfigurationCheckOperationsPaginator.ts | 2 +- .../src/pagination/ListDatabasesPaginator.ts | 2 +- .../ListOperationEventsPaginator.ts | 2 +- .../src/pagination/ListOperationsPaginator.ts | 2 +- .../ListSubCheckResultsPaginator.ts | 2 +- .../ListSubCheckRuleResultsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-ssm-sap/src/runtimeConfig.ts | 8 +- .../client-ssm-sap/src/runtimeExtensions.ts | 2 +- .../client-ssm-sap/src/schemas/schemas_0.ts | 2 +- clients/client-ssm/package.json | 12 +- clients/client-ssm/src/SSM.ts | 4 +- clients/client-ssm/src/SSMClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AddTagsToResourceCommand.ts | 6 +- .../AssociateOpsItemRelatedItemCommand.ts | 6 +- .../src/commands/CancelCommandCommand.ts | 6 +- ...CancelMaintenanceWindowExecutionCommand.ts | 9 +- .../src/commands/CreateActivationCommand.ts | 6 +- .../commands/CreateAssociationBatchCommand.ts | 6 +- .../src/commands/CreateAssociationCommand.ts | 6 +- .../src/commands/CreateDocumentCommand.ts | 6 +- .../CreateMaintenanceWindowCommand.ts | 6 +- .../src/commands/CreateOpsItemCommand.ts | 6 +- .../src/commands/CreateOpsMetadataCommand.ts | 6 +- .../commands/CreatePatchBaselineCommand.ts | 6 +- .../commands/CreateResourceDataSyncCommand.ts | 6 +- .../src/commands/DeleteActivationCommand.ts | 6 +- .../src/commands/DeleteAssociationCommand.ts | 6 +- .../src/commands/DeleteDocumentCommand.ts | 6 +- .../src/commands/DeleteInventoryCommand.ts | 6 +- .../DeleteMaintenanceWindowCommand.ts | 6 +- .../src/commands/DeleteOpsItemCommand.ts | 6 +- .../src/commands/DeleteOpsMetadataCommand.ts | 6 +- .../src/commands/DeleteParameterCommand.ts | 6 +- .../src/commands/DeleteParametersCommand.ts | 6 +- .../commands/DeletePatchBaselineCommand.ts | 6 +- .../commands/DeleteResourceDataSyncCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../DeregisterManagedInstanceCommand.ts | 6 +- ...gisterPatchBaselineForPatchGroupCommand.ts | 6 +- ...isterTargetFromMaintenanceWindowCommand.ts | 6 +- ...egisterTaskFromMaintenanceWindowCommand.ts | 6 +- .../commands/DescribeActivationsCommand.ts | 6 +- .../commands/DescribeAssociationCommand.ts | 6 +- ...cribeAssociationExecutionTargetsCommand.ts | 6 +- .../DescribeAssociationExecutionsCommand.ts | 6 +- .../DescribeAutomationExecutionsCommand.ts | 6 +- ...DescribeAutomationStepExecutionsCommand.ts | 9 +- .../DescribeAvailablePatchesCommand.ts | 6 +- .../src/commands/DescribeDocumentCommand.ts | 6 +- .../DescribeDocumentPermissionCommand.ts | 6 +- ...ibeEffectiveInstanceAssociationsCommand.ts | 6 +- ...EffectivePatchesForPatchBaselineCommand.ts | 6 +- ...scribeInstanceAssociationsStatusCommand.ts | 6 +- .../DescribeInstanceInformationCommand.ts | 6 +- .../DescribeInstancePatchStatesCommand.ts | 6 +- ...InstancePatchStatesForPatchGroupCommand.ts | 6 +- .../DescribeInstancePatchesCommand.ts | 6 +- .../DescribeInstancePropertiesCommand.ts | 6 +- .../DescribeInventoryDeletionsCommand.ts | 6 +- ...ceWindowExecutionTaskInvocationsCommand.ts | 6 +- ...eMaintenanceWindowExecutionTasksCommand.ts | 6 +- ...cribeMaintenanceWindowExecutionsCommand.ts | 6 +- ...escribeMaintenanceWindowScheduleCommand.ts | 9 +- ...DescribeMaintenanceWindowTargetsCommand.ts | 9 +- .../DescribeMaintenanceWindowTasksCommand.ts | 6 +- .../DescribeMaintenanceWindowsCommand.ts | 6 +- ...cribeMaintenanceWindowsForTargetCommand.ts | 6 +- .../src/commands/DescribeOpsItemsCommand.ts | 6 +- .../src/commands/DescribeParametersCommand.ts | 6 +- .../commands/DescribePatchBaselinesCommand.ts | 6 +- .../DescribePatchGroupStateCommand.ts | 6 +- .../commands/DescribePatchGroupsCommand.ts | 6 +- .../DescribePatchPropertiesCommand.ts | 6 +- .../src/commands/DescribeSessionsCommand.ts | 6 +- .../DisassociateOpsItemRelatedItemCommand.ts | 6 +- .../src/commands/GetAccessTokenCommand.ts | 6 +- .../commands/GetAutomationExecutionCommand.ts | 6 +- .../src/commands/GetCalendarStateCommand.ts | 6 +- .../commands/GetCommandInvocationCommand.ts | 6 +- .../commands/GetConnectionStatusCommand.ts | 6 +- .../GetDefaultPatchBaselineCommand.ts | 6 +- ...ployablePatchSnapshotForInstanceCommand.ts | 6 +- .../src/commands/GetDocumentCommand.ts | 6 +- .../commands/GetExecutionPreviewCommand.ts | 6 +- .../src/commands/GetInventoryCommand.ts | 8 +- .../src/commands/GetInventorySchemaCommand.ts | 6 +- .../commands/GetMaintenanceWindowCommand.ts | 6 +- .../GetMaintenanceWindowExecutionCommand.ts | 6 +- ...etMaintenanceWindowExecutionTaskCommand.ts | 9 +- ...nceWindowExecutionTaskInvocationCommand.ts | 6 +- .../GetMaintenanceWindowTaskCommand.ts | 6 +- .../src/commands/GetOpsItemCommand.ts | 6 +- .../src/commands/GetOpsMetadataCommand.ts | 6 +- .../src/commands/GetOpsSummaryCommand.ts | 8 +- .../src/commands/GetParameterCommand.ts | 6 +- .../commands/GetParameterHistoryCommand.ts | 6 +- .../commands/GetParametersByPathCommand.ts | 6 +- .../src/commands/GetParametersCommand.ts | 6 +- .../src/commands/GetPatchBaselineCommand.ts | 6 +- .../GetPatchBaselineForPatchGroupCommand.ts | 6 +- .../commands/GetResourcePoliciesCommand.ts | 6 +- .../src/commands/GetServiceSettingCommand.ts | 8 +- .../commands/LabelParameterVersionCommand.ts | 6 +- .../ListAssociationVersionsCommand.ts | 6 +- .../src/commands/ListAssociationsCommand.ts | 6 +- .../commands/ListCommandInvocationsCommand.ts | 6 +- .../src/commands/ListCommandsCommand.ts | 6 +- .../commands/ListComplianceItemsCommand.ts | 6 +- .../ListComplianceSummariesCommand.ts | 6 +- .../ListDocumentMetadataHistoryCommand.ts | 6 +- .../commands/ListDocumentVersionsCommand.ts | 6 +- .../src/commands/ListDocumentsCommand.ts | 6 +- .../commands/ListInventoryEntriesCommand.ts | 6 +- .../src/commands/ListNodesCommand.ts | 6 +- .../src/commands/ListNodesSummaryCommand.ts | 6 +- .../src/commands/ListOpsItemEventsCommand.ts | 6 +- .../ListOpsItemRelatedItemsCommand.ts | 6 +- .../src/commands/ListOpsMetadataCommand.ts | 6 +- .../ListResourceComplianceSummariesCommand.ts | 6 +- .../commands/ListResourceDataSyncCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ModifyDocumentPermissionCommand.ts | 6 +- .../src/commands/PutComplianceItemsCommand.ts | 6 +- .../src/commands/PutInventoryCommand.ts | 6 +- .../src/commands/PutParameterCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../RegisterDefaultPatchBaselineCommand.ts | 6 +- ...gisterPatchBaselineForPatchGroupCommand.ts | 6 +- ...isterTargetWithMaintenanceWindowCommand.ts | 6 +- ...egisterTaskWithMaintenanceWindowCommand.ts | 9 +- .../commands/RemoveTagsFromResourceCommand.ts | 6 +- .../commands/ResetServiceSettingCommand.ts | 6 +- .../src/commands/ResumeSessionCommand.ts | 6 +- .../commands/SendAutomationSignalCommand.ts | 6 +- .../src/commands/SendCommandCommand.ts | 6 +- .../src/commands/StartAccessRequestCommand.ts | 6 +- .../commands/StartAssociationsOnceCommand.ts | 6 +- .../StartAutomationExecutionCommand.ts | 6 +- .../StartChangeRequestExecutionCommand.ts | 6 +- .../commands/StartExecutionPreviewCommand.ts | 6 +- .../src/commands/StartSessionCommand.ts | 6 +- .../StopAutomationExecutionCommand.ts | 6 +- .../src/commands/TerminateSessionCommand.ts | 6 +- .../UnlabelParameterVersionCommand.ts | 6 +- .../src/commands/UpdateAssociationCommand.ts | 6 +- .../UpdateAssociationStatusCommand.ts | 6 +- .../src/commands/UpdateDocumentCommand.ts | 6 +- .../UpdateDocumentDefaultVersionCommand.ts | 6 +- .../commands/UpdateDocumentMetadataCommand.ts | 6 +- .../UpdateMaintenanceWindowCommand.ts | 6 +- .../UpdateMaintenanceWindowTargetCommand.ts | 6 +- .../UpdateMaintenanceWindowTaskCommand.ts | 6 +- .../UpdateManagedInstanceRoleCommand.ts | 6 +- .../src/commands/UpdateOpsItemCommand.ts | 6 +- .../src/commands/UpdateOpsMetadataCommand.ts | 6 +- .../commands/UpdatePatchBaselineCommand.ts | 6 +- .../commands/UpdateResourceDataSyncCommand.ts | 6 +- .../commands/UpdateServiceSettingCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-ssm/src/extensionConfiguration.ts | 8 +- .../src/models/SSMServiceException.ts | 2 +- clients/client-ssm/src/models/errors.ts | 2 +- .../DescribeActivationsPaginator.ts | 2 +- ...ibeAssociationExecutionTargetsPaginator.ts | 2 +- .../DescribeAssociationExecutionsPaginator.ts | 2 +- .../DescribeAutomationExecutionsPaginator.ts | 2 +- ...scribeAutomationStepExecutionsPaginator.ts | 2 +- .../DescribeAvailablePatchesPaginator.ts | 2 +- ...eEffectiveInstanceAssociationsPaginator.ts | 2 +- ...fectivePatchesForPatchBaselinePaginator.ts | 2 +- ...ribeInstanceAssociationsStatusPaginator.ts | 2 +- .../DescribeInstanceInformationPaginator.ts | 2 +- ...stancePatchStatesForPatchGroupPaginator.ts | 2 +- .../DescribeInstancePatchStatesPaginator.ts | 2 +- .../DescribeInstancePatchesPaginator.ts | 2 +- .../DescribeInstancePropertiesPaginator.ts | 2 +- .../DescribeInventoryDeletionsPaginator.ts | 2 +- ...WindowExecutionTaskInvocationsPaginator.ts | 2 +- ...aintenanceWindowExecutionTasksPaginator.ts | 2 +- ...ibeMaintenanceWindowExecutionsPaginator.ts | 2 +- ...cribeMaintenanceWindowSchedulePaginator.ts | 2 +- ...scribeMaintenanceWindowTargetsPaginator.ts | 2 +- ...DescribeMaintenanceWindowTasksPaginator.ts | 2 +- ...ibeMaintenanceWindowsForTargetPaginator.ts | 2 +- .../DescribeMaintenanceWindowsPaginator.ts | 2 +- .../pagination/DescribeOpsItemsPaginator.ts | 2 +- .../pagination/DescribeParametersPaginator.ts | 2 +- .../DescribePatchBaselinesPaginator.ts | 2 +- .../DescribePatchGroupsPaginator.ts | 2 +- .../DescribePatchPropertiesPaginator.ts | 2 +- .../pagination/DescribeSessionsPaginator.ts | 2 +- .../src/pagination/GetInventoryPaginator.ts | 2 +- .../pagination/GetInventorySchemaPaginator.ts | 2 +- .../src/pagination/GetOpsSummaryPaginator.ts | 2 +- .../GetParameterHistoryPaginator.ts | 2 +- .../GetParametersByPathPaginator.ts | 2 +- .../GetResourcePoliciesPaginator.ts | 2 +- .../client-ssm/src/pagination/Interfaces.ts | 2 +- .../ListAssociationVersionsPaginator.ts | 2 +- .../pagination/ListAssociationsPaginator.ts | 2 +- .../ListCommandInvocationsPaginator.ts | 2 +- .../src/pagination/ListCommandsPaginator.ts | 2 +- .../ListComplianceItemsPaginator.ts | 2 +- .../ListComplianceSummariesPaginator.ts | 2 +- .../ListDocumentVersionsPaginator.ts | 2 +- .../src/pagination/ListDocumentsPaginator.ts | 2 +- .../src/pagination/ListNodesPaginator.ts | 2 +- .../pagination/ListNodesSummaryPaginator.ts | 2 +- .../pagination/ListOpsItemEventsPaginator.ts | 2 +- .../ListOpsItemRelatedItemsPaginator.ts | 2 +- .../pagination/ListOpsMetadataPaginator.ts | 2 +- ...istResourceComplianceSummariesPaginator.ts | 2 +- .../ListResourceDataSyncPaginator.ts | 2 +- .../client-ssm/src/runtimeConfig.browser.ts | 7 +- .../client-ssm/src/runtimeConfig.native.ts | 2 +- .../client-ssm/src/runtimeConfig.shared.ts | 4 +- clients/client-ssm/src/runtimeConfig.ts | 8 +- clients/client-ssm/src/runtimeExtensions.ts | 2 +- clients/client-ssm/src/schemas/schemas_0.ts | 2 +- clients/client-sso-admin/package.json | 12 +- clients/client-sso-admin/src/SSOAdmin.ts | 4 +- .../client-sso-admin/src/SSOAdminClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...edPolicyReferenceToPermissionSetCommand.ts | 6 +- ...tachManagedPolicyToPermissionSetCommand.ts | 6 +- .../CreateAccountAssignmentCommand.ts | 6 +- .../CreateApplicationAssignmentCommand.ts | 6 +- .../src/commands/CreateApplicationCommand.ts | 6 +- ...essControlAttributeConfigurationCommand.ts | 6 +- .../src/commands/CreateInstanceCommand.ts | 6 +- .../commands/CreatePermissionSetCommand.ts | 6 +- .../CreateTrustedTokenIssuerCommand.ts | 6 +- .../DeleteAccountAssignmentCommand.ts | 6 +- .../DeleteApplicationAccessScopeCommand.ts | 6 +- .../DeleteApplicationAssignmentCommand.ts | 6 +- ...eApplicationAuthenticationMethodCommand.ts | 6 +- .../src/commands/DeleteApplicationCommand.ts | 6 +- .../commands/DeleteApplicationGrantCommand.ts | 6 +- ...eteInlinePolicyFromPermissionSetCommand.ts | 6 +- ...essControlAttributeConfigurationCommand.ts | 6 +- .../src/commands/DeleteInstanceCommand.ts | 6 +- .../commands/DeletePermissionSetCommand.ts | 6 +- ...issionsBoundaryFromPermissionSetCommand.ts | 6 +- .../DeleteTrustedTokenIssuerCommand.ts | 6 +- ...eAccountAssignmentCreationStatusCommand.ts | 6 +- ...eAccountAssignmentDeletionStatusCommand.ts | 6 +- .../DescribeApplicationAssignmentCommand.ts | 6 +- .../commands/DescribeApplicationCommand.ts | 6 +- .../DescribeApplicationProviderCommand.ts | 6 +- ...essControlAttributeConfigurationCommand.ts | 6 +- .../src/commands/DescribeInstanceCommand.ts | 6 +- .../commands/DescribePermissionSetCommand.ts | 6 +- ...ePermissionSetProvisioningStatusCommand.ts | 6 +- .../DescribeTrustedTokenIssuerCommand.ts | 6 +- ...PolicyReferenceFromPermissionSetCommand.ts | 6 +- ...chManagedPolicyFromPermissionSetCommand.ts | 6 +- .../GetApplicationAccessScopeCommand.ts | 6 +- ...plicationAssignmentConfigurationCommand.ts | 6 +- ...tApplicationAuthenticationMethodCommand.ts | 6 +- .../commands/GetApplicationGrantCommand.ts | 6 +- ...tApplicationSessionConfigurationCommand.ts | 6 +- .../GetInlinePolicyForPermissionSetCommand.ts | 9 +- ...missionsBoundaryForPermissionSetCommand.ts | 6 +- ...tAccountAssignmentCreationStatusCommand.ts | 6 +- ...tAccountAssignmentDeletionStatusCommand.ts | 6 +- .../commands/ListAccountAssignmentsCommand.ts | 6 +- ...stAccountAssignmentsForPrincipalCommand.ts | 6 +- ...ountsForProvisionedPermissionSetCommand.ts | 6 +- .../ListApplicationAccessScopesCommand.ts | 6 +- .../ListApplicationAssignmentsCommand.ts | 6 +- ...plicationAssignmentsForPrincipalCommand.ts | 6 +- ...ApplicationAuthenticationMethodsCommand.ts | 6 +- .../commands/ListApplicationGrantsCommand.ts | 6 +- .../ListApplicationProvidersCommand.ts | 6 +- .../src/commands/ListApplicationsCommand.ts | 6 +- ...dPolicyReferencesInPermissionSetCommand.ts | 6 +- .../src/commands/ListInstancesCommand.ts | 6 +- ...stManagedPoliciesInPermissionSetCommand.ts | 6 +- ...tPermissionSetProvisioningStatusCommand.ts | 6 +- .../src/commands/ListPermissionSetsCommand.ts | 6 +- ...rmissionSetsProvisionedToAccountCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListTrustedTokenIssuersCommand.ts | 6 +- .../commands/ProvisionPermissionSetCommand.ts | 6 +- .../PutApplicationAccessScopeCommand.ts | 6 +- ...plicationAssignmentConfigurationCommand.ts | 6 +- ...tApplicationAuthenticationMethodCommand.ts | 6 +- .../commands/PutApplicationGrantCommand.ts | 6 +- ...tApplicationSessionConfigurationCommand.ts | 6 +- .../PutInlinePolicyToPermissionSetCommand.ts | 6 +- ...rmissionsBoundaryToPermissionSetCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateApplicationCommand.ts | 6 +- ...essControlAttributeConfigurationCommand.ts | 6 +- .../src/commands/UpdateInstanceCommand.ts | 6 +- .../commands/UpdatePermissionSetCommand.ts | 6 +- .../UpdateTrustedTokenIssuerCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SSOAdminServiceException.ts | 2 +- clients/client-sso-admin/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...ccountAssignmentCreationStatusPaginator.ts | 2 +- ...ccountAssignmentDeletionStatusPaginator.ts | 2 +- ...AccountAssignmentsForPrincipalPaginator.ts | 2 +- .../ListAccountAssignmentsPaginator.ts | 2 +- ...ntsForProvisionedPermissionSetPaginator.ts | 2 +- .../ListApplicationAccessScopesPaginator.ts | 2 +- ...icationAssignmentsForPrincipalPaginator.ts | 2 +- .../ListApplicationAssignmentsPaginator.ts | 2 +- ...plicationAuthenticationMethodsPaginator.ts | 2 +- .../ListApplicationGrantsPaginator.ts | 2 +- .../ListApplicationProvidersPaginator.ts | 2 +- .../pagination/ListApplicationsPaginator.ts | 2 +- ...olicyReferencesInPermissionSetPaginator.ts | 2 +- .../src/pagination/ListInstancesPaginator.ts | 2 +- ...ManagedPoliciesInPermissionSetPaginator.ts | 2 +- ...ermissionSetProvisioningStatusPaginator.ts | 2 +- .../pagination/ListPermissionSetsPaginator.ts | 2 +- ...issionSetsProvisionedToAccountPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../ListTrustedTokenIssuersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-sso-admin/src/runtimeConfig.ts | 8 +- .../client-sso-admin/src/runtimeExtensions.ts | 2 +- .../client-sso-admin/src/schemas/schemas_0.ts | 2 +- clients/client-sso-oidc/package.json | 12 +- clients/client-sso-oidc/src/SSOOIDC.ts | 4 +- clients/client-sso-oidc/src/SSOOIDCClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateTokenCommand.ts | 6 +- .../src/commands/CreateTokenWithIAMCommand.ts | 6 +- .../src/commands/RegisterClientCommand.ts | 6 +- .../StartDeviceAuthorizationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SSOOIDCServiceException.ts | 2 +- clients/client-sso-oidc/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-sso-oidc/src/runtimeConfig.ts | 8 +- .../client-sso-oidc/src/runtimeExtensions.ts | 2 +- .../client-sso-oidc/src/schemas/schemas_0.ts | 2 +- clients/client-sso/package.json | 12 +- clients/client-sso/src/SSO.ts | 4 +- clients/client-sso/src/SSOClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetRoleCredentialsCommand.ts | 6 +- .../src/commands/ListAccountRolesCommand.ts | 6 +- .../src/commands/ListAccountsCommand.ts | 6 +- .../client-sso/src/commands/LogoutCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-sso/src/extensionConfiguration.ts | 8 +- .../src/models/SSOServiceException.ts | 2 +- clients/client-sso/src/models/errors.ts | 2 +- .../client-sso/src/pagination/Interfaces.ts | 2 +- .../pagination/ListAccountRolesPaginator.ts | 2 +- .../src/pagination/ListAccountsPaginator.ts | 2 +- .../client-sso/src/runtimeConfig.browser.ts | 7 +- .../client-sso/src/runtimeConfig.native.ts | 2 +- .../client-sso/src/runtimeConfig.shared.ts | 4 +- clients/client-sso/src/runtimeConfig.ts | 8 +- clients/client-sso/src/runtimeExtensions.ts | 2 +- clients/client-sso/src/schemas/schemas_0.ts | 2 +- clients/client-storage-gateway/package.json | 12 +- .../src/StorageGateway.ts | 4 +- .../src/StorageGatewayClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/ActivateGatewayCommand.ts | 10 +- .../src/commands/AddCacheCommand.ts | 10 +- .../src/commands/AddTagsToResourceCommand.ts | 10 +- .../src/commands/AddUploadBufferCommand.ts | 10 +- .../src/commands/AddWorkingStorageCommand.ts | 10 +- .../src/commands/AssignTapePoolCommand.ts | 10 +- .../commands/AssociateFileSystemCommand.ts | 10 +- .../src/commands/AttachVolumeCommand.ts | 10 +- .../src/commands/CancelArchivalCommand.ts | 10 +- .../src/commands/CancelCacheReportCommand.ts | 10 +- .../src/commands/CancelRetrievalCommand.ts | 10 +- .../CreateCachediSCSIVolumeCommand.ts | 10 +- .../src/commands/CreateNFSFileShareCommand.ts | 10 +- .../src/commands/CreateSMBFileShareCommand.ts | 10 +- .../src/commands/CreateSnapshotCommand.ts | 10 +- ...eSnapshotFromVolumeRecoveryPointCommand.ts | 10 +- .../CreateStorediSCSIVolumeCommand.ts | 10 +- .../src/commands/CreateTapePoolCommand.ts | 10 +- .../commands/CreateTapeWithBarcodeCommand.ts | 10 +- .../src/commands/CreateTapesCommand.ts | 10 +- ...eleteAutomaticTapeCreationPolicyCommand.ts | 13 +- .../DeleteBandwidthRateLimitCommand.ts | 10 +- .../src/commands/DeleteCacheReportCommand.ts | 10 +- .../commands/DeleteChapCredentialsCommand.ts | 10 +- .../src/commands/DeleteFileShareCommand.ts | 10 +- .../src/commands/DeleteGatewayCommand.ts | 10 +- .../commands/DeleteSnapshotScheduleCommand.ts | 10 +- .../src/commands/DeleteTapeArchiveCommand.ts | 10 +- .../src/commands/DeleteTapeCommand.ts | 10 +- .../src/commands/DeleteTapePoolCommand.ts | 10 +- .../src/commands/DeleteVolumeCommand.ts | 10 +- .../DescribeAvailabilityMonitorTestCommand.ts | 10 +- .../DescribeBandwidthRateLimitCommand.ts | 10 +- ...scribeBandwidthRateLimitScheduleCommand.ts | 13 +- .../src/commands/DescribeCacheCommand.ts | 10 +- .../commands/DescribeCacheReportCommand.ts | 10 +- .../DescribeCachediSCSIVolumesCommand.ts | 10 +- .../DescribeChapCredentialsCommand.ts | 10 +- .../DescribeFileSystemAssociationsCommand.ts | 10 +- .../DescribeGatewayInformationCommand.ts | 10 +- .../DescribeMaintenanceStartTimeCommand.ts | 10 +- .../commands/DescribeNFSFileSharesCommand.ts | 10 +- .../commands/DescribeSMBFileSharesCommand.ts | 10 +- .../commands/DescribeSMBSettingsCommand.ts | 10 +- .../DescribeSnapshotScheduleCommand.ts | 10 +- .../DescribeStorediSCSIVolumesCommand.ts | 10 +- .../commands/DescribeTapeArchivesCommand.ts | 10 +- .../DescribeTapeRecoveryPointsCommand.ts | 10 +- .../src/commands/DescribeTapesCommand.ts | 10 +- .../commands/DescribeUploadBufferCommand.ts | 10 +- .../src/commands/DescribeVTLDevicesCommand.ts | 10 +- .../commands/DescribeWorkingStorageCommand.ts | 10 +- .../src/commands/DetachVolumeCommand.ts | 10 +- .../src/commands/DisableGatewayCommand.ts | 10 +- .../commands/DisassociateFileSystemCommand.ts | 10 +- .../EvictFilesFailingUploadCommand.ts | 10 +- .../src/commands/JoinDomainCommand.ts | 10 +- ...istAutomaticTapeCreationPoliciesCommand.ts | 13 +- .../src/commands/ListCacheReportsCommand.ts | 10 +- .../src/commands/ListFileSharesCommand.ts | 10 +- .../ListFileSystemAssociationsCommand.ts | 10 +- .../src/commands/ListGatewaysCommand.ts | 10 +- .../src/commands/ListLocalDisksCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/ListTapePoolsCommand.ts | 10 +- .../src/commands/ListTapesCommand.ts | 10 +- .../commands/ListVolumeInitiatorsCommand.ts | 10 +- .../ListVolumeRecoveryPointsCommand.ts | 10 +- .../src/commands/ListVolumesCommand.ts | 10 +- .../src/commands/NotifyWhenUploadedCommand.ts | 10 +- .../src/commands/RefreshCacheCommand.ts | 10 +- .../commands/RemoveTagsFromResourceCommand.ts | 10 +- .../src/commands/ResetCacheCommand.ts | 10 +- .../commands/RetrieveTapeArchiveCommand.ts | 10 +- .../RetrieveTapeRecoveryPointCommand.ts | 10 +- .../SetLocalConsolePasswordCommand.ts | 10 +- .../commands/SetSMBGuestPasswordCommand.ts | 10 +- .../src/commands/ShutdownGatewayCommand.ts | 10 +- .../StartAvailabilityMonitorTestCommand.ts | 10 +- .../src/commands/StartCacheReportCommand.ts | 10 +- .../src/commands/StartGatewayCommand.ts | 10 +- ...pdateAutomaticTapeCreationPolicyCommand.ts | 13 +- .../UpdateBandwidthRateLimitCommand.ts | 10 +- ...UpdateBandwidthRateLimitScheduleCommand.ts | 10 +- .../commands/UpdateChapCredentialsCommand.ts | 10 +- .../UpdateFileSystemAssociationCommand.ts | 10 +- .../UpdateGatewayInformationCommand.ts | 10 +- .../UpdateGatewaySoftwareNowCommand.ts | 10 +- .../UpdateMaintenanceStartTimeCommand.ts | 10 +- .../src/commands/UpdateNFSFileShareCommand.ts | 10 +- .../src/commands/UpdateSMBFileShareCommand.ts | 10 +- .../UpdateSMBFileShareVisibilityCommand.ts | 10 +- .../commands/UpdateSMBLocalGroupsCommand.ts | 10 +- .../UpdateSMBSecurityStrategyCommand.ts | 10 +- .../commands/UpdateSnapshotScheduleCommand.ts | 10 +- .../commands/UpdateVTLDeviceTypeCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/StorageGatewayServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../DescribeTapeArchivesPaginator.ts | 2 +- .../DescribeTapeRecoveryPointsPaginator.ts | 2 +- .../src/pagination/DescribeTapesPaginator.ts | 2 +- .../pagination/DescribeVTLDevicesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListCacheReportsPaginator.ts | 2 +- .../src/pagination/ListFileSharesPaginator.ts | 2 +- .../ListFileSystemAssociationsPaginator.ts | 2 +- .../src/pagination/ListGatewaysPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/pagination/ListTapePoolsPaginator.ts | 2 +- .../src/pagination/ListTapesPaginator.ts | 2 +- .../src/pagination/ListVolumesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-sts/package.json | 12 +- clients/client-sts/src/STS.ts | 4 +- clients/client-sts/src/STSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 16 +- .../src/commands/AssumeRoleCommand.ts | 6 +- .../src/commands/AssumeRoleWithSAMLCommand.ts | 6 +- .../AssumeRoleWithWebIdentityCommand.ts | 6 +- .../src/commands/AssumeRootCommand.ts | 6 +- .../DecodeAuthorizationMessageCommand.ts | 6 +- .../src/commands/GetAccessKeyInfoCommand.ts | 6 +- .../src/commands/GetCallerIdentityCommand.ts | 6 +- .../GetDelegatedAccessTokenCommand.ts | 6 +- .../src/commands/GetFederationTokenCommand.ts | 6 +- .../src/commands/GetSessionTokenCommand.ts | 6 +- .../commands/GetWebIdentityTokenCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-sts/src/extensionConfiguration.ts | 8 +- .../src/models/STSServiceException.ts | 2 +- clients/client-sts/src/models/errors.ts | 2 +- .../client-sts/src/runtimeConfig.browser.ts | 7 +- .../client-sts/src/runtimeConfig.native.ts | 2 +- .../client-sts/src/runtimeConfig.shared.ts | 4 +- clients/client-sts/src/runtimeConfig.ts | 10 +- clients/client-sts/src/runtimeExtensions.ts | 2 +- clients/client-sts/src/schemas/schemas_0.ts | 2 +- clients/client-supplychain/package.json | 12 +- clients/client-supplychain/src/SupplyChain.ts | 4 +- .../src/SupplyChainClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateBillOfMaterialsImportJobCommand.ts | 6 +- .../CreateDataIntegrationFlowCommand.ts | 6 +- .../commands/CreateDataLakeDatasetCommand.ts | 6 +- .../CreateDataLakeNamespaceCommand.ts | 6 +- .../src/commands/CreateInstanceCommand.ts | 6 +- .../DeleteDataIntegrationFlowCommand.ts | 6 +- .../commands/DeleteDataLakeDatasetCommand.ts | 6 +- .../DeleteDataLakeNamespaceCommand.ts | 6 +- .../src/commands/DeleteInstanceCommand.ts | 6 +- .../GetBillOfMaterialsImportJobCommand.ts | 6 +- .../GetDataIntegrationEventCommand.ts | 6 +- .../commands/GetDataIntegrationFlowCommand.ts | 6 +- .../GetDataIntegrationFlowExecutionCommand.ts | 9 +- .../src/commands/GetDataLakeDatasetCommand.ts | 6 +- .../commands/GetDataLakeNamespaceCommand.ts | 6 +- .../src/commands/GetInstanceCommand.ts | 6 +- .../ListDataIntegrationEventsCommand.ts | 6 +- ...istDataIntegrationFlowExecutionsCommand.ts | 6 +- .../ListDataIntegrationFlowsCommand.ts | 6 +- .../commands/ListDataLakeDatasetsCommand.ts | 6 +- .../commands/ListDataLakeNamespacesCommand.ts | 6 +- .../src/commands/ListInstancesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../SendDataIntegrationEventCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateDataIntegrationFlowCommand.ts | 6 +- .../commands/UpdateDataLakeDatasetCommand.ts | 6 +- .../UpdateDataLakeNamespaceCommand.ts | 6 +- .../src/commands/UpdateInstanceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SupplyChainServiceException.ts | 2 +- .../client-supplychain/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListDataIntegrationEventsPaginator.ts | 2 +- ...tDataIntegrationFlowExecutionsPaginator.ts | 2 +- .../ListDataIntegrationFlowsPaginator.ts | 2 +- .../ListDataLakeDatasetsPaginator.ts | 2 +- .../ListDataLakeNamespacesPaginator.ts | 2 +- .../src/pagination/ListInstancesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-supplychain/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-support-app/package.json | 12 +- clients/client-support-app/src/SupportApp.ts | 4 +- .../src/SupportAppClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateSlackChannelConfigurationCommand.ts | 6 +- .../src/commands/DeleteAccountAliasCommand.ts | 6 +- .../DeleteSlackChannelConfigurationCommand.ts | 6 +- ...eleteSlackWorkspaceConfigurationCommand.ts | 9 +- .../src/commands/GetAccountAliasCommand.ts | 6 +- .../ListSlackChannelConfigurationsCommand.ts | 6 +- ...ListSlackWorkspaceConfigurationsCommand.ts | 9 +- .../src/commands/PutAccountAliasCommand.ts | 6 +- ...terSlackWorkspaceForOrganizationCommand.ts | 6 +- .../UpdateSlackChannelConfigurationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SupportAppServiceException.ts | 2 +- .../client-support-app/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...ListSlackChannelConfigurationsPaginator.ts | 2 +- ...stSlackWorkspaceConfigurationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-support-app/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-support/package.json | 12 +- clients/client-support/src/Support.ts | 4 +- clients/client-support/src/SupportClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AddAttachmentsToSetCommand.ts | 6 +- .../commands/AddCommunicationToCaseCommand.ts | 6 +- .../src/commands/CreateCaseCommand.ts | 6 +- .../src/commands/DescribeAttachmentCommand.ts | 6 +- .../src/commands/DescribeCasesCommand.ts | 6 +- .../commands/DescribeCommunicationsCommand.ts | 6 +- .../DescribeCreateCaseOptionsCommand.ts | 6 +- .../src/commands/DescribeServicesCommand.ts | 6 +- .../commands/DescribeSeverityLevelsCommand.ts | 6 +- .../DescribeSupportedLanguagesCommand.ts | 6 +- ...ustedAdvisorCheckRefreshStatusesCommand.ts | 6 +- ...escribeTrustedAdvisorCheckResultCommand.ts | 6 +- ...ribeTrustedAdvisorCheckSummariesCommand.ts | 6 +- .../DescribeTrustedAdvisorChecksCommand.ts | 6 +- .../RefreshTrustedAdvisorCheckCommand.ts | 6 +- .../src/commands/ResolveCaseCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SupportServiceException.ts | 2 +- clients/client-support/src/models/errors.ts | 2 +- .../src/pagination/DescribeCasesPaginator.ts | 2 +- .../DescribeCommunicationsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-support/src/runtimeConfig.ts | 8 +- .../client-support/src/runtimeExtensions.ts | 2 +- .../client-support/src/schemas/schemas_0.ts | 2 +- clients/client-swf/package.json | 12 +- clients/client-swf/src/SWF.ts | 4 +- clients/client-swf/src/SWFClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CountClosedWorkflowExecutionsCommand.ts | 6 +- .../CountOpenWorkflowExecutionsCommand.ts | 6 +- .../CountPendingActivityTasksCommand.ts | 6 +- .../CountPendingDecisionTasksCommand.ts | 6 +- .../src/commands/DeleteActivityTypeCommand.ts | 6 +- .../src/commands/DeleteWorkflowTypeCommand.ts | 6 +- .../commands/DeprecateActivityTypeCommand.ts | 6 +- .../src/commands/DeprecateDomainCommand.ts | 6 +- .../commands/DeprecateWorkflowTypeCommand.ts | 6 +- .../commands/DescribeActivityTypeCommand.ts | 6 +- .../src/commands/DescribeDomainCommand.ts | 6 +- .../DescribeWorkflowExecutionCommand.ts | 6 +- .../commands/DescribeWorkflowTypeCommand.ts | 6 +- .../GetWorkflowExecutionHistoryCommand.ts | 6 +- .../src/commands/ListActivityTypesCommand.ts | 6 +- .../ListClosedWorkflowExecutionsCommand.ts | 6 +- .../src/commands/ListDomainsCommand.ts | 6 +- .../ListOpenWorkflowExecutionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWorkflowTypesCommand.ts | 6 +- .../commands/PollForActivityTaskCommand.ts | 6 +- .../commands/PollForDecisionTaskCommand.ts | 6 +- .../RecordActivityTaskHeartbeatCommand.ts | 6 +- .../commands/RegisterActivityTypeCommand.ts | 6 +- .../src/commands/RegisterDomainCommand.ts | 6 +- .../commands/RegisterWorkflowTypeCommand.ts | 6 +- .../RequestCancelWorkflowExecutionCommand.ts | 6 +- .../RespondActivityTaskCanceledCommand.ts | 6 +- .../RespondActivityTaskCompletedCommand.ts | 6 +- .../RespondActivityTaskFailedCommand.ts | 6 +- .../RespondDecisionTaskCompletedCommand.ts | 6 +- .../SignalWorkflowExecutionCommand.ts | 6 +- .../commands/StartWorkflowExecutionCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../TerminateWorkflowExecutionCommand.ts | 6 +- .../UndeprecateActivityTypeCommand.ts | 6 +- .../src/commands/UndeprecateDomainCommand.ts | 6 +- .../UndeprecateWorkflowTypeCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-swf/src/extensionConfiguration.ts | 8 +- .../src/models/SWFServiceException.ts | 2 +- clients/client-swf/src/models/errors.ts | 2 +- .../GetWorkflowExecutionHistoryPaginator.ts | 2 +- .../client-swf/src/pagination/Interfaces.ts | 2 +- .../pagination/ListActivityTypesPaginator.ts | 2 +- .../ListClosedWorkflowExecutionsPaginator.ts | 2 +- .../src/pagination/ListDomainsPaginator.ts | 2 +- .../ListOpenWorkflowExecutionsPaginator.ts | 2 +- .../pagination/ListWorkflowTypesPaginator.ts | 2 +- .../PollForDecisionTaskPaginator.ts | 2 +- .../client-swf/src/runtimeConfig.browser.ts | 7 +- .../client-swf/src/runtimeConfig.native.ts | 2 +- .../client-swf/src/runtimeConfig.shared.ts | 4 +- clients/client-swf/src/runtimeConfig.ts | 8 +- clients/client-swf/src/runtimeExtensions.ts | 2 +- clients/client-swf/src/schemas/schemas_0.ts | 2 +- clients/client-synthetics/package.json | 12 +- clients/client-synthetics/src/Synthetics.ts | 4 +- .../client-synthetics/src/SyntheticsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateResourceCommand.ts | 6 +- .../src/commands/CreateCanaryCommand.ts | 6 +- .../src/commands/CreateGroupCommand.ts | 6 +- .../src/commands/DeleteCanaryCommand.ts | 6 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../src/commands/DescribeCanariesCommand.ts | 6 +- .../DescribeCanariesLastRunCommand.ts | 6 +- .../DescribeRuntimeVersionsCommand.ts | 6 +- .../commands/DisassociateResourceCommand.ts | 6 +- .../src/commands/GetCanaryCommand.ts | 6 +- .../src/commands/GetCanaryRunsCommand.ts | 6 +- .../src/commands/GetGroupCommand.ts | 6 +- .../commands/ListAssociatedGroupsCommand.ts | 6 +- .../src/commands/ListGroupResourcesCommand.ts | 6 +- .../src/commands/ListGroupsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/StartCanaryCommand.ts | 6 +- .../src/commands/StartCanaryDryRunCommand.ts | 6 +- .../src/commands/StopCanaryCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateCanaryCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/SyntheticsServiceException.ts | 2 +- .../client-synthetics/src/models/errors.ts | 2 +- .../DescribeCanariesLastRunPaginator.ts | 2 +- .../pagination/DescribeCanariesPaginator.ts | 2 +- .../DescribeRuntimeVersionsPaginator.ts | 2 +- .../src/pagination/GetCanaryRunsPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAssociatedGroupsPaginator.ts | 2 +- .../pagination/ListGroupResourcesPaginator.ts | 2 +- .../src/pagination/ListGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-synthetics/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-taxsettings/package.json | 12 +- clients/client-taxsettings/src/TaxSettings.ts | 4 +- .../src/TaxSettingsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../BatchDeleteTaxRegistrationCommand.ts | 6 +- .../commands/BatchGetTaxExemptionsCommand.ts | 6 +- .../BatchPutTaxRegistrationCommand.ts | 6 +- ...eleteSupplementalTaxRegistrationCommand.ts | 6 +- .../commands/DeleteTaxRegistrationCommand.ts | 6 +- .../commands/GetTaxExemptionTypesCommand.ts | 6 +- .../src/commands/GetTaxInheritanceCommand.ts | 6 +- .../src/commands/GetTaxRegistrationCommand.ts | 6 +- .../GetTaxRegistrationDocumentCommand.ts | 6 +- ...ListSupplementalTaxRegistrationsCommand.ts | 9 +- .../src/commands/ListTaxExemptionsCommand.ts | 6 +- .../commands/ListTaxRegistrationsCommand.ts | 6 +- .../PutSupplementalTaxRegistrationCommand.ts | 6 +- .../src/commands/PutTaxExemptionCommand.ts | 6 +- .../src/commands/PutTaxInheritanceCommand.ts | 6 +- .../src/commands/PutTaxRegistrationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/TaxSettingsServiceException.ts | 2 +- .../client-taxsettings/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- ...stSupplementalTaxRegistrationsPaginator.ts | 2 +- .../pagination/ListTaxExemptionsPaginator.ts | 2 +- .../ListTaxRegistrationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-taxsettings/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-textract/package.json | 12 +- clients/client-textract/src/Textract.ts | 4 +- clients/client-textract/src/TextractClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AnalyzeDocumentCommand.ts | 6 +- .../src/commands/AnalyzeExpenseCommand.ts | 6 +- .../src/commands/AnalyzeIDCommand.ts | 6 +- .../src/commands/CreateAdapterCommand.ts | 6 +- .../commands/CreateAdapterVersionCommand.ts | 6 +- .../src/commands/DeleteAdapterCommand.ts | 6 +- .../commands/DeleteAdapterVersionCommand.ts | 6 +- .../src/commands/DetectDocumentTextCommand.ts | 6 +- .../src/commands/GetAdapterCommand.ts | 6 +- .../src/commands/GetAdapterVersionCommand.ts | 6 +- .../commands/GetDocumentAnalysisCommand.ts | 6 +- .../GetDocumentTextDetectionCommand.ts | 6 +- .../src/commands/GetExpenseAnalysisCommand.ts | 6 +- .../src/commands/GetLendingAnalysisCommand.ts | 6 +- .../GetLendingAnalysisSummaryCommand.ts | 6 +- .../commands/ListAdapterVersionsCommand.ts | 6 +- .../src/commands/ListAdaptersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/StartDocumentAnalysisCommand.ts | 6 +- .../StartDocumentTextDetectionCommand.ts | 6 +- .../commands/StartExpenseAnalysisCommand.ts | 6 +- .../commands/StartLendingAnalysisCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAdapterCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/TextractServiceException.ts | 2 +- clients/client-textract/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAdapterVersionsPaginator.ts | 2 +- .../src/pagination/ListAdaptersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-textract/src/runtimeConfig.ts | 8 +- .../client-textract/src/runtimeExtensions.ts | 2 +- .../client-textract/src/schemas/schemas_0.ts | 2 +- .../client-timestream-influxdb/package.json | 12 +- .../src/TimestreamInfluxDB.ts | 4 +- .../src/TimestreamInfluxDBClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/CreateDbClusterCommand.ts | 6 +- .../src/commands/CreateDbInstanceCommand.ts | 6 +- .../commands/CreateDbParameterGroupCommand.ts | 6 +- .../src/commands/DeleteDbClusterCommand.ts | 6 +- .../src/commands/DeleteDbInstanceCommand.ts | 6 +- .../src/commands/GetDbClusterCommand.ts | 6 +- .../src/commands/GetDbInstanceCommand.ts | 6 +- .../commands/GetDbParameterGroupCommand.ts | 6 +- .../src/commands/ListDbClustersCommand.ts | 6 +- .../src/commands/ListDbInstancesCommand.ts | 6 +- .../ListDbInstancesForClusterCommand.ts | 6 +- .../commands/ListDbParameterGroupsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDbClusterCommand.ts | 6 +- .../src/commands/UpdateDbInstanceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../TimestreamInfluxDBServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDbClustersPaginator.ts | 2 +- .../ListDbInstancesForClusterPaginator.ts | 2 +- .../pagination/ListDbInstancesPaginator.ts | 2 +- .../ListDbParameterGroupsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-timestream-query/package.json | 12 +- .../src/TimestreamQuery.ts | 4 +- .../src/TimestreamQueryClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CancelQueryCommand.ts | 10 +- .../commands/CreateScheduledQueryCommand.ts | 10 +- .../commands/DeleteScheduledQueryCommand.ts | 10 +- .../DescribeAccountSettingsCommand.ts | 10 +- .../src/commands/DescribeEndpointsCommand.ts | 10 +- .../commands/DescribeScheduledQueryCommand.ts | 10 +- .../commands/ExecuteScheduledQueryCommand.ts | 10 +- .../commands/ListScheduledQueriesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/PrepareQueryCommand.ts | 10 +- .../src/commands/QueryCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../commands/UpdateAccountSettingsCommand.ts | 10 +- .../commands/UpdateScheduledQueryCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/TimestreamQueryServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListScheduledQueriesPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/pagination/QueryPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-timestream-write/package.json | 12 +- .../src/TimestreamWrite.ts | 4 +- .../src/TimestreamWriteClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateBatchLoadTaskCommand.ts | 10 +- .../src/commands/CreateDatabaseCommand.ts | 10 +- .../src/commands/CreateTableCommand.ts | 10 +- .../src/commands/DeleteDatabaseCommand.ts | 10 +- .../src/commands/DeleteTableCommand.ts | 10 +- .../commands/DescribeBatchLoadTaskCommand.ts | 10 +- .../src/commands/DescribeDatabaseCommand.ts | 10 +- .../src/commands/DescribeEndpointsCommand.ts | 10 +- .../src/commands/DescribeTableCommand.ts | 10 +- .../src/commands/ListBatchLoadTasksCommand.ts | 10 +- .../src/commands/ListDatabasesCommand.ts | 10 +- .../src/commands/ListTablesCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../commands/ResumeBatchLoadTaskCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateDatabaseCommand.ts | 10 +- .../src/commands/UpdateTableCommand.ts | 10 +- .../src/commands/WriteRecordsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/TimestreamWriteServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListBatchLoadTasksPaginator.ts | 2 +- .../src/pagination/ListDatabasesPaginator.ts | 2 +- .../src/pagination/ListTablesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-tnb/package.json | 12 +- clients/client-tnb/src/Tnb.ts | 4 +- clients/client-tnb/src/TnbClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CancelSolNetworkOperationCommand.ts | 6 +- .../CreateSolFunctionPackageCommand.ts | 6 +- .../CreateSolNetworkInstanceCommand.ts | 6 +- .../CreateSolNetworkPackageCommand.ts | 6 +- .../DeleteSolFunctionPackageCommand.ts | 6 +- .../DeleteSolNetworkInstanceCommand.ts | 6 +- .../DeleteSolNetworkPackageCommand.ts | 6 +- .../commands/GetSolFunctionInstanceCommand.ts | 6 +- .../commands/GetSolFunctionPackageCommand.ts | 6 +- .../GetSolFunctionPackageContentCommand.ts | 6 +- .../GetSolFunctionPackageDescriptorCommand.ts | 6 +- .../commands/GetSolNetworkInstanceCommand.ts | 6 +- .../commands/GetSolNetworkOperationCommand.ts | 6 +- .../commands/GetSolNetworkPackageCommand.ts | 6 +- .../GetSolNetworkPackageContentCommand.ts | 6 +- .../GetSolNetworkPackageDescriptorCommand.ts | 6 +- .../InstantiateSolNetworkInstanceCommand.ts | 6 +- .../ListSolFunctionInstancesCommand.ts | 6 +- .../ListSolFunctionPackagesCommand.ts | 6 +- .../ListSolNetworkInstancesCommand.ts | 6 +- .../ListSolNetworkOperationsCommand.ts | 6 +- .../commands/ListSolNetworkPackagesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../PutSolFunctionPackageContentCommand.ts | 6 +- .../PutSolNetworkPackageContentCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../TerminateSolNetworkInstanceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateSolFunctionPackageCommand.ts | 6 +- .../UpdateSolNetworkInstanceCommand.ts | 6 +- .../UpdateSolNetworkPackageCommand.ts | 6 +- ...alidateSolFunctionPackageContentCommand.ts | 9 +- ...ValidateSolNetworkPackageContentCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-tnb/src/extensionConfiguration.ts | 8 +- .../src/models/TnbServiceException.ts | 2 +- clients/client-tnb/src/models/errors.ts | 2 +- .../client-tnb/src/pagination/Interfaces.ts | 2 +- .../ListSolFunctionInstancesPaginator.ts | 2 +- .../ListSolFunctionPackagesPaginator.ts | 2 +- .../ListSolNetworkInstancesPaginator.ts | 2 +- .../ListSolNetworkOperationsPaginator.ts | 2 +- .../ListSolNetworkPackagesPaginator.ts | 2 +- .../client-tnb/src/runtimeConfig.browser.ts | 7 +- .../client-tnb/src/runtimeConfig.native.ts | 2 +- .../client-tnb/src/runtimeConfig.shared.ts | 4 +- clients/client-tnb/src/runtimeConfig.ts | 8 +- clients/client-tnb/src/runtimeExtensions.ts | 2 +- clients/client-tnb/src/schemas/schemas_0.ts | 2 +- .../client-transcribe-streaming/package.json | 12 +- .../src/TranscribeStreaming.ts | 4 +- .../src/TranscribeStreamingClient.ts | 81 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../commands/GetMedicalScribeStreamCommand.ts | 6 +- ...CallAnalyticsStreamTranscriptionCommand.ts | 6 +- .../StartMedicalScribeStreamCommand.ts | 6 +- .../StartMedicalStreamTranscriptionCommand.ts | 9 +- .../StartStreamTranscriptionCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../TranscribeStreamingServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-transcribe/package.json | 12 +- clients/client-transcribe/src/Transcribe.ts | 4 +- .../client-transcribe/src/TranscribeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateCallAnalyticsCategoryCommand.ts | 6 +- .../commands/CreateLanguageModelCommand.ts | 6 +- .../CreateMedicalVocabularyCommand.ts | 6 +- .../src/commands/CreateVocabularyCommand.ts | 6 +- .../commands/CreateVocabularyFilterCommand.ts | 6 +- .../DeleteCallAnalyticsCategoryCommand.ts | 6 +- .../commands/DeleteCallAnalyticsJobCommand.ts | 6 +- .../commands/DeleteLanguageModelCommand.ts | 6 +- .../commands/DeleteMedicalScribeJobCommand.ts | 6 +- .../DeleteMedicalTranscriptionJobCommand.ts | 6 +- .../DeleteMedicalVocabularyCommand.ts | 6 +- .../commands/DeleteTranscriptionJobCommand.ts | 6 +- .../src/commands/DeleteVocabularyCommand.ts | 6 +- .../commands/DeleteVocabularyFilterCommand.ts | 6 +- .../commands/DescribeLanguageModelCommand.ts | 6 +- .../GetCallAnalyticsCategoryCommand.ts | 6 +- .../commands/GetCallAnalyticsJobCommand.ts | 6 +- .../commands/GetMedicalScribeJobCommand.ts | 6 +- .../GetMedicalTranscriptionJobCommand.ts | 6 +- .../commands/GetMedicalVocabularyCommand.ts | 6 +- .../commands/GetTranscriptionJobCommand.ts | 6 +- .../src/commands/GetVocabularyCommand.ts | 6 +- .../commands/GetVocabularyFilterCommand.ts | 6 +- .../ListCallAnalyticsCategoriesCommand.ts | 6 +- .../commands/ListCallAnalyticsJobsCommand.ts | 6 +- .../src/commands/ListLanguageModelsCommand.ts | 6 +- .../commands/ListMedicalScribeJobsCommand.ts | 6 +- .../ListMedicalTranscriptionJobsCommand.ts | 6 +- .../ListMedicalVocabulariesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListTranscriptionJobsCommand.ts | 6 +- .../src/commands/ListVocabulariesCommand.ts | 6 +- .../commands/ListVocabularyFiltersCommand.ts | 6 +- .../commands/StartCallAnalyticsJobCommand.ts | 6 +- .../commands/StartMedicalScribeJobCommand.ts | 6 +- .../StartMedicalTranscriptionJobCommand.ts | 6 +- .../commands/StartTranscriptionJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateCallAnalyticsCategoryCommand.ts | 6 +- .../UpdateMedicalVocabularyCommand.ts | 6 +- .../src/commands/UpdateVocabularyCommand.ts | 6 +- .../commands/UpdateVocabularyFilterCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/TranscribeServiceException.ts | 2 +- .../client-transcribe/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListCallAnalyticsCategoriesPaginator.ts | 2 +- .../ListCallAnalyticsJobsPaginator.ts | 2 +- .../pagination/ListLanguageModelsPaginator.ts | 2 +- .../ListMedicalScribeJobsPaginator.ts | 2 +- .../ListMedicalTranscriptionJobsPaginator.ts | 2 +- .../ListMedicalVocabulariesPaginator.ts | 2 +- .../ListTranscriptionJobsPaginator.ts | 2 +- .../pagination/ListVocabulariesPaginator.ts | 2 +- .../ListVocabularyFiltersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-transcribe/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-transfer/package.json | 12 +- clients/client-transfer/src/Transfer.ts | 4 +- clients/client-transfer/src/TransferClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateAccessCommand.ts | 6 +- .../src/commands/CreateAgreementCommand.ts | 6 +- .../src/commands/CreateConnectorCommand.ts | 6 +- .../src/commands/CreateProfileCommand.ts | 6 +- .../src/commands/CreateServerCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/CreateWebAppCommand.ts | 6 +- .../src/commands/CreateWorkflowCommand.ts | 6 +- .../src/commands/DeleteAccessCommand.ts | 6 +- .../src/commands/DeleteAgreementCommand.ts | 6 +- .../src/commands/DeleteCertificateCommand.ts | 6 +- .../src/commands/DeleteConnectorCommand.ts | 6 +- .../src/commands/DeleteHostKeyCommand.ts | 6 +- .../src/commands/DeleteProfileCommand.ts | 6 +- .../src/commands/DeleteServerCommand.ts | 6 +- .../src/commands/DeleteSshPublicKeyCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../src/commands/DeleteWebAppCommand.ts | 6 +- .../DeleteWebAppCustomizationCommand.ts | 6 +- .../src/commands/DeleteWorkflowCommand.ts | 6 +- .../src/commands/DescribeAccessCommand.ts | 6 +- .../src/commands/DescribeAgreementCommand.ts | 6 +- .../commands/DescribeCertificateCommand.ts | 6 +- .../src/commands/DescribeConnectorCommand.ts | 6 +- .../src/commands/DescribeExecutionCommand.ts | 6 +- .../src/commands/DescribeHostKeyCommand.ts | 6 +- .../src/commands/DescribeProfileCommand.ts | 6 +- .../commands/DescribeSecurityPolicyCommand.ts | 6 +- .../src/commands/DescribeServerCommand.ts | 6 +- .../src/commands/DescribeUserCommand.ts | 6 +- .../src/commands/DescribeWebAppCommand.ts | 6 +- .../DescribeWebAppCustomizationCommand.ts | 6 +- .../src/commands/DescribeWorkflowCommand.ts | 6 +- .../src/commands/ImportCertificateCommand.ts | 6 +- .../src/commands/ImportHostKeyCommand.ts | 6 +- .../src/commands/ImportSshPublicKeyCommand.ts | 6 +- .../src/commands/ListAccessesCommand.ts | 6 +- .../src/commands/ListAgreementsCommand.ts | 6 +- .../src/commands/ListCertificatesCommand.ts | 6 +- .../src/commands/ListConnectorsCommand.ts | 6 +- .../src/commands/ListExecutionsCommand.ts | 6 +- .../ListFileTransferResultsCommand.ts | 6 +- .../src/commands/ListHostKeysCommand.ts | 6 +- .../src/commands/ListProfilesCommand.ts | 6 +- .../commands/ListSecurityPoliciesCommand.ts | 6 +- .../src/commands/ListServersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../src/commands/ListWebAppsCommand.ts | 6 +- .../src/commands/ListWorkflowsCommand.ts | 6 +- .../commands/SendWorkflowStepStateCommand.ts | 6 +- .../commands/StartDirectoryListingCommand.ts | 6 +- .../src/commands/StartFileTransferCommand.ts | 6 +- .../src/commands/StartRemoteDeleteCommand.ts | 6 +- .../src/commands/StartRemoteMoveCommand.ts | 6 +- .../src/commands/StartServerCommand.ts | 6 +- .../src/commands/StopServerCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TestConnectionCommand.ts | 6 +- .../commands/TestIdentityProviderCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateAccessCommand.ts | 6 +- .../src/commands/UpdateAgreementCommand.ts | 6 +- .../src/commands/UpdateCertificateCommand.ts | 6 +- .../src/commands/UpdateConnectorCommand.ts | 6 +- .../src/commands/UpdateHostKeyCommand.ts | 6 +- .../src/commands/UpdateProfileCommand.ts | 6 +- .../src/commands/UpdateServerCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/commands/UpdateWebAppCommand.ts | 6 +- .../UpdateWebAppCustomizationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/TransferServiceException.ts | 2 +- clients/client-transfer/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAccessesPaginator.ts | 2 +- .../src/pagination/ListAgreementsPaginator.ts | 2 +- .../pagination/ListCertificatesPaginator.ts | 2 +- .../src/pagination/ListConnectorsPaginator.ts | 2 +- .../src/pagination/ListExecutionsPaginator.ts | 2 +- .../ListFileTransferResultsPaginator.ts | 2 +- .../src/pagination/ListProfilesPaginator.ts | 2 +- .../ListSecurityPoliciesPaginator.ts | 2 +- .../src/pagination/ListServersPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../src/pagination/ListWebAppsPaginator.ts | 2 +- .../src/pagination/ListWorkflowsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-transfer/src/runtimeConfig.ts | 8 +- .../client-transfer/src/runtimeExtensions.ts | 2 +- .../client-transfer/src/schemas/schemas_0.ts | 2 +- clients/client-translate/package.json | 12 +- clients/client-translate/src/Translate.ts | 4 +- .../client-translate/src/TranslateClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateParallelDataCommand.ts | 6 +- .../src/commands/DeleteParallelDataCommand.ts | 6 +- .../src/commands/DeleteTerminologyCommand.ts | 6 +- .../DescribeTextTranslationJobCommand.ts | 6 +- .../src/commands/GetParallelDataCommand.ts | 6 +- .../src/commands/GetTerminologyCommand.ts | 6 +- .../src/commands/ImportTerminologyCommand.ts | 6 +- .../src/commands/ListLanguagesCommand.ts | 6 +- .../src/commands/ListParallelDataCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTerminologiesCommand.ts | 6 +- .../ListTextTranslationJobsCommand.ts | 6 +- .../StartTextTranslationJobCommand.ts | 6 +- .../commands/StopTextTranslationJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/TranslateDocumentCommand.ts | 6 +- .../src/commands/TranslateTextCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateParallelDataCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/TranslateServiceException.ts | 2 +- clients/client-translate/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListLanguagesPaginator.ts | 2 +- .../pagination/ListParallelDataPaginator.ts | 2 +- .../pagination/ListTerminologiesPaginator.ts | 2 +- .../ListTextTranslationJobsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-translate/src/runtimeConfig.ts | 8 +- .../client-translate/src/runtimeExtensions.ts | 2 +- .../client-translate/src/schemas/schemas_0.ts | 2 +- clients/client-trustedadvisor/package.json | 12 +- .../src/TrustedAdvisor.ts | 4 +- .../src/TrustedAdvisorClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- ...eRecommendationResourceExclusionCommand.ts | 10 +- .../GetOrganizationRecommendationCommand.ts | 10 +- .../src/commands/GetRecommendationCommand.ts | 10 +- .../src/commands/ListChecksCommand.ts | 10 +- ...ganizationRecommendationAccountsCommand.ts | 10 +- ...anizationRecommendationResourcesCommand.ts | 10 +- .../ListOrganizationRecommendationsCommand.ts | 13 +- .../ListRecommendationResourcesCommand.ts | 10 +- .../commands/ListRecommendationsCommand.ts | 10 +- ...anizationRecommendationLifecycleCommand.ts | 10 +- .../UpdateRecommendationLifecycleCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/TrustedAdvisorServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListChecksPaginator.ts | 2 +- ...nizationRecommendationAccountsPaginator.ts | 2 +- ...izationRecommendationResourcesPaginator.ts | 2 +- ...istOrganizationRecommendationsPaginator.ts | 2 +- .../ListRecommendationResourcesPaginator.ts | 2 +- .../ListRecommendationsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../client-verifiedpermissions/package.json | 12 +- .../src/VerifiedPermissions.ts | 4 +- .../src/VerifiedPermissionsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/BatchGetPolicyCommand.ts | 6 +- .../src/commands/BatchIsAuthorizedCommand.ts | 6 +- .../BatchIsAuthorizedWithTokenCommand.ts | 6 +- .../commands/CreateIdentitySourceCommand.ts | 6 +- .../src/commands/CreatePolicyCommand.ts | 6 +- .../src/commands/CreatePolicyStoreCommand.ts | 6 +- .../commands/CreatePolicyTemplateCommand.ts | 6 +- .../commands/DeleteIdentitySourceCommand.ts | 6 +- .../src/commands/DeletePolicyCommand.ts | 6 +- .../src/commands/DeletePolicyStoreCommand.ts | 6 +- .../commands/DeletePolicyTemplateCommand.ts | 6 +- .../src/commands/GetIdentitySourceCommand.ts | 6 +- .../src/commands/GetPolicyCommand.ts | 6 +- .../src/commands/GetPolicyStoreCommand.ts | 6 +- .../src/commands/GetPolicyTemplateCommand.ts | 6 +- .../src/commands/GetSchemaCommand.ts | 6 +- .../src/commands/IsAuthorizedCommand.ts | 6 +- .../commands/IsAuthorizedWithTokenCommand.ts | 6 +- .../commands/ListIdentitySourcesCommand.ts | 6 +- .../src/commands/ListPoliciesCommand.ts | 6 +- .../src/commands/ListPolicyStoresCommand.ts | 6 +- .../commands/ListPolicyTemplatesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/PutSchemaCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateIdentitySourceCommand.ts | 6 +- .../src/commands/UpdatePolicyCommand.ts | 6 +- .../src/commands/UpdatePolicyStoreCommand.ts | 6 +- .../commands/UpdatePolicyTemplateCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../VerifiedPermissionsServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListIdentitySourcesPaginator.ts | 2 +- .../src/pagination/ListPoliciesPaginator.ts | 2 +- .../pagination/ListPolicyStoresPaginator.ts | 2 +- .../ListPolicyTemplatesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-voice-id/package.json | 12 +- clients/client-voice-id/src/VoiceID.ts | 4 +- clients/client-voice-id/src/VoiceIDClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateFraudsterCommand.ts | 6 +- .../src/commands/CreateDomainCommand.ts | 6 +- .../src/commands/CreateWatchlistCommand.ts | 6 +- .../src/commands/DeleteDomainCommand.ts | 6 +- .../src/commands/DeleteFraudsterCommand.ts | 6 +- .../src/commands/DeleteSpeakerCommand.ts | 6 +- .../src/commands/DeleteWatchlistCommand.ts | 6 +- .../src/commands/DescribeDomainCommand.ts | 6 +- .../src/commands/DescribeFraudsterCommand.ts | 6 +- ...DescribeFraudsterRegistrationJobCommand.ts | 9 +- .../src/commands/DescribeSpeakerCommand.ts | 6 +- .../DescribeSpeakerEnrollmentJobCommand.ts | 6 +- .../src/commands/DescribeWatchlistCommand.ts | 6 +- .../commands/DisassociateFraudsterCommand.ts | 6 +- .../src/commands/EvaluateSessionCommand.ts | 6 +- .../src/commands/ListDomainsCommand.ts | 6 +- .../ListFraudsterRegistrationJobsCommand.ts | 6 +- .../src/commands/ListFraudstersCommand.ts | 6 +- .../ListSpeakerEnrollmentJobsCommand.ts | 6 +- .../src/commands/ListSpeakersCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWatchlistsCommand.ts | 6 +- .../src/commands/OptOutSpeakerCommand.ts | 6 +- .../StartFraudsterRegistrationJobCommand.ts | 6 +- .../StartSpeakerEnrollmentJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDomainCommand.ts | 6 +- .../src/commands/UpdateWatchlistCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/VoiceIDServiceException.ts | 2 +- clients/client-voice-id/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDomainsPaginator.ts | 2 +- .../ListFraudsterRegistrationJobsPaginator.ts | 2 +- .../src/pagination/ListFraudstersPaginator.ts | 2 +- .../ListSpeakerEnrollmentJobsPaginator.ts | 2 +- .../src/pagination/ListSpeakersPaginator.ts | 2 +- .../src/pagination/ListWatchlistsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-voice-id/src/runtimeConfig.ts | 8 +- .../client-voice-id/src/runtimeExtensions.ts | 2 +- .../client-voice-id/src/schemas/schemas_0.ts | 2 +- clients/client-vpc-lattice/package.json | 12 +- clients/client-vpc-lattice/src/VPCLattice.ts | 4 +- .../src/VPCLatticeClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchUpdateRuleCommand.ts | 6 +- .../CreateAccessLogSubscriptionCommand.ts | 6 +- .../src/commands/CreateListenerCommand.ts | 6 +- .../CreateResourceConfigurationCommand.ts | 6 +- .../commands/CreateResourceGatewayCommand.ts | 6 +- .../src/commands/CreateRuleCommand.ts | 6 +- .../src/commands/CreateServiceCommand.ts | 6 +- .../commands/CreateServiceNetworkCommand.ts | 6 +- ...erviceNetworkResourceAssociationCommand.ts | 6 +- ...ServiceNetworkServiceAssociationCommand.ts | 6 +- ...eateServiceNetworkVpcAssociationCommand.ts | 6 +- .../src/commands/CreateTargetGroupCommand.ts | 6 +- .../DeleteAccessLogSubscriptionCommand.ts | 6 +- .../src/commands/DeleteAuthPolicyCommand.ts | 6 +- .../DeleteDomainVerificationCommand.ts | 6 +- .../src/commands/DeleteListenerCommand.ts | 6 +- .../DeleteResourceConfigurationCommand.ts | 6 +- ...eleteResourceEndpointAssociationCommand.ts | 6 +- .../commands/DeleteResourceGatewayCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DeleteRuleCommand.ts | 6 +- .../src/commands/DeleteServiceCommand.ts | 6 +- .../commands/DeleteServiceNetworkCommand.ts | 6 +- ...erviceNetworkResourceAssociationCommand.ts | 6 +- ...ServiceNetworkServiceAssociationCommand.ts | 6 +- ...leteServiceNetworkVpcAssociationCommand.ts | 6 +- .../src/commands/DeleteTargetGroupCommand.ts | 6 +- .../src/commands/DeregisterTargetsCommand.ts | 6 +- .../GetAccessLogSubscriptionCommand.ts | 6 +- .../src/commands/GetAuthPolicyCommand.ts | 6 +- .../commands/GetDomainVerificationCommand.ts | 6 +- .../src/commands/GetListenerCommand.ts | 6 +- .../GetResourceConfigurationCommand.ts | 6 +- .../src/commands/GetResourceGatewayCommand.ts | 6 +- .../src/commands/GetResourcePolicyCommand.ts | 6 +- .../src/commands/GetRuleCommand.ts | 6 +- .../src/commands/GetServiceCommand.ts | 6 +- .../src/commands/GetServiceNetworkCommand.ts | 6 +- ...erviceNetworkResourceAssociationCommand.ts | 6 +- ...ServiceNetworkServiceAssociationCommand.ts | 6 +- .../GetServiceNetworkVpcAssociationCommand.ts | 9 +- .../src/commands/GetTargetGroupCommand.ts | 6 +- .../ListAccessLogSubscriptionsCommand.ts | 6 +- .../ListDomainVerificationsCommand.ts | 6 +- .../src/commands/ListListenersCommand.ts | 6 +- .../ListResourceConfigurationsCommand.ts | 6 +- ...ListResourceEndpointAssociationsCommand.ts | 9 +- .../commands/ListResourceGatewaysCommand.ts | 6 +- .../src/commands/ListRulesCommand.ts | 6 +- ...rviceNetworkResourceAssociationsCommand.ts | 6 +- ...erviceNetworkServiceAssociationsCommand.ts | 6 +- ...istServiceNetworkVpcAssociationsCommand.ts | 6 +- ...ceNetworkVpcEndpointAssociationsCommand.ts | 6 +- .../commands/ListServiceNetworksCommand.ts | 6 +- .../src/commands/ListServicesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListTargetGroupsCommand.ts | 6 +- .../src/commands/ListTargetsCommand.ts | 6 +- .../src/commands/PutAuthPolicyCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../src/commands/RegisterTargetsCommand.ts | 6 +- .../StartDomainVerificationCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateAccessLogSubscriptionCommand.ts | 6 +- .../src/commands/UpdateListenerCommand.ts | 6 +- .../UpdateResourceConfigurationCommand.ts | 6 +- .../commands/UpdateResourceGatewayCommand.ts | 6 +- .../src/commands/UpdateRuleCommand.ts | 6 +- .../src/commands/UpdateServiceCommand.ts | 6 +- .../commands/UpdateServiceNetworkCommand.ts | 6 +- ...dateServiceNetworkVpcAssociationCommand.ts | 6 +- .../src/commands/UpdateTargetGroupCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/VPCLatticeServiceException.ts | 2 +- .../client-vpc-lattice/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAccessLogSubscriptionsPaginator.ts | 2 +- .../ListDomainVerificationsPaginator.ts | 2 +- .../src/pagination/ListListenersPaginator.ts | 2 +- .../ListResourceConfigurationsPaginator.ts | 2 +- ...stResourceEndpointAssociationsPaginator.ts | 2 +- .../ListResourceGatewaysPaginator.ts | 2 +- .../src/pagination/ListRulesPaginator.ts | 2 +- ...iceNetworkResourceAssociationsPaginator.ts | 2 +- ...viceNetworkServiceAssociationsPaginator.ts | 2 +- ...tServiceNetworkVpcAssociationsPaginator.ts | 2 +- ...NetworkVpcEndpointAssociationsPaginator.ts | 2 +- .../ListServiceNetworksPaginator.ts | 2 +- .../src/pagination/ListServicesPaginator.ts | 2 +- .../pagination/ListTargetGroupsPaginator.ts | 2 +- .../src/pagination/ListTargetsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-vpc-lattice/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-waf-regional/package.json | 12 +- .../client-waf-regional/src/WAFRegional.ts | 4 +- .../src/WAFRegionalClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateWebACLCommand.ts | 6 +- .../src/commands/CreateByteMatchSetCommand.ts | 6 +- .../src/commands/CreateGeoMatchSetCommand.ts | 6 +- .../src/commands/CreateIPSetCommand.ts | 6 +- .../commands/CreateRateBasedRuleCommand.ts | 6 +- .../commands/CreateRegexMatchSetCommand.ts | 6 +- .../commands/CreateRegexPatternSetCommand.ts | 6 +- .../src/commands/CreateRuleCommand.ts | 6 +- .../src/commands/CreateRuleGroupCommand.ts | 6 +- .../CreateSizeConstraintSetCommand.ts | 6 +- .../CreateSqlInjectionMatchSetCommand.ts | 6 +- .../src/commands/CreateWebACLCommand.ts | 6 +- .../CreateWebACLMigrationStackCommand.ts | 6 +- .../src/commands/CreateXssMatchSetCommand.ts | 6 +- .../src/commands/DeleteByteMatchSetCommand.ts | 6 +- .../src/commands/DeleteGeoMatchSetCommand.ts | 6 +- .../src/commands/DeleteIPSetCommand.ts | 6 +- .../DeleteLoggingConfigurationCommand.ts | 6 +- .../commands/DeletePermissionPolicyCommand.ts | 6 +- .../commands/DeleteRateBasedRuleCommand.ts | 6 +- .../commands/DeleteRegexMatchSetCommand.ts | 6 +- .../commands/DeleteRegexPatternSetCommand.ts | 6 +- .../src/commands/DeleteRuleCommand.ts | 6 +- .../src/commands/DeleteRuleGroupCommand.ts | 6 +- .../DeleteSizeConstraintSetCommand.ts | 6 +- .../DeleteSqlInjectionMatchSetCommand.ts | 6 +- .../src/commands/DeleteWebACLCommand.ts | 6 +- .../src/commands/DeleteXssMatchSetCommand.ts | 6 +- .../src/commands/DisassociateWebACLCommand.ts | 6 +- .../src/commands/GetByteMatchSetCommand.ts | 6 +- .../src/commands/GetChangeTokenCommand.ts | 6 +- .../commands/GetChangeTokenStatusCommand.ts | 6 +- .../src/commands/GetGeoMatchSetCommand.ts | 6 +- .../src/commands/GetIPSetCommand.ts | 6 +- .../GetLoggingConfigurationCommand.ts | 6 +- .../commands/GetPermissionPolicyCommand.ts | 6 +- .../src/commands/GetRateBasedRuleCommand.ts | 6 +- .../GetRateBasedRuleManagedKeysCommand.ts | 6 +- .../src/commands/GetRegexMatchSetCommand.ts | 6 +- .../src/commands/GetRegexPatternSetCommand.ts | 6 +- .../src/commands/GetRuleCommand.ts | 6 +- .../src/commands/GetRuleGroupCommand.ts | 6 +- .../src/commands/GetSampledRequestsCommand.ts | 6 +- .../commands/GetSizeConstraintSetCommand.ts | 6 +- .../GetSqlInjectionMatchSetCommand.ts | 6 +- .../src/commands/GetWebACLCommand.ts | 6 +- .../commands/GetWebACLForResourceCommand.ts | 6 +- .../src/commands/GetXssMatchSetCommand.ts | 6 +- .../ListActivatedRulesInRuleGroupCommand.ts | 6 +- .../src/commands/ListByteMatchSetsCommand.ts | 6 +- .../src/commands/ListGeoMatchSetsCommand.ts | 6 +- .../src/commands/ListIPSetsCommand.ts | 6 +- .../ListLoggingConfigurationsCommand.ts | 6 +- .../src/commands/ListRateBasedRulesCommand.ts | 6 +- .../src/commands/ListRegexMatchSetsCommand.ts | 6 +- .../commands/ListRegexPatternSetsCommand.ts | 6 +- .../commands/ListResourcesForWebACLCommand.ts | 6 +- .../src/commands/ListRuleGroupsCommand.ts | 6 +- .../src/commands/ListRulesCommand.ts | 6 +- .../commands/ListSizeConstraintSetsCommand.ts | 6 +- .../ListSqlInjectionMatchSetsCommand.ts | 6 +- .../ListSubscribedRuleGroupsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWebACLsCommand.ts | 6 +- .../src/commands/ListXssMatchSetsCommand.ts | 6 +- .../PutLoggingConfigurationCommand.ts | 6 +- .../commands/PutPermissionPolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateByteMatchSetCommand.ts | 6 +- .../src/commands/UpdateGeoMatchSetCommand.ts | 6 +- .../src/commands/UpdateIPSetCommand.ts | 6 +- .../commands/UpdateRateBasedRuleCommand.ts | 6 +- .../commands/UpdateRegexMatchSetCommand.ts | 6 +- .../commands/UpdateRegexPatternSetCommand.ts | 6 +- .../src/commands/UpdateRuleCommand.ts | 6 +- .../src/commands/UpdateRuleGroupCommand.ts | 6 +- .../UpdateSizeConstraintSetCommand.ts | 6 +- .../UpdateSqlInjectionMatchSetCommand.ts | 6 +- .../src/commands/UpdateWebACLCommand.ts | 6 +- .../src/commands/UpdateXssMatchSetCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/WAFRegionalServiceException.ts | 2 +- .../client-waf-regional/src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-waf-regional/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-waf/package.json | 12 +- clients/client-waf/src/WAF.ts | 4 +- clients/client-waf/src/WAFClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateByteMatchSetCommand.ts | 6 +- .../src/commands/CreateGeoMatchSetCommand.ts | 6 +- .../src/commands/CreateIPSetCommand.ts | 6 +- .../commands/CreateRateBasedRuleCommand.ts | 6 +- .../commands/CreateRegexMatchSetCommand.ts | 6 +- .../commands/CreateRegexPatternSetCommand.ts | 6 +- .../src/commands/CreateRuleCommand.ts | 6 +- .../src/commands/CreateRuleGroupCommand.ts | 6 +- .../CreateSizeConstraintSetCommand.ts | 6 +- .../CreateSqlInjectionMatchSetCommand.ts | 6 +- .../src/commands/CreateWebACLCommand.ts | 6 +- .../CreateWebACLMigrationStackCommand.ts | 6 +- .../src/commands/CreateXssMatchSetCommand.ts | 6 +- .../src/commands/DeleteByteMatchSetCommand.ts | 6 +- .../src/commands/DeleteGeoMatchSetCommand.ts | 6 +- .../src/commands/DeleteIPSetCommand.ts | 6 +- .../DeleteLoggingConfigurationCommand.ts | 6 +- .../commands/DeletePermissionPolicyCommand.ts | 6 +- .../commands/DeleteRateBasedRuleCommand.ts | 6 +- .../commands/DeleteRegexMatchSetCommand.ts | 6 +- .../commands/DeleteRegexPatternSetCommand.ts | 6 +- .../src/commands/DeleteRuleCommand.ts | 6 +- .../src/commands/DeleteRuleGroupCommand.ts | 6 +- .../DeleteSizeConstraintSetCommand.ts | 6 +- .../DeleteSqlInjectionMatchSetCommand.ts | 6 +- .../src/commands/DeleteWebACLCommand.ts | 6 +- .../src/commands/DeleteXssMatchSetCommand.ts | 6 +- .../src/commands/GetByteMatchSetCommand.ts | 6 +- .../src/commands/GetChangeTokenCommand.ts | 6 +- .../commands/GetChangeTokenStatusCommand.ts | 6 +- .../src/commands/GetGeoMatchSetCommand.ts | 6 +- .../src/commands/GetIPSetCommand.ts | 6 +- .../GetLoggingConfigurationCommand.ts | 6 +- .../commands/GetPermissionPolicyCommand.ts | 6 +- .../src/commands/GetRateBasedRuleCommand.ts | 6 +- .../GetRateBasedRuleManagedKeysCommand.ts | 6 +- .../src/commands/GetRegexMatchSetCommand.ts | 6 +- .../src/commands/GetRegexPatternSetCommand.ts | 6 +- .../client-waf/src/commands/GetRuleCommand.ts | 6 +- .../src/commands/GetRuleGroupCommand.ts | 6 +- .../src/commands/GetSampledRequestsCommand.ts | 6 +- .../commands/GetSizeConstraintSetCommand.ts | 6 +- .../GetSqlInjectionMatchSetCommand.ts | 6 +- .../src/commands/GetWebACLCommand.ts | 6 +- .../src/commands/GetXssMatchSetCommand.ts | 6 +- .../ListActivatedRulesInRuleGroupCommand.ts | 6 +- .../src/commands/ListByteMatchSetsCommand.ts | 6 +- .../src/commands/ListGeoMatchSetsCommand.ts | 6 +- .../src/commands/ListIPSetsCommand.ts | 6 +- .../ListLoggingConfigurationsCommand.ts | 6 +- .../src/commands/ListRateBasedRulesCommand.ts | 6 +- .../src/commands/ListRegexMatchSetsCommand.ts | 6 +- .../commands/ListRegexPatternSetsCommand.ts | 6 +- .../src/commands/ListRuleGroupsCommand.ts | 6 +- .../src/commands/ListRulesCommand.ts | 6 +- .../commands/ListSizeConstraintSetsCommand.ts | 6 +- .../ListSqlInjectionMatchSetsCommand.ts | 6 +- .../ListSubscribedRuleGroupsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWebACLsCommand.ts | 6 +- .../src/commands/ListXssMatchSetsCommand.ts | 6 +- .../PutLoggingConfigurationCommand.ts | 6 +- .../commands/PutPermissionPolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateByteMatchSetCommand.ts | 6 +- .../src/commands/UpdateGeoMatchSetCommand.ts | 6 +- .../src/commands/UpdateIPSetCommand.ts | 6 +- .../commands/UpdateRateBasedRuleCommand.ts | 6 +- .../commands/UpdateRegexMatchSetCommand.ts | 6 +- .../commands/UpdateRegexPatternSetCommand.ts | 6 +- .../src/commands/UpdateRuleCommand.ts | 6 +- .../src/commands/UpdateRuleGroupCommand.ts | 6 +- .../UpdateSizeConstraintSetCommand.ts | 6 +- .../UpdateSqlInjectionMatchSetCommand.ts | 6 +- .../src/commands/UpdateWebACLCommand.ts | 6 +- .../src/commands/UpdateXssMatchSetCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-waf/src/extensionConfiguration.ts | 8 +- .../src/models/WAFServiceException.ts | 2 +- clients/client-waf/src/models/errors.ts | 2 +- .../client-waf/src/runtimeConfig.browser.ts | 7 +- .../client-waf/src/runtimeConfig.native.ts | 2 +- .../client-waf/src/runtimeConfig.shared.ts | 4 +- clients/client-waf/src/runtimeConfig.ts | 8 +- clients/client-waf/src/runtimeExtensions.ts | 2 +- clients/client-waf/src/schemas/schemas_0.ts | 2 +- clients/client-wafv2/package.json | 12 +- clients/client-wafv2/src/WAFV2.ts | 4 +- clients/client-wafv2/src/WAFV2Client.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateWebACLCommand.ts | 6 +- .../src/commands/CheckCapacityCommand.ts | 6 +- .../src/commands/CreateAPIKeyCommand.ts | 6 +- .../src/commands/CreateIPSetCommand.ts | 6 +- .../commands/CreateRegexPatternSetCommand.ts | 6 +- .../src/commands/CreateRuleGroupCommand.ts | 6 +- .../src/commands/CreateWebACLCommand.ts | 6 +- .../src/commands/DeleteAPIKeyCommand.ts | 6 +- .../DeleteFirewallManagerRuleGroupsCommand.ts | 9 +- .../src/commands/DeleteIPSetCommand.ts | 6 +- .../DeleteLoggingConfigurationCommand.ts | 6 +- .../commands/DeletePermissionPolicyCommand.ts | 6 +- .../commands/DeleteRegexPatternSetCommand.ts | 6 +- .../src/commands/DeleteRuleGroupCommand.ts | 6 +- .../src/commands/DeleteWebACLCommand.ts | 6 +- .../DescribeAllManagedProductsCommand.ts | 6 +- .../DescribeManagedProductsByVendorCommand.ts | 9 +- .../DescribeManagedRuleGroupCommand.ts | 6 +- .../src/commands/DisassociateWebACLCommand.ts | 6 +- .../GenerateMobileSdkReleaseUrlCommand.ts | 6 +- .../src/commands/GetDecryptedAPIKeyCommand.ts | 6 +- .../src/commands/GetIPSetCommand.ts | 6 +- .../GetLoggingConfigurationCommand.ts | 6 +- .../src/commands/GetManagedRuleSetCommand.ts | 6 +- .../commands/GetMobileSdkReleaseCommand.ts | 6 +- .../commands/GetPermissionPolicyCommand.ts | 6 +- ...GetRateBasedStatementManagedKeysCommand.ts | 9 +- .../src/commands/GetRegexPatternSetCommand.ts | 6 +- .../src/commands/GetRuleGroupCommand.ts | 6 +- .../src/commands/GetSampledRequestsCommand.ts | 6 +- .../src/commands/GetWebACLCommand.ts | 6 +- .../commands/GetWebACLForResourceCommand.ts | 6 +- .../src/commands/ListAPIKeysCommand.ts | 6 +- ...vailableManagedRuleGroupVersionsCommand.ts | 6 +- .../ListAvailableManagedRuleGroupsCommand.ts | 6 +- .../src/commands/ListIPSetsCommand.ts | 6 +- .../ListLoggingConfigurationsCommand.ts | 6 +- .../commands/ListManagedRuleSetsCommand.ts | 6 +- .../commands/ListMobileSdkReleasesCommand.ts | 6 +- .../commands/ListRegexPatternSetsCommand.ts | 6 +- .../commands/ListResourcesForWebACLCommand.ts | 6 +- .../src/commands/ListRuleGroupsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListWebACLsCommand.ts | 6 +- .../PutLoggingConfigurationCommand.ts | 6 +- .../PutManagedRuleSetVersionsCommand.ts | 6 +- .../commands/PutPermissionPolicyCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateIPSetCommand.ts | 6 +- ...eManagedRuleSetVersionExpiryDateCommand.ts | 6 +- .../commands/UpdateRegexPatternSetCommand.ts | 6 +- .../src/commands/UpdateRuleGroupCommand.ts | 6 +- .../src/commands/UpdateWebACLCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/WAFV2ServiceException.ts | 2 +- clients/client-wafv2/src/models/errors.ts | 2 +- .../client-wafv2/src/runtimeConfig.browser.ts | 7 +- .../client-wafv2/src/runtimeConfig.native.ts | 2 +- .../client-wafv2/src/runtimeConfig.shared.ts | 4 +- clients/client-wafv2/src/runtimeConfig.ts | 8 +- clients/client-wafv2/src/runtimeExtensions.ts | 2 +- clients/client-wafv2/src/schemas/schemas_0.ts | 2 +- clients/client-wellarchitected/package.json | 12 +- .../src/WellArchitected.ts | 4 +- .../src/WellArchitectedClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/AssociateLensesCommand.ts | 10 +- .../src/commands/AssociateProfilesCommand.ts | 10 +- .../src/commands/CreateLensShareCommand.ts | 10 +- .../src/commands/CreateLensVersionCommand.ts | 10 +- .../src/commands/CreateMilestoneCommand.ts | 10 +- .../src/commands/CreateProfileCommand.ts | 10 +- .../src/commands/CreateProfileShareCommand.ts | 10 +- .../commands/CreateReviewTemplateCommand.ts | 10 +- .../commands/CreateTemplateShareCommand.ts | 10 +- .../src/commands/CreateWorkloadCommand.ts | 10 +- .../commands/CreateWorkloadShareCommand.ts | 10 +- .../src/commands/DeleteLensCommand.ts | 10 +- .../src/commands/DeleteLensShareCommand.ts | 10 +- .../src/commands/DeleteProfileCommand.ts | 10 +- .../src/commands/DeleteProfileShareCommand.ts | 10 +- .../commands/DeleteReviewTemplateCommand.ts | 10 +- .../commands/DeleteTemplateShareCommand.ts | 10 +- .../src/commands/DeleteWorkloadCommand.ts | 10 +- .../commands/DeleteWorkloadShareCommand.ts | 10 +- .../src/commands/DisassociateLensesCommand.ts | 10 +- .../commands/DisassociateProfilesCommand.ts | 10 +- .../src/commands/ExportLensCommand.ts | 10 +- .../src/commands/GetAnswerCommand.ts | 10 +- .../commands/GetConsolidatedReportCommand.ts | 10 +- .../src/commands/GetGlobalSettingsCommand.ts | 10 +- .../src/commands/GetLensCommand.ts | 10 +- .../src/commands/GetLensReviewCommand.ts | 10 +- .../commands/GetLensReviewReportCommand.ts | 10 +- .../GetLensVersionDifferenceCommand.ts | 10 +- .../src/commands/GetMilestoneCommand.ts | 10 +- .../src/commands/GetProfileCommand.ts | 10 +- .../src/commands/GetProfileTemplateCommand.ts | 10 +- .../GetReviewTemplateAnswerCommand.ts | 10 +- .../src/commands/GetReviewTemplateCommand.ts | 10 +- .../GetReviewTemplateLensReviewCommand.ts | 10 +- .../src/commands/GetWorkloadCommand.ts | 10 +- .../src/commands/ImportLensCommand.ts | 10 +- .../src/commands/ListAnswersCommand.ts | 10 +- .../src/commands/ListCheckDetailsCommand.ts | 10 +- .../src/commands/ListCheckSummariesCommand.ts | 10 +- .../ListLensReviewImprovementsCommand.ts | 10 +- .../src/commands/ListLensReviewsCommand.ts | 10 +- .../src/commands/ListLensSharesCommand.ts | 10 +- .../src/commands/ListLensesCommand.ts | 10 +- .../src/commands/ListMilestonesCommand.ts | 10 +- .../src/commands/ListNotificationsCommand.ts | 10 +- .../ListProfileNotificationsCommand.ts | 10 +- .../src/commands/ListProfileSharesCommand.ts | 10 +- .../src/commands/ListProfilesCommand.ts | 10 +- .../ListReviewTemplateAnswersCommand.ts | 10 +- .../commands/ListReviewTemplatesCommand.ts | 10 +- .../commands/ListShareInvitationsCommand.ts | 10 +- .../commands/ListTagsForResourceCommand.ts | 10 +- .../src/commands/ListTemplateSharesCommand.ts | 10 +- .../src/commands/ListWorkloadSharesCommand.ts | 10 +- .../src/commands/ListWorkloadsCommand.ts | 10 +- .../src/commands/TagResourceCommand.ts | 10 +- .../src/commands/UntagResourceCommand.ts | 10 +- .../src/commands/UpdateAnswerCommand.ts | 10 +- .../commands/UpdateGlobalSettingsCommand.ts | 10 +- .../src/commands/UpdateIntegrationCommand.ts | 10 +- .../src/commands/UpdateLensReviewCommand.ts | 10 +- .../src/commands/UpdateProfileCommand.ts | 10 +- .../UpdateReviewTemplateAnswerCommand.ts | 10 +- .../commands/UpdateReviewTemplateCommand.ts | 10 +- .../UpdateReviewTemplateLensReviewCommand.ts | 10 +- .../commands/UpdateShareInvitationCommand.ts | 10 +- .../src/commands/UpdateWorkloadCommand.ts | 10 +- .../commands/UpdateWorkloadShareCommand.ts | 10 +- .../src/commands/UpgradeLensReviewCommand.ts | 10 +- .../commands/UpgradeProfileVersionCommand.ts | 10 +- .../UpgradeReviewTemplateLensReviewCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/WellArchitectedServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../GetConsolidatedReportPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAnswersPaginator.ts | 2 +- .../pagination/ListCheckDetailsPaginator.ts | 2 +- .../pagination/ListCheckSummariesPaginator.ts | 2 +- .../ListLensReviewImprovementsPaginator.ts | 2 +- .../pagination/ListLensReviewsPaginator.ts | 2 +- .../src/pagination/ListLensSharesPaginator.ts | 2 +- .../src/pagination/ListLensesPaginator.ts | 2 +- .../src/pagination/ListMilestonesPaginator.ts | 2 +- .../pagination/ListNotificationsPaginator.ts | 2 +- .../ListProfileNotificationsPaginator.ts | 2 +- .../pagination/ListProfileSharesPaginator.ts | 2 +- .../src/pagination/ListProfilesPaginator.ts | 2 +- .../ListReviewTemplateAnswersPaginator.ts | 2 +- .../ListReviewTemplatesPaginator.ts | 2 +- .../ListShareInvitationsPaginator.ts | 2 +- .../pagination/ListTemplateSharesPaginator.ts | 2 +- .../pagination/ListWorkloadSharesPaginator.ts | 2 +- .../src/pagination/ListWorkloadsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-wisdom/package.json | 12 +- clients/client-wisdom/src/Wisdom.ts | 4 +- clients/client-wisdom/src/WisdomClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../CreateAssistantAssociationCommand.ts | 6 +- .../src/commands/CreateAssistantCommand.ts | 6 +- .../src/commands/CreateContentCommand.ts | 6 +- .../commands/CreateKnowledgeBaseCommand.ts | 6 +- .../commands/CreateQuickResponseCommand.ts | 6 +- .../src/commands/CreateSessionCommand.ts | 6 +- .../DeleteAssistantAssociationCommand.ts | 6 +- .../src/commands/DeleteAssistantCommand.ts | 6 +- .../src/commands/DeleteContentCommand.ts | 6 +- .../src/commands/DeleteImportJobCommand.ts | 6 +- .../commands/DeleteKnowledgeBaseCommand.ts | 6 +- .../commands/DeleteQuickResponseCommand.ts | 6 +- .../GetAssistantAssociationCommand.ts | 6 +- .../src/commands/GetAssistantCommand.ts | 6 +- .../src/commands/GetContentCommand.ts | 6 +- .../src/commands/GetContentSummaryCommand.ts | 6 +- .../src/commands/GetImportJobCommand.ts | 6 +- .../src/commands/GetKnowledgeBaseCommand.ts | 6 +- .../src/commands/GetQuickResponseCommand.ts | 6 +- .../src/commands/GetRecommendationsCommand.ts | 6 +- .../src/commands/GetSessionCommand.ts | 6 +- .../ListAssistantAssociationsCommand.ts | 6 +- .../src/commands/ListAssistantsCommand.ts | 6 +- .../src/commands/ListContentsCommand.ts | 6 +- .../src/commands/ListImportJobsCommand.ts | 6 +- .../src/commands/ListKnowledgeBasesCommand.ts | 6 +- .../src/commands/ListQuickResponsesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../NotifyRecommendationsReceivedCommand.ts | 6 +- .../src/commands/QueryAssistantCommand.ts | 6 +- .../RemoveKnowledgeBaseTemplateUriCommand.ts | 6 +- .../src/commands/SearchContentCommand.ts | 6 +- .../commands/SearchQuickResponsesCommand.ts | 6 +- .../src/commands/SearchSessionsCommand.ts | 6 +- .../src/commands/StartContentUploadCommand.ts | 6 +- .../src/commands/StartImportJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateContentCommand.ts | 6 +- .../UpdateKnowledgeBaseTemplateUriCommand.ts | 6 +- .../commands/UpdateQuickResponseCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/WisdomServiceException.ts | 2 +- clients/client-wisdom/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListAssistantAssociationsPaginator.ts | 2 +- .../src/pagination/ListAssistantsPaginator.ts | 2 +- .../src/pagination/ListContentsPaginator.ts | 2 +- .../src/pagination/ListImportJobsPaginator.ts | 2 +- .../pagination/ListKnowledgeBasesPaginator.ts | 2 +- .../pagination/ListQuickResponsesPaginator.ts | 2 +- .../src/pagination/QueryAssistantPaginator.ts | 2 +- .../src/pagination/SearchContentPaginator.ts | 2 +- .../SearchQuickResponsesPaginator.ts | 2 +- .../src/pagination/SearchSessionsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../client-wisdom/src/runtimeConfig.native.ts | 2 +- .../client-wisdom/src/runtimeConfig.shared.ts | 4 +- clients/client-wisdom/src/runtimeConfig.ts | 8 +- .../client-wisdom/src/runtimeExtensions.ts | 2 +- .../client-wisdom/src/schemas/schemas_0.ts | 2 +- clients/client-workdocs/package.json | 12 +- clients/client-workdocs/src/WorkDocs.ts | 4 +- clients/client-workdocs/src/WorkDocsClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AbortDocumentVersionUploadCommand.ts | 6 +- .../src/commands/ActivateUserCommand.ts | 6 +- .../commands/AddResourcePermissionsCommand.ts | 6 +- .../src/commands/CreateCommentCommand.ts | 6 +- .../commands/CreateCustomMetadataCommand.ts | 6 +- .../src/commands/CreateFolderCommand.ts | 6 +- .../src/commands/CreateLabelsCommand.ts | 6 +- .../CreateNotificationSubscriptionCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../src/commands/DeactivateUserCommand.ts | 6 +- .../src/commands/DeleteCommentCommand.ts | 6 +- .../commands/DeleteCustomMetadataCommand.ts | 6 +- .../src/commands/DeleteDocumentCommand.ts | 6 +- .../commands/DeleteDocumentVersionCommand.ts | 6 +- .../src/commands/DeleteFolderCommand.ts | 6 +- .../commands/DeleteFolderContentsCommand.ts | 6 +- .../src/commands/DeleteLabelsCommand.ts | 6 +- .../DeleteNotificationSubscriptionCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../src/commands/DescribeActivitiesCommand.ts | 6 +- .../src/commands/DescribeCommentsCommand.ts | 6 +- .../DescribeDocumentVersionsCommand.ts | 6 +- .../commands/DescribeFolderContentsCommand.ts | 6 +- .../src/commands/DescribeGroupsCommand.ts | 6 +- ...escribeNotificationSubscriptionsCommand.ts | 6 +- .../DescribeResourcePermissionsCommand.ts | 6 +- .../commands/DescribeRootFoldersCommand.ts | 6 +- .../src/commands/DescribeUsersCommand.ts | 6 +- .../src/commands/GetCurrentUserCommand.ts | 6 +- .../src/commands/GetDocumentCommand.ts | 6 +- .../src/commands/GetDocumentPathCommand.ts | 6 +- .../src/commands/GetDocumentVersionCommand.ts | 6 +- .../src/commands/GetFolderCommand.ts | 6 +- .../src/commands/GetFolderPathCommand.ts | 6 +- .../src/commands/GetResourcesCommand.ts | 6 +- .../InitiateDocumentVersionUploadCommand.ts | 6 +- .../RemoveAllResourcePermissionsCommand.ts | 6 +- .../RemoveResourcePermissionCommand.ts | 6 +- .../RestoreDocumentVersionsCommand.ts | 6 +- .../src/commands/SearchResourcesCommand.ts | 6 +- .../src/commands/UpdateDocumentCommand.ts | 6 +- .../commands/UpdateDocumentVersionCommand.ts | 6 +- .../src/commands/UpdateFolderCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/WorkDocsServiceException.ts | 2 +- clients/client-workdocs/src/models/errors.ts | 2 +- .../pagination/DescribeActivitiesPaginator.ts | 2 +- .../pagination/DescribeCommentsPaginator.ts | 2 +- .../DescribeDocumentVersionsPaginator.ts | 2 +- .../DescribeFolderContentsPaginator.ts | 2 +- .../src/pagination/DescribeGroupsPaginator.ts | 2 +- ...cribeNotificationSubscriptionsPaginator.ts | 2 +- .../DescribeResourcePermissionsPaginator.ts | 2 +- .../DescribeRootFoldersPaginator.ts | 2 +- .../src/pagination/DescribeUsersPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/SearchResourcesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-workdocs/src/runtimeConfig.ts | 8 +- .../client-workdocs/src/runtimeExtensions.ts | 2 +- .../client-workdocs/src/schemas/schemas_0.ts | 2 +- clients/client-workmail/package.json | 12 +- clients/client-workmail/src/WorkMail.ts | 4 +- clients/client-workmail/src/WorkMailClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateDelegateToResourceCommand.ts | 6 +- .../commands/AssociateMemberToGroupCommand.ts | 6 +- .../AssumeImpersonationRoleCommand.ts | 6 +- .../commands/CancelMailboxExportJobCommand.ts | 6 +- .../src/commands/CreateAliasCommand.ts | 6 +- .../CreateAvailabilityConfigurationCommand.ts | 9 +- .../src/commands/CreateGroupCommand.ts | 6 +- .../CreateIdentityCenterApplicationCommand.ts | 9 +- .../CreateImpersonationRoleCommand.ts | 6 +- .../CreateMobileDeviceAccessRuleCommand.ts | 6 +- .../src/commands/CreateOrganizationCommand.ts | 6 +- .../src/commands/CreateResourceCommand.ts | 6 +- .../src/commands/CreateUserCommand.ts | 6 +- .../DeleteAccessControlRuleCommand.ts | 6 +- .../src/commands/DeleteAliasCommand.ts | 6 +- .../DeleteAvailabilityConfigurationCommand.ts | 9 +- ...leteEmailMonitoringConfigurationCommand.ts | 6 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../DeleteIdentityCenterApplicationCommand.ts | 9 +- ...eteIdentityProviderConfigurationCommand.ts | 6 +- .../DeleteImpersonationRoleCommand.ts | 6 +- .../DeleteMailboxPermissionsCommand.ts | 6 +- ...DeleteMobileDeviceAccessOverrideCommand.ts | 9 +- .../DeleteMobileDeviceAccessRuleCommand.ts | 6 +- .../src/commands/DeleteOrganizationCommand.ts | 6 +- .../DeletePersonalAccessTokenCommand.ts | 6 +- .../src/commands/DeleteResourceCommand.ts | 6 +- .../commands/DeleteRetentionPolicyCommand.ts | 6 +- .../src/commands/DeleteUserCommand.ts | 6 +- .../commands/DeregisterFromWorkMailCommand.ts | 6 +- .../commands/DeregisterMailDomainCommand.ts | 6 +- ...ribeEmailMonitoringConfigurationCommand.ts | 6 +- .../src/commands/DescribeEntityCommand.ts | 6 +- .../src/commands/DescribeGroupCommand.ts | 6 +- ...ibeIdentityProviderConfigurationCommand.ts | 6 +- .../DescribeInboundDmarcSettingsCommand.ts | 6 +- .../DescribeMailboxExportJobCommand.ts | 6 +- .../commands/DescribeOrganizationCommand.ts | 6 +- .../src/commands/DescribeResourceCommand.ts | 6 +- .../src/commands/DescribeUserCommand.ts | 6 +- ...DisassociateDelegateFromResourceCommand.ts | 9 +- .../DisassociateMemberFromGroupCommand.ts | 6 +- .../commands/GetAccessControlEffectCommand.ts | 6 +- .../GetDefaultRetentionPolicyCommand.ts | 6 +- .../commands/GetImpersonationRoleCommand.ts | 6 +- .../GetImpersonationRoleEffectCommand.ts | 6 +- .../src/commands/GetMailDomainCommand.ts | 6 +- .../src/commands/GetMailboxDetailsCommand.ts | 6 +- .../GetMobileDeviceAccessEffectCommand.ts | 6 +- .../GetMobileDeviceAccessOverrideCommand.ts | 6 +- .../GetPersonalAccessTokenMetadataCommand.ts | 6 +- .../commands/ListAccessControlRulesCommand.ts | 6 +- .../src/commands/ListAliasesCommand.ts | 6 +- .../ListAvailabilityConfigurationsCommand.ts | 6 +- .../src/commands/ListGroupMembersCommand.ts | 6 +- .../src/commands/ListGroupsCommand.ts | 6 +- .../commands/ListGroupsForEntityCommand.ts | 6 +- .../commands/ListImpersonationRolesCommand.ts | 6 +- .../src/commands/ListMailDomainsCommand.ts | 6 +- .../commands/ListMailboxExportJobsCommand.ts | 6 +- .../commands/ListMailboxPermissionsCommand.ts | 6 +- .../ListMobileDeviceAccessOverridesCommand.ts | 9 +- .../ListMobileDeviceAccessRulesCommand.ts | 6 +- .../src/commands/ListOrganizationsCommand.ts | 6 +- .../ListPersonalAccessTokensCommand.ts | 6 +- .../commands/ListResourceDelegatesCommand.ts | 6 +- .../src/commands/ListResourcesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/ListUsersCommand.ts | 6 +- .../commands/PutAccessControlRuleCommand.ts | 6 +- .../PutEmailMonitoringConfigurationCommand.ts | 9 +- ...PutIdentityProviderConfigurationCommand.ts | 9 +- .../PutInboundDmarcSettingsCommand.ts | 6 +- .../commands/PutMailboxPermissionsCommand.ts | 6 +- .../PutMobileDeviceAccessOverrideCommand.ts | 6 +- .../src/commands/PutRetentionPolicyCommand.ts | 6 +- .../src/commands/RegisterMailDomainCommand.ts | 6 +- .../src/commands/RegisterToWorkMailCommand.ts | 6 +- .../src/commands/ResetPasswordCommand.ts | 6 +- .../commands/StartMailboxExportJobCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../TestAvailabilityConfigurationCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../UpdateAvailabilityConfigurationCommand.ts | 9 +- .../UpdateDefaultMailDomainCommand.ts | 6 +- .../src/commands/UpdateGroupCommand.ts | 6 +- .../UpdateImpersonationRoleCommand.ts | 6 +- .../src/commands/UpdateMailboxQuotaCommand.ts | 6 +- .../UpdateMobileDeviceAccessRuleCommand.ts | 6 +- .../UpdatePrimaryEmailAddressCommand.ts | 6 +- .../src/commands/UpdateResourceCommand.ts | 6 +- .../src/commands/UpdateUserCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/WorkMailServiceException.ts | 2 +- clients/client-workmail/src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListAliasesPaginator.ts | 2 +- ...ListAvailabilityConfigurationsPaginator.ts | 2 +- .../pagination/ListGroupMembersPaginator.ts | 2 +- .../ListGroupsForEntityPaginator.ts | 2 +- .../src/pagination/ListGroupsPaginator.ts | 2 +- .../ListImpersonationRolesPaginator.ts | 2 +- .../pagination/ListMailDomainsPaginator.ts | 2 +- .../ListMailboxExportJobsPaginator.ts | 2 +- .../ListMailboxPermissionsPaginator.ts | 2 +- ...istMobileDeviceAccessOverridesPaginator.ts | 2 +- .../pagination/ListOrganizationsPaginator.ts | 2 +- .../ListPersonalAccessTokensPaginator.ts | 2 +- .../ListResourceDelegatesPaginator.ts | 2 +- .../src/pagination/ListResourcesPaginator.ts | 2 +- .../src/pagination/ListUsersPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- clients/client-workmail/src/runtimeConfig.ts | 8 +- .../client-workmail/src/runtimeExtensions.ts | 2 +- .../client-workmail/src/schemas/schemas_0.ts | 2 +- .../client-workmailmessageflow/package.json | 12 +- .../src/WorkMailMessageFlow.ts | 4 +- .../src/WorkMailMessageFlowClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../commands/GetRawMessageContentCommand.ts | 6 +- .../commands/PutRawMessageContentCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../WorkMailMessageFlowServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 7 +- .../client-workspaces-instances/package.json | 12 +- .../src/WorkspacesInstances.ts | 4 +- .../src/WorkspacesInstancesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 7 +- .../src/commands/AssociateVolumeCommand.ts | 6 +- .../src/commands/CreateVolumeCommand.ts | 6 +- .../CreateWorkspaceInstanceCommand.ts | 6 +- .../src/commands/DeleteVolumeCommand.ts | 6 +- .../DeleteWorkspaceInstanceCommand.ts | 6 +- .../src/commands/DisassociateVolumeCommand.ts | 6 +- .../commands/GetWorkspaceInstanceCommand.ts | 6 +- .../src/commands/ListInstanceTypesCommand.ts | 6 +- .../src/commands/ListRegionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/ListWorkspaceInstancesCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../WorkspacesInstancesServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListInstanceTypesPaginator.ts | 2 +- .../src/pagination/ListRegionsPaginator.ts | 2 +- .../ListWorkspaceInstancesPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../package.json | 12 +- .../src/WorkSpacesThinClient.ts | 4 +- .../src/WorkSpacesThinClientClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/CreateEnvironmentCommand.ts | 6 +- .../src/commands/DeleteDeviceCommand.ts | 6 +- .../src/commands/DeleteEnvironmentCommand.ts | 6 +- .../src/commands/DeregisterDeviceCommand.ts | 6 +- .../src/commands/GetDeviceCommand.ts | 6 +- .../src/commands/GetEnvironmentCommand.ts | 6 +- .../src/commands/GetSoftwareSetCommand.ts | 6 +- .../src/commands/ListDevicesCommand.ts | 6 +- .../src/commands/ListEnvironmentsCommand.ts | 6 +- .../src/commands/ListSoftwareSetsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateDeviceCommand.ts | 6 +- .../src/commands/UpdateEnvironmentCommand.ts | 6 +- .../src/commands/UpdateSoftwareSetCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../WorkSpacesThinClientServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/pagination/ListDevicesPaginator.ts | 2 +- .../pagination/ListEnvironmentsPaginator.ts | 2 +- .../pagination/ListSoftwareSetsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-workspaces-web/package.json | 12 +- .../src/WorkSpacesWeb.ts | 4 +- .../src/WorkSpacesWebClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AssociateBrowserSettingsCommand.ts | 6 +- .../AssociateDataProtectionSettingsCommand.ts | 9 +- .../AssociateIpAccessSettingsCommand.ts | 6 +- .../AssociateNetworkSettingsCommand.ts | 6 +- .../commands/AssociateSessionLoggerCommand.ts | 6 +- .../commands/AssociateTrustStoreCommand.ts | 6 +- ...sociateUserAccessLoggingSettingsCommand.ts | 6 +- .../commands/AssociateUserSettingsCommand.ts | 6 +- .../commands/CreateBrowserSettingsCommand.ts | 6 +- .../CreateDataProtectionSettingsCommand.ts | 6 +- .../commands/CreateIdentityProviderCommand.ts | 6 +- .../commands/CreateIpAccessSettingsCommand.ts | 6 +- .../commands/CreateNetworkSettingsCommand.ts | 6 +- .../src/commands/CreatePortalCommand.ts | 6 +- .../commands/CreateSessionLoggerCommand.ts | 6 +- .../src/commands/CreateTrustStoreCommand.ts | 6 +- .../CreateUserAccessLoggingSettingsCommand.ts | 9 +- .../src/commands/CreateUserSettingsCommand.ts | 6 +- .../commands/DeleteBrowserSettingsCommand.ts | 6 +- .../DeleteDataProtectionSettingsCommand.ts | 6 +- .../commands/DeleteIdentityProviderCommand.ts | 6 +- .../commands/DeleteIpAccessSettingsCommand.ts | 6 +- .../commands/DeleteNetworkSettingsCommand.ts | 6 +- .../src/commands/DeletePortalCommand.ts | 6 +- .../commands/DeleteSessionLoggerCommand.ts | 6 +- .../src/commands/DeleteTrustStoreCommand.ts | 6 +- .../DeleteUserAccessLoggingSettingsCommand.ts | 9 +- .../src/commands/DeleteUserSettingsCommand.ts | 6 +- .../DisassociateBrowserSettingsCommand.ts | 6 +- ...sassociateDataProtectionSettingsCommand.ts | 6 +- .../DisassociateIpAccessSettingsCommand.ts | 6 +- .../DisassociateNetworkSettingsCommand.ts | 6 +- .../DisassociateSessionLoggerCommand.ts | 6 +- .../commands/DisassociateTrustStoreCommand.ts | 6 +- ...sociateUserAccessLoggingSettingsCommand.ts | 6 +- .../DisassociateUserSettingsCommand.ts | 6 +- .../src/commands/ExpireSessionCommand.ts | 6 +- .../src/commands/GetBrowserSettingsCommand.ts | 6 +- .../GetDataProtectionSettingsCommand.ts | 6 +- .../commands/GetIdentityProviderCommand.ts | 6 +- .../commands/GetIpAccessSettingsCommand.ts | 6 +- .../src/commands/GetNetworkSettingsCommand.ts | 6 +- .../src/commands/GetPortalCommand.ts | 6 +- ...GetPortalServiceProviderMetadataCommand.ts | 9 +- .../src/commands/GetSessionCommand.ts | 6 +- .../src/commands/GetSessionLoggerCommand.ts | 6 +- .../GetTrustStoreCertificateCommand.ts | 6 +- .../src/commands/GetTrustStoreCommand.ts | 6 +- .../GetUserAccessLoggingSettingsCommand.ts | 6 +- .../src/commands/GetUserSettingsCommand.ts | 6 +- .../commands/ListBrowserSettingsCommand.ts | 6 +- .../ListDataProtectionSettingsCommand.ts | 6 +- .../commands/ListIdentityProvidersCommand.ts | 6 +- .../commands/ListIpAccessSettingsCommand.ts | 6 +- .../commands/ListNetworkSettingsCommand.ts | 6 +- .../src/commands/ListPortalsCommand.ts | 6 +- .../src/commands/ListSessionLoggersCommand.ts | 6 +- .../src/commands/ListSessionsCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../ListTrustStoreCertificatesCommand.ts | 6 +- .../src/commands/ListTrustStoresCommand.ts | 6 +- .../ListUserAccessLoggingSettingsCommand.ts | 6 +- .../src/commands/ListUserSettingsCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../commands/UpdateBrowserSettingsCommand.ts | 6 +- .../UpdateDataProtectionSettingsCommand.ts | 6 +- .../commands/UpdateIdentityProviderCommand.ts | 6 +- .../commands/UpdateIpAccessSettingsCommand.ts | 6 +- .../commands/UpdateNetworkSettingsCommand.ts | 6 +- .../src/commands/UpdatePortalCommand.ts | 6 +- .../commands/UpdateSessionLoggerCommand.ts | 6 +- .../src/commands/UpdateTrustStoreCommand.ts | 6 +- .../UpdateUserAccessLoggingSettingsCommand.ts | 9 +- .../src/commands/UpdateUserSettingsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../models/WorkSpacesWebServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../ListBrowserSettingsPaginator.ts | 2 +- .../ListDataProtectionSettingsPaginator.ts | 2 +- .../ListIdentityProvidersPaginator.ts | 2 +- .../ListIpAccessSettingsPaginator.ts | 2 +- .../ListNetworkSettingsPaginator.ts | 2 +- .../src/pagination/ListPortalsPaginator.ts | 2 +- .../pagination/ListSessionLoggersPaginator.ts | 2 +- .../src/pagination/ListSessionsPaginator.ts | 2 +- .../ListTrustStoreCertificatesPaginator.ts | 2 +- .../pagination/ListTrustStoresPaginator.ts | 2 +- .../ListUserAccessLoggingSettingsPaginator.ts | 2 +- .../pagination/ListUserSettingsPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-workspaces/package.json | 12 +- clients/client-workspaces/src/WorkSpaces.ts | 4 +- .../client-workspaces/src/WorkSpacesClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../AcceptAccountLinkInvitationCommand.ts | 6 +- .../AssociateConnectionAliasCommand.ts | 6 +- .../src/commands/AssociateIpGroupsCommand.ts | 6 +- .../AssociateWorkspaceApplicationCommand.ts | 6 +- .../src/commands/AuthorizeIpRulesCommand.ts | 6 +- .../src/commands/CopyWorkspaceImageCommand.ts | 6 +- .../CreateAccountLinkInvitationCommand.ts | 6 +- .../CreateConnectClientAddInCommand.ts | 6 +- .../commands/CreateConnectionAliasCommand.ts | 6 +- .../src/commands/CreateIpGroupCommand.ts | 6 +- .../CreateStandbyWorkspacesCommand.ts | 6 +- .../src/commands/CreateTagsCommand.ts | 6 +- .../CreateUpdatedWorkspaceImageCommand.ts | 6 +- .../commands/CreateWorkspaceBundleCommand.ts | 6 +- .../commands/CreateWorkspaceImageCommand.ts | 6 +- .../src/commands/CreateWorkspacesCommand.ts | 6 +- .../commands/CreateWorkspacesPoolCommand.ts | 6 +- .../DeleteAccountLinkInvitationCommand.ts | 6 +- .../commands/DeleteClientBrandingCommand.ts | 6 +- .../DeleteConnectClientAddInCommand.ts | 6 +- .../commands/DeleteConnectionAliasCommand.ts | 6 +- .../src/commands/DeleteIpGroupCommand.ts | 6 +- .../src/commands/DeleteTagsCommand.ts | 6 +- .../commands/DeleteWorkspaceBundleCommand.ts | 6 +- .../commands/DeleteWorkspaceImageCommand.ts | 6 +- .../DeployWorkspaceApplicationsCommand.ts | 6 +- .../DeregisterWorkspaceDirectoryCommand.ts | 6 +- .../src/commands/DescribeAccountCommand.ts | 6 +- .../DescribeAccountModificationsCommand.ts | 6 +- .../DescribeApplicationAssociationsCommand.ts | 6 +- .../commands/DescribeApplicationsCommand.ts | 6 +- .../DescribeBundleAssociationsCommand.ts | 6 +- .../commands/DescribeClientBrandingCommand.ts | 6 +- .../DescribeClientPropertiesCommand.ts | 6 +- .../DescribeConnectClientAddInsCommand.ts | 6 +- ...scribeConnectionAliasPermissionsCommand.ts | 6 +- .../DescribeConnectionAliasesCommand.ts | 6 +- ...scribeCustomWorkspaceImageImportCommand.ts | 6 +- .../DescribeImageAssociationsCommand.ts | 6 +- .../src/commands/DescribeIpGroupsCommand.ts | 6 +- .../src/commands/DescribeTagsCommand.ts | 6 +- .../DescribeWorkspaceAssociationsCommand.ts | 6 +- .../DescribeWorkspaceBundlesCommand.ts | 6 +- .../DescribeWorkspaceDirectoriesCommand.ts | 6 +- ...escribeWorkspaceImagePermissionsCommand.ts | 9 +- .../DescribeWorkspaceImagesCommand.ts | 6 +- .../DescribeWorkspaceSnapshotsCommand.ts | 6 +- .../src/commands/DescribeWorkspacesCommand.ts | 6 +- ...scribeWorkspacesConnectionStatusCommand.ts | 6 +- .../DescribeWorkspacesPoolSessionsCommand.ts | 6 +- .../DescribeWorkspacesPoolsCommand.ts | 6 +- .../DisassociateConnectionAliasCommand.ts | 6 +- .../commands/DisassociateIpGroupsCommand.ts | 6 +- ...DisassociateWorkspaceApplicationCommand.ts | 9 +- .../src/commands/GetAccountLinkCommand.ts | 6 +- .../commands/ImportClientBrandingCommand.ts | 6 +- .../ImportCustomWorkspaceImageCommand.ts | 6 +- .../commands/ImportWorkspaceImageCommand.ts | 6 +- .../src/commands/ListAccountLinksCommand.ts | 6 +- ...istAvailableManagementCidrRangesCommand.ts | 9 +- .../src/commands/MigrateWorkspaceCommand.ts | 6 +- .../src/commands/ModifyAccountCommand.ts | 6 +- ...fyCertificateBasedAuthPropertiesCommand.ts | 6 +- .../commands/ModifyClientPropertiesCommand.ts | 6 +- .../ModifyEndpointEncryptionModeCommand.ts | 6 +- .../commands/ModifySamlPropertiesCommand.ts | 6 +- .../ModifySelfservicePermissionsCommand.ts | 6 +- .../ModifyStreamingPropertiesCommand.ts | 6 +- .../ModifyWorkspaceAccessPropertiesCommand.ts | 6 +- ...odifyWorkspaceCreationPropertiesCommand.ts | 9 +- .../ModifyWorkspacePropertiesCommand.ts | 6 +- .../commands/ModifyWorkspaceStateCommand.ts | 6 +- .../src/commands/RebootWorkspacesCommand.ts | 6 +- .../src/commands/RebuildWorkspacesCommand.ts | 6 +- .../RegisterWorkspaceDirectoryCommand.ts | 6 +- .../RejectAccountLinkInvitationCommand.ts | 6 +- .../src/commands/RestoreWorkspaceCommand.ts | 6 +- .../src/commands/RevokeIpRulesCommand.ts | 6 +- .../src/commands/StartWorkspacesCommand.ts | 6 +- .../commands/StartWorkspacesPoolCommand.ts | 6 +- .../src/commands/StopWorkspacesCommand.ts | 6 +- .../src/commands/StopWorkspacesPoolCommand.ts | 6 +- .../commands/TerminateWorkspacesCommand.ts | 6 +- .../TerminateWorkspacesPoolCommand.ts | 6 +- .../TerminateWorkspacesPoolSessionCommand.ts | 6 +- .../UpdateConnectClientAddInCommand.ts | 6 +- .../UpdateConnectionAliasPermissionCommand.ts | 6 +- .../commands/UpdateRulesOfIpGroupCommand.ts | 6 +- .../commands/UpdateWorkspaceBundleCommand.ts | 6 +- .../UpdateWorkspaceImagePermissionCommand.ts | 6 +- .../commands/UpdateWorkspacesPoolCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/WorkSpacesServiceException.ts | 2 +- .../client-workspaces/src/models/errors.ts | 2 +- ...escribeApplicationAssociationsPaginator.ts | 2 +- .../DescribeApplicationsPaginator.ts | 2 +- .../DescribeWorkspaceBundlesPaginator.ts | 2 +- .../DescribeWorkspaceDirectoriesPaginator.ts | 2 +- .../pagination/DescribeWorkspacesPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../pagination/ListAccountLinksPaginator.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../client-workspaces/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- clients/client-xray/package.json | 12 +- clients/client-xray/src/XRay.ts | 4 +- clients/client-xray/src/XRayClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/BatchGetTracesCommand.ts | 6 +- .../commands/CancelTraceRetrievalCommand.ts | 6 +- .../src/commands/CreateGroupCommand.ts | 6 +- .../src/commands/CreateSamplingRuleCommand.ts | 6 +- .../src/commands/DeleteGroupCommand.ts | 6 +- .../commands/DeleteResourcePolicyCommand.ts | 6 +- .../src/commands/DeleteSamplingRuleCommand.ts | 6 +- .../commands/GetEncryptionConfigCommand.ts | 6 +- .../src/commands/GetGroupCommand.ts | 6 +- .../src/commands/GetGroupsCommand.ts | 6 +- .../src/commands/GetIndexingRulesCommand.ts | 6 +- .../src/commands/GetInsightCommand.ts | 6 +- .../src/commands/GetInsightEventsCommand.ts | 6 +- .../commands/GetInsightImpactGraphCommand.ts | 6 +- .../commands/GetInsightSummariesCommand.ts | 6 +- .../GetRetrievedTracesGraphCommand.ts | 6 +- .../src/commands/GetSamplingRulesCommand.ts | 6 +- .../GetSamplingStatisticSummariesCommand.ts | 6 +- .../src/commands/GetSamplingTargetsCommand.ts | 6 +- .../src/commands/GetServiceGraphCommand.ts | 6 +- .../GetTimeSeriesServiceStatisticsCommand.ts | 6 +- .../src/commands/GetTraceGraphCommand.ts | 6 +- .../GetTraceSegmentDestinationCommand.ts | 6 +- .../src/commands/GetTraceSummariesCommand.ts | 6 +- .../commands/ListResourcePoliciesCommand.ts | 6 +- .../commands/ListRetrievedTracesCommand.ts | 6 +- .../commands/ListTagsForResourceCommand.ts | 6 +- .../commands/PutEncryptionConfigCommand.ts | 6 +- .../src/commands/PutResourcePolicyCommand.ts | 6 +- .../commands/PutTelemetryRecordsCommand.ts | 6 +- .../src/commands/PutTraceSegmentsCommand.ts | 6 +- .../commands/StartTraceRetrievalCommand.ts | 6 +- .../src/commands/TagResourceCommand.ts | 6 +- .../src/commands/UntagResourceCommand.ts | 6 +- .../src/commands/UpdateGroupCommand.ts | 6 +- .../src/commands/UpdateIndexingRuleCommand.ts | 6 +- .../src/commands/UpdateSamplingRuleCommand.ts | 6 +- .../UpdateTraceSegmentDestinationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../client-xray/src/extensionConfiguration.ts | 8 +- .../src/models/XRayServiceException.ts | 2 +- clients/client-xray/src/models/errors.ts | 2 +- .../src/pagination/BatchGetTracesPaginator.ts | 2 +- .../src/pagination/GetGroupsPaginator.ts | 2 +- .../pagination/GetInsightEventsPaginator.ts | 2 +- .../GetInsightSummariesPaginator.ts | 2 +- .../pagination/GetSamplingRulesPaginator.ts | 2 +- .../GetSamplingStatisticSummariesPaginator.ts | 2 +- .../pagination/GetServiceGraphPaginator.ts | 2 +- ...GetTimeSeriesServiceStatisticsPaginator.ts | 2 +- .../src/pagination/GetTraceGraphPaginator.ts | 2 +- .../pagination/GetTraceSummariesPaginator.ts | 2 +- .../client-xray/src/pagination/Interfaces.ts | 2 +- .../ListResourcePoliciesPaginator.ts | 2 +- .../ListTagsForResourcePaginator.ts | 2 +- .../client-xray/src/runtimeConfig.browser.ts | 7 +- .../client-xray/src/runtimeConfig.native.ts | 2 +- .../client-xray/src/runtimeConfig.shared.ts | 4 +- clients/client-xray/src/runtimeConfig.ts | 8 +- clients/client-xray/src/runtimeExtensions.ts | 2 +- clients/client-xray/src/schemas/schemas_0.ts | 2 +- lib/lib-dynamodb/package.json | 4 +- lib/lib-dynamodb/src/DynamoDBDocument.ts | 2 +- .../src/DynamoDBDocumentClient.ts | 2 +- .../commands/BatchExecuteStatementCommand.ts | 2 +- .../src/commands/BatchGetCommand.ts | 2 +- .../src/commands/BatchWriteCommand.ts | 2 +- .../src/commands/DeleteCommand.ts | 2 +- .../src/commands/ExecuteStatementCommand.ts | 2 +- .../src/commands/ExecuteTransactionCommand.ts | 2 +- lib/lib-dynamodb/src/commands/GetCommand.ts | 2 +- lib/lib-dynamodb/src/commands/PutCommand.ts | 2 +- lib/lib-dynamodb/src/commands/QueryCommand.ts | 2 +- lib/lib-dynamodb/src/commands/ScanCommand.ts | 2 +- .../src/commands/TransactGetCommand.ts | 2 +- .../src/commands/TransactWriteCommand.ts | 2 +- .../src/commands/UpdateCommand.ts | 2 +- lib/lib-storage/package.json | 4 +- packages/cloudfront-signer/package.json | 2 +- packages/core/package.json | 4 +- .../credential-provider-http/package.json | 2 +- packages/credential-providers/package.json | 2 +- packages/middleware-sdk-ec2/package.json | 4 +- packages/middleware-sdk-rds/package.json | 2 +- packages/middleware-sdk-s3/package.json | 4 +- packages/middleware-sdk-sqs/package.json | 2 +- packages/middleware-user-agent/package.json | 2 +- packages/nested-clients/package.json | 12 +- .../src/submodules/signin/Signin.ts | 4 +- .../src/submodules/signin/SigninClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../signin/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/CreateOAuth2TokenCommand.ts | 6 +- .../signin/endpoint/EndpointParameters.ts | 2 +- .../signin/endpoint/endpointResolver.ts | 6 +- .../signin/extensionConfiguration.ts | 8 +- .../signin/models/SigninServiceException.ts | 2 +- .../src/submodules/signin/models/errors.ts | 2 +- .../signin/runtimeConfig.browser.ts | 7 +- .../submodules/signin/runtimeConfig.native.ts | 2 +- .../submodules/signin/runtimeConfig.shared.ts | 4 +- .../src/submodules/signin/runtimeConfig.ts | 8 +- .../submodules/signin/runtimeExtensions.ts | 2 +- .../submodules/signin/schemas/schemas_0.ts | 7 +- .../src/submodules/sso-oidc/SSOOIDC.ts | 4 +- .../src/submodules/sso-oidc/SSOOIDCClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../sso-oidc/auth/httpAuthSchemeProvider.ts | 4 +- .../sso-oidc/commands/CreateTokenCommand.ts | 6 +- .../sso-oidc/endpoint/EndpointParameters.ts | 2 +- .../sso-oidc/endpoint/endpointResolver.ts | 6 +- .../sso-oidc/extensionConfiguration.ts | 8 +- .../models/SSOOIDCServiceException.ts | 2 +- .../src/submodules/sso-oidc/models/errors.ts | 2 +- .../sso-oidc/runtimeConfig.browser.ts | 7 +- .../sso-oidc/runtimeConfig.native.ts | 2 +- .../sso-oidc/runtimeConfig.shared.ts | 4 +- .../src/submodules/sso-oidc/runtimeConfig.ts | 8 +- .../submodules/sso-oidc/runtimeExtensions.ts | 2 +- .../submodules/sso-oidc/schemas/schemas_0.ts | 2 +- .../nested-clients/src/submodules/sts/STS.ts | 4 +- .../src/submodules/sts/STSClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../sts/auth/httpAuthSchemeProvider.ts | 16 +- .../sts/commands/AssumeRoleCommand.ts | 6 +- .../AssumeRoleWithWebIdentityCommand.ts | 6 +- .../sts/endpoint/EndpointParameters.ts | 2 +- .../sts/endpoint/endpointResolver.ts | 6 +- .../submodules/sts/extensionConfiguration.ts | 8 +- .../sts/models/STSServiceException.ts | 2 +- .../src/submodules/sts/models/errors.ts | 2 +- .../submodules/sts/runtimeConfig.browser.ts | 7 +- .../submodules/sts/runtimeConfig.native.ts | 2 +- .../submodules/sts/runtimeConfig.shared.ts | 4 +- .../src/submodules/sts/runtimeConfig.ts | 12 +- .../src/submodules/sts/runtimeExtensions.ts | 2 +- .../src/submodules/sts/schemas/schemas_0.ts | 2 +- packages/s3-presigned-post/package.json | 2 +- packages/s3-request-presigner/package.json | 4 +- packages/smithy-client/package.json | 2 +- packages/util-create-request/package.json | 2 +- private/aws-client-api-test/package.json | 6 +- .../initializeWithMaximalConfiguration.ts | 3 + private/aws-echo-service/package.json | 12 +- private/aws-echo-service/src/EchoService.ts | 7 +- .../aws-echo-service/src/EchoServiceClient.ts | 86 +- .../auth/httpAuthExtensionConfiguration.ts | 5 +- .../src/auth/httpAuthSchemeProvider.ts | 5 +- .../src/commands/EchoCommand.ts | 11 +- .../src/commands/LengthCommand.ts | 11 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 7 +- .../aws-echo-service/src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 7 +- .../src/models/EchoServiceServiceException.ts | 2 +- private/aws-echo-service/src/models/errors.ts | 3 +- .../src/protocols/Aws_restJson1.ts | 17 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 3 +- .../src/runtimeConfig.shared.ts | 9 +- private/aws-echo-service/src/runtimeConfig.ts | 8 +- .../aws-echo-service/src/runtimeExtensions.ts | 5 +- .../aws-protocoltests-ec2-schema/package.json | 14 +- .../src/EC2Protocol.ts | 102 +- .../src/EC2ProtocolClient.ts | 138 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DatetimeOffsetsCommand.ts | 6 +- .../EmptyInputAndEmptyOutputCommand.ts | 6 +- .../src/commands/EndpointOperationCommand.ts | 4 +- .../EndpointWithHostLabelOperationCommand.ts | 6 +- .../src/commands/FractionalSecondsCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../commands/HostWithPathOperationCommand.ts | 4 +- .../commands/IgnoresWrappingXmlNameCommand.ts | 6 +- .../src/commands/NestedStructuresCommand.ts | 6 +- .../src/commands/NoInputAndOutputCommand.ts | 6 +- .../commands/PutWithContentEncodingCommand.ts | 6 +- .../QueryIdempotencyTokenAutoFillCommand.ts | 6 +- .../src/commands/QueryListsCommand.ts | 6 +- .../src/commands/QueryTimestampsCommand.ts | 6 +- .../src/commands/RecursiveXmlShapesCommand.ts | 6 +- .../src/commands/SimpleInputParamsCommand.ts | 6 +- .../SimpleScalarXmlPropertiesCommand.ts | 6 +- .../src/commands/XmlBlobsCommand.ts | 6 +- .../src/commands/XmlEmptyBlobsCommand.ts | 6 +- .../src/commands/XmlEmptyListsCommand.ts | 6 +- .../src/commands/XmlEnumsCommand.ts | 6 +- .../src/commands/XmlIntEnumsCommand.ts | 6 +- .../src/commands/XmlListsCommand.ts | 6 +- .../src/commands/XmlNamespacesCommand.ts | 6 +- .../src/commands/XmlTimestampsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/EC2ProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 4 +- .../src/models/models_0.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../test/functional/ec2query.spec.ts | 8 +- private/aws-protocoltests-ec2/package.json | 14 +- .../aws-protocoltests-ec2/src/EC2Protocol.ts | 4 +- .../src/EC2ProtocolClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DatetimeOffsetsCommand.ts | 6 +- .../EmptyInputAndEmptyOutputCommand.ts | 6 +- .../src/commands/EndpointOperationCommand.ts | 4 +- .../EndpointWithHostLabelOperationCommand.ts | 6 +- .../src/commands/FractionalSecondsCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../commands/HostWithPathOperationCommand.ts | 4 +- .../commands/IgnoresWrappingXmlNameCommand.ts | 6 +- .../src/commands/NestedStructuresCommand.ts | 6 +- .../src/commands/NoInputAndOutputCommand.ts | 6 +- .../commands/PutWithContentEncodingCommand.ts | 6 +- .../QueryIdempotencyTokenAutoFillCommand.ts | 6 +- .../src/commands/QueryListsCommand.ts | 6 +- .../src/commands/QueryTimestampsCommand.ts | 6 +- .../src/commands/RecursiveXmlShapesCommand.ts | 6 +- .../src/commands/SimpleInputParamsCommand.ts | 6 +- .../SimpleScalarXmlPropertiesCommand.ts | 6 +- .../src/commands/XmlBlobsCommand.ts | 6 +- .../src/commands/XmlEmptyBlobsCommand.ts | 6 +- .../src/commands/XmlEmptyListsCommand.ts | 6 +- .../src/commands/XmlEnumsCommand.ts | 6 +- .../src/commands/XmlIntEnumsCommand.ts | 6 +- .../src/commands/XmlListsCommand.ts | 6 +- .../src/commands/XmlNamespacesCommand.ts | 6 +- .../src/commands/XmlTimestampsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/EC2ProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Aws_ec2.ts | 5 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/ec2query.spec.ts | 8 +- .../package.json | 14 +- .../src/JSONRPC10.ts | 70 +- .../src/JSONRPC10Client.ts | 114 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ContentTypeParametersCommand.ts | 6 +- .../EmptyInputAndEmptyOutputCommand.ts | 6 +- .../src/commands/EndpointOperationCommand.ts | 4 +- .../EndpointWithHostLabelOperationCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../commands/HostWithPathOperationCommand.ts | 4 +- .../src/commands/JsonUnionsCommand.ts | 6 +- .../src/commands/NoInputAndNoOutputCommand.ts | 4 +- .../src/commands/NoInputAndOutputCommand.ts | 6 +- .../commands/OperationWithDefaultsCommand.ts | 6 +- .../OperationWithNestedStructureCommand.ts | 6 +- .../OperationWithRequiredMembersCommand.ts | 6 +- ...nWithRequiredMembersWithDefaultsCommand.ts | 6 +- .../commands/PutWithContentEncodingCommand.ts | 6 +- .../QueryIncompatibleOperationCommand.ts | 4 +- .../commands/SimpleScalarPropertiesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/JSONRPC10ServiceException.ts | 2 +- .../src/models/errors.ts | 4 +- .../src/models/models_0.ts | 4 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../test/functional/awsjson1_0.spec.ts | 8 +- .../aws-protocoltests-json-10/package.json | 14 +- .../src/JSONRPC10.ts | 4 +- .../src/JSONRPC10Client.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ContentTypeParametersCommand.ts | 6 +- .../EmptyInputAndEmptyOutputCommand.ts | 6 +- .../src/commands/EndpointOperationCommand.ts | 4 +- .../EndpointWithHostLabelOperationCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../commands/HostWithPathOperationCommand.ts | 4 +- .../src/commands/JsonUnionsCommand.ts | 6 +- .../src/commands/NoInputAndNoOutputCommand.ts | 4 +- .../src/commands/NoInputAndOutputCommand.ts | 6 +- .../commands/OperationWithDefaultsCommand.ts | 6 +- .../OperationWithNestedStructureCommand.ts | 6 +- .../OperationWithRequiredMembersCommand.ts | 6 +- ...nWithRequiredMembersWithDefaultsCommand.ts | 6 +- .../commands/PutWithContentEncodingCommand.ts | 6 +- .../QueryIncompatibleOperationCommand.ts | 4 +- .../commands/SimpleScalarPropertiesCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/JSONRPC10ServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Aws_json1_0.ts | 9 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/awsjson1_0.spec.ts | 8 +- .../package.json | 12 +- .../src/MachineLearning.ts | 4 +- .../src/MachineLearningClient.ts | 63 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/PredictCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../models/MachineLearningServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Aws_json1_1.ts | 10 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/awsjson1_1.spec.ts | 6 +- .../package.json | 12 +- .../src/MachineLearning.ts | 6 +- .../src/MachineLearningClient.ts | 71 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/PredictCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../models/MachineLearningServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/models/models_0.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../test/functional/awsjson1_1.spec.ts | 6 +- .../package.json | 14 +- .../src/JsonProtocol.ts | 76 +- .../src/JsonProtocolClient.ts | 118 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ContentTypeParametersCommand.ts | 6 +- .../src/commands/DatetimeOffsetsCommand.ts | 6 +- .../src/commands/EmptyOperationCommand.ts | 4 +- .../src/commands/EndpointOperationCommand.ts | 4 +- .../EndpointWithHostLabelOperationCommand.ts | 6 +- .../src/commands/FractionalSecondsCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../commands/HostWithPathOperationCommand.ts | 4 +- .../src/commands/JsonEnumsCommand.ts | 6 +- .../src/commands/JsonIntEnumsCommand.ts | 6 +- .../src/commands/JsonUnionsCommand.ts | 6 +- .../commands/KitchenSinkOperationCommand.ts | 6 +- .../src/commands/NullOperationCommand.ts | 6 +- ...OperationWithOptionalInputOutputCommand.ts | 6 +- .../PutAndGetInlineDocumentsCommand.ts | 6 +- .../commands/PutWithContentEncodingCommand.ts | 6 +- .../commands/SimpleScalarPropertiesCommand.ts | 6 +- .../commands/SparseNullsOperationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../models/JsonProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 4 +- .../src/models/models_0.ts | 4 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../test/functional/awsjson1_1.spec.ts | 8 +- private/aws-protocoltests-json/package.json | 14 +- .../src/JsonProtocol.ts | 4 +- .../src/JsonProtocolClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/ContentTypeParametersCommand.ts | 6 +- .../src/commands/DatetimeOffsetsCommand.ts | 6 +- .../src/commands/EmptyOperationCommand.ts | 4 +- .../src/commands/EndpointOperationCommand.ts | 4 +- .../EndpointWithHostLabelOperationCommand.ts | 6 +- .../src/commands/FractionalSecondsCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../commands/HostWithPathOperationCommand.ts | 4 +- .../src/commands/JsonEnumsCommand.ts | 6 +- .../src/commands/JsonIntEnumsCommand.ts | 6 +- .../src/commands/JsonUnionsCommand.ts | 6 +- .../commands/KitchenSinkOperationCommand.ts | 6 +- .../src/commands/NullOperationCommand.ts | 6 +- ...OperationWithOptionalInputOutputCommand.ts | 6 +- .../PutAndGetInlineDocumentsCommand.ts | 6 +- .../commands/PutWithContentEncodingCommand.ts | 6 +- .../commands/SimpleScalarPropertiesCommand.ts | 6 +- .../commands/SparseNullsOperationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../models/JsonProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Aws_json1_1.ts | 9 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/awsjson1_1.spec.ts | 8 +- .../package.json | 14 +- .../src/QueryProtocol.ts | 130 +- .../src/QueryProtocolClient.ts | 157 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DatetimeOffsetsCommand.ts | 6 +- .../EmptyInputAndEmptyOutputCommand.ts | 6 +- .../src/commands/EndpointOperationCommand.ts | 4 +- .../EndpointWithHostLabelOperationCommand.ts | 6 +- .../src/commands/FlattenedXmlMapCommand.ts | 6 +- .../FlattenedXmlMapWithXmlNameCommand.ts | 6 +- .../FlattenedXmlMapWithXmlNamespaceCommand.ts | 6 +- .../src/commands/FractionalSecondsCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../commands/HostWithPathOperationCommand.ts | 4 +- .../commands/IgnoresWrappingXmlNameCommand.ts | 6 +- .../src/commands/NestedStructuresCommand.ts | 6 +- .../src/commands/NoInputAndNoOutputCommand.ts | 4 +- .../src/commands/NoInputAndOutputCommand.ts | 6 +- .../commands/PutWithContentEncodingCommand.ts | 6 +- .../QueryIdempotencyTokenAutoFillCommand.ts | 6 +- .../src/commands/QueryListsCommand.ts | 6 +- .../src/commands/QueryMapsCommand.ts | 6 +- .../src/commands/QueryTimestampsCommand.ts | 6 +- .../src/commands/RecursiveXmlShapesCommand.ts | 6 +- .../src/commands/SimpleInputParamsCommand.ts | 6 +- .../SimpleScalarXmlPropertiesCommand.ts | 6 +- .../src/commands/XmlBlobsCommand.ts | 6 +- .../src/commands/XmlEmptyBlobsCommand.ts | 6 +- .../src/commands/XmlEmptyListsCommand.ts | 6 +- .../src/commands/XmlEmptyMapsCommand.ts | 6 +- .../src/commands/XmlEnumsCommand.ts | 6 +- .../src/commands/XmlIntEnumsCommand.ts | 6 +- .../src/commands/XmlListsCommand.ts | 6 +- .../src/commands/XmlMapsCommand.ts | 6 +- .../src/commands/XmlMapsXmlNameCommand.ts | 6 +- .../src/commands/XmlNamespacesCommand.ts | 6 +- .../src/commands/XmlTimestampsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../models/QueryProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 4 +- .../src/models/models_0.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../test/functional/awsquery.spec.ts | 8 +- private/aws-protocoltests-query/package.json | 14 +- .../src/QueryProtocol.ts | 4 +- .../src/QueryProtocolClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/DatetimeOffsetsCommand.ts | 6 +- .../EmptyInputAndEmptyOutputCommand.ts | 6 +- .../src/commands/EndpointOperationCommand.ts | 4 +- .../EndpointWithHostLabelOperationCommand.ts | 6 +- .../src/commands/FlattenedXmlMapCommand.ts | 6 +- .../FlattenedXmlMapWithXmlNameCommand.ts | 6 +- .../FlattenedXmlMapWithXmlNamespaceCommand.ts | 6 +- .../src/commands/FractionalSecondsCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../commands/HostWithPathOperationCommand.ts | 4 +- .../commands/IgnoresWrappingXmlNameCommand.ts | 6 +- .../src/commands/NestedStructuresCommand.ts | 6 +- .../src/commands/NoInputAndNoOutputCommand.ts | 4 +- .../src/commands/NoInputAndOutputCommand.ts | 6 +- .../commands/PutWithContentEncodingCommand.ts | 6 +- .../QueryIdempotencyTokenAutoFillCommand.ts | 6 +- .../src/commands/QueryListsCommand.ts | 6 +- .../src/commands/QueryMapsCommand.ts | 6 +- .../src/commands/QueryTimestampsCommand.ts | 6 +- .../src/commands/RecursiveXmlShapesCommand.ts | 6 +- .../src/commands/SimpleInputParamsCommand.ts | 6 +- .../SimpleScalarXmlPropertiesCommand.ts | 6 +- .../src/commands/XmlBlobsCommand.ts | 6 +- .../src/commands/XmlEmptyBlobsCommand.ts | 6 +- .../src/commands/XmlEmptyListsCommand.ts | 6 +- .../src/commands/XmlEmptyMapsCommand.ts | 6 +- .../src/commands/XmlEnumsCommand.ts | 6 +- .../src/commands/XmlIntEnumsCommand.ts | 6 +- .../src/commands/XmlListsCommand.ts | 6 +- .../src/commands/XmlMapsCommand.ts | 6 +- .../src/commands/XmlMapsXmlNameCommand.ts | 6 +- .../src/commands/XmlNamespacesCommand.ts | 6 +- .../src/commands/XmlTimestampsCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../models/QueryProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Aws_query.ts | 5 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/awsquery.spec.ts | 8 +- .../package.json | 12 +- .../src/APIGateway.ts | 4 +- .../src/APIGatewayClient.ts | 63 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetRestApisCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/APIGatewayServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/pagination/GetRestApisPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/protocols/Aws_restJson1.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/restjson1.spec.ts | 6 +- .../package.json | 12 +- .../src/Glacier.ts | 4 +- .../src/GlacierClient.ts | 63 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/UploadArchiveCommand.ts | 10 +- .../commands/UploadMultipartPartCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GlacierServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Aws_restJson1.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/restjson1.spec.ts | 8 +- .../package.json | 12 +- .../src/APIGateway.ts | 10 +- .../src/APIGatewayClient.ts | 71 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/GetRestApisCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/APIGatewayServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/models/models_0.ts | 2 +- .../src/pagination/GetRestApisPaginator.ts | 2 +- .../src/pagination/Interfaces.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../test/functional/restjson1.spec.ts | 6 +- .../package.json | 12 +- .../src/Glacier.ts | 12 +- .../src/GlacierClient.ts | 73 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/UploadArchiveCommand.ts | 6 +- .../commands/UploadMultipartPartCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../src/models/GlacierServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/models/models_0.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 7 +- .../test/functional/restjson1.spec.ts | 8 +- .../package.json | 14 +- .../src/RestJsonProtocol.ts | 452 +- .../src/RestJsonProtocolClient.ts | 345 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AllQueryStringTypesCommand.ts | 10 +- .../ConstantAndVariableQueryStringCommand.ts | 10 +- .../commands/ConstantQueryStringCommand.ts | 10 +- .../commands/ContentTypeParametersCommand.ts | 10 +- .../src/commands/DatetimeOffsetsCommand.ts | 10 +- .../commands/DocumentTypeAsMapValueCommand.ts | 10 +- .../commands/DocumentTypeAsPayloadCommand.ts | 10 +- .../src/commands/DocumentTypeCommand.ts | 10 +- .../src/commands/DuplexStreamCommand.ts | 10 +- .../DuplexStreamWithDistinctStreamsCommand.ts | 10 +- .../DuplexStreamWithInitialMessagesCommand.ts | 10 +- .../EmptyInputAndEmptyOutputCommand.ts | 10 +- .../src/commands/EndpointOperationCommand.ts | 8 +- .../EndpointWithHostLabelOperationCommand.ts | 10 +- .../src/commands/FractionalSecondsCommand.ts | 10 +- .../src/commands/GreetingWithErrorsCommand.ts | 10 +- .../commands/HostWithPathOperationCommand.ts | 8 +- .../commands/HttpChecksumRequiredCommand.ts | 10 +- .../commands/HttpEmptyPrefixHeadersCommand.ts | 10 +- .../src/commands/HttpEnumPayloadCommand.ts | 10 +- .../src/commands/HttpPayloadTraitsCommand.ts | 10 +- .../HttpPayloadTraitsWithMediaTypeCommand.ts | 10 +- .../HttpPayloadWithStructureCommand.ts | 10 +- .../commands/HttpPayloadWithUnionCommand.ts | 10 +- .../src/commands/HttpPrefixHeadersCommand.ts | 10 +- .../HttpPrefixHeadersInResponseCommand.ts | 10 +- .../HttpQueryParamsOnlyOperationCommand.ts | 10 +- .../HttpRequestWithFloatLabelsCommand.ts | 10 +- ...HttpRequestWithGreedyLabelInPathCommand.ts | 10 +- ...uestWithLabelsAndTimestampFormatCommand.ts | 10 +- .../commands/HttpRequestWithLabelsCommand.ts | 10 +- .../HttpRequestWithRegexLiteralCommand.ts | 10 +- .../src/commands/HttpResponseCodeCommand.ts | 10 +- .../src/commands/HttpStringPayloadCommand.ts | 10 +- .../IgnoreQueryParamsInResponseCommand.ts | 10 +- .../InputAndOutputWithHeadersCommand.ts | 10 +- .../src/commands/InputStreamCommand.ts | 10 +- .../InputStreamWithInitialRequestCommand.ts | 10 +- .../src/commands/JsonBlobsCommand.ts | 10 +- .../src/commands/JsonEnumsCommand.ts | 10 +- .../src/commands/JsonIntEnumsCommand.ts | 10 +- .../src/commands/JsonListsCommand.ts | 10 +- .../src/commands/JsonMapsCommand.ts | 10 +- .../src/commands/JsonTimestampsCommand.ts | 10 +- .../src/commands/JsonUnionsCommand.ts | 10 +- .../MalformedAcceptWithBodyCommand.ts | 10 +- ...MalformedAcceptWithGenericStringCommand.ts | 10 +- .../MalformedAcceptWithPayloadCommand.ts | 10 +- .../src/commands/MalformedBlobCommand.ts | 10 +- .../src/commands/MalformedBooleanCommand.ts | 10 +- .../src/commands/MalformedByteCommand.ts | 10 +- .../MalformedContentTypeWithBodyCommand.ts | 10 +- ...rmedContentTypeWithGenericStringCommand.ts | 10 +- .../MalformedContentTypeWithPayloadCommand.ts | 10 +- .../MalformedContentTypeWithoutBodyCommand.ts | 8 +- ...ContentTypeWithoutBodyEmptyInputCommand.ts | 10 +- .../src/commands/MalformedDoubleCommand.ts | 10 +- .../src/commands/MalformedFloatCommand.ts | 10 +- .../src/commands/MalformedIntegerCommand.ts | 10 +- .../src/commands/MalformedListCommand.ts | 10 +- .../src/commands/MalformedLongCommand.ts | 10 +- .../src/commands/MalformedMapCommand.ts | 10 +- .../commands/MalformedRequestBodyCommand.ts | 10 +- .../src/commands/MalformedShortCommand.ts | 10 +- .../src/commands/MalformedStringCommand.ts | 10 +- .../MalformedTimestampBodyDateTimeCommand.ts | 10 +- .../MalformedTimestampBodyDefaultCommand.ts | 10 +- .../MalformedTimestampBodyHttpDateCommand.ts | 10 +- ...MalformedTimestampHeaderDateTimeCommand.ts | 10 +- .../MalformedTimestampHeaderDefaultCommand.ts | 10 +- .../MalformedTimestampHeaderEpochCommand.ts | 10 +- .../MalformedTimestampPathDefaultCommand.ts | 10 +- .../MalformedTimestampPathEpochCommand.ts | 10 +- .../MalformedTimestampPathHttpDateCommand.ts | 10 +- .../MalformedTimestampQueryDefaultCommand.ts | 10 +- .../MalformedTimestampQueryEpochCommand.ts | 10 +- .../MalformedTimestampQueryHttpDateCommand.ts | 10 +- .../src/commands/MalformedUnionCommand.ts | 10 +- .../src/commands/MediaTypeHeaderCommand.ts | 10 +- .../src/commands/NoInputAndNoOutputCommand.ts | 8 +- .../src/commands/NoInputAndOutputCommand.ts | 10 +- .../NullAndEmptyHeadersClientCommand.ts | 10 +- .../NullAndEmptyHeadersServerCommand.ts | 10 +- .../OmitsNullSerializesEmptyStringCommand.ts | 10 +- .../OmitsSerializingEmptyListsCommand.ts | 10 +- .../commands/OperationWithDefaultsCommand.ts | 10 +- .../OperationWithNestedStructureCommand.ts | 10 +- .../src/commands/OutputStreamCommand.ts | 10 +- .../OutputStreamWithInitialResponseCommand.ts | 10 +- .../src/commands/PostPlayerActionCommand.ts | 10 +- .../commands/PostUnionWithJsonNameCommand.ts | 10 +- .../commands/PutWithContentEncodingCommand.ts | 10 +- .../QueryIdempotencyTokenAutoFillCommand.ts | 10 +- .../QueryParamsAsStringListMapCommand.ts | 10 +- .../src/commands/QueryPrecedenceCommand.ts | 10 +- .../src/commands/RecursiveShapesCommand.ts | 10 +- .../ResponseCodeHttpFallbackCommand.ts | 10 +- .../commands/ResponseCodeRequiredCommand.ts | 10 +- .../commands/SimpleScalarPropertiesCommand.ts | 10 +- .../src/commands/SparseJsonListsCommand.ts | 10 +- .../src/commands/SparseJsonMapsCommand.ts | 10 +- .../src/commands/StreamingTraitsCommand.ts | 10 +- .../StreamingTraitsRequireLengthCommand.ts | 10 +- .../StreamingTraitsWithMediaTypeCommand.ts | 10 +- .../src/commands/TestBodyStructureCommand.ts | 10 +- .../TestGetNoInputNoPayloadCommand.ts | 10 +- .../src/commands/TestGetNoPayloadCommand.ts | 10 +- .../src/commands/TestPayloadBlobCommand.ts | 10 +- .../commands/TestPayloadStructureCommand.ts | 10 +- .../TestPostNoInputNoPayloadCommand.ts | 10 +- .../src/commands/TestPostNoPayloadCommand.ts | 10 +- .../commands/TimestampFormatHeadersCommand.ts | 10 +- .../src/commands/UnitInputAndOutputCommand.ts | 8 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../RestJsonProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 4 +- .../src/models/models_0.ts | 6 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 16 +- .../test/functional/restjson1.spec.ts | 8 +- .../aws-protocoltests-restjson/package.json | 14 +- .../src/RestJsonProtocol.ts | 4 +- .../src/RestJsonProtocolClient.ts | 83 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AllQueryStringTypesCommand.ts | 10 +- .../ConstantAndVariableQueryStringCommand.ts | 10 +- .../commands/ConstantQueryStringCommand.ts | 10 +- .../commands/ContentTypeParametersCommand.ts | 10 +- .../src/commands/DatetimeOffsetsCommand.ts | 10 +- .../commands/DocumentTypeAsMapValueCommand.ts | 10 +- .../commands/DocumentTypeAsPayloadCommand.ts | 10 +- .../src/commands/DocumentTypeCommand.ts | 10 +- .../src/commands/DuplexStreamCommand.ts | 12 +- .../DuplexStreamWithDistinctStreamsCommand.ts | 12 +- .../DuplexStreamWithInitialMessagesCommand.ts | 12 +- .../EmptyInputAndEmptyOutputCommand.ts | 10 +- .../src/commands/EndpointOperationCommand.ts | 8 +- .../EndpointWithHostLabelOperationCommand.ts | 10 +- .../src/commands/FractionalSecondsCommand.ts | 10 +- .../src/commands/GreetingWithErrorsCommand.ts | 10 +- .../commands/HostWithPathOperationCommand.ts | 8 +- .../commands/HttpChecksumRequiredCommand.ts | 10 +- .../commands/HttpEmptyPrefixHeadersCommand.ts | 10 +- .../src/commands/HttpEnumPayloadCommand.ts | 10 +- .../src/commands/HttpPayloadTraitsCommand.ts | 8 +- .../HttpPayloadTraitsWithMediaTypeCommand.ts | 8 +- .../HttpPayloadWithStructureCommand.ts | 10 +- .../commands/HttpPayloadWithUnionCommand.ts | 10 +- .../src/commands/HttpPrefixHeadersCommand.ts | 10 +- .../HttpPrefixHeadersInResponseCommand.ts | 10 +- .../HttpQueryParamsOnlyOperationCommand.ts | 10 +- .../HttpRequestWithFloatLabelsCommand.ts | 10 +- ...HttpRequestWithGreedyLabelInPathCommand.ts | 10 +- ...uestWithLabelsAndTimestampFormatCommand.ts | 10 +- .../commands/HttpRequestWithLabelsCommand.ts | 10 +- .../HttpRequestWithRegexLiteralCommand.ts | 10 +- .../src/commands/HttpResponseCodeCommand.ts | 10 +- .../src/commands/HttpStringPayloadCommand.ts | 10 +- .../IgnoreQueryParamsInResponseCommand.ts | 10 +- .../InputAndOutputWithHeadersCommand.ts | 10 +- .../src/commands/InputStreamCommand.ts | 10 +- .../InputStreamWithInitialRequestCommand.ts | 10 +- .../src/commands/JsonBlobsCommand.ts | 10 +- .../src/commands/JsonEnumsCommand.ts | 10 +- .../src/commands/JsonIntEnumsCommand.ts | 10 +- .../src/commands/JsonListsCommand.ts | 10 +- .../src/commands/JsonMapsCommand.ts | 10 +- .../src/commands/JsonTimestampsCommand.ts | 10 +- .../src/commands/JsonUnionsCommand.ts | 10 +- .../MalformedAcceptWithBodyCommand.ts | 10 +- ...MalformedAcceptWithGenericStringCommand.ts | 10 +- .../MalformedAcceptWithPayloadCommand.ts | 8 +- .../src/commands/MalformedBlobCommand.ts | 10 +- .../src/commands/MalformedBooleanCommand.ts | 10 +- .../src/commands/MalformedByteCommand.ts | 10 +- .../MalformedContentTypeWithBodyCommand.ts | 10 +- ...rmedContentTypeWithGenericStringCommand.ts | 10 +- .../MalformedContentTypeWithPayloadCommand.ts | 8 +- .../MalformedContentTypeWithoutBodyCommand.ts | 8 +- ...ContentTypeWithoutBodyEmptyInputCommand.ts | 10 +- .../src/commands/MalformedDoubleCommand.ts | 10 +- .../src/commands/MalformedFloatCommand.ts | 10 +- .../src/commands/MalformedIntegerCommand.ts | 10 +- .../src/commands/MalformedListCommand.ts | 10 +- .../src/commands/MalformedLongCommand.ts | 10 +- .../src/commands/MalformedMapCommand.ts | 10 +- .../commands/MalformedRequestBodyCommand.ts | 10 +- .../src/commands/MalformedShortCommand.ts | 10 +- .../src/commands/MalformedStringCommand.ts | 10 +- .../MalformedTimestampBodyDateTimeCommand.ts | 10 +- .../MalformedTimestampBodyDefaultCommand.ts | 10 +- .../MalformedTimestampBodyHttpDateCommand.ts | 10 +- ...MalformedTimestampHeaderDateTimeCommand.ts | 10 +- .../MalformedTimestampHeaderDefaultCommand.ts | 10 +- .../MalformedTimestampHeaderEpochCommand.ts | 10 +- .../MalformedTimestampPathDefaultCommand.ts | 10 +- .../MalformedTimestampPathEpochCommand.ts | 10 +- .../MalformedTimestampPathHttpDateCommand.ts | 10 +- .../MalformedTimestampQueryDefaultCommand.ts | 10 +- .../MalformedTimestampQueryEpochCommand.ts | 10 +- .../MalformedTimestampQueryHttpDateCommand.ts | 10 +- .../src/commands/MalformedUnionCommand.ts | 10 +- .../src/commands/MediaTypeHeaderCommand.ts | 10 +- .../src/commands/NoInputAndNoOutputCommand.ts | 8 +- .../src/commands/NoInputAndOutputCommand.ts | 10 +- .../NullAndEmptyHeadersClientCommand.ts | 10 +- .../NullAndEmptyHeadersServerCommand.ts | 10 +- .../OmitsNullSerializesEmptyStringCommand.ts | 10 +- .../OmitsSerializingEmptyListsCommand.ts | 10 +- .../commands/OperationWithDefaultsCommand.ts | 10 +- .../OperationWithNestedStructureCommand.ts | 10 +- .../src/commands/OutputStreamCommand.ts | 10 +- .../OutputStreamWithInitialResponseCommand.ts | 10 +- .../src/commands/PostPlayerActionCommand.ts | 10 +- .../commands/PostUnionWithJsonNameCommand.ts | 10 +- .../commands/PutWithContentEncodingCommand.ts | 10 +- .../QueryIdempotencyTokenAutoFillCommand.ts | 10 +- .../QueryParamsAsStringListMapCommand.ts | 10 +- .../src/commands/QueryPrecedenceCommand.ts | 10 +- .../src/commands/RecursiveShapesCommand.ts | 10 +- .../ResponseCodeHttpFallbackCommand.ts | 10 +- .../commands/ResponseCodeRequiredCommand.ts | 10 +- .../commands/SimpleScalarPropertiesCommand.ts | 10 +- .../src/commands/SparseJsonListsCommand.ts | 10 +- .../src/commands/SparseJsonMapsCommand.ts | 10 +- .../src/commands/StreamingTraitsCommand.ts | 8 +- .../StreamingTraitsRequireLengthCommand.ts | 8 +- .../StreamingTraitsWithMediaTypeCommand.ts | 8 +- .../src/commands/TestBodyStructureCommand.ts | 10 +- .../TestGetNoInputNoPayloadCommand.ts | 10 +- .../src/commands/TestGetNoPayloadCommand.ts | 10 +- .../src/commands/TestPayloadBlobCommand.ts | 8 +- .../commands/TestPayloadStructureCommand.ts | 10 +- .../TestPostNoInputNoPayloadCommand.ts | 10 +- .../src/commands/TestPostNoPayloadCommand.ts | 10 +- .../commands/TimestampFormatHeadersCommand.ts | 10 +- .../src/commands/UnitInputAndOutputCommand.ts | 8 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../RestJsonProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Aws_restJson1.ts | 14 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/restjson1.spec.ts | 8 +- .../package.json | 14 +- .../src/RestXmlProtocol.ts | 252 +- .../src/RestXmlProtocolClient.ts | 222 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AllQueryStringTypesCommand.ts | 10 +- .../src/commands/BodyWithXmlNameCommand.ts | 10 +- .../ConstantAndVariableQueryStringCommand.ts | 10 +- .../commands/ConstantQueryStringCommand.ts | 10 +- .../commands/ContentTypeParametersCommand.ts | 10 +- .../src/commands/DatetimeOffsetsCommand.ts | 10 +- .../EmptyInputAndEmptyOutputCommand.ts | 10 +- .../src/commands/EndpointOperationCommand.ts | 8 +- ...ointWithHostLabelHeaderOperationCommand.ts | 10 +- .../EndpointWithHostLabelOperationCommand.ts | 10 +- .../src/commands/FlattenedXmlMapCommand.ts | 10 +- .../FlattenedXmlMapWithXmlNameCommand.ts | 10 +- .../FlattenedXmlMapWithXmlNamespaceCommand.ts | 10 +- .../src/commands/FractionalSecondsCommand.ts | 10 +- .../src/commands/GreetingWithErrorsCommand.ts | 10 +- .../commands/HttpEmptyPrefixHeadersCommand.ts | 10 +- .../src/commands/HttpEnumPayloadCommand.ts | 10 +- .../src/commands/HttpPayloadTraitsCommand.ts | 10 +- .../HttpPayloadTraitsWithMediaTypeCommand.ts | 10 +- .../HttpPayloadWithMemberXmlNameCommand.ts | 10 +- .../HttpPayloadWithStructureCommand.ts | 10 +- .../commands/HttpPayloadWithUnionCommand.ts | 10 +- .../commands/HttpPayloadWithXmlNameCommand.ts | 10 +- ...PayloadWithXmlNamespaceAndPrefixCommand.ts | 10 +- .../HttpPayloadWithXmlNamespaceCommand.ts | 10 +- .../src/commands/HttpPrefixHeadersCommand.ts | 10 +- .../HttpRequestWithFloatLabelsCommand.ts | 10 +- ...HttpRequestWithGreedyLabelInPathCommand.ts | 10 +- ...uestWithLabelsAndTimestampFormatCommand.ts | 10 +- .../commands/HttpRequestWithLabelsCommand.ts | 10 +- .../src/commands/HttpResponseCodeCommand.ts | 10 +- .../src/commands/HttpStringPayloadCommand.ts | 10 +- .../IgnoreQueryParamsInResponseCommand.ts | 10 +- .../InputAndOutputWithHeadersCommand.ts | 10 +- .../NestedXmlMapWithXmlNameCommand.ts | 10 +- .../src/commands/NestedXmlMapsCommand.ts | 10 +- .../src/commands/NoInputAndNoOutputCommand.ts | 8 +- .../src/commands/NoInputAndOutputCommand.ts | 10 +- .../NullAndEmptyHeadersClientCommand.ts | 10 +- .../NullAndEmptyHeadersServerCommand.ts | 10 +- .../OmitsNullSerializesEmptyStringCommand.ts | 10 +- .../commands/PutWithContentEncodingCommand.ts | 10 +- .../QueryIdempotencyTokenAutoFillCommand.ts | 10 +- .../QueryParamsAsStringListMapCommand.ts | 10 +- .../src/commands/QueryPrecedenceCommand.ts | 10 +- .../src/commands/RecursiveShapesCommand.ts | 10 +- .../commands/SimpleScalarPropertiesCommand.ts | 10 +- .../commands/TimestampFormatHeadersCommand.ts | 10 +- .../src/commands/XmlAttributesCommand.ts | 10 +- .../commands/XmlAttributesOnPayloadCommand.ts | 10 +- .../src/commands/XmlBlobsCommand.ts | 10 +- .../src/commands/XmlEmptyBlobsCommand.ts | 10 +- .../src/commands/XmlEmptyListsCommand.ts | 10 +- .../src/commands/XmlEmptyMapsCommand.ts | 10 +- .../src/commands/XmlEmptyStringsCommand.ts | 10 +- .../src/commands/XmlEnumsCommand.ts | 10 +- .../src/commands/XmlIntEnumsCommand.ts | 10 +- .../src/commands/XmlListsCommand.ts | 10 +- .../commands/XmlMapWithXmlNamespaceCommand.ts | 10 +- .../src/commands/XmlMapsCommand.ts | 10 +- .../src/commands/XmlMapsXmlNameCommand.ts | 10 +- .../src/commands/XmlNamespacesCommand.ts | 10 +- .../src/commands/XmlTimestampsCommand.ts | 10 +- .../src/commands/XmlUnionsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../models/RestXmlProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 4 +- .../src/models/models_0.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../test/functional/restxml.spec.ts | 8 +- .../aws-protocoltests-restxml/package.json | 14 +- .../src/RestXmlProtocol.ts | 4 +- .../src/RestXmlProtocolClient.ts | 67 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../commands/AllQueryStringTypesCommand.ts | 10 +- .../src/commands/BodyWithXmlNameCommand.ts | 10 +- .../ConstantAndVariableQueryStringCommand.ts | 10 +- .../commands/ConstantQueryStringCommand.ts | 10 +- .../commands/ContentTypeParametersCommand.ts | 10 +- .../src/commands/DatetimeOffsetsCommand.ts | 10 +- .../EmptyInputAndEmptyOutputCommand.ts | 10 +- .../src/commands/EndpointOperationCommand.ts | 8 +- ...ointWithHostLabelHeaderOperationCommand.ts | 10 +- .../EndpointWithHostLabelOperationCommand.ts | 10 +- .../src/commands/FlattenedXmlMapCommand.ts | 10 +- .../FlattenedXmlMapWithXmlNameCommand.ts | 10 +- .../FlattenedXmlMapWithXmlNamespaceCommand.ts | 10 +- .../src/commands/FractionalSecondsCommand.ts | 10 +- .../src/commands/GreetingWithErrorsCommand.ts | 10 +- .../commands/HttpEmptyPrefixHeadersCommand.ts | 10 +- .../src/commands/HttpEnumPayloadCommand.ts | 10 +- .../src/commands/HttpPayloadTraitsCommand.ts | 8 +- .../HttpPayloadTraitsWithMediaTypeCommand.ts | 8 +- .../HttpPayloadWithMemberXmlNameCommand.ts | 10 +- .../HttpPayloadWithStructureCommand.ts | 10 +- .../commands/HttpPayloadWithUnionCommand.ts | 10 +- .../commands/HttpPayloadWithXmlNameCommand.ts | 10 +- ...PayloadWithXmlNamespaceAndPrefixCommand.ts | 10 +- .../HttpPayloadWithXmlNamespaceCommand.ts | 10 +- .../src/commands/HttpPrefixHeadersCommand.ts | 10 +- .../HttpRequestWithFloatLabelsCommand.ts | 10 +- ...HttpRequestWithGreedyLabelInPathCommand.ts | 10 +- ...uestWithLabelsAndTimestampFormatCommand.ts | 10 +- .../commands/HttpRequestWithLabelsCommand.ts | 10 +- .../src/commands/HttpResponseCodeCommand.ts | 10 +- .../src/commands/HttpStringPayloadCommand.ts | 10 +- .../IgnoreQueryParamsInResponseCommand.ts | 10 +- .../InputAndOutputWithHeadersCommand.ts | 10 +- .../NestedXmlMapWithXmlNameCommand.ts | 10 +- .../src/commands/NestedXmlMapsCommand.ts | 10 +- .../src/commands/NoInputAndNoOutputCommand.ts | 8 +- .../src/commands/NoInputAndOutputCommand.ts | 10 +- .../NullAndEmptyHeadersClientCommand.ts | 10 +- .../NullAndEmptyHeadersServerCommand.ts | 10 +- .../OmitsNullSerializesEmptyStringCommand.ts | 10 +- .../commands/PutWithContentEncodingCommand.ts | 10 +- .../QueryIdempotencyTokenAutoFillCommand.ts | 10 +- .../QueryParamsAsStringListMapCommand.ts | 10 +- .../src/commands/QueryPrecedenceCommand.ts | 10 +- .../src/commands/RecursiveShapesCommand.ts | 10 +- .../commands/SimpleScalarPropertiesCommand.ts | 10 +- .../commands/TimestampFormatHeadersCommand.ts | 10 +- .../src/commands/XmlAttributesCommand.ts | 10 +- .../commands/XmlAttributesOnPayloadCommand.ts | 10 +- .../src/commands/XmlBlobsCommand.ts | 10 +- .../src/commands/XmlEmptyBlobsCommand.ts | 10 +- .../src/commands/XmlEmptyListsCommand.ts | 10 +- .../src/commands/XmlEmptyMapsCommand.ts | 10 +- .../src/commands/XmlEmptyStringsCommand.ts | 10 +- .../src/commands/XmlEnumsCommand.ts | 10 +- .../src/commands/XmlIntEnumsCommand.ts | 10 +- .../src/commands/XmlListsCommand.ts | 10 +- .../commands/XmlMapWithXmlNamespaceCommand.ts | 10 +- .../src/commands/XmlMapsCommand.ts | 10 +- .../src/commands/XmlMapsXmlNameCommand.ts | 10 +- .../src/commands/XmlNamespacesCommand.ts | 10 +- .../src/commands/XmlTimestampsCommand.ts | 10 +- .../src/commands/XmlUnionsCommand.ts | 10 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 8 +- .../models/RestXmlProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Aws_restXml.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/restxml.spec.ts | 8 +- .../package.json | 12 +- .../src/RpcV2Protocol.ts | 54 +- .../src/RpcV2ProtocolClient.ts | 106 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/EmptyInputOutputCommand.ts | 6 +- .../src/commands/Float16Command.ts | 6 +- .../src/commands/FractionalSecondsCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../src/commands/NoInputOutputCommand.ts | 4 +- .../commands/OperationWithDefaultsCommand.ts | 6 +- .../commands/OptionalInputOutputCommand.ts | 6 +- .../src/commands/RecursiveShapesCommand.ts | 6 +- .../src/commands/RpcV2CborDenseMapsCommand.ts | 6 +- .../src/commands/RpcV2CborListsCommand.ts | 6 +- .../commands/RpcV2CborSparseMapsCommand.ts | 6 +- .../commands/SimpleScalarPropertiesCommand.ts | 6 +- .../commands/SparseNullsOperationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 6 +- .../models/RpcV2ProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 4 +- .../src/models/models_0.ts | 2 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../src/schemas/schemas_0.ts | 2 +- .../test/functional/rpcv2cbor.spec.ts | 6 +- .../package.json | 12 +- .../src/RpcV2Protocol.ts | 4 +- .../src/RpcV2ProtocolClient.ts | 65 +- .../auth/httpAuthExtensionConfiguration.ts | 4 +- .../src/auth/httpAuthSchemeProvider.ts | 4 +- .../src/commands/EmptyInputOutputCommand.ts | 6 +- .../src/commands/Float16Command.ts | 6 +- .../src/commands/FractionalSecondsCommand.ts | 6 +- .../src/commands/GreetingWithErrorsCommand.ts | 6 +- .../src/commands/NoInputOutputCommand.ts | 4 +- .../commands/OperationWithDefaultsCommand.ts | 6 +- .../commands/OptionalInputOutputCommand.ts | 6 +- .../src/commands/RecursiveShapesCommand.ts | 6 +- .../src/commands/RpcV2CborDenseMapsCommand.ts | 6 +- .../src/commands/RpcV2CborListsCommand.ts | 6 +- .../commands/RpcV2CborSparseMapsCommand.ts | 6 +- .../commands/SimpleScalarPropertiesCommand.ts | 6 +- .../commands/SparseNullsOperationCommand.ts | 6 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 6 +- .../models/RpcV2ProtocolServiceException.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Rpcv2cbor.ts | 8 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 2 +- .../src/runtimeConfig.shared.ts | 4 +- .../src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- .../test/functional/rpcv2cbor.spec.ts | 6 +- private/aws-restjson-server/package.json | 8 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../aws-restjson-server/src/models/errors.ts | 2 +- .../src/protocols/Aws_restJson1.ts | 12 +- .../test/functional/restjson1.spec.ts | 8 +- .../package.json | 8 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 6 +- .../src/endpoint/ruleset.ts | 2 +- .../src/models/errors.ts | 2 +- .../src/protocols/Aws_restJson1.ts | 2 +- .../test/functional/restjson1.spec.ts | 6 +- private/weather-legacy-auth/package.json | 12 +- private/weather-legacy-auth/src/Weather.ts | 7 +- .../weather-legacy-auth/src/WeatherClient.ts | 123 +- .../src/commands/OnlyCustomAuthCommand.ts | 9 +- .../commands/OnlyCustomAuthOptionalCommand.ts | 9 +- .../OnlyHttpApiKeyAndBearerAuthCommand.ts | 13 +- ...yHttpApiKeyAndBearerAuthReversedCommand.ts | 13 +- .../src/commands/OnlyHttpApiKeyAuthCommand.ts | 11 +- .../OnlyHttpApiKeyAuthOptionalCommand.ts | 9 +- .../src/commands/OnlyHttpBearerAuthCommand.ts | 9 +- .../OnlyHttpBearerAuthOptionalCommand.ts | 9 +- .../src/commands/OnlySigv4AuthCommand.ts | 9 +- .../commands/OnlySigv4AuthOptionalCommand.ts | 9 +- .../src/commands/SameAsServiceCommand.ts | 11 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../src/endpoint/endpointResolver.ts | 7 +- .../src/endpoint/ruleset.ts | 2 +- .../src/extensionConfiguration.ts | 6 +- .../src/models/WeatherServiceException.ts | 2 +- .../src/protocols/Aws_restJson1.ts | 37 +- .../src/runtimeConfig.browser.ts | 7 +- .../src/runtimeConfig.native.ts | 3 +- .../src/runtimeConfig.shared.ts | 5 +- .../weather-legacy-auth/src/runtimeConfig.ts | 8 +- .../src/runtimeExtensions.ts | 2 +- private/weather/package.json | 14 +- private/weather/src/Weather.ts | 7 +- private/weather/src/WeatherClient.ts | 122 +- .../auth/httpAuthExtensionConfiguration.ts | 5 +- .../src/auth/httpAuthSchemeProvider.ts | 19 +- .../src/commands/OnlyCustomAuthCommand.ts | 9 +- .../commands/OnlyCustomAuthOptionalCommand.ts | 9 +- .../OnlyHttpApiKeyAndBearerAuthCommand.ts | 11 +- ...yHttpApiKeyAndBearerAuthReversedCommand.ts | 11 +- .../src/commands/OnlyHttpApiKeyAuthCommand.ts | 9 +- .../OnlyHttpApiKeyAuthOptionalCommand.ts | 9 +- .../src/commands/OnlyHttpBearerAuthCommand.ts | 9 +- .../OnlyHttpBearerAuthOptionalCommand.ts | 9 +- .../src/commands/OnlySigv4AuthCommand.ts | 9 +- .../commands/OnlySigv4AuthOptionalCommand.ts | 9 +- .../src/commands/SameAsServiceCommand.ts | 11 +- .../src/endpoint/EndpointParameters.ts | 2 +- .../weather/src/endpoint/endpointResolver.ts | 7 +- private/weather/src/endpoint/ruleset.ts | 2 +- private/weather/src/extensionConfiguration.ts | 9 +- .../src/models/WeatherServiceException.ts | 2 +- .../weather/src/protocols/Aws_restJson1.ts | 37 +- private/weather/src/runtimeConfig.browser.ts | 7 +- private/weather/src/runtimeConfig.native.ts | 3 +- private/weather/src/runtimeConfig.shared.ts | 9 +- private/weather/src/runtimeConfig.ts | 8 +- private/weather/src/runtimeExtensions.ts | 5 +- yarn.lock | 5442 ++++++++--------- 29185 files changed, 106890 insertions(+), 90754 deletions(-) diff --git a/clients/client-accessanalyzer/package.json b/clients/client-accessanalyzer/package.json index 8bdfebef4f692..ceeec088de7ca 100644 --- a/clients/client-accessanalyzer/package.json +++ b/clients/client-accessanalyzer/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-accessanalyzer/src/AccessAnalyzer.ts b/clients/client-accessanalyzer/src/AccessAnalyzer.ts index 79ab864b4ab1c..49e22b721eb46 100644 --- a/clients/client-accessanalyzer/src/AccessAnalyzer.ts +++ b/clients/client-accessanalyzer/src/AccessAnalyzer.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AccessAnalyzerClient, AccessAnalyzerClientConfig } from "./AccessAnalyzerClient"; +import { AccessAnalyzerClient } from "./AccessAnalyzerClient"; import { ApplyArchiveRuleCommand, ApplyArchiveRuleCommandInput, diff --git a/clients/client-accessanalyzer/src/AccessAnalyzerClient.ts b/clients/client-accessanalyzer/src/AccessAnalyzerClient.ts index e97449e3f906a..2cc40df8a4bf9 100644 --- a/clients/client-accessanalyzer/src/AccessAnalyzerClient.ts +++ b/clients/client-accessanalyzer/src/AccessAnalyzerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAccessAnalyzerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { ApplyArchiveRuleCommandInput, ApplyArchiveRuleCommandOutput } from "./commands/ApplyArchiveRuleCommand"; @@ -140,7 +149,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-accessanalyzer/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-accessanalyzer/src/auth/httpAuthExtensionConfiguration.ts index 27cf61a424968..01e540c1cffd3 100644 --- a/clients/client-accessanalyzer/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-accessanalyzer/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AccessAnalyzerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AccessAnalyzerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-accessanalyzer/src/auth/httpAuthSchemeProvider.ts b/clients/client-accessanalyzer/src/auth/httpAuthSchemeProvider.ts index 24fd3e029ab57..82b7261232d32 100644 --- a/clients/client-accessanalyzer/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-accessanalyzer/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AccessAnalyzerClientConfig, AccessAnalyzerClientResolvedConfig } from "../AccessAnalyzerClient"; +import { type AccessAnalyzerClientResolvedConfig, AccessAnalyzerClientConfig } from "../AccessAnalyzerClient"; /** * @internal diff --git a/clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts index 3aad956d8063b..9c901c1731552 100644 --- a/clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplyArchiveRuleRequest } from "../models/models_0"; +import type { ApplyArchiveRuleRequest } from "../models/models_0"; import { ApplyArchiveRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts b/clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts index 26bb3ce3959ec..e2f444af3b762 100644 --- a/clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelPolicyGenerationRequest, CancelPolicyGenerationResponse } from "../models/models_0"; +import type { CancelPolicyGenerationRequest, CancelPolicyGenerationResponse } from "../models/models_0"; import { CancelPolicyGeneration } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/CheckAccessNotGrantedCommand.ts b/clients/client-accessanalyzer/src/commands/CheckAccessNotGrantedCommand.ts index 25b1c5e27b906..ad61430055aa2 100644 --- a/clients/client-accessanalyzer/src/commands/CheckAccessNotGrantedCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CheckAccessNotGrantedCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CheckAccessNotGrantedRequest, CheckAccessNotGrantedResponse } from "../models/models_0"; +import type { CheckAccessNotGrantedRequest, CheckAccessNotGrantedResponse } from "../models/models_0"; import { CheckAccessNotGranted } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/CheckNoNewAccessCommand.ts b/clients/client-accessanalyzer/src/commands/CheckNoNewAccessCommand.ts index a3cd5b23d6778..756fb89b2bb93 100644 --- a/clients/client-accessanalyzer/src/commands/CheckNoNewAccessCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CheckNoNewAccessCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CheckNoNewAccessRequest, CheckNoNewAccessResponse } from "../models/models_0"; +import type { CheckNoNewAccessRequest, CheckNoNewAccessResponse } from "../models/models_0"; import { CheckNoNewAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/CheckNoPublicAccessCommand.ts b/clients/client-accessanalyzer/src/commands/CheckNoPublicAccessCommand.ts index 0c3f928c0db8f..93991001d8c4f 100644 --- a/clients/client-accessanalyzer/src/commands/CheckNoPublicAccessCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CheckNoPublicAccessCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CheckNoPublicAccessRequest, CheckNoPublicAccessResponse } from "../models/models_0"; +import type { CheckNoPublicAccessRequest, CheckNoPublicAccessResponse } from "../models/models_0"; import { CheckNoPublicAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts b/clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts index 35176d606a3f6..335e5aa2f6fdd 100644 --- a/clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CreateAccessPreviewCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessPreviewRequest, CreateAccessPreviewResponse } from "../models/models_0"; +import type { CreateAccessPreviewRequest, CreateAccessPreviewResponse } from "../models/models_0"; import { CreateAccessPreview } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts b/clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts index eb52c8331eb93..e1c78384b8800 100644 --- a/clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CreateAnalyzerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnalyzerRequest, CreateAnalyzerResponse } from "../models/models_0"; +import type { CreateAnalyzerRequest, CreateAnalyzerResponse } from "../models/models_0"; import { CreateAnalyzer } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts index 2fc19472999c0..b74ab73f35c84 100644 --- a/clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/CreateArchiveRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateArchiveRuleRequest } from "../models/models_0"; +import type { CreateArchiveRuleRequest } from "../models/models_0"; import { CreateArchiveRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts b/clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts index ed8f08bf7128d..c4ab9de2ee721 100644 --- a/clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts +++ b/clients/client-accessanalyzer/src/commands/DeleteAnalyzerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnalyzerRequest } from "../models/models_0"; +import type { DeleteAnalyzerRequest } from "../models/models_0"; import { DeleteAnalyzer } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts index 4353385e3cc3d..44dfc673d1749 100644 --- a/clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/DeleteArchiveRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteArchiveRuleRequest } from "../models/models_0"; +import type { DeleteArchiveRuleRequest } from "../models/models_0"; import { DeleteArchiveRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GenerateFindingRecommendationCommand.ts b/clients/client-accessanalyzer/src/commands/GenerateFindingRecommendationCommand.ts index ab12a12512d9c..1cb0d8e896cc5 100644 --- a/clients/client-accessanalyzer/src/commands/GenerateFindingRecommendationCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GenerateFindingRecommendationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateFindingRecommendationRequest } from "../models/models_0"; +import type { GenerateFindingRecommendationRequest } from "../models/models_0"; import { GenerateFindingRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts b/clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts index 067ec33fd69ed..4ea49cd9bf33d 100644 --- a/clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetAccessPreviewCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessPreviewRequest, GetAccessPreviewResponse } from "../models/models_0"; +import type { GetAccessPreviewRequest, GetAccessPreviewResponse } from "../models/models_0"; import { GetAccessPreview } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts b/clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts index 6f27718d11827..4aa113f823509 100644 --- a/clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetAnalyzedResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnalyzedResourceRequest, GetAnalyzedResourceResponse } from "../models/models_0"; +import type { GetAnalyzedResourceRequest, GetAnalyzedResourceResponse } from "../models/models_0"; import { GetAnalyzedResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts b/clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts index 401944f305e4a..5efdf87cbc9bc 100644 --- a/clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetAnalyzerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnalyzerRequest, GetAnalyzerResponse } from "../models/models_0"; +import type { GetAnalyzerRequest, GetAnalyzerResponse } from "../models/models_0"; import { GetAnalyzer } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts index 1c132b6677c4a..67321dfc85548 100644 --- a/clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetArchiveRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetArchiveRuleRequest, GetArchiveRuleResponse } from "../models/models_0"; +import type { GetArchiveRuleRequest, GetArchiveRuleResponse } from "../models/models_0"; import { GetArchiveRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GetFindingCommand.ts b/clients/client-accessanalyzer/src/commands/GetFindingCommand.ts index e8516b87cbaed..388787d1f2fbb 100644 --- a/clients/client-accessanalyzer/src/commands/GetFindingCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetFindingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingRequest, GetFindingResponse } from "../models/models_0"; +import type { GetFindingRequest, GetFindingResponse } from "../models/models_0"; import { GetFinding } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GetFindingRecommendationCommand.ts b/clients/client-accessanalyzer/src/commands/GetFindingRecommendationCommand.ts index ca3a207718c6f..c3181b37c9acc 100644 --- a/clients/client-accessanalyzer/src/commands/GetFindingRecommendationCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetFindingRecommendationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingRecommendationRequest, GetFindingRecommendationResponse } from "../models/models_0"; +import type { GetFindingRecommendationRequest, GetFindingRecommendationResponse } from "../models/models_0"; import { GetFindingRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GetFindingV2Command.ts b/clients/client-accessanalyzer/src/commands/GetFindingV2Command.ts index 2e55330ac5595..623fc3d38a6b6 100644 --- a/clients/client-accessanalyzer/src/commands/GetFindingV2Command.ts +++ b/clients/client-accessanalyzer/src/commands/GetFindingV2Command.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingV2Request, GetFindingV2Response } from "../models/models_0"; +import type { GetFindingV2Request, GetFindingV2Response } from "../models/models_0"; import { GetFindingV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GetFindingsStatisticsCommand.ts b/clients/client-accessanalyzer/src/commands/GetFindingsStatisticsCommand.ts index f82afe5f00a66..514f94f707367 100644 --- a/clients/client-accessanalyzer/src/commands/GetFindingsStatisticsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetFindingsStatisticsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingsStatisticsRequest, GetFindingsStatisticsResponse } from "../models/models_0"; +import type { GetFindingsStatisticsRequest, GetFindingsStatisticsResponse } from "../models/models_0"; import { GetFindingsStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.ts b/clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.ts index 185b432f61fef..ffbeeb7b29dd6 100644 --- a/clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.ts +++ b/clients/client-accessanalyzer/src/commands/GetGeneratedPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGeneratedPolicyRequest, GetGeneratedPolicyResponse } from "../models/models_0"; +import type { GetGeneratedPolicyRequest, GetGeneratedPolicyResponse } from "../models/models_0"; import { GetGeneratedPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ListAccessPreviewFindingsCommand.ts b/clients/client-accessanalyzer/src/commands/ListAccessPreviewFindingsCommand.ts index 166567bc2cd53..e1ef72953629d 100644 --- a/clients/client-accessanalyzer/src/commands/ListAccessPreviewFindingsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListAccessPreviewFindingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessPreviewFindingsRequest, ListAccessPreviewFindingsResponse } from "../models/models_0"; +import type { ListAccessPreviewFindingsRequest, ListAccessPreviewFindingsResponse } from "../models/models_0"; import { ListAccessPreviewFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ListAccessPreviewsCommand.ts b/clients/client-accessanalyzer/src/commands/ListAccessPreviewsCommand.ts index 9c7ba966b3644..40d9c731459f4 100644 --- a/clients/client-accessanalyzer/src/commands/ListAccessPreviewsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListAccessPreviewsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessPreviewsRequest, ListAccessPreviewsResponse } from "../models/models_0"; +import type { ListAccessPreviewsRequest, ListAccessPreviewsResponse } from "../models/models_0"; import { ListAccessPreviews } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ListAnalyzedResourcesCommand.ts b/clients/client-accessanalyzer/src/commands/ListAnalyzedResourcesCommand.ts index 90a21523195d0..b86f1597af752 100644 --- a/clients/client-accessanalyzer/src/commands/ListAnalyzedResourcesCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListAnalyzedResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnalyzedResourcesRequest, ListAnalyzedResourcesResponse } from "../models/models_0"; +import type { ListAnalyzedResourcesRequest, ListAnalyzedResourcesResponse } from "../models/models_0"; import { ListAnalyzedResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ListAnalyzersCommand.ts b/clients/client-accessanalyzer/src/commands/ListAnalyzersCommand.ts index 174ff88a09bd3..54194060cf65b 100644 --- a/clients/client-accessanalyzer/src/commands/ListAnalyzersCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListAnalyzersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnalyzersRequest, ListAnalyzersResponse } from "../models/models_0"; +import type { ListAnalyzersRequest, ListAnalyzersResponse } from "../models/models_0"; import { ListAnalyzers } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ListArchiveRulesCommand.ts b/clients/client-accessanalyzer/src/commands/ListArchiveRulesCommand.ts index 1e2b268ee9177..852ecbe5f8fbd 100644 --- a/clients/client-accessanalyzer/src/commands/ListArchiveRulesCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListArchiveRulesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListArchiveRulesRequest, ListArchiveRulesResponse } from "../models/models_0"; +import type { ListArchiveRulesRequest, ListArchiveRulesResponse } from "../models/models_0"; import { ListArchiveRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ListFindingsCommand.ts b/clients/client-accessanalyzer/src/commands/ListFindingsCommand.ts index 630c000a2328f..b685f11d5bdf2 100644 --- a/clients/client-accessanalyzer/src/commands/ListFindingsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListFindingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFindingsRequest, ListFindingsResponse } from "../models/models_0"; +import type { ListFindingsRequest, ListFindingsResponse } from "../models/models_0"; import { ListFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ListFindingsV2Command.ts b/clients/client-accessanalyzer/src/commands/ListFindingsV2Command.ts index 575f6cb1782a2..5030550ee33b9 100644 --- a/clients/client-accessanalyzer/src/commands/ListFindingsV2Command.ts +++ b/clients/client-accessanalyzer/src/commands/ListFindingsV2Command.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFindingsV2Request, ListFindingsV2Response } from "../models/models_0"; +import type { ListFindingsV2Request, ListFindingsV2Response } from "../models/models_0"; import { ListFindingsV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ListPolicyGenerationsCommand.ts b/clients/client-accessanalyzer/src/commands/ListPolicyGenerationsCommand.ts index e441da63c211b..34614fb22d874 100644 --- a/clients/client-accessanalyzer/src/commands/ListPolicyGenerationsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListPolicyGenerationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPolicyGenerationsRequest, ListPolicyGenerationsResponse } from "../models/models_0"; +import type { ListPolicyGenerationsRequest, ListPolicyGenerationsResponse } from "../models/models_0"; import { ListPolicyGenerations } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ListTagsForResourceCommand.ts b/clients/client-accessanalyzer/src/commands/ListTagsForResourceCommand.ts index 4cb7bba8c0c14..108bd8009a227 100644 --- a/clients/client-accessanalyzer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/StartPolicyGenerationCommand.ts b/clients/client-accessanalyzer/src/commands/StartPolicyGenerationCommand.ts index a038d84bc0366..fcb6d82477a92 100644 --- a/clients/client-accessanalyzer/src/commands/StartPolicyGenerationCommand.ts +++ b/clients/client-accessanalyzer/src/commands/StartPolicyGenerationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPolicyGenerationRequest, StartPolicyGenerationResponse } from "../models/models_0"; +import type { StartPolicyGenerationRequest, StartPolicyGenerationResponse } from "../models/models_0"; import { StartPolicyGeneration } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/StartResourceScanCommand.ts b/clients/client-accessanalyzer/src/commands/StartResourceScanCommand.ts index 072e1b5bb61fb..79f481ad8a820 100644 --- a/clients/client-accessanalyzer/src/commands/StartResourceScanCommand.ts +++ b/clients/client-accessanalyzer/src/commands/StartResourceScanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartResourceScanRequest } from "../models/models_0"; +import type { StartResourceScanRequest } from "../models/models_0"; import { StartResourceScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/TagResourceCommand.ts b/clients/client-accessanalyzer/src/commands/TagResourceCommand.ts index f1dcea7c82317..538cdbd055125 100644 --- a/clients/client-accessanalyzer/src/commands/TagResourceCommand.ts +++ b/clients/client-accessanalyzer/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/UntagResourceCommand.ts b/clients/client-accessanalyzer/src/commands/UntagResourceCommand.ts index da021fa584bcb..0d5af62d69a81 100644 --- a/clients/client-accessanalyzer/src/commands/UntagResourceCommand.ts +++ b/clients/client-accessanalyzer/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/UpdateAnalyzerCommand.ts b/clients/client-accessanalyzer/src/commands/UpdateAnalyzerCommand.ts index 4eead8fd1a45f..a80d2623e3ddc 100644 --- a/clients/client-accessanalyzer/src/commands/UpdateAnalyzerCommand.ts +++ b/clients/client-accessanalyzer/src/commands/UpdateAnalyzerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnalyzerRequest, UpdateAnalyzerResponse } from "../models/models_0"; +import type { UpdateAnalyzerRequest, UpdateAnalyzerResponse } from "../models/models_0"; import { UpdateAnalyzer } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/UpdateArchiveRuleCommand.ts b/clients/client-accessanalyzer/src/commands/UpdateArchiveRuleCommand.ts index 5bb2f0c90d4b0..385cb823a4834 100644 --- a/clients/client-accessanalyzer/src/commands/UpdateArchiveRuleCommand.ts +++ b/clients/client-accessanalyzer/src/commands/UpdateArchiveRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateArchiveRuleRequest } from "../models/models_0"; +import type { UpdateArchiveRuleRequest } from "../models/models_0"; import { UpdateArchiveRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/UpdateFindingsCommand.ts b/clients/client-accessanalyzer/src/commands/UpdateFindingsCommand.ts index 52b9e65a4ec87..47bdd05693843 100644 --- a/clients/client-accessanalyzer/src/commands/UpdateFindingsCommand.ts +++ b/clients/client-accessanalyzer/src/commands/UpdateFindingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFindingsRequest } from "../models/models_0"; +import type { UpdateFindingsRequest } from "../models/models_0"; import { UpdateFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/commands/ValidatePolicyCommand.ts b/clients/client-accessanalyzer/src/commands/ValidatePolicyCommand.ts index b477005856005..971d02504e9bc 100644 --- a/clients/client-accessanalyzer/src/commands/ValidatePolicyCommand.ts +++ b/clients/client-accessanalyzer/src/commands/ValidatePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient"; +import type { + AccessAnalyzerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AccessAnalyzerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidatePolicyRequest, ValidatePolicyResponse } from "../models/models_0"; +import type { ValidatePolicyRequest, ValidatePolicyResponse } from "../models/models_0"; import { ValidatePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-accessanalyzer/src/endpoint/EndpointParameters.ts b/clients/client-accessanalyzer/src/endpoint/EndpointParameters.ts index 63d0ced811f37..c2b16657fa3ff 100644 --- a/clients/client-accessanalyzer/src/endpoint/EndpointParameters.ts +++ b/clients/client-accessanalyzer/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-accessanalyzer/src/endpoint/endpointResolver.ts b/clients/client-accessanalyzer/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-accessanalyzer/src/endpoint/endpointResolver.ts +++ b/clients/client-accessanalyzer/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-accessanalyzer/src/extensionConfiguration.ts b/clients/client-accessanalyzer/src/extensionConfiguration.ts index 3a1eed8e34f0d..c695aaa9d759c 100644 --- a/clients/client-accessanalyzer/src/extensionConfiguration.ts +++ b/clients/client-accessanalyzer/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-accessanalyzer/src/models/AccessAnalyzerServiceException.ts b/clients/client-accessanalyzer/src/models/AccessAnalyzerServiceException.ts index 298fbb4775289..ecd211d8edddc 100644 --- a/clients/client-accessanalyzer/src/models/AccessAnalyzerServiceException.ts +++ b/clients/client-accessanalyzer/src/models/AccessAnalyzerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-accessanalyzer/src/models/errors.ts b/clients/client-accessanalyzer/src/models/errors.ts index 2c6d337694851..09a136f067ea7 100644 --- a/clients/client-accessanalyzer/src/models/errors.ts +++ b/clients/client-accessanalyzer/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessAnalyzerServiceException as __BaseException } from "./AccessAnalyzerServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-accessanalyzer/src/pagination/GetFindingRecommendationPaginator.ts b/clients/client-accessanalyzer/src/pagination/GetFindingRecommendationPaginator.ts index fc4a56ad60e2a..7a2b750627c87 100644 --- a/clients/client-accessanalyzer/src/pagination/GetFindingRecommendationPaginator.ts +++ b/clients/client-accessanalyzer/src/pagination/GetFindingRecommendationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/GetFindingV2Paginator.ts b/clients/client-accessanalyzer/src/pagination/GetFindingV2Paginator.ts index 92a63634dab32..0edd185e25b51 100644 --- a/clients/client-accessanalyzer/src/pagination/GetFindingV2Paginator.ts +++ b/clients/client-accessanalyzer/src/pagination/GetFindingV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/Interfaces.ts b/clients/client-accessanalyzer/src/pagination/Interfaces.ts index 6f3eead202f99..d6403699d1f32 100644 --- a/clients/client-accessanalyzer/src/pagination/Interfaces.ts +++ b/clients/client-accessanalyzer/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; diff --git a/clients/client-accessanalyzer/src/pagination/ListAccessPreviewFindingsPaginator.ts b/clients/client-accessanalyzer/src/pagination/ListAccessPreviewFindingsPaginator.ts index 17cf7c3aeb79a..f6318d66bbd29 100644 --- a/clients/client-accessanalyzer/src/pagination/ListAccessPreviewFindingsPaginator.ts +++ b/clients/client-accessanalyzer/src/pagination/ListAccessPreviewFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/ListAccessPreviewsPaginator.ts b/clients/client-accessanalyzer/src/pagination/ListAccessPreviewsPaginator.ts index f386fbf6dac72..34bc909b66875 100644 --- a/clients/client-accessanalyzer/src/pagination/ListAccessPreviewsPaginator.ts +++ b/clients/client-accessanalyzer/src/pagination/ListAccessPreviewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/ListAnalyzedResourcesPaginator.ts b/clients/client-accessanalyzer/src/pagination/ListAnalyzedResourcesPaginator.ts index fe282c76c44e1..78291800ff8bf 100644 --- a/clients/client-accessanalyzer/src/pagination/ListAnalyzedResourcesPaginator.ts +++ b/clients/client-accessanalyzer/src/pagination/ListAnalyzedResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/ListAnalyzersPaginator.ts b/clients/client-accessanalyzer/src/pagination/ListAnalyzersPaginator.ts index e488c56c2f01f..121f68f0dff57 100644 --- a/clients/client-accessanalyzer/src/pagination/ListAnalyzersPaginator.ts +++ b/clients/client-accessanalyzer/src/pagination/ListAnalyzersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/ListArchiveRulesPaginator.ts b/clients/client-accessanalyzer/src/pagination/ListArchiveRulesPaginator.ts index 3934f86b04c27..27cd01b9e70c6 100644 --- a/clients/client-accessanalyzer/src/pagination/ListArchiveRulesPaginator.ts +++ b/clients/client-accessanalyzer/src/pagination/ListArchiveRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/ListFindingsPaginator.ts b/clients/client-accessanalyzer/src/pagination/ListFindingsPaginator.ts index e910668f0e0ee..59df202f9ceea 100644 --- a/clients/client-accessanalyzer/src/pagination/ListFindingsPaginator.ts +++ b/clients/client-accessanalyzer/src/pagination/ListFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/ListFindingsV2Paginator.ts b/clients/client-accessanalyzer/src/pagination/ListFindingsV2Paginator.ts index 3dabf223e6c72..9335f2dec2230 100644 --- a/clients/client-accessanalyzer/src/pagination/ListFindingsV2Paginator.ts +++ b/clients/client-accessanalyzer/src/pagination/ListFindingsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/ListPolicyGenerationsPaginator.ts b/clients/client-accessanalyzer/src/pagination/ListPolicyGenerationsPaginator.ts index 2a74cef527466..8344eefe5f449 100644 --- a/clients/client-accessanalyzer/src/pagination/ListPolicyGenerationsPaginator.ts +++ b/clients/client-accessanalyzer/src/pagination/ListPolicyGenerationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/pagination/ValidatePolicyPaginator.ts b/clients/client-accessanalyzer/src/pagination/ValidatePolicyPaginator.ts index 030f01224ded0..da8536a7809b8 100644 --- a/clients/client-accessanalyzer/src/pagination/ValidatePolicyPaginator.ts +++ b/clients/client-accessanalyzer/src/pagination/ValidatePolicyPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccessAnalyzerClient } from "../AccessAnalyzerClient"; import { diff --git a/clients/client-accessanalyzer/src/runtimeConfig.browser.ts b/clients/client-accessanalyzer/src/runtimeConfig.browser.ts index 70c993c872e53..620a648568cb4 100644 --- a/clients/client-accessanalyzer/src/runtimeConfig.browser.ts +++ b/clients/client-accessanalyzer/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AccessAnalyzerClientConfig } from "./AccessAnalyzerClient"; + +import type { AccessAnalyzerClientConfig } from "./AccessAnalyzerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-accessanalyzer/src/runtimeConfig.native.ts b/clients/client-accessanalyzer/src/runtimeConfig.native.ts index 2712ee6e3ef00..3fcc39176b13a 100644 --- a/clients/client-accessanalyzer/src/runtimeConfig.native.ts +++ b/clients/client-accessanalyzer/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AccessAnalyzerClientConfig } from "./AccessAnalyzerClient"; +import type { AccessAnalyzerClientConfig } from "./AccessAnalyzerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-accessanalyzer/src/runtimeConfig.shared.ts b/clients/client-accessanalyzer/src/runtimeConfig.shared.ts index 371dfe8ec0a0d..11aed78695b5e 100644 --- a/clients/client-accessanalyzer/src/runtimeConfig.shared.ts +++ b/clients/client-accessanalyzer/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AccessAnalyzerClientConfig } from "./AccessAnalyzerClient"; +import type { AccessAnalyzerClientConfig } from "./AccessAnalyzerClient"; import { defaultAccessAnalyzerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-accessanalyzer/src/runtimeConfig.ts b/clients/client-accessanalyzer/src/runtimeConfig.ts index 9e14ffad03676..a4d9b74283d64 100644 --- a/clients/client-accessanalyzer/src/runtimeConfig.ts +++ b/clients/client-accessanalyzer/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AccessAnalyzerClientConfig } from "./AccessAnalyzerClient"; + +import type { AccessAnalyzerClientConfig } from "./AccessAnalyzerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-accessanalyzer/src/runtimeExtensions.ts b/clients/client-accessanalyzer/src/runtimeExtensions.ts index 7b0168b9a4291..324b51b5572da 100644 --- a/clients/client-accessanalyzer/src/runtimeExtensions.ts +++ b/clients/client-accessanalyzer/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AccessAnalyzerExtensionConfiguration } from "./extensionConfiguration"; +import type { AccessAnalyzerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-accessanalyzer/src/schemas/schemas_0.ts b/clients/client-accessanalyzer/src/schemas/schemas_0.ts index 2f121d31eefaa..14a1e4d04387b 100644 --- a/clients/client-accessanalyzer/src/schemas/schemas_0.ts +++ b/clients/client-accessanalyzer/src/schemas/schemas_0.ts @@ -473,7 +473,7 @@ const n0 = "com.amazonaws.accessanalyzer"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-account/package.json b/clients/client-account/package.json index c5e5ba8850d1b..529b8c9424276 100644 --- a/clients/client-account/package.json +++ b/clients/client-account/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-account/src/Account.ts b/clients/client-account/src/Account.ts index de0ff913333f7..862724a71385c 100644 --- a/clients/client-account/src/Account.ts +++ b/clients/client-account/src/Account.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AccountClient, AccountClientConfig } from "./AccountClient"; +import { AccountClient } from "./AccountClient"; import { AcceptPrimaryEmailUpdateCommand, AcceptPrimaryEmailUpdateCommandInput, diff --git a/clients/client-account/src/AccountClient.ts b/clients/client-account/src/AccountClient.ts index b1b5fbb431116..952809cb61f5d 100644 --- a/clients/client-account/src/AccountClient.ts +++ b/clients/client-account/src/AccountClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAccountHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -102,7 +111,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-account/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-account/src/auth/httpAuthExtensionConfiguration.ts index de1363cd57e4a..1fa63cd7257c4 100644 --- a/clients/client-account/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-account/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AccountHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AccountHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-account/src/auth/httpAuthSchemeProvider.ts b/clients/client-account/src/auth/httpAuthSchemeProvider.ts index 82ea8d28575d4..09697d7da3dee 100644 --- a/clients/client-account/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-account/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AccountClientConfig, AccountClientResolvedConfig } from "../AccountClient"; +import { type AccountClientResolvedConfig, AccountClientConfig } from "../AccountClient"; /** * @internal diff --git a/clients/client-account/src/commands/AcceptPrimaryEmailUpdateCommand.ts b/clients/client-account/src/commands/AcceptPrimaryEmailUpdateCommand.ts index 5a43c891c494f..a6bc9df08ce95 100644 --- a/clients/client-account/src/commands/AcceptPrimaryEmailUpdateCommand.ts +++ b/clients/client-account/src/commands/AcceptPrimaryEmailUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptPrimaryEmailUpdateRequest, AcceptPrimaryEmailUpdateResponse } from "../models/models_0"; +import type { AcceptPrimaryEmailUpdateRequest, AcceptPrimaryEmailUpdateResponse } from "../models/models_0"; import { AcceptPrimaryEmailUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/DeleteAlternateContactCommand.ts b/clients/client-account/src/commands/DeleteAlternateContactCommand.ts index f8009a3b299cf..1437f613b7f3f 100644 --- a/clients/client-account/src/commands/DeleteAlternateContactCommand.ts +++ b/clients/client-account/src/commands/DeleteAlternateContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAlternateContactRequest } from "../models/models_0"; +import type { DeleteAlternateContactRequest } from "../models/models_0"; import { DeleteAlternateContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/DisableRegionCommand.ts b/clients/client-account/src/commands/DisableRegionCommand.ts index 090274688fe9b..255c84d37194b 100644 --- a/clients/client-account/src/commands/DisableRegionCommand.ts +++ b/clients/client-account/src/commands/DisableRegionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableRegionRequest } from "../models/models_0"; +import type { DisableRegionRequest } from "../models/models_0"; import { DisableRegion } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/EnableRegionCommand.ts b/clients/client-account/src/commands/EnableRegionCommand.ts index 786bec3333536..a6fb2b029c880 100644 --- a/clients/client-account/src/commands/EnableRegionCommand.ts +++ b/clients/client-account/src/commands/EnableRegionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableRegionRequest } from "../models/models_0"; +import type { EnableRegionRequest } from "../models/models_0"; import { EnableRegion } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/GetAccountInformationCommand.ts b/clients/client-account/src/commands/GetAccountInformationCommand.ts index 46e4a69d06405..6dd00dd21b685 100644 --- a/clients/client-account/src/commands/GetAccountInformationCommand.ts +++ b/clients/client-account/src/commands/GetAccountInformationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountInformationRequest, GetAccountInformationResponse } from "../models/models_0"; +import type { GetAccountInformationRequest, GetAccountInformationResponse } from "../models/models_0"; import { GetAccountInformation } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/GetAlternateContactCommand.ts b/clients/client-account/src/commands/GetAlternateContactCommand.ts index d2d9475c55419..1f30251bc330d 100644 --- a/clients/client-account/src/commands/GetAlternateContactCommand.ts +++ b/clients/client-account/src/commands/GetAlternateContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAlternateContactRequest, GetAlternateContactResponse } from "../models/models_0"; +import type { GetAlternateContactRequest, GetAlternateContactResponse } from "../models/models_0"; import { GetAlternateContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/GetContactInformationCommand.ts b/clients/client-account/src/commands/GetContactInformationCommand.ts index 018950bf797e8..08bdc1ecdf983 100644 --- a/clients/client-account/src/commands/GetContactInformationCommand.ts +++ b/clients/client-account/src/commands/GetContactInformationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContactInformationRequest, GetContactInformationResponse } from "../models/models_0"; +import type { GetContactInformationRequest, GetContactInformationResponse } from "../models/models_0"; import { GetContactInformation } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/GetPrimaryEmailCommand.ts b/clients/client-account/src/commands/GetPrimaryEmailCommand.ts index 6784c267afa16..9c9529a196049 100644 --- a/clients/client-account/src/commands/GetPrimaryEmailCommand.ts +++ b/clients/client-account/src/commands/GetPrimaryEmailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPrimaryEmailRequest, GetPrimaryEmailResponse } from "../models/models_0"; +import type { GetPrimaryEmailRequest, GetPrimaryEmailResponse } from "../models/models_0"; import { GetPrimaryEmail } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/GetRegionOptStatusCommand.ts b/clients/client-account/src/commands/GetRegionOptStatusCommand.ts index de4493be4ba05..443355c4e1ada 100644 --- a/clients/client-account/src/commands/GetRegionOptStatusCommand.ts +++ b/clients/client-account/src/commands/GetRegionOptStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRegionOptStatusRequest, GetRegionOptStatusResponse } from "../models/models_0"; +import type { GetRegionOptStatusRequest, GetRegionOptStatusResponse } from "../models/models_0"; import { GetRegionOptStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/ListRegionsCommand.ts b/clients/client-account/src/commands/ListRegionsCommand.ts index ae3d84823b124..cb51b7a9b5821 100644 --- a/clients/client-account/src/commands/ListRegionsCommand.ts +++ b/clients/client-account/src/commands/ListRegionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegionsRequest, ListRegionsResponse } from "../models/models_0"; +import type { ListRegionsRequest, ListRegionsResponse } from "../models/models_0"; import { ListRegions } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/PutAccountNameCommand.ts b/clients/client-account/src/commands/PutAccountNameCommand.ts index 7da531aba3f96..62542136660a0 100644 --- a/clients/client-account/src/commands/PutAccountNameCommand.ts +++ b/clients/client-account/src/commands/PutAccountNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountNameRequest } from "../models/models_0"; +import type { PutAccountNameRequest } from "../models/models_0"; import { PutAccountName } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/PutAlternateContactCommand.ts b/clients/client-account/src/commands/PutAlternateContactCommand.ts index da266e5d37a1b..954a35957b450 100644 --- a/clients/client-account/src/commands/PutAlternateContactCommand.ts +++ b/clients/client-account/src/commands/PutAlternateContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAlternateContactRequest } from "../models/models_0"; +import type { PutAlternateContactRequest } from "../models/models_0"; import { PutAlternateContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/PutContactInformationCommand.ts b/clients/client-account/src/commands/PutContactInformationCommand.ts index 7aad0b311a1a3..4266cd1497905 100644 --- a/clients/client-account/src/commands/PutContactInformationCommand.ts +++ b/clients/client-account/src/commands/PutContactInformationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutContactInformationRequest } from "../models/models_0"; +import type { PutContactInformationRequest } from "../models/models_0"; import { PutContactInformation } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/commands/StartPrimaryEmailUpdateCommand.ts b/clients/client-account/src/commands/StartPrimaryEmailUpdateCommand.ts index 33e224179f723..fe152df26a28b 100644 --- a/clients/client-account/src/commands/StartPrimaryEmailUpdateCommand.ts +++ b/clients/client-account/src/commands/StartPrimaryEmailUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; +import type { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPrimaryEmailUpdateRequest, StartPrimaryEmailUpdateResponse } from "../models/models_0"; +import type { StartPrimaryEmailUpdateRequest, StartPrimaryEmailUpdateResponse } from "../models/models_0"; import { StartPrimaryEmailUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-account/src/endpoint/EndpointParameters.ts b/clients/client-account/src/endpoint/EndpointParameters.ts index c0ac73555d54a..a5f29b671ab3c 100644 --- a/clients/client-account/src/endpoint/EndpointParameters.ts +++ b/clients/client-account/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-account/src/endpoint/endpointResolver.ts b/clients/client-account/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-account/src/endpoint/endpointResolver.ts +++ b/clients/client-account/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-account/src/extensionConfiguration.ts b/clients/client-account/src/extensionConfiguration.ts index bcfcd8d7620fe..99763a079d716 100644 --- a/clients/client-account/src/extensionConfiguration.ts +++ b/clients/client-account/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-account/src/models/AccountServiceException.ts b/clients/client-account/src/models/AccountServiceException.ts index c916cb4861e54..7b6b97b68cd6e 100644 --- a/clients/client-account/src/models/AccountServiceException.ts +++ b/clients/client-account/src/models/AccountServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-account/src/models/errors.ts b/clients/client-account/src/models/errors.ts index 25230b32bdc89..e8bc722af91e3 100644 --- a/clients/client-account/src/models/errors.ts +++ b/clients/client-account/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccountServiceException as __BaseException } from "./AccountServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-account/src/pagination/Interfaces.ts b/clients/client-account/src/pagination/Interfaces.ts index adc41313771c7..7c4ba8f204511 100644 --- a/clients/client-account/src/pagination/Interfaces.ts +++ b/clients/client-account/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AccountClient } from "../AccountClient"; diff --git a/clients/client-account/src/pagination/ListRegionsPaginator.ts b/clients/client-account/src/pagination/ListRegionsPaginator.ts index eb11bd8365650..78d5c95daba89 100644 --- a/clients/client-account/src/pagination/ListRegionsPaginator.ts +++ b/clients/client-account/src/pagination/ListRegionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AccountClient } from "../AccountClient"; import { ListRegionsCommand, ListRegionsCommandInput, ListRegionsCommandOutput } from "../commands/ListRegionsCommand"; diff --git a/clients/client-account/src/runtimeConfig.browser.ts b/clients/client-account/src/runtimeConfig.browser.ts index ff3dcaaea7663..0e707924c0951 100644 --- a/clients/client-account/src/runtimeConfig.browser.ts +++ b/clients/client-account/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AccountClientConfig } from "./AccountClient"; + +import type { AccountClientConfig } from "./AccountClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-account/src/runtimeConfig.native.ts b/clients/client-account/src/runtimeConfig.native.ts index 2db73465eaae9..072d7444ae3f2 100644 --- a/clients/client-account/src/runtimeConfig.native.ts +++ b/clients/client-account/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AccountClientConfig } from "./AccountClient"; +import type { AccountClientConfig } from "./AccountClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-account/src/runtimeConfig.shared.ts b/clients/client-account/src/runtimeConfig.shared.ts index fc0d1f4adb3c2..daf18b4118558 100644 --- a/clients/client-account/src/runtimeConfig.shared.ts +++ b/clients/client-account/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AccountClientConfig } from "./AccountClient"; +import type { AccountClientConfig } from "./AccountClient"; import { defaultAccountHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-account/src/runtimeConfig.ts b/clients/client-account/src/runtimeConfig.ts index 5e3ba2c2b1490..f0dcc37846f24 100644 --- a/clients/client-account/src/runtimeConfig.ts +++ b/clients/client-account/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AccountClientConfig } from "./AccountClient"; + +import type { AccountClientConfig } from "./AccountClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-account/src/runtimeExtensions.ts b/clients/client-account/src/runtimeExtensions.ts index da7acb0e07960..9b74fd01d4e8c 100644 --- a/clients/client-account/src/runtimeExtensions.ts +++ b/clients/client-account/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AccountExtensionConfiguration } from "./extensionConfiguration"; +import type { AccountExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-account/src/schemas/schemas_0.ts b/clients/client-account/src/schemas/schemas_0.ts index be2a34890ac46..823eb86d4fe29 100644 --- a/clients/client-account/src/schemas/schemas_0.ts +++ b/clients/client-account/src/schemas/schemas_0.ts @@ -95,7 +95,7 @@ const n0 = "com.amazonaws.account"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-acm-pca/package.json b/clients/client-acm-pca/package.json index ba6a947972164..17edd17ee6d77 100644 --- a/clients/client-acm-pca/package.json +++ b/clients/client-acm-pca/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-acm-pca/src/ACMPCA.ts b/clients/client-acm-pca/src/ACMPCA.ts index 92ffae96cf401..50c0cf5f8ce13 100644 --- a/clients/client-acm-pca/src/ACMPCA.ts +++ b/clients/client-acm-pca/src/ACMPCA.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ACMPCAClient, ACMPCAClientConfig } from "./ACMPCAClient"; +import { ACMPCAClient } from "./ACMPCAClient"; import { CreateCertificateAuthorityAuditReportCommand, CreateCertificateAuthorityAuditReportCommandInput, diff --git a/clients/client-acm-pca/src/ACMPCAClient.ts b/clients/client-acm-pca/src/ACMPCAClient.ts index 3026d76ac93be..fc545c202be0a 100644 --- a/clients/client-acm-pca/src/ACMPCAClient.ts +++ b/clients/client-acm-pca/src/ACMPCAClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultACMPCAHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -126,7 +135,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-acm-pca/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-acm-pca/src/auth/httpAuthExtensionConfiguration.ts index 9499c82899da6..973fc07b4a951 100644 --- a/clients/client-acm-pca/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-acm-pca/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ACMPCAHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ACMPCAHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-acm-pca/src/auth/httpAuthSchemeProvider.ts b/clients/client-acm-pca/src/auth/httpAuthSchemeProvider.ts index 8890eb9384f29..a9a0f45bd843a 100644 --- a/clients/client-acm-pca/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-acm-pca/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ACMPCAClientConfig, ACMPCAClientResolvedConfig } from "../ACMPCAClient"; +import { type ACMPCAClientResolvedConfig, ACMPCAClientConfig } from "../ACMPCAClient"; /** * @internal diff --git a/clients/client-acm-pca/src/commands/CreateCertificateAuthorityAuditReportCommand.ts b/clients/client-acm-pca/src/commands/CreateCertificateAuthorityAuditReportCommand.ts index 0afc74c51a5aa..17f9e31cea31a 100644 --- a/clients/client-acm-pca/src/commands/CreateCertificateAuthorityAuditReportCommand.ts +++ b/clients/client-acm-pca/src/commands/CreateCertificateAuthorityAuditReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateCertificateAuthorityAuditReportRequest, CreateCertificateAuthorityAuditReportResponse, } from "../models/models_0"; diff --git a/clients/client-acm-pca/src/commands/CreateCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/CreateCertificateAuthorityCommand.ts index 6f98bbbbec490..0e657498b6890 100644 --- a/clients/client-acm-pca/src/commands/CreateCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/CreateCertificateAuthorityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCertificateAuthorityRequest, CreateCertificateAuthorityResponse } from "../models/models_0"; +import type { CreateCertificateAuthorityRequest, CreateCertificateAuthorityResponse } from "../models/models_0"; import { CreateCertificateAuthority } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/CreatePermissionCommand.ts b/clients/client-acm-pca/src/commands/CreatePermissionCommand.ts index c650ae31b3967..16bc907b5065d 100644 --- a/clients/client-acm-pca/src/commands/CreatePermissionCommand.ts +++ b/clients/client-acm-pca/src/commands/CreatePermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePermissionRequest } from "../models/models_0"; +import type { CreatePermissionRequest } from "../models/models_0"; import { CreatePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/DeleteCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/DeleteCertificateAuthorityCommand.ts index 00651c617a501..a82e544caa815 100644 --- a/clients/client-acm-pca/src/commands/DeleteCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/DeleteCertificateAuthorityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCertificateAuthorityRequest } from "../models/models_0"; +import type { DeleteCertificateAuthorityRequest } from "../models/models_0"; import { DeleteCertificateAuthority } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/DeletePermissionCommand.ts b/clients/client-acm-pca/src/commands/DeletePermissionCommand.ts index bf2bd36b1d2a6..f88a278808cf2 100644 --- a/clients/client-acm-pca/src/commands/DeletePermissionCommand.ts +++ b/clients/client-acm-pca/src/commands/DeletePermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePermissionRequest } from "../models/models_0"; +import type { DeletePermissionRequest } from "../models/models_0"; import { DeletePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/DeletePolicyCommand.ts b/clients/client-acm-pca/src/commands/DeletePolicyCommand.ts index a9bba15ba3e17..8fc5b1ea8f631 100644 --- a/clients/client-acm-pca/src/commands/DeletePolicyCommand.ts +++ b/clients/client-acm-pca/src/commands/DeletePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePolicyRequest } from "../models/models_0"; +import type { DeletePolicyRequest } from "../models/models_0"; import { DeletePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityAuditReportCommand.ts b/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityAuditReportCommand.ts index 16082cca3d3de..5b384fda9ddf3 100644 --- a/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityAuditReportCommand.ts +++ b/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityAuditReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeCertificateAuthorityAuditReportRequest, DescribeCertificateAuthorityAuditReportResponse, } from "../models/models_0"; diff --git a/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityCommand.ts index 630e981aa7916..fa4dcc1be5f02 100644 --- a/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/DescribeCertificateAuthorityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCertificateAuthorityRequest, DescribeCertificateAuthorityResponse } from "../models/models_0"; +import type { DescribeCertificateAuthorityRequest, DescribeCertificateAuthorityResponse } from "../models/models_0"; import { DescribeCertificateAuthority } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/GetCertificateAuthorityCertificateCommand.ts b/clients/client-acm-pca/src/commands/GetCertificateAuthorityCertificateCommand.ts index e2591b9ff8a4e..d97b5f6dcc267 100644 --- a/clients/client-acm-pca/src/commands/GetCertificateAuthorityCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/GetCertificateAuthorityCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCertificateAuthorityCertificateRequest, GetCertificateAuthorityCertificateResponse, } from "../models/models_0"; diff --git a/clients/client-acm-pca/src/commands/GetCertificateAuthorityCsrCommand.ts b/clients/client-acm-pca/src/commands/GetCertificateAuthorityCsrCommand.ts index 71082cad46c76..f718a6f54019a 100644 --- a/clients/client-acm-pca/src/commands/GetCertificateAuthorityCsrCommand.ts +++ b/clients/client-acm-pca/src/commands/GetCertificateAuthorityCsrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCertificateAuthorityCsrRequest, GetCertificateAuthorityCsrResponse } from "../models/models_0"; +import type { GetCertificateAuthorityCsrRequest, GetCertificateAuthorityCsrResponse } from "../models/models_0"; import { GetCertificateAuthorityCsr } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/GetCertificateCommand.ts b/clients/client-acm-pca/src/commands/GetCertificateCommand.ts index 31f09b737d1e2..d29fe497490eb 100644 --- a/clients/client-acm-pca/src/commands/GetCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/GetCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCertificateRequest, GetCertificateResponse } from "../models/models_0"; +import type { GetCertificateRequest, GetCertificateResponse } from "../models/models_0"; import { GetCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/GetPolicyCommand.ts b/clients/client-acm-pca/src/commands/GetPolicyCommand.ts index 77a3287751d32..aa675792fd677 100644 --- a/clients/client-acm-pca/src/commands/GetPolicyCommand.ts +++ b/clients/client-acm-pca/src/commands/GetPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; +import type { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; import { GetPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/ImportCertificateAuthorityCertificateCommand.ts b/clients/client-acm-pca/src/commands/ImportCertificateAuthorityCertificateCommand.ts index dc7fe519dfecc..6e418567a7b6c 100644 --- a/clients/client-acm-pca/src/commands/ImportCertificateAuthorityCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/ImportCertificateAuthorityCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportCertificateAuthorityCertificateRequest } from "../models/models_0"; +import type { ImportCertificateAuthorityCertificateRequest } from "../models/models_0"; import { ImportCertificateAuthorityCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/IssueCertificateCommand.ts b/clients/client-acm-pca/src/commands/IssueCertificateCommand.ts index e955fc71dd88d..5878a52190ec7 100644 --- a/clients/client-acm-pca/src/commands/IssueCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/IssueCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IssueCertificateRequest, IssueCertificateResponse } from "../models/models_0"; +import type { IssueCertificateRequest, IssueCertificateResponse } from "../models/models_0"; import { IssueCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/ListCertificateAuthoritiesCommand.ts b/clients/client-acm-pca/src/commands/ListCertificateAuthoritiesCommand.ts index 10477401ac1d8..f2f3e741455ff 100644 --- a/clients/client-acm-pca/src/commands/ListCertificateAuthoritiesCommand.ts +++ b/clients/client-acm-pca/src/commands/ListCertificateAuthoritiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCertificateAuthoritiesRequest, ListCertificateAuthoritiesResponse } from "../models/models_0"; +import type { ListCertificateAuthoritiesRequest, ListCertificateAuthoritiesResponse } from "../models/models_0"; import { ListCertificateAuthorities } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/ListPermissionsCommand.ts b/clients/client-acm-pca/src/commands/ListPermissionsCommand.ts index 3b8bfd0baf5f2..c6793a90445de 100644 --- a/clients/client-acm-pca/src/commands/ListPermissionsCommand.ts +++ b/clients/client-acm-pca/src/commands/ListPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0"; +import type { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0"; import { ListPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/ListTagsCommand.ts b/clients/client-acm-pca/src/commands/ListTagsCommand.ts index cff1b56e1e98d..d7a029b76f473 100644 --- a/clients/client-acm-pca/src/commands/ListTagsCommand.ts +++ b/clients/client-acm-pca/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsRequest, ListTagsResponse } from "../models/models_0"; +import type { ListTagsRequest, ListTagsResponse } from "../models/models_0"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/PutPolicyCommand.ts b/clients/client-acm-pca/src/commands/PutPolicyCommand.ts index ea4bc68aa1f42..d40a40558778b 100644 --- a/clients/client-acm-pca/src/commands/PutPolicyCommand.ts +++ b/clients/client-acm-pca/src/commands/PutPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPolicyRequest } from "../models/models_0"; +import type { PutPolicyRequest } from "../models/models_0"; import { PutPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/RestoreCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/RestoreCertificateAuthorityCommand.ts index 5637db3f7827b..7bc295b43320a 100644 --- a/clients/client-acm-pca/src/commands/RestoreCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/RestoreCertificateAuthorityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreCertificateAuthorityRequest } from "../models/models_0"; +import type { RestoreCertificateAuthorityRequest } from "../models/models_0"; import { RestoreCertificateAuthority } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/RevokeCertificateCommand.ts b/clients/client-acm-pca/src/commands/RevokeCertificateCommand.ts index 5409ff9ccf5a8..a9b58e846de40 100644 --- a/clients/client-acm-pca/src/commands/RevokeCertificateCommand.ts +++ b/clients/client-acm-pca/src/commands/RevokeCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeCertificateRequest } from "../models/models_0"; +import type { RevokeCertificateRequest } from "../models/models_0"; import { RevokeCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/TagCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/TagCertificateAuthorityCommand.ts index eebff44499d22..3f256ee321fef 100644 --- a/clients/client-acm-pca/src/commands/TagCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/TagCertificateAuthorityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagCertificateAuthorityRequest } from "../models/models_0"; +import type { TagCertificateAuthorityRequest } from "../models/models_0"; import { TagCertificateAuthority } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/UntagCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/UntagCertificateAuthorityCommand.ts index c34ba171806d4..cd5ea471798f2 100644 --- a/clients/client-acm-pca/src/commands/UntagCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/UntagCertificateAuthorityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagCertificateAuthorityRequest } from "../models/models_0"; +import type { UntagCertificateAuthorityRequest } from "../models/models_0"; import { UntagCertificateAuthority } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/commands/UpdateCertificateAuthorityCommand.ts b/clients/client-acm-pca/src/commands/UpdateCertificateAuthorityCommand.ts index d6fa1bb24347b..86e2930fc88f3 100644 --- a/clients/client-acm-pca/src/commands/UpdateCertificateAuthorityCommand.ts +++ b/clients/client-acm-pca/src/commands/UpdateCertificateAuthorityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; +import type { ACMPCAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMPCAClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCertificateAuthorityRequest } from "../models/models_0"; +import type { UpdateCertificateAuthorityRequest } from "../models/models_0"; import { UpdateCertificateAuthority } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm-pca/src/endpoint/EndpointParameters.ts b/clients/client-acm-pca/src/endpoint/EndpointParameters.ts index bb785d7aea58c..1417e9bab4600 100644 --- a/clients/client-acm-pca/src/endpoint/EndpointParameters.ts +++ b/clients/client-acm-pca/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-acm-pca/src/endpoint/endpointResolver.ts b/clients/client-acm-pca/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-acm-pca/src/endpoint/endpointResolver.ts +++ b/clients/client-acm-pca/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-acm-pca/src/extensionConfiguration.ts b/clients/client-acm-pca/src/extensionConfiguration.ts index 1733a1e4efbaf..28c8d1e2f5505 100644 --- a/clients/client-acm-pca/src/extensionConfiguration.ts +++ b/clients/client-acm-pca/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-acm-pca/src/models/ACMPCAServiceException.ts b/clients/client-acm-pca/src/models/ACMPCAServiceException.ts index b9761969fcae0..fd43bd9d5c488 100644 --- a/clients/client-acm-pca/src/models/ACMPCAServiceException.ts +++ b/clients/client-acm-pca/src/models/ACMPCAServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-acm-pca/src/models/errors.ts b/clients/client-acm-pca/src/models/errors.ts index ec8138625d32e..d655fe44680c9 100644 --- a/clients/client-acm-pca/src/models/errors.ts +++ b/clients/client-acm-pca/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ACMPCAServiceException as __BaseException } from "./ACMPCAServiceException"; diff --git a/clients/client-acm-pca/src/pagination/Interfaces.ts b/clients/client-acm-pca/src/pagination/Interfaces.ts index add24c0cb1c0e..df7f0bad29a2c 100644 --- a/clients/client-acm-pca/src/pagination/Interfaces.ts +++ b/clients/client-acm-pca/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ACMPCAClient } from "../ACMPCAClient"; diff --git a/clients/client-acm-pca/src/pagination/ListCertificateAuthoritiesPaginator.ts b/clients/client-acm-pca/src/pagination/ListCertificateAuthoritiesPaginator.ts index adf309f030e2f..ff11f171a26bd 100644 --- a/clients/client-acm-pca/src/pagination/ListCertificateAuthoritiesPaginator.ts +++ b/clients/client-acm-pca/src/pagination/ListCertificateAuthoritiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ACMPCAClient } from "../ACMPCAClient"; import { diff --git a/clients/client-acm-pca/src/pagination/ListPermissionsPaginator.ts b/clients/client-acm-pca/src/pagination/ListPermissionsPaginator.ts index 0f1ae10140873..3b5d8b5f1cda6 100644 --- a/clients/client-acm-pca/src/pagination/ListPermissionsPaginator.ts +++ b/clients/client-acm-pca/src/pagination/ListPermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ACMPCAClient } from "../ACMPCAClient"; import { diff --git a/clients/client-acm-pca/src/pagination/ListTagsPaginator.ts b/clients/client-acm-pca/src/pagination/ListTagsPaginator.ts index 3dab72fde38fb..11f45f56ecbe1 100644 --- a/clients/client-acm-pca/src/pagination/ListTagsPaginator.ts +++ b/clients/client-acm-pca/src/pagination/ListTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ACMPCAClient } from "../ACMPCAClient"; import { ListTagsCommand, ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand"; diff --git a/clients/client-acm-pca/src/runtimeConfig.browser.ts b/clients/client-acm-pca/src/runtimeConfig.browser.ts index ba3f5a4499cf9..33e485de1a2f4 100644 --- a/clients/client-acm-pca/src/runtimeConfig.browser.ts +++ b/clients/client-acm-pca/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ACMPCAClientConfig } from "./ACMPCAClient"; + +import type { ACMPCAClientConfig } from "./ACMPCAClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-acm-pca/src/runtimeConfig.native.ts b/clients/client-acm-pca/src/runtimeConfig.native.ts index bca8ddad61e54..dbc1233d8b65a 100644 --- a/clients/client-acm-pca/src/runtimeConfig.native.ts +++ b/clients/client-acm-pca/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ACMPCAClientConfig } from "./ACMPCAClient"; +import type { ACMPCAClientConfig } from "./ACMPCAClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-acm-pca/src/runtimeConfig.shared.ts b/clients/client-acm-pca/src/runtimeConfig.shared.ts index c25e40ffe1e7d..9a6f3fb484435 100644 --- a/clients/client-acm-pca/src/runtimeConfig.shared.ts +++ b/clients/client-acm-pca/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ACMPCAClientConfig } from "./ACMPCAClient"; +import type { ACMPCAClientConfig } from "./ACMPCAClient"; import { defaultACMPCAHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-acm-pca/src/runtimeConfig.ts b/clients/client-acm-pca/src/runtimeConfig.ts index 422b531d1c267..23081204a19f6 100644 --- a/clients/client-acm-pca/src/runtimeConfig.ts +++ b/clients/client-acm-pca/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ACMPCAClientConfig } from "./ACMPCAClient"; + +import type { ACMPCAClientConfig } from "./ACMPCAClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-acm-pca/src/runtimeExtensions.ts b/clients/client-acm-pca/src/runtimeExtensions.ts index 14a43334dab0a..d45f3af33c55f 100644 --- a/clients/client-acm-pca/src/runtimeExtensions.ts +++ b/clients/client-acm-pca/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ACMPCAExtensionConfiguration } from "./extensionConfiguration"; +import type { ACMPCAExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-acm-pca/src/schemas/schemas_0.ts b/clients/client-acm-pca/src/schemas/schemas_0.ts index fcfc292bfb849..072a564acc58a 100644 --- a/clients/client-acm-pca/src/schemas/schemas_0.ts +++ b/clients/client-acm-pca/src/schemas/schemas_0.ts @@ -219,7 +219,7 @@ const n0 = "com.amazonaws.acmpca"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ACMPCAServiceException as __ACMPCAServiceException } from "../models/ACMPCAServiceException"; import { diff --git a/clients/client-acm/package.json b/clients/client-acm/package.json index 9e5808b530406..4caa8d01b9982 100644 --- a/clients/client-acm/package.json +++ b/clients/client-acm/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-acm/src/ACM.ts b/clients/client-acm/src/ACM.ts index f4c3df8d44810..b25599f1adba3 100644 --- a/clients/client-acm/src/ACM.ts +++ b/clients/client-acm/src/ACM.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ACMClient, ACMClientConfig } from "./ACMClient"; +import { ACMClient } from "./ACMClient"; import { AddTagsToCertificateCommand, AddTagsToCertificateCommandInput, diff --git a/clients/client-acm/src/ACMClient.ts b/clients/client-acm/src/ACMClient.ts index 0220799fcb424..1e0c9644230c6 100644 --- a/clients/client-acm/src/ACMClient.ts +++ b/clients/client-acm/src/ACMClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultACMHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -104,7 +113,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-acm/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-acm/src/auth/httpAuthExtensionConfiguration.ts index 258e677de5203..96853792a9d70 100644 --- a/clients/client-acm/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-acm/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ACMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ACMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-acm/src/auth/httpAuthSchemeProvider.ts b/clients/client-acm/src/auth/httpAuthSchemeProvider.ts index 0861a8900b24f..2a62c12ebabe4 100644 --- a/clients/client-acm/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-acm/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ACMClientConfig, ACMClientResolvedConfig } from "../ACMClient"; +import { type ACMClientResolvedConfig, ACMClientConfig } from "../ACMClient"; /** * @internal diff --git a/clients/client-acm/src/commands/AddTagsToCertificateCommand.ts b/clients/client-acm/src/commands/AddTagsToCertificateCommand.ts index b7db4bdf1e0d3..70049c8fddafd 100644 --- a/clients/client-acm/src/commands/AddTagsToCertificateCommand.ts +++ b/clients/client-acm/src/commands/AddTagsToCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToCertificateRequest } from "../models/models_0"; +import type { AddTagsToCertificateRequest } from "../models/models_0"; import { AddTagsToCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/DeleteCertificateCommand.ts b/clients/client-acm/src/commands/DeleteCertificateCommand.ts index d4ffe2830590b..719a18b697c0d 100644 --- a/clients/client-acm/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-acm/src/commands/DeleteCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCertificateRequest } from "../models/models_0"; +import type { DeleteCertificateRequest } from "../models/models_0"; import { DeleteCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/DescribeCertificateCommand.ts b/clients/client-acm/src/commands/DescribeCertificateCommand.ts index 66553ebe7a24f..2a3d8ca1c13cc 100644 --- a/clients/client-acm/src/commands/DescribeCertificateCommand.ts +++ b/clients/client-acm/src/commands/DescribeCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCertificateRequest, DescribeCertificateResponse } from "../models/models_0"; +import type { DescribeCertificateRequest, DescribeCertificateResponse } from "../models/models_0"; import { DescribeCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/ExportCertificateCommand.ts b/clients/client-acm/src/commands/ExportCertificateCommand.ts index 82c0e4f968e01..1bb096b6f6d73 100644 --- a/clients/client-acm/src/commands/ExportCertificateCommand.ts +++ b/clients/client-acm/src/commands/ExportCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportCertificateRequest, ExportCertificateResponse } from "../models/models_0"; +import type { ExportCertificateRequest, ExportCertificateResponse } from "../models/models_0"; import { ExportCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/GetAccountConfigurationCommand.ts b/clients/client-acm/src/commands/GetAccountConfigurationCommand.ts index c3f740d09d0f2..69ab865da9f10 100644 --- a/clients/client-acm/src/commands/GetAccountConfigurationCommand.ts +++ b/clients/client-acm/src/commands/GetAccountConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountConfigurationResponse } from "../models/models_0"; +import type { GetAccountConfigurationResponse } from "../models/models_0"; import { GetAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/GetCertificateCommand.ts b/clients/client-acm/src/commands/GetCertificateCommand.ts index 59a0f27ca8372..bc74161369080 100644 --- a/clients/client-acm/src/commands/GetCertificateCommand.ts +++ b/clients/client-acm/src/commands/GetCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCertificateRequest, GetCertificateResponse } from "../models/models_0"; +import type { GetCertificateRequest, GetCertificateResponse } from "../models/models_0"; import { GetCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/ImportCertificateCommand.ts b/clients/client-acm/src/commands/ImportCertificateCommand.ts index 49b43b0ff0b9c..83573568aed24 100644 --- a/clients/client-acm/src/commands/ImportCertificateCommand.ts +++ b/clients/client-acm/src/commands/ImportCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportCertificateRequest, ImportCertificateResponse } from "../models/models_0"; +import type { ImportCertificateRequest, ImportCertificateResponse } from "../models/models_0"; import { ImportCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/ListCertificatesCommand.ts b/clients/client-acm/src/commands/ListCertificatesCommand.ts index 57c0050c2c331..5b5b3009ee0ab 100644 --- a/clients/client-acm/src/commands/ListCertificatesCommand.ts +++ b/clients/client-acm/src/commands/ListCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_0"; +import type { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_0"; import { ListCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/ListTagsForCertificateCommand.ts b/clients/client-acm/src/commands/ListTagsForCertificateCommand.ts index 78e5cbeb541a2..f17ba5219c06a 100644 --- a/clients/client-acm/src/commands/ListTagsForCertificateCommand.ts +++ b/clients/client-acm/src/commands/ListTagsForCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForCertificateRequest, ListTagsForCertificateResponse } from "../models/models_0"; +import type { ListTagsForCertificateRequest, ListTagsForCertificateResponse } from "../models/models_0"; import { ListTagsForCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/PutAccountConfigurationCommand.ts b/clients/client-acm/src/commands/PutAccountConfigurationCommand.ts index f4a15952c2abd..2b7c1157abdcc 100644 --- a/clients/client-acm/src/commands/PutAccountConfigurationCommand.ts +++ b/clients/client-acm/src/commands/PutAccountConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountConfigurationRequest } from "../models/models_0"; +import type { PutAccountConfigurationRequest } from "../models/models_0"; import { PutAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/RemoveTagsFromCertificateCommand.ts b/clients/client-acm/src/commands/RemoveTagsFromCertificateCommand.ts index 5ab2941da7de6..f109e1b75c259 100644 --- a/clients/client-acm/src/commands/RemoveTagsFromCertificateCommand.ts +++ b/clients/client-acm/src/commands/RemoveTagsFromCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromCertificateRequest } from "../models/models_0"; +import type { RemoveTagsFromCertificateRequest } from "../models/models_0"; import { RemoveTagsFromCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/RenewCertificateCommand.ts b/clients/client-acm/src/commands/RenewCertificateCommand.ts index 18d39d460efd1..a29fdb91ca4f7 100644 --- a/clients/client-acm/src/commands/RenewCertificateCommand.ts +++ b/clients/client-acm/src/commands/RenewCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RenewCertificateRequest } from "../models/models_0"; +import type { RenewCertificateRequest } from "../models/models_0"; import { RenewCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/RequestCertificateCommand.ts b/clients/client-acm/src/commands/RequestCertificateCommand.ts index fa9ee82641db0..a751bbb0fab82 100644 --- a/clients/client-acm/src/commands/RequestCertificateCommand.ts +++ b/clients/client-acm/src/commands/RequestCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RequestCertificateRequest, RequestCertificateResponse } from "../models/models_0"; +import type { RequestCertificateRequest, RequestCertificateResponse } from "../models/models_0"; import { RequestCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/ResendValidationEmailCommand.ts b/clients/client-acm/src/commands/ResendValidationEmailCommand.ts index 25464da836080..76e16d1b5e6d3 100644 --- a/clients/client-acm/src/commands/ResendValidationEmailCommand.ts +++ b/clients/client-acm/src/commands/ResendValidationEmailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResendValidationEmailRequest } from "../models/models_0"; +import type { ResendValidationEmailRequest } from "../models/models_0"; import { ResendValidationEmail } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/RevokeCertificateCommand.ts b/clients/client-acm/src/commands/RevokeCertificateCommand.ts index 19413eccf6233..87e70f66e81e5 100644 --- a/clients/client-acm/src/commands/RevokeCertificateCommand.ts +++ b/clients/client-acm/src/commands/RevokeCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeCertificateRequest, RevokeCertificateResponse } from "../models/models_0"; +import type { RevokeCertificateRequest, RevokeCertificateResponse } from "../models/models_0"; import { RevokeCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/commands/UpdateCertificateOptionsCommand.ts b/clients/client-acm/src/commands/UpdateCertificateOptionsCommand.ts index 49c685062e24a..57d11ab8c2596 100644 --- a/clients/client-acm/src/commands/UpdateCertificateOptionsCommand.ts +++ b/clients/client-acm/src/commands/UpdateCertificateOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; +import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCertificateOptionsRequest } from "../models/models_0"; +import type { UpdateCertificateOptionsRequest } from "../models/models_0"; import { UpdateCertificateOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-acm/src/endpoint/EndpointParameters.ts b/clients/client-acm/src/endpoint/EndpointParameters.ts index f38fe85bbc831..13cbfc2a41a11 100644 --- a/clients/client-acm/src/endpoint/EndpointParameters.ts +++ b/clients/client-acm/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-acm/src/endpoint/endpointResolver.ts b/clients/client-acm/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-acm/src/endpoint/endpointResolver.ts +++ b/clients/client-acm/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-acm/src/extensionConfiguration.ts b/clients/client-acm/src/extensionConfiguration.ts index 7cc6db259956f..183c3f8bcac59 100644 --- a/clients/client-acm/src/extensionConfiguration.ts +++ b/clients/client-acm/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-acm/src/models/ACMServiceException.ts b/clients/client-acm/src/models/ACMServiceException.ts index 80874d498d2ec..cee8c8a0bd2cc 100644 --- a/clients/client-acm/src/models/ACMServiceException.ts +++ b/clients/client-acm/src/models/ACMServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-acm/src/models/errors.ts b/clients/client-acm/src/models/errors.ts index 5dd772a8c2849..adf4f677f21f2 100644 --- a/clients/client-acm/src/models/errors.ts +++ b/clients/client-acm/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ACMServiceException as __BaseException } from "./ACMServiceException"; diff --git a/clients/client-acm/src/pagination/Interfaces.ts b/clients/client-acm/src/pagination/Interfaces.ts index 6ea6e7b80f1d1..98c48b993fe26 100644 --- a/clients/client-acm/src/pagination/Interfaces.ts +++ b/clients/client-acm/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ACMClient } from "../ACMClient"; diff --git a/clients/client-acm/src/pagination/ListCertificatesPaginator.ts b/clients/client-acm/src/pagination/ListCertificatesPaginator.ts index c76466c4aa782..da8838bbc682d 100644 --- a/clients/client-acm/src/pagination/ListCertificatesPaginator.ts +++ b/clients/client-acm/src/pagination/ListCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ACMClient } from "../ACMClient"; import { diff --git a/clients/client-acm/src/runtimeConfig.browser.ts b/clients/client-acm/src/runtimeConfig.browser.ts index cc601724c6366..447b215211bad 100644 --- a/clients/client-acm/src/runtimeConfig.browser.ts +++ b/clients/client-acm/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ACMClientConfig } from "./ACMClient"; + +import type { ACMClientConfig } from "./ACMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-acm/src/runtimeConfig.native.ts b/clients/client-acm/src/runtimeConfig.native.ts index 55bd5e1710a36..45b671f69f799 100644 --- a/clients/client-acm/src/runtimeConfig.native.ts +++ b/clients/client-acm/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ACMClientConfig } from "./ACMClient"; +import type { ACMClientConfig } from "./ACMClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-acm/src/runtimeConfig.shared.ts b/clients/client-acm/src/runtimeConfig.shared.ts index 2cf2c7d50512b..36565d88e61da 100644 --- a/clients/client-acm/src/runtimeConfig.shared.ts +++ b/clients/client-acm/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ACMClientConfig } from "./ACMClient"; +import type { ACMClientConfig } from "./ACMClient"; import { defaultACMHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-acm/src/runtimeConfig.ts b/clients/client-acm/src/runtimeConfig.ts index 84669a6ed9dc9..ca60371b45db1 100644 --- a/clients/client-acm/src/runtimeConfig.ts +++ b/clients/client-acm/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ACMClientConfig } from "./ACMClient"; + +import type { ACMClientConfig } from "./ACMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-acm/src/runtimeExtensions.ts b/clients/client-acm/src/runtimeExtensions.ts index 509dcc76d3c72..570092ab28f4f 100644 --- a/clients/client-acm/src/runtimeExtensions.ts +++ b/clients/client-acm/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ACMExtensionConfiguration } from "./extensionConfiguration"; +import type { ACMExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-acm/src/schemas/schemas_0.ts b/clients/client-acm/src/schemas/schemas_0.ts index f1a231b4e2a78..230a163fbf86d 100644 --- a/clients/client-acm/src/schemas/schemas_0.ts +++ b/clients/client-acm/src/schemas/schemas_0.ts @@ -152,7 +152,7 @@ const n0 = "com.amazonaws.acm"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-aiops/package.json b/clients/client-aiops/package.json index 9a5686bc45317..983e657c0798a 100644 --- a/clients/client-aiops/package.json +++ b/clients/client-aiops/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-aiops/src/AIOps.ts b/clients/client-aiops/src/AIOps.ts index 4dea1644f1cd0..65cf24d8976af 100644 --- a/clients/client-aiops/src/AIOps.ts +++ b/clients/client-aiops/src/AIOps.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AIOpsClient, AIOpsClientConfig } from "./AIOpsClient"; +import { AIOpsClient } from "./AIOpsClient"; import { CreateInvestigationGroupCommand, CreateInvestigationGroupCommandInput, diff --git a/clients/client-aiops/src/AIOpsClient.ts b/clients/client-aiops/src/AIOpsClient.ts index 9a065f80d2b7f..5a0e444c94970 100644 --- a/clients/client-aiops/src/AIOpsClient.ts +++ b/clients/client-aiops/src/AIOpsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAIOpsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -102,7 +111,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-aiops/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-aiops/src/auth/httpAuthExtensionConfiguration.ts index a31cd1de6eaec..bfe004ae72390 100644 --- a/clients/client-aiops/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-aiops/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AIOpsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AIOpsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-aiops/src/auth/httpAuthSchemeProvider.ts b/clients/client-aiops/src/auth/httpAuthSchemeProvider.ts index 2106dba758c9e..0ba53ab8ee531 100644 --- a/clients/client-aiops/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-aiops/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AIOpsClientConfig, AIOpsClientResolvedConfig } from "../AIOpsClient"; +import { type AIOpsClientResolvedConfig, AIOpsClientConfig } from "../AIOpsClient"; /** * @internal diff --git a/clients/client-aiops/src/commands/CreateInvestigationGroupCommand.ts b/clients/client-aiops/src/commands/CreateInvestigationGroupCommand.ts index e3261b62a5ebd..b9c7f3421fae0 100644 --- a/clients/client-aiops/src/commands/CreateInvestigationGroupCommand.ts +++ b/clients/client-aiops/src/commands/CreateInvestigationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInvestigationGroupInput, CreateInvestigationGroupOutput } from "../models/models_0"; +import type { CreateInvestigationGroupInput, CreateInvestigationGroupOutput } from "../models/models_0"; import { CreateInvestigationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/DeleteInvestigationGroupCommand.ts b/clients/client-aiops/src/commands/DeleteInvestigationGroupCommand.ts index 7e6989d18a471..2bb52f8062b7c 100644 --- a/clients/client-aiops/src/commands/DeleteInvestigationGroupCommand.ts +++ b/clients/client-aiops/src/commands/DeleteInvestigationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInvestigationGroupRequest } from "../models/models_0"; +import type { DeleteInvestigationGroupRequest } from "../models/models_0"; import { DeleteInvestigationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/DeleteInvestigationGroupPolicyCommand.ts b/clients/client-aiops/src/commands/DeleteInvestigationGroupPolicyCommand.ts index 880aba484b37c..dd0b3ef3398b2 100644 --- a/clients/client-aiops/src/commands/DeleteInvestigationGroupPolicyCommand.ts +++ b/clients/client-aiops/src/commands/DeleteInvestigationGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInvestigationGroupPolicyOutput, DeleteInvestigationGroupPolicyRequest } from "../models/models_0"; +import type { DeleteInvestigationGroupPolicyOutput, DeleteInvestigationGroupPolicyRequest } from "../models/models_0"; import { DeleteInvestigationGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/GetInvestigationGroupCommand.ts b/clients/client-aiops/src/commands/GetInvestigationGroupCommand.ts index 59364598eb5e1..a9ce833fb6b39 100644 --- a/clients/client-aiops/src/commands/GetInvestigationGroupCommand.ts +++ b/clients/client-aiops/src/commands/GetInvestigationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInvestigationGroupRequest, GetInvestigationGroupResponse } from "../models/models_0"; +import type { GetInvestigationGroupRequest, GetInvestigationGroupResponse } from "../models/models_0"; import { GetInvestigationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/GetInvestigationGroupPolicyCommand.ts b/clients/client-aiops/src/commands/GetInvestigationGroupPolicyCommand.ts index aa29613cfe6b9..902c4071f7ce7 100644 --- a/clients/client-aiops/src/commands/GetInvestigationGroupPolicyCommand.ts +++ b/clients/client-aiops/src/commands/GetInvestigationGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInvestigationGroupPolicyRequest, GetInvestigationGroupPolicyResponse } from "../models/models_0"; +import type { GetInvestigationGroupPolicyRequest, GetInvestigationGroupPolicyResponse } from "../models/models_0"; import { GetInvestigationGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/ListInvestigationGroupsCommand.ts b/clients/client-aiops/src/commands/ListInvestigationGroupsCommand.ts index e8e79f48e37c9..bfffdf83f1ad1 100644 --- a/clients/client-aiops/src/commands/ListInvestigationGroupsCommand.ts +++ b/clients/client-aiops/src/commands/ListInvestigationGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInvestigationGroupsInput, ListInvestigationGroupsOutput } from "../models/models_0"; +import type { ListInvestigationGroupsInput, ListInvestigationGroupsOutput } from "../models/models_0"; import { ListInvestigationGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/ListTagsForResourceCommand.ts b/clients/client-aiops/src/commands/ListTagsForResourceCommand.ts index 2c0ebaf87f769..5e5a9e9b8ca3d 100644 --- a/clients/client-aiops/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-aiops/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceOutput, ListTagsForResourceRequest } from "../models/models_0"; +import type { ListTagsForResourceOutput, ListTagsForResourceRequest } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/PutInvestigationGroupPolicyCommand.ts b/clients/client-aiops/src/commands/PutInvestigationGroupPolicyCommand.ts index 0806850b82aca..4284d2e8aa090 100644 --- a/clients/client-aiops/src/commands/PutInvestigationGroupPolicyCommand.ts +++ b/clients/client-aiops/src/commands/PutInvestigationGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutInvestigationGroupPolicyRequest, PutInvestigationGroupPolicyResponse } from "../models/models_0"; +import type { PutInvestigationGroupPolicyRequest, PutInvestigationGroupPolicyResponse } from "../models/models_0"; import { PutInvestigationGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/TagResourceCommand.ts b/clients/client-aiops/src/commands/TagResourceCommand.ts index d7369c26904b1..2e9f5709da74b 100644 --- a/clients/client-aiops/src/commands/TagResourceCommand.ts +++ b/clients/client-aiops/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/UntagResourceCommand.ts b/clients/client-aiops/src/commands/UntagResourceCommand.ts index 7f764a4fea229..15d710b02f813 100644 --- a/clients/client-aiops/src/commands/UntagResourceCommand.ts +++ b/clients/client-aiops/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/commands/UpdateInvestigationGroupCommand.ts b/clients/client-aiops/src/commands/UpdateInvestigationGroupCommand.ts index 099969ffd58e2..1a59fb7fcbaca 100644 --- a/clients/client-aiops/src/commands/UpdateInvestigationGroupCommand.ts +++ b/clients/client-aiops/src/commands/UpdateInvestigationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; +import type { AIOpsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AIOpsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInvestigationGroupOutput, UpdateInvestigationGroupRequest } from "../models/models_0"; +import type { UpdateInvestigationGroupOutput, UpdateInvestigationGroupRequest } from "../models/models_0"; import { UpdateInvestigationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-aiops/src/endpoint/EndpointParameters.ts b/clients/client-aiops/src/endpoint/EndpointParameters.ts index dbe482157315c..9f472caac9a4d 100644 --- a/clients/client-aiops/src/endpoint/EndpointParameters.ts +++ b/clients/client-aiops/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-aiops/src/endpoint/endpointResolver.ts b/clients/client-aiops/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-aiops/src/endpoint/endpointResolver.ts +++ b/clients/client-aiops/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-aiops/src/extensionConfiguration.ts b/clients/client-aiops/src/extensionConfiguration.ts index 8f05845d1c70c..62b2231707ec7 100644 --- a/clients/client-aiops/src/extensionConfiguration.ts +++ b/clients/client-aiops/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-aiops/src/models/AIOpsServiceException.ts b/clients/client-aiops/src/models/AIOpsServiceException.ts index 44e49461bb3e0..f8aa53ac9f578 100644 --- a/clients/client-aiops/src/models/AIOpsServiceException.ts +++ b/clients/client-aiops/src/models/AIOpsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-aiops/src/models/errors.ts b/clients/client-aiops/src/models/errors.ts index 4d25b928bedb3..73dc521fc7298 100644 --- a/clients/client-aiops/src/models/errors.ts +++ b/clients/client-aiops/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AIOpsServiceException as __BaseException } from "./AIOpsServiceException"; diff --git a/clients/client-aiops/src/pagination/Interfaces.ts b/clients/client-aiops/src/pagination/Interfaces.ts index 5215b9663062b..1478f8d6488a9 100644 --- a/clients/client-aiops/src/pagination/Interfaces.ts +++ b/clients/client-aiops/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AIOpsClient } from "../AIOpsClient"; diff --git a/clients/client-aiops/src/pagination/ListInvestigationGroupsPaginator.ts b/clients/client-aiops/src/pagination/ListInvestigationGroupsPaginator.ts index 211298d0b207f..c58f3e47577c8 100644 --- a/clients/client-aiops/src/pagination/ListInvestigationGroupsPaginator.ts +++ b/clients/client-aiops/src/pagination/ListInvestigationGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AIOpsClient } from "../AIOpsClient"; import { diff --git a/clients/client-aiops/src/runtimeConfig.browser.ts b/clients/client-aiops/src/runtimeConfig.browser.ts index 19c09eed951cc..4d8644cb5e868 100644 --- a/clients/client-aiops/src/runtimeConfig.browser.ts +++ b/clients/client-aiops/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AIOpsClientConfig } from "./AIOpsClient"; + +import type { AIOpsClientConfig } from "./AIOpsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-aiops/src/runtimeConfig.native.ts b/clients/client-aiops/src/runtimeConfig.native.ts index 1aee72d4c624d..272d4ba1d23f8 100644 --- a/clients/client-aiops/src/runtimeConfig.native.ts +++ b/clients/client-aiops/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AIOpsClientConfig } from "./AIOpsClient"; +import type { AIOpsClientConfig } from "./AIOpsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-aiops/src/runtimeConfig.shared.ts b/clients/client-aiops/src/runtimeConfig.shared.ts index 91a995e73331d..f7a7661563184 100644 --- a/clients/client-aiops/src/runtimeConfig.shared.ts +++ b/clients/client-aiops/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AIOpsClientConfig } from "./AIOpsClient"; +import type { AIOpsClientConfig } from "./AIOpsClient"; import { defaultAIOpsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-aiops/src/runtimeConfig.ts b/clients/client-aiops/src/runtimeConfig.ts index fc4df01384e0f..0da7ba2555f9e 100644 --- a/clients/client-aiops/src/runtimeConfig.ts +++ b/clients/client-aiops/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AIOpsClientConfig } from "./AIOpsClient"; + +import type { AIOpsClientConfig } from "./AIOpsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-aiops/src/runtimeExtensions.ts b/clients/client-aiops/src/runtimeExtensions.ts index ec6b96bdcf254..d291a0dcfe22c 100644 --- a/clients/client-aiops/src/runtimeExtensions.ts +++ b/clients/client-aiops/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AIOpsExtensionConfiguration } from "./extensionConfiguration"; +import type { AIOpsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-aiops/src/schemas/schemas_0.ts b/clients/client-aiops/src/schemas/schemas_0.ts index a1752101933f0..abfa336f24364 100644 --- a/clients/client-aiops/src/schemas/schemas_0.ts +++ b/clients/client-aiops/src/schemas/schemas_0.ts @@ -86,7 +86,7 @@ const n0 = "com.amazonaws.aiops"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-amp/package.json b/clients/client-amp/package.json index 20b6596f3db7f..659d4417c611a 100644 --- a/clients/client-amp/package.json +++ b/clients/client-amp/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-amp/src/Amp.ts b/clients/client-amp/src/Amp.ts index 09a05f0015179..0d39d2c4b8761 100644 --- a/clients/client-amp/src/Amp.ts +++ b/clients/client-amp/src/Amp.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AmpClient, AmpClientConfig } from "./AmpClient"; +import { AmpClient } from "./AmpClient"; import { CreateAlertManagerDefinitionCommand, CreateAlertManagerDefinitionCommandInput, diff --git a/clients/client-amp/src/AmpClient.ts b/clients/client-amp/src/AmpClient.ts index 9d55aaced402f..7fe7a8293f46a 100644 --- a/clients/client-amp/src/AmpClient.ts +++ b/clients/client-amp/src/AmpClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAmpHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -201,7 +210,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-amp/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-amp/src/auth/httpAuthExtensionConfiguration.ts index cd9512cbc8f44..40f3b214ba442 100644 --- a/clients/client-amp/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-amp/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AmpHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AmpHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-amp/src/auth/httpAuthSchemeProvider.ts b/clients/client-amp/src/auth/httpAuthSchemeProvider.ts index a9ef9e954f35e..6897f3ef69763 100644 --- a/clients/client-amp/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-amp/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AmpClientConfig, AmpClientResolvedConfig } from "../AmpClient"; +import { type AmpClientResolvedConfig, AmpClientConfig } from "../AmpClient"; /** * @internal diff --git a/clients/client-amp/src/commands/CreateAlertManagerDefinitionCommand.ts b/clients/client-amp/src/commands/CreateAlertManagerDefinitionCommand.ts index dfdba83715134..55149427ddcde 100644 --- a/clients/client-amp/src/commands/CreateAlertManagerDefinitionCommand.ts +++ b/clients/client-amp/src/commands/CreateAlertManagerDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAlertManagerDefinitionRequest, CreateAlertManagerDefinitionResponse } from "../models/models_0"; +import type { CreateAlertManagerDefinitionRequest, CreateAlertManagerDefinitionResponse } from "../models/models_0"; import { CreateAlertManagerDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/CreateAnomalyDetectorCommand.ts b/clients/client-amp/src/commands/CreateAnomalyDetectorCommand.ts index fa26356b4b46a..ce0a331d65719 100644 --- a/clients/client-amp/src/commands/CreateAnomalyDetectorCommand.ts +++ b/clients/client-amp/src/commands/CreateAnomalyDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnomalyDetectorRequest, CreateAnomalyDetectorResponse } from "../models/models_0"; +import type { CreateAnomalyDetectorRequest, CreateAnomalyDetectorResponse } from "../models/models_0"; import { CreateAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/CreateLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/CreateLoggingConfigurationCommand.ts index 78cb70e6a8208..3106c372bbfe1 100644 --- a/clients/client-amp/src/commands/CreateLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/CreateLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLoggingConfigurationRequest, CreateLoggingConfigurationResponse } from "../models/models_0"; +import type { CreateLoggingConfigurationRequest, CreateLoggingConfigurationResponse } from "../models/models_0"; import { CreateLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/CreateQueryLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/CreateQueryLoggingConfigurationCommand.ts index f3a3452a572d8..6708ad2d121b4 100644 --- a/clients/client-amp/src/commands/CreateQueryLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/CreateQueryLoggingConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQueryLoggingConfigurationRequest, CreateQueryLoggingConfigurationResponse } from "../models/models_0"; +import type { + CreateQueryLoggingConfigurationRequest, + CreateQueryLoggingConfigurationResponse, +} from "../models/models_0"; import { CreateQueryLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/CreateRuleGroupsNamespaceCommand.ts b/clients/client-amp/src/commands/CreateRuleGroupsNamespaceCommand.ts index 64b289fe02a53..f96cae01d7976 100644 --- a/clients/client-amp/src/commands/CreateRuleGroupsNamespaceCommand.ts +++ b/clients/client-amp/src/commands/CreateRuleGroupsNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleGroupsNamespaceRequest, CreateRuleGroupsNamespaceResponse } from "../models/models_0"; +import type { CreateRuleGroupsNamespaceRequest, CreateRuleGroupsNamespaceResponse } from "../models/models_0"; import { CreateRuleGroupsNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/CreateScraperCommand.ts b/clients/client-amp/src/commands/CreateScraperCommand.ts index 45b62b9287bdd..1f2f0a265bce6 100644 --- a/clients/client-amp/src/commands/CreateScraperCommand.ts +++ b/clients/client-amp/src/commands/CreateScraperCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScraperRequest, CreateScraperResponse } from "../models/models_0"; +import type { CreateScraperRequest, CreateScraperResponse } from "../models/models_0"; import { CreateScraper } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/CreateWorkspaceCommand.ts b/clients/client-amp/src/commands/CreateWorkspaceCommand.ts index dc1f5f743507d..e28f0e99df263 100644 --- a/clients/client-amp/src/commands/CreateWorkspaceCommand.ts +++ b/clients/client-amp/src/commands/CreateWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0"; +import type { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0"; import { CreateWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DeleteAlertManagerDefinitionCommand.ts b/clients/client-amp/src/commands/DeleteAlertManagerDefinitionCommand.ts index 4fd1f49cee0b9..0a6791a150286 100644 --- a/clients/client-amp/src/commands/DeleteAlertManagerDefinitionCommand.ts +++ b/clients/client-amp/src/commands/DeleteAlertManagerDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAlertManagerDefinitionRequest } from "../models/models_0"; +import type { DeleteAlertManagerDefinitionRequest } from "../models/models_0"; import { DeleteAlertManagerDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DeleteAnomalyDetectorCommand.ts b/clients/client-amp/src/commands/DeleteAnomalyDetectorCommand.ts index 562a8a3b80af4..2d51bc5eb151b 100644 --- a/clients/client-amp/src/commands/DeleteAnomalyDetectorCommand.ts +++ b/clients/client-amp/src/commands/DeleteAnomalyDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnomalyDetectorRequest } from "../models/models_0"; +import type { DeleteAnomalyDetectorRequest } from "../models/models_0"; import { DeleteAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/DeleteLoggingConfigurationCommand.ts index 894a8657c9673..dcf747b7e4453 100644 --- a/clients/client-amp/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/DeleteLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLoggingConfigurationRequest } from "../models/models_0"; +import type { DeleteLoggingConfigurationRequest } from "../models/models_0"; import { DeleteLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DeleteQueryLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/DeleteQueryLoggingConfigurationCommand.ts index 576b74791fcbd..fd2c868be33ec 100644 --- a/clients/client-amp/src/commands/DeleteQueryLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/DeleteQueryLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueryLoggingConfigurationRequest } from "../models/models_0"; +import type { DeleteQueryLoggingConfigurationRequest } from "../models/models_0"; import { DeleteQueryLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-amp/src/commands/DeleteResourcePolicyCommand.ts index 696852c21321d..6b525d399b14d 100644 --- a/clients/client-amp/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-amp/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest } from "../models/models_0"; +import type { DeleteResourcePolicyRequest } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DeleteRuleGroupsNamespaceCommand.ts b/clients/client-amp/src/commands/DeleteRuleGroupsNamespaceCommand.ts index 257824c5c4544..095b283d8d439 100644 --- a/clients/client-amp/src/commands/DeleteRuleGroupsNamespaceCommand.ts +++ b/clients/client-amp/src/commands/DeleteRuleGroupsNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleGroupsNamespaceRequest } from "../models/models_0"; +import type { DeleteRuleGroupsNamespaceRequest } from "../models/models_0"; import { DeleteRuleGroupsNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DeleteScraperCommand.ts b/clients/client-amp/src/commands/DeleteScraperCommand.ts index 3c399253ac1cc..c542ee345e331 100644 --- a/clients/client-amp/src/commands/DeleteScraperCommand.ts +++ b/clients/client-amp/src/commands/DeleteScraperCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScraperRequest, DeleteScraperResponse } from "../models/models_0"; +import type { DeleteScraperRequest, DeleteScraperResponse } from "../models/models_0"; import { DeleteScraper } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DeleteScraperLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/DeleteScraperLoggingConfigurationCommand.ts index d66a79aefd450..f1d24000c645b 100644 --- a/clients/client-amp/src/commands/DeleteScraperLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/DeleteScraperLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScraperLoggingConfigurationRequest } from "../models/models_0"; +import type { DeleteScraperLoggingConfigurationRequest } from "../models/models_0"; import { DeleteScraperLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DeleteWorkspaceCommand.ts b/clients/client-amp/src/commands/DeleteWorkspaceCommand.ts index 5b83102c004db..500d9d255d948 100644 --- a/clients/client-amp/src/commands/DeleteWorkspaceCommand.ts +++ b/clients/client-amp/src/commands/DeleteWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkspaceRequest } from "../models/models_0"; +import type { DeleteWorkspaceRequest } from "../models/models_0"; import { DeleteWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DescribeAlertManagerDefinitionCommand.ts b/clients/client-amp/src/commands/DescribeAlertManagerDefinitionCommand.ts index 437fe988c1afb..bbb2650a568db 100644 --- a/clients/client-amp/src/commands/DescribeAlertManagerDefinitionCommand.ts +++ b/clients/client-amp/src/commands/DescribeAlertManagerDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAlertManagerDefinitionRequest, DescribeAlertManagerDefinitionResponse } from "../models/models_0"; +import type { DescribeAlertManagerDefinitionRequest, DescribeAlertManagerDefinitionResponse } from "../models/models_0"; import { DescribeAlertManagerDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DescribeAnomalyDetectorCommand.ts b/clients/client-amp/src/commands/DescribeAnomalyDetectorCommand.ts index 878769f00a585..bcec6dc6923d1 100644 --- a/clients/client-amp/src/commands/DescribeAnomalyDetectorCommand.ts +++ b/clients/client-amp/src/commands/DescribeAnomalyDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAnomalyDetectorRequest, DescribeAnomalyDetectorResponse } from "../models/models_0"; +import type { DescribeAnomalyDetectorRequest, DescribeAnomalyDetectorResponse } from "../models/models_0"; import { DescribeAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DescribeLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/DescribeLoggingConfigurationCommand.ts index 6d65d45993aba..2085430a6a11e 100644 --- a/clients/client-amp/src/commands/DescribeLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/DescribeLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoggingConfigurationRequest, DescribeLoggingConfigurationResponse } from "../models/models_0"; +import type { DescribeLoggingConfigurationRequest, DescribeLoggingConfigurationResponse } from "../models/models_0"; import { DescribeLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DescribeQueryLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/DescribeQueryLoggingConfigurationCommand.ts index a60cdb67e20e3..fa5dd682f2e3c 100644 --- a/clients/client-amp/src/commands/DescribeQueryLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/DescribeQueryLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeQueryLoggingConfigurationRequest, DescribeQueryLoggingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-amp/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-amp/src/commands/DescribeResourcePolicyCommand.ts index ecc0e1685b38f..193d84bb239ae 100644 --- a/clients/client-amp/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-amp/src/commands/DescribeResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; +import type { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; import { DescribeResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DescribeRuleGroupsNamespaceCommand.ts b/clients/client-amp/src/commands/DescribeRuleGroupsNamespaceCommand.ts index 8c772eea4708f..92f39cec5d292 100644 --- a/clients/client-amp/src/commands/DescribeRuleGroupsNamespaceCommand.ts +++ b/clients/client-amp/src/commands/DescribeRuleGroupsNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRuleGroupsNamespaceRequest, DescribeRuleGroupsNamespaceResponse } from "../models/models_0"; +import type { DescribeRuleGroupsNamespaceRequest, DescribeRuleGroupsNamespaceResponse } from "../models/models_0"; import { DescribeRuleGroupsNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DescribeScraperCommand.ts b/clients/client-amp/src/commands/DescribeScraperCommand.ts index 427cc14c0cd00..bfd2f2ad127cf 100644 --- a/clients/client-amp/src/commands/DescribeScraperCommand.ts +++ b/clients/client-amp/src/commands/DescribeScraperCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScraperRequest, DescribeScraperResponse } from "../models/models_0"; +import type { DescribeScraperRequest, DescribeScraperResponse } from "../models/models_0"; import { DescribeScraper } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DescribeScraperLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/DescribeScraperLoggingConfigurationCommand.ts index f16f2f086e3da..29206447d6402 100644 --- a/clients/client-amp/src/commands/DescribeScraperLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/DescribeScraperLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeScraperLoggingConfigurationRequest, DescribeScraperLoggingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-amp/src/commands/DescribeWorkspaceCommand.ts b/clients/client-amp/src/commands/DescribeWorkspaceCommand.ts index 2bf62d4732e39..275241ff9cca9 100644 --- a/clients/client-amp/src/commands/DescribeWorkspaceCommand.ts +++ b/clients/client-amp/src/commands/DescribeWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspaceRequest, DescribeWorkspaceResponse } from "../models/models_0"; +import type { DescribeWorkspaceRequest, DescribeWorkspaceResponse } from "../models/models_0"; import { DescribeWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/DescribeWorkspaceConfigurationCommand.ts b/clients/client-amp/src/commands/DescribeWorkspaceConfigurationCommand.ts index a767731f9a6c3..0d96c576e1727 100644 --- a/clients/client-amp/src/commands/DescribeWorkspaceConfigurationCommand.ts +++ b/clients/client-amp/src/commands/DescribeWorkspaceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspaceConfigurationRequest, DescribeWorkspaceConfigurationResponse } from "../models/models_0"; +import type { DescribeWorkspaceConfigurationRequest, DescribeWorkspaceConfigurationResponse } from "../models/models_0"; import { DescribeWorkspaceConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/GetDefaultScraperConfigurationCommand.ts b/clients/client-amp/src/commands/GetDefaultScraperConfigurationCommand.ts index ac6df0eb0dea3..98f8322e73519 100644 --- a/clients/client-amp/src/commands/GetDefaultScraperConfigurationCommand.ts +++ b/clients/client-amp/src/commands/GetDefaultScraperConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDefaultScraperConfigurationRequest, GetDefaultScraperConfigurationResponse } from "../models/models_0"; +import type { GetDefaultScraperConfigurationRequest, GetDefaultScraperConfigurationResponse } from "../models/models_0"; import { GetDefaultScraperConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/ListAnomalyDetectorsCommand.ts b/clients/client-amp/src/commands/ListAnomalyDetectorsCommand.ts index de67b806781a9..2cd71d4e2b16e 100644 --- a/clients/client-amp/src/commands/ListAnomalyDetectorsCommand.ts +++ b/clients/client-amp/src/commands/ListAnomalyDetectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnomalyDetectorsRequest, ListAnomalyDetectorsResponse } from "../models/models_0"; +import type { ListAnomalyDetectorsRequest, ListAnomalyDetectorsResponse } from "../models/models_0"; import { ListAnomalyDetectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/ListRuleGroupsNamespacesCommand.ts b/clients/client-amp/src/commands/ListRuleGroupsNamespacesCommand.ts index 7cbd9a9c3f6fd..413d1d767a490 100644 --- a/clients/client-amp/src/commands/ListRuleGroupsNamespacesCommand.ts +++ b/clients/client-amp/src/commands/ListRuleGroupsNamespacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRuleGroupsNamespacesRequest, ListRuleGroupsNamespacesResponse } from "../models/models_0"; +import type { ListRuleGroupsNamespacesRequest, ListRuleGroupsNamespacesResponse } from "../models/models_0"; import { ListRuleGroupsNamespaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/ListScrapersCommand.ts b/clients/client-amp/src/commands/ListScrapersCommand.ts index 999f5136cdc2f..5f4802eb02f48 100644 --- a/clients/client-amp/src/commands/ListScrapersCommand.ts +++ b/clients/client-amp/src/commands/ListScrapersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScrapersRequest, ListScrapersResponse } from "../models/models_0"; +import type { ListScrapersRequest, ListScrapersResponse } from "../models/models_0"; import { ListScrapers } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/ListTagsForResourceCommand.ts b/clients/client-amp/src/commands/ListTagsForResourceCommand.ts index 7b1251fdaf1d2..805a7a030d141 100644 --- a/clients/client-amp/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-amp/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/ListWorkspacesCommand.ts b/clients/client-amp/src/commands/ListWorkspacesCommand.ts index cc5afe2b82e4c..e61b230e2a923 100644 --- a/clients/client-amp/src/commands/ListWorkspacesCommand.ts +++ b/clients/client-amp/src/commands/ListWorkspacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_0"; +import type { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_0"; import { ListWorkspaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/PutAlertManagerDefinitionCommand.ts b/clients/client-amp/src/commands/PutAlertManagerDefinitionCommand.ts index a6b8799603bda..abcc8e8b4fb55 100644 --- a/clients/client-amp/src/commands/PutAlertManagerDefinitionCommand.ts +++ b/clients/client-amp/src/commands/PutAlertManagerDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAlertManagerDefinitionRequest, PutAlertManagerDefinitionResponse } from "../models/models_0"; +import type { PutAlertManagerDefinitionRequest, PutAlertManagerDefinitionResponse } from "../models/models_0"; import { PutAlertManagerDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/PutAnomalyDetectorCommand.ts b/clients/client-amp/src/commands/PutAnomalyDetectorCommand.ts index 1be8271335afb..0a741b590740f 100644 --- a/clients/client-amp/src/commands/PutAnomalyDetectorCommand.ts +++ b/clients/client-amp/src/commands/PutAnomalyDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAnomalyDetectorRequest, PutAnomalyDetectorResponse } from "../models/models_0"; +import type { PutAnomalyDetectorRequest, PutAnomalyDetectorResponse } from "../models/models_0"; import { PutAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/PutResourcePolicyCommand.ts b/clients/client-amp/src/commands/PutResourcePolicyCommand.ts index 00142eac72569..e85b0a00fc28b 100644 --- a/clients/client-amp/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-amp/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/PutRuleGroupsNamespaceCommand.ts b/clients/client-amp/src/commands/PutRuleGroupsNamespaceCommand.ts index 070cbf3991b13..c45954700fea4 100644 --- a/clients/client-amp/src/commands/PutRuleGroupsNamespaceCommand.ts +++ b/clients/client-amp/src/commands/PutRuleGroupsNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRuleGroupsNamespaceRequest, PutRuleGroupsNamespaceResponse } from "../models/models_0"; +import type { PutRuleGroupsNamespaceRequest, PutRuleGroupsNamespaceResponse } from "../models/models_0"; import { PutRuleGroupsNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/TagResourceCommand.ts b/clients/client-amp/src/commands/TagResourceCommand.ts index 86a8a77a20b3a..6838e72504abc 100644 --- a/clients/client-amp/src/commands/TagResourceCommand.ts +++ b/clients/client-amp/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/UntagResourceCommand.ts b/clients/client-amp/src/commands/UntagResourceCommand.ts index 838931bbf4c14..b0a44c8f33f19 100644 --- a/clients/client-amp/src/commands/UntagResourceCommand.ts +++ b/clients/client-amp/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/UpdateLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/UpdateLoggingConfigurationCommand.ts index fd94c10315816..d3883ce59c446 100644 --- a/clients/client-amp/src/commands/UpdateLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/UpdateLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLoggingConfigurationRequest, UpdateLoggingConfigurationResponse } from "../models/models_0"; +import type { UpdateLoggingConfigurationRequest, UpdateLoggingConfigurationResponse } from "../models/models_0"; import { UpdateLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/UpdateQueryLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/UpdateQueryLoggingConfigurationCommand.ts index dd19c6242bce1..aff3f2a0313e6 100644 --- a/clients/client-amp/src/commands/UpdateQueryLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/UpdateQueryLoggingConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueryLoggingConfigurationRequest, UpdateQueryLoggingConfigurationResponse } from "../models/models_0"; +import type { + UpdateQueryLoggingConfigurationRequest, + UpdateQueryLoggingConfigurationResponse, +} from "../models/models_0"; import { UpdateQueryLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/UpdateScraperCommand.ts b/clients/client-amp/src/commands/UpdateScraperCommand.ts index c12b0251d92f7..4b48711465c06 100644 --- a/clients/client-amp/src/commands/UpdateScraperCommand.ts +++ b/clients/client-amp/src/commands/UpdateScraperCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScraperRequest, UpdateScraperResponse } from "../models/models_0"; +import type { UpdateScraperRequest, UpdateScraperResponse } from "../models/models_0"; import { UpdateScraper } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/UpdateScraperLoggingConfigurationCommand.ts b/clients/client-amp/src/commands/UpdateScraperLoggingConfigurationCommand.ts index d4c7d895fd9ea..eecde7d05cf97 100644 --- a/clients/client-amp/src/commands/UpdateScraperLoggingConfigurationCommand.ts +++ b/clients/client-amp/src/commands/UpdateScraperLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateScraperLoggingConfigurationRequest, UpdateScraperLoggingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-amp/src/commands/UpdateWorkspaceAliasCommand.ts b/clients/client-amp/src/commands/UpdateWorkspaceAliasCommand.ts index 2bbb6ac28ca26..fe0e17ea9b86d 100644 --- a/clients/client-amp/src/commands/UpdateWorkspaceAliasCommand.ts +++ b/clients/client-amp/src/commands/UpdateWorkspaceAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkspaceAliasRequest } from "../models/models_0"; +import type { UpdateWorkspaceAliasRequest } from "../models/models_0"; import { UpdateWorkspaceAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/commands/UpdateWorkspaceConfigurationCommand.ts b/clients/client-amp/src/commands/UpdateWorkspaceConfigurationCommand.ts index 87b770e93b4a7..21b3eb0a4599d 100644 --- a/clients/client-amp/src/commands/UpdateWorkspaceConfigurationCommand.ts +++ b/clients/client-amp/src/commands/UpdateWorkspaceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; +import type { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkspaceConfigurationRequest, UpdateWorkspaceConfigurationResponse } from "../models/models_0"; +import type { UpdateWorkspaceConfigurationRequest, UpdateWorkspaceConfigurationResponse } from "../models/models_0"; import { UpdateWorkspaceConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-amp/src/endpoint/EndpointParameters.ts b/clients/client-amp/src/endpoint/EndpointParameters.ts index 47e3357ecbacb..0ae7a6ee0138b 100644 --- a/clients/client-amp/src/endpoint/EndpointParameters.ts +++ b/clients/client-amp/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-amp/src/endpoint/endpointResolver.ts b/clients/client-amp/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-amp/src/endpoint/endpointResolver.ts +++ b/clients/client-amp/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-amp/src/extensionConfiguration.ts b/clients/client-amp/src/extensionConfiguration.ts index f2c908b00b40a..d0e7e5ddf957b 100644 --- a/clients/client-amp/src/extensionConfiguration.ts +++ b/clients/client-amp/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-amp/src/models/AmpServiceException.ts b/clients/client-amp/src/models/AmpServiceException.ts index b162eb4031542..ee2eb10c4c8b9 100644 --- a/clients/client-amp/src/models/AmpServiceException.ts +++ b/clients/client-amp/src/models/AmpServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-amp/src/models/errors.ts b/clients/client-amp/src/models/errors.ts index f3e71607a0d3a..5d32599a9ab3b 100644 --- a/clients/client-amp/src/models/errors.ts +++ b/clients/client-amp/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AmpServiceException as __BaseException } from "./AmpServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-amp/src/pagination/Interfaces.ts b/clients/client-amp/src/pagination/Interfaces.ts index 51266708fb416..3215cf9cd4a65 100644 --- a/clients/client-amp/src/pagination/Interfaces.ts +++ b/clients/client-amp/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AmpClient } from "../AmpClient"; diff --git a/clients/client-amp/src/pagination/ListAnomalyDetectorsPaginator.ts b/clients/client-amp/src/pagination/ListAnomalyDetectorsPaginator.ts index 4fd3883b0b805..2f8a3e3ea867b 100644 --- a/clients/client-amp/src/pagination/ListAnomalyDetectorsPaginator.ts +++ b/clients/client-amp/src/pagination/ListAnomalyDetectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmpClient } from "../AmpClient"; import { diff --git a/clients/client-amp/src/pagination/ListRuleGroupsNamespacesPaginator.ts b/clients/client-amp/src/pagination/ListRuleGroupsNamespacesPaginator.ts index 051a35b00710a..c8aebf9502301 100644 --- a/clients/client-amp/src/pagination/ListRuleGroupsNamespacesPaginator.ts +++ b/clients/client-amp/src/pagination/ListRuleGroupsNamespacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmpClient } from "../AmpClient"; import { diff --git a/clients/client-amp/src/pagination/ListScrapersPaginator.ts b/clients/client-amp/src/pagination/ListScrapersPaginator.ts index 7be8c7c408b67..738a8941125ab 100644 --- a/clients/client-amp/src/pagination/ListScrapersPaginator.ts +++ b/clients/client-amp/src/pagination/ListScrapersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmpClient } from "../AmpClient"; import { diff --git a/clients/client-amp/src/pagination/ListWorkspacesPaginator.ts b/clients/client-amp/src/pagination/ListWorkspacesPaginator.ts index a8295dacc94ee..edc27f2b6a60e 100644 --- a/clients/client-amp/src/pagination/ListWorkspacesPaginator.ts +++ b/clients/client-amp/src/pagination/ListWorkspacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmpClient } from "../AmpClient"; import { diff --git a/clients/client-amp/src/runtimeConfig.browser.ts b/clients/client-amp/src/runtimeConfig.browser.ts index a79d15c62b296..3b03c6a42b74e 100644 --- a/clients/client-amp/src/runtimeConfig.browser.ts +++ b/clients/client-amp/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AmpClientConfig } from "./AmpClient"; + +import type { AmpClientConfig } from "./AmpClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-amp/src/runtimeConfig.native.ts b/clients/client-amp/src/runtimeConfig.native.ts index 232a9cce47be8..7272d0b272032 100644 --- a/clients/client-amp/src/runtimeConfig.native.ts +++ b/clients/client-amp/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AmpClientConfig } from "./AmpClient"; +import type { AmpClientConfig } from "./AmpClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-amp/src/runtimeConfig.shared.ts b/clients/client-amp/src/runtimeConfig.shared.ts index ebe51aad65bbe..1ffdb5e21c613 100644 --- a/clients/client-amp/src/runtimeConfig.shared.ts +++ b/clients/client-amp/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AmpClientConfig } from "./AmpClient"; +import type { AmpClientConfig } from "./AmpClient"; import { defaultAmpHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-amp/src/runtimeConfig.ts b/clients/client-amp/src/runtimeConfig.ts index bf213f5a5571c..3c869c9a24665 100644 --- a/clients/client-amp/src/runtimeConfig.ts +++ b/clients/client-amp/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AmpClientConfig } from "./AmpClient"; + +import type { AmpClientConfig } from "./AmpClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-amp/src/runtimeExtensions.ts b/clients/client-amp/src/runtimeExtensions.ts index b33e413ac1039..e5ca827c6c952 100644 --- a/clients/client-amp/src/runtimeExtensions.ts +++ b/clients/client-amp/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AmpExtensionConfiguration } from "./extensionConfiguration"; +import type { AmpExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-amp/src/schemas/schemas_0.ts b/clients/client-amp/src/schemas/schemas_0.ts index c78199ec4e5b1..84530b90a26ed 100644 --- a/clients/client-amp/src/schemas/schemas_0.ts +++ b/clients/client-amp/src/schemas/schemas_0.ts @@ -280,7 +280,7 @@ const n0 = "com.amazonaws.amp"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-amplify/package.json b/clients/client-amplify/package.json index bcaebdebecb09..3f45767e56bc3 100644 --- a/clients/client-amplify/package.json +++ b/clients/client-amplify/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-amplify/src/Amplify.ts b/clients/client-amplify/src/Amplify.ts index 195c2bd33a0c7..5a886c428d05d 100644 --- a/clients/client-amplify/src/Amplify.ts +++ b/clients/client-amplify/src/Amplify.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AmplifyClient, AmplifyClientConfig } from "./AmplifyClient"; +import { AmplifyClient } from "./AmplifyClient"; import { CreateAppCommand, CreateAppCommandInput, CreateAppCommandOutput } from "./commands/CreateAppCommand"; import { CreateBackendEnvironmentCommand, diff --git a/clients/client-amplify/src/AmplifyClient.ts b/clients/client-amplify/src/AmplifyClient.ts index 02e35e38643f1..0d6b441294c92 100644 --- a/clients/client-amplify/src/AmplifyClient.ts +++ b/clients/client-amplify/src/AmplifyClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAmplifyHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateAppCommandInput, CreateAppCommandOutput } from "./commands/CreateAppCommand"; @@ -131,7 +140,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-amplify/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-amplify/src/auth/httpAuthExtensionConfiguration.ts index efc0e6bfc8abe..70ad5252037c6 100644 --- a/clients/client-amplify/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-amplify/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AmplifyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AmplifyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-amplify/src/auth/httpAuthSchemeProvider.ts b/clients/client-amplify/src/auth/httpAuthSchemeProvider.ts index aeacf78ccd269..f56cf5a9a5a1c 100644 --- a/clients/client-amplify/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-amplify/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AmplifyClientConfig, AmplifyClientResolvedConfig } from "../AmplifyClient"; +import { type AmplifyClientResolvedConfig, AmplifyClientConfig } from "../AmplifyClient"; /** * @internal diff --git a/clients/client-amplify/src/commands/CreateAppCommand.ts b/clients/client-amplify/src/commands/CreateAppCommand.ts index 01f4e2109a2ff..aee5968eb7b24 100644 --- a/clients/client-amplify/src/commands/CreateAppCommand.ts +++ b/clients/client-amplify/src/commands/CreateAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppRequest, CreateAppResult } from "../models/models_0"; +import type { CreateAppRequest, CreateAppResult } from "../models/models_0"; import { CreateApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/CreateBackendEnvironmentCommand.ts b/clients/client-amplify/src/commands/CreateBackendEnvironmentCommand.ts index 07479e031e670..36a08169253b1 100644 --- a/clients/client-amplify/src/commands/CreateBackendEnvironmentCommand.ts +++ b/clients/client-amplify/src/commands/CreateBackendEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackendEnvironmentRequest, CreateBackendEnvironmentResult } from "../models/models_0"; +import type { CreateBackendEnvironmentRequest, CreateBackendEnvironmentResult } from "../models/models_0"; import { CreateBackendEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/CreateBranchCommand.ts b/clients/client-amplify/src/commands/CreateBranchCommand.ts index e01a4c333db0d..b58a0b86838c3 100644 --- a/clients/client-amplify/src/commands/CreateBranchCommand.ts +++ b/clients/client-amplify/src/commands/CreateBranchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBranchRequest, CreateBranchResult } from "../models/models_0"; +import type { CreateBranchRequest, CreateBranchResult } from "../models/models_0"; import { CreateBranch } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/CreateDeploymentCommand.ts b/clients/client-amplify/src/commands/CreateDeploymentCommand.ts index 5ece26b0d84ad..a145684289442 100644 --- a/clients/client-amplify/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-amplify/src/commands/CreateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeploymentRequest, CreateDeploymentResult } from "../models/models_0"; +import type { CreateDeploymentRequest, CreateDeploymentResult } from "../models/models_0"; import { CreateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/CreateDomainAssociationCommand.ts b/clients/client-amplify/src/commands/CreateDomainAssociationCommand.ts index ad56e54501368..7bceb7a344b8a 100644 --- a/clients/client-amplify/src/commands/CreateDomainAssociationCommand.ts +++ b/clients/client-amplify/src/commands/CreateDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainAssociationRequest, CreateDomainAssociationResult } from "../models/models_0"; +import type { CreateDomainAssociationRequest, CreateDomainAssociationResult } from "../models/models_0"; import { CreateDomainAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/CreateWebhookCommand.ts b/clients/client-amplify/src/commands/CreateWebhookCommand.ts index c552342f3fc45..d4d2d4f04b296 100644 --- a/clients/client-amplify/src/commands/CreateWebhookCommand.ts +++ b/clients/client-amplify/src/commands/CreateWebhookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebhookRequest, CreateWebhookResult } from "../models/models_0"; +import type { CreateWebhookRequest, CreateWebhookResult } from "../models/models_0"; import { CreateWebhook } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/DeleteAppCommand.ts b/clients/client-amplify/src/commands/DeleteAppCommand.ts index a75b0c405047e..d41f724b66985 100644 --- a/clients/client-amplify/src/commands/DeleteAppCommand.ts +++ b/clients/client-amplify/src/commands/DeleteAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppRequest, DeleteAppResult } from "../models/models_0"; +import type { DeleteAppRequest, DeleteAppResult } from "../models/models_0"; import { DeleteApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/DeleteBackendEnvironmentCommand.ts b/clients/client-amplify/src/commands/DeleteBackendEnvironmentCommand.ts index 3f5711c3b94da..ad644b15c1727 100644 --- a/clients/client-amplify/src/commands/DeleteBackendEnvironmentCommand.ts +++ b/clients/client-amplify/src/commands/DeleteBackendEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackendEnvironmentRequest, DeleteBackendEnvironmentResult } from "../models/models_0"; +import type { DeleteBackendEnvironmentRequest, DeleteBackendEnvironmentResult } from "../models/models_0"; import { DeleteBackendEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/DeleteBranchCommand.ts b/clients/client-amplify/src/commands/DeleteBranchCommand.ts index d78af3618c45c..da23250fa9ac4 100644 --- a/clients/client-amplify/src/commands/DeleteBranchCommand.ts +++ b/clients/client-amplify/src/commands/DeleteBranchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBranchRequest, DeleteBranchResult } from "../models/models_0"; +import type { DeleteBranchRequest, DeleteBranchResult } from "../models/models_0"; import { DeleteBranch } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/DeleteDomainAssociationCommand.ts b/clients/client-amplify/src/commands/DeleteDomainAssociationCommand.ts index 039e2e5b94b01..06383e0a1d4b8 100644 --- a/clients/client-amplify/src/commands/DeleteDomainAssociationCommand.ts +++ b/clients/client-amplify/src/commands/DeleteDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainAssociationRequest, DeleteDomainAssociationResult } from "../models/models_0"; +import type { DeleteDomainAssociationRequest, DeleteDomainAssociationResult } from "../models/models_0"; import { DeleteDomainAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/DeleteJobCommand.ts b/clients/client-amplify/src/commands/DeleteJobCommand.ts index dcaae6ad17d06..c25ef25869bdd 100644 --- a/clients/client-amplify/src/commands/DeleteJobCommand.ts +++ b/clients/client-amplify/src/commands/DeleteJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteJobRequest, DeleteJobResult } from "../models/models_0"; +import type { DeleteJobRequest, DeleteJobResult } from "../models/models_0"; import { DeleteJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/DeleteWebhookCommand.ts b/clients/client-amplify/src/commands/DeleteWebhookCommand.ts index 15cf945b5f64d..c2d2e75ea521d 100644 --- a/clients/client-amplify/src/commands/DeleteWebhookCommand.ts +++ b/clients/client-amplify/src/commands/DeleteWebhookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebhookRequest, DeleteWebhookResult } from "../models/models_0"; +import type { DeleteWebhookRequest, DeleteWebhookResult } from "../models/models_0"; import { DeleteWebhook } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/GenerateAccessLogsCommand.ts b/clients/client-amplify/src/commands/GenerateAccessLogsCommand.ts index b5f9fb3b460a4..29e58d616e41b 100644 --- a/clients/client-amplify/src/commands/GenerateAccessLogsCommand.ts +++ b/clients/client-amplify/src/commands/GenerateAccessLogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateAccessLogsRequest, GenerateAccessLogsResult } from "../models/models_0"; +import type { GenerateAccessLogsRequest, GenerateAccessLogsResult } from "../models/models_0"; import { GenerateAccessLogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/GetAppCommand.ts b/clients/client-amplify/src/commands/GetAppCommand.ts index d680477a0e647..fd86f8a7390c5 100644 --- a/clients/client-amplify/src/commands/GetAppCommand.ts +++ b/clients/client-amplify/src/commands/GetAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAppRequest, GetAppResult } from "../models/models_0"; +import type { GetAppRequest, GetAppResult } from "../models/models_0"; import { GetApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/GetArtifactUrlCommand.ts b/clients/client-amplify/src/commands/GetArtifactUrlCommand.ts index 94088cb25a2c8..f420b995a9aac 100644 --- a/clients/client-amplify/src/commands/GetArtifactUrlCommand.ts +++ b/clients/client-amplify/src/commands/GetArtifactUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetArtifactUrlRequest, GetArtifactUrlResult } from "../models/models_0"; +import type { GetArtifactUrlRequest, GetArtifactUrlResult } from "../models/models_0"; import { GetArtifactUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/GetBackendEnvironmentCommand.ts b/clients/client-amplify/src/commands/GetBackendEnvironmentCommand.ts index 76db645339471..f131738502783 100644 --- a/clients/client-amplify/src/commands/GetBackendEnvironmentCommand.ts +++ b/clients/client-amplify/src/commands/GetBackendEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackendEnvironmentRequest, GetBackendEnvironmentResult } from "../models/models_0"; +import type { GetBackendEnvironmentRequest, GetBackendEnvironmentResult } from "../models/models_0"; import { GetBackendEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/GetBranchCommand.ts b/clients/client-amplify/src/commands/GetBranchCommand.ts index 4a21a8dafc7c9..a812a6199a86b 100644 --- a/clients/client-amplify/src/commands/GetBranchCommand.ts +++ b/clients/client-amplify/src/commands/GetBranchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBranchRequest, GetBranchResult } from "../models/models_0"; +import type { GetBranchRequest, GetBranchResult } from "../models/models_0"; import { GetBranch } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/GetDomainAssociationCommand.ts b/clients/client-amplify/src/commands/GetDomainAssociationCommand.ts index 615352b5c60be..e02f7b08247fb 100644 --- a/clients/client-amplify/src/commands/GetDomainAssociationCommand.ts +++ b/clients/client-amplify/src/commands/GetDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainAssociationRequest, GetDomainAssociationResult } from "../models/models_0"; +import type { GetDomainAssociationRequest, GetDomainAssociationResult } from "../models/models_0"; import { GetDomainAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/GetJobCommand.ts b/clients/client-amplify/src/commands/GetJobCommand.ts index b1d26e191eb27..7456c5aad3c49 100644 --- a/clients/client-amplify/src/commands/GetJobCommand.ts +++ b/clients/client-amplify/src/commands/GetJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobRequest, GetJobResult } from "../models/models_0"; +import type { GetJobRequest, GetJobResult } from "../models/models_0"; import { GetJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/GetWebhookCommand.ts b/clients/client-amplify/src/commands/GetWebhookCommand.ts index 491de5ec85eeb..eef0de8f30690 100644 --- a/clients/client-amplify/src/commands/GetWebhookCommand.ts +++ b/clients/client-amplify/src/commands/GetWebhookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWebhookRequest, GetWebhookResult } from "../models/models_0"; +import type { GetWebhookRequest, GetWebhookResult } from "../models/models_0"; import { GetWebhook } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/ListAppsCommand.ts b/clients/client-amplify/src/commands/ListAppsCommand.ts index 66858413e3027..3c83dd9bccad4 100644 --- a/clients/client-amplify/src/commands/ListAppsCommand.ts +++ b/clients/client-amplify/src/commands/ListAppsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppsRequest, ListAppsResult } from "../models/models_0"; +import type { ListAppsRequest, ListAppsResult } from "../models/models_0"; import { ListApps } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/ListArtifactsCommand.ts b/clients/client-amplify/src/commands/ListArtifactsCommand.ts index 88505fc8a2725..cf3c60a1a8bd7 100644 --- a/clients/client-amplify/src/commands/ListArtifactsCommand.ts +++ b/clients/client-amplify/src/commands/ListArtifactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListArtifactsRequest, ListArtifactsResult } from "../models/models_0"; +import type { ListArtifactsRequest, ListArtifactsResult } from "../models/models_0"; import { ListArtifacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/ListBackendEnvironmentsCommand.ts b/clients/client-amplify/src/commands/ListBackendEnvironmentsCommand.ts index 990bae652e427..d51b666090c15 100644 --- a/clients/client-amplify/src/commands/ListBackendEnvironmentsCommand.ts +++ b/clients/client-amplify/src/commands/ListBackendEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackendEnvironmentsRequest, ListBackendEnvironmentsResult } from "../models/models_0"; +import type { ListBackendEnvironmentsRequest, ListBackendEnvironmentsResult } from "../models/models_0"; import { ListBackendEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/ListBranchesCommand.ts b/clients/client-amplify/src/commands/ListBranchesCommand.ts index 73dbc7e567783..57d34da7a3459 100644 --- a/clients/client-amplify/src/commands/ListBranchesCommand.ts +++ b/clients/client-amplify/src/commands/ListBranchesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBranchesRequest, ListBranchesResult } from "../models/models_0"; +import type { ListBranchesRequest, ListBranchesResult } from "../models/models_0"; import { ListBranches } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/ListDomainAssociationsCommand.ts b/clients/client-amplify/src/commands/ListDomainAssociationsCommand.ts index 950f6d4bdf31c..0b7f37fd5eea3 100644 --- a/clients/client-amplify/src/commands/ListDomainAssociationsCommand.ts +++ b/clients/client-amplify/src/commands/ListDomainAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainAssociationsRequest, ListDomainAssociationsResult } from "../models/models_0"; +import type { ListDomainAssociationsRequest, ListDomainAssociationsResult } from "../models/models_0"; import { ListDomainAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/ListJobsCommand.ts b/clients/client-amplify/src/commands/ListJobsCommand.ts index aadae1d3a23cf..ee83dc6929766 100644 --- a/clients/client-amplify/src/commands/ListJobsCommand.ts +++ b/clients/client-amplify/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsRequest, ListJobsResult } from "../models/models_0"; +import type { ListJobsRequest, ListJobsResult } from "../models/models_0"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/ListTagsForResourceCommand.ts b/clients/client-amplify/src/commands/ListTagsForResourceCommand.ts index 78bfd208a075d..f3330857f5055 100644 --- a/clients/client-amplify/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-amplify/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/ListWebhooksCommand.ts b/clients/client-amplify/src/commands/ListWebhooksCommand.ts index ea23c725f938b..d8e927735a8e0 100644 --- a/clients/client-amplify/src/commands/ListWebhooksCommand.ts +++ b/clients/client-amplify/src/commands/ListWebhooksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWebhooksRequest, ListWebhooksResult } from "../models/models_0"; +import type { ListWebhooksRequest, ListWebhooksResult } from "../models/models_0"; import { ListWebhooks } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/StartDeploymentCommand.ts b/clients/client-amplify/src/commands/StartDeploymentCommand.ts index a0004b4a2726b..4d6c6a7ef4abc 100644 --- a/clients/client-amplify/src/commands/StartDeploymentCommand.ts +++ b/clients/client-amplify/src/commands/StartDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDeploymentRequest, StartDeploymentResult } from "../models/models_0"; +import type { StartDeploymentRequest, StartDeploymentResult } from "../models/models_0"; import { StartDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/StartJobCommand.ts b/clients/client-amplify/src/commands/StartJobCommand.ts index d5a5e402a0624..4f10be640f0b9 100644 --- a/clients/client-amplify/src/commands/StartJobCommand.ts +++ b/clients/client-amplify/src/commands/StartJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartJobRequest, StartJobResult } from "../models/models_0"; +import type { StartJobRequest, StartJobResult } from "../models/models_0"; import { StartJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/StopJobCommand.ts b/clients/client-amplify/src/commands/StopJobCommand.ts index 820538a25d4fa..d462f1e74ecbc 100644 --- a/clients/client-amplify/src/commands/StopJobCommand.ts +++ b/clients/client-amplify/src/commands/StopJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopJobRequest, StopJobResult } from "../models/models_0"; +import type { StopJobRequest, StopJobResult } from "../models/models_0"; import { StopJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/TagResourceCommand.ts b/clients/client-amplify/src/commands/TagResourceCommand.ts index 2e68dae9444e7..d473f26b52fdd 100644 --- a/clients/client-amplify/src/commands/TagResourceCommand.ts +++ b/clients/client-amplify/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/UntagResourceCommand.ts b/clients/client-amplify/src/commands/UntagResourceCommand.ts index 3bcbae47a303c..256c97b3821da 100644 --- a/clients/client-amplify/src/commands/UntagResourceCommand.ts +++ b/clients/client-amplify/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/UpdateAppCommand.ts b/clients/client-amplify/src/commands/UpdateAppCommand.ts index 0022496cb56cf..62fc069fcf472 100644 --- a/clients/client-amplify/src/commands/UpdateAppCommand.ts +++ b/clients/client-amplify/src/commands/UpdateAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppRequest, UpdateAppResult } from "../models/models_0"; +import type { UpdateAppRequest, UpdateAppResult } from "../models/models_0"; import { UpdateApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/UpdateBranchCommand.ts b/clients/client-amplify/src/commands/UpdateBranchCommand.ts index 9bc8f5e9b728a..b4968c14ecbc2 100644 --- a/clients/client-amplify/src/commands/UpdateBranchCommand.ts +++ b/clients/client-amplify/src/commands/UpdateBranchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBranchRequest, UpdateBranchResult } from "../models/models_0"; +import type { UpdateBranchRequest, UpdateBranchResult } from "../models/models_0"; import { UpdateBranch } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/UpdateDomainAssociationCommand.ts b/clients/client-amplify/src/commands/UpdateDomainAssociationCommand.ts index 60dbf3c01e0ab..8134f2dfd3ec8 100644 --- a/clients/client-amplify/src/commands/UpdateDomainAssociationCommand.ts +++ b/clients/client-amplify/src/commands/UpdateDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainAssociationRequest, UpdateDomainAssociationResult } from "../models/models_0"; +import type { UpdateDomainAssociationRequest, UpdateDomainAssociationResult } from "../models/models_0"; import { UpdateDomainAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/commands/UpdateWebhookCommand.ts b/clients/client-amplify/src/commands/UpdateWebhookCommand.ts index b14532cbd04f3..53695ed91aad0 100644 --- a/clients/client-amplify/src/commands/UpdateWebhookCommand.ts +++ b/clients/client-amplify/src/commands/UpdateWebhookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; +import type { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWebhookRequest, UpdateWebhookResult } from "../models/models_0"; +import type { UpdateWebhookRequest, UpdateWebhookResult } from "../models/models_0"; import { UpdateWebhook } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplify/src/endpoint/EndpointParameters.ts b/clients/client-amplify/src/endpoint/EndpointParameters.ts index 01e7f0966ffe3..8fdd2f2e045dc 100644 --- a/clients/client-amplify/src/endpoint/EndpointParameters.ts +++ b/clients/client-amplify/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-amplify/src/endpoint/endpointResolver.ts b/clients/client-amplify/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-amplify/src/endpoint/endpointResolver.ts +++ b/clients/client-amplify/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-amplify/src/extensionConfiguration.ts b/clients/client-amplify/src/extensionConfiguration.ts index cf47667f99e7c..c04ef8b2b8c30 100644 --- a/clients/client-amplify/src/extensionConfiguration.ts +++ b/clients/client-amplify/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-amplify/src/models/AmplifyServiceException.ts b/clients/client-amplify/src/models/AmplifyServiceException.ts index 70d2ea4a824f8..730ec4e4d4115 100644 --- a/clients/client-amplify/src/models/AmplifyServiceException.ts +++ b/clients/client-amplify/src/models/AmplifyServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-amplify/src/models/errors.ts b/clients/client-amplify/src/models/errors.ts index 680f416d3fc45..9335d52f21aaa 100644 --- a/clients/client-amplify/src/models/errors.ts +++ b/clients/client-amplify/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AmplifyServiceException as __BaseException } from "./AmplifyServiceException"; diff --git a/clients/client-amplify/src/pagination/Interfaces.ts b/clients/client-amplify/src/pagination/Interfaces.ts index cccdcd73a8d3e..36c1294214e3d 100644 --- a/clients/client-amplify/src/pagination/Interfaces.ts +++ b/clients/client-amplify/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AmplifyClient } from "../AmplifyClient"; diff --git a/clients/client-amplify/src/pagination/ListAppsPaginator.ts b/clients/client-amplify/src/pagination/ListAppsPaginator.ts index c6e3938d0b4e3..681e59ceca034 100644 --- a/clients/client-amplify/src/pagination/ListAppsPaginator.ts +++ b/clients/client-amplify/src/pagination/ListAppsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyClient } from "../AmplifyClient"; import { ListAppsCommand, ListAppsCommandInput, ListAppsCommandOutput } from "../commands/ListAppsCommand"; diff --git a/clients/client-amplify/src/pagination/ListBranchesPaginator.ts b/clients/client-amplify/src/pagination/ListBranchesPaginator.ts index 45dfaa18e20c6..dead0ad0e5a21 100644 --- a/clients/client-amplify/src/pagination/ListBranchesPaginator.ts +++ b/clients/client-amplify/src/pagination/ListBranchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyClient } from "../AmplifyClient"; import { diff --git a/clients/client-amplify/src/pagination/ListDomainAssociationsPaginator.ts b/clients/client-amplify/src/pagination/ListDomainAssociationsPaginator.ts index 4942093bfff72..907f0d122acd1 100644 --- a/clients/client-amplify/src/pagination/ListDomainAssociationsPaginator.ts +++ b/clients/client-amplify/src/pagination/ListDomainAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyClient } from "../AmplifyClient"; import { diff --git a/clients/client-amplify/src/pagination/ListJobsPaginator.ts b/clients/client-amplify/src/pagination/ListJobsPaginator.ts index 327146a622c86..6dc8759d9dec7 100644 --- a/clients/client-amplify/src/pagination/ListJobsPaginator.ts +++ b/clients/client-amplify/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyClient } from "../AmplifyClient"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; diff --git a/clients/client-amplify/src/runtimeConfig.browser.ts b/clients/client-amplify/src/runtimeConfig.browser.ts index 0e7230f47c4e6..2bdcab6918559 100644 --- a/clients/client-amplify/src/runtimeConfig.browser.ts +++ b/clients/client-amplify/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AmplifyClientConfig } from "./AmplifyClient"; + +import type { AmplifyClientConfig } from "./AmplifyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-amplify/src/runtimeConfig.native.ts b/clients/client-amplify/src/runtimeConfig.native.ts index 5c81c9d08daa5..023978cf1a935 100644 --- a/clients/client-amplify/src/runtimeConfig.native.ts +++ b/clients/client-amplify/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AmplifyClientConfig } from "./AmplifyClient"; +import type { AmplifyClientConfig } from "./AmplifyClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-amplify/src/runtimeConfig.shared.ts b/clients/client-amplify/src/runtimeConfig.shared.ts index dbd8459b0dfa5..cb99376de3e86 100644 --- a/clients/client-amplify/src/runtimeConfig.shared.ts +++ b/clients/client-amplify/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AmplifyClientConfig } from "./AmplifyClient"; +import type { AmplifyClientConfig } from "./AmplifyClient"; import { defaultAmplifyHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-amplify/src/runtimeConfig.ts b/clients/client-amplify/src/runtimeConfig.ts index 9ee57f2ca9625..be85d5624b540 100644 --- a/clients/client-amplify/src/runtimeConfig.ts +++ b/clients/client-amplify/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AmplifyClientConfig } from "./AmplifyClient"; + +import type { AmplifyClientConfig } from "./AmplifyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-amplify/src/runtimeExtensions.ts b/clients/client-amplify/src/runtimeExtensions.ts index 128c0819bd501..64d81a980f314 100644 --- a/clients/client-amplify/src/runtimeExtensions.ts +++ b/clients/client-amplify/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AmplifyExtensionConfiguration } from "./extensionConfiguration"; +import type { AmplifyExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-amplify/src/schemas/schemas_0.ts b/clients/client-amplify/src/schemas/schemas_0.ts index bba9c0a0c9a98..213984280aa0f 100644 --- a/clients/client-amplify/src/schemas/schemas_0.ts +++ b/clients/client-amplify/src/schemas/schemas_0.ts @@ -294,7 +294,7 @@ const n0 = "com.amazonaws.amplify"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-amplifybackend/package.json b/clients/client-amplifybackend/package.json index e5c766c489e8b..8e1916b179114 100644 --- a/clients/client-amplifybackend/package.json +++ b/clients/client-amplifybackend/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-amplifybackend/src/AmplifyBackend.ts b/clients/client-amplifybackend/src/AmplifyBackend.ts index a9e7fb84b313e..419b6e322d0b8 100644 --- a/clients/client-amplifybackend/src/AmplifyBackend.ts +++ b/clients/client-amplifybackend/src/AmplifyBackend.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AmplifyBackendClient, AmplifyBackendClientConfig } from "./AmplifyBackendClient"; +import { AmplifyBackendClient } from "./AmplifyBackendClient"; import { CloneBackendCommand, CloneBackendCommandInput, diff --git a/clients/client-amplifybackend/src/AmplifyBackendClient.ts b/clients/client-amplifybackend/src/AmplifyBackendClient.ts index 1a56507221689..6dffa9536ab19 100644 --- a/clients/client-amplifybackend/src/AmplifyBackendClient.ts +++ b/clients/client-amplifybackend/src/AmplifyBackendClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAmplifyBackendHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CloneBackendCommandInput, CloneBackendCommandOutput } from "./commands/CloneBackendCommand"; @@ -122,7 +131,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-amplifybackend/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-amplifybackend/src/auth/httpAuthExtensionConfiguration.ts index 3d75a2f965ebf..7cacf66341af5 100644 --- a/clients/client-amplifybackend/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-amplifybackend/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AmplifyBackendHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AmplifyBackendHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-amplifybackend/src/auth/httpAuthSchemeProvider.ts b/clients/client-amplifybackend/src/auth/httpAuthSchemeProvider.ts index dc4b7efe02e91..fc1490f937b3f 100644 --- a/clients/client-amplifybackend/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-amplifybackend/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AmplifyBackendClientConfig, AmplifyBackendClientResolvedConfig } from "../AmplifyBackendClient"; +import { type AmplifyBackendClientResolvedConfig, AmplifyBackendClientConfig } from "../AmplifyBackendClient"; /** * @internal diff --git a/clients/client-amplifybackend/src/commands/CloneBackendCommand.ts b/clients/client-amplifybackend/src/commands/CloneBackendCommand.ts index deda70de17542..63e7c7ff425a2 100644 --- a/clients/client-amplifybackend/src/commands/CloneBackendCommand.ts +++ b/clients/client-amplifybackend/src/commands/CloneBackendCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CloneBackendRequest, CloneBackendResponse } from "../models/models_0"; +import type { CloneBackendRequest, CloneBackendResponse } from "../models/models_0"; import { CloneBackend } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/CreateBackendAPICommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendAPICommand.ts index 10d02dc90ac3e..782913ec1bf73 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendAPICommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendAPICommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackendAPIRequest, CreateBackendAPIResponse } from "../models/models_0"; +import type { CreateBackendAPIRequest, CreateBackendAPIResponse } from "../models/models_0"; import { CreateBackendAPI } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/CreateBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendAuthCommand.ts index 6beb9b8fb0600..807d17c5eab07 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendAuthCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackendAuthRequest, CreateBackendAuthResponse } from "../models/models_0"; +import type { CreateBackendAuthRequest, CreateBackendAuthResponse } from "../models/models_0"; import { CreateBackendAuth } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/CreateBackendCommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendCommand.ts index cfd59a2e33fd4..8cf4fd7140245 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackendRequest, CreateBackendResponse } from "../models/models_0"; +import type { CreateBackendRequest, CreateBackendResponse } from "../models/models_0"; import { CreateBackend } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/CreateBackendConfigCommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendConfigCommand.ts index 966dc6ad96b4b..72a1a2b6ea0f4 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendConfigCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackendConfigRequest, CreateBackendConfigResponse } from "../models/models_0"; +import type { CreateBackendConfigRequest, CreateBackendConfigResponse } from "../models/models_0"; import { CreateBackendConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/CreateBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/CreateBackendStorageCommand.ts index ec3458e82af2f..1ebf5206c2566 100644 --- a/clients/client-amplifybackend/src/commands/CreateBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateBackendStorageCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackendStorageRequest, CreateBackendStorageResponse } from "../models/models_0"; +import type { CreateBackendStorageRequest, CreateBackendStorageResponse } from "../models/models_0"; import { CreateBackendStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/CreateTokenCommand.ts b/clients/client-amplifybackend/src/commands/CreateTokenCommand.ts index d876ce3fee456..088058898260e 100644 --- a/clients/client-amplifybackend/src/commands/CreateTokenCommand.ts +++ b/clients/client-amplifybackend/src/commands/CreateTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0"; +import type { CreateTokenRequest, CreateTokenResponse } from "../models/models_0"; import { CreateToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/DeleteBackendAPICommand.ts b/clients/client-amplifybackend/src/commands/DeleteBackendAPICommand.ts index fe640cfb19b52..26a14d255a820 100644 --- a/clients/client-amplifybackend/src/commands/DeleteBackendAPICommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteBackendAPICommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackendAPIRequest, DeleteBackendAPIResponse } from "../models/models_0"; +import type { DeleteBackendAPIRequest, DeleteBackendAPIResponse } from "../models/models_0"; import { DeleteBackendAPI } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/DeleteBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/DeleteBackendAuthCommand.ts index d8ae077334e80..01a69ecc732c7 100644 --- a/clients/client-amplifybackend/src/commands/DeleteBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteBackendAuthCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackendAuthRequest, DeleteBackendAuthResponse } from "../models/models_0"; +import type { DeleteBackendAuthRequest, DeleteBackendAuthResponse } from "../models/models_0"; import { DeleteBackendAuth } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/DeleteBackendCommand.ts b/clients/client-amplifybackend/src/commands/DeleteBackendCommand.ts index a35e84a1960a7..816fe7774dec9 100644 --- a/clients/client-amplifybackend/src/commands/DeleteBackendCommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteBackendCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackendRequest, DeleteBackendResponse } from "../models/models_0"; +import type { DeleteBackendRequest, DeleteBackendResponse } from "../models/models_0"; import { DeleteBackend } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/DeleteBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/DeleteBackendStorageCommand.ts index 0cc22b5cef760..c52ff591d8d7a 100644 --- a/clients/client-amplifybackend/src/commands/DeleteBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteBackendStorageCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackendStorageRequest, DeleteBackendStorageResponse } from "../models/models_0"; +import type { DeleteBackendStorageRequest, DeleteBackendStorageResponse } from "../models/models_0"; import { DeleteBackendStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/DeleteTokenCommand.ts b/clients/client-amplifybackend/src/commands/DeleteTokenCommand.ts index c0512a6c22358..1d4594cdc3e19 100644 --- a/clients/client-amplifybackend/src/commands/DeleteTokenCommand.ts +++ b/clients/client-amplifybackend/src/commands/DeleteTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTokenRequest, DeleteTokenResponse } from "../models/models_0"; +import type { DeleteTokenRequest, DeleteTokenResponse } from "../models/models_0"; import { DeleteToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/GenerateBackendAPIModelsCommand.ts b/clients/client-amplifybackend/src/commands/GenerateBackendAPIModelsCommand.ts index 217e00ee795be..cb11caa8fd94d 100644 --- a/clients/client-amplifybackend/src/commands/GenerateBackendAPIModelsCommand.ts +++ b/clients/client-amplifybackend/src/commands/GenerateBackendAPIModelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateBackendAPIModelsRequest, GenerateBackendAPIModelsResponse } from "../models/models_0"; +import type { GenerateBackendAPIModelsRequest, GenerateBackendAPIModelsResponse } from "../models/models_0"; import { GenerateBackendAPIModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/GetBackendAPICommand.ts b/clients/client-amplifybackend/src/commands/GetBackendAPICommand.ts index 90772b3eee1df..6a75755c830cf 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendAPICommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendAPICommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackendAPIRequest, GetBackendAPIResponse } from "../models/models_0"; +import type { GetBackendAPIRequest, GetBackendAPIResponse } from "../models/models_0"; import { GetBackendAPI } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/GetBackendAPIModelsCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendAPIModelsCommand.ts index 4751676dde5a3..90129c851b5bc 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendAPIModelsCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendAPIModelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackendAPIModelsRequest, GetBackendAPIModelsResponse } from "../models/models_0"; +import type { GetBackendAPIModelsRequest, GetBackendAPIModelsResponse } from "../models/models_0"; import { GetBackendAPIModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/GetBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendAuthCommand.ts index 94b2b4791e408..70f1e9b3506be 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendAuthCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackendAuthRequest, GetBackendAuthResponse } from "../models/models_0"; +import type { GetBackendAuthRequest, GetBackendAuthResponse } from "../models/models_0"; import { GetBackendAuth } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/GetBackendCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendCommand.ts index 8c8cfec156754..ce399e746c6e8 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackendRequest, GetBackendResponse } from "../models/models_0"; +import type { GetBackendRequest, GetBackendResponse } from "../models/models_0"; import { GetBackend } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/GetBackendJobCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendJobCommand.ts index 50d6b06dc14fb..6818de530f964 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendJobCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackendJobRequest, GetBackendJobResponse } from "../models/models_0"; +import type { GetBackendJobRequest, GetBackendJobResponse } from "../models/models_0"; import { GetBackendJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/GetBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/GetBackendStorageCommand.ts index 74614303f07ca..d2043f94fafbb 100644 --- a/clients/client-amplifybackend/src/commands/GetBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetBackendStorageCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackendStorageRequest, GetBackendStorageResponse } from "../models/models_0"; +import type { GetBackendStorageRequest, GetBackendStorageResponse } from "../models/models_0"; import { GetBackendStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/GetTokenCommand.ts b/clients/client-amplifybackend/src/commands/GetTokenCommand.ts index 35167abb03b97..ea0572ca475be 100644 --- a/clients/client-amplifybackend/src/commands/GetTokenCommand.ts +++ b/clients/client-amplifybackend/src/commands/GetTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTokenRequest, GetTokenResponse } from "../models/models_0"; +import type { GetTokenRequest, GetTokenResponse } from "../models/models_0"; import { GetToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/ImportBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/ImportBackendAuthCommand.ts index 7c2e7a8a9fddd..dfbce5b47e138 100644 --- a/clients/client-amplifybackend/src/commands/ImportBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/ImportBackendAuthCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportBackendAuthRequest, ImportBackendAuthResponse } from "../models/models_0"; +import type { ImportBackendAuthRequest, ImportBackendAuthResponse } from "../models/models_0"; import { ImportBackendAuth } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/ImportBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/ImportBackendStorageCommand.ts index ecb6a2f2e46da..905f0b0012c04 100644 --- a/clients/client-amplifybackend/src/commands/ImportBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/ImportBackendStorageCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportBackendStorageRequest, ImportBackendStorageResponse } from "../models/models_0"; +import type { ImportBackendStorageRequest, ImportBackendStorageResponse } from "../models/models_0"; import { ImportBackendStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/ListBackendJobsCommand.ts b/clients/client-amplifybackend/src/commands/ListBackendJobsCommand.ts index 4a27a84396907..a717d8e199e37 100644 --- a/clients/client-amplifybackend/src/commands/ListBackendJobsCommand.ts +++ b/clients/client-amplifybackend/src/commands/ListBackendJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackendJobsRequest, ListBackendJobsResponse } from "../models/models_0"; +import type { ListBackendJobsRequest, ListBackendJobsResponse } from "../models/models_0"; import { ListBackendJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/ListS3BucketsCommand.ts b/clients/client-amplifybackend/src/commands/ListS3BucketsCommand.ts index 281477366cf34..21e2610035bb9 100644 --- a/clients/client-amplifybackend/src/commands/ListS3BucketsCommand.ts +++ b/clients/client-amplifybackend/src/commands/ListS3BucketsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListS3BucketsRequest, ListS3BucketsResponse } from "../models/models_0"; +import type { ListS3BucketsRequest, ListS3BucketsResponse } from "../models/models_0"; import { ListS3Buckets } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/RemoveAllBackendsCommand.ts b/clients/client-amplifybackend/src/commands/RemoveAllBackendsCommand.ts index 331f921410ed6..77951a01da90e 100644 --- a/clients/client-amplifybackend/src/commands/RemoveAllBackendsCommand.ts +++ b/clients/client-amplifybackend/src/commands/RemoveAllBackendsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveAllBackendsRequest, RemoveAllBackendsResponse } from "../models/models_0"; +import type { RemoveAllBackendsRequest, RemoveAllBackendsResponse } from "../models/models_0"; import { RemoveAllBackends } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/RemoveBackendConfigCommand.ts b/clients/client-amplifybackend/src/commands/RemoveBackendConfigCommand.ts index 6e2ba38265123..efa0c1f1247db 100644 --- a/clients/client-amplifybackend/src/commands/RemoveBackendConfigCommand.ts +++ b/clients/client-amplifybackend/src/commands/RemoveBackendConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveBackendConfigRequest, RemoveBackendConfigResponse } from "../models/models_0"; +import type { RemoveBackendConfigRequest, RemoveBackendConfigResponse } from "../models/models_0"; import { RemoveBackendConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendAPICommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendAPICommand.ts index c58ffb0079b68..e5df9b61544ca 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendAPICommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendAPICommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBackendAPIRequest, UpdateBackendAPIResponse } from "../models/models_0"; +import type { UpdateBackendAPIRequest, UpdateBackendAPIResponse } from "../models/models_0"; import { UpdateBackendAPI } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendAuthCommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendAuthCommand.ts index efe8c6fbe6229..024458178ed19 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendAuthCommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendAuthCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBackendAuthRequest, UpdateBackendAuthResponse } from "../models/models_0"; +import type { UpdateBackendAuthRequest, UpdateBackendAuthResponse } from "../models/models_0"; import { UpdateBackendAuth } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendConfigCommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendConfigCommand.ts index 032b2337292d7..3fdcc0779723f 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendConfigCommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBackendConfigRequest, UpdateBackendConfigResponse } from "../models/models_0"; +import type { UpdateBackendConfigRequest, UpdateBackendConfigResponse } from "../models/models_0"; import { UpdateBackendConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendJobCommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendJobCommand.ts index bb0a62dedbd54..abff4b9088149 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendJobCommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBackendJobRequest, UpdateBackendJobResponse } from "../models/models_0"; +import type { UpdateBackendJobRequest, UpdateBackendJobResponse } from "../models/models_0"; import { UpdateBackendJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/commands/UpdateBackendStorageCommand.ts b/clients/client-amplifybackend/src/commands/UpdateBackendStorageCommand.ts index 78971fd0193a1..cfd860bc7e239 100644 --- a/clients/client-amplifybackend/src/commands/UpdateBackendStorageCommand.ts +++ b/clients/client-amplifybackend/src/commands/UpdateBackendStorageCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient"; +import type { + AmplifyBackendClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyBackendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBackendStorageRequest, UpdateBackendStorageResponse } from "../models/models_0"; +import type { UpdateBackendStorageRequest, UpdateBackendStorageResponse } from "../models/models_0"; import { UpdateBackendStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifybackend/src/endpoint/EndpointParameters.ts b/clients/client-amplifybackend/src/endpoint/EndpointParameters.ts index 7914f7811b93e..640346efd0aa7 100644 --- a/clients/client-amplifybackend/src/endpoint/EndpointParameters.ts +++ b/clients/client-amplifybackend/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-amplifybackend/src/endpoint/endpointResolver.ts b/clients/client-amplifybackend/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-amplifybackend/src/endpoint/endpointResolver.ts +++ b/clients/client-amplifybackend/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-amplifybackend/src/extensionConfiguration.ts b/clients/client-amplifybackend/src/extensionConfiguration.ts index e87258a1008a6..f6d4949bdb367 100644 --- a/clients/client-amplifybackend/src/extensionConfiguration.ts +++ b/clients/client-amplifybackend/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-amplifybackend/src/models/AmplifyBackendServiceException.ts b/clients/client-amplifybackend/src/models/AmplifyBackendServiceException.ts index 9b3a9b3d035eb..f8afdf0bf8eb2 100644 --- a/clients/client-amplifybackend/src/models/AmplifyBackendServiceException.ts +++ b/clients/client-amplifybackend/src/models/AmplifyBackendServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-amplifybackend/src/models/errors.ts b/clients/client-amplifybackend/src/models/errors.ts index c3b7a2ae5bfca..f4c6ec83fad18 100644 --- a/clients/client-amplifybackend/src/models/errors.ts +++ b/clients/client-amplifybackend/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AmplifyBackendServiceException as __BaseException } from "./AmplifyBackendServiceException"; diff --git a/clients/client-amplifybackend/src/runtimeConfig.browser.ts b/clients/client-amplifybackend/src/runtimeConfig.browser.ts index c58a8689791ba..fbc899359fe16 100644 --- a/clients/client-amplifybackend/src/runtimeConfig.browser.ts +++ b/clients/client-amplifybackend/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AmplifyBackendClientConfig } from "./AmplifyBackendClient"; + +import type { AmplifyBackendClientConfig } from "./AmplifyBackendClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-amplifybackend/src/runtimeConfig.native.ts b/clients/client-amplifybackend/src/runtimeConfig.native.ts index 1b35fe9c639ba..90a3148b77189 100644 --- a/clients/client-amplifybackend/src/runtimeConfig.native.ts +++ b/clients/client-amplifybackend/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AmplifyBackendClientConfig } from "./AmplifyBackendClient"; +import type { AmplifyBackendClientConfig } from "./AmplifyBackendClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-amplifybackend/src/runtimeConfig.shared.ts b/clients/client-amplifybackend/src/runtimeConfig.shared.ts index 957e5d7f75330..7e03edefe1aec 100644 --- a/clients/client-amplifybackend/src/runtimeConfig.shared.ts +++ b/clients/client-amplifybackend/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AmplifyBackendClientConfig } from "./AmplifyBackendClient"; +import type { AmplifyBackendClientConfig } from "./AmplifyBackendClient"; import { defaultAmplifyBackendHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-amplifybackend/src/runtimeConfig.ts b/clients/client-amplifybackend/src/runtimeConfig.ts index 3cabd5ac6116e..37699f85fc826 100644 --- a/clients/client-amplifybackend/src/runtimeConfig.ts +++ b/clients/client-amplifybackend/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AmplifyBackendClientConfig } from "./AmplifyBackendClient"; + +import type { AmplifyBackendClientConfig } from "./AmplifyBackendClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-amplifybackend/src/runtimeExtensions.ts b/clients/client-amplifybackend/src/runtimeExtensions.ts index 9aa84201705f0..645fbbf2e46a0 100644 --- a/clients/client-amplifybackend/src/runtimeExtensions.ts +++ b/clients/client-amplifybackend/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AmplifyBackendExtensionConfiguration } from "./extensionConfiguration"; +import type { AmplifyBackendExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-amplifybackend/src/schemas/schemas_0.ts b/clients/client-amplifybackend/src/schemas/schemas_0.ts index 719aab4b0b4b0..6c3b9472ae1a2 100644 --- a/clients/client-amplifybackend/src/schemas/schemas_0.ts +++ b/clients/client-amplifybackend/src/schemas/schemas_0.ts @@ -336,7 +336,7 @@ const n0 = "com.amazonaws.amplifybackend"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AmplifyBackendServiceException as __AmplifyBackendServiceException } from "../models/AmplifyBackendServiceException"; import { diff --git a/clients/client-amplifyuibuilder/package.json b/clients/client-amplifyuibuilder/package.json index d71ec30018ba1..a716e223fd6b5 100644 --- a/clients/client-amplifyuibuilder/package.json +++ b/clients/client-amplifyuibuilder/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-amplifyuibuilder/src/AmplifyUIBuilder.ts b/clients/client-amplifyuibuilder/src/AmplifyUIBuilder.ts index efdd48b084d11..45aa9110fc2d9 100644 --- a/clients/client-amplifyuibuilder/src/AmplifyUIBuilder.ts +++ b/clients/client-amplifyuibuilder/src/AmplifyUIBuilder.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AmplifyUIBuilderClient, AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient"; +import { AmplifyUIBuilderClient } from "./AmplifyUIBuilderClient"; import { CreateComponentCommand, CreateComponentCommandInput, diff --git a/clients/client-amplifyuibuilder/src/AmplifyUIBuilderClient.ts b/clients/client-amplifyuibuilder/src/AmplifyUIBuilderClient.ts index 5366095e80631..372e16b16e50e 100644 --- a/clients/client-amplifyuibuilder/src/AmplifyUIBuilderClient.ts +++ b/clients/client-amplifyuibuilder/src/AmplifyUIBuilderClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAmplifyUIBuilderHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateComponentCommandInput, CreateComponentCommandOutput } from "./commands/CreateComponentCommand"; @@ -98,7 +107,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-amplifyuibuilder/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-amplifyuibuilder/src/auth/httpAuthExtensionConfiguration.ts index 2abc7c5262d85..923566f2af1b3 100644 --- a/clients/client-amplifyuibuilder/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-amplifyuibuilder/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AmplifyUIBuilderHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AmplifyUIBuilderHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-amplifyuibuilder/src/auth/httpAuthSchemeProvider.ts b/clients/client-amplifyuibuilder/src/auth/httpAuthSchemeProvider.ts index cd14de4bcbb1b..6d37b1f8270e0 100644 --- a/clients/client-amplifyuibuilder/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-amplifyuibuilder/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AmplifyUIBuilderClientConfig, AmplifyUIBuilderClientResolvedConfig } from "../AmplifyUIBuilderClient"; +import { type AmplifyUIBuilderClientResolvedConfig, AmplifyUIBuilderClientConfig } from "../AmplifyUIBuilderClient"; /** * @internal diff --git a/clients/client-amplifyuibuilder/src/commands/CreateComponentCommand.ts b/clients/client-amplifyuibuilder/src/commands/CreateComponentCommand.ts index 9b978e61d366a..1003f5979a236 100644 --- a/clients/client-amplifyuibuilder/src/commands/CreateComponentCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/CreateComponentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateComponentRequest, CreateComponentResponse } from "../models/models_0"; +import type { CreateComponentRequest, CreateComponentResponse } from "../models/models_0"; import { CreateComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/CreateFormCommand.ts b/clients/client-amplifyuibuilder/src/commands/CreateFormCommand.ts index cd359465e5e98..5028544898276 100644 --- a/clients/client-amplifyuibuilder/src/commands/CreateFormCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/CreateFormCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFormRequest, CreateFormResponse } from "../models/models_0"; +import type { CreateFormRequest, CreateFormResponse } from "../models/models_0"; import { CreateForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/CreateThemeCommand.ts b/clients/client-amplifyuibuilder/src/commands/CreateThemeCommand.ts index ea055230a4d95..d6cfe7d5abaae 100644 --- a/clients/client-amplifyuibuilder/src/commands/CreateThemeCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/CreateThemeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateThemeRequest, CreateThemeResponse } from "../models/models_0"; +import type { CreateThemeRequest, CreateThemeResponse } from "../models/models_0"; import { CreateTheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/DeleteComponentCommand.ts b/clients/client-amplifyuibuilder/src/commands/DeleteComponentCommand.ts index 5b7761b467636..1104c21bd4b87 100644 --- a/clients/client-amplifyuibuilder/src/commands/DeleteComponentCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/DeleteComponentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteComponentRequest } from "../models/models_0"; +import type { DeleteComponentRequest } from "../models/models_0"; import { DeleteComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/DeleteFormCommand.ts b/clients/client-amplifyuibuilder/src/commands/DeleteFormCommand.ts index 625d8529303ae..23e92034a2c3a 100644 --- a/clients/client-amplifyuibuilder/src/commands/DeleteFormCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/DeleteFormCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFormRequest } from "../models/models_0"; +import type { DeleteFormRequest } from "../models/models_0"; import { DeleteForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/DeleteThemeCommand.ts b/clients/client-amplifyuibuilder/src/commands/DeleteThemeCommand.ts index 2d49d58adabe0..041b7292bb38d 100644 --- a/clients/client-amplifyuibuilder/src/commands/DeleteThemeCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/DeleteThemeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteThemeRequest } from "../models/models_0"; +import type { DeleteThemeRequest } from "../models/models_0"; import { DeleteTheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/ExchangeCodeForTokenCommand.ts b/clients/client-amplifyuibuilder/src/commands/ExchangeCodeForTokenCommand.ts index ad5f8e7d4ce9c..17f342ee1d0f7 100644 --- a/clients/client-amplifyuibuilder/src/commands/ExchangeCodeForTokenCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ExchangeCodeForTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExchangeCodeForTokenRequest, ExchangeCodeForTokenResponse } from "../models/models_0"; +import type { ExchangeCodeForTokenRequest, ExchangeCodeForTokenResponse } from "../models/models_0"; import { ExchangeCodeForToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/ExportComponentsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ExportComponentsCommand.ts index 11c48fcb8e697..707535e1fa604 100644 --- a/clients/client-amplifyuibuilder/src/commands/ExportComponentsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ExportComponentsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportComponentsRequest, ExportComponentsResponse } from "../models/models_0"; +import type { ExportComponentsRequest, ExportComponentsResponse } from "../models/models_0"; import { ExportComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/ExportFormsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ExportFormsCommand.ts index 559957680c636..fd52150c22cd1 100644 --- a/clients/client-amplifyuibuilder/src/commands/ExportFormsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ExportFormsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportFormsRequest, ExportFormsResponse } from "../models/models_0"; +import type { ExportFormsRequest, ExportFormsResponse } from "../models/models_0"; import { ExportForms } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/ExportThemesCommand.ts b/clients/client-amplifyuibuilder/src/commands/ExportThemesCommand.ts index 72c3f113e917f..a7f92666ec04c 100644 --- a/clients/client-amplifyuibuilder/src/commands/ExportThemesCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ExportThemesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportThemesRequest, ExportThemesResponse } from "../models/models_0"; +import type { ExportThemesRequest, ExportThemesResponse } from "../models/models_0"; import { ExportThemes } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/GetCodegenJobCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetCodegenJobCommand.ts index 1d939a797392c..94774d6765de0 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetCodegenJobCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetCodegenJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCodegenJobRequest, GetCodegenJobResponse } from "../models/models_0"; +import type { GetCodegenJobRequest, GetCodegenJobResponse } from "../models/models_0"; import { GetCodegenJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/GetComponentCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetComponentCommand.ts index acf8fbca77ec3..b3cca4ce166b5 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetComponentCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetComponentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetComponentRequest, GetComponentResponse } from "../models/models_0"; +import type { GetComponentRequest, GetComponentResponse } from "../models/models_0"; import { GetComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/GetFormCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetFormCommand.ts index 3380cf769357b..a8fec3b033967 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetFormCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetFormCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFormRequest, GetFormResponse } from "../models/models_0"; +import type { GetFormRequest, GetFormResponse } from "../models/models_0"; import { GetForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/GetMetadataCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetMetadataCommand.ts index 2142fb88b6a7e..174b88f625f01 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetMetadataCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetMetadataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMetadataRequest, GetMetadataResponse } from "../models/models_0"; +import type { GetMetadataRequest, GetMetadataResponse } from "../models/models_0"; import { GetMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/GetThemeCommand.ts b/clients/client-amplifyuibuilder/src/commands/GetThemeCommand.ts index 3017371907747..050bd489d8e34 100644 --- a/clients/client-amplifyuibuilder/src/commands/GetThemeCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/GetThemeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetThemeRequest, GetThemeResponse } from "../models/models_0"; +import type { GetThemeRequest, GetThemeResponse } from "../models/models_0"; import { GetTheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/ListCodegenJobsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListCodegenJobsCommand.ts index f29edeb927e42..06b15882c92d1 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListCodegenJobsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListCodegenJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCodegenJobsRequest, ListCodegenJobsResponse } from "../models/models_0"; +import type { ListCodegenJobsRequest, ListCodegenJobsResponse } from "../models/models_0"; import { ListCodegenJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/ListComponentsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListComponentsCommand.ts index 8cfd29f3e0004..73b7571aea752 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListComponentsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListComponentsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; +import type { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; import { ListComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/ListFormsCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListFormsCommand.ts index d95fb7ea40bc2..971fc04b92651 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListFormsCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListFormsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFormsRequest, ListFormsResponse } from "../models/models_0"; +import type { ListFormsRequest, ListFormsResponse } from "../models/models_0"; import { ListForms } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/ListTagsForResourceCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListTagsForResourceCommand.ts index 9274c94923227..3139191ecb198 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/ListThemesCommand.ts b/clients/client-amplifyuibuilder/src/commands/ListThemesCommand.ts index 45fba85a7f121..5c308db007071 100644 --- a/clients/client-amplifyuibuilder/src/commands/ListThemesCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/ListThemesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListThemesRequest, ListThemesResponse } from "../models/models_0"; +import type { ListThemesRequest, ListThemesResponse } from "../models/models_0"; import { ListThemes } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/PutMetadataFlagCommand.ts b/clients/client-amplifyuibuilder/src/commands/PutMetadataFlagCommand.ts index 9fec4743a30aa..e1dbc3bc716d3 100644 --- a/clients/client-amplifyuibuilder/src/commands/PutMetadataFlagCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/PutMetadataFlagCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMetadataFlagRequest } from "../models/models_0"; +import type { PutMetadataFlagRequest } from "../models/models_0"; import { PutMetadataFlag } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/RefreshTokenCommand.ts b/clients/client-amplifyuibuilder/src/commands/RefreshTokenCommand.ts index e2c446260f506..1f2cc11c9a179 100644 --- a/clients/client-amplifyuibuilder/src/commands/RefreshTokenCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/RefreshTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RefreshTokenRequest, RefreshTokenResponse } from "../models/models_0"; +import type { RefreshTokenRequest, RefreshTokenResponse } from "../models/models_0"; import { RefreshToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/StartCodegenJobCommand.ts b/clients/client-amplifyuibuilder/src/commands/StartCodegenJobCommand.ts index 8e2b945bf2df9..33c7e547427c0 100644 --- a/clients/client-amplifyuibuilder/src/commands/StartCodegenJobCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/StartCodegenJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCodegenJobRequest, StartCodegenJobResponse } from "../models/models_0"; +import type { StartCodegenJobRequest, StartCodegenJobResponse } from "../models/models_0"; import { StartCodegenJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/TagResourceCommand.ts b/clients/client-amplifyuibuilder/src/commands/TagResourceCommand.ts index b3271eee7ecb3..9253d5b0074a2 100644 --- a/clients/client-amplifyuibuilder/src/commands/TagResourceCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/UntagResourceCommand.ts b/clients/client-amplifyuibuilder/src/commands/UntagResourceCommand.ts index 2e17946157a1c..4f7ba38edbb2b 100644 --- a/clients/client-amplifyuibuilder/src/commands/UntagResourceCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/UpdateComponentCommand.ts b/clients/client-amplifyuibuilder/src/commands/UpdateComponentCommand.ts index 04c1adb76e10e..8ffb3677f8406 100644 --- a/clients/client-amplifyuibuilder/src/commands/UpdateComponentCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/UpdateComponentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateComponentRequest, UpdateComponentResponse } from "../models/models_0"; +import type { UpdateComponentRequest, UpdateComponentResponse } from "../models/models_0"; import { UpdateComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/UpdateFormCommand.ts b/clients/client-amplifyuibuilder/src/commands/UpdateFormCommand.ts index dd1febef25dc2..51c69e5432e3d 100644 --- a/clients/client-amplifyuibuilder/src/commands/UpdateFormCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/UpdateFormCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFormRequest, UpdateFormResponse } from "../models/models_0"; +import type { UpdateFormRequest, UpdateFormResponse } from "../models/models_0"; import { UpdateForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/commands/UpdateThemeCommand.ts b/clients/client-amplifyuibuilder/src/commands/UpdateThemeCommand.ts index ee7c9a465e7d4..70a58863d7524 100644 --- a/clients/client-amplifyuibuilder/src/commands/UpdateThemeCommand.ts +++ b/clients/client-amplifyuibuilder/src/commands/UpdateThemeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AmplifyUIBuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyUIBuilderClient"; +import type { + AmplifyUIBuilderClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AmplifyUIBuilderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateThemeRequest, UpdateThemeResponse } from "../models/models_0"; +import type { UpdateThemeRequest, UpdateThemeResponse } from "../models/models_0"; import { UpdateTheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-amplifyuibuilder/src/endpoint/EndpointParameters.ts b/clients/client-amplifyuibuilder/src/endpoint/EndpointParameters.ts index 04101e4a453ef..9374c6c4ce4f2 100644 --- a/clients/client-amplifyuibuilder/src/endpoint/EndpointParameters.ts +++ b/clients/client-amplifyuibuilder/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-amplifyuibuilder/src/endpoint/endpointResolver.ts b/clients/client-amplifyuibuilder/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-amplifyuibuilder/src/endpoint/endpointResolver.ts +++ b/clients/client-amplifyuibuilder/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-amplifyuibuilder/src/extensionConfiguration.ts b/clients/client-amplifyuibuilder/src/extensionConfiguration.ts index 2863e502433d7..cb1a8f4de88b0 100644 --- a/clients/client-amplifyuibuilder/src/extensionConfiguration.ts +++ b/clients/client-amplifyuibuilder/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-amplifyuibuilder/src/models/AmplifyUIBuilderServiceException.ts b/clients/client-amplifyuibuilder/src/models/AmplifyUIBuilderServiceException.ts index 2a1cbfe256cf1..ccace54ee4b52 100644 --- a/clients/client-amplifyuibuilder/src/models/AmplifyUIBuilderServiceException.ts +++ b/clients/client-amplifyuibuilder/src/models/AmplifyUIBuilderServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-amplifyuibuilder/src/models/errors.ts b/clients/client-amplifyuibuilder/src/models/errors.ts index 2d17fb819bdbb..0b7ff2c1834bc 100644 --- a/clients/client-amplifyuibuilder/src/models/errors.ts +++ b/clients/client-amplifyuibuilder/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AmplifyUIBuilderServiceException as __BaseException } from "./AmplifyUIBuilderServiceException"; diff --git a/clients/client-amplifyuibuilder/src/pagination/ExportComponentsPaginator.ts b/clients/client-amplifyuibuilder/src/pagination/ExportComponentsPaginator.ts index d0d4aee7108a8..731be8fdf4b48 100644 --- a/clients/client-amplifyuibuilder/src/pagination/ExportComponentsPaginator.ts +++ b/clients/client-amplifyuibuilder/src/pagination/ExportComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient"; import { diff --git a/clients/client-amplifyuibuilder/src/pagination/ExportFormsPaginator.ts b/clients/client-amplifyuibuilder/src/pagination/ExportFormsPaginator.ts index 6df1360bd44cc..9db177bd6c555 100644 --- a/clients/client-amplifyuibuilder/src/pagination/ExportFormsPaginator.ts +++ b/clients/client-amplifyuibuilder/src/pagination/ExportFormsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient"; import { ExportFormsCommand, ExportFormsCommandInput, ExportFormsCommandOutput } from "../commands/ExportFormsCommand"; diff --git a/clients/client-amplifyuibuilder/src/pagination/ExportThemesPaginator.ts b/clients/client-amplifyuibuilder/src/pagination/ExportThemesPaginator.ts index ef7a8efb809de..af46a42071f04 100644 --- a/clients/client-amplifyuibuilder/src/pagination/ExportThemesPaginator.ts +++ b/clients/client-amplifyuibuilder/src/pagination/ExportThemesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient"; import { diff --git a/clients/client-amplifyuibuilder/src/pagination/Interfaces.ts b/clients/client-amplifyuibuilder/src/pagination/Interfaces.ts index eb3c701f7b1ce..cfe2ad7a94f20 100644 --- a/clients/client-amplifyuibuilder/src/pagination/Interfaces.ts +++ b/clients/client-amplifyuibuilder/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient"; diff --git a/clients/client-amplifyuibuilder/src/pagination/ListCodegenJobsPaginator.ts b/clients/client-amplifyuibuilder/src/pagination/ListCodegenJobsPaginator.ts index 1491819a821b7..dfa34e2dd0ea5 100644 --- a/clients/client-amplifyuibuilder/src/pagination/ListCodegenJobsPaginator.ts +++ b/clients/client-amplifyuibuilder/src/pagination/ListCodegenJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient"; import { diff --git a/clients/client-amplifyuibuilder/src/pagination/ListComponentsPaginator.ts b/clients/client-amplifyuibuilder/src/pagination/ListComponentsPaginator.ts index 54af324ecbf73..6d32588834f43 100644 --- a/clients/client-amplifyuibuilder/src/pagination/ListComponentsPaginator.ts +++ b/clients/client-amplifyuibuilder/src/pagination/ListComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient"; import { diff --git a/clients/client-amplifyuibuilder/src/pagination/ListFormsPaginator.ts b/clients/client-amplifyuibuilder/src/pagination/ListFormsPaginator.ts index 66edd9ad6fc47..bea1bfe695307 100644 --- a/clients/client-amplifyuibuilder/src/pagination/ListFormsPaginator.ts +++ b/clients/client-amplifyuibuilder/src/pagination/ListFormsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient"; import { ListFormsCommand, ListFormsCommandInput, ListFormsCommandOutput } from "../commands/ListFormsCommand"; diff --git a/clients/client-amplifyuibuilder/src/pagination/ListThemesPaginator.ts b/clients/client-amplifyuibuilder/src/pagination/ListThemesPaginator.ts index aaee36bbec0bf..0493745714432 100644 --- a/clients/client-amplifyuibuilder/src/pagination/ListThemesPaginator.ts +++ b/clients/client-amplifyuibuilder/src/pagination/ListThemesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AmplifyUIBuilderClient } from "../AmplifyUIBuilderClient"; import { ListThemesCommand, ListThemesCommandInput, ListThemesCommandOutput } from "../commands/ListThemesCommand"; diff --git a/clients/client-amplifyuibuilder/src/runtimeConfig.browser.ts b/clients/client-amplifyuibuilder/src/runtimeConfig.browser.ts index 8f930816f144e..7107bc4679c9a 100644 --- a/clients/client-amplifyuibuilder/src/runtimeConfig.browser.ts +++ b/clients/client-amplifyuibuilder/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient"; + +import type { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-amplifyuibuilder/src/runtimeConfig.native.ts b/clients/client-amplifyuibuilder/src/runtimeConfig.native.ts index 02f7566a6920b..f3395a0e805e4 100644 --- a/clients/client-amplifyuibuilder/src/runtimeConfig.native.ts +++ b/clients/client-amplifyuibuilder/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient"; +import type { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-amplifyuibuilder/src/runtimeConfig.shared.ts b/clients/client-amplifyuibuilder/src/runtimeConfig.shared.ts index 18b7f1a63ed79..22fd4b91b574b 100644 --- a/clients/client-amplifyuibuilder/src/runtimeConfig.shared.ts +++ b/clients/client-amplifyuibuilder/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient"; +import type { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient"; import { defaultAmplifyUIBuilderHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-amplifyuibuilder/src/runtimeConfig.ts b/clients/client-amplifyuibuilder/src/runtimeConfig.ts index bbaeddafc1269..9253f36d9262f 100644 --- a/clients/client-amplifyuibuilder/src/runtimeConfig.ts +++ b/clients/client-amplifyuibuilder/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient"; + +import type { AmplifyUIBuilderClientConfig } from "./AmplifyUIBuilderClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-amplifyuibuilder/src/runtimeExtensions.ts b/clients/client-amplifyuibuilder/src/runtimeExtensions.ts index 0611a1692e16a..5bdcef7620895 100644 --- a/clients/client-amplifyuibuilder/src/runtimeExtensions.ts +++ b/clients/client-amplifyuibuilder/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AmplifyUIBuilderExtensionConfiguration } from "./extensionConfiguration"; +import type { AmplifyUIBuilderExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-amplifyuibuilder/src/schemas/schemas_0.ts b/clients/client-amplifyuibuilder/src/schemas/schemas_0.ts index 021ea0d5d1a87..59682af4bd5f3 100644 --- a/clients/client-amplifyuibuilder/src/schemas/schemas_0.ts +++ b/clients/client-amplifyuibuilder/src/schemas/schemas_0.ts @@ -378,7 +378,7 @@ const n0 = "com.amazonaws.amplifyuibuilder"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-api-gateway/package.json b/clients/client-api-gateway/package.json index c095ad4212389..4d0d0761f6b1e 100644 --- a/clients/client-api-gateway/package.json +++ b/clients/client-api-gateway/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-api-gateway/src/APIGateway.ts b/clients/client-api-gateway/src/APIGateway.ts index 5abf650bc2812..a1879534d73cc 100644 --- a/clients/client-api-gateway/src/APIGateway.ts +++ b/clients/client-api-gateway/src/APIGateway.ts @@ -1,511 +1,583 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { APIGatewayClient, APIGatewayClientConfig } from "./APIGatewayClient"; +import { APIGatewayClient } from "./APIGatewayClient"; import { + type CreateApiKeyCommandInput, + type CreateApiKeyCommandOutput, CreateApiKeyCommand, - CreateApiKeyCommandInput, - CreateApiKeyCommandOutput, } from "./commands/CreateApiKeyCommand"; import { + type CreateAuthorizerCommandInput, + type CreateAuthorizerCommandOutput, CreateAuthorizerCommand, - CreateAuthorizerCommandInput, - CreateAuthorizerCommandOutput, } from "./commands/CreateAuthorizerCommand"; import { + type CreateBasePathMappingCommandInput, + type CreateBasePathMappingCommandOutput, CreateBasePathMappingCommand, - CreateBasePathMappingCommandInput, - CreateBasePathMappingCommandOutput, } from "./commands/CreateBasePathMappingCommand"; import { + type CreateDeploymentCommandInput, + type CreateDeploymentCommandOutput, CreateDeploymentCommand, - CreateDeploymentCommandInput, - CreateDeploymentCommandOutput, } from "./commands/CreateDeploymentCommand"; import { + type CreateDocumentationPartCommandInput, + type CreateDocumentationPartCommandOutput, CreateDocumentationPartCommand, - CreateDocumentationPartCommandInput, - CreateDocumentationPartCommandOutput, } from "./commands/CreateDocumentationPartCommand"; import { + type CreateDocumentationVersionCommandInput, + type CreateDocumentationVersionCommandOutput, CreateDocumentationVersionCommand, - CreateDocumentationVersionCommandInput, - CreateDocumentationVersionCommandOutput, } from "./commands/CreateDocumentationVersionCommand"; import { + type CreateDomainNameAccessAssociationCommandInput, + type CreateDomainNameAccessAssociationCommandOutput, CreateDomainNameAccessAssociationCommand, - CreateDomainNameAccessAssociationCommandInput, - CreateDomainNameAccessAssociationCommandOutput, } from "./commands/CreateDomainNameAccessAssociationCommand"; import { + type CreateDomainNameCommandInput, + type CreateDomainNameCommandOutput, CreateDomainNameCommand, - CreateDomainNameCommandInput, - CreateDomainNameCommandOutput, } from "./commands/CreateDomainNameCommand"; -import { CreateModelCommand, CreateModelCommandInput, CreateModelCommandOutput } from "./commands/CreateModelCommand"; import { + type CreateModelCommandInput, + type CreateModelCommandOutput, + CreateModelCommand, +} from "./commands/CreateModelCommand"; +import { + type CreateRequestValidatorCommandInput, + type CreateRequestValidatorCommandOutput, CreateRequestValidatorCommand, - CreateRequestValidatorCommandInput, - CreateRequestValidatorCommandOutput, } from "./commands/CreateRequestValidatorCommand"; import { + type CreateResourceCommandInput, + type CreateResourceCommandOutput, CreateResourceCommand, - CreateResourceCommandInput, - CreateResourceCommandOutput, } from "./commands/CreateResourceCommand"; import { + type CreateRestApiCommandInput, + type CreateRestApiCommandOutput, CreateRestApiCommand, - CreateRestApiCommandInput, - CreateRestApiCommandOutput, } from "./commands/CreateRestApiCommand"; -import { CreateStageCommand, CreateStageCommandInput, CreateStageCommandOutput } from "./commands/CreateStageCommand"; import { + type CreateStageCommandInput, + type CreateStageCommandOutput, + CreateStageCommand, +} from "./commands/CreateStageCommand"; +import { + type CreateUsagePlanCommandInput, + type CreateUsagePlanCommandOutput, CreateUsagePlanCommand, - CreateUsagePlanCommandInput, - CreateUsagePlanCommandOutput, } from "./commands/CreateUsagePlanCommand"; import { + type CreateUsagePlanKeyCommandInput, + type CreateUsagePlanKeyCommandOutput, CreateUsagePlanKeyCommand, - CreateUsagePlanKeyCommandInput, - CreateUsagePlanKeyCommandOutput, } from "./commands/CreateUsagePlanKeyCommand"; import { + type CreateVpcLinkCommandInput, + type CreateVpcLinkCommandOutput, CreateVpcLinkCommand, - CreateVpcLinkCommandInput, - CreateVpcLinkCommandOutput, } from "./commands/CreateVpcLinkCommand"; import { + type DeleteApiKeyCommandInput, + type DeleteApiKeyCommandOutput, DeleteApiKeyCommand, - DeleteApiKeyCommandInput, - DeleteApiKeyCommandOutput, } from "./commands/DeleteApiKeyCommand"; import { + type DeleteAuthorizerCommandInput, + type DeleteAuthorizerCommandOutput, DeleteAuthorizerCommand, - DeleteAuthorizerCommandInput, - DeleteAuthorizerCommandOutput, } from "./commands/DeleteAuthorizerCommand"; import { + type DeleteBasePathMappingCommandInput, + type DeleteBasePathMappingCommandOutput, DeleteBasePathMappingCommand, - DeleteBasePathMappingCommandInput, - DeleteBasePathMappingCommandOutput, } from "./commands/DeleteBasePathMappingCommand"; import { + type DeleteClientCertificateCommandInput, + type DeleteClientCertificateCommandOutput, DeleteClientCertificateCommand, - DeleteClientCertificateCommandInput, - DeleteClientCertificateCommandOutput, } from "./commands/DeleteClientCertificateCommand"; import { + type DeleteDeploymentCommandInput, + type DeleteDeploymentCommandOutput, DeleteDeploymentCommand, - DeleteDeploymentCommandInput, - DeleteDeploymentCommandOutput, } from "./commands/DeleteDeploymentCommand"; import { + type DeleteDocumentationPartCommandInput, + type DeleteDocumentationPartCommandOutput, DeleteDocumentationPartCommand, - DeleteDocumentationPartCommandInput, - DeleteDocumentationPartCommandOutput, } from "./commands/DeleteDocumentationPartCommand"; import { + type DeleteDocumentationVersionCommandInput, + type DeleteDocumentationVersionCommandOutput, DeleteDocumentationVersionCommand, - DeleteDocumentationVersionCommandInput, - DeleteDocumentationVersionCommandOutput, } from "./commands/DeleteDocumentationVersionCommand"; import { + type DeleteDomainNameAccessAssociationCommandInput, + type DeleteDomainNameAccessAssociationCommandOutput, DeleteDomainNameAccessAssociationCommand, - DeleteDomainNameAccessAssociationCommandInput, - DeleteDomainNameAccessAssociationCommandOutput, } from "./commands/DeleteDomainNameAccessAssociationCommand"; import { + type DeleteDomainNameCommandInput, + type DeleteDomainNameCommandOutput, DeleteDomainNameCommand, - DeleteDomainNameCommandInput, - DeleteDomainNameCommandOutput, } from "./commands/DeleteDomainNameCommand"; import { + type DeleteGatewayResponseCommandInput, + type DeleteGatewayResponseCommandOutput, DeleteGatewayResponseCommand, - DeleteGatewayResponseCommandInput, - DeleteGatewayResponseCommandOutput, } from "./commands/DeleteGatewayResponseCommand"; import { + type DeleteIntegrationCommandInput, + type DeleteIntegrationCommandOutput, DeleteIntegrationCommand, - DeleteIntegrationCommandInput, - DeleteIntegrationCommandOutput, } from "./commands/DeleteIntegrationCommand"; import { + type DeleteIntegrationResponseCommandInput, + type DeleteIntegrationResponseCommandOutput, DeleteIntegrationResponseCommand, - DeleteIntegrationResponseCommandInput, - DeleteIntegrationResponseCommandOutput, } from "./commands/DeleteIntegrationResponseCommand"; import { + type DeleteMethodCommandInput, + type DeleteMethodCommandOutput, DeleteMethodCommand, - DeleteMethodCommandInput, - DeleteMethodCommandOutput, } from "./commands/DeleteMethodCommand"; import { + type DeleteMethodResponseCommandInput, + type DeleteMethodResponseCommandOutput, DeleteMethodResponseCommand, - DeleteMethodResponseCommandInput, - DeleteMethodResponseCommandOutput, } from "./commands/DeleteMethodResponseCommand"; -import { DeleteModelCommand, DeleteModelCommandInput, DeleteModelCommandOutput } from "./commands/DeleteModelCommand"; import { + type DeleteModelCommandInput, + type DeleteModelCommandOutput, + DeleteModelCommand, +} from "./commands/DeleteModelCommand"; +import { + type DeleteRequestValidatorCommandInput, + type DeleteRequestValidatorCommandOutput, DeleteRequestValidatorCommand, - DeleteRequestValidatorCommandInput, - DeleteRequestValidatorCommandOutput, } from "./commands/DeleteRequestValidatorCommand"; import { + type DeleteResourceCommandInput, + type DeleteResourceCommandOutput, DeleteResourceCommand, - DeleteResourceCommandInput, - DeleteResourceCommandOutput, } from "./commands/DeleteResourceCommand"; import { + type DeleteRestApiCommandInput, + type DeleteRestApiCommandOutput, DeleteRestApiCommand, - DeleteRestApiCommandInput, - DeleteRestApiCommandOutput, } from "./commands/DeleteRestApiCommand"; -import { DeleteStageCommand, DeleteStageCommandInput, DeleteStageCommandOutput } from "./commands/DeleteStageCommand"; import { + type DeleteStageCommandInput, + type DeleteStageCommandOutput, + DeleteStageCommand, +} from "./commands/DeleteStageCommand"; +import { + type DeleteUsagePlanCommandInput, + type DeleteUsagePlanCommandOutput, DeleteUsagePlanCommand, - DeleteUsagePlanCommandInput, - DeleteUsagePlanCommandOutput, } from "./commands/DeleteUsagePlanCommand"; import { + type DeleteUsagePlanKeyCommandInput, + type DeleteUsagePlanKeyCommandOutput, DeleteUsagePlanKeyCommand, - DeleteUsagePlanKeyCommandInput, - DeleteUsagePlanKeyCommandOutput, } from "./commands/DeleteUsagePlanKeyCommand"; import { + type DeleteVpcLinkCommandInput, + type DeleteVpcLinkCommandOutput, DeleteVpcLinkCommand, - DeleteVpcLinkCommandInput, - DeleteVpcLinkCommandOutput, } from "./commands/DeleteVpcLinkCommand"; import { + type FlushStageAuthorizersCacheCommandInput, + type FlushStageAuthorizersCacheCommandOutput, FlushStageAuthorizersCacheCommand, - FlushStageAuthorizersCacheCommandInput, - FlushStageAuthorizersCacheCommandOutput, } from "./commands/FlushStageAuthorizersCacheCommand"; import { + type FlushStageCacheCommandInput, + type FlushStageCacheCommandOutput, FlushStageCacheCommand, - FlushStageCacheCommandInput, - FlushStageCacheCommandOutput, } from "./commands/FlushStageCacheCommand"; import { + type GenerateClientCertificateCommandInput, + type GenerateClientCertificateCommandOutput, GenerateClientCertificateCommand, - GenerateClientCertificateCommandInput, - GenerateClientCertificateCommandOutput, } from "./commands/GenerateClientCertificateCommand"; -import { GetAccountCommand, GetAccountCommandInput, GetAccountCommandOutput } from "./commands/GetAccountCommand"; -import { GetApiKeyCommand, GetApiKeyCommandInput, GetApiKeyCommandOutput } from "./commands/GetApiKeyCommand"; -import { GetApiKeysCommand, GetApiKeysCommandInput, GetApiKeysCommandOutput } from "./commands/GetApiKeysCommand"; import { + type GetAccountCommandInput, + type GetAccountCommandOutput, + GetAccountCommand, +} from "./commands/GetAccountCommand"; +import { type GetApiKeyCommandInput, type GetApiKeyCommandOutput, GetApiKeyCommand } from "./commands/GetApiKeyCommand"; +import { + type GetApiKeysCommandInput, + type GetApiKeysCommandOutput, + GetApiKeysCommand, +} from "./commands/GetApiKeysCommand"; +import { + type GetAuthorizerCommandInput, + type GetAuthorizerCommandOutput, GetAuthorizerCommand, - GetAuthorizerCommandInput, - GetAuthorizerCommandOutput, } from "./commands/GetAuthorizerCommand"; import { + type GetAuthorizersCommandInput, + type GetAuthorizersCommandOutput, GetAuthorizersCommand, - GetAuthorizersCommandInput, - GetAuthorizersCommandOutput, } from "./commands/GetAuthorizersCommand"; import { + type GetBasePathMappingCommandInput, + type GetBasePathMappingCommandOutput, GetBasePathMappingCommand, - GetBasePathMappingCommandInput, - GetBasePathMappingCommandOutput, } from "./commands/GetBasePathMappingCommand"; import { + type GetBasePathMappingsCommandInput, + type GetBasePathMappingsCommandOutput, GetBasePathMappingsCommand, - GetBasePathMappingsCommandInput, - GetBasePathMappingsCommandOutput, } from "./commands/GetBasePathMappingsCommand"; import { + type GetClientCertificateCommandInput, + type GetClientCertificateCommandOutput, GetClientCertificateCommand, - GetClientCertificateCommandInput, - GetClientCertificateCommandOutput, } from "./commands/GetClientCertificateCommand"; import { + type GetClientCertificatesCommandInput, + type GetClientCertificatesCommandOutput, GetClientCertificatesCommand, - GetClientCertificatesCommandInput, - GetClientCertificatesCommandOutput, } from "./commands/GetClientCertificatesCommand"; import { + type GetDeploymentCommandInput, + type GetDeploymentCommandOutput, GetDeploymentCommand, - GetDeploymentCommandInput, - GetDeploymentCommandOutput, } from "./commands/GetDeploymentCommand"; import { + type GetDeploymentsCommandInput, + type GetDeploymentsCommandOutput, GetDeploymentsCommand, - GetDeploymentsCommandInput, - GetDeploymentsCommandOutput, } from "./commands/GetDeploymentsCommand"; import { + type GetDocumentationPartCommandInput, + type GetDocumentationPartCommandOutput, GetDocumentationPartCommand, - GetDocumentationPartCommandInput, - GetDocumentationPartCommandOutput, } from "./commands/GetDocumentationPartCommand"; import { + type GetDocumentationPartsCommandInput, + type GetDocumentationPartsCommandOutput, GetDocumentationPartsCommand, - GetDocumentationPartsCommandInput, - GetDocumentationPartsCommandOutput, } from "./commands/GetDocumentationPartsCommand"; import { + type GetDocumentationVersionCommandInput, + type GetDocumentationVersionCommandOutput, GetDocumentationVersionCommand, - GetDocumentationVersionCommandInput, - GetDocumentationVersionCommandOutput, } from "./commands/GetDocumentationVersionCommand"; import { + type GetDocumentationVersionsCommandInput, + type GetDocumentationVersionsCommandOutput, GetDocumentationVersionsCommand, - GetDocumentationVersionsCommandInput, - GetDocumentationVersionsCommandOutput, } from "./commands/GetDocumentationVersionsCommand"; import { + type GetDomainNameAccessAssociationsCommandInput, + type GetDomainNameAccessAssociationsCommandOutput, GetDomainNameAccessAssociationsCommand, - GetDomainNameAccessAssociationsCommandInput, - GetDomainNameAccessAssociationsCommandOutput, } from "./commands/GetDomainNameAccessAssociationsCommand"; import { + type GetDomainNameCommandInput, + type GetDomainNameCommandOutput, GetDomainNameCommand, - GetDomainNameCommandInput, - GetDomainNameCommandOutput, } from "./commands/GetDomainNameCommand"; import { + type GetDomainNamesCommandInput, + type GetDomainNamesCommandOutput, GetDomainNamesCommand, - GetDomainNamesCommandInput, - GetDomainNamesCommandOutput, } from "./commands/GetDomainNamesCommand"; -import { GetExportCommand, GetExportCommandInput, GetExportCommandOutput } from "./commands/GetExportCommand"; +import { type GetExportCommandInput, type GetExportCommandOutput, GetExportCommand } from "./commands/GetExportCommand"; import { + type GetGatewayResponseCommandInput, + type GetGatewayResponseCommandOutput, GetGatewayResponseCommand, - GetGatewayResponseCommandInput, - GetGatewayResponseCommandOutput, } from "./commands/GetGatewayResponseCommand"; import { + type GetGatewayResponsesCommandInput, + type GetGatewayResponsesCommandOutput, GetGatewayResponsesCommand, - GetGatewayResponsesCommandInput, - GetGatewayResponsesCommandOutput, } from "./commands/GetGatewayResponsesCommand"; import { + type GetIntegrationCommandInput, + type GetIntegrationCommandOutput, GetIntegrationCommand, - GetIntegrationCommandInput, - GetIntegrationCommandOutput, } from "./commands/GetIntegrationCommand"; import { + type GetIntegrationResponseCommandInput, + type GetIntegrationResponseCommandOutput, GetIntegrationResponseCommand, - GetIntegrationResponseCommandInput, - GetIntegrationResponseCommandOutput, } from "./commands/GetIntegrationResponseCommand"; -import { GetMethodCommand, GetMethodCommandInput, GetMethodCommandOutput } from "./commands/GetMethodCommand"; +import { type GetMethodCommandInput, type GetMethodCommandOutput, GetMethodCommand } from "./commands/GetMethodCommand"; import { + type GetMethodResponseCommandInput, + type GetMethodResponseCommandOutput, GetMethodResponseCommand, - GetMethodResponseCommandInput, - GetMethodResponseCommandOutput, } from "./commands/GetMethodResponseCommand"; -import { GetModelCommand, GetModelCommandInput, GetModelCommandOutput } from "./commands/GetModelCommand"; -import { GetModelsCommand, GetModelsCommandInput, GetModelsCommandOutput } from "./commands/GetModelsCommand"; +import { type GetModelCommandInput, type GetModelCommandOutput, GetModelCommand } from "./commands/GetModelCommand"; +import { type GetModelsCommandInput, type GetModelsCommandOutput, GetModelsCommand } from "./commands/GetModelsCommand"; import { + type GetModelTemplateCommandInput, + type GetModelTemplateCommandOutput, GetModelTemplateCommand, - GetModelTemplateCommandInput, - GetModelTemplateCommandOutput, } from "./commands/GetModelTemplateCommand"; import { + type GetRequestValidatorCommandInput, + type GetRequestValidatorCommandOutput, GetRequestValidatorCommand, - GetRequestValidatorCommandInput, - GetRequestValidatorCommandOutput, } from "./commands/GetRequestValidatorCommand"; import { + type GetRequestValidatorsCommandInput, + type GetRequestValidatorsCommandOutput, GetRequestValidatorsCommand, - GetRequestValidatorsCommandInput, - GetRequestValidatorsCommandOutput, } from "./commands/GetRequestValidatorsCommand"; -import { GetResourceCommand, GetResourceCommandInput, GetResourceCommandOutput } from "./commands/GetResourceCommand"; import { + type GetResourceCommandInput, + type GetResourceCommandOutput, + GetResourceCommand, +} from "./commands/GetResourceCommand"; +import { + type GetResourcesCommandInput, + type GetResourcesCommandOutput, GetResourcesCommand, - GetResourcesCommandInput, - GetResourcesCommandOutput, } from "./commands/GetResourcesCommand"; -import { GetRestApiCommand, GetRestApiCommandInput, GetRestApiCommandOutput } from "./commands/GetRestApiCommand"; -import { GetRestApisCommand, GetRestApisCommandInput, GetRestApisCommandOutput } from "./commands/GetRestApisCommand"; -import { GetSdkCommand, GetSdkCommandInput, GetSdkCommandOutput } from "./commands/GetSdkCommand"; -import { GetSdkTypeCommand, GetSdkTypeCommandInput, GetSdkTypeCommandOutput } from "./commands/GetSdkTypeCommand"; -import { GetSdkTypesCommand, GetSdkTypesCommandInput, GetSdkTypesCommandOutput } from "./commands/GetSdkTypesCommand"; -import { GetStageCommand, GetStageCommandInput, GetStageCommandOutput } from "./commands/GetStageCommand"; -import { GetStagesCommand, GetStagesCommandInput, GetStagesCommandOutput } from "./commands/GetStagesCommand"; -import { GetTagsCommand, GetTagsCommandInput, GetTagsCommandOutput } from "./commands/GetTagsCommand"; -import { GetUsageCommand, GetUsageCommandInput, GetUsageCommandOutput } from "./commands/GetUsageCommand"; import { + type GetRestApiCommandInput, + type GetRestApiCommandOutput, + GetRestApiCommand, +} from "./commands/GetRestApiCommand"; +import { + type GetRestApisCommandInput, + type GetRestApisCommandOutput, + GetRestApisCommand, +} from "./commands/GetRestApisCommand"; +import { type GetSdkCommandInput, type GetSdkCommandOutput, GetSdkCommand } from "./commands/GetSdkCommand"; +import { + type GetSdkTypeCommandInput, + type GetSdkTypeCommandOutput, + GetSdkTypeCommand, +} from "./commands/GetSdkTypeCommand"; +import { + type GetSdkTypesCommandInput, + type GetSdkTypesCommandOutput, + GetSdkTypesCommand, +} from "./commands/GetSdkTypesCommand"; +import { type GetStageCommandInput, type GetStageCommandOutput, GetStageCommand } from "./commands/GetStageCommand"; +import { type GetStagesCommandInput, type GetStagesCommandOutput, GetStagesCommand } from "./commands/GetStagesCommand"; +import { type GetTagsCommandInput, type GetTagsCommandOutput, GetTagsCommand } from "./commands/GetTagsCommand"; +import { type GetUsageCommandInput, type GetUsageCommandOutput, GetUsageCommand } from "./commands/GetUsageCommand"; +import { + type GetUsagePlanCommandInput, + type GetUsagePlanCommandOutput, GetUsagePlanCommand, - GetUsagePlanCommandInput, - GetUsagePlanCommandOutput, } from "./commands/GetUsagePlanCommand"; import { + type GetUsagePlanKeyCommandInput, + type GetUsagePlanKeyCommandOutput, GetUsagePlanKeyCommand, - GetUsagePlanKeyCommandInput, - GetUsagePlanKeyCommandOutput, } from "./commands/GetUsagePlanKeyCommand"; import { + type GetUsagePlanKeysCommandInput, + type GetUsagePlanKeysCommandOutput, GetUsagePlanKeysCommand, - GetUsagePlanKeysCommandInput, - GetUsagePlanKeysCommandOutput, } from "./commands/GetUsagePlanKeysCommand"; import { + type GetUsagePlansCommandInput, + type GetUsagePlansCommandOutput, GetUsagePlansCommand, - GetUsagePlansCommandInput, - GetUsagePlansCommandOutput, } from "./commands/GetUsagePlansCommand"; -import { GetVpcLinkCommand, GetVpcLinkCommandInput, GetVpcLinkCommandOutput } from "./commands/GetVpcLinkCommand"; -import { GetVpcLinksCommand, GetVpcLinksCommandInput, GetVpcLinksCommandOutput } from "./commands/GetVpcLinksCommand"; import { + type GetVpcLinkCommandInput, + type GetVpcLinkCommandOutput, + GetVpcLinkCommand, +} from "./commands/GetVpcLinkCommand"; +import { + type GetVpcLinksCommandInput, + type GetVpcLinksCommandOutput, + GetVpcLinksCommand, +} from "./commands/GetVpcLinksCommand"; +import { + type ImportApiKeysCommandInput, + type ImportApiKeysCommandOutput, ImportApiKeysCommand, - ImportApiKeysCommandInput, - ImportApiKeysCommandOutput, } from "./commands/ImportApiKeysCommand"; import { + type ImportDocumentationPartsCommandInput, + type ImportDocumentationPartsCommandOutput, ImportDocumentationPartsCommand, - ImportDocumentationPartsCommandInput, - ImportDocumentationPartsCommandOutput, } from "./commands/ImportDocumentationPartsCommand"; import { + type ImportRestApiCommandInput, + type ImportRestApiCommandOutput, ImportRestApiCommand, - ImportRestApiCommandInput, - ImportRestApiCommandOutput, } from "./commands/ImportRestApiCommand"; import { + type PutGatewayResponseCommandInput, + type PutGatewayResponseCommandOutput, PutGatewayResponseCommand, - PutGatewayResponseCommandInput, - PutGatewayResponseCommandOutput, } from "./commands/PutGatewayResponseCommand"; import { + type PutIntegrationCommandInput, + type PutIntegrationCommandOutput, PutIntegrationCommand, - PutIntegrationCommandInput, - PutIntegrationCommandOutput, } from "./commands/PutIntegrationCommand"; import { + type PutIntegrationResponseCommandInput, + type PutIntegrationResponseCommandOutput, PutIntegrationResponseCommand, - PutIntegrationResponseCommandInput, - PutIntegrationResponseCommandOutput, } from "./commands/PutIntegrationResponseCommand"; -import { PutMethodCommand, PutMethodCommandInput, PutMethodCommandOutput } from "./commands/PutMethodCommand"; +import { type PutMethodCommandInput, type PutMethodCommandOutput, PutMethodCommand } from "./commands/PutMethodCommand"; import { + type PutMethodResponseCommandInput, + type PutMethodResponseCommandOutput, PutMethodResponseCommand, - PutMethodResponseCommandInput, - PutMethodResponseCommandOutput, } from "./commands/PutMethodResponseCommand"; -import { PutRestApiCommand, PutRestApiCommandInput, PutRestApiCommandOutput } from "./commands/PutRestApiCommand"; import { + type PutRestApiCommandInput, + type PutRestApiCommandOutput, + PutRestApiCommand, +} from "./commands/PutRestApiCommand"; +import { + type RejectDomainNameAccessAssociationCommandInput, + type RejectDomainNameAccessAssociationCommandOutput, RejectDomainNameAccessAssociationCommand, - RejectDomainNameAccessAssociationCommandInput, - RejectDomainNameAccessAssociationCommandOutput, } from "./commands/RejectDomainNameAccessAssociationCommand"; -import { TagResourceCommand, TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand"; import { + type TagResourceCommandInput, + type TagResourceCommandOutput, + TagResourceCommand, +} from "./commands/TagResourceCommand"; +import { + type TestInvokeAuthorizerCommandInput, + type TestInvokeAuthorizerCommandOutput, TestInvokeAuthorizerCommand, - TestInvokeAuthorizerCommandInput, - TestInvokeAuthorizerCommandOutput, } from "./commands/TestInvokeAuthorizerCommand"; import { + type TestInvokeMethodCommandInput, + type TestInvokeMethodCommandOutput, TestInvokeMethodCommand, - TestInvokeMethodCommandInput, - TestInvokeMethodCommandOutput, } from "./commands/TestInvokeMethodCommand"; import { + type UntagResourceCommandInput, + type UntagResourceCommandOutput, UntagResourceCommand, - UntagResourceCommandInput, - UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { + type UpdateAccountCommandInput, + type UpdateAccountCommandOutput, UpdateAccountCommand, - UpdateAccountCommandInput, - UpdateAccountCommandOutput, } from "./commands/UpdateAccountCommand"; import { + type UpdateApiKeyCommandInput, + type UpdateApiKeyCommandOutput, UpdateApiKeyCommand, - UpdateApiKeyCommandInput, - UpdateApiKeyCommandOutput, } from "./commands/UpdateApiKeyCommand"; import { + type UpdateAuthorizerCommandInput, + type UpdateAuthorizerCommandOutput, UpdateAuthorizerCommand, - UpdateAuthorizerCommandInput, - UpdateAuthorizerCommandOutput, } from "./commands/UpdateAuthorizerCommand"; import { + type UpdateBasePathMappingCommandInput, + type UpdateBasePathMappingCommandOutput, UpdateBasePathMappingCommand, - UpdateBasePathMappingCommandInput, - UpdateBasePathMappingCommandOutput, } from "./commands/UpdateBasePathMappingCommand"; import { + type UpdateClientCertificateCommandInput, + type UpdateClientCertificateCommandOutput, UpdateClientCertificateCommand, - UpdateClientCertificateCommandInput, - UpdateClientCertificateCommandOutput, } from "./commands/UpdateClientCertificateCommand"; import { + type UpdateDeploymentCommandInput, + type UpdateDeploymentCommandOutput, UpdateDeploymentCommand, - UpdateDeploymentCommandInput, - UpdateDeploymentCommandOutput, } from "./commands/UpdateDeploymentCommand"; import { + type UpdateDocumentationPartCommandInput, + type UpdateDocumentationPartCommandOutput, UpdateDocumentationPartCommand, - UpdateDocumentationPartCommandInput, - UpdateDocumentationPartCommandOutput, } from "./commands/UpdateDocumentationPartCommand"; import { + type UpdateDocumentationVersionCommandInput, + type UpdateDocumentationVersionCommandOutput, UpdateDocumentationVersionCommand, - UpdateDocumentationVersionCommandInput, - UpdateDocumentationVersionCommandOutput, } from "./commands/UpdateDocumentationVersionCommand"; import { + type UpdateDomainNameCommandInput, + type UpdateDomainNameCommandOutput, UpdateDomainNameCommand, - UpdateDomainNameCommandInput, - UpdateDomainNameCommandOutput, } from "./commands/UpdateDomainNameCommand"; import { + type UpdateGatewayResponseCommandInput, + type UpdateGatewayResponseCommandOutput, UpdateGatewayResponseCommand, - UpdateGatewayResponseCommandInput, - UpdateGatewayResponseCommandOutput, } from "./commands/UpdateGatewayResponseCommand"; import { + type UpdateIntegrationCommandInput, + type UpdateIntegrationCommandOutput, UpdateIntegrationCommand, - UpdateIntegrationCommandInput, - UpdateIntegrationCommandOutput, } from "./commands/UpdateIntegrationCommand"; import { + type UpdateIntegrationResponseCommandInput, + type UpdateIntegrationResponseCommandOutput, UpdateIntegrationResponseCommand, - UpdateIntegrationResponseCommandInput, - UpdateIntegrationResponseCommandOutput, } from "./commands/UpdateIntegrationResponseCommand"; import { + type UpdateMethodCommandInput, + type UpdateMethodCommandOutput, UpdateMethodCommand, - UpdateMethodCommandInput, - UpdateMethodCommandOutput, } from "./commands/UpdateMethodCommand"; import { + type UpdateMethodResponseCommandInput, + type UpdateMethodResponseCommandOutput, UpdateMethodResponseCommand, - UpdateMethodResponseCommandInput, - UpdateMethodResponseCommandOutput, } from "./commands/UpdateMethodResponseCommand"; -import { UpdateModelCommand, UpdateModelCommandInput, UpdateModelCommandOutput } from "./commands/UpdateModelCommand"; import { + type UpdateModelCommandInput, + type UpdateModelCommandOutput, + UpdateModelCommand, +} from "./commands/UpdateModelCommand"; +import { + type UpdateRequestValidatorCommandInput, + type UpdateRequestValidatorCommandOutput, UpdateRequestValidatorCommand, - UpdateRequestValidatorCommandInput, - UpdateRequestValidatorCommandOutput, } from "./commands/UpdateRequestValidatorCommand"; import { + type UpdateResourceCommandInput, + type UpdateResourceCommandOutput, UpdateResourceCommand, - UpdateResourceCommandInput, - UpdateResourceCommandOutput, } from "./commands/UpdateResourceCommand"; import { + type UpdateRestApiCommandInput, + type UpdateRestApiCommandOutput, UpdateRestApiCommand, - UpdateRestApiCommandInput, - UpdateRestApiCommandOutput, } from "./commands/UpdateRestApiCommand"; -import { UpdateStageCommand, UpdateStageCommandInput, UpdateStageCommandOutput } from "./commands/UpdateStageCommand"; -import { UpdateUsageCommand, UpdateUsageCommandInput, UpdateUsageCommandOutput } from "./commands/UpdateUsageCommand"; import { + type UpdateStageCommandInput, + type UpdateStageCommandOutput, + UpdateStageCommand, +} from "./commands/UpdateStageCommand"; +import { + type UpdateUsageCommandInput, + type UpdateUsageCommandOutput, + UpdateUsageCommand, +} from "./commands/UpdateUsageCommand"; +import { + type UpdateUsagePlanCommandInput, + type UpdateUsagePlanCommandOutput, UpdateUsagePlanCommand, - UpdateUsagePlanCommandInput, - UpdateUsagePlanCommandOutput, } from "./commands/UpdateUsagePlanCommand"; import { + type UpdateVpcLinkCommandInput, + type UpdateVpcLinkCommandOutput, UpdateVpcLinkCommand, - UpdateVpcLinkCommandInput, - UpdateVpcLinkCommandOutput, } from "./commands/UpdateVpcLinkCommand"; const commands = { diff --git a/clients/client-api-gateway/src/APIGatewayClient.ts b/clients/client-api-gateway/src/APIGatewayClient.ts index 4ff59f09da297..ba9ad14b0098d 100644 --- a/clients/client-api-gateway/src/APIGatewayClient.ts +++ b/clients/client-api-gateway/src/APIGatewayClient.ts @@ -1,20 +1,20 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { getAcceptHeaderPlugin } from "@aws-sdk/middleware-sdk-api-gateway"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -22,286 +22,322 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAPIGatewayHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { CreateApiKeyCommandInput, CreateApiKeyCommandOutput } from "./commands/CreateApiKeyCommand"; -import { CreateAuthorizerCommandInput, CreateAuthorizerCommandOutput } from "./commands/CreateAuthorizerCommand"; -import { +import type { CreateApiKeyCommandInput, CreateApiKeyCommandOutput } from "./commands/CreateApiKeyCommand"; +import type { CreateAuthorizerCommandInput, CreateAuthorizerCommandOutput } from "./commands/CreateAuthorizerCommand"; +import type { CreateBasePathMappingCommandInput, CreateBasePathMappingCommandOutput, } from "./commands/CreateBasePathMappingCommand"; -import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "./commands/CreateDeploymentCommand"; -import { +import type { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "./commands/CreateDeploymentCommand"; +import type { CreateDocumentationPartCommandInput, CreateDocumentationPartCommandOutput, } from "./commands/CreateDocumentationPartCommand"; -import { +import type { CreateDocumentationVersionCommandInput, CreateDocumentationVersionCommandOutput, } from "./commands/CreateDocumentationVersionCommand"; -import { +import type { CreateDomainNameAccessAssociationCommandInput, CreateDomainNameAccessAssociationCommandOutput, } from "./commands/CreateDomainNameAccessAssociationCommand"; -import { CreateDomainNameCommandInput, CreateDomainNameCommandOutput } from "./commands/CreateDomainNameCommand"; -import { CreateModelCommandInput, CreateModelCommandOutput } from "./commands/CreateModelCommand"; -import { +import type { CreateDomainNameCommandInput, CreateDomainNameCommandOutput } from "./commands/CreateDomainNameCommand"; +import type { CreateModelCommandInput, CreateModelCommandOutput } from "./commands/CreateModelCommand"; +import type { CreateRequestValidatorCommandInput, CreateRequestValidatorCommandOutput, } from "./commands/CreateRequestValidatorCommand"; -import { CreateResourceCommandInput, CreateResourceCommandOutput } from "./commands/CreateResourceCommand"; -import { CreateRestApiCommandInput, CreateRestApiCommandOutput } from "./commands/CreateRestApiCommand"; -import { CreateStageCommandInput, CreateStageCommandOutput } from "./commands/CreateStageCommand"; -import { CreateUsagePlanCommandInput, CreateUsagePlanCommandOutput } from "./commands/CreateUsagePlanCommand"; -import { CreateUsagePlanKeyCommandInput, CreateUsagePlanKeyCommandOutput } from "./commands/CreateUsagePlanKeyCommand"; -import { CreateVpcLinkCommandInput, CreateVpcLinkCommandOutput } from "./commands/CreateVpcLinkCommand"; -import { DeleteApiKeyCommandInput, DeleteApiKeyCommandOutput } from "./commands/DeleteApiKeyCommand"; -import { DeleteAuthorizerCommandInput, DeleteAuthorizerCommandOutput } from "./commands/DeleteAuthorizerCommand"; -import { +import type { CreateResourceCommandInput, CreateResourceCommandOutput } from "./commands/CreateResourceCommand"; +import type { CreateRestApiCommandInput, CreateRestApiCommandOutput } from "./commands/CreateRestApiCommand"; +import type { CreateStageCommandInput, CreateStageCommandOutput } from "./commands/CreateStageCommand"; +import type { CreateUsagePlanCommandInput, CreateUsagePlanCommandOutput } from "./commands/CreateUsagePlanCommand"; +import type { + CreateUsagePlanKeyCommandInput, + CreateUsagePlanKeyCommandOutput, +} from "./commands/CreateUsagePlanKeyCommand"; +import type { CreateVpcLinkCommandInput, CreateVpcLinkCommandOutput } from "./commands/CreateVpcLinkCommand"; +import type { DeleteApiKeyCommandInput, DeleteApiKeyCommandOutput } from "./commands/DeleteApiKeyCommand"; +import type { DeleteAuthorizerCommandInput, DeleteAuthorizerCommandOutput } from "./commands/DeleteAuthorizerCommand"; +import type { DeleteBasePathMappingCommandInput, DeleteBasePathMappingCommandOutput, } from "./commands/DeleteBasePathMappingCommand"; -import { +import type { DeleteClientCertificateCommandInput, DeleteClientCertificateCommandOutput, } from "./commands/DeleteClientCertificateCommand"; -import { DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput } from "./commands/DeleteDeploymentCommand"; -import { +import type { DeleteDeploymentCommandInput, DeleteDeploymentCommandOutput } from "./commands/DeleteDeploymentCommand"; +import type { DeleteDocumentationPartCommandInput, DeleteDocumentationPartCommandOutput, } from "./commands/DeleteDocumentationPartCommand"; -import { +import type { DeleteDocumentationVersionCommandInput, DeleteDocumentationVersionCommandOutput, } from "./commands/DeleteDocumentationVersionCommand"; -import { +import type { DeleteDomainNameAccessAssociationCommandInput, DeleteDomainNameAccessAssociationCommandOutput, } from "./commands/DeleteDomainNameAccessAssociationCommand"; -import { DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput } from "./commands/DeleteDomainNameCommand"; -import { +import type { DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput } from "./commands/DeleteDomainNameCommand"; +import type { DeleteGatewayResponseCommandInput, DeleteGatewayResponseCommandOutput, } from "./commands/DeleteGatewayResponseCommand"; -import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand"; -import { +import type { + DeleteIntegrationCommandInput, + DeleteIntegrationCommandOutput, +} from "./commands/DeleteIntegrationCommand"; +import type { DeleteIntegrationResponseCommandInput, DeleteIntegrationResponseCommandOutput, } from "./commands/DeleteIntegrationResponseCommand"; -import { DeleteMethodCommandInput, DeleteMethodCommandOutput } from "./commands/DeleteMethodCommand"; -import { +import type { DeleteMethodCommandInput, DeleteMethodCommandOutput } from "./commands/DeleteMethodCommand"; +import type { DeleteMethodResponseCommandInput, DeleteMethodResponseCommandOutput, } from "./commands/DeleteMethodResponseCommand"; -import { DeleteModelCommandInput, DeleteModelCommandOutput } from "./commands/DeleteModelCommand"; -import { +import type { DeleteModelCommandInput, DeleteModelCommandOutput } from "./commands/DeleteModelCommand"; +import type { DeleteRequestValidatorCommandInput, DeleteRequestValidatorCommandOutput, } from "./commands/DeleteRequestValidatorCommand"; -import { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand"; -import { DeleteRestApiCommandInput, DeleteRestApiCommandOutput } from "./commands/DeleteRestApiCommand"; -import { DeleteStageCommandInput, DeleteStageCommandOutput } from "./commands/DeleteStageCommand"; -import { DeleteUsagePlanCommandInput, DeleteUsagePlanCommandOutput } from "./commands/DeleteUsagePlanCommand"; -import { DeleteUsagePlanKeyCommandInput, DeleteUsagePlanKeyCommandOutput } from "./commands/DeleteUsagePlanKeyCommand"; -import { DeleteVpcLinkCommandInput, DeleteVpcLinkCommandOutput } from "./commands/DeleteVpcLinkCommand"; -import { +import type { DeleteResourceCommandInput, DeleteResourceCommandOutput } from "./commands/DeleteResourceCommand"; +import type { DeleteRestApiCommandInput, DeleteRestApiCommandOutput } from "./commands/DeleteRestApiCommand"; +import type { DeleteStageCommandInput, DeleteStageCommandOutput } from "./commands/DeleteStageCommand"; +import type { DeleteUsagePlanCommandInput, DeleteUsagePlanCommandOutput } from "./commands/DeleteUsagePlanCommand"; +import type { + DeleteUsagePlanKeyCommandInput, + DeleteUsagePlanKeyCommandOutput, +} from "./commands/DeleteUsagePlanKeyCommand"; +import type { DeleteVpcLinkCommandInput, DeleteVpcLinkCommandOutput } from "./commands/DeleteVpcLinkCommand"; +import type { FlushStageAuthorizersCacheCommandInput, FlushStageAuthorizersCacheCommandOutput, } from "./commands/FlushStageAuthorizersCacheCommand"; -import { FlushStageCacheCommandInput, FlushStageCacheCommandOutput } from "./commands/FlushStageCacheCommand"; -import { +import type { FlushStageCacheCommandInput, FlushStageCacheCommandOutput } from "./commands/FlushStageCacheCommand"; +import type { GenerateClientCertificateCommandInput, GenerateClientCertificateCommandOutput, } from "./commands/GenerateClientCertificateCommand"; -import { GetAccountCommandInput, GetAccountCommandOutput } from "./commands/GetAccountCommand"; -import { GetApiKeyCommandInput, GetApiKeyCommandOutput } from "./commands/GetApiKeyCommand"; -import { GetApiKeysCommandInput, GetApiKeysCommandOutput } from "./commands/GetApiKeysCommand"; -import { GetAuthorizerCommandInput, GetAuthorizerCommandOutput } from "./commands/GetAuthorizerCommand"; -import { GetAuthorizersCommandInput, GetAuthorizersCommandOutput } from "./commands/GetAuthorizersCommand"; -import { GetBasePathMappingCommandInput, GetBasePathMappingCommandOutput } from "./commands/GetBasePathMappingCommand"; -import { +import type { GetAccountCommandInput, GetAccountCommandOutput } from "./commands/GetAccountCommand"; +import type { GetApiKeyCommandInput, GetApiKeyCommandOutput } from "./commands/GetApiKeyCommand"; +import type { GetApiKeysCommandInput, GetApiKeysCommandOutput } from "./commands/GetApiKeysCommand"; +import type { GetAuthorizerCommandInput, GetAuthorizerCommandOutput } from "./commands/GetAuthorizerCommand"; +import type { GetAuthorizersCommandInput, GetAuthorizersCommandOutput } from "./commands/GetAuthorizersCommand"; +import type { + GetBasePathMappingCommandInput, + GetBasePathMappingCommandOutput, +} from "./commands/GetBasePathMappingCommand"; +import type { GetBasePathMappingsCommandInput, GetBasePathMappingsCommandOutput, } from "./commands/GetBasePathMappingsCommand"; -import { +import type { GetClientCertificateCommandInput, GetClientCertificateCommandOutput, } from "./commands/GetClientCertificateCommand"; -import { +import type { GetClientCertificatesCommandInput, GetClientCertificatesCommandOutput, } from "./commands/GetClientCertificatesCommand"; -import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand"; -import { GetDeploymentsCommandInput, GetDeploymentsCommandOutput } from "./commands/GetDeploymentsCommand"; -import { +import type { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand"; +import type { GetDeploymentsCommandInput, GetDeploymentsCommandOutput } from "./commands/GetDeploymentsCommand"; +import type { GetDocumentationPartCommandInput, GetDocumentationPartCommandOutput, } from "./commands/GetDocumentationPartCommand"; -import { +import type { GetDocumentationPartsCommandInput, GetDocumentationPartsCommandOutput, } from "./commands/GetDocumentationPartsCommand"; -import { +import type { GetDocumentationVersionCommandInput, GetDocumentationVersionCommandOutput, } from "./commands/GetDocumentationVersionCommand"; -import { +import type { GetDocumentationVersionsCommandInput, GetDocumentationVersionsCommandOutput, } from "./commands/GetDocumentationVersionsCommand"; -import { +import type { GetDomainNameAccessAssociationsCommandInput, GetDomainNameAccessAssociationsCommandOutput, } from "./commands/GetDomainNameAccessAssociationsCommand"; -import { GetDomainNameCommandInput, GetDomainNameCommandOutput } from "./commands/GetDomainNameCommand"; -import { GetDomainNamesCommandInput, GetDomainNamesCommandOutput } from "./commands/GetDomainNamesCommand"; -import { GetExportCommandInput, GetExportCommandOutput } from "./commands/GetExportCommand"; -import { GetGatewayResponseCommandInput, GetGatewayResponseCommandOutput } from "./commands/GetGatewayResponseCommand"; -import { +import type { GetDomainNameCommandInput, GetDomainNameCommandOutput } from "./commands/GetDomainNameCommand"; +import type { GetDomainNamesCommandInput, GetDomainNamesCommandOutput } from "./commands/GetDomainNamesCommand"; +import type { GetExportCommandInput, GetExportCommandOutput } from "./commands/GetExportCommand"; +import type { + GetGatewayResponseCommandInput, + GetGatewayResponseCommandOutput, +} from "./commands/GetGatewayResponseCommand"; +import type { GetGatewayResponsesCommandInput, GetGatewayResponsesCommandOutput, } from "./commands/GetGatewayResponsesCommand"; -import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "./commands/GetIntegrationCommand"; -import { +import type { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "./commands/GetIntegrationCommand"; +import type { GetIntegrationResponseCommandInput, GetIntegrationResponseCommandOutput, } from "./commands/GetIntegrationResponseCommand"; -import { GetMethodCommandInput, GetMethodCommandOutput } from "./commands/GetMethodCommand"; -import { GetMethodResponseCommandInput, GetMethodResponseCommandOutput } from "./commands/GetMethodResponseCommand"; -import { GetModelCommandInput, GetModelCommandOutput } from "./commands/GetModelCommand"; -import { GetModelsCommandInput, GetModelsCommandOutput } from "./commands/GetModelsCommand"; -import { GetModelTemplateCommandInput, GetModelTemplateCommandOutput } from "./commands/GetModelTemplateCommand"; -import { +import type { GetMethodCommandInput, GetMethodCommandOutput } from "./commands/GetMethodCommand"; +import type { + GetMethodResponseCommandInput, + GetMethodResponseCommandOutput, +} from "./commands/GetMethodResponseCommand"; +import type { GetModelCommandInput, GetModelCommandOutput } from "./commands/GetModelCommand"; +import type { GetModelsCommandInput, GetModelsCommandOutput } from "./commands/GetModelsCommand"; +import type { GetModelTemplateCommandInput, GetModelTemplateCommandOutput } from "./commands/GetModelTemplateCommand"; +import type { GetRequestValidatorCommandInput, GetRequestValidatorCommandOutput, } from "./commands/GetRequestValidatorCommand"; -import { +import type { GetRequestValidatorsCommandInput, GetRequestValidatorsCommandOutput, } from "./commands/GetRequestValidatorsCommand"; -import { GetResourceCommandInput, GetResourceCommandOutput } from "./commands/GetResourceCommand"; -import { GetResourcesCommandInput, GetResourcesCommandOutput } from "./commands/GetResourcesCommand"; -import { GetRestApiCommandInput, GetRestApiCommandOutput } from "./commands/GetRestApiCommand"; -import { GetRestApisCommandInput, GetRestApisCommandOutput } from "./commands/GetRestApisCommand"; -import { GetSdkCommandInput, GetSdkCommandOutput } from "./commands/GetSdkCommand"; -import { GetSdkTypeCommandInput, GetSdkTypeCommandOutput } from "./commands/GetSdkTypeCommand"; -import { GetSdkTypesCommandInput, GetSdkTypesCommandOutput } from "./commands/GetSdkTypesCommand"; -import { GetStageCommandInput, GetStageCommandOutput } from "./commands/GetStageCommand"; -import { GetStagesCommandInput, GetStagesCommandOutput } from "./commands/GetStagesCommand"; -import { GetTagsCommandInput, GetTagsCommandOutput } from "./commands/GetTagsCommand"; -import { GetUsageCommandInput, GetUsageCommandOutput } from "./commands/GetUsageCommand"; -import { GetUsagePlanCommandInput, GetUsagePlanCommandOutput } from "./commands/GetUsagePlanCommand"; -import { GetUsagePlanKeyCommandInput, GetUsagePlanKeyCommandOutput } from "./commands/GetUsagePlanKeyCommand"; -import { GetUsagePlanKeysCommandInput, GetUsagePlanKeysCommandOutput } from "./commands/GetUsagePlanKeysCommand"; -import { GetUsagePlansCommandInput, GetUsagePlansCommandOutput } from "./commands/GetUsagePlansCommand"; -import { GetVpcLinkCommandInput, GetVpcLinkCommandOutput } from "./commands/GetVpcLinkCommand"; -import { GetVpcLinksCommandInput, GetVpcLinksCommandOutput } from "./commands/GetVpcLinksCommand"; -import { ImportApiKeysCommandInput, ImportApiKeysCommandOutput } from "./commands/ImportApiKeysCommand"; -import { +import type { GetResourceCommandInput, GetResourceCommandOutput } from "./commands/GetResourceCommand"; +import type { GetResourcesCommandInput, GetResourcesCommandOutput } from "./commands/GetResourcesCommand"; +import type { GetRestApiCommandInput, GetRestApiCommandOutput } from "./commands/GetRestApiCommand"; +import type { GetRestApisCommandInput, GetRestApisCommandOutput } from "./commands/GetRestApisCommand"; +import type { GetSdkCommandInput, GetSdkCommandOutput } from "./commands/GetSdkCommand"; +import type { GetSdkTypeCommandInput, GetSdkTypeCommandOutput } from "./commands/GetSdkTypeCommand"; +import type { GetSdkTypesCommandInput, GetSdkTypesCommandOutput } from "./commands/GetSdkTypesCommand"; +import type { GetStageCommandInput, GetStageCommandOutput } from "./commands/GetStageCommand"; +import type { GetStagesCommandInput, GetStagesCommandOutput } from "./commands/GetStagesCommand"; +import type { GetTagsCommandInput, GetTagsCommandOutput } from "./commands/GetTagsCommand"; +import type { GetUsageCommandInput, GetUsageCommandOutput } from "./commands/GetUsageCommand"; +import type { GetUsagePlanCommandInput, GetUsagePlanCommandOutput } from "./commands/GetUsagePlanCommand"; +import type { GetUsagePlanKeyCommandInput, GetUsagePlanKeyCommandOutput } from "./commands/GetUsagePlanKeyCommand"; +import type { GetUsagePlanKeysCommandInput, GetUsagePlanKeysCommandOutput } from "./commands/GetUsagePlanKeysCommand"; +import type { GetUsagePlansCommandInput, GetUsagePlansCommandOutput } from "./commands/GetUsagePlansCommand"; +import type { GetVpcLinkCommandInput, GetVpcLinkCommandOutput } from "./commands/GetVpcLinkCommand"; +import type { GetVpcLinksCommandInput, GetVpcLinksCommandOutput } from "./commands/GetVpcLinksCommand"; +import type { ImportApiKeysCommandInput, ImportApiKeysCommandOutput } from "./commands/ImportApiKeysCommand"; +import type { ImportDocumentationPartsCommandInput, ImportDocumentationPartsCommandOutput, } from "./commands/ImportDocumentationPartsCommand"; -import { ImportRestApiCommandInput, ImportRestApiCommandOutput } from "./commands/ImportRestApiCommand"; -import { PutGatewayResponseCommandInput, PutGatewayResponseCommandOutput } from "./commands/PutGatewayResponseCommand"; -import { PutIntegrationCommandInput, PutIntegrationCommandOutput } from "./commands/PutIntegrationCommand"; -import { +import type { ImportRestApiCommandInput, ImportRestApiCommandOutput } from "./commands/ImportRestApiCommand"; +import type { + PutGatewayResponseCommandInput, + PutGatewayResponseCommandOutput, +} from "./commands/PutGatewayResponseCommand"; +import type { PutIntegrationCommandInput, PutIntegrationCommandOutput } from "./commands/PutIntegrationCommand"; +import type { PutIntegrationResponseCommandInput, PutIntegrationResponseCommandOutput, } from "./commands/PutIntegrationResponseCommand"; -import { PutMethodCommandInput, PutMethodCommandOutput } from "./commands/PutMethodCommand"; -import { PutMethodResponseCommandInput, PutMethodResponseCommandOutput } from "./commands/PutMethodResponseCommand"; -import { PutRestApiCommandInput, PutRestApiCommandOutput } from "./commands/PutRestApiCommand"; -import { +import type { PutMethodCommandInput, PutMethodCommandOutput } from "./commands/PutMethodCommand"; +import type { + PutMethodResponseCommandInput, + PutMethodResponseCommandOutput, +} from "./commands/PutMethodResponseCommand"; +import type { PutRestApiCommandInput, PutRestApiCommandOutput } from "./commands/PutRestApiCommand"; +import type { RejectDomainNameAccessAssociationCommandInput, RejectDomainNameAccessAssociationCommandOutput, } from "./commands/RejectDomainNameAccessAssociationCommand"; -import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand"; -import { +import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand"; +import type { TestInvokeAuthorizerCommandInput, TestInvokeAuthorizerCommandOutput, } from "./commands/TestInvokeAuthorizerCommand"; -import { TestInvokeMethodCommandInput, TestInvokeMethodCommandOutput } from "./commands/TestInvokeMethodCommand"; -import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand"; -import { UpdateAccountCommandInput, UpdateAccountCommandOutput } from "./commands/UpdateAccountCommand"; -import { UpdateApiKeyCommandInput, UpdateApiKeyCommandOutput } from "./commands/UpdateApiKeyCommand"; -import { UpdateAuthorizerCommandInput, UpdateAuthorizerCommandOutput } from "./commands/UpdateAuthorizerCommand"; -import { +import type { TestInvokeMethodCommandInput, TestInvokeMethodCommandOutput } from "./commands/TestInvokeMethodCommand"; +import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand"; +import type { UpdateAccountCommandInput, UpdateAccountCommandOutput } from "./commands/UpdateAccountCommand"; +import type { UpdateApiKeyCommandInput, UpdateApiKeyCommandOutput } from "./commands/UpdateApiKeyCommand"; +import type { UpdateAuthorizerCommandInput, UpdateAuthorizerCommandOutput } from "./commands/UpdateAuthorizerCommand"; +import type { UpdateBasePathMappingCommandInput, UpdateBasePathMappingCommandOutput, } from "./commands/UpdateBasePathMappingCommand"; -import { +import type { UpdateClientCertificateCommandInput, UpdateClientCertificateCommandOutput, } from "./commands/UpdateClientCertificateCommand"; -import { UpdateDeploymentCommandInput, UpdateDeploymentCommandOutput } from "./commands/UpdateDeploymentCommand"; -import { +import type { UpdateDeploymentCommandInput, UpdateDeploymentCommandOutput } from "./commands/UpdateDeploymentCommand"; +import type { UpdateDocumentationPartCommandInput, UpdateDocumentationPartCommandOutput, } from "./commands/UpdateDocumentationPartCommand"; -import { +import type { UpdateDocumentationVersionCommandInput, UpdateDocumentationVersionCommandOutput, } from "./commands/UpdateDocumentationVersionCommand"; -import { UpdateDomainNameCommandInput, UpdateDomainNameCommandOutput } from "./commands/UpdateDomainNameCommand"; -import { +import type { UpdateDomainNameCommandInput, UpdateDomainNameCommandOutput } from "./commands/UpdateDomainNameCommand"; +import type { UpdateGatewayResponseCommandInput, UpdateGatewayResponseCommandOutput, } from "./commands/UpdateGatewayResponseCommand"; -import { UpdateIntegrationCommandInput, UpdateIntegrationCommandOutput } from "./commands/UpdateIntegrationCommand"; -import { +import type { + UpdateIntegrationCommandInput, + UpdateIntegrationCommandOutput, +} from "./commands/UpdateIntegrationCommand"; +import type { UpdateIntegrationResponseCommandInput, UpdateIntegrationResponseCommandOutput, } from "./commands/UpdateIntegrationResponseCommand"; -import { UpdateMethodCommandInput, UpdateMethodCommandOutput } from "./commands/UpdateMethodCommand"; -import { +import type { UpdateMethodCommandInput, UpdateMethodCommandOutput } from "./commands/UpdateMethodCommand"; +import type { UpdateMethodResponseCommandInput, UpdateMethodResponseCommandOutput, } from "./commands/UpdateMethodResponseCommand"; -import { UpdateModelCommandInput, UpdateModelCommandOutput } from "./commands/UpdateModelCommand"; -import { +import type { UpdateModelCommandInput, UpdateModelCommandOutput } from "./commands/UpdateModelCommand"; +import type { UpdateRequestValidatorCommandInput, UpdateRequestValidatorCommandOutput, } from "./commands/UpdateRequestValidatorCommand"; -import { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand"; -import { UpdateRestApiCommandInput, UpdateRestApiCommandOutput } from "./commands/UpdateRestApiCommand"; -import { UpdateStageCommandInput, UpdateStageCommandOutput } from "./commands/UpdateStageCommand"; -import { UpdateUsageCommandInput, UpdateUsageCommandOutput } from "./commands/UpdateUsageCommand"; -import { UpdateUsagePlanCommandInput, UpdateUsagePlanCommandOutput } from "./commands/UpdateUsagePlanCommand"; -import { UpdateVpcLinkCommandInput, UpdateVpcLinkCommandOutput } from "./commands/UpdateVpcLinkCommand"; +import type { UpdateResourceCommandInput, UpdateResourceCommandOutput } from "./commands/UpdateResourceCommand"; +import type { UpdateRestApiCommandInput, UpdateRestApiCommandOutput } from "./commands/UpdateRestApiCommand"; +import type { UpdateStageCommandInput, UpdateStageCommandOutput } from "./commands/UpdateStageCommand"; +import type { UpdateUsageCommandInput, UpdateUsageCommandOutput } from "./commands/UpdateUsageCommand"; +import type { UpdateUsagePlanCommandInput, UpdateUsagePlanCommandOutput } from "./commands/UpdateUsagePlanCommand"; +import type { UpdateVpcLinkCommandInput, UpdateVpcLinkCommandOutput } from "./commands/UpdateVpcLinkCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, @@ -309,7 +345,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-api-gateway/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-api-gateway/src/auth/httpAuthExtensionConfiguration.ts index f7ad2ed02317e..07396db7c7bd8 100644 --- a/clients/client-api-gateway/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-api-gateway/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { APIGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { APIGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-api-gateway/src/auth/httpAuthSchemeProvider.ts b/clients/client-api-gateway/src/auth/httpAuthSchemeProvider.ts index 16e4ebf03e9bb..84d2ff5f2a7b1 100644 --- a/clients/client-api-gateway/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-api-gateway/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { APIGatewayClientConfig, APIGatewayClientResolvedConfig } from "../APIGatewayClient"; +import { type APIGatewayClientResolvedConfig, APIGatewayClientConfig } from "../APIGatewayClient"; /** * @internal diff --git a/clients/client-api-gateway/src/commands/CreateApiKeyCommand.ts b/clients/client-api-gateway/src/commands/CreateApiKeyCommand.ts index 5965672e40818..3e00ee19098ce 100644 --- a/clients/client-api-gateway/src/commands/CreateApiKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateApiKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApiKey, CreateApiKeyRequest } from "../models/models_0"; +import type { ApiKey, CreateApiKeyRequest } from "../models/models_0"; import { CreateApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/CreateAuthorizerCommand.ts index 1934cd989fd4b..0d6a568c79fc7 100644 --- a/clients/client-api-gateway/src/commands/CreateAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Authorizer, CreateAuthorizerRequest } from "../models/models_0"; +import type { Authorizer, CreateAuthorizerRequest } from "../models/models_0"; import { CreateAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateBasePathMappingCommand.ts b/clients/client-api-gateway/src/commands/CreateBasePathMappingCommand.ts index f1bbf7e92c2b0..7cb6bc473adb0 100644 --- a/clients/client-api-gateway/src/commands/CreateBasePathMappingCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateBasePathMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BasePathMapping, CreateBasePathMappingRequest } from "../models/models_0"; +import type { BasePathMapping, CreateBasePathMappingRequest } from "../models/models_0"; import { CreateBasePathMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateDeploymentCommand.ts b/clients/client-api-gateway/src/commands/CreateDeploymentCommand.ts index b82d48a08e5a0..75fd2c3b2c400 100644 --- a/clients/client-api-gateway/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeploymentRequest, Deployment } from "../models/models_0"; +import type { CreateDeploymentRequest, Deployment } from "../models/models_0"; import { CreateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateDocumentationPartCommand.ts b/clients/client-api-gateway/src/commands/CreateDocumentationPartCommand.ts index 366de6c8cee43..6122a73be9c7e 100644 --- a/clients/client-api-gateway/src/commands/CreateDocumentationPartCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDocumentationPartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDocumentationPartRequest, DocumentationPart } from "../models/models_0"; +import type { CreateDocumentationPartRequest, DocumentationPart } from "../models/models_0"; import { CreateDocumentationPart } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateDocumentationVersionCommand.ts b/clients/client-api-gateway/src/commands/CreateDocumentationVersionCommand.ts index ccb308b9df396..8a1c3b5d68101 100644 --- a/clients/client-api-gateway/src/commands/CreateDocumentationVersionCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDocumentationVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDocumentationVersionRequest, DocumentationVersion } from "../models/models_0"; +import type { CreateDocumentationVersionRequest, DocumentationVersion } from "../models/models_0"; import { CreateDocumentationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateDomainNameAccessAssociationCommand.ts b/clients/client-api-gateway/src/commands/CreateDomainNameAccessAssociationCommand.ts index f66d6181c9c85..7142968577d59 100644 --- a/clients/client-api-gateway/src/commands/CreateDomainNameAccessAssociationCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDomainNameAccessAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainNameAccessAssociationRequest, DomainNameAccessAssociation } from "../models/models_0"; +import type { CreateDomainNameAccessAssociationRequest, DomainNameAccessAssociation } from "../models/models_0"; import { CreateDomainNameAccessAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateDomainNameCommand.ts b/clients/client-api-gateway/src/commands/CreateDomainNameCommand.ts index d43b8d7c4acf8..5e923f079d23e 100644 --- a/clients/client-api-gateway/src/commands/CreateDomainNameCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainNameRequest, DomainName } from "../models/models_0"; +import type { CreateDomainNameRequest, DomainName } from "../models/models_0"; import { CreateDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateModelCommand.ts b/clients/client-api-gateway/src/commands/CreateModelCommand.ts index f22f178d1cc50..7d2b2ee2a604a 100644 --- a/clients/client-api-gateway/src/commands/CreateModelCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelRequest, Model } from "../models/models_0"; +import type { CreateModelRequest, Model } from "../models/models_0"; import { CreateModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateRequestValidatorCommand.ts b/clients/client-api-gateway/src/commands/CreateRequestValidatorCommand.ts index 89e967848644f..82d40e14cd2e5 100644 --- a/clients/client-api-gateway/src/commands/CreateRequestValidatorCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateRequestValidatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRequestValidatorRequest, RequestValidator } from "../models/models_0"; +import type { CreateRequestValidatorRequest, RequestValidator } from "../models/models_0"; import { CreateRequestValidator } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateResourceCommand.ts b/clients/client-api-gateway/src/commands/CreateResourceCommand.ts index d8082db087a02..bc9795bdafaa3 100644 --- a/clients/client-api-gateway/src/commands/CreateResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceRequest, Resource } from "../models/models_0"; +import type { CreateResourceRequest, Resource } from "../models/models_0"; import { CreateResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateRestApiCommand.ts b/clients/client-api-gateway/src/commands/CreateRestApiCommand.ts index a8a08b0acba77..38efb2087ad1c 100644 --- a/clients/client-api-gateway/src/commands/CreateRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateRestApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRestApiRequest, RestApi } from "../models/models_0"; +import type { CreateRestApiRequest, RestApi } from "../models/models_0"; import { CreateRestApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateStageCommand.ts b/clients/client-api-gateway/src/commands/CreateStageCommand.ts index 5173659a82ff7..61d6da8cbba80 100644 --- a/clients/client-api-gateway/src/commands/CreateStageCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStageRequest, Stage } from "../models/models_0"; +import type { CreateStageRequest, Stage } from "../models/models_0"; import { CreateStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateUsagePlanCommand.ts b/clients/client-api-gateway/src/commands/CreateUsagePlanCommand.ts index 9063c8084eef1..fe4cc7f633d55 100644 --- a/clients/client-api-gateway/src/commands/CreateUsagePlanCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateUsagePlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUsagePlanRequest, UsagePlan } from "../models/models_0"; +import type { CreateUsagePlanRequest, UsagePlan } from "../models/models_0"; import { CreateUsagePlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateUsagePlanKeyCommand.ts b/clients/client-api-gateway/src/commands/CreateUsagePlanKeyCommand.ts index 7090b02c39735..bcdf8122d9b35 100644 --- a/clients/client-api-gateway/src/commands/CreateUsagePlanKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateUsagePlanKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUsagePlanKeyRequest, UsagePlanKey } from "../models/models_0"; +import type { CreateUsagePlanKeyRequest, UsagePlanKey } from "../models/models_0"; import { CreateUsagePlanKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/CreateVpcLinkCommand.ts b/clients/client-api-gateway/src/commands/CreateVpcLinkCommand.ts index ace3ee89a1b26..24f879647e667 100644 --- a/clients/client-api-gateway/src/commands/CreateVpcLinkCommand.ts +++ b/clients/client-api-gateway/src/commands/CreateVpcLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcLinkRequest, VpcLink } from "../models/models_0"; +import type { CreateVpcLinkRequest, VpcLink } from "../models/models_0"; import { CreateVpcLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteApiKeyCommand.ts b/clients/client-api-gateway/src/commands/DeleteApiKeyCommand.ts index 62fc45cc4dc71..7bfe3df915e15 100644 --- a/clients/client-api-gateway/src/commands/DeleteApiKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteApiKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApiKeyRequest } from "../models/models_0"; +import type { DeleteApiKeyRequest } from "../models/models_0"; import { DeleteApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/DeleteAuthorizerCommand.ts index 5698ed31b124b..00137248e5b79 100644 --- a/clients/client-api-gateway/src/commands/DeleteAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAuthorizerRequest } from "../models/models_0"; +import type { DeleteAuthorizerRequest } from "../models/models_0"; import { DeleteAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteBasePathMappingCommand.ts b/clients/client-api-gateway/src/commands/DeleteBasePathMappingCommand.ts index 5763875c45c0c..992e4395fbb08 100644 --- a/clients/client-api-gateway/src/commands/DeleteBasePathMappingCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteBasePathMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBasePathMappingRequest } from "../models/models_0"; +import type { DeleteBasePathMappingRequest } from "../models/models_0"; import { DeleteBasePathMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteClientCertificateCommand.ts b/clients/client-api-gateway/src/commands/DeleteClientCertificateCommand.ts index 8f6ea19ebf45a..8d35d33a8c234 100644 --- a/clients/client-api-gateway/src/commands/DeleteClientCertificateCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteClientCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClientCertificateRequest } from "../models/models_0"; +import type { DeleteClientCertificateRequest } from "../models/models_0"; import { DeleteClientCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteDeploymentCommand.ts b/clients/client-api-gateway/src/commands/DeleteDeploymentCommand.ts index 9b314e7dc5894..654a4358c9e1e 100644 --- a/clients/client-api-gateway/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeploymentRequest } from "../models/models_0"; +import type { DeleteDeploymentRequest } from "../models/models_0"; import { DeleteDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteDocumentationPartCommand.ts b/clients/client-api-gateway/src/commands/DeleteDocumentationPartCommand.ts index 376531c4d3aae..b5bdbb0af46a9 100644 --- a/clients/client-api-gateway/src/commands/DeleteDocumentationPartCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDocumentationPartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDocumentationPartRequest } from "../models/models_0"; +import type { DeleteDocumentationPartRequest } from "../models/models_0"; import { DeleteDocumentationPart } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteDocumentationVersionCommand.ts b/clients/client-api-gateway/src/commands/DeleteDocumentationVersionCommand.ts index 8a634948a7ed8..8c543e22fa669 100644 --- a/clients/client-api-gateway/src/commands/DeleteDocumentationVersionCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDocumentationVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDocumentationVersionRequest } from "../models/models_0"; +import type { DeleteDocumentationVersionRequest } from "../models/models_0"; import { DeleteDocumentationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteDomainNameAccessAssociationCommand.ts b/clients/client-api-gateway/src/commands/DeleteDomainNameAccessAssociationCommand.ts index 9e921a42b928b..d07ba16cab37b 100644 --- a/clients/client-api-gateway/src/commands/DeleteDomainNameAccessAssociationCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDomainNameAccessAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainNameAccessAssociationRequest } from "../models/models_0"; +import type { DeleteDomainNameAccessAssociationRequest } from "../models/models_0"; import { DeleteDomainNameAccessAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteDomainNameCommand.ts b/clients/client-api-gateway/src/commands/DeleteDomainNameCommand.ts index 8ffb2110d7903..52d765e87bc45 100644 --- a/clients/client-api-gateway/src/commands/DeleteDomainNameCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainNameRequest } from "../models/models_0"; +import type { DeleteDomainNameRequest } from "../models/models_0"; import { DeleteDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteGatewayResponseCommand.ts b/clients/client-api-gateway/src/commands/DeleteGatewayResponseCommand.ts index 1f848204f0db9..be0701f239cfa 100644 --- a/clients/client-api-gateway/src/commands/DeleteGatewayResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteGatewayResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGatewayResponseRequest } from "../models/models_0"; +import type { DeleteGatewayResponseRequest } from "../models/models_0"; import { DeleteGatewayResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteIntegrationCommand.ts b/clients/client-api-gateway/src/commands/DeleteIntegrationCommand.ts index c4fe2c1c214cc..03a57817e80e0 100644 --- a/clients/client-api-gateway/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIntegrationRequest } from "../models/models_0"; +import type { DeleteIntegrationRequest } from "../models/models_0"; import { DeleteIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteIntegrationResponseCommand.ts b/clients/client-api-gateway/src/commands/DeleteIntegrationResponseCommand.ts index 59d5b22e27b4a..542ab5b80fa24 100644 --- a/clients/client-api-gateway/src/commands/DeleteIntegrationResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteIntegrationResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIntegrationResponseRequest } from "../models/models_0"; +import type { DeleteIntegrationResponseRequest } from "../models/models_0"; import { DeleteIntegrationResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteMethodCommand.ts b/clients/client-api-gateway/src/commands/DeleteMethodCommand.ts index 13c61fc78e414..008b4c47d27c5 100644 --- a/clients/client-api-gateway/src/commands/DeleteMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteMethodCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMethodRequest } from "../models/models_0"; +import type { DeleteMethodRequest } from "../models/models_0"; import { DeleteMethod } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteMethodResponseCommand.ts b/clients/client-api-gateway/src/commands/DeleteMethodResponseCommand.ts index 6cb21dbd5f0df..a99c28a8179af 100644 --- a/clients/client-api-gateway/src/commands/DeleteMethodResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteMethodResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMethodResponseRequest } from "../models/models_0"; +import type { DeleteMethodResponseRequest } from "../models/models_0"; import { DeleteMethodResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteModelCommand.ts b/clients/client-api-gateway/src/commands/DeleteModelCommand.ts index 67bd6f45e3e86..27d52fca660bf 100644 --- a/clients/client-api-gateway/src/commands/DeleteModelCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelRequest } from "../models/models_0"; +import type { DeleteModelRequest } from "../models/models_0"; import { DeleteModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteRequestValidatorCommand.ts b/clients/client-api-gateway/src/commands/DeleteRequestValidatorCommand.ts index 65084eebd2125..3b99818cf0cda 100644 --- a/clients/client-api-gateway/src/commands/DeleteRequestValidatorCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteRequestValidatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRequestValidatorRequest } from "../models/models_0"; +import type { DeleteRequestValidatorRequest } from "../models/models_0"; import { DeleteRequestValidator } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteResourceCommand.ts b/clients/client-api-gateway/src/commands/DeleteResourceCommand.ts index f0cb586884bfa..93c6df2e24fab 100644 --- a/clients/client-api-gateway/src/commands/DeleteResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceRequest } from "../models/models_0"; +import type { DeleteResourceRequest } from "../models/models_0"; import { DeleteResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteRestApiCommand.ts b/clients/client-api-gateway/src/commands/DeleteRestApiCommand.ts index 259325f65ebed..41ff174a72ee0 100644 --- a/clients/client-api-gateway/src/commands/DeleteRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteRestApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRestApiRequest } from "../models/models_0"; +import type { DeleteRestApiRequest } from "../models/models_0"; import { DeleteRestApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteStageCommand.ts b/clients/client-api-gateway/src/commands/DeleteStageCommand.ts index 345abae095541..971254a9b5b66 100644 --- a/clients/client-api-gateway/src/commands/DeleteStageCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStageRequest } from "../models/models_0"; +import type { DeleteStageRequest } from "../models/models_0"; import { DeleteStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteUsagePlanCommand.ts b/clients/client-api-gateway/src/commands/DeleteUsagePlanCommand.ts index 0a22cee7bac48..0b7819e9bc8f3 100644 --- a/clients/client-api-gateway/src/commands/DeleteUsagePlanCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteUsagePlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUsagePlanRequest } from "../models/models_0"; +import type { DeleteUsagePlanRequest } from "../models/models_0"; import { DeleteUsagePlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteUsagePlanKeyCommand.ts b/clients/client-api-gateway/src/commands/DeleteUsagePlanKeyCommand.ts index e2cc2518218a5..313075124d0e8 100644 --- a/clients/client-api-gateway/src/commands/DeleteUsagePlanKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteUsagePlanKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUsagePlanKeyRequest } from "../models/models_0"; +import type { DeleteUsagePlanKeyRequest } from "../models/models_0"; import { DeleteUsagePlanKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/DeleteVpcLinkCommand.ts b/clients/client-api-gateway/src/commands/DeleteVpcLinkCommand.ts index 7530a9db2a1f6..1e0bfe0a891b9 100644 --- a/clients/client-api-gateway/src/commands/DeleteVpcLinkCommand.ts +++ b/clients/client-api-gateway/src/commands/DeleteVpcLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcLinkRequest } from "../models/models_0"; +import type { DeleteVpcLinkRequest } from "../models/models_0"; import { DeleteVpcLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/FlushStageAuthorizersCacheCommand.ts b/clients/client-api-gateway/src/commands/FlushStageAuthorizersCacheCommand.ts index 3618d83972b77..bbe4516f01878 100644 --- a/clients/client-api-gateway/src/commands/FlushStageAuthorizersCacheCommand.ts +++ b/clients/client-api-gateway/src/commands/FlushStageAuthorizersCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlushStageAuthorizersCacheRequest } from "../models/models_0"; +import type { FlushStageAuthorizersCacheRequest } from "../models/models_0"; import { FlushStageAuthorizersCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/FlushStageCacheCommand.ts b/clients/client-api-gateway/src/commands/FlushStageCacheCommand.ts index 6954932ebc2fd..7bd2110b70b2e 100644 --- a/clients/client-api-gateway/src/commands/FlushStageCacheCommand.ts +++ b/clients/client-api-gateway/src/commands/FlushStageCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlushStageCacheRequest } from "../models/models_0"; +import type { FlushStageCacheRequest } from "../models/models_0"; import { FlushStageCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GenerateClientCertificateCommand.ts b/clients/client-api-gateway/src/commands/GenerateClientCertificateCommand.ts index fcb17ce96b30b..cc1dd2053f373 100644 --- a/clients/client-api-gateway/src/commands/GenerateClientCertificateCommand.ts +++ b/clients/client-api-gateway/src/commands/GenerateClientCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClientCertificate, GenerateClientCertificateRequest } from "../models/models_0"; +import type { ClientCertificate, GenerateClientCertificateRequest } from "../models/models_0"; import { GenerateClientCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetAccountCommand.ts b/clients/client-api-gateway/src/commands/GetAccountCommand.ts index 31fec88e97245..14623c69cbb9c 100644 --- a/clients/client-api-gateway/src/commands/GetAccountCommand.ts +++ b/clients/client-api-gateway/src/commands/GetAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Account, GetAccountRequest } from "../models/models_0"; +import type { Account, GetAccountRequest } from "../models/models_0"; import { GetAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetApiKeyCommand.ts b/clients/client-api-gateway/src/commands/GetApiKeyCommand.ts index 17ddedbe9dac6..7e837cb592760 100644 --- a/clients/client-api-gateway/src/commands/GetApiKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/GetApiKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApiKey, GetApiKeyRequest } from "../models/models_0"; +import type { ApiKey, GetApiKeyRequest } from "../models/models_0"; import { GetApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetApiKeysCommand.ts b/clients/client-api-gateway/src/commands/GetApiKeysCommand.ts index e572eaa1dd26c..6393755d69f7d 100644 --- a/clients/client-api-gateway/src/commands/GetApiKeysCommand.ts +++ b/clients/client-api-gateway/src/commands/GetApiKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApiKeys, GetApiKeysRequest } from "../models/models_0"; +import type { ApiKeys, GetApiKeysRequest } from "../models/models_0"; import { GetApiKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/GetAuthorizerCommand.ts index 7b96060d61e91..257d3aed8ffe8 100644 --- a/clients/client-api-gateway/src/commands/GetAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/GetAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Authorizer, GetAuthorizerRequest } from "../models/models_0"; +import type { Authorizer, GetAuthorizerRequest } from "../models/models_0"; import { GetAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetAuthorizersCommand.ts b/clients/client-api-gateway/src/commands/GetAuthorizersCommand.ts index e9c1f740d897a..34cf9a1f1fb95 100644 --- a/clients/client-api-gateway/src/commands/GetAuthorizersCommand.ts +++ b/clients/client-api-gateway/src/commands/GetAuthorizersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Authorizers, GetAuthorizersRequest } from "../models/models_0"; +import type { Authorizers, GetAuthorizersRequest } from "../models/models_0"; import { GetAuthorizers } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetBasePathMappingCommand.ts b/clients/client-api-gateway/src/commands/GetBasePathMappingCommand.ts index 131bbff653824..0ec0fbf850589 100644 --- a/clients/client-api-gateway/src/commands/GetBasePathMappingCommand.ts +++ b/clients/client-api-gateway/src/commands/GetBasePathMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BasePathMapping, GetBasePathMappingRequest } from "../models/models_0"; +import type { BasePathMapping, GetBasePathMappingRequest } from "../models/models_0"; import { GetBasePathMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetBasePathMappingsCommand.ts b/clients/client-api-gateway/src/commands/GetBasePathMappingsCommand.ts index f1d13f4dda235..3f712b9ca4902 100644 --- a/clients/client-api-gateway/src/commands/GetBasePathMappingsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetBasePathMappingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BasePathMappings, GetBasePathMappingsRequest } from "../models/models_0"; +import type { BasePathMappings, GetBasePathMappingsRequest } from "../models/models_0"; import { GetBasePathMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetClientCertificateCommand.ts b/clients/client-api-gateway/src/commands/GetClientCertificateCommand.ts index 521305b8bb425..c35cfd8a16973 100644 --- a/clients/client-api-gateway/src/commands/GetClientCertificateCommand.ts +++ b/clients/client-api-gateway/src/commands/GetClientCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClientCertificate, GetClientCertificateRequest } from "../models/models_0"; +import type { ClientCertificate, GetClientCertificateRequest } from "../models/models_0"; import { GetClientCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetClientCertificatesCommand.ts b/clients/client-api-gateway/src/commands/GetClientCertificatesCommand.ts index 237dbd0cb6ba0..369e4e20ea6d3 100644 --- a/clients/client-api-gateway/src/commands/GetClientCertificatesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetClientCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClientCertificates, GetClientCertificatesRequest } from "../models/models_0"; +import type { ClientCertificates, GetClientCertificatesRequest } from "../models/models_0"; import { GetClientCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetDeploymentCommand.ts b/clients/client-api-gateway/src/commands/GetDeploymentCommand.ts index b190a7f3fe329..89d9c37d60b6f 100644 --- a/clients/client-api-gateway/src/commands/GetDeploymentCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Deployment, GetDeploymentRequest } from "../models/models_0"; +import type { Deployment, GetDeploymentRequest } from "../models/models_0"; import { GetDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetDeploymentsCommand.ts b/clients/client-api-gateway/src/commands/GetDeploymentsCommand.ts index 4ccd67d738a4d..09e3c1449812e 100644 --- a/clients/client-api-gateway/src/commands/GetDeploymentsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Deployments, GetDeploymentsRequest } from "../models/models_0"; +import type { Deployments, GetDeploymentsRequest } from "../models/models_0"; import { GetDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetDocumentationPartCommand.ts b/clients/client-api-gateway/src/commands/GetDocumentationPartCommand.ts index 2526fa3b2ccd8..39d3c3a55a6f8 100644 --- a/clients/client-api-gateway/src/commands/GetDocumentationPartCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDocumentationPartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentationPart, GetDocumentationPartRequest } from "../models/models_0"; +import type { DocumentationPart, GetDocumentationPartRequest } from "../models/models_0"; import { GetDocumentationPart } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetDocumentationPartsCommand.ts b/clients/client-api-gateway/src/commands/GetDocumentationPartsCommand.ts index e1a6a92cdc417..602f77a6febeb 100644 --- a/clients/client-api-gateway/src/commands/GetDocumentationPartsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDocumentationPartsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentationParts, GetDocumentationPartsRequest } from "../models/models_0"; +import type { DocumentationParts, GetDocumentationPartsRequest } from "../models/models_0"; import { GetDocumentationParts } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetDocumentationVersionCommand.ts b/clients/client-api-gateway/src/commands/GetDocumentationVersionCommand.ts index 11bd10d4dc7ed..ae5a7a5954389 100644 --- a/clients/client-api-gateway/src/commands/GetDocumentationVersionCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDocumentationVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentationVersion, GetDocumentationVersionRequest } from "../models/models_0"; +import type { DocumentationVersion, GetDocumentationVersionRequest } from "../models/models_0"; import { GetDocumentationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetDocumentationVersionsCommand.ts b/clients/client-api-gateway/src/commands/GetDocumentationVersionsCommand.ts index 3c725287847d9..a441b041bb3ee 100644 --- a/clients/client-api-gateway/src/commands/GetDocumentationVersionsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDocumentationVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentationVersions, GetDocumentationVersionsRequest } from "../models/models_0"; +import type { DocumentationVersions, GetDocumentationVersionsRequest } from "../models/models_0"; import { GetDocumentationVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetDomainNameAccessAssociationsCommand.ts b/clients/client-api-gateway/src/commands/GetDomainNameAccessAssociationsCommand.ts index 79c040beef01a..9526c9cfa4acc 100644 --- a/clients/client-api-gateway/src/commands/GetDomainNameAccessAssociationsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDomainNameAccessAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DomainNameAccessAssociations, GetDomainNameAccessAssociationsRequest } from "../models/models_0"; +import type { DomainNameAccessAssociations, GetDomainNameAccessAssociationsRequest } from "../models/models_0"; import { GetDomainNameAccessAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetDomainNameCommand.ts b/clients/client-api-gateway/src/commands/GetDomainNameCommand.ts index a59a0c5cffb88..2ad7e0318d56d 100644 --- a/clients/client-api-gateway/src/commands/GetDomainNameCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DomainName, GetDomainNameRequest } from "../models/models_0"; +import type { DomainName, GetDomainNameRequest } from "../models/models_0"; import { GetDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetDomainNamesCommand.ts b/clients/client-api-gateway/src/commands/GetDomainNamesCommand.ts index 241a3c9970215..42129d9dd98a6 100644 --- a/clients/client-api-gateway/src/commands/GetDomainNamesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetDomainNamesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DomainNames, GetDomainNamesRequest } from "../models/models_0"; +import type { DomainNames, GetDomainNamesRequest } from "../models/models_0"; import { GetDomainNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetExportCommand.ts b/clients/client-api-gateway/src/commands/GetExportCommand.ts index 663ce7ac3e4f9..e18bae864b27b 100644 --- a/clients/client-api-gateway/src/commands/GetExportCommand.ts +++ b/clients/client-api-gateway/src/commands/GetExportCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportResponse, GetExportRequest } from "../models/models_0"; +import type { ExportResponse, GetExportRequest } from "../models/models_0"; import { GetExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetGatewayResponseCommand.ts b/clients/client-api-gateway/src/commands/GetGatewayResponseCommand.ts index 878ba1629ce08..8db86acaadd36 100644 --- a/clients/client-api-gateway/src/commands/GetGatewayResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/GetGatewayResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GatewayResponse, GetGatewayResponseRequest } from "../models/models_0"; +import type { GatewayResponse, GetGatewayResponseRequest } from "../models/models_0"; import { GetGatewayResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetGatewayResponsesCommand.ts b/clients/client-api-gateway/src/commands/GetGatewayResponsesCommand.ts index 60b5ed501d392..41851c4ffd86f 100644 --- a/clients/client-api-gateway/src/commands/GetGatewayResponsesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetGatewayResponsesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GatewayResponses, GetGatewayResponsesRequest } from "../models/models_0"; +import type { GatewayResponses, GetGatewayResponsesRequest } from "../models/models_0"; import { GetGatewayResponses } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetIntegrationCommand.ts b/clients/client-api-gateway/src/commands/GetIntegrationCommand.ts index 58f8719b200a6..b98e20836f202 100644 --- a/clients/client-api-gateway/src/commands/GetIntegrationCommand.ts +++ b/clients/client-api-gateway/src/commands/GetIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIntegrationRequest, Integration } from "../models/models_0"; +import type { GetIntegrationRequest, Integration } from "../models/models_0"; import { GetIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetIntegrationResponseCommand.ts b/clients/client-api-gateway/src/commands/GetIntegrationResponseCommand.ts index bc885bd4b2a8f..f36a227d1d04e 100644 --- a/clients/client-api-gateway/src/commands/GetIntegrationResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/GetIntegrationResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIntegrationResponseRequest, IntegrationResponse } from "../models/models_0"; +import type { GetIntegrationResponseRequest, IntegrationResponse } from "../models/models_0"; import { GetIntegrationResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetMethodCommand.ts b/clients/client-api-gateway/src/commands/GetMethodCommand.ts index 3f7f49bed296c..a242d626699fd 100644 --- a/clients/client-api-gateway/src/commands/GetMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/GetMethodCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMethodRequest, Method } from "../models/models_0"; +import type { GetMethodRequest, Method } from "../models/models_0"; import { GetMethod } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetMethodResponseCommand.ts b/clients/client-api-gateway/src/commands/GetMethodResponseCommand.ts index dd548f42e73bc..475d702fac7a5 100644 --- a/clients/client-api-gateway/src/commands/GetMethodResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/GetMethodResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMethodResponseRequest, MethodResponse } from "../models/models_0"; +import type { GetMethodResponseRequest, MethodResponse } from "../models/models_0"; import { GetMethodResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetModelCommand.ts b/clients/client-api-gateway/src/commands/GetModelCommand.ts index f289694355b59..143b9c20f6a4a 100644 --- a/clients/client-api-gateway/src/commands/GetModelCommand.ts +++ b/clients/client-api-gateway/src/commands/GetModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelRequest, Model } from "../models/models_0"; +import type { GetModelRequest, Model } from "../models/models_0"; import { GetModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetModelTemplateCommand.ts b/clients/client-api-gateway/src/commands/GetModelTemplateCommand.ts index 20ab89c535967..fe98aa7ac98cc 100644 --- a/clients/client-api-gateway/src/commands/GetModelTemplateCommand.ts +++ b/clients/client-api-gateway/src/commands/GetModelTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelTemplateRequest, Template } from "../models/models_0"; +import type { GetModelTemplateRequest, Template } from "../models/models_0"; import { GetModelTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetModelsCommand.ts b/clients/client-api-gateway/src/commands/GetModelsCommand.ts index 0e571f608091f..a6d668d133a4b 100644 --- a/clients/client-api-gateway/src/commands/GetModelsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelsRequest, Models } from "../models/models_0"; +import type { GetModelsRequest, Models } from "../models/models_0"; import { GetModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetRequestValidatorCommand.ts b/clients/client-api-gateway/src/commands/GetRequestValidatorCommand.ts index 61c5a2f32b3a9..c35945c5deee6 100644 --- a/clients/client-api-gateway/src/commands/GetRequestValidatorCommand.ts +++ b/clients/client-api-gateway/src/commands/GetRequestValidatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRequestValidatorRequest, RequestValidator } from "../models/models_0"; +import type { GetRequestValidatorRequest, RequestValidator } from "../models/models_0"; import { GetRequestValidator } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetRequestValidatorsCommand.ts b/clients/client-api-gateway/src/commands/GetRequestValidatorsCommand.ts index 0edfcf6d45186..eea0b6fe6dae5 100644 --- a/clients/client-api-gateway/src/commands/GetRequestValidatorsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetRequestValidatorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRequestValidatorsRequest, RequestValidators } from "../models/models_0"; +import type { GetRequestValidatorsRequest, RequestValidators } from "../models/models_0"; import { GetRequestValidators } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetResourceCommand.ts b/clients/client-api-gateway/src/commands/GetResourceCommand.ts index c2ca59276a41a..9a40b591eb8bb 100644 --- a/clients/client-api-gateway/src/commands/GetResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/GetResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceRequest, Resource } from "../models/models_0"; +import type { GetResourceRequest, Resource } from "../models/models_0"; import { GetResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetResourcesCommand.ts b/clients/client-api-gateway/src/commands/GetResourcesCommand.ts index 7c0af478db0e4..7ba9147c3127e 100644 --- a/clients/client-api-gateway/src/commands/GetResourcesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcesRequest, Resources } from "../models/models_0"; +import type { GetResourcesRequest, Resources } from "../models/models_0"; import { GetResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetRestApiCommand.ts b/clients/client-api-gateway/src/commands/GetRestApiCommand.ts index a33017e2020cc..3e6b40d2a0a12 100644 --- a/clients/client-api-gateway/src/commands/GetRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/GetRestApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRestApiRequest, RestApi } from "../models/models_0"; +import type { GetRestApiRequest, RestApi } from "../models/models_0"; import { GetRestApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetRestApisCommand.ts b/clients/client-api-gateway/src/commands/GetRestApisCommand.ts index 5e1c9b06017bd..c89c1c047fbe9 100644 --- a/clients/client-api-gateway/src/commands/GetRestApisCommand.ts +++ b/clients/client-api-gateway/src/commands/GetRestApisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRestApisRequest, RestApis } from "../models/models_0"; +import type { GetRestApisRequest, RestApis } from "../models/models_0"; import { GetRestApis } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetSdkCommand.ts b/clients/client-api-gateway/src/commands/GetSdkCommand.ts index 2627394a1ed1f..b130ee0238d48 100644 --- a/clients/client-api-gateway/src/commands/GetSdkCommand.ts +++ b/clients/client-api-gateway/src/commands/GetSdkCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSdkRequest, SdkResponse } from "../models/models_0"; +import type { GetSdkRequest, SdkResponse } from "../models/models_0"; import { GetSdk } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetSdkTypeCommand.ts b/clients/client-api-gateway/src/commands/GetSdkTypeCommand.ts index a6869e131cc4f..a6c4cf2349a25 100644 --- a/clients/client-api-gateway/src/commands/GetSdkTypeCommand.ts +++ b/clients/client-api-gateway/src/commands/GetSdkTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSdkTypeRequest, SdkType } from "../models/models_0"; +import type { GetSdkTypeRequest, SdkType } from "../models/models_0"; import { GetSdkType } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetSdkTypesCommand.ts b/clients/client-api-gateway/src/commands/GetSdkTypesCommand.ts index 82943eb1bdbf0..f67cbf66ab08b 100644 --- a/clients/client-api-gateway/src/commands/GetSdkTypesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetSdkTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSdkTypesRequest, SdkTypes } from "../models/models_0"; +import type { GetSdkTypesRequest, SdkTypes } from "../models/models_0"; import { GetSdkTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetStageCommand.ts b/clients/client-api-gateway/src/commands/GetStageCommand.ts index 70c80b81b088a..8d7a31602a638 100644 --- a/clients/client-api-gateway/src/commands/GetStageCommand.ts +++ b/clients/client-api-gateway/src/commands/GetStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStageRequest, Stage } from "../models/models_0"; +import type { GetStageRequest, Stage } from "../models/models_0"; import { GetStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetStagesCommand.ts b/clients/client-api-gateway/src/commands/GetStagesCommand.ts index 82f2aeebf432b..3091ce4dc814e 100644 --- a/clients/client-api-gateway/src/commands/GetStagesCommand.ts +++ b/clients/client-api-gateway/src/commands/GetStagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStagesRequest, Stages } from "../models/models_0"; +import type { GetStagesRequest, Stages } from "../models/models_0"; import { GetStages } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetTagsCommand.ts b/clients/client-api-gateway/src/commands/GetTagsCommand.ts index 03bac9d0511ce..b7a79d77fa7f3 100644 --- a/clients/client-api-gateway/src/commands/GetTagsCommand.ts +++ b/clients/client-api-gateway/src/commands/GetTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTagsRequest, Tags } from "../models/models_0"; +import type { GetTagsRequest, Tags } from "../models/models_0"; import { GetTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetUsageCommand.ts b/clients/client-api-gateway/src/commands/GetUsageCommand.ts index 7585120467e62..b44a06d7110fb 100644 --- a/clients/client-api-gateway/src/commands/GetUsageCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUsageRequest, Usage } from "../models/models_0"; +import type { GetUsageRequest, Usage } from "../models/models_0"; import { GetUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetUsagePlanCommand.ts b/clients/client-api-gateway/src/commands/GetUsagePlanCommand.ts index 3159607acc4e1..640dd55f307e5 100644 --- a/clients/client-api-gateway/src/commands/GetUsagePlanCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsagePlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUsagePlanRequest, UsagePlan } from "../models/models_0"; +import type { GetUsagePlanRequest, UsagePlan } from "../models/models_0"; import { GetUsagePlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetUsagePlanKeyCommand.ts b/clients/client-api-gateway/src/commands/GetUsagePlanKeyCommand.ts index 43a013f19af3a..4f3c29c7b9a30 100644 --- a/clients/client-api-gateway/src/commands/GetUsagePlanKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsagePlanKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUsagePlanKeyRequest, UsagePlanKey } from "../models/models_0"; +import type { GetUsagePlanKeyRequest, UsagePlanKey } from "../models/models_0"; import { GetUsagePlanKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetUsagePlanKeysCommand.ts b/clients/client-api-gateway/src/commands/GetUsagePlanKeysCommand.ts index d064e10028df9..07522902fea20 100644 --- a/clients/client-api-gateway/src/commands/GetUsagePlanKeysCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsagePlanKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUsagePlanKeysRequest, UsagePlanKeys } from "../models/models_0"; +import type { GetUsagePlanKeysRequest, UsagePlanKeys } from "../models/models_0"; import { GetUsagePlanKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetUsagePlansCommand.ts b/clients/client-api-gateway/src/commands/GetUsagePlansCommand.ts index fe9c034b84e0f..b1d324266a4ec 100644 --- a/clients/client-api-gateway/src/commands/GetUsagePlansCommand.ts +++ b/clients/client-api-gateway/src/commands/GetUsagePlansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUsagePlansRequest, UsagePlans } from "../models/models_0"; +import type { GetUsagePlansRequest, UsagePlans } from "../models/models_0"; import { GetUsagePlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetVpcLinkCommand.ts b/clients/client-api-gateway/src/commands/GetVpcLinkCommand.ts index 65a69434cf760..c89afbe124ce1 100644 --- a/clients/client-api-gateway/src/commands/GetVpcLinkCommand.ts +++ b/clients/client-api-gateway/src/commands/GetVpcLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVpcLinkRequest, VpcLink } from "../models/models_0"; +import type { GetVpcLinkRequest, VpcLink } from "../models/models_0"; import { GetVpcLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/GetVpcLinksCommand.ts b/clients/client-api-gateway/src/commands/GetVpcLinksCommand.ts index 0f6a5bdfef524..894136a82ea57 100644 --- a/clients/client-api-gateway/src/commands/GetVpcLinksCommand.ts +++ b/clients/client-api-gateway/src/commands/GetVpcLinksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVpcLinksRequest, VpcLinks } from "../models/models_0"; +import type { GetVpcLinksRequest, VpcLinks } from "../models/models_0"; import { GetVpcLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/ImportApiKeysCommand.ts b/clients/client-api-gateway/src/commands/ImportApiKeysCommand.ts index 79b69bd44d262..57ef05940ec26 100644 --- a/clients/client-api-gateway/src/commands/ImportApiKeysCommand.ts +++ b/clients/client-api-gateway/src/commands/ImportApiKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApiKeyIds, ImportApiKeysRequest } from "../models/models_0"; +import type { ApiKeyIds, ImportApiKeysRequest } from "../models/models_0"; import { ImportApiKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/ImportDocumentationPartsCommand.ts b/clients/client-api-gateway/src/commands/ImportDocumentationPartsCommand.ts index b2278802c0310..86e8cc7d8eefd 100644 --- a/clients/client-api-gateway/src/commands/ImportDocumentationPartsCommand.ts +++ b/clients/client-api-gateway/src/commands/ImportDocumentationPartsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentationPartIds, ImportDocumentationPartsRequest } from "../models/models_0"; +import type { DocumentationPartIds, ImportDocumentationPartsRequest } from "../models/models_0"; import { ImportDocumentationParts } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/ImportRestApiCommand.ts b/clients/client-api-gateway/src/commands/ImportRestApiCommand.ts index 10faab95613a7..da93bdebe1a87 100644 --- a/clients/client-api-gateway/src/commands/ImportRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/ImportRestApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportRestApiRequest, RestApi } from "../models/models_0"; +import type { ImportRestApiRequest, RestApi } from "../models/models_0"; import { ImportRestApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/PutGatewayResponseCommand.ts b/clients/client-api-gateway/src/commands/PutGatewayResponseCommand.ts index 97b783e315c19..630c410c73155 100644 --- a/clients/client-api-gateway/src/commands/PutGatewayResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/PutGatewayResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GatewayResponse, PutGatewayResponseRequest } from "../models/models_0"; +import type { GatewayResponse, PutGatewayResponseRequest } from "../models/models_0"; import { PutGatewayResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/PutIntegrationCommand.ts b/clients/client-api-gateway/src/commands/PutIntegrationCommand.ts index efa103a56fd99..c891db5042e43 100644 --- a/clients/client-api-gateway/src/commands/PutIntegrationCommand.ts +++ b/clients/client-api-gateway/src/commands/PutIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Integration, PutIntegrationRequest } from "../models/models_0"; +import type { Integration, PutIntegrationRequest } from "../models/models_0"; import { PutIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/PutIntegrationResponseCommand.ts b/clients/client-api-gateway/src/commands/PutIntegrationResponseCommand.ts index 7ca03e5766cb3..da654ac592ff2 100644 --- a/clients/client-api-gateway/src/commands/PutIntegrationResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/PutIntegrationResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IntegrationResponse, PutIntegrationResponseRequest } from "../models/models_0"; +import type { IntegrationResponse, PutIntegrationResponseRequest } from "../models/models_0"; import { PutIntegrationResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/PutMethodCommand.ts b/clients/client-api-gateway/src/commands/PutMethodCommand.ts index 93f1ab38c4fee..6b06905bbed27 100644 --- a/clients/client-api-gateway/src/commands/PutMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/PutMethodCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Method, PutMethodRequest } from "../models/models_0"; +import type { Method, PutMethodRequest } from "../models/models_0"; import { PutMethod } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/PutMethodResponseCommand.ts b/clients/client-api-gateway/src/commands/PutMethodResponseCommand.ts index ec7d1048eb7df..29594fc439b8c 100644 --- a/clients/client-api-gateway/src/commands/PutMethodResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/PutMethodResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MethodResponse, PutMethodResponseRequest } from "../models/models_0"; +import type { MethodResponse, PutMethodResponseRequest } from "../models/models_0"; import { PutMethodResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/PutRestApiCommand.ts b/clients/client-api-gateway/src/commands/PutRestApiCommand.ts index b85746f0257da..33be482fd8df6 100644 --- a/clients/client-api-gateway/src/commands/PutRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/PutRestApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRestApiRequest, RestApi } from "../models/models_0"; +import type { PutRestApiRequest, RestApi } from "../models/models_0"; import { PutRestApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/RejectDomainNameAccessAssociationCommand.ts b/clients/client-api-gateway/src/commands/RejectDomainNameAccessAssociationCommand.ts index 6aa63fb13f434..4625a717751bb 100644 --- a/clients/client-api-gateway/src/commands/RejectDomainNameAccessAssociationCommand.ts +++ b/clients/client-api-gateway/src/commands/RejectDomainNameAccessAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectDomainNameAccessAssociationRequest } from "../models/models_0"; +import type { RejectDomainNameAccessAssociationRequest } from "../models/models_0"; import { RejectDomainNameAccessAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/TagResourceCommand.ts b/clients/client-api-gateway/src/commands/TagResourceCommand.ts index 755bee1192737..4172255af8f07 100644 --- a/clients/client-api-gateway/src/commands/TagResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/TestInvokeAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/TestInvokeAuthorizerCommand.ts index b3305d5570993..bcd65bff6689e 100644 --- a/clients/client-api-gateway/src/commands/TestInvokeAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/TestInvokeAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestInvokeAuthorizerRequest, TestInvokeAuthorizerResponse } from "../models/models_0"; +import type { TestInvokeAuthorizerRequest, TestInvokeAuthorizerResponse } from "../models/models_0"; import { TestInvokeAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/TestInvokeMethodCommand.ts b/clients/client-api-gateway/src/commands/TestInvokeMethodCommand.ts index 4d84124314c70..6d1016cade7ee 100644 --- a/clients/client-api-gateway/src/commands/TestInvokeMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/TestInvokeMethodCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestInvokeMethodRequest, TestInvokeMethodResponse } from "../models/models_0"; +import type { TestInvokeMethodRequest, TestInvokeMethodResponse } from "../models/models_0"; import { TestInvokeMethod } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UntagResourceCommand.ts b/clients/client-api-gateway/src/commands/UntagResourceCommand.ts index c6e103b487169..33b39b3147424 100644 --- a/clients/client-api-gateway/src/commands/UntagResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateAccountCommand.ts b/clients/client-api-gateway/src/commands/UpdateAccountCommand.ts index 6c5de7d094eb1..7d78e841ad8e4 100644 --- a/clients/client-api-gateway/src/commands/UpdateAccountCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Account, UpdateAccountRequest } from "../models/models_0"; +import type { Account, UpdateAccountRequest } from "../models/models_0"; import { UpdateAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateApiKeyCommand.ts b/clients/client-api-gateway/src/commands/UpdateApiKeyCommand.ts index c5a131dc2cf0a..cd9a4cbcfa095 100644 --- a/clients/client-api-gateway/src/commands/UpdateApiKeyCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateApiKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApiKey, UpdateApiKeyRequest } from "../models/models_0"; +import type { ApiKey, UpdateApiKeyRequest } from "../models/models_0"; import { UpdateApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateAuthorizerCommand.ts b/clients/client-api-gateway/src/commands/UpdateAuthorizerCommand.ts index ba720cc373095..97254791f1c50 100644 --- a/clients/client-api-gateway/src/commands/UpdateAuthorizerCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Authorizer, UpdateAuthorizerRequest } from "../models/models_0"; +import type { Authorizer, UpdateAuthorizerRequest } from "../models/models_0"; import { UpdateAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateBasePathMappingCommand.ts b/clients/client-api-gateway/src/commands/UpdateBasePathMappingCommand.ts index 6f6498ef65158..ad7293c5871b7 100644 --- a/clients/client-api-gateway/src/commands/UpdateBasePathMappingCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateBasePathMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BasePathMapping, UpdateBasePathMappingRequest } from "../models/models_0"; +import type { BasePathMapping, UpdateBasePathMappingRequest } from "../models/models_0"; import { UpdateBasePathMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateClientCertificateCommand.ts b/clients/client-api-gateway/src/commands/UpdateClientCertificateCommand.ts index 4f589318b9c1f..464537fd5185c 100644 --- a/clients/client-api-gateway/src/commands/UpdateClientCertificateCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateClientCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClientCertificate, UpdateClientCertificateRequest } from "../models/models_0"; +import type { ClientCertificate, UpdateClientCertificateRequest } from "../models/models_0"; import { UpdateClientCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateDeploymentCommand.ts b/clients/client-api-gateway/src/commands/UpdateDeploymentCommand.ts index a294d26878137..e43a936398597 100644 --- a/clients/client-api-gateway/src/commands/UpdateDeploymentCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Deployment, UpdateDeploymentRequest } from "../models/models_0"; +import type { Deployment, UpdateDeploymentRequest } from "../models/models_0"; import { UpdateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateDocumentationPartCommand.ts b/clients/client-api-gateway/src/commands/UpdateDocumentationPartCommand.ts index 6addb40e69a04..14e451fb74c95 100644 --- a/clients/client-api-gateway/src/commands/UpdateDocumentationPartCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateDocumentationPartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentationPart, UpdateDocumentationPartRequest } from "../models/models_0"; +import type { DocumentationPart, UpdateDocumentationPartRequest } from "../models/models_0"; import { UpdateDocumentationPart } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateDocumentationVersionCommand.ts b/clients/client-api-gateway/src/commands/UpdateDocumentationVersionCommand.ts index 1e8bbbacbe71f..f2caa9edc03be 100644 --- a/clients/client-api-gateway/src/commands/UpdateDocumentationVersionCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateDocumentationVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentationVersion, UpdateDocumentationVersionRequest } from "../models/models_0"; +import type { DocumentationVersion, UpdateDocumentationVersionRequest } from "../models/models_0"; import { UpdateDocumentationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateDomainNameCommand.ts b/clients/client-api-gateway/src/commands/UpdateDomainNameCommand.ts index 954e6e39179a6..190bd11dd45c4 100644 --- a/clients/client-api-gateway/src/commands/UpdateDomainNameCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DomainName, UpdateDomainNameRequest } from "../models/models_0"; +import type { DomainName, UpdateDomainNameRequest } from "../models/models_0"; import { UpdateDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateGatewayResponseCommand.ts b/clients/client-api-gateway/src/commands/UpdateGatewayResponseCommand.ts index b8fcd0390ac62..14c320f2a1285 100644 --- a/clients/client-api-gateway/src/commands/UpdateGatewayResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateGatewayResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GatewayResponse, UpdateGatewayResponseRequest } from "../models/models_0"; +import type { GatewayResponse, UpdateGatewayResponseRequest } from "../models/models_0"; import { UpdateGatewayResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateIntegrationCommand.ts b/clients/client-api-gateway/src/commands/UpdateIntegrationCommand.ts index 72519ed717eef..bf7d759108ed9 100644 --- a/clients/client-api-gateway/src/commands/UpdateIntegrationCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Integration, UpdateIntegrationRequest } from "../models/models_0"; +import type { Integration, UpdateIntegrationRequest } from "../models/models_0"; import { UpdateIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateIntegrationResponseCommand.ts b/clients/client-api-gateway/src/commands/UpdateIntegrationResponseCommand.ts index 2eaff9700017d..639f2ce4588a6 100644 --- a/clients/client-api-gateway/src/commands/UpdateIntegrationResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateIntegrationResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IntegrationResponse, UpdateIntegrationResponseRequest } from "../models/models_0"; +import type { IntegrationResponse, UpdateIntegrationResponseRequest } from "../models/models_0"; import { UpdateIntegrationResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateMethodCommand.ts b/clients/client-api-gateway/src/commands/UpdateMethodCommand.ts index e760542d9a1bf..108904ec9a1c8 100644 --- a/clients/client-api-gateway/src/commands/UpdateMethodCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateMethodCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Method, UpdateMethodRequest } from "../models/models_0"; +import type { Method, UpdateMethodRequest } from "../models/models_0"; import { UpdateMethod } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateMethodResponseCommand.ts b/clients/client-api-gateway/src/commands/UpdateMethodResponseCommand.ts index dfc55baad93c6..91bf707414688 100644 --- a/clients/client-api-gateway/src/commands/UpdateMethodResponseCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateMethodResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MethodResponse, UpdateMethodResponseRequest } from "../models/models_0"; +import type { MethodResponse, UpdateMethodResponseRequest } from "../models/models_0"; import { UpdateMethodResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateModelCommand.ts b/clients/client-api-gateway/src/commands/UpdateModelCommand.ts index 5367cc4319b49..024e53b674f7e 100644 --- a/clients/client-api-gateway/src/commands/UpdateModelCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Model, UpdateModelRequest } from "../models/models_0"; +import type { Model, UpdateModelRequest } from "../models/models_0"; import { UpdateModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateRequestValidatorCommand.ts b/clients/client-api-gateway/src/commands/UpdateRequestValidatorCommand.ts index 6ae9e489c5e24..9a5b9570da45c 100644 --- a/clients/client-api-gateway/src/commands/UpdateRequestValidatorCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateRequestValidatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RequestValidator, UpdateRequestValidatorRequest } from "../models/models_0"; +import type { RequestValidator, UpdateRequestValidatorRequest } from "../models/models_0"; import { UpdateRequestValidator } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateResourceCommand.ts b/clients/client-api-gateway/src/commands/UpdateResourceCommand.ts index 2e45b48fb235a..81bf23741208c 100644 --- a/clients/client-api-gateway/src/commands/UpdateResourceCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Resource, UpdateResourceRequest } from "../models/models_0"; +import type { Resource, UpdateResourceRequest } from "../models/models_0"; import { UpdateResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateRestApiCommand.ts b/clients/client-api-gateway/src/commands/UpdateRestApiCommand.ts index 7f421c8ed5c6c..6b0d5bc427025 100644 --- a/clients/client-api-gateway/src/commands/UpdateRestApiCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateRestApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestApi, UpdateRestApiRequest } from "../models/models_0"; +import type { RestApi, UpdateRestApiRequest } from "../models/models_0"; import { UpdateRestApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateStageCommand.ts b/clients/client-api-gateway/src/commands/UpdateStageCommand.ts index 79d06b29143b8..3ea8c51cf4d33 100644 --- a/clients/client-api-gateway/src/commands/UpdateStageCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Stage, UpdateStageRequest } from "../models/models_0"; +import type { Stage, UpdateStageRequest } from "../models/models_0"; import { UpdateStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateUsageCommand.ts b/clients/client-api-gateway/src/commands/UpdateUsageCommand.ts index 26136c01cb418..fe045e3237ebb 100644 --- a/clients/client-api-gateway/src/commands/UpdateUsageCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUsageRequest, Usage } from "../models/models_0"; +import type { UpdateUsageRequest, Usage } from "../models/models_0"; import { UpdateUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateUsagePlanCommand.ts b/clients/client-api-gateway/src/commands/UpdateUsagePlanCommand.ts index c600e4ca8def0..81f4babd236db 100644 --- a/clients/client-api-gateway/src/commands/UpdateUsagePlanCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateUsagePlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUsagePlanRequest, UsagePlan } from "../models/models_0"; +import type { UpdateUsagePlanRequest, UsagePlan } from "../models/models_0"; import { UpdateUsagePlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/commands/UpdateVpcLinkCommand.ts b/clients/client-api-gateway/src/commands/UpdateVpcLinkCommand.ts index b0849dd8466be..43d6205f15e5b 100644 --- a/clients/client-api-gateway/src/commands/UpdateVpcLinkCommand.ts +++ b/clients/client-api-gateway/src/commands/UpdateVpcLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVpcLinkRequest, VpcLink } from "../models/models_0"; +import type { UpdateVpcLinkRequest, VpcLink } from "../models/models_0"; import { UpdateVpcLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-api-gateway/src/endpoint/EndpointParameters.ts b/clients/client-api-gateway/src/endpoint/EndpointParameters.ts index 4e94fa0b616aa..df5347309902b 100644 --- a/clients/client-api-gateway/src/endpoint/EndpointParameters.ts +++ b/clients/client-api-gateway/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-api-gateway/src/endpoint/endpointResolver.ts b/clients/client-api-gateway/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-api-gateway/src/endpoint/endpointResolver.ts +++ b/clients/client-api-gateway/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-api-gateway/src/extensionConfiguration.ts b/clients/client-api-gateway/src/extensionConfiguration.ts index 1de67c9f305c0..e0568c3ee5c60 100644 --- a/clients/client-api-gateway/src/extensionConfiguration.ts +++ b/clients/client-api-gateway/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-api-gateway/src/models/APIGatewayServiceException.ts b/clients/client-api-gateway/src/models/APIGatewayServiceException.ts index c2e9d57e13336..da98e455751a2 100644 --- a/clients/client-api-gateway/src/models/APIGatewayServiceException.ts +++ b/clients/client-api-gateway/src/models/APIGatewayServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-api-gateway/src/models/errors.ts b/clients/client-api-gateway/src/models/errors.ts index 49c92c05221b1..087402a509b42 100644 --- a/clients/client-api-gateway/src/models/errors.ts +++ b/clients/client-api-gateway/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { APIGatewayServiceException as __BaseException } from "./APIGatewayServiceException"; diff --git a/clients/client-api-gateway/src/models/models_0.ts b/clients/client-api-gateway/src/models/models_0.ts index f562179b38e0e..d7c5b4343e579 100644 --- a/clients/client-api-gateway/src/models/models_0.ts +++ b/clients/client-api-gateway/src/models/models_0.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { +import type { AccessAssociationSourceType, ApiKeysFormat, ApiKeySourceType, diff --git a/clients/client-api-gateway/src/pagination/GetApiKeysPaginator.ts b/clients/client-api-gateway/src/pagination/GetApiKeysPaginator.ts index 970797512b7a6..6fa895a892472 100644 --- a/clients/client-api-gateway/src/pagination/GetApiKeysPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetApiKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { GetApiKeysCommand, GetApiKeysCommandInput, GetApiKeysCommandOutput } from "../commands/GetApiKeysCommand"; diff --git a/clients/client-api-gateway/src/pagination/GetBasePathMappingsPaginator.ts b/clients/client-api-gateway/src/pagination/GetBasePathMappingsPaginator.ts index 078d6973c745a..ec3135ec967d1 100644 --- a/clients/client-api-gateway/src/pagination/GetBasePathMappingsPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetBasePathMappingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { diff --git a/clients/client-api-gateway/src/pagination/GetClientCertificatesPaginator.ts b/clients/client-api-gateway/src/pagination/GetClientCertificatesPaginator.ts index bedbe92738168..656239cfd40f0 100644 --- a/clients/client-api-gateway/src/pagination/GetClientCertificatesPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetClientCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { diff --git a/clients/client-api-gateway/src/pagination/GetDeploymentsPaginator.ts b/clients/client-api-gateway/src/pagination/GetDeploymentsPaginator.ts index a17282db01780..833ac1f062809 100644 --- a/clients/client-api-gateway/src/pagination/GetDeploymentsPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { diff --git a/clients/client-api-gateway/src/pagination/GetDomainNamesPaginator.ts b/clients/client-api-gateway/src/pagination/GetDomainNamesPaginator.ts index fd187dd9bcb16..a8712bc0c6845 100644 --- a/clients/client-api-gateway/src/pagination/GetDomainNamesPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetDomainNamesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { diff --git a/clients/client-api-gateway/src/pagination/GetModelsPaginator.ts b/clients/client-api-gateway/src/pagination/GetModelsPaginator.ts index f73fa8180eb9b..09e0ce21796df 100644 --- a/clients/client-api-gateway/src/pagination/GetModelsPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { GetModelsCommand, GetModelsCommandInput, GetModelsCommandOutput } from "../commands/GetModelsCommand"; diff --git a/clients/client-api-gateway/src/pagination/GetResourcesPaginator.ts b/clients/client-api-gateway/src/pagination/GetResourcesPaginator.ts index 4b9358d082a0a..68f8857cd8d55 100644 --- a/clients/client-api-gateway/src/pagination/GetResourcesPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { diff --git a/clients/client-api-gateway/src/pagination/GetRestApisPaginator.ts b/clients/client-api-gateway/src/pagination/GetRestApisPaginator.ts index 5369ba51803d1..9b56e22624a79 100644 --- a/clients/client-api-gateway/src/pagination/GetRestApisPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetRestApisPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { GetRestApisCommand, GetRestApisCommandInput, GetRestApisCommandOutput } from "../commands/GetRestApisCommand"; diff --git a/clients/client-api-gateway/src/pagination/GetUsagePaginator.ts b/clients/client-api-gateway/src/pagination/GetUsagePaginator.ts index 782eff2417e56..a13efa3a45994 100644 --- a/clients/client-api-gateway/src/pagination/GetUsagePaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetUsagePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { GetUsageCommand, GetUsageCommandInput, GetUsageCommandOutput } from "../commands/GetUsageCommand"; diff --git a/clients/client-api-gateway/src/pagination/GetUsagePlanKeysPaginator.ts b/clients/client-api-gateway/src/pagination/GetUsagePlanKeysPaginator.ts index 28b88d3218636..e76700fcf4a75 100644 --- a/clients/client-api-gateway/src/pagination/GetUsagePlanKeysPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetUsagePlanKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { diff --git a/clients/client-api-gateway/src/pagination/GetUsagePlansPaginator.ts b/clients/client-api-gateway/src/pagination/GetUsagePlansPaginator.ts index 7e6487752e75d..e9c90b256d13a 100644 --- a/clients/client-api-gateway/src/pagination/GetUsagePlansPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetUsagePlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { diff --git a/clients/client-api-gateway/src/pagination/GetVpcLinksPaginator.ts b/clients/client-api-gateway/src/pagination/GetVpcLinksPaginator.ts index 8afbad9f5843d..c27595231c4de 100644 --- a/clients/client-api-gateway/src/pagination/GetVpcLinksPaginator.ts +++ b/clients/client-api-gateway/src/pagination/GetVpcLinksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { GetVpcLinksCommand, GetVpcLinksCommandInput, GetVpcLinksCommandOutput } from "../commands/GetVpcLinksCommand"; diff --git a/clients/client-api-gateway/src/pagination/Interfaces.ts b/clients/client-api-gateway/src/pagination/Interfaces.ts index cd84c3cb1fbdf..bac88c64d02cc 100644 --- a/clients/client-api-gateway/src/pagination/Interfaces.ts +++ b/clients/client-api-gateway/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; diff --git a/clients/client-api-gateway/src/runtimeConfig.browser.ts b/clients/client-api-gateway/src/runtimeConfig.browser.ts index 3277f02e13288..05d78ee53d086 100644 --- a/clients/client-api-gateway/src/runtimeConfig.browser.ts +++ b/clients/client-api-gateway/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; + +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-api-gateway/src/runtimeConfig.native.ts b/clients/client-api-gateway/src/runtimeConfig.native.ts index 65f2d81b0a6f8..16a9f844d3599 100644 --- a/clients/client-api-gateway/src/runtimeConfig.native.ts +++ b/clients/client-api-gateway/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-api-gateway/src/runtimeConfig.shared.ts b/clients/client-api-gateway/src/runtimeConfig.shared.ts index 9afd43aed87fc..ce5a8f4fac0f8 100644 --- a/clients/client-api-gateway/src/runtimeConfig.shared.ts +++ b/clients/client-api-gateway/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { defaultAPIGatewayHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-api-gateway/src/runtimeConfig.ts b/clients/client-api-gateway/src/runtimeConfig.ts index ebdad70299074..c120e32b813c9 100644 --- a/clients/client-api-gateway/src/runtimeConfig.ts +++ b/clients/client-api-gateway/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; + +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-api-gateway/src/runtimeExtensions.ts b/clients/client-api-gateway/src/runtimeExtensions.ts index 6e6e9c3b176a7..10b568c647c33 100644 --- a/clients/client-api-gateway/src/runtimeExtensions.ts +++ b/clients/client-api-gateway/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { APIGatewayExtensionConfiguration } from "./extensionConfiguration"; +import type { APIGatewayExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-api-gateway/src/schemas/schemas_0.ts b/clients/client-api-gateway/src/schemas/schemas_0.ts index ac29e84dd7b27..70558b87203e6 100644 --- a/clients/client-api-gateway/src/schemas/schemas_0.ts +++ b/clients/client-api-gateway/src/schemas/schemas_0.ts @@ -586,7 +586,7 @@ const n0 = "com.amazonaws.apigateway"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-apigatewaymanagementapi/package.json b/clients/client-apigatewaymanagementapi/package.json index 9b69c7a7bc74e..80866b3606335 100644 --- a/clients/client-apigatewaymanagementapi/package.json +++ b/clients/client-apigatewaymanagementapi/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-apigatewaymanagementapi/src/ApiGatewayManagementApi.ts b/clients/client-apigatewaymanagementapi/src/ApiGatewayManagementApi.ts index 9429518004a45..e9dd452f4b54d 100644 --- a/clients/client-apigatewaymanagementapi/src/ApiGatewayManagementApi.ts +++ b/clients/client-apigatewaymanagementapi/src/ApiGatewayManagementApi.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ApiGatewayManagementApiClient, ApiGatewayManagementApiClientConfig } from "./ApiGatewayManagementApiClient"; +import { ApiGatewayManagementApiClient } from "./ApiGatewayManagementApiClient"; import { DeleteConnectionCommand, DeleteConnectionCommandInput, diff --git a/clients/client-apigatewaymanagementapi/src/ApiGatewayManagementApiClient.ts b/clients/client-apigatewaymanagementapi/src/ApiGatewayManagementApiClient.ts index 3cf456bc2386f..6f30f2cd37b30 100644 --- a/clients/client-apigatewaymanagementapi/src/ApiGatewayManagementApiClient.ts +++ b/clients/client-apigatewaymanagementapi/src/ApiGatewayManagementApiClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultApiGatewayManagementApiHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand"; @@ -67,7 +76,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-apigatewaymanagementapi/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-apigatewaymanagementapi/src/auth/httpAuthExtensionConfiguration.ts index 2bc90b65fcedf..bb54f70925f89 100644 --- a/clients/client-apigatewaymanagementapi/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-apigatewaymanagementapi/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ApiGatewayManagementApiHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ApiGatewayManagementApiHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-apigatewaymanagementapi/src/auth/httpAuthSchemeProvider.ts b/clients/client-apigatewaymanagementapi/src/auth/httpAuthSchemeProvider.ts index 88b61d841a346..e819f72355b91 100644 --- a/clients/client-apigatewaymanagementapi/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-apigatewaymanagementapi/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ApiGatewayManagementApiClientResolvedConfig, ApiGatewayManagementApiClientConfig, - ApiGatewayManagementApiClientResolvedConfig, } from "../ApiGatewayManagementApiClient"; /** diff --git a/clients/client-apigatewaymanagementapi/src/commands/DeleteConnectionCommand.ts b/clients/client-apigatewaymanagementapi/src/commands/DeleteConnectionCommand.ts index 1618d6f2d7deb..1d0845b1e133c 100644 --- a/clients/client-apigatewaymanagementapi/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-apigatewaymanagementapi/src/commands/DeleteConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApiGatewayManagementApiClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionRequest } from "../models/models_0"; +import type { DeleteConnectionRequest } from "../models/models_0"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewaymanagementapi/src/commands/GetConnectionCommand.ts b/clients/client-apigatewaymanagementapi/src/commands/GetConnectionCommand.ts index 05e724429aa0e..0b4627234a497 100644 --- a/clients/client-apigatewaymanagementapi/src/commands/GetConnectionCommand.ts +++ b/clients/client-apigatewaymanagementapi/src/commands/GetConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApiGatewayManagementApiClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionRequest, GetConnectionResponse } from "../models/models_0"; +import type { GetConnectionRequest, GetConnectionResponse } from "../models/models_0"; import { GetConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewaymanagementapi/src/commands/PostToConnectionCommand.ts b/clients/client-apigatewaymanagementapi/src/commands/PostToConnectionCommand.ts index 19982924e764d..f60719ed4bddb 100644 --- a/clients/client-apigatewaymanagementapi/src/commands/PostToConnectionCommand.ts +++ b/clients/client-apigatewaymanagementapi/src/commands/PostToConnectionCommand.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApiGatewayManagementApiClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-apigatewaymanagementapi/src/endpoint/EndpointParameters.ts b/clients/client-apigatewaymanagementapi/src/endpoint/EndpointParameters.ts index b996f1ffdb2da..bad94dac1dfb2 100644 --- a/clients/client-apigatewaymanagementapi/src/endpoint/EndpointParameters.ts +++ b/clients/client-apigatewaymanagementapi/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-apigatewaymanagementapi/src/endpoint/endpointResolver.ts b/clients/client-apigatewaymanagementapi/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-apigatewaymanagementapi/src/endpoint/endpointResolver.ts +++ b/clients/client-apigatewaymanagementapi/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-apigatewaymanagementapi/src/extensionConfiguration.ts b/clients/client-apigatewaymanagementapi/src/extensionConfiguration.ts index 6da781fa1e368..237d5e92ac992 100644 --- a/clients/client-apigatewaymanagementapi/src/extensionConfiguration.ts +++ b/clients/client-apigatewaymanagementapi/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-apigatewaymanagementapi/src/models/ApiGatewayManagementApiServiceException.ts b/clients/client-apigatewaymanagementapi/src/models/ApiGatewayManagementApiServiceException.ts index 2ee1febea1cd8..c7b6215feef8d 100644 --- a/clients/client-apigatewaymanagementapi/src/models/ApiGatewayManagementApiServiceException.ts +++ b/clients/client-apigatewaymanagementapi/src/models/ApiGatewayManagementApiServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-apigatewaymanagementapi/src/models/errors.ts b/clients/client-apigatewaymanagementapi/src/models/errors.ts index fbbed8c015ee9..981e8dcbc0acc 100644 --- a/clients/client-apigatewaymanagementapi/src/models/errors.ts +++ b/clients/client-apigatewaymanagementapi/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ApiGatewayManagementApiServiceException as __BaseException } from "./ApiGatewayManagementApiServiceException"; diff --git a/clients/client-apigatewaymanagementapi/src/runtimeConfig.browser.ts b/clients/client-apigatewaymanagementapi/src/runtimeConfig.browser.ts index 2633e0dbc0eed..263d79997ff5d 100644 --- a/clients/client-apigatewaymanagementapi/src/runtimeConfig.browser.ts +++ b/clients/client-apigatewaymanagementapi/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApiGatewayManagementApiClientConfig } from "./ApiGatewayManagementApiClient"; + +import type { ApiGatewayManagementApiClientConfig } from "./ApiGatewayManagementApiClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-apigatewaymanagementapi/src/runtimeConfig.native.ts b/clients/client-apigatewaymanagementapi/src/runtimeConfig.native.ts index 92402f460e8ba..dd75afb58a5b7 100644 --- a/clients/client-apigatewaymanagementapi/src/runtimeConfig.native.ts +++ b/clients/client-apigatewaymanagementapi/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ApiGatewayManagementApiClientConfig } from "./ApiGatewayManagementApiClient"; +import type { ApiGatewayManagementApiClientConfig } from "./ApiGatewayManagementApiClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-apigatewaymanagementapi/src/runtimeConfig.shared.ts b/clients/client-apigatewaymanagementapi/src/runtimeConfig.shared.ts index 14b46825999de..e862ec0780b9f 100644 --- a/clients/client-apigatewaymanagementapi/src/runtimeConfig.shared.ts +++ b/clients/client-apigatewaymanagementapi/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ApiGatewayManagementApiClientConfig } from "./ApiGatewayManagementApiClient"; +import type { ApiGatewayManagementApiClientConfig } from "./ApiGatewayManagementApiClient"; import { defaultApiGatewayManagementApiHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-apigatewaymanagementapi/src/runtimeConfig.ts b/clients/client-apigatewaymanagementapi/src/runtimeConfig.ts index 8a722a45d5dca..72365484c9191 100644 --- a/clients/client-apigatewaymanagementapi/src/runtimeConfig.ts +++ b/clients/client-apigatewaymanagementapi/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApiGatewayManagementApiClientConfig } from "./ApiGatewayManagementApiClient"; + +import type { ApiGatewayManagementApiClientConfig } from "./ApiGatewayManagementApiClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-apigatewaymanagementapi/src/runtimeExtensions.ts b/clients/client-apigatewaymanagementapi/src/runtimeExtensions.ts index 325d49322e36c..c7fc1c08eee8f 100644 --- a/clients/client-apigatewaymanagementapi/src/runtimeExtensions.ts +++ b/clients/client-apigatewaymanagementapi/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ApiGatewayManagementApiExtensionConfiguration } from "./extensionConfiguration"; +import type { ApiGatewayManagementApiExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-apigatewaymanagementapi/src/schemas/schemas_0.ts b/clients/client-apigatewaymanagementapi/src/schemas/schemas_0.ts index 761f175d9e3e5..b469afa249944 100644 --- a/clients/client-apigatewaymanagementapi/src/schemas/schemas_0.ts +++ b/clients/client-apigatewaymanagementapi/src/schemas/schemas_0.ts @@ -33,7 +33,7 @@ const n0 = "com.amazonaws.apigatewaymanagementapi"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ApiGatewayManagementApiServiceException as __ApiGatewayManagementApiServiceException } from "../models/ApiGatewayManagementApiServiceException"; import { diff --git a/clients/client-apigatewayv2/package.json b/clients/client-apigatewayv2/package.json index a4a0e1235f064..51cc22047650e 100644 --- a/clients/client-apigatewayv2/package.json +++ b/clients/client-apigatewayv2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-apigatewayv2/src/ApiGatewayV2.ts b/clients/client-apigatewayv2/src/ApiGatewayV2.ts index 62844b8bccbbf..c0d22c8dd758b 100644 --- a/clients/client-apigatewayv2/src/ApiGatewayV2.ts +++ b/clients/client-apigatewayv2/src/ApiGatewayV2.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ApiGatewayV2Client, ApiGatewayV2ClientConfig } from "./ApiGatewayV2Client"; +import { ApiGatewayV2Client } from "./ApiGatewayV2Client"; import { CreateApiCommand, CreateApiCommandInput, CreateApiCommandOutput } from "./commands/CreateApiCommand"; import { CreateApiMappingCommand, diff --git a/clients/client-apigatewayv2/src/ApiGatewayV2Client.ts b/clients/client-apigatewayv2/src/ApiGatewayV2Client.ts index fbf3f4cb71c07..7bb01bb339007 100644 --- a/clients/client-apigatewayv2/src/ApiGatewayV2Client.ts +++ b/clients/client-apigatewayv2/src/ApiGatewayV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultApiGatewayV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateApiCommandInput, CreateApiCommandOutput } from "./commands/CreateApiCommand"; @@ -239,7 +248,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-apigatewayv2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-apigatewayv2/src/auth/httpAuthExtensionConfiguration.ts index 70d892aa9eb85..c289a30a80970 100644 --- a/clients/client-apigatewayv2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-apigatewayv2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ApiGatewayV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ApiGatewayV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-apigatewayv2/src/auth/httpAuthSchemeProvider.ts b/clients/client-apigatewayv2/src/auth/httpAuthSchemeProvider.ts index d22c55cdfb71a..a8a11e1be4945 100644 --- a/clients/client-apigatewayv2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-apigatewayv2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ApiGatewayV2ClientConfig, ApiGatewayV2ClientResolvedConfig } from "../ApiGatewayV2Client"; +import { type ApiGatewayV2ClientResolvedConfig, ApiGatewayV2ClientConfig } from "../ApiGatewayV2Client"; /** * @internal diff --git a/clients/client-apigatewayv2/src/commands/CreateApiCommand.ts b/clients/client-apigatewayv2/src/commands/CreateApiCommand.ts index c1d30b550bbc4..fe5d3e8579b60 100644 --- a/clients/client-apigatewayv2/src/commands/CreateApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApiRequest, CreateApiResponse } from "../models/models_0"; +import type { CreateApiRequest, CreateApiResponse } from "../models/models_0"; import { CreateApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateApiMappingCommand.ts b/clients/client-apigatewayv2/src/commands/CreateApiMappingCommand.ts index 16eb2fc1b6d09..15edb69cf85c9 100644 --- a/clients/client-apigatewayv2/src/commands/CreateApiMappingCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateApiMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApiMappingRequest, CreateApiMappingResponse } from "../models/models_0"; +import type { CreateApiMappingRequest, CreateApiMappingResponse } from "../models/models_0"; import { CreateApiMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateAuthorizerCommand.ts b/clients/client-apigatewayv2/src/commands/CreateAuthorizerCommand.ts index 2bc6842d2490c..22ba0d67597a9 100644 --- a/clients/client-apigatewayv2/src/commands/CreateAuthorizerCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAuthorizerRequest, CreateAuthorizerResponse } from "../models/models_0"; +import type { CreateAuthorizerRequest, CreateAuthorizerResponse } from "../models/models_0"; import { CreateAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateDeploymentCommand.ts b/clients/client-apigatewayv2/src/commands/CreateDeploymentCommand.ts index da126f7db0203..16eb79e82be47 100644 --- a/clients/client-apigatewayv2/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0"; +import type { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0"; import { CreateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateDomainNameCommand.ts b/clients/client-apigatewayv2/src/commands/CreateDomainNameCommand.ts index 9d10a479d09cb..3f922482f03e6 100644 --- a/clients/client-apigatewayv2/src/commands/CreateDomainNameCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainNameRequest, CreateDomainNameResponse } from "../models/models_0"; +import type { CreateDomainNameRequest, CreateDomainNameResponse } from "../models/models_0"; import { CreateDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateIntegrationCommand.ts b/clients/client-apigatewayv2/src/commands/CreateIntegrationCommand.ts index 5520c66131a40..7d6ad743da919 100644 --- a/clients/client-apigatewayv2/src/commands/CreateIntegrationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIntegrationRequest, CreateIntegrationResult } from "../models/models_0"; +import type { CreateIntegrationRequest, CreateIntegrationResult } from "../models/models_0"; import { CreateIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateIntegrationResponseCommand.ts b/clients/client-apigatewayv2/src/commands/CreateIntegrationResponseCommand.ts index de45f69651140..d7d8bbda514f2 100644 --- a/clients/client-apigatewayv2/src/commands/CreateIntegrationResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateIntegrationResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIntegrationResponseRequest, CreateIntegrationResponseResponse } from "../models/models_0"; +import type { CreateIntegrationResponseRequest, CreateIntegrationResponseResponse } from "../models/models_0"; import { CreateIntegrationResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateModelCommand.ts b/clients/client-apigatewayv2/src/commands/CreateModelCommand.ts index c1ae8baad34d0..3f88e36afb195 100644 --- a/clients/client-apigatewayv2/src/commands/CreateModelCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelRequest, CreateModelResponse } from "../models/models_0"; +import type { CreateModelRequest, CreateModelResponse } from "../models/models_0"; import { CreateModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreatePortalCommand.ts b/clients/client-apigatewayv2/src/commands/CreatePortalCommand.ts index 920d2b4e63250..b4060b5bdb696 100644 --- a/clients/client-apigatewayv2/src/commands/CreatePortalCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreatePortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePortalRequest, CreatePortalResponse } from "../models/models_0"; +import type { CreatePortalRequest, CreatePortalResponse } from "../models/models_0"; import { CreatePortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreatePortalProductCommand.ts b/clients/client-apigatewayv2/src/commands/CreatePortalProductCommand.ts index 8a110287ae648..a026c2205f83f 100644 --- a/clients/client-apigatewayv2/src/commands/CreatePortalProductCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreatePortalProductCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePortalProductRequest, CreatePortalProductResponse } from "../models/models_0"; +import type { CreatePortalProductRequest, CreatePortalProductResponse } from "../models/models_0"; import { CreatePortalProduct } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateProductPageCommand.ts b/clients/client-apigatewayv2/src/commands/CreateProductPageCommand.ts index 60b20b76985a9..0009463893634 100644 --- a/clients/client-apigatewayv2/src/commands/CreateProductPageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateProductPageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProductPageRequest, CreateProductPageResponse } from "../models/models_0"; +import type { CreateProductPageRequest, CreateProductPageResponse } from "../models/models_0"; import { CreateProductPage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateProductRestEndpointPageCommand.ts b/clients/client-apigatewayv2/src/commands/CreateProductRestEndpointPageCommand.ts index 97f25881cd406..e7c05086f84bc 100644 --- a/clients/client-apigatewayv2/src/commands/CreateProductRestEndpointPageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateProductRestEndpointPageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProductRestEndpointPageRequest, CreateProductRestEndpointPageResponse } from "../models/models_0"; +import type { CreateProductRestEndpointPageRequest, CreateProductRestEndpointPageResponse } from "../models/models_0"; import { CreateProductRestEndpointPage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateRouteCommand.ts b/clients/client-apigatewayv2/src/commands/CreateRouteCommand.ts index 333e3aff35411..07c01f6f9f3a9 100644 --- a/clients/client-apigatewayv2/src/commands/CreateRouteCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRouteRequest, CreateRouteResult } from "../models/models_0"; +import type { CreateRouteRequest, CreateRouteResult } from "../models/models_0"; import { CreateRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateRouteResponseCommand.ts b/clients/client-apigatewayv2/src/commands/CreateRouteResponseCommand.ts index 3d0cb8577b637..6e855e28aed2a 100644 --- a/clients/client-apigatewayv2/src/commands/CreateRouteResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateRouteResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRouteResponseRequest, CreateRouteResponseResponse } from "../models/models_0"; +import type { CreateRouteResponseRequest, CreateRouteResponseResponse } from "../models/models_0"; import { CreateRouteResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateRoutingRuleCommand.ts b/clients/client-apigatewayv2/src/commands/CreateRoutingRuleCommand.ts index 2576044c5790c..708a15870c5c7 100644 --- a/clients/client-apigatewayv2/src/commands/CreateRoutingRuleCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateRoutingRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRoutingRuleRequest, CreateRoutingRuleResponse } from "../models/models_0"; +import type { CreateRoutingRuleRequest, CreateRoutingRuleResponse } from "../models/models_0"; import { CreateRoutingRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateStageCommand.ts b/clients/client-apigatewayv2/src/commands/CreateStageCommand.ts index 06ff2820a3aec..ed8b96e664f57 100644 --- a/clients/client-apigatewayv2/src/commands/CreateStageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStageRequest, CreateStageResponse } from "../models/models_0"; +import type { CreateStageRequest, CreateStageResponse } from "../models/models_0"; import { CreateStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/CreateVpcLinkCommand.ts b/clients/client-apigatewayv2/src/commands/CreateVpcLinkCommand.ts index b4819c3337102..72e8cd4f21b68 100644 --- a/clients/client-apigatewayv2/src/commands/CreateVpcLinkCommand.ts +++ b/clients/client-apigatewayv2/src/commands/CreateVpcLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcLinkRequest, CreateVpcLinkResponse } from "../models/models_0"; +import type { CreateVpcLinkRequest, CreateVpcLinkResponse } from "../models/models_0"; import { CreateVpcLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteAccessLogSettingsCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteAccessLogSettingsCommand.ts index fe140409b4890..a84ecdbc10c13 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteAccessLogSettingsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteAccessLogSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessLogSettingsRequest } from "../models/models_0"; +import type { DeleteAccessLogSettingsRequest } from "../models/models_0"; import { DeleteAccessLogSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteApiCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteApiCommand.ts index 2a2a7e4110841..e39028ea0f1c7 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApiRequest } from "../models/models_0"; +import type { DeleteApiRequest } from "../models/models_0"; import { DeleteApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteApiMappingCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteApiMappingCommand.ts index b00eb8045d101..93e3beab1fc5d 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteApiMappingCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteApiMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApiMappingRequest } from "../models/models_0"; +import type { DeleteApiMappingRequest } from "../models/models_0"; import { DeleteApiMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteAuthorizerCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteAuthorizerCommand.ts index 4103ab8c0e564..685eccf002842 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteAuthorizerCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAuthorizerRequest } from "../models/models_0"; +import type { DeleteAuthorizerRequest } from "../models/models_0"; import { DeleteAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteCorsConfigurationCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteCorsConfigurationCommand.ts index b2bfd9ef73197..ab70f66fd6382 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteCorsConfigurationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteCorsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCorsConfigurationRequest } from "../models/models_0"; +import type { DeleteCorsConfigurationRequest } from "../models/models_0"; import { DeleteCorsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteDeploymentCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteDeploymentCommand.ts index f7af66293ef13..c3c454adecedb 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeploymentRequest } from "../models/models_0"; +import type { DeleteDeploymentRequest } from "../models/models_0"; import { DeleteDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteDomainNameCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteDomainNameCommand.ts index 81e8e8c4ed6a9..18ec52d17e217 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteDomainNameCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainNameRequest } from "../models/models_0"; +import type { DeleteDomainNameRequest } from "../models/models_0"; import { DeleteDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteIntegrationCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteIntegrationCommand.ts index 1d70a3122b795..30123ae45d377 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIntegrationRequest } from "../models/models_0"; +import type { DeleteIntegrationRequest } from "../models/models_0"; import { DeleteIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteIntegrationResponseCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteIntegrationResponseCommand.ts index 31a8ca36fd64f..7516c316bc8c4 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteIntegrationResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteIntegrationResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIntegrationResponseRequest } from "../models/models_0"; +import type { DeleteIntegrationResponseRequest } from "../models/models_0"; import { DeleteIntegrationResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteModelCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteModelCommand.ts index a5b1e32180151..ba504ed3e7d36 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteModelCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelRequest } from "../models/models_0"; +import type { DeleteModelRequest } from "../models/models_0"; import { DeleteModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeletePortalCommand.ts b/clients/client-apigatewayv2/src/commands/DeletePortalCommand.ts index b614c56ac5009..9048f9e3ef9af 100644 --- a/clients/client-apigatewayv2/src/commands/DeletePortalCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeletePortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePortalRequest } from "../models/models_0"; +import type { DeletePortalRequest } from "../models/models_0"; import { DeletePortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeletePortalProductCommand.ts b/clients/client-apigatewayv2/src/commands/DeletePortalProductCommand.ts index d1ff0749acc75..ce5ed9d23d351 100644 --- a/clients/client-apigatewayv2/src/commands/DeletePortalProductCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeletePortalProductCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePortalProductRequest } from "../models/models_0"; +import type { DeletePortalProductRequest } from "../models/models_0"; import { DeletePortalProduct } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeletePortalProductSharingPolicyCommand.ts b/clients/client-apigatewayv2/src/commands/DeletePortalProductSharingPolicyCommand.ts index 9462a0bb5bbe9..87cb4132f2552 100644 --- a/clients/client-apigatewayv2/src/commands/DeletePortalProductSharingPolicyCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeletePortalProductSharingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePortalProductSharingPolicyRequest } from "../models/models_0"; +import type { DeletePortalProductSharingPolicyRequest } from "../models/models_0"; import { DeletePortalProductSharingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteProductPageCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteProductPageCommand.ts index d51b740c3666c..ca66a9f0e2543 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteProductPageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteProductPageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProductPageRequest } from "../models/models_0"; +import type { DeleteProductPageRequest } from "../models/models_0"; import { DeleteProductPage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteProductRestEndpointPageCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteProductRestEndpointPageCommand.ts index ef3e2c7b50d05..1cfc34b350baa 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteProductRestEndpointPageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteProductRestEndpointPageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProductRestEndpointPageRequest } from "../models/models_0"; +import type { DeleteProductRestEndpointPageRequest } from "../models/models_0"; import { DeleteProductRestEndpointPage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteRouteCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteRouteCommand.ts index adef67270c7db..91432aa48c5c8 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteRouteCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteRequest } from "../models/models_0"; +import type { DeleteRouteRequest } from "../models/models_0"; import { DeleteRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteRouteRequestParameterCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteRouteRequestParameterCommand.ts index 3a56e8d78b7c0..328e1e407097a 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteRouteRequestParameterCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteRouteRequestParameterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteRequestParameterRequest } from "../models/models_0"; +import type { DeleteRouteRequestParameterRequest } from "../models/models_0"; import { DeleteRouteRequestParameter } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteRouteResponseCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteRouteResponseCommand.ts index 2e8ca1bd5c01a..5be0903670fcf 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteRouteResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteRouteResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteResponseRequest } from "../models/models_0"; +import type { DeleteRouteResponseRequest } from "../models/models_0"; import { DeleteRouteResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteRouteSettingsCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteRouteSettingsCommand.ts index f9249d79d3b39..84bb797654e80 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteRouteSettingsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteRouteSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteSettingsRequest } from "../models/models_0"; +import type { DeleteRouteSettingsRequest } from "../models/models_0"; import { DeleteRouteSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteRoutingRuleCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteRoutingRuleCommand.ts index 9fd7194a119f6..7438be7835fe9 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteRoutingRuleCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteRoutingRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRoutingRuleRequest } from "../models/models_0"; +import type { DeleteRoutingRuleRequest } from "../models/models_0"; import { DeleteRoutingRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteStageCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteStageCommand.ts index dffe8263b8490..045b5fc16724e 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteStageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStageRequest } from "../models/models_0"; +import type { DeleteStageRequest } from "../models/models_0"; import { DeleteStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DeleteVpcLinkCommand.ts b/clients/client-apigatewayv2/src/commands/DeleteVpcLinkCommand.ts index bc386ea3e1443..0f6f486e4f143 100644 --- a/clients/client-apigatewayv2/src/commands/DeleteVpcLinkCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DeleteVpcLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcLinkRequest, DeleteVpcLinkResponse } from "../models/models_0"; +import type { DeleteVpcLinkRequest, DeleteVpcLinkResponse } from "../models/models_0"; import { DeleteVpcLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/DisablePortalCommand.ts b/clients/client-apigatewayv2/src/commands/DisablePortalCommand.ts index b2850385ff6b1..5df20f6537e5b 100644 --- a/clients/client-apigatewayv2/src/commands/DisablePortalCommand.ts +++ b/clients/client-apigatewayv2/src/commands/DisablePortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisablePortalRequest } from "../models/models_0"; +import type { DisablePortalRequest } from "../models/models_0"; import { DisablePortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/ExportApiCommand.ts b/clients/client-apigatewayv2/src/commands/ExportApiCommand.ts index 144a9ff75ee79..6c18201668dfd 100644 --- a/clients/client-apigatewayv2/src/commands/ExportApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ExportApiCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportApiRequest, ExportApiResponse } from "../models/models_0"; +import { type ExportApiRequest, ExportApiResponse } from "../models/models_0"; import { ExportApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetApiCommand.ts b/clients/client-apigatewayv2/src/commands/GetApiCommand.ts index 3637106159194..aba5942a64d63 100644 --- a/clients/client-apigatewayv2/src/commands/GetApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApiRequest, GetApiResponse } from "../models/models_0"; +import type { GetApiRequest, GetApiResponse } from "../models/models_0"; import { GetApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetApiMappingCommand.ts b/clients/client-apigatewayv2/src/commands/GetApiMappingCommand.ts index 94cd8fbf13f2e..e2119bf9ed832 100644 --- a/clients/client-apigatewayv2/src/commands/GetApiMappingCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetApiMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApiMappingRequest, GetApiMappingResponse } from "../models/models_0"; +import type { GetApiMappingRequest, GetApiMappingResponse } from "../models/models_0"; import { GetApiMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetApiMappingsCommand.ts b/clients/client-apigatewayv2/src/commands/GetApiMappingsCommand.ts index 2876fd548beb9..128f48fff532b 100644 --- a/clients/client-apigatewayv2/src/commands/GetApiMappingsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetApiMappingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApiMappingsRequest, GetApiMappingsResponse } from "../models/models_0"; +import type { GetApiMappingsRequest, GetApiMappingsResponse } from "../models/models_0"; import { GetApiMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetApisCommand.ts b/clients/client-apigatewayv2/src/commands/GetApisCommand.ts index 3b97aa1b687a8..6f4c6345f8e2a 100644 --- a/clients/client-apigatewayv2/src/commands/GetApisCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetApisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApisRequest, GetApisResponse } from "../models/models_0"; +import type { GetApisRequest, GetApisResponse } from "../models/models_0"; import { GetApis } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetAuthorizerCommand.ts b/clients/client-apigatewayv2/src/commands/GetAuthorizerCommand.ts index 4adb1f3f9276c..873dae8d09dd2 100644 --- a/clients/client-apigatewayv2/src/commands/GetAuthorizerCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAuthorizerRequest, GetAuthorizerResponse } from "../models/models_0"; +import type { GetAuthorizerRequest, GetAuthorizerResponse } from "../models/models_0"; import { GetAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetAuthorizersCommand.ts b/clients/client-apigatewayv2/src/commands/GetAuthorizersCommand.ts index 3dc961d898310..b80a580306c27 100644 --- a/clients/client-apigatewayv2/src/commands/GetAuthorizersCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetAuthorizersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAuthorizersRequest, GetAuthorizersResponse } from "../models/models_0"; +import type { GetAuthorizersRequest, GetAuthorizersResponse } from "../models/models_0"; import { GetAuthorizers } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetDeploymentCommand.ts b/clients/client-apigatewayv2/src/commands/GetDeploymentCommand.ts index c125fd91e18ab..796b358b01d3e 100644 --- a/clients/client-apigatewayv2/src/commands/GetDeploymentCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeploymentRequest, GetDeploymentResponse } from "../models/models_0"; +import type { GetDeploymentRequest, GetDeploymentResponse } from "../models/models_0"; import { GetDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetDeploymentsCommand.ts b/clients/client-apigatewayv2/src/commands/GetDeploymentsCommand.ts index deac5bd243317..ae089d1379dfb 100644 --- a/clients/client-apigatewayv2/src/commands/GetDeploymentsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeploymentsRequest, GetDeploymentsResponse } from "../models/models_0"; +import type { GetDeploymentsRequest, GetDeploymentsResponse } from "../models/models_0"; import { GetDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetDomainNameCommand.ts b/clients/client-apigatewayv2/src/commands/GetDomainNameCommand.ts index 45ac76c8bd03e..8e8164c116b56 100644 --- a/clients/client-apigatewayv2/src/commands/GetDomainNameCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainNameRequest, GetDomainNameResponse } from "../models/models_0"; +import type { GetDomainNameRequest, GetDomainNameResponse } from "../models/models_0"; import { GetDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetDomainNamesCommand.ts b/clients/client-apigatewayv2/src/commands/GetDomainNamesCommand.ts index 1c93a156aaf6e..9d3b20514d54d 100644 --- a/clients/client-apigatewayv2/src/commands/GetDomainNamesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetDomainNamesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainNamesRequest, GetDomainNamesResponse } from "../models/models_0"; +import type { GetDomainNamesRequest, GetDomainNamesResponse } from "../models/models_0"; import { GetDomainNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetIntegrationCommand.ts b/clients/client-apigatewayv2/src/commands/GetIntegrationCommand.ts index f9c308a2cb835..2ad2810f932c8 100644 --- a/clients/client-apigatewayv2/src/commands/GetIntegrationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIntegrationRequest, GetIntegrationResult } from "../models/models_0"; +import type { GetIntegrationRequest, GetIntegrationResult } from "../models/models_0"; import { GetIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetIntegrationResponseCommand.ts b/clients/client-apigatewayv2/src/commands/GetIntegrationResponseCommand.ts index c9a1f21b263df..7fe631d00087f 100644 --- a/clients/client-apigatewayv2/src/commands/GetIntegrationResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetIntegrationResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIntegrationResponseRequest, GetIntegrationResponseResponse } from "../models/models_0"; +import type { GetIntegrationResponseRequest, GetIntegrationResponseResponse } from "../models/models_0"; import { GetIntegrationResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetIntegrationResponsesCommand.ts b/clients/client-apigatewayv2/src/commands/GetIntegrationResponsesCommand.ts index eff5a17c69dc3..422f8c21ab090 100644 --- a/clients/client-apigatewayv2/src/commands/GetIntegrationResponsesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetIntegrationResponsesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIntegrationResponsesRequest, GetIntegrationResponsesResponse } from "../models/models_0"; +import type { GetIntegrationResponsesRequest, GetIntegrationResponsesResponse } from "../models/models_0"; import { GetIntegrationResponses } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetIntegrationsCommand.ts b/clients/client-apigatewayv2/src/commands/GetIntegrationsCommand.ts index 36a9bb49de4e3..e32a85d35f281 100644 --- a/clients/client-apigatewayv2/src/commands/GetIntegrationsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetIntegrationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIntegrationsRequest, GetIntegrationsResponse } from "../models/models_0"; +import type { GetIntegrationsRequest, GetIntegrationsResponse } from "../models/models_0"; import { GetIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetModelCommand.ts b/clients/client-apigatewayv2/src/commands/GetModelCommand.ts index e91bcf0190574..c28c63c43bf06 100644 --- a/clients/client-apigatewayv2/src/commands/GetModelCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelRequest, GetModelResponse } from "../models/models_0"; +import type { GetModelRequest, GetModelResponse } from "../models/models_0"; import { GetModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetModelTemplateCommand.ts b/clients/client-apigatewayv2/src/commands/GetModelTemplateCommand.ts index 3c20c3793437e..fc6347f47efca 100644 --- a/clients/client-apigatewayv2/src/commands/GetModelTemplateCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetModelTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelTemplateRequest, GetModelTemplateResponse } from "../models/models_0"; +import type { GetModelTemplateRequest, GetModelTemplateResponse } from "../models/models_0"; import { GetModelTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetModelsCommand.ts b/clients/client-apigatewayv2/src/commands/GetModelsCommand.ts index dcfdf6dc5ffee..d67066d0888c8 100644 --- a/clients/client-apigatewayv2/src/commands/GetModelsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelsRequest, GetModelsResponse } from "../models/models_0"; +import type { GetModelsRequest, GetModelsResponse } from "../models/models_0"; import { GetModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetPortalCommand.ts b/clients/client-apigatewayv2/src/commands/GetPortalCommand.ts index b1e74111d56fd..7e774fec85ada 100644 --- a/clients/client-apigatewayv2/src/commands/GetPortalCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetPortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPortalRequest, GetPortalResponse } from "../models/models_0"; +import type { GetPortalRequest, GetPortalResponse } from "../models/models_0"; import { GetPortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetPortalProductCommand.ts b/clients/client-apigatewayv2/src/commands/GetPortalProductCommand.ts index b2d7ccce5553d..2a406be4d9df0 100644 --- a/clients/client-apigatewayv2/src/commands/GetPortalProductCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetPortalProductCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPortalProductRequest, GetPortalProductResponse } from "../models/models_0"; +import type { GetPortalProductRequest, GetPortalProductResponse } from "../models/models_0"; import { GetPortalProduct } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetPortalProductSharingPolicyCommand.ts b/clients/client-apigatewayv2/src/commands/GetPortalProductSharingPolicyCommand.ts index 35547d76ed998..930cd8054ff0c 100644 --- a/clients/client-apigatewayv2/src/commands/GetPortalProductSharingPolicyCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetPortalProductSharingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPortalProductSharingPolicyRequest, GetPortalProductSharingPolicyResponse } from "../models/models_0"; +import type { GetPortalProductSharingPolicyRequest, GetPortalProductSharingPolicyResponse } from "../models/models_0"; import { GetPortalProductSharingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetProductPageCommand.ts b/clients/client-apigatewayv2/src/commands/GetProductPageCommand.ts index 8bd5c868cdf8f..7b5a266108d62 100644 --- a/clients/client-apigatewayv2/src/commands/GetProductPageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetProductPageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProductPageRequest, GetProductPageResponse } from "../models/models_0"; +import type { GetProductPageRequest, GetProductPageResponse } from "../models/models_0"; import { GetProductPage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetProductRestEndpointPageCommand.ts b/clients/client-apigatewayv2/src/commands/GetProductRestEndpointPageCommand.ts index cfdab584bc6a5..1ca816333a96b 100644 --- a/clients/client-apigatewayv2/src/commands/GetProductRestEndpointPageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetProductRestEndpointPageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProductRestEndpointPageRequest, GetProductRestEndpointPageResponse } from "../models/models_0"; +import type { GetProductRestEndpointPageRequest, GetProductRestEndpointPageResponse } from "../models/models_0"; import { GetProductRestEndpointPage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetRouteCommand.ts b/clients/client-apigatewayv2/src/commands/GetRouteCommand.ts index 36bb07fa25b34..76b31e6dd2034 100644 --- a/clients/client-apigatewayv2/src/commands/GetRouteCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRouteRequest, GetRouteResult } from "../models/models_0"; +import type { GetRouteRequest, GetRouteResult } from "../models/models_0"; import { GetRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetRouteResponseCommand.ts b/clients/client-apigatewayv2/src/commands/GetRouteResponseCommand.ts index d149e053cebad..3b1ff9cd39158 100644 --- a/clients/client-apigatewayv2/src/commands/GetRouteResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetRouteResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRouteResponseRequest, GetRouteResponseResponse } from "../models/models_0"; +import type { GetRouteResponseRequest, GetRouteResponseResponse } from "../models/models_0"; import { GetRouteResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetRouteResponsesCommand.ts b/clients/client-apigatewayv2/src/commands/GetRouteResponsesCommand.ts index a8ef870dcda0d..5882cdf95c394 100644 --- a/clients/client-apigatewayv2/src/commands/GetRouteResponsesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetRouteResponsesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRouteResponsesRequest, GetRouteResponsesResponse } from "../models/models_0"; +import type { GetRouteResponsesRequest, GetRouteResponsesResponse } from "../models/models_0"; import { GetRouteResponses } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetRoutesCommand.ts b/clients/client-apigatewayv2/src/commands/GetRoutesCommand.ts index a2293a94aee5b..81f25fc8b40db 100644 --- a/clients/client-apigatewayv2/src/commands/GetRoutesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetRoutesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRoutesRequest, GetRoutesResponse } from "../models/models_0"; +import type { GetRoutesRequest, GetRoutesResponse } from "../models/models_0"; import { GetRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetRoutingRuleCommand.ts b/clients/client-apigatewayv2/src/commands/GetRoutingRuleCommand.ts index 3eb0aa633cd46..2ed948c9b3c9d 100644 --- a/clients/client-apigatewayv2/src/commands/GetRoutingRuleCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetRoutingRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRoutingRuleRequest, GetRoutingRuleResponse } from "../models/models_0"; +import type { GetRoutingRuleRequest, GetRoutingRuleResponse } from "../models/models_0"; import { GetRoutingRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetStageCommand.ts b/clients/client-apigatewayv2/src/commands/GetStageCommand.ts index 9101c777cb4e2..8333defb88b61 100644 --- a/clients/client-apigatewayv2/src/commands/GetStageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStageRequest, GetStageResponse } from "../models/models_0"; +import type { GetStageRequest, GetStageResponse } from "../models/models_0"; import { GetStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetStagesCommand.ts b/clients/client-apigatewayv2/src/commands/GetStagesCommand.ts index 1100b552dfa26..1010329795459 100644 --- a/clients/client-apigatewayv2/src/commands/GetStagesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetStagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStagesRequest, GetStagesResponse } from "../models/models_0"; +import type { GetStagesRequest, GetStagesResponse } from "../models/models_0"; import { GetStages } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetTagsCommand.ts b/clients/client-apigatewayv2/src/commands/GetTagsCommand.ts index 6bdf6b7cc40cf..13c010ea892ba 100644 --- a/clients/client-apigatewayv2/src/commands/GetTagsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTagsRequest, GetTagsResponse } from "../models/models_0"; +import type { GetTagsRequest, GetTagsResponse } from "../models/models_0"; import { GetTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetVpcLinkCommand.ts b/clients/client-apigatewayv2/src/commands/GetVpcLinkCommand.ts index 5a6a4c60d257e..015b0c2f11c82 100644 --- a/clients/client-apigatewayv2/src/commands/GetVpcLinkCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetVpcLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVpcLinkRequest, GetVpcLinkResponse } from "../models/models_0"; +import type { GetVpcLinkRequest, GetVpcLinkResponse } from "../models/models_0"; import { GetVpcLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/GetVpcLinksCommand.ts b/clients/client-apigatewayv2/src/commands/GetVpcLinksCommand.ts index 82dc4332fd026..947c745bd9847 100644 --- a/clients/client-apigatewayv2/src/commands/GetVpcLinksCommand.ts +++ b/clients/client-apigatewayv2/src/commands/GetVpcLinksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVpcLinksRequest, GetVpcLinksResponse } from "../models/models_0"; +import type { GetVpcLinksRequest, GetVpcLinksResponse } from "../models/models_0"; import { GetVpcLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/ImportApiCommand.ts b/clients/client-apigatewayv2/src/commands/ImportApiCommand.ts index 940288ce684b8..38d834c27398c 100644 --- a/clients/client-apigatewayv2/src/commands/ImportApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ImportApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportApiRequest, ImportApiResponse } from "../models/models_0"; +import type { ImportApiRequest, ImportApiResponse } from "../models/models_0"; import { ImportApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/ListPortalProductsCommand.ts b/clients/client-apigatewayv2/src/commands/ListPortalProductsCommand.ts index 52c57700ec4b3..af20b025205ee 100644 --- a/clients/client-apigatewayv2/src/commands/ListPortalProductsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ListPortalProductsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPortalProductsRequest, ListPortalProductsResponse } from "../models/models_0"; +import type { ListPortalProductsRequest, ListPortalProductsResponse } from "../models/models_0"; import { ListPortalProducts } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/ListPortalsCommand.ts b/clients/client-apigatewayv2/src/commands/ListPortalsCommand.ts index 3a390ffe5fd89..9a89a7d674abb 100644 --- a/clients/client-apigatewayv2/src/commands/ListPortalsCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ListPortalsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPortalsRequest, ListPortalsResponse } from "../models/models_0"; +import type { ListPortalsRequest, ListPortalsResponse } from "../models/models_0"; import { ListPortals } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/ListProductPagesCommand.ts b/clients/client-apigatewayv2/src/commands/ListProductPagesCommand.ts index e0379507381de..cbb9c82480ab6 100644 --- a/clients/client-apigatewayv2/src/commands/ListProductPagesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ListProductPagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProductPagesRequest, ListProductPagesResponse } from "../models/models_0"; +import type { ListProductPagesRequest, ListProductPagesResponse } from "../models/models_0"; import { ListProductPages } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/ListProductRestEndpointPagesCommand.ts b/clients/client-apigatewayv2/src/commands/ListProductRestEndpointPagesCommand.ts index da90811ff03f3..da7a15a831f8c 100644 --- a/clients/client-apigatewayv2/src/commands/ListProductRestEndpointPagesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ListProductRestEndpointPagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProductRestEndpointPagesRequest, ListProductRestEndpointPagesResponse } from "../models/models_0"; +import type { ListProductRestEndpointPagesRequest, ListProductRestEndpointPagesResponse } from "../models/models_0"; import { ListProductRestEndpointPages } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/ListRoutingRulesCommand.ts b/clients/client-apigatewayv2/src/commands/ListRoutingRulesCommand.ts index 93bf0942b7bce..2f81598f47098 100644 --- a/clients/client-apigatewayv2/src/commands/ListRoutingRulesCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ListRoutingRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoutingRulesRequest, ListRoutingRulesResponse } from "../models/models_0"; +import type { ListRoutingRulesRequest, ListRoutingRulesResponse } from "../models/models_0"; import { ListRoutingRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/PreviewPortalCommand.ts b/clients/client-apigatewayv2/src/commands/PreviewPortalCommand.ts index 22b20f8cc6cc3..dbe881936f302 100644 --- a/clients/client-apigatewayv2/src/commands/PreviewPortalCommand.ts +++ b/clients/client-apigatewayv2/src/commands/PreviewPortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PreviewPortalRequest, PreviewPortalResponse } from "../models/models_0"; +import type { PreviewPortalRequest, PreviewPortalResponse } from "../models/models_0"; import { PreviewPortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/PublishPortalCommand.ts b/clients/client-apigatewayv2/src/commands/PublishPortalCommand.ts index 09f9d7b6afdd3..aa978d6b1724e 100644 --- a/clients/client-apigatewayv2/src/commands/PublishPortalCommand.ts +++ b/clients/client-apigatewayv2/src/commands/PublishPortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishPortalRequest, PublishPortalResponse } from "../models/models_0"; +import type { PublishPortalRequest, PublishPortalResponse } from "../models/models_0"; import { PublishPortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/PutPortalProductSharingPolicyCommand.ts b/clients/client-apigatewayv2/src/commands/PutPortalProductSharingPolicyCommand.ts index 500e50f45eb50..3dd03c980c3da 100644 --- a/clients/client-apigatewayv2/src/commands/PutPortalProductSharingPolicyCommand.ts +++ b/clients/client-apigatewayv2/src/commands/PutPortalProductSharingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPortalProductSharingPolicyRequest, PutPortalProductSharingPolicyResponse } from "../models/models_0"; +import type { PutPortalProductSharingPolicyRequest, PutPortalProductSharingPolicyResponse } from "../models/models_0"; import { PutPortalProductSharingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/PutRoutingRuleCommand.ts b/clients/client-apigatewayv2/src/commands/PutRoutingRuleCommand.ts index 3269b6a422966..617d4e0ddf244 100644 --- a/clients/client-apigatewayv2/src/commands/PutRoutingRuleCommand.ts +++ b/clients/client-apigatewayv2/src/commands/PutRoutingRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRoutingRuleRequest, PutRoutingRuleResponse } from "../models/models_0"; +import type { PutRoutingRuleRequest, PutRoutingRuleResponse } from "../models/models_0"; import { PutRoutingRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/ReimportApiCommand.ts b/clients/client-apigatewayv2/src/commands/ReimportApiCommand.ts index dc4bf403c8292..9cce2bcff10ff 100644 --- a/clients/client-apigatewayv2/src/commands/ReimportApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ReimportApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReimportApiRequest, ReimportApiResponse } from "../models/models_0"; +import type { ReimportApiRequest, ReimportApiResponse } from "../models/models_0"; import { ReimportApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/ResetAuthorizersCacheCommand.ts b/clients/client-apigatewayv2/src/commands/ResetAuthorizersCacheCommand.ts index c54dc1802a0ea..ae5253ce1ee99 100644 --- a/clients/client-apigatewayv2/src/commands/ResetAuthorizersCacheCommand.ts +++ b/clients/client-apigatewayv2/src/commands/ResetAuthorizersCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetAuthorizersCacheRequest } from "../models/models_0"; +import type { ResetAuthorizersCacheRequest } from "../models/models_0"; import { ResetAuthorizersCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/TagResourceCommand.ts b/clients/client-apigatewayv2/src/commands/TagResourceCommand.ts index 6d6fe8f7fa91b..37835cc86ec0e 100644 --- a/clients/client-apigatewayv2/src/commands/TagResourceCommand.ts +++ b/clients/client-apigatewayv2/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UntagResourceCommand.ts b/clients/client-apigatewayv2/src/commands/UntagResourceCommand.ts index f75693e9c0bde..2c3206784d8b4 100644 --- a/clients/client-apigatewayv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateApiCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateApiCommand.ts index faa300deee804..0e785c560819d 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateApiCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApiRequest, UpdateApiResponse } from "../models/models_0"; +import type { UpdateApiRequest, UpdateApiResponse } from "../models/models_0"; import { UpdateApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateApiMappingCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateApiMappingCommand.ts index 9fa7d42dd0470..49f96e7e87ac3 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateApiMappingCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateApiMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApiMappingRequest, UpdateApiMappingResponse } from "../models/models_0"; +import type { UpdateApiMappingRequest, UpdateApiMappingResponse } from "../models/models_0"; import { UpdateApiMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateAuthorizerCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateAuthorizerCommand.ts index 96b27a7241e38..0f459b52f1de1 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateAuthorizerCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAuthorizerRequest, UpdateAuthorizerResponse } from "../models/models_0"; +import type { UpdateAuthorizerRequest, UpdateAuthorizerResponse } from "../models/models_0"; import { UpdateAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateDeploymentCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateDeploymentCommand.ts index af185f85542d3..46a46f53b1193 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateDeploymentCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeploymentRequest, UpdateDeploymentResponse } from "../models/models_0"; +import type { UpdateDeploymentRequest, UpdateDeploymentResponse } from "../models/models_0"; import { UpdateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateDomainNameCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateDomainNameCommand.ts index abdb6da063d69..53809aaf53821 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateDomainNameCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainNameRequest, UpdateDomainNameResponse } from "../models/models_0"; +import type { UpdateDomainNameRequest, UpdateDomainNameResponse } from "../models/models_0"; import { UpdateDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateIntegrationCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateIntegrationCommand.ts index 5eec584cf3602..027b5785300be 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateIntegrationCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIntegrationRequest, UpdateIntegrationResult } from "../models/models_0"; +import type { UpdateIntegrationRequest, UpdateIntegrationResult } from "../models/models_0"; import { UpdateIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateIntegrationResponseCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateIntegrationResponseCommand.ts index 4daf4fc26337b..c90d1cdf66279 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateIntegrationResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateIntegrationResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIntegrationResponseRequest, UpdateIntegrationResponseResponse } from "../models/models_0"; +import type { UpdateIntegrationResponseRequest, UpdateIntegrationResponseResponse } from "../models/models_0"; import { UpdateIntegrationResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateModelCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateModelCommand.ts index 88f871cab4b90..075fb28469426 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateModelCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateModelRequest, UpdateModelResponse } from "../models/models_0"; +import type { UpdateModelRequest, UpdateModelResponse } from "../models/models_0"; import { UpdateModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdatePortalCommand.ts b/clients/client-apigatewayv2/src/commands/UpdatePortalCommand.ts index 4d3cd78b01107..6e9b145cbcb89 100644 --- a/clients/client-apigatewayv2/src/commands/UpdatePortalCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdatePortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_0"; +import type { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_0"; import { UpdatePortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdatePortalProductCommand.ts b/clients/client-apigatewayv2/src/commands/UpdatePortalProductCommand.ts index 50092ea1f67a2..d62d0ab9e97e1 100644 --- a/clients/client-apigatewayv2/src/commands/UpdatePortalProductCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdatePortalProductCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePortalProductRequest, UpdatePortalProductResponse } from "../models/models_0"; +import type { UpdatePortalProductRequest, UpdatePortalProductResponse } from "../models/models_0"; import { UpdatePortalProduct } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateProductPageCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateProductPageCommand.ts index 48dd577bdeb90..3d8499ca2629c 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateProductPageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateProductPageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProductPageRequest, UpdateProductPageResponse } from "../models/models_0"; +import type { UpdateProductPageRequest, UpdateProductPageResponse } from "../models/models_0"; import { UpdateProductPage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateProductRestEndpointPageCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateProductRestEndpointPageCommand.ts index b47b5094b2fe2..9d91649606c3f 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateProductRestEndpointPageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateProductRestEndpointPageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProductRestEndpointPageRequest, UpdateProductRestEndpointPageResponse } from "../models/models_0"; +import type { UpdateProductRestEndpointPageRequest, UpdateProductRestEndpointPageResponse } from "../models/models_0"; import { UpdateProductRestEndpointPage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateRouteCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateRouteCommand.ts index caa9bb33dc484..52ba4cbb65e54 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateRouteCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRouteRequest, UpdateRouteResult } from "../models/models_0"; +import type { UpdateRouteRequest, UpdateRouteResult } from "../models/models_0"; import { UpdateRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateRouteResponseCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateRouteResponseCommand.ts index 0ac21db4baf85..e5d0342ee5163 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateRouteResponseCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateRouteResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRouteResponseRequest, UpdateRouteResponseResponse } from "../models/models_0"; +import type { UpdateRouteResponseRequest, UpdateRouteResponseResponse } from "../models/models_0"; import { UpdateRouteResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateStageCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateStageCommand.ts index b5690c173b442..d73180e208186 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateStageCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStageRequest, UpdateStageResponse } from "../models/models_0"; +import type { UpdateStageRequest, UpdateStageResponse } from "../models/models_0"; import { UpdateStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/commands/UpdateVpcLinkCommand.ts b/clients/client-apigatewayv2/src/commands/UpdateVpcLinkCommand.ts index fcba9c56c6843..d7a7520d60f41 100644 --- a/clients/client-apigatewayv2/src/commands/UpdateVpcLinkCommand.ts +++ b/clients/client-apigatewayv2/src/commands/UpdateVpcLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; +import type { ApiGatewayV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApiGatewayV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVpcLinkRequest, UpdateVpcLinkResponse } from "../models/models_0"; +import type { UpdateVpcLinkRequest, UpdateVpcLinkResponse } from "../models/models_0"; import { UpdateVpcLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-apigatewayv2/src/endpoint/EndpointParameters.ts b/clients/client-apigatewayv2/src/endpoint/EndpointParameters.ts index 4e94fa0b616aa..df5347309902b 100644 --- a/clients/client-apigatewayv2/src/endpoint/EndpointParameters.ts +++ b/clients/client-apigatewayv2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-apigatewayv2/src/endpoint/endpointResolver.ts b/clients/client-apigatewayv2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-apigatewayv2/src/endpoint/endpointResolver.ts +++ b/clients/client-apigatewayv2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-apigatewayv2/src/extensionConfiguration.ts b/clients/client-apigatewayv2/src/extensionConfiguration.ts index c8141fff3bdf6..be954e3ed5bc4 100644 --- a/clients/client-apigatewayv2/src/extensionConfiguration.ts +++ b/clients/client-apigatewayv2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-apigatewayv2/src/models/ApiGatewayV2ServiceException.ts b/clients/client-apigatewayv2/src/models/ApiGatewayV2ServiceException.ts index f2d1ee13a538f..63ff2a6eedaf0 100644 --- a/clients/client-apigatewayv2/src/models/ApiGatewayV2ServiceException.ts +++ b/clients/client-apigatewayv2/src/models/ApiGatewayV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-apigatewayv2/src/models/errors.ts b/clients/client-apigatewayv2/src/models/errors.ts index 301ef099c8025..46d178df641ca 100644 --- a/clients/client-apigatewayv2/src/models/errors.ts +++ b/clients/client-apigatewayv2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ApiGatewayV2ServiceException as __BaseException } from "./ApiGatewayV2ServiceException"; diff --git a/clients/client-apigatewayv2/src/pagination/Interfaces.ts b/clients/client-apigatewayv2/src/pagination/Interfaces.ts index 1b2fdb273f78b..6cfb4f22c3216 100644 --- a/clients/client-apigatewayv2/src/pagination/Interfaces.ts +++ b/clients/client-apigatewayv2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ApiGatewayV2Client } from "../ApiGatewayV2Client"; diff --git a/clients/client-apigatewayv2/src/pagination/ListRoutingRulesPaginator.ts b/clients/client-apigatewayv2/src/pagination/ListRoutingRulesPaginator.ts index bb5d3503712d4..d3a80bc0bf60b 100644 --- a/clients/client-apigatewayv2/src/pagination/ListRoutingRulesPaginator.ts +++ b/clients/client-apigatewayv2/src/pagination/ListRoutingRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApiGatewayV2Client } from "../ApiGatewayV2Client"; import { diff --git a/clients/client-apigatewayv2/src/runtimeConfig.browser.ts b/clients/client-apigatewayv2/src/runtimeConfig.browser.ts index 9a2536a3ddc3b..9338f5d2b599b 100644 --- a/clients/client-apigatewayv2/src/runtimeConfig.browser.ts +++ b/clients/client-apigatewayv2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApiGatewayV2ClientConfig } from "./ApiGatewayV2Client"; + +import type { ApiGatewayV2ClientConfig } from "./ApiGatewayV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-apigatewayv2/src/runtimeConfig.native.ts b/clients/client-apigatewayv2/src/runtimeConfig.native.ts index 20a1faa9b63a6..d62c990eba659 100644 --- a/clients/client-apigatewayv2/src/runtimeConfig.native.ts +++ b/clients/client-apigatewayv2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ApiGatewayV2ClientConfig } from "./ApiGatewayV2Client"; +import type { ApiGatewayV2ClientConfig } from "./ApiGatewayV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-apigatewayv2/src/runtimeConfig.shared.ts b/clients/client-apigatewayv2/src/runtimeConfig.shared.ts index 88617e0d638a2..cacbab3604cfe 100644 --- a/clients/client-apigatewayv2/src/runtimeConfig.shared.ts +++ b/clients/client-apigatewayv2/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ApiGatewayV2ClientConfig } from "./ApiGatewayV2Client"; +import type { ApiGatewayV2ClientConfig } from "./ApiGatewayV2Client"; import { defaultApiGatewayV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-apigatewayv2/src/runtimeConfig.ts b/clients/client-apigatewayv2/src/runtimeConfig.ts index 2b9f0749864a5..f344bef20b346 100644 --- a/clients/client-apigatewayv2/src/runtimeConfig.ts +++ b/clients/client-apigatewayv2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApiGatewayV2ClientConfig } from "./ApiGatewayV2Client"; + +import type { ApiGatewayV2ClientConfig } from "./ApiGatewayV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-apigatewayv2/src/runtimeExtensions.ts b/clients/client-apigatewayv2/src/runtimeExtensions.ts index cce2b1e4d67ed..cd50eb5083393 100644 --- a/clients/client-apigatewayv2/src/runtimeExtensions.ts +++ b/clients/client-apigatewayv2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ApiGatewayV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { ApiGatewayV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-apigatewayv2/src/schemas/schemas_0.ts b/clients/client-apigatewayv2/src/schemas/schemas_0.ts index 6b795508d0fc8..476b550e6c4de 100644 --- a/clients/client-apigatewayv2/src/schemas/schemas_0.ts +++ b/clients/client-apigatewayv2/src/schemas/schemas_0.ts @@ -788,7 +788,7 @@ const n0 = "com.amazonaws.apigatewayv2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-app-mesh/package.json b/clients/client-app-mesh/package.json index 7d9f467146b05..47f0c16bdb6b7 100644 --- a/clients/client-app-mesh/package.json +++ b/clients/client-app-mesh/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-app-mesh/src/AppMesh.ts b/clients/client-app-mesh/src/AppMesh.ts index 2a3d556d0a06f..909ffa91dfe7b 100644 --- a/clients/client-app-mesh/src/AppMesh.ts +++ b/clients/client-app-mesh/src/AppMesh.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AppMeshClient, AppMeshClientConfig } from "./AppMeshClient"; +import { AppMeshClient } from "./AppMeshClient"; import { CreateGatewayRouteCommand, CreateGatewayRouteCommandInput, diff --git a/clients/client-app-mesh/src/AppMeshClient.ts b/clients/client-app-mesh/src/AppMeshClient.ts index 4603eecae9cac..8bfe2e6cd0d58 100644 --- a/clients/client-app-mesh/src/AppMeshClient.ts +++ b/clients/client-app-mesh/src/AppMeshClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAppMeshHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateGatewayRouteCommandInput, CreateGatewayRouteCommandOutput } from "./commands/CreateGatewayRouteCommand"; @@ -153,7 +162,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-app-mesh/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-app-mesh/src/auth/httpAuthExtensionConfiguration.ts index 45f8c809a68ef..b65205094ce6b 100644 --- a/clients/client-app-mesh/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-app-mesh/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AppMeshHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AppMeshHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-app-mesh/src/auth/httpAuthSchemeProvider.ts b/clients/client-app-mesh/src/auth/httpAuthSchemeProvider.ts index 7e129f6cbc688..0c4e036b1c289 100644 --- a/clients/client-app-mesh/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-app-mesh/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AppMeshClientConfig, AppMeshClientResolvedConfig } from "../AppMeshClient"; +import { type AppMeshClientResolvedConfig, AppMeshClientConfig } from "../AppMeshClient"; /** * @internal diff --git a/clients/client-app-mesh/src/commands/CreateGatewayRouteCommand.ts b/clients/client-app-mesh/src/commands/CreateGatewayRouteCommand.ts index 399ca62ce94c4..c54e8d7cb346c 100644 --- a/clients/client-app-mesh/src/commands/CreateGatewayRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGatewayRouteInput, CreateGatewayRouteOutput } from "../models/models_0"; +import type { CreateGatewayRouteInput, CreateGatewayRouteOutput } from "../models/models_0"; import { CreateGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/CreateMeshCommand.ts b/clients/client-app-mesh/src/commands/CreateMeshCommand.ts index 7ffb2f84ec584..dd92678e53353 100644 --- a/clients/client-app-mesh/src/commands/CreateMeshCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateMeshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMeshInput, CreateMeshOutput } from "../models/models_0"; +import type { CreateMeshInput, CreateMeshOutput } from "../models/models_0"; import { CreateMesh } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/CreateRouteCommand.ts b/clients/client-app-mesh/src/commands/CreateRouteCommand.ts index ce8408192deb6..0a808c8635468 100644 --- a/clients/client-app-mesh/src/commands/CreateRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRouteInput, CreateRouteOutput } from "../models/models_0"; +import type { CreateRouteInput, CreateRouteOutput } from "../models/models_0"; import { CreateRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/CreateVirtualGatewayCommand.ts b/clients/client-app-mesh/src/commands/CreateVirtualGatewayCommand.ts index 72cdf10267914..7aad91f33e2a3 100644 --- a/clients/client-app-mesh/src/commands/CreateVirtualGatewayCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateVirtualGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVirtualGatewayInput, CreateVirtualGatewayOutput } from "../models/models_0"; +import type { CreateVirtualGatewayInput, CreateVirtualGatewayOutput } from "../models/models_0"; import { CreateVirtualGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/CreateVirtualNodeCommand.ts b/clients/client-app-mesh/src/commands/CreateVirtualNodeCommand.ts index c30f71f7605cc..e324ab0234524 100644 --- a/clients/client-app-mesh/src/commands/CreateVirtualNodeCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateVirtualNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVirtualNodeInput, CreateVirtualNodeOutput } from "../models/models_0"; +import type { CreateVirtualNodeInput, CreateVirtualNodeOutput } from "../models/models_0"; import { CreateVirtualNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/CreateVirtualRouterCommand.ts b/clients/client-app-mesh/src/commands/CreateVirtualRouterCommand.ts index 3694824076f70..9fa6fbc857d6e 100644 --- a/clients/client-app-mesh/src/commands/CreateVirtualRouterCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateVirtualRouterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVirtualRouterInput, CreateVirtualRouterOutput } from "../models/models_0"; +import type { CreateVirtualRouterInput, CreateVirtualRouterOutput } from "../models/models_0"; import { CreateVirtualRouter } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/CreateVirtualServiceCommand.ts b/clients/client-app-mesh/src/commands/CreateVirtualServiceCommand.ts index 98b4ee3f2f587..95d09b1e2db90 100644 --- a/clients/client-app-mesh/src/commands/CreateVirtualServiceCommand.ts +++ b/clients/client-app-mesh/src/commands/CreateVirtualServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVirtualServiceInput, CreateVirtualServiceOutput } from "../models/models_0"; +import type { CreateVirtualServiceInput, CreateVirtualServiceOutput } from "../models/models_0"; import { CreateVirtualService } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DeleteGatewayRouteCommand.ts b/clients/client-app-mesh/src/commands/DeleteGatewayRouteCommand.ts index aeb00e6492c4b..f44f40b62563e 100644 --- a/clients/client-app-mesh/src/commands/DeleteGatewayRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGatewayRouteInput, DeleteGatewayRouteOutput } from "../models/models_0"; +import type { DeleteGatewayRouteInput, DeleteGatewayRouteOutput } from "../models/models_0"; import { DeleteGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DeleteMeshCommand.ts b/clients/client-app-mesh/src/commands/DeleteMeshCommand.ts index 59f72f1450cb4..3872f290bcdeb 100644 --- a/clients/client-app-mesh/src/commands/DeleteMeshCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteMeshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMeshInput, DeleteMeshOutput } from "../models/models_0"; +import type { DeleteMeshInput, DeleteMeshOutput } from "../models/models_0"; import { DeleteMesh } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DeleteRouteCommand.ts b/clients/client-app-mesh/src/commands/DeleteRouteCommand.ts index 91e36102bcb04..1575a5a49dfce 100644 --- a/clients/client-app-mesh/src/commands/DeleteRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteInput, DeleteRouteOutput } from "../models/models_0"; +import type { DeleteRouteInput, DeleteRouteOutput } from "../models/models_0"; import { DeleteRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DeleteVirtualGatewayCommand.ts b/clients/client-app-mesh/src/commands/DeleteVirtualGatewayCommand.ts index 0c9458055aa53..42553d57ea6bd 100644 --- a/clients/client-app-mesh/src/commands/DeleteVirtualGatewayCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteVirtualGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVirtualGatewayInput, DeleteVirtualGatewayOutput } from "../models/models_0"; +import type { DeleteVirtualGatewayInput, DeleteVirtualGatewayOutput } from "../models/models_0"; import { DeleteVirtualGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DeleteVirtualNodeCommand.ts b/clients/client-app-mesh/src/commands/DeleteVirtualNodeCommand.ts index c3a6c7164721b..5cbce589e5bd3 100644 --- a/clients/client-app-mesh/src/commands/DeleteVirtualNodeCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteVirtualNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVirtualNodeInput, DeleteVirtualNodeOutput } from "../models/models_0"; +import type { DeleteVirtualNodeInput, DeleteVirtualNodeOutput } from "../models/models_0"; import { DeleteVirtualNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DeleteVirtualRouterCommand.ts b/clients/client-app-mesh/src/commands/DeleteVirtualRouterCommand.ts index 1c4eb32e7d8f7..287887496ebb3 100644 --- a/clients/client-app-mesh/src/commands/DeleteVirtualRouterCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteVirtualRouterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVirtualRouterInput, DeleteVirtualRouterOutput } from "../models/models_0"; +import type { DeleteVirtualRouterInput, DeleteVirtualRouterOutput } from "../models/models_0"; import { DeleteVirtualRouter } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DeleteVirtualServiceCommand.ts b/clients/client-app-mesh/src/commands/DeleteVirtualServiceCommand.ts index 0a02e954e6f00..0240ac8b151c9 100644 --- a/clients/client-app-mesh/src/commands/DeleteVirtualServiceCommand.ts +++ b/clients/client-app-mesh/src/commands/DeleteVirtualServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVirtualServiceInput, DeleteVirtualServiceOutput } from "../models/models_0"; +import type { DeleteVirtualServiceInput, DeleteVirtualServiceOutput } from "../models/models_0"; import { DeleteVirtualService } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DescribeGatewayRouteCommand.ts b/clients/client-app-mesh/src/commands/DescribeGatewayRouteCommand.ts index a7700a79ebb6a..9f00df1ddcfe7 100644 --- a/clients/client-app-mesh/src/commands/DescribeGatewayRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGatewayRouteInput, DescribeGatewayRouteOutput } from "../models/models_0"; +import type { DescribeGatewayRouteInput, DescribeGatewayRouteOutput } from "../models/models_0"; import { DescribeGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DescribeMeshCommand.ts b/clients/client-app-mesh/src/commands/DescribeMeshCommand.ts index b291eb871f246..c046cc3cf4ce7 100644 --- a/clients/client-app-mesh/src/commands/DescribeMeshCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeMeshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMeshInput, DescribeMeshOutput } from "../models/models_0"; +import type { DescribeMeshInput, DescribeMeshOutput } from "../models/models_0"; import { DescribeMesh } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DescribeRouteCommand.ts b/clients/client-app-mesh/src/commands/DescribeRouteCommand.ts index 8ab637889f032..454d295aa46ca 100644 --- a/clients/client-app-mesh/src/commands/DescribeRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRouteInput, DescribeRouteOutput } from "../models/models_0"; +import type { DescribeRouteInput, DescribeRouteOutput } from "../models/models_0"; import { DescribeRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DescribeVirtualGatewayCommand.ts b/clients/client-app-mesh/src/commands/DescribeVirtualGatewayCommand.ts index d88497bdf384b..a3612441643a2 100644 --- a/clients/client-app-mesh/src/commands/DescribeVirtualGatewayCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeVirtualGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVirtualGatewayInput, DescribeVirtualGatewayOutput } from "../models/models_0"; +import type { DescribeVirtualGatewayInput, DescribeVirtualGatewayOutput } from "../models/models_0"; import { DescribeVirtualGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DescribeVirtualNodeCommand.ts b/clients/client-app-mesh/src/commands/DescribeVirtualNodeCommand.ts index 47890d437aad2..c1f473eefe02b 100644 --- a/clients/client-app-mesh/src/commands/DescribeVirtualNodeCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeVirtualNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVirtualNodeInput, DescribeVirtualNodeOutput } from "../models/models_0"; +import type { DescribeVirtualNodeInput, DescribeVirtualNodeOutput } from "../models/models_0"; import { DescribeVirtualNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DescribeVirtualRouterCommand.ts b/clients/client-app-mesh/src/commands/DescribeVirtualRouterCommand.ts index 2345746a8edf3..55e11282b6b24 100644 --- a/clients/client-app-mesh/src/commands/DescribeVirtualRouterCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeVirtualRouterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVirtualRouterInput, DescribeVirtualRouterOutput } from "../models/models_0"; +import type { DescribeVirtualRouterInput, DescribeVirtualRouterOutput } from "../models/models_0"; import { DescribeVirtualRouter } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/DescribeVirtualServiceCommand.ts b/clients/client-app-mesh/src/commands/DescribeVirtualServiceCommand.ts index 14f662580cc39..535e49cff08e3 100644 --- a/clients/client-app-mesh/src/commands/DescribeVirtualServiceCommand.ts +++ b/clients/client-app-mesh/src/commands/DescribeVirtualServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVirtualServiceInput, DescribeVirtualServiceOutput } from "../models/models_0"; +import type { DescribeVirtualServiceInput, DescribeVirtualServiceOutput } from "../models/models_0"; import { DescribeVirtualService } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/ListGatewayRoutesCommand.ts b/clients/client-app-mesh/src/commands/ListGatewayRoutesCommand.ts index f10a9eb4557a4..70ae3f7c83e36 100644 --- a/clients/client-app-mesh/src/commands/ListGatewayRoutesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListGatewayRoutesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGatewayRoutesInput, ListGatewayRoutesOutput } from "../models/models_0"; +import type { ListGatewayRoutesInput, ListGatewayRoutesOutput } from "../models/models_0"; import { ListGatewayRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/ListMeshesCommand.ts b/clients/client-app-mesh/src/commands/ListMeshesCommand.ts index 85bd98338e250..34d6f271b6138 100644 --- a/clients/client-app-mesh/src/commands/ListMeshesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListMeshesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMeshesInput, ListMeshesOutput } from "../models/models_0"; +import type { ListMeshesInput, ListMeshesOutput } from "../models/models_0"; import { ListMeshes } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/ListRoutesCommand.ts b/clients/client-app-mesh/src/commands/ListRoutesCommand.ts index 2f7e758fd9826..0daa587617e67 100644 --- a/clients/client-app-mesh/src/commands/ListRoutesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListRoutesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoutesInput, ListRoutesOutput } from "../models/models_0"; +import type { ListRoutesInput, ListRoutesOutput } from "../models/models_0"; import { ListRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/ListTagsForResourceCommand.ts b/clients/client-app-mesh/src/commands/ListTagsForResourceCommand.ts index ad192abaf99a8..9a90ce32f8e74 100644 --- a/clients/client-app-mesh/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-app-mesh/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/ListVirtualGatewaysCommand.ts b/clients/client-app-mesh/src/commands/ListVirtualGatewaysCommand.ts index e7bfd66fc2171..720e769e0bf01 100644 --- a/clients/client-app-mesh/src/commands/ListVirtualGatewaysCommand.ts +++ b/clients/client-app-mesh/src/commands/ListVirtualGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVirtualGatewaysInput, ListVirtualGatewaysOutput } from "../models/models_0"; +import type { ListVirtualGatewaysInput, ListVirtualGatewaysOutput } from "../models/models_0"; import { ListVirtualGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/ListVirtualNodesCommand.ts b/clients/client-app-mesh/src/commands/ListVirtualNodesCommand.ts index aab58876fdd49..c0b516391e022 100644 --- a/clients/client-app-mesh/src/commands/ListVirtualNodesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListVirtualNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVirtualNodesInput, ListVirtualNodesOutput } from "../models/models_0"; +import type { ListVirtualNodesInput, ListVirtualNodesOutput } from "../models/models_0"; import { ListVirtualNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/ListVirtualRoutersCommand.ts b/clients/client-app-mesh/src/commands/ListVirtualRoutersCommand.ts index f1a7455e7124c..33b8ac019948d 100644 --- a/clients/client-app-mesh/src/commands/ListVirtualRoutersCommand.ts +++ b/clients/client-app-mesh/src/commands/ListVirtualRoutersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVirtualRoutersInput, ListVirtualRoutersOutput } from "../models/models_0"; +import type { ListVirtualRoutersInput, ListVirtualRoutersOutput } from "../models/models_0"; import { ListVirtualRouters } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/ListVirtualServicesCommand.ts b/clients/client-app-mesh/src/commands/ListVirtualServicesCommand.ts index 00b01c6adc83b..71963043dbe84 100644 --- a/clients/client-app-mesh/src/commands/ListVirtualServicesCommand.ts +++ b/clients/client-app-mesh/src/commands/ListVirtualServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVirtualServicesInput, ListVirtualServicesOutput } from "../models/models_0"; +import type { ListVirtualServicesInput, ListVirtualServicesOutput } from "../models/models_0"; import { ListVirtualServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/TagResourceCommand.ts b/clients/client-app-mesh/src/commands/TagResourceCommand.ts index dc716362c03c2..309fb5bbb3e4a 100644 --- a/clients/client-app-mesh/src/commands/TagResourceCommand.ts +++ b/clients/client-app-mesh/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/UntagResourceCommand.ts b/clients/client-app-mesh/src/commands/UntagResourceCommand.ts index 7678939d9b9fb..6dab6930fa902 100644 --- a/clients/client-app-mesh/src/commands/UntagResourceCommand.ts +++ b/clients/client-app-mesh/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/UpdateGatewayRouteCommand.ts b/clients/client-app-mesh/src/commands/UpdateGatewayRouteCommand.ts index 16be9091c54a6..983e5c01c7690 100644 --- a/clients/client-app-mesh/src/commands/UpdateGatewayRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGatewayRouteInput, UpdateGatewayRouteOutput } from "../models/models_0"; +import type { UpdateGatewayRouteInput, UpdateGatewayRouteOutput } from "../models/models_0"; import { UpdateGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/UpdateMeshCommand.ts b/clients/client-app-mesh/src/commands/UpdateMeshCommand.ts index 634de18f48770..549429a9ff89a 100644 --- a/clients/client-app-mesh/src/commands/UpdateMeshCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateMeshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMeshInput, UpdateMeshOutput } from "../models/models_0"; +import type { UpdateMeshInput, UpdateMeshOutput } from "../models/models_0"; import { UpdateMesh } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/UpdateRouteCommand.ts b/clients/client-app-mesh/src/commands/UpdateRouteCommand.ts index b2261deebf51f..c544ed6cb7514 100644 --- a/clients/client-app-mesh/src/commands/UpdateRouteCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRouteInput, UpdateRouteOutput } from "../models/models_0"; +import type { UpdateRouteInput, UpdateRouteOutput } from "../models/models_0"; import { UpdateRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/UpdateVirtualGatewayCommand.ts b/clients/client-app-mesh/src/commands/UpdateVirtualGatewayCommand.ts index 6567719a64d96..22e0bebb74f1c 100644 --- a/clients/client-app-mesh/src/commands/UpdateVirtualGatewayCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateVirtualGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVirtualGatewayInput, UpdateVirtualGatewayOutput } from "../models/models_0"; +import type { UpdateVirtualGatewayInput, UpdateVirtualGatewayOutput } from "../models/models_0"; import { UpdateVirtualGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/UpdateVirtualNodeCommand.ts b/clients/client-app-mesh/src/commands/UpdateVirtualNodeCommand.ts index 9a527eed181c9..c37f55239ad5b 100644 --- a/clients/client-app-mesh/src/commands/UpdateVirtualNodeCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateVirtualNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVirtualNodeInput, UpdateVirtualNodeOutput } from "../models/models_0"; +import type { UpdateVirtualNodeInput, UpdateVirtualNodeOutput } from "../models/models_0"; import { UpdateVirtualNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/UpdateVirtualRouterCommand.ts b/clients/client-app-mesh/src/commands/UpdateVirtualRouterCommand.ts index 33139422e8542..5ebc7ef1354dc 100644 --- a/clients/client-app-mesh/src/commands/UpdateVirtualRouterCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateVirtualRouterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVirtualRouterInput, UpdateVirtualRouterOutput } from "../models/models_0"; +import type { UpdateVirtualRouterInput, UpdateVirtualRouterOutput } from "../models/models_0"; import { UpdateVirtualRouter } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/commands/UpdateVirtualServiceCommand.ts b/clients/client-app-mesh/src/commands/UpdateVirtualServiceCommand.ts index b6b8c0373f95b..4517eead84ff5 100644 --- a/clients/client-app-mesh/src/commands/UpdateVirtualServiceCommand.ts +++ b/clients/client-app-mesh/src/commands/UpdateVirtualServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; +import type { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVirtualServiceInput, UpdateVirtualServiceOutput } from "../models/models_0"; +import type { UpdateVirtualServiceInput, UpdateVirtualServiceOutput } from "../models/models_0"; import { UpdateVirtualService } from "../schemas/schemas_0"; /** diff --git a/clients/client-app-mesh/src/endpoint/EndpointParameters.ts b/clients/client-app-mesh/src/endpoint/EndpointParameters.ts index ecf8eee600ba3..4e09d294ae1be 100644 --- a/clients/client-app-mesh/src/endpoint/EndpointParameters.ts +++ b/clients/client-app-mesh/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-app-mesh/src/endpoint/endpointResolver.ts b/clients/client-app-mesh/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-app-mesh/src/endpoint/endpointResolver.ts +++ b/clients/client-app-mesh/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-app-mesh/src/extensionConfiguration.ts b/clients/client-app-mesh/src/extensionConfiguration.ts index 329341ab485bd..a71970ff08aae 100644 --- a/clients/client-app-mesh/src/extensionConfiguration.ts +++ b/clients/client-app-mesh/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-app-mesh/src/models/AppMeshServiceException.ts b/clients/client-app-mesh/src/models/AppMeshServiceException.ts index d60aba1d6ee75..8693c12aeecf0 100644 --- a/clients/client-app-mesh/src/models/AppMeshServiceException.ts +++ b/clients/client-app-mesh/src/models/AppMeshServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-app-mesh/src/models/errors.ts b/clients/client-app-mesh/src/models/errors.ts index fd4324298b8c3..c5a526959064c 100644 --- a/clients/client-app-mesh/src/models/errors.ts +++ b/clients/client-app-mesh/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AppMeshServiceException as __BaseException } from "./AppMeshServiceException"; diff --git a/clients/client-app-mesh/src/pagination/Interfaces.ts b/clients/client-app-mesh/src/pagination/Interfaces.ts index fb679ab5d27b3..1fda1d2a78f83 100644 --- a/clients/client-app-mesh/src/pagination/Interfaces.ts +++ b/clients/client-app-mesh/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AppMeshClient } from "../AppMeshClient"; diff --git a/clients/client-app-mesh/src/pagination/ListGatewayRoutesPaginator.ts b/clients/client-app-mesh/src/pagination/ListGatewayRoutesPaginator.ts index 78469af2db479..ea8343e0cbd6e 100644 --- a/clients/client-app-mesh/src/pagination/ListGatewayRoutesPaginator.ts +++ b/clients/client-app-mesh/src/pagination/ListGatewayRoutesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppMeshClient } from "../AppMeshClient"; import { diff --git a/clients/client-app-mesh/src/pagination/ListMeshesPaginator.ts b/clients/client-app-mesh/src/pagination/ListMeshesPaginator.ts index 88c9f7bcc2d17..af43bd1f9a9d7 100644 --- a/clients/client-app-mesh/src/pagination/ListMeshesPaginator.ts +++ b/clients/client-app-mesh/src/pagination/ListMeshesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppMeshClient } from "../AppMeshClient"; import { ListMeshesCommand, ListMeshesCommandInput, ListMeshesCommandOutput } from "../commands/ListMeshesCommand"; diff --git a/clients/client-app-mesh/src/pagination/ListRoutesPaginator.ts b/clients/client-app-mesh/src/pagination/ListRoutesPaginator.ts index 52527c82011c3..1cd036b1460bd 100644 --- a/clients/client-app-mesh/src/pagination/ListRoutesPaginator.ts +++ b/clients/client-app-mesh/src/pagination/ListRoutesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppMeshClient } from "../AppMeshClient"; import { ListRoutesCommand, ListRoutesCommandInput, ListRoutesCommandOutput } from "../commands/ListRoutesCommand"; diff --git a/clients/client-app-mesh/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-app-mesh/src/pagination/ListTagsForResourcePaginator.ts index 4add8560a00c4..46974743716a3 100644 --- a/clients/client-app-mesh/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-app-mesh/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppMeshClient } from "../AppMeshClient"; import { diff --git a/clients/client-app-mesh/src/pagination/ListVirtualGatewaysPaginator.ts b/clients/client-app-mesh/src/pagination/ListVirtualGatewaysPaginator.ts index e71ecd1bb9ee5..04e0d1adfce1d 100644 --- a/clients/client-app-mesh/src/pagination/ListVirtualGatewaysPaginator.ts +++ b/clients/client-app-mesh/src/pagination/ListVirtualGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppMeshClient } from "../AppMeshClient"; import { diff --git a/clients/client-app-mesh/src/pagination/ListVirtualNodesPaginator.ts b/clients/client-app-mesh/src/pagination/ListVirtualNodesPaginator.ts index 65dbbac6537b0..87b2d99e5d1c1 100644 --- a/clients/client-app-mesh/src/pagination/ListVirtualNodesPaginator.ts +++ b/clients/client-app-mesh/src/pagination/ListVirtualNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppMeshClient } from "../AppMeshClient"; import { diff --git a/clients/client-app-mesh/src/pagination/ListVirtualRoutersPaginator.ts b/clients/client-app-mesh/src/pagination/ListVirtualRoutersPaginator.ts index 60050f48d4b97..668a6c780daed 100644 --- a/clients/client-app-mesh/src/pagination/ListVirtualRoutersPaginator.ts +++ b/clients/client-app-mesh/src/pagination/ListVirtualRoutersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppMeshClient } from "../AppMeshClient"; import { diff --git a/clients/client-app-mesh/src/pagination/ListVirtualServicesPaginator.ts b/clients/client-app-mesh/src/pagination/ListVirtualServicesPaginator.ts index 84869abea15fd..f00265a641eec 100644 --- a/clients/client-app-mesh/src/pagination/ListVirtualServicesPaginator.ts +++ b/clients/client-app-mesh/src/pagination/ListVirtualServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppMeshClient } from "../AppMeshClient"; import { diff --git a/clients/client-app-mesh/src/runtimeConfig.browser.ts b/clients/client-app-mesh/src/runtimeConfig.browser.ts index 03ae5cbb51bb0..b0b03d998c7a3 100644 --- a/clients/client-app-mesh/src/runtimeConfig.browser.ts +++ b/clients/client-app-mesh/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppMeshClientConfig } from "./AppMeshClient"; + +import type { AppMeshClientConfig } from "./AppMeshClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-app-mesh/src/runtimeConfig.native.ts b/clients/client-app-mesh/src/runtimeConfig.native.ts index 7715f16df9ad9..ab2e14e375fac 100644 --- a/clients/client-app-mesh/src/runtimeConfig.native.ts +++ b/clients/client-app-mesh/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AppMeshClientConfig } from "./AppMeshClient"; +import type { AppMeshClientConfig } from "./AppMeshClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-app-mesh/src/runtimeConfig.shared.ts b/clients/client-app-mesh/src/runtimeConfig.shared.ts index 20a6b84d9f8a1..f9ef26760cf06 100644 --- a/clients/client-app-mesh/src/runtimeConfig.shared.ts +++ b/clients/client-app-mesh/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AppMeshClientConfig } from "./AppMeshClient"; +import type { AppMeshClientConfig } from "./AppMeshClient"; import { defaultAppMeshHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-app-mesh/src/runtimeConfig.ts b/clients/client-app-mesh/src/runtimeConfig.ts index 0200ebabbba87..14a5ad2973897 100644 --- a/clients/client-app-mesh/src/runtimeConfig.ts +++ b/clients/client-app-mesh/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppMeshClientConfig } from "./AppMeshClient"; + +import type { AppMeshClientConfig } from "./AppMeshClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-app-mesh/src/runtimeExtensions.ts b/clients/client-app-mesh/src/runtimeExtensions.ts index acc2d862c7857..a8355b51429be 100644 --- a/clients/client-app-mesh/src/runtimeExtensions.ts +++ b/clients/client-app-mesh/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AppMeshExtensionConfiguration } from "./extensionConfiguration"; +import type { AppMeshExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-app-mesh/src/schemas/schemas_0.ts b/clients/client-app-mesh/src/schemas/schemas_0.ts index def65217da1bd..a10cd253b2bfc 100644 --- a/clients/client-app-mesh/src/schemas/schemas_0.ts +++ b/clients/client-app-mesh/src/schemas/schemas_0.ts @@ -430,7 +430,7 @@ const n0 = "com.amazonaws.appmesh"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AppMeshServiceException as __AppMeshServiceException } from "../models/AppMeshServiceException"; import { diff --git a/clients/client-appconfig/package.json b/clients/client-appconfig/package.json index 9b94f89a03d51..7dfaca55913ab 100644 --- a/clients/client-appconfig/package.json +++ b/clients/client-appconfig/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-appconfig/src/AppConfig.ts b/clients/client-appconfig/src/AppConfig.ts index a1e9eb0821d63..1d4ca55228dfe 100644 --- a/clients/client-appconfig/src/AppConfig.ts +++ b/clients/client-appconfig/src/AppConfig.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AppConfigClient, AppConfigClientConfig } from "./AppConfigClient"; +import { AppConfigClient } from "./AppConfigClient"; import { CreateApplicationCommand, CreateApplicationCommandInput, diff --git a/clients/client-appconfig/src/AppConfigClient.ts b/clients/client-appconfig/src/AppConfigClient.ts index 8d8aca4f0b646..a2f0e1ca1cd79 100644 --- a/clients/client-appconfig/src/AppConfigClient.ts +++ b/clients/client-appconfig/src/AppConfigClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAppConfigHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand"; @@ -175,7 +184,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-appconfig/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-appconfig/src/auth/httpAuthExtensionConfiguration.ts index 8642f9468a00a..07cd71def9ea4 100644 --- a/clients/client-appconfig/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-appconfig/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AppConfigHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AppConfigHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-appconfig/src/auth/httpAuthSchemeProvider.ts b/clients/client-appconfig/src/auth/httpAuthSchemeProvider.ts index 86eb2f1e6b046..0b9bcdfa75980 100644 --- a/clients/client-appconfig/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-appconfig/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AppConfigClientConfig, AppConfigClientResolvedConfig } from "../AppConfigClient"; +import { type AppConfigClientResolvedConfig, AppConfigClientConfig } from "../AppConfigClient"; /** * @internal diff --git a/clients/client-appconfig/src/commands/CreateApplicationCommand.ts b/clients/client-appconfig/src/commands/CreateApplicationCommand.ts index 6b34c3ba108a6..0f4a831c59520 100644 --- a/clients/client-appconfig/src/commands/CreateApplicationCommand.ts +++ b/clients/client-appconfig/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Application, CreateApplicationRequest } from "../models/models_0"; +import type { Application, CreateApplicationRequest } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/CreateConfigurationProfileCommand.ts b/clients/client-appconfig/src/commands/CreateConfigurationProfileCommand.ts index 2c032e852a43d..f87b158e79a05 100644 --- a/clients/client-appconfig/src/commands/CreateConfigurationProfileCommand.ts +++ b/clients/client-appconfig/src/commands/CreateConfigurationProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigurationProfile, CreateConfigurationProfileRequest } from "../models/models_0"; +import type { ConfigurationProfile, CreateConfigurationProfileRequest } from "../models/models_0"; import { CreateConfigurationProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/CreateDeploymentStrategyCommand.ts b/clients/client-appconfig/src/commands/CreateDeploymentStrategyCommand.ts index e48c95e70c347..ec5e5ca78265e 100644 --- a/clients/client-appconfig/src/commands/CreateDeploymentStrategyCommand.ts +++ b/clients/client-appconfig/src/commands/CreateDeploymentStrategyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeploymentStrategyRequest, DeploymentStrategy } from "../models/models_0"; +import type { CreateDeploymentStrategyRequest, DeploymentStrategy } from "../models/models_0"; import { CreateDeploymentStrategy } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/CreateEnvironmentCommand.ts b/clients/client-appconfig/src/commands/CreateEnvironmentCommand.ts index 57da60d2913ff..838c865fa9558 100644 --- a/clients/client-appconfig/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-appconfig/src/commands/CreateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentRequest, Environment } from "../models/models_0"; +import type { CreateEnvironmentRequest, Environment } from "../models/models_0"; import { CreateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/CreateExtensionAssociationCommand.ts b/clients/client-appconfig/src/commands/CreateExtensionAssociationCommand.ts index 1515b6b778e31..66175ba94c6ea 100644 --- a/clients/client-appconfig/src/commands/CreateExtensionAssociationCommand.ts +++ b/clients/client-appconfig/src/commands/CreateExtensionAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExtensionAssociationRequest, ExtensionAssociation } from "../models/models_0"; +import type { CreateExtensionAssociationRequest, ExtensionAssociation } from "../models/models_0"; import { CreateExtensionAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/CreateExtensionCommand.ts b/clients/client-appconfig/src/commands/CreateExtensionCommand.ts index b47e7f3163407..6aff1fa4805b9 100644 --- a/clients/client-appconfig/src/commands/CreateExtensionCommand.ts +++ b/clients/client-appconfig/src/commands/CreateExtensionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExtensionRequest, Extension } from "../models/models_0"; +import type { CreateExtensionRequest, Extension } from "../models/models_0"; import { CreateExtension } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/CreateHostedConfigurationVersionCommand.ts b/clients/client-appconfig/src/commands/CreateHostedConfigurationVersionCommand.ts index b517b47756312..8f1601e3d1da1 100644 --- a/clients/client-appconfig/src/commands/CreateHostedConfigurationVersionCommand.ts +++ b/clients/client-appconfig/src/commands/CreateHostedConfigurationVersionCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; import { CreateHostedConfigurationVersionRequest, HostedConfigurationVersion } from "../models/models_0"; import { CreateHostedConfigurationVersion } from "../schemas/schemas_0"; diff --git a/clients/client-appconfig/src/commands/DeleteApplicationCommand.ts b/clients/client-appconfig/src/commands/DeleteApplicationCommand.ts index 5a6303d13cf34..80decdb0b5cbb 100644 --- a/clients/client-appconfig/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest } from "../models/models_0"; +import type { DeleteApplicationRequest } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/DeleteConfigurationProfileCommand.ts b/clients/client-appconfig/src/commands/DeleteConfigurationProfileCommand.ts index 15e3eba9095fa..e5a28afcf59fb 100644 --- a/clients/client-appconfig/src/commands/DeleteConfigurationProfileCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteConfigurationProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationProfileRequest } from "../models/models_0"; +import type { DeleteConfigurationProfileRequest } from "../models/models_0"; import { DeleteConfigurationProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/DeleteDeploymentStrategyCommand.ts b/clients/client-appconfig/src/commands/DeleteDeploymentStrategyCommand.ts index b1043c5ab0304..eb53c6f280f4c 100644 --- a/clients/client-appconfig/src/commands/DeleteDeploymentStrategyCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteDeploymentStrategyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeploymentStrategyRequest } from "../models/models_0"; +import type { DeleteDeploymentStrategyRequest } from "../models/models_0"; import { DeleteDeploymentStrategy } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/DeleteEnvironmentCommand.ts b/clients/client-appconfig/src/commands/DeleteEnvironmentCommand.ts index c7204a45593d4..3817c2d0f7780 100644 --- a/clients/client-appconfig/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentRequest } from "../models/models_0"; +import type { DeleteEnvironmentRequest } from "../models/models_0"; import { DeleteEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/DeleteExtensionAssociationCommand.ts b/clients/client-appconfig/src/commands/DeleteExtensionAssociationCommand.ts index 2294fa45ecbe9..20f8d8b7ce21f 100644 --- a/clients/client-appconfig/src/commands/DeleteExtensionAssociationCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteExtensionAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteExtensionAssociationRequest } from "../models/models_0"; +import type { DeleteExtensionAssociationRequest } from "../models/models_0"; import { DeleteExtensionAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/DeleteExtensionCommand.ts b/clients/client-appconfig/src/commands/DeleteExtensionCommand.ts index f35fa21c550da..897d871aa5c75 100644 --- a/clients/client-appconfig/src/commands/DeleteExtensionCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteExtensionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteExtensionRequest } from "../models/models_0"; +import type { DeleteExtensionRequest } from "../models/models_0"; import { DeleteExtension } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/DeleteHostedConfigurationVersionCommand.ts b/clients/client-appconfig/src/commands/DeleteHostedConfigurationVersionCommand.ts index 43a3797fc86ff..61dc20848efab 100644 --- a/clients/client-appconfig/src/commands/DeleteHostedConfigurationVersionCommand.ts +++ b/clients/client-appconfig/src/commands/DeleteHostedConfigurationVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHostedConfigurationVersionRequest } from "../models/models_0"; +import type { DeleteHostedConfigurationVersionRequest } from "../models/models_0"; import { DeleteHostedConfigurationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetAccountSettingsCommand.ts b/clients/client-appconfig/src/commands/GetAccountSettingsCommand.ts index e3b0469e71556..c1f07f7e27b18 100644 --- a/clients/client-appconfig/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-appconfig/src/commands/GetAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AccountSettings } from "../models/models_0"; +import type { AccountSettings } from "../models/models_0"; import { GetAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetApplicationCommand.ts b/clients/client-appconfig/src/commands/GetApplicationCommand.ts index 4f552071d232a..dfd6a1ed285f3 100644 --- a/clients/client-appconfig/src/commands/GetApplicationCommand.ts +++ b/clients/client-appconfig/src/commands/GetApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Application, GetApplicationRequest } from "../models/models_0"; +import type { Application, GetApplicationRequest } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetConfigurationCommand.ts b/clients/client-appconfig/src/commands/GetConfigurationCommand.ts index 33886ac171fb4..9d3c8fdeed8b5 100644 --- a/clients/client-appconfig/src/commands/GetConfigurationCommand.ts +++ b/clients/client-appconfig/src/commands/GetConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Configuration, GetConfigurationRequest } from "../models/models_0"; +import { type GetConfigurationRequest, Configuration } from "../models/models_0"; import { GetConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetConfigurationProfileCommand.ts b/clients/client-appconfig/src/commands/GetConfigurationProfileCommand.ts index 700466fa757b3..b127842033bfb 100644 --- a/clients/client-appconfig/src/commands/GetConfigurationProfileCommand.ts +++ b/clients/client-appconfig/src/commands/GetConfigurationProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigurationProfile, GetConfigurationProfileRequest } from "../models/models_0"; +import type { ConfigurationProfile, GetConfigurationProfileRequest } from "../models/models_0"; import { GetConfigurationProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetDeploymentCommand.ts b/clients/client-appconfig/src/commands/GetDeploymentCommand.ts index 6895ac54ecc03..c78485d3f31ae 100644 --- a/clients/client-appconfig/src/commands/GetDeploymentCommand.ts +++ b/clients/client-appconfig/src/commands/GetDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Deployment, GetDeploymentRequest } from "../models/models_0"; +import type { Deployment, GetDeploymentRequest } from "../models/models_0"; import { GetDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetDeploymentStrategyCommand.ts b/clients/client-appconfig/src/commands/GetDeploymentStrategyCommand.ts index de79a4577760f..d9ed1fd3ba2f8 100644 --- a/clients/client-appconfig/src/commands/GetDeploymentStrategyCommand.ts +++ b/clients/client-appconfig/src/commands/GetDeploymentStrategyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeploymentStrategy, GetDeploymentStrategyRequest } from "../models/models_0"; +import type { DeploymentStrategy, GetDeploymentStrategyRequest } from "../models/models_0"; import { GetDeploymentStrategy } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetEnvironmentCommand.ts b/clients/client-appconfig/src/commands/GetEnvironmentCommand.ts index d0e16573afb2d..6360b3b1cd0f6 100644 --- a/clients/client-appconfig/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-appconfig/src/commands/GetEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Environment, GetEnvironmentRequest } from "../models/models_0"; +import type { Environment, GetEnvironmentRequest } from "../models/models_0"; import { GetEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetExtensionAssociationCommand.ts b/clients/client-appconfig/src/commands/GetExtensionAssociationCommand.ts index 1c80de06c6408..f65403219d8c1 100644 --- a/clients/client-appconfig/src/commands/GetExtensionAssociationCommand.ts +++ b/clients/client-appconfig/src/commands/GetExtensionAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExtensionAssociation, GetExtensionAssociationRequest } from "../models/models_0"; +import type { ExtensionAssociation, GetExtensionAssociationRequest } from "../models/models_0"; import { GetExtensionAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetExtensionCommand.ts b/clients/client-appconfig/src/commands/GetExtensionCommand.ts index 7573f06d7aab1..55530d4e2be36 100644 --- a/clients/client-appconfig/src/commands/GetExtensionCommand.ts +++ b/clients/client-appconfig/src/commands/GetExtensionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Extension, GetExtensionRequest } from "../models/models_0"; +import type { Extension, GetExtensionRequest } from "../models/models_0"; import { GetExtension } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/GetHostedConfigurationVersionCommand.ts b/clients/client-appconfig/src/commands/GetHostedConfigurationVersionCommand.ts index 1eeba77264552..1176524395d72 100644 --- a/clients/client-appconfig/src/commands/GetHostedConfigurationVersionCommand.ts +++ b/clients/client-appconfig/src/commands/GetHostedConfigurationVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHostedConfigurationVersionRequest, HostedConfigurationVersion } from "../models/models_0"; +import { type GetHostedConfigurationVersionRequest, HostedConfigurationVersion } from "../models/models_0"; import { GetHostedConfigurationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ListApplicationsCommand.ts b/clients/client-appconfig/src/commands/ListApplicationsCommand.ts index b5b4223b30994..5536951708501 100644 --- a/clients/client-appconfig/src/commands/ListApplicationsCommand.ts +++ b/clients/client-appconfig/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Applications, ListApplicationsRequest } from "../models/models_0"; +import type { Applications, ListApplicationsRequest } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ListConfigurationProfilesCommand.ts b/clients/client-appconfig/src/commands/ListConfigurationProfilesCommand.ts index 5d95582cf38c0..209892eff493a 100644 --- a/clients/client-appconfig/src/commands/ListConfigurationProfilesCommand.ts +++ b/clients/client-appconfig/src/commands/ListConfigurationProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigurationProfiles, ListConfigurationProfilesRequest } from "../models/models_0"; +import type { ConfigurationProfiles, ListConfigurationProfilesRequest } from "../models/models_0"; import { ListConfigurationProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ListDeploymentStrategiesCommand.ts b/clients/client-appconfig/src/commands/ListDeploymentStrategiesCommand.ts index cac75331aaee7..59e15caa7a854 100644 --- a/clients/client-appconfig/src/commands/ListDeploymentStrategiesCommand.ts +++ b/clients/client-appconfig/src/commands/ListDeploymentStrategiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeploymentStrategies, ListDeploymentStrategiesRequest } from "../models/models_0"; +import type { DeploymentStrategies, ListDeploymentStrategiesRequest } from "../models/models_0"; import { ListDeploymentStrategies } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ListDeploymentsCommand.ts b/clients/client-appconfig/src/commands/ListDeploymentsCommand.ts index ba0aa04fc88bc..f2ca9819e51d8 100644 --- a/clients/client-appconfig/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-appconfig/src/commands/ListDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Deployments, ListDeploymentsRequest } from "../models/models_0"; +import type { Deployments, ListDeploymentsRequest } from "../models/models_0"; import { ListDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ListEnvironmentsCommand.ts b/clients/client-appconfig/src/commands/ListEnvironmentsCommand.ts index ec5fd67a8fb2d..008cbaa499ec5 100644 --- a/clients/client-appconfig/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-appconfig/src/commands/ListEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Environments, ListEnvironmentsRequest } from "../models/models_0"; +import type { Environments, ListEnvironmentsRequest } from "../models/models_0"; import { ListEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ListExtensionAssociationsCommand.ts b/clients/client-appconfig/src/commands/ListExtensionAssociationsCommand.ts index 9fec0bfea94e5..e285529ec9a8f 100644 --- a/clients/client-appconfig/src/commands/ListExtensionAssociationsCommand.ts +++ b/clients/client-appconfig/src/commands/ListExtensionAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExtensionAssociations, ListExtensionAssociationsRequest } from "../models/models_0"; +import type { ExtensionAssociations, ListExtensionAssociationsRequest } from "../models/models_0"; import { ListExtensionAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ListExtensionsCommand.ts b/clients/client-appconfig/src/commands/ListExtensionsCommand.ts index 8df0038b3dbe0..3f11b9cfbe389 100644 --- a/clients/client-appconfig/src/commands/ListExtensionsCommand.ts +++ b/clients/client-appconfig/src/commands/ListExtensionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Extensions, ListExtensionsRequest } from "../models/models_0"; +import type { Extensions, ListExtensionsRequest } from "../models/models_0"; import { ListExtensions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ListHostedConfigurationVersionsCommand.ts b/clients/client-appconfig/src/commands/ListHostedConfigurationVersionsCommand.ts index 9d114f9fcc09a..b7ee4893d97a4 100644 --- a/clients/client-appconfig/src/commands/ListHostedConfigurationVersionsCommand.ts +++ b/clients/client-appconfig/src/commands/ListHostedConfigurationVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HostedConfigurationVersions, ListHostedConfigurationVersionsRequest } from "../models/models_0"; +import type { HostedConfigurationVersions, ListHostedConfigurationVersionsRequest } from "../models/models_0"; import { ListHostedConfigurationVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ListTagsForResourceCommand.ts b/clients/client-appconfig/src/commands/ListTagsForResourceCommand.ts index 59b9a217b4e1b..d3ba942667e8e 100644 --- a/clients/client-appconfig/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appconfig/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ResourceTags } from "../models/models_0"; +import type { ListTagsForResourceRequest, ResourceTags } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/StartDeploymentCommand.ts b/clients/client-appconfig/src/commands/StartDeploymentCommand.ts index dcc6fb466b403..b94975328faf8 100644 --- a/clients/client-appconfig/src/commands/StartDeploymentCommand.ts +++ b/clients/client-appconfig/src/commands/StartDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Deployment, StartDeploymentRequest } from "../models/models_0"; +import type { Deployment, StartDeploymentRequest } from "../models/models_0"; import { StartDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/StopDeploymentCommand.ts b/clients/client-appconfig/src/commands/StopDeploymentCommand.ts index 4553c22de7e53..45deccce8aed9 100644 --- a/clients/client-appconfig/src/commands/StopDeploymentCommand.ts +++ b/clients/client-appconfig/src/commands/StopDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Deployment, StopDeploymentRequest } from "../models/models_0"; +import type { Deployment, StopDeploymentRequest } from "../models/models_0"; import { StopDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/TagResourceCommand.ts b/clients/client-appconfig/src/commands/TagResourceCommand.ts index 0920aa84d1638..5fe1218e5aebc 100644 --- a/clients/client-appconfig/src/commands/TagResourceCommand.ts +++ b/clients/client-appconfig/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/UntagResourceCommand.ts b/clients/client-appconfig/src/commands/UntagResourceCommand.ts index 8ed7e7d1ec2ca..ec4124d8e1bfe 100644 --- a/clients/client-appconfig/src/commands/UntagResourceCommand.ts +++ b/clients/client-appconfig/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-appconfig/src/commands/UpdateAccountSettingsCommand.ts index 7fbff70277cca..9adde71af467e 100644 --- a/clients/client-appconfig/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AccountSettings, UpdateAccountSettingsRequest } from "../models/models_0"; +import type { AccountSettings, UpdateAccountSettingsRequest } from "../models/models_0"; import { UpdateAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/UpdateApplicationCommand.ts b/clients/client-appconfig/src/commands/UpdateApplicationCommand.ts index 34f756e90bede..3387ed29bd9ab 100644 --- a/clients/client-appconfig/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Application, UpdateApplicationRequest } from "../models/models_0"; +import type { Application, UpdateApplicationRequest } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/UpdateConfigurationProfileCommand.ts b/clients/client-appconfig/src/commands/UpdateConfigurationProfileCommand.ts index 657e120e8d5b7..bf16c10aed135 100644 --- a/clients/client-appconfig/src/commands/UpdateConfigurationProfileCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateConfigurationProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigurationProfile, UpdateConfigurationProfileRequest } from "../models/models_0"; +import type { ConfigurationProfile, UpdateConfigurationProfileRequest } from "../models/models_0"; import { UpdateConfigurationProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/UpdateDeploymentStrategyCommand.ts b/clients/client-appconfig/src/commands/UpdateDeploymentStrategyCommand.ts index 13ae276caeeaf..38b5f1a0b42f5 100644 --- a/clients/client-appconfig/src/commands/UpdateDeploymentStrategyCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateDeploymentStrategyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeploymentStrategy, UpdateDeploymentStrategyRequest } from "../models/models_0"; +import type { DeploymentStrategy, UpdateDeploymentStrategyRequest } from "../models/models_0"; import { UpdateDeploymentStrategy } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/UpdateEnvironmentCommand.ts b/clients/client-appconfig/src/commands/UpdateEnvironmentCommand.ts index 0d1316b0dd949..c00c51702d3aa 100644 --- a/clients/client-appconfig/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Environment, UpdateEnvironmentRequest } from "../models/models_0"; +import type { Environment, UpdateEnvironmentRequest } from "../models/models_0"; import { UpdateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/UpdateExtensionAssociationCommand.ts b/clients/client-appconfig/src/commands/UpdateExtensionAssociationCommand.ts index 1ab282ed58321..62f72579d3024 100644 --- a/clients/client-appconfig/src/commands/UpdateExtensionAssociationCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateExtensionAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExtensionAssociation, UpdateExtensionAssociationRequest } from "../models/models_0"; +import type { ExtensionAssociation, UpdateExtensionAssociationRequest } from "../models/models_0"; import { UpdateExtensionAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/UpdateExtensionCommand.ts b/clients/client-appconfig/src/commands/UpdateExtensionCommand.ts index 779627670a73d..1cf4ebab979ed 100644 --- a/clients/client-appconfig/src/commands/UpdateExtensionCommand.ts +++ b/clients/client-appconfig/src/commands/UpdateExtensionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Extension, UpdateExtensionRequest } from "../models/models_0"; +import type { Extension, UpdateExtensionRequest } from "../models/models_0"; import { UpdateExtension } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/commands/ValidateConfigurationCommand.ts b/clients/client-appconfig/src/commands/ValidateConfigurationCommand.ts index 008469120e13e..aa6c19c9d8350 100644 --- a/clients/client-appconfig/src/commands/ValidateConfigurationCommand.ts +++ b/clients/client-appconfig/src/commands/ValidateConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; +import type { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidateConfigurationRequest } from "../models/models_0"; +import type { ValidateConfigurationRequest } from "../models/models_0"; import { ValidateConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfig/src/endpoint/EndpointParameters.ts b/clients/client-appconfig/src/endpoint/EndpointParameters.ts index 5b31f03ae04d8..5fea97cd07dcf 100644 --- a/clients/client-appconfig/src/endpoint/EndpointParameters.ts +++ b/clients/client-appconfig/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-appconfig/src/endpoint/endpointResolver.ts b/clients/client-appconfig/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-appconfig/src/endpoint/endpointResolver.ts +++ b/clients/client-appconfig/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-appconfig/src/extensionConfiguration.ts b/clients/client-appconfig/src/extensionConfiguration.ts index 01fc6783ee942..520332a069c15 100644 --- a/clients/client-appconfig/src/extensionConfiguration.ts +++ b/clients/client-appconfig/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-appconfig/src/models/AppConfigServiceException.ts b/clients/client-appconfig/src/models/AppConfigServiceException.ts index cb465b258ce4a..075f7cdd93db1 100644 --- a/clients/client-appconfig/src/models/AppConfigServiceException.ts +++ b/clients/client-appconfig/src/models/AppConfigServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-appconfig/src/models/errors.ts b/clients/client-appconfig/src/models/errors.ts index f1f6045a8d31d..71135682bc6a7 100644 --- a/clients/client-appconfig/src/models/errors.ts +++ b/clients/client-appconfig/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException"; import { BadRequestReason, BytesMeasure } from "./enums"; diff --git a/clients/client-appconfig/src/pagination/Interfaces.ts b/clients/client-appconfig/src/pagination/Interfaces.ts index b1ab8d2db7805..9c98bf5e94c94 100644 --- a/clients/client-appconfig/src/pagination/Interfaces.ts +++ b/clients/client-appconfig/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AppConfigClient } from "../AppConfigClient"; diff --git a/clients/client-appconfig/src/pagination/ListApplicationsPaginator.ts b/clients/client-appconfig/src/pagination/ListApplicationsPaginator.ts index fe679b93dc7d4..137e078bec872 100644 --- a/clients/client-appconfig/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-appconfig/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppConfigClient } from "../AppConfigClient"; import { diff --git a/clients/client-appconfig/src/pagination/ListConfigurationProfilesPaginator.ts b/clients/client-appconfig/src/pagination/ListConfigurationProfilesPaginator.ts index a9cc50c59fdbd..fc57dff732bba 100644 --- a/clients/client-appconfig/src/pagination/ListConfigurationProfilesPaginator.ts +++ b/clients/client-appconfig/src/pagination/ListConfigurationProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppConfigClient } from "../AppConfigClient"; import { diff --git a/clients/client-appconfig/src/pagination/ListDeploymentStrategiesPaginator.ts b/clients/client-appconfig/src/pagination/ListDeploymentStrategiesPaginator.ts index 7eddc62c25582..ad9420b5df813 100644 --- a/clients/client-appconfig/src/pagination/ListDeploymentStrategiesPaginator.ts +++ b/clients/client-appconfig/src/pagination/ListDeploymentStrategiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppConfigClient } from "../AppConfigClient"; import { diff --git a/clients/client-appconfig/src/pagination/ListDeploymentsPaginator.ts b/clients/client-appconfig/src/pagination/ListDeploymentsPaginator.ts index 33c8dba5dd325..d5738f131e17e 100644 --- a/clients/client-appconfig/src/pagination/ListDeploymentsPaginator.ts +++ b/clients/client-appconfig/src/pagination/ListDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppConfigClient } from "../AppConfigClient"; import { diff --git a/clients/client-appconfig/src/pagination/ListEnvironmentsPaginator.ts b/clients/client-appconfig/src/pagination/ListEnvironmentsPaginator.ts index a20717449b11e..d0791142ec7f2 100644 --- a/clients/client-appconfig/src/pagination/ListEnvironmentsPaginator.ts +++ b/clients/client-appconfig/src/pagination/ListEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppConfigClient } from "../AppConfigClient"; import { diff --git a/clients/client-appconfig/src/pagination/ListExtensionAssociationsPaginator.ts b/clients/client-appconfig/src/pagination/ListExtensionAssociationsPaginator.ts index d863d0a32ec75..a688a3445fc1c 100644 --- a/clients/client-appconfig/src/pagination/ListExtensionAssociationsPaginator.ts +++ b/clients/client-appconfig/src/pagination/ListExtensionAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppConfigClient } from "../AppConfigClient"; import { diff --git a/clients/client-appconfig/src/pagination/ListExtensionsPaginator.ts b/clients/client-appconfig/src/pagination/ListExtensionsPaginator.ts index 6aaa303ddd562..970eade707f0b 100644 --- a/clients/client-appconfig/src/pagination/ListExtensionsPaginator.ts +++ b/clients/client-appconfig/src/pagination/ListExtensionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppConfigClient } from "../AppConfigClient"; import { diff --git a/clients/client-appconfig/src/pagination/ListHostedConfigurationVersionsPaginator.ts b/clients/client-appconfig/src/pagination/ListHostedConfigurationVersionsPaginator.ts index 863873cd18dc6..79e16cb036a8e 100644 --- a/clients/client-appconfig/src/pagination/ListHostedConfigurationVersionsPaginator.ts +++ b/clients/client-appconfig/src/pagination/ListHostedConfigurationVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppConfigClient } from "../AppConfigClient"; import { diff --git a/clients/client-appconfig/src/runtimeConfig.browser.ts b/clients/client-appconfig/src/runtimeConfig.browser.ts index abf7025d37bbd..917bf5ba2ea5a 100644 --- a/clients/client-appconfig/src/runtimeConfig.browser.ts +++ b/clients/client-appconfig/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppConfigClientConfig } from "./AppConfigClient"; + +import type { AppConfigClientConfig } from "./AppConfigClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-appconfig/src/runtimeConfig.native.ts b/clients/client-appconfig/src/runtimeConfig.native.ts index ab7db0bb6fa81..e5e09181a0bab 100644 --- a/clients/client-appconfig/src/runtimeConfig.native.ts +++ b/clients/client-appconfig/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AppConfigClientConfig } from "./AppConfigClient"; +import type { AppConfigClientConfig } from "./AppConfigClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-appconfig/src/runtimeConfig.shared.ts b/clients/client-appconfig/src/runtimeConfig.shared.ts index 74ec4102fcb80..ff90b72f8e967 100644 --- a/clients/client-appconfig/src/runtimeConfig.shared.ts +++ b/clients/client-appconfig/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AppConfigClientConfig } from "./AppConfigClient"; +import type { AppConfigClientConfig } from "./AppConfigClient"; import { defaultAppConfigHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-appconfig/src/runtimeConfig.ts b/clients/client-appconfig/src/runtimeConfig.ts index ebcfad1c5e1e8..384c14b0a4e7f 100644 --- a/clients/client-appconfig/src/runtimeConfig.ts +++ b/clients/client-appconfig/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppConfigClientConfig } from "./AppConfigClient"; + +import type { AppConfigClientConfig } from "./AppConfigClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-appconfig/src/runtimeExtensions.ts b/clients/client-appconfig/src/runtimeExtensions.ts index 3c4d9a0e07c59..7007487593eb4 100644 --- a/clients/client-appconfig/src/runtimeExtensions.ts +++ b/clients/client-appconfig/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AppConfigExtensionConfiguration } from "./extensionConfiguration"; +import type { AppConfigExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-appconfig/src/schemas/schemas_0.ts b/clients/client-appconfig/src/schemas/schemas_0.ts index 7d07c9b24a60f..5badd02c70193 100644 --- a/clients/client-appconfig/src/schemas/schemas_0.ts +++ b/clients/client-appconfig/src/schemas/schemas_0.ts @@ -262,7 +262,7 @@ const n0 = "com.amazonaws.appconfig"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-appconfigdata/package.json b/clients/client-appconfigdata/package.json index a3f9e7743d4b0..295f6bfeedc50 100644 --- a/clients/client-appconfigdata/package.json +++ b/clients/client-appconfigdata/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-appconfigdata/src/AppConfigData.ts b/clients/client-appconfigdata/src/AppConfigData.ts index 9ea8203951c71..2a404f9d4e318 100644 --- a/clients/client-appconfigdata/src/AppConfigData.ts +++ b/clients/client-appconfigdata/src/AppConfigData.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AppConfigDataClient, AppConfigDataClientConfig } from "./AppConfigDataClient"; +import { AppConfigDataClient } from "./AppConfigDataClient"; import { GetLatestConfigurationCommand, GetLatestConfigurationCommandInput, diff --git a/clients/client-appconfigdata/src/AppConfigDataClient.ts b/clients/client-appconfigdata/src/AppConfigDataClient.ts index 13a096a87e0c6..4b41c7fb3ff34 100644 --- a/clients/client-appconfigdata/src/AppConfigDataClient.ts +++ b/clients/client-appconfigdata/src/AppConfigDataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAppConfigDataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -72,7 +81,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-appconfigdata/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-appconfigdata/src/auth/httpAuthExtensionConfiguration.ts index bbd5bd5c0d0ac..1662181f614ed 100644 --- a/clients/client-appconfigdata/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-appconfigdata/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AppConfigDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AppConfigDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-appconfigdata/src/auth/httpAuthSchemeProvider.ts b/clients/client-appconfigdata/src/auth/httpAuthSchemeProvider.ts index 0c87143b8167f..2d79aff77933d 100644 --- a/clients/client-appconfigdata/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-appconfigdata/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AppConfigDataClientConfig, AppConfigDataClientResolvedConfig } from "../AppConfigDataClient"; +import { type AppConfigDataClientResolvedConfig, AppConfigDataClientConfig } from "../AppConfigDataClient"; /** * @internal diff --git a/clients/client-appconfigdata/src/commands/GetLatestConfigurationCommand.ts b/clients/client-appconfigdata/src/commands/GetLatestConfigurationCommand.ts index 1b36f3a2533c0..617b71da7221d 100644 --- a/clients/client-appconfigdata/src/commands/GetLatestConfigurationCommand.ts +++ b/clients/client-appconfigdata/src/commands/GetLatestConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { AppConfigDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigDataClient"; +import type { AppConfigDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLatestConfigurationRequest, GetLatestConfigurationResponse } from "../models/models_0"; +import { type GetLatestConfigurationRequest, GetLatestConfigurationResponse } from "../models/models_0"; import { GetLatestConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfigdata/src/commands/StartConfigurationSessionCommand.ts b/clients/client-appconfigdata/src/commands/StartConfigurationSessionCommand.ts index 93f1171604b33..0265ea3b113a7 100644 --- a/clients/client-appconfigdata/src/commands/StartConfigurationSessionCommand.ts +++ b/clients/client-appconfigdata/src/commands/StartConfigurationSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppConfigDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigDataClient"; +import type { AppConfigDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartConfigurationSessionRequest, StartConfigurationSessionResponse } from "../models/models_0"; +import type { StartConfigurationSessionRequest, StartConfigurationSessionResponse } from "../models/models_0"; import { StartConfigurationSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-appconfigdata/src/endpoint/EndpointParameters.ts b/clients/client-appconfigdata/src/endpoint/EndpointParameters.ts index 5b31f03ae04d8..5fea97cd07dcf 100644 --- a/clients/client-appconfigdata/src/endpoint/EndpointParameters.ts +++ b/clients/client-appconfigdata/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-appconfigdata/src/endpoint/endpointResolver.ts b/clients/client-appconfigdata/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-appconfigdata/src/endpoint/endpointResolver.ts +++ b/clients/client-appconfigdata/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-appconfigdata/src/extensionConfiguration.ts b/clients/client-appconfigdata/src/extensionConfiguration.ts index f84422a89868c..835965d0a3b45 100644 --- a/clients/client-appconfigdata/src/extensionConfiguration.ts +++ b/clients/client-appconfigdata/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-appconfigdata/src/models/AppConfigDataServiceException.ts b/clients/client-appconfigdata/src/models/AppConfigDataServiceException.ts index 9192d5f3bb262..22c7d336c4c61 100644 --- a/clients/client-appconfigdata/src/models/AppConfigDataServiceException.ts +++ b/clients/client-appconfigdata/src/models/AppConfigDataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-appconfigdata/src/models/errors.ts b/clients/client-appconfigdata/src/models/errors.ts index fc7cbbae8c44b..fae6b38914f66 100644 --- a/clients/client-appconfigdata/src/models/errors.ts +++ b/clients/client-appconfigdata/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AppConfigDataServiceException as __BaseException } from "./AppConfigDataServiceException"; import { BadRequestReason, ResourceType } from "./enums"; diff --git a/clients/client-appconfigdata/src/runtimeConfig.browser.ts b/clients/client-appconfigdata/src/runtimeConfig.browser.ts index f8e6a1afda0fe..7a4c9fafd3a4b 100644 --- a/clients/client-appconfigdata/src/runtimeConfig.browser.ts +++ b/clients/client-appconfigdata/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppConfigDataClientConfig } from "./AppConfigDataClient"; + +import type { AppConfigDataClientConfig } from "./AppConfigDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-appconfigdata/src/runtimeConfig.native.ts b/clients/client-appconfigdata/src/runtimeConfig.native.ts index 68e50024d97db..c6c77884f7c25 100644 --- a/clients/client-appconfigdata/src/runtimeConfig.native.ts +++ b/clients/client-appconfigdata/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AppConfigDataClientConfig } from "./AppConfigDataClient"; +import type { AppConfigDataClientConfig } from "./AppConfigDataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-appconfigdata/src/runtimeConfig.shared.ts b/clients/client-appconfigdata/src/runtimeConfig.shared.ts index e6b5a28e94ee2..b09a3fc77945a 100644 --- a/clients/client-appconfigdata/src/runtimeConfig.shared.ts +++ b/clients/client-appconfigdata/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AppConfigDataClientConfig } from "./AppConfigDataClient"; +import type { AppConfigDataClientConfig } from "./AppConfigDataClient"; import { defaultAppConfigDataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-appconfigdata/src/runtimeConfig.ts b/clients/client-appconfigdata/src/runtimeConfig.ts index 44057689a6498..b640ae6222891 100644 --- a/clients/client-appconfigdata/src/runtimeConfig.ts +++ b/clients/client-appconfigdata/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppConfigDataClientConfig } from "./AppConfigDataClient"; + +import type { AppConfigDataClientConfig } from "./AppConfigDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-appconfigdata/src/runtimeExtensions.ts b/clients/client-appconfigdata/src/runtimeExtensions.ts index dbfb1ffab2d34..c8c1e65983f1e 100644 --- a/clients/client-appconfigdata/src/runtimeExtensions.ts +++ b/clients/client-appconfigdata/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AppConfigDataExtensionConfiguration } from "./extensionConfiguration"; +import type { AppConfigDataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-appconfigdata/src/schemas/schemas_0.ts b/clients/client-appconfigdata/src/schemas/schemas_0.ts index 4ffa990e62aea..3c6740ede5659 100644 --- a/clients/client-appconfigdata/src/schemas/schemas_0.ts +++ b/clients/client-appconfigdata/src/schemas/schemas_0.ts @@ -47,7 +47,7 @@ const n0 = "com.amazonaws.appconfigdata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticMapSchema, StaticOperationSchema, diff --git a/clients/client-appfabric/package.json b/clients/client-appfabric/package.json index a56a19fd145e7..5bc8023b439b6 100644 --- a/clients/client-appfabric/package.json +++ b/clients/client-appfabric/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-appfabric/src/AppFabric.ts b/clients/client-appfabric/src/AppFabric.ts index 9eeaed597602e..4005e090a3925 100644 --- a/clients/client-appfabric/src/AppFabric.ts +++ b/clients/client-appfabric/src/AppFabric.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AppFabricClient, AppFabricClientConfig } from "./AppFabricClient"; +import { AppFabricClient } from "./AppFabricClient"; import { BatchGetUserAccessTasksCommand, BatchGetUserAccessTasksCommandInput, diff --git a/clients/client-appfabric/src/AppFabricClient.ts b/clients/client-appfabric/src/AppFabricClient.ts index ef3cdabea9840..d4a9a43b1db62 100644 --- a/clients/client-appfabric/src/AppFabricClient.ts +++ b/clients/client-appfabric/src/AppFabricClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAppFabricHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -132,7 +141,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-appfabric/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-appfabric/src/auth/httpAuthExtensionConfiguration.ts index 0ae89e138e408..5186fe5986ee9 100644 --- a/clients/client-appfabric/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-appfabric/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AppFabricHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AppFabricHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-appfabric/src/auth/httpAuthSchemeProvider.ts b/clients/client-appfabric/src/auth/httpAuthSchemeProvider.ts index 2ffd7a7c0562a..1f1851349454c 100644 --- a/clients/client-appfabric/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-appfabric/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AppFabricClientConfig, AppFabricClientResolvedConfig } from "../AppFabricClient"; +import { type AppFabricClientResolvedConfig, AppFabricClientConfig } from "../AppFabricClient"; /** * @internal diff --git a/clients/client-appfabric/src/commands/BatchGetUserAccessTasksCommand.ts b/clients/client-appfabric/src/commands/BatchGetUserAccessTasksCommand.ts index e93061d19af5c..106b2c74310bc 100644 --- a/clients/client-appfabric/src/commands/BatchGetUserAccessTasksCommand.ts +++ b/clients/client-appfabric/src/commands/BatchGetUserAccessTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetUserAccessTasksRequest, BatchGetUserAccessTasksResponse } from "../models/models_0"; +import type { BatchGetUserAccessTasksRequest, BatchGetUserAccessTasksResponse } from "../models/models_0"; import { BatchGetUserAccessTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/ConnectAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/ConnectAppAuthorizationCommand.ts index f7e93b8268d9c..cd58301a7c5a5 100644 --- a/clients/client-appfabric/src/commands/ConnectAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/ConnectAppAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConnectAppAuthorizationRequest, ConnectAppAuthorizationResponse } from "../models/models_0"; +import type { ConnectAppAuthorizationRequest, ConnectAppAuthorizationResponse } from "../models/models_0"; import { ConnectAppAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/CreateAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/CreateAppAuthorizationCommand.ts index a0da7b22152ae..a3c691c8e157a 100644 --- a/clients/client-appfabric/src/commands/CreateAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/CreateAppAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppAuthorizationRequest, CreateAppAuthorizationResponse } from "../models/models_0"; +import type { CreateAppAuthorizationRequest, CreateAppAuthorizationResponse } from "../models/models_0"; import { CreateAppAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/CreateAppBundleCommand.ts b/clients/client-appfabric/src/commands/CreateAppBundleCommand.ts index 7c5ec2baebb2a..f88f6d2ddc6f2 100644 --- a/clients/client-appfabric/src/commands/CreateAppBundleCommand.ts +++ b/clients/client-appfabric/src/commands/CreateAppBundleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppBundleRequest, CreateAppBundleResponse } from "../models/models_0"; +import type { CreateAppBundleRequest, CreateAppBundleResponse } from "../models/models_0"; import { CreateAppBundle } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/CreateIngestionCommand.ts b/clients/client-appfabric/src/commands/CreateIngestionCommand.ts index 3e01d8e527df6..64b4f6e553472 100644 --- a/clients/client-appfabric/src/commands/CreateIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/CreateIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIngestionRequest, CreateIngestionResponse } from "../models/models_0"; +import type { CreateIngestionRequest, CreateIngestionResponse } from "../models/models_0"; import { CreateIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/CreateIngestionDestinationCommand.ts b/clients/client-appfabric/src/commands/CreateIngestionDestinationCommand.ts index 59bf4188241c8..b4a3f02fadaa2 100644 --- a/clients/client-appfabric/src/commands/CreateIngestionDestinationCommand.ts +++ b/clients/client-appfabric/src/commands/CreateIngestionDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIngestionDestinationRequest, CreateIngestionDestinationResponse } from "../models/models_0"; +import type { CreateIngestionDestinationRequest, CreateIngestionDestinationResponse } from "../models/models_0"; import { CreateIngestionDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/DeleteAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/DeleteAppAuthorizationCommand.ts index f37717e8ecc83..808ac15058fa4 100644 --- a/clients/client-appfabric/src/commands/DeleteAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/DeleteAppAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppAuthorizationRequest, DeleteAppAuthorizationResponse } from "../models/models_0"; +import type { DeleteAppAuthorizationRequest, DeleteAppAuthorizationResponse } from "../models/models_0"; import { DeleteAppAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/DeleteAppBundleCommand.ts b/clients/client-appfabric/src/commands/DeleteAppBundleCommand.ts index 7f6b6463f72a4..eed09e3c1ce6b 100644 --- a/clients/client-appfabric/src/commands/DeleteAppBundleCommand.ts +++ b/clients/client-appfabric/src/commands/DeleteAppBundleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppBundleRequest, DeleteAppBundleResponse } from "../models/models_0"; +import type { DeleteAppBundleRequest, DeleteAppBundleResponse } from "../models/models_0"; import { DeleteAppBundle } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/DeleteIngestionCommand.ts b/clients/client-appfabric/src/commands/DeleteIngestionCommand.ts index 52edb63fd8026..b9af702435a5e 100644 --- a/clients/client-appfabric/src/commands/DeleteIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/DeleteIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIngestionRequest, DeleteIngestionResponse } from "../models/models_0"; +import type { DeleteIngestionRequest, DeleteIngestionResponse } from "../models/models_0"; import { DeleteIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/DeleteIngestionDestinationCommand.ts b/clients/client-appfabric/src/commands/DeleteIngestionDestinationCommand.ts index 495623a0eee0c..84e520a885fad 100644 --- a/clients/client-appfabric/src/commands/DeleteIngestionDestinationCommand.ts +++ b/clients/client-appfabric/src/commands/DeleteIngestionDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIngestionDestinationRequest, DeleteIngestionDestinationResponse } from "../models/models_0"; +import type { DeleteIngestionDestinationRequest, DeleteIngestionDestinationResponse } from "../models/models_0"; import { DeleteIngestionDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/GetAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/GetAppAuthorizationCommand.ts index e6ac39d1bc424..8257a5dbb8d4f 100644 --- a/clients/client-appfabric/src/commands/GetAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/GetAppAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAppAuthorizationRequest, GetAppAuthorizationResponse } from "../models/models_0"; +import type { GetAppAuthorizationRequest, GetAppAuthorizationResponse } from "../models/models_0"; import { GetAppAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/GetAppBundleCommand.ts b/clients/client-appfabric/src/commands/GetAppBundleCommand.ts index 7fd3f0ac30d29..6e4ac9d35c46c 100644 --- a/clients/client-appfabric/src/commands/GetAppBundleCommand.ts +++ b/clients/client-appfabric/src/commands/GetAppBundleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAppBundleRequest, GetAppBundleResponse } from "../models/models_0"; +import type { GetAppBundleRequest, GetAppBundleResponse } from "../models/models_0"; import { GetAppBundle } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/GetIngestionCommand.ts b/clients/client-appfabric/src/commands/GetIngestionCommand.ts index 5881baea13f72..01b0e6cf60c6e 100644 --- a/clients/client-appfabric/src/commands/GetIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/GetIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIngestionRequest, GetIngestionResponse } from "../models/models_0"; +import type { GetIngestionRequest, GetIngestionResponse } from "../models/models_0"; import { GetIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/GetIngestionDestinationCommand.ts b/clients/client-appfabric/src/commands/GetIngestionDestinationCommand.ts index 75abc0745b4c8..d8381001a166f 100644 --- a/clients/client-appfabric/src/commands/GetIngestionDestinationCommand.ts +++ b/clients/client-appfabric/src/commands/GetIngestionDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIngestionDestinationRequest, GetIngestionDestinationResponse } from "../models/models_0"; +import type { GetIngestionDestinationRequest, GetIngestionDestinationResponse } from "../models/models_0"; import { GetIngestionDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/ListAppAuthorizationsCommand.ts b/clients/client-appfabric/src/commands/ListAppAuthorizationsCommand.ts index e1f40833f0e67..d385453992a02 100644 --- a/clients/client-appfabric/src/commands/ListAppAuthorizationsCommand.ts +++ b/clients/client-appfabric/src/commands/ListAppAuthorizationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppAuthorizationsRequest, ListAppAuthorizationsResponse } from "../models/models_0"; +import type { ListAppAuthorizationsRequest, ListAppAuthorizationsResponse } from "../models/models_0"; import { ListAppAuthorizations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/ListAppBundlesCommand.ts b/clients/client-appfabric/src/commands/ListAppBundlesCommand.ts index da9c220ebd503..26271139c9d6c 100644 --- a/clients/client-appfabric/src/commands/ListAppBundlesCommand.ts +++ b/clients/client-appfabric/src/commands/ListAppBundlesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppBundlesRequest, ListAppBundlesResponse } from "../models/models_0"; +import type { ListAppBundlesRequest, ListAppBundlesResponse } from "../models/models_0"; import { ListAppBundles } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/ListIngestionDestinationsCommand.ts b/clients/client-appfabric/src/commands/ListIngestionDestinationsCommand.ts index 80405745787c4..972644b896137 100644 --- a/clients/client-appfabric/src/commands/ListIngestionDestinationsCommand.ts +++ b/clients/client-appfabric/src/commands/ListIngestionDestinationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIngestionDestinationsRequest, ListIngestionDestinationsResponse } from "../models/models_0"; +import type { ListIngestionDestinationsRequest, ListIngestionDestinationsResponse } from "../models/models_0"; import { ListIngestionDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/ListIngestionsCommand.ts b/clients/client-appfabric/src/commands/ListIngestionsCommand.ts index 5e5f21fa03489..9e6ca586a2dc4 100644 --- a/clients/client-appfabric/src/commands/ListIngestionsCommand.ts +++ b/clients/client-appfabric/src/commands/ListIngestionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIngestionsRequest, ListIngestionsResponse } from "../models/models_0"; +import type { ListIngestionsRequest, ListIngestionsResponse } from "../models/models_0"; import { ListIngestions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/ListTagsForResourceCommand.ts b/clients/client-appfabric/src/commands/ListTagsForResourceCommand.ts index 1ef80f22fd853..c24d24fa0d161 100644 --- a/clients/client-appfabric/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appfabric/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/StartIngestionCommand.ts b/clients/client-appfabric/src/commands/StartIngestionCommand.ts index e39d1e1017ae8..2639e08d93929 100644 --- a/clients/client-appfabric/src/commands/StartIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/StartIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartIngestionRequest, StartIngestionResponse } from "../models/models_0"; +import type { StartIngestionRequest, StartIngestionResponse } from "../models/models_0"; import { StartIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/StartUserAccessTasksCommand.ts b/clients/client-appfabric/src/commands/StartUserAccessTasksCommand.ts index 529aded982f8f..5169e3505d5b0 100644 --- a/clients/client-appfabric/src/commands/StartUserAccessTasksCommand.ts +++ b/clients/client-appfabric/src/commands/StartUserAccessTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartUserAccessTasksRequest, StartUserAccessTasksResponse } from "../models/models_0"; +import type { StartUserAccessTasksRequest, StartUserAccessTasksResponse } from "../models/models_0"; import { StartUserAccessTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/StopIngestionCommand.ts b/clients/client-appfabric/src/commands/StopIngestionCommand.ts index f644667cac90f..85e1f16e1e47c 100644 --- a/clients/client-appfabric/src/commands/StopIngestionCommand.ts +++ b/clients/client-appfabric/src/commands/StopIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopIngestionRequest, StopIngestionResponse } from "../models/models_0"; +import type { StopIngestionRequest, StopIngestionResponse } from "../models/models_0"; import { StopIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/TagResourceCommand.ts b/clients/client-appfabric/src/commands/TagResourceCommand.ts index 688a313cf3b49..422a9b1827245 100644 --- a/clients/client-appfabric/src/commands/TagResourceCommand.ts +++ b/clients/client-appfabric/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/UntagResourceCommand.ts b/clients/client-appfabric/src/commands/UntagResourceCommand.ts index bd3b9c6e2b8e6..be0df124d72fa 100644 --- a/clients/client-appfabric/src/commands/UntagResourceCommand.ts +++ b/clients/client-appfabric/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/UpdateAppAuthorizationCommand.ts b/clients/client-appfabric/src/commands/UpdateAppAuthorizationCommand.ts index c063c1d2817da..49b7af81e4e47 100644 --- a/clients/client-appfabric/src/commands/UpdateAppAuthorizationCommand.ts +++ b/clients/client-appfabric/src/commands/UpdateAppAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppAuthorizationRequest, UpdateAppAuthorizationResponse } from "../models/models_0"; +import type { UpdateAppAuthorizationRequest, UpdateAppAuthorizationResponse } from "../models/models_0"; import { UpdateAppAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/commands/UpdateIngestionDestinationCommand.ts b/clients/client-appfabric/src/commands/UpdateIngestionDestinationCommand.ts index a17ae0b181432..5d2f94f1d0803 100644 --- a/clients/client-appfabric/src/commands/UpdateIngestionDestinationCommand.ts +++ b/clients/client-appfabric/src/commands/UpdateIngestionDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; +import type { AppFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppFabricClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIngestionDestinationRequest, UpdateIngestionDestinationResponse } from "../models/models_0"; +import type { UpdateIngestionDestinationRequest, UpdateIngestionDestinationResponse } from "../models/models_0"; import { UpdateIngestionDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-appfabric/src/endpoint/EndpointParameters.ts b/clients/client-appfabric/src/endpoint/EndpointParameters.ts index a1b21096464df..7c61e56106725 100644 --- a/clients/client-appfabric/src/endpoint/EndpointParameters.ts +++ b/clients/client-appfabric/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-appfabric/src/endpoint/endpointResolver.ts b/clients/client-appfabric/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-appfabric/src/endpoint/endpointResolver.ts +++ b/clients/client-appfabric/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-appfabric/src/extensionConfiguration.ts b/clients/client-appfabric/src/extensionConfiguration.ts index 1ef6acbe51067..d0f968b5b069d 100644 --- a/clients/client-appfabric/src/extensionConfiguration.ts +++ b/clients/client-appfabric/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-appfabric/src/models/AppFabricServiceException.ts b/clients/client-appfabric/src/models/AppFabricServiceException.ts index 045d155807c2e..57a287054cfcc 100644 --- a/clients/client-appfabric/src/models/AppFabricServiceException.ts +++ b/clients/client-appfabric/src/models/AppFabricServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-appfabric/src/models/errors.ts b/clients/client-appfabric/src/models/errors.ts index fec454975eb12..bcbc6c41b1d2f 100644 --- a/clients/client-appfabric/src/models/errors.ts +++ b/clients/client-appfabric/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AppFabricServiceException as __BaseException } from "./AppFabricServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-appfabric/src/pagination/Interfaces.ts b/clients/client-appfabric/src/pagination/Interfaces.ts index 53afd3321d7de..53902e3a630b1 100644 --- a/clients/client-appfabric/src/pagination/Interfaces.ts +++ b/clients/client-appfabric/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AppFabricClient } from "../AppFabricClient"; diff --git a/clients/client-appfabric/src/pagination/ListAppAuthorizationsPaginator.ts b/clients/client-appfabric/src/pagination/ListAppAuthorizationsPaginator.ts index 063b39db7b67c..2860173f19aeb 100644 --- a/clients/client-appfabric/src/pagination/ListAppAuthorizationsPaginator.ts +++ b/clients/client-appfabric/src/pagination/ListAppAuthorizationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppFabricClient } from "../AppFabricClient"; import { diff --git a/clients/client-appfabric/src/pagination/ListAppBundlesPaginator.ts b/clients/client-appfabric/src/pagination/ListAppBundlesPaginator.ts index 60815670a30aa..dda73e5afbf88 100644 --- a/clients/client-appfabric/src/pagination/ListAppBundlesPaginator.ts +++ b/clients/client-appfabric/src/pagination/ListAppBundlesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppFabricClient } from "../AppFabricClient"; import { diff --git a/clients/client-appfabric/src/pagination/ListIngestionDestinationsPaginator.ts b/clients/client-appfabric/src/pagination/ListIngestionDestinationsPaginator.ts index 1366d0dea19e4..591b842cb37a5 100644 --- a/clients/client-appfabric/src/pagination/ListIngestionDestinationsPaginator.ts +++ b/clients/client-appfabric/src/pagination/ListIngestionDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppFabricClient } from "../AppFabricClient"; import { diff --git a/clients/client-appfabric/src/pagination/ListIngestionsPaginator.ts b/clients/client-appfabric/src/pagination/ListIngestionsPaginator.ts index 99050d48a9ff0..8836c5a4afb84 100644 --- a/clients/client-appfabric/src/pagination/ListIngestionsPaginator.ts +++ b/clients/client-appfabric/src/pagination/ListIngestionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppFabricClient } from "../AppFabricClient"; import { diff --git a/clients/client-appfabric/src/runtimeConfig.browser.ts b/clients/client-appfabric/src/runtimeConfig.browser.ts index bd832b44c2ab0..f4d176bcc77a9 100644 --- a/clients/client-appfabric/src/runtimeConfig.browser.ts +++ b/clients/client-appfabric/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppFabricClientConfig } from "./AppFabricClient"; + +import type { AppFabricClientConfig } from "./AppFabricClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-appfabric/src/runtimeConfig.native.ts b/clients/client-appfabric/src/runtimeConfig.native.ts index 378368bf3aae5..95312b6ebede9 100644 --- a/clients/client-appfabric/src/runtimeConfig.native.ts +++ b/clients/client-appfabric/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AppFabricClientConfig } from "./AppFabricClient"; +import type { AppFabricClientConfig } from "./AppFabricClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-appfabric/src/runtimeConfig.shared.ts b/clients/client-appfabric/src/runtimeConfig.shared.ts index 101a708b15a17..767573e4a81bb 100644 --- a/clients/client-appfabric/src/runtimeConfig.shared.ts +++ b/clients/client-appfabric/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AppFabricClientConfig } from "./AppFabricClient"; +import type { AppFabricClientConfig } from "./AppFabricClient"; import { defaultAppFabricHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-appfabric/src/runtimeConfig.ts b/clients/client-appfabric/src/runtimeConfig.ts index 062505c05f9e9..47fab6a436180 100644 --- a/clients/client-appfabric/src/runtimeConfig.ts +++ b/clients/client-appfabric/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppFabricClientConfig } from "./AppFabricClient"; + +import type { AppFabricClientConfig } from "./AppFabricClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-appfabric/src/runtimeExtensions.ts b/clients/client-appfabric/src/runtimeExtensions.ts index 11b6320891c03..ebcdadae07b69 100644 --- a/clients/client-appfabric/src/runtimeExtensions.ts +++ b/clients/client-appfabric/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AppFabricExtensionConfiguration } from "./extensionConfiguration"; +import type { AppFabricExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-appfabric/src/schemas/schemas_0.ts b/clients/client-appfabric/src/schemas/schemas_0.ts index 4b30bb8629242..b254170d0c34f 100644 --- a/clients/client-appfabric/src/schemas/schemas_0.ts +++ b/clients/client-appfabric/src/schemas/schemas_0.ts @@ -215,7 +215,7 @@ const n0 = "com.amazonaws.appfabric"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-appflow/package.json b/clients/client-appflow/package.json index a7bbde6796189..6e535ef02a72f 100644 --- a/clients/client-appflow/package.json +++ b/clients/client-appflow/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-appflow/src/Appflow.ts b/clients/client-appflow/src/Appflow.ts index 4873b925e17d6..8ce1633cfb4cf 100644 --- a/clients/client-appflow/src/Appflow.ts +++ b/clients/client-appflow/src/Appflow.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AppflowClient, AppflowClientConfig } from "./AppflowClient"; +import { AppflowClient } from "./AppflowClient"; import { CancelFlowExecutionsCommand, CancelFlowExecutionsCommandInput, diff --git a/clients/client-appflow/src/AppflowClient.ts b/clients/client-appflow/src/AppflowClient.ts index f8967280b90f7..6f5527415d143 100644 --- a/clients/client-appflow/src/AppflowClient.ts +++ b/clients/client-appflow/src/AppflowClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAppflowHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -125,7 +134,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-appflow/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-appflow/src/auth/httpAuthExtensionConfiguration.ts index 0c0c36fe346a6..b31d946bab2a8 100644 --- a/clients/client-appflow/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-appflow/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AppflowHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AppflowHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-appflow/src/auth/httpAuthSchemeProvider.ts b/clients/client-appflow/src/auth/httpAuthSchemeProvider.ts index ffdabecdbfcb1..c9ada7527fd7c 100644 --- a/clients/client-appflow/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-appflow/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AppflowClientConfig, AppflowClientResolvedConfig } from "../AppflowClient"; +import { type AppflowClientResolvedConfig, AppflowClientConfig } from "../AppflowClient"; /** * @internal diff --git a/clients/client-appflow/src/commands/CancelFlowExecutionsCommand.ts b/clients/client-appflow/src/commands/CancelFlowExecutionsCommand.ts index 4ebe0548cbbc9..c2aedce0fde99 100644 --- a/clients/client-appflow/src/commands/CancelFlowExecutionsCommand.ts +++ b/clients/client-appflow/src/commands/CancelFlowExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelFlowExecutionsRequest, CancelFlowExecutionsResponse } from "../models/models_0"; +import type { CancelFlowExecutionsRequest, CancelFlowExecutionsResponse } from "../models/models_0"; import { CancelFlowExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/CreateConnectorProfileCommand.ts b/clients/client-appflow/src/commands/CreateConnectorProfileCommand.ts index a9ac41d1178f4..899a71bf7c7cb 100644 --- a/clients/client-appflow/src/commands/CreateConnectorProfileCommand.ts +++ b/clients/client-appflow/src/commands/CreateConnectorProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectorProfileRequest, CreateConnectorProfileResponse } from "../models/models_0"; +import type { CreateConnectorProfileRequest, CreateConnectorProfileResponse } from "../models/models_0"; import { CreateConnectorProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/CreateFlowCommand.ts b/clients/client-appflow/src/commands/CreateFlowCommand.ts index 53122b5becdf5..07c8e28eb669e 100644 --- a/clients/client-appflow/src/commands/CreateFlowCommand.ts +++ b/clients/client-appflow/src/commands/CreateFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFlowRequest, CreateFlowResponse } from "../models/models_0"; +import type { CreateFlowRequest, CreateFlowResponse } from "../models/models_0"; import { CreateFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/DeleteConnectorProfileCommand.ts b/clients/client-appflow/src/commands/DeleteConnectorProfileCommand.ts index 5ea81174c2d88..4de67c0f1b26f 100644 --- a/clients/client-appflow/src/commands/DeleteConnectorProfileCommand.ts +++ b/clients/client-appflow/src/commands/DeleteConnectorProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectorProfileRequest, DeleteConnectorProfileResponse } from "../models/models_0"; +import type { DeleteConnectorProfileRequest, DeleteConnectorProfileResponse } from "../models/models_0"; import { DeleteConnectorProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/DeleteFlowCommand.ts b/clients/client-appflow/src/commands/DeleteFlowCommand.ts index 5b66b48b4159a..328b7e2e43c04 100644 --- a/clients/client-appflow/src/commands/DeleteFlowCommand.ts +++ b/clients/client-appflow/src/commands/DeleteFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0"; +import type { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0"; import { DeleteFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/DescribeConnectorCommand.ts b/clients/client-appflow/src/commands/DescribeConnectorCommand.ts index e643a5e2c0f67..923e40acf2a60 100644 --- a/clients/client-appflow/src/commands/DescribeConnectorCommand.ts +++ b/clients/client-appflow/src/commands/DescribeConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0"; +import type { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0"; import { DescribeConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/DescribeConnectorEntityCommand.ts b/clients/client-appflow/src/commands/DescribeConnectorEntityCommand.ts index fc4d4b33b7d8f..2fd5a94d66151 100644 --- a/clients/client-appflow/src/commands/DescribeConnectorEntityCommand.ts +++ b/clients/client-appflow/src/commands/DescribeConnectorEntityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectorEntityRequest, DescribeConnectorEntityResponse } from "../models/models_0"; +import type { DescribeConnectorEntityRequest, DescribeConnectorEntityResponse } from "../models/models_0"; import { DescribeConnectorEntity } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/DescribeConnectorProfilesCommand.ts b/clients/client-appflow/src/commands/DescribeConnectorProfilesCommand.ts index bc64845f8260b..f08f3ee489983 100644 --- a/clients/client-appflow/src/commands/DescribeConnectorProfilesCommand.ts +++ b/clients/client-appflow/src/commands/DescribeConnectorProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectorProfilesRequest, DescribeConnectorProfilesResponse } from "../models/models_0"; +import type { DescribeConnectorProfilesRequest, DescribeConnectorProfilesResponse } from "../models/models_0"; import { DescribeConnectorProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/DescribeConnectorsCommand.ts b/clients/client-appflow/src/commands/DescribeConnectorsCommand.ts index 47fb80b300f34..12310c35f961f 100644 --- a/clients/client-appflow/src/commands/DescribeConnectorsCommand.ts +++ b/clients/client-appflow/src/commands/DescribeConnectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectorsRequest, DescribeConnectorsResponse } from "../models/models_0"; +import type { DescribeConnectorsRequest, DescribeConnectorsResponse } from "../models/models_0"; import { DescribeConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/DescribeFlowCommand.ts b/clients/client-appflow/src/commands/DescribeFlowCommand.ts index 58000feed2a12..95ab7907e2413 100644 --- a/clients/client-appflow/src/commands/DescribeFlowCommand.ts +++ b/clients/client-appflow/src/commands/DescribeFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0"; +import type { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0"; import { DescribeFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/DescribeFlowExecutionRecordsCommand.ts b/clients/client-appflow/src/commands/DescribeFlowExecutionRecordsCommand.ts index 9dbeb07ef91ca..f67bbfc43a6f6 100644 --- a/clients/client-appflow/src/commands/DescribeFlowExecutionRecordsCommand.ts +++ b/clients/client-appflow/src/commands/DescribeFlowExecutionRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFlowExecutionRecordsRequest, DescribeFlowExecutionRecordsResponse } from "../models/models_0"; +import type { DescribeFlowExecutionRecordsRequest, DescribeFlowExecutionRecordsResponse } from "../models/models_0"; import { DescribeFlowExecutionRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/ListConnectorEntitiesCommand.ts b/clients/client-appflow/src/commands/ListConnectorEntitiesCommand.ts index 9acafa6a380bf..96943a4dfb119 100644 --- a/clients/client-appflow/src/commands/ListConnectorEntitiesCommand.ts +++ b/clients/client-appflow/src/commands/ListConnectorEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectorEntitiesRequest, ListConnectorEntitiesResponse } from "../models/models_0"; +import type { ListConnectorEntitiesRequest, ListConnectorEntitiesResponse } from "../models/models_0"; import { ListConnectorEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/ListConnectorsCommand.ts b/clients/client-appflow/src/commands/ListConnectorsCommand.ts index 01715f0141a84..62846965dd8d8 100644 --- a/clients/client-appflow/src/commands/ListConnectorsCommand.ts +++ b/clients/client-appflow/src/commands/ListConnectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; +import type { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; import { ListConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/ListFlowsCommand.ts b/clients/client-appflow/src/commands/ListFlowsCommand.ts index f3dde65f2096f..e7007c27e1d29 100644 --- a/clients/client-appflow/src/commands/ListFlowsCommand.ts +++ b/clients/client-appflow/src/commands/ListFlowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowsRequest, ListFlowsResponse } from "../models/models_0"; +import type { ListFlowsRequest, ListFlowsResponse } from "../models/models_0"; import { ListFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/ListTagsForResourceCommand.ts b/clients/client-appflow/src/commands/ListTagsForResourceCommand.ts index 924e49d1f578c..fa3963f5d4ef2 100644 --- a/clients/client-appflow/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appflow/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/RegisterConnectorCommand.ts b/clients/client-appflow/src/commands/RegisterConnectorCommand.ts index a6df14e918a20..1ed7717bb28c2 100644 --- a/clients/client-appflow/src/commands/RegisterConnectorCommand.ts +++ b/clients/client-appflow/src/commands/RegisterConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterConnectorRequest, RegisterConnectorResponse } from "../models/models_0"; +import type { RegisterConnectorRequest, RegisterConnectorResponse } from "../models/models_0"; import { RegisterConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/ResetConnectorMetadataCacheCommand.ts b/clients/client-appflow/src/commands/ResetConnectorMetadataCacheCommand.ts index 29f6cd783ade6..af54348e36c45 100644 --- a/clients/client-appflow/src/commands/ResetConnectorMetadataCacheCommand.ts +++ b/clients/client-appflow/src/commands/ResetConnectorMetadataCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetConnectorMetadataCacheRequest, ResetConnectorMetadataCacheResponse } from "../models/models_0"; +import type { ResetConnectorMetadataCacheRequest, ResetConnectorMetadataCacheResponse } from "../models/models_0"; import { ResetConnectorMetadataCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/StartFlowCommand.ts b/clients/client-appflow/src/commands/StartFlowCommand.ts index e5aab460c3a6c..18b6116aed9ba 100644 --- a/clients/client-appflow/src/commands/StartFlowCommand.ts +++ b/clients/client-appflow/src/commands/StartFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFlowRequest, StartFlowResponse } from "../models/models_0"; +import type { StartFlowRequest, StartFlowResponse } from "../models/models_0"; import { StartFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/StopFlowCommand.ts b/clients/client-appflow/src/commands/StopFlowCommand.ts index b179cda3d9e5b..8da6470c549ed 100644 --- a/clients/client-appflow/src/commands/StopFlowCommand.ts +++ b/clients/client-appflow/src/commands/StopFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopFlowRequest, StopFlowResponse } from "../models/models_0"; +import type { StopFlowRequest, StopFlowResponse } from "../models/models_0"; import { StopFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/TagResourceCommand.ts b/clients/client-appflow/src/commands/TagResourceCommand.ts index 67d0b6d293235..1cb22d63caac8 100644 --- a/clients/client-appflow/src/commands/TagResourceCommand.ts +++ b/clients/client-appflow/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/UnregisterConnectorCommand.ts b/clients/client-appflow/src/commands/UnregisterConnectorCommand.ts index 22c72cec3624b..d14aab790da6f 100644 --- a/clients/client-appflow/src/commands/UnregisterConnectorCommand.ts +++ b/clients/client-appflow/src/commands/UnregisterConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnregisterConnectorRequest, UnregisterConnectorResponse } from "../models/models_0"; +import type { UnregisterConnectorRequest, UnregisterConnectorResponse } from "../models/models_0"; import { UnregisterConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/UntagResourceCommand.ts b/clients/client-appflow/src/commands/UntagResourceCommand.ts index 695db1a4e4801..9b107cfd2fb7a 100644 --- a/clients/client-appflow/src/commands/UntagResourceCommand.ts +++ b/clients/client-appflow/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/UpdateConnectorProfileCommand.ts b/clients/client-appflow/src/commands/UpdateConnectorProfileCommand.ts index 2f79988859243..c95b0ad62a3e9 100644 --- a/clients/client-appflow/src/commands/UpdateConnectorProfileCommand.ts +++ b/clients/client-appflow/src/commands/UpdateConnectorProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectorProfileRequest, UpdateConnectorProfileResponse } from "../models/models_0"; +import type { UpdateConnectorProfileRequest, UpdateConnectorProfileResponse } from "../models/models_0"; import { UpdateConnectorProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/UpdateConnectorRegistrationCommand.ts b/clients/client-appflow/src/commands/UpdateConnectorRegistrationCommand.ts index b67ce3b403155..101b7b892e563 100644 --- a/clients/client-appflow/src/commands/UpdateConnectorRegistrationCommand.ts +++ b/clients/client-appflow/src/commands/UpdateConnectorRegistrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectorRegistrationRequest, UpdateConnectorRegistrationResponse } from "../models/models_0"; +import type { UpdateConnectorRegistrationRequest, UpdateConnectorRegistrationResponse } from "../models/models_0"; import { UpdateConnectorRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/commands/UpdateFlowCommand.ts b/clients/client-appflow/src/commands/UpdateFlowCommand.ts index a1395cd5ac2f9..e97fd2d849434 100644 --- a/clients/client-appflow/src/commands/UpdateFlowCommand.ts +++ b/clients/client-appflow/src/commands/UpdateFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; +import type { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFlowRequest, UpdateFlowResponse } from "../models/models_0"; +import type { UpdateFlowRequest, UpdateFlowResponse } from "../models/models_0"; import { UpdateFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-appflow/src/endpoint/EndpointParameters.ts b/clients/client-appflow/src/endpoint/EndpointParameters.ts index b250f149133d3..678f6abf1e244 100644 --- a/clients/client-appflow/src/endpoint/EndpointParameters.ts +++ b/clients/client-appflow/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-appflow/src/endpoint/endpointResolver.ts b/clients/client-appflow/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-appflow/src/endpoint/endpointResolver.ts +++ b/clients/client-appflow/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-appflow/src/extensionConfiguration.ts b/clients/client-appflow/src/extensionConfiguration.ts index a7ba05c329c5f..a77fb999ded03 100644 --- a/clients/client-appflow/src/extensionConfiguration.ts +++ b/clients/client-appflow/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-appflow/src/models/AppflowServiceException.ts b/clients/client-appflow/src/models/AppflowServiceException.ts index 5e4b1e50b1341..5dea1bf171b5a 100644 --- a/clients/client-appflow/src/models/AppflowServiceException.ts +++ b/clients/client-appflow/src/models/AppflowServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-appflow/src/models/errors.ts b/clients/client-appflow/src/models/errors.ts index 9efdba446c566..c5ee0a8722e66 100644 --- a/clients/client-appflow/src/models/errors.ts +++ b/clients/client-appflow/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AppflowServiceException as __BaseException } from "./AppflowServiceException"; diff --git a/clients/client-appflow/src/pagination/DescribeConnectorProfilesPaginator.ts b/clients/client-appflow/src/pagination/DescribeConnectorProfilesPaginator.ts index 73f39564800a7..dba13a7bab22c 100644 --- a/clients/client-appflow/src/pagination/DescribeConnectorProfilesPaginator.ts +++ b/clients/client-appflow/src/pagination/DescribeConnectorProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppflowClient } from "../AppflowClient"; import { diff --git a/clients/client-appflow/src/pagination/DescribeConnectorsPaginator.ts b/clients/client-appflow/src/pagination/DescribeConnectorsPaginator.ts index cb00b6616a876..7ef8b34dc1dcd 100644 --- a/clients/client-appflow/src/pagination/DescribeConnectorsPaginator.ts +++ b/clients/client-appflow/src/pagination/DescribeConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppflowClient } from "../AppflowClient"; import { diff --git a/clients/client-appflow/src/pagination/DescribeFlowExecutionRecordsPaginator.ts b/clients/client-appflow/src/pagination/DescribeFlowExecutionRecordsPaginator.ts index 55d733c318d4a..3046c6f41e5ab 100644 --- a/clients/client-appflow/src/pagination/DescribeFlowExecutionRecordsPaginator.ts +++ b/clients/client-appflow/src/pagination/DescribeFlowExecutionRecordsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppflowClient } from "../AppflowClient"; import { diff --git a/clients/client-appflow/src/pagination/Interfaces.ts b/clients/client-appflow/src/pagination/Interfaces.ts index 0545a4e0b5d96..30aa3aacf7a29 100644 --- a/clients/client-appflow/src/pagination/Interfaces.ts +++ b/clients/client-appflow/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AppflowClient } from "../AppflowClient"; diff --git a/clients/client-appflow/src/pagination/ListConnectorsPaginator.ts b/clients/client-appflow/src/pagination/ListConnectorsPaginator.ts index 89289f99c8749..a6867398b654b 100644 --- a/clients/client-appflow/src/pagination/ListConnectorsPaginator.ts +++ b/clients/client-appflow/src/pagination/ListConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppflowClient } from "../AppflowClient"; import { diff --git a/clients/client-appflow/src/pagination/ListFlowsPaginator.ts b/clients/client-appflow/src/pagination/ListFlowsPaginator.ts index 2d5dd0ae1cda6..058ac5faf7ce9 100644 --- a/clients/client-appflow/src/pagination/ListFlowsPaginator.ts +++ b/clients/client-appflow/src/pagination/ListFlowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppflowClient } from "../AppflowClient"; import { ListFlowsCommand, ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand"; diff --git a/clients/client-appflow/src/runtimeConfig.browser.ts b/clients/client-appflow/src/runtimeConfig.browser.ts index 0a3b6822d4e2c..2325836737e97 100644 --- a/clients/client-appflow/src/runtimeConfig.browser.ts +++ b/clients/client-appflow/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppflowClientConfig } from "./AppflowClient"; + +import type { AppflowClientConfig } from "./AppflowClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-appflow/src/runtimeConfig.native.ts b/clients/client-appflow/src/runtimeConfig.native.ts index a4e39edd9595c..85f05866b2e25 100644 --- a/clients/client-appflow/src/runtimeConfig.native.ts +++ b/clients/client-appflow/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AppflowClientConfig } from "./AppflowClient"; +import type { AppflowClientConfig } from "./AppflowClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-appflow/src/runtimeConfig.shared.ts b/clients/client-appflow/src/runtimeConfig.shared.ts index d5916739fad27..e0f287fb314bf 100644 --- a/clients/client-appflow/src/runtimeConfig.shared.ts +++ b/clients/client-appflow/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AppflowClientConfig } from "./AppflowClient"; +import type { AppflowClientConfig } from "./AppflowClient"; import { defaultAppflowHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-appflow/src/runtimeConfig.ts b/clients/client-appflow/src/runtimeConfig.ts index baba4e22968f9..4c5b710bfef43 100644 --- a/clients/client-appflow/src/runtimeConfig.ts +++ b/clients/client-appflow/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppflowClientConfig } from "./AppflowClient"; + +import type { AppflowClientConfig } from "./AppflowClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-appflow/src/runtimeExtensions.ts b/clients/client-appflow/src/runtimeExtensions.ts index 1a5e4abc41462..94b402e44bb99 100644 --- a/clients/client-appflow/src/runtimeExtensions.ts +++ b/clients/client-appflow/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AppflowExtensionConfiguration } from "./extensionConfiguration"; +import type { AppflowExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-appflow/src/schemas/schemas_0.ts b/clients/client-appflow/src/schemas/schemas_0.ts index d4b6557f8b571..d44acd2aaef91 100644 --- a/clients/client-appflow/src/schemas/schemas_0.ts +++ b/clients/client-appflow/src/schemas/schemas_0.ts @@ -576,7 +576,7 @@ const n0 = "com.amazonaws.appflow"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-appintegrations/package.json b/clients/client-appintegrations/package.json index 1d4df6690ca18..f615f8584efaa 100644 --- a/clients/client-appintegrations/package.json +++ b/clients/client-appintegrations/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-appintegrations/src/AppIntegrations.ts b/clients/client-appintegrations/src/AppIntegrations.ts index 946ec3b001be9..b2735ef9a587f 100644 --- a/clients/client-appintegrations/src/AppIntegrations.ts +++ b/clients/client-appintegrations/src/AppIntegrations.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AppIntegrationsClient, AppIntegrationsClientConfig } from "./AppIntegrationsClient"; +import { AppIntegrationsClient } from "./AppIntegrationsClient"; import { CreateApplicationCommand, CreateApplicationCommandInput, diff --git a/clients/client-appintegrations/src/AppIntegrationsClient.ts b/clients/client-appintegrations/src/AppIntegrationsClient.ts index 95d1ab8e6b6f0..09672218830d9 100644 --- a/clients/client-appintegrations/src/AppIntegrationsClient.ts +++ b/clients/client-appintegrations/src/AppIntegrationsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAppIntegrationsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand"; @@ -132,7 +141,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-appintegrations/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-appintegrations/src/auth/httpAuthExtensionConfiguration.ts index 91d27eb284cc8..54496c275aab0 100644 --- a/clients/client-appintegrations/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-appintegrations/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AppIntegrationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AppIntegrationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-appintegrations/src/auth/httpAuthSchemeProvider.ts b/clients/client-appintegrations/src/auth/httpAuthSchemeProvider.ts index a1d8f1f033e36..4377a4b9a98d0 100644 --- a/clients/client-appintegrations/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-appintegrations/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AppIntegrationsClientConfig, AppIntegrationsClientResolvedConfig } from "../AppIntegrationsClient"; +import { type AppIntegrationsClientResolvedConfig, AppIntegrationsClientConfig } from "../AppIntegrationsClient"; /** * @internal diff --git a/clients/client-appintegrations/src/commands/CreateApplicationCommand.ts b/clients/client-appintegrations/src/commands/CreateApplicationCommand.ts index 8190a26213b08..e82dde5e655ab 100644 --- a/clients/client-appintegrations/src/commands/CreateApplicationCommand.ts +++ b/clients/client-appintegrations/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/CreateDataIntegrationAssociationCommand.ts b/clients/client-appintegrations/src/commands/CreateDataIntegrationAssociationCommand.ts index 6f21c55674ad8..2667f565587e3 100644 --- a/clients/client-appintegrations/src/commands/CreateDataIntegrationAssociationCommand.ts +++ b/clients/client-appintegrations/src/commands/CreateDataIntegrationAssociationCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataIntegrationAssociationRequest, CreateDataIntegrationAssociationResponse } from "../models/models_0"; +import type { + CreateDataIntegrationAssociationRequest, + CreateDataIntegrationAssociationResponse, +} from "../models/models_0"; import { CreateDataIntegrationAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/CreateDataIntegrationCommand.ts b/clients/client-appintegrations/src/commands/CreateDataIntegrationCommand.ts index 5a81d4c8f2abe..a1992db02ef79 100644 --- a/clients/client-appintegrations/src/commands/CreateDataIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/CreateDataIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataIntegrationRequest, CreateDataIntegrationResponse } from "../models/models_0"; +import type { CreateDataIntegrationRequest, CreateDataIntegrationResponse } from "../models/models_0"; import { CreateDataIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/CreateEventIntegrationCommand.ts b/clients/client-appintegrations/src/commands/CreateEventIntegrationCommand.ts index 4a3590f43a0dc..da5031619cdd5 100644 --- a/clients/client-appintegrations/src/commands/CreateEventIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/CreateEventIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventIntegrationRequest, CreateEventIntegrationResponse } from "../models/models_0"; +import type { CreateEventIntegrationRequest, CreateEventIntegrationResponse } from "../models/models_0"; import { CreateEventIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/DeleteApplicationCommand.ts b/clients/client-appintegrations/src/commands/DeleteApplicationCommand.ts index 8b02cb39c2b20..06f82a1ad8631 100644 --- a/clients/client-appintegrations/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-appintegrations/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/DeleteDataIntegrationCommand.ts b/clients/client-appintegrations/src/commands/DeleteDataIntegrationCommand.ts index 6300dfe0ba601..b97d362091743 100644 --- a/clients/client-appintegrations/src/commands/DeleteDataIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/DeleteDataIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataIntegrationRequest, DeleteDataIntegrationResponse } from "../models/models_0"; +import type { DeleteDataIntegrationRequest, DeleteDataIntegrationResponse } from "../models/models_0"; import { DeleteDataIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/DeleteEventIntegrationCommand.ts b/clients/client-appintegrations/src/commands/DeleteEventIntegrationCommand.ts index fa31ce2f6b232..d58808c5194cf 100644 --- a/clients/client-appintegrations/src/commands/DeleteEventIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/DeleteEventIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventIntegrationRequest, DeleteEventIntegrationResponse } from "../models/models_0"; +import type { DeleteEventIntegrationRequest, DeleteEventIntegrationResponse } from "../models/models_0"; import { DeleteEventIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/GetApplicationCommand.ts b/clients/client-appintegrations/src/commands/GetApplicationCommand.ts index 18265ea0b7bc3..9503cf9b1c236 100644 --- a/clients/client-appintegrations/src/commands/GetApplicationCommand.ts +++ b/clients/client-appintegrations/src/commands/GetApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; +import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/GetDataIntegrationCommand.ts b/clients/client-appintegrations/src/commands/GetDataIntegrationCommand.ts index 0fdeda7990646..bb187385225cf 100644 --- a/clients/client-appintegrations/src/commands/GetDataIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/GetDataIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataIntegrationRequest, GetDataIntegrationResponse } from "../models/models_0"; +import type { GetDataIntegrationRequest, GetDataIntegrationResponse } from "../models/models_0"; import { GetDataIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/GetEventIntegrationCommand.ts b/clients/client-appintegrations/src/commands/GetEventIntegrationCommand.ts index 9ab1f3394d804..803301514e00d 100644 --- a/clients/client-appintegrations/src/commands/GetEventIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/GetEventIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventIntegrationRequest, GetEventIntegrationResponse } from "../models/models_0"; +import type { GetEventIntegrationRequest, GetEventIntegrationResponse } from "../models/models_0"; import { GetEventIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/ListApplicationAssociationsCommand.ts b/clients/client-appintegrations/src/commands/ListApplicationAssociationsCommand.ts index 55d4dcb928eae..09c627b89598d 100644 --- a/clients/client-appintegrations/src/commands/ListApplicationAssociationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListApplicationAssociationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationAssociationsRequest, ListApplicationAssociationsResponse } from "../models/models_0"; +import type { ListApplicationAssociationsRequest, ListApplicationAssociationsResponse } from "../models/models_0"; import { ListApplicationAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/ListApplicationsCommand.ts b/clients/client-appintegrations/src/commands/ListApplicationsCommand.ts index 9f611c3cb952a..970b2c340e7a6 100644 --- a/clients/client-appintegrations/src/commands/ListApplicationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/ListDataIntegrationAssociationsCommand.ts b/clients/client-appintegrations/src/commands/ListDataIntegrationAssociationsCommand.ts index b7800791fe8ac..dfeda9ac107bc 100644 --- a/clients/client-appintegrations/src/commands/ListDataIntegrationAssociationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListDataIntegrationAssociationsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataIntegrationAssociationsRequest, ListDataIntegrationAssociationsResponse } from "../models/models_0"; +import type { + ListDataIntegrationAssociationsRequest, + ListDataIntegrationAssociationsResponse, +} from "../models/models_0"; import { ListDataIntegrationAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/ListDataIntegrationsCommand.ts b/clients/client-appintegrations/src/commands/ListDataIntegrationsCommand.ts index db24a20a9d82d..9776a631a552e 100644 --- a/clients/client-appintegrations/src/commands/ListDataIntegrationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListDataIntegrationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataIntegrationsRequest, ListDataIntegrationsResponse } from "../models/models_0"; +import type { ListDataIntegrationsRequest, ListDataIntegrationsResponse } from "../models/models_0"; import { ListDataIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/ListEventIntegrationAssociationsCommand.ts b/clients/client-appintegrations/src/commands/ListEventIntegrationAssociationsCommand.ts index 3bf2c15fd4249..8cfcdec73dcaf 100644 --- a/clients/client-appintegrations/src/commands/ListEventIntegrationAssociationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListEventIntegrationAssociationsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventIntegrationAssociationsRequest, ListEventIntegrationAssociationsResponse } from "../models/models_0"; +import type { + ListEventIntegrationAssociationsRequest, + ListEventIntegrationAssociationsResponse, +} from "../models/models_0"; import { ListEventIntegrationAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/ListEventIntegrationsCommand.ts b/clients/client-appintegrations/src/commands/ListEventIntegrationsCommand.ts index 35b80d0153982..54a7a40406e74 100644 --- a/clients/client-appintegrations/src/commands/ListEventIntegrationsCommand.ts +++ b/clients/client-appintegrations/src/commands/ListEventIntegrationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventIntegrationsRequest, ListEventIntegrationsResponse } from "../models/models_0"; +import type { ListEventIntegrationsRequest, ListEventIntegrationsResponse } from "../models/models_0"; import { ListEventIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/ListTagsForResourceCommand.ts b/clients/client-appintegrations/src/commands/ListTagsForResourceCommand.ts index d16378b144bf8..092bd0acf90e6 100644 --- a/clients/client-appintegrations/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appintegrations/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/TagResourceCommand.ts b/clients/client-appintegrations/src/commands/TagResourceCommand.ts index 75690d99d6442..74f9b0c5143a6 100644 --- a/clients/client-appintegrations/src/commands/TagResourceCommand.ts +++ b/clients/client-appintegrations/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/UntagResourceCommand.ts b/clients/client-appintegrations/src/commands/UntagResourceCommand.ts index 74bcbed6e52f6..ef946ac4fd08e 100644 --- a/clients/client-appintegrations/src/commands/UntagResourceCommand.ts +++ b/clients/client-appintegrations/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/UpdateApplicationCommand.ts b/clients/client-appintegrations/src/commands/UpdateApplicationCommand.ts index 84678b7643482..44e13f3514f76 100644 --- a/clients/client-appintegrations/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-appintegrations/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/UpdateDataIntegrationAssociationCommand.ts b/clients/client-appintegrations/src/commands/UpdateDataIntegrationAssociationCommand.ts index 22af3309f407e..8cbb49a785343 100644 --- a/clients/client-appintegrations/src/commands/UpdateDataIntegrationAssociationCommand.ts +++ b/clients/client-appintegrations/src/commands/UpdateDataIntegrationAssociationCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataIntegrationAssociationRequest, UpdateDataIntegrationAssociationResponse } from "../models/models_0"; +import type { + UpdateDataIntegrationAssociationRequest, + UpdateDataIntegrationAssociationResponse, +} from "../models/models_0"; import { UpdateDataIntegrationAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/UpdateDataIntegrationCommand.ts b/clients/client-appintegrations/src/commands/UpdateDataIntegrationCommand.ts index 697a0c1a06314..689ce1c3a44e3 100644 --- a/clients/client-appintegrations/src/commands/UpdateDataIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/UpdateDataIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataIntegrationRequest, UpdateDataIntegrationResponse } from "../models/models_0"; +import type { UpdateDataIntegrationRequest, UpdateDataIntegrationResponse } from "../models/models_0"; import { UpdateDataIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/commands/UpdateEventIntegrationCommand.ts b/clients/client-appintegrations/src/commands/UpdateEventIntegrationCommand.ts index aa05c380faf02..309d8a115e6f7 100644 --- a/clients/client-appintegrations/src/commands/UpdateEventIntegrationCommand.ts +++ b/clients/client-appintegrations/src/commands/UpdateEventIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppIntegrationsClient"; +import type { + AppIntegrationsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AppIntegrationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEventIntegrationRequest, UpdateEventIntegrationResponse } from "../models/models_0"; +import type { UpdateEventIntegrationRequest, UpdateEventIntegrationResponse } from "../models/models_0"; import { UpdateEventIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-appintegrations/src/endpoint/EndpointParameters.ts b/clients/client-appintegrations/src/endpoint/EndpointParameters.ts index b180b6806b84f..0e7d4c3468c9c 100644 --- a/clients/client-appintegrations/src/endpoint/EndpointParameters.ts +++ b/clients/client-appintegrations/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-appintegrations/src/endpoint/endpointResolver.ts b/clients/client-appintegrations/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-appintegrations/src/endpoint/endpointResolver.ts +++ b/clients/client-appintegrations/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-appintegrations/src/extensionConfiguration.ts b/clients/client-appintegrations/src/extensionConfiguration.ts index ac7eb81fb563a..d8f58bddffe41 100644 --- a/clients/client-appintegrations/src/extensionConfiguration.ts +++ b/clients/client-appintegrations/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-appintegrations/src/models/AppIntegrationsServiceException.ts b/clients/client-appintegrations/src/models/AppIntegrationsServiceException.ts index 6ee2ebb5e556f..2fc5808e1fb38 100644 --- a/clients/client-appintegrations/src/models/AppIntegrationsServiceException.ts +++ b/clients/client-appintegrations/src/models/AppIntegrationsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-appintegrations/src/models/errors.ts b/clients/client-appintegrations/src/models/errors.ts index 0d9533ecf7ca4..516733703910a 100644 --- a/clients/client-appintegrations/src/models/errors.ts +++ b/clients/client-appintegrations/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AppIntegrationsServiceException as __BaseException } from "./AppIntegrationsServiceException"; diff --git a/clients/client-appintegrations/src/pagination/Interfaces.ts b/clients/client-appintegrations/src/pagination/Interfaces.ts index 42fa1cef08f76..c429818f25693 100644 --- a/clients/client-appintegrations/src/pagination/Interfaces.ts +++ b/clients/client-appintegrations/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AppIntegrationsClient } from "../AppIntegrationsClient"; diff --git a/clients/client-appintegrations/src/pagination/ListApplicationAssociationsPaginator.ts b/clients/client-appintegrations/src/pagination/ListApplicationAssociationsPaginator.ts index 9309537524681..3b7fa5e954908 100644 --- a/clients/client-appintegrations/src/pagination/ListApplicationAssociationsPaginator.ts +++ b/clients/client-appintegrations/src/pagination/ListApplicationAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppIntegrationsClient } from "../AppIntegrationsClient"; import { diff --git a/clients/client-appintegrations/src/pagination/ListApplicationsPaginator.ts b/clients/client-appintegrations/src/pagination/ListApplicationsPaginator.ts index 1ad79b3cbc611..dc7fcdd0cee00 100644 --- a/clients/client-appintegrations/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-appintegrations/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppIntegrationsClient } from "../AppIntegrationsClient"; import { diff --git a/clients/client-appintegrations/src/pagination/ListDataIntegrationAssociationsPaginator.ts b/clients/client-appintegrations/src/pagination/ListDataIntegrationAssociationsPaginator.ts index 8995cf916d952..f61b40f33ca06 100644 --- a/clients/client-appintegrations/src/pagination/ListDataIntegrationAssociationsPaginator.ts +++ b/clients/client-appintegrations/src/pagination/ListDataIntegrationAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppIntegrationsClient } from "../AppIntegrationsClient"; import { diff --git a/clients/client-appintegrations/src/pagination/ListDataIntegrationsPaginator.ts b/clients/client-appintegrations/src/pagination/ListDataIntegrationsPaginator.ts index 4a1416d42c796..963b77d1ac159 100644 --- a/clients/client-appintegrations/src/pagination/ListDataIntegrationsPaginator.ts +++ b/clients/client-appintegrations/src/pagination/ListDataIntegrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppIntegrationsClient } from "../AppIntegrationsClient"; import { diff --git a/clients/client-appintegrations/src/pagination/ListEventIntegrationAssociationsPaginator.ts b/clients/client-appintegrations/src/pagination/ListEventIntegrationAssociationsPaginator.ts index 5b39c5b63066d..6ba9723bc2561 100644 --- a/clients/client-appintegrations/src/pagination/ListEventIntegrationAssociationsPaginator.ts +++ b/clients/client-appintegrations/src/pagination/ListEventIntegrationAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppIntegrationsClient } from "../AppIntegrationsClient"; import { diff --git a/clients/client-appintegrations/src/pagination/ListEventIntegrationsPaginator.ts b/clients/client-appintegrations/src/pagination/ListEventIntegrationsPaginator.ts index 3600c02d33249..33a530459bd04 100644 --- a/clients/client-appintegrations/src/pagination/ListEventIntegrationsPaginator.ts +++ b/clients/client-appintegrations/src/pagination/ListEventIntegrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppIntegrationsClient } from "../AppIntegrationsClient"; import { diff --git a/clients/client-appintegrations/src/runtimeConfig.browser.ts b/clients/client-appintegrations/src/runtimeConfig.browser.ts index 714e76a963ea2..0d38910e14608 100644 --- a/clients/client-appintegrations/src/runtimeConfig.browser.ts +++ b/clients/client-appintegrations/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppIntegrationsClientConfig } from "./AppIntegrationsClient"; + +import type { AppIntegrationsClientConfig } from "./AppIntegrationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-appintegrations/src/runtimeConfig.native.ts b/clients/client-appintegrations/src/runtimeConfig.native.ts index 2f4c9a3a806fc..6d97549a475c9 100644 --- a/clients/client-appintegrations/src/runtimeConfig.native.ts +++ b/clients/client-appintegrations/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AppIntegrationsClientConfig } from "./AppIntegrationsClient"; +import type { AppIntegrationsClientConfig } from "./AppIntegrationsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-appintegrations/src/runtimeConfig.shared.ts b/clients/client-appintegrations/src/runtimeConfig.shared.ts index 7052b76c0574c..431765307e089 100644 --- a/clients/client-appintegrations/src/runtimeConfig.shared.ts +++ b/clients/client-appintegrations/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AppIntegrationsClientConfig } from "./AppIntegrationsClient"; +import type { AppIntegrationsClientConfig } from "./AppIntegrationsClient"; import { defaultAppIntegrationsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-appintegrations/src/runtimeConfig.ts b/clients/client-appintegrations/src/runtimeConfig.ts index e3e3ec4c006c3..27a6bc9a37273 100644 --- a/clients/client-appintegrations/src/runtimeConfig.ts +++ b/clients/client-appintegrations/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppIntegrationsClientConfig } from "./AppIntegrationsClient"; + +import type { AppIntegrationsClientConfig } from "./AppIntegrationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-appintegrations/src/runtimeExtensions.ts b/clients/client-appintegrations/src/runtimeExtensions.ts index 5f1e6083fb996..e2220c8c887c3 100644 --- a/clients/client-appintegrations/src/runtimeExtensions.ts +++ b/clients/client-appintegrations/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AppIntegrationsExtensionConfiguration } from "./extensionConfiguration"; +import type { AppIntegrationsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-appintegrations/src/schemas/schemas_0.ts b/clients/client-appintegrations/src/schemas/schemas_0.ts index a9569b7c36917..c8d2dd1f4e9a0 100644 --- a/clients/client-appintegrations/src/schemas/schemas_0.ts +++ b/clients/client-appintegrations/src/schemas/schemas_0.ts @@ -184,7 +184,7 @@ const n0 = "com.amazonaws.appintegrations"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-application-auto-scaling/package.json b/clients/client-application-auto-scaling/package.json index 3c1086cc6ab7b..18aba41656d87 100644 --- a/clients/client-application-auto-scaling/package.json +++ b/clients/client-application-auto-scaling/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-application-auto-scaling/src/ApplicationAutoScaling.ts b/clients/client-application-auto-scaling/src/ApplicationAutoScaling.ts index 60c6e82839bcb..9d97a8ccd272c 100644 --- a/clients/client-application-auto-scaling/src/ApplicationAutoScaling.ts +++ b/clients/client-application-auto-scaling/src/ApplicationAutoScaling.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ApplicationAutoScalingClient, ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient"; +import { ApplicationAutoScalingClient } from "./ApplicationAutoScalingClient"; import { DeleteScalingPolicyCommand, DeleteScalingPolicyCommandInput, diff --git a/clients/client-application-auto-scaling/src/ApplicationAutoScalingClient.ts b/clients/client-application-auto-scaling/src/ApplicationAutoScalingClient.ts index 24501a01864ea..76a20926e9a48 100644 --- a/clients/client-application-auto-scaling/src/ApplicationAutoScalingClient.ts +++ b/clients/client-application-auto-scaling/src/ApplicationAutoScalingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultApplicationAutoScalingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -108,7 +117,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-application-auto-scaling/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-application-auto-scaling/src/auth/httpAuthExtensionConfiguration.ts index a04d1093ceb4d..680f3e9ba0c42 100644 --- a/clients/client-application-auto-scaling/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-application-auto-scaling/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ApplicationAutoScalingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ApplicationAutoScalingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-application-auto-scaling/src/auth/httpAuthSchemeProvider.ts b/clients/client-application-auto-scaling/src/auth/httpAuthSchemeProvider.ts index bf1dddef06515..3c1fa962a28f6 100644 --- a/clients/client-application-auto-scaling/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-application-auto-scaling/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ApplicationAutoScalingClientResolvedConfig, ApplicationAutoScalingClientConfig, - ApplicationAutoScalingClientResolvedConfig, } from "../ApplicationAutoScalingClient"; /** diff --git a/clients/client-application-auto-scaling/src/commands/DeleteScalingPolicyCommand.ts b/clients/client-application-auto-scaling/src/commands/DeleteScalingPolicyCommand.ts index f49e0d821cffd..953bdaae3f831 100644 --- a/clients/client-application-auto-scaling/src/commands/DeleteScalingPolicyCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DeleteScalingPolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScalingPolicyRequest, DeleteScalingPolicyResponse } from "../models/models_0"; +import type { DeleteScalingPolicyRequest, DeleteScalingPolicyResponse } from "../models/models_0"; import { DeleteScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/DeleteScheduledActionCommand.ts b/clients/client-application-auto-scaling/src/commands/DeleteScheduledActionCommand.ts index 51ea1df9adfc8..7767e57bdc3ef 100644 --- a/clients/client-application-auto-scaling/src/commands/DeleteScheduledActionCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DeleteScheduledActionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScheduledActionRequest, DeleteScheduledActionResponse } from "../models/models_0"; +import type { DeleteScheduledActionRequest, DeleteScheduledActionResponse } from "../models/models_0"; import { DeleteScheduledAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/DeregisterScalableTargetCommand.ts b/clients/client-application-auto-scaling/src/commands/DeregisterScalableTargetCommand.ts index 2230e9597b7a5..a8c6ee4240717 100644 --- a/clients/client-application-auto-scaling/src/commands/DeregisterScalableTargetCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DeregisterScalableTargetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterScalableTargetRequest, DeregisterScalableTargetResponse } from "../models/models_0"; +import type { DeregisterScalableTargetRequest, DeregisterScalableTargetResponse } from "../models/models_0"; import { DeregisterScalableTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/DescribeScalableTargetsCommand.ts b/clients/client-application-auto-scaling/src/commands/DescribeScalableTargetsCommand.ts index 99bbab005c13d..fb66b1479cbfc 100644 --- a/clients/client-application-auto-scaling/src/commands/DescribeScalableTargetsCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DescribeScalableTargetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScalableTargetsRequest, DescribeScalableTargetsResponse } from "../models/models_0"; +import type { DescribeScalableTargetsRequest, DescribeScalableTargetsResponse } from "../models/models_0"; import { DescribeScalableTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts b/clients/client-application-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts index bb99b5f285bdb..f28abf986d6f4 100644 --- a/clients/client-application-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScalingActivitiesRequest, DescribeScalingActivitiesResponse } from "../models/models_0"; +import type { DescribeScalingActivitiesRequest, DescribeScalingActivitiesResponse } from "../models/models_0"; import { DescribeScalingActivities } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/DescribeScalingPoliciesCommand.ts b/clients/client-application-auto-scaling/src/commands/DescribeScalingPoliciesCommand.ts index 77afa7f5f2026..924011aec91dd 100644 --- a/clients/client-application-auto-scaling/src/commands/DescribeScalingPoliciesCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DescribeScalingPoliciesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScalingPoliciesRequest, DescribeScalingPoliciesResponse } from "../models/models_0"; +import type { DescribeScalingPoliciesRequest, DescribeScalingPoliciesResponse } from "../models/models_0"; import { DescribeScalingPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts b/clients/client-application-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts index 73afa30b28e97..685a25019cf8a 100644 --- a/clients/client-application-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScheduledActionsRequest, DescribeScheduledActionsResponse } from "../models/models_0"; +import type { DescribeScheduledActionsRequest, DescribeScheduledActionsResponse } from "../models/models_0"; import { DescribeScheduledActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts b/clients/client-application-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts index 68705303e9a51..2c5532faa327a 100644 --- a/clients/client-application-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPredictiveScalingForecastRequest, GetPredictiveScalingForecastResponse } from "../models/models_0"; +import type { GetPredictiveScalingForecastRequest, GetPredictiveScalingForecastResponse } from "../models/models_0"; import { GetPredictiveScalingForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/ListTagsForResourceCommand.ts b/clients/client-application-auto-scaling/src/commands/ListTagsForResourceCommand.ts index f97752236b158..1734b83b895b1 100644 --- a/clients/client-application-auto-scaling/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/PutScalingPolicyCommand.ts b/clients/client-application-auto-scaling/src/commands/PutScalingPolicyCommand.ts index d6178bb806168..5b7a240f3226b 100644 --- a/clients/client-application-auto-scaling/src/commands/PutScalingPolicyCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/PutScalingPolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutScalingPolicyRequest, PutScalingPolicyResponse } from "../models/models_0"; +import type { PutScalingPolicyRequest, PutScalingPolicyResponse } from "../models/models_0"; import { PutScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/PutScheduledActionCommand.ts b/clients/client-application-auto-scaling/src/commands/PutScheduledActionCommand.ts index b3a43878d47a8..55a4192355a9d 100644 --- a/clients/client-application-auto-scaling/src/commands/PutScheduledActionCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/PutScheduledActionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutScheduledActionRequest, PutScheduledActionResponse } from "../models/models_0"; +import type { PutScheduledActionRequest, PutScheduledActionResponse } from "../models/models_0"; import { PutScheduledAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/RegisterScalableTargetCommand.ts b/clients/client-application-auto-scaling/src/commands/RegisterScalableTargetCommand.ts index bd901a975cc5d..f73aca1706655 100644 --- a/clients/client-application-auto-scaling/src/commands/RegisterScalableTargetCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/RegisterScalableTargetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterScalableTargetRequest, RegisterScalableTargetResponse } from "../models/models_0"; +import type { RegisterScalableTargetRequest, RegisterScalableTargetResponse } from "../models/models_0"; import { RegisterScalableTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/TagResourceCommand.ts b/clients/client-application-auto-scaling/src/commands/TagResourceCommand.ts index 1c17182e229fc..8f32c8c0ff04f 100644 --- a/clients/client-application-auto-scaling/src/commands/TagResourceCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/commands/UntagResourceCommand.ts b/clients/client-application-auto-scaling/src/commands/UntagResourceCommand.ts index 191c3ea2c8287..6ba85e8aff113 100644 --- a/clients/client-application-auto-scaling/src/commands/UntagResourceCommand.ts +++ b/clients/client-application-auto-scaling/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationAutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationAutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-auto-scaling/src/endpoint/EndpointParameters.ts b/clients/client-application-auto-scaling/src/endpoint/EndpointParameters.ts index 3fc3b2836cb9a..039bd3dfc7217 100644 --- a/clients/client-application-auto-scaling/src/endpoint/EndpointParameters.ts +++ b/clients/client-application-auto-scaling/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-application-auto-scaling/src/endpoint/endpointResolver.ts b/clients/client-application-auto-scaling/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-application-auto-scaling/src/endpoint/endpointResolver.ts +++ b/clients/client-application-auto-scaling/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-application-auto-scaling/src/extensionConfiguration.ts b/clients/client-application-auto-scaling/src/extensionConfiguration.ts index a94c00d7ffeeb..b136da1081193 100644 --- a/clients/client-application-auto-scaling/src/extensionConfiguration.ts +++ b/clients/client-application-auto-scaling/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-application-auto-scaling/src/models/ApplicationAutoScalingServiceException.ts b/clients/client-application-auto-scaling/src/models/ApplicationAutoScalingServiceException.ts index f6c9f8ba5f1b8..089427054501f 100644 --- a/clients/client-application-auto-scaling/src/models/ApplicationAutoScalingServiceException.ts +++ b/clients/client-application-auto-scaling/src/models/ApplicationAutoScalingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-application-auto-scaling/src/models/errors.ts b/clients/client-application-auto-scaling/src/models/errors.ts index a3bdf3268c709..5ea9a4a1b13e3 100644 --- a/clients/client-application-auto-scaling/src/models/errors.ts +++ b/clients/client-application-auto-scaling/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ApplicationAutoScalingServiceException as __BaseException } from "./ApplicationAutoScalingServiceException"; diff --git a/clients/client-application-auto-scaling/src/pagination/DescribeScalableTargetsPaginator.ts b/clients/client-application-auto-scaling/src/pagination/DescribeScalableTargetsPaginator.ts index cc52a323fe7a6..35e9bd2ac7c06 100644 --- a/clients/client-application-auto-scaling/src/pagination/DescribeScalableTargetsPaginator.ts +++ b/clients/client-application-auto-scaling/src/pagination/DescribeScalableTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationAutoScalingClient } from "../ApplicationAutoScalingClient"; import { diff --git a/clients/client-application-auto-scaling/src/pagination/DescribeScalingActivitiesPaginator.ts b/clients/client-application-auto-scaling/src/pagination/DescribeScalingActivitiesPaginator.ts index 41732b800224d..5a0511abad097 100644 --- a/clients/client-application-auto-scaling/src/pagination/DescribeScalingActivitiesPaginator.ts +++ b/clients/client-application-auto-scaling/src/pagination/DescribeScalingActivitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationAutoScalingClient } from "../ApplicationAutoScalingClient"; import { diff --git a/clients/client-application-auto-scaling/src/pagination/DescribeScalingPoliciesPaginator.ts b/clients/client-application-auto-scaling/src/pagination/DescribeScalingPoliciesPaginator.ts index 426c1e7f97f29..37bf7d38d5bc1 100644 --- a/clients/client-application-auto-scaling/src/pagination/DescribeScalingPoliciesPaginator.ts +++ b/clients/client-application-auto-scaling/src/pagination/DescribeScalingPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationAutoScalingClient } from "../ApplicationAutoScalingClient"; import { diff --git a/clients/client-application-auto-scaling/src/pagination/DescribeScheduledActionsPaginator.ts b/clients/client-application-auto-scaling/src/pagination/DescribeScheduledActionsPaginator.ts index 60db64b1081a5..4394dcbd17b66 100644 --- a/clients/client-application-auto-scaling/src/pagination/DescribeScheduledActionsPaginator.ts +++ b/clients/client-application-auto-scaling/src/pagination/DescribeScheduledActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationAutoScalingClient } from "../ApplicationAutoScalingClient"; import { diff --git a/clients/client-application-auto-scaling/src/pagination/Interfaces.ts b/clients/client-application-auto-scaling/src/pagination/Interfaces.ts index ee9b696046759..e450e67437790 100644 --- a/clients/client-application-auto-scaling/src/pagination/Interfaces.ts +++ b/clients/client-application-auto-scaling/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ApplicationAutoScalingClient } from "../ApplicationAutoScalingClient"; diff --git a/clients/client-application-auto-scaling/src/runtimeConfig.browser.ts b/clients/client-application-auto-scaling/src/runtimeConfig.browser.ts index 17cf02fbf3ad8..4019af822606c 100644 --- a/clients/client-application-auto-scaling/src/runtimeConfig.browser.ts +++ b/clients/client-application-auto-scaling/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient"; + +import type { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-application-auto-scaling/src/runtimeConfig.native.ts b/clients/client-application-auto-scaling/src/runtimeConfig.native.ts index c8827fa5afadd..8bebaa2405d61 100644 --- a/clients/client-application-auto-scaling/src/runtimeConfig.native.ts +++ b/clients/client-application-auto-scaling/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient"; +import type { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-application-auto-scaling/src/runtimeConfig.shared.ts b/clients/client-application-auto-scaling/src/runtimeConfig.shared.ts index 0230e4c5a72c7..c7cfbaf310321 100644 --- a/clients/client-application-auto-scaling/src/runtimeConfig.shared.ts +++ b/clients/client-application-auto-scaling/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient"; +import type { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient"; import { defaultApplicationAutoScalingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-application-auto-scaling/src/runtimeConfig.ts b/clients/client-application-auto-scaling/src/runtimeConfig.ts index 95034e49fc4b8..7ab1f8167e426 100644 --- a/clients/client-application-auto-scaling/src/runtimeConfig.ts +++ b/clients/client-application-auto-scaling/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient"; + +import type { ApplicationAutoScalingClientConfig } from "./ApplicationAutoScalingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-application-auto-scaling/src/runtimeExtensions.ts b/clients/client-application-auto-scaling/src/runtimeExtensions.ts index d6c35b0903598..984842e1d6a3a 100644 --- a/clients/client-application-auto-scaling/src/runtimeExtensions.ts +++ b/clients/client-application-auto-scaling/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ApplicationAutoScalingExtensionConfiguration } from "./extensionConfiguration"; +import type { ApplicationAutoScalingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-application-auto-scaling/src/schemas/schemas_0.ts b/clients/client-application-auto-scaling/src/schemas/schemas_0.ts index 30bbd433a5bde..32786ba1e79a2 100644 --- a/clients/client-application-auto-scaling/src/schemas/schemas_0.ts +++ b/clients/client-application-auto-scaling/src/schemas/schemas_0.ts @@ -189,7 +189,7 @@ const n0 = "com.amazonaws.applicationautoscaling"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-application-discovery-service/package.json b/clients/client-application-discovery-service/package.json index a074da1213f7c..d5fc0c3ae99b5 100644 --- a/clients/client-application-discovery-service/package.json +++ b/clients/client-application-discovery-service/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-application-discovery-service/src/ApplicationDiscoveryService.ts b/clients/client-application-discovery-service/src/ApplicationDiscoveryService.ts index 1bc4de1a1d4a6..1f90eddb00cff 100644 --- a/clients/client-application-discovery-service/src/ApplicationDiscoveryService.ts +++ b/clients/client-application-discovery-service/src/ApplicationDiscoveryService.ts @@ -1,11 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { - ApplicationDiscoveryServiceClient, - ApplicationDiscoveryServiceClientConfig, -} from "./ApplicationDiscoveryServiceClient"; +import { ApplicationDiscoveryServiceClient } from "./ApplicationDiscoveryServiceClient"; import { AssociateConfigurationItemsToApplicationCommand, AssociateConfigurationItemsToApplicationCommandInput, diff --git a/clients/client-application-discovery-service/src/ApplicationDiscoveryServiceClient.ts b/clients/client-application-discovery-service/src/ApplicationDiscoveryServiceClient.ts index 1b7fcd4719a8c..09ac9d6c67880 100644 --- a/clients/client-application-discovery-service/src/ApplicationDiscoveryServiceClient.ts +++ b/clients/client-application-discovery-service/src/ApplicationDiscoveryServiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultApplicationDiscoveryServiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -143,7 +152,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-application-discovery-service/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-application-discovery-service/src/auth/httpAuthExtensionConfiguration.ts index 008e469e8e8ab..653c6ee3542f0 100644 --- a/clients/client-application-discovery-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-application-discovery-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ApplicationDiscoveryServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ApplicationDiscoveryServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-application-discovery-service/src/auth/httpAuthSchemeProvider.ts b/clients/client-application-discovery-service/src/auth/httpAuthSchemeProvider.ts index 38394c26814cc..7d9bafa10fcf4 100644 --- a/clients/client-application-discovery-service/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-application-discovery-service/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ApplicationDiscoveryServiceClientResolvedConfig, ApplicationDiscoveryServiceClientConfig, - ApplicationDiscoveryServiceClientResolvedConfig, } from "../ApplicationDiscoveryServiceClient"; /** diff --git a/clients/client-application-discovery-service/src/commands/AssociateConfigurationItemsToApplicationCommand.ts b/clients/client-application-discovery-service/src/commands/AssociateConfigurationItemsToApplicationCommand.ts index 77aaf45905183..520b0e00f4851 100644 --- a/clients/client-application-discovery-service/src/commands/AssociateConfigurationItemsToApplicationCommand.ts +++ b/clients/client-application-discovery-service/src/commands/AssociateConfigurationItemsToApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateConfigurationItemsToApplicationRequest, AssociateConfigurationItemsToApplicationResponse, } from "../models/models_0"; diff --git a/clients/client-application-discovery-service/src/commands/BatchDeleteAgentsCommand.ts b/clients/client-application-discovery-service/src/commands/BatchDeleteAgentsCommand.ts index 713c2ed51f0f6..3c9be81c09836 100644 --- a/clients/client-application-discovery-service/src/commands/BatchDeleteAgentsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/BatchDeleteAgentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteAgentsRequest, BatchDeleteAgentsResponse } from "../models/models_0"; +import type { BatchDeleteAgentsRequest, BatchDeleteAgentsResponse } from "../models/models_0"; import { BatchDeleteAgents } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/BatchDeleteImportDataCommand.ts b/clients/client-application-discovery-service/src/commands/BatchDeleteImportDataCommand.ts index acbf618e4f5ac..3cc74c036f5ea 100644 --- a/clients/client-application-discovery-service/src/commands/BatchDeleteImportDataCommand.ts +++ b/clients/client-application-discovery-service/src/commands/BatchDeleteImportDataCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteImportDataRequest, BatchDeleteImportDataResponse } from "../models/models_0"; +import type { BatchDeleteImportDataRequest, BatchDeleteImportDataResponse } from "../models/models_0"; import { BatchDeleteImportData } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/CreateApplicationCommand.ts b/clients/client-application-discovery-service/src/commands/CreateApplicationCommand.ts index 006b4361a09b3..01a1f5d5e9dd3 100644 --- a/clients/client-application-discovery-service/src/commands/CreateApplicationCommand.ts +++ b/clients/client-application-discovery-service/src/commands/CreateApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/CreateTagsCommand.ts b/clients/client-application-discovery-service/src/commands/CreateTagsCommand.ts index 0be05864dd731..240ff3dd8ea7c 100644 --- a/clients/client-application-discovery-service/src/commands/CreateTagsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/CreateTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTagsRequest, CreateTagsResponse } from "../models/models_0"; +import type { CreateTagsRequest, CreateTagsResponse } from "../models/models_0"; import { CreateTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DeleteApplicationsCommand.ts b/clients/client-application-discovery-service/src/commands/DeleteApplicationsCommand.ts index bc0ba688ab4fa..195f20555fe99 100644 --- a/clients/client-application-discovery-service/src/commands/DeleteApplicationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DeleteApplicationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationsRequest, DeleteApplicationsResponse } from "../models/models_0"; +import type { DeleteApplicationsRequest, DeleteApplicationsResponse } from "../models/models_0"; import { DeleteApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DeleteTagsCommand.ts b/clients/client-application-discovery-service/src/commands/DeleteTagsCommand.ts index e36cabcde275f..035d637bd9a8f 100644 --- a/clients/client-application-discovery-service/src/commands/DeleteTagsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DeleteTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagsRequest, DeleteTagsResponse } from "../models/models_0"; +import type { DeleteTagsRequest, DeleteTagsResponse } from "../models/models_0"; import { DeleteTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DescribeAgentsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeAgentsCommand.ts index 144e4770184e5..0d070fbfdec19 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeAgentsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeAgentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAgentsRequest, DescribeAgentsResponse } from "../models/models_0"; +import type { DescribeAgentsRequest, DescribeAgentsResponse } from "../models/models_0"; import { DescribeAgents } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DescribeBatchDeleteConfigurationTaskCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeBatchDeleteConfigurationTaskCommand.ts index f0d62fa90c6d4..48b7a5a71d5f9 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeBatchDeleteConfigurationTaskCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeBatchDeleteConfigurationTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeBatchDeleteConfigurationTaskRequest, DescribeBatchDeleteConfigurationTaskResponse, } from "../models/models_0"; diff --git a/clients/client-application-discovery-service/src/commands/DescribeConfigurationsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeConfigurationsCommand.ts index af6cf04a627ef..337cf16ee7a40 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeConfigurationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConfigurationsRequest, DescribeConfigurationsResponse } from "../models/models_0"; +import type { DescribeConfigurationsRequest, DescribeConfigurationsResponse } from "../models/models_0"; import { DescribeConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DescribeContinuousExportsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeContinuousExportsCommand.ts index 77f990343c81b..d9870d99f899a 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeContinuousExportsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeContinuousExportsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContinuousExportsRequest, DescribeContinuousExportsResponse } from "../models/models_0"; +import type { DescribeContinuousExportsRequest, DescribeContinuousExportsResponse } from "../models/models_0"; import { DescribeContinuousExports } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DescribeExportConfigurationsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeExportConfigurationsCommand.ts index 1899039c929c6..5b4409c97c112 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeExportConfigurationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeExportConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExportConfigurationsRequest, DescribeExportConfigurationsResponse } from "../models/models_0"; +import type { DescribeExportConfigurationsRequest, DescribeExportConfigurationsResponse } from "../models/models_0"; import { DescribeExportConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DescribeExportTasksCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeExportTasksCommand.ts index 11eadd13d7cff..330a740b1f8b0 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeExportTasksCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeExportTasksCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExportTasksRequest, DescribeExportTasksResponse } from "../models/models_0"; +import type { DescribeExportTasksRequest, DescribeExportTasksResponse } from "../models/models_0"; import { DescribeExportTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DescribeImportTasksCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeImportTasksCommand.ts index 1b8e5d3fd98a7..064cd6b7ca2c8 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeImportTasksCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeImportTasksCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImportTasksRequest, DescribeImportTasksResponse } from "../models/models_0"; +import type { DescribeImportTasksRequest, DescribeImportTasksResponse } from "../models/models_0"; import { DescribeImportTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DescribeTagsCommand.ts b/clients/client-application-discovery-service/src/commands/DescribeTagsCommand.ts index 3114282e84e84..67be4ddf89e96 100644 --- a/clients/client-application-discovery-service/src/commands/DescribeTagsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DescribeTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0"; +import type { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0"; import { DescribeTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/DisassociateConfigurationItemsFromApplicationCommand.ts b/clients/client-application-discovery-service/src/commands/DisassociateConfigurationItemsFromApplicationCommand.ts index 5d703f3f0bef5..3e21ffb9ff889 100644 --- a/clients/client-application-discovery-service/src/commands/DisassociateConfigurationItemsFromApplicationCommand.ts +++ b/clients/client-application-discovery-service/src/commands/DisassociateConfigurationItemsFromApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateConfigurationItemsFromApplicationRequest, DisassociateConfigurationItemsFromApplicationResponse, } from "../models/models_0"; diff --git a/clients/client-application-discovery-service/src/commands/ExportConfigurationsCommand.ts b/clients/client-application-discovery-service/src/commands/ExportConfigurationsCommand.ts index 2600dee94a792..34f9561c0ed0d 100644 --- a/clients/client-application-discovery-service/src/commands/ExportConfigurationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/ExportConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportConfigurationsResponse } from "../models/models_0"; +import type { ExportConfigurationsResponse } from "../models/models_0"; import { ExportConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/GetDiscoverySummaryCommand.ts b/clients/client-application-discovery-service/src/commands/GetDiscoverySummaryCommand.ts index 65dbce723b0fc..a6212ce331105 100644 --- a/clients/client-application-discovery-service/src/commands/GetDiscoverySummaryCommand.ts +++ b/clients/client-application-discovery-service/src/commands/GetDiscoverySummaryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDiscoverySummaryRequest, GetDiscoverySummaryResponse } from "../models/models_0"; +import type { GetDiscoverySummaryRequest, GetDiscoverySummaryResponse } from "../models/models_0"; import { GetDiscoverySummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/ListConfigurationsCommand.ts b/clients/client-application-discovery-service/src/commands/ListConfigurationsCommand.ts index 2781e878ea157..1d336c904bbab 100644 --- a/clients/client-application-discovery-service/src/commands/ListConfigurationsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/ListConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0"; +import type { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0"; import { ListConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/ListServerNeighborsCommand.ts b/clients/client-application-discovery-service/src/commands/ListServerNeighborsCommand.ts index f71ba3113c1d0..9db5c8f81c262 100644 --- a/clients/client-application-discovery-service/src/commands/ListServerNeighborsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/ListServerNeighborsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServerNeighborsRequest, ListServerNeighborsResponse } from "../models/models_0"; +import type { ListServerNeighborsRequest, ListServerNeighborsResponse } from "../models/models_0"; import { ListServerNeighbors } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/StartBatchDeleteConfigurationTaskCommand.ts b/clients/client-application-discovery-service/src/commands/StartBatchDeleteConfigurationTaskCommand.ts index 7e71e0b783791..23fc2332009bb 100644 --- a/clients/client-application-discovery-service/src/commands/StartBatchDeleteConfigurationTaskCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartBatchDeleteConfigurationTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartBatchDeleteConfigurationTaskRequest, StartBatchDeleteConfigurationTaskResponse, } from "../models/models_0"; diff --git a/clients/client-application-discovery-service/src/commands/StartContinuousExportCommand.ts b/clients/client-application-discovery-service/src/commands/StartContinuousExportCommand.ts index abd8f25e0c60a..99fbedd90fa9a 100644 --- a/clients/client-application-discovery-service/src/commands/StartContinuousExportCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartContinuousExportCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartContinuousExportRequest, StartContinuousExportResponse } from "../models/models_0"; +import type { StartContinuousExportRequest, StartContinuousExportResponse } from "../models/models_0"; import { StartContinuousExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/StartDataCollectionByAgentIdsCommand.ts b/clients/client-application-discovery-service/src/commands/StartDataCollectionByAgentIdsCommand.ts index f8f2a3ecfbdb2..5050e4e3a8986 100644 --- a/clients/client-application-discovery-service/src/commands/StartDataCollectionByAgentIdsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartDataCollectionByAgentIdsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDataCollectionByAgentIdsRequest, StartDataCollectionByAgentIdsResponse } from "../models/models_0"; +import type { StartDataCollectionByAgentIdsRequest, StartDataCollectionByAgentIdsResponse } from "../models/models_0"; import { StartDataCollectionByAgentIds } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/StartExportTaskCommand.ts b/clients/client-application-discovery-service/src/commands/StartExportTaskCommand.ts index 3208d96cee56c..0b9d71fb9d94e 100644 --- a/clients/client-application-discovery-service/src/commands/StartExportTaskCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartExportTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartExportTaskRequest, StartExportTaskResponse } from "../models/models_0"; +import type { StartExportTaskRequest, StartExportTaskResponse } from "../models/models_0"; import { StartExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/StartImportTaskCommand.ts b/clients/client-application-discovery-service/src/commands/StartImportTaskCommand.ts index 02c9ffc4d870e..c4fab28b87bbc 100644 --- a/clients/client-application-discovery-service/src/commands/StartImportTaskCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StartImportTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartImportTaskRequest, StartImportTaskResponse } from "../models/models_0"; +import type { StartImportTaskRequest, StartImportTaskResponse } from "../models/models_0"; import { StartImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/StopContinuousExportCommand.ts b/clients/client-application-discovery-service/src/commands/StopContinuousExportCommand.ts index a72f870f04900..f7fa1531eba3d 100644 --- a/clients/client-application-discovery-service/src/commands/StopContinuousExportCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StopContinuousExportCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopContinuousExportRequest, StopContinuousExportResponse } from "../models/models_0"; +import type { StopContinuousExportRequest, StopContinuousExportResponse } from "../models/models_0"; import { StopContinuousExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/StopDataCollectionByAgentIdsCommand.ts b/clients/client-application-discovery-service/src/commands/StopDataCollectionByAgentIdsCommand.ts index 3e2c51b1604e9..8e32a69653213 100644 --- a/clients/client-application-discovery-service/src/commands/StopDataCollectionByAgentIdsCommand.ts +++ b/clients/client-application-discovery-service/src/commands/StopDataCollectionByAgentIdsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDataCollectionByAgentIdsRequest, StopDataCollectionByAgentIdsResponse } from "../models/models_0"; +import type { StopDataCollectionByAgentIdsRequest, StopDataCollectionByAgentIdsResponse } from "../models/models_0"; import { StopDataCollectionByAgentIds } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/commands/UpdateApplicationCommand.ts b/clients/client-application-discovery-service/src/commands/UpdateApplicationCommand.ts index 6e7d043c51567..a2cbd4be5ffbd 100644 --- a/clients/client-application-discovery-service/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-application-discovery-service/src/commands/UpdateApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationDiscoveryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationDiscoveryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-discovery-service/src/endpoint/EndpointParameters.ts b/clients/client-application-discovery-service/src/endpoint/EndpointParameters.ts index 5d7ae01ffea54..5f38a044c6a34 100644 --- a/clients/client-application-discovery-service/src/endpoint/EndpointParameters.ts +++ b/clients/client-application-discovery-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-application-discovery-service/src/endpoint/endpointResolver.ts b/clients/client-application-discovery-service/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-application-discovery-service/src/endpoint/endpointResolver.ts +++ b/clients/client-application-discovery-service/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-application-discovery-service/src/extensionConfiguration.ts b/clients/client-application-discovery-service/src/extensionConfiguration.ts index 0c146ff8e8446..44243491f75ec 100644 --- a/clients/client-application-discovery-service/src/extensionConfiguration.ts +++ b/clients/client-application-discovery-service/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-application-discovery-service/src/models/ApplicationDiscoveryServiceServiceException.ts b/clients/client-application-discovery-service/src/models/ApplicationDiscoveryServiceServiceException.ts index 810a648985f8d..def35ce8a6f38 100644 --- a/clients/client-application-discovery-service/src/models/ApplicationDiscoveryServiceServiceException.ts +++ b/clients/client-application-discovery-service/src/models/ApplicationDiscoveryServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-application-discovery-service/src/models/errors.ts b/clients/client-application-discovery-service/src/models/errors.ts index acf29aa2c5629..6309c8fc2e1fb 100644 --- a/clients/client-application-discovery-service/src/models/errors.ts +++ b/clients/client-application-discovery-service/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ApplicationDiscoveryServiceServiceException as __BaseException } from "./ApplicationDiscoveryServiceServiceException"; diff --git a/clients/client-application-discovery-service/src/pagination/DescribeAgentsPaginator.ts b/clients/client-application-discovery-service/src/pagination/DescribeAgentsPaginator.ts index 8d155dad9a1e9..4736f00a56088 100644 --- a/clients/client-application-discovery-service/src/pagination/DescribeAgentsPaginator.ts +++ b/clients/client-application-discovery-service/src/pagination/DescribeAgentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient"; import { diff --git a/clients/client-application-discovery-service/src/pagination/DescribeContinuousExportsPaginator.ts b/clients/client-application-discovery-service/src/pagination/DescribeContinuousExportsPaginator.ts index af4c6d6b3792e..ebf76a97a3601 100644 --- a/clients/client-application-discovery-service/src/pagination/DescribeContinuousExportsPaginator.ts +++ b/clients/client-application-discovery-service/src/pagination/DescribeContinuousExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient"; import { diff --git a/clients/client-application-discovery-service/src/pagination/DescribeExportConfigurationsPaginator.ts b/clients/client-application-discovery-service/src/pagination/DescribeExportConfigurationsPaginator.ts index a5400c1ed2d8d..e1b896742fffd 100644 --- a/clients/client-application-discovery-service/src/pagination/DescribeExportConfigurationsPaginator.ts +++ b/clients/client-application-discovery-service/src/pagination/DescribeExportConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient"; import { diff --git a/clients/client-application-discovery-service/src/pagination/DescribeExportTasksPaginator.ts b/clients/client-application-discovery-service/src/pagination/DescribeExportTasksPaginator.ts index f51d13d5cf78a..5e37ed9e755c4 100644 --- a/clients/client-application-discovery-service/src/pagination/DescribeExportTasksPaginator.ts +++ b/clients/client-application-discovery-service/src/pagination/DescribeExportTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient"; import { diff --git a/clients/client-application-discovery-service/src/pagination/DescribeImportTasksPaginator.ts b/clients/client-application-discovery-service/src/pagination/DescribeImportTasksPaginator.ts index ac0c8eb58186b..c712439a2322d 100644 --- a/clients/client-application-discovery-service/src/pagination/DescribeImportTasksPaginator.ts +++ b/clients/client-application-discovery-service/src/pagination/DescribeImportTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient"; import { diff --git a/clients/client-application-discovery-service/src/pagination/DescribeTagsPaginator.ts b/clients/client-application-discovery-service/src/pagination/DescribeTagsPaginator.ts index 731c26f710139..b7f2bfc8199be 100644 --- a/clients/client-application-discovery-service/src/pagination/DescribeTagsPaginator.ts +++ b/clients/client-application-discovery-service/src/pagination/DescribeTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient"; import { diff --git a/clients/client-application-discovery-service/src/pagination/Interfaces.ts b/clients/client-application-discovery-service/src/pagination/Interfaces.ts index 588e459af3ff6..2e80726a69c9b 100644 --- a/clients/client-application-discovery-service/src/pagination/Interfaces.ts +++ b/clients/client-application-discovery-service/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient"; diff --git a/clients/client-application-discovery-service/src/pagination/ListConfigurationsPaginator.ts b/clients/client-application-discovery-service/src/pagination/ListConfigurationsPaginator.ts index d45d69961f661..1dfd4c40b9b96 100644 --- a/clients/client-application-discovery-service/src/pagination/ListConfigurationsPaginator.ts +++ b/clients/client-application-discovery-service/src/pagination/ListConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationDiscoveryServiceClient } from "../ApplicationDiscoveryServiceClient"; import { diff --git a/clients/client-application-discovery-service/src/runtimeConfig.browser.ts b/clients/client-application-discovery-service/src/runtimeConfig.browser.ts index 90f6b65a284e2..d2cecaa358f56 100644 --- a/clients/client-application-discovery-service/src/runtimeConfig.browser.ts +++ b/clients/client-application-discovery-service/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient"; + +import type { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-application-discovery-service/src/runtimeConfig.native.ts b/clients/client-application-discovery-service/src/runtimeConfig.native.ts index 4eede44e83497..9b4c1166a008f 100644 --- a/clients/client-application-discovery-service/src/runtimeConfig.native.ts +++ b/clients/client-application-discovery-service/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient"; +import type { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-application-discovery-service/src/runtimeConfig.shared.ts b/clients/client-application-discovery-service/src/runtimeConfig.shared.ts index 9a842454f695f..7c7fb36902de0 100644 --- a/clients/client-application-discovery-service/src/runtimeConfig.shared.ts +++ b/clients/client-application-discovery-service/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient"; +import type { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient"; import { defaultApplicationDiscoveryServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-application-discovery-service/src/runtimeConfig.ts b/clients/client-application-discovery-service/src/runtimeConfig.ts index f056c55a5b981..3ef4f09266224 100644 --- a/clients/client-application-discovery-service/src/runtimeConfig.ts +++ b/clients/client-application-discovery-service/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient"; + +import type { ApplicationDiscoveryServiceClientConfig } from "./ApplicationDiscoveryServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-application-discovery-service/src/runtimeExtensions.ts b/clients/client-application-discovery-service/src/runtimeExtensions.ts index 1d5830aa0f6d4..aba7825cad47f 100644 --- a/clients/client-application-discovery-service/src/runtimeExtensions.ts +++ b/clients/client-application-discovery-service/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ApplicationDiscoveryServiceExtensionConfiguration } from "./extensionConfiguration"; +import type { ApplicationDiscoveryServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-application-discovery-service/src/schemas/schemas_0.ts b/clients/client-application-discovery-service/src/schemas/schemas_0.ts index d0d3fd28247bb..b992575875dd4 100644 --- a/clients/client-application-discovery-service/src/schemas/schemas_0.ts +++ b/clients/client-application-discovery-service/src/schemas/schemas_0.ts @@ -297,7 +297,7 @@ const n0 = "com.amazonaws.applicationdiscoveryservice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-application-insights/package.json b/clients/client-application-insights/package.json index b7abccf8e5e51..c09faa6dd84c3 100644 --- a/clients/client-application-insights/package.json +++ b/clients/client-application-insights/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-application-insights/src/ApplicationInsights.ts b/clients/client-application-insights/src/ApplicationInsights.ts index 447dc190af881..632ed564f401f 100644 --- a/clients/client-application-insights/src/ApplicationInsights.ts +++ b/clients/client-application-insights/src/ApplicationInsights.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ApplicationInsightsClient, ApplicationInsightsClientConfig } from "./ApplicationInsightsClient"; +import { ApplicationInsightsClient } from "./ApplicationInsightsClient"; import { AddWorkloadCommand, AddWorkloadCommandInput, AddWorkloadCommandOutput } from "./commands/AddWorkloadCommand"; import { CreateApplicationCommand, diff --git a/clients/client-application-insights/src/ApplicationInsightsClient.ts b/clients/client-application-insights/src/ApplicationInsightsClient.ts index 1e6a9aa520d5e..710d0d00e0e0f 100644 --- a/clients/client-application-insights/src/ApplicationInsightsClient.ts +++ b/clients/client-application-insights/src/ApplicationInsightsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultApplicationInsightsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddWorkloadCommandInput, AddWorkloadCommandOutput } from "./commands/AddWorkloadCommand"; @@ -121,7 +130,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-application-insights/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-application-insights/src/auth/httpAuthExtensionConfiguration.ts index a7da4fe3869b8..f6720b26b164c 100644 --- a/clients/client-application-insights/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-application-insights/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ApplicationInsightsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ApplicationInsightsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-application-insights/src/auth/httpAuthSchemeProvider.ts b/clients/client-application-insights/src/auth/httpAuthSchemeProvider.ts index 54438f3210c59..7ab15f8a0027f 100644 --- a/clients/client-application-insights/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-application-insights/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ApplicationInsightsClientConfig, ApplicationInsightsClientResolvedConfig } from "../ApplicationInsightsClient"; +import { + type ApplicationInsightsClientResolvedConfig, + ApplicationInsightsClientConfig, +} from "../ApplicationInsightsClient"; /** * @internal diff --git a/clients/client-application-insights/src/commands/AddWorkloadCommand.ts b/clients/client-application-insights/src/commands/AddWorkloadCommand.ts index a701746d48bd3..2871e41e8213f 100644 --- a/clients/client-application-insights/src/commands/AddWorkloadCommand.ts +++ b/clients/client-application-insights/src/commands/AddWorkloadCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddWorkloadRequest, AddWorkloadResponse } from "../models/models_0"; +import type { AddWorkloadRequest, AddWorkloadResponse } from "../models/models_0"; import { AddWorkload } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/CreateApplicationCommand.ts b/clients/client-application-insights/src/commands/CreateApplicationCommand.ts index aab99f0bf6d3b..104ee041364e2 100644 --- a/clients/client-application-insights/src/commands/CreateApplicationCommand.ts +++ b/clients/client-application-insights/src/commands/CreateApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/CreateComponentCommand.ts b/clients/client-application-insights/src/commands/CreateComponentCommand.ts index da69bf746471e..fd14bc944ce47 100644 --- a/clients/client-application-insights/src/commands/CreateComponentCommand.ts +++ b/clients/client-application-insights/src/commands/CreateComponentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateComponentRequest, CreateComponentResponse } from "../models/models_0"; +import type { CreateComponentRequest, CreateComponentResponse } from "../models/models_0"; import { CreateComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/CreateLogPatternCommand.ts b/clients/client-application-insights/src/commands/CreateLogPatternCommand.ts index ab0a99cb3a812..eed583d93392c 100644 --- a/clients/client-application-insights/src/commands/CreateLogPatternCommand.ts +++ b/clients/client-application-insights/src/commands/CreateLogPatternCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLogPatternRequest, CreateLogPatternResponse } from "../models/models_0"; +import type { CreateLogPatternRequest, CreateLogPatternResponse } from "../models/models_0"; import { CreateLogPattern } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DeleteApplicationCommand.ts b/clients/client-application-insights/src/commands/DeleteApplicationCommand.ts index 656d6805098b6..0689127330045 100644 --- a/clients/client-application-insights/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-application-insights/src/commands/DeleteApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DeleteComponentCommand.ts b/clients/client-application-insights/src/commands/DeleteComponentCommand.ts index 308b786d41585..66131dbc5d325 100644 --- a/clients/client-application-insights/src/commands/DeleteComponentCommand.ts +++ b/clients/client-application-insights/src/commands/DeleteComponentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteComponentRequest, DeleteComponentResponse } from "../models/models_0"; +import type { DeleteComponentRequest, DeleteComponentResponse } from "../models/models_0"; import { DeleteComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DeleteLogPatternCommand.ts b/clients/client-application-insights/src/commands/DeleteLogPatternCommand.ts index 5bd0ddfc7eab5..1e56d68b22e59 100644 --- a/clients/client-application-insights/src/commands/DeleteLogPatternCommand.ts +++ b/clients/client-application-insights/src/commands/DeleteLogPatternCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLogPatternRequest, DeleteLogPatternResponse } from "../models/models_0"; +import type { DeleteLogPatternRequest, DeleteLogPatternResponse } from "../models/models_0"; import { DeleteLogPattern } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DescribeApplicationCommand.ts b/clients/client-application-insights/src/commands/DescribeApplicationCommand.ts index f8f0d3d62abc2..bd12c8040ee48 100644 --- a/clients/client-application-insights/src/commands/DescribeApplicationCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0"; +import type { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0"; import { DescribeApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DescribeComponentCommand.ts b/clients/client-application-insights/src/commands/DescribeComponentCommand.ts index c9ec5c7e4950a..2858341c2c48f 100644 --- a/clients/client-application-insights/src/commands/DescribeComponentCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeComponentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeComponentRequest, DescribeComponentResponse } from "../models/models_0"; +import type { DescribeComponentRequest, DescribeComponentResponse } from "../models/models_0"; import { DescribeComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DescribeComponentConfigurationCommand.ts b/clients/client-application-insights/src/commands/DescribeComponentConfigurationCommand.ts index 39e5b6f1533d3..c17c6e8a8a2eb 100644 --- a/clients/client-application-insights/src/commands/DescribeComponentConfigurationCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeComponentConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeComponentConfigurationRequest, DescribeComponentConfigurationResponse } from "../models/models_0"; +import type { DescribeComponentConfigurationRequest, DescribeComponentConfigurationResponse } from "../models/models_0"; import { DescribeComponentConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DescribeComponentConfigurationRecommendationCommand.ts b/clients/client-application-insights/src/commands/DescribeComponentConfigurationRecommendationCommand.ts index 993d68ca8964a..7c3a3b6a0a203 100644 --- a/clients/client-application-insights/src/commands/DescribeComponentConfigurationRecommendationCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeComponentConfigurationRecommendationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeComponentConfigurationRecommendationRequest, DescribeComponentConfigurationRecommendationResponse, } from "../models/models_0"; diff --git a/clients/client-application-insights/src/commands/DescribeLogPatternCommand.ts b/clients/client-application-insights/src/commands/DescribeLogPatternCommand.ts index df004490defcc..8586b74ca90ad 100644 --- a/clients/client-application-insights/src/commands/DescribeLogPatternCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeLogPatternCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLogPatternRequest, DescribeLogPatternResponse } from "../models/models_0"; +import type { DescribeLogPatternRequest, DescribeLogPatternResponse } from "../models/models_0"; import { DescribeLogPattern } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DescribeObservationCommand.ts b/clients/client-application-insights/src/commands/DescribeObservationCommand.ts index 5d66abe79f042..c6238553d0719 100644 --- a/clients/client-application-insights/src/commands/DescribeObservationCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeObservationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeObservationRequest, DescribeObservationResponse } from "../models/models_0"; +import type { DescribeObservationRequest, DescribeObservationResponse } from "../models/models_0"; import { DescribeObservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DescribeProblemCommand.ts b/clients/client-application-insights/src/commands/DescribeProblemCommand.ts index ceac4273b4c2f..5f2c549a863f6 100644 --- a/clients/client-application-insights/src/commands/DescribeProblemCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeProblemCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProblemRequest, DescribeProblemResponse } from "../models/models_0"; +import type { DescribeProblemRequest, DescribeProblemResponse } from "../models/models_0"; import { DescribeProblem } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DescribeProblemObservationsCommand.ts b/clients/client-application-insights/src/commands/DescribeProblemObservationsCommand.ts index bb4f530604751..918718be86afe 100644 --- a/clients/client-application-insights/src/commands/DescribeProblemObservationsCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeProblemObservationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProblemObservationsRequest, DescribeProblemObservationsResponse } from "../models/models_0"; +import type { DescribeProblemObservationsRequest, DescribeProblemObservationsResponse } from "../models/models_0"; import { DescribeProblemObservations } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/DescribeWorkloadCommand.ts b/clients/client-application-insights/src/commands/DescribeWorkloadCommand.ts index 052bd087beed4..9cdf6c9237fec 100644 --- a/clients/client-application-insights/src/commands/DescribeWorkloadCommand.ts +++ b/clients/client-application-insights/src/commands/DescribeWorkloadCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkloadRequest, DescribeWorkloadResponse } from "../models/models_0"; +import type { DescribeWorkloadRequest, DescribeWorkloadResponse } from "../models/models_0"; import { DescribeWorkload } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/ListApplicationsCommand.ts b/clients/client-application-insights/src/commands/ListApplicationsCommand.ts index 00b58b567d018..e9eec4db65597 100644 --- a/clients/client-application-insights/src/commands/ListApplicationsCommand.ts +++ b/clients/client-application-insights/src/commands/ListApplicationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/ListComponentsCommand.ts b/clients/client-application-insights/src/commands/ListComponentsCommand.ts index 326b668424a27..70c1d9119b17a 100644 --- a/clients/client-application-insights/src/commands/ListComponentsCommand.ts +++ b/clients/client-application-insights/src/commands/ListComponentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; +import type { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; import { ListComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/ListConfigurationHistoryCommand.ts b/clients/client-application-insights/src/commands/ListConfigurationHistoryCommand.ts index c6e59c3f0651b..e8f8afc780001 100644 --- a/clients/client-application-insights/src/commands/ListConfigurationHistoryCommand.ts +++ b/clients/client-application-insights/src/commands/ListConfigurationHistoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationHistoryRequest, ListConfigurationHistoryResponse } from "../models/models_0"; +import type { ListConfigurationHistoryRequest, ListConfigurationHistoryResponse } from "../models/models_0"; import { ListConfigurationHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/ListLogPatternSetsCommand.ts b/clients/client-application-insights/src/commands/ListLogPatternSetsCommand.ts index 1b54cba9cdd39..d3bd862befff8 100644 --- a/clients/client-application-insights/src/commands/ListLogPatternSetsCommand.ts +++ b/clients/client-application-insights/src/commands/ListLogPatternSetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLogPatternSetsRequest, ListLogPatternSetsResponse } from "../models/models_0"; +import type { ListLogPatternSetsRequest, ListLogPatternSetsResponse } from "../models/models_0"; import { ListLogPatternSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/ListLogPatternsCommand.ts b/clients/client-application-insights/src/commands/ListLogPatternsCommand.ts index 2a290e1ea8a31..2fb1399c6e798 100644 --- a/clients/client-application-insights/src/commands/ListLogPatternsCommand.ts +++ b/clients/client-application-insights/src/commands/ListLogPatternsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLogPatternsRequest, ListLogPatternsResponse } from "../models/models_0"; +import type { ListLogPatternsRequest, ListLogPatternsResponse } from "../models/models_0"; import { ListLogPatterns } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/ListProblemsCommand.ts b/clients/client-application-insights/src/commands/ListProblemsCommand.ts index 155d6c95325ec..772da7571ff04 100644 --- a/clients/client-application-insights/src/commands/ListProblemsCommand.ts +++ b/clients/client-application-insights/src/commands/ListProblemsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProblemsRequest, ListProblemsResponse } from "../models/models_0"; +import type { ListProblemsRequest, ListProblemsResponse } from "../models/models_0"; import { ListProblems } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/ListTagsForResourceCommand.ts b/clients/client-application-insights/src/commands/ListTagsForResourceCommand.ts index ce6e1abb3aaff..394f8a0f28482 100644 --- a/clients/client-application-insights/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-application-insights/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/ListWorkloadsCommand.ts b/clients/client-application-insights/src/commands/ListWorkloadsCommand.ts index 554a6c1661a03..b2a024e7fda44 100644 --- a/clients/client-application-insights/src/commands/ListWorkloadsCommand.ts +++ b/clients/client-application-insights/src/commands/ListWorkloadsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkloadsRequest, ListWorkloadsResponse } from "../models/models_0"; +import type { ListWorkloadsRequest, ListWorkloadsResponse } from "../models/models_0"; import { ListWorkloads } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/RemoveWorkloadCommand.ts b/clients/client-application-insights/src/commands/RemoveWorkloadCommand.ts index 365fd480a57fd..87d99f47f81d7 100644 --- a/clients/client-application-insights/src/commands/RemoveWorkloadCommand.ts +++ b/clients/client-application-insights/src/commands/RemoveWorkloadCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveWorkloadRequest, RemoveWorkloadResponse } from "../models/models_0"; +import type { RemoveWorkloadRequest, RemoveWorkloadResponse } from "../models/models_0"; import { RemoveWorkload } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/TagResourceCommand.ts b/clients/client-application-insights/src/commands/TagResourceCommand.ts index b2336e530dbf0..b1b68073cb0c8 100644 --- a/clients/client-application-insights/src/commands/TagResourceCommand.ts +++ b/clients/client-application-insights/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/UntagResourceCommand.ts b/clients/client-application-insights/src/commands/UntagResourceCommand.ts index 3a8927fd7b0e9..5d8eeeba23b5d 100644 --- a/clients/client-application-insights/src/commands/UntagResourceCommand.ts +++ b/clients/client-application-insights/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/UpdateApplicationCommand.ts b/clients/client-application-insights/src/commands/UpdateApplicationCommand.ts index e06b015282130..965ddc77722c8 100644 --- a/clients/client-application-insights/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/UpdateComponentCommand.ts b/clients/client-application-insights/src/commands/UpdateComponentCommand.ts index 65fd9eb707f9e..dae7d04457758 100644 --- a/clients/client-application-insights/src/commands/UpdateComponentCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateComponentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateComponentRequest, UpdateComponentResponse } from "../models/models_0"; +import type { UpdateComponentRequest, UpdateComponentResponse } from "../models/models_0"; import { UpdateComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/UpdateComponentConfigurationCommand.ts b/clients/client-application-insights/src/commands/UpdateComponentConfigurationCommand.ts index 9ffe91ca04433..5b8cbec7b6ba0 100644 --- a/clients/client-application-insights/src/commands/UpdateComponentConfigurationCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateComponentConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateComponentConfigurationRequest, UpdateComponentConfigurationResponse } from "../models/models_0"; +import type { UpdateComponentConfigurationRequest, UpdateComponentConfigurationResponse } from "../models/models_0"; import { UpdateComponentConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/UpdateLogPatternCommand.ts b/clients/client-application-insights/src/commands/UpdateLogPatternCommand.ts index 3c88d8bd40b66..78f1f235608b1 100644 --- a/clients/client-application-insights/src/commands/UpdateLogPatternCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateLogPatternCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLogPatternRequest, UpdateLogPatternResponse } from "../models/models_0"; +import type { UpdateLogPatternRequest, UpdateLogPatternResponse } from "../models/models_0"; import { UpdateLogPattern } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/UpdateProblemCommand.ts b/clients/client-application-insights/src/commands/UpdateProblemCommand.ts index c8ddcd840dbcc..00fe9b0dcdfd7 100644 --- a/clients/client-application-insights/src/commands/UpdateProblemCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateProblemCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProblemRequest, UpdateProblemResponse } from "../models/models_0"; +import type { UpdateProblemRequest, UpdateProblemResponse } from "../models/models_0"; import { UpdateProblem } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/commands/UpdateWorkloadCommand.ts b/clients/client-application-insights/src/commands/UpdateWorkloadCommand.ts index c9a78d657eff4..a94e272e685e7 100644 --- a/clients/client-application-insights/src/commands/UpdateWorkloadCommand.ts +++ b/clients/client-application-insights/src/commands/UpdateWorkloadCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationInsightsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkloadRequest, UpdateWorkloadResponse } from "../models/models_0"; +import type { UpdateWorkloadRequest, UpdateWorkloadResponse } from "../models/models_0"; import { UpdateWorkload } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-insights/src/endpoint/EndpointParameters.ts b/clients/client-application-insights/src/endpoint/EndpointParameters.ts index 0dfb558d422f5..29188cf699f5b 100644 --- a/clients/client-application-insights/src/endpoint/EndpointParameters.ts +++ b/clients/client-application-insights/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-application-insights/src/endpoint/endpointResolver.ts b/clients/client-application-insights/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-application-insights/src/endpoint/endpointResolver.ts +++ b/clients/client-application-insights/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-application-insights/src/extensionConfiguration.ts b/clients/client-application-insights/src/extensionConfiguration.ts index e7d331c8723ec..18b626d031534 100644 --- a/clients/client-application-insights/src/extensionConfiguration.ts +++ b/clients/client-application-insights/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-application-insights/src/models/ApplicationInsightsServiceException.ts b/clients/client-application-insights/src/models/ApplicationInsightsServiceException.ts index 21b23d927998b..c28c6f84030e5 100644 --- a/clients/client-application-insights/src/models/ApplicationInsightsServiceException.ts +++ b/clients/client-application-insights/src/models/ApplicationInsightsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-application-insights/src/models/errors.ts b/clients/client-application-insights/src/models/errors.ts index 29ba934cab528..fa23842e2c831 100644 --- a/clients/client-application-insights/src/models/errors.ts +++ b/clients/client-application-insights/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ApplicationInsightsServiceException as __BaseException } from "./ApplicationInsightsServiceException"; diff --git a/clients/client-application-insights/src/pagination/Interfaces.ts b/clients/client-application-insights/src/pagination/Interfaces.ts index afac4084327d7..4e3c1822bee54 100644 --- a/clients/client-application-insights/src/pagination/Interfaces.ts +++ b/clients/client-application-insights/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ApplicationInsightsClient } from "../ApplicationInsightsClient"; diff --git a/clients/client-application-insights/src/pagination/ListApplicationsPaginator.ts b/clients/client-application-insights/src/pagination/ListApplicationsPaginator.ts index bcb5a92570261..aa9d9174a8b0e 100644 --- a/clients/client-application-insights/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-application-insights/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationInsightsClient } from "../ApplicationInsightsClient"; import { diff --git a/clients/client-application-insights/src/pagination/ListComponentsPaginator.ts b/clients/client-application-insights/src/pagination/ListComponentsPaginator.ts index 867ca2c55e1dc..d508e941242db 100644 --- a/clients/client-application-insights/src/pagination/ListComponentsPaginator.ts +++ b/clients/client-application-insights/src/pagination/ListComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationInsightsClient } from "../ApplicationInsightsClient"; import { diff --git a/clients/client-application-insights/src/pagination/ListConfigurationHistoryPaginator.ts b/clients/client-application-insights/src/pagination/ListConfigurationHistoryPaginator.ts index 0fb0b621dc170..af80392d3e4fa 100644 --- a/clients/client-application-insights/src/pagination/ListConfigurationHistoryPaginator.ts +++ b/clients/client-application-insights/src/pagination/ListConfigurationHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationInsightsClient } from "../ApplicationInsightsClient"; import { diff --git a/clients/client-application-insights/src/pagination/ListLogPatternSetsPaginator.ts b/clients/client-application-insights/src/pagination/ListLogPatternSetsPaginator.ts index acbe4b37ddb54..bf967db766aad 100644 --- a/clients/client-application-insights/src/pagination/ListLogPatternSetsPaginator.ts +++ b/clients/client-application-insights/src/pagination/ListLogPatternSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationInsightsClient } from "../ApplicationInsightsClient"; import { diff --git a/clients/client-application-insights/src/pagination/ListLogPatternsPaginator.ts b/clients/client-application-insights/src/pagination/ListLogPatternsPaginator.ts index c8b27efc6d812..afe982b479753 100644 --- a/clients/client-application-insights/src/pagination/ListLogPatternsPaginator.ts +++ b/clients/client-application-insights/src/pagination/ListLogPatternsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationInsightsClient } from "../ApplicationInsightsClient"; import { diff --git a/clients/client-application-insights/src/pagination/ListProblemsPaginator.ts b/clients/client-application-insights/src/pagination/ListProblemsPaginator.ts index 4f4e18d43f615..d1dc7c2a35676 100644 --- a/clients/client-application-insights/src/pagination/ListProblemsPaginator.ts +++ b/clients/client-application-insights/src/pagination/ListProblemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationInsightsClient } from "../ApplicationInsightsClient"; import { diff --git a/clients/client-application-insights/src/pagination/ListWorkloadsPaginator.ts b/clients/client-application-insights/src/pagination/ListWorkloadsPaginator.ts index 225ffb395277f..2c3679e00a716 100644 --- a/clients/client-application-insights/src/pagination/ListWorkloadsPaginator.ts +++ b/clients/client-application-insights/src/pagination/ListWorkloadsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationInsightsClient } from "../ApplicationInsightsClient"; import { diff --git a/clients/client-application-insights/src/runtimeConfig.browser.ts b/clients/client-application-insights/src/runtimeConfig.browser.ts index dd2be46968012..dc0e8e6bf228b 100644 --- a/clients/client-application-insights/src/runtimeConfig.browser.ts +++ b/clients/client-application-insights/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationInsightsClientConfig } from "./ApplicationInsightsClient"; + +import type { ApplicationInsightsClientConfig } from "./ApplicationInsightsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-application-insights/src/runtimeConfig.native.ts b/clients/client-application-insights/src/runtimeConfig.native.ts index 111161ded827a..363f3edb84a2e 100644 --- a/clients/client-application-insights/src/runtimeConfig.native.ts +++ b/clients/client-application-insights/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ApplicationInsightsClientConfig } from "./ApplicationInsightsClient"; +import type { ApplicationInsightsClientConfig } from "./ApplicationInsightsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-application-insights/src/runtimeConfig.shared.ts b/clients/client-application-insights/src/runtimeConfig.shared.ts index 7e93cab36f397..27b6cceb06c02 100644 --- a/clients/client-application-insights/src/runtimeConfig.shared.ts +++ b/clients/client-application-insights/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ApplicationInsightsClientConfig } from "./ApplicationInsightsClient"; +import type { ApplicationInsightsClientConfig } from "./ApplicationInsightsClient"; import { defaultApplicationInsightsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-application-insights/src/runtimeConfig.ts b/clients/client-application-insights/src/runtimeConfig.ts index d1d3401b1cdd3..47a6e7653efee 100644 --- a/clients/client-application-insights/src/runtimeConfig.ts +++ b/clients/client-application-insights/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationInsightsClientConfig } from "./ApplicationInsightsClient"; + +import type { ApplicationInsightsClientConfig } from "./ApplicationInsightsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-application-insights/src/runtimeExtensions.ts b/clients/client-application-insights/src/runtimeExtensions.ts index a72b76862ab41..6cdb5de602d68 100644 --- a/clients/client-application-insights/src/runtimeExtensions.ts +++ b/clients/client-application-insights/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ApplicationInsightsExtensionConfiguration } from "./extensionConfiguration"; +import type { ApplicationInsightsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-application-insights/src/schemas/schemas_0.ts b/clients/client-application-insights/src/schemas/schemas_0.ts index e78431df081b4..87a7f32ebd173 100644 --- a/clients/client-application-insights/src/schemas/schemas_0.ts +++ b/clients/client-application-insights/src/schemas/schemas_0.ts @@ -243,7 +243,7 @@ const n0 = "com.amazonaws.applicationinsights"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-application-signals/package.json b/clients/client-application-signals/package.json index e1a9b96c8479f..ebec30b2b0a13 100644 --- a/clients/client-application-signals/package.json +++ b/clients/client-application-signals/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-application-signals/src/ApplicationSignals.ts b/clients/client-application-signals/src/ApplicationSignals.ts index 16e22bd00110f..d236a9c6fcfe4 100644 --- a/clients/client-application-signals/src/ApplicationSignals.ts +++ b/clients/client-application-signals/src/ApplicationSignals.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ApplicationSignalsClient, ApplicationSignalsClientConfig } from "./ApplicationSignalsClient"; +import { ApplicationSignalsClient } from "./ApplicationSignalsClient"; import { BatchGetServiceLevelObjectiveBudgetReportCommand, BatchGetServiceLevelObjectiveBudgetReportCommandInput, diff --git a/clients/client-application-signals/src/ApplicationSignalsClient.ts b/clients/client-application-signals/src/ApplicationSignalsClient.ts index c0cbe37aded6a..13a8d9afa1f28 100644 --- a/clients/client-application-signals/src/ApplicationSignalsClient.ts +++ b/clients/client-application-signals/src/ApplicationSignalsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultApplicationSignalsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -132,7 +141,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-application-signals/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-application-signals/src/auth/httpAuthExtensionConfiguration.ts index bd74d39c71724..3ab608bc1e158 100644 --- a/clients/client-application-signals/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-application-signals/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ApplicationSignalsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ApplicationSignalsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-application-signals/src/auth/httpAuthSchemeProvider.ts b/clients/client-application-signals/src/auth/httpAuthSchemeProvider.ts index 47857892f6279..096af7ffe35d7 100644 --- a/clients/client-application-signals/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-application-signals/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ApplicationSignalsClientConfig, ApplicationSignalsClientResolvedConfig } from "../ApplicationSignalsClient"; +import { + type ApplicationSignalsClientResolvedConfig, + ApplicationSignalsClientConfig, +} from "../ApplicationSignalsClient"; /** * @internal diff --git a/clients/client-application-signals/src/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.ts b/clients/client-application-signals/src/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.ts index eda16247d305d..9fc5b2185baaf 100644 --- a/clients/client-application-signals/src/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.ts +++ b/clients/client-application-signals/src/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchGetServiceLevelObjectiveBudgetReportInput, BatchGetServiceLevelObjectiveBudgetReportOutput, } from "../models/models_0"; diff --git a/clients/client-application-signals/src/commands/BatchUpdateExclusionWindowsCommand.ts b/clients/client-application-signals/src/commands/BatchUpdateExclusionWindowsCommand.ts index c0671d6e4301a..e9e6be6e6e2bc 100644 --- a/clients/client-application-signals/src/commands/BatchUpdateExclusionWindowsCommand.ts +++ b/clients/client-application-signals/src/commands/BatchUpdateExclusionWindowsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateExclusionWindowsInput, BatchUpdateExclusionWindowsOutput } from "../models/models_0"; +import type { BatchUpdateExclusionWindowsInput, BatchUpdateExclusionWindowsOutput } from "../models/models_0"; import { BatchUpdateExclusionWindows } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/CreateServiceLevelObjectiveCommand.ts b/clients/client-application-signals/src/commands/CreateServiceLevelObjectiveCommand.ts index 51a9ba9b4482b..de23a50013c16 100644 --- a/clients/client-application-signals/src/commands/CreateServiceLevelObjectiveCommand.ts +++ b/clients/client-application-signals/src/commands/CreateServiceLevelObjectiveCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceLevelObjectiveInput, CreateServiceLevelObjectiveOutput } from "../models/models_0"; +import type { CreateServiceLevelObjectiveInput, CreateServiceLevelObjectiveOutput } from "../models/models_0"; import { CreateServiceLevelObjective } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/DeleteGroupingConfigurationCommand.ts b/clients/client-application-signals/src/commands/DeleteGroupingConfigurationCommand.ts index 886233ef0a133..a7bf6330ff498 100644 --- a/clients/client-application-signals/src/commands/DeleteGroupingConfigurationCommand.ts +++ b/clients/client-application-signals/src/commands/DeleteGroupingConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupingConfigurationOutput } from "../models/models_0"; +import type { DeleteGroupingConfigurationOutput } from "../models/models_0"; import { DeleteGroupingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/DeleteServiceLevelObjectiveCommand.ts b/clients/client-application-signals/src/commands/DeleteServiceLevelObjectiveCommand.ts index d863d9a520525..cd77b106e05b9 100644 --- a/clients/client-application-signals/src/commands/DeleteServiceLevelObjectiveCommand.ts +++ b/clients/client-application-signals/src/commands/DeleteServiceLevelObjectiveCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceLevelObjectiveInput, DeleteServiceLevelObjectiveOutput } from "../models/models_0"; +import type { DeleteServiceLevelObjectiveInput, DeleteServiceLevelObjectiveOutput } from "../models/models_0"; import { DeleteServiceLevelObjective } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/GetServiceCommand.ts b/clients/client-application-signals/src/commands/GetServiceCommand.ts index c78db3dc6cd70..d4c81390960d2 100644 --- a/clients/client-application-signals/src/commands/GetServiceCommand.ts +++ b/clients/client-application-signals/src/commands/GetServiceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceInput, GetServiceOutput } from "../models/models_0"; +import type { GetServiceInput, GetServiceOutput } from "../models/models_0"; import { GetService } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/GetServiceLevelObjectiveCommand.ts b/clients/client-application-signals/src/commands/GetServiceLevelObjectiveCommand.ts index ab6e34a06d8b1..a0eccfc44e775 100644 --- a/clients/client-application-signals/src/commands/GetServiceLevelObjectiveCommand.ts +++ b/clients/client-application-signals/src/commands/GetServiceLevelObjectiveCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceLevelObjectiveInput, GetServiceLevelObjectiveOutput } from "../models/models_0"; +import type { GetServiceLevelObjectiveInput, GetServiceLevelObjectiveOutput } from "../models/models_0"; import { GetServiceLevelObjective } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListAuditFindingsCommand.ts b/clients/client-application-signals/src/commands/ListAuditFindingsCommand.ts index d7484943ddef1..d61f95654b1f8 100644 --- a/clients/client-application-signals/src/commands/ListAuditFindingsCommand.ts +++ b/clients/client-application-signals/src/commands/ListAuditFindingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAuditFindingsInput, ListAuditFindingsOutput } from "../models/models_0"; +import type { ListAuditFindingsInput, ListAuditFindingsOutput } from "../models/models_0"; import { ListAuditFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListEntityEventsCommand.ts b/clients/client-application-signals/src/commands/ListEntityEventsCommand.ts index f019d372f1148..5d8fad2d85c4e 100644 --- a/clients/client-application-signals/src/commands/ListEntityEventsCommand.ts +++ b/clients/client-application-signals/src/commands/ListEntityEventsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEntityEventsInput, ListEntityEventsOutput } from "../models/models_0"; +import type { ListEntityEventsInput, ListEntityEventsOutput } from "../models/models_0"; import { ListEntityEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListGroupingAttributeDefinitionsCommand.ts b/clients/client-application-signals/src/commands/ListGroupingAttributeDefinitionsCommand.ts index dfd01ded4e702..b9852a078335a 100644 --- a/clients/client-application-signals/src/commands/ListGroupingAttributeDefinitionsCommand.ts +++ b/clients/client-application-signals/src/commands/ListGroupingAttributeDefinitionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupingAttributeDefinitionsInput, ListGroupingAttributeDefinitionsOutput } from "../models/models_0"; +import type { ListGroupingAttributeDefinitionsInput, ListGroupingAttributeDefinitionsOutput } from "../models/models_0"; import { ListGroupingAttributeDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListServiceDependenciesCommand.ts b/clients/client-application-signals/src/commands/ListServiceDependenciesCommand.ts index dc9c0fa7524bb..59760ab5a66eb 100644 --- a/clients/client-application-signals/src/commands/ListServiceDependenciesCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceDependenciesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceDependenciesInput, ListServiceDependenciesOutput } from "../models/models_0"; +import type { ListServiceDependenciesInput, ListServiceDependenciesOutput } from "../models/models_0"; import { ListServiceDependencies } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListServiceDependentsCommand.ts b/clients/client-application-signals/src/commands/ListServiceDependentsCommand.ts index e98f14495cc48..8c302a5ed6f50 100644 --- a/clients/client-application-signals/src/commands/ListServiceDependentsCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceDependentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceDependentsInput, ListServiceDependentsOutput } from "../models/models_0"; +import type { ListServiceDependentsInput, ListServiceDependentsOutput } from "../models/models_0"; import { ListServiceDependents } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListServiceLevelObjectiveExclusionWindowsCommand.ts b/clients/client-application-signals/src/commands/ListServiceLevelObjectiveExclusionWindowsCommand.ts index d2f1001a9e32c..20cd11d25955c 100644 --- a/clients/client-application-signals/src/commands/ListServiceLevelObjectiveExclusionWindowsCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceLevelObjectiveExclusionWindowsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServiceLevelObjectiveExclusionWindowsInput, ListServiceLevelObjectiveExclusionWindowsOutput, } from "../models/models_0"; diff --git a/clients/client-application-signals/src/commands/ListServiceLevelObjectivesCommand.ts b/clients/client-application-signals/src/commands/ListServiceLevelObjectivesCommand.ts index c7bde76b56d08..97b528a04793c 100644 --- a/clients/client-application-signals/src/commands/ListServiceLevelObjectivesCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceLevelObjectivesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceLevelObjectivesInput, ListServiceLevelObjectivesOutput } from "../models/models_0"; +import type { ListServiceLevelObjectivesInput, ListServiceLevelObjectivesOutput } from "../models/models_0"; import { ListServiceLevelObjectives } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListServiceOperationsCommand.ts b/clients/client-application-signals/src/commands/ListServiceOperationsCommand.ts index 3aa379dbc975b..8d6a49ee2ac19 100644 --- a/clients/client-application-signals/src/commands/ListServiceOperationsCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceOperationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceOperationsInput, ListServiceOperationsOutput } from "../models/models_0"; +import type { ListServiceOperationsInput, ListServiceOperationsOutput } from "../models/models_0"; import { ListServiceOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListServiceStatesCommand.ts b/clients/client-application-signals/src/commands/ListServiceStatesCommand.ts index 584fafddc883e..df0a4d65750bc 100644 --- a/clients/client-application-signals/src/commands/ListServiceStatesCommand.ts +++ b/clients/client-application-signals/src/commands/ListServiceStatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceStatesInput, ListServiceStatesOutput } from "../models/models_0"; +import type { ListServiceStatesInput, ListServiceStatesOutput } from "../models/models_0"; import { ListServiceStates } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListServicesCommand.ts b/clients/client-application-signals/src/commands/ListServicesCommand.ts index e7a519a183932..1e7e5895e181d 100644 --- a/clients/client-application-signals/src/commands/ListServicesCommand.ts +++ b/clients/client-application-signals/src/commands/ListServicesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicesInput, ListServicesOutput } from "../models/models_0"; +import type { ListServicesInput, ListServicesOutput } from "../models/models_0"; import { ListServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/ListTagsForResourceCommand.ts b/clients/client-application-signals/src/commands/ListTagsForResourceCommand.ts index 23bdf3ff332f3..87566e464e451 100644 --- a/clients/client-application-signals/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-application-signals/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/PutGroupingConfigurationCommand.ts b/clients/client-application-signals/src/commands/PutGroupingConfigurationCommand.ts index becc27b87b96f..f2d56dbbdeed4 100644 --- a/clients/client-application-signals/src/commands/PutGroupingConfigurationCommand.ts +++ b/clients/client-application-signals/src/commands/PutGroupingConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutGroupingConfigurationInput, PutGroupingConfigurationOutput } from "../models/models_0"; +import type { PutGroupingConfigurationInput, PutGroupingConfigurationOutput } from "../models/models_0"; import { PutGroupingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/StartDiscoveryCommand.ts b/clients/client-application-signals/src/commands/StartDiscoveryCommand.ts index bf4d90f5510f2..7f4d5ab648213 100644 --- a/clients/client-application-signals/src/commands/StartDiscoveryCommand.ts +++ b/clients/client-application-signals/src/commands/StartDiscoveryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDiscoveryInput, StartDiscoveryOutput } from "../models/models_0"; +import type { StartDiscoveryInput, StartDiscoveryOutput } from "../models/models_0"; import { StartDiscovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/TagResourceCommand.ts b/clients/client-application-signals/src/commands/TagResourceCommand.ts index 7a5e37adb6b64..928412ca0aa7b 100644 --- a/clients/client-application-signals/src/commands/TagResourceCommand.ts +++ b/clients/client-application-signals/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/UntagResourceCommand.ts b/clients/client-application-signals/src/commands/UntagResourceCommand.ts index 4eae64b80bf21..fc3e5bc03c608 100644 --- a/clients/client-application-signals/src/commands/UntagResourceCommand.ts +++ b/clients/client-application-signals/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/commands/UpdateServiceLevelObjectiveCommand.ts b/clients/client-application-signals/src/commands/UpdateServiceLevelObjectiveCommand.ts index f54ad41195afe..032302c1299a3 100644 --- a/clients/client-application-signals/src/commands/UpdateServiceLevelObjectiveCommand.ts +++ b/clients/client-application-signals/src/commands/UpdateServiceLevelObjectiveCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationSignalsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationSignalsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceLevelObjectiveInput, UpdateServiceLevelObjectiveOutput } from "../models/models_0"; +import type { UpdateServiceLevelObjectiveInput, UpdateServiceLevelObjectiveOutput } from "../models/models_0"; import { UpdateServiceLevelObjective } from "../schemas/schemas_0"; /** diff --git a/clients/client-application-signals/src/endpoint/EndpointParameters.ts b/clients/client-application-signals/src/endpoint/EndpointParameters.ts index e25b48ac39af6..79b296f9fa0f4 100644 --- a/clients/client-application-signals/src/endpoint/EndpointParameters.ts +++ b/clients/client-application-signals/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-application-signals/src/endpoint/endpointResolver.ts b/clients/client-application-signals/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-application-signals/src/endpoint/endpointResolver.ts +++ b/clients/client-application-signals/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-application-signals/src/extensionConfiguration.ts b/clients/client-application-signals/src/extensionConfiguration.ts index d038bac256a21..64a87e257d24f 100644 --- a/clients/client-application-signals/src/extensionConfiguration.ts +++ b/clients/client-application-signals/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-application-signals/src/models/ApplicationSignalsServiceException.ts b/clients/client-application-signals/src/models/ApplicationSignalsServiceException.ts index ed43c6116dbb5..65c51ff86ccd3 100644 --- a/clients/client-application-signals/src/models/ApplicationSignalsServiceException.ts +++ b/clients/client-application-signals/src/models/ApplicationSignalsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-application-signals/src/models/errors.ts b/clients/client-application-signals/src/models/errors.ts index d159cab6fa871..a62c63f6d749e 100644 --- a/clients/client-application-signals/src/models/errors.ts +++ b/clients/client-application-signals/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ApplicationSignalsServiceException as __BaseException } from "./ApplicationSignalsServiceException"; diff --git a/clients/client-application-signals/src/pagination/Interfaces.ts b/clients/client-application-signals/src/pagination/Interfaces.ts index 5180f2ec8830d..cd4817cfc963a 100644 --- a/clients/client-application-signals/src/pagination/Interfaces.ts +++ b/clients/client-application-signals/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ApplicationSignalsClient } from "../ApplicationSignalsClient"; diff --git a/clients/client-application-signals/src/pagination/ListEntityEventsPaginator.ts b/clients/client-application-signals/src/pagination/ListEntityEventsPaginator.ts index f1f3be87ba0ce..a2954080116c0 100644 --- a/clients/client-application-signals/src/pagination/ListEntityEventsPaginator.ts +++ b/clients/client-application-signals/src/pagination/ListEntityEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationSignalsClient } from "../ApplicationSignalsClient"; import { diff --git a/clients/client-application-signals/src/pagination/ListServiceDependenciesPaginator.ts b/clients/client-application-signals/src/pagination/ListServiceDependenciesPaginator.ts index e41a66f648169..c8b341e7f0520 100644 --- a/clients/client-application-signals/src/pagination/ListServiceDependenciesPaginator.ts +++ b/clients/client-application-signals/src/pagination/ListServiceDependenciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationSignalsClient } from "../ApplicationSignalsClient"; import { diff --git a/clients/client-application-signals/src/pagination/ListServiceDependentsPaginator.ts b/clients/client-application-signals/src/pagination/ListServiceDependentsPaginator.ts index 7e4a6e1dad8cf..9908656043ca4 100644 --- a/clients/client-application-signals/src/pagination/ListServiceDependentsPaginator.ts +++ b/clients/client-application-signals/src/pagination/ListServiceDependentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationSignalsClient } from "../ApplicationSignalsClient"; import { diff --git a/clients/client-application-signals/src/pagination/ListServiceLevelObjectiveExclusionWindowsPaginator.ts b/clients/client-application-signals/src/pagination/ListServiceLevelObjectiveExclusionWindowsPaginator.ts index 5c66a54f66ed6..c8f7d344c6cc2 100644 --- a/clients/client-application-signals/src/pagination/ListServiceLevelObjectiveExclusionWindowsPaginator.ts +++ b/clients/client-application-signals/src/pagination/ListServiceLevelObjectiveExclusionWindowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationSignalsClient } from "../ApplicationSignalsClient"; import { diff --git a/clients/client-application-signals/src/pagination/ListServiceLevelObjectivesPaginator.ts b/clients/client-application-signals/src/pagination/ListServiceLevelObjectivesPaginator.ts index de2c905a208af..b2d994dcf01dd 100644 --- a/clients/client-application-signals/src/pagination/ListServiceLevelObjectivesPaginator.ts +++ b/clients/client-application-signals/src/pagination/ListServiceLevelObjectivesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationSignalsClient } from "../ApplicationSignalsClient"; import { diff --git a/clients/client-application-signals/src/pagination/ListServiceOperationsPaginator.ts b/clients/client-application-signals/src/pagination/ListServiceOperationsPaginator.ts index 141697b3af36a..f9c7537490e75 100644 --- a/clients/client-application-signals/src/pagination/ListServiceOperationsPaginator.ts +++ b/clients/client-application-signals/src/pagination/ListServiceOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationSignalsClient } from "../ApplicationSignalsClient"; import { diff --git a/clients/client-application-signals/src/pagination/ListServiceStatesPaginator.ts b/clients/client-application-signals/src/pagination/ListServiceStatesPaginator.ts index 01c718e9082ee..e4727f2654361 100644 --- a/clients/client-application-signals/src/pagination/ListServiceStatesPaginator.ts +++ b/clients/client-application-signals/src/pagination/ListServiceStatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationSignalsClient } from "../ApplicationSignalsClient"; import { diff --git a/clients/client-application-signals/src/pagination/ListServicesPaginator.ts b/clients/client-application-signals/src/pagination/ListServicesPaginator.ts index 81e3bd78c3a28..1711c14b1a521 100644 --- a/clients/client-application-signals/src/pagination/ListServicesPaginator.ts +++ b/clients/client-application-signals/src/pagination/ListServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationSignalsClient } from "../ApplicationSignalsClient"; import { diff --git a/clients/client-application-signals/src/runtimeConfig.browser.ts b/clients/client-application-signals/src/runtimeConfig.browser.ts index 68dd26473f1b9..05b66f93fb52b 100644 --- a/clients/client-application-signals/src/runtimeConfig.browser.ts +++ b/clients/client-application-signals/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationSignalsClientConfig } from "./ApplicationSignalsClient"; + +import type { ApplicationSignalsClientConfig } from "./ApplicationSignalsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-application-signals/src/runtimeConfig.native.ts b/clients/client-application-signals/src/runtimeConfig.native.ts index 6f2474988191c..fb88170bfc7bf 100644 --- a/clients/client-application-signals/src/runtimeConfig.native.ts +++ b/clients/client-application-signals/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ApplicationSignalsClientConfig } from "./ApplicationSignalsClient"; +import type { ApplicationSignalsClientConfig } from "./ApplicationSignalsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-application-signals/src/runtimeConfig.shared.ts b/clients/client-application-signals/src/runtimeConfig.shared.ts index 291500ec23caa..43bd5f821abd8 100644 --- a/clients/client-application-signals/src/runtimeConfig.shared.ts +++ b/clients/client-application-signals/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ApplicationSignalsClientConfig } from "./ApplicationSignalsClient"; +import type { ApplicationSignalsClientConfig } from "./ApplicationSignalsClient"; import { defaultApplicationSignalsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-application-signals/src/runtimeConfig.ts b/clients/client-application-signals/src/runtimeConfig.ts index e2d8a16b6060e..a87c5f605b858 100644 --- a/clients/client-application-signals/src/runtimeConfig.ts +++ b/clients/client-application-signals/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationSignalsClientConfig } from "./ApplicationSignalsClient"; + +import type { ApplicationSignalsClientConfig } from "./ApplicationSignalsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-application-signals/src/runtimeExtensions.ts b/clients/client-application-signals/src/runtimeExtensions.ts index 15c500f063904..2750e07fafe11 100644 --- a/clients/client-application-signals/src/runtimeExtensions.ts +++ b/clients/client-application-signals/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ApplicationSignalsExtensionConfiguration } from "./extensionConfiguration"; +import type { ApplicationSignalsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-application-signals/src/schemas/schemas_0.ts b/clients/client-application-signals/src/schemas/schemas_0.ts index 3718893bd30ea..97aef24ea0856 100644 --- a/clients/client-application-signals/src/schemas/schemas_0.ts +++ b/clients/client-application-signals/src/schemas/schemas_0.ts @@ -275,7 +275,7 @@ const n0 = "com.amazonaws.applicationsignals"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-applicationcostprofiler/package.json b/clients/client-applicationcostprofiler/package.json index 538a9069c0683..b5b9d3c4973dd 100644 --- a/clients/client-applicationcostprofiler/package.json +++ b/clients/client-applicationcostprofiler/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-applicationcostprofiler/src/ApplicationCostProfiler.ts b/clients/client-applicationcostprofiler/src/ApplicationCostProfiler.ts index 847745321cf8e..c24c94b8f86a1 100644 --- a/clients/client-applicationcostprofiler/src/ApplicationCostProfiler.ts +++ b/clients/client-applicationcostprofiler/src/ApplicationCostProfiler.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ApplicationCostProfilerClient, ApplicationCostProfilerClientConfig } from "./ApplicationCostProfilerClient"; +import { ApplicationCostProfilerClient } from "./ApplicationCostProfilerClient"; import { DeleteReportDefinitionCommand, DeleteReportDefinitionCommandInput, diff --git a/clients/client-applicationcostprofiler/src/ApplicationCostProfilerClient.ts b/clients/client-applicationcostprofiler/src/ApplicationCostProfilerClient.ts index 7394c6a543daa..15b61be6bff1e 100644 --- a/clients/client-applicationcostprofiler/src/ApplicationCostProfilerClient.ts +++ b/clients/client-applicationcostprofiler/src/ApplicationCostProfilerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultApplicationCostProfilerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -88,7 +97,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-applicationcostprofiler/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-applicationcostprofiler/src/auth/httpAuthExtensionConfiguration.ts index 131a2f5afc795..7a0012c4c4d41 100644 --- a/clients/client-applicationcostprofiler/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-applicationcostprofiler/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ApplicationCostProfilerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ApplicationCostProfilerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-applicationcostprofiler/src/auth/httpAuthSchemeProvider.ts b/clients/client-applicationcostprofiler/src/auth/httpAuthSchemeProvider.ts index 5e433d3189965..3a7afdd89099e 100644 --- a/clients/client-applicationcostprofiler/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-applicationcostprofiler/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ApplicationCostProfilerClientResolvedConfig, ApplicationCostProfilerClientConfig, - ApplicationCostProfilerClientResolvedConfig, } from "../ApplicationCostProfilerClient"; /** diff --git a/clients/client-applicationcostprofiler/src/commands/DeleteReportDefinitionCommand.ts b/clients/client-applicationcostprofiler/src/commands/DeleteReportDefinitionCommand.ts index 81d945eb66d54..dc1486aefe476 100644 --- a/clients/client-applicationcostprofiler/src/commands/DeleteReportDefinitionCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/DeleteReportDefinitionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationCostProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReportDefinitionRequest, DeleteReportDefinitionResult } from "../models/models_0"; +import type { DeleteReportDefinitionRequest, DeleteReportDefinitionResult } from "../models/models_0"; import { DeleteReportDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-applicationcostprofiler/src/commands/GetReportDefinitionCommand.ts b/clients/client-applicationcostprofiler/src/commands/GetReportDefinitionCommand.ts index d22613263d7ea..31f86346b95b4 100644 --- a/clients/client-applicationcostprofiler/src/commands/GetReportDefinitionCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/GetReportDefinitionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationCostProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReportDefinitionRequest, GetReportDefinitionResult } from "../models/models_0"; +import type { GetReportDefinitionRequest, GetReportDefinitionResult } from "../models/models_0"; import { GetReportDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-applicationcostprofiler/src/commands/ImportApplicationUsageCommand.ts b/clients/client-applicationcostprofiler/src/commands/ImportApplicationUsageCommand.ts index 82d7e99fc7469..b3aa9a88b5724 100644 --- a/clients/client-applicationcostprofiler/src/commands/ImportApplicationUsageCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/ImportApplicationUsageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationCostProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportApplicationUsageRequest, ImportApplicationUsageResult } from "../models/models_0"; +import type { ImportApplicationUsageRequest, ImportApplicationUsageResult } from "../models/models_0"; import { ImportApplicationUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-applicationcostprofiler/src/commands/ListReportDefinitionsCommand.ts b/clients/client-applicationcostprofiler/src/commands/ListReportDefinitionsCommand.ts index 702d087b9b3f3..fdf238b0ee9b5 100644 --- a/clients/client-applicationcostprofiler/src/commands/ListReportDefinitionsCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/ListReportDefinitionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationCostProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReportDefinitionsRequest, ListReportDefinitionsResult } from "../models/models_0"; +import type { ListReportDefinitionsRequest, ListReportDefinitionsResult } from "../models/models_0"; import { ListReportDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-applicationcostprofiler/src/commands/PutReportDefinitionCommand.ts b/clients/client-applicationcostprofiler/src/commands/PutReportDefinitionCommand.ts index 55eef54366b22..c862f29ff5d1f 100644 --- a/clients/client-applicationcostprofiler/src/commands/PutReportDefinitionCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/PutReportDefinitionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationCostProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutReportDefinitionRequest, PutReportDefinitionResult } from "../models/models_0"; +import type { PutReportDefinitionRequest, PutReportDefinitionResult } from "../models/models_0"; import { PutReportDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-applicationcostprofiler/src/commands/UpdateReportDefinitionCommand.ts b/clients/client-applicationcostprofiler/src/commands/UpdateReportDefinitionCommand.ts index 0680356c8261e..a52449863fd24 100644 --- a/clients/client-applicationcostprofiler/src/commands/UpdateReportDefinitionCommand.ts +++ b/clients/client-applicationcostprofiler/src/commands/UpdateReportDefinitionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ApplicationCostProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ApplicationCostProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReportDefinitionRequest, UpdateReportDefinitionResult } from "../models/models_0"; +import type { UpdateReportDefinitionRequest, UpdateReportDefinitionResult } from "../models/models_0"; import { UpdateReportDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-applicationcostprofiler/src/endpoint/EndpointParameters.ts b/clients/client-applicationcostprofiler/src/endpoint/EndpointParameters.ts index f8f7d0b3e4de0..728952f99e3c3 100644 --- a/clients/client-applicationcostprofiler/src/endpoint/EndpointParameters.ts +++ b/clients/client-applicationcostprofiler/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-applicationcostprofiler/src/endpoint/endpointResolver.ts b/clients/client-applicationcostprofiler/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-applicationcostprofiler/src/endpoint/endpointResolver.ts +++ b/clients/client-applicationcostprofiler/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-applicationcostprofiler/src/extensionConfiguration.ts b/clients/client-applicationcostprofiler/src/extensionConfiguration.ts index fb7c4521934ce..a134cae15a3b1 100644 --- a/clients/client-applicationcostprofiler/src/extensionConfiguration.ts +++ b/clients/client-applicationcostprofiler/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-applicationcostprofiler/src/models/ApplicationCostProfilerServiceException.ts b/clients/client-applicationcostprofiler/src/models/ApplicationCostProfilerServiceException.ts index a1b5f70c72b9d..3fe937012d347 100644 --- a/clients/client-applicationcostprofiler/src/models/ApplicationCostProfilerServiceException.ts +++ b/clients/client-applicationcostprofiler/src/models/ApplicationCostProfilerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-applicationcostprofiler/src/models/errors.ts b/clients/client-applicationcostprofiler/src/models/errors.ts index f378b66d21e01..8e5e1326e8862 100644 --- a/clients/client-applicationcostprofiler/src/models/errors.ts +++ b/clients/client-applicationcostprofiler/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ApplicationCostProfilerServiceException as __BaseException } from "./ApplicationCostProfilerServiceException"; diff --git a/clients/client-applicationcostprofiler/src/pagination/Interfaces.ts b/clients/client-applicationcostprofiler/src/pagination/Interfaces.ts index ff782b6615cf5..2f841329e1e53 100644 --- a/clients/client-applicationcostprofiler/src/pagination/Interfaces.ts +++ b/clients/client-applicationcostprofiler/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ApplicationCostProfilerClient } from "../ApplicationCostProfilerClient"; diff --git a/clients/client-applicationcostprofiler/src/pagination/ListReportDefinitionsPaginator.ts b/clients/client-applicationcostprofiler/src/pagination/ListReportDefinitionsPaginator.ts index e82f344fc965d..c0189b75af9ea 100644 --- a/clients/client-applicationcostprofiler/src/pagination/ListReportDefinitionsPaginator.ts +++ b/clients/client-applicationcostprofiler/src/pagination/ListReportDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ApplicationCostProfilerClient } from "../ApplicationCostProfilerClient"; import { diff --git a/clients/client-applicationcostprofiler/src/runtimeConfig.browser.ts b/clients/client-applicationcostprofiler/src/runtimeConfig.browser.ts index 087be64326b6f..9f26f5daa83e0 100644 --- a/clients/client-applicationcostprofiler/src/runtimeConfig.browser.ts +++ b/clients/client-applicationcostprofiler/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationCostProfilerClientConfig } from "./ApplicationCostProfilerClient"; + +import type { ApplicationCostProfilerClientConfig } from "./ApplicationCostProfilerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-applicationcostprofiler/src/runtimeConfig.native.ts b/clients/client-applicationcostprofiler/src/runtimeConfig.native.ts index 79ce73c7e8386..bf85100fee935 100644 --- a/clients/client-applicationcostprofiler/src/runtimeConfig.native.ts +++ b/clients/client-applicationcostprofiler/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ApplicationCostProfilerClientConfig } from "./ApplicationCostProfilerClient"; +import type { ApplicationCostProfilerClientConfig } from "./ApplicationCostProfilerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-applicationcostprofiler/src/runtimeConfig.shared.ts b/clients/client-applicationcostprofiler/src/runtimeConfig.shared.ts index 1ecfb5a78157d..65821905482d5 100644 --- a/clients/client-applicationcostprofiler/src/runtimeConfig.shared.ts +++ b/clients/client-applicationcostprofiler/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ApplicationCostProfilerClientConfig } from "./ApplicationCostProfilerClient"; +import type { ApplicationCostProfilerClientConfig } from "./ApplicationCostProfilerClient"; import { defaultApplicationCostProfilerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-applicationcostprofiler/src/runtimeConfig.ts b/clients/client-applicationcostprofiler/src/runtimeConfig.ts index dcea9e6018706..f11a5b569a5ca 100644 --- a/clients/client-applicationcostprofiler/src/runtimeConfig.ts +++ b/clients/client-applicationcostprofiler/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ApplicationCostProfilerClientConfig } from "./ApplicationCostProfilerClient"; + +import type { ApplicationCostProfilerClientConfig } from "./ApplicationCostProfilerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-applicationcostprofiler/src/runtimeExtensions.ts b/clients/client-applicationcostprofiler/src/runtimeExtensions.ts index 15e0000318b9b..df203c2e87ed9 100644 --- a/clients/client-applicationcostprofiler/src/runtimeExtensions.ts +++ b/clients/client-applicationcostprofiler/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ApplicationCostProfilerExtensionConfiguration } from "./extensionConfiguration"; +import type { ApplicationCostProfilerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-applicationcostprofiler/src/schemas/schemas_0.ts b/clients/client-applicationcostprofiler/src/schemas/schemas_0.ts index b5110ab71d70b..4d3d2037fba05 100644 --- a/clients/client-applicationcostprofiler/src/schemas/schemas_0.ts +++ b/clients/client-applicationcostprofiler/src/schemas/schemas_0.ts @@ -54,7 +54,7 @@ const n0 = "com.amazonaws.applicationcostprofiler"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ApplicationCostProfilerServiceException as __ApplicationCostProfilerServiceException } from "../models/ApplicationCostProfilerServiceException"; import { diff --git a/clients/client-apprunner/package.json b/clients/client-apprunner/package.json index 507e7f4179724..b6955ec2a28c0 100644 --- a/clients/client-apprunner/package.json +++ b/clients/client-apprunner/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-apprunner/src/AppRunner.ts b/clients/client-apprunner/src/AppRunner.ts index 9c2647dd71567..5d6707152ee69 100644 --- a/clients/client-apprunner/src/AppRunner.ts +++ b/clients/client-apprunner/src/AppRunner.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AppRunnerClient, AppRunnerClientConfig } from "./AppRunnerClient"; +import { AppRunnerClient } from "./AppRunnerClient"; import { AssociateCustomDomainCommand, AssociateCustomDomainCommandInput, diff --git a/clients/client-apprunner/src/AppRunnerClient.ts b/clients/client-apprunner/src/AppRunnerClient.ts index a6ad7edb8da15..304f7320f34a7 100644 --- a/clients/client-apprunner/src/AppRunnerClient.ts +++ b/clients/client-apprunner/src/AppRunnerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAppRunnerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -161,7 +170,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-apprunner/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-apprunner/src/auth/httpAuthExtensionConfiguration.ts index 720072737e54b..732643502ee33 100644 --- a/clients/client-apprunner/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-apprunner/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AppRunnerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AppRunnerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-apprunner/src/auth/httpAuthSchemeProvider.ts b/clients/client-apprunner/src/auth/httpAuthSchemeProvider.ts index ac8b211faf497..cb1f0220b6907 100644 --- a/clients/client-apprunner/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-apprunner/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AppRunnerClientConfig, AppRunnerClientResolvedConfig } from "../AppRunnerClient"; +import { type AppRunnerClientResolvedConfig, AppRunnerClientConfig } from "../AppRunnerClient"; /** * @internal diff --git a/clients/client-apprunner/src/commands/AssociateCustomDomainCommand.ts b/clients/client-apprunner/src/commands/AssociateCustomDomainCommand.ts index 670421f798fe6..18827dfce518d 100644 --- a/clients/client-apprunner/src/commands/AssociateCustomDomainCommand.ts +++ b/clients/client-apprunner/src/commands/AssociateCustomDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateCustomDomainRequest, AssociateCustomDomainResponse } from "../models/models_0"; +import type { AssociateCustomDomainRequest, AssociateCustomDomainResponse } from "../models/models_0"; import { AssociateCustomDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/CreateAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/CreateAutoScalingConfigurationCommand.ts index a769b0cd5195d..341c25d6fcdfa 100644 --- a/clients/client-apprunner/src/commands/CreateAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/CreateAutoScalingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAutoScalingConfigurationRequest, CreateAutoScalingConfigurationResponse } from "../models/models_0"; +import type { CreateAutoScalingConfigurationRequest, CreateAutoScalingConfigurationResponse } from "../models/models_0"; import { CreateAutoScalingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/CreateConnectionCommand.ts b/clients/client-apprunner/src/commands/CreateConnectionCommand.ts index 8aa95fe7d9bd0..5e8cb70301846 100644 --- a/clients/client-apprunner/src/commands/CreateConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/CreateConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; +import type { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; import { CreateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/CreateObservabilityConfigurationCommand.ts b/clients/client-apprunner/src/commands/CreateObservabilityConfigurationCommand.ts index 828cb03a64c01..52d8bc2b37b69 100644 --- a/clients/client-apprunner/src/commands/CreateObservabilityConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/CreateObservabilityConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateObservabilityConfigurationRequest, CreateObservabilityConfigurationResponse } from "../models/models_0"; +import type { + CreateObservabilityConfigurationRequest, + CreateObservabilityConfigurationResponse, +} from "../models/models_0"; import { CreateObservabilityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/CreateServiceCommand.ts b/clients/client-apprunner/src/commands/CreateServiceCommand.ts index 570812e3a6a7e..88726d6d805da 100644 --- a/clients/client-apprunner/src/commands/CreateServiceCommand.ts +++ b/clients/client-apprunner/src/commands/CreateServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; +import type { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; import { CreateService } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/CreateVpcConnectorCommand.ts b/clients/client-apprunner/src/commands/CreateVpcConnectorCommand.ts index 52b369855a829..30abca5dadca8 100644 --- a/clients/client-apprunner/src/commands/CreateVpcConnectorCommand.ts +++ b/clients/client-apprunner/src/commands/CreateVpcConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcConnectorRequest, CreateVpcConnectorResponse } from "../models/models_0"; +import type { CreateVpcConnectorRequest, CreateVpcConnectorResponse } from "../models/models_0"; import { CreateVpcConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/CreateVpcIngressConnectionCommand.ts b/clients/client-apprunner/src/commands/CreateVpcIngressConnectionCommand.ts index e609590b20198..9882a1d83f9c6 100644 --- a/clients/client-apprunner/src/commands/CreateVpcIngressConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/CreateVpcIngressConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcIngressConnectionRequest, CreateVpcIngressConnectionResponse } from "../models/models_0"; +import type { CreateVpcIngressConnectionRequest, CreateVpcIngressConnectionResponse } from "../models/models_0"; import { CreateVpcIngressConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DeleteAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/DeleteAutoScalingConfigurationCommand.ts index 75e4b211bd3ae..440955e23a8e5 100644 --- a/clients/client-apprunner/src/commands/DeleteAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteAutoScalingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAutoScalingConfigurationRequest, DeleteAutoScalingConfigurationResponse } from "../models/models_0"; +import type { DeleteAutoScalingConfigurationRequest, DeleteAutoScalingConfigurationResponse } from "../models/models_0"; import { DeleteAutoScalingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DeleteConnectionCommand.ts b/clients/client-apprunner/src/commands/DeleteConnectionCommand.ts index b8318a4e6d039..9f1e337e9b916 100644 --- a/clients/client-apprunner/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0"; +import type { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DeleteObservabilityConfigurationCommand.ts b/clients/client-apprunner/src/commands/DeleteObservabilityConfigurationCommand.ts index 55e359a85c079..84abd3e8830c4 100644 --- a/clients/client-apprunner/src/commands/DeleteObservabilityConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteObservabilityConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteObservabilityConfigurationRequest, DeleteObservabilityConfigurationResponse } from "../models/models_0"; +import type { + DeleteObservabilityConfigurationRequest, + DeleteObservabilityConfigurationResponse, +} from "../models/models_0"; import { DeleteObservabilityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DeleteServiceCommand.ts b/clients/client-apprunner/src/commands/DeleteServiceCommand.ts index ec7183c66b329..bca49b90a61ec 100644 --- a/clients/client-apprunner/src/commands/DeleteServiceCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; +import type { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; import { DeleteService } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DeleteVpcConnectorCommand.ts b/clients/client-apprunner/src/commands/DeleteVpcConnectorCommand.ts index 43a7c046d3d00..38e73f9f5a949 100644 --- a/clients/client-apprunner/src/commands/DeleteVpcConnectorCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteVpcConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcConnectorRequest, DeleteVpcConnectorResponse } from "../models/models_0"; +import type { DeleteVpcConnectorRequest, DeleteVpcConnectorResponse } from "../models/models_0"; import { DeleteVpcConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DeleteVpcIngressConnectionCommand.ts b/clients/client-apprunner/src/commands/DeleteVpcIngressConnectionCommand.ts index 4dfd6fe3bbad3..d0a13211944be 100644 --- a/clients/client-apprunner/src/commands/DeleteVpcIngressConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/DeleteVpcIngressConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcIngressConnectionRequest, DeleteVpcIngressConnectionResponse } from "../models/models_0"; +import type { DeleteVpcIngressConnectionRequest, DeleteVpcIngressConnectionResponse } from "../models/models_0"; import { DeleteVpcIngressConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DescribeAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/DescribeAutoScalingConfigurationCommand.ts index e7f42d94cbfd0..3d254b3769a34 100644 --- a/clients/client-apprunner/src/commands/DescribeAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeAutoScalingConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAutoScalingConfigurationRequest, DescribeAutoScalingConfigurationResponse } from "../models/models_0"; +import type { + DescribeAutoScalingConfigurationRequest, + DescribeAutoScalingConfigurationResponse, +} from "../models/models_0"; import { DescribeAutoScalingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DescribeCustomDomainsCommand.ts b/clients/client-apprunner/src/commands/DescribeCustomDomainsCommand.ts index a8b522aab9f94..5afab72650570 100644 --- a/clients/client-apprunner/src/commands/DescribeCustomDomainsCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeCustomDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCustomDomainsRequest, DescribeCustomDomainsResponse } from "../models/models_0"; +import type { DescribeCustomDomainsRequest, DescribeCustomDomainsResponse } from "../models/models_0"; import { DescribeCustomDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DescribeObservabilityConfigurationCommand.ts b/clients/client-apprunner/src/commands/DescribeObservabilityConfigurationCommand.ts index 55a182f2ab6b1..01d2f02b079c6 100644 --- a/clients/client-apprunner/src/commands/DescribeObservabilityConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeObservabilityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeObservabilityConfigurationRequest, DescribeObservabilityConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-apprunner/src/commands/DescribeServiceCommand.ts b/clients/client-apprunner/src/commands/DescribeServiceCommand.ts index 8d0a448f73bcf..1b6d60b29e090 100644 --- a/clients/client-apprunner/src/commands/DescribeServiceCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServiceRequest, DescribeServiceResponse } from "../models/models_0"; +import type { DescribeServiceRequest, DescribeServiceResponse } from "../models/models_0"; import { DescribeService } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DescribeVpcConnectorCommand.ts b/clients/client-apprunner/src/commands/DescribeVpcConnectorCommand.ts index 8ac71108f2349..50e1b8824584a 100644 --- a/clients/client-apprunner/src/commands/DescribeVpcConnectorCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeVpcConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcConnectorRequest, DescribeVpcConnectorResponse } from "../models/models_0"; +import type { DescribeVpcConnectorRequest, DescribeVpcConnectorResponse } from "../models/models_0"; import { DescribeVpcConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DescribeVpcIngressConnectionCommand.ts b/clients/client-apprunner/src/commands/DescribeVpcIngressConnectionCommand.ts index 28d4d14ab2a7f..97e181f705b82 100644 --- a/clients/client-apprunner/src/commands/DescribeVpcIngressConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/DescribeVpcIngressConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcIngressConnectionRequest, DescribeVpcIngressConnectionResponse } from "../models/models_0"; +import type { DescribeVpcIngressConnectionRequest, DescribeVpcIngressConnectionResponse } from "../models/models_0"; import { DescribeVpcIngressConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/DisassociateCustomDomainCommand.ts b/clients/client-apprunner/src/commands/DisassociateCustomDomainCommand.ts index c47a4aec26397..9f0ed9b7f4132 100644 --- a/clients/client-apprunner/src/commands/DisassociateCustomDomainCommand.ts +++ b/clients/client-apprunner/src/commands/DisassociateCustomDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateCustomDomainRequest, DisassociateCustomDomainResponse } from "../models/models_0"; +import type { DisassociateCustomDomainRequest, DisassociateCustomDomainResponse } from "../models/models_0"; import { DisassociateCustomDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/ListAutoScalingConfigurationsCommand.ts b/clients/client-apprunner/src/commands/ListAutoScalingConfigurationsCommand.ts index e3191d02dc32f..3b8a2ec718a02 100644 --- a/clients/client-apprunner/src/commands/ListAutoScalingConfigurationsCommand.ts +++ b/clients/client-apprunner/src/commands/ListAutoScalingConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutoScalingConfigurationsRequest, ListAutoScalingConfigurationsResponse } from "../models/models_0"; +import type { ListAutoScalingConfigurationsRequest, ListAutoScalingConfigurationsResponse } from "../models/models_0"; import { ListAutoScalingConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/ListConnectionsCommand.ts b/clients/client-apprunner/src/commands/ListConnectionsCommand.ts index 059f5215bbb49..697237056339c 100644 --- a/clients/client-apprunner/src/commands/ListConnectionsCommand.ts +++ b/clients/client-apprunner/src/commands/ListConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0"; +import type { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0"; import { ListConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/ListObservabilityConfigurationsCommand.ts b/clients/client-apprunner/src/commands/ListObservabilityConfigurationsCommand.ts index 5353760eb5592..357fe7dcfe5ae 100644 --- a/clients/client-apprunner/src/commands/ListObservabilityConfigurationsCommand.ts +++ b/clients/client-apprunner/src/commands/ListObservabilityConfigurationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObservabilityConfigurationsRequest, ListObservabilityConfigurationsResponse } from "../models/models_0"; +import type { + ListObservabilityConfigurationsRequest, + ListObservabilityConfigurationsResponse, +} from "../models/models_0"; import { ListObservabilityConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/ListOperationsCommand.ts b/clients/client-apprunner/src/commands/ListOperationsCommand.ts index 14b7977564b2a..5515f5947c573 100644 --- a/clients/client-apprunner/src/commands/ListOperationsCommand.ts +++ b/clients/client-apprunner/src/commands/ListOperationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOperationsRequest, ListOperationsResponse } from "../models/models_0"; +import type { ListOperationsRequest, ListOperationsResponse } from "../models/models_0"; import { ListOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/ListServicesCommand.ts b/clients/client-apprunner/src/commands/ListServicesCommand.ts index 7e45cb8491716..a5a751bcba40d 100644 --- a/clients/client-apprunner/src/commands/ListServicesCommand.ts +++ b/clients/client-apprunner/src/commands/ListServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicesRequest, ListServicesResponse } from "../models/models_0"; +import type { ListServicesRequest, ListServicesResponse } from "../models/models_0"; import { ListServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/ListServicesForAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/ListServicesForAutoScalingConfigurationCommand.ts index 5a9c8e687aa6a..e2a402f5d141b 100644 --- a/clients/client-apprunner/src/commands/ListServicesForAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/ListServicesForAutoScalingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServicesForAutoScalingConfigurationRequest, ListServicesForAutoScalingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-apprunner/src/commands/ListTagsForResourceCommand.ts b/clients/client-apprunner/src/commands/ListTagsForResourceCommand.ts index d4ce5e08df9db..4630abc5a653d 100644 --- a/clients/client-apprunner/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-apprunner/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/ListVpcConnectorsCommand.ts b/clients/client-apprunner/src/commands/ListVpcConnectorsCommand.ts index 3a3f6f3f02094..1c2c1d1607c0f 100644 --- a/clients/client-apprunner/src/commands/ListVpcConnectorsCommand.ts +++ b/clients/client-apprunner/src/commands/ListVpcConnectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcConnectorsRequest, ListVpcConnectorsResponse } from "../models/models_0"; +import type { ListVpcConnectorsRequest, ListVpcConnectorsResponse } from "../models/models_0"; import { ListVpcConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/ListVpcIngressConnectionsCommand.ts b/clients/client-apprunner/src/commands/ListVpcIngressConnectionsCommand.ts index 2142838b32ad6..a151057e60f4f 100644 --- a/clients/client-apprunner/src/commands/ListVpcIngressConnectionsCommand.ts +++ b/clients/client-apprunner/src/commands/ListVpcIngressConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcIngressConnectionsRequest, ListVpcIngressConnectionsResponse } from "../models/models_0"; +import type { ListVpcIngressConnectionsRequest, ListVpcIngressConnectionsResponse } from "../models/models_0"; import { ListVpcIngressConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/PauseServiceCommand.ts b/clients/client-apprunner/src/commands/PauseServiceCommand.ts index f9b4885ddc9ed..1d5086c666f3e 100644 --- a/clients/client-apprunner/src/commands/PauseServiceCommand.ts +++ b/clients/client-apprunner/src/commands/PauseServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PauseServiceRequest, PauseServiceResponse } from "../models/models_0"; +import type { PauseServiceRequest, PauseServiceResponse } from "../models/models_0"; import { PauseService } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/ResumeServiceCommand.ts b/clients/client-apprunner/src/commands/ResumeServiceCommand.ts index c4a21a401f1a1..584814d8f3190 100644 --- a/clients/client-apprunner/src/commands/ResumeServiceCommand.ts +++ b/clients/client-apprunner/src/commands/ResumeServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResumeServiceRequest, ResumeServiceResponse } from "../models/models_0"; +import type { ResumeServiceRequest, ResumeServiceResponse } from "../models/models_0"; import { ResumeService } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/StartDeploymentCommand.ts b/clients/client-apprunner/src/commands/StartDeploymentCommand.ts index 3e31e59af8b52..5c190d1455cf0 100644 --- a/clients/client-apprunner/src/commands/StartDeploymentCommand.ts +++ b/clients/client-apprunner/src/commands/StartDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDeploymentRequest, StartDeploymentResponse } from "../models/models_0"; +import type { StartDeploymentRequest, StartDeploymentResponse } from "../models/models_0"; import { StartDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/TagResourceCommand.ts b/clients/client-apprunner/src/commands/TagResourceCommand.ts index 03d679c7babeb..c5a23d203cdf4 100644 --- a/clients/client-apprunner/src/commands/TagResourceCommand.ts +++ b/clients/client-apprunner/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/UntagResourceCommand.ts b/clients/client-apprunner/src/commands/UntagResourceCommand.ts index 043ef4eac158e..d82d8ec28f487 100644 --- a/clients/client-apprunner/src/commands/UntagResourceCommand.ts +++ b/clients/client-apprunner/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/UpdateDefaultAutoScalingConfigurationCommand.ts b/clients/client-apprunner/src/commands/UpdateDefaultAutoScalingConfigurationCommand.ts index 70f4ff14aeb30..a8d0cb159c144 100644 --- a/clients/client-apprunner/src/commands/UpdateDefaultAutoScalingConfigurationCommand.ts +++ b/clients/client-apprunner/src/commands/UpdateDefaultAutoScalingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateDefaultAutoScalingConfigurationRequest, UpdateDefaultAutoScalingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-apprunner/src/commands/UpdateServiceCommand.ts b/clients/client-apprunner/src/commands/UpdateServiceCommand.ts index 932e457b277d8..d749332f879db 100644 --- a/clients/client-apprunner/src/commands/UpdateServiceCommand.ts +++ b/clients/client-apprunner/src/commands/UpdateServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0"; +import type { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0"; import { UpdateService } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/commands/UpdateVpcIngressConnectionCommand.ts b/clients/client-apprunner/src/commands/UpdateVpcIngressConnectionCommand.ts index 002a377432679..5022b7f7b9fd2 100644 --- a/clients/client-apprunner/src/commands/UpdateVpcIngressConnectionCommand.ts +++ b/clients/client-apprunner/src/commands/UpdateVpcIngressConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; +import type { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVpcIngressConnectionRequest, UpdateVpcIngressConnectionResponse } from "../models/models_0"; +import type { UpdateVpcIngressConnectionRequest, UpdateVpcIngressConnectionResponse } from "../models/models_0"; import { UpdateVpcIngressConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-apprunner/src/endpoint/EndpointParameters.ts b/clients/client-apprunner/src/endpoint/EndpointParameters.ts index 4ba368d3087c9..b0880937f25b7 100644 --- a/clients/client-apprunner/src/endpoint/EndpointParameters.ts +++ b/clients/client-apprunner/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-apprunner/src/endpoint/endpointResolver.ts b/clients/client-apprunner/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-apprunner/src/endpoint/endpointResolver.ts +++ b/clients/client-apprunner/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-apprunner/src/extensionConfiguration.ts b/clients/client-apprunner/src/extensionConfiguration.ts index 1373a3216b836..921f7a5663991 100644 --- a/clients/client-apprunner/src/extensionConfiguration.ts +++ b/clients/client-apprunner/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-apprunner/src/models/AppRunnerServiceException.ts b/clients/client-apprunner/src/models/AppRunnerServiceException.ts index 05b568f4ca9e4..ff0d4c8996014 100644 --- a/clients/client-apprunner/src/models/AppRunnerServiceException.ts +++ b/clients/client-apprunner/src/models/AppRunnerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-apprunner/src/models/errors.ts b/clients/client-apprunner/src/models/errors.ts index a33abfb4654d2..9f9e563364a02 100644 --- a/clients/client-apprunner/src/models/errors.ts +++ b/clients/client-apprunner/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException"; diff --git a/clients/client-apprunner/src/pagination/DescribeCustomDomainsPaginator.ts b/clients/client-apprunner/src/pagination/DescribeCustomDomainsPaginator.ts index b59231e09232d..60c722d8e2556 100644 --- a/clients/client-apprunner/src/pagination/DescribeCustomDomainsPaginator.ts +++ b/clients/client-apprunner/src/pagination/DescribeCustomDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; import { diff --git a/clients/client-apprunner/src/pagination/Interfaces.ts b/clients/client-apprunner/src/pagination/Interfaces.ts index 3ba3020dd001e..eddc06cfca5be 100644 --- a/clients/client-apprunner/src/pagination/Interfaces.ts +++ b/clients/client-apprunner/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; diff --git a/clients/client-apprunner/src/pagination/ListAutoScalingConfigurationsPaginator.ts b/clients/client-apprunner/src/pagination/ListAutoScalingConfigurationsPaginator.ts index b96932dc2e71e..b66402f9a7d7f 100644 --- a/clients/client-apprunner/src/pagination/ListAutoScalingConfigurationsPaginator.ts +++ b/clients/client-apprunner/src/pagination/ListAutoScalingConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; import { diff --git a/clients/client-apprunner/src/pagination/ListConnectionsPaginator.ts b/clients/client-apprunner/src/pagination/ListConnectionsPaginator.ts index 3832214f7fbab..52611d8b30cfe 100644 --- a/clients/client-apprunner/src/pagination/ListConnectionsPaginator.ts +++ b/clients/client-apprunner/src/pagination/ListConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; import { diff --git a/clients/client-apprunner/src/pagination/ListObservabilityConfigurationsPaginator.ts b/clients/client-apprunner/src/pagination/ListObservabilityConfigurationsPaginator.ts index ef2cbe3f17c94..dcfb6803a2b33 100644 --- a/clients/client-apprunner/src/pagination/ListObservabilityConfigurationsPaginator.ts +++ b/clients/client-apprunner/src/pagination/ListObservabilityConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; import { diff --git a/clients/client-apprunner/src/pagination/ListOperationsPaginator.ts b/clients/client-apprunner/src/pagination/ListOperationsPaginator.ts index 02c0511ace57d..c9d710ad881bb 100644 --- a/clients/client-apprunner/src/pagination/ListOperationsPaginator.ts +++ b/clients/client-apprunner/src/pagination/ListOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; import { diff --git a/clients/client-apprunner/src/pagination/ListServicesForAutoScalingConfigurationPaginator.ts b/clients/client-apprunner/src/pagination/ListServicesForAutoScalingConfigurationPaginator.ts index 49e740fb0112a..ac418dc838583 100644 --- a/clients/client-apprunner/src/pagination/ListServicesForAutoScalingConfigurationPaginator.ts +++ b/clients/client-apprunner/src/pagination/ListServicesForAutoScalingConfigurationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; import { diff --git a/clients/client-apprunner/src/pagination/ListServicesPaginator.ts b/clients/client-apprunner/src/pagination/ListServicesPaginator.ts index a2c7ccc01722a..ce6cfad1fb07e 100644 --- a/clients/client-apprunner/src/pagination/ListServicesPaginator.ts +++ b/clients/client-apprunner/src/pagination/ListServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; import { diff --git a/clients/client-apprunner/src/pagination/ListVpcConnectorsPaginator.ts b/clients/client-apprunner/src/pagination/ListVpcConnectorsPaginator.ts index 9ac91e7d5b7f3..8c54170483717 100644 --- a/clients/client-apprunner/src/pagination/ListVpcConnectorsPaginator.ts +++ b/clients/client-apprunner/src/pagination/ListVpcConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; import { diff --git a/clients/client-apprunner/src/pagination/ListVpcIngressConnectionsPaginator.ts b/clients/client-apprunner/src/pagination/ListVpcIngressConnectionsPaginator.ts index fbbe3f3bc0789..987e06d873da9 100644 --- a/clients/client-apprunner/src/pagination/ListVpcIngressConnectionsPaginator.ts +++ b/clients/client-apprunner/src/pagination/ListVpcIngressConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppRunnerClient } from "../AppRunnerClient"; import { diff --git a/clients/client-apprunner/src/runtimeConfig.browser.ts b/clients/client-apprunner/src/runtimeConfig.browser.ts index 7394d8232116e..440b61a1e17eb 100644 --- a/clients/client-apprunner/src/runtimeConfig.browser.ts +++ b/clients/client-apprunner/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppRunnerClientConfig } from "./AppRunnerClient"; + +import type { AppRunnerClientConfig } from "./AppRunnerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-apprunner/src/runtimeConfig.native.ts b/clients/client-apprunner/src/runtimeConfig.native.ts index c9dd995cf2f55..75509701896e9 100644 --- a/clients/client-apprunner/src/runtimeConfig.native.ts +++ b/clients/client-apprunner/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AppRunnerClientConfig } from "./AppRunnerClient"; +import type { AppRunnerClientConfig } from "./AppRunnerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-apprunner/src/runtimeConfig.shared.ts b/clients/client-apprunner/src/runtimeConfig.shared.ts index 24859fd267563..c65c73f077bc6 100644 --- a/clients/client-apprunner/src/runtimeConfig.shared.ts +++ b/clients/client-apprunner/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AppRunnerClientConfig } from "./AppRunnerClient"; +import type { AppRunnerClientConfig } from "./AppRunnerClient"; import { defaultAppRunnerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-apprunner/src/runtimeConfig.ts b/clients/client-apprunner/src/runtimeConfig.ts index 6e5e149865ba5..5db98a9cee797 100644 --- a/clients/client-apprunner/src/runtimeConfig.ts +++ b/clients/client-apprunner/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppRunnerClientConfig } from "./AppRunnerClient"; + +import type { AppRunnerClientConfig } from "./AppRunnerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-apprunner/src/runtimeExtensions.ts b/clients/client-apprunner/src/runtimeExtensions.ts index 9768cfbda73f0..725f56cf42b42 100644 --- a/clients/client-apprunner/src/runtimeExtensions.ts +++ b/clients/client-apprunner/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AppRunnerExtensionConfiguration } from "./extensionConfiguration"; +import type { AppRunnerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-apprunner/src/schemas/schemas_0.ts b/clients/client-apprunner/src/schemas/schemas_0.ts index a3565956cf8ed..d45e759c16a4a 100644 --- a/clients/client-apprunner/src/schemas/schemas_0.ts +++ b/clients/client-apprunner/src/schemas/schemas_0.ts @@ -259,7 +259,7 @@ const n0 = "com.amazonaws.apprunner"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-appstream/package.json b/clients/client-appstream/package.json index 30dd4242ee0a0..072f435270f0d 100644 --- a/clients/client-appstream/package.json +++ b/clients/client-appstream/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-appstream/src/AppStream.ts b/clients/client-appstream/src/AppStream.ts index 4649b88554b19..49b78e32a29c2 100644 --- a/clients/client-appstream/src/AppStream.ts +++ b/clients/client-appstream/src/AppStream.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AppStreamClient, AppStreamClientConfig } from "./AppStreamClient"; +import { AppStreamClient } from "./AppStreamClient"; import { AssociateAppBlockBuilderAppBlockCommand, AssociateAppBlockBuilderAppBlockCommandInput, diff --git a/clients/client-appstream/src/AppStreamClient.ts b/clients/client-appstream/src/AppStreamClient.ts index 2c88faa7a400d..f88c199e92e35 100644 --- a/clients/client-appstream/src/AppStreamClient.ts +++ b/clients/client-appstream/src/AppStreamClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAppStreamHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -296,7 +305,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-appstream/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-appstream/src/auth/httpAuthExtensionConfiguration.ts index 6d54976a36b37..05ce6d54d4800 100644 --- a/clients/client-appstream/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-appstream/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AppStreamHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AppStreamHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-appstream/src/auth/httpAuthSchemeProvider.ts b/clients/client-appstream/src/auth/httpAuthSchemeProvider.ts index 7929e771a2041..54515c4d5b2d2 100644 --- a/clients/client-appstream/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-appstream/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AppStreamClientConfig, AppStreamClientResolvedConfig } from "../AppStreamClient"; +import { type AppStreamClientResolvedConfig, AppStreamClientConfig } from "../AppStreamClient"; /** * @internal diff --git a/clients/client-appstream/src/commands/AssociateAppBlockBuilderAppBlockCommand.ts b/clients/client-appstream/src/commands/AssociateAppBlockBuilderAppBlockCommand.ts index d8f463c65608d..5ca5c589be591 100644 --- a/clients/client-appstream/src/commands/AssociateAppBlockBuilderAppBlockCommand.ts +++ b/clients/client-appstream/src/commands/AssociateAppBlockBuilderAppBlockCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAppBlockBuilderAppBlockRequest, AssociateAppBlockBuilderAppBlockResult } from "../models/models_0"; +import type { + AssociateAppBlockBuilderAppBlockRequest, + AssociateAppBlockBuilderAppBlockResult, +} from "../models/models_0"; import { AssociateAppBlockBuilderAppBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/AssociateApplicationFleetCommand.ts b/clients/client-appstream/src/commands/AssociateApplicationFleetCommand.ts index 68a4f25b6e488..73e1200363c9a 100644 --- a/clients/client-appstream/src/commands/AssociateApplicationFleetCommand.ts +++ b/clients/client-appstream/src/commands/AssociateApplicationFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateApplicationFleetRequest, AssociateApplicationFleetResult } from "../models/models_0"; +import type { AssociateApplicationFleetRequest, AssociateApplicationFleetResult } from "../models/models_0"; import { AssociateApplicationFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/AssociateApplicationToEntitlementCommand.ts b/clients/client-appstream/src/commands/AssociateApplicationToEntitlementCommand.ts index 5bf9cc74616ed..736f30c86e60e 100644 --- a/clients/client-appstream/src/commands/AssociateApplicationToEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/AssociateApplicationToEntitlementCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateApplicationToEntitlementRequest, AssociateApplicationToEntitlementResult } from "../models/models_0"; +import type { + AssociateApplicationToEntitlementRequest, + AssociateApplicationToEntitlementResult, +} from "../models/models_0"; import { AssociateApplicationToEntitlement } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/AssociateFleetCommand.ts b/clients/client-appstream/src/commands/AssociateFleetCommand.ts index c249ebb2f997a..7fc3b3b9c85d5 100644 --- a/clients/client-appstream/src/commands/AssociateFleetCommand.ts +++ b/clients/client-appstream/src/commands/AssociateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateFleetRequest, AssociateFleetResult } from "../models/models_0"; +import type { AssociateFleetRequest, AssociateFleetResult } from "../models/models_0"; import { AssociateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/AssociateSoftwareToImageBuilderCommand.ts b/clients/client-appstream/src/commands/AssociateSoftwareToImageBuilderCommand.ts index a00d12bcb117a..7dbd7e431ea36 100644 --- a/clients/client-appstream/src/commands/AssociateSoftwareToImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/AssociateSoftwareToImageBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSoftwareToImageBuilderRequest, AssociateSoftwareToImageBuilderResult } from "../models/models_0"; +import type { AssociateSoftwareToImageBuilderRequest, AssociateSoftwareToImageBuilderResult } from "../models/models_0"; import { AssociateSoftwareToImageBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/BatchAssociateUserStackCommand.ts b/clients/client-appstream/src/commands/BatchAssociateUserStackCommand.ts index f4f7398eaac0a..e06dd1a686ad4 100644 --- a/clients/client-appstream/src/commands/BatchAssociateUserStackCommand.ts +++ b/clients/client-appstream/src/commands/BatchAssociateUserStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchAssociateUserStackRequest, BatchAssociateUserStackResult } from "../models/models_0"; +import type { BatchAssociateUserStackRequest, BatchAssociateUserStackResult } from "../models/models_0"; import { BatchAssociateUserStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/BatchDisassociateUserStackCommand.ts b/clients/client-appstream/src/commands/BatchDisassociateUserStackCommand.ts index 2580683d17433..f9ab1a37d47dd 100644 --- a/clients/client-appstream/src/commands/BatchDisassociateUserStackCommand.ts +++ b/clients/client-appstream/src/commands/BatchDisassociateUserStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDisassociateUserStackRequest, BatchDisassociateUserStackResult } from "../models/models_0"; +import type { BatchDisassociateUserStackRequest, BatchDisassociateUserStackResult } from "../models/models_0"; import { BatchDisassociateUserStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CopyImageCommand.ts b/clients/client-appstream/src/commands/CopyImageCommand.ts index 595adeea3abd6..fb446181043d3 100644 --- a/clients/client-appstream/src/commands/CopyImageCommand.ts +++ b/clients/client-appstream/src/commands/CopyImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyImageRequest, CopyImageResponse } from "../models/models_0"; +import type { CopyImageRequest, CopyImageResponse } from "../models/models_0"; import { CopyImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/CreateAppBlockBuilderCommand.ts index 5df5d71633738..e9e378f79d3cd 100644 --- a/clients/client-appstream/src/commands/CreateAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/CreateAppBlockBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppBlockBuilderRequest, CreateAppBlockBuilderResult } from "../models/models_0"; +import type { CreateAppBlockBuilderRequest, CreateAppBlockBuilderResult } from "../models/models_0"; import { CreateAppBlockBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateAppBlockBuilderStreamingURLCommand.ts b/clients/client-appstream/src/commands/CreateAppBlockBuilderStreamingURLCommand.ts index d7695423316b7..fc172a1d5e045 100644 --- a/clients/client-appstream/src/commands/CreateAppBlockBuilderStreamingURLCommand.ts +++ b/clients/client-appstream/src/commands/CreateAppBlockBuilderStreamingURLCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppBlockBuilderStreamingURLRequest, CreateAppBlockBuilderStreamingURLResult } from "../models/models_0"; +import type { + CreateAppBlockBuilderStreamingURLRequest, + CreateAppBlockBuilderStreamingURLResult, +} from "../models/models_0"; import { CreateAppBlockBuilderStreamingURL } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateAppBlockCommand.ts b/clients/client-appstream/src/commands/CreateAppBlockCommand.ts index 60fb7de70d87f..ed6ef09e6cb40 100644 --- a/clients/client-appstream/src/commands/CreateAppBlockCommand.ts +++ b/clients/client-appstream/src/commands/CreateAppBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppBlockRequest, CreateAppBlockResult } from "../models/models_0"; +import type { CreateAppBlockRequest, CreateAppBlockResult } from "../models/models_0"; import { CreateAppBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateApplicationCommand.ts b/clients/client-appstream/src/commands/CreateApplicationCommand.ts index a5195cdd39fbb..99ad68154ce93 100644 --- a/clients/client-appstream/src/commands/CreateApplicationCommand.ts +++ b/clients/client-appstream/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResult } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResult } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateDirectoryConfigCommand.ts b/clients/client-appstream/src/commands/CreateDirectoryConfigCommand.ts index 1cb1718510f07..a4a45ef0e2f65 100644 --- a/clients/client-appstream/src/commands/CreateDirectoryConfigCommand.ts +++ b/clients/client-appstream/src/commands/CreateDirectoryConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDirectoryConfigRequest, CreateDirectoryConfigResult } from "../models/models_0"; +import type { CreateDirectoryConfigRequest, CreateDirectoryConfigResult } from "../models/models_0"; import { CreateDirectoryConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateEntitlementCommand.ts b/clients/client-appstream/src/commands/CreateEntitlementCommand.ts index 6fc32dc2de0bc..e157c9671d7b9 100644 --- a/clients/client-appstream/src/commands/CreateEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/CreateEntitlementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEntitlementRequest, CreateEntitlementResult } from "../models/models_0"; +import type { CreateEntitlementRequest, CreateEntitlementResult } from "../models/models_0"; import { CreateEntitlement } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateExportImageTaskCommand.ts b/clients/client-appstream/src/commands/CreateExportImageTaskCommand.ts index 1231370d9518a..efbda11e2fd4d 100644 --- a/clients/client-appstream/src/commands/CreateExportImageTaskCommand.ts +++ b/clients/client-appstream/src/commands/CreateExportImageTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExportImageTaskRequest, CreateExportImageTaskResult } from "../models/models_0"; +import type { CreateExportImageTaskRequest, CreateExportImageTaskResult } from "../models/models_0"; import { CreateExportImageTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateFleetCommand.ts b/clients/client-appstream/src/commands/CreateFleetCommand.ts index 3fabc8afb62db..af41fa5f5c57d 100644 --- a/clients/client-appstream/src/commands/CreateFleetCommand.ts +++ b/clients/client-appstream/src/commands/CreateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFleetRequest, CreateFleetResult } from "../models/models_0"; +import type { CreateFleetRequest, CreateFleetResult } from "../models/models_0"; import { CreateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateImageBuilderCommand.ts b/clients/client-appstream/src/commands/CreateImageBuilderCommand.ts index 6abd8448899e2..1f119e2e4917d 100644 --- a/clients/client-appstream/src/commands/CreateImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/CreateImageBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImageBuilderRequest, CreateImageBuilderResult } from "../models/models_0"; +import type { CreateImageBuilderRequest, CreateImageBuilderResult } from "../models/models_0"; import { CreateImageBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateImageBuilderStreamingURLCommand.ts b/clients/client-appstream/src/commands/CreateImageBuilderStreamingURLCommand.ts index c318624674214..feeda6a580073 100644 --- a/clients/client-appstream/src/commands/CreateImageBuilderStreamingURLCommand.ts +++ b/clients/client-appstream/src/commands/CreateImageBuilderStreamingURLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImageBuilderStreamingURLRequest, CreateImageBuilderStreamingURLResult } from "../models/models_0"; +import type { CreateImageBuilderStreamingURLRequest, CreateImageBuilderStreamingURLResult } from "../models/models_0"; import { CreateImageBuilderStreamingURL } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateImportedImageCommand.ts b/clients/client-appstream/src/commands/CreateImportedImageCommand.ts index dc8ff5dc53f8c..67f8b47d5aa84 100644 --- a/clients/client-appstream/src/commands/CreateImportedImageCommand.ts +++ b/clients/client-appstream/src/commands/CreateImportedImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImportedImageRequest, CreateImportedImageResult } from "../models/models_0"; +import type { CreateImportedImageRequest, CreateImportedImageResult } from "../models/models_0"; import { CreateImportedImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateStackCommand.ts b/clients/client-appstream/src/commands/CreateStackCommand.ts index 3c75d88fc8159..d3e9f14738ff0 100644 --- a/clients/client-appstream/src/commands/CreateStackCommand.ts +++ b/clients/client-appstream/src/commands/CreateStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStackRequest, CreateStackResult } from "../models/models_0"; +import type { CreateStackRequest, CreateStackResult } from "../models/models_0"; import { CreateStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateStreamingURLCommand.ts b/clients/client-appstream/src/commands/CreateStreamingURLCommand.ts index e35c1d69d733b..358d0d44bebb2 100644 --- a/clients/client-appstream/src/commands/CreateStreamingURLCommand.ts +++ b/clients/client-appstream/src/commands/CreateStreamingURLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStreamingURLRequest, CreateStreamingURLResult } from "../models/models_0"; +import type { CreateStreamingURLRequest, CreateStreamingURLResult } from "../models/models_0"; import { CreateStreamingURL } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateThemeForStackCommand.ts b/clients/client-appstream/src/commands/CreateThemeForStackCommand.ts index 49ef4ef334d33..d1e8f6f556933 100644 --- a/clients/client-appstream/src/commands/CreateThemeForStackCommand.ts +++ b/clients/client-appstream/src/commands/CreateThemeForStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateThemeForStackRequest, CreateThemeForStackResult } from "../models/models_0"; +import type { CreateThemeForStackRequest, CreateThemeForStackResult } from "../models/models_0"; import { CreateThemeForStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateUpdatedImageCommand.ts b/clients/client-appstream/src/commands/CreateUpdatedImageCommand.ts index cfd79a6b9facf..a30f307e87aad 100644 --- a/clients/client-appstream/src/commands/CreateUpdatedImageCommand.ts +++ b/clients/client-appstream/src/commands/CreateUpdatedImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUpdatedImageRequest, CreateUpdatedImageResult } from "../models/models_0"; +import type { CreateUpdatedImageRequest, CreateUpdatedImageResult } from "../models/models_0"; import { CreateUpdatedImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateUsageReportSubscriptionCommand.ts b/clients/client-appstream/src/commands/CreateUsageReportSubscriptionCommand.ts index af8e53a613de5..ab2849482227e 100644 --- a/clients/client-appstream/src/commands/CreateUsageReportSubscriptionCommand.ts +++ b/clients/client-appstream/src/commands/CreateUsageReportSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUsageReportSubscriptionRequest, CreateUsageReportSubscriptionResult } from "../models/models_0"; +import type { CreateUsageReportSubscriptionRequest, CreateUsageReportSubscriptionResult } from "../models/models_0"; import { CreateUsageReportSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/CreateUserCommand.ts b/clients/client-appstream/src/commands/CreateUserCommand.ts index 4c14b58c6bf58..85559ba2886cf 100644 --- a/clients/client-appstream/src/commands/CreateUserCommand.ts +++ b/clients/client-appstream/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResult } from "../models/models_0"; +import type { CreateUserRequest, CreateUserResult } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/DeleteAppBlockBuilderCommand.ts index 9582b480a8bf7..a0c1738e5988f 100644 --- a/clients/client-appstream/src/commands/DeleteAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/DeleteAppBlockBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppBlockBuilderRequest, DeleteAppBlockBuilderResult } from "../models/models_0"; +import type { DeleteAppBlockBuilderRequest, DeleteAppBlockBuilderResult } from "../models/models_0"; import { DeleteAppBlockBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteAppBlockCommand.ts b/clients/client-appstream/src/commands/DeleteAppBlockCommand.ts index cb85c21a3101c..8ef507d1390fa 100644 --- a/clients/client-appstream/src/commands/DeleteAppBlockCommand.ts +++ b/clients/client-appstream/src/commands/DeleteAppBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppBlockRequest, DeleteAppBlockResult } from "../models/models_0"; +import type { DeleteAppBlockRequest, DeleteAppBlockResult } from "../models/models_0"; import { DeleteAppBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteApplicationCommand.ts b/clients/client-appstream/src/commands/DeleteApplicationCommand.ts index 76bfce00965f3..92d948b3b3e67 100644 --- a/clients/client-appstream/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-appstream/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest, DeleteApplicationResult } from "../models/models_0"; +import type { DeleteApplicationRequest, DeleteApplicationResult } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteDirectoryConfigCommand.ts b/clients/client-appstream/src/commands/DeleteDirectoryConfigCommand.ts index 783181c0e6643..09c9a51f52712 100644 --- a/clients/client-appstream/src/commands/DeleteDirectoryConfigCommand.ts +++ b/clients/client-appstream/src/commands/DeleteDirectoryConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDirectoryConfigRequest, DeleteDirectoryConfigResult } from "../models/models_0"; +import type { DeleteDirectoryConfigRequest, DeleteDirectoryConfigResult } from "../models/models_0"; import { DeleteDirectoryConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteEntitlementCommand.ts b/clients/client-appstream/src/commands/DeleteEntitlementCommand.ts index abb72033114cf..c524e7b043065 100644 --- a/clients/client-appstream/src/commands/DeleteEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/DeleteEntitlementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEntitlementRequest, DeleteEntitlementResult } from "../models/models_0"; +import type { DeleteEntitlementRequest, DeleteEntitlementResult } from "../models/models_0"; import { DeleteEntitlement } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteFleetCommand.ts b/clients/client-appstream/src/commands/DeleteFleetCommand.ts index 4b584aff0ddea..745b9832cbf3b 100644 --- a/clients/client-appstream/src/commands/DeleteFleetCommand.ts +++ b/clients/client-appstream/src/commands/DeleteFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFleetRequest, DeleteFleetResult } from "../models/models_0"; +import type { DeleteFleetRequest, DeleteFleetResult } from "../models/models_0"; import { DeleteFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteImageBuilderCommand.ts b/clients/client-appstream/src/commands/DeleteImageBuilderCommand.ts index ffb7b74416d21..902a86418b05c 100644 --- a/clients/client-appstream/src/commands/DeleteImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/DeleteImageBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImageBuilderRequest, DeleteImageBuilderResult } from "../models/models_0"; +import type { DeleteImageBuilderRequest, DeleteImageBuilderResult } from "../models/models_0"; import { DeleteImageBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteImageCommand.ts b/clients/client-appstream/src/commands/DeleteImageCommand.ts index 33057cd68f662..6273bd33ee893 100644 --- a/clients/client-appstream/src/commands/DeleteImageCommand.ts +++ b/clients/client-appstream/src/commands/DeleteImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImageRequest, DeleteImageResult } from "../models/models_0"; +import type { DeleteImageRequest, DeleteImageResult } from "../models/models_0"; import { DeleteImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteImagePermissionsCommand.ts b/clients/client-appstream/src/commands/DeleteImagePermissionsCommand.ts index 571cedb3bc23a..4a4525ae70204 100644 --- a/clients/client-appstream/src/commands/DeleteImagePermissionsCommand.ts +++ b/clients/client-appstream/src/commands/DeleteImagePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImagePermissionsRequest, DeleteImagePermissionsResult } from "../models/models_0"; +import type { DeleteImagePermissionsRequest, DeleteImagePermissionsResult } from "../models/models_0"; import { DeleteImagePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteStackCommand.ts b/clients/client-appstream/src/commands/DeleteStackCommand.ts index bb3b038880a83..2e88d1f3b1979 100644 --- a/clients/client-appstream/src/commands/DeleteStackCommand.ts +++ b/clients/client-appstream/src/commands/DeleteStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStackRequest, DeleteStackResult } from "../models/models_0"; +import type { DeleteStackRequest, DeleteStackResult } from "../models/models_0"; import { DeleteStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteThemeForStackCommand.ts b/clients/client-appstream/src/commands/DeleteThemeForStackCommand.ts index dfa008f225acc..0b62b6b6df34a 100644 --- a/clients/client-appstream/src/commands/DeleteThemeForStackCommand.ts +++ b/clients/client-appstream/src/commands/DeleteThemeForStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteThemeForStackRequest, DeleteThemeForStackResult } from "../models/models_0"; +import type { DeleteThemeForStackRequest, DeleteThemeForStackResult } from "../models/models_0"; import { DeleteThemeForStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteUsageReportSubscriptionCommand.ts b/clients/client-appstream/src/commands/DeleteUsageReportSubscriptionCommand.ts index 6f296ac09d651..27bdb04494882 100644 --- a/clients/client-appstream/src/commands/DeleteUsageReportSubscriptionCommand.ts +++ b/clients/client-appstream/src/commands/DeleteUsageReportSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUsageReportSubscriptionRequest, DeleteUsageReportSubscriptionResult } from "../models/models_0"; +import type { DeleteUsageReportSubscriptionRequest, DeleteUsageReportSubscriptionResult } from "../models/models_0"; import { DeleteUsageReportSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DeleteUserCommand.ts b/clients/client-appstream/src/commands/DeleteUserCommand.ts index 9e0981626e325..9b6bd417620d7 100644 --- a/clients/client-appstream/src/commands/DeleteUserCommand.ts +++ b/clients/client-appstream/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest, DeleteUserResult } from "../models/models_0"; +import type { DeleteUserRequest, DeleteUserResult } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeAppBlockBuilderAppBlockAssociationsCommand.ts b/clients/client-appstream/src/commands/DescribeAppBlockBuilderAppBlockAssociationsCommand.ts index b36dc45da39e9..9a949619d76a5 100644 --- a/clients/client-appstream/src/commands/DescribeAppBlockBuilderAppBlockAssociationsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeAppBlockBuilderAppBlockAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeAppBlockBuilderAppBlockAssociationsRequest, DescribeAppBlockBuilderAppBlockAssociationsResult, } from "../models/models_0"; diff --git a/clients/client-appstream/src/commands/DescribeAppBlockBuildersCommand.ts b/clients/client-appstream/src/commands/DescribeAppBlockBuildersCommand.ts index cefab20b5cdbe..309d0b299cecf 100644 --- a/clients/client-appstream/src/commands/DescribeAppBlockBuildersCommand.ts +++ b/clients/client-appstream/src/commands/DescribeAppBlockBuildersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppBlockBuildersRequest, DescribeAppBlockBuildersResult } from "../models/models_0"; +import type { DescribeAppBlockBuildersRequest, DescribeAppBlockBuildersResult } from "../models/models_0"; import { DescribeAppBlockBuilders } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeAppBlocksCommand.ts b/clients/client-appstream/src/commands/DescribeAppBlocksCommand.ts index 67f5d069855c2..d229a798cb7ba 100644 --- a/clients/client-appstream/src/commands/DescribeAppBlocksCommand.ts +++ b/clients/client-appstream/src/commands/DescribeAppBlocksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppBlocksRequest, DescribeAppBlocksResult } from "../models/models_0"; +import type { DescribeAppBlocksRequest, DescribeAppBlocksResult } from "../models/models_0"; import { DescribeAppBlocks } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeAppLicenseUsageCommand.ts b/clients/client-appstream/src/commands/DescribeAppLicenseUsageCommand.ts index 10145f46bfee7..35df3f9b81132 100644 --- a/clients/client-appstream/src/commands/DescribeAppLicenseUsageCommand.ts +++ b/clients/client-appstream/src/commands/DescribeAppLicenseUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppLicenseUsageRequest, DescribeAppLicenseUsageResult } from "../models/models_0"; +import type { DescribeAppLicenseUsageRequest, DescribeAppLicenseUsageResult } from "../models/models_0"; import { DescribeAppLicenseUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeApplicationFleetAssociationsCommand.ts b/clients/client-appstream/src/commands/DescribeApplicationFleetAssociationsCommand.ts index 9b4c4828f4ec6..e76bb6be7a998 100644 --- a/clients/client-appstream/src/commands/DescribeApplicationFleetAssociationsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeApplicationFleetAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeApplicationFleetAssociationsRequest, DescribeApplicationFleetAssociationsResult, } from "../models/models_0"; diff --git a/clients/client-appstream/src/commands/DescribeApplicationsCommand.ts b/clients/client-appstream/src/commands/DescribeApplicationsCommand.ts index 2632f7eb0c456..5d9c130665d3b 100644 --- a/clients/client-appstream/src/commands/DescribeApplicationsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeApplicationsRequest, DescribeApplicationsResult } from "../models/models_0"; +import type { DescribeApplicationsRequest, DescribeApplicationsResult } from "../models/models_0"; import { DescribeApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeDirectoryConfigsCommand.ts b/clients/client-appstream/src/commands/DescribeDirectoryConfigsCommand.ts index 924ccb8d7d382..9bc5b54203abd 100644 --- a/clients/client-appstream/src/commands/DescribeDirectoryConfigsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeDirectoryConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDirectoryConfigsRequest, DescribeDirectoryConfigsResult } from "../models/models_0"; +import type { DescribeDirectoryConfigsRequest, DescribeDirectoryConfigsResult } from "../models/models_0"; import { DescribeDirectoryConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeEntitlementsCommand.ts b/clients/client-appstream/src/commands/DescribeEntitlementsCommand.ts index 48a1908eb81b6..39e7b1a7f71ac 100644 --- a/clients/client-appstream/src/commands/DescribeEntitlementsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeEntitlementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEntitlementsRequest, DescribeEntitlementsResult } from "../models/models_0"; +import type { DescribeEntitlementsRequest, DescribeEntitlementsResult } from "../models/models_0"; import { DescribeEntitlements } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeFleetsCommand.ts b/clients/client-appstream/src/commands/DescribeFleetsCommand.ts index d395b20c1fa35..eba3465570a0f 100644 --- a/clients/client-appstream/src/commands/DescribeFleetsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFleetsRequest, DescribeFleetsResult } from "../models/models_0"; +import type { DescribeFleetsRequest, DescribeFleetsResult } from "../models/models_0"; import { DescribeFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeImageBuildersCommand.ts b/clients/client-appstream/src/commands/DescribeImageBuildersCommand.ts index 0aa98d4c85825..fcf399fa6b56f 100644 --- a/clients/client-appstream/src/commands/DescribeImageBuildersCommand.ts +++ b/clients/client-appstream/src/commands/DescribeImageBuildersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageBuildersRequest, DescribeImageBuildersResult } from "../models/models_0"; +import type { DescribeImageBuildersRequest, DescribeImageBuildersResult } from "../models/models_0"; import { DescribeImageBuilders } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeImagePermissionsCommand.ts b/clients/client-appstream/src/commands/DescribeImagePermissionsCommand.ts index cbd4fbcc25f49..254bee527d0c4 100644 --- a/clients/client-appstream/src/commands/DescribeImagePermissionsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeImagePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImagePermissionsRequest, DescribeImagePermissionsResult } from "../models/models_0"; +import type { DescribeImagePermissionsRequest, DescribeImagePermissionsResult } from "../models/models_0"; import { DescribeImagePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeImagesCommand.ts b/clients/client-appstream/src/commands/DescribeImagesCommand.ts index eaa9abbfb8b5d..63feecb7c3d71 100644 --- a/clients/client-appstream/src/commands/DescribeImagesCommand.ts +++ b/clients/client-appstream/src/commands/DescribeImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImagesRequest, DescribeImagesResult } from "../models/models_0"; +import type { DescribeImagesRequest, DescribeImagesResult } from "../models/models_0"; import { DescribeImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeSessionsCommand.ts b/clients/client-appstream/src/commands/DescribeSessionsCommand.ts index cf154a9af862d..5397af1dfece8 100644 --- a/clients/client-appstream/src/commands/DescribeSessionsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSessionsRequest, DescribeSessionsResult } from "../models/models_0"; +import type { DescribeSessionsRequest, DescribeSessionsResult } from "../models/models_0"; import { DescribeSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeSoftwareAssociationsCommand.ts b/clients/client-appstream/src/commands/DescribeSoftwareAssociationsCommand.ts index dde6100facac0..1a9fe67fe49f3 100644 --- a/clients/client-appstream/src/commands/DescribeSoftwareAssociationsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeSoftwareAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSoftwareAssociationsRequest, DescribeSoftwareAssociationsResult } from "../models/models_0"; +import type { DescribeSoftwareAssociationsRequest, DescribeSoftwareAssociationsResult } from "../models/models_0"; import { DescribeSoftwareAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeStacksCommand.ts b/clients/client-appstream/src/commands/DescribeStacksCommand.ts index c2929bdcb2bd5..16b1f85782e5b 100644 --- a/clients/client-appstream/src/commands/DescribeStacksCommand.ts +++ b/clients/client-appstream/src/commands/DescribeStacksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStacksRequest, DescribeStacksResult } from "../models/models_0"; +import type { DescribeStacksRequest, DescribeStacksResult } from "../models/models_0"; import { DescribeStacks } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeThemeForStackCommand.ts b/clients/client-appstream/src/commands/DescribeThemeForStackCommand.ts index 5210161507cd2..5b7a0d4572a34 100644 --- a/clients/client-appstream/src/commands/DescribeThemeForStackCommand.ts +++ b/clients/client-appstream/src/commands/DescribeThemeForStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeThemeForStackRequest, DescribeThemeForStackResult } from "../models/models_0"; +import type { DescribeThemeForStackRequest, DescribeThemeForStackResult } from "../models/models_0"; import { DescribeThemeForStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeUsageReportSubscriptionsCommand.ts b/clients/client-appstream/src/commands/DescribeUsageReportSubscriptionsCommand.ts index 2d6a7a976660f..7046980ddfc3a 100644 --- a/clients/client-appstream/src/commands/DescribeUsageReportSubscriptionsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeUsageReportSubscriptionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUsageReportSubscriptionsRequest, DescribeUsageReportSubscriptionsResult } from "../models/models_0"; +import type { + DescribeUsageReportSubscriptionsRequest, + DescribeUsageReportSubscriptionsResult, +} from "../models/models_0"; import { DescribeUsageReportSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeUserStackAssociationsCommand.ts b/clients/client-appstream/src/commands/DescribeUserStackAssociationsCommand.ts index 0b9adadf562e0..d455394483d25 100644 --- a/clients/client-appstream/src/commands/DescribeUserStackAssociationsCommand.ts +++ b/clients/client-appstream/src/commands/DescribeUserStackAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserStackAssociationsRequest, DescribeUserStackAssociationsResult } from "../models/models_0"; +import type { DescribeUserStackAssociationsRequest, DescribeUserStackAssociationsResult } from "../models/models_0"; import { DescribeUserStackAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DescribeUsersCommand.ts b/clients/client-appstream/src/commands/DescribeUsersCommand.ts index 43e04ae1be8e3..5f71aeb6975ba 100644 --- a/clients/client-appstream/src/commands/DescribeUsersCommand.ts +++ b/clients/client-appstream/src/commands/DescribeUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUsersRequest, DescribeUsersResult } from "../models/models_0"; +import type { DescribeUsersRequest, DescribeUsersResult } from "../models/models_0"; import { DescribeUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DisableUserCommand.ts b/clients/client-appstream/src/commands/DisableUserCommand.ts index 0fadc6da16118..78f97aac88a46 100644 --- a/clients/client-appstream/src/commands/DisableUserCommand.ts +++ b/clients/client-appstream/src/commands/DisableUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableUserRequest, DisableUserResult } from "../models/models_0"; +import type { DisableUserRequest, DisableUserResult } from "../models/models_0"; import { DisableUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DisassociateAppBlockBuilderAppBlockCommand.ts b/clients/client-appstream/src/commands/DisassociateAppBlockBuilderAppBlockCommand.ts index b662676d9d8c9..ecec7895f75fa 100644 --- a/clients/client-appstream/src/commands/DisassociateAppBlockBuilderAppBlockCommand.ts +++ b/clients/client-appstream/src/commands/DisassociateAppBlockBuilderAppBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateAppBlockBuilderAppBlockRequest, DisassociateAppBlockBuilderAppBlockResult, } from "../models/models_0"; diff --git a/clients/client-appstream/src/commands/DisassociateApplicationFleetCommand.ts b/clients/client-appstream/src/commands/DisassociateApplicationFleetCommand.ts index ae3623a6cd34e..3a3e0b186a11f 100644 --- a/clients/client-appstream/src/commands/DisassociateApplicationFleetCommand.ts +++ b/clients/client-appstream/src/commands/DisassociateApplicationFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateApplicationFleetRequest, DisassociateApplicationFleetResult } from "../models/models_0"; +import type { DisassociateApplicationFleetRequest, DisassociateApplicationFleetResult } from "../models/models_0"; import { DisassociateApplicationFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DisassociateApplicationFromEntitlementCommand.ts b/clients/client-appstream/src/commands/DisassociateApplicationFromEntitlementCommand.ts index 354d198b7e07f..67beb06094dc4 100644 --- a/clients/client-appstream/src/commands/DisassociateApplicationFromEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/DisassociateApplicationFromEntitlementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateApplicationFromEntitlementRequest, DisassociateApplicationFromEntitlementResult, } from "../models/models_0"; diff --git a/clients/client-appstream/src/commands/DisassociateFleetCommand.ts b/clients/client-appstream/src/commands/DisassociateFleetCommand.ts index fbacbc49f9279..c0293d738c255 100644 --- a/clients/client-appstream/src/commands/DisassociateFleetCommand.ts +++ b/clients/client-appstream/src/commands/DisassociateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateFleetRequest, DisassociateFleetResult } from "../models/models_0"; +import type { DisassociateFleetRequest, DisassociateFleetResult } from "../models/models_0"; import { DisassociateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/DisassociateSoftwareFromImageBuilderCommand.ts b/clients/client-appstream/src/commands/DisassociateSoftwareFromImageBuilderCommand.ts index 624cd5a073e22..0dee26a4972b6 100644 --- a/clients/client-appstream/src/commands/DisassociateSoftwareFromImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/DisassociateSoftwareFromImageBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateSoftwareFromImageBuilderRequest, DisassociateSoftwareFromImageBuilderResult, } from "../models/models_0"; diff --git a/clients/client-appstream/src/commands/EnableUserCommand.ts b/clients/client-appstream/src/commands/EnableUserCommand.ts index 38cde7a2e111c..84ef3c9a05324 100644 --- a/clients/client-appstream/src/commands/EnableUserCommand.ts +++ b/clients/client-appstream/src/commands/EnableUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableUserRequest, EnableUserResult } from "../models/models_0"; +import type { EnableUserRequest, EnableUserResult } from "../models/models_0"; import { EnableUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/ExpireSessionCommand.ts b/clients/client-appstream/src/commands/ExpireSessionCommand.ts index 95c4e1f08200b..1261c41a7b3a5 100644 --- a/clients/client-appstream/src/commands/ExpireSessionCommand.ts +++ b/clients/client-appstream/src/commands/ExpireSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExpireSessionRequest, ExpireSessionResult } from "../models/models_0"; +import type { ExpireSessionRequest, ExpireSessionResult } from "../models/models_0"; import { ExpireSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/GetExportImageTaskCommand.ts b/clients/client-appstream/src/commands/GetExportImageTaskCommand.ts index 4a41cab6c68d3..09b30831f6f3a 100644 --- a/clients/client-appstream/src/commands/GetExportImageTaskCommand.ts +++ b/clients/client-appstream/src/commands/GetExportImageTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExportImageTaskRequest, GetExportImageTaskResult } from "../models/models_0"; +import type { GetExportImageTaskRequest, GetExportImageTaskResult } from "../models/models_0"; import { GetExportImageTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/ListAssociatedFleetsCommand.ts b/clients/client-appstream/src/commands/ListAssociatedFleetsCommand.ts index 611ecd21da084..eb31201421533 100644 --- a/clients/client-appstream/src/commands/ListAssociatedFleetsCommand.ts +++ b/clients/client-appstream/src/commands/ListAssociatedFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociatedFleetsRequest, ListAssociatedFleetsResult } from "../models/models_0"; +import type { ListAssociatedFleetsRequest, ListAssociatedFleetsResult } from "../models/models_0"; import { ListAssociatedFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/ListAssociatedStacksCommand.ts b/clients/client-appstream/src/commands/ListAssociatedStacksCommand.ts index 0716f79ae5a3c..17599f6073f4d 100644 --- a/clients/client-appstream/src/commands/ListAssociatedStacksCommand.ts +++ b/clients/client-appstream/src/commands/ListAssociatedStacksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociatedStacksRequest, ListAssociatedStacksResult } from "../models/models_0"; +import type { ListAssociatedStacksRequest, ListAssociatedStacksResult } from "../models/models_0"; import { ListAssociatedStacks } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/ListEntitledApplicationsCommand.ts b/clients/client-appstream/src/commands/ListEntitledApplicationsCommand.ts index 27fbb3ad1c5a5..2c187a59b242e 100644 --- a/clients/client-appstream/src/commands/ListEntitledApplicationsCommand.ts +++ b/clients/client-appstream/src/commands/ListEntitledApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEntitledApplicationsRequest, ListEntitledApplicationsResult } from "../models/models_0"; +import type { ListEntitledApplicationsRequest, ListEntitledApplicationsResult } from "../models/models_0"; import { ListEntitledApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/ListExportImageTasksCommand.ts b/clients/client-appstream/src/commands/ListExportImageTasksCommand.ts index 8ead33533d16c..422a854d6368b 100644 --- a/clients/client-appstream/src/commands/ListExportImageTasksCommand.ts +++ b/clients/client-appstream/src/commands/ListExportImageTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExportImageTasksRequest, ListExportImageTasksResult } from "../models/models_0"; +import type { ListExportImageTasksRequest, ListExportImageTasksResult } from "../models/models_0"; import { ListExportImageTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/ListTagsForResourceCommand.ts b/clients/client-appstream/src/commands/ListTagsForResourceCommand.ts index d1dfc69931847..47affb5a92a3a 100644 --- a/clients/client-appstream/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appstream/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/StartAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/StartAppBlockBuilderCommand.ts index aef0664d0cf45..b73451eca0e65 100644 --- a/clients/client-appstream/src/commands/StartAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/StartAppBlockBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAppBlockBuilderRequest, StartAppBlockBuilderResult } from "../models/models_0"; +import type { StartAppBlockBuilderRequest, StartAppBlockBuilderResult } from "../models/models_0"; import { StartAppBlockBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/StartFleetCommand.ts b/clients/client-appstream/src/commands/StartFleetCommand.ts index 63f42ed57400a..33348dd0c7d68 100644 --- a/clients/client-appstream/src/commands/StartFleetCommand.ts +++ b/clients/client-appstream/src/commands/StartFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFleetRequest, StartFleetResult } from "../models/models_0"; +import type { StartFleetRequest, StartFleetResult } from "../models/models_0"; import { StartFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/StartImageBuilderCommand.ts b/clients/client-appstream/src/commands/StartImageBuilderCommand.ts index 6ecd65c728f82..cf53c1c5e0f49 100644 --- a/clients/client-appstream/src/commands/StartImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/StartImageBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartImageBuilderRequest, StartImageBuilderResult } from "../models/models_0"; +import type { StartImageBuilderRequest, StartImageBuilderResult } from "../models/models_0"; import { StartImageBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/StartSoftwareDeploymentToImageBuilderCommand.ts b/clients/client-appstream/src/commands/StartSoftwareDeploymentToImageBuilderCommand.ts index cd21e20bf3f65..9f2ce913c2fa4 100644 --- a/clients/client-appstream/src/commands/StartSoftwareDeploymentToImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/StartSoftwareDeploymentToImageBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartSoftwareDeploymentToImageBuilderRequest, StartSoftwareDeploymentToImageBuilderResult, } from "../models/models_0"; diff --git a/clients/client-appstream/src/commands/StopAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/StopAppBlockBuilderCommand.ts index f918b4ec422d2..1344d9fe3f612 100644 --- a/clients/client-appstream/src/commands/StopAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/StopAppBlockBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopAppBlockBuilderRequest, StopAppBlockBuilderResult } from "../models/models_0"; +import type { StopAppBlockBuilderRequest, StopAppBlockBuilderResult } from "../models/models_0"; import { StopAppBlockBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/StopFleetCommand.ts b/clients/client-appstream/src/commands/StopFleetCommand.ts index 84396a680c57d..8ecd46449282f 100644 --- a/clients/client-appstream/src/commands/StopFleetCommand.ts +++ b/clients/client-appstream/src/commands/StopFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopFleetRequest, StopFleetResult } from "../models/models_0"; +import type { StopFleetRequest, StopFleetResult } from "../models/models_0"; import { StopFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/StopImageBuilderCommand.ts b/clients/client-appstream/src/commands/StopImageBuilderCommand.ts index 53624e236a332..c81820334bf33 100644 --- a/clients/client-appstream/src/commands/StopImageBuilderCommand.ts +++ b/clients/client-appstream/src/commands/StopImageBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopImageBuilderRequest, StopImageBuilderResult } from "../models/models_0"; +import type { StopImageBuilderRequest, StopImageBuilderResult } from "../models/models_0"; import { StopImageBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/TagResourceCommand.ts b/clients/client-appstream/src/commands/TagResourceCommand.ts index b7acb2c5afa84..889ebc665dc35 100644 --- a/clients/client-appstream/src/commands/TagResourceCommand.ts +++ b/clients/client-appstream/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/UntagResourceCommand.ts b/clients/client-appstream/src/commands/UntagResourceCommand.ts index f5dbf81571e34..622731304419e 100644 --- a/clients/client-appstream/src/commands/UntagResourceCommand.ts +++ b/clients/client-appstream/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/UpdateAppBlockBuilderCommand.ts b/clients/client-appstream/src/commands/UpdateAppBlockBuilderCommand.ts index a9d9b75c20ad3..cf18c778775e7 100644 --- a/clients/client-appstream/src/commands/UpdateAppBlockBuilderCommand.ts +++ b/clients/client-appstream/src/commands/UpdateAppBlockBuilderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppBlockBuilderRequest, UpdateAppBlockBuilderResult } from "../models/models_0"; +import type { UpdateAppBlockBuilderRequest, UpdateAppBlockBuilderResult } from "../models/models_0"; import { UpdateAppBlockBuilder } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/UpdateApplicationCommand.ts b/clients/client-appstream/src/commands/UpdateApplicationCommand.ts index b6a3500c4bce9..e601189dd819f 100644 --- a/clients/client-appstream/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-appstream/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResult } from "../models/models_0"; +import type { UpdateApplicationRequest, UpdateApplicationResult } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/UpdateDirectoryConfigCommand.ts b/clients/client-appstream/src/commands/UpdateDirectoryConfigCommand.ts index 38bf49e527195..1e58d8b124027 100644 --- a/clients/client-appstream/src/commands/UpdateDirectoryConfigCommand.ts +++ b/clients/client-appstream/src/commands/UpdateDirectoryConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDirectoryConfigRequest, UpdateDirectoryConfigResult } from "../models/models_0"; +import type { UpdateDirectoryConfigRequest, UpdateDirectoryConfigResult } from "../models/models_0"; import { UpdateDirectoryConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/UpdateEntitlementCommand.ts b/clients/client-appstream/src/commands/UpdateEntitlementCommand.ts index 8d4ec6d01d73c..b5315f510c7c6 100644 --- a/clients/client-appstream/src/commands/UpdateEntitlementCommand.ts +++ b/clients/client-appstream/src/commands/UpdateEntitlementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEntitlementRequest, UpdateEntitlementResult } from "../models/models_0"; +import type { UpdateEntitlementRequest, UpdateEntitlementResult } from "../models/models_0"; import { UpdateEntitlement } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/UpdateFleetCommand.ts b/clients/client-appstream/src/commands/UpdateFleetCommand.ts index 11b6ca9258fa3..edbdc252fcd4b 100644 --- a/clients/client-appstream/src/commands/UpdateFleetCommand.ts +++ b/clients/client-appstream/src/commands/UpdateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFleetRequest, UpdateFleetResult } from "../models/models_0"; +import type { UpdateFleetRequest, UpdateFleetResult } from "../models/models_0"; import { UpdateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/UpdateImagePermissionsCommand.ts b/clients/client-appstream/src/commands/UpdateImagePermissionsCommand.ts index 33ea0d9d5d13b..9b950b74f68cc 100644 --- a/clients/client-appstream/src/commands/UpdateImagePermissionsCommand.ts +++ b/clients/client-appstream/src/commands/UpdateImagePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateImagePermissionsRequest, UpdateImagePermissionsResult } from "../models/models_0"; +import type { UpdateImagePermissionsRequest, UpdateImagePermissionsResult } from "../models/models_0"; import { UpdateImagePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/UpdateStackCommand.ts b/clients/client-appstream/src/commands/UpdateStackCommand.ts index 84bbad0009ec2..ab07f904b9f0b 100644 --- a/clients/client-appstream/src/commands/UpdateStackCommand.ts +++ b/clients/client-appstream/src/commands/UpdateStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStackRequest, UpdateStackResult } from "../models/models_0"; +import type { UpdateStackRequest, UpdateStackResult } from "../models/models_0"; import { UpdateStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/commands/UpdateThemeForStackCommand.ts b/clients/client-appstream/src/commands/UpdateThemeForStackCommand.ts index 8fef5800b8f41..19648405971d1 100644 --- a/clients/client-appstream/src/commands/UpdateThemeForStackCommand.ts +++ b/clients/client-appstream/src/commands/UpdateThemeForStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; +import type { AppStreamClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppStreamClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateThemeForStackRequest, UpdateThemeForStackResult } from "../models/models_0"; +import type { UpdateThemeForStackRequest, UpdateThemeForStackResult } from "../models/models_0"; import { UpdateThemeForStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-appstream/src/endpoint/EndpointParameters.ts b/clients/client-appstream/src/endpoint/EndpointParameters.ts index b95526325610a..19f978a3ea8c3 100644 --- a/clients/client-appstream/src/endpoint/EndpointParameters.ts +++ b/clients/client-appstream/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-appstream/src/endpoint/endpointResolver.ts b/clients/client-appstream/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-appstream/src/endpoint/endpointResolver.ts +++ b/clients/client-appstream/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-appstream/src/extensionConfiguration.ts b/clients/client-appstream/src/extensionConfiguration.ts index c29514a272860..19ed3f4d43d47 100644 --- a/clients/client-appstream/src/extensionConfiguration.ts +++ b/clients/client-appstream/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-appstream/src/models/AppStreamServiceException.ts b/clients/client-appstream/src/models/AppStreamServiceException.ts index 518945f76d180..8bed4bdb3c3e4 100644 --- a/clients/client-appstream/src/models/AppStreamServiceException.ts +++ b/clients/client-appstream/src/models/AppStreamServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-appstream/src/models/errors.ts b/clients/client-appstream/src/models/errors.ts index bb0a3c09cd463..75652a2f4127f 100644 --- a/clients/client-appstream/src/models/errors.ts +++ b/clients/client-appstream/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AppStreamServiceException as __BaseException } from "./AppStreamServiceException"; diff --git a/clients/client-appstream/src/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.ts b/clients/client-appstream/src/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.ts index eab7f55ff46b7..3bc84bfd480d8 100644 --- a/clients/client-appstream/src/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.ts +++ b/clients/client-appstream/src/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppStreamClient } from "../AppStreamClient"; import { diff --git a/clients/client-appstream/src/pagination/DescribeAppBlockBuildersPaginator.ts b/clients/client-appstream/src/pagination/DescribeAppBlockBuildersPaginator.ts index dc5d98d8c633d..e51ea93c034c3 100644 --- a/clients/client-appstream/src/pagination/DescribeAppBlockBuildersPaginator.ts +++ b/clients/client-appstream/src/pagination/DescribeAppBlockBuildersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppStreamClient } from "../AppStreamClient"; import { diff --git a/clients/client-appstream/src/pagination/DescribeImagePermissionsPaginator.ts b/clients/client-appstream/src/pagination/DescribeImagePermissionsPaginator.ts index cf2b6c8efb982..2e57db8981eba 100644 --- a/clients/client-appstream/src/pagination/DescribeImagePermissionsPaginator.ts +++ b/clients/client-appstream/src/pagination/DescribeImagePermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppStreamClient } from "../AppStreamClient"; import { diff --git a/clients/client-appstream/src/pagination/DescribeImagesPaginator.ts b/clients/client-appstream/src/pagination/DescribeImagesPaginator.ts index 7f48e786361a8..53bc027927850 100644 --- a/clients/client-appstream/src/pagination/DescribeImagesPaginator.ts +++ b/clients/client-appstream/src/pagination/DescribeImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppStreamClient } from "../AppStreamClient"; import { diff --git a/clients/client-appstream/src/pagination/Interfaces.ts b/clients/client-appstream/src/pagination/Interfaces.ts index 037676e6bbdce..62034c9c354a9 100644 --- a/clients/client-appstream/src/pagination/Interfaces.ts +++ b/clients/client-appstream/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AppStreamClient } from "../AppStreamClient"; diff --git a/clients/client-appstream/src/runtimeConfig.browser.ts b/clients/client-appstream/src/runtimeConfig.browser.ts index 8c974e0346276..e57dcf9159fc5 100644 --- a/clients/client-appstream/src/runtimeConfig.browser.ts +++ b/clients/client-appstream/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppStreamClientConfig } from "./AppStreamClient"; + +import type { AppStreamClientConfig } from "./AppStreamClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-appstream/src/runtimeConfig.native.ts b/clients/client-appstream/src/runtimeConfig.native.ts index 0d9ead3e3e237..5d802586da554 100644 --- a/clients/client-appstream/src/runtimeConfig.native.ts +++ b/clients/client-appstream/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AppStreamClientConfig } from "./AppStreamClient"; +import type { AppStreamClientConfig } from "./AppStreamClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-appstream/src/runtimeConfig.shared.ts b/clients/client-appstream/src/runtimeConfig.shared.ts index 3dfa553e5adc4..1131ff28db6cc 100644 --- a/clients/client-appstream/src/runtimeConfig.shared.ts +++ b/clients/client-appstream/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AppStreamClientConfig } from "./AppStreamClient"; +import type { AppStreamClientConfig } from "./AppStreamClient"; import { defaultAppStreamHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-appstream/src/runtimeConfig.ts b/clients/client-appstream/src/runtimeConfig.ts index beb9efb741ab4..7c3bc93fdcfa3 100644 --- a/clients/client-appstream/src/runtimeConfig.ts +++ b/clients/client-appstream/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppStreamClientConfig } from "./AppStreamClient"; + +import type { AppStreamClientConfig } from "./AppStreamClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-appstream/src/runtimeExtensions.ts b/clients/client-appstream/src/runtimeExtensions.ts index fcabf0cf81e43..d9db1fd5cdc74 100644 --- a/clients/client-appstream/src/runtimeExtensions.ts +++ b/clients/client-appstream/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AppStreamExtensionConfiguration } from "./extensionConfiguration"; +import type { AppStreamExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-appstream/src/schemas/schemas_0.ts b/clients/client-appstream/src/schemas/schemas_0.ts index 0efd83228f595..75e276c5e1486 100644 --- a/clients/client-appstream/src/schemas/schemas_0.ts +++ b/clients/client-appstream/src/schemas/schemas_0.ts @@ -592,7 +592,7 @@ const n0 = "com.amazonaws.appstream"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-appsync/package.json b/clients/client-appsync/package.json index aa59a45a62591..44b010ec767bd 100644 --- a/clients/client-appsync/package.json +++ b/clients/client-appsync/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-appsync/src/AppSync.ts b/clients/client-appsync/src/AppSync.ts index 7a3071562f288..47f941916b52b 100644 --- a/clients/client-appsync/src/AppSync.ts +++ b/clients/client-appsync/src/AppSync.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AppSyncClient, AppSyncClientConfig } from "./AppSyncClient"; +import { AppSyncClient } from "./AppSyncClient"; import { AssociateApiCommand, AssociateApiCommandInput, diff --git a/clients/client-appsync/src/AppSyncClient.ts b/clients/client-appsync/src/AppSyncClient.ts index 5512c1aef5cf4..67e1d733a3c30 100644 --- a/clients/client-appsync/src/AppSyncClient.ts +++ b/clients/client-appsync/src/AppSyncClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAppSyncHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateApiCommandInput, AssociateApiCommandOutput } from "./commands/AssociateApiCommand"; @@ -207,7 +216,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-appsync/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-appsync/src/auth/httpAuthExtensionConfiguration.ts index ac339bc36eea6..a2c8f83f1adc8 100644 --- a/clients/client-appsync/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-appsync/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AppSyncHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AppSyncHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-appsync/src/auth/httpAuthSchemeProvider.ts b/clients/client-appsync/src/auth/httpAuthSchemeProvider.ts index 17add507b2314..542d101a19bcc 100644 --- a/clients/client-appsync/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-appsync/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AppSyncClientConfig, AppSyncClientResolvedConfig } from "../AppSyncClient"; +import { type AppSyncClientResolvedConfig, AppSyncClientConfig } from "../AppSyncClient"; /** * @internal diff --git a/clients/client-appsync/src/commands/AssociateApiCommand.ts b/clients/client-appsync/src/commands/AssociateApiCommand.ts index 36ae6dedb18cc..cc5b93e6b0d29 100644 --- a/clients/client-appsync/src/commands/AssociateApiCommand.ts +++ b/clients/client-appsync/src/commands/AssociateApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateApiRequest, AssociateApiResponse } from "../models/models_0"; +import type { AssociateApiRequest, AssociateApiResponse } from "../models/models_0"; import { AssociateApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/AssociateMergedGraphqlApiCommand.ts b/clients/client-appsync/src/commands/AssociateMergedGraphqlApiCommand.ts index b153e0de7e7dd..5f73e9494ce59 100644 --- a/clients/client-appsync/src/commands/AssociateMergedGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/AssociateMergedGraphqlApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateMergedGraphqlApiRequest, AssociateMergedGraphqlApiResponse } from "../models/models_0"; +import type { AssociateMergedGraphqlApiRequest, AssociateMergedGraphqlApiResponse } from "../models/models_0"; import { AssociateMergedGraphqlApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/AssociateSourceGraphqlApiCommand.ts b/clients/client-appsync/src/commands/AssociateSourceGraphqlApiCommand.ts index a8560d8d6da50..ecfbe7a4f9c04 100644 --- a/clients/client-appsync/src/commands/AssociateSourceGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/AssociateSourceGraphqlApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSourceGraphqlApiRequest, AssociateSourceGraphqlApiResponse } from "../models/models_0"; +import type { AssociateSourceGraphqlApiRequest, AssociateSourceGraphqlApiResponse } from "../models/models_0"; import { AssociateSourceGraphqlApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateApiCacheCommand.ts b/clients/client-appsync/src/commands/CreateApiCacheCommand.ts index ebe4c5624527b..6eb39c7b740b4 100644 --- a/clients/client-appsync/src/commands/CreateApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/CreateApiCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApiCacheRequest, CreateApiCacheResponse } from "../models/models_0"; +import type { CreateApiCacheRequest, CreateApiCacheResponse } from "../models/models_0"; import { CreateApiCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateApiCommand.ts b/clients/client-appsync/src/commands/CreateApiCommand.ts index 9c4da39f25d7a..7f805ba04ecc6 100644 --- a/clients/client-appsync/src/commands/CreateApiCommand.ts +++ b/clients/client-appsync/src/commands/CreateApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApiRequest, CreateApiResponse } from "../models/models_0"; +import type { CreateApiRequest, CreateApiResponse } from "../models/models_0"; import { CreateApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateApiKeyCommand.ts b/clients/client-appsync/src/commands/CreateApiKeyCommand.ts index 5b577c2613c6b..8b29b59d81288 100644 --- a/clients/client-appsync/src/commands/CreateApiKeyCommand.ts +++ b/clients/client-appsync/src/commands/CreateApiKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApiKeyRequest, CreateApiKeyResponse } from "../models/models_0"; +import type { CreateApiKeyRequest, CreateApiKeyResponse } from "../models/models_0"; import { CreateApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateChannelNamespaceCommand.ts b/clients/client-appsync/src/commands/CreateChannelNamespaceCommand.ts index f45fb6109b3ca..e7998fa55b548 100644 --- a/clients/client-appsync/src/commands/CreateChannelNamespaceCommand.ts +++ b/clients/client-appsync/src/commands/CreateChannelNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChannelNamespaceRequest, CreateChannelNamespaceResponse } from "../models/models_0"; +import type { CreateChannelNamespaceRequest, CreateChannelNamespaceResponse } from "../models/models_0"; import { CreateChannelNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateDataSourceCommand.ts b/clients/client-appsync/src/commands/CreateDataSourceCommand.ts index 2d6624a79cfd0..6cda976993b47 100644 --- a/clients/client-appsync/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-appsync/src/commands/CreateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_0"; +import type { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_0"; import { CreateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateDomainNameCommand.ts b/clients/client-appsync/src/commands/CreateDomainNameCommand.ts index ed157c4352f7b..9d1b2dda80a38 100644 --- a/clients/client-appsync/src/commands/CreateDomainNameCommand.ts +++ b/clients/client-appsync/src/commands/CreateDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainNameRequest, CreateDomainNameResponse } from "../models/models_0"; +import type { CreateDomainNameRequest, CreateDomainNameResponse } from "../models/models_0"; import { CreateDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateFunctionCommand.ts b/clients/client-appsync/src/commands/CreateFunctionCommand.ts index 039f8a8254828..13c3c05613993 100644 --- a/clients/client-appsync/src/commands/CreateFunctionCommand.ts +++ b/clients/client-appsync/src/commands/CreateFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFunctionRequest, CreateFunctionResponse } from "../models/models_0"; +import type { CreateFunctionRequest, CreateFunctionResponse } from "../models/models_0"; import { CreateFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateGraphqlApiCommand.ts b/clients/client-appsync/src/commands/CreateGraphqlApiCommand.ts index 03123f2af4310..d9054a50a6650 100644 --- a/clients/client-appsync/src/commands/CreateGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/CreateGraphqlApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGraphqlApiRequest, CreateGraphqlApiResponse } from "../models/models_0"; +import type { CreateGraphqlApiRequest, CreateGraphqlApiResponse } from "../models/models_0"; import { CreateGraphqlApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateResolverCommand.ts b/clients/client-appsync/src/commands/CreateResolverCommand.ts index 1483e418f0b63..01a601b59f966 100644 --- a/clients/client-appsync/src/commands/CreateResolverCommand.ts +++ b/clients/client-appsync/src/commands/CreateResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResolverRequest, CreateResolverResponse } from "../models/models_0"; +import type { CreateResolverRequest, CreateResolverResponse } from "../models/models_0"; import { CreateResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/CreateTypeCommand.ts b/clients/client-appsync/src/commands/CreateTypeCommand.ts index 69d2235374223..00eb59e73affa 100644 --- a/clients/client-appsync/src/commands/CreateTypeCommand.ts +++ b/clients/client-appsync/src/commands/CreateTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTypeRequest, CreateTypeResponse } from "../models/models_0"; +import type { CreateTypeRequest, CreateTypeResponse } from "../models/models_0"; import { CreateType } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteApiCacheCommand.ts b/clients/client-appsync/src/commands/DeleteApiCacheCommand.ts index 8969268797432..3dbae5b285a73 100644 --- a/clients/client-appsync/src/commands/DeleteApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/DeleteApiCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApiCacheRequest, DeleteApiCacheResponse } from "../models/models_0"; +import type { DeleteApiCacheRequest, DeleteApiCacheResponse } from "../models/models_0"; import { DeleteApiCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteApiCommand.ts b/clients/client-appsync/src/commands/DeleteApiCommand.ts index e1120619d7e73..d595d15d8ee82 100644 --- a/clients/client-appsync/src/commands/DeleteApiCommand.ts +++ b/clients/client-appsync/src/commands/DeleteApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApiRequest, DeleteApiResponse } from "../models/models_0"; +import type { DeleteApiRequest, DeleteApiResponse } from "../models/models_0"; import { DeleteApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteApiKeyCommand.ts b/clients/client-appsync/src/commands/DeleteApiKeyCommand.ts index 4150dccaf70a9..333f77b893496 100644 --- a/clients/client-appsync/src/commands/DeleteApiKeyCommand.ts +++ b/clients/client-appsync/src/commands/DeleteApiKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApiKeyRequest, DeleteApiKeyResponse } from "../models/models_0"; +import type { DeleteApiKeyRequest, DeleteApiKeyResponse } from "../models/models_0"; import { DeleteApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteChannelNamespaceCommand.ts b/clients/client-appsync/src/commands/DeleteChannelNamespaceCommand.ts index 37b2ef1d681d4..1207b8900adcd 100644 --- a/clients/client-appsync/src/commands/DeleteChannelNamespaceCommand.ts +++ b/clients/client-appsync/src/commands/DeleteChannelNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChannelNamespaceRequest, DeleteChannelNamespaceResponse } from "../models/models_0"; +import type { DeleteChannelNamespaceRequest, DeleteChannelNamespaceResponse } from "../models/models_0"; import { DeleteChannelNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteDataSourceCommand.ts b/clients/client-appsync/src/commands/DeleteDataSourceCommand.ts index 7f522edfcd6d0..faeb406d126db 100644 --- a/clients/client-appsync/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-appsync/src/commands/DeleteDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_0"; +import type { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_0"; import { DeleteDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteDomainNameCommand.ts b/clients/client-appsync/src/commands/DeleteDomainNameCommand.ts index 854a4308a5e0e..e8a6e3490b2e3 100644 --- a/clients/client-appsync/src/commands/DeleteDomainNameCommand.ts +++ b/clients/client-appsync/src/commands/DeleteDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainNameRequest, DeleteDomainNameResponse } from "../models/models_0"; +import type { DeleteDomainNameRequest, DeleteDomainNameResponse } from "../models/models_0"; import { DeleteDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteFunctionCommand.ts b/clients/client-appsync/src/commands/DeleteFunctionCommand.ts index b76467c84a875..959edd28915d4 100644 --- a/clients/client-appsync/src/commands/DeleteFunctionCommand.ts +++ b/clients/client-appsync/src/commands/DeleteFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFunctionRequest, DeleteFunctionResponse } from "../models/models_0"; +import type { DeleteFunctionRequest, DeleteFunctionResponse } from "../models/models_0"; import { DeleteFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteGraphqlApiCommand.ts b/clients/client-appsync/src/commands/DeleteGraphqlApiCommand.ts index 350fea5fee092..22f45f29b069e 100644 --- a/clients/client-appsync/src/commands/DeleteGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/DeleteGraphqlApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGraphqlApiRequest, DeleteGraphqlApiResponse } from "../models/models_0"; +import type { DeleteGraphqlApiRequest, DeleteGraphqlApiResponse } from "../models/models_0"; import { DeleteGraphqlApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteResolverCommand.ts b/clients/client-appsync/src/commands/DeleteResolverCommand.ts index 02d41108db32e..1d23c83fd5ca5 100644 --- a/clients/client-appsync/src/commands/DeleteResolverCommand.ts +++ b/clients/client-appsync/src/commands/DeleteResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResolverRequest, DeleteResolverResponse } from "../models/models_0"; +import type { DeleteResolverRequest, DeleteResolverResponse } from "../models/models_0"; import { DeleteResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DeleteTypeCommand.ts b/clients/client-appsync/src/commands/DeleteTypeCommand.ts index 8bccfe05d2e2d..1020d1e80ad9a 100644 --- a/clients/client-appsync/src/commands/DeleteTypeCommand.ts +++ b/clients/client-appsync/src/commands/DeleteTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTypeRequest, DeleteTypeResponse } from "../models/models_0"; +import type { DeleteTypeRequest, DeleteTypeResponse } from "../models/models_0"; import { DeleteType } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DisassociateApiCommand.ts b/clients/client-appsync/src/commands/DisassociateApiCommand.ts index d80e4da017889..9dcff14cc3c37 100644 --- a/clients/client-appsync/src/commands/DisassociateApiCommand.ts +++ b/clients/client-appsync/src/commands/DisassociateApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateApiRequest, DisassociateApiResponse } from "../models/models_0"; +import type { DisassociateApiRequest, DisassociateApiResponse } from "../models/models_0"; import { DisassociateApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DisassociateMergedGraphqlApiCommand.ts b/clients/client-appsync/src/commands/DisassociateMergedGraphqlApiCommand.ts index cf0eda1ec84a8..34de8a5d74d24 100644 --- a/clients/client-appsync/src/commands/DisassociateMergedGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/DisassociateMergedGraphqlApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateMergedGraphqlApiRequest, DisassociateMergedGraphqlApiResponse } from "../models/models_0"; +import type { DisassociateMergedGraphqlApiRequest, DisassociateMergedGraphqlApiResponse } from "../models/models_0"; import { DisassociateMergedGraphqlApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/DisassociateSourceGraphqlApiCommand.ts b/clients/client-appsync/src/commands/DisassociateSourceGraphqlApiCommand.ts index 043f215d8c9ac..08254ac48dba2 100644 --- a/clients/client-appsync/src/commands/DisassociateSourceGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/DisassociateSourceGraphqlApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateSourceGraphqlApiRequest, DisassociateSourceGraphqlApiResponse } from "../models/models_0"; +import type { DisassociateSourceGraphqlApiRequest, DisassociateSourceGraphqlApiResponse } from "../models/models_0"; import { DisassociateSourceGraphqlApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/EvaluateCodeCommand.ts b/clients/client-appsync/src/commands/EvaluateCodeCommand.ts index fda435870d23d..cce10c85275da 100644 --- a/clients/client-appsync/src/commands/EvaluateCodeCommand.ts +++ b/clients/client-appsync/src/commands/EvaluateCodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvaluateCodeRequest, EvaluateCodeResponse } from "../models/models_0"; +import type { EvaluateCodeRequest, EvaluateCodeResponse } from "../models/models_0"; import { EvaluateCode } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/EvaluateMappingTemplateCommand.ts b/clients/client-appsync/src/commands/EvaluateMappingTemplateCommand.ts index c57da9e97ada3..22383c78639f3 100644 --- a/clients/client-appsync/src/commands/EvaluateMappingTemplateCommand.ts +++ b/clients/client-appsync/src/commands/EvaluateMappingTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvaluateMappingTemplateRequest, EvaluateMappingTemplateResponse } from "../models/models_0"; +import type { EvaluateMappingTemplateRequest, EvaluateMappingTemplateResponse } from "../models/models_0"; import { EvaluateMappingTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/FlushApiCacheCommand.ts b/clients/client-appsync/src/commands/FlushApiCacheCommand.ts index dbd8f2583e702..c92f41c41f719 100644 --- a/clients/client-appsync/src/commands/FlushApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/FlushApiCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlushApiCacheRequest, FlushApiCacheResponse } from "../models/models_0"; +import type { FlushApiCacheRequest, FlushApiCacheResponse } from "../models/models_0"; import { FlushApiCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetApiAssociationCommand.ts b/clients/client-appsync/src/commands/GetApiAssociationCommand.ts index 71babb052ad8a..85a97a1286a99 100644 --- a/clients/client-appsync/src/commands/GetApiAssociationCommand.ts +++ b/clients/client-appsync/src/commands/GetApiAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApiAssociationRequest, GetApiAssociationResponse } from "../models/models_0"; +import type { GetApiAssociationRequest, GetApiAssociationResponse } from "../models/models_0"; import { GetApiAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetApiCacheCommand.ts b/clients/client-appsync/src/commands/GetApiCacheCommand.ts index bcf4077c44606..3345e66869fe5 100644 --- a/clients/client-appsync/src/commands/GetApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/GetApiCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApiCacheRequest, GetApiCacheResponse } from "../models/models_0"; +import type { GetApiCacheRequest, GetApiCacheResponse } from "../models/models_0"; import { GetApiCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetApiCommand.ts b/clients/client-appsync/src/commands/GetApiCommand.ts index ded88c23bb50e..d90d95d39bfe3 100644 --- a/clients/client-appsync/src/commands/GetApiCommand.ts +++ b/clients/client-appsync/src/commands/GetApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApiRequest, GetApiResponse } from "../models/models_0"; +import type { GetApiRequest, GetApiResponse } from "../models/models_0"; import { GetApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetChannelNamespaceCommand.ts b/clients/client-appsync/src/commands/GetChannelNamespaceCommand.ts index 039c7b8e1e233..cd4208e30cb83 100644 --- a/clients/client-appsync/src/commands/GetChannelNamespaceCommand.ts +++ b/clients/client-appsync/src/commands/GetChannelNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChannelNamespaceRequest, GetChannelNamespaceResponse } from "../models/models_0"; +import type { GetChannelNamespaceRequest, GetChannelNamespaceResponse } from "../models/models_0"; import { GetChannelNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetDataSourceCommand.ts b/clients/client-appsync/src/commands/GetDataSourceCommand.ts index 5968e00c69561..895a1e939fbe6 100644 --- a/clients/client-appsync/src/commands/GetDataSourceCommand.ts +++ b/clients/client-appsync/src/commands/GetDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataSourceRequest, GetDataSourceResponse } from "../models/models_0"; +import type { GetDataSourceRequest, GetDataSourceResponse } from "../models/models_0"; import { GetDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetDataSourceIntrospectionCommand.ts b/clients/client-appsync/src/commands/GetDataSourceIntrospectionCommand.ts index a0eba4b8efdee..7158707202889 100644 --- a/clients/client-appsync/src/commands/GetDataSourceIntrospectionCommand.ts +++ b/clients/client-appsync/src/commands/GetDataSourceIntrospectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataSourceIntrospectionRequest, GetDataSourceIntrospectionResponse } from "../models/models_0"; +import type { GetDataSourceIntrospectionRequest, GetDataSourceIntrospectionResponse } from "../models/models_0"; import { GetDataSourceIntrospection } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetDomainNameCommand.ts b/clients/client-appsync/src/commands/GetDomainNameCommand.ts index 9ab4cf016c168..0bcdd8f6a03c8 100644 --- a/clients/client-appsync/src/commands/GetDomainNameCommand.ts +++ b/clients/client-appsync/src/commands/GetDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainNameRequest, GetDomainNameResponse } from "../models/models_0"; +import type { GetDomainNameRequest, GetDomainNameResponse } from "../models/models_0"; import { GetDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetFunctionCommand.ts b/clients/client-appsync/src/commands/GetFunctionCommand.ts index 8ba078436f8f4..3e0241ac5c16c 100644 --- a/clients/client-appsync/src/commands/GetFunctionCommand.ts +++ b/clients/client-appsync/src/commands/GetFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFunctionRequest, GetFunctionResponse } from "../models/models_0"; +import type { GetFunctionRequest, GetFunctionResponse } from "../models/models_0"; import { GetFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetGraphqlApiCommand.ts b/clients/client-appsync/src/commands/GetGraphqlApiCommand.ts index 502f06d501265..f3a95b2b1f6c8 100644 --- a/clients/client-appsync/src/commands/GetGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/GetGraphqlApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGraphqlApiRequest, GetGraphqlApiResponse } from "../models/models_0"; +import type { GetGraphqlApiRequest, GetGraphqlApiResponse } from "../models/models_0"; import { GetGraphqlApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetGraphqlApiEnvironmentVariablesCommand.ts b/clients/client-appsync/src/commands/GetGraphqlApiEnvironmentVariablesCommand.ts index 6ec6ed2c8ed33..e8f3dce636d0a 100644 --- a/clients/client-appsync/src/commands/GetGraphqlApiEnvironmentVariablesCommand.ts +++ b/clients/client-appsync/src/commands/GetGraphqlApiEnvironmentVariablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetGraphqlApiEnvironmentVariablesRequest, GetGraphqlApiEnvironmentVariablesResponse, } from "../models/models_0"; diff --git a/clients/client-appsync/src/commands/GetIntrospectionSchemaCommand.ts b/clients/client-appsync/src/commands/GetIntrospectionSchemaCommand.ts index 06104c9a3833d..3cb32ce605e62 100644 --- a/clients/client-appsync/src/commands/GetIntrospectionSchemaCommand.ts +++ b/clients/client-appsync/src/commands/GetIntrospectionSchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIntrospectionSchemaRequest, GetIntrospectionSchemaResponse } from "../models/models_0"; +import { type GetIntrospectionSchemaRequest, GetIntrospectionSchemaResponse } from "../models/models_0"; import { GetIntrospectionSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetResolverCommand.ts b/clients/client-appsync/src/commands/GetResolverCommand.ts index 0301782a362b9..5ef43d4ce2170 100644 --- a/clients/client-appsync/src/commands/GetResolverCommand.ts +++ b/clients/client-appsync/src/commands/GetResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResolverRequest, GetResolverResponse } from "../models/models_0"; +import type { GetResolverRequest, GetResolverResponse } from "../models/models_0"; import { GetResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetSchemaCreationStatusCommand.ts b/clients/client-appsync/src/commands/GetSchemaCreationStatusCommand.ts index 6db8010c97b21..6217225f4ee95 100644 --- a/clients/client-appsync/src/commands/GetSchemaCreationStatusCommand.ts +++ b/clients/client-appsync/src/commands/GetSchemaCreationStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSchemaCreationStatusRequest, GetSchemaCreationStatusResponse } from "../models/models_0"; +import type { GetSchemaCreationStatusRequest, GetSchemaCreationStatusResponse } from "../models/models_0"; import { GetSchemaCreationStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetSourceApiAssociationCommand.ts b/clients/client-appsync/src/commands/GetSourceApiAssociationCommand.ts index 52acc5fe710c6..23b5a6a25cbb6 100644 --- a/clients/client-appsync/src/commands/GetSourceApiAssociationCommand.ts +++ b/clients/client-appsync/src/commands/GetSourceApiAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSourceApiAssociationRequest, GetSourceApiAssociationResponse } from "../models/models_0"; +import type { GetSourceApiAssociationRequest, GetSourceApiAssociationResponse } from "../models/models_0"; import { GetSourceApiAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/GetTypeCommand.ts b/clients/client-appsync/src/commands/GetTypeCommand.ts index c163bdd658b71..158128610ad0b 100644 --- a/clients/client-appsync/src/commands/GetTypeCommand.ts +++ b/clients/client-appsync/src/commands/GetTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTypeRequest, GetTypeResponse } from "../models/models_0"; +import type { GetTypeRequest, GetTypeResponse } from "../models/models_0"; import { GetType } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListApiKeysCommand.ts b/clients/client-appsync/src/commands/ListApiKeysCommand.ts index bcde7f14a7afe..d12c7be4c8601 100644 --- a/clients/client-appsync/src/commands/ListApiKeysCommand.ts +++ b/clients/client-appsync/src/commands/ListApiKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApiKeysRequest, ListApiKeysResponse } from "../models/models_0"; +import type { ListApiKeysRequest, ListApiKeysResponse } from "../models/models_0"; import { ListApiKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListApisCommand.ts b/clients/client-appsync/src/commands/ListApisCommand.ts index a9ab4e2430580..59b6b7422950d 100644 --- a/clients/client-appsync/src/commands/ListApisCommand.ts +++ b/clients/client-appsync/src/commands/ListApisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApisRequest, ListApisResponse } from "../models/models_0"; +import type { ListApisRequest, ListApisResponse } from "../models/models_0"; import { ListApis } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListChannelNamespacesCommand.ts b/clients/client-appsync/src/commands/ListChannelNamespacesCommand.ts index fc38940813629..3a10541d45bf9 100644 --- a/clients/client-appsync/src/commands/ListChannelNamespacesCommand.ts +++ b/clients/client-appsync/src/commands/ListChannelNamespacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelNamespacesRequest, ListChannelNamespacesResponse } from "../models/models_0"; +import type { ListChannelNamespacesRequest, ListChannelNamespacesResponse } from "../models/models_0"; import { ListChannelNamespaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListDataSourcesCommand.ts b/clients/client-appsync/src/commands/ListDataSourcesCommand.ts index 98b1e68f0ee11..ace948aa02172 100644 --- a/clients/client-appsync/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-appsync/src/commands/ListDataSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; +import type { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; import { ListDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListDomainNamesCommand.ts b/clients/client-appsync/src/commands/ListDomainNamesCommand.ts index f64b531e970ba..c856fa6e174d3 100644 --- a/clients/client-appsync/src/commands/ListDomainNamesCommand.ts +++ b/clients/client-appsync/src/commands/ListDomainNamesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainNamesRequest, ListDomainNamesResponse } from "../models/models_0"; +import type { ListDomainNamesRequest, ListDomainNamesResponse } from "../models/models_0"; import { ListDomainNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListFunctionsCommand.ts b/clients/client-appsync/src/commands/ListFunctionsCommand.ts index 4649a35650c9b..e7507584f7b43 100644 --- a/clients/client-appsync/src/commands/ListFunctionsCommand.ts +++ b/clients/client-appsync/src/commands/ListFunctionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFunctionsRequest, ListFunctionsResponse } from "../models/models_0"; +import type { ListFunctionsRequest, ListFunctionsResponse } from "../models/models_0"; import { ListFunctions } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListGraphqlApisCommand.ts b/clients/client-appsync/src/commands/ListGraphqlApisCommand.ts index d40fd82781824..eeb0ebda8db42 100644 --- a/clients/client-appsync/src/commands/ListGraphqlApisCommand.ts +++ b/clients/client-appsync/src/commands/ListGraphqlApisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGraphqlApisRequest, ListGraphqlApisResponse } from "../models/models_0"; +import type { ListGraphqlApisRequest, ListGraphqlApisResponse } from "../models/models_0"; import { ListGraphqlApis } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListResolversByFunctionCommand.ts b/clients/client-appsync/src/commands/ListResolversByFunctionCommand.ts index e1b20774e57f9..f20237a81169a 100644 --- a/clients/client-appsync/src/commands/ListResolversByFunctionCommand.ts +++ b/clients/client-appsync/src/commands/ListResolversByFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResolversByFunctionRequest, ListResolversByFunctionResponse } from "../models/models_0"; +import type { ListResolversByFunctionRequest, ListResolversByFunctionResponse } from "../models/models_0"; import { ListResolversByFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListResolversCommand.ts b/clients/client-appsync/src/commands/ListResolversCommand.ts index a9fdf802ef275..6a041220a8fe9 100644 --- a/clients/client-appsync/src/commands/ListResolversCommand.ts +++ b/clients/client-appsync/src/commands/ListResolversCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResolversRequest, ListResolversResponse } from "../models/models_0"; +import type { ListResolversRequest, ListResolversResponse } from "../models/models_0"; import { ListResolvers } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListSourceApiAssociationsCommand.ts b/clients/client-appsync/src/commands/ListSourceApiAssociationsCommand.ts index fb1413e688f16..d5377923abaa7 100644 --- a/clients/client-appsync/src/commands/ListSourceApiAssociationsCommand.ts +++ b/clients/client-appsync/src/commands/ListSourceApiAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSourceApiAssociationsRequest, ListSourceApiAssociationsResponse } from "../models/models_0"; +import type { ListSourceApiAssociationsRequest, ListSourceApiAssociationsResponse } from "../models/models_0"; import { ListSourceApiAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListTagsForResourceCommand.ts b/clients/client-appsync/src/commands/ListTagsForResourceCommand.ts index bd832c9eab043..f0014b5619a02 100644 --- a/clients/client-appsync/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-appsync/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListTypesByAssociationCommand.ts b/clients/client-appsync/src/commands/ListTypesByAssociationCommand.ts index 0e7419bea61ad..42c13cf8aad29 100644 --- a/clients/client-appsync/src/commands/ListTypesByAssociationCommand.ts +++ b/clients/client-appsync/src/commands/ListTypesByAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTypesByAssociationRequest, ListTypesByAssociationResponse } from "../models/models_0"; +import type { ListTypesByAssociationRequest, ListTypesByAssociationResponse } from "../models/models_0"; import { ListTypesByAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/ListTypesCommand.ts b/clients/client-appsync/src/commands/ListTypesCommand.ts index b4c1ae402805b..ce7e869c9ec49 100644 --- a/clients/client-appsync/src/commands/ListTypesCommand.ts +++ b/clients/client-appsync/src/commands/ListTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTypesRequest, ListTypesResponse } from "../models/models_0"; +import type { ListTypesRequest, ListTypesResponse } from "../models/models_0"; import { ListTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/PutGraphqlApiEnvironmentVariablesCommand.ts b/clients/client-appsync/src/commands/PutGraphqlApiEnvironmentVariablesCommand.ts index 529048e9457a8..182df0e7d320d 100644 --- a/clients/client-appsync/src/commands/PutGraphqlApiEnvironmentVariablesCommand.ts +++ b/clients/client-appsync/src/commands/PutGraphqlApiEnvironmentVariablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutGraphqlApiEnvironmentVariablesRequest, PutGraphqlApiEnvironmentVariablesResponse, } from "../models/models_0"; diff --git a/clients/client-appsync/src/commands/StartDataSourceIntrospectionCommand.ts b/clients/client-appsync/src/commands/StartDataSourceIntrospectionCommand.ts index dbbf009c36d17..46b3346f66520 100644 --- a/clients/client-appsync/src/commands/StartDataSourceIntrospectionCommand.ts +++ b/clients/client-appsync/src/commands/StartDataSourceIntrospectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDataSourceIntrospectionRequest, StartDataSourceIntrospectionResponse } from "../models/models_0"; +import type { StartDataSourceIntrospectionRequest, StartDataSourceIntrospectionResponse } from "../models/models_0"; import { StartDataSourceIntrospection } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/StartSchemaCreationCommand.ts b/clients/client-appsync/src/commands/StartSchemaCreationCommand.ts index b8461ea479fff..1cfb0ed3ecb10 100644 --- a/clients/client-appsync/src/commands/StartSchemaCreationCommand.ts +++ b/clients/client-appsync/src/commands/StartSchemaCreationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSchemaCreationRequest, StartSchemaCreationResponse } from "../models/models_0"; +import type { StartSchemaCreationRequest, StartSchemaCreationResponse } from "../models/models_0"; import { StartSchemaCreation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/StartSchemaMergeCommand.ts b/clients/client-appsync/src/commands/StartSchemaMergeCommand.ts index 691498f5255ba..48556b2fd5ebb 100644 --- a/clients/client-appsync/src/commands/StartSchemaMergeCommand.ts +++ b/clients/client-appsync/src/commands/StartSchemaMergeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSchemaMergeRequest, StartSchemaMergeResponse } from "../models/models_0"; +import type { StartSchemaMergeRequest, StartSchemaMergeResponse } from "../models/models_0"; import { StartSchemaMerge } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/TagResourceCommand.ts b/clients/client-appsync/src/commands/TagResourceCommand.ts index 66d85a751ec96..1ec994450a1c6 100644 --- a/clients/client-appsync/src/commands/TagResourceCommand.ts +++ b/clients/client-appsync/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UntagResourceCommand.ts b/clients/client-appsync/src/commands/UntagResourceCommand.ts index 677994a613ba0..add062c8cccba 100644 --- a/clients/client-appsync/src/commands/UntagResourceCommand.ts +++ b/clients/client-appsync/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateApiCacheCommand.ts b/clients/client-appsync/src/commands/UpdateApiCacheCommand.ts index 0054d3410e1e3..644ca8b006809 100644 --- a/clients/client-appsync/src/commands/UpdateApiCacheCommand.ts +++ b/clients/client-appsync/src/commands/UpdateApiCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApiCacheRequest, UpdateApiCacheResponse } from "../models/models_0"; +import type { UpdateApiCacheRequest, UpdateApiCacheResponse } from "../models/models_0"; import { UpdateApiCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateApiCommand.ts b/clients/client-appsync/src/commands/UpdateApiCommand.ts index c1c744886cedd..15f5a81ca5672 100644 --- a/clients/client-appsync/src/commands/UpdateApiCommand.ts +++ b/clients/client-appsync/src/commands/UpdateApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApiRequest, UpdateApiResponse } from "../models/models_0"; +import type { UpdateApiRequest, UpdateApiResponse } from "../models/models_0"; import { UpdateApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateApiKeyCommand.ts b/clients/client-appsync/src/commands/UpdateApiKeyCommand.ts index 7dce6ab890dc4..d16bb9a93423c 100644 --- a/clients/client-appsync/src/commands/UpdateApiKeyCommand.ts +++ b/clients/client-appsync/src/commands/UpdateApiKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApiKeyRequest, UpdateApiKeyResponse } from "../models/models_0"; +import type { UpdateApiKeyRequest, UpdateApiKeyResponse } from "../models/models_0"; import { UpdateApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateChannelNamespaceCommand.ts b/clients/client-appsync/src/commands/UpdateChannelNamespaceCommand.ts index 30bc0edff8baf..aeed5b5b0a068 100644 --- a/clients/client-appsync/src/commands/UpdateChannelNamespaceCommand.ts +++ b/clients/client-appsync/src/commands/UpdateChannelNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChannelNamespaceRequest, UpdateChannelNamespaceResponse } from "../models/models_0"; +import type { UpdateChannelNamespaceRequest, UpdateChannelNamespaceResponse } from "../models/models_0"; import { UpdateChannelNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateDataSourceCommand.ts b/clients/client-appsync/src/commands/UpdateDataSourceCommand.ts index f0ecefd60e3fb..c65bb072de94e 100644 --- a/clients/client-appsync/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-appsync/src/commands/UpdateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_0"; +import type { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_0"; import { UpdateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateDomainNameCommand.ts b/clients/client-appsync/src/commands/UpdateDomainNameCommand.ts index fd80c2ac696c3..2b2307a2fe20b 100644 --- a/clients/client-appsync/src/commands/UpdateDomainNameCommand.ts +++ b/clients/client-appsync/src/commands/UpdateDomainNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainNameRequest, UpdateDomainNameResponse } from "../models/models_0"; +import type { UpdateDomainNameRequest, UpdateDomainNameResponse } from "../models/models_0"; import { UpdateDomainName } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateFunctionCommand.ts b/clients/client-appsync/src/commands/UpdateFunctionCommand.ts index 1e070a33a90ab..c8b5cf3456ab5 100644 --- a/clients/client-appsync/src/commands/UpdateFunctionCommand.ts +++ b/clients/client-appsync/src/commands/UpdateFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFunctionRequest, UpdateFunctionResponse } from "../models/models_0"; +import type { UpdateFunctionRequest, UpdateFunctionResponse } from "../models/models_0"; import { UpdateFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateGraphqlApiCommand.ts b/clients/client-appsync/src/commands/UpdateGraphqlApiCommand.ts index 681cb0b0d9a2f..c31ba9aaad034 100644 --- a/clients/client-appsync/src/commands/UpdateGraphqlApiCommand.ts +++ b/clients/client-appsync/src/commands/UpdateGraphqlApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGraphqlApiRequest, UpdateGraphqlApiResponse } from "../models/models_0"; +import type { UpdateGraphqlApiRequest, UpdateGraphqlApiResponse } from "../models/models_0"; import { UpdateGraphqlApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateResolverCommand.ts b/clients/client-appsync/src/commands/UpdateResolverCommand.ts index f05c4a08dcd16..4168e0fa2bb13 100644 --- a/clients/client-appsync/src/commands/UpdateResolverCommand.ts +++ b/clients/client-appsync/src/commands/UpdateResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResolverRequest, UpdateResolverResponse } from "../models/models_0"; +import type { UpdateResolverRequest, UpdateResolverResponse } from "../models/models_0"; import { UpdateResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateSourceApiAssociationCommand.ts b/clients/client-appsync/src/commands/UpdateSourceApiAssociationCommand.ts index 35d0ff595fb1c..48fec6cdc6616 100644 --- a/clients/client-appsync/src/commands/UpdateSourceApiAssociationCommand.ts +++ b/clients/client-appsync/src/commands/UpdateSourceApiAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSourceApiAssociationRequest, UpdateSourceApiAssociationResponse } from "../models/models_0"; +import type { UpdateSourceApiAssociationRequest, UpdateSourceApiAssociationResponse } from "../models/models_0"; import { UpdateSourceApiAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/commands/UpdateTypeCommand.ts b/clients/client-appsync/src/commands/UpdateTypeCommand.ts index b73ef35b16dd4..2fcb2d4828482 100644 --- a/clients/client-appsync/src/commands/UpdateTypeCommand.ts +++ b/clients/client-appsync/src/commands/UpdateTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; +import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTypeRequest, UpdateTypeResponse } from "../models/models_0"; +import type { UpdateTypeRequest, UpdateTypeResponse } from "../models/models_0"; import { UpdateType } from "../schemas/schemas_0"; /** diff --git a/clients/client-appsync/src/endpoint/EndpointParameters.ts b/clients/client-appsync/src/endpoint/EndpointParameters.ts index c79dc3eb47320..44498bf6152c8 100644 --- a/clients/client-appsync/src/endpoint/EndpointParameters.ts +++ b/clients/client-appsync/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-appsync/src/endpoint/endpointResolver.ts b/clients/client-appsync/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-appsync/src/endpoint/endpointResolver.ts +++ b/clients/client-appsync/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-appsync/src/extensionConfiguration.ts b/clients/client-appsync/src/extensionConfiguration.ts index e2cba8df5ad42..487c6fcfd46c6 100644 --- a/clients/client-appsync/src/extensionConfiguration.ts +++ b/clients/client-appsync/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-appsync/src/models/AppSyncServiceException.ts b/clients/client-appsync/src/models/AppSyncServiceException.ts index 5c2b7df1f9f69..e1c4c6009f5bc 100644 --- a/clients/client-appsync/src/models/AppSyncServiceException.ts +++ b/clients/client-appsync/src/models/AppSyncServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-appsync/src/models/errors.ts b/clients/client-appsync/src/models/errors.ts index 6d993f2a39bfc..93394592061d6 100644 --- a/clients/client-appsync/src/models/errors.ts +++ b/clients/client-appsync/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AppSyncServiceException as __BaseException } from "./AppSyncServiceException"; import { BadRequestReason } from "./enums"; diff --git a/clients/client-appsync/src/pagination/Interfaces.ts b/clients/client-appsync/src/pagination/Interfaces.ts index 0a17ae1f8db1c..358026b8fdde2 100644 --- a/clients/client-appsync/src/pagination/Interfaces.ts +++ b/clients/client-appsync/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; diff --git a/clients/client-appsync/src/pagination/ListApiKeysPaginator.ts b/clients/client-appsync/src/pagination/ListApiKeysPaginator.ts index 4a38475f3058f..8e6b18be451fa 100644 --- a/clients/client-appsync/src/pagination/ListApiKeysPaginator.ts +++ b/clients/client-appsync/src/pagination/ListApiKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { ListApiKeysCommand, ListApiKeysCommandInput, ListApiKeysCommandOutput } from "../commands/ListApiKeysCommand"; diff --git a/clients/client-appsync/src/pagination/ListApisPaginator.ts b/clients/client-appsync/src/pagination/ListApisPaginator.ts index 9d8609dab04ae..541f8c1bb8fb1 100644 --- a/clients/client-appsync/src/pagination/ListApisPaginator.ts +++ b/clients/client-appsync/src/pagination/ListApisPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { ListApisCommand, ListApisCommandInput, ListApisCommandOutput } from "../commands/ListApisCommand"; diff --git a/clients/client-appsync/src/pagination/ListChannelNamespacesPaginator.ts b/clients/client-appsync/src/pagination/ListChannelNamespacesPaginator.ts index 926cb1aacefce..d2d2b36d61d30 100644 --- a/clients/client-appsync/src/pagination/ListChannelNamespacesPaginator.ts +++ b/clients/client-appsync/src/pagination/ListChannelNamespacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { diff --git a/clients/client-appsync/src/pagination/ListDataSourcesPaginator.ts b/clients/client-appsync/src/pagination/ListDataSourcesPaginator.ts index 8dd0fd2284dcc..8f154fc0154bc 100644 --- a/clients/client-appsync/src/pagination/ListDataSourcesPaginator.ts +++ b/clients/client-appsync/src/pagination/ListDataSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { diff --git a/clients/client-appsync/src/pagination/ListDomainNamesPaginator.ts b/clients/client-appsync/src/pagination/ListDomainNamesPaginator.ts index 66ea2990dc313..cdcb05acde13f 100644 --- a/clients/client-appsync/src/pagination/ListDomainNamesPaginator.ts +++ b/clients/client-appsync/src/pagination/ListDomainNamesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { diff --git a/clients/client-appsync/src/pagination/ListFunctionsPaginator.ts b/clients/client-appsync/src/pagination/ListFunctionsPaginator.ts index 6531e3c135ce3..4b94d90f95bcf 100644 --- a/clients/client-appsync/src/pagination/ListFunctionsPaginator.ts +++ b/clients/client-appsync/src/pagination/ListFunctionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { diff --git a/clients/client-appsync/src/pagination/ListGraphqlApisPaginator.ts b/clients/client-appsync/src/pagination/ListGraphqlApisPaginator.ts index 94bc096da29d5..6ede9fd45edc4 100644 --- a/clients/client-appsync/src/pagination/ListGraphqlApisPaginator.ts +++ b/clients/client-appsync/src/pagination/ListGraphqlApisPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { diff --git a/clients/client-appsync/src/pagination/ListResolversByFunctionPaginator.ts b/clients/client-appsync/src/pagination/ListResolversByFunctionPaginator.ts index 46d74f214451f..c0b55df67330a 100644 --- a/clients/client-appsync/src/pagination/ListResolversByFunctionPaginator.ts +++ b/clients/client-appsync/src/pagination/ListResolversByFunctionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { diff --git a/clients/client-appsync/src/pagination/ListResolversPaginator.ts b/clients/client-appsync/src/pagination/ListResolversPaginator.ts index 26e9c57d89b85..2a507f07bfb50 100644 --- a/clients/client-appsync/src/pagination/ListResolversPaginator.ts +++ b/clients/client-appsync/src/pagination/ListResolversPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { diff --git a/clients/client-appsync/src/pagination/ListSourceApiAssociationsPaginator.ts b/clients/client-appsync/src/pagination/ListSourceApiAssociationsPaginator.ts index c20e228e3af01..a3d9abe2d0576 100644 --- a/clients/client-appsync/src/pagination/ListSourceApiAssociationsPaginator.ts +++ b/clients/client-appsync/src/pagination/ListSourceApiAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { diff --git a/clients/client-appsync/src/pagination/ListTypesByAssociationPaginator.ts b/clients/client-appsync/src/pagination/ListTypesByAssociationPaginator.ts index 8c41930f65441..d974f2d3b4dae 100644 --- a/clients/client-appsync/src/pagination/ListTypesByAssociationPaginator.ts +++ b/clients/client-appsync/src/pagination/ListTypesByAssociationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { diff --git a/clients/client-appsync/src/pagination/ListTypesPaginator.ts b/clients/client-appsync/src/pagination/ListTypesPaginator.ts index 2b854d09e27fd..a7c3298a4aae3 100644 --- a/clients/client-appsync/src/pagination/ListTypesPaginator.ts +++ b/clients/client-appsync/src/pagination/ListTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AppSyncClient } from "../AppSyncClient"; import { ListTypesCommand, ListTypesCommandInput, ListTypesCommandOutput } from "../commands/ListTypesCommand"; diff --git a/clients/client-appsync/src/runtimeConfig.browser.ts b/clients/client-appsync/src/runtimeConfig.browser.ts index 99718fbb1e7e0..ad8204a387370 100644 --- a/clients/client-appsync/src/runtimeConfig.browser.ts +++ b/clients/client-appsync/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppSyncClientConfig } from "./AppSyncClient"; + +import type { AppSyncClientConfig } from "./AppSyncClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-appsync/src/runtimeConfig.native.ts b/clients/client-appsync/src/runtimeConfig.native.ts index a26480e0ff578..f6551189aefd9 100644 --- a/clients/client-appsync/src/runtimeConfig.native.ts +++ b/clients/client-appsync/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AppSyncClientConfig } from "./AppSyncClient"; +import type { AppSyncClientConfig } from "./AppSyncClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-appsync/src/runtimeConfig.shared.ts b/clients/client-appsync/src/runtimeConfig.shared.ts index eed37c103fc13..665c9fb28fcbe 100644 --- a/clients/client-appsync/src/runtimeConfig.shared.ts +++ b/clients/client-appsync/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AppSyncClientConfig } from "./AppSyncClient"; +import type { AppSyncClientConfig } from "./AppSyncClient"; import { defaultAppSyncHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-appsync/src/runtimeConfig.ts b/clients/client-appsync/src/runtimeConfig.ts index 71fc715c22f6d..8388ff9f04f82 100644 --- a/clients/client-appsync/src/runtimeConfig.ts +++ b/clients/client-appsync/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AppSyncClientConfig } from "./AppSyncClient"; + +import type { AppSyncClientConfig } from "./AppSyncClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-appsync/src/runtimeExtensions.ts b/clients/client-appsync/src/runtimeExtensions.ts index 21748cf19c86d..6efa53277fd95 100644 --- a/clients/client-appsync/src/runtimeExtensions.ts +++ b/clients/client-appsync/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AppSyncExtensionConfiguration } from "./extensionConfiguration"; +import type { AppSyncExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-appsync/src/schemas/schemas_0.ts b/clients/client-appsync/src/schemas/schemas_0.ts index c816e991b6379..001941d0c45c8 100644 --- a/clients/client-appsync/src/schemas/schemas_0.ts +++ b/clients/client-appsync/src/schemas/schemas_0.ts @@ -524,7 +524,7 @@ const n0 = "com.amazonaws.appsync"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-arc-region-switch/package.json b/clients/client-arc-region-switch/package.json index 18f5e7ef98134..560dd50786801 100644 --- a/clients/client-arc-region-switch/package.json +++ b/clients/client-arc-region-switch/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-arc-region-switch/src/ARCRegionSwitch.ts b/clients/client-arc-region-switch/src/ARCRegionSwitch.ts index a7bad19541812..96f1ca866d27d 100644 --- a/clients/client-arc-region-switch/src/ARCRegionSwitch.ts +++ b/clients/client-arc-region-switch/src/ARCRegionSwitch.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ARCRegionSwitchClient, ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient"; +import { ARCRegionSwitchClient } from "./ARCRegionSwitchClient"; import { ApprovePlanExecutionStepCommand, ApprovePlanExecutionStepCommandInput, diff --git a/clients/client-arc-region-switch/src/ARCRegionSwitchClient.ts b/clients/client-arc-region-switch/src/ARCRegionSwitchClient.ts index 973416eb09751..6297a359f3d95 100644 --- a/clients/client-arc-region-switch/src/ARCRegionSwitchClient.ts +++ b/clients/client-arc-region-switch/src/ARCRegionSwitchClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultARCRegionSwitchHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -108,7 +117,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-arc-region-switch/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-arc-region-switch/src/auth/httpAuthExtensionConfiguration.ts index 51315f5d54d47..400b7a36835f2 100644 --- a/clients/client-arc-region-switch/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-arc-region-switch/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ARCRegionSwitchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ARCRegionSwitchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-arc-region-switch/src/auth/httpAuthSchemeProvider.ts b/clients/client-arc-region-switch/src/auth/httpAuthSchemeProvider.ts index c1b23ec831234..cabd4b5405da7 100644 --- a/clients/client-arc-region-switch/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-arc-region-switch/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ARCRegionSwitchClientConfig, ARCRegionSwitchClientResolvedConfig } from "../ARCRegionSwitchClient"; +import { type ARCRegionSwitchClientResolvedConfig, ARCRegionSwitchClientConfig } from "../ARCRegionSwitchClient"; /** * @internal diff --git a/clients/client-arc-region-switch/src/commands/ApprovePlanExecutionStepCommand.ts b/clients/client-arc-region-switch/src/commands/ApprovePlanExecutionStepCommand.ts index e8d00de98ddf1..1ab926d633ebd 100644 --- a/clients/client-arc-region-switch/src/commands/ApprovePlanExecutionStepCommand.ts +++ b/clients/client-arc-region-switch/src/commands/ApprovePlanExecutionStepCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApprovePlanExecutionStepRequest, ApprovePlanExecutionStepResponse } from "../models/models_0"; +import type { ApprovePlanExecutionStepRequest, ApprovePlanExecutionStepResponse } from "../models/models_0"; import { ApprovePlanExecutionStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/CancelPlanExecutionCommand.ts b/clients/client-arc-region-switch/src/commands/CancelPlanExecutionCommand.ts index 8ea6a33b1817e..0b3ddc527fc6d 100644 --- a/clients/client-arc-region-switch/src/commands/CancelPlanExecutionCommand.ts +++ b/clients/client-arc-region-switch/src/commands/CancelPlanExecutionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelPlanExecutionRequest, CancelPlanExecutionResponse } from "../models/models_0"; +import type { CancelPlanExecutionRequest, CancelPlanExecutionResponse } from "../models/models_0"; import { CancelPlanExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/CreatePlanCommand.ts b/clients/client-arc-region-switch/src/commands/CreatePlanCommand.ts index cc51efbee9667..1b2964d84aee0 100644 --- a/clients/client-arc-region-switch/src/commands/CreatePlanCommand.ts +++ b/clients/client-arc-region-switch/src/commands/CreatePlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePlanRequest, CreatePlanResponse } from "../models/models_0"; +import type { CreatePlanRequest, CreatePlanResponse } from "../models/models_0"; import { CreatePlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/DeletePlanCommand.ts b/clients/client-arc-region-switch/src/commands/DeletePlanCommand.ts index 4965e8d8cefed..fee9c272b3479 100644 --- a/clients/client-arc-region-switch/src/commands/DeletePlanCommand.ts +++ b/clients/client-arc-region-switch/src/commands/DeletePlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePlanRequest, DeletePlanResponse } from "../models/models_0"; +import type { DeletePlanRequest, DeletePlanResponse } from "../models/models_0"; import { DeletePlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/GetPlanCommand.ts b/clients/client-arc-region-switch/src/commands/GetPlanCommand.ts index 45f1a221044cf..3de9879288bc2 100644 --- a/clients/client-arc-region-switch/src/commands/GetPlanCommand.ts +++ b/clients/client-arc-region-switch/src/commands/GetPlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPlanRequest, GetPlanResponse } from "../models/models_0"; +import type { GetPlanRequest, GetPlanResponse } from "../models/models_0"; import { GetPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/GetPlanEvaluationStatusCommand.ts b/clients/client-arc-region-switch/src/commands/GetPlanEvaluationStatusCommand.ts index 0e087bbe17483..0e0132afba186 100644 --- a/clients/client-arc-region-switch/src/commands/GetPlanEvaluationStatusCommand.ts +++ b/clients/client-arc-region-switch/src/commands/GetPlanEvaluationStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPlanEvaluationStatusRequest, GetPlanEvaluationStatusResponse } from "../models/models_0"; +import type { GetPlanEvaluationStatusRequest, GetPlanEvaluationStatusResponse } from "../models/models_0"; import { GetPlanEvaluationStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/GetPlanExecutionCommand.ts b/clients/client-arc-region-switch/src/commands/GetPlanExecutionCommand.ts index ce47d08225905..e17b79b644a9a 100644 --- a/clients/client-arc-region-switch/src/commands/GetPlanExecutionCommand.ts +++ b/clients/client-arc-region-switch/src/commands/GetPlanExecutionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPlanExecutionRequest, GetPlanExecutionResponse } from "../models/models_0"; +import type { GetPlanExecutionRequest, GetPlanExecutionResponse } from "../models/models_0"; import { GetPlanExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/GetPlanInRegionCommand.ts b/clients/client-arc-region-switch/src/commands/GetPlanInRegionCommand.ts index caf1a3bb249b8..58d3862bc6507 100644 --- a/clients/client-arc-region-switch/src/commands/GetPlanInRegionCommand.ts +++ b/clients/client-arc-region-switch/src/commands/GetPlanInRegionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPlanInRegionRequest, GetPlanInRegionResponse } from "../models/models_0"; +import type { GetPlanInRegionRequest, GetPlanInRegionResponse } from "../models/models_0"; import { GetPlanInRegion } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/ListPlanExecutionEventsCommand.ts b/clients/client-arc-region-switch/src/commands/ListPlanExecutionEventsCommand.ts index e0ae9c6014ab7..4b6ba8420421e 100644 --- a/clients/client-arc-region-switch/src/commands/ListPlanExecutionEventsCommand.ts +++ b/clients/client-arc-region-switch/src/commands/ListPlanExecutionEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPlanExecutionEventsRequest, ListPlanExecutionEventsResponse } from "../models/models_0"; +import type { ListPlanExecutionEventsRequest, ListPlanExecutionEventsResponse } from "../models/models_0"; import { ListPlanExecutionEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/ListPlanExecutionsCommand.ts b/clients/client-arc-region-switch/src/commands/ListPlanExecutionsCommand.ts index 5eb2cd3ee291e..846df5a49be1f 100644 --- a/clients/client-arc-region-switch/src/commands/ListPlanExecutionsCommand.ts +++ b/clients/client-arc-region-switch/src/commands/ListPlanExecutionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPlanExecutionsRequest, ListPlanExecutionsResponse } from "../models/models_0"; +import type { ListPlanExecutionsRequest, ListPlanExecutionsResponse } from "../models/models_0"; import { ListPlanExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/ListPlansCommand.ts b/clients/client-arc-region-switch/src/commands/ListPlansCommand.ts index c40054c9d4c79..05fb67f108e6f 100644 --- a/clients/client-arc-region-switch/src/commands/ListPlansCommand.ts +++ b/clients/client-arc-region-switch/src/commands/ListPlansCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPlansRequest, ListPlansResponse } from "../models/models_0"; +import type { ListPlansRequest, ListPlansResponse } from "../models/models_0"; import { ListPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/ListPlansInRegionCommand.ts b/clients/client-arc-region-switch/src/commands/ListPlansInRegionCommand.ts index 32123bb2fd6bc..954f93de69756 100644 --- a/clients/client-arc-region-switch/src/commands/ListPlansInRegionCommand.ts +++ b/clients/client-arc-region-switch/src/commands/ListPlansInRegionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPlansInRegionRequest, ListPlansInRegionResponse } from "../models/models_0"; +import type { ListPlansInRegionRequest, ListPlansInRegionResponse } from "../models/models_0"; import { ListPlansInRegion } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/ListRoute53HealthChecksCommand.ts b/clients/client-arc-region-switch/src/commands/ListRoute53HealthChecksCommand.ts index bfcf22844afa9..87260ba7ff05c 100644 --- a/clients/client-arc-region-switch/src/commands/ListRoute53HealthChecksCommand.ts +++ b/clients/client-arc-region-switch/src/commands/ListRoute53HealthChecksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoute53HealthChecksRequest, ListRoute53HealthChecksResponse } from "../models/models_0"; +import type { ListRoute53HealthChecksRequest, ListRoute53HealthChecksResponse } from "../models/models_0"; import { ListRoute53HealthChecks } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/ListTagsForResourceCommand.ts b/clients/client-arc-region-switch/src/commands/ListTagsForResourceCommand.ts index e73097428a01c..976182abce19d 100644 --- a/clients/client-arc-region-switch/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-arc-region-switch/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/StartPlanExecutionCommand.ts b/clients/client-arc-region-switch/src/commands/StartPlanExecutionCommand.ts index 0ee2c3dd2c4dd..c41c90dee0c8a 100644 --- a/clients/client-arc-region-switch/src/commands/StartPlanExecutionCommand.ts +++ b/clients/client-arc-region-switch/src/commands/StartPlanExecutionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPlanExecutionRequest, StartPlanExecutionResponse } from "../models/models_0"; +import type { StartPlanExecutionRequest, StartPlanExecutionResponse } from "../models/models_0"; import { StartPlanExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/TagResourceCommand.ts b/clients/client-arc-region-switch/src/commands/TagResourceCommand.ts index b8ddae6b12b47..f3eb5d5f42dc3 100644 --- a/clients/client-arc-region-switch/src/commands/TagResourceCommand.ts +++ b/clients/client-arc-region-switch/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/UntagResourceCommand.ts b/clients/client-arc-region-switch/src/commands/UntagResourceCommand.ts index 9334727a75a00..213f60c25337b 100644 --- a/clients/client-arc-region-switch/src/commands/UntagResourceCommand.ts +++ b/clients/client-arc-region-switch/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/UpdatePlanCommand.ts b/clients/client-arc-region-switch/src/commands/UpdatePlanCommand.ts index 176db18bd7b31..5c64263590f1a 100644 --- a/clients/client-arc-region-switch/src/commands/UpdatePlanCommand.ts +++ b/clients/client-arc-region-switch/src/commands/UpdatePlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePlanRequest, UpdatePlanResponse } from "../models/models_0"; +import type { UpdatePlanRequest, UpdatePlanResponse } from "../models/models_0"; import { UpdatePlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/UpdatePlanExecutionCommand.ts b/clients/client-arc-region-switch/src/commands/UpdatePlanExecutionCommand.ts index 7dc451e97fd2f..e80bacdeb96fc 100644 --- a/clients/client-arc-region-switch/src/commands/UpdatePlanExecutionCommand.ts +++ b/clients/client-arc-region-switch/src/commands/UpdatePlanExecutionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePlanExecutionRequest, UpdatePlanExecutionResponse } from "../models/models_0"; +import type { UpdatePlanExecutionRequest, UpdatePlanExecutionResponse } from "../models/models_0"; import { UpdatePlanExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/commands/UpdatePlanExecutionStepCommand.ts b/clients/client-arc-region-switch/src/commands/UpdatePlanExecutionStepCommand.ts index 49bd1901b2fd8..4f461d16930af 100644 --- a/clients/client-arc-region-switch/src/commands/UpdatePlanExecutionStepCommand.ts +++ b/clients/client-arc-region-switch/src/commands/UpdatePlanExecutionStepCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCRegionSwitchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCRegionSwitchClient"; +import type { + ARCRegionSwitchClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ARCRegionSwitchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePlanExecutionStepRequest, UpdatePlanExecutionStepResponse } from "../models/models_0"; +import type { UpdatePlanExecutionStepRequest, UpdatePlanExecutionStepResponse } from "../models/models_0"; import { UpdatePlanExecutionStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-region-switch/src/endpoint/EndpointParameters.ts b/clients/client-arc-region-switch/src/endpoint/EndpointParameters.ts index 24908eb9a599f..a9a28063d9c06 100644 --- a/clients/client-arc-region-switch/src/endpoint/EndpointParameters.ts +++ b/clients/client-arc-region-switch/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-arc-region-switch/src/endpoint/endpointResolver.ts b/clients/client-arc-region-switch/src/endpoint/endpointResolver.ts index 81f43935a1d2f..d62072b435db7 100644 --- a/clients/client-arc-region-switch/src/endpoint/endpointResolver.ts +++ b/clients/client-arc-region-switch/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-arc-region-switch/src/extensionConfiguration.ts b/clients/client-arc-region-switch/src/extensionConfiguration.ts index 9884d5ea64464..154dbf6ddac9b 100644 --- a/clients/client-arc-region-switch/src/extensionConfiguration.ts +++ b/clients/client-arc-region-switch/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-arc-region-switch/src/models/ARCRegionSwitchServiceException.ts b/clients/client-arc-region-switch/src/models/ARCRegionSwitchServiceException.ts index 3611aff30f7c8..937030108dca6 100644 --- a/clients/client-arc-region-switch/src/models/ARCRegionSwitchServiceException.ts +++ b/clients/client-arc-region-switch/src/models/ARCRegionSwitchServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-arc-region-switch/src/models/errors.ts b/clients/client-arc-region-switch/src/models/errors.ts index 61528a2cfc327..0825d16fbb0a3 100644 --- a/clients/client-arc-region-switch/src/models/errors.ts +++ b/clients/client-arc-region-switch/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ARCRegionSwitchServiceException as __BaseException } from "./ARCRegionSwitchServiceException"; diff --git a/clients/client-arc-region-switch/src/pagination/GetPlanEvaluationStatusPaginator.ts b/clients/client-arc-region-switch/src/pagination/GetPlanEvaluationStatusPaginator.ts index 77e23bd9c4976..301bab1797a9d 100644 --- a/clients/client-arc-region-switch/src/pagination/GetPlanEvaluationStatusPaginator.ts +++ b/clients/client-arc-region-switch/src/pagination/GetPlanEvaluationStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient"; import { diff --git a/clients/client-arc-region-switch/src/pagination/GetPlanExecutionPaginator.ts b/clients/client-arc-region-switch/src/pagination/GetPlanExecutionPaginator.ts index dad74cd343099..9aef5536329bd 100644 --- a/clients/client-arc-region-switch/src/pagination/GetPlanExecutionPaginator.ts +++ b/clients/client-arc-region-switch/src/pagination/GetPlanExecutionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient"; import { diff --git a/clients/client-arc-region-switch/src/pagination/Interfaces.ts b/clients/client-arc-region-switch/src/pagination/Interfaces.ts index 39ea5d57ecaa8..1805f52d049f4 100644 --- a/clients/client-arc-region-switch/src/pagination/Interfaces.ts +++ b/clients/client-arc-region-switch/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient"; diff --git a/clients/client-arc-region-switch/src/pagination/ListPlanExecutionEventsPaginator.ts b/clients/client-arc-region-switch/src/pagination/ListPlanExecutionEventsPaginator.ts index b9349abb68254..f6dead20289f9 100644 --- a/clients/client-arc-region-switch/src/pagination/ListPlanExecutionEventsPaginator.ts +++ b/clients/client-arc-region-switch/src/pagination/ListPlanExecutionEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient"; import { diff --git a/clients/client-arc-region-switch/src/pagination/ListPlanExecutionsPaginator.ts b/clients/client-arc-region-switch/src/pagination/ListPlanExecutionsPaginator.ts index 5c19e573404dc..5318db409f3ff 100644 --- a/clients/client-arc-region-switch/src/pagination/ListPlanExecutionsPaginator.ts +++ b/clients/client-arc-region-switch/src/pagination/ListPlanExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient"; import { diff --git a/clients/client-arc-region-switch/src/pagination/ListPlansInRegionPaginator.ts b/clients/client-arc-region-switch/src/pagination/ListPlansInRegionPaginator.ts index 7ed64d10a30e0..20f9b71f2c062 100644 --- a/clients/client-arc-region-switch/src/pagination/ListPlansInRegionPaginator.ts +++ b/clients/client-arc-region-switch/src/pagination/ListPlansInRegionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient"; import { diff --git a/clients/client-arc-region-switch/src/pagination/ListPlansPaginator.ts b/clients/client-arc-region-switch/src/pagination/ListPlansPaginator.ts index 59c7000a824d1..20fe5b6760589 100644 --- a/clients/client-arc-region-switch/src/pagination/ListPlansPaginator.ts +++ b/clients/client-arc-region-switch/src/pagination/ListPlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient"; import { ListPlansCommand, ListPlansCommandInput, ListPlansCommandOutput } from "../commands/ListPlansCommand"; diff --git a/clients/client-arc-region-switch/src/pagination/ListRoute53HealthChecksPaginator.ts b/clients/client-arc-region-switch/src/pagination/ListRoute53HealthChecksPaginator.ts index c9bb73deb72d9..9a4fc6a2e72b0 100644 --- a/clients/client-arc-region-switch/src/pagination/ListRoute53HealthChecksPaginator.ts +++ b/clients/client-arc-region-switch/src/pagination/ListRoute53HealthChecksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCRegionSwitchClient } from "../ARCRegionSwitchClient"; import { diff --git a/clients/client-arc-region-switch/src/runtimeConfig.browser.ts b/clients/client-arc-region-switch/src/runtimeConfig.browser.ts index ea7509fc3af77..f95678b9b782b 100644 --- a/clients/client-arc-region-switch/src/runtimeConfig.browser.ts +++ b/clients/client-arc-region-switch/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient"; + +import type { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-arc-region-switch/src/runtimeConfig.native.ts b/clients/client-arc-region-switch/src/runtimeConfig.native.ts index fe9e4a39263d1..2dea4f793004f 100644 --- a/clients/client-arc-region-switch/src/runtimeConfig.native.ts +++ b/clients/client-arc-region-switch/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient"; +import type { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-arc-region-switch/src/runtimeConfig.shared.ts b/clients/client-arc-region-switch/src/runtimeConfig.shared.ts index 99ca03e9566d5..5dec67e2b195c 100644 --- a/clients/client-arc-region-switch/src/runtimeConfig.shared.ts +++ b/clients/client-arc-region-switch/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient"; +import type { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient"; import { defaultARCRegionSwitchHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-arc-region-switch/src/runtimeConfig.ts b/clients/client-arc-region-switch/src/runtimeConfig.ts index 44c03bba68dfc..ca0524506bcbe 100644 --- a/clients/client-arc-region-switch/src/runtimeConfig.ts +++ b/clients/client-arc-region-switch/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient"; + +import type { ARCRegionSwitchClientConfig } from "./ARCRegionSwitchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-arc-region-switch/src/runtimeExtensions.ts b/clients/client-arc-region-switch/src/runtimeExtensions.ts index 1126c5a3df74c..9329c3528d8b2 100644 --- a/clients/client-arc-region-switch/src/runtimeExtensions.ts +++ b/clients/client-arc-region-switch/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ARCRegionSwitchExtensionConfiguration } from "./extensionConfiguration"; +import type { ARCRegionSwitchExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-arc-region-switch/src/schemas/schemas_0.ts b/clients/client-arc-region-switch/src/schemas/schemas_0.ts index c150c33a92cba..899e7f015f2c9 100644 --- a/clients/client-arc-region-switch/src/schemas/schemas_0.ts +++ b/clients/client-arc-region-switch/src/schemas/schemas_0.ts @@ -247,7 +247,7 @@ const n0 = "com.amazonaws.arcregionswitch"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-arc-zonal-shift/package.json b/clients/client-arc-zonal-shift/package.json index 927fbe41409b6..c9be1ddc998c3 100644 --- a/clients/client-arc-zonal-shift/package.json +++ b/clients/client-arc-zonal-shift/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-arc-zonal-shift/src/ARCZonalShift.ts b/clients/client-arc-zonal-shift/src/ARCZonalShift.ts index 6bd5811886bac..38f5de09f7bd3 100644 --- a/clients/client-arc-zonal-shift/src/ARCZonalShift.ts +++ b/clients/client-arc-zonal-shift/src/ARCZonalShift.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ARCZonalShiftClient, ARCZonalShiftClientConfig } from "./ARCZonalShiftClient"; +import { ARCZonalShiftClient } from "./ARCZonalShiftClient"; import { CancelPracticeRunCommand, CancelPracticeRunCommandInput, diff --git a/clients/client-arc-zonal-shift/src/ARCZonalShiftClient.ts b/clients/client-arc-zonal-shift/src/ARCZonalShiftClient.ts index e8eabcae4d0ff..cd30065239561 100644 --- a/clients/client-arc-zonal-shift/src/ARCZonalShiftClient.ts +++ b/clients/client-arc-zonal-shift/src/ARCZonalShiftClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultARCZonalShiftHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelPracticeRunCommandInput, CancelPracticeRunCommandOutput } from "./commands/CancelPracticeRunCommand"; @@ -100,7 +109,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-arc-zonal-shift/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-arc-zonal-shift/src/auth/httpAuthExtensionConfiguration.ts index 91023cdf8b97e..0c9ea727d539f 100644 --- a/clients/client-arc-zonal-shift/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-arc-zonal-shift/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ARCZonalShiftHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ARCZonalShiftHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-arc-zonal-shift/src/auth/httpAuthSchemeProvider.ts b/clients/client-arc-zonal-shift/src/auth/httpAuthSchemeProvider.ts index a5d33576b1c75..f95ea61d29a88 100644 --- a/clients/client-arc-zonal-shift/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-arc-zonal-shift/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ARCZonalShiftClientConfig, ARCZonalShiftClientResolvedConfig } from "../ARCZonalShiftClient"; +import { type ARCZonalShiftClientResolvedConfig, ARCZonalShiftClientConfig } from "../ARCZonalShiftClient"; /** * @internal diff --git a/clients/client-arc-zonal-shift/src/commands/CancelPracticeRunCommand.ts b/clients/client-arc-zonal-shift/src/commands/CancelPracticeRunCommand.ts index 111b1641175fb..0bd1842c1c477 100644 --- a/clients/client-arc-zonal-shift/src/commands/CancelPracticeRunCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/CancelPracticeRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelPracticeRunRequest, CancelPracticeRunResponse } from "../models/models_0"; +import type { CancelPracticeRunRequest, CancelPracticeRunResponse } from "../models/models_0"; import { CancelPracticeRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/CancelZonalShiftCommand.ts b/clients/client-arc-zonal-shift/src/commands/CancelZonalShiftCommand.ts index 4a8f494e9dac7..c0a2201ad4df6 100644 --- a/clients/client-arc-zonal-shift/src/commands/CancelZonalShiftCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/CancelZonalShiftCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelZonalShiftRequest, ZonalShift } from "../models/models_0"; +import type { CancelZonalShiftRequest, ZonalShift } from "../models/models_0"; import { CancelZonalShift } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/CreatePracticeRunConfigurationCommand.ts b/clients/client-arc-zonal-shift/src/commands/CreatePracticeRunConfigurationCommand.ts index 32a1dc320232a..262773d2adea5 100644 --- a/clients/client-arc-zonal-shift/src/commands/CreatePracticeRunConfigurationCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/CreatePracticeRunConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePracticeRunConfigurationRequest, CreatePracticeRunConfigurationResponse } from "../models/models_0"; +import type { CreatePracticeRunConfigurationRequest, CreatePracticeRunConfigurationResponse } from "../models/models_0"; import { CreatePracticeRunConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/DeletePracticeRunConfigurationCommand.ts b/clients/client-arc-zonal-shift/src/commands/DeletePracticeRunConfigurationCommand.ts index f03f210d14364..c123bf9f96011 100644 --- a/clients/client-arc-zonal-shift/src/commands/DeletePracticeRunConfigurationCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/DeletePracticeRunConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePracticeRunConfigurationRequest, DeletePracticeRunConfigurationResponse } from "../models/models_0"; +import type { DeletePracticeRunConfigurationRequest, DeletePracticeRunConfigurationResponse } from "../models/models_0"; import { DeletePracticeRunConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/GetAutoshiftObserverNotificationStatusCommand.ts b/clients/client-arc-zonal-shift/src/commands/GetAutoshiftObserverNotificationStatusCommand.ts index 3af60aadafb5f..a6e1e5e94942d 100644 --- a/clients/client-arc-zonal-shift/src/commands/GetAutoshiftObserverNotificationStatusCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/GetAutoshiftObserverNotificationStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAutoshiftObserverNotificationStatusRequest, GetAutoshiftObserverNotificationStatusResponse, } from "../models/models_0"; diff --git a/clients/client-arc-zonal-shift/src/commands/GetManagedResourceCommand.ts b/clients/client-arc-zonal-shift/src/commands/GetManagedResourceCommand.ts index cdfa9bea3bb51..8b4df617edde6 100644 --- a/clients/client-arc-zonal-shift/src/commands/GetManagedResourceCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/GetManagedResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedResourceRequest, GetManagedResourceResponse } from "../models/models_0"; +import type { GetManagedResourceRequest, GetManagedResourceResponse } from "../models/models_0"; import { GetManagedResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/ListAutoshiftsCommand.ts b/clients/client-arc-zonal-shift/src/commands/ListAutoshiftsCommand.ts index 951415f4c4685..1d2bf49524b77 100644 --- a/clients/client-arc-zonal-shift/src/commands/ListAutoshiftsCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/ListAutoshiftsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutoshiftsRequest, ListAutoshiftsResponse } from "../models/models_0"; +import type { ListAutoshiftsRequest, ListAutoshiftsResponse } from "../models/models_0"; import { ListAutoshifts } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/ListManagedResourcesCommand.ts b/clients/client-arc-zonal-shift/src/commands/ListManagedResourcesCommand.ts index 80569ae085b70..a3417aeb43bbd 100644 --- a/clients/client-arc-zonal-shift/src/commands/ListManagedResourcesCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/ListManagedResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListManagedResourcesRequest, ListManagedResourcesResponse } from "../models/models_0"; +import type { ListManagedResourcesRequest, ListManagedResourcesResponse } from "../models/models_0"; import { ListManagedResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/ListZonalShiftsCommand.ts b/clients/client-arc-zonal-shift/src/commands/ListZonalShiftsCommand.ts index 9ae4a04ec317c..05de0aa9066f8 100644 --- a/clients/client-arc-zonal-shift/src/commands/ListZonalShiftsCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/ListZonalShiftsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListZonalShiftsRequest, ListZonalShiftsResponse } from "../models/models_0"; +import type { ListZonalShiftsRequest, ListZonalShiftsResponse } from "../models/models_0"; import { ListZonalShifts } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/StartPracticeRunCommand.ts b/clients/client-arc-zonal-shift/src/commands/StartPracticeRunCommand.ts index 264732c0cef51..3217122043f71 100644 --- a/clients/client-arc-zonal-shift/src/commands/StartPracticeRunCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/StartPracticeRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPracticeRunRequest, StartPracticeRunResponse } from "../models/models_0"; +import type { StartPracticeRunRequest, StartPracticeRunResponse } from "../models/models_0"; import { StartPracticeRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/StartZonalShiftCommand.ts b/clients/client-arc-zonal-shift/src/commands/StartZonalShiftCommand.ts index 51424ef4867c7..d0e4c3df94b04 100644 --- a/clients/client-arc-zonal-shift/src/commands/StartZonalShiftCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/StartZonalShiftCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartZonalShiftRequest, ZonalShift } from "../models/models_0"; +import type { StartZonalShiftRequest, ZonalShift } from "../models/models_0"; import { StartZonalShift } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/UpdateAutoshiftObserverNotificationStatusCommand.ts b/clients/client-arc-zonal-shift/src/commands/UpdateAutoshiftObserverNotificationStatusCommand.ts index fc8e6641b9598..be30ce83662eb 100644 --- a/clients/client-arc-zonal-shift/src/commands/UpdateAutoshiftObserverNotificationStatusCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/UpdateAutoshiftObserverNotificationStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateAutoshiftObserverNotificationStatusRequest, UpdateAutoshiftObserverNotificationStatusResponse, } from "../models/models_0"; diff --git a/clients/client-arc-zonal-shift/src/commands/UpdatePracticeRunConfigurationCommand.ts b/clients/client-arc-zonal-shift/src/commands/UpdatePracticeRunConfigurationCommand.ts index 9e126bdc8c9f0..fbb7cbee2cd3a 100644 --- a/clients/client-arc-zonal-shift/src/commands/UpdatePracticeRunConfigurationCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/UpdatePracticeRunConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePracticeRunConfigurationRequest, UpdatePracticeRunConfigurationResponse } from "../models/models_0"; +import type { UpdatePracticeRunConfigurationRequest, UpdatePracticeRunConfigurationResponse } from "../models/models_0"; import { UpdatePracticeRunConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/commands/UpdateZonalAutoshiftConfigurationCommand.ts b/clients/client-arc-zonal-shift/src/commands/UpdateZonalAutoshiftConfigurationCommand.ts index bddf6b390c69c..45e628964e958 100644 --- a/clients/client-arc-zonal-shift/src/commands/UpdateZonalAutoshiftConfigurationCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/UpdateZonalAutoshiftConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateZonalAutoshiftConfigurationRequest, UpdateZonalAutoshiftConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-arc-zonal-shift/src/commands/UpdateZonalShiftCommand.ts b/clients/client-arc-zonal-shift/src/commands/UpdateZonalShiftCommand.ts index 1b7ee77487fba..d23740ffd4d87 100644 --- a/clients/client-arc-zonal-shift/src/commands/UpdateZonalShiftCommand.ts +++ b/clients/client-arc-zonal-shift/src/commands/UpdateZonalShiftCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; +import type { ARCZonalShiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ARCZonalShiftClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateZonalShiftRequest, ZonalShift } from "../models/models_0"; +import type { UpdateZonalShiftRequest, ZonalShift } from "../models/models_0"; import { UpdateZonalShift } from "../schemas/schemas_0"; /** diff --git a/clients/client-arc-zonal-shift/src/endpoint/EndpointParameters.ts b/clients/client-arc-zonal-shift/src/endpoint/EndpointParameters.ts index 1f47c65d61707..e92405a3c9c6c 100644 --- a/clients/client-arc-zonal-shift/src/endpoint/EndpointParameters.ts +++ b/clients/client-arc-zonal-shift/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-arc-zonal-shift/src/endpoint/endpointResolver.ts b/clients/client-arc-zonal-shift/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-arc-zonal-shift/src/endpoint/endpointResolver.ts +++ b/clients/client-arc-zonal-shift/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-arc-zonal-shift/src/extensionConfiguration.ts b/clients/client-arc-zonal-shift/src/extensionConfiguration.ts index f77c0f1820dac..44eb5d2522a30 100644 --- a/clients/client-arc-zonal-shift/src/extensionConfiguration.ts +++ b/clients/client-arc-zonal-shift/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-arc-zonal-shift/src/models/ARCZonalShiftServiceException.ts b/clients/client-arc-zonal-shift/src/models/ARCZonalShiftServiceException.ts index e0ca4ab428702..fb5544529cff9 100644 --- a/clients/client-arc-zonal-shift/src/models/ARCZonalShiftServiceException.ts +++ b/clients/client-arc-zonal-shift/src/models/ARCZonalShiftServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-arc-zonal-shift/src/models/errors.ts b/clients/client-arc-zonal-shift/src/models/errors.ts index 4a32e857fd79d..b945ce4fa6335 100644 --- a/clients/client-arc-zonal-shift/src/models/errors.ts +++ b/clients/client-arc-zonal-shift/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ARCZonalShiftServiceException as __BaseException } from "./ARCZonalShiftServiceException"; import { ConflictExceptionReason, ValidationExceptionReason } from "./enums"; diff --git a/clients/client-arc-zonal-shift/src/pagination/Interfaces.ts b/clients/client-arc-zonal-shift/src/pagination/Interfaces.ts index 7c6d54c0146ef..4a127c85ccf36 100644 --- a/clients/client-arc-zonal-shift/src/pagination/Interfaces.ts +++ b/clients/client-arc-zonal-shift/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ARCZonalShiftClient } from "../ARCZonalShiftClient"; diff --git a/clients/client-arc-zonal-shift/src/pagination/ListAutoshiftsPaginator.ts b/clients/client-arc-zonal-shift/src/pagination/ListAutoshiftsPaginator.ts index 28a806652aba0..31293ab38b800 100644 --- a/clients/client-arc-zonal-shift/src/pagination/ListAutoshiftsPaginator.ts +++ b/clients/client-arc-zonal-shift/src/pagination/ListAutoshiftsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCZonalShiftClient } from "../ARCZonalShiftClient"; import { diff --git a/clients/client-arc-zonal-shift/src/pagination/ListManagedResourcesPaginator.ts b/clients/client-arc-zonal-shift/src/pagination/ListManagedResourcesPaginator.ts index 25567f0ddc360..a6f1731c5353f 100644 --- a/clients/client-arc-zonal-shift/src/pagination/ListManagedResourcesPaginator.ts +++ b/clients/client-arc-zonal-shift/src/pagination/ListManagedResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCZonalShiftClient } from "../ARCZonalShiftClient"; import { diff --git a/clients/client-arc-zonal-shift/src/pagination/ListZonalShiftsPaginator.ts b/clients/client-arc-zonal-shift/src/pagination/ListZonalShiftsPaginator.ts index c140c886f27ea..d6c9eb6bf9414 100644 --- a/clients/client-arc-zonal-shift/src/pagination/ListZonalShiftsPaginator.ts +++ b/clients/client-arc-zonal-shift/src/pagination/ListZonalShiftsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ARCZonalShiftClient } from "../ARCZonalShiftClient"; import { diff --git a/clients/client-arc-zonal-shift/src/runtimeConfig.browser.ts b/clients/client-arc-zonal-shift/src/runtimeConfig.browser.ts index ce90f4ee12bc1..5595b34e9a36a 100644 --- a/clients/client-arc-zonal-shift/src/runtimeConfig.browser.ts +++ b/clients/client-arc-zonal-shift/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient"; + +import type { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-arc-zonal-shift/src/runtimeConfig.native.ts b/clients/client-arc-zonal-shift/src/runtimeConfig.native.ts index a9cac00d33e69..bc0ab6a3a7d55 100644 --- a/clients/client-arc-zonal-shift/src/runtimeConfig.native.ts +++ b/clients/client-arc-zonal-shift/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient"; +import type { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-arc-zonal-shift/src/runtimeConfig.shared.ts b/clients/client-arc-zonal-shift/src/runtimeConfig.shared.ts index b7ca5734fe755..2b0ac92987860 100644 --- a/clients/client-arc-zonal-shift/src/runtimeConfig.shared.ts +++ b/clients/client-arc-zonal-shift/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient"; +import type { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient"; import { defaultARCZonalShiftHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-arc-zonal-shift/src/runtimeConfig.ts b/clients/client-arc-zonal-shift/src/runtimeConfig.ts index 636d4bfa7d377..512b3c1c512d2 100644 --- a/clients/client-arc-zonal-shift/src/runtimeConfig.ts +++ b/clients/client-arc-zonal-shift/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient"; + +import type { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-arc-zonal-shift/src/runtimeExtensions.ts b/clients/client-arc-zonal-shift/src/runtimeExtensions.ts index 8d696729522c4..d32a7b68a8693 100644 --- a/clients/client-arc-zonal-shift/src/runtimeExtensions.ts +++ b/clients/client-arc-zonal-shift/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ARCZonalShiftExtensionConfiguration } from "./extensionConfiguration"; +import type { ARCZonalShiftExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-arc-zonal-shift/src/schemas/schemas_0.ts b/clients/client-arc-zonal-shift/src/schemas/schemas_0.ts index 5701f7dac9a63..4a3a75ba4d6fd 100644 --- a/clients/client-arc-zonal-shift/src/schemas/schemas_0.ts +++ b/clients/client-arc-zonal-shift/src/schemas/schemas_0.ts @@ -105,7 +105,7 @@ const n0 = "com.amazonaws.arczonalshift"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-artifact/package.json b/clients/client-artifact/package.json index c06a1afb796a2..4afdca0d37d60 100644 --- a/clients/client-artifact/package.json +++ b/clients/client-artifact/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-artifact/src/Artifact.ts b/clients/client-artifact/src/Artifact.ts index 16942f9371ac9..c2f3ef1df6ce3 100644 --- a/clients/client-artifact/src/Artifact.ts +++ b/clients/client-artifact/src/Artifact.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ArtifactClient, ArtifactClientConfig } from "./ArtifactClient"; +import { ArtifactClient } from "./ArtifactClient"; import { GetAccountSettingsCommand, GetAccountSettingsCommandInput, diff --git a/clients/client-artifact/src/ArtifactClient.ts b/clients/client-artifact/src/ArtifactClient.ts index 9c857c844c4ba..0f224c29da84d 100644 --- a/clients/client-artifact/src/ArtifactClient.ts +++ b/clients/client-artifact/src/ArtifactClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultArtifactHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput } from "./commands/GetAccountSettingsCommand"; @@ -74,7 +83,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-artifact/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-artifact/src/auth/httpAuthExtensionConfiguration.ts index 1bb395ecc2e1b..2858bc927c7ea 100644 --- a/clients/client-artifact/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-artifact/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ArtifactHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ArtifactHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-artifact/src/auth/httpAuthSchemeProvider.ts b/clients/client-artifact/src/auth/httpAuthSchemeProvider.ts index 65363f063d4a6..58064aef55e11 100644 --- a/clients/client-artifact/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-artifact/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ArtifactClientConfig, ArtifactClientResolvedConfig } from "../ArtifactClient"; +import { type ArtifactClientResolvedConfig, ArtifactClientConfig } from "../ArtifactClient"; /** * @internal diff --git a/clients/client-artifact/src/commands/GetAccountSettingsCommand.ts b/clients/client-artifact/src/commands/GetAccountSettingsCommand.ts index 2b9b2d2eb873c..646d0656aa655 100644 --- a/clients/client-artifact/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-artifact/src/commands/GetAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; +import type { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0"; +import type { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0"; import { GetAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-artifact/src/commands/GetReportCommand.ts b/clients/client-artifact/src/commands/GetReportCommand.ts index 351e000807094..60b194cfe0a8f 100644 --- a/clients/client-artifact/src/commands/GetReportCommand.ts +++ b/clients/client-artifact/src/commands/GetReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; +import type { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReportRequest, GetReportResponse } from "../models/models_0"; +import type { GetReportRequest, GetReportResponse } from "../models/models_0"; import { GetReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-artifact/src/commands/GetReportMetadataCommand.ts b/clients/client-artifact/src/commands/GetReportMetadataCommand.ts index ca0a65775965c..867f90253aa17 100644 --- a/clients/client-artifact/src/commands/GetReportMetadataCommand.ts +++ b/clients/client-artifact/src/commands/GetReportMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; +import type { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReportMetadataRequest, GetReportMetadataResponse } from "../models/models_0"; +import type { GetReportMetadataRequest, GetReportMetadataResponse } from "../models/models_0"; import { GetReportMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-artifact/src/commands/GetTermForReportCommand.ts b/clients/client-artifact/src/commands/GetTermForReportCommand.ts index 9e340b3abc1d5..ec3213b4bfc3f 100644 --- a/clients/client-artifact/src/commands/GetTermForReportCommand.ts +++ b/clients/client-artifact/src/commands/GetTermForReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; +import type { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTermForReportRequest, GetTermForReportResponse } from "../models/models_0"; +import type { GetTermForReportRequest, GetTermForReportResponse } from "../models/models_0"; import { GetTermForReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-artifact/src/commands/ListCustomerAgreementsCommand.ts b/clients/client-artifact/src/commands/ListCustomerAgreementsCommand.ts index f56e2d5d6a6b7..a31e5a5a5acf5 100644 --- a/clients/client-artifact/src/commands/ListCustomerAgreementsCommand.ts +++ b/clients/client-artifact/src/commands/ListCustomerAgreementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; +import type { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCustomerAgreementsRequest, ListCustomerAgreementsResponse } from "../models/models_0"; +import type { ListCustomerAgreementsRequest, ListCustomerAgreementsResponse } from "../models/models_0"; import { ListCustomerAgreements } from "../schemas/schemas_0"; /** diff --git a/clients/client-artifact/src/commands/ListReportsCommand.ts b/clients/client-artifact/src/commands/ListReportsCommand.ts index f3f2fb2c80ac6..6d318f21188f3 100644 --- a/clients/client-artifact/src/commands/ListReportsCommand.ts +++ b/clients/client-artifact/src/commands/ListReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; +import type { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReportsRequest, ListReportsResponse } from "../models/models_0"; +import type { ListReportsRequest, ListReportsResponse } from "../models/models_0"; import { ListReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-artifact/src/commands/PutAccountSettingsCommand.ts b/clients/client-artifact/src/commands/PutAccountSettingsCommand.ts index b175ef5d52e73..2fdc2be3b29cc 100644 --- a/clients/client-artifact/src/commands/PutAccountSettingsCommand.ts +++ b/clients/client-artifact/src/commands/PutAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; +import type { ArtifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ArtifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountSettingsRequest, PutAccountSettingsResponse } from "../models/models_0"; +import type { PutAccountSettingsRequest, PutAccountSettingsResponse } from "../models/models_0"; import { PutAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-artifact/src/endpoint/EndpointParameters.ts b/clients/client-artifact/src/endpoint/EndpointParameters.ts index ec6b89044212d..d4c79b9f5e592 100644 --- a/clients/client-artifact/src/endpoint/EndpointParameters.ts +++ b/clients/client-artifact/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-artifact/src/endpoint/endpointResolver.ts b/clients/client-artifact/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-artifact/src/endpoint/endpointResolver.ts +++ b/clients/client-artifact/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-artifact/src/extensionConfiguration.ts b/clients/client-artifact/src/extensionConfiguration.ts index 8672a1543b8f0..546842fde6613 100644 --- a/clients/client-artifact/src/extensionConfiguration.ts +++ b/clients/client-artifact/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-artifact/src/models/ArtifactServiceException.ts b/clients/client-artifact/src/models/ArtifactServiceException.ts index 5ff11131872ba..ebb82d7837847 100644 --- a/clients/client-artifact/src/models/ArtifactServiceException.ts +++ b/clients/client-artifact/src/models/ArtifactServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-artifact/src/models/errors.ts b/clients/client-artifact/src/models/errors.ts index 27f04a36115b5..05832d5764d49 100644 --- a/clients/client-artifact/src/models/errors.ts +++ b/clients/client-artifact/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ArtifactServiceException as __BaseException } from "./ArtifactServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-artifact/src/pagination/Interfaces.ts b/clients/client-artifact/src/pagination/Interfaces.ts index 5d8b51b820a83..92c104298707c 100644 --- a/clients/client-artifact/src/pagination/Interfaces.ts +++ b/clients/client-artifact/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ArtifactClient } from "../ArtifactClient"; diff --git a/clients/client-artifact/src/pagination/ListCustomerAgreementsPaginator.ts b/clients/client-artifact/src/pagination/ListCustomerAgreementsPaginator.ts index 4b2c5b43b3778..04a7ac83e7b4e 100644 --- a/clients/client-artifact/src/pagination/ListCustomerAgreementsPaginator.ts +++ b/clients/client-artifact/src/pagination/ListCustomerAgreementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ArtifactClient } from "../ArtifactClient"; import { diff --git a/clients/client-artifact/src/pagination/ListReportsPaginator.ts b/clients/client-artifact/src/pagination/ListReportsPaginator.ts index 6b4792d8ae9f9..9f94d4d328055 100644 --- a/clients/client-artifact/src/pagination/ListReportsPaginator.ts +++ b/clients/client-artifact/src/pagination/ListReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ArtifactClient } from "../ArtifactClient"; import { ListReportsCommand, ListReportsCommandInput, ListReportsCommandOutput } from "../commands/ListReportsCommand"; diff --git a/clients/client-artifact/src/runtimeConfig.browser.ts b/clients/client-artifact/src/runtimeConfig.browser.ts index bb51dd3717454..416d77e2a0f4b 100644 --- a/clients/client-artifact/src/runtimeConfig.browser.ts +++ b/clients/client-artifact/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ArtifactClientConfig } from "./ArtifactClient"; + +import type { ArtifactClientConfig } from "./ArtifactClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-artifact/src/runtimeConfig.native.ts b/clients/client-artifact/src/runtimeConfig.native.ts index 32baa35f1d9df..c14ae6fc20660 100644 --- a/clients/client-artifact/src/runtimeConfig.native.ts +++ b/clients/client-artifact/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ArtifactClientConfig } from "./ArtifactClient"; +import type { ArtifactClientConfig } from "./ArtifactClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-artifact/src/runtimeConfig.shared.ts b/clients/client-artifact/src/runtimeConfig.shared.ts index e88e68e584bb0..a0662c47c4c8e 100644 --- a/clients/client-artifact/src/runtimeConfig.shared.ts +++ b/clients/client-artifact/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { ArtifactClientConfig } from "./ArtifactClient"; +import type { ArtifactClientConfig } from "./ArtifactClient"; import { defaultArtifactHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-artifact/src/runtimeConfig.ts b/clients/client-artifact/src/runtimeConfig.ts index 9ae8215e338f2..5ddbcc09ca3ee 100644 --- a/clients/client-artifact/src/runtimeConfig.ts +++ b/clients/client-artifact/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ArtifactClientConfig } from "./ArtifactClient"; + +import type { ArtifactClientConfig } from "./ArtifactClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-artifact/src/runtimeExtensions.ts b/clients/client-artifact/src/runtimeExtensions.ts index 647e0b5e5f2b6..3fdf0606b8b14 100644 --- a/clients/client-artifact/src/runtimeExtensions.ts +++ b/clients/client-artifact/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ArtifactExtensionConfiguration } from "./extensionConfiguration"; +import type { ArtifactExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-artifact/src/schemas/schemas_0.ts b/clients/client-artifact/src/schemas/schemas_0.ts index 6d2f175529de0..295012e88d399 100644 --- a/clients/client-artifact/src/schemas/schemas_0.ts +++ b/clients/client-artifact/src/schemas/schemas_0.ts @@ -94,7 +94,7 @@ const n0 = "com.amazonaws.artifact"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ArtifactServiceException as __ArtifactServiceException } from "../models/ArtifactServiceException"; import { diff --git a/clients/client-athena/package.json b/clients/client-athena/package.json index 7d3f52d392644..d3727391479a8 100644 --- a/clients/client-athena/package.json +++ b/clients/client-athena/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-athena/src/Athena.ts b/clients/client-athena/src/Athena.ts index 71f4b078047cf..f010db1c1808e 100644 --- a/clients/client-athena/src/Athena.ts +++ b/clients/client-athena/src/Athena.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AthenaClient, AthenaClientConfig } from "./AthenaClient"; +import { AthenaClient } from "./AthenaClient"; import { BatchGetNamedQueryCommand, BatchGetNamedQueryCommandInput, diff --git a/clients/client-athena/src/AthenaClient.ts b/clients/client-athena/src/AthenaClient.ts index 22aeebf5fa5a5..c3a94ebaabacf 100644 --- a/clients/client-athena/src/AthenaClient.ts +++ b/clients/client-athena/src/AthenaClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAthenaHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetNamedQueryCommandInput, BatchGetNamedQueryCommandOutput } from "./commands/BatchGetNamedQueryCommand"; @@ -230,7 +239,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-athena/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-athena/src/auth/httpAuthExtensionConfiguration.ts index 9a0ad455de3d1..c5692dbc70664 100644 --- a/clients/client-athena/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-athena/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AthenaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AthenaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-athena/src/auth/httpAuthSchemeProvider.ts b/clients/client-athena/src/auth/httpAuthSchemeProvider.ts index 0590535b55778..7963e48a4e469 100644 --- a/clients/client-athena/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-athena/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AthenaClientConfig, AthenaClientResolvedConfig } from "../AthenaClient"; +import { type AthenaClientResolvedConfig, AthenaClientConfig } from "../AthenaClient"; /** * @internal diff --git a/clients/client-athena/src/commands/BatchGetNamedQueryCommand.ts b/clients/client-athena/src/commands/BatchGetNamedQueryCommand.ts index f7bcde36961a0..b29194d289b9d 100644 --- a/clients/client-athena/src/commands/BatchGetNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/BatchGetNamedQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetNamedQueryInput, BatchGetNamedQueryOutput } from "../models/models_0"; +import type { BatchGetNamedQueryInput, BatchGetNamedQueryOutput } from "../models/models_0"; import { BatchGetNamedQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/BatchGetPreparedStatementCommand.ts b/clients/client-athena/src/commands/BatchGetPreparedStatementCommand.ts index 76d487b784677..265e13a9919e3 100644 --- a/clients/client-athena/src/commands/BatchGetPreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/BatchGetPreparedStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetPreparedStatementInput, BatchGetPreparedStatementOutput } from "../models/models_0"; +import type { BatchGetPreparedStatementInput, BatchGetPreparedStatementOutput } from "../models/models_0"; import { BatchGetPreparedStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/BatchGetQueryExecutionCommand.ts b/clients/client-athena/src/commands/BatchGetQueryExecutionCommand.ts index aa30afd632974..a2b02e9ff8639 100644 --- a/clients/client-athena/src/commands/BatchGetQueryExecutionCommand.ts +++ b/clients/client-athena/src/commands/BatchGetQueryExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetQueryExecutionInput, BatchGetQueryExecutionOutput } from "../models/models_0"; +import type { BatchGetQueryExecutionInput, BatchGetQueryExecutionOutput } from "../models/models_0"; import { BatchGetQueryExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/CancelCapacityReservationCommand.ts b/clients/client-athena/src/commands/CancelCapacityReservationCommand.ts index c8505a886cf92..e01fbf8871c1d 100644 --- a/clients/client-athena/src/commands/CancelCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/CancelCapacityReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelCapacityReservationInput, CancelCapacityReservationOutput } from "../models/models_0"; +import type { CancelCapacityReservationInput, CancelCapacityReservationOutput } from "../models/models_0"; import { CancelCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/CreateCapacityReservationCommand.ts b/clients/client-athena/src/commands/CreateCapacityReservationCommand.ts index 0cb1046994abb..ab1ad17439772 100644 --- a/clients/client-athena/src/commands/CreateCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/CreateCapacityReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCapacityReservationInput, CreateCapacityReservationOutput } from "../models/models_0"; +import type { CreateCapacityReservationInput, CreateCapacityReservationOutput } from "../models/models_0"; import { CreateCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/CreateDataCatalogCommand.ts b/clients/client-athena/src/commands/CreateDataCatalogCommand.ts index a4b7b112d4614..5264a888c3671 100644 --- a/clients/client-athena/src/commands/CreateDataCatalogCommand.ts +++ b/clients/client-athena/src/commands/CreateDataCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataCatalogInput, CreateDataCatalogOutput } from "../models/models_0"; +import type { CreateDataCatalogInput, CreateDataCatalogOutput } from "../models/models_0"; import { CreateDataCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/CreateNamedQueryCommand.ts b/clients/client-athena/src/commands/CreateNamedQueryCommand.ts index 9e66ad63f9308..5561d49781348 100644 --- a/clients/client-athena/src/commands/CreateNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/CreateNamedQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNamedQueryInput, CreateNamedQueryOutput } from "../models/models_0"; +import type { CreateNamedQueryInput, CreateNamedQueryOutput } from "../models/models_0"; import { CreateNamedQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/CreateNotebookCommand.ts b/clients/client-athena/src/commands/CreateNotebookCommand.ts index dc8cf71079821..b20daa7a522c1 100644 --- a/clients/client-athena/src/commands/CreateNotebookCommand.ts +++ b/clients/client-athena/src/commands/CreateNotebookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNotebookInput, CreateNotebookOutput } from "../models/models_0"; +import type { CreateNotebookInput, CreateNotebookOutput } from "../models/models_0"; import { CreateNotebook } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/CreatePreparedStatementCommand.ts b/clients/client-athena/src/commands/CreatePreparedStatementCommand.ts index e6af3e6feaa91..f8675c17a36dd 100644 --- a/clients/client-athena/src/commands/CreatePreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/CreatePreparedStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePreparedStatementInput, CreatePreparedStatementOutput } from "../models/models_0"; +import type { CreatePreparedStatementInput, CreatePreparedStatementOutput } from "../models/models_0"; import { CreatePreparedStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/CreatePresignedNotebookUrlCommand.ts b/clients/client-athena/src/commands/CreatePresignedNotebookUrlCommand.ts index 9e028013e58fb..44bdae9ee7c24 100644 --- a/clients/client-athena/src/commands/CreatePresignedNotebookUrlCommand.ts +++ b/clients/client-athena/src/commands/CreatePresignedNotebookUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePresignedNotebookUrlRequest, CreatePresignedNotebookUrlResponse } from "../models/models_0"; +import type { CreatePresignedNotebookUrlRequest, CreatePresignedNotebookUrlResponse } from "../models/models_0"; import { CreatePresignedNotebookUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/CreateWorkGroupCommand.ts b/clients/client-athena/src/commands/CreateWorkGroupCommand.ts index 31d873593cc8b..571ee1278d297 100644 --- a/clients/client-athena/src/commands/CreateWorkGroupCommand.ts +++ b/clients/client-athena/src/commands/CreateWorkGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkGroupInput, CreateWorkGroupOutput } from "../models/models_0"; +import type { CreateWorkGroupInput, CreateWorkGroupOutput } from "../models/models_0"; import { CreateWorkGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/DeleteCapacityReservationCommand.ts b/clients/client-athena/src/commands/DeleteCapacityReservationCommand.ts index 4cc8584bd6a9a..8957a962f5f49 100644 --- a/clients/client-athena/src/commands/DeleteCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/DeleteCapacityReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCapacityReservationInput, DeleteCapacityReservationOutput } from "../models/models_0"; +import type { DeleteCapacityReservationInput, DeleteCapacityReservationOutput } from "../models/models_0"; import { DeleteCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/DeleteDataCatalogCommand.ts b/clients/client-athena/src/commands/DeleteDataCatalogCommand.ts index 76817d0aab88b..90b88d1e2b0e2 100644 --- a/clients/client-athena/src/commands/DeleteDataCatalogCommand.ts +++ b/clients/client-athena/src/commands/DeleteDataCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataCatalogInput, DeleteDataCatalogOutput } from "../models/models_0"; +import type { DeleteDataCatalogInput, DeleteDataCatalogOutput } from "../models/models_0"; import { DeleteDataCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/DeleteNamedQueryCommand.ts b/clients/client-athena/src/commands/DeleteNamedQueryCommand.ts index 552acd66f7d03..efe6185095198 100644 --- a/clients/client-athena/src/commands/DeleteNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/DeleteNamedQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNamedQueryInput, DeleteNamedQueryOutput } from "../models/models_0"; +import type { DeleteNamedQueryInput, DeleteNamedQueryOutput } from "../models/models_0"; import { DeleteNamedQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/DeleteNotebookCommand.ts b/clients/client-athena/src/commands/DeleteNotebookCommand.ts index 71723e040c27a..83352ad36849c 100644 --- a/clients/client-athena/src/commands/DeleteNotebookCommand.ts +++ b/clients/client-athena/src/commands/DeleteNotebookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNotebookInput, DeleteNotebookOutput } from "../models/models_0"; +import type { DeleteNotebookInput, DeleteNotebookOutput } from "../models/models_0"; import { DeleteNotebook } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/DeletePreparedStatementCommand.ts b/clients/client-athena/src/commands/DeletePreparedStatementCommand.ts index 43d940db4af06..0ff3d31830e59 100644 --- a/clients/client-athena/src/commands/DeletePreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/DeletePreparedStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePreparedStatementInput, DeletePreparedStatementOutput } from "../models/models_0"; +import type { DeletePreparedStatementInput, DeletePreparedStatementOutput } from "../models/models_0"; import { DeletePreparedStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/DeleteWorkGroupCommand.ts b/clients/client-athena/src/commands/DeleteWorkGroupCommand.ts index 52e221ec919c4..684f74bb8d9a0 100644 --- a/clients/client-athena/src/commands/DeleteWorkGroupCommand.ts +++ b/clients/client-athena/src/commands/DeleteWorkGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkGroupInput, DeleteWorkGroupOutput } from "../models/models_0"; +import type { DeleteWorkGroupInput, DeleteWorkGroupOutput } from "../models/models_0"; import { DeleteWorkGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ExportNotebookCommand.ts b/clients/client-athena/src/commands/ExportNotebookCommand.ts index 05388c2464dbf..6b85e85e619f9 100644 --- a/clients/client-athena/src/commands/ExportNotebookCommand.ts +++ b/clients/client-athena/src/commands/ExportNotebookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportNotebookInput, ExportNotebookOutput } from "../models/models_0"; +import type { ExportNotebookInput, ExportNotebookOutput } from "../models/models_0"; import { ExportNotebook } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetCalculationExecutionCodeCommand.ts b/clients/client-athena/src/commands/GetCalculationExecutionCodeCommand.ts index cb2d8166a77a1..4d83631112633 100644 --- a/clients/client-athena/src/commands/GetCalculationExecutionCodeCommand.ts +++ b/clients/client-athena/src/commands/GetCalculationExecutionCodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCalculationExecutionCodeRequest, GetCalculationExecutionCodeResponse } from "../models/models_0"; +import type { GetCalculationExecutionCodeRequest, GetCalculationExecutionCodeResponse } from "../models/models_0"; import { GetCalculationExecutionCode } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetCalculationExecutionCommand.ts b/clients/client-athena/src/commands/GetCalculationExecutionCommand.ts index 57043493a62bc..39ba8b87cde8c 100644 --- a/clients/client-athena/src/commands/GetCalculationExecutionCommand.ts +++ b/clients/client-athena/src/commands/GetCalculationExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCalculationExecutionRequest, GetCalculationExecutionResponse } from "../models/models_0"; +import type { GetCalculationExecutionRequest, GetCalculationExecutionResponse } from "../models/models_0"; import { GetCalculationExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetCalculationExecutionStatusCommand.ts b/clients/client-athena/src/commands/GetCalculationExecutionStatusCommand.ts index 5c4b0d39aa372..6a19c401cb171 100644 --- a/clients/client-athena/src/commands/GetCalculationExecutionStatusCommand.ts +++ b/clients/client-athena/src/commands/GetCalculationExecutionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCalculationExecutionStatusRequest, GetCalculationExecutionStatusResponse } from "../models/models_0"; +import type { GetCalculationExecutionStatusRequest, GetCalculationExecutionStatusResponse } from "../models/models_0"; import { GetCalculationExecutionStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetCapacityAssignmentConfigurationCommand.ts b/clients/client-athena/src/commands/GetCapacityAssignmentConfigurationCommand.ts index 374853c3640f8..89be852a50c69 100644 --- a/clients/client-athena/src/commands/GetCapacityAssignmentConfigurationCommand.ts +++ b/clients/client-athena/src/commands/GetCapacityAssignmentConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCapacityAssignmentConfigurationInput, GetCapacityAssignmentConfigurationOutput } from "../models/models_0"; +import type { + GetCapacityAssignmentConfigurationInput, + GetCapacityAssignmentConfigurationOutput, +} from "../models/models_0"; import { GetCapacityAssignmentConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetCapacityReservationCommand.ts b/clients/client-athena/src/commands/GetCapacityReservationCommand.ts index 64c4a91f32a7c..078dc114d5a53 100644 --- a/clients/client-athena/src/commands/GetCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/GetCapacityReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCapacityReservationInput, GetCapacityReservationOutput } from "../models/models_0"; +import type { GetCapacityReservationInput, GetCapacityReservationOutput } from "../models/models_0"; import { GetCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetDataCatalogCommand.ts b/clients/client-athena/src/commands/GetDataCatalogCommand.ts index 0cb2a901aa33a..4e65a93a4e3f8 100644 --- a/clients/client-athena/src/commands/GetDataCatalogCommand.ts +++ b/clients/client-athena/src/commands/GetDataCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataCatalogInput, GetDataCatalogOutput } from "../models/models_0"; +import type { GetDataCatalogInput, GetDataCatalogOutput } from "../models/models_0"; import { GetDataCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetDatabaseCommand.ts b/clients/client-athena/src/commands/GetDatabaseCommand.ts index c7715420873dd..d892223829056 100644 --- a/clients/client-athena/src/commands/GetDatabaseCommand.ts +++ b/clients/client-athena/src/commands/GetDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDatabaseInput, GetDatabaseOutput } from "../models/models_0"; +import type { GetDatabaseInput, GetDatabaseOutput } from "../models/models_0"; import { GetDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetNamedQueryCommand.ts b/clients/client-athena/src/commands/GetNamedQueryCommand.ts index 8ae0380cf10e8..8b4e7a20803b7 100644 --- a/clients/client-athena/src/commands/GetNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/GetNamedQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNamedQueryInput, GetNamedQueryOutput } from "../models/models_0"; +import type { GetNamedQueryInput, GetNamedQueryOutput } from "../models/models_0"; import { GetNamedQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetNotebookMetadataCommand.ts b/clients/client-athena/src/commands/GetNotebookMetadataCommand.ts index 0c07d2304259f..735ebf4e5f9fd 100644 --- a/clients/client-athena/src/commands/GetNotebookMetadataCommand.ts +++ b/clients/client-athena/src/commands/GetNotebookMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNotebookMetadataInput, GetNotebookMetadataOutput } from "../models/models_0"; +import type { GetNotebookMetadataInput, GetNotebookMetadataOutput } from "../models/models_0"; import { GetNotebookMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetPreparedStatementCommand.ts b/clients/client-athena/src/commands/GetPreparedStatementCommand.ts index fe166fc17f813..f91c52816781d 100644 --- a/clients/client-athena/src/commands/GetPreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/GetPreparedStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPreparedStatementInput, GetPreparedStatementOutput } from "../models/models_0"; +import type { GetPreparedStatementInput, GetPreparedStatementOutput } from "../models/models_0"; import { GetPreparedStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetQueryExecutionCommand.ts b/clients/client-athena/src/commands/GetQueryExecutionCommand.ts index 5731e2e78a83f..56e3eb32a7dc2 100644 --- a/clients/client-athena/src/commands/GetQueryExecutionCommand.ts +++ b/clients/client-athena/src/commands/GetQueryExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueryExecutionInput, GetQueryExecutionOutput } from "../models/models_0"; +import type { GetQueryExecutionInput, GetQueryExecutionOutput } from "../models/models_0"; import { GetQueryExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetQueryResultsCommand.ts b/clients/client-athena/src/commands/GetQueryResultsCommand.ts index abd9f5b37bb22..4e4d1dfc59a91 100644 --- a/clients/client-athena/src/commands/GetQueryResultsCommand.ts +++ b/clients/client-athena/src/commands/GetQueryResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueryResultsInput, GetQueryResultsOutput } from "../models/models_0"; +import type { GetQueryResultsInput, GetQueryResultsOutput } from "../models/models_0"; import { GetQueryResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetQueryRuntimeStatisticsCommand.ts b/clients/client-athena/src/commands/GetQueryRuntimeStatisticsCommand.ts index 734c2385b840d..6f587ba88f11a 100644 --- a/clients/client-athena/src/commands/GetQueryRuntimeStatisticsCommand.ts +++ b/clients/client-athena/src/commands/GetQueryRuntimeStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueryRuntimeStatisticsInput, GetQueryRuntimeStatisticsOutput } from "../models/models_0"; +import type { GetQueryRuntimeStatisticsInput, GetQueryRuntimeStatisticsOutput } from "../models/models_0"; import { GetQueryRuntimeStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetResourceDashboardCommand.ts b/clients/client-athena/src/commands/GetResourceDashboardCommand.ts index 9b1f23ed79de2..20297d3ee6e4a 100644 --- a/clients/client-athena/src/commands/GetResourceDashboardCommand.ts +++ b/clients/client-athena/src/commands/GetResourceDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceDashboardRequest, GetResourceDashboardResponse } from "../models/models_0"; +import type { GetResourceDashboardRequest, GetResourceDashboardResponse } from "../models/models_0"; import { GetResourceDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetSessionCommand.ts b/clients/client-athena/src/commands/GetSessionCommand.ts index 3a2f9720c5cb4..4dc5f45fa4ce7 100644 --- a/clients/client-athena/src/commands/GetSessionCommand.ts +++ b/clients/client-athena/src/commands/GetSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_0"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_0"; import { GetSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetSessionEndpointCommand.ts b/clients/client-athena/src/commands/GetSessionEndpointCommand.ts index 2517a496a449f..07ceb599370a8 100644 --- a/clients/client-athena/src/commands/GetSessionEndpointCommand.ts +++ b/clients/client-athena/src/commands/GetSessionEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionEndpointRequest, GetSessionEndpointResponse } from "../models/models_0"; +import type { GetSessionEndpointRequest, GetSessionEndpointResponse } from "../models/models_0"; import { GetSessionEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetSessionStatusCommand.ts b/clients/client-athena/src/commands/GetSessionStatusCommand.ts index 64eef7f895745..f9f8b6a96f8df 100644 --- a/clients/client-athena/src/commands/GetSessionStatusCommand.ts +++ b/clients/client-athena/src/commands/GetSessionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionStatusRequest, GetSessionStatusResponse } from "../models/models_0"; +import type { GetSessionStatusRequest, GetSessionStatusResponse } from "../models/models_0"; import { GetSessionStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetTableMetadataCommand.ts b/clients/client-athena/src/commands/GetTableMetadataCommand.ts index a9fb2e8f54404..535e7d4be5205 100644 --- a/clients/client-athena/src/commands/GetTableMetadataCommand.ts +++ b/clients/client-athena/src/commands/GetTableMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableMetadataInput, GetTableMetadataOutput } from "../models/models_0"; +import type { GetTableMetadataInput, GetTableMetadataOutput } from "../models/models_0"; import { GetTableMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/GetWorkGroupCommand.ts b/clients/client-athena/src/commands/GetWorkGroupCommand.ts index 9b04b9204c08a..ae848a2093a8c 100644 --- a/clients/client-athena/src/commands/GetWorkGroupCommand.ts +++ b/clients/client-athena/src/commands/GetWorkGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkGroupInput, GetWorkGroupOutput } from "../models/models_0"; +import type { GetWorkGroupInput, GetWorkGroupOutput } from "../models/models_0"; import { GetWorkGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ImportNotebookCommand.ts b/clients/client-athena/src/commands/ImportNotebookCommand.ts index 6b8e0e8538b4b..927c653421ef9 100644 --- a/clients/client-athena/src/commands/ImportNotebookCommand.ts +++ b/clients/client-athena/src/commands/ImportNotebookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportNotebookInput, ImportNotebookOutput } from "../models/models_0"; +import type { ImportNotebookInput, ImportNotebookOutput } from "../models/models_0"; import { ImportNotebook } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListApplicationDPUSizesCommand.ts b/clients/client-athena/src/commands/ListApplicationDPUSizesCommand.ts index fbd1a4aeb6a86..6a0aa17ee1e8b 100644 --- a/clients/client-athena/src/commands/ListApplicationDPUSizesCommand.ts +++ b/clients/client-athena/src/commands/ListApplicationDPUSizesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationDPUSizesInput, ListApplicationDPUSizesOutput } from "../models/models_0"; +import type { ListApplicationDPUSizesInput, ListApplicationDPUSizesOutput } from "../models/models_0"; import { ListApplicationDPUSizes } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListCalculationExecutionsCommand.ts b/clients/client-athena/src/commands/ListCalculationExecutionsCommand.ts index 5ff674747a93e..d3c622b7557e7 100644 --- a/clients/client-athena/src/commands/ListCalculationExecutionsCommand.ts +++ b/clients/client-athena/src/commands/ListCalculationExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCalculationExecutionsRequest, ListCalculationExecutionsResponse } from "../models/models_0"; +import type { ListCalculationExecutionsRequest, ListCalculationExecutionsResponse } from "../models/models_0"; import { ListCalculationExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListCapacityReservationsCommand.ts b/clients/client-athena/src/commands/ListCapacityReservationsCommand.ts index 8df2705934c76..dea7da2e91862 100644 --- a/clients/client-athena/src/commands/ListCapacityReservationsCommand.ts +++ b/clients/client-athena/src/commands/ListCapacityReservationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCapacityReservationsInput, ListCapacityReservationsOutput } from "../models/models_0"; +import type { ListCapacityReservationsInput, ListCapacityReservationsOutput } from "../models/models_0"; import { ListCapacityReservations } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListDataCatalogsCommand.ts b/clients/client-athena/src/commands/ListDataCatalogsCommand.ts index 656ed1030924f..877823379f025 100644 --- a/clients/client-athena/src/commands/ListDataCatalogsCommand.ts +++ b/clients/client-athena/src/commands/ListDataCatalogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataCatalogsInput, ListDataCatalogsOutput } from "../models/models_0"; +import type { ListDataCatalogsInput, ListDataCatalogsOutput } from "../models/models_0"; import { ListDataCatalogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListDatabasesCommand.ts b/clients/client-athena/src/commands/ListDatabasesCommand.ts index b384ada261978..d51c1fcdfca3f 100644 --- a/clients/client-athena/src/commands/ListDatabasesCommand.ts +++ b/clients/client-athena/src/commands/ListDatabasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0"; +import type { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0"; import { ListDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListEngineVersionsCommand.ts b/clients/client-athena/src/commands/ListEngineVersionsCommand.ts index f8300f0541f00..71eb2650cc22d 100644 --- a/clients/client-athena/src/commands/ListEngineVersionsCommand.ts +++ b/clients/client-athena/src/commands/ListEngineVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEngineVersionsInput, ListEngineVersionsOutput } from "../models/models_0"; +import type { ListEngineVersionsInput, ListEngineVersionsOutput } from "../models/models_0"; import { ListEngineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListExecutorsCommand.ts b/clients/client-athena/src/commands/ListExecutorsCommand.ts index a0896457b4cae..e40e926acf0bf 100644 --- a/clients/client-athena/src/commands/ListExecutorsCommand.ts +++ b/clients/client-athena/src/commands/ListExecutorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExecutorsRequest, ListExecutorsResponse } from "../models/models_0"; +import type { ListExecutorsRequest, ListExecutorsResponse } from "../models/models_0"; import { ListExecutors } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListNamedQueriesCommand.ts b/clients/client-athena/src/commands/ListNamedQueriesCommand.ts index 1d14bc928e145..fc728d523477e 100644 --- a/clients/client-athena/src/commands/ListNamedQueriesCommand.ts +++ b/clients/client-athena/src/commands/ListNamedQueriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNamedQueriesInput, ListNamedQueriesOutput } from "../models/models_0"; +import type { ListNamedQueriesInput, ListNamedQueriesOutput } from "../models/models_0"; import { ListNamedQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListNotebookMetadataCommand.ts b/clients/client-athena/src/commands/ListNotebookMetadataCommand.ts index e858ace37df40..53afb19883e26 100644 --- a/clients/client-athena/src/commands/ListNotebookMetadataCommand.ts +++ b/clients/client-athena/src/commands/ListNotebookMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotebookMetadataInput, ListNotebookMetadataOutput } from "../models/models_0"; +import type { ListNotebookMetadataInput, ListNotebookMetadataOutput } from "../models/models_0"; import { ListNotebookMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListNotebookSessionsCommand.ts b/clients/client-athena/src/commands/ListNotebookSessionsCommand.ts index 9326f226537a0..80646be5dc3f3 100644 --- a/clients/client-athena/src/commands/ListNotebookSessionsCommand.ts +++ b/clients/client-athena/src/commands/ListNotebookSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotebookSessionsRequest, ListNotebookSessionsResponse } from "../models/models_0"; +import type { ListNotebookSessionsRequest, ListNotebookSessionsResponse } from "../models/models_0"; import { ListNotebookSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListPreparedStatementsCommand.ts b/clients/client-athena/src/commands/ListPreparedStatementsCommand.ts index c634b0ad295a3..35b0e1a1df630 100644 --- a/clients/client-athena/src/commands/ListPreparedStatementsCommand.ts +++ b/clients/client-athena/src/commands/ListPreparedStatementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPreparedStatementsInput, ListPreparedStatementsOutput } from "../models/models_0"; +import type { ListPreparedStatementsInput, ListPreparedStatementsOutput } from "../models/models_0"; import { ListPreparedStatements } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListQueryExecutionsCommand.ts b/clients/client-athena/src/commands/ListQueryExecutionsCommand.ts index ad3dc6964f676..47b1dfe4468ab 100644 --- a/clients/client-athena/src/commands/ListQueryExecutionsCommand.ts +++ b/clients/client-athena/src/commands/ListQueryExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueryExecutionsInput, ListQueryExecutionsOutput } from "../models/models_0"; +import type { ListQueryExecutionsInput, ListQueryExecutionsOutput } from "../models/models_0"; import { ListQueryExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListSessionsCommand.ts b/clients/client-athena/src/commands/ListSessionsCommand.ts index 54afdbe941a4d..48dbfbbea725a 100644 --- a/clients/client-athena/src/commands/ListSessionsCommand.ts +++ b/clients/client-athena/src/commands/ListSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; +import type { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; import { ListSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListTableMetadataCommand.ts b/clients/client-athena/src/commands/ListTableMetadataCommand.ts index 32ad54061b388..b1694eed231f4 100644 --- a/clients/client-athena/src/commands/ListTableMetadataCommand.ts +++ b/clients/client-athena/src/commands/ListTableMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTableMetadataInput, ListTableMetadataOutput } from "../models/models_0"; +import type { ListTableMetadataInput, ListTableMetadataOutput } from "../models/models_0"; import { ListTableMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListTagsForResourceCommand.ts b/clients/client-athena/src/commands/ListTagsForResourceCommand.ts index a83de19dcdb53..ad31f06c5936b 100644 --- a/clients/client-athena/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-athena/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/ListWorkGroupsCommand.ts b/clients/client-athena/src/commands/ListWorkGroupsCommand.ts index 9588414d028c9..1ba767ce5c8f5 100644 --- a/clients/client-athena/src/commands/ListWorkGroupsCommand.ts +++ b/clients/client-athena/src/commands/ListWorkGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkGroupsInput, ListWorkGroupsOutput } from "../models/models_0"; +import type { ListWorkGroupsInput, ListWorkGroupsOutput } from "../models/models_0"; import { ListWorkGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/PutCapacityAssignmentConfigurationCommand.ts b/clients/client-athena/src/commands/PutCapacityAssignmentConfigurationCommand.ts index 4ca61ef039918..08c860a01352b 100644 --- a/clients/client-athena/src/commands/PutCapacityAssignmentConfigurationCommand.ts +++ b/clients/client-athena/src/commands/PutCapacityAssignmentConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutCapacityAssignmentConfigurationInput, PutCapacityAssignmentConfigurationOutput } from "../models/models_0"; +import type { + PutCapacityAssignmentConfigurationInput, + PutCapacityAssignmentConfigurationOutput, +} from "../models/models_0"; import { PutCapacityAssignmentConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/StartCalculationExecutionCommand.ts b/clients/client-athena/src/commands/StartCalculationExecutionCommand.ts index 61638be2cd779..edca6535e90c8 100644 --- a/clients/client-athena/src/commands/StartCalculationExecutionCommand.ts +++ b/clients/client-athena/src/commands/StartCalculationExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCalculationExecutionRequest, StartCalculationExecutionResponse } from "../models/models_0"; +import type { StartCalculationExecutionRequest, StartCalculationExecutionResponse } from "../models/models_0"; import { StartCalculationExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/StartQueryExecutionCommand.ts b/clients/client-athena/src/commands/StartQueryExecutionCommand.ts index 2a2c0e200d8ad..39ee0df132437 100644 --- a/clients/client-athena/src/commands/StartQueryExecutionCommand.ts +++ b/clients/client-athena/src/commands/StartQueryExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartQueryExecutionInput, StartQueryExecutionOutput } from "../models/models_0"; +import type { StartQueryExecutionInput, StartQueryExecutionOutput } from "../models/models_0"; import { StartQueryExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/StartSessionCommand.ts b/clients/client-athena/src/commands/StartSessionCommand.ts index 0b0e8060f409d..f976fcab156f3 100644 --- a/clients/client-athena/src/commands/StartSessionCommand.ts +++ b/clients/client-athena/src/commands/StartSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSessionRequest, StartSessionResponse } from "../models/models_0"; +import type { StartSessionRequest, StartSessionResponse } from "../models/models_0"; import { StartSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/StopCalculationExecutionCommand.ts b/clients/client-athena/src/commands/StopCalculationExecutionCommand.ts index 77c48042c033a..0024d13e4bb79 100644 --- a/clients/client-athena/src/commands/StopCalculationExecutionCommand.ts +++ b/clients/client-athena/src/commands/StopCalculationExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopCalculationExecutionRequest, StopCalculationExecutionResponse } from "../models/models_0"; +import type { StopCalculationExecutionRequest, StopCalculationExecutionResponse } from "../models/models_0"; import { StopCalculationExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/StopQueryExecutionCommand.ts b/clients/client-athena/src/commands/StopQueryExecutionCommand.ts index 1a21fa3ee466b..90dd2465dee09 100644 --- a/clients/client-athena/src/commands/StopQueryExecutionCommand.ts +++ b/clients/client-athena/src/commands/StopQueryExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopQueryExecutionInput, StopQueryExecutionOutput } from "../models/models_0"; +import type { StopQueryExecutionInput, StopQueryExecutionOutput } from "../models/models_0"; import { StopQueryExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/TagResourceCommand.ts b/clients/client-athena/src/commands/TagResourceCommand.ts index ab1cfd889798e..5d29406653d7e 100644 --- a/clients/client-athena/src/commands/TagResourceCommand.ts +++ b/clients/client-athena/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/TerminateSessionCommand.ts b/clients/client-athena/src/commands/TerminateSessionCommand.ts index a2457f32371c0..9069cd4753625 100644 --- a/clients/client-athena/src/commands/TerminateSessionCommand.ts +++ b/clients/client-athena/src/commands/TerminateSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateSessionRequest, TerminateSessionResponse } from "../models/models_0"; +import type { TerminateSessionRequest, TerminateSessionResponse } from "../models/models_0"; import { TerminateSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/UntagResourceCommand.ts b/clients/client-athena/src/commands/UntagResourceCommand.ts index 1488818f853de..3213f8ec92d35 100644 --- a/clients/client-athena/src/commands/UntagResourceCommand.ts +++ b/clients/client-athena/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/UpdateCapacityReservationCommand.ts b/clients/client-athena/src/commands/UpdateCapacityReservationCommand.ts index 8b453fda64dc8..d19372a600a17 100644 --- a/clients/client-athena/src/commands/UpdateCapacityReservationCommand.ts +++ b/clients/client-athena/src/commands/UpdateCapacityReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCapacityReservationInput, UpdateCapacityReservationOutput } from "../models/models_0"; +import type { UpdateCapacityReservationInput, UpdateCapacityReservationOutput } from "../models/models_0"; import { UpdateCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/UpdateDataCatalogCommand.ts b/clients/client-athena/src/commands/UpdateDataCatalogCommand.ts index af5311d8c4994..5206e58f2c0ef 100644 --- a/clients/client-athena/src/commands/UpdateDataCatalogCommand.ts +++ b/clients/client-athena/src/commands/UpdateDataCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataCatalogInput, UpdateDataCatalogOutput } from "../models/models_0"; +import type { UpdateDataCatalogInput, UpdateDataCatalogOutput } from "../models/models_0"; import { UpdateDataCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/UpdateNamedQueryCommand.ts b/clients/client-athena/src/commands/UpdateNamedQueryCommand.ts index 8b22b8ad2478f..61ad990c492d0 100644 --- a/clients/client-athena/src/commands/UpdateNamedQueryCommand.ts +++ b/clients/client-athena/src/commands/UpdateNamedQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNamedQueryInput, UpdateNamedQueryOutput } from "../models/models_0"; +import type { UpdateNamedQueryInput, UpdateNamedQueryOutput } from "../models/models_0"; import { UpdateNamedQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/UpdateNotebookCommand.ts b/clients/client-athena/src/commands/UpdateNotebookCommand.ts index c47cb54faf285..0a1b32df7e356 100644 --- a/clients/client-athena/src/commands/UpdateNotebookCommand.ts +++ b/clients/client-athena/src/commands/UpdateNotebookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNotebookInput, UpdateNotebookOutput } from "../models/models_0"; +import type { UpdateNotebookInput, UpdateNotebookOutput } from "../models/models_0"; import { UpdateNotebook } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/UpdateNotebookMetadataCommand.ts b/clients/client-athena/src/commands/UpdateNotebookMetadataCommand.ts index 98b98fc8b2759..4562b4f11574e 100644 --- a/clients/client-athena/src/commands/UpdateNotebookMetadataCommand.ts +++ b/clients/client-athena/src/commands/UpdateNotebookMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNotebookMetadataInput, UpdateNotebookMetadataOutput } from "../models/models_0"; +import type { UpdateNotebookMetadataInput, UpdateNotebookMetadataOutput } from "../models/models_0"; import { UpdateNotebookMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/UpdatePreparedStatementCommand.ts b/clients/client-athena/src/commands/UpdatePreparedStatementCommand.ts index b42065fce616d..6898357f52e5c 100644 --- a/clients/client-athena/src/commands/UpdatePreparedStatementCommand.ts +++ b/clients/client-athena/src/commands/UpdatePreparedStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePreparedStatementInput, UpdatePreparedStatementOutput } from "../models/models_0"; +import type { UpdatePreparedStatementInput, UpdatePreparedStatementOutput } from "../models/models_0"; import { UpdatePreparedStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/commands/UpdateWorkGroupCommand.ts b/clients/client-athena/src/commands/UpdateWorkGroupCommand.ts index f2c265fac5348..f2b611c0b7e81 100644 --- a/clients/client-athena/src/commands/UpdateWorkGroupCommand.ts +++ b/clients/client-athena/src/commands/UpdateWorkGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; +import type { AthenaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AthenaClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkGroupInput, UpdateWorkGroupOutput } from "../models/models_0"; +import type { UpdateWorkGroupInput, UpdateWorkGroupOutput } from "../models/models_0"; import { UpdateWorkGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-athena/src/endpoint/EndpointParameters.ts b/clients/client-athena/src/endpoint/EndpointParameters.ts index 114d5641bae00..52c9002915320 100644 --- a/clients/client-athena/src/endpoint/EndpointParameters.ts +++ b/clients/client-athena/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-athena/src/endpoint/endpointResolver.ts b/clients/client-athena/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-athena/src/endpoint/endpointResolver.ts +++ b/clients/client-athena/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-athena/src/extensionConfiguration.ts b/clients/client-athena/src/extensionConfiguration.ts index 8916a254c9bc4..c1b6bbfbdd129 100644 --- a/clients/client-athena/src/extensionConfiguration.ts +++ b/clients/client-athena/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-athena/src/models/AthenaServiceException.ts b/clients/client-athena/src/models/AthenaServiceException.ts index 0c8080b4f388f..a086676e003a5 100644 --- a/clients/client-athena/src/models/AthenaServiceException.ts +++ b/clients/client-athena/src/models/AthenaServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-athena/src/models/errors.ts b/clients/client-athena/src/models/errors.ts index 6521148bd8a2c..99e8be933058b 100644 --- a/clients/client-athena/src/models/errors.ts +++ b/clients/client-athena/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AthenaServiceException as __BaseException } from "./AthenaServiceException"; import { ThrottleReason } from "./enums"; diff --git a/clients/client-athena/src/pagination/GetQueryResultsPaginator.ts b/clients/client-athena/src/pagination/GetQueryResultsPaginator.ts index ae66ac323bbab..748f13b07f6b6 100644 --- a/clients/client-athena/src/pagination/GetQueryResultsPaginator.ts +++ b/clients/client-athena/src/pagination/GetQueryResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/Interfaces.ts b/clients/client-athena/src/pagination/Interfaces.ts index 419a833660ba0..2b3e3d5823741 100644 --- a/clients/client-athena/src/pagination/Interfaces.ts +++ b/clients/client-athena/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; diff --git a/clients/client-athena/src/pagination/ListApplicationDPUSizesPaginator.ts b/clients/client-athena/src/pagination/ListApplicationDPUSizesPaginator.ts index 5fcca7b588ba8..83450c5d6b6dc 100644 --- a/clients/client-athena/src/pagination/ListApplicationDPUSizesPaginator.ts +++ b/clients/client-athena/src/pagination/ListApplicationDPUSizesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListCalculationExecutionsPaginator.ts b/clients/client-athena/src/pagination/ListCalculationExecutionsPaginator.ts index c665ba8a9e1a4..1c4588cf81cbe 100644 --- a/clients/client-athena/src/pagination/ListCalculationExecutionsPaginator.ts +++ b/clients/client-athena/src/pagination/ListCalculationExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListCapacityReservationsPaginator.ts b/clients/client-athena/src/pagination/ListCapacityReservationsPaginator.ts index 5dc942a896f57..cd7fd2eafb014 100644 --- a/clients/client-athena/src/pagination/ListCapacityReservationsPaginator.ts +++ b/clients/client-athena/src/pagination/ListCapacityReservationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListDataCatalogsPaginator.ts b/clients/client-athena/src/pagination/ListDataCatalogsPaginator.ts index 40f4efdf4c018..525dc3e27cb46 100644 --- a/clients/client-athena/src/pagination/ListDataCatalogsPaginator.ts +++ b/clients/client-athena/src/pagination/ListDataCatalogsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListDatabasesPaginator.ts b/clients/client-athena/src/pagination/ListDatabasesPaginator.ts index 4d973c912697a..e7508542d8dcd 100644 --- a/clients/client-athena/src/pagination/ListDatabasesPaginator.ts +++ b/clients/client-athena/src/pagination/ListDatabasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListEngineVersionsPaginator.ts b/clients/client-athena/src/pagination/ListEngineVersionsPaginator.ts index 7fc4dfb308d86..88d1b58a034bd 100644 --- a/clients/client-athena/src/pagination/ListEngineVersionsPaginator.ts +++ b/clients/client-athena/src/pagination/ListEngineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListExecutorsPaginator.ts b/clients/client-athena/src/pagination/ListExecutorsPaginator.ts index 80e7b68147ad0..5d1d634914347 100644 --- a/clients/client-athena/src/pagination/ListExecutorsPaginator.ts +++ b/clients/client-athena/src/pagination/ListExecutorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListNamedQueriesPaginator.ts b/clients/client-athena/src/pagination/ListNamedQueriesPaginator.ts index bc93593dec3ae..0b1787e17e68f 100644 --- a/clients/client-athena/src/pagination/ListNamedQueriesPaginator.ts +++ b/clients/client-athena/src/pagination/ListNamedQueriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListPreparedStatementsPaginator.ts b/clients/client-athena/src/pagination/ListPreparedStatementsPaginator.ts index d5a62c8d20bcf..5e5693a5b6ffa 100644 --- a/clients/client-athena/src/pagination/ListPreparedStatementsPaginator.ts +++ b/clients/client-athena/src/pagination/ListPreparedStatementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListQueryExecutionsPaginator.ts b/clients/client-athena/src/pagination/ListQueryExecutionsPaginator.ts index c452642eab395..53eee530586d1 100644 --- a/clients/client-athena/src/pagination/ListQueryExecutionsPaginator.ts +++ b/clients/client-athena/src/pagination/ListQueryExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListSessionsPaginator.ts b/clients/client-athena/src/pagination/ListSessionsPaginator.ts index d4204a29c1e03..ee9adbc702185 100644 --- a/clients/client-athena/src/pagination/ListSessionsPaginator.ts +++ b/clients/client-athena/src/pagination/ListSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListTableMetadataPaginator.ts b/clients/client-athena/src/pagination/ListTableMetadataPaginator.ts index 03d1def051c35..ff124acf3ec58 100644 --- a/clients/client-athena/src/pagination/ListTableMetadataPaginator.ts +++ b/clients/client-athena/src/pagination/ListTableMetadataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-athena/src/pagination/ListTagsForResourcePaginator.ts index 0422535f9da7d..daa3fd5517c14 100644 --- a/clients/client-athena/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-athena/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/pagination/ListWorkGroupsPaginator.ts b/clients/client-athena/src/pagination/ListWorkGroupsPaginator.ts index f146f90182fe7..09e19299ce8e5 100644 --- a/clients/client-athena/src/pagination/ListWorkGroupsPaginator.ts +++ b/clients/client-athena/src/pagination/ListWorkGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AthenaClient } from "../AthenaClient"; import { diff --git a/clients/client-athena/src/runtimeConfig.browser.ts b/clients/client-athena/src/runtimeConfig.browser.ts index 8686aff6a543c..3a287eab28f58 100644 --- a/clients/client-athena/src/runtimeConfig.browser.ts +++ b/clients/client-athena/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AthenaClientConfig } from "./AthenaClient"; + +import type { AthenaClientConfig } from "./AthenaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-athena/src/runtimeConfig.native.ts b/clients/client-athena/src/runtimeConfig.native.ts index cd9d82a14fa45..8d9ebfc0c482a 100644 --- a/clients/client-athena/src/runtimeConfig.native.ts +++ b/clients/client-athena/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AthenaClientConfig } from "./AthenaClient"; +import type { AthenaClientConfig } from "./AthenaClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-athena/src/runtimeConfig.shared.ts b/clients/client-athena/src/runtimeConfig.shared.ts index 6edf066da3ef0..a81d29c119ec8 100644 --- a/clients/client-athena/src/runtimeConfig.shared.ts +++ b/clients/client-athena/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AthenaClientConfig } from "./AthenaClient"; +import type { AthenaClientConfig } from "./AthenaClient"; import { defaultAthenaHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-athena/src/runtimeConfig.ts b/clients/client-athena/src/runtimeConfig.ts index 0f5f6b3ae456f..60eb03757810c 100644 --- a/clients/client-athena/src/runtimeConfig.ts +++ b/clients/client-athena/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AthenaClientConfig } from "./AthenaClient"; + +import type { AthenaClientConfig } from "./AthenaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-athena/src/runtimeExtensions.ts b/clients/client-athena/src/runtimeExtensions.ts index c184461f14a15..a2ca97e6205f6 100644 --- a/clients/client-athena/src/runtimeExtensions.ts +++ b/clients/client-athena/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AthenaExtensionConfiguration } from "./extensionConfiguration"; +import type { AthenaExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-athena/src/schemas/schemas_0.ts b/clients/client-athena/src/schemas/schemas_0.ts index 9585355d4cba2..9503d104bfe70 100644 --- a/clients/client-athena/src/schemas/schemas_0.ts +++ b/clients/client-athena/src/schemas/schemas_0.ts @@ -512,7 +512,7 @@ const n0 = "com.amazonaws.athena"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-auditmanager/package.json b/clients/client-auditmanager/package.json index 94a4362e72c91..feac3eb7a0dfc 100644 --- a/clients/client-auditmanager/package.json +++ b/clients/client-auditmanager/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-auditmanager/src/AuditManager.ts b/clients/client-auditmanager/src/AuditManager.ts index 4dd9125ee8d50..24865f0f26c37 100644 --- a/clients/client-auditmanager/src/AuditManager.ts +++ b/clients/client-auditmanager/src/AuditManager.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AuditManagerClient, AuditManagerClientConfig } from "./AuditManagerClient"; +import { AuditManagerClient } from "./AuditManagerClient"; import { AssociateAssessmentReportEvidenceFolderCommand, AssociateAssessmentReportEvidenceFolderCommandInput, diff --git a/clients/client-auditmanager/src/AuditManagerClient.ts b/clients/client-auditmanager/src/AuditManagerClient.ts index 85b92f216dcbb..75c277d2a2d81 100644 --- a/clients/client-auditmanager/src/AuditManagerClient.ts +++ b/clients/client-auditmanager/src/AuditManagerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAuditManagerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -240,7 +249,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-auditmanager/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-auditmanager/src/auth/httpAuthExtensionConfiguration.ts index d2ff80cf3bc97..a65a39d910a80 100644 --- a/clients/client-auditmanager/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-auditmanager/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AuditManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AuditManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-auditmanager/src/auth/httpAuthSchemeProvider.ts b/clients/client-auditmanager/src/auth/httpAuthSchemeProvider.ts index c2e2f1e297381..b4b662aaa3cd8 100644 --- a/clients/client-auditmanager/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-auditmanager/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AuditManagerClientConfig, AuditManagerClientResolvedConfig } from "../AuditManagerClient"; +import { type AuditManagerClientResolvedConfig, AuditManagerClientConfig } from "../AuditManagerClient"; /** * @internal diff --git a/clients/client-auditmanager/src/commands/AssociateAssessmentReportEvidenceFolderCommand.ts b/clients/client-auditmanager/src/commands/AssociateAssessmentReportEvidenceFolderCommand.ts index 2fd398ce65375..cec14351e794c 100644 --- a/clients/client-auditmanager/src/commands/AssociateAssessmentReportEvidenceFolderCommand.ts +++ b/clients/client-auditmanager/src/commands/AssociateAssessmentReportEvidenceFolderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateAssessmentReportEvidenceFolderRequest, AssociateAssessmentReportEvidenceFolderResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/BatchAssociateAssessmentReportEvidenceCommand.ts b/clients/client-auditmanager/src/commands/BatchAssociateAssessmentReportEvidenceCommand.ts index c23862b2414e1..ae44739bc89d2 100644 --- a/clients/client-auditmanager/src/commands/BatchAssociateAssessmentReportEvidenceCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchAssociateAssessmentReportEvidenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchAssociateAssessmentReportEvidenceRequest, BatchAssociateAssessmentReportEvidenceResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/BatchCreateDelegationByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/BatchCreateDelegationByAssessmentCommand.ts index 8043866383ad5..7befd30c0b325 100644 --- a/clients/client-auditmanager/src/commands/BatchCreateDelegationByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchCreateDelegationByAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchCreateDelegationByAssessmentRequest, BatchCreateDelegationByAssessmentResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/BatchDeleteDelegationByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/BatchDeleteDelegationByAssessmentCommand.ts index cf0a90f08e93b..198d3f8d09d8e 100644 --- a/clients/client-auditmanager/src/commands/BatchDeleteDelegationByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchDeleteDelegationByAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchDeleteDelegationByAssessmentRequest, BatchDeleteDelegationByAssessmentResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/BatchDisassociateAssessmentReportEvidenceCommand.ts b/clients/client-auditmanager/src/commands/BatchDisassociateAssessmentReportEvidenceCommand.ts index 6dee13c5a774d..31f117d91d89b 100644 --- a/clients/client-auditmanager/src/commands/BatchDisassociateAssessmentReportEvidenceCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchDisassociateAssessmentReportEvidenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchDisassociateAssessmentReportEvidenceRequest, BatchDisassociateAssessmentReportEvidenceResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/BatchImportEvidenceToAssessmentControlCommand.ts b/clients/client-auditmanager/src/commands/BatchImportEvidenceToAssessmentControlCommand.ts index 8a411cac5310b..f67b62f6d34b4 100644 --- a/clients/client-auditmanager/src/commands/BatchImportEvidenceToAssessmentControlCommand.ts +++ b/clients/client-auditmanager/src/commands/BatchImportEvidenceToAssessmentControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchImportEvidenceToAssessmentControlRequest, BatchImportEvidenceToAssessmentControlResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/CreateAssessmentCommand.ts b/clients/client-auditmanager/src/commands/CreateAssessmentCommand.ts index 59d5fc671c7ae..ecb1e6ed0e944 100644 --- a/clients/client-auditmanager/src/commands/CreateAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/CreateAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssessmentRequest, CreateAssessmentResponse } from "../models/models_0"; +import type { CreateAssessmentRequest, CreateAssessmentResponse } from "../models/models_0"; import { CreateAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/CreateAssessmentFrameworkCommand.ts b/clients/client-auditmanager/src/commands/CreateAssessmentFrameworkCommand.ts index c69551cf4e9ad..c8637d6605d4c 100644 --- a/clients/client-auditmanager/src/commands/CreateAssessmentFrameworkCommand.ts +++ b/clients/client-auditmanager/src/commands/CreateAssessmentFrameworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssessmentFrameworkRequest, CreateAssessmentFrameworkResponse } from "../models/models_0"; +import type { CreateAssessmentFrameworkRequest, CreateAssessmentFrameworkResponse } from "../models/models_0"; import { CreateAssessmentFramework } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/CreateAssessmentReportCommand.ts b/clients/client-auditmanager/src/commands/CreateAssessmentReportCommand.ts index 2b6aa950633f3..8b38d5897e3aa 100644 --- a/clients/client-auditmanager/src/commands/CreateAssessmentReportCommand.ts +++ b/clients/client-auditmanager/src/commands/CreateAssessmentReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssessmentReportRequest, CreateAssessmentReportResponse } from "../models/models_0"; +import type { CreateAssessmentReportRequest, CreateAssessmentReportResponse } from "../models/models_0"; import { CreateAssessmentReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/CreateControlCommand.ts b/clients/client-auditmanager/src/commands/CreateControlCommand.ts index 2a1a033d017ac..a0ba278e5ed82 100644 --- a/clients/client-auditmanager/src/commands/CreateControlCommand.ts +++ b/clients/client-auditmanager/src/commands/CreateControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateControlRequest, CreateControlResponse } from "../models/models_0"; +import type { CreateControlRequest, CreateControlResponse } from "../models/models_0"; import { CreateControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/DeleteAssessmentCommand.ts b/clients/client-auditmanager/src/commands/DeleteAssessmentCommand.ts index b00208dca7eb6..2f4c6a643c29a 100644 --- a/clients/client-auditmanager/src/commands/DeleteAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssessmentRequest, DeleteAssessmentResponse } from "../models/models_0"; +import type { DeleteAssessmentRequest, DeleteAssessmentResponse } from "../models/models_0"; import { DeleteAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkCommand.ts b/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkCommand.ts index 44cd8b25a4a05..e86229ce05104 100644 --- a/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssessmentFrameworkRequest, DeleteAssessmentFrameworkResponse } from "../models/models_0"; +import type { DeleteAssessmentFrameworkRequest, DeleteAssessmentFrameworkResponse } from "../models/models_0"; import { DeleteAssessmentFramework } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkShareCommand.ts b/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkShareCommand.ts index 33ef2b2482ab3..f0955b8c6543b 100644 --- a/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkShareCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteAssessmentFrameworkShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssessmentFrameworkShareRequest, DeleteAssessmentFrameworkShareResponse } from "../models/models_0"; +import type { DeleteAssessmentFrameworkShareRequest, DeleteAssessmentFrameworkShareResponse } from "../models/models_0"; import { DeleteAssessmentFrameworkShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/DeleteAssessmentReportCommand.ts b/clients/client-auditmanager/src/commands/DeleteAssessmentReportCommand.ts index 2364023b815d3..717f8ad0601e6 100644 --- a/clients/client-auditmanager/src/commands/DeleteAssessmentReportCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteAssessmentReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssessmentReportRequest, DeleteAssessmentReportResponse } from "../models/models_0"; +import type { DeleteAssessmentReportRequest, DeleteAssessmentReportResponse } from "../models/models_0"; import { DeleteAssessmentReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/DeleteControlCommand.ts b/clients/client-auditmanager/src/commands/DeleteControlCommand.ts index b3cad498c6484..92355b642eb4f 100644 --- a/clients/client-auditmanager/src/commands/DeleteControlCommand.ts +++ b/clients/client-auditmanager/src/commands/DeleteControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteControlRequest, DeleteControlResponse } from "../models/models_0"; +import type { DeleteControlRequest, DeleteControlResponse } from "../models/models_0"; import { DeleteControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/DeregisterAccountCommand.ts b/clients/client-auditmanager/src/commands/DeregisterAccountCommand.ts index f6cbb80d4033f..51e1ea4e82bc6 100644 --- a/clients/client-auditmanager/src/commands/DeregisterAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/DeregisterAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterAccountRequest, DeregisterAccountResponse } from "../models/models_0"; +import type { DeregisterAccountRequest, DeregisterAccountResponse } from "../models/models_0"; import { DeregisterAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/DeregisterOrganizationAdminAccountCommand.ts b/clients/client-auditmanager/src/commands/DeregisterOrganizationAdminAccountCommand.ts index 9a46734b4f72c..5fa9ceca5ca1c 100644 --- a/clients/client-auditmanager/src/commands/DeregisterOrganizationAdminAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/DeregisterOrganizationAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterOrganizationAdminAccountRequest, DeregisterOrganizationAdminAccountResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/DisassociateAssessmentReportEvidenceFolderCommand.ts b/clients/client-auditmanager/src/commands/DisassociateAssessmentReportEvidenceFolderCommand.ts index 5bd70be084edf..94d0689d36f9d 100644 --- a/clients/client-auditmanager/src/commands/DisassociateAssessmentReportEvidenceFolderCommand.ts +++ b/clients/client-auditmanager/src/commands/DisassociateAssessmentReportEvidenceFolderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateAssessmentReportEvidenceFolderRequest, DisassociateAssessmentReportEvidenceFolderResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/GetAccountStatusCommand.ts b/clients/client-auditmanager/src/commands/GetAccountStatusCommand.ts index 101e0fa220086..822035ab0fe42 100644 --- a/clients/client-auditmanager/src/commands/GetAccountStatusCommand.ts +++ b/clients/client-auditmanager/src/commands/GetAccountStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountStatusRequest, GetAccountStatusResponse } from "../models/models_0"; +import type { GetAccountStatusRequest, GetAccountStatusResponse } from "../models/models_0"; import { GetAccountStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetAssessmentCommand.ts b/clients/client-auditmanager/src/commands/GetAssessmentCommand.ts index 57dbfbc82ca60..fcbe09b6411bd 100644 --- a/clients/client-auditmanager/src/commands/GetAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/GetAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssessmentRequest, GetAssessmentResponse } from "../models/models_0"; +import type { GetAssessmentRequest, GetAssessmentResponse } from "../models/models_0"; import { GetAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetAssessmentFrameworkCommand.ts b/clients/client-auditmanager/src/commands/GetAssessmentFrameworkCommand.ts index 3e0a8d4e84761..a30f37f13d6ed 100644 --- a/clients/client-auditmanager/src/commands/GetAssessmentFrameworkCommand.ts +++ b/clients/client-auditmanager/src/commands/GetAssessmentFrameworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssessmentFrameworkRequest, GetAssessmentFrameworkResponse } from "../models/models_0"; +import type { GetAssessmentFrameworkRequest, GetAssessmentFrameworkResponse } from "../models/models_0"; import { GetAssessmentFramework } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetAssessmentReportUrlCommand.ts b/clients/client-auditmanager/src/commands/GetAssessmentReportUrlCommand.ts index 871085ab397ad..093bcedbb32dc 100644 --- a/clients/client-auditmanager/src/commands/GetAssessmentReportUrlCommand.ts +++ b/clients/client-auditmanager/src/commands/GetAssessmentReportUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssessmentReportUrlRequest, GetAssessmentReportUrlResponse } from "../models/models_0"; +import type { GetAssessmentReportUrlRequest, GetAssessmentReportUrlResponse } from "../models/models_0"; import { GetAssessmentReportUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetChangeLogsCommand.ts b/clients/client-auditmanager/src/commands/GetChangeLogsCommand.ts index d69033165d391..55b1004047284 100644 --- a/clients/client-auditmanager/src/commands/GetChangeLogsCommand.ts +++ b/clients/client-auditmanager/src/commands/GetChangeLogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChangeLogsRequest, GetChangeLogsResponse } from "../models/models_0"; +import type { GetChangeLogsRequest, GetChangeLogsResponse } from "../models/models_0"; import { GetChangeLogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetControlCommand.ts b/clients/client-auditmanager/src/commands/GetControlCommand.ts index c87b4cb974fc6..3f13a4b16b3f0 100644 --- a/clients/client-auditmanager/src/commands/GetControlCommand.ts +++ b/clients/client-auditmanager/src/commands/GetControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetControlRequest, GetControlResponse } from "../models/models_0"; +import type { GetControlRequest, GetControlResponse } from "../models/models_0"; import { GetControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetDelegationsCommand.ts b/clients/client-auditmanager/src/commands/GetDelegationsCommand.ts index 09df4e8b959a7..86e7d643e2214 100644 --- a/clients/client-auditmanager/src/commands/GetDelegationsCommand.ts +++ b/clients/client-auditmanager/src/commands/GetDelegationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDelegationsRequest, GetDelegationsResponse } from "../models/models_0"; +import type { GetDelegationsRequest, GetDelegationsResponse } from "../models/models_0"; import { GetDelegations } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetEvidenceByEvidenceFolderCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceByEvidenceFolderCommand.ts index 59c58588f0f0b..e05370d5c8b46 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceByEvidenceFolderCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceByEvidenceFolderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEvidenceByEvidenceFolderRequest, GetEvidenceByEvidenceFolderResponse } from "../models/models_0"; +import type { GetEvidenceByEvidenceFolderRequest, GetEvidenceByEvidenceFolderResponse } from "../models/models_0"; import { GetEvidenceByEvidenceFolder } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetEvidenceCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceCommand.ts index 4c3bc091ff4be..e6821d6e1e957 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEvidenceRequest, GetEvidenceResponse } from "../models/models_0"; +import type { GetEvidenceRequest, GetEvidenceResponse } from "../models/models_0"; import { GetEvidence } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetEvidenceFileUploadUrlCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceFileUploadUrlCommand.ts index bfc26de7bbe90..7430e07a7fc0a 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceFileUploadUrlCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceFileUploadUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEvidenceFileUploadUrlRequest, GetEvidenceFileUploadUrlResponse } from "../models/models_0"; +import type { GetEvidenceFileUploadUrlRequest, GetEvidenceFileUploadUrlResponse } from "../models/models_0"; import { GetEvidenceFileUploadUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetEvidenceFolderCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceFolderCommand.ts index 140dd52825987..92184fe6ab082 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceFolderCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceFolderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEvidenceFolderRequest, GetEvidenceFolderResponse } from "../models/models_0"; +import type { GetEvidenceFolderRequest, GetEvidenceFolderResponse } from "../models/models_0"; import { GetEvidenceFolder } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentCommand.ts index 2bb264b285650..a5cbd71fb4158 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEvidenceFoldersByAssessmentRequest, GetEvidenceFoldersByAssessmentResponse } from "../models/models_0"; +import type { GetEvidenceFoldersByAssessmentRequest, GetEvidenceFoldersByAssessmentResponse } from "../models/models_0"; import { GetEvidenceFoldersByAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentControlCommand.ts b/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentControlCommand.ts index 1d881c8e99bea..c500610a8b231 100644 --- a/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentControlCommand.ts +++ b/clients/client-auditmanager/src/commands/GetEvidenceFoldersByAssessmentControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetEvidenceFoldersByAssessmentControlRequest, GetEvidenceFoldersByAssessmentControlResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/GetInsightsByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/GetInsightsByAssessmentCommand.ts index 188be140ea242..d5ccfe58a966a 100644 --- a/clients/client-auditmanager/src/commands/GetInsightsByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/GetInsightsByAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightsByAssessmentRequest, GetInsightsByAssessmentResponse } from "../models/models_0"; +import type { GetInsightsByAssessmentRequest, GetInsightsByAssessmentResponse } from "../models/models_0"; import { GetInsightsByAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetInsightsCommand.ts b/clients/client-auditmanager/src/commands/GetInsightsCommand.ts index 75469a365e53f..651e0e1e55968 100644 --- a/clients/client-auditmanager/src/commands/GetInsightsCommand.ts +++ b/clients/client-auditmanager/src/commands/GetInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightsRequest, GetInsightsResponse } from "../models/models_0"; +import type { GetInsightsRequest, GetInsightsResponse } from "../models/models_0"; import { GetInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetOrganizationAdminAccountCommand.ts b/clients/client-auditmanager/src/commands/GetOrganizationAdminAccountCommand.ts index bf38bd60d3ff3..ce20d59c80f2e 100644 --- a/clients/client-auditmanager/src/commands/GetOrganizationAdminAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/GetOrganizationAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOrganizationAdminAccountRequest, GetOrganizationAdminAccountResponse } from "../models/models_0"; +import type { GetOrganizationAdminAccountRequest, GetOrganizationAdminAccountResponse } from "../models/models_0"; import { GetOrganizationAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetServicesInScopeCommand.ts b/clients/client-auditmanager/src/commands/GetServicesInScopeCommand.ts index aa479490c2151..d68208b953634 100644 --- a/clients/client-auditmanager/src/commands/GetServicesInScopeCommand.ts +++ b/clients/client-auditmanager/src/commands/GetServicesInScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServicesInScopeRequest, GetServicesInScopeResponse } from "../models/models_0"; +import type { GetServicesInScopeRequest, GetServicesInScopeResponse } from "../models/models_0"; import { GetServicesInScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/GetSettingsCommand.ts b/clients/client-auditmanager/src/commands/GetSettingsCommand.ts index 8eaab621d9c28..5d6fa2d38ea1e 100644 --- a/clients/client-auditmanager/src/commands/GetSettingsCommand.ts +++ b/clients/client-auditmanager/src/commands/GetSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSettingsRequest, GetSettingsResponse } from "../models/models_0"; +import type { GetSettingsRequest, GetSettingsResponse } from "../models/models_0"; import { GetSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/ListAssessmentControlInsightsByControlDomainCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentControlInsightsByControlDomainCommand.ts index 5b0023647d666..f31a7adfc4a8f 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentControlInsightsByControlDomainCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentControlInsightsByControlDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAssessmentControlInsightsByControlDomainRequest, ListAssessmentControlInsightsByControlDomainResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/ListAssessmentFrameworkShareRequestsCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentFrameworkShareRequestsCommand.ts index 829edb56c2f76..cef0fc1ece61f 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentFrameworkShareRequestsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentFrameworkShareRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAssessmentFrameworkShareRequestsRequest, ListAssessmentFrameworkShareRequestsResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/ListAssessmentFrameworksCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentFrameworksCommand.ts index eadc68dd57d11..412405d5b10a6 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentFrameworksCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentFrameworksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssessmentFrameworksRequest, ListAssessmentFrameworksResponse } from "../models/models_0"; +import type { ListAssessmentFrameworksRequest, ListAssessmentFrameworksResponse } from "../models/models_0"; import { ListAssessmentFrameworks } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/ListAssessmentReportsCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentReportsCommand.ts index 3b7fa124a203e..04fc914f8a2cc 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentReportsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssessmentReportsRequest, ListAssessmentReportsResponse } from "../models/models_0"; +import type { ListAssessmentReportsRequest, ListAssessmentReportsResponse } from "../models/models_0"; import { ListAssessmentReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/ListAssessmentsCommand.ts b/clients/client-auditmanager/src/commands/ListAssessmentsCommand.ts index 5d2c2e3e2b391..7d8355ae6c220 100644 --- a/clients/client-auditmanager/src/commands/ListAssessmentsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListAssessmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssessmentsRequest, ListAssessmentsResponse } from "../models/models_0"; +import type { ListAssessmentsRequest, ListAssessmentsResponse } from "../models/models_0"; import { ListAssessments } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/ListControlDomainInsightsByAssessmentCommand.ts b/clients/client-auditmanager/src/commands/ListControlDomainInsightsByAssessmentCommand.ts index da4e1bbcafd4e..8056384e109d3 100644 --- a/clients/client-auditmanager/src/commands/ListControlDomainInsightsByAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/ListControlDomainInsightsByAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListControlDomainInsightsByAssessmentRequest, ListControlDomainInsightsByAssessmentResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/ListControlDomainInsightsCommand.ts b/clients/client-auditmanager/src/commands/ListControlDomainInsightsCommand.ts index 84bc0fe2825c3..c950226208069 100644 --- a/clients/client-auditmanager/src/commands/ListControlDomainInsightsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListControlDomainInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListControlDomainInsightsRequest, ListControlDomainInsightsResponse } from "../models/models_0"; +import type { ListControlDomainInsightsRequest, ListControlDomainInsightsResponse } from "../models/models_0"; import { ListControlDomainInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/ListControlInsightsByControlDomainCommand.ts b/clients/client-auditmanager/src/commands/ListControlInsightsByControlDomainCommand.ts index d0c86455fc9b6..96de5d8ece253 100644 --- a/clients/client-auditmanager/src/commands/ListControlInsightsByControlDomainCommand.ts +++ b/clients/client-auditmanager/src/commands/ListControlInsightsByControlDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListControlInsightsByControlDomainRequest, ListControlInsightsByControlDomainResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/commands/ListControlsCommand.ts b/clients/client-auditmanager/src/commands/ListControlsCommand.ts index 42af3ad3630ee..40da9602dfc51 100644 --- a/clients/client-auditmanager/src/commands/ListControlsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListControlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListControlsRequest, ListControlsResponse } from "../models/models_0"; +import type { ListControlsRequest, ListControlsResponse } from "../models/models_0"; import { ListControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/ListKeywordsForDataSourceCommand.ts b/clients/client-auditmanager/src/commands/ListKeywordsForDataSourceCommand.ts index 11f1eaff96a14..af1e24b8f2585 100644 --- a/clients/client-auditmanager/src/commands/ListKeywordsForDataSourceCommand.ts +++ b/clients/client-auditmanager/src/commands/ListKeywordsForDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKeywordsForDataSourceRequest, ListKeywordsForDataSourceResponse } from "../models/models_0"; +import type { ListKeywordsForDataSourceRequest, ListKeywordsForDataSourceResponse } from "../models/models_0"; import { ListKeywordsForDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/ListNotificationsCommand.ts b/clients/client-auditmanager/src/commands/ListNotificationsCommand.ts index 187115c650bfb..e470549e79dee 100644 --- a/clients/client-auditmanager/src/commands/ListNotificationsCommand.ts +++ b/clients/client-auditmanager/src/commands/ListNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotificationsRequest, ListNotificationsResponse } from "../models/models_0"; +import type { ListNotificationsRequest, ListNotificationsResponse } from "../models/models_0"; import { ListNotifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/ListTagsForResourceCommand.ts b/clients/client-auditmanager/src/commands/ListTagsForResourceCommand.ts index b8b587e2cc740..d58886373c4bd 100644 --- a/clients/client-auditmanager/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-auditmanager/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/RegisterAccountCommand.ts b/clients/client-auditmanager/src/commands/RegisterAccountCommand.ts index 7ff1656817ef2..393f45b3932a0 100644 --- a/clients/client-auditmanager/src/commands/RegisterAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/RegisterAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterAccountRequest, RegisterAccountResponse } from "../models/models_0"; +import type { RegisterAccountRequest, RegisterAccountResponse } from "../models/models_0"; import { RegisterAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/RegisterOrganizationAdminAccountCommand.ts b/clients/client-auditmanager/src/commands/RegisterOrganizationAdminAccountCommand.ts index 77155b921ff69..583574840150d 100644 --- a/clients/client-auditmanager/src/commands/RegisterOrganizationAdminAccountCommand.ts +++ b/clients/client-auditmanager/src/commands/RegisterOrganizationAdminAccountCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterOrganizationAdminAccountRequest, RegisterOrganizationAdminAccountResponse } from "../models/models_0"; +import type { + RegisterOrganizationAdminAccountRequest, + RegisterOrganizationAdminAccountResponse, +} from "../models/models_0"; import { RegisterOrganizationAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/StartAssessmentFrameworkShareCommand.ts b/clients/client-auditmanager/src/commands/StartAssessmentFrameworkShareCommand.ts index 9e9ea967ef42e..923d58816bcff 100644 --- a/clients/client-auditmanager/src/commands/StartAssessmentFrameworkShareCommand.ts +++ b/clients/client-auditmanager/src/commands/StartAssessmentFrameworkShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAssessmentFrameworkShareRequest, StartAssessmentFrameworkShareResponse } from "../models/models_0"; +import type { StartAssessmentFrameworkShareRequest, StartAssessmentFrameworkShareResponse } from "../models/models_0"; import { StartAssessmentFrameworkShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/TagResourceCommand.ts b/clients/client-auditmanager/src/commands/TagResourceCommand.ts index 30c1a8f218209..6665a0f8d6078 100644 --- a/clients/client-auditmanager/src/commands/TagResourceCommand.ts +++ b/clients/client-auditmanager/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/UntagResourceCommand.ts b/clients/client-auditmanager/src/commands/UntagResourceCommand.ts index cb1a9ed223c8f..a231545d5ac95 100644 --- a/clients/client-auditmanager/src/commands/UntagResourceCommand.ts +++ b/clients/client-auditmanager/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentCommand.ts index 84012ddee81c1..1fcde244cc96c 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssessmentRequest, UpdateAssessmentResponse } from "../models/models_0"; +import type { UpdateAssessmentRequest, UpdateAssessmentResponse } from "../models/models_0"; import { UpdateAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentControlCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentControlCommand.ts index b7aea0a106b62..663a7048fefd5 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentControlCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssessmentControlRequest, UpdateAssessmentControlResponse } from "../models/models_0"; +import type { UpdateAssessmentControlRequest, UpdateAssessmentControlResponse } from "../models/models_0"; import { UpdateAssessmentControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentControlSetStatusCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentControlSetStatusCommand.ts index 27d6492091977..886af40236cc6 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentControlSetStatusCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentControlSetStatusCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssessmentControlSetStatusRequest, UpdateAssessmentControlSetStatusResponse } from "../models/models_0"; +import type { + UpdateAssessmentControlSetStatusRequest, + UpdateAssessmentControlSetStatusResponse, +} from "../models/models_0"; import { UpdateAssessmentControlSetStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkCommand.ts index 3b554958412f4..1957c6c6ab299 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssessmentFrameworkRequest, UpdateAssessmentFrameworkResponse } from "../models/models_0"; +import type { UpdateAssessmentFrameworkRequest, UpdateAssessmentFrameworkResponse } from "../models/models_0"; import { UpdateAssessmentFramework } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkShareCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkShareCommand.ts index df2836846b215..fece4d039c744 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkShareCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentFrameworkShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssessmentFrameworkShareRequest, UpdateAssessmentFrameworkShareResponse } from "../models/models_0"; +import type { UpdateAssessmentFrameworkShareRequest, UpdateAssessmentFrameworkShareResponse } from "../models/models_0"; import { UpdateAssessmentFrameworkShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/UpdateAssessmentStatusCommand.ts b/clients/client-auditmanager/src/commands/UpdateAssessmentStatusCommand.ts index 6b5f1b4feaf26..94fd6f6bb5f94 100644 --- a/clients/client-auditmanager/src/commands/UpdateAssessmentStatusCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateAssessmentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssessmentStatusRequest, UpdateAssessmentStatusResponse } from "../models/models_0"; +import type { UpdateAssessmentStatusRequest, UpdateAssessmentStatusResponse } from "../models/models_0"; import { UpdateAssessmentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/UpdateControlCommand.ts b/clients/client-auditmanager/src/commands/UpdateControlCommand.ts index c5fa0b7ab4360..e55cc5c0f8e9f 100644 --- a/clients/client-auditmanager/src/commands/UpdateControlCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateControlRequest, UpdateControlResponse } from "../models/models_0"; +import type { UpdateControlRequest, UpdateControlResponse } from "../models/models_0"; import { UpdateControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/UpdateSettingsCommand.ts b/clients/client-auditmanager/src/commands/UpdateSettingsCommand.ts index 1fe1f448c2465..7b3ff1e22e498 100644 --- a/clients/client-auditmanager/src/commands/UpdateSettingsCommand.ts +++ b/clients/client-auditmanager/src/commands/UpdateSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSettingsRequest, UpdateSettingsResponse } from "../models/models_0"; +import type { UpdateSettingsRequest, UpdateSettingsResponse } from "../models/models_0"; import { UpdateSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-auditmanager/src/commands/ValidateAssessmentReportIntegrityCommand.ts b/clients/client-auditmanager/src/commands/ValidateAssessmentReportIntegrityCommand.ts index 44fbc7f50c6c1..314be954d6448 100644 --- a/clients/client-auditmanager/src/commands/ValidateAssessmentReportIntegrityCommand.ts +++ b/clients/client-auditmanager/src/commands/ValidateAssessmentReportIntegrityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; +import type { AuditManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AuditManagerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ValidateAssessmentReportIntegrityRequest, ValidateAssessmentReportIntegrityResponse, } from "../models/models_0"; diff --git a/clients/client-auditmanager/src/endpoint/EndpointParameters.ts b/clients/client-auditmanager/src/endpoint/EndpointParameters.ts index ef2a32b8a0ed1..274c1132863b3 100644 --- a/clients/client-auditmanager/src/endpoint/EndpointParameters.ts +++ b/clients/client-auditmanager/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-auditmanager/src/endpoint/endpointResolver.ts b/clients/client-auditmanager/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-auditmanager/src/endpoint/endpointResolver.ts +++ b/clients/client-auditmanager/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-auditmanager/src/extensionConfiguration.ts b/clients/client-auditmanager/src/extensionConfiguration.ts index 59d011f88a5e2..5c5ea85c28108 100644 --- a/clients/client-auditmanager/src/extensionConfiguration.ts +++ b/clients/client-auditmanager/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-auditmanager/src/models/AuditManagerServiceException.ts b/clients/client-auditmanager/src/models/AuditManagerServiceException.ts index 185542befd275..96fb3db3bd93d 100644 --- a/clients/client-auditmanager/src/models/AuditManagerServiceException.ts +++ b/clients/client-auditmanager/src/models/AuditManagerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-auditmanager/src/models/errors.ts b/clients/client-auditmanager/src/models/errors.ts index 3f101e06628f7..514e6320ed4aa 100644 --- a/clients/client-auditmanager/src/models/errors.ts +++ b/clients/client-auditmanager/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AuditManagerServiceException as __BaseException } from "./AuditManagerServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-auditmanager/src/pagination/GetChangeLogsPaginator.ts b/clients/client-auditmanager/src/pagination/GetChangeLogsPaginator.ts index 2067150e63e09..87ca20dc5a1c8 100644 --- a/clients/client-auditmanager/src/pagination/GetChangeLogsPaginator.ts +++ b/clients/client-auditmanager/src/pagination/GetChangeLogsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/GetDelegationsPaginator.ts b/clients/client-auditmanager/src/pagination/GetDelegationsPaginator.ts index 25fa4959d0eef..8c6217988a418 100644 --- a/clients/client-auditmanager/src/pagination/GetDelegationsPaginator.ts +++ b/clients/client-auditmanager/src/pagination/GetDelegationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/GetEvidenceByEvidenceFolderPaginator.ts b/clients/client-auditmanager/src/pagination/GetEvidenceByEvidenceFolderPaginator.ts index 8585062dae670..f295b7878527f 100644 --- a/clients/client-auditmanager/src/pagination/GetEvidenceByEvidenceFolderPaginator.ts +++ b/clients/client-auditmanager/src/pagination/GetEvidenceByEvidenceFolderPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/GetEvidenceFoldersByAssessmentControlPaginator.ts b/clients/client-auditmanager/src/pagination/GetEvidenceFoldersByAssessmentControlPaginator.ts index d15b1db1b3076..36515e6b2566c 100644 --- a/clients/client-auditmanager/src/pagination/GetEvidenceFoldersByAssessmentControlPaginator.ts +++ b/clients/client-auditmanager/src/pagination/GetEvidenceFoldersByAssessmentControlPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/GetEvidenceFoldersByAssessmentPaginator.ts b/clients/client-auditmanager/src/pagination/GetEvidenceFoldersByAssessmentPaginator.ts index a85865d2e2d04..94ae65c6d9854 100644 --- a/clients/client-auditmanager/src/pagination/GetEvidenceFoldersByAssessmentPaginator.ts +++ b/clients/client-auditmanager/src/pagination/GetEvidenceFoldersByAssessmentPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/Interfaces.ts b/clients/client-auditmanager/src/pagination/Interfaces.ts index 703abf0fa2fa3..48a052d2f8407 100644 --- a/clients/client-auditmanager/src/pagination/Interfaces.ts +++ b/clients/client-auditmanager/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; diff --git a/clients/client-auditmanager/src/pagination/ListAssessmentControlInsightsByControlDomainPaginator.ts b/clients/client-auditmanager/src/pagination/ListAssessmentControlInsightsByControlDomainPaginator.ts index f5b51af1cb8ee..70db6b5e12787 100644 --- a/clients/client-auditmanager/src/pagination/ListAssessmentControlInsightsByControlDomainPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListAssessmentControlInsightsByControlDomainPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListAssessmentFrameworkShareRequestsPaginator.ts b/clients/client-auditmanager/src/pagination/ListAssessmentFrameworkShareRequestsPaginator.ts index a0e3e5422bb47..12c3f3b0c5669 100644 --- a/clients/client-auditmanager/src/pagination/ListAssessmentFrameworkShareRequestsPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListAssessmentFrameworkShareRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListAssessmentFrameworksPaginator.ts b/clients/client-auditmanager/src/pagination/ListAssessmentFrameworksPaginator.ts index 19efa8fc62db7..0255b18588a8f 100644 --- a/clients/client-auditmanager/src/pagination/ListAssessmentFrameworksPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListAssessmentFrameworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListAssessmentReportsPaginator.ts b/clients/client-auditmanager/src/pagination/ListAssessmentReportsPaginator.ts index c1e1b78bab3ca..299786dfd2aba 100644 --- a/clients/client-auditmanager/src/pagination/ListAssessmentReportsPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListAssessmentReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListAssessmentsPaginator.ts b/clients/client-auditmanager/src/pagination/ListAssessmentsPaginator.ts index 7e8aedc0edfaf..a15e2f60fb66d 100644 --- a/clients/client-auditmanager/src/pagination/ListAssessmentsPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListAssessmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListControlDomainInsightsByAssessmentPaginator.ts b/clients/client-auditmanager/src/pagination/ListControlDomainInsightsByAssessmentPaginator.ts index 4628581568e95..4c07299d1772f 100644 --- a/clients/client-auditmanager/src/pagination/ListControlDomainInsightsByAssessmentPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListControlDomainInsightsByAssessmentPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListControlDomainInsightsPaginator.ts b/clients/client-auditmanager/src/pagination/ListControlDomainInsightsPaginator.ts index 2455a3c139dd4..c7b0c322593ed 100644 --- a/clients/client-auditmanager/src/pagination/ListControlDomainInsightsPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListControlDomainInsightsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListControlInsightsByControlDomainPaginator.ts b/clients/client-auditmanager/src/pagination/ListControlInsightsByControlDomainPaginator.ts index c5b3d3129bf10..3fdb4723f8858 100644 --- a/clients/client-auditmanager/src/pagination/ListControlInsightsByControlDomainPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListControlInsightsByControlDomainPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListControlsPaginator.ts b/clients/client-auditmanager/src/pagination/ListControlsPaginator.ts index 3922158906c62..af2098acc34f3 100644 --- a/clients/client-auditmanager/src/pagination/ListControlsPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListControlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListKeywordsForDataSourcePaginator.ts b/clients/client-auditmanager/src/pagination/ListKeywordsForDataSourcePaginator.ts index a9d5334b843b3..33128037bcc2f 100644 --- a/clients/client-auditmanager/src/pagination/ListKeywordsForDataSourcePaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListKeywordsForDataSourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/pagination/ListNotificationsPaginator.ts b/clients/client-auditmanager/src/pagination/ListNotificationsPaginator.ts index 6854ad467df8b..d87a3b99951f6 100644 --- a/clients/client-auditmanager/src/pagination/ListNotificationsPaginator.ts +++ b/clients/client-auditmanager/src/pagination/ListNotificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AuditManagerClient } from "../AuditManagerClient"; import { diff --git a/clients/client-auditmanager/src/runtimeConfig.browser.ts b/clients/client-auditmanager/src/runtimeConfig.browser.ts index 5e68bc87097d1..7132b9788f6a2 100644 --- a/clients/client-auditmanager/src/runtimeConfig.browser.ts +++ b/clients/client-auditmanager/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AuditManagerClientConfig } from "./AuditManagerClient"; + +import type { AuditManagerClientConfig } from "./AuditManagerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-auditmanager/src/runtimeConfig.native.ts b/clients/client-auditmanager/src/runtimeConfig.native.ts index 1daff44b9d7dc..f15f7f869f1eb 100644 --- a/clients/client-auditmanager/src/runtimeConfig.native.ts +++ b/clients/client-auditmanager/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AuditManagerClientConfig } from "./AuditManagerClient"; +import type { AuditManagerClientConfig } from "./AuditManagerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-auditmanager/src/runtimeConfig.shared.ts b/clients/client-auditmanager/src/runtimeConfig.shared.ts index b03a31e2a733d..23435f635aadd 100644 --- a/clients/client-auditmanager/src/runtimeConfig.shared.ts +++ b/clients/client-auditmanager/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { AuditManagerClientConfig } from "./AuditManagerClient"; +import type { AuditManagerClientConfig } from "./AuditManagerClient"; import { defaultAuditManagerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/clients/client-auditmanager/src/runtimeConfig.ts b/clients/client-auditmanager/src/runtimeConfig.ts index d4dfce304533d..6117ecec1b3e4 100644 --- a/clients/client-auditmanager/src/runtimeConfig.ts +++ b/clients/client-auditmanager/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AuditManagerClientConfig } from "./AuditManagerClient"; + +import type { AuditManagerClientConfig } from "./AuditManagerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-auditmanager/src/runtimeExtensions.ts b/clients/client-auditmanager/src/runtimeExtensions.ts index 615a14fa23ce3..2d46d42693c8d 100644 --- a/clients/client-auditmanager/src/runtimeExtensions.ts +++ b/clients/client-auditmanager/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AuditManagerExtensionConfiguration } from "./extensionConfiguration"; +import type { AuditManagerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-auditmanager/src/schemas/schemas_0.ts b/clients/client-auditmanager/src/schemas/schemas_0.ts index c24e98ca258a6..1e85c2351a6de 100644 --- a/clients/client-auditmanager/src/schemas/schemas_0.ts +++ b/clients/client-auditmanager/src/schemas/schemas_0.ts @@ -509,7 +509,7 @@ const n0 = "com.amazonaws.auditmanager"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-auto-scaling-plans/package.json b/clients/client-auto-scaling-plans/package.json index dd94908e81c7c..efe488e927885 100644 --- a/clients/client-auto-scaling-plans/package.json +++ b/clients/client-auto-scaling-plans/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-auto-scaling-plans/src/AutoScalingPlans.ts b/clients/client-auto-scaling-plans/src/AutoScalingPlans.ts index 10f4ede101035..45398ab94561a 100644 --- a/clients/client-auto-scaling-plans/src/AutoScalingPlans.ts +++ b/clients/client-auto-scaling-plans/src/AutoScalingPlans.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AutoScalingPlansClient, AutoScalingPlansClientConfig } from "./AutoScalingPlansClient"; +import { AutoScalingPlansClient } from "./AutoScalingPlansClient"; import { CreateScalingPlanCommand, CreateScalingPlanCommandInput, diff --git a/clients/client-auto-scaling-plans/src/AutoScalingPlansClient.ts b/clients/client-auto-scaling-plans/src/AutoScalingPlansClient.ts index 484623bc42507..cce6f28f2ad45 100644 --- a/clients/client-auto-scaling-plans/src/AutoScalingPlansClient.ts +++ b/clients/client-auto-scaling-plans/src/AutoScalingPlansClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAutoScalingPlansHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateScalingPlanCommandInput, CreateScalingPlanCommandOutput } from "./commands/CreateScalingPlanCommand"; @@ -79,7 +88,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-auto-scaling-plans/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-auto-scaling-plans/src/auth/httpAuthExtensionConfiguration.ts index 4af3d7c1fe2a1..5a5aeebd525ab 100644 --- a/clients/client-auto-scaling-plans/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-auto-scaling-plans/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AutoScalingPlansHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AutoScalingPlansHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-auto-scaling-plans/src/auth/httpAuthSchemeProvider.ts b/clients/client-auto-scaling-plans/src/auth/httpAuthSchemeProvider.ts index abc8aee0d91dc..c8547cb9120ee 100644 --- a/clients/client-auto-scaling-plans/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-auto-scaling-plans/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AutoScalingPlansClientConfig, AutoScalingPlansClientResolvedConfig } from "../AutoScalingPlansClient"; +import { type AutoScalingPlansClientResolvedConfig, AutoScalingPlansClientConfig } from "../AutoScalingPlansClient"; /** * @internal diff --git a/clients/client-auto-scaling-plans/src/commands/CreateScalingPlanCommand.ts b/clients/client-auto-scaling-plans/src/commands/CreateScalingPlanCommand.ts index a4bf5c488047b..c747dd2bc65fb 100644 --- a/clients/client-auto-scaling-plans/src/commands/CreateScalingPlanCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/CreateScalingPlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient"; +import type { + AutoScalingPlansClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AutoScalingPlansClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScalingPlanRequest, CreateScalingPlanResponse } from "../models/models_0"; +import type { CreateScalingPlanRequest, CreateScalingPlanResponse } from "../models/models_0"; import { CreateScalingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling-plans/src/commands/DeleteScalingPlanCommand.ts b/clients/client-auto-scaling-plans/src/commands/DeleteScalingPlanCommand.ts index 0bb4cf7caa2e7..0c1aa26f8ed54 100644 --- a/clients/client-auto-scaling-plans/src/commands/DeleteScalingPlanCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/DeleteScalingPlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient"; +import type { + AutoScalingPlansClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AutoScalingPlansClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScalingPlanRequest, DeleteScalingPlanResponse } from "../models/models_0"; +import type { DeleteScalingPlanRequest, DeleteScalingPlanResponse } from "../models/models_0"; import { DeleteScalingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlanResourcesCommand.ts b/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlanResourcesCommand.ts index 8bd06a2bb6939..7d0ae0770aeba 100644 --- a/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlanResourcesCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlanResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient"; +import type { + AutoScalingPlansClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AutoScalingPlansClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScalingPlanResourcesRequest, DescribeScalingPlanResourcesResponse } from "../models/models_0"; +import type { DescribeScalingPlanResourcesRequest, DescribeScalingPlanResourcesResponse } from "../models/models_0"; import { DescribeScalingPlanResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlansCommand.ts b/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlansCommand.ts index 4e29a3112f49c..7a5d070ee5944 100644 --- a/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlansCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/DescribeScalingPlansCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient"; +import type { + AutoScalingPlansClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AutoScalingPlansClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScalingPlansRequest, DescribeScalingPlansResponse } from "../models/models_0"; +import type { DescribeScalingPlansRequest, DescribeScalingPlansResponse } from "../models/models_0"; import { DescribeScalingPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling-plans/src/commands/GetScalingPlanResourceForecastDataCommand.ts b/clients/client-auto-scaling-plans/src/commands/GetScalingPlanResourceForecastDataCommand.ts index 583d41f7e6ca9..5b81cdaec6f66 100644 --- a/clients/client-auto-scaling-plans/src/commands/GetScalingPlanResourceForecastDataCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/GetScalingPlanResourceForecastDataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient"; +import type { + AutoScalingPlansClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AutoScalingPlansClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetScalingPlanResourceForecastDataRequest, GetScalingPlanResourceForecastDataResponse, } from "../models/models_0"; diff --git a/clients/client-auto-scaling-plans/src/commands/UpdateScalingPlanCommand.ts b/clients/client-auto-scaling-plans/src/commands/UpdateScalingPlanCommand.ts index 2ce3e10e12f8d..4c4f0fcad6f17 100644 --- a/clients/client-auto-scaling-plans/src/commands/UpdateScalingPlanCommand.ts +++ b/clients/client-auto-scaling-plans/src/commands/UpdateScalingPlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingPlansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingPlansClient"; +import type { + AutoScalingPlansClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../AutoScalingPlansClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScalingPlanRequest, UpdateScalingPlanResponse } from "../models/models_0"; +import type { UpdateScalingPlanRequest, UpdateScalingPlanResponse } from "../models/models_0"; import { UpdateScalingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling-plans/src/endpoint/EndpointParameters.ts b/clients/client-auto-scaling-plans/src/endpoint/EndpointParameters.ts index 3c054aed6e265..c493b5b03a954 100644 --- a/clients/client-auto-scaling-plans/src/endpoint/EndpointParameters.ts +++ b/clients/client-auto-scaling-plans/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-auto-scaling-plans/src/endpoint/endpointResolver.ts b/clients/client-auto-scaling-plans/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-auto-scaling-plans/src/endpoint/endpointResolver.ts +++ b/clients/client-auto-scaling-plans/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-auto-scaling-plans/src/extensionConfiguration.ts b/clients/client-auto-scaling-plans/src/extensionConfiguration.ts index 797a336d60bc2..0fde5a207a056 100644 --- a/clients/client-auto-scaling-plans/src/extensionConfiguration.ts +++ b/clients/client-auto-scaling-plans/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-auto-scaling-plans/src/models/AutoScalingPlansServiceException.ts b/clients/client-auto-scaling-plans/src/models/AutoScalingPlansServiceException.ts index 8388b95002571..f14e5e517e8c7 100644 --- a/clients/client-auto-scaling-plans/src/models/AutoScalingPlansServiceException.ts +++ b/clients/client-auto-scaling-plans/src/models/AutoScalingPlansServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-auto-scaling-plans/src/models/errors.ts b/clients/client-auto-scaling-plans/src/models/errors.ts index dfcfdff770fbb..460b8759dc4e1 100644 --- a/clients/client-auto-scaling-plans/src/models/errors.ts +++ b/clients/client-auto-scaling-plans/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AutoScalingPlansServiceException as __BaseException } from "./AutoScalingPlansServiceException"; diff --git a/clients/client-auto-scaling-plans/src/runtimeConfig.browser.ts b/clients/client-auto-scaling-plans/src/runtimeConfig.browser.ts index 1c359c0a316f6..32e694a8d31fd 100644 --- a/clients/client-auto-scaling-plans/src/runtimeConfig.browser.ts +++ b/clients/client-auto-scaling-plans/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient"; + +import type { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-auto-scaling-plans/src/runtimeConfig.native.ts b/clients/client-auto-scaling-plans/src/runtimeConfig.native.ts index 16a4727128178..b437b8942c7e2 100644 --- a/clients/client-auto-scaling-plans/src/runtimeConfig.native.ts +++ b/clients/client-auto-scaling-plans/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient"; +import type { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-auto-scaling-plans/src/runtimeConfig.shared.ts b/clients/client-auto-scaling-plans/src/runtimeConfig.shared.ts index 909fb52badf04..d0d2d40d3cc1d 100644 --- a/clients/client-auto-scaling-plans/src/runtimeConfig.shared.ts +++ b/clients/client-auto-scaling-plans/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultAutoScalingPlansHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient"; +import type { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-auto-scaling-plans/src/runtimeConfig.ts b/clients/client-auto-scaling-plans/src/runtimeConfig.ts index e3ead87cd312a..2919babf74643 100644 --- a/clients/client-auto-scaling-plans/src/runtimeConfig.ts +++ b/clients/client-auto-scaling-plans/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient"; + +import type { AutoScalingPlansClientConfig } from "./AutoScalingPlansClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-auto-scaling-plans/src/runtimeExtensions.ts b/clients/client-auto-scaling-plans/src/runtimeExtensions.ts index 51461ebf7e4b7..e346fab0172dc 100644 --- a/clients/client-auto-scaling-plans/src/runtimeExtensions.ts +++ b/clients/client-auto-scaling-plans/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AutoScalingPlansExtensionConfiguration } from "./extensionConfiguration"; +import type { AutoScalingPlansExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-auto-scaling-plans/src/schemas/schemas_0.ts b/clients/client-auto-scaling-plans/src/schemas/schemas_0.ts index 154e1cd6d3863..049f7a1ba588c 100644 --- a/clients/client-auto-scaling-plans/src/schemas/schemas_0.ts +++ b/clients/client-auto-scaling-plans/src/schemas/schemas_0.ts @@ -101,7 +101,7 @@ const n0 = "com.amazonaws.autoscalingplans"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AutoScalingPlansServiceException as __AutoScalingPlansServiceException } from "../models/AutoScalingPlansServiceException"; import { diff --git a/clients/client-auto-scaling/package.json b/clients/client-auto-scaling/package.json index d055d92abed7a..da5ebcefca079 100644 --- a/clients/client-auto-scaling/package.json +++ b/clients/client-auto-scaling/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-auto-scaling/src/AutoScaling.ts b/clients/client-auto-scaling/src/AutoScaling.ts index 5ba4d1617689c..43d3f83ff27c8 100644 --- a/clients/client-auto-scaling/src/AutoScaling.ts +++ b/clients/client-auto-scaling/src/AutoScaling.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AutoScalingClient, AutoScalingClientConfig } from "./AutoScalingClient"; +import { AutoScalingClient } from "./AutoScalingClient"; import { AttachInstancesCommand, AttachInstancesCommandInput, diff --git a/clients/client-auto-scaling/src/AutoScalingClient.ts b/clients/client-auto-scaling/src/AutoScalingClient.ts index 9335151511c06..102c98136f246 100644 --- a/clients/client-auto-scaling/src/AutoScalingClient.ts +++ b/clients/client-auto-scaling/src/AutoScalingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAutoScalingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AttachInstancesCommandInput, AttachInstancesCommandOutput } from "./commands/AttachInstancesCommand"; @@ -268,7 +277,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-auto-scaling/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-auto-scaling/src/auth/httpAuthExtensionConfiguration.ts index a625e5f3bfc8d..5b20ed1a52b6d 100644 --- a/clients/client-auto-scaling/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-auto-scaling/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { AutoScalingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { AutoScalingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-auto-scaling/src/auth/httpAuthSchemeProvider.ts b/clients/client-auto-scaling/src/auth/httpAuthSchemeProvider.ts index 0d91587786346..daf74ad51ed0f 100644 --- a/clients/client-auto-scaling/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-auto-scaling/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { AutoScalingClientConfig, AutoScalingClientResolvedConfig } from "../AutoScalingClient"; +import { type AutoScalingClientResolvedConfig, AutoScalingClientConfig } from "../AutoScalingClient"; /** * @internal diff --git a/clients/client-auto-scaling/src/commands/AttachInstancesCommand.ts b/clients/client-auto-scaling/src/commands/AttachInstancesCommand.ts index a6bbfd1bc2c65..3dd4408235d2b 100644 --- a/clients/client-auto-scaling/src/commands/AttachInstancesCommand.ts +++ b/clients/client-auto-scaling/src/commands/AttachInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachInstancesQuery } from "../models/models_0"; +import type { AttachInstancesQuery } from "../models/models_0"; import { AttachInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/AttachLoadBalancerTargetGroupsCommand.ts b/clients/client-auto-scaling/src/commands/AttachLoadBalancerTargetGroupsCommand.ts index 7019eddf6a15a..e24c6f2d950a1 100644 --- a/clients/client-auto-scaling/src/commands/AttachLoadBalancerTargetGroupsCommand.ts +++ b/clients/client-auto-scaling/src/commands/AttachLoadBalancerTargetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachLoadBalancerTargetGroupsResultType, AttachLoadBalancerTargetGroupsType } from "../models/models_0"; +import type { AttachLoadBalancerTargetGroupsResultType, AttachLoadBalancerTargetGroupsType } from "../models/models_0"; import { AttachLoadBalancerTargetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/AttachLoadBalancersCommand.ts b/clients/client-auto-scaling/src/commands/AttachLoadBalancersCommand.ts index 143cacbc0c9be..44dc329af8525 100644 --- a/clients/client-auto-scaling/src/commands/AttachLoadBalancersCommand.ts +++ b/clients/client-auto-scaling/src/commands/AttachLoadBalancersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachLoadBalancersResultType, AttachLoadBalancersType } from "../models/models_0"; +import type { AttachLoadBalancersResultType, AttachLoadBalancersType } from "../models/models_0"; import { AttachLoadBalancers } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/AttachTrafficSourcesCommand.ts b/clients/client-auto-scaling/src/commands/AttachTrafficSourcesCommand.ts index 3c5d6f544406d..33cf9f77c8d70 100644 --- a/clients/client-auto-scaling/src/commands/AttachTrafficSourcesCommand.ts +++ b/clients/client-auto-scaling/src/commands/AttachTrafficSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachTrafficSourcesResultType, AttachTrafficSourcesType } from "../models/models_0"; +import type { AttachTrafficSourcesResultType, AttachTrafficSourcesType } from "../models/models_0"; import { AttachTrafficSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/BatchDeleteScheduledActionCommand.ts b/clients/client-auto-scaling/src/commands/BatchDeleteScheduledActionCommand.ts index 9556614f7f260..bd94576319084 100644 --- a/clients/client-auto-scaling/src/commands/BatchDeleteScheduledActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/BatchDeleteScheduledActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteScheduledActionAnswer, BatchDeleteScheduledActionType } from "../models/models_0"; +import type { BatchDeleteScheduledActionAnswer, BatchDeleteScheduledActionType } from "../models/models_0"; import { BatchDeleteScheduledAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/BatchPutScheduledUpdateGroupActionCommand.ts b/clients/client-auto-scaling/src/commands/BatchPutScheduledUpdateGroupActionCommand.ts index 44e9fdce9068e..fc2bcef94dd1f 100644 --- a/clients/client-auto-scaling/src/commands/BatchPutScheduledUpdateGroupActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/BatchPutScheduledUpdateGroupActionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchPutScheduledUpdateGroupActionAnswer, BatchPutScheduledUpdateGroupActionType } from "../models/models_0"; +import type { + BatchPutScheduledUpdateGroupActionAnswer, + BatchPutScheduledUpdateGroupActionType, +} from "../models/models_0"; import { BatchPutScheduledUpdateGroupAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/CancelInstanceRefreshCommand.ts b/clients/client-auto-scaling/src/commands/CancelInstanceRefreshCommand.ts index 74fd588b93f36..6ba9e141e7f39 100644 --- a/clients/client-auto-scaling/src/commands/CancelInstanceRefreshCommand.ts +++ b/clients/client-auto-scaling/src/commands/CancelInstanceRefreshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelInstanceRefreshAnswer, CancelInstanceRefreshType } from "../models/models_0"; +import type { CancelInstanceRefreshAnswer, CancelInstanceRefreshType } from "../models/models_0"; import { CancelInstanceRefresh } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/CompleteLifecycleActionCommand.ts b/clients/client-auto-scaling/src/commands/CompleteLifecycleActionCommand.ts index 176cc4bcd9767..44217877092b3 100644 --- a/clients/client-auto-scaling/src/commands/CompleteLifecycleActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/CompleteLifecycleActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteLifecycleActionAnswer, CompleteLifecycleActionType } from "../models/models_0"; +import type { CompleteLifecycleActionAnswer, CompleteLifecycleActionType } from "../models/models_0"; import { CompleteLifecycleAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/CreateAutoScalingGroupCommand.ts b/clients/client-auto-scaling/src/commands/CreateAutoScalingGroupCommand.ts index 5a20ec0b1f43b..38c46c1d786cb 100644 --- a/clients/client-auto-scaling/src/commands/CreateAutoScalingGroupCommand.ts +++ b/clients/client-auto-scaling/src/commands/CreateAutoScalingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAutoScalingGroupType } from "../models/models_0"; +import type { CreateAutoScalingGroupType } from "../models/models_0"; import { CreateAutoScalingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/CreateLaunchConfigurationCommand.ts b/clients/client-auto-scaling/src/commands/CreateLaunchConfigurationCommand.ts index b227c4aeefb19..2bd87c264695c 100644 --- a/clients/client-auto-scaling/src/commands/CreateLaunchConfigurationCommand.ts +++ b/clients/client-auto-scaling/src/commands/CreateLaunchConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLaunchConfigurationType } from "../models/models_0"; +import type { CreateLaunchConfigurationType } from "../models/models_0"; import { CreateLaunchConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/CreateOrUpdateTagsCommand.ts b/clients/client-auto-scaling/src/commands/CreateOrUpdateTagsCommand.ts index 50734ab51ffd3..5b77de4460883 100644 --- a/clients/client-auto-scaling/src/commands/CreateOrUpdateTagsCommand.ts +++ b/clients/client-auto-scaling/src/commands/CreateOrUpdateTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOrUpdateTagsType } from "../models/models_0"; +import type { CreateOrUpdateTagsType } from "../models/models_0"; import { CreateOrUpdateTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DeleteAutoScalingGroupCommand.ts b/clients/client-auto-scaling/src/commands/DeleteAutoScalingGroupCommand.ts index 01385c28fefee..fae8b68e8b062 100644 --- a/clients/client-auto-scaling/src/commands/DeleteAutoScalingGroupCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteAutoScalingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAutoScalingGroupType } from "../models/models_0"; +import type { DeleteAutoScalingGroupType } from "../models/models_0"; import { DeleteAutoScalingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DeleteLaunchConfigurationCommand.ts b/clients/client-auto-scaling/src/commands/DeleteLaunchConfigurationCommand.ts index 4ed8b82ec1ad0..fc57268b53fec 100644 --- a/clients/client-auto-scaling/src/commands/DeleteLaunchConfigurationCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteLaunchConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchConfigurationNameType } from "../models/models_0"; +import type { LaunchConfigurationNameType } from "../models/models_0"; import { DeleteLaunchConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DeleteLifecycleHookCommand.ts b/clients/client-auto-scaling/src/commands/DeleteLifecycleHookCommand.ts index 90bf6dfdc2f29..590e02d57bcc7 100644 --- a/clients/client-auto-scaling/src/commands/DeleteLifecycleHookCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteLifecycleHookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLifecycleHookAnswer, DeleteLifecycleHookType } from "../models/models_0"; +import type { DeleteLifecycleHookAnswer, DeleteLifecycleHookType } from "../models/models_0"; import { DeleteLifecycleHook } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DeleteNotificationConfigurationCommand.ts b/clients/client-auto-scaling/src/commands/DeleteNotificationConfigurationCommand.ts index 606cdb1a7fe66..5a1bd8a3d6c41 100644 --- a/clients/client-auto-scaling/src/commands/DeleteNotificationConfigurationCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteNotificationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNotificationConfigurationType } from "../models/models_0"; +import type { DeleteNotificationConfigurationType } from "../models/models_0"; import { DeleteNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DeletePolicyCommand.ts b/clients/client-auto-scaling/src/commands/DeletePolicyCommand.ts index e2a3d1de1a24b..6f330d2f44fc6 100644 --- a/clients/client-auto-scaling/src/commands/DeletePolicyCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeletePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePolicyType } from "../models/models_0"; +import type { DeletePolicyType } from "../models/models_0"; import { DeletePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DeleteScheduledActionCommand.ts b/clients/client-auto-scaling/src/commands/DeleteScheduledActionCommand.ts index 5461f0c2a835a..ab6d50055fe7a 100644 --- a/clients/client-auto-scaling/src/commands/DeleteScheduledActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteScheduledActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScheduledActionType } from "../models/models_0"; +import type { DeleteScheduledActionType } from "../models/models_0"; import { DeleteScheduledAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DeleteTagsCommand.ts b/clients/client-auto-scaling/src/commands/DeleteTagsCommand.ts index 4a9bf0e0cd9e0..f0dd40c0f1ab8 100644 --- a/clients/client-auto-scaling/src/commands/DeleteTagsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagsType } from "../models/models_0"; +import type { DeleteTagsType } from "../models/models_0"; import { DeleteTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DeleteWarmPoolCommand.ts b/clients/client-auto-scaling/src/commands/DeleteWarmPoolCommand.ts index 167c4dac41513..ea67e16073456 100644 --- a/clients/client-auto-scaling/src/commands/DeleteWarmPoolCommand.ts +++ b/clients/client-auto-scaling/src/commands/DeleteWarmPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWarmPoolAnswer, DeleteWarmPoolType } from "../models/models_0"; +import type { DeleteWarmPoolAnswer, DeleteWarmPoolType } from "../models/models_0"; import { DeleteWarmPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAccountLimitsCommand.ts index 4237ecfda4e20..72258b5e131ba 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAccountLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountLimitsAnswer } from "../models/models_0"; +import type { DescribeAccountLimitsAnswer } from "../models/models_0"; import { DescribeAccountLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeAdjustmentTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAdjustmentTypesCommand.ts index e9ec27fefaa97..15e4a3f473961 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAdjustmentTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAdjustmentTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAdjustmentTypesAnswer } from "../models/models_0"; +import type { DescribeAdjustmentTypesAnswer } from "../models/models_0"; import { DescribeAdjustmentTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeAutoScalingGroupsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAutoScalingGroupsCommand.ts index 42301cbe4c82d..2bf31bc74c950 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAutoScalingGroupsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAutoScalingGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AutoScalingGroupNamesType, AutoScalingGroupsType } from "../models/models_0"; +import type { AutoScalingGroupNamesType, AutoScalingGroupsType } from "../models/models_0"; import { DescribeAutoScalingGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeAutoScalingInstancesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAutoScalingInstancesCommand.ts index b6ff65c636ac2..76b3ec20a0137 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAutoScalingInstancesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAutoScalingInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AutoScalingInstancesType, DescribeAutoScalingInstancesType } from "../models/models_0"; +import type { AutoScalingInstancesType, DescribeAutoScalingInstancesType } from "../models/models_0"; import { DescribeAutoScalingInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeAutoScalingNotificationTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeAutoScalingNotificationTypesCommand.ts index e5b205f57a221..1ebd331890fdc 100644 --- a/clients/client-auto-scaling/src/commands/DescribeAutoScalingNotificationTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeAutoScalingNotificationTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAutoScalingNotificationTypesAnswer } from "../models/models_0"; +import type { DescribeAutoScalingNotificationTypesAnswer } from "../models/models_0"; import { DescribeAutoScalingNotificationTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeInstanceRefreshesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeInstanceRefreshesCommand.ts index 4152facb8d559..257cb0c066dd8 100644 --- a/clients/client-auto-scaling/src/commands/DescribeInstanceRefreshesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeInstanceRefreshesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceRefreshesAnswer, DescribeInstanceRefreshesType } from "../models/models_0"; +import type { DescribeInstanceRefreshesAnswer, DescribeInstanceRefreshesType } from "../models/models_0"; import { DescribeInstanceRefreshes } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeLaunchConfigurationsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLaunchConfigurationsCommand.ts index c81f77a6549b8..f93da66ef2c79 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLaunchConfigurationsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLaunchConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchConfigurationNamesType, LaunchConfigurationsType } from "../models/models_0"; +import type { LaunchConfigurationNamesType, LaunchConfigurationsType } from "../models/models_0"; import { DescribeLaunchConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeLifecycleHookTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLifecycleHookTypesCommand.ts index b9d07ff5268a5..7de6810dcaa2f 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLifecycleHookTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLifecycleHookTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLifecycleHookTypesAnswer } from "../models/models_0"; +import type { DescribeLifecycleHookTypesAnswer } from "../models/models_0"; import { DescribeLifecycleHookTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeLifecycleHooksCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLifecycleHooksCommand.ts index 877f97c3f7477..2043aee4b1614 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLifecycleHooksCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLifecycleHooksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLifecycleHooksAnswer, DescribeLifecycleHooksType } from "../models/models_0"; +import type { DescribeLifecycleHooksAnswer, DescribeLifecycleHooksType } from "../models/models_0"; import { DescribeLifecycleHooks } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeLoadBalancerTargetGroupsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLoadBalancerTargetGroupsCommand.ts index f21747ea45c96..1704fc2b3e78e 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLoadBalancerTargetGroupsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLoadBalancerTargetGroupsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoadBalancerTargetGroupsRequest, DescribeLoadBalancerTargetGroupsResponse } from "../models/models_0"; +import type { + DescribeLoadBalancerTargetGroupsRequest, + DescribeLoadBalancerTargetGroupsResponse, +} from "../models/models_0"; import { DescribeLoadBalancerTargetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeLoadBalancersCommand.ts b/clients/client-auto-scaling/src/commands/DescribeLoadBalancersCommand.ts index 8a226d09e6679..a033381d094c9 100644 --- a/clients/client-auto-scaling/src/commands/DescribeLoadBalancersCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeLoadBalancersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoadBalancersRequest, DescribeLoadBalancersResponse } from "../models/models_0"; +import type { DescribeLoadBalancersRequest, DescribeLoadBalancersResponse } from "../models/models_0"; import { DescribeLoadBalancers } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeMetricCollectionTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeMetricCollectionTypesCommand.ts index 9cd5dab0354bb..be9eac4620957 100644 --- a/clients/client-auto-scaling/src/commands/DescribeMetricCollectionTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeMetricCollectionTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetricCollectionTypesAnswer } from "../models/models_0"; +import type { DescribeMetricCollectionTypesAnswer } from "../models/models_0"; import { DescribeMetricCollectionTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeNotificationConfigurationsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeNotificationConfigurationsCommand.ts index fb18beebea77a..ca25cbe03d590 100644 --- a/clients/client-auto-scaling/src/commands/DescribeNotificationConfigurationsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeNotificationConfigurationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNotificationConfigurationsAnswer, DescribeNotificationConfigurationsType } from "../models/models_0"; +import type { + DescribeNotificationConfigurationsAnswer, + DescribeNotificationConfigurationsType, +} from "../models/models_0"; import { DescribeNotificationConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribePoliciesCommand.ts b/clients/client-auto-scaling/src/commands/DescribePoliciesCommand.ts index 128c587c35c7f..7a3de16e73fb3 100644 --- a/clients/client-auto-scaling/src/commands/DescribePoliciesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePoliciesType, PoliciesType } from "../models/models_0"; +import type { DescribePoliciesType, PoliciesType } from "../models/models_0"; import { DescribePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts index 6728a901bca35..36df1a7d9b4b7 100644 --- a/clients/client-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeScalingActivitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivitiesType, DescribeScalingActivitiesType } from "../models/models_0"; +import type { ActivitiesType, DescribeScalingActivitiesType } from "../models/models_0"; import { DescribeScalingActivities } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeScalingProcessTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeScalingProcessTypesCommand.ts index aedd5311869fd..acfbc0b44e443 100644 --- a/clients/client-auto-scaling/src/commands/DescribeScalingProcessTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeScalingProcessTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProcessesType } from "../models/models_0"; +import type { ProcessesType } from "../models/models_0"; import { DescribeScalingProcessTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts index 57a2cacf25300..0c6b1832a0b47 100644 --- a/clients/client-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeScheduledActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScheduledActionsType, ScheduledActionsType } from "../models/models_0"; +import type { DescribeScheduledActionsType, ScheduledActionsType } from "../models/models_0"; import { DescribeScheduledActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeTagsCommand.ts b/clients/client-auto-scaling/src/commands/DescribeTagsCommand.ts index 7155766b8ea01..62ac2c6948da5 100644 --- a/clients/client-auto-scaling/src/commands/DescribeTagsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagsType, TagsType } from "../models/models_0"; +import type { DescribeTagsType, TagsType } from "../models/models_0"; import { DescribeTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeTerminationPolicyTypesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeTerminationPolicyTypesCommand.ts index 9168a88843c8f..947de48fd7c3e 100644 --- a/clients/client-auto-scaling/src/commands/DescribeTerminationPolicyTypesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeTerminationPolicyTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTerminationPolicyTypesAnswer } from "../models/models_0"; +import type { DescribeTerminationPolicyTypesAnswer } from "../models/models_0"; import { DescribeTerminationPolicyTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeTrafficSourcesCommand.ts b/clients/client-auto-scaling/src/commands/DescribeTrafficSourcesCommand.ts index 04c316494d9dc..8c48f6f472e07 100644 --- a/clients/client-auto-scaling/src/commands/DescribeTrafficSourcesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeTrafficSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrafficSourcesRequest, DescribeTrafficSourcesResponse } from "../models/models_0"; +import type { DescribeTrafficSourcesRequest, DescribeTrafficSourcesResponse } from "../models/models_0"; import { DescribeTrafficSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DescribeWarmPoolCommand.ts b/clients/client-auto-scaling/src/commands/DescribeWarmPoolCommand.ts index 05dae7df9ee0b..634ae776fc746 100644 --- a/clients/client-auto-scaling/src/commands/DescribeWarmPoolCommand.ts +++ b/clients/client-auto-scaling/src/commands/DescribeWarmPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWarmPoolAnswer, DescribeWarmPoolType } from "../models/models_0"; +import type { DescribeWarmPoolAnswer, DescribeWarmPoolType } from "../models/models_0"; import { DescribeWarmPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DetachInstancesCommand.ts b/clients/client-auto-scaling/src/commands/DetachInstancesCommand.ts index 9cbb33e7d5b4e..29f5963c0cda2 100644 --- a/clients/client-auto-scaling/src/commands/DetachInstancesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DetachInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachInstancesAnswer, DetachInstancesQuery } from "../models/models_0"; +import type { DetachInstancesAnswer, DetachInstancesQuery } from "../models/models_0"; import { DetachInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DetachLoadBalancerTargetGroupsCommand.ts b/clients/client-auto-scaling/src/commands/DetachLoadBalancerTargetGroupsCommand.ts index f18654eca98f6..1b6c230e858c1 100644 --- a/clients/client-auto-scaling/src/commands/DetachLoadBalancerTargetGroupsCommand.ts +++ b/clients/client-auto-scaling/src/commands/DetachLoadBalancerTargetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachLoadBalancerTargetGroupsResultType, DetachLoadBalancerTargetGroupsType } from "../models/models_0"; +import type { DetachLoadBalancerTargetGroupsResultType, DetachLoadBalancerTargetGroupsType } from "../models/models_0"; import { DetachLoadBalancerTargetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DetachLoadBalancersCommand.ts b/clients/client-auto-scaling/src/commands/DetachLoadBalancersCommand.ts index 9e4582a9c1f8e..8ea80e418ecc5 100644 --- a/clients/client-auto-scaling/src/commands/DetachLoadBalancersCommand.ts +++ b/clients/client-auto-scaling/src/commands/DetachLoadBalancersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachLoadBalancersResultType, DetachLoadBalancersType } from "../models/models_0"; +import type { DetachLoadBalancersResultType, DetachLoadBalancersType } from "../models/models_0"; import { DetachLoadBalancers } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DetachTrafficSourcesCommand.ts b/clients/client-auto-scaling/src/commands/DetachTrafficSourcesCommand.ts index 0575253d25766..8e851d30465e7 100644 --- a/clients/client-auto-scaling/src/commands/DetachTrafficSourcesCommand.ts +++ b/clients/client-auto-scaling/src/commands/DetachTrafficSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachTrafficSourcesResultType, DetachTrafficSourcesType } from "../models/models_0"; +import type { DetachTrafficSourcesResultType, DetachTrafficSourcesType } from "../models/models_0"; import { DetachTrafficSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/DisableMetricsCollectionCommand.ts b/clients/client-auto-scaling/src/commands/DisableMetricsCollectionCommand.ts index 5be894bbf9755..6a9d4dc61eee9 100644 --- a/clients/client-auto-scaling/src/commands/DisableMetricsCollectionCommand.ts +++ b/clients/client-auto-scaling/src/commands/DisableMetricsCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableMetricsCollectionQuery } from "../models/models_0"; +import type { DisableMetricsCollectionQuery } from "../models/models_0"; import { DisableMetricsCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/EnableMetricsCollectionCommand.ts b/clients/client-auto-scaling/src/commands/EnableMetricsCollectionCommand.ts index 3507c3e8afc58..59f1d641ab187 100644 --- a/clients/client-auto-scaling/src/commands/EnableMetricsCollectionCommand.ts +++ b/clients/client-auto-scaling/src/commands/EnableMetricsCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableMetricsCollectionQuery } from "../models/models_0"; +import type { EnableMetricsCollectionQuery } from "../models/models_0"; import { EnableMetricsCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/EnterStandbyCommand.ts b/clients/client-auto-scaling/src/commands/EnterStandbyCommand.ts index fc3ba25ea5030..0383d2fddc1f7 100644 --- a/clients/client-auto-scaling/src/commands/EnterStandbyCommand.ts +++ b/clients/client-auto-scaling/src/commands/EnterStandbyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnterStandbyAnswer, EnterStandbyQuery } from "../models/models_0"; +import type { EnterStandbyAnswer, EnterStandbyQuery } from "../models/models_0"; import { EnterStandby } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/ExecutePolicyCommand.ts b/clients/client-auto-scaling/src/commands/ExecutePolicyCommand.ts index 0ebe5226f218a..1f702ee4f946f 100644 --- a/clients/client-auto-scaling/src/commands/ExecutePolicyCommand.ts +++ b/clients/client-auto-scaling/src/commands/ExecutePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecutePolicyType } from "../models/models_0"; +import type { ExecutePolicyType } from "../models/models_0"; import { ExecutePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/ExitStandbyCommand.ts b/clients/client-auto-scaling/src/commands/ExitStandbyCommand.ts index 4d39520b91280..0a3f776d906be 100644 --- a/clients/client-auto-scaling/src/commands/ExitStandbyCommand.ts +++ b/clients/client-auto-scaling/src/commands/ExitStandbyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExitStandbyAnswer, ExitStandbyQuery } from "../models/models_0"; +import type { ExitStandbyAnswer, ExitStandbyQuery } from "../models/models_0"; import { ExitStandby } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts b/clients/client-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts index 765aff6a34e3e..ad621bb16768d 100644 --- a/clients/client-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts +++ b/clients/client-auto-scaling/src/commands/GetPredictiveScalingForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPredictiveScalingForecastAnswer, GetPredictiveScalingForecastType } from "../models/models_0"; +import type { GetPredictiveScalingForecastAnswer, GetPredictiveScalingForecastType } from "../models/models_0"; import { GetPredictiveScalingForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/LaunchInstancesCommand.ts b/clients/client-auto-scaling/src/commands/LaunchInstancesCommand.ts index 17562ba3d382d..7f79f36b1fce2 100644 --- a/clients/client-auto-scaling/src/commands/LaunchInstancesCommand.ts +++ b/clients/client-auto-scaling/src/commands/LaunchInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchInstancesRequest, LaunchInstancesResult } from "../models/models_0"; +import type { LaunchInstancesRequest, LaunchInstancesResult } from "../models/models_0"; import { LaunchInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/PutLifecycleHookCommand.ts b/clients/client-auto-scaling/src/commands/PutLifecycleHookCommand.ts index 04785f091a75b..28b30db1677a2 100644 --- a/clients/client-auto-scaling/src/commands/PutLifecycleHookCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutLifecycleHookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutLifecycleHookAnswer, PutLifecycleHookType } from "../models/models_0"; +import type { PutLifecycleHookAnswer, PutLifecycleHookType } from "../models/models_0"; import { PutLifecycleHook } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/PutNotificationConfigurationCommand.ts b/clients/client-auto-scaling/src/commands/PutNotificationConfigurationCommand.ts index 674eb332768e0..6517a141d3ef6 100644 --- a/clients/client-auto-scaling/src/commands/PutNotificationConfigurationCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutNotificationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutNotificationConfigurationType } from "../models/models_0"; +import type { PutNotificationConfigurationType } from "../models/models_0"; import { PutNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/PutScalingPolicyCommand.ts b/clients/client-auto-scaling/src/commands/PutScalingPolicyCommand.ts index e25c0ece3e46c..baeb12350100f 100644 --- a/clients/client-auto-scaling/src/commands/PutScalingPolicyCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutScalingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PolicyARNType, PutScalingPolicyType } from "../models/models_0"; +import type { PolicyARNType, PutScalingPolicyType } from "../models/models_0"; import { PutScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/PutScheduledUpdateGroupActionCommand.ts b/clients/client-auto-scaling/src/commands/PutScheduledUpdateGroupActionCommand.ts index 591b3945912c0..ef8aec8cc53a3 100644 --- a/clients/client-auto-scaling/src/commands/PutScheduledUpdateGroupActionCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutScheduledUpdateGroupActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutScheduledUpdateGroupActionType } from "../models/models_0"; +import type { PutScheduledUpdateGroupActionType } from "../models/models_0"; import { PutScheduledUpdateGroupAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/PutWarmPoolCommand.ts b/clients/client-auto-scaling/src/commands/PutWarmPoolCommand.ts index 30a03b7be1d1e..f69debbcb8d3d 100644 --- a/clients/client-auto-scaling/src/commands/PutWarmPoolCommand.ts +++ b/clients/client-auto-scaling/src/commands/PutWarmPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWarmPoolAnswer, PutWarmPoolType } from "../models/models_0"; +import type { PutWarmPoolAnswer, PutWarmPoolType } from "../models/models_0"; import { PutWarmPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/RecordLifecycleActionHeartbeatCommand.ts b/clients/client-auto-scaling/src/commands/RecordLifecycleActionHeartbeatCommand.ts index 7a797df47e286..220d22e47e9b3 100644 --- a/clients/client-auto-scaling/src/commands/RecordLifecycleActionHeartbeatCommand.ts +++ b/clients/client-auto-scaling/src/commands/RecordLifecycleActionHeartbeatCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecordLifecycleActionHeartbeatAnswer, RecordLifecycleActionHeartbeatType } from "../models/models_0"; +import type { RecordLifecycleActionHeartbeatAnswer, RecordLifecycleActionHeartbeatType } from "../models/models_0"; import { RecordLifecycleActionHeartbeat } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/ResumeProcessesCommand.ts b/clients/client-auto-scaling/src/commands/ResumeProcessesCommand.ts index fb49e1d2765a1..72350293130c3 100644 --- a/clients/client-auto-scaling/src/commands/ResumeProcessesCommand.ts +++ b/clients/client-auto-scaling/src/commands/ResumeProcessesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScalingProcessQuery } from "../models/models_0"; +import type { ScalingProcessQuery } from "../models/models_0"; import { ResumeProcesses } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/RollbackInstanceRefreshCommand.ts b/clients/client-auto-scaling/src/commands/RollbackInstanceRefreshCommand.ts index 531affccec580..144926fea07f6 100644 --- a/clients/client-auto-scaling/src/commands/RollbackInstanceRefreshCommand.ts +++ b/clients/client-auto-scaling/src/commands/RollbackInstanceRefreshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RollbackInstanceRefreshAnswer, RollbackInstanceRefreshType } from "../models/models_0"; +import type { RollbackInstanceRefreshAnswer, RollbackInstanceRefreshType } from "../models/models_0"; import { RollbackInstanceRefresh } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/SetDesiredCapacityCommand.ts b/clients/client-auto-scaling/src/commands/SetDesiredCapacityCommand.ts index c0295a1e24486..161df50382ac9 100644 --- a/clients/client-auto-scaling/src/commands/SetDesiredCapacityCommand.ts +++ b/clients/client-auto-scaling/src/commands/SetDesiredCapacityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetDesiredCapacityType } from "../models/models_0"; +import type { SetDesiredCapacityType } from "../models/models_0"; import { SetDesiredCapacity } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/SetInstanceHealthCommand.ts b/clients/client-auto-scaling/src/commands/SetInstanceHealthCommand.ts index 2136f4bbd3ea4..1230b128320fa 100644 --- a/clients/client-auto-scaling/src/commands/SetInstanceHealthCommand.ts +++ b/clients/client-auto-scaling/src/commands/SetInstanceHealthCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetInstanceHealthQuery } from "../models/models_0"; +import type { SetInstanceHealthQuery } from "../models/models_0"; import { SetInstanceHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/SetInstanceProtectionCommand.ts b/clients/client-auto-scaling/src/commands/SetInstanceProtectionCommand.ts index 4036f802a7c12..5c7da2b76236d 100644 --- a/clients/client-auto-scaling/src/commands/SetInstanceProtectionCommand.ts +++ b/clients/client-auto-scaling/src/commands/SetInstanceProtectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetInstanceProtectionAnswer, SetInstanceProtectionQuery } from "../models/models_0"; +import type { SetInstanceProtectionAnswer, SetInstanceProtectionQuery } from "../models/models_0"; import { SetInstanceProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/StartInstanceRefreshCommand.ts b/clients/client-auto-scaling/src/commands/StartInstanceRefreshCommand.ts index 682111bfc9cf3..0a5de3c5c0f2c 100644 --- a/clients/client-auto-scaling/src/commands/StartInstanceRefreshCommand.ts +++ b/clients/client-auto-scaling/src/commands/StartInstanceRefreshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartInstanceRefreshAnswer, StartInstanceRefreshType } from "../models/models_0"; +import type { StartInstanceRefreshAnswer, StartInstanceRefreshType } from "../models/models_0"; import { StartInstanceRefresh } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/SuspendProcessesCommand.ts b/clients/client-auto-scaling/src/commands/SuspendProcessesCommand.ts index aee1c73511c46..8f3e91053fa52 100644 --- a/clients/client-auto-scaling/src/commands/SuspendProcessesCommand.ts +++ b/clients/client-auto-scaling/src/commands/SuspendProcessesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScalingProcessQuery } from "../models/models_0"; +import type { ScalingProcessQuery } from "../models/models_0"; import { SuspendProcesses } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/TerminateInstanceInAutoScalingGroupCommand.ts b/clients/client-auto-scaling/src/commands/TerminateInstanceInAutoScalingGroupCommand.ts index d4a89d8f4e3ed..6192559376801 100644 --- a/clients/client-auto-scaling/src/commands/TerminateInstanceInAutoScalingGroupCommand.ts +++ b/clients/client-auto-scaling/src/commands/TerminateInstanceInAutoScalingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivityType, TerminateInstanceInAutoScalingGroupType } from "../models/models_0"; +import type { ActivityType, TerminateInstanceInAutoScalingGroupType } from "../models/models_0"; import { TerminateInstanceInAutoScalingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/commands/UpdateAutoScalingGroupCommand.ts b/clients/client-auto-scaling/src/commands/UpdateAutoScalingGroupCommand.ts index 14a335adcb553..f0bf65674087e 100644 --- a/clients/client-auto-scaling/src/commands/UpdateAutoScalingGroupCommand.ts +++ b/clients/client-auto-scaling/src/commands/UpdateAutoScalingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; +import type { AutoScalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AutoScalingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAutoScalingGroupType } from "../models/models_0"; +import type { UpdateAutoScalingGroupType } from "../models/models_0"; import { UpdateAutoScalingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-auto-scaling/src/endpoint/EndpointParameters.ts b/clients/client-auto-scaling/src/endpoint/EndpointParameters.ts index 83a3930189d91..1e627760eb87d 100644 --- a/clients/client-auto-scaling/src/endpoint/EndpointParameters.ts +++ b/clients/client-auto-scaling/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-auto-scaling/src/endpoint/endpointResolver.ts b/clients/client-auto-scaling/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-auto-scaling/src/endpoint/endpointResolver.ts +++ b/clients/client-auto-scaling/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-auto-scaling/src/extensionConfiguration.ts b/clients/client-auto-scaling/src/extensionConfiguration.ts index 5b4d5e56e60e3..882085611feab 100644 --- a/clients/client-auto-scaling/src/extensionConfiguration.ts +++ b/clients/client-auto-scaling/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-auto-scaling/src/models/AutoScalingServiceException.ts b/clients/client-auto-scaling/src/models/AutoScalingServiceException.ts index 9ff342ee4a12a..57a484d20e05b 100644 --- a/clients/client-auto-scaling/src/models/AutoScalingServiceException.ts +++ b/clients/client-auto-scaling/src/models/AutoScalingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-auto-scaling/src/models/errors.ts b/clients/client-auto-scaling/src/models/errors.ts index 584b16002d11b..dba4b20af9fad 100644 --- a/clients/client-auto-scaling/src/models/errors.ts +++ b/clients/client-auto-scaling/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AutoScalingServiceException as __BaseException } from "./AutoScalingServiceException"; diff --git a/clients/client-auto-scaling/src/pagination/DescribeAutoScalingGroupsPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeAutoScalingGroupsPaginator.ts index 81d818950b420..612fe6ae70f00 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeAutoScalingGroupsPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeAutoScalingGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeAutoScalingInstancesPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeAutoScalingInstancesPaginator.ts index da6f0722041f6..5f297139aecc4 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeAutoScalingInstancesPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeAutoScalingInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeInstanceRefreshesPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeInstanceRefreshesPaginator.ts index a1c1bfd8a2ba9..9b02250c35b43 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeInstanceRefreshesPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeInstanceRefreshesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeLaunchConfigurationsPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeLaunchConfigurationsPaginator.ts index 25f89b8cb6d74..0f20d7c6d5aa3 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeLaunchConfigurationsPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeLaunchConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeLoadBalancerTargetGroupsPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeLoadBalancerTargetGroupsPaginator.ts index 3358467a31f95..8991f020df129 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeLoadBalancerTargetGroupsPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeLoadBalancerTargetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeLoadBalancersPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeLoadBalancersPaginator.ts index 8e0b5e19a8bd6..f7fa4999fa8b5 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeLoadBalancersPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeLoadBalancersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeNotificationConfigurationsPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeNotificationConfigurationsPaginator.ts index 3db3e7b857e5e..0b13e04069702 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeNotificationConfigurationsPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeNotificationConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribePoliciesPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribePoliciesPaginator.ts index ee13478731f1b..09c8f7c1d0381 100644 --- a/clients/client-auto-scaling/src/pagination/DescribePoliciesPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeScalingActivitiesPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeScalingActivitiesPaginator.ts index 4c7411a21ea9e..2cd97fd84b119 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeScalingActivitiesPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeScalingActivitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeScheduledActionsPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeScheduledActionsPaginator.ts index 6bfb7574110fa..a477fbd894ddd 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeScheduledActionsPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeScheduledActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeTagsPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeTagsPaginator.ts index cf2f613b30c1e..352e4c39a6470 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeTagsPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeTrafficSourcesPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeTrafficSourcesPaginator.ts index d0615ddbb6e6d..24a8f4e785602 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeTrafficSourcesPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeTrafficSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/DescribeWarmPoolPaginator.ts b/clients/client-auto-scaling/src/pagination/DescribeWarmPoolPaginator.ts index 9e22e1b96241c..9f0f68704b0fa 100644 --- a/clients/client-auto-scaling/src/pagination/DescribeWarmPoolPaginator.ts +++ b/clients/client-auto-scaling/src/pagination/DescribeWarmPoolPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; import { diff --git a/clients/client-auto-scaling/src/pagination/Interfaces.ts b/clients/client-auto-scaling/src/pagination/Interfaces.ts index 88cbbf2b62a91..dcc32c6b5522d 100644 --- a/clients/client-auto-scaling/src/pagination/Interfaces.ts +++ b/clients/client-auto-scaling/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { AutoScalingClient } from "../AutoScalingClient"; diff --git a/clients/client-auto-scaling/src/runtimeConfig.browser.ts b/clients/client-auto-scaling/src/runtimeConfig.browser.ts index 6a6adb9c521d1..d3a8003202c53 100644 --- a/clients/client-auto-scaling/src/runtimeConfig.browser.ts +++ b/clients/client-auto-scaling/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AutoScalingClientConfig } from "./AutoScalingClient"; + +import type { AutoScalingClientConfig } from "./AutoScalingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-auto-scaling/src/runtimeConfig.native.ts b/clients/client-auto-scaling/src/runtimeConfig.native.ts index 84cd8e7ba24c7..4439a67ae12eb 100644 --- a/clients/client-auto-scaling/src/runtimeConfig.native.ts +++ b/clients/client-auto-scaling/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { AutoScalingClientConfig } from "./AutoScalingClient"; +import type { AutoScalingClientConfig } from "./AutoScalingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-auto-scaling/src/runtimeConfig.shared.ts b/clients/client-auto-scaling/src/runtimeConfig.shared.ts index 909c6c291acd4..f3c4f0da1ecca 100644 --- a/clients/client-auto-scaling/src/runtimeConfig.shared.ts +++ b/clients/client-auto-scaling/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultAutoScalingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { AutoScalingClientConfig } from "./AutoScalingClient"; +import type { AutoScalingClientConfig } from "./AutoScalingClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-auto-scaling/src/runtimeConfig.ts b/clients/client-auto-scaling/src/runtimeConfig.ts index 3180f14b5fd73..a198460ba9df2 100644 --- a/clients/client-auto-scaling/src/runtimeConfig.ts +++ b/clients/client-auto-scaling/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { AutoScalingClientConfig } from "./AutoScalingClient"; + +import type { AutoScalingClientConfig } from "./AutoScalingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-auto-scaling/src/runtimeExtensions.ts b/clients/client-auto-scaling/src/runtimeExtensions.ts index b9e31db35a127..6b27df73dd766 100644 --- a/clients/client-auto-scaling/src/runtimeExtensions.ts +++ b/clients/client-auto-scaling/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { AutoScalingExtensionConfiguration } from "./extensionConfiguration"; +import type { AutoScalingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-auto-scaling/src/schemas/schemas_0.ts b/clients/client-auto-scaling/src/schemas/schemas_0.ts index 42128646470c9..a33e160648782 100644 --- a/clients/client-auto-scaling/src/schemas/schemas_0.ts +++ b/clients/client-auto-scaling/src/schemas/schemas_0.ts @@ -588,7 +588,7 @@ const n0 = "com.amazonaws.autoscaling"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AutoScalingServiceException as __AutoScalingServiceException } from "../models/AutoScalingServiceException"; import { diff --git a/clients/client-b2bi/package.json b/clients/client-b2bi/package.json index 333adee6fcd7c..7ee16d8852ccb 100644 --- a/clients/client-b2bi/package.json +++ b/clients/client-b2bi/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-b2bi/src/B2bi.ts b/clients/client-b2bi/src/B2bi.ts index 76b05c97971e2..a7617d88bf37c 100644 --- a/clients/client-b2bi/src/B2bi.ts +++ b/clients/client-b2bi/src/B2bi.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { B2biClient, B2biClientConfig } from "./B2biClient"; +import { B2biClient } from "./B2biClient"; import { CreateCapabilityCommand, CreateCapabilityCommandInput, diff --git a/clients/client-b2bi/src/B2biClient.ts b/clients/client-b2bi/src/B2biClient.ts index 68a45362b4e76..dbada2eeea718 100644 --- a/clients/client-b2bi/src/B2biClient.ts +++ b/clients/client-b2bi/src/B2biClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultB2biHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateCapabilityCommandInput, CreateCapabilityCommandOutput } from "./commands/CreateCapabilityCommand"; @@ -103,7 +112,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-b2bi/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-b2bi/src/auth/httpAuthExtensionConfiguration.ts index 7858564faaebd..7fa15a49f81b2 100644 --- a/clients/client-b2bi/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-b2bi/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { B2biHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { B2biHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-b2bi/src/auth/httpAuthSchemeProvider.ts b/clients/client-b2bi/src/auth/httpAuthSchemeProvider.ts index 2fefa9f4af8a2..69e5e39b4583e 100644 --- a/clients/client-b2bi/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-b2bi/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { B2biClientConfig, B2biClientResolvedConfig } from "../B2biClient"; +import { type B2biClientResolvedConfig, B2biClientConfig } from "../B2biClient"; /** * @internal diff --git a/clients/client-b2bi/src/commands/CreateCapabilityCommand.ts b/clients/client-b2bi/src/commands/CreateCapabilityCommand.ts index ac39e4b6a8435..3eb84fe1faacf 100644 --- a/clients/client-b2bi/src/commands/CreateCapabilityCommand.ts +++ b/clients/client-b2bi/src/commands/CreateCapabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCapabilityRequest, CreateCapabilityResponse } from "../models/models_0"; +import type { CreateCapabilityRequest, CreateCapabilityResponse } from "../models/models_0"; import { CreateCapability } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/CreatePartnershipCommand.ts b/clients/client-b2bi/src/commands/CreatePartnershipCommand.ts index 45be9fae64612..051917fb0fdf4 100644 --- a/clients/client-b2bi/src/commands/CreatePartnershipCommand.ts +++ b/clients/client-b2bi/src/commands/CreatePartnershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePartnershipRequest, CreatePartnershipResponse } from "../models/models_0"; +import type { CreatePartnershipRequest, CreatePartnershipResponse } from "../models/models_0"; import { CreatePartnership } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/CreateProfileCommand.ts b/clients/client-b2bi/src/commands/CreateProfileCommand.ts index c882560b27cf7..76c68f39f398b 100644 --- a/clients/client-b2bi/src/commands/CreateProfileCommand.ts +++ b/clients/client-b2bi/src/commands/CreateProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProfileRequest, CreateProfileResponse } from "../models/models_0"; +import type { CreateProfileRequest, CreateProfileResponse } from "../models/models_0"; import { CreateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/CreateStarterMappingTemplateCommand.ts b/clients/client-b2bi/src/commands/CreateStarterMappingTemplateCommand.ts index eb8e145fbf814..39b13499e8b2c 100644 --- a/clients/client-b2bi/src/commands/CreateStarterMappingTemplateCommand.ts +++ b/clients/client-b2bi/src/commands/CreateStarterMappingTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStarterMappingTemplateRequest, CreateStarterMappingTemplateResponse } from "../models/models_0"; +import type { CreateStarterMappingTemplateRequest, CreateStarterMappingTemplateResponse } from "../models/models_0"; import { CreateStarterMappingTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/CreateTransformerCommand.ts b/clients/client-b2bi/src/commands/CreateTransformerCommand.ts index 96314fdbaad16..c4fd3a5d2ee91 100644 --- a/clients/client-b2bi/src/commands/CreateTransformerCommand.ts +++ b/clients/client-b2bi/src/commands/CreateTransformerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransformerRequest, CreateTransformerResponse } from "../models/models_0"; +import type { CreateTransformerRequest, CreateTransformerResponse } from "../models/models_0"; import { CreateTransformer } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/DeleteCapabilityCommand.ts b/clients/client-b2bi/src/commands/DeleteCapabilityCommand.ts index a5c4ef13a37d3..2e232f08056ac 100644 --- a/clients/client-b2bi/src/commands/DeleteCapabilityCommand.ts +++ b/clients/client-b2bi/src/commands/DeleteCapabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCapabilityRequest } from "../models/models_0"; +import type { DeleteCapabilityRequest } from "../models/models_0"; import { DeleteCapability } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/DeletePartnershipCommand.ts b/clients/client-b2bi/src/commands/DeletePartnershipCommand.ts index f029bc4e51c78..661b243af592e 100644 --- a/clients/client-b2bi/src/commands/DeletePartnershipCommand.ts +++ b/clients/client-b2bi/src/commands/DeletePartnershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePartnershipRequest } from "../models/models_0"; +import type { DeletePartnershipRequest } from "../models/models_0"; import { DeletePartnership } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/DeleteProfileCommand.ts b/clients/client-b2bi/src/commands/DeleteProfileCommand.ts index a3a4ab157e92f..3ae5156c6e681 100644 --- a/clients/client-b2bi/src/commands/DeleteProfileCommand.ts +++ b/clients/client-b2bi/src/commands/DeleteProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfileRequest } from "../models/models_0"; +import type { DeleteProfileRequest } from "../models/models_0"; import { DeleteProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/DeleteTransformerCommand.ts b/clients/client-b2bi/src/commands/DeleteTransformerCommand.ts index 63c5d470907ba..d0f3017eba781 100644 --- a/clients/client-b2bi/src/commands/DeleteTransformerCommand.ts +++ b/clients/client-b2bi/src/commands/DeleteTransformerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTransformerRequest } from "../models/models_0"; +import type { DeleteTransformerRequest } from "../models/models_0"; import { DeleteTransformer } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/GenerateMappingCommand.ts b/clients/client-b2bi/src/commands/GenerateMappingCommand.ts index c48534976e4f4..26dc7415bc0a0 100644 --- a/clients/client-b2bi/src/commands/GenerateMappingCommand.ts +++ b/clients/client-b2bi/src/commands/GenerateMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateMappingRequest, GenerateMappingResponse } from "../models/models_0"; +import type { GenerateMappingRequest, GenerateMappingResponse } from "../models/models_0"; import { GenerateMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/GetCapabilityCommand.ts b/clients/client-b2bi/src/commands/GetCapabilityCommand.ts index d36804aa05c25..9292841f47c89 100644 --- a/clients/client-b2bi/src/commands/GetCapabilityCommand.ts +++ b/clients/client-b2bi/src/commands/GetCapabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCapabilityRequest, GetCapabilityResponse } from "../models/models_0"; +import type { GetCapabilityRequest, GetCapabilityResponse } from "../models/models_0"; import { GetCapability } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/GetPartnershipCommand.ts b/clients/client-b2bi/src/commands/GetPartnershipCommand.ts index d025dd2d28814..a97056929af95 100644 --- a/clients/client-b2bi/src/commands/GetPartnershipCommand.ts +++ b/clients/client-b2bi/src/commands/GetPartnershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPartnershipRequest, GetPartnershipResponse } from "../models/models_0"; +import type { GetPartnershipRequest, GetPartnershipResponse } from "../models/models_0"; import { GetPartnership } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/GetProfileCommand.ts b/clients/client-b2bi/src/commands/GetProfileCommand.ts index e3a5e7a84ec84..bc26c2a70245c 100644 --- a/clients/client-b2bi/src/commands/GetProfileCommand.ts +++ b/clients/client-b2bi/src/commands/GetProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileRequest, GetProfileResponse } from "../models/models_0"; +import type { GetProfileRequest, GetProfileResponse } from "../models/models_0"; import { GetProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/GetTransformerCommand.ts b/clients/client-b2bi/src/commands/GetTransformerCommand.ts index 23f16512053a4..b429cccb38942 100644 --- a/clients/client-b2bi/src/commands/GetTransformerCommand.ts +++ b/clients/client-b2bi/src/commands/GetTransformerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTransformerRequest, GetTransformerResponse } from "../models/models_0"; +import type { GetTransformerRequest, GetTransformerResponse } from "../models/models_0"; import { GetTransformer } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/GetTransformerJobCommand.ts b/clients/client-b2bi/src/commands/GetTransformerJobCommand.ts index c1b1625f89bba..42aba7939ac5c 100644 --- a/clients/client-b2bi/src/commands/GetTransformerJobCommand.ts +++ b/clients/client-b2bi/src/commands/GetTransformerJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTransformerJobRequest, GetTransformerJobResponse } from "../models/models_0"; +import type { GetTransformerJobRequest, GetTransformerJobResponse } from "../models/models_0"; import { GetTransformerJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/ListCapabilitiesCommand.ts b/clients/client-b2bi/src/commands/ListCapabilitiesCommand.ts index 5b1984c5d3cff..6e9bb431d2eab 100644 --- a/clients/client-b2bi/src/commands/ListCapabilitiesCommand.ts +++ b/clients/client-b2bi/src/commands/ListCapabilitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCapabilitiesRequest, ListCapabilitiesResponse } from "../models/models_0"; +import type { ListCapabilitiesRequest, ListCapabilitiesResponse } from "../models/models_0"; import { ListCapabilities } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/ListPartnershipsCommand.ts b/clients/client-b2bi/src/commands/ListPartnershipsCommand.ts index e5216537008e1..ac18c397026ca 100644 --- a/clients/client-b2bi/src/commands/ListPartnershipsCommand.ts +++ b/clients/client-b2bi/src/commands/ListPartnershipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPartnershipsRequest, ListPartnershipsResponse } from "../models/models_0"; +import type { ListPartnershipsRequest, ListPartnershipsResponse } from "../models/models_0"; import { ListPartnerships } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/ListProfilesCommand.ts b/clients/client-b2bi/src/commands/ListProfilesCommand.ts index 4a9000ab41c7b..1f37147f00c4f 100644 --- a/clients/client-b2bi/src/commands/ListProfilesCommand.ts +++ b/clients/client-b2bi/src/commands/ListProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfilesRequest, ListProfilesResponse } from "../models/models_0"; +import type { ListProfilesRequest, ListProfilesResponse } from "../models/models_0"; import { ListProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/ListTagsForResourceCommand.ts b/clients/client-b2bi/src/commands/ListTagsForResourceCommand.ts index 0667fd51cf0ae..066f3bbda0d40 100644 --- a/clients/client-b2bi/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-b2bi/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/ListTransformersCommand.ts b/clients/client-b2bi/src/commands/ListTransformersCommand.ts index 80cfb65bfa4b6..17348f6dedb4b 100644 --- a/clients/client-b2bi/src/commands/ListTransformersCommand.ts +++ b/clients/client-b2bi/src/commands/ListTransformersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTransformersRequest, ListTransformersResponse } from "../models/models_0"; +import type { ListTransformersRequest, ListTransformersResponse } from "../models/models_0"; import { ListTransformers } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/StartTransformerJobCommand.ts b/clients/client-b2bi/src/commands/StartTransformerJobCommand.ts index aebb85645f4d5..279ed78c2dc43 100644 --- a/clients/client-b2bi/src/commands/StartTransformerJobCommand.ts +++ b/clients/client-b2bi/src/commands/StartTransformerJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTransformerJobRequest, StartTransformerJobResponse } from "../models/models_0"; +import type { StartTransformerJobRequest, StartTransformerJobResponse } from "../models/models_0"; import { StartTransformerJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/TagResourceCommand.ts b/clients/client-b2bi/src/commands/TagResourceCommand.ts index ffd26d005ccb0..8dc84b01e2ef7 100644 --- a/clients/client-b2bi/src/commands/TagResourceCommand.ts +++ b/clients/client-b2bi/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/TestConversionCommand.ts b/clients/client-b2bi/src/commands/TestConversionCommand.ts index 9bb7e87052cec..f2163f32b9523 100644 --- a/clients/client-b2bi/src/commands/TestConversionCommand.ts +++ b/clients/client-b2bi/src/commands/TestConversionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestConversionRequest, TestConversionResponse } from "../models/models_0"; +import type { TestConversionRequest, TestConversionResponse } from "../models/models_0"; import { TestConversion } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/TestMappingCommand.ts b/clients/client-b2bi/src/commands/TestMappingCommand.ts index 42fb312878b45..89d5da970eadf 100644 --- a/clients/client-b2bi/src/commands/TestMappingCommand.ts +++ b/clients/client-b2bi/src/commands/TestMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestMappingRequest, TestMappingResponse } from "../models/models_0"; +import type { TestMappingRequest, TestMappingResponse } from "../models/models_0"; import { TestMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/TestParsingCommand.ts b/clients/client-b2bi/src/commands/TestParsingCommand.ts index 3de1d69790465..0736269ff1a1e 100644 --- a/clients/client-b2bi/src/commands/TestParsingCommand.ts +++ b/clients/client-b2bi/src/commands/TestParsingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestParsingRequest, TestParsingResponse } from "../models/models_0"; +import type { TestParsingRequest, TestParsingResponse } from "../models/models_0"; import { TestParsing } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/UntagResourceCommand.ts b/clients/client-b2bi/src/commands/UntagResourceCommand.ts index ed398bf5bd793..5d4efe8644e45 100644 --- a/clients/client-b2bi/src/commands/UntagResourceCommand.ts +++ b/clients/client-b2bi/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/UpdateCapabilityCommand.ts b/clients/client-b2bi/src/commands/UpdateCapabilityCommand.ts index 19b57cf17c8bd..40f31b3f3eb87 100644 --- a/clients/client-b2bi/src/commands/UpdateCapabilityCommand.ts +++ b/clients/client-b2bi/src/commands/UpdateCapabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCapabilityRequest, UpdateCapabilityResponse } from "../models/models_0"; +import type { UpdateCapabilityRequest, UpdateCapabilityResponse } from "../models/models_0"; import { UpdateCapability } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/UpdatePartnershipCommand.ts b/clients/client-b2bi/src/commands/UpdatePartnershipCommand.ts index d288d2644e499..d8a878f9f3a14 100644 --- a/clients/client-b2bi/src/commands/UpdatePartnershipCommand.ts +++ b/clients/client-b2bi/src/commands/UpdatePartnershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePartnershipRequest, UpdatePartnershipResponse } from "../models/models_0"; +import type { UpdatePartnershipRequest, UpdatePartnershipResponse } from "../models/models_0"; import { UpdatePartnership } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/UpdateProfileCommand.ts b/clients/client-b2bi/src/commands/UpdateProfileCommand.ts index a21799766cb49..e0a10b1181e6c 100644 --- a/clients/client-b2bi/src/commands/UpdateProfileCommand.ts +++ b/clients/client-b2bi/src/commands/UpdateProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProfileRequest, UpdateProfileResponse } from "../models/models_0"; +import type { UpdateProfileRequest, UpdateProfileResponse } from "../models/models_0"; import { UpdateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/commands/UpdateTransformerCommand.ts b/clients/client-b2bi/src/commands/UpdateTransformerCommand.ts index 7a7914d29e558..fa2a8723b6730 100644 --- a/clients/client-b2bi/src/commands/UpdateTransformerCommand.ts +++ b/clients/client-b2bi/src/commands/UpdateTransformerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; +import type { B2biClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../B2biClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTransformerRequest, UpdateTransformerResponse } from "../models/models_0"; +import type { UpdateTransformerRequest, UpdateTransformerResponse } from "../models/models_0"; import { UpdateTransformer } from "../schemas/schemas_0"; /** diff --git a/clients/client-b2bi/src/endpoint/EndpointParameters.ts b/clients/client-b2bi/src/endpoint/EndpointParameters.ts index 3960c3d24aa83..d62608ab8f46e 100644 --- a/clients/client-b2bi/src/endpoint/EndpointParameters.ts +++ b/clients/client-b2bi/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-b2bi/src/endpoint/endpointResolver.ts b/clients/client-b2bi/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-b2bi/src/endpoint/endpointResolver.ts +++ b/clients/client-b2bi/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-b2bi/src/extensionConfiguration.ts b/clients/client-b2bi/src/extensionConfiguration.ts index b470497c37f0c..714013150717a 100644 --- a/clients/client-b2bi/src/extensionConfiguration.ts +++ b/clients/client-b2bi/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-b2bi/src/models/B2biServiceException.ts b/clients/client-b2bi/src/models/B2biServiceException.ts index e25a98ed6a5d9..c69ac6786c62b 100644 --- a/clients/client-b2bi/src/models/B2biServiceException.ts +++ b/clients/client-b2bi/src/models/B2biServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-b2bi/src/models/errors.ts b/clients/client-b2bi/src/models/errors.ts index d438cbbff7b68..d15cda07096ee 100644 --- a/clients/client-b2bi/src/models/errors.ts +++ b/clients/client-b2bi/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { B2biServiceException as __BaseException } from "./B2biServiceException"; diff --git a/clients/client-b2bi/src/pagination/Interfaces.ts b/clients/client-b2bi/src/pagination/Interfaces.ts index c3dadcd85f27c..db81d28b9d888 100644 --- a/clients/client-b2bi/src/pagination/Interfaces.ts +++ b/clients/client-b2bi/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { B2biClient } from "../B2biClient"; diff --git a/clients/client-b2bi/src/pagination/ListCapabilitiesPaginator.ts b/clients/client-b2bi/src/pagination/ListCapabilitiesPaginator.ts index 1fa1189a88814..abc57f431d0cd 100644 --- a/clients/client-b2bi/src/pagination/ListCapabilitiesPaginator.ts +++ b/clients/client-b2bi/src/pagination/ListCapabilitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { B2biClient } from "../B2biClient"; import { diff --git a/clients/client-b2bi/src/pagination/ListPartnershipsPaginator.ts b/clients/client-b2bi/src/pagination/ListPartnershipsPaginator.ts index d96d3088fa8ad..105011d2c2f9d 100644 --- a/clients/client-b2bi/src/pagination/ListPartnershipsPaginator.ts +++ b/clients/client-b2bi/src/pagination/ListPartnershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { B2biClient } from "../B2biClient"; import { diff --git a/clients/client-b2bi/src/pagination/ListProfilesPaginator.ts b/clients/client-b2bi/src/pagination/ListProfilesPaginator.ts index 54fa48311f1ba..fbb358898218a 100644 --- a/clients/client-b2bi/src/pagination/ListProfilesPaginator.ts +++ b/clients/client-b2bi/src/pagination/ListProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { B2biClient } from "../B2biClient"; import { diff --git a/clients/client-b2bi/src/pagination/ListTransformersPaginator.ts b/clients/client-b2bi/src/pagination/ListTransformersPaginator.ts index b7655a80111f0..0cf8b6c82f8f0 100644 --- a/clients/client-b2bi/src/pagination/ListTransformersPaginator.ts +++ b/clients/client-b2bi/src/pagination/ListTransformersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { B2biClient } from "../B2biClient"; import { diff --git a/clients/client-b2bi/src/runtimeConfig.browser.ts b/clients/client-b2bi/src/runtimeConfig.browser.ts index 6ca6caf9677ac..db9613ae92763 100644 --- a/clients/client-b2bi/src/runtimeConfig.browser.ts +++ b/clients/client-b2bi/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { B2biClientConfig } from "./B2biClient"; + +import type { B2biClientConfig } from "./B2biClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-b2bi/src/runtimeConfig.native.ts b/clients/client-b2bi/src/runtimeConfig.native.ts index 600ed35f55b24..6d9360dadaecf 100644 --- a/clients/client-b2bi/src/runtimeConfig.native.ts +++ b/clients/client-b2bi/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { B2biClientConfig } from "./B2biClient"; +import type { B2biClientConfig } from "./B2biClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-b2bi/src/runtimeConfig.shared.ts b/clients/client-b2bi/src/runtimeConfig.shared.ts index 433f49709af5b..dc26d0e2eddfa 100644 --- a/clients/client-b2bi/src/runtimeConfig.shared.ts +++ b/clients/client-b2bi/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultB2biHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { B2biClientConfig } from "./B2biClient"; +import type { B2biClientConfig } from "./B2biClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-b2bi/src/runtimeConfig.ts b/clients/client-b2bi/src/runtimeConfig.ts index 07d162acafac4..69406df9aeaea 100644 --- a/clients/client-b2bi/src/runtimeConfig.ts +++ b/clients/client-b2bi/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { B2biClientConfig } from "./B2biClient"; + +import type { B2biClientConfig } from "./B2biClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-b2bi/src/runtimeExtensions.ts b/clients/client-b2bi/src/runtimeExtensions.ts index 227afea940ab8..8ccc453e7cdb1 100644 --- a/clients/client-b2bi/src/runtimeExtensions.ts +++ b/clients/client-b2bi/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { B2biExtensionConfiguration } from "./extensionConfiguration"; +import type { B2biExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-b2bi/src/schemas/schemas_0.ts b/clients/client-b2bi/src/schemas/schemas_0.ts index 6b5a168a837ab..58579c5ad0a26 100644 --- a/clients/client-b2bi/src/schemas/schemas_0.ts +++ b/clients/client-b2bi/src/schemas/schemas_0.ts @@ -290,7 +290,7 @@ const n0 = "com.amazonaws.b2bi"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-backup-gateway/package.json b/clients/client-backup-gateway/package.json index 492f46029cf33..7ed72d5688078 100644 --- a/clients/client-backup-gateway/package.json +++ b/clients/client-backup-gateway/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-backup-gateway/src/BackupGateway.ts b/clients/client-backup-gateway/src/BackupGateway.ts index 685b32655a6b9..edce736db0eb1 100644 --- a/clients/client-backup-gateway/src/BackupGateway.ts +++ b/clients/client-backup-gateway/src/BackupGateway.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BackupGatewayClient, BackupGatewayClientConfig } from "./BackupGatewayClient"; +import { BackupGatewayClient } from "./BackupGatewayClient"; import { AssociateGatewayToServerCommand, AssociateGatewayToServerCommandInput, diff --git a/clients/client-backup-gateway/src/BackupGatewayClient.ts b/clients/client-backup-gateway/src/BackupGatewayClient.ts index c7c3b794582b3..8567d17b0fb9a 100644 --- a/clients/client-backup-gateway/src/BackupGatewayClient.ts +++ b/clients/client-backup-gateway/src/BackupGatewayClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBackupGatewayHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -131,7 +140,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-backup-gateway/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-backup-gateway/src/auth/httpAuthExtensionConfiguration.ts index 720b5b1911f17..3c2f1ca3a457d 100644 --- a/clients/client-backup-gateway/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-backup-gateway/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BackupGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BackupGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-backup-gateway/src/auth/httpAuthSchemeProvider.ts b/clients/client-backup-gateway/src/auth/httpAuthSchemeProvider.ts index 77f4a75b907b9..08ef76eb23027 100644 --- a/clients/client-backup-gateway/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-backup-gateway/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BackupGatewayClientConfig, BackupGatewayClientResolvedConfig } from "../BackupGatewayClient"; +import { type BackupGatewayClientResolvedConfig, BackupGatewayClientConfig } from "../BackupGatewayClient"; /** * @internal diff --git a/clients/client-backup-gateway/src/commands/AssociateGatewayToServerCommand.ts b/clients/client-backup-gateway/src/commands/AssociateGatewayToServerCommand.ts index 214c78d1e4e16..80b9b2ef07942 100644 --- a/clients/client-backup-gateway/src/commands/AssociateGatewayToServerCommand.ts +++ b/clients/client-backup-gateway/src/commands/AssociateGatewayToServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateGatewayToServerInput, AssociateGatewayToServerOutput } from "../models/models_0"; +import type { AssociateGatewayToServerInput, AssociateGatewayToServerOutput } from "../models/models_0"; import { AssociateGatewayToServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/CreateGatewayCommand.ts b/clients/client-backup-gateway/src/commands/CreateGatewayCommand.ts index 8410f389ab83a..eb7af530fc888 100644 --- a/clients/client-backup-gateway/src/commands/CreateGatewayCommand.ts +++ b/clients/client-backup-gateway/src/commands/CreateGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGatewayInput, CreateGatewayOutput } from "../models/models_0"; +import type { CreateGatewayInput, CreateGatewayOutput } from "../models/models_0"; import { CreateGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/DeleteGatewayCommand.ts b/clients/client-backup-gateway/src/commands/DeleteGatewayCommand.ts index 645993be0b224..54604dc207cdc 100644 --- a/clients/client-backup-gateway/src/commands/DeleteGatewayCommand.ts +++ b/clients/client-backup-gateway/src/commands/DeleteGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGatewayInput, DeleteGatewayOutput } from "../models/models_0"; +import type { DeleteGatewayInput, DeleteGatewayOutput } from "../models/models_0"; import { DeleteGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/DeleteHypervisorCommand.ts b/clients/client-backup-gateway/src/commands/DeleteHypervisorCommand.ts index 18880dd1d3b6d..7e133ba3e82b1 100644 --- a/clients/client-backup-gateway/src/commands/DeleteHypervisorCommand.ts +++ b/clients/client-backup-gateway/src/commands/DeleteHypervisorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHypervisorInput, DeleteHypervisorOutput } from "../models/models_0"; +import type { DeleteHypervisorInput, DeleteHypervisorOutput } from "../models/models_0"; import { DeleteHypervisor } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/DisassociateGatewayFromServerCommand.ts b/clients/client-backup-gateway/src/commands/DisassociateGatewayFromServerCommand.ts index 885659c8fdc62..53dc8f6b38878 100644 --- a/clients/client-backup-gateway/src/commands/DisassociateGatewayFromServerCommand.ts +++ b/clients/client-backup-gateway/src/commands/DisassociateGatewayFromServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateGatewayFromServerInput, DisassociateGatewayFromServerOutput } from "../models/models_0"; +import type { DisassociateGatewayFromServerInput, DisassociateGatewayFromServerOutput } from "../models/models_0"; import { DisassociateGatewayFromServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/GetBandwidthRateLimitScheduleCommand.ts b/clients/client-backup-gateway/src/commands/GetBandwidthRateLimitScheduleCommand.ts index 07c4c771ec0f6..babf8a1e73d5d 100644 --- a/clients/client-backup-gateway/src/commands/GetBandwidthRateLimitScheduleCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetBandwidthRateLimitScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBandwidthRateLimitScheduleInput, GetBandwidthRateLimitScheduleOutput } from "../models/models_0"; +import type { GetBandwidthRateLimitScheduleInput, GetBandwidthRateLimitScheduleOutput } from "../models/models_0"; import { GetBandwidthRateLimitSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/GetGatewayCommand.ts b/clients/client-backup-gateway/src/commands/GetGatewayCommand.ts index 87cfb74bb3594..7920ac7c7caf7 100644 --- a/clients/client-backup-gateway/src/commands/GetGatewayCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGatewayInput, GetGatewayOutput } from "../models/models_0"; +import type { GetGatewayInput, GetGatewayOutput } from "../models/models_0"; import { GetGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/GetHypervisorCommand.ts b/clients/client-backup-gateway/src/commands/GetHypervisorCommand.ts index a867d075124ca..4c029c81ba740 100644 --- a/clients/client-backup-gateway/src/commands/GetHypervisorCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetHypervisorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHypervisorInput, GetHypervisorOutput } from "../models/models_0"; +import type { GetHypervisorInput, GetHypervisorOutput } from "../models/models_0"; import { GetHypervisor } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/GetHypervisorPropertyMappingsCommand.ts b/clients/client-backup-gateway/src/commands/GetHypervisorPropertyMappingsCommand.ts index b0a88ac9c25ee..aceae1ba11e22 100644 --- a/clients/client-backup-gateway/src/commands/GetHypervisorPropertyMappingsCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetHypervisorPropertyMappingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHypervisorPropertyMappingsInput, GetHypervisorPropertyMappingsOutput } from "../models/models_0"; +import type { GetHypervisorPropertyMappingsInput, GetHypervisorPropertyMappingsOutput } from "../models/models_0"; import { GetHypervisorPropertyMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/GetVirtualMachineCommand.ts b/clients/client-backup-gateway/src/commands/GetVirtualMachineCommand.ts index 71602cb33fbc0..803a3185de11c 100644 --- a/clients/client-backup-gateway/src/commands/GetVirtualMachineCommand.ts +++ b/clients/client-backup-gateway/src/commands/GetVirtualMachineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVirtualMachineInput, GetVirtualMachineOutput } from "../models/models_0"; +import type { GetVirtualMachineInput, GetVirtualMachineOutput } from "../models/models_0"; import { GetVirtualMachine } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/ImportHypervisorConfigurationCommand.ts b/clients/client-backup-gateway/src/commands/ImportHypervisorConfigurationCommand.ts index 9e971f4c1d9ba..5b8b82207f104 100644 --- a/clients/client-backup-gateway/src/commands/ImportHypervisorConfigurationCommand.ts +++ b/clients/client-backup-gateway/src/commands/ImportHypervisorConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportHypervisorConfigurationInput, ImportHypervisorConfigurationOutput } from "../models/models_0"; +import type { ImportHypervisorConfigurationInput, ImportHypervisorConfigurationOutput } from "../models/models_0"; import { ImportHypervisorConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/ListGatewaysCommand.ts b/clients/client-backup-gateway/src/commands/ListGatewaysCommand.ts index 44a3ff98f92d3..8667046f49758 100644 --- a/clients/client-backup-gateway/src/commands/ListGatewaysCommand.ts +++ b/clients/client-backup-gateway/src/commands/ListGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGatewaysInput, ListGatewaysOutput } from "../models/models_0"; +import type { ListGatewaysInput, ListGatewaysOutput } from "../models/models_0"; import { ListGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/ListHypervisorsCommand.ts b/clients/client-backup-gateway/src/commands/ListHypervisorsCommand.ts index 2eefc1db82a1d..3ede18002fae8 100644 --- a/clients/client-backup-gateway/src/commands/ListHypervisorsCommand.ts +++ b/clients/client-backup-gateway/src/commands/ListHypervisorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHypervisorsInput, ListHypervisorsOutput } from "../models/models_0"; +import type { ListHypervisorsInput, ListHypervisorsOutput } from "../models/models_0"; import { ListHypervisors } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/ListTagsForResourceCommand.ts b/clients/client-backup-gateway/src/commands/ListTagsForResourceCommand.ts index 7b5918dde8ff8..4d81cae4fe07d 100644 --- a/clients/client-backup-gateway/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-backup-gateway/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/ListVirtualMachinesCommand.ts b/clients/client-backup-gateway/src/commands/ListVirtualMachinesCommand.ts index f6902b9e20ebc..7bfd73257ed7d 100644 --- a/clients/client-backup-gateway/src/commands/ListVirtualMachinesCommand.ts +++ b/clients/client-backup-gateway/src/commands/ListVirtualMachinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVirtualMachinesInput, ListVirtualMachinesOutput } from "../models/models_0"; +import type { ListVirtualMachinesInput, ListVirtualMachinesOutput } from "../models/models_0"; import { ListVirtualMachines } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/PutBandwidthRateLimitScheduleCommand.ts b/clients/client-backup-gateway/src/commands/PutBandwidthRateLimitScheduleCommand.ts index 835c5072832b8..5301c893b404a 100644 --- a/clients/client-backup-gateway/src/commands/PutBandwidthRateLimitScheduleCommand.ts +++ b/clients/client-backup-gateway/src/commands/PutBandwidthRateLimitScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBandwidthRateLimitScheduleInput, PutBandwidthRateLimitScheduleOutput } from "../models/models_0"; +import type { PutBandwidthRateLimitScheduleInput, PutBandwidthRateLimitScheduleOutput } from "../models/models_0"; import { PutBandwidthRateLimitSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/PutHypervisorPropertyMappingsCommand.ts b/clients/client-backup-gateway/src/commands/PutHypervisorPropertyMappingsCommand.ts index 60bd709ac0529..228a444e5197e 100644 --- a/clients/client-backup-gateway/src/commands/PutHypervisorPropertyMappingsCommand.ts +++ b/clients/client-backup-gateway/src/commands/PutHypervisorPropertyMappingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutHypervisorPropertyMappingsInput, PutHypervisorPropertyMappingsOutput } from "../models/models_0"; +import type { PutHypervisorPropertyMappingsInput, PutHypervisorPropertyMappingsOutput } from "../models/models_0"; import { PutHypervisorPropertyMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/PutMaintenanceStartTimeCommand.ts b/clients/client-backup-gateway/src/commands/PutMaintenanceStartTimeCommand.ts index 2a57db80928b0..dd2245e248beb 100644 --- a/clients/client-backup-gateway/src/commands/PutMaintenanceStartTimeCommand.ts +++ b/clients/client-backup-gateway/src/commands/PutMaintenanceStartTimeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMaintenanceStartTimeInput, PutMaintenanceStartTimeOutput } from "../models/models_0"; +import type { PutMaintenanceStartTimeInput, PutMaintenanceStartTimeOutput } from "../models/models_0"; import { PutMaintenanceStartTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/StartVirtualMachinesMetadataSyncCommand.ts b/clients/client-backup-gateway/src/commands/StartVirtualMachinesMetadataSyncCommand.ts index 37ec947d40185..81b230bdf5ef0 100644 --- a/clients/client-backup-gateway/src/commands/StartVirtualMachinesMetadataSyncCommand.ts +++ b/clients/client-backup-gateway/src/commands/StartVirtualMachinesMetadataSyncCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartVirtualMachinesMetadataSyncInput, StartVirtualMachinesMetadataSyncOutput } from "../models/models_0"; +import type { StartVirtualMachinesMetadataSyncInput, StartVirtualMachinesMetadataSyncOutput } from "../models/models_0"; import { StartVirtualMachinesMetadataSync } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/TagResourceCommand.ts b/clients/client-backup-gateway/src/commands/TagResourceCommand.ts index 1f58889f0f9b1..5b43909807d19 100644 --- a/clients/client-backup-gateway/src/commands/TagResourceCommand.ts +++ b/clients/client-backup-gateway/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/TestHypervisorConfigurationCommand.ts b/clients/client-backup-gateway/src/commands/TestHypervisorConfigurationCommand.ts index 311577cd68611..1c96a0d5632c0 100644 --- a/clients/client-backup-gateway/src/commands/TestHypervisorConfigurationCommand.ts +++ b/clients/client-backup-gateway/src/commands/TestHypervisorConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestHypervisorConfigurationInput, TestHypervisorConfigurationOutput } from "../models/models_0"; +import type { TestHypervisorConfigurationInput, TestHypervisorConfigurationOutput } from "../models/models_0"; import { TestHypervisorConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/UntagResourceCommand.ts b/clients/client-backup-gateway/src/commands/UntagResourceCommand.ts index 706deafc44a12..6f460236b5f63 100644 --- a/clients/client-backup-gateway/src/commands/UntagResourceCommand.ts +++ b/clients/client-backup-gateway/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/UpdateGatewayInformationCommand.ts b/clients/client-backup-gateway/src/commands/UpdateGatewayInformationCommand.ts index ac564b085a672..03463a8c0ba6c 100644 --- a/clients/client-backup-gateway/src/commands/UpdateGatewayInformationCommand.ts +++ b/clients/client-backup-gateway/src/commands/UpdateGatewayInformationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGatewayInformationInput, UpdateGatewayInformationOutput } from "../models/models_0"; +import type { UpdateGatewayInformationInput, UpdateGatewayInformationOutput } from "../models/models_0"; import { UpdateGatewayInformation } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts b/clients/client-backup-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts index fdc544a7128bd..6a96bcb14f2e0 100644 --- a/clients/client-backup-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts +++ b/clients/client-backup-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGatewaySoftwareNowInput, UpdateGatewaySoftwareNowOutput } from "../models/models_0"; +import type { UpdateGatewaySoftwareNowInput, UpdateGatewaySoftwareNowOutput } from "../models/models_0"; import { UpdateGatewaySoftwareNow } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/commands/UpdateHypervisorCommand.ts b/clients/client-backup-gateway/src/commands/UpdateHypervisorCommand.ts index 564187e4ab61d..01a61ee1122c0 100644 --- a/clients/client-backup-gateway/src/commands/UpdateHypervisorCommand.ts +++ b/clients/client-backup-gateway/src/commands/UpdateHypervisorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; +import type { BackupGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHypervisorInput, UpdateHypervisorOutput } from "../models/models_0"; +import type { UpdateHypervisorInput, UpdateHypervisorOutput } from "../models/models_0"; import { UpdateHypervisor } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup-gateway/src/endpoint/EndpointParameters.ts b/clients/client-backup-gateway/src/endpoint/EndpointParameters.ts index 4f194e800889d..3d0ca46da7634 100644 --- a/clients/client-backup-gateway/src/endpoint/EndpointParameters.ts +++ b/clients/client-backup-gateway/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-backup-gateway/src/endpoint/endpointResolver.ts b/clients/client-backup-gateway/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-backup-gateway/src/endpoint/endpointResolver.ts +++ b/clients/client-backup-gateway/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-backup-gateway/src/extensionConfiguration.ts b/clients/client-backup-gateway/src/extensionConfiguration.ts index 1e242151e2a23..2b4099e562eff 100644 --- a/clients/client-backup-gateway/src/extensionConfiguration.ts +++ b/clients/client-backup-gateway/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-backup-gateway/src/models/BackupGatewayServiceException.ts b/clients/client-backup-gateway/src/models/BackupGatewayServiceException.ts index 09a2526b1afc6..cb9d35488138b 100644 --- a/clients/client-backup-gateway/src/models/BackupGatewayServiceException.ts +++ b/clients/client-backup-gateway/src/models/BackupGatewayServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-backup-gateway/src/models/errors.ts b/clients/client-backup-gateway/src/models/errors.ts index e4f3830792d55..4206af9b80b10 100644 --- a/clients/client-backup-gateway/src/models/errors.ts +++ b/clients/client-backup-gateway/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BackupGatewayServiceException as __BaseException } from "./BackupGatewayServiceException"; diff --git a/clients/client-backup-gateway/src/pagination/Interfaces.ts b/clients/client-backup-gateway/src/pagination/Interfaces.ts index 7ecf3284acc13..9715aa1b6c3a0 100644 --- a/clients/client-backup-gateway/src/pagination/Interfaces.ts +++ b/clients/client-backup-gateway/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BackupGatewayClient } from "../BackupGatewayClient"; diff --git a/clients/client-backup-gateway/src/pagination/ListGatewaysPaginator.ts b/clients/client-backup-gateway/src/pagination/ListGatewaysPaginator.ts index e8ff291c9fffc..80f359fc755e7 100644 --- a/clients/client-backup-gateway/src/pagination/ListGatewaysPaginator.ts +++ b/clients/client-backup-gateway/src/pagination/ListGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupGatewayClient } from "../BackupGatewayClient"; import { diff --git a/clients/client-backup-gateway/src/pagination/ListHypervisorsPaginator.ts b/clients/client-backup-gateway/src/pagination/ListHypervisorsPaginator.ts index 25822f80242f3..bc0a2e79ed7a3 100644 --- a/clients/client-backup-gateway/src/pagination/ListHypervisorsPaginator.ts +++ b/clients/client-backup-gateway/src/pagination/ListHypervisorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupGatewayClient } from "../BackupGatewayClient"; import { diff --git a/clients/client-backup-gateway/src/pagination/ListVirtualMachinesPaginator.ts b/clients/client-backup-gateway/src/pagination/ListVirtualMachinesPaginator.ts index 7967c7774c979..94b4e2a9d71fa 100644 --- a/clients/client-backup-gateway/src/pagination/ListVirtualMachinesPaginator.ts +++ b/clients/client-backup-gateway/src/pagination/ListVirtualMachinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupGatewayClient } from "../BackupGatewayClient"; import { diff --git a/clients/client-backup-gateway/src/runtimeConfig.browser.ts b/clients/client-backup-gateway/src/runtimeConfig.browser.ts index 4d244060b8721..921dca22c1b57 100644 --- a/clients/client-backup-gateway/src/runtimeConfig.browser.ts +++ b/clients/client-backup-gateway/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BackupGatewayClientConfig } from "./BackupGatewayClient"; + +import type { BackupGatewayClientConfig } from "./BackupGatewayClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-backup-gateway/src/runtimeConfig.native.ts b/clients/client-backup-gateway/src/runtimeConfig.native.ts index 01fcb1c133b07..737202782fff0 100644 --- a/clients/client-backup-gateway/src/runtimeConfig.native.ts +++ b/clients/client-backup-gateway/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BackupGatewayClientConfig } from "./BackupGatewayClient"; +import type { BackupGatewayClientConfig } from "./BackupGatewayClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-backup-gateway/src/runtimeConfig.shared.ts b/clients/client-backup-gateway/src/runtimeConfig.shared.ts index bb85a6a049fa9..68bf4e978a2b6 100644 --- a/clients/client-backup-gateway/src/runtimeConfig.shared.ts +++ b/clients/client-backup-gateway/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBackupGatewayHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BackupGatewayClientConfig } from "./BackupGatewayClient"; +import type { BackupGatewayClientConfig } from "./BackupGatewayClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-backup-gateway/src/runtimeConfig.ts b/clients/client-backup-gateway/src/runtimeConfig.ts index 972972921f393..49e41bc024ef7 100644 --- a/clients/client-backup-gateway/src/runtimeConfig.ts +++ b/clients/client-backup-gateway/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BackupGatewayClientConfig } from "./BackupGatewayClient"; + +import type { BackupGatewayClientConfig } from "./BackupGatewayClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-backup-gateway/src/runtimeExtensions.ts b/clients/client-backup-gateway/src/runtimeExtensions.ts index a3ecbb4d4c5de..8c1b08910f142 100644 --- a/clients/client-backup-gateway/src/runtimeExtensions.ts +++ b/clients/client-backup-gateway/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BackupGatewayExtensionConfiguration } from "./extensionConfiguration"; +import type { BackupGatewayExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-backup-gateway/src/schemas/schemas_0.ts b/clients/client-backup-gateway/src/schemas/schemas_0.ts index 549433156e9eb..551196266614f 100644 --- a/clients/client-backup-gateway/src/schemas/schemas_0.ts +++ b/clients/client-backup-gateway/src/schemas/schemas_0.ts @@ -154,7 +154,7 @@ const n0 = "com.amazonaws.backupgateway"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-backup/package.json b/clients/client-backup/package.json index e3b7bc7d10cc1..32a48ebd39015 100644 --- a/clients/client-backup/package.json +++ b/clients/client-backup/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-backup/src/Backup.ts b/clients/client-backup/src/Backup.ts index 7f95b2741c9ce..2a79e25779c40 100644 --- a/clients/client-backup/src/Backup.ts +++ b/clients/client-backup/src/Backup.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BackupClient, BackupClientConfig } from "./BackupClient"; +import { BackupClient } from "./BackupClient"; import { AssociateBackupVaultMpaApprovalTeamCommand, AssociateBackupVaultMpaApprovalTeamCommandInput, diff --git a/clients/client-backup/src/BackupClient.ts b/clients/client-backup/src/BackupClient.ts index 230c603b3f31a..4afc76804f23d 100644 --- a/clients/client-backup/src/BackupClient.ts +++ b/clients/client-backup/src/BackupClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBackupHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -370,7 +379,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-backup/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-backup/src/auth/httpAuthExtensionConfiguration.ts index 011152363368f..cb3da4a4a969b 100644 --- a/clients/client-backup/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-backup/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BackupHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BackupHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-backup/src/auth/httpAuthSchemeProvider.ts b/clients/client-backup/src/auth/httpAuthSchemeProvider.ts index 3f70ecf25b673..b46a6b5e44540 100644 --- a/clients/client-backup/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-backup/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BackupClientConfig, BackupClientResolvedConfig } from "../BackupClient"; +import { type BackupClientResolvedConfig, BackupClientConfig } from "../BackupClient"; /** * @internal diff --git a/clients/client-backup/src/commands/AssociateBackupVaultMpaApprovalTeamCommand.ts b/clients/client-backup/src/commands/AssociateBackupVaultMpaApprovalTeamCommand.ts index 50af76bd95957..c7208e2cd293f 100644 --- a/clients/client-backup/src/commands/AssociateBackupVaultMpaApprovalTeamCommand.ts +++ b/clients/client-backup/src/commands/AssociateBackupVaultMpaApprovalTeamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateBackupVaultMpaApprovalTeamInput } from "../models/models_0"; +import type { AssociateBackupVaultMpaApprovalTeamInput } from "../models/models_0"; import { AssociateBackupVaultMpaApprovalTeam } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CancelLegalHoldCommand.ts b/clients/client-backup/src/commands/CancelLegalHoldCommand.ts index df00280d1dcba..3aefb697d3176 100644 --- a/clients/client-backup/src/commands/CancelLegalHoldCommand.ts +++ b/clients/client-backup/src/commands/CancelLegalHoldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelLegalHoldInput, CancelLegalHoldOutput } from "../models/models_0"; +import type { CancelLegalHoldInput, CancelLegalHoldOutput } from "../models/models_0"; import { CancelLegalHold } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateBackupPlanCommand.ts b/clients/client-backup/src/commands/CreateBackupPlanCommand.ts index 1ad1071770e34..f96584e7d53a5 100644 --- a/clients/client-backup/src/commands/CreateBackupPlanCommand.ts +++ b/clients/client-backup/src/commands/CreateBackupPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackupPlanInput, CreateBackupPlanOutput } from "../models/models_0"; +import type { CreateBackupPlanInput, CreateBackupPlanOutput } from "../models/models_0"; import { CreateBackupPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateBackupSelectionCommand.ts b/clients/client-backup/src/commands/CreateBackupSelectionCommand.ts index 90bd067fbf0f8..285c1af2d7e70 100644 --- a/clients/client-backup/src/commands/CreateBackupSelectionCommand.ts +++ b/clients/client-backup/src/commands/CreateBackupSelectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackupSelectionInput, CreateBackupSelectionOutput } from "../models/models_0"; +import type { CreateBackupSelectionInput, CreateBackupSelectionOutput } from "../models/models_0"; import { CreateBackupSelection } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateBackupVaultCommand.ts b/clients/client-backup/src/commands/CreateBackupVaultCommand.ts index 33668c523369f..edbdc227ce799 100644 --- a/clients/client-backup/src/commands/CreateBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/CreateBackupVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackupVaultInput, CreateBackupVaultOutput } from "../models/models_0"; +import type { CreateBackupVaultInput, CreateBackupVaultOutput } from "../models/models_0"; import { CreateBackupVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateFrameworkCommand.ts b/clients/client-backup/src/commands/CreateFrameworkCommand.ts index 354a981b7effc..0b2d60386ce5a 100644 --- a/clients/client-backup/src/commands/CreateFrameworkCommand.ts +++ b/clients/client-backup/src/commands/CreateFrameworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFrameworkInput, CreateFrameworkOutput } from "../models/models_0"; +import type { CreateFrameworkInput, CreateFrameworkOutput } from "../models/models_0"; import { CreateFramework } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateLegalHoldCommand.ts b/clients/client-backup/src/commands/CreateLegalHoldCommand.ts index 9985e57796577..e9a79b547531a 100644 --- a/clients/client-backup/src/commands/CreateLegalHoldCommand.ts +++ b/clients/client-backup/src/commands/CreateLegalHoldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLegalHoldInput, CreateLegalHoldOutput } from "../models/models_0"; +import type { CreateLegalHoldInput, CreateLegalHoldOutput } from "../models/models_0"; import { CreateLegalHold } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateLogicallyAirGappedBackupVaultCommand.ts b/clients/client-backup/src/commands/CreateLogicallyAirGappedBackupVaultCommand.ts index 2ebed2d2850e7..05b777a138eb7 100644 --- a/clients/client-backup/src/commands/CreateLogicallyAirGappedBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/CreateLogicallyAirGappedBackupVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateLogicallyAirGappedBackupVaultInput, CreateLogicallyAirGappedBackupVaultOutput, } from "../models/models_0"; diff --git a/clients/client-backup/src/commands/CreateReportPlanCommand.ts b/clients/client-backup/src/commands/CreateReportPlanCommand.ts index 03f19b029abb5..a09f83603bf27 100644 --- a/clients/client-backup/src/commands/CreateReportPlanCommand.ts +++ b/clients/client-backup/src/commands/CreateReportPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReportPlanInput, CreateReportPlanOutput } from "../models/models_0"; +import type { CreateReportPlanInput, CreateReportPlanOutput } from "../models/models_0"; import { CreateReportPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateRestoreAccessBackupVaultCommand.ts b/clients/client-backup/src/commands/CreateRestoreAccessBackupVaultCommand.ts index 1c1f2bb1182f6..b5280051acbcb 100644 --- a/clients/client-backup/src/commands/CreateRestoreAccessBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/CreateRestoreAccessBackupVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRestoreAccessBackupVaultInput, CreateRestoreAccessBackupVaultOutput } from "../models/models_0"; +import type { CreateRestoreAccessBackupVaultInput, CreateRestoreAccessBackupVaultOutput } from "../models/models_0"; import { CreateRestoreAccessBackupVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateRestoreTestingPlanCommand.ts b/clients/client-backup/src/commands/CreateRestoreTestingPlanCommand.ts index 4da20cda4a151..1bbe98a010740 100644 --- a/clients/client-backup/src/commands/CreateRestoreTestingPlanCommand.ts +++ b/clients/client-backup/src/commands/CreateRestoreTestingPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRestoreTestingPlanInput, CreateRestoreTestingPlanOutput } from "../models/models_0"; +import type { CreateRestoreTestingPlanInput, CreateRestoreTestingPlanOutput } from "../models/models_0"; import { CreateRestoreTestingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateRestoreTestingSelectionCommand.ts b/clients/client-backup/src/commands/CreateRestoreTestingSelectionCommand.ts index 7f52ac2628287..0292568f63e05 100644 --- a/clients/client-backup/src/commands/CreateRestoreTestingSelectionCommand.ts +++ b/clients/client-backup/src/commands/CreateRestoreTestingSelectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRestoreTestingSelectionInput, CreateRestoreTestingSelectionOutput } from "../models/models_0"; +import type { CreateRestoreTestingSelectionInput, CreateRestoreTestingSelectionOutput } from "../models/models_0"; import { CreateRestoreTestingSelection } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/CreateTieringConfigurationCommand.ts b/clients/client-backup/src/commands/CreateTieringConfigurationCommand.ts index 593d1717dacb2..d6ebe6f188088 100644 --- a/clients/client-backup/src/commands/CreateTieringConfigurationCommand.ts +++ b/clients/client-backup/src/commands/CreateTieringConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTieringConfigurationInput, CreateTieringConfigurationOutput } from "../models/models_0"; +import type { CreateTieringConfigurationInput, CreateTieringConfigurationOutput } from "../models/models_0"; import { CreateTieringConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteBackupPlanCommand.ts b/clients/client-backup/src/commands/DeleteBackupPlanCommand.ts index 71d4e57ff15d9..77c2289616271 100644 --- a/clients/client-backup/src/commands/DeleteBackupPlanCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackupPlanInput, DeleteBackupPlanOutput } from "../models/models_0"; +import type { DeleteBackupPlanInput, DeleteBackupPlanOutput } from "../models/models_0"; import { DeleteBackupPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteBackupSelectionCommand.ts b/clients/client-backup/src/commands/DeleteBackupSelectionCommand.ts index bd6770b97429e..6720dcad3595c 100644 --- a/clients/client-backup/src/commands/DeleteBackupSelectionCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupSelectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackupSelectionInput } from "../models/models_0"; +import type { DeleteBackupSelectionInput } from "../models/models_0"; import { DeleteBackupSelection } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteBackupVaultAccessPolicyCommand.ts b/clients/client-backup/src/commands/DeleteBackupVaultAccessPolicyCommand.ts index 7ffe9227df728..0b82ec51f62c2 100644 --- a/clients/client-backup/src/commands/DeleteBackupVaultAccessPolicyCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupVaultAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackupVaultAccessPolicyInput } from "../models/models_0"; +import type { DeleteBackupVaultAccessPolicyInput } from "../models/models_0"; import { DeleteBackupVaultAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteBackupVaultCommand.ts b/clients/client-backup/src/commands/DeleteBackupVaultCommand.ts index 24f87149e0b2c..2a41542c6304c 100644 --- a/clients/client-backup/src/commands/DeleteBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackupVaultInput } from "../models/models_0"; +import type { DeleteBackupVaultInput } from "../models/models_0"; import { DeleteBackupVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteBackupVaultLockConfigurationCommand.ts b/clients/client-backup/src/commands/DeleteBackupVaultLockConfigurationCommand.ts index fbee9b50f1f26..53906c0a5b72a 100644 --- a/clients/client-backup/src/commands/DeleteBackupVaultLockConfigurationCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupVaultLockConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackupVaultLockConfigurationInput } from "../models/models_0"; +import type { DeleteBackupVaultLockConfigurationInput } from "../models/models_0"; import { DeleteBackupVaultLockConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteBackupVaultNotificationsCommand.ts b/clients/client-backup/src/commands/DeleteBackupVaultNotificationsCommand.ts index a082804a41ddb..883cafd8c2888 100644 --- a/clients/client-backup/src/commands/DeleteBackupVaultNotificationsCommand.ts +++ b/clients/client-backup/src/commands/DeleteBackupVaultNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackupVaultNotificationsInput } from "../models/models_0"; +import type { DeleteBackupVaultNotificationsInput } from "../models/models_0"; import { DeleteBackupVaultNotifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteFrameworkCommand.ts b/clients/client-backup/src/commands/DeleteFrameworkCommand.ts index d2a4e3ee9263d..7d161d053512f 100644 --- a/clients/client-backup/src/commands/DeleteFrameworkCommand.ts +++ b/clients/client-backup/src/commands/DeleteFrameworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFrameworkInput } from "../models/models_0"; +import type { DeleteFrameworkInput } from "../models/models_0"; import { DeleteFramework } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteRecoveryPointCommand.ts b/clients/client-backup/src/commands/DeleteRecoveryPointCommand.ts index 9742ac2b4bde2..85fec0e2cb5e5 100644 --- a/clients/client-backup/src/commands/DeleteRecoveryPointCommand.ts +++ b/clients/client-backup/src/commands/DeleteRecoveryPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecoveryPointInput } from "../models/models_0"; +import type { DeleteRecoveryPointInput } from "../models/models_0"; import { DeleteRecoveryPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteReportPlanCommand.ts b/clients/client-backup/src/commands/DeleteReportPlanCommand.ts index 52c421b4ab3a8..1abbc693eb455 100644 --- a/clients/client-backup/src/commands/DeleteReportPlanCommand.ts +++ b/clients/client-backup/src/commands/DeleteReportPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReportPlanInput } from "../models/models_0"; +import type { DeleteReportPlanInput } from "../models/models_0"; import { DeleteReportPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteRestoreTestingPlanCommand.ts b/clients/client-backup/src/commands/DeleteRestoreTestingPlanCommand.ts index e9de88cb829ff..33dfd9eea437c 100644 --- a/clients/client-backup/src/commands/DeleteRestoreTestingPlanCommand.ts +++ b/clients/client-backup/src/commands/DeleteRestoreTestingPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRestoreTestingPlanInput } from "../models/models_0"; +import type { DeleteRestoreTestingPlanInput } from "../models/models_0"; import { DeleteRestoreTestingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteRestoreTestingSelectionCommand.ts b/clients/client-backup/src/commands/DeleteRestoreTestingSelectionCommand.ts index ead8b02371727..4a9179683c820 100644 --- a/clients/client-backup/src/commands/DeleteRestoreTestingSelectionCommand.ts +++ b/clients/client-backup/src/commands/DeleteRestoreTestingSelectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRestoreTestingSelectionInput } from "../models/models_0"; +import type { DeleteRestoreTestingSelectionInput } from "../models/models_0"; import { DeleteRestoreTestingSelection } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DeleteTieringConfigurationCommand.ts b/clients/client-backup/src/commands/DeleteTieringConfigurationCommand.ts index e8a723da66270..ea5c19be0917b 100644 --- a/clients/client-backup/src/commands/DeleteTieringConfigurationCommand.ts +++ b/clients/client-backup/src/commands/DeleteTieringConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTieringConfigurationInput, DeleteTieringConfigurationOutput } from "../models/models_0"; +import type { DeleteTieringConfigurationInput, DeleteTieringConfigurationOutput } from "../models/models_0"; import { DeleteTieringConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeBackupJobCommand.ts b/clients/client-backup/src/commands/DescribeBackupJobCommand.ts index 826e324144c71..fb0e5f84bee4a 100644 --- a/clients/client-backup/src/commands/DescribeBackupJobCommand.ts +++ b/clients/client-backup/src/commands/DescribeBackupJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBackupJobInput, DescribeBackupJobOutput } from "../models/models_0"; +import type { DescribeBackupJobInput, DescribeBackupJobOutput } from "../models/models_0"; import { DescribeBackupJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeBackupVaultCommand.ts b/clients/client-backup/src/commands/DescribeBackupVaultCommand.ts index 17c18ca9a1cb6..4847cffc990e6 100644 --- a/clients/client-backup/src/commands/DescribeBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/DescribeBackupVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBackupVaultInput, DescribeBackupVaultOutput } from "../models/models_0"; +import type { DescribeBackupVaultInput, DescribeBackupVaultOutput } from "../models/models_0"; import { DescribeBackupVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeCopyJobCommand.ts b/clients/client-backup/src/commands/DescribeCopyJobCommand.ts index 64d0a2eb79de8..2e3416e6004a9 100644 --- a/clients/client-backup/src/commands/DescribeCopyJobCommand.ts +++ b/clients/client-backup/src/commands/DescribeCopyJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCopyJobInput, DescribeCopyJobOutput } from "../models/models_0"; +import type { DescribeCopyJobInput, DescribeCopyJobOutput } from "../models/models_0"; import { DescribeCopyJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeFrameworkCommand.ts b/clients/client-backup/src/commands/DescribeFrameworkCommand.ts index 5c8d78fd21b45..c451644a45b3b 100644 --- a/clients/client-backup/src/commands/DescribeFrameworkCommand.ts +++ b/clients/client-backup/src/commands/DescribeFrameworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFrameworkInput, DescribeFrameworkOutput } from "../models/models_0"; +import type { DescribeFrameworkInput, DescribeFrameworkOutput } from "../models/models_0"; import { DescribeFramework } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeGlobalSettingsCommand.ts b/clients/client-backup/src/commands/DescribeGlobalSettingsCommand.ts index e133e91f242fd..c6dfab84f5955 100644 --- a/clients/client-backup/src/commands/DescribeGlobalSettingsCommand.ts +++ b/clients/client-backup/src/commands/DescribeGlobalSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGlobalSettingsInput, DescribeGlobalSettingsOutput } from "../models/models_0"; +import type { DescribeGlobalSettingsInput, DescribeGlobalSettingsOutput } from "../models/models_0"; import { DescribeGlobalSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeProtectedResourceCommand.ts b/clients/client-backup/src/commands/DescribeProtectedResourceCommand.ts index 33e69ebf9a88e..1aadb11665304 100644 --- a/clients/client-backup/src/commands/DescribeProtectedResourceCommand.ts +++ b/clients/client-backup/src/commands/DescribeProtectedResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProtectedResourceInput, DescribeProtectedResourceOutput } from "../models/models_0"; +import type { DescribeProtectedResourceInput, DescribeProtectedResourceOutput } from "../models/models_0"; import { DescribeProtectedResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeRecoveryPointCommand.ts b/clients/client-backup/src/commands/DescribeRecoveryPointCommand.ts index 92cfedd5bbaa1..46cc937887ec3 100644 --- a/clients/client-backup/src/commands/DescribeRecoveryPointCommand.ts +++ b/clients/client-backup/src/commands/DescribeRecoveryPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecoveryPointInput, DescribeRecoveryPointOutput } from "../models/models_0"; +import type { DescribeRecoveryPointInput, DescribeRecoveryPointOutput } from "../models/models_0"; import { DescribeRecoveryPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeRegionSettingsCommand.ts b/clients/client-backup/src/commands/DescribeRegionSettingsCommand.ts index a3a2d8de53644..6b6948196c8ed 100644 --- a/clients/client-backup/src/commands/DescribeRegionSettingsCommand.ts +++ b/clients/client-backup/src/commands/DescribeRegionSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegionSettingsInput, DescribeRegionSettingsOutput } from "../models/models_0"; +import type { DescribeRegionSettingsInput, DescribeRegionSettingsOutput } from "../models/models_0"; import { DescribeRegionSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeReportJobCommand.ts b/clients/client-backup/src/commands/DescribeReportJobCommand.ts index 5bda586612e05..f07d147bece0d 100644 --- a/clients/client-backup/src/commands/DescribeReportJobCommand.ts +++ b/clients/client-backup/src/commands/DescribeReportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReportJobInput, DescribeReportJobOutput } from "../models/models_0"; +import type { DescribeReportJobInput, DescribeReportJobOutput } from "../models/models_0"; import { DescribeReportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeReportPlanCommand.ts b/clients/client-backup/src/commands/DescribeReportPlanCommand.ts index fd355cd7053b7..610ddbad59464 100644 --- a/clients/client-backup/src/commands/DescribeReportPlanCommand.ts +++ b/clients/client-backup/src/commands/DescribeReportPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReportPlanInput, DescribeReportPlanOutput } from "../models/models_0"; +import type { DescribeReportPlanInput, DescribeReportPlanOutput } from "../models/models_0"; import { DescribeReportPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeRestoreJobCommand.ts b/clients/client-backup/src/commands/DescribeRestoreJobCommand.ts index 9243960c4b68a..b12f41fcffe64 100644 --- a/clients/client-backup/src/commands/DescribeRestoreJobCommand.ts +++ b/clients/client-backup/src/commands/DescribeRestoreJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRestoreJobInput, DescribeRestoreJobOutput } from "../models/models_0"; +import type { DescribeRestoreJobInput, DescribeRestoreJobOutput } from "../models/models_0"; import { DescribeRestoreJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DescribeScanJobCommand.ts b/clients/client-backup/src/commands/DescribeScanJobCommand.ts index 2c84effa580eb..8a78e70329502 100644 --- a/clients/client-backup/src/commands/DescribeScanJobCommand.ts +++ b/clients/client-backup/src/commands/DescribeScanJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScanJobInput, DescribeScanJobOutput } from "../models/models_0"; +import type { DescribeScanJobInput, DescribeScanJobOutput } from "../models/models_0"; import { DescribeScanJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DisassociateBackupVaultMpaApprovalTeamCommand.ts b/clients/client-backup/src/commands/DisassociateBackupVaultMpaApprovalTeamCommand.ts index bdee6eb6a620b..fa3ecaab00599 100644 --- a/clients/client-backup/src/commands/DisassociateBackupVaultMpaApprovalTeamCommand.ts +++ b/clients/client-backup/src/commands/DisassociateBackupVaultMpaApprovalTeamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateBackupVaultMpaApprovalTeamInput } from "../models/models_0"; +import type { DisassociateBackupVaultMpaApprovalTeamInput } from "../models/models_0"; import { DisassociateBackupVaultMpaApprovalTeam } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DisassociateRecoveryPointCommand.ts b/clients/client-backup/src/commands/DisassociateRecoveryPointCommand.ts index 2967dc0f0183d..e5432a51b1ce8 100644 --- a/clients/client-backup/src/commands/DisassociateRecoveryPointCommand.ts +++ b/clients/client-backup/src/commands/DisassociateRecoveryPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateRecoveryPointInput } from "../models/models_0"; +import type { DisassociateRecoveryPointInput } from "../models/models_0"; import { DisassociateRecoveryPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/DisassociateRecoveryPointFromParentCommand.ts b/clients/client-backup/src/commands/DisassociateRecoveryPointFromParentCommand.ts index c6aa036149d9f..3301778fa8755 100644 --- a/clients/client-backup/src/commands/DisassociateRecoveryPointFromParentCommand.ts +++ b/clients/client-backup/src/commands/DisassociateRecoveryPointFromParentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateRecoveryPointFromParentInput } from "../models/models_0"; +import type { DisassociateRecoveryPointFromParentInput } from "../models/models_0"; import { DisassociateRecoveryPointFromParent } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ExportBackupPlanTemplateCommand.ts b/clients/client-backup/src/commands/ExportBackupPlanTemplateCommand.ts index 72acb63f79f17..1814efa76e06c 100644 --- a/clients/client-backup/src/commands/ExportBackupPlanTemplateCommand.ts +++ b/clients/client-backup/src/commands/ExportBackupPlanTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportBackupPlanTemplateInput, ExportBackupPlanTemplateOutput } from "../models/models_0"; +import type { ExportBackupPlanTemplateInput, ExportBackupPlanTemplateOutput } from "../models/models_0"; import { ExportBackupPlanTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetBackupPlanCommand.ts b/clients/client-backup/src/commands/GetBackupPlanCommand.ts index 02c5e1bf42ca1..126d3e7418eb7 100644 --- a/clients/client-backup/src/commands/GetBackupPlanCommand.ts +++ b/clients/client-backup/src/commands/GetBackupPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackupPlanInput, GetBackupPlanOutput } from "../models/models_0"; +import type { GetBackupPlanInput, GetBackupPlanOutput } from "../models/models_0"; import { GetBackupPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetBackupPlanFromJSONCommand.ts b/clients/client-backup/src/commands/GetBackupPlanFromJSONCommand.ts index 99ffa2485aba3..331c70594299b 100644 --- a/clients/client-backup/src/commands/GetBackupPlanFromJSONCommand.ts +++ b/clients/client-backup/src/commands/GetBackupPlanFromJSONCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackupPlanFromJSONInput, GetBackupPlanFromJSONOutput } from "../models/models_0"; +import type { GetBackupPlanFromJSONInput, GetBackupPlanFromJSONOutput } from "../models/models_0"; import { GetBackupPlanFromJSON } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetBackupPlanFromTemplateCommand.ts b/clients/client-backup/src/commands/GetBackupPlanFromTemplateCommand.ts index 0a69cb07bfa34..edbe314b7d008 100644 --- a/clients/client-backup/src/commands/GetBackupPlanFromTemplateCommand.ts +++ b/clients/client-backup/src/commands/GetBackupPlanFromTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackupPlanFromTemplateInput, GetBackupPlanFromTemplateOutput } from "../models/models_0"; +import type { GetBackupPlanFromTemplateInput, GetBackupPlanFromTemplateOutput } from "../models/models_0"; import { GetBackupPlanFromTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetBackupSelectionCommand.ts b/clients/client-backup/src/commands/GetBackupSelectionCommand.ts index c0244c8e118e5..fad1bb603651e 100644 --- a/clients/client-backup/src/commands/GetBackupSelectionCommand.ts +++ b/clients/client-backup/src/commands/GetBackupSelectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackupSelectionInput, GetBackupSelectionOutput } from "../models/models_0"; +import type { GetBackupSelectionInput, GetBackupSelectionOutput } from "../models/models_0"; import { GetBackupSelection } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetBackupVaultAccessPolicyCommand.ts b/clients/client-backup/src/commands/GetBackupVaultAccessPolicyCommand.ts index ed7d0ded67d2c..92a5ebc4fb343 100644 --- a/clients/client-backup/src/commands/GetBackupVaultAccessPolicyCommand.ts +++ b/clients/client-backup/src/commands/GetBackupVaultAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackupVaultAccessPolicyInput, GetBackupVaultAccessPolicyOutput } from "../models/models_0"; +import type { GetBackupVaultAccessPolicyInput, GetBackupVaultAccessPolicyOutput } from "../models/models_0"; import { GetBackupVaultAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetBackupVaultNotificationsCommand.ts b/clients/client-backup/src/commands/GetBackupVaultNotificationsCommand.ts index 44a6bf9de4e06..72cd7abf5f789 100644 --- a/clients/client-backup/src/commands/GetBackupVaultNotificationsCommand.ts +++ b/clients/client-backup/src/commands/GetBackupVaultNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBackupVaultNotificationsInput, GetBackupVaultNotificationsOutput } from "../models/models_0"; +import type { GetBackupVaultNotificationsInput, GetBackupVaultNotificationsOutput } from "../models/models_0"; import { GetBackupVaultNotifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetLegalHoldCommand.ts b/clients/client-backup/src/commands/GetLegalHoldCommand.ts index 82a637dd79957..90ac617b67e6e 100644 --- a/clients/client-backup/src/commands/GetLegalHoldCommand.ts +++ b/clients/client-backup/src/commands/GetLegalHoldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLegalHoldInput, GetLegalHoldOutput } from "../models/models_0"; +import type { GetLegalHoldInput, GetLegalHoldOutput } from "../models/models_0"; import { GetLegalHold } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetRecoveryPointIndexDetailsCommand.ts b/clients/client-backup/src/commands/GetRecoveryPointIndexDetailsCommand.ts index 6faf325f04b89..40fdec5159c8d 100644 --- a/clients/client-backup/src/commands/GetRecoveryPointIndexDetailsCommand.ts +++ b/clients/client-backup/src/commands/GetRecoveryPointIndexDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecoveryPointIndexDetailsInput, GetRecoveryPointIndexDetailsOutput } from "../models/models_0"; +import type { GetRecoveryPointIndexDetailsInput, GetRecoveryPointIndexDetailsOutput } from "../models/models_0"; import { GetRecoveryPointIndexDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetRecoveryPointRestoreMetadataCommand.ts b/clients/client-backup/src/commands/GetRecoveryPointRestoreMetadataCommand.ts index 75bd28687f469..1c495f3c1ff3e 100644 --- a/clients/client-backup/src/commands/GetRecoveryPointRestoreMetadataCommand.ts +++ b/clients/client-backup/src/commands/GetRecoveryPointRestoreMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecoveryPointRestoreMetadataInput, GetRecoveryPointRestoreMetadataOutput } from "../models/models_0"; +import type { GetRecoveryPointRestoreMetadataInput, GetRecoveryPointRestoreMetadataOutput } from "../models/models_0"; import { GetRecoveryPointRestoreMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetRestoreJobMetadataCommand.ts b/clients/client-backup/src/commands/GetRestoreJobMetadataCommand.ts index fb2e3733d0e72..4e8e63d75f16c 100644 --- a/clients/client-backup/src/commands/GetRestoreJobMetadataCommand.ts +++ b/clients/client-backup/src/commands/GetRestoreJobMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRestoreJobMetadataInput, GetRestoreJobMetadataOutput } from "../models/models_0"; +import type { GetRestoreJobMetadataInput, GetRestoreJobMetadataOutput } from "../models/models_0"; import { GetRestoreJobMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetRestoreTestingInferredMetadataCommand.ts b/clients/client-backup/src/commands/GetRestoreTestingInferredMetadataCommand.ts index ab2156112e3ab..a0824f51faf74 100644 --- a/clients/client-backup/src/commands/GetRestoreTestingInferredMetadataCommand.ts +++ b/clients/client-backup/src/commands/GetRestoreTestingInferredMetadataCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRestoreTestingInferredMetadataInput, GetRestoreTestingInferredMetadataOutput } from "../models/models_0"; +import type { + GetRestoreTestingInferredMetadataInput, + GetRestoreTestingInferredMetadataOutput, +} from "../models/models_0"; import { GetRestoreTestingInferredMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetRestoreTestingPlanCommand.ts b/clients/client-backup/src/commands/GetRestoreTestingPlanCommand.ts index 54c1f786f1901..ccc6ad43224bc 100644 --- a/clients/client-backup/src/commands/GetRestoreTestingPlanCommand.ts +++ b/clients/client-backup/src/commands/GetRestoreTestingPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRestoreTestingPlanInput, GetRestoreTestingPlanOutput } from "../models/models_0"; +import type { GetRestoreTestingPlanInput, GetRestoreTestingPlanOutput } from "../models/models_0"; import { GetRestoreTestingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetRestoreTestingSelectionCommand.ts b/clients/client-backup/src/commands/GetRestoreTestingSelectionCommand.ts index 04ffb5d634f7b..37004b173c7c6 100644 --- a/clients/client-backup/src/commands/GetRestoreTestingSelectionCommand.ts +++ b/clients/client-backup/src/commands/GetRestoreTestingSelectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRestoreTestingSelectionInput, GetRestoreTestingSelectionOutput } from "../models/models_0"; +import type { GetRestoreTestingSelectionInput, GetRestoreTestingSelectionOutput } from "../models/models_0"; import { GetRestoreTestingSelection } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetSupportedResourceTypesCommand.ts b/clients/client-backup/src/commands/GetSupportedResourceTypesCommand.ts index ddbb345c19759..3bafa9069e82c 100644 --- a/clients/client-backup/src/commands/GetSupportedResourceTypesCommand.ts +++ b/clients/client-backup/src/commands/GetSupportedResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSupportedResourceTypesOutput } from "../models/models_0"; +import type { GetSupportedResourceTypesOutput } from "../models/models_0"; import { GetSupportedResourceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/GetTieringConfigurationCommand.ts b/clients/client-backup/src/commands/GetTieringConfigurationCommand.ts index 233e60f645709..82bfe34cc8f2c 100644 --- a/clients/client-backup/src/commands/GetTieringConfigurationCommand.ts +++ b/clients/client-backup/src/commands/GetTieringConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTieringConfigurationInput, GetTieringConfigurationOutput } from "../models/models_0"; +import type { GetTieringConfigurationInput, GetTieringConfigurationOutput } from "../models/models_0"; import { GetTieringConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListBackupJobSummariesCommand.ts b/clients/client-backup/src/commands/ListBackupJobSummariesCommand.ts index 6a423c5d0555c..85a7613a92a29 100644 --- a/clients/client-backup/src/commands/ListBackupJobSummariesCommand.ts +++ b/clients/client-backup/src/commands/ListBackupJobSummariesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackupJobSummariesInput, ListBackupJobSummariesOutput } from "../models/models_0"; +import type { ListBackupJobSummariesInput, ListBackupJobSummariesOutput } from "../models/models_0"; import { ListBackupJobSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListBackupJobsCommand.ts b/clients/client-backup/src/commands/ListBackupJobsCommand.ts index c77540949ccbe..b840413ef78fd 100644 --- a/clients/client-backup/src/commands/ListBackupJobsCommand.ts +++ b/clients/client-backup/src/commands/ListBackupJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackupJobsInput, ListBackupJobsOutput } from "../models/models_0"; +import type { ListBackupJobsInput, ListBackupJobsOutput } from "../models/models_0"; import { ListBackupJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListBackupPlanTemplatesCommand.ts b/clients/client-backup/src/commands/ListBackupPlanTemplatesCommand.ts index e98ecd3097aac..1c46d4c7f1a7f 100644 --- a/clients/client-backup/src/commands/ListBackupPlanTemplatesCommand.ts +++ b/clients/client-backup/src/commands/ListBackupPlanTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackupPlanTemplatesInput, ListBackupPlanTemplatesOutput } from "../models/models_0"; +import type { ListBackupPlanTemplatesInput, ListBackupPlanTemplatesOutput } from "../models/models_0"; import { ListBackupPlanTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListBackupPlanVersionsCommand.ts b/clients/client-backup/src/commands/ListBackupPlanVersionsCommand.ts index f8fa298efd7a9..6a33b73be8dc9 100644 --- a/clients/client-backup/src/commands/ListBackupPlanVersionsCommand.ts +++ b/clients/client-backup/src/commands/ListBackupPlanVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackupPlanVersionsInput, ListBackupPlanVersionsOutput } from "../models/models_0"; +import type { ListBackupPlanVersionsInput, ListBackupPlanVersionsOutput } from "../models/models_0"; import { ListBackupPlanVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListBackupPlansCommand.ts b/clients/client-backup/src/commands/ListBackupPlansCommand.ts index bbe6a97f4d8e3..8f23d5cbcae9d 100644 --- a/clients/client-backup/src/commands/ListBackupPlansCommand.ts +++ b/clients/client-backup/src/commands/ListBackupPlansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackupPlansInput, ListBackupPlansOutput } from "../models/models_0"; +import type { ListBackupPlansInput, ListBackupPlansOutput } from "../models/models_0"; import { ListBackupPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListBackupSelectionsCommand.ts b/clients/client-backup/src/commands/ListBackupSelectionsCommand.ts index ad5a1caad8347..afb95d5ca2472 100644 --- a/clients/client-backup/src/commands/ListBackupSelectionsCommand.ts +++ b/clients/client-backup/src/commands/ListBackupSelectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackupSelectionsInput, ListBackupSelectionsOutput } from "../models/models_0"; +import type { ListBackupSelectionsInput, ListBackupSelectionsOutput } from "../models/models_0"; import { ListBackupSelections } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListBackupVaultsCommand.ts b/clients/client-backup/src/commands/ListBackupVaultsCommand.ts index 05fcd395a32ae..ba65f7472be37 100644 --- a/clients/client-backup/src/commands/ListBackupVaultsCommand.ts +++ b/clients/client-backup/src/commands/ListBackupVaultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackupVaultsInput, ListBackupVaultsOutput } from "../models/models_0"; +import type { ListBackupVaultsInput, ListBackupVaultsOutput } from "../models/models_0"; import { ListBackupVaults } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListCopyJobSummariesCommand.ts b/clients/client-backup/src/commands/ListCopyJobSummariesCommand.ts index f838d98e2372a..2440d7d8b97b9 100644 --- a/clients/client-backup/src/commands/ListCopyJobSummariesCommand.ts +++ b/clients/client-backup/src/commands/ListCopyJobSummariesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCopyJobSummariesInput, ListCopyJobSummariesOutput } from "../models/models_0"; +import type { ListCopyJobSummariesInput, ListCopyJobSummariesOutput } from "../models/models_0"; import { ListCopyJobSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListCopyJobsCommand.ts b/clients/client-backup/src/commands/ListCopyJobsCommand.ts index 7abded6a0642f..eb81cde27987d 100644 --- a/clients/client-backup/src/commands/ListCopyJobsCommand.ts +++ b/clients/client-backup/src/commands/ListCopyJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCopyJobsInput, ListCopyJobsOutput } from "../models/models_0"; +import type { ListCopyJobsInput, ListCopyJobsOutput } from "../models/models_0"; import { ListCopyJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListFrameworksCommand.ts b/clients/client-backup/src/commands/ListFrameworksCommand.ts index 877be488eac60..0df0fb9c6b605 100644 --- a/clients/client-backup/src/commands/ListFrameworksCommand.ts +++ b/clients/client-backup/src/commands/ListFrameworksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFrameworksInput, ListFrameworksOutput } from "../models/models_0"; +import type { ListFrameworksInput, ListFrameworksOutput } from "../models/models_0"; import { ListFrameworks } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListIndexedRecoveryPointsCommand.ts b/clients/client-backup/src/commands/ListIndexedRecoveryPointsCommand.ts index 5d3d909ddb493..33735eeefee76 100644 --- a/clients/client-backup/src/commands/ListIndexedRecoveryPointsCommand.ts +++ b/clients/client-backup/src/commands/ListIndexedRecoveryPointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIndexedRecoveryPointsInput, ListIndexedRecoveryPointsOutput } from "../models/models_0"; +import type { ListIndexedRecoveryPointsInput, ListIndexedRecoveryPointsOutput } from "../models/models_0"; import { ListIndexedRecoveryPoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListLegalHoldsCommand.ts b/clients/client-backup/src/commands/ListLegalHoldsCommand.ts index c1990b30fc50b..09490e0870a05 100644 --- a/clients/client-backup/src/commands/ListLegalHoldsCommand.ts +++ b/clients/client-backup/src/commands/ListLegalHoldsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLegalHoldsInput, ListLegalHoldsOutput } from "../models/models_0"; +import type { ListLegalHoldsInput, ListLegalHoldsOutput } from "../models/models_0"; import { ListLegalHolds } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListProtectedResourcesByBackupVaultCommand.ts b/clients/client-backup/src/commands/ListProtectedResourcesByBackupVaultCommand.ts index bfa98cca088ce..b2f299495732e 100644 --- a/clients/client-backup/src/commands/ListProtectedResourcesByBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/ListProtectedResourcesByBackupVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListProtectedResourcesByBackupVaultInput, ListProtectedResourcesByBackupVaultOutput, } from "../models/models_0"; diff --git a/clients/client-backup/src/commands/ListProtectedResourcesCommand.ts b/clients/client-backup/src/commands/ListProtectedResourcesCommand.ts index 154391c49ce44..a7629ebc7cc12 100644 --- a/clients/client-backup/src/commands/ListProtectedResourcesCommand.ts +++ b/clients/client-backup/src/commands/ListProtectedResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProtectedResourcesInput, ListProtectedResourcesOutput } from "../models/models_0"; +import type { ListProtectedResourcesInput, ListProtectedResourcesOutput } from "../models/models_0"; import { ListProtectedResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListRecoveryPointsByBackupVaultCommand.ts b/clients/client-backup/src/commands/ListRecoveryPointsByBackupVaultCommand.ts index 7514c6d459183..0d416d904df06 100644 --- a/clients/client-backup/src/commands/ListRecoveryPointsByBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/ListRecoveryPointsByBackupVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecoveryPointsByBackupVaultInput, ListRecoveryPointsByBackupVaultOutput } from "../models/models_0"; +import type { ListRecoveryPointsByBackupVaultInput, ListRecoveryPointsByBackupVaultOutput } from "../models/models_0"; import { ListRecoveryPointsByBackupVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListRecoveryPointsByLegalHoldCommand.ts b/clients/client-backup/src/commands/ListRecoveryPointsByLegalHoldCommand.ts index a74f41830a029..15ad0dcf012ef 100644 --- a/clients/client-backup/src/commands/ListRecoveryPointsByLegalHoldCommand.ts +++ b/clients/client-backup/src/commands/ListRecoveryPointsByLegalHoldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecoveryPointsByLegalHoldInput, ListRecoveryPointsByLegalHoldOutput } from "../models/models_0"; +import type { ListRecoveryPointsByLegalHoldInput, ListRecoveryPointsByLegalHoldOutput } from "../models/models_0"; import { ListRecoveryPointsByLegalHold } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListRecoveryPointsByResourceCommand.ts b/clients/client-backup/src/commands/ListRecoveryPointsByResourceCommand.ts index db55701db1e01..359b99070a0c8 100644 --- a/clients/client-backup/src/commands/ListRecoveryPointsByResourceCommand.ts +++ b/clients/client-backup/src/commands/ListRecoveryPointsByResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecoveryPointsByResourceInput, ListRecoveryPointsByResourceOutput } from "../models/models_0"; +import type { ListRecoveryPointsByResourceInput, ListRecoveryPointsByResourceOutput } from "../models/models_0"; import { ListRecoveryPointsByResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListReportJobsCommand.ts b/clients/client-backup/src/commands/ListReportJobsCommand.ts index a9385933d32b6..09b344a356621 100644 --- a/clients/client-backup/src/commands/ListReportJobsCommand.ts +++ b/clients/client-backup/src/commands/ListReportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReportJobsInput, ListReportJobsOutput } from "../models/models_0"; +import type { ListReportJobsInput, ListReportJobsOutput } from "../models/models_0"; import { ListReportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListReportPlansCommand.ts b/clients/client-backup/src/commands/ListReportPlansCommand.ts index 1b54a640f0eab..5a08992f6f0c2 100644 --- a/clients/client-backup/src/commands/ListReportPlansCommand.ts +++ b/clients/client-backup/src/commands/ListReportPlansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReportPlansInput, ListReportPlansOutput } from "../models/models_0"; +import type { ListReportPlansInput, ListReportPlansOutput } from "../models/models_0"; import { ListReportPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListRestoreAccessBackupVaultsCommand.ts b/clients/client-backup/src/commands/ListRestoreAccessBackupVaultsCommand.ts index 28c9ae8bdd528..b7782431ecb90 100644 --- a/clients/client-backup/src/commands/ListRestoreAccessBackupVaultsCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreAccessBackupVaultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRestoreAccessBackupVaultsInput, ListRestoreAccessBackupVaultsOutput } from "../models/models_0"; +import type { ListRestoreAccessBackupVaultsInput, ListRestoreAccessBackupVaultsOutput } from "../models/models_0"; import { ListRestoreAccessBackupVaults } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListRestoreJobSummariesCommand.ts b/clients/client-backup/src/commands/ListRestoreJobSummariesCommand.ts index 362fa60cb8a2e..2fdf1219e8b35 100644 --- a/clients/client-backup/src/commands/ListRestoreJobSummariesCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreJobSummariesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRestoreJobSummariesInput, ListRestoreJobSummariesOutput } from "../models/models_0"; +import type { ListRestoreJobSummariesInput, ListRestoreJobSummariesOutput } from "../models/models_0"; import { ListRestoreJobSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListRestoreJobsByProtectedResourceCommand.ts b/clients/client-backup/src/commands/ListRestoreJobsByProtectedResourceCommand.ts index ad0655b74aac1..7a674477cb715 100644 --- a/clients/client-backup/src/commands/ListRestoreJobsByProtectedResourceCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreJobsByProtectedResourceCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRestoreJobsByProtectedResourceInput, ListRestoreJobsByProtectedResourceOutput } from "../models/models_0"; +import type { + ListRestoreJobsByProtectedResourceInput, + ListRestoreJobsByProtectedResourceOutput, +} from "../models/models_0"; import { ListRestoreJobsByProtectedResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListRestoreJobsCommand.ts b/clients/client-backup/src/commands/ListRestoreJobsCommand.ts index 82b8ddb4d67d2..e065258a21da6 100644 --- a/clients/client-backup/src/commands/ListRestoreJobsCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRestoreJobsInput, ListRestoreJobsOutput } from "../models/models_0"; +import type { ListRestoreJobsInput, ListRestoreJobsOutput } from "../models/models_0"; import { ListRestoreJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListRestoreTestingPlansCommand.ts b/clients/client-backup/src/commands/ListRestoreTestingPlansCommand.ts index 12ce991b3121c..d4b685d882a2c 100644 --- a/clients/client-backup/src/commands/ListRestoreTestingPlansCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreTestingPlansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRestoreTestingPlansInput, ListRestoreTestingPlansOutput } from "../models/models_0"; +import type { ListRestoreTestingPlansInput, ListRestoreTestingPlansOutput } from "../models/models_0"; import { ListRestoreTestingPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListRestoreTestingSelectionsCommand.ts b/clients/client-backup/src/commands/ListRestoreTestingSelectionsCommand.ts index 7745ab98ef01a..7b9b419b0fed2 100644 --- a/clients/client-backup/src/commands/ListRestoreTestingSelectionsCommand.ts +++ b/clients/client-backup/src/commands/ListRestoreTestingSelectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRestoreTestingSelectionsInput, ListRestoreTestingSelectionsOutput } from "../models/models_0"; +import type { ListRestoreTestingSelectionsInput, ListRestoreTestingSelectionsOutput } from "../models/models_0"; import { ListRestoreTestingSelections } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListScanJobSummariesCommand.ts b/clients/client-backup/src/commands/ListScanJobSummariesCommand.ts index b6d3a3101c73a..ed199c7109a53 100644 --- a/clients/client-backup/src/commands/ListScanJobSummariesCommand.ts +++ b/clients/client-backup/src/commands/ListScanJobSummariesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScanJobSummariesInput, ListScanJobSummariesOutput } from "../models/models_0"; +import type { ListScanJobSummariesInput, ListScanJobSummariesOutput } from "../models/models_0"; import { ListScanJobSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListScanJobsCommand.ts b/clients/client-backup/src/commands/ListScanJobsCommand.ts index 5bee322cd201e..85060f254174e 100644 --- a/clients/client-backup/src/commands/ListScanJobsCommand.ts +++ b/clients/client-backup/src/commands/ListScanJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScanJobsInput, ListScanJobsOutput } from "../models/models_0"; +import type { ListScanJobsInput, ListScanJobsOutput } from "../models/models_0"; import { ListScanJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListTagsCommand.ts b/clients/client-backup/src/commands/ListTagsCommand.ts index 8268aa4d0654f..938609e02bc33 100644 --- a/clients/client-backup/src/commands/ListTagsCommand.ts +++ b/clients/client-backup/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsInput, ListTagsOutput } from "../models/models_0"; +import type { ListTagsInput, ListTagsOutput } from "../models/models_0"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/ListTieringConfigurationsCommand.ts b/clients/client-backup/src/commands/ListTieringConfigurationsCommand.ts index 040799f821e02..c78390a78824e 100644 --- a/clients/client-backup/src/commands/ListTieringConfigurationsCommand.ts +++ b/clients/client-backup/src/commands/ListTieringConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTieringConfigurationsInput, ListTieringConfigurationsOutput } from "../models/models_0"; +import type { ListTieringConfigurationsInput, ListTieringConfigurationsOutput } from "../models/models_0"; import { ListTieringConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/PutBackupVaultAccessPolicyCommand.ts b/clients/client-backup/src/commands/PutBackupVaultAccessPolicyCommand.ts index 2efbf0e047050..1d125f7a400c9 100644 --- a/clients/client-backup/src/commands/PutBackupVaultAccessPolicyCommand.ts +++ b/clients/client-backup/src/commands/PutBackupVaultAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBackupVaultAccessPolicyInput } from "../models/models_0"; +import type { PutBackupVaultAccessPolicyInput } from "../models/models_0"; import { PutBackupVaultAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/PutBackupVaultLockConfigurationCommand.ts b/clients/client-backup/src/commands/PutBackupVaultLockConfigurationCommand.ts index 9b1d10f6214fc..04e1f697df95e 100644 --- a/clients/client-backup/src/commands/PutBackupVaultLockConfigurationCommand.ts +++ b/clients/client-backup/src/commands/PutBackupVaultLockConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBackupVaultLockConfigurationInput } from "../models/models_0"; +import type { PutBackupVaultLockConfigurationInput } from "../models/models_0"; import { PutBackupVaultLockConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/PutBackupVaultNotificationsCommand.ts b/clients/client-backup/src/commands/PutBackupVaultNotificationsCommand.ts index cf6d9fa50a19b..f63ec7285b7bf 100644 --- a/clients/client-backup/src/commands/PutBackupVaultNotificationsCommand.ts +++ b/clients/client-backup/src/commands/PutBackupVaultNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBackupVaultNotificationsInput } from "../models/models_0"; +import type { PutBackupVaultNotificationsInput } from "../models/models_0"; import { PutBackupVaultNotifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/PutRestoreValidationResultCommand.ts b/clients/client-backup/src/commands/PutRestoreValidationResultCommand.ts index f7c4e6be48525..3e0775f7bffe7 100644 --- a/clients/client-backup/src/commands/PutRestoreValidationResultCommand.ts +++ b/clients/client-backup/src/commands/PutRestoreValidationResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRestoreValidationResultInput } from "../models/models_0"; +import type { PutRestoreValidationResultInput } from "../models/models_0"; import { PutRestoreValidationResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/RevokeRestoreAccessBackupVaultCommand.ts b/clients/client-backup/src/commands/RevokeRestoreAccessBackupVaultCommand.ts index 6a4a2ab9faefa..449bfbd50ac7c 100644 --- a/clients/client-backup/src/commands/RevokeRestoreAccessBackupVaultCommand.ts +++ b/clients/client-backup/src/commands/RevokeRestoreAccessBackupVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeRestoreAccessBackupVaultInput } from "../models/models_0"; +import type { RevokeRestoreAccessBackupVaultInput } from "../models/models_0"; import { RevokeRestoreAccessBackupVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/StartBackupJobCommand.ts b/clients/client-backup/src/commands/StartBackupJobCommand.ts index e4c0cb5f85b2c..5d077aa532559 100644 --- a/clients/client-backup/src/commands/StartBackupJobCommand.ts +++ b/clients/client-backup/src/commands/StartBackupJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartBackupJobInput, StartBackupJobOutput } from "../models/models_0"; +import type { StartBackupJobInput, StartBackupJobOutput } from "../models/models_0"; import { StartBackupJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/StartCopyJobCommand.ts b/clients/client-backup/src/commands/StartCopyJobCommand.ts index e692eb55d9c67..28169386502f5 100644 --- a/clients/client-backup/src/commands/StartCopyJobCommand.ts +++ b/clients/client-backup/src/commands/StartCopyJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCopyJobInput, StartCopyJobOutput } from "../models/models_0"; +import type { StartCopyJobInput, StartCopyJobOutput } from "../models/models_0"; import { StartCopyJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/StartReportJobCommand.ts b/clients/client-backup/src/commands/StartReportJobCommand.ts index b947d0f718c79..1f8e85173c0a5 100644 --- a/clients/client-backup/src/commands/StartReportJobCommand.ts +++ b/clients/client-backup/src/commands/StartReportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReportJobInput, StartReportJobOutput } from "../models/models_0"; +import type { StartReportJobInput, StartReportJobOutput } from "../models/models_0"; import { StartReportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/StartRestoreJobCommand.ts b/clients/client-backup/src/commands/StartRestoreJobCommand.ts index fd19a7a119cef..5e34e2c13daef 100644 --- a/clients/client-backup/src/commands/StartRestoreJobCommand.ts +++ b/clients/client-backup/src/commands/StartRestoreJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRestoreJobInput, StartRestoreJobOutput } from "../models/models_0"; +import type { StartRestoreJobInput, StartRestoreJobOutput } from "../models/models_0"; import { StartRestoreJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/StartScanJobCommand.ts b/clients/client-backup/src/commands/StartScanJobCommand.ts index 9c220db0b7425..d2442367df49f 100644 --- a/clients/client-backup/src/commands/StartScanJobCommand.ts +++ b/clients/client-backup/src/commands/StartScanJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartScanJobInput, StartScanJobOutput } from "../models/models_0"; +import type { StartScanJobInput, StartScanJobOutput } from "../models/models_0"; import { StartScanJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/StopBackupJobCommand.ts b/clients/client-backup/src/commands/StopBackupJobCommand.ts index f8f1bc847b6fc..be632cdd7aba9 100644 --- a/clients/client-backup/src/commands/StopBackupJobCommand.ts +++ b/clients/client-backup/src/commands/StopBackupJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopBackupJobInput } from "../models/models_0"; +import type { StopBackupJobInput } from "../models/models_0"; import { StopBackupJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/TagResourceCommand.ts b/clients/client-backup/src/commands/TagResourceCommand.ts index a877ff59c6ff7..8ca9032418bfd 100644 --- a/clients/client-backup/src/commands/TagResourceCommand.ts +++ b/clients/client-backup/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput } from "../models/models_0"; +import type { TagResourceInput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UntagResourceCommand.ts b/clients/client-backup/src/commands/UntagResourceCommand.ts index 05b2c1f0b3d36..567400ecd2e68 100644 --- a/clients/client-backup/src/commands/UntagResourceCommand.ts +++ b/clients/client-backup/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput } from "../models/models_0"; +import type { UntagResourceInput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateBackupPlanCommand.ts b/clients/client-backup/src/commands/UpdateBackupPlanCommand.ts index 4bb28b69cc82d..3af1afaf441d2 100644 --- a/clients/client-backup/src/commands/UpdateBackupPlanCommand.ts +++ b/clients/client-backup/src/commands/UpdateBackupPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBackupPlanInput, UpdateBackupPlanOutput } from "../models/models_0"; +import type { UpdateBackupPlanInput, UpdateBackupPlanOutput } from "../models/models_0"; import { UpdateBackupPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateFrameworkCommand.ts b/clients/client-backup/src/commands/UpdateFrameworkCommand.ts index 8ee4c8cb83607..a73b10f7cf768 100644 --- a/clients/client-backup/src/commands/UpdateFrameworkCommand.ts +++ b/clients/client-backup/src/commands/UpdateFrameworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFrameworkInput, UpdateFrameworkOutput } from "../models/models_0"; +import type { UpdateFrameworkInput, UpdateFrameworkOutput } from "../models/models_0"; import { UpdateFramework } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateGlobalSettingsCommand.ts b/clients/client-backup/src/commands/UpdateGlobalSettingsCommand.ts index a734fd61438ec..bae8028a0633b 100644 --- a/clients/client-backup/src/commands/UpdateGlobalSettingsCommand.ts +++ b/clients/client-backup/src/commands/UpdateGlobalSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlobalSettingsInput } from "../models/models_0"; +import type { UpdateGlobalSettingsInput } from "../models/models_0"; import { UpdateGlobalSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateRecoveryPointIndexSettingsCommand.ts b/clients/client-backup/src/commands/UpdateRecoveryPointIndexSettingsCommand.ts index c9744ded409fe..e722034358763 100644 --- a/clients/client-backup/src/commands/UpdateRecoveryPointIndexSettingsCommand.ts +++ b/clients/client-backup/src/commands/UpdateRecoveryPointIndexSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecoveryPointIndexSettingsInput, UpdateRecoveryPointIndexSettingsOutput } from "../models/models_0"; +import type { UpdateRecoveryPointIndexSettingsInput, UpdateRecoveryPointIndexSettingsOutput } from "../models/models_0"; import { UpdateRecoveryPointIndexSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateRecoveryPointLifecycleCommand.ts b/clients/client-backup/src/commands/UpdateRecoveryPointLifecycleCommand.ts index 81fb2d74d0aeb..92d5d183e580a 100644 --- a/clients/client-backup/src/commands/UpdateRecoveryPointLifecycleCommand.ts +++ b/clients/client-backup/src/commands/UpdateRecoveryPointLifecycleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecoveryPointLifecycleInput, UpdateRecoveryPointLifecycleOutput } from "../models/models_0"; +import type { UpdateRecoveryPointLifecycleInput, UpdateRecoveryPointLifecycleOutput } from "../models/models_0"; import { UpdateRecoveryPointLifecycle } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateRegionSettingsCommand.ts b/clients/client-backup/src/commands/UpdateRegionSettingsCommand.ts index c7be92fef41c0..8b96610305190 100644 --- a/clients/client-backup/src/commands/UpdateRegionSettingsCommand.ts +++ b/clients/client-backup/src/commands/UpdateRegionSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRegionSettingsInput } from "../models/models_0"; +import type { UpdateRegionSettingsInput } from "../models/models_0"; import { UpdateRegionSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateReportPlanCommand.ts b/clients/client-backup/src/commands/UpdateReportPlanCommand.ts index ef652d535595d..3d95140300efe 100644 --- a/clients/client-backup/src/commands/UpdateReportPlanCommand.ts +++ b/clients/client-backup/src/commands/UpdateReportPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReportPlanInput, UpdateReportPlanOutput } from "../models/models_0"; +import type { UpdateReportPlanInput, UpdateReportPlanOutput } from "../models/models_0"; import { UpdateReportPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateRestoreTestingPlanCommand.ts b/clients/client-backup/src/commands/UpdateRestoreTestingPlanCommand.ts index 5b8e6d35d8fcd..a8b86d0164c1f 100644 --- a/clients/client-backup/src/commands/UpdateRestoreTestingPlanCommand.ts +++ b/clients/client-backup/src/commands/UpdateRestoreTestingPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRestoreTestingPlanInput, UpdateRestoreTestingPlanOutput } from "../models/models_0"; +import type { UpdateRestoreTestingPlanInput, UpdateRestoreTestingPlanOutput } from "../models/models_0"; import { UpdateRestoreTestingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateRestoreTestingSelectionCommand.ts b/clients/client-backup/src/commands/UpdateRestoreTestingSelectionCommand.ts index b31d66f1d677a..a255ac765ceca 100644 --- a/clients/client-backup/src/commands/UpdateRestoreTestingSelectionCommand.ts +++ b/clients/client-backup/src/commands/UpdateRestoreTestingSelectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRestoreTestingSelectionInput, UpdateRestoreTestingSelectionOutput } from "../models/models_0"; +import type { UpdateRestoreTestingSelectionInput, UpdateRestoreTestingSelectionOutput } from "../models/models_0"; import { UpdateRestoreTestingSelection } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/commands/UpdateTieringConfigurationCommand.ts b/clients/client-backup/src/commands/UpdateTieringConfigurationCommand.ts index 06155726ed6a4..083687ba720e2 100644 --- a/clients/client-backup/src/commands/UpdateTieringConfigurationCommand.ts +++ b/clients/client-backup/src/commands/UpdateTieringConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; +import type { BackupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTieringConfigurationInput, UpdateTieringConfigurationOutput } from "../models/models_0"; +import type { UpdateTieringConfigurationInput, UpdateTieringConfigurationOutput } from "../models/models_0"; import { UpdateTieringConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-backup/src/endpoint/EndpointParameters.ts b/clients/client-backup/src/endpoint/EndpointParameters.ts index 3d90e1e0136e8..06c0a618964b0 100644 --- a/clients/client-backup/src/endpoint/EndpointParameters.ts +++ b/clients/client-backup/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-backup/src/endpoint/endpointResolver.ts b/clients/client-backup/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-backup/src/endpoint/endpointResolver.ts +++ b/clients/client-backup/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-backup/src/extensionConfiguration.ts b/clients/client-backup/src/extensionConfiguration.ts index 06119385b0320..31587ae9d0ea0 100644 --- a/clients/client-backup/src/extensionConfiguration.ts +++ b/clients/client-backup/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-backup/src/models/BackupServiceException.ts b/clients/client-backup/src/models/BackupServiceException.ts index 9c5efcabc32f0..33aa1264b7b55 100644 --- a/clients/client-backup/src/models/BackupServiceException.ts +++ b/clients/client-backup/src/models/BackupServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-backup/src/models/errors.ts b/clients/client-backup/src/models/errors.ts index e0e5e84ed8b33..1a106bcf93115 100644 --- a/clients/client-backup/src/models/errors.ts +++ b/clients/client-backup/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BackupServiceException as __BaseException } from "./BackupServiceException"; diff --git a/clients/client-backup/src/pagination/Interfaces.ts b/clients/client-backup/src/pagination/Interfaces.ts index 18424d9336e92..372153e0763d3 100644 --- a/clients/client-backup/src/pagination/Interfaces.ts +++ b/clients/client-backup/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BackupClient } from "../BackupClient"; diff --git a/clients/client-backup/src/pagination/ListBackupJobSummariesPaginator.ts b/clients/client-backup/src/pagination/ListBackupJobSummariesPaginator.ts index 0ed99dbe197e4..6b7d8e729a9b8 100644 --- a/clients/client-backup/src/pagination/ListBackupJobSummariesPaginator.ts +++ b/clients/client-backup/src/pagination/ListBackupJobSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListBackupJobsPaginator.ts b/clients/client-backup/src/pagination/ListBackupJobsPaginator.ts index c75dc4825e41c..9564c8396a2f8 100644 --- a/clients/client-backup/src/pagination/ListBackupJobsPaginator.ts +++ b/clients/client-backup/src/pagination/ListBackupJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListBackupPlanTemplatesPaginator.ts b/clients/client-backup/src/pagination/ListBackupPlanTemplatesPaginator.ts index f38194ce5684f..684b0e2971fb2 100644 --- a/clients/client-backup/src/pagination/ListBackupPlanTemplatesPaginator.ts +++ b/clients/client-backup/src/pagination/ListBackupPlanTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListBackupPlanVersionsPaginator.ts b/clients/client-backup/src/pagination/ListBackupPlanVersionsPaginator.ts index 05166bdd14d9c..190bbe969fe26 100644 --- a/clients/client-backup/src/pagination/ListBackupPlanVersionsPaginator.ts +++ b/clients/client-backup/src/pagination/ListBackupPlanVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListBackupPlansPaginator.ts b/clients/client-backup/src/pagination/ListBackupPlansPaginator.ts index b2fac13fe3623..f4cc64bd5880a 100644 --- a/clients/client-backup/src/pagination/ListBackupPlansPaginator.ts +++ b/clients/client-backup/src/pagination/ListBackupPlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListBackupSelectionsPaginator.ts b/clients/client-backup/src/pagination/ListBackupSelectionsPaginator.ts index 6b903717fe413..24d11e46bb489 100644 --- a/clients/client-backup/src/pagination/ListBackupSelectionsPaginator.ts +++ b/clients/client-backup/src/pagination/ListBackupSelectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListBackupVaultsPaginator.ts b/clients/client-backup/src/pagination/ListBackupVaultsPaginator.ts index a1c1e1bdf1eed..83fedfd15e7f0 100644 --- a/clients/client-backup/src/pagination/ListBackupVaultsPaginator.ts +++ b/clients/client-backup/src/pagination/ListBackupVaultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListCopyJobSummariesPaginator.ts b/clients/client-backup/src/pagination/ListCopyJobSummariesPaginator.ts index 7892c0e59fa87..8c4ba883e4df5 100644 --- a/clients/client-backup/src/pagination/ListCopyJobSummariesPaginator.ts +++ b/clients/client-backup/src/pagination/ListCopyJobSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListCopyJobsPaginator.ts b/clients/client-backup/src/pagination/ListCopyJobsPaginator.ts index ad20a85a48baa..b2f3701d8a0ce 100644 --- a/clients/client-backup/src/pagination/ListCopyJobsPaginator.ts +++ b/clients/client-backup/src/pagination/ListCopyJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListFrameworksPaginator.ts b/clients/client-backup/src/pagination/ListFrameworksPaginator.ts index ee3c6b99dc712..ce66ec013929e 100644 --- a/clients/client-backup/src/pagination/ListFrameworksPaginator.ts +++ b/clients/client-backup/src/pagination/ListFrameworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListIndexedRecoveryPointsPaginator.ts b/clients/client-backup/src/pagination/ListIndexedRecoveryPointsPaginator.ts index 413376405be67..9bb5ffe5dfdd0 100644 --- a/clients/client-backup/src/pagination/ListIndexedRecoveryPointsPaginator.ts +++ b/clients/client-backup/src/pagination/ListIndexedRecoveryPointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListLegalHoldsPaginator.ts b/clients/client-backup/src/pagination/ListLegalHoldsPaginator.ts index 072c41804b5c3..e554d2d1c2c78 100644 --- a/clients/client-backup/src/pagination/ListLegalHoldsPaginator.ts +++ b/clients/client-backup/src/pagination/ListLegalHoldsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListProtectedResourcesByBackupVaultPaginator.ts b/clients/client-backup/src/pagination/ListProtectedResourcesByBackupVaultPaginator.ts index 083adad5f52a3..7bec235df04f4 100644 --- a/clients/client-backup/src/pagination/ListProtectedResourcesByBackupVaultPaginator.ts +++ b/clients/client-backup/src/pagination/ListProtectedResourcesByBackupVaultPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListProtectedResourcesPaginator.ts b/clients/client-backup/src/pagination/ListProtectedResourcesPaginator.ts index c83e9003bf290..3f3ad6a880458 100644 --- a/clients/client-backup/src/pagination/ListProtectedResourcesPaginator.ts +++ b/clients/client-backup/src/pagination/ListProtectedResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListRecoveryPointsByBackupVaultPaginator.ts b/clients/client-backup/src/pagination/ListRecoveryPointsByBackupVaultPaginator.ts index e260e3d6763f5..065ce4b4c0827 100644 --- a/clients/client-backup/src/pagination/ListRecoveryPointsByBackupVaultPaginator.ts +++ b/clients/client-backup/src/pagination/ListRecoveryPointsByBackupVaultPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListRecoveryPointsByLegalHoldPaginator.ts b/clients/client-backup/src/pagination/ListRecoveryPointsByLegalHoldPaginator.ts index 7988a2c03ea54..ce427654d73ec 100644 --- a/clients/client-backup/src/pagination/ListRecoveryPointsByLegalHoldPaginator.ts +++ b/clients/client-backup/src/pagination/ListRecoveryPointsByLegalHoldPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListRecoveryPointsByResourcePaginator.ts b/clients/client-backup/src/pagination/ListRecoveryPointsByResourcePaginator.ts index 1bb7b0e0aa30a..3aa43430ec28a 100644 --- a/clients/client-backup/src/pagination/ListRecoveryPointsByResourcePaginator.ts +++ b/clients/client-backup/src/pagination/ListRecoveryPointsByResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListReportJobsPaginator.ts b/clients/client-backup/src/pagination/ListReportJobsPaginator.ts index f745a4687bb87..22522c1d1762b 100644 --- a/clients/client-backup/src/pagination/ListReportJobsPaginator.ts +++ b/clients/client-backup/src/pagination/ListReportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListReportPlansPaginator.ts b/clients/client-backup/src/pagination/ListReportPlansPaginator.ts index 2e71a2da9a8f5..3f4fe63f47514 100644 --- a/clients/client-backup/src/pagination/ListReportPlansPaginator.ts +++ b/clients/client-backup/src/pagination/ListReportPlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListRestoreAccessBackupVaultsPaginator.ts b/clients/client-backup/src/pagination/ListRestoreAccessBackupVaultsPaginator.ts index 63e1dbd6422b5..a4c8b7f1035cd 100644 --- a/clients/client-backup/src/pagination/ListRestoreAccessBackupVaultsPaginator.ts +++ b/clients/client-backup/src/pagination/ListRestoreAccessBackupVaultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListRestoreJobSummariesPaginator.ts b/clients/client-backup/src/pagination/ListRestoreJobSummariesPaginator.ts index 8d66c459560ea..5d76fb111f745 100644 --- a/clients/client-backup/src/pagination/ListRestoreJobSummariesPaginator.ts +++ b/clients/client-backup/src/pagination/ListRestoreJobSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListRestoreJobsByProtectedResourcePaginator.ts b/clients/client-backup/src/pagination/ListRestoreJobsByProtectedResourcePaginator.ts index 788295bab1b06..491ec5ef28ee5 100644 --- a/clients/client-backup/src/pagination/ListRestoreJobsByProtectedResourcePaginator.ts +++ b/clients/client-backup/src/pagination/ListRestoreJobsByProtectedResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListRestoreJobsPaginator.ts b/clients/client-backup/src/pagination/ListRestoreJobsPaginator.ts index 6c02889776287..98c861ab85669 100644 --- a/clients/client-backup/src/pagination/ListRestoreJobsPaginator.ts +++ b/clients/client-backup/src/pagination/ListRestoreJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListRestoreTestingPlansPaginator.ts b/clients/client-backup/src/pagination/ListRestoreTestingPlansPaginator.ts index 07c6b1eb2c9be..5ce67aeaa73fd 100644 --- a/clients/client-backup/src/pagination/ListRestoreTestingPlansPaginator.ts +++ b/clients/client-backup/src/pagination/ListRestoreTestingPlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListRestoreTestingSelectionsPaginator.ts b/clients/client-backup/src/pagination/ListRestoreTestingSelectionsPaginator.ts index 8269abff01a1d..a9648510075b4 100644 --- a/clients/client-backup/src/pagination/ListRestoreTestingSelectionsPaginator.ts +++ b/clients/client-backup/src/pagination/ListRestoreTestingSelectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListScanJobSummariesPaginator.ts b/clients/client-backup/src/pagination/ListScanJobSummariesPaginator.ts index fec1d691b72eb..14fbdccef64d2 100644 --- a/clients/client-backup/src/pagination/ListScanJobSummariesPaginator.ts +++ b/clients/client-backup/src/pagination/ListScanJobSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListScanJobsPaginator.ts b/clients/client-backup/src/pagination/ListScanJobsPaginator.ts index 232f09737472d..e474dd89127a2 100644 --- a/clients/client-backup/src/pagination/ListScanJobsPaginator.ts +++ b/clients/client-backup/src/pagination/ListScanJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/pagination/ListTagsPaginator.ts b/clients/client-backup/src/pagination/ListTagsPaginator.ts index 693f0a074f180..2ff1b25013dfe 100644 --- a/clients/client-backup/src/pagination/ListTagsPaginator.ts +++ b/clients/client-backup/src/pagination/ListTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { ListTagsCommand, ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand"; diff --git a/clients/client-backup/src/pagination/ListTieringConfigurationsPaginator.ts b/clients/client-backup/src/pagination/ListTieringConfigurationsPaginator.ts index 7db16734170b2..07696078e8b80 100644 --- a/clients/client-backup/src/pagination/ListTieringConfigurationsPaginator.ts +++ b/clients/client-backup/src/pagination/ListTieringConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupClient } from "../BackupClient"; import { diff --git a/clients/client-backup/src/runtimeConfig.browser.ts b/clients/client-backup/src/runtimeConfig.browser.ts index 52b387834ba8c..748a9bc04824a 100644 --- a/clients/client-backup/src/runtimeConfig.browser.ts +++ b/clients/client-backup/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BackupClientConfig } from "./BackupClient"; + +import type { BackupClientConfig } from "./BackupClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-backup/src/runtimeConfig.native.ts b/clients/client-backup/src/runtimeConfig.native.ts index 1e9c55f246266..d34ed574484ee 100644 --- a/clients/client-backup/src/runtimeConfig.native.ts +++ b/clients/client-backup/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BackupClientConfig } from "./BackupClient"; +import type { BackupClientConfig } from "./BackupClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-backup/src/runtimeConfig.shared.ts b/clients/client-backup/src/runtimeConfig.shared.ts index fe982852f737d..7895213530254 100644 --- a/clients/client-backup/src/runtimeConfig.shared.ts +++ b/clients/client-backup/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBackupHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BackupClientConfig } from "./BackupClient"; +import type { BackupClientConfig } from "./BackupClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-backup/src/runtimeConfig.ts b/clients/client-backup/src/runtimeConfig.ts index 347cbe69c64cb..ab9b0a619f5b0 100644 --- a/clients/client-backup/src/runtimeConfig.ts +++ b/clients/client-backup/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BackupClientConfig } from "./BackupClient"; + +import type { BackupClientConfig } from "./BackupClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-backup/src/runtimeExtensions.ts b/clients/client-backup/src/runtimeExtensions.ts index 6a885c7f89718..7857e1abc96c7 100644 --- a/clients/client-backup/src/runtimeExtensions.ts +++ b/clients/client-backup/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BackupExtensionConfiguration } from "./extensionConfiguration"; +import type { BackupExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-backup/src/schemas/schemas_0.ts b/clients/client-backup/src/schemas/schemas_0.ts index a9e5b301246bd..98660f974e598 100644 --- a/clients/client-backup/src/schemas/schemas_0.ts +++ b/clients/client-backup/src/schemas/schemas_0.ts @@ -757,7 +757,7 @@ const n0 = "com.amazonaws.backup"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-backupsearch/package.json b/clients/client-backupsearch/package.json index fc8b81c0e829d..7de760daf98f4 100644 --- a/clients/client-backupsearch/package.json +++ b/clients/client-backupsearch/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-backupsearch/src/BackupSearch.ts b/clients/client-backupsearch/src/BackupSearch.ts index de934e409c1d9..a1ae76b37bbf3 100644 --- a/clients/client-backupsearch/src/BackupSearch.ts +++ b/clients/client-backupsearch/src/BackupSearch.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BackupSearchClient, BackupSearchClientConfig } from "./BackupSearchClient"; +import { BackupSearchClient } from "./BackupSearchClient"; import { GetSearchJobCommand, GetSearchJobCommandInput, diff --git a/clients/client-backupsearch/src/BackupSearchClient.ts b/clients/client-backupsearch/src/BackupSearchClient.ts index 79e8e51eaf3a3..1286a209099f9 100644 --- a/clients/client-backupsearch/src/BackupSearchClient.ts +++ b/clients/client-backupsearch/src/BackupSearchClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBackupSearchHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetSearchJobCommandInput, GetSearchJobCommandOutput } from "./commands/GetSearchJobCommand"; @@ -94,7 +103,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-backupsearch/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-backupsearch/src/auth/httpAuthExtensionConfiguration.ts index 885ce37eb9d2d..6138bf4d57353 100644 --- a/clients/client-backupsearch/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-backupsearch/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BackupSearchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BackupSearchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-backupsearch/src/auth/httpAuthSchemeProvider.ts b/clients/client-backupsearch/src/auth/httpAuthSchemeProvider.ts index fdd1431a74f83..5206177f6b2f2 100644 --- a/clients/client-backupsearch/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-backupsearch/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BackupSearchClientConfig, BackupSearchClientResolvedConfig } from "../BackupSearchClient"; +import { type BackupSearchClientResolvedConfig, BackupSearchClientConfig } from "../BackupSearchClient"; /** * @internal diff --git a/clients/client-backupsearch/src/commands/GetSearchJobCommand.ts b/clients/client-backupsearch/src/commands/GetSearchJobCommand.ts index af34e09c82aa2..845a08b35cb89 100644 --- a/clients/client-backupsearch/src/commands/GetSearchJobCommand.ts +++ b/clients/client-backupsearch/src/commands/GetSearchJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSearchJobInput, GetSearchJobOutput } from "../models/models_0"; +import type { GetSearchJobInput, GetSearchJobOutput } from "../models/models_0"; import { GetSearchJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/GetSearchResultExportJobCommand.ts b/clients/client-backupsearch/src/commands/GetSearchResultExportJobCommand.ts index 0153a525fb1c3..7b430d6d3e1f9 100644 --- a/clients/client-backupsearch/src/commands/GetSearchResultExportJobCommand.ts +++ b/clients/client-backupsearch/src/commands/GetSearchResultExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSearchResultExportJobInput, GetSearchResultExportJobOutput } from "../models/models_0"; +import type { GetSearchResultExportJobInput, GetSearchResultExportJobOutput } from "../models/models_0"; import { GetSearchResultExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/ListSearchJobBackupsCommand.ts b/clients/client-backupsearch/src/commands/ListSearchJobBackupsCommand.ts index 3c1e3fddd9fb7..4ef4d2dc1a5b3 100644 --- a/clients/client-backupsearch/src/commands/ListSearchJobBackupsCommand.ts +++ b/clients/client-backupsearch/src/commands/ListSearchJobBackupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSearchJobBackupsInput, ListSearchJobBackupsOutput } from "../models/models_0"; +import type { ListSearchJobBackupsInput, ListSearchJobBackupsOutput } from "../models/models_0"; import { ListSearchJobBackups } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/ListSearchJobResultsCommand.ts b/clients/client-backupsearch/src/commands/ListSearchJobResultsCommand.ts index 352c390b8906e..da3008895f670 100644 --- a/clients/client-backupsearch/src/commands/ListSearchJobResultsCommand.ts +++ b/clients/client-backupsearch/src/commands/ListSearchJobResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSearchJobResultsInput, ListSearchJobResultsOutput } from "../models/models_0"; +import type { ListSearchJobResultsInput, ListSearchJobResultsOutput } from "../models/models_0"; import { ListSearchJobResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/ListSearchJobsCommand.ts b/clients/client-backupsearch/src/commands/ListSearchJobsCommand.ts index b97974d197ec0..237f9d8493fca 100644 --- a/clients/client-backupsearch/src/commands/ListSearchJobsCommand.ts +++ b/clients/client-backupsearch/src/commands/ListSearchJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSearchJobsInput, ListSearchJobsOutput } from "../models/models_0"; +import type { ListSearchJobsInput, ListSearchJobsOutput } from "../models/models_0"; import { ListSearchJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/ListSearchResultExportJobsCommand.ts b/clients/client-backupsearch/src/commands/ListSearchResultExportJobsCommand.ts index 47bbaeb87581b..eda674847077c 100644 --- a/clients/client-backupsearch/src/commands/ListSearchResultExportJobsCommand.ts +++ b/clients/client-backupsearch/src/commands/ListSearchResultExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSearchResultExportJobsInput, ListSearchResultExportJobsOutput } from "../models/models_0"; +import type { ListSearchResultExportJobsInput, ListSearchResultExportJobsOutput } from "../models/models_0"; import { ListSearchResultExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/ListTagsForResourceCommand.ts b/clients/client-backupsearch/src/commands/ListTagsForResourceCommand.ts index 2118f90874e5a..63f49da1f4d91 100644 --- a/clients/client-backupsearch/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-backupsearch/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/StartSearchJobCommand.ts b/clients/client-backupsearch/src/commands/StartSearchJobCommand.ts index e755b843e4000..a2ac2b52de968 100644 --- a/clients/client-backupsearch/src/commands/StartSearchJobCommand.ts +++ b/clients/client-backupsearch/src/commands/StartSearchJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSearchJobInput, StartSearchJobOutput } from "../models/models_0"; +import type { StartSearchJobInput, StartSearchJobOutput } from "../models/models_0"; import { StartSearchJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/StartSearchResultExportJobCommand.ts b/clients/client-backupsearch/src/commands/StartSearchResultExportJobCommand.ts index 56f50e89ea409..78596a9e3abdd 100644 --- a/clients/client-backupsearch/src/commands/StartSearchResultExportJobCommand.ts +++ b/clients/client-backupsearch/src/commands/StartSearchResultExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSearchResultExportJobInput, StartSearchResultExportJobOutput } from "../models/models_0"; +import type { StartSearchResultExportJobInput, StartSearchResultExportJobOutput } from "../models/models_0"; import { StartSearchResultExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/StopSearchJobCommand.ts b/clients/client-backupsearch/src/commands/StopSearchJobCommand.ts index c7999a0fd3559..856d92d36ac1b 100644 --- a/clients/client-backupsearch/src/commands/StopSearchJobCommand.ts +++ b/clients/client-backupsearch/src/commands/StopSearchJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopSearchJobInput, StopSearchJobOutput } from "../models/models_0"; +import type { StopSearchJobInput, StopSearchJobOutput } from "../models/models_0"; import { StopSearchJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/TagResourceCommand.ts b/clients/client-backupsearch/src/commands/TagResourceCommand.ts index 2bbad1b99a03e..caca566ece67e 100644 --- a/clients/client-backupsearch/src/commands/TagResourceCommand.ts +++ b/clients/client-backupsearch/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/commands/UntagResourceCommand.ts b/clients/client-backupsearch/src/commands/UntagResourceCommand.ts index 122d3797d8687..756b7db3e4b06 100644 --- a/clients/client-backupsearch/src/commands/UntagResourceCommand.ts +++ b/clients/client-backupsearch/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; +import type { BackupSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BackupSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-backupsearch/src/endpoint/EndpointParameters.ts b/clients/client-backupsearch/src/endpoint/EndpointParameters.ts index 27d28198c1555..e381ca91e5cf5 100644 --- a/clients/client-backupsearch/src/endpoint/EndpointParameters.ts +++ b/clients/client-backupsearch/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-backupsearch/src/endpoint/endpointResolver.ts b/clients/client-backupsearch/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-backupsearch/src/endpoint/endpointResolver.ts +++ b/clients/client-backupsearch/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-backupsearch/src/extensionConfiguration.ts b/clients/client-backupsearch/src/extensionConfiguration.ts index cb328cb4cdf78..92442cae04735 100644 --- a/clients/client-backupsearch/src/extensionConfiguration.ts +++ b/clients/client-backupsearch/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-backupsearch/src/models/BackupSearchServiceException.ts b/clients/client-backupsearch/src/models/BackupSearchServiceException.ts index 708c008e84622..97e862f2f49db 100644 --- a/clients/client-backupsearch/src/models/BackupSearchServiceException.ts +++ b/clients/client-backupsearch/src/models/BackupSearchServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-backupsearch/src/models/errors.ts b/clients/client-backupsearch/src/models/errors.ts index 2302da8733a63..b5887ff8662df 100644 --- a/clients/client-backupsearch/src/models/errors.ts +++ b/clients/client-backupsearch/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BackupSearchServiceException as __BaseException } from "./BackupSearchServiceException"; diff --git a/clients/client-backupsearch/src/pagination/Interfaces.ts b/clients/client-backupsearch/src/pagination/Interfaces.ts index cb351c831d0d5..9eaa93251c6fa 100644 --- a/clients/client-backupsearch/src/pagination/Interfaces.ts +++ b/clients/client-backupsearch/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BackupSearchClient } from "../BackupSearchClient"; diff --git a/clients/client-backupsearch/src/pagination/ListSearchJobBackupsPaginator.ts b/clients/client-backupsearch/src/pagination/ListSearchJobBackupsPaginator.ts index 21beeb203463f..6c7b2648a2107 100644 --- a/clients/client-backupsearch/src/pagination/ListSearchJobBackupsPaginator.ts +++ b/clients/client-backupsearch/src/pagination/ListSearchJobBackupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupSearchClient } from "../BackupSearchClient"; import { diff --git a/clients/client-backupsearch/src/pagination/ListSearchJobResultsPaginator.ts b/clients/client-backupsearch/src/pagination/ListSearchJobResultsPaginator.ts index 55a26bc38ce89..7b92bc2976369 100644 --- a/clients/client-backupsearch/src/pagination/ListSearchJobResultsPaginator.ts +++ b/clients/client-backupsearch/src/pagination/ListSearchJobResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupSearchClient } from "../BackupSearchClient"; import { diff --git a/clients/client-backupsearch/src/pagination/ListSearchJobsPaginator.ts b/clients/client-backupsearch/src/pagination/ListSearchJobsPaginator.ts index 81ce66888fd65..0aa668512daa9 100644 --- a/clients/client-backupsearch/src/pagination/ListSearchJobsPaginator.ts +++ b/clients/client-backupsearch/src/pagination/ListSearchJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupSearchClient } from "../BackupSearchClient"; import { diff --git a/clients/client-backupsearch/src/pagination/ListSearchResultExportJobsPaginator.ts b/clients/client-backupsearch/src/pagination/ListSearchResultExportJobsPaginator.ts index 6f5657e38e3f9..7bf95c316fe9e 100644 --- a/clients/client-backupsearch/src/pagination/ListSearchResultExportJobsPaginator.ts +++ b/clients/client-backupsearch/src/pagination/ListSearchResultExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BackupSearchClient } from "../BackupSearchClient"; import { diff --git a/clients/client-backupsearch/src/runtimeConfig.browser.ts b/clients/client-backupsearch/src/runtimeConfig.browser.ts index 64739b286ee2d..fb98ca55302dd 100644 --- a/clients/client-backupsearch/src/runtimeConfig.browser.ts +++ b/clients/client-backupsearch/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BackupSearchClientConfig } from "./BackupSearchClient"; + +import type { BackupSearchClientConfig } from "./BackupSearchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-backupsearch/src/runtimeConfig.native.ts b/clients/client-backupsearch/src/runtimeConfig.native.ts index b2a9f4c53dd66..353f9be749c33 100644 --- a/clients/client-backupsearch/src/runtimeConfig.native.ts +++ b/clients/client-backupsearch/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BackupSearchClientConfig } from "./BackupSearchClient"; +import type { BackupSearchClientConfig } from "./BackupSearchClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-backupsearch/src/runtimeConfig.shared.ts b/clients/client-backupsearch/src/runtimeConfig.shared.ts index 7ca8b68cd4817..3fdd6f51ac422 100644 --- a/clients/client-backupsearch/src/runtimeConfig.shared.ts +++ b/clients/client-backupsearch/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBackupSearchHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BackupSearchClientConfig } from "./BackupSearchClient"; +import type { BackupSearchClientConfig } from "./BackupSearchClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-backupsearch/src/runtimeConfig.ts b/clients/client-backupsearch/src/runtimeConfig.ts index b7055264fbd6d..e5516465d746b 100644 --- a/clients/client-backupsearch/src/runtimeConfig.ts +++ b/clients/client-backupsearch/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BackupSearchClientConfig } from "./BackupSearchClient"; + +import type { BackupSearchClientConfig } from "./BackupSearchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-backupsearch/src/runtimeExtensions.ts b/clients/client-backupsearch/src/runtimeExtensions.ts index 00fcacf925106..3bf07753be334 100644 --- a/clients/client-backupsearch/src/runtimeExtensions.ts +++ b/clients/client-backupsearch/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BackupSearchExtensionConfiguration } from "./extensionConfiguration"; +import type { BackupSearchExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-backupsearch/src/schemas/schemas_0.ts b/clients/client-backupsearch/src/schemas/schemas_0.ts index 1566e7498bddb..3274dfbba8d5f 100644 --- a/clients/client-backupsearch/src/schemas/schemas_0.ts +++ b/clients/client-backupsearch/src/schemas/schemas_0.ts @@ -149,7 +149,7 @@ const n0 = "com.amazonaws.backupsearch"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-batch/package.json b/clients/client-batch/package.json index ee9f9366e44eb..8bbda29b33dec 100644 --- a/clients/client-batch/package.json +++ b/clients/client-batch/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-batch/src/Batch.ts b/clients/client-batch/src/Batch.ts index f2a1ccb768da0..9c4d37b5fe851 100644 --- a/clients/client-batch/src/Batch.ts +++ b/clients/client-batch/src/Batch.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BatchClient, BatchClientConfig } from "./BatchClient"; +import { BatchClient } from "./BatchClient"; import { CancelJobCommand, CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand"; import { CreateComputeEnvironmentCommand, diff --git a/clients/client-batch/src/BatchClient.ts b/clients/client-batch/src/BatchClient.ts index be3e493d19204..8650caecc14b2 100644 --- a/clients/client-batch/src/BatchClient.ts +++ b/clients/client-batch/src/BatchClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBatchHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand"; @@ -178,7 +187,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-batch/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-batch/src/auth/httpAuthExtensionConfiguration.ts index e36fb2515a491..120614ef3c6be 100644 --- a/clients/client-batch/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-batch/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BatchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BatchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-batch/src/auth/httpAuthSchemeProvider.ts b/clients/client-batch/src/auth/httpAuthSchemeProvider.ts index 0dd28905c8341..ea1d53487b6e6 100644 --- a/clients/client-batch/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-batch/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BatchClientConfig, BatchClientResolvedConfig } from "../BatchClient"; +import { type BatchClientResolvedConfig, BatchClientConfig } from "../BatchClient"; /** * @internal diff --git a/clients/client-batch/src/commands/CancelJobCommand.ts b/clients/client-batch/src/commands/CancelJobCommand.ts index ed2104c931071..996e32c1f0100 100644 --- a/clients/client-batch/src/commands/CancelJobCommand.ts +++ b/clients/client-batch/src/commands/CancelJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelJobRequest, CancelJobResponse } from "../models/models_0"; +import type { CancelJobRequest, CancelJobResponse } from "../models/models_0"; import { CancelJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/CreateComputeEnvironmentCommand.ts b/clients/client-batch/src/commands/CreateComputeEnvironmentCommand.ts index 2e03cddf36d7a..e4b27dc791172 100644 --- a/clients/client-batch/src/commands/CreateComputeEnvironmentCommand.ts +++ b/clients/client-batch/src/commands/CreateComputeEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateComputeEnvironmentRequest, CreateComputeEnvironmentResponse } from "../models/models_0"; +import type { CreateComputeEnvironmentRequest, CreateComputeEnvironmentResponse } from "../models/models_0"; import { CreateComputeEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/CreateConsumableResourceCommand.ts b/clients/client-batch/src/commands/CreateConsumableResourceCommand.ts index 738e30af5062a..d10a82007faed 100644 --- a/clients/client-batch/src/commands/CreateConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/CreateConsumableResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConsumableResourceRequest, CreateConsumableResourceResponse } from "../models/models_0"; +import type { CreateConsumableResourceRequest, CreateConsumableResourceResponse } from "../models/models_0"; import { CreateConsumableResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/CreateJobQueueCommand.ts b/clients/client-batch/src/commands/CreateJobQueueCommand.ts index b9070b1ac6d66..ed6262328cdc5 100644 --- a/clients/client-batch/src/commands/CreateJobQueueCommand.ts +++ b/clients/client-batch/src/commands/CreateJobQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJobQueueRequest, CreateJobQueueResponse } from "../models/models_0"; +import type { CreateJobQueueRequest, CreateJobQueueResponse } from "../models/models_0"; import { CreateJobQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/CreateSchedulingPolicyCommand.ts b/clients/client-batch/src/commands/CreateSchedulingPolicyCommand.ts index 0d3f97ac26769..69d5beaddee4a 100644 --- a/clients/client-batch/src/commands/CreateSchedulingPolicyCommand.ts +++ b/clients/client-batch/src/commands/CreateSchedulingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSchedulingPolicyRequest, CreateSchedulingPolicyResponse } from "../models/models_0"; +import type { CreateSchedulingPolicyRequest, CreateSchedulingPolicyResponse } from "../models/models_0"; import { CreateSchedulingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/CreateServiceEnvironmentCommand.ts b/clients/client-batch/src/commands/CreateServiceEnvironmentCommand.ts index a5eefc9c2f645..83fdd00c09d9c 100644 --- a/clients/client-batch/src/commands/CreateServiceEnvironmentCommand.ts +++ b/clients/client-batch/src/commands/CreateServiceEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceEnvironmentRequest, CreateServiceEnvironmentResponse } from "../models/models_0"; +import type { CreateServiceEnvironmentRequest, CreateServiceEnvironmentResponse } from "../models/models_0"; import { CreateServiceEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DeleteComputeEnvironmentCommand.ts b/clients/client-batch/src/commands/DeleteComputeEnvironmentCommand.ts index 1242353babb03..888af454215b6 100644 --- a/clients/client-batch/src/commands/DeleteComputeEnvironmentCommand.ts +++ b/clients/client-batch/src/commands/DeleteComputeEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteComputeEnvironmentRequest, DeleteComputeEnvironmentResponse } from "../models/models_0"; +import type { DeleteComputeEnvironmentRequest, DeleteComputeEnvironmentResponse } from "../models/models_0"; import { DeleteComputeEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DeleteConsumableResourceCommand.ts b/clients/client-batch/src/commands/DeleteConsumableResourceCommand.ts index b56d3acbc979c..1bf8a3a6b9f3c 100644 --- a/clients/client-batch/src/commands/DeleteConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/DeleteConsumableResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConsumableResourceRequest, DeleteConsumableResourceResponse } from "../models/models_0"; +import type { DeleteConsumableResourceRequest, DeleteConsumableResourceResponse } from "../models/models_0"; import { DeleteConsumableResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DeleteJobQueueCommand.ts b/clients/client-batch/src/commands/DeleteJobQueueCommand.ts index 57149becd5f15..f3cee874d2aa1 100644 --- a/clients/client-batch/src/commands/DeleteJobQueueCommand.ts +++ b/clients/client-batch/src/commands/DeleteJobQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteJobQueueRequest, DeleteJobQueueResponse } from "../models/models_0"; +import type { DeleteJobQueueRequest, DeleteJobQueueResponse } from "../models/models_0"; import { DeleteJobQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DeleteSchedulingPolicyCommand.ts b/clients/client-batch/src/commands/DeleteSchedulingPolicyCommand.ts index 38cebdb27f1be..fa9080435e1f0 100644 --- a/clients/client-batch/src/commands/DeleteSchedulingPolicyCommand.ts +++ b/clients/client-batch/src/commands/DeleteSchedulingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSchedulingPolicyRequest, DeleteSchedulingPolicyResponse } from "../models/models_0"; +import type { DeleteSchedulingPolicyRequest, DeleteSchedulingPolicyResponse } from "../models/models_0"; import { DeleteSchedulingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DeleteServiceEnvironmentCommand.ts b/clients/client-batch/src/commands/DeleteServiceEnvironmentCommand.ts index 382f18aefc728..cb16d12b29489 100644 --- a/clients/client-batch/src/commands/DeleteServiceEnvironmentCommand.ts +++ b/clients/client-batch/src/commands/DeleteServiceEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceEnvironmentRequest, DeleteServiceEnvironmentResponse } from "../models/models_0"; +import type { DeleteServiceEnvironmentRequest, DeleteServiceEnvironmentResponse } from "../models/models_0"; import { DeleteServiceEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DeregisterJobDefinitionCommand.ts b/clients/client-batch/src/commands/DeregisterJobDefinitionCommand.ts index 3bcdd85c63ee9..3d26a14185504 100644 --- a/clients/client-batch/src/commands/DeregisterJobDefinitionCommand.ts +++ b/clients/client-batch/src/commands/DeregisterJobDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterJobDefinitionRequest, DeregisterJobDefinitionResponse } from "../models/models_0"; +import type { DeregisterJobDefinitionRequest, DeregisterJobDefinitionResponse } from "../models/models_0"; import { DeregisterJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DescribeComputeEnvironmentsCommand.ts b/clients/client-batch/src/commands/DescribeComputeEnvironmentsCommand.ts index 500013a8aa936..9da0f2afb4db4 100644 --- a/clients/client-batch/src/commands/DescribeComputeEnvironmentsCommand.ts +++ b/clients/client-batch/src/commands/DescribeComputeEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeComputeEnvironmentsRequest, DescribeComputeEnvironmentsResponse } from "../models/models_0"; +import type { DescribeComputeEnvironmentsRequest, DescribeComputeEnvironmentsResponse } from "../models/models_0"; import { DescribeComputeEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DescribeConsumableResourceCommand.ts b/clients/client-batch/src/commands/DescribeConsumableResourceCommand.ts index aef41a95d1ed1..ac3298a8f5855 100644 --- a/clients/client-batch/src/commands/DescribeConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/DescribeConsumableResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConsumableResourceRequest, DescribeConsumableResourceResponse } from "../models/models_0"; +import type { DescribeConsumableResourceRequest, DescribeConsumableResourceResponse } from "../models/models_0"; import { DescribeConsumableResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DescribeJobDefinitionsCommand.ts b/clients/client-batch/src/commands/DescribeJobDefinitionsCommand.ts index 8cd78fa2ccf95..a9412dea8642f 100644 --- a/clients/client-batch/src/commands/DescribeJobDefinitionsCommand.ts +++ b/clients/client-batch/src/commands/DescribeJobDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobDefinitionsRequest, DescribeJobDefinitionsResponse } from "../models/models_0"; +import type { DescribeJobDefinitionsRequest, DescribeJobDefinitionsResponse } from "../models/models_0"; import { DescribeJobDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DescribeJobQueuesCommand.ts b/clients/client-batch/src/commands/DescribeJobQueuesCommand.ts index e8089ef1da8a1..2aa4c3e806cd4 100644 --- a/clients/client-batch/src/commands/DescribeJobQueuesCommand.ts +++ b/clients/client-batch/src/commands/DescribeJobQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobQueuesRequest, DescribeJobQueuesResponse } from "../models/models_0"; +import type { DescribeJobQueuesRequest, DescribeJobQueuesResponse } from "../models/models_0"; import { DescribeJobQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DescribeJobsCommand.ts b/clients/client-batch/src/commands/DescribeJobsCommand.ts index 6dd0e3dbe58dd..c38fab70df144 100644 --- a/clients/client-batch/src/commands/DescribeJobsCommand.ts +++ b/clients/client-batch/src/commands/DescribeJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0"; +import type { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0"; import { DescribeJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DescribeSchedulingPoliciesCommand.ts b/clients/client-batch/src/commands/DescribeSchedulingPoliciesCommand.ts index 1d16f23b2e818..217e8a040a4da 100644 --- a/clients/client-batch/src/commands/DescribeSchedulingPoliciesCommand.ts +++ b/clients/client-batch/src/commands/DescribeSchedulingPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSchedulingPoliciesRequest, DescribeSchedulingPoliciesResponse } from "../models/models_0"; +import type { DescribeSchedulingPoliciesRequest, DescribeSchedulingPoliciesResponse } from "../models/models_0"; import { DescribeSchedulingPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DescribeServiceEnvironmentsCommand.ts b/clients/client-batch/src/commands/DescribeServiceEnvironmentsCommand.ts index 378aae899db2d..4a82557f6c7d7 100644 --- a/clients/client-batch/src/commands/DescribeServiceEnvironmentsCommand.ts +++ b/clients/client-batch/src/commands/DescribeServiceEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServiceEnvironmentsRequest, DescribeServiceEnvironmentsResponse } from "../models/models_0"; +import type { DescribeServiceEnvironmentsRequest, DescribeServiceEnvironmentsResponse } from "../models/models_0"; import { DescribeServiceEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/DescribeServiceJobCommand.ts b/clients/client-batch/src/commands/DescribeServiceJobCommand.ts index 316e3a37401e0..1e3cf92bd3862 100644 --- a/clients/client-batch/src/commands/DescribeServiceJobCommand.ts +++ b/clients/client-batch/src/commands/DescribeServiceJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServiceJobRequest, DescribeServiceJobResponse } from "../models/models_0"; +import type { DescribeServiceJobRequest, DescribeServiceJobResponse } from "../models/models_0"; import { DescribeServiceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/GetJobQueueSnapshotCommand.ts b/clients/client-batch/src/commands/GetJobQueueSnapshotCommand.ts index f43528c07923f..a645d0d08d87e 100644 --- a/clients/client-batch/src/commands/GetJobQueueSnapshotCommand.ts +++ b/clients/client-batch/src/commands/GetJobQueueSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobQueueSnapshotRequest, GetJobQueueSnapshotResponse } from "../models/models_0"; +import type { GetJobQueueSnapshotRequest, GetJobQueueSnapshotResponse } from "../models/models_0"; import { GetJobQueueSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/ListConsumableResourcesCommand.ts b/clients/client-batch/src/commands/ListConsumableResourcesCommand.ts index 5813ab2172b93..4df75996f8d9e 100644 --- a/clients/client-batch/src/commands/ListConsumableResourcesCommand.ts +++ b/clients/client-batch/src/commands/ListConsumableResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConsumableResourcesRequest, ListConsumableResourcesResponse } from "../models/models_0"; +import type { ListConsumableResourcesRequest, ListConsumableResourcesResponse } from "../models/models_0"; import { ListConsumableResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/ListJobsByConsumableResourceCommand.ts b/clients/client-batch/src/commands/ListJobsByConsumableResourceCommand.ts index d17bafa5092d8..b1ba2b26a5d91 100644 --- a/clients/client-batch/src/commands/ListJobsByConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/ListJobsByConsumableResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsByConsumableResourceRequest, ListJobsByConsumableResourceResponse } from "../models/models_0"; +import type { ListJobsByConsumableResourceRequest, ListJobsByConsumableResourceResponse } from "../models/models_0"; import { ListJobsByConsumableResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/ListJobsCommand.ts b/clients/client-batch/src/commands/ListJobsCommand.ts index f920801aff28f..39c0739d10239 100644 --- a/clients/client-batch/src/commands/ListJobsCommand.ts +++ b/clients/client-batch/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsRequest, ListJobsResponse } from "../models/models_0"; +import type { ListJobsRequest, ListJobsResponse } from "../models/models_0"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/ListSchedulingPoliciesCommand.ts b/clients/client-batch/src/commands/ListSchedulingPoliciesCommand.ts index 19b7112361996..346fd012b15ee 100644 --- a/clients/client-batch/src/commands/ListSchedulingPoliciesCommand.ts +++ b/clients/client-batch/src/commands/ListSchedulingPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSchedulingPoliciesRequest, ListSchedulingPoliciesResponse } from "../models/models_0"; +import type { ListSchedulingPoliciesRequest, ListSchedulingPoliciesResponse } from "../models/models_0"; import { ListSchedulingPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/ListServiceJobsCommand.ts b/clients/client-batch/src/commands/ListServiceJobsCommand.ts index 869d34983ca82..7ab6491aea628 100644 --- a/clients/client-batch/src/commands/ListServiceJobsCommand.ts +++ b/clients/client-batch/src/commands/ListServiceJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceJobsRequest, ListServiceJobsResponse } from "../models/models_0"; +import type { ListServiceJobsRequest, ListServiceJobsResponse } from "../models/models_0"; import { ListServiceJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/ListTagsForResourceCommand.ts b/clients/client-batch/src/commands/ListTagsForResourceCommand.ts index 60bc3703febea..63dd0d86843ae 100644 --- a/clients/client-batch/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-batch/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/RegisterJobDefinitionCommand.ts b/clients/client-batch/src/commands/RegisterJobDefinitionCommand.ts index 28b60091f79ac..f65e881e23599 100644 --- a/clients/client-batch/src/commands/RegisterJobDefinitionCommand.ts +++ b/clients/client-batch/src/commands/RegisterJobDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterJobDefinitionRequest, RegisterJobDefinitionResponse } from "../models/models_0"; +import type { RegisterJobDefinitionRequest, RegisterJobDefinitionResponse } from "../models/models_0"; import { RegisterJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/SubmitJobCommand.ts b/clients/client-batch/src/commands/SubmitJobCommand.ts index 845a6211d6518..c0a52a11f4a70 100644 --- a/clients/client-batch/src/commands/SubmitJobCommand.ts +++ b/clients/client-batch/src/commands/SubmitJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitJobRequest, SubmitJobResponse } from "../models/models_0"; +import type { SubmitJobRequest, SubmitJobResponse } from "../models/models_0"; import { SubmitJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/SubmitServiceJobCommand.ts b/clients/client-batch/src/commands/SubmitServiceJobCommand.ts index 02f2b2bccf45f..69761d41be661 100644 --- a/clients/client-batch/src/commands/SubmitServiceJobCommand.ts +++ b/clients/client-batch/src/commands/SubmitServiceJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitServiceJobRequest, SubmitServiceJobResponse } from "../models/models_0"; +import type { SubmitServiceJobRequest, SubmitServiceJobResponse } from "../models/models_0"; import { SubmitServiceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/TagResourceCommand.ts b/clients/client-batch/src/commands/TagResourceCommand.ts index e8afad1d3b430..a6694e994d964 100644 --- a/clients/client-batch/src/commands/TagResourceCommand.ts +++ b/clients/client-batch/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/TerminateJobCommand.ts b/clients/client-batch/src/commands/TerminateJobCommand.ts index c23c88993c394..4f34a601328d9 100644 --- a/clients/client-batch/src/commands/TerminateJobCommand.ts +++ b/clients/client-batch/src/commands/TerminateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateJobRequest, TerminateJobResponse } from "../models/models_0"; +import type { TerminateJobRequest, TerminateJobResponse } from "../models/models_0"; import { TerminateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/TerminateServiceJobCommand.ts b/clients/client-batch/src/commands/TerminateServiceJobCommand.ts index e797cd9d7ed6d..0da60dcaba42d 100644 --- a/clients/client-batch/src/commands/TerminateServiceJobCommand.ts +++ b/clients/client-batch/src/commands/TerminateServiceJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateServiceJobRequest, TerminateServiceJobResponse } from "../models/models_0"; +import type { TerminateServiceJobRequest, TerminateServiceJobResponse } from "../models/models_0"; import { TerminateServiceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/UntagResourceCommand.ts b/clients/client-batch/src/commands/UntagResourceCommand.ts index c0e837118fc0b..b4c06a520d813 100644 --- a/clients/client-batch/src/commands/UntagResourceCommand.ts +++ b/clients/client-batch/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/UpdateComputeEnvironmentCommand.ts b/clients/client-batch/src/commands/UpdateComputeEnvironmentCommand.ts index 39ff1a86682d8..107b09f1946a5 100644 --- a/clients/client-batch/src/commands/UpdateComputeEnvironmentCommand.ts +++ b/clients/client-batch/src/commands/UpdateComputeEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateComputeEnvironmentRequest, UpdateComputeEnvironmentResponse } from "../models/models_0"; +import type { UpdateComputeEnvironmentRequest, UpdateComputeEnvironmentResponse } from "../models/models_0"; import { UpdateComputeEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/UpdateConsumableResourceCommand.ts b/clients/client-batch/src/commands/UpdateConsumableResourceCommand.ts index e51aab6da3f97..7a363dc92631a 100644 --- a/clients/client-batch/src/commands/UpdateConsumableResourceCommand.ts +++ b/clients/client-batch/src/commands/UpdateConsumableResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConsumableResourceRequest, UpdateConsumableResourceResponse } from "../models/models_0"; +import type { UpdateConsumableResourceRequest, UpdateConsumableResourceResponse } from "../models/models_0"; import { UpdateConsumableResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/UpdateJobQueueCommand.ts b/clients/client-batch/src/commands/UpdateJobQueueCommand.ts index a07acfe81a1dd..7c5af5d5203f4 100644 --- a/clients/client-batch/src/commands/UpdateJobQueueCommand.ts +++ b/clients/client-batch/src/commands/UpdateJobQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateJobQueueRequest, UpdateJobQueueResponse } from "../models/models_0"; +import type { UpdateJobQueueRequest, UpdateJobQueueResponse } from "../models/models_0"; import { UpdateJobQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/UpdateSchedulingPolicyCommand.ts b/clients/client-batch/src/commands/UpdateSchedulingPolicyCommand.ts index cb9a25d0383bd..55901514de01c 100644 --- a/clients/client-batch/src/commands/UpdateSchedulingPolicyCommand.ts +++ b/clients/client-batch/src/commands/UpdateSchedulingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSchedulingPolicyRequest, UpdateSchedulingPolicyResponse } from "../models/models_0"; +import type { UpdateSchedulingPolicyRequest, UpdateSchedulingPolicyResponse } from "../models/models_0"; import { UpdateSchedulingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/commands/UpdateServiceEnvironmentCommand.ts b/clients/client-batch/src/commands/UpdateServiceEnvironmentCommand.ts index 14ec1bea1d819..8f9b8df1f12e8 100644 --- a/clients/client-batch/src/commands/UpdateServiceEnvironmentCommand.ts +++ b/clients/client-batch/src/commands/UpdateServiceEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; +import type { BatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceEnvironmentRequest, UpdateServiceEnvironmentResponse } from "../models/models_0"; +import type { UpdateServiceEnvironmentRequest, UpdateServiceEnvironmentResponse } from "../models/models_0"; import { UpdateServiceEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-batch/src/endpoint/EndpointParameters.ts b/clients/client-batch/src/endpoint/EndpointParameters.ts index 6c7f9a50a757a..c3991daa9e5ff 100644 --- a/clients/client-batch/src/endpoint/EndpointParameters.ts +++ b/clients/client-batch/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-batch/src/endpoint/endpointResolver.ts b/clients/client-batch/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-batch/src/endpoint/endpointResolver.ts +++ b/clients/client-batch/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-batch/src/extensionConfiguration.ts b/clients/client-batch/src/extensionConfiguration.ts index a6f3d3edc03f4..671b1c618be6d 100644 --- a/clients/client-batch/src/extensionConfiguration.ts +++ b/clients/client-batch/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-batch/src/models/BatchServiceException.ts b/clients/client-batch/src/models/BatchServiceException.ts index d7edec2770875..fd056c801abee 100644 --- a/clients/client-batch/src/models/BatchServiceException.ts +++ b/clients/client-batch/src/models/BatchServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-batch/src/models/errors.ts b/clients/client-batch/src/models/errors.ts index 8f3dbae560b39..2e82763d423ea 100644 --- a/clients/client-batch/src/models/errors.ts +++ b/clients/client-batch/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BatchServiceException as __BaseException } from "./BatchServiceException"; diff --git a/clients/client-batch/src/pagination/DescribeComputeEnvironmentsPaginator.ts b/clients/client-batch/src/pagination/DescribeComputeEnvironmentsPaginator.ts index 7e990ed24387f..06e525d070c76 100644 --- a/clients/client-batch/src/pagination/DescribeComputeEnvironmentsPaginator.ts +++ b/clients/client-batch/src/pagination/DescribeComputeEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchClient } from "../BatchClient"; import { diff --git a/clients/client-batch/src/pagination/DescribeJobDefinitionsPaginator.ts b/clients/client-batch/src/pagination/DescribeJobDefinitionsPaginator.ts index 7c65a8178d888..b80e8db619b1f 100644 --- a/clients/client-batch/src/pagination/DescribeJobDefinitionsPaginator.ts +++ b/clients/client-batch/src/pagination/DescribeJobDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchClient } from "../BatchClient"; import { diff --git a/clients/client-batch/src/pagination/DescribeJobQueuesPaginator.ts b/clients/client-batch/src/pagination/DescribeJobQueuesPaginator.ts index c749158266241..024d0350ae445 100644 --- a/clients/client-batch/src/pagination/DescribeJobQueuesPaginator.ts +++ b/clients/client-batch/src/pagination/DescribeJobQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchClient } from "../BatchClient"; import { diff --git a/clients/client-batch/src/pagination/DescribeServiceEnvironmentsPaginator.ts b/clients/client-batch/src/pagination/DescribeServiceEnvironmentsPaginator.ts index 69a71289b3826..2230e6bdca9e8 100644 --- a/clients/client-batch/src/pagination/DescribeServiceEnvironmentsPaginator.ts +++ b/clients/client-batch/src/pagination/DescribeServiceEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchClient } from "../BatchClient"; import { diff --git a/clients/client-batch/src/pagination/Interfaces.ts b/clients/client-batch/src/pagination/Interfaces.ts index 9f3db6f341e87..ef5d33b7433ef 100644 --- a/clients/client-batch/src/pagination/Interfaces.ts +++ b/clients/client-batch/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BatchClient } from "../BatchClient"; diff --git a/clients/client-batch/src/pagination/ListConsumableResourcesPaginator.ts b/clients/client-batch/src/pagination/ListConsumableResourcesPaginator.ts index 043c8cba6b2e9..2153b90a54e63 100644 --- a/clients/client-batch/src/pagination/ListConsumableResourcesPaginator.ts +++ b/clients/client-batch/src/pagination/ListConsumableResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchClient } from "../BatchClient"; import { diff --git a/clients/client-batch/src/pagination/ListJobsByConsumableResourcePaginator.ts b/clients/client-batch/src/pagination/ListJobsByConsumableResourcePaginator.ts index 9b0aef3993b3a..e7b362252a52c 100644 --- a/clients/client-batch/src/pagination/ListJobsByConsumableResourcePaginator.ts +++ b/clients/client-batch/src/pagination/ListJobsByConsumableResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchClient } from "../BatchClient"; import { diff --git a/clients/client-batch/src/pagination/ListJobsPaginator.ts b/clients/client-batch/src/pagination/ListJobsPaginator.ts index ed134d0111f2f..7d564951775dd 100644 --- a/clients/client-batch/src/pagination/ListJobsPaginator.ts +++ b/clients/client-batch/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchClient } from "../BatchClient"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; diff --git a/clients/client-batch/src/pagination/ListSchedulingPoliciesPaginator.ts b/clients/client-batch/src/pagination/ListSchedulingPoliciesPaginator.ts index aef2831ab3767..cc63b92cd2733 100644 --- a/clients/client-batch/src/pagination/ListSchedulingPoliciesPaginator.ts +++ b/clients/client-batch/src/pagination/ListSchedulingPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchClient } from "../BatchClient"; import { diff --git a/clients/client-batch/src/pagination/ListServiceJobsPaginator.ts b/clients/client-batch/src/pagination/ListServiceJobsPaginator.ts index b148102abdafb..00bb193f42f23 100644 --- a/clients/client-batch/src/pagination/ListServiceJobsPaginator.ts +++ b/clients/client-batch/src/pagination/ListServiceJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchClient } from "../BatchClient"; import { diff --git a/clients/client-batch/src/runtimeConfig.browser.ts b/clients/client-batch/src/runtimeConfig.browser.ts index 0b9fa7b8ce7df..d509a0e5a3c82 100644 --- a/clients/client-batch/src/runtimeConfig.browser.ts +++ b/clients/client-batch/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BatchClientConfig } from "./BatchClient"; + +import type { BatchClientConfig } from "./BatchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-batch/src/runtimeConfig.native.ts b/clients/client-batch/src/runtimeConfig.native.ts index 0d6b89604e37b..df45808a37dc2 100644 --- a/clients/client-batch/src/runtimeConfig.native.ts +++ b/clients/client-batch/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BatchClientConfig } from "./BatchClient"; +import type { BatchClientConfig } from "./BatchClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-batch/src/runtimeConfig.shared.ts b/clients/client-batch/src/runtimeConfig.shared.ts index 87d4fb8791ec8..1138317515e6f 100644 --- a/clients/client-batch/src/runtimeConfig.shared.ts +++ b/clients/client-batch/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBatchHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BatchClientConfig } from "./BatchClient"; +import type { BatchClientConfig } from "./BatchClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-batch/src/runtimeConfig.ts b/clients/client-batch/src/runtimeConfig.ts index b5372d94a9cfe..138f328dbc927 100644 --- a/clients/client-batch/src/runtimeConfig.ts +++ b/clients/client-batch/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BatchClientConfig } from "./BatchClient"; + +import type { BatchClientConfig } from "./BatchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-batch/src/runtimeExtensions.ts b/clients/client-batch/src/runtimeExtensions.ts index af3e196070d3f..f49dab4085178 100644 --- a/clients/client-batch/src/runtimeExtensions.ts +++ b/clients/client-batch/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BatchExtensionConfiguration } from "./extensionConfiguration"; +import type { BatchExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-batch/src/schemas/schemas_0.ts b/clients/client-batch/src/schemas/schemas_0.ts index 51ae5fb53abdf..3d9bddabdd15a 100644 --- a/clients/client-batch/src/schemas/schemas_0.ts +++ b/clients/client-batch/src/schemas/schemas_0.ts @@ -570,7 +570,7 @@ const n0 = "com.amazonaws.batch"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bcm-dashboards/package.json b/clients/client-bcm-dashboards/package.json index b1dd35e7d7375..a18d851ef215e 100644 --- a/clients/client-bcm-dashboards/package.json +++ b/clients/client-bcm-dashboards/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bcm-dashboards/src/BCMDashboards.ts b/clients/client-bcm-dashboards/src/BCMDashboards.ts index b483f88c39c74..9a07bd3b37f11 100644 --- a/clients/client-bcm-dashboards/src/BCMDashboards.ts +++ b/clients/client-bcm-dashboards/src/BCMDashboards.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BCMDashboardsClient, BCMDashboardsClientConfig } from "./BCMDashboardsClient"; +import { BCMDashboardsClient } from "./BCMDashboardsClient"; import { CreateDashboardCommand, CreateDashboardCommandInput, diff --git a/clients/client-bcm-dashboards/src/BCMDashboardsClient.ts b/clients/client-bcm-dashboards/src/BCMDashboardsClient.ts index fce8df68094b4..8e3af7a0eaaec 100644 --- a/clients/client-bcm-dashboards/src/BCMDashboardsClient.ts +++ b/clients/client-bcm-dashboards/src/BCMDashboardsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBCMDashboardsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "./commands/CreateDashboardCommand"; @@ -76,7 +85,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bcm-dashboards/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bcm-dashboards/src/auth/httpAuthExtensionConfiguration.ts index ef60d689002d4..5edfa49f007ad 100644 --- a/clients/client-bcm-dashboards/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bcm-dashboards/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BCMDashboardsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BCMDashboardsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bcm-dashboards/src/auth/httpAuthSchemeProvider.ts b/clients/client-bcm-dashboards/src/auth/httpAuthSchemeProvider.ts index d00a6f0054f92..3b2294c54dc27 100644 --- a/clients/client-bcm-dashboards/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bcm-dashboards/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BCMDashboardsClientConfig, BCMDashboardsClientResolvedConfig } from "../BCMDashboardsClient"; +import { type BCMDashboardsClientResolvedConfig, BCMDashboardsClientConfig } from "../BCMDashboardsClient"; /** * @internal diff --git a/clients/client-bcm-dashboards/src/commands/CreateDashboardCommand.ts b/clients/client-bcm-dashboards/src/commands/CreateDashboardCommand.ts index ff1dbdcebbc0a..9d32a27b7ee55 100644 --- a/clients/client-bcm-dashboards/src/commands/CreateDashboardCommand.ts +++ b/clients/client-bcm-dashboards/src/commands/CreateDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; +import type { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDashboardRequest, CreateDashboardResponse } from "../models/models_0"; +import type { CreateDashboardRequest, CreateDashboardResponse } from "../models/models_0"; import { CreateDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-dashboards/src/commands/DeleteDashboardCommand.ts b/clients/client-bcm-dashboards/src/commands/DeleteDashboardCommand.ts index cad136a90b9fd..2a8c765a3a0ca 100644 --- a/clients/client-bcm-dashboards/src/commands/DeleteDashboardCommand.ts +++ b/clients/client-bcm-dashboards/src/commands/DeleteDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; +import type { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDashboardRequest, DeleteDashboardResponse } from "../models/models_0"; +import type { DeleteDashboardRequest, DeleteDashboardResponse } from "../models/models_0"; import { DeleteDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-dashboards/src/commands/GetDashboardCommand.ts b/clients/client-bcm-dashboards/src/commands/GetDashboardCommand.ts index 3fca432efde07..65ba6650a4975 100644 --- a/clients/client-bcm-dashboards/src/commands/GetDashboardCommand.ts +++ b/clients/client-bcm-dashboards/src/commands/GetDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; +import type { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDashboardRequest, GetDashboardResponse } from "../models/models_0"; +import type { GetDashboardRequest, GetDashboardResponse } from "../models/models_0"; import { GetDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-dashboards/src/commands/GetResourcePolicyCommand.ts b/clients/client-bcm-dashboards/src/commands/GetResourcePolicyCommand.ts index b9a0a54e77304..5f7a101362fd7 100644 --- a/clients/client-bcm-dashboards/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-bcm-dashboards/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; +import type { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-dashboards/src/commands/ListDashboardsCommand.ts b/clients/client-bcm-dashboards/src/commands/ListDashboardsCommand.ts index 95a56d4f1421a..2ebcd92ee5097 100644 --- a/clients/client-bcm-dashboards/src/commands/ListDashboardsCommand.ts +++ b/clients/client-bcm-dashboards/src/commands/ListDashboardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; +import type { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_0"; +import type { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_0"; import { ListDashboards } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-dashboards/src/commands/ListTagsForResourceCommand.ts b/clients/client-bcm-dashboards/src/commands/ListTagsForResourceCommand.ts index b6136ee2709dd..f2c27db99aa1a 100644 --- a/clients/client-bcm-dashboards/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bcm-dashboards/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; +import type { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-dashboards/src/commands/TagResourceCommand.ts b/clients/client-bcm-dashboards/src/commands/TagResourceCommand.ts index ec6ae1d60ad4b..fecb74eb4af76 100644 --- a/clients/client-bcm-dashboards/src/commands/TagResourceCommand.ts +++ b/clients/client-bcm-dashboards/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; +import type { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-dashboards/src/commands/UntagResourceCommand.ts b/clients/client-bcm-dashboards/src/commands/UntagResourceCommand.ts index 69668f729ad59..e879132464ca0 100644 --- a/clients/client-bcm-dashboards/src/commands/UntagResourceCommand.ts +++ b/clients/client-bcm-dashboards/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; +import type { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-dashboards/src/commands/UpdateDashboardCommand.ts b/clients/client-bcm-dashboards/src/commands/UpdateDashboardCommand.ts index 08ef154fb7802..be2f7fc7a5e42 100644 --- a/clients/client-bcm-dashboards/src/commands/UpdateDashboardCommand.ts +++ b/clients/client-bcm-dashboards/src/commands/UpdateDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; +import type { BCMDashboardsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDashboardsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDashboardRequest, UpdateDashboardResponse } from "../models/models_0"; +import type { UpdateDashboardRequest, UpdateDashboardResponse } from "../models/models_0"; import { UpdateDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-dashboards/src/endpoint/EndpointParameters.ts b/clients/client-bcm-dashboards/src/endpoint/EndpointParameters.ts index 68a94d0df80f2..07fd69bc1fae6 100644 --- a/clients/client-bcm-dashboards/src/endpoint/EndpointParameters.ts +++ b/clients/client-bcm-dashboards/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bcm-dashboards/src/endpoint/endpointResolver.ts b/clients/client-bcm-dashboards/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-bcm-dashboards/src/endpoint/endpointResolver.ts +++ b/clients/client-bcm-dashboards/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bcm-dashboards/src/extensionConfiguration.ts b/clients/client-bcm-dashboards/src/extensionConfiguration.ts index d4f87f2de269b..dffe9bfa583ee 100644 --- a/clients/client-bcm-dashboards/src/extensionConfiguration.ts +++ b/clients/client-bcm-dashboards/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bcm-dashboards/src/models/BCMDashboardsServiceException.ts b/clients/client-bcm-dashboards/src/models/BCMDashboardsServiceException.ts index 4a230c3273c4e..6fe08a0f49670 100644 --- a/clients/client-bcm-dashboards/src/models/BCMDashboardsServiceException.ts +++ b/clients/client-bcm-dashboards/src/models/BCMDashboardsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bcm-dashboards/src/models/errors.ts b/clients/client-bcm-dashboards/src/models/errors.ts index 168200e2614c9..392b2ffd293d5 100644 --- a/clients/client-bcm-dashboards/src/models/errors.ts +++ b/clients/client-bcm-dashboards/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BCMDashboardsServiceException as __BaseException } from "./BCMDashboardsServiceException"; diff --git a/clients/client-bcm-dashboards/src/pagination/Interfaces.ts b/clients/client-bcm-dashboards/src/pagination/Interfaces.ts index ec68c0c1bb177..75cc7ba1f88d0 100644 --- a/clients/client-bcm-dashboards/src/pagination/Interfaces.ts +++ b/clients/client-bcm-dashboards/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BCMDashboardsClient } from "../BCMDashboardsClient"; diff --git a/clients/client-bcm-dashboards/src/pagination/ListDashboardsPaginator.ts b/clients/client-bcm-dashboards/src/pagination/ListDashboardsPaginator.ts index 966253c061afd..19be162abdc96 100644 --- a/clients/client-bcm-dashboards/src/pagination/ListDashboardsPaginator.ts +++ b/clients/client-bcm-dashboards/src/pagination/ListDashboardsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMDashboardsClient } from "../BCMDashboardsClient"; import { diff --git a/clients/client-bcm-dashboards/src/runtimeConfig.browser.ts b/clients/client-bcm-dashboards/src/runtimeConfig.browser.ts index 235874fa5e54d..ddd2f0c8c7887 100644 --- a/clients/client-bcm-dashboards/src/runtimeConfig.browser.ts +++ b/clients/client-bcm-dashboards/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BCMDashboardsClientConfig } from "./BCMDashboardsClient"; + +import type { BCMDashboardsClientConfig } from "./BCMDashboardsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bcm-dashboards/src/runtimeConfig.native.ts b/clients/client-bcm-dashboards/src/runtimeConfig.native.ts index 4742012a3cacb..6a29462ab85e7 100644 --- a/clients/client-bcm-dashboards/src/runtimeConfig.native.ts +++ b/clients/client-bcm-dashboards/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BCMDashboardsClientConfig } from "./BCMDashboardsClient"; +import type { BCMDashboardsClientConfig } from "./BCMDashboardsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bcm-dashboards/src/runtimeConfig.shared.ts b/clients/client-bcm-dashboards/src/runtimeConfig.shared.ts index 057ac0267c685..d64e677c685e8 100644 --- a/clients/client-bcm-dashboards/src/runtimeConfig.shared.ts +++ b/clients/client-bcm-dashboards/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBCMDashboardsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BCMDashboardsClientConfig } from "./BCMDashboardsClient"; +import type { BCMDashboardsClientConfig } from "./BCMDashboardsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bcm-dashboards/src/runtimeConfig.ts b/clients/client-bcm-dashboards/src/runtimeConfig.ts index e92021080798e..2870c3f02865a 100644 --- a/clients/client-bcm-dashboards/src/runtimeConfig.ts +++ b/clients/client-bcm-dashboards/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BCMDashboardsClientConfig } from "./BCMDashboardsClient"; + +import type { BCMDashboardsClientConfig } from "./BCMDashboardsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bcm-dashboards/src/runtimeExtensions.ts b/clients/client-bcm-dashboards/src/runtimeExtensions.ts index 5a7d48d92ffaa..3053d1df1757b 100644 --- a/clients/client-bcm-dashboards/src/runtimeExtensions.ts +++ b/clients/client-bcm-dashboards/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BCMDashboardsExtensionConfiguration } from "./extensionConfiguration"; +import type { BCMDashboardsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bcm-dashboards/src/schemas/schemas_0.ts b/clients/client-bcm-dashboards/src/schemas/schemas_0.ts index ebd4be6ad7b1f..310be4786ad57 100644 --- a/clients/client-bcm-dashboards/src/schemas/schemas_0.ts +++ b/clients/client-bcm-dashboards/src/schemas/schemas_0.ts @@ -114,7 +114,7 @@ const n0 = "com.amazonaws.bcmdashboards"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bcm-data-exports/package.json b/clients/client-bcm-data-exports/package.json index 50b0112e9b6de..36defcafb6bdd 100644 --- a/clients/client-bcm-data-exports/package.json +++ b/clients/client-bcm-data-exports/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bcm-data-exports/src/BCMDataExports.ts b/clients/client-bcm-data-exports/src/BCMDataExports.ts index 232df1d277372..d10ab6cb938bd 100644 --- a/clients/client-bcm-data-exports/src/BCMDataExports.ts +++ b/clients/client-bcm-data-exports/src/BCMDataExports.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BCMDataExportsClient, BCMDataExportsClientConfig } from "./BCMDataExportsClient"; +import { BCMDataExportsClient } from "./BCMDataExportsClient"; import { CreateExportCommand, CreateExportCommandInput, diff --git a/clients/client-bcm-data-exports/src/BCMDataExportsClient.ts b/clients/client-bcm-data-exports/src/BCMDataExportsClient.ts index 1a6fb3320d4cb..d40ee52f41a23 100644 --- a/clients/client-bcm-data-exports/src/BCMDataExportsClient.ts +++ b/clients/client-bcm-data-exports/src/BCMDataExportsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBCMDataExportsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateExportCommandInput, CreateExportCommandOutput } from "./commands/CreateExportCommand"; @@ -79,7 +88,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bcm-data-exports/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bcm-data-exports/src/auth/httpAuthExtensionConfiguration.ts index 3561f21a0cbf9..8e922f1669150 100644 --- a/clients/client-bcm-data-exports/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bcm-data-exports/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BCMDataExportsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BCMDataExportsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bcm-data-exports/src/auth/httpAuthSchemeProvider.ts b/clients/client-bcm-data-exports/src/auth/httpAuthSchemeProvider.ts index 9cc5c95f3e7db..14ab7a6696f11 100644 --- a/clients/client-bcm-data-exports/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bcm-data-exports/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BCMDataExportsClientConfig, BCMDataExportsClientResolvedConfig } from "../BCMDataExportsClient"; +import { type BCMDataExportsClientResolvedConfig, BCMDataExportsClientConfig } from "../BCMDataExportsClient"; /** * @internal diff --git a/clients/client-bcm-data-exports/src/commands/CreateExportCommand.ts b/clients/client-bcm-data-exports/src/commands/CreateExportCommand.ts index 800886c8ddcff..7235a17581051 100644 --- a/clients/client-bcm-data-exports/src/commands/CreateExportCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/CreateExportCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExportRequest, CreateExportResponse } from "../models/models_0"; +import type { CreateExportRequest, CreateExportResponse } from "../models/models_0"; import { CreateExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/DeleteExportCommand.ts b/clients/client-bcm-data-exports/src/commands/DeleteExportCommand.ts index 5b922ad74cc32..7aa2325a42765 100644 --- a/clients/client-bcm-data-exports/src/commands/DeleteExportCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/DeleteExportCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteExportRequest, DeleteExportResponse } from "../models/models_0"; +import type { DeleteExportRequest, DeleteExportResponse } from "../models/models_0"; import { DeleteExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/GetExecutionCommand.ts b/clients/client-bcm-data-exports/src/commands/GetExecutionCommand.ts index 386fd8442aaa9..7ef45afb67182 100644 --- a/clients/client-bcm-data-exports/src/commands/GetExecutionCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/GetExecutionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExecutionRequest, GetExecutionResponse } from "../models/models_0"; +import type { GetExecutionRequest, GetExecutionResponse } from "../models/models_0"; import { GetExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/GetExportCommand.ts b/clients/client-bcm-data-exports/src/commands/GetExportCommand.ts index feef3562cdfa3..ea6813e6ab08a 100644 --- a/clients/client-bcm-data-exports/src/commands/GetExportCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/GetExportCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExportRequest, GetExportResponse } from "../models/models_0"; +import type { GetExportRequest, GetExportResponse } from "../models/models_0"; import { GetExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/GetTableCommand.ts b/clients/client-bcm-data-exports/src/commands/GetTableCommand.ts index 860b0d9983cce..4986afd698c42 100644 --- a/clients/client-bcm-data-exports/src/commands/GetTableCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/GetTableCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableRequest, GetTableResponse } from "../models/models_0"; +import type { GetTableRequest, GetTableResponse } from "../models/models_0"; import { GetTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/ListExecutionsCommand.ts b/clients/client-bcm-data-exports/src/commands/ListExecutionsCommand.ts index aa0695cbaa69a..bdf8983e3bae3 100644 --- a/clients/client-bcm-data-exports/src/commands/ListExecutionsCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/ListExecutionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0"; +import type { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0"; import { ListExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/ListExportsCommand.ts b/clients/client-bcm-data-exports/src/commands/ListExportsCommand.ts index db19b43d852ba..5b8df3093b19c 100644 --- a/clients/client-bcm-data-exports/src/commands/ListExportsCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/ListExportsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExportsRequest, ListExportsResponse } from "../models/models_0"; +import type { ListExportsRequest, ListExportsResponse } from "../models/models_0"; import { ListExports } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/ListTablesCommand.ts b/clients/client-bcm-data-exports/src/commands/ListTablesCommand.ts index c80a6e2bf32de..84ba7f0fddb16 100644 --- a/clients/client-bcm-data-exports/src/commands/ListTablesCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/ListTablesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTablesRequest, ListTablesResponse } from "../models/models_0"; +import type { ListTablesRequest, ListTablesResponse } from "../models/models_0"; import { ListTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/ListTagsForResourceCommand.ts b/clients/client-bcm-data-exports/src/commands/ListTagsForResourceCommand.ts index c5c2e09237205..1991389b0d2eb 100644 --- a/clients/client-bcm-data-exports/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/TagResourceCommand.ts b/clients/client-bcm-data-exports/src/commands/TagResourceCommand.ts index d7cba90f2ad13..fab54926e0e31 100644 --- a/clients/client-bcm-data-exports/src/commands/TagResourceCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/UntagResourceCommand.ts b/clients/client-bcm-data-exports/src/commands/UntagResourceCommand.ts index a6cd50e60f9f0..de8c9e2ce3d5f 100644 --- a/clients/client-bcm-data-exports/src/commands/UntagResourceCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/commands/UpdateExportCommand.ts b/clients/client-bcm-data-exports/src/commands/UpdateExportCommand.ts index c3d2890fec679..d1e82e20fa34d 100644 --- a/clients/client-bcm-data-exports/src/commands/UpdateExportCommand.ts +++ b/clients/client-bcm-data-exports/src/commands/UpdateExportCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient"; +import type { + BCMDataExportsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BCMDataExportsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateExportRequest, UpdateExportResponse } from "../models/models_0"; +import type { UpdateExportRequest, UpdateExportResponse } from "../models/models_0"; import { UpdateExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-data-exports/src/endpoint/EndpointParameters.ts b/clients/client-bcm-data-exports/src/endpoint/EndpointParameters.ts index 7a63980288afc..bdf6714bd2738 100644 --- a/clients/client-bcm-data-exports/src/endpoint/EndpointParameters.ts +++ b/clients/client-bcm-data-exports/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bcm-data-exports/src/endpoint/endpointResolver.ts b/clients/client-bcm-data-exports/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-bcm-data-exports/src/endpoint/endpointResolver.ts +++ b/clients/client-bcm-data-exports/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bcm-data-exports/src/extensionConfiguration.ts b/clients/client-bcm-data-exports/src/extensionConfiguration.ts index 34b4dce1c2311..865e460ab1f91 100644 --- a/clients/client-bcm-data-exports/src/extensionConfiguration.ts +++ b/clients/client-bcm-data-exports/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bcm-data-exports/src/models/BCMDataExportsServiceException.ts b/clients/client-bcm-data-exports/src/models/BCMDataExportsServiceException.ts index dc2ef6e4d04b7..3db357fae6334 100644 --- a/clients/client-bcm-data-exports/src/models/BCMDataExportsServiceException.ts +++ b/clients/client-bcm-data-exports/src/models/BCMDataExportsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bcm-data-exports/src/models/errors.ts b/clients/client-bcm-data-exports/src/models/errors.ts index c01d76b881819..829396ff6828f 100644 --- a/clients/client-bcm-data-exports/src/models/errors.ts +++ b/clients/client-bcm-data-exports/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BCMDataExportsServiceException as __BaseException } from "./BCMDataExportsServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-bcm-data-exports/src/pagination/Interfaces.ts b/clients/client-bcm-data-exports/src/pagination/Interfaces.ts index e3324fa988793..9d9367ea51d68 100644 --- a/clients/client-bcm-data-exports/src/pagination/Interfaces.ts +++ b/clients/client-bcm-data-exports/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BCMDataExportsClient } from "../BCMDataExportsClient"; diff --git a/clients/client-bcm-data-exports/src/pagination/ListExecutionsPaginator.ts b/clients/client-bcm-data-exports/src/pagination/ListExecutionsPaginator.ts index c2c676a6ae13e..50492bff78193 100644 --- a/clients/client-bcm-data-exports/src/pagination/ListExecutionsPaginator.ts +++ b/clients/client-bcm-data-exports/src/pagination/ListExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMDataExportsClient } from "../BCMDataExportsClient"; import { diff --git a/clients/client-bcm-data-exports/src/pagination/ListExportsPaginator.ts b/clients/client-bcm-data-exports/src/pagination/ListExportsPaginator.ts index 6cdedff7c556b..942cbd3d87e4a 100644 --- a/clients/client-bcm-data-exports/src/pagination/ListExportsPaginator.ts +++ b/clients/client-bcm-data-exports/src/pagination/ListExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMDataExportsClient } from "../BCMDataExportsClient"; import { ListExportsCommand, ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand"; diff --git a/clients/client-bcm-data-exports/src/pagination/ListTablesPaginator.ts b/clients/client-bcm-data-exports/src/pagination/ListTablesPaginator.ts index fbcf74acd3524..f78ac93e8c4dd 100644 --- a/clients/client-bcm-data-exports/src/pagination/ListTablesPaginator.ts +++ b/clients/client-bcm-data-exports/src/pagination/ListTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMDataExportsClient } from "../BCMDataExportsClient"; import { ListTablesCommand, ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand"; diff --git a/clients/client-bcm-data-exports/src/runtimeConfig.browser.ts b/clients/client-bcm-data-exports/src/runtimeConfig.browser.ts index 2a22587e2f886..0aae8cb816708 100644 --- a/clients/client-bcm-data-exports/src/runtimeConfig.browser.ts +++ b/clients/client-bcm-data-exports/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BCMDataExportsClientConfig } from "./BCMDataExportsClient"; + +import type { BCMDataExportsClientConfig } from "./BCMDataExportsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bcm-data-exports/src/runtimeConfig.native.ts b/clients/client-bcm-data-exports/src/runtimeConfig.native.ts index b49058510261b..3162423f4d141 100644 --- a/clients/client-bcm-data-exports/src/runtimeConfig.native.ts +++ b/clients/client-bcm-data-exports/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BCMDataExportsClientConfig } from "./BCMDataExportsClient"; +import type { BCMDataExportsClientConfig } from "./BCMDataExportsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bcm-data-exports/src/runtimeConfig.shared.ts b/clients/client-bcm-data-exports/src/runtimeConfig.shared.ts index dd30b75e8bdc2..878e2810a177d 100644 --- a/clients/client-bcm-data-exports/src/runtimeConfig.shared.ts +++ b/clients/client-bcm-data-exports/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBCMDataExportsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BCMDataExportsClientConfig } from "./BCMDataExportsClient"; +import type { BCMDataExportsClientConfig } from "./BCMDataExportsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bcm-data-exports/src/runtimeConfig.ts b/clients/client-bcm-data-exports/src/runtimeConfig.ts index b7a609affb23c..0d8870626fd29 100644 --- a/clients/client-bcm-data-exports/src/runtimeConfig.ts +++ b/clients/client-bcm-data-exports/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BCMDataExportsClientConfig } from "./BCMDataExportsClient"; + +import type { BCMDataExportsClientConfig } from "./BCMDataExportsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bcm-data-exports/src/runtimeExtensions.ts b/clients/client-bcm-data-exports/src/runtimeExtensions.ts index 7a0d3485283d1..d81bdee36d145 100644 --- a/clients/client-bcm-data-exports/src/runtimeExtensions.ts +++ b/clients/client-bcm-data-exports/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BCMDataExportsExtensionConfiguration } from "./extensionConfiguration"; +import type { BCMDataExportsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bcm-data-exports/src/schemas/schemas_0.ts b/clients/client-bcm-data-exports/src/schemas/schemas_0.ts index 921921df01dca..f830f6028ade6 100644 --- a/clients/client-bcm-data-exports/src/schemas/schemas_0.ts +++ b/clients/client-bcm-data-exports/src/schemas/schemas_0.ts @@ -114,7 +114,7 @@ const n0 = "com.amazonaws.bcmdataexports"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bcm-pricing-calculator/package.json b/clients/client-bcm-pricing-calculator/package.json index fb86c89be6a83..990b26efacac8 100644 --- a/clients/client-bcm-pricing-calculator/package.json +++ b/clients/client-bcm-pricing-calculator/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bcm-pricing-calculator/src/BCMPricingCalculator.ts b/clients/client-bcm-pricing-calculator/src/BCMPricingCalculator.ts index 9552872af316c..a0b3b5accb014 100644 --- a/clients/client-bcm-pricing-calculator/src/BCMPricingCalculator.ts +++ b/clients/client-bcm-pricing-calculator/src/BCMPricingCalculator.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BCMPricingCalculatorClient, BCMPricingCalculatorClientConfig } from "./BCMPricingCalculatorClient"; +import { BCMPricingCalculatorClient } from "./BCMPricingCalculatorClient"; import { BatchCreateBillScenarioCommitmentModificationCommand, BatchCreateBillScenarioCommitmentModificationCommandInput, diff --git a/clients/client-bcm-pricing-calculator/src/BCMPricingCalculatorClient.ts b/clients/client-bcm-pricing-calculator/src/BCMPricingCalculatorClient.ts index fa00f42ffa4a7..b32ffdc4c19b7 100644 --- a/clients/client-bcm-pricing-calculator/src/BCMPricingCalculatorClient.ts +++ b/clients/client-bcm-pricing-calculator/src/BCMPricingCalculatorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBCMPricingCalculatorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -166,7 +175,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bcm-pricing-calculator/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bcm-pricing-calculator/src/auth/httpAuthExtensionConfiguration.ts index 63d08725fb6ce..201091ac43332 100644 --- a/clients/client-bcm-pricing-calculator/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bcm-pricing-calculator/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BCMPricingCalculatorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BCMPricingCalculatorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bcm-pricing-calculator/src/auth/httpAuthSchemeProvider.ts b/clients/client-bcm-pricing-calculator/src/auth/httpAuthSchemeProvider.ts index 8eee58d936367..6e0d646a8d4d3 100644 --- a/clients/client-bcm-pricing-calculator/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bcm-pricing-calculator/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type BCMPricingCalculatorClientResolvedConfig, BCMPricingCalculatorClientConfig, - BCMPricingCalculatorClientResolvedConfig, } from "../BCMPricingCalculatorClient"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioCommitmentModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioCommitmentModificationCommand.ts index 4d7d397e0836c..17f278b7393fb 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioCommitmentModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioCommitmentModificationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchCreateBillScenarioCommitmentModificationRequest, BatchCreateBillScenarioCommitmentModificationResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioUsageModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioUsageModificationCommand.ts index ca5cacd385d95..5667c597c674d 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioUsageModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateBillScenarioUsageModificationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchCreateBillScenarioUsageModificationRequest, BatchCreateBillScenarioUsageModificationResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateWorkloadEstimateUsageCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateWorkloadEstimateUsageCommand.ts index bda67ca53ebae..5718a71055303 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchCreateWorkloadEstimateUsageCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchCreateWorkloadEstimateUsageCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateWorkloadEstimateUsageRequest, BatchCreateWorkloadEstimateUsageResponse } from "../models/models_0"; +import type { + BatchCreateWorkloadEstimateUsageRequest, + BatchCreateWorkloadEstimateUsageResponse, +} from "../models/models_0"; import { BatchCreateWorkloadEstimateUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioCommitmentModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioCommitmentModificationCommand.ts index 5e087179e22cb..2d10056580c69 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioCommitmentModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioCommitmentModificationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchDeleteBillScenarioCommitmentModificationRequest, BatchDeleteBillScenarioCommitmentModificationResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioUsageModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioUsageModificationCommand.ts index 5c09a24707d64..d9ef3f1c7948b 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioUsageModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteBillScenarioUsageModificationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchDeleteBillScenarioUsageModificationRequest, BatchDeleteBillScenarioUsageModificationResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteWorkloadEstimateUsageCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteWorkloadEstimateUsageCommand.ts index 432f723ea8bcd..ef1ed5a4839ea 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteWorkloadEstimateUsageCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchDeleteWorkloadEstimateUsageCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteWorkloadEstimateUsageRequest, BatchDeleteWorkloadEstimateUsageResponse } from "../models/models_0"; +import type { + BatchDeleteWorkloadEstimateUsageRequest, + BatchDeleteWorkloadEstimateUsageResponse, +} from "../models/models_0"; import { BatchDeleteWorkloadEstimateUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioCommitmentModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioCommitmentModificationCommand.ts index 1a23d77d8f051..022bb1f2d787b 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioCommitmentModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioCommitmentModificationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchUpdateBillScenarioCommitmentModificationRequest, BatchUpdateBillScenarioCommitmentModificationResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioUsageModificationCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioUsageModificationCommand.ts index 8281068bff3b2..cb5f760a04e15 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioUsageModificationCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateBillScenarioUsageModificationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchUpdateBillScenarioUsageModificationRequest, BatchUpdateBillScenarioUsageModificationResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateWorkloadEstimateUsageCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateWorkloadEstimateUsageCommand.ts index 521b542dfbfcf..303d4bed93039 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateWorkloadEstimateUsageCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/BatchUpdateWorkloadEstimateUsageCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateWorkloadEstimateUsageRequest, BatchUpdateWorkloadEstimateUsageResponse } from "../models/models_0"; +import type { + BatchUpdateWorkloadEstimateUsageRequest, + BatchUpdateWorkloadEstimateUsageResponse, +} from "../models/models_0"; import { BatchUpdateWorkloadEstimateUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/CreateBillEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/CreateBillEstimateCommand.ts index 648b1fac69f93..0240c6620f420 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/CreateBillEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/CreateBillEstimateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBillEstimateRequest, CreateBillEstimateResponse } from "../models/models_0"; +import type { CreateBillEstimateRequest, CreateBillEstimateResponse } from "../models/models_0"; import { CreateBillEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/CreateBillScenarioCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/CreateBillScenarioCommand.ts index 2451fa5f59be4..84988f9ad698e 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/CreateBillScenarioCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/CreateBillScenarioCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBillScenarioRequest, CreateBillScenarioResponse } from "../models/models_0"; +import type { CreateBillScenarioRequest, CreateBillScenarioResponse } from "../models/models_0"; import { CreateBillScenario } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/CreateWorkloadEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/CreateWorkloadEstimateCommand.ts index 5b1a53baa5de6..b7f50cff8811a 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/CreateWorkloadEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/CreateWorkloadEstimateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkloadEstimateRequest, CreateWorkloadEstimateResponse } from "../models/models_0"; +import type { CreateWorkloadEstimateRequest, CreateWorkloadEstimateResponse } from "../models/models_0"; import { CreateWorkloadEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/DeleteBillEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/DeleteBillEstimateCommand.ts index bafef6fa596b0..08e357fc092b7 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/DeleteBillEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/DeleteBillEstimateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBillEstimateRequest, DeleteBillEstimateResponse } from "../models/models_0"; +import type { DeleteBillEstimateRequest, DeleteBillEstimateResponse } from "../models/models_0"; import { DeleteBillEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/DeleteBillScenarioCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/DeleteBillScenarioCommand.ts index 986aa0ec0bc50..b647004e7a9b5 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/DeleteBillScenarioCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/DeleteBillScenarioCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBillScenarioRequest, DeleteBillScenarioResponse } from "../models/models_0"; +import type { DeleteBillScenarioRequest, DeleteBillScenarioResponse } from "../models/models_0"; import { DeleteBillScenario } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/DeleteWorkloadEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/DeleteWorkloadEstimateCommand.ts index af6c6afadbf83..5cd9c01c8a782 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/DeleteWorkloadEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/DeleteWorkloadEstimateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkloadEstimateRequest, DeleteWorkloadEstimateResponse } from "../models/models_0"; +import type { DeleteWorkloadEstimateRequest, DeleteWorkloadEstimateResponse } from "../models/models_0"; import { DeleteWorkloadEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/GetBillEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/GetBillEstimateCommand.ts index 4e193b0c9f3c9..ceaf97e9d93f2 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/GetBillEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/GetBillEstimateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBillEstimateRequest, GetBillEstimateResponse } from "../models/models_0"; +import type { GetBillEstimateRequest, GetBillEstimateResponse } from "../models/models_0"; import { GetBillEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/GetBillScenarioCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/GetBillScenarioCommand.ts index 53b74eae03322..63b32ec149e4d 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/GetBillScenarioCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/GetBillScenarioCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBillScenarioRequest, GetBillScenarioResponse } from "../models/models_0"; +import type { GetBillScenarioRequest, GetBillScenarioResponse } from "../models/models_0"; import { GetBillScenario } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/GetPreferencesCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/GetPreferencesCommand.ts index 3b2f607aaef67..fa559caf81196 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/GetPreferencesCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/GetPreferencesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPreferencesRequest, GetPreferencesResponse } from "../models/models_0"; +import type { GetPreferencesRequest, GetPreferencesResponse } from "../models/models_0"; import { GetPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/GetWorkloadEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/GetWorkloadEstimateCommand.ts index afdde34ced266..46d249f3c502c 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/GetWorkloadEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/GetWorkloadEstimateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkloadEstimateRequest, GetWorkloadEstimateResponse } from "../models/models_0"; +import type { GetWorkloadEstimateRequest, GetWorkloadEstimateResponse } from "../models/models_0"; import { GetWorkloadEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateCommitmentsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateCommitmentsCommand.ts index 2428c168654ea..0622c91ad54c9 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateCommitmentsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateCommitmentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBillEstimateCommitmentsRequest, ListBillEstimateCommitmentsResponse } from "../models/models_0"; +import type { ListBillEstimateCommitmentsRequest, ListBillEstimateCommitmentsResponse } from "../models/models_0"; import { ListBillEstimateCommitments } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputCommitmentModificationsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputCommitmentModificationsCommand.ts index a60ecdcdaef79..c1bc893b0666a 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputCommitmentModificationsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputCommitmentModificationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListBillEstimateInputCommitmentModificationsRequest, ListBillEstimateInputCommitmentModificationsResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputUsageModificationsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputUsageModificationsCommand.ts index ae6d5b2537f2b..c26972d4fc78c 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputUsageModificationsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateInputUsageModificationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListBillEstimateInputUsageModificationsRequest, ListBillEstimateInputUsageModificationsResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateLineItemsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateLineItemsCommand.ts index 252417f2ba50c..4065c7708b14d 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateLineItemsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimateLineItemsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBillEstimateLineItemsRequest, ListBillEstimateLineItemsResponse } from "../models/models_0"; +import type { ListBillEstimateLineItemsRequest, ListBillEstimateLineItemsResponse } from "../models/models_0"; import { ListBillEstimateLineItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimatesCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimatesCommand.ts index 7ed3cb77a1faf..d528a7dcb1978 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimatesCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillEstimatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBillEstimatesRequest, ListBillEstimatesResponse } from "../models/models_0"; +import type { ListBillEstimatesRequest, ListBillEstimatesResponse } from "../models/models_0"; import { ListBillEstimates } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioCommitmentModificationsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioCommitmentModificationsCommand.ts index f06bc7297c6e8..f7995bb68cc9d 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioCommitmentModificationsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioCommitmentModificationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListBillScenarioCommitmentModificationsRequest, ListBillScenarioCommitmentModificationsResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioUsageModificationsCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioUsageModificationsCommand.ts index 8cbc96c266c92..7dba4931146b0 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioUsageModificationsCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenarioUsageModificationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListBillScenarioUsageModificationsRequest, ListBillScenarioUsageModificationsResponse, } from "../models/models_0"; diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenariosCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenariosCommand.ts index f65aefcdf23ad..6168e23eda3bf 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListBillScenariosCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListBillScenariosCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBillScenariosRequest, ListBillScenariosResponse } from "../models/models_0"; +import type { ListBillScenariosRequest, ListBillScenariosResponse } from "../models/models_0"; import { ListBillScenarios } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListTagsForResourceCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListTagsForResourceCommand.ts index 6f776488c0f26..0d175b1fed07d 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimateUsageCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimateUsageCommand.ts index ea6137cd0591c..e5ac87bc618f2 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimateUsageCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimateUsageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkloadEstimateUsageRequest, ListWorkloadEstimateUsageResponse } from "../models/models_0"; +import type { ListWorkloadEstimateUsageRequest, ListWorkloadEstimateUsageResponse } from "../models/models_0"; import { ListWorkloadEstimateUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimatesCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimatesCommand.ts index 6081b7b4dab51..83e6055159fc4 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimatesCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/ListWorkloadEstimatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkloadEstimatesRequest, ListWorkloadEstimatesResponse } from "../models/models_0"; +import type { ListWorkloadEstimatesRequest, ListWorkloadEstimatesResponse } from "../models/models_0"; import { ListWorkloadEstimates } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/TagResourceCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/TagResourceCommand.ts index 74a5e2b423ad7..cc1d113a1e5a1 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/TagResourceCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/UntagResourceCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UntagResourceCommand.ts index 51b9a97c4ffb3..a7b3057d7b4cb 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UntagResourceCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/UpdateBillEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UpdateBillEstimateCommand.ts index 52ff51cbe7ae8..594ee1de0fb0b 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UpdateBillEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UpdateBillEstimateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBillEstimateRequest, UpdateBillEstimateResponse } from "../models/models_0"; +import type { UpdateBillEstimateRequest, UpdateBillEstimateResponse } from "../models/models_0"; import { UpdateBillEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/UpdateBillScenarioCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UpdateBillScenarioCommand.ts index 97e631d584362..e2fb7175c66fd 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UpdateBillScenarioCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UpdateBillScenarioCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBillScenarioRequest, UpdateBillScenarioResponse } from "../models/models_0"; +import type { UpdateBillScenarioRequest, UpdateBillScenarioResponse } from "../models/models_0"; import { UpdateBillScenario } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/UpdatePreferencesCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UpdatePreferencesCommand.ts index fa8cd50516baf..977a8b857a52d 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UpdatePreferencesCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UpdatePreferencesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePreferencesRequest, UpdatePreferencesResponse } from "../models/models_0"; +import type { UpdatePreferencesRequest, UpdatePreferencesResponse } from "../models/models_0"; import { UpdatePreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/commands/UpdateWorkloadEstimateCommand.ts b/clients/client-bcm-pricing-calculator/src/commands/UpdateWorkloadEstimateCommand.ts index e086add562353..01bfbf4e509a9 100644 --- a/clients/client-bcm-pricing-calculator/src/commands/UpdateWorkloadEstimateCommand.ts +++ b/clients/client-bcm-pricing-calculator/src/commands/UpdateWorkloadEstimateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMPricingCalculatorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMPricingCalculatorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkloadEstimateRequest, UpdateWorkloadEstimateResponse } from "../models/models_0"; +import type { UpdateWorkloadEstimateRequest, UpdateWorkloadEstimateResponse } from "../models/models_0"; import { UpdateWorkloadEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-pricing-calculator/src/endpoint/EndpointParameters.ts b/clients/client-bcm-pricing-calculator/src/endpoint/EndpointParameters.ts index d8b1bade85a08..01d540ced743b 100644 --- a/clients/client-bcm-pricing-calculator/src/endpoint/EndpointParameters.ts +++ b/clients/client-bcm-pricing-calculator/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bcm-pricing-calculator/src/endpoint/endpointResolver.ts b/clients/client-bcm-pricing-calculator/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-bcm-pricing-calculator/src/endpoint/endpointResolver.ts +++ b/clients/client-bcm-pricing-calculator/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bcm-pricing-calculator/src/extensionConfiguration.ts b/clients/client-bcm-pricing-calculator/src/extensionConfiguration.ts index 0108eb8a483d7..c9e89ddac8800 100644 --- a/clients/client-bcm-pricing-calculator/src/extensionConfiguration.ts +++ b/clients/client-bcm-pricing-calculator/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bcm-pricing-calculator/src/models/BCMPricingCalculatorServiceException.ts b/clients/client-bcm-pricing-calculator/src/models/BCMPricingCalculatorServiceException.ts index ff439d995c5d8..77dcfc2b5b966 100644 --- a/clients/client-bcm-pricing-calculator/src/models/BCMPricingCalculatorServiceException.ts +++ b/clients/client-bcm-pricing-calculator/src/models/BCMPricingCalculatorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bcm-pricing-calculator/src/models/errors.ts b/clients/client-bcm-pricing-calculator/src/models/errors.ts index 810147dc21639..a3601d616c9a8 100644 --- a/clients/client-bcm-pricing-calculator/src/models/errors.ts +++ b/clients/client-bcm-pricing-calculator/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BCMPricingCalculatorServiceException as __BaseException } from "./BCMPricingCalculatorServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-bcm-pricing-calculator/src/pagination/Interfaces.ts b/clients/client-bcm-pricing-calculator/src/pagination/Interfaces.ts index 1024131047174..7a3d3df34a91e 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/Interfaces.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateCommitmentsPaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateCommitmentsPaginator.ts index 995c4f8fbc854..1c8903c54211a 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateCommitmentsPaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateCommitmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateInputCommitmentModificationsPaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateInputCommitmentModificationsPaginator.ts index f856ae4eab2e1..e6eb54ce7e8e1 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateInputCommitmentModificationsPaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateInputCommitmentModificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateInputUsageModificationsPaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateInputUsageModificationsPaginator.ts index 2645cdb4acd7b..e4616a7d06b2e 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateInputUsageModificationsPaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateInputUsageModificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateLineItemsPaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateLineItemsPaginator.ts index ea479eff27829..b7f08a0125498 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateLineItemsPaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimateLineItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimatesPaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimatesPaginator.ts index 99d3721980eec..794cfac3834b5 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimatesPaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListBillEstimatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenarioCommitmentModificationsPaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenarioCommitmentModificationsPaginator.ts index 1759a760e22a9..a48abaf4036d6 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenarioCommitmentModificationsPaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenarioCommitmentModificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenarioUsageModificationsPaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenarioUsageModificationsPaginator.ts index 367d56cad7a65..6c418a2d22b1a 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenarioUsageModificationsPaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenarioUsageModificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenariosPaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenariosPaginator.ts index 61294c65a82dc..171c9f5895884 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenariosPaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListBillScenariosPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListWorkloadEstimateUsagePaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListWorkloadEstimateUsagePaginator.ts index 5ee0deedee0ec..85f3e381aba3d 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListWorkloadEstimateUsagePaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListWorkloadEstimateUsagePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/pagination/ListWorkloadEstimatesPaginator.ts b/clients/client-bcm-pricing-calculator/src/pagination/ListWorkloadEstimatesPaginator.ts index 7f9f15c8441dc..d4dc428fadc9b 100644 --- a/clients/client-bcm-pricing-calculator/src/pagination/ListWorkloadEstimatesPaginator.ts +++ b/clients/client-bcm-pricing-calculator/src/pagination/ListWorkloadEstimatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMPricingCalculatorClient } from "../BCMPricingCalculatorClient"; import { diff --git a/clients/client-bcm-pricing-calculator/src/runtimeConfig.browser.ts b/clients/client-bcm-pricing-calculator/src/runtimeConfig.browser.ts index 6da3185e464e5..bf46a7abe1a47 100644 --- a/clients/client-bcm-pricing-calculator/src/runtimeConfig.browser.ts +++ b/clients/client-bcm-pricing-calculator/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BCMPricingCalculatorClientConfig } from "./BCMPricingCalculatorClient"; + +import type { BCMPricingCalculatorClientConfig } from "./BCMPricingCalculatorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bcm-pricing-calculator/src/runtimeConfig.native.ts b/clients/client-bcm-pricing-calculator/src/runtimeConfig.native.ts index 2526e31ba856e..fd95d20545637 100644 --- a/clients/client-bcm-pricing-calculator/src/runtimeConfig.native.ts +++ b/clients/client-bcm-pricing-calculator/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BCMPricingCalculatorClientConfig } from "./BCMPricingCalculatorClient"; +import type { BCMPricingCalculatorClientConfig } from "./BCMPricingCalculatorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bcm-pricing-calculator/src/runtimeConfig.shared.ts b/clients/client-bcm-pricing-calculator/src/runtimeConfig.shared.ts index 582e579984ba2..28a9ed494ae78 100644 --- a/clients/client-bcm-pricing-calculator/src/runtimeConfig.shared.ts +++ b/clients/client-bcm-pricing-calculator/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBCMPricingCalculatorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BCMPricingCalculatorClientConfig } from "./BCMPricingCalculatorClient"; +import type { BCMPricingCalculatorClientConfig } from "./BCMPricingCalculatorClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bcm-pricing-calculator/src/runtimeConfig.ts b/clients/client-bcm-pricing-calculator/src/runtimeConfig.ts index 02ef74b782ab4..baa23121efdf8 100644 --- a/clients/client-bcm-pricing-calculator/src/runtimeConfig.ts +++ b/clients/client-bcm-pricing-calculator/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BCMPricingCalculatorClientConfig } from "./BCMPricingCalculatorClient"; + +import type { BCMPricingCalculatorClientConfig } from "./BCMPricingCalculatorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bcm-pricing-calculator/src/runtimeExtensions.ts b/clients/client-bcm-pricing-calculator/src/runtimeExtensions.ts index 1fcfb489c2913..7e11d4a4afe09 100644 --- a/clients/client-bcm-pricing-calculator/src/runtimeExtensions.ts +++ b/clients/client-bcm-pricing-calculator/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BCMPricingCalculatorExtensionConfiguration } from "./extensionConfiguration"; +import type { BCMPricingCalculatorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bcm-pricing-calculator/src/schemas/schemas_0.ts b/clients/client-bcm-pricing-calculator/src/schemas/schemas_0.ts index 985ddeb12d4bb..9986dbc71c49e 100644 --- a/clients/client-bcm-pricing-calculator/src/schemas/schemas_0.ts +++ b/clients/client-bcm-pricing-calculator/src/schemas/schemas_0.ts @@ -321,7 +321,7 @@ const n0 = "com.amazonaws.bcmpricingcalculator"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bcm-recommended-actions/package.json b/clients/client-bcm-recommended-actions/package.json index b301223b3ada1..ef81cff0334cb 100644 --- a/clients/client-bcm-recommended-actions/package.json +++ b/clients/client-bcm-recommended-actions/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bcm-recommended-actions/src/BCMRecommendedActions.ts b/clients/client-bcm-recommended-actions/src/BCMRecommendedActions.ts index 929212c8d7ce2..ea1a842ee19fa 100644 --- a/clients/client-bcm-recommended-actions/src/BCMRecommendedActions.ts +++ b/clients/client-bcm-recommended-actions/src/BCMRecommendedActions.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BCMRecommendedActionsClient, BCMRecommendedActionsClientConfig } from "./BCMRecommendedActionsClient"; +import { BCMRecommendedActionsClient } from "./BCMRecommendedActionsClient"; import { ListRecommendedActionsCommand, ListRecommendedActionsCommandInput, diff --git a/clients/client-bcm-recommended-actions/src/BCMRecommendedActionsClient.ts b/clients/client-bcm-recommended-actions/src/BCMRecommendedActionsClient.ts index 64ea0c7601b05..8dd3d18b78b7a 100644 --- a/clients/client-bcm-recommended-actions/src/BCMRecommendedActionsClient.ts +++ b/clients/client-bcm-recommended-actions/src/BCMRecommendedActionsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBCMRecommendedActionsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -68,7 +77,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bcm-recommended-actions/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bcm-recommended-actions/src/auth/httpAuthExtensionConfiguration.ts index b92e7ff838498..eeb298b693a94 100644 --- a/clients/client-bcm-recommended-actions/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bcm-recommended-actions/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BCMRecommendedActionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BCMRecommendedActionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bcm-recommended-actions/src/auth/httpAuthSchemeProvider.ts b/clients/client-bcm-recommended-actions/src/auth/httpAuthSchemeProvider.ts index 0abe568eb8813..c9f18f40c5558 100644 --- a/clients/client-bcm-recommended-actions/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bcm-recommended-actions/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type BCMRecommendedActionsClientResolvedConfig, BCMRecommendedActionsClientConfig, - BCMRecommendedActionsClientResolvedConfig, } from "../BCMRecommendedActionsClient"; /** diff --git a/clients/client-bcm-recommended-actions/src/commands/ListRecommendedActionsCommand.ts b/clients/client-bcm-recommended-actions/src/commands/ListRecommendedActionsCommand.ts index 09af8f3edbc2a..3f543836c1f48 100644 --- a/clients/client-bcm-recommended-actions/src/commands/ListRecommendedActionsCommand.ts +++ b/clients/client-bcm-recommended-actions/src/commands/ListRecommendedActionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BCMRecommendedActionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BCMRecommendedActionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendedActionsRequest, ListRecommendedActionsResponse } from "../models/models_0"; +import type { ListRecommendedActionsRequest, ListRecommendedActionsResponse } from "../models/models_0"; import { ListRecommendedActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bcm-recommended-actions/src/endpoint/EndpointParameters.ts b/clients/client-bcm-recommended-actions/src/endpoint/EndpointParameters.ts index 4e3d9d50c1db6..c233fcd7d4e7d 100644 --- a/clients/client-bcm-recommended-actions/src/endpoint/EndpointParameters.ts +++ b/clients/client-bcm-recommended-actions/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bcm-recommended-actions/src/endpoint/endpointResolver.ts b/clients/client-bcm-recommended-actions/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-bcm-recommended-actions/src/endpoint/endpointResolver.ts +++ b/clients/client-bcm-recommended-actions/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bcm-recommended-actions/src/extensionConfiguration.ts b/clients/client-bcm-recommended-actions/src/extensionConfiguration.ts index 220e8d84f5587..9cde227ff1f3f 100644 --- a/clients/client-bcm-recommended-actions/src/extensionConfiguration.ts +++ b/clients/client-bcm-recommended-actions/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bcm-recommended-actions/src/models/BCMRecommendedActionsServiceException.ts b/clients/client-bcm-recommended-actions/src/models/BCMRecommendedActionsServiceException.ts index b6bb61f5ca6b3..c309389820e35 100644 --- a/clients/client-bcm-recommended-actions/src/models/BCMRecommendedActionsServiceException.ts +++ b/clients/client-bcm-recommended-actions/src/models/BCMRecommendedActionsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bcm-recommended-actions/src/models/errors.ts b/clients/client-bcm-recommended-actions/src/models/errors.ts index f98c238404a76..975ba4a101f30 100644 --- a/clients/client-bcm-recommended-actions/src/models/errors.ts +++ b/clients/client-bcm-recommended-actions/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BCMRecommendedActionsServiceException as __BaseException } from "./BCMRecommendedActionsServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-bcm-recommended-actions/src/pagination/Interfaces.ts b/clients/client-bcm-recommended-actions/src/pagination/Interfaces.ts index b8f4435a8d6ed..685611f15da0e 100644 --- a/clients/client-bcm-recommended-actions/src/pagination/Interfaces.ts +++ b/clients/client-bcm-recommended-actions/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BCMRecommendedActionsClient } from "../BCMRecommendedActionsClient"; diff --git a/clients/client-bcm-recommended-actions/src/pagination/ListRecommendedActionsPaginator.ts b/clients/client-bcm-recommended-actions/src/pagination/ListRecommendedActionsPaginator.ts index 9b3d4ae6b0668..c5eea6938fd66 100644 --- a/clients/client-bcm-recommended-actions/src/pagination/ListRecommendedActionsPaginator.ts +++ b/clients/client-bcm-recommended-actions/src/pagination/ListRecommendedActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BCMRecommendedActionsClient } from "../BCMRecommendedActionsClient"; import { diff --git a/clients/client-bcm-recommended-actions/src/runtimeConfig.browser.ts b/clients/client-bcm-recommended-actions/src/runtimeConfig.browser.ts index fc4a921df09f1..b9f92516444a0 100644 --- a/clients/client-bcm-recommended-actions/src/runtimeConfig.browser.ts +++ b/clients/client-bcm-recommended-actions/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BCMRecommendedActionsClientConfig } from "./BCMRecommendedActionsClient"; + +import type { BCMRecommendedActionsClientConfig } from "./BCMRecommendedActionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bcm-recommended-actions/src/runtimeConfig.native.ts b/clients/client-bcm-recommended-actions/src/runtimeConfig.native.ts index 5d681d600ac3a..b3654a1fdc640 100644 --- a/clients/client-bcm-recommended-actions/src/runtimeConfig.native.ts +++ b/clients/client-bcm-recommended-actions/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BCMRecommendedActionsClientConfig } from "./BCMRecommendedActionsClient"; +import type { BCMRecommendedActionsClientConfig } from "./BCMRecommendedActionsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bcm-recommended-actions/src/runtimeConfig.shared.ts b/clients/client-bcm-recommended-actions/src/runtimeConfig.shared.ts index 79d28ddc7d98d..ed5120620759c 100644 --- a/clients/client-bcm-recommended-actions/src/runtimeConfig.shared.ts +++ b/clients/client-bcm-recommended-actions/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBCMRecommendedActionsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BCMRecommendedActionsClientConfig } from "./BCMRecommendedActionsClient"; +import type { BCMRecommendedActionsClientConfig } from "./BCMRecommendedActionsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bcm-recommended-actions/src/runtimeConfig.ts b/clients/client-bcm-recommended-actions/src/runtimeConfig.ts index 1e14cf2616882..7f651ad852a61 100644 --- a/clients/client-bcm-recommended-actions/src/runtimeConfig.ts +++ b/clients/client-bcm-recommended-actions/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BCMRecommendedActionsClientConfig } from "./BCMRecommendedActionsClient"; + +import type { BCMRecommendedActionsClientConfig } from "./BCMRecommendedActionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bcm-recommended-actions/src/runtimeExtensions.ts b/clients/client-bcm-recommended-actions/src/runtimeExtensions.ts index c739bbada1742..ed44b42c03462 100644 --- a/clients/client-bcm-recommended-actions/src/runtimeExtensions.ts +++ b/clients/client-bcm-recommended-actions/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BCMRecommendedActionsExtensionConfiguration } from "./extensionConfiguration"; +import type { BCMRecommendedActionsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bcm-recommended-actions/src/schemas/schemas_0.ts b/clients/client-bcm-recommended-actions/src/schemas/schemas_0.ts index e19b4f4e6e842..50580960283ac 100644 --- a/clients/client-bcm-recommended-actions/src/schemas/schemas_0.ts +++ b/clients/client-bcm-recommended-actions/src/schemas/schemas_0.ts @@ -42,7 +42,7 @@ const n0 = "com.amazonaws.bcmrecommendedactions"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bedrock-agent-runtime/package.json b/clients/client-bedrock-agent-runtime/package.json index 8cbddcd9161dc..93fcbd0b376db 100644 --- a/clients/client-bedrock-agent-runtime/package.json +++ b/clients/client-bedrock-agent-runtime/package.json @@ -32,7 +32,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -40,21 +40,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bedrock-agent-runtime/src/BedrockAgentRuntime.ts b/clients/client-bedrock-agent-runtime/src/BedrockAgentRuntime.ts index af76e59859e9f..016ffb98e7126 100644 --- a/clients/client-bedrock-agent-runtime/src/BedrockAgentRuntime.ts +++ b/clients/client-bedrock-agent-runtime/src/BedrockAgentRuntime.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BedrockAgentRuntimeClient, BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient"; +import { BedrockAgentRuntimeClient } from "./BedrockAgentRuntimeClient"; import { CreateInvocationCommand, CreateInvocationCommandInput, diff --git a/clients/client-bedrock-agent-runtime/src/BedrockAgentRuntimeClient.ts b/clients/client-bedrock-agent-runtime/src/BedrockAgentRuntimeClient.ts index f6f3a57aea609..f0acce5a4a01c 100644 --- a/clients/client-bedrock-agent-runtime/src/BedrockAgentRuntimeClient.ts +++ b/clients/client-bedrock-agent-runtime/src/BedrockAgentRuntimeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBedrockAgentRuntimeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateInvocationCommandInput, CreateInvocationCommandOutput } from "./commands/CreateInvocationCommand"; @@ -119,7 +128,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bedrock-agent-runtime/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bedrock-agent-runtime/src/auth/httpAuthExtensionConfiguration.ts index aa33a0a3cd42d..2ad7319e1366c 100644 --- a/clients/client-bedrock-agent-runtime/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bedrock-agent-runtime/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BedrockAgentRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BedrockAgentRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bedrock-agent-runtime/src/auth/httpAuthSchemeProvider.ts b/clients/client-bedrock-agent-runtime/src/auth/httpAuthSchemeProvider.ts index 0dd073da80c12..80c076b48e87f 100644 --- a/clients/client-bedrock-agent-runtime/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bedrock-agent-runtime/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BedrockAgentRuntimeClientConfig, BedrockAgentRuntimeClientResolvedConfig } from "../BedrockAgentRuntimeClient"; +import { + type BedrockAgentRuntimeClientResolvedConfig, + BedrockAgentRuntimeClientConfig, +} from "../BedrockAgentRuntimeClient"; /** * @internal diff --git a/clients/client-bedrock-agent-runtime/src/commands/CreateInvocationCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/CreateInvocationCommand.ts index 1323958f33853..87619ae8c75d6 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/CreateInvocationCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/CreateInvocationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInvocationRequest, CreateInvocationResponse } from "../models/models_0"; +import type { CreateInvocationRequest, CreateInvocationResponse } from "../models/models_0"; import { CreateInvocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/CreateSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/CreateSessionCommand.ts index c464455b1375e..5bd5f2ce06283 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/CreateSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/CreateSessionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSessionRequest, CreateSessionResponse } from "../models/models_0"; +import type { CreateSessionRequest, CreateSessionResponse } from "../models/models_0"; import { CreateSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/DeleteAgentMemoryCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/DeleteAgentMemoryCommand.ts index 9d9ea6b4af5ac..b4db891d29863 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/DeleteAgentMemoryCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/DeleteAgentMemoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAgentMemoryRequest, DeleteAgentMemoryResponse } from "../models/models_0"; +import type { DeleteAgentMemoryRequest, DeleteAgentMemoryResponse } from "../models/models_0"; import { DeleteAgentMemory } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/DeleteSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/DeleteSessionCommand.ts index 0e94487a907e3..15b83e022cf6c 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/DeleteSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/DeleteSessionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0"; +import type { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0"; import { DeleteSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/EndSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/EndSessionCommand.ts index 3d9d0f10b82ec..07bab68a4eb7a 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/EndSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/EndSessionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EndSessionRequest, EndSessionResponse } from "../models/models_0"; +import type { EndSessionRequest, EndSessionResponse } from "../models/models_0"; import { EndSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/GenerateQueryCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GenerateQueryCommand.ts index c6b8a1df57ed0..bdd8e7d7044d5 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GenerateQueryCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GenerateQueryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateQueryRequest, GenerateQueryResponse } from "../models/models_0"; +import type { GenerateQueryRequest, GenerateQueryResponse } from "../models/models_0"; import { GenerateQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/GetAgentMemoryCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GetAgentMemoryCommand.ts index ab9aef5e0b859..6ab5d1d097165 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GetAgentMemoryCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GetAgentMemoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentMemoryRequest, GetAgentMemoryResponse } from "../models/models_0"; +import type { GetAgentMemoryRequest, GetAgentMemoryResponse } from "../models/models_0"; import { GetAgentMemory } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/GetExecutionFlowSnapshotCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GetExecutionFlowSnapshotCommand.ts index b9a1ff8c289cf..cab3536872047 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GetExecutionFlowSnapshotCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GetExecutionFlowSnapshotCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExecutionFlowSnapshotRequest, GetExecutionFlowSnapshotResponse } from "../models/models_0"; +import type { GetExecutionFlowSnapshotRequest, GetExecutionFlowSnapshotResponse } from "../models/models_0"; import { GetExecutionFlowSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/GetFlowExecutionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GetFlowExecutionCommand.ts index d1bb83ebe7876..b554c73473667 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GetFlowExecutionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GetFlowExecutionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFlowExecutionRequest, GetFlowExecutionResponse } from "../models/models_0"; +import type { GetFlowExecutionRequest, GetFlowExecutionResponse } from "../models/models_0"; import { GetFlowExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/GetInvocationStepCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GetInvocationStepCommand.ts index b53df637f8e67..8c50226e7640f 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GetInvocationStepCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GetInvocationStepCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInvocationStepRequest, GetInvocationStepResponse } from "../models/models_0"; +import type { GetInvocationStepRequest, GetInvocationStepResponse } from "../models/models_0"; import { GetInvocationStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/GetSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/GetSessionCommand.ts index 5edfb40f9e93d..6df4a09c1b302 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/GetSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/GetSessionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_0"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_0"; import { GetSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/InvokeAgentCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/InvokeAgentCommand.ts index 092ae5b1c5b42..e43ac2fe7656f 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/InvokeAgentCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/InvokeAgentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeAgentRequest, InvokeAgentResponse } from "../models/models_0"; +import type { InvokeAgentRequest, InvokeAgentResponse } from "../models/models_0"; import { InvokeAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/InvokeFlowCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/InvokeFlowCommand.ts index d09481448b601..b5ce85713f29d 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/InvokeFlowCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/InvokeFlowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeFlowRequest, InvokeFlowResponse } from "../models/models_0"; +import type { InvokeFlowRequest, InvokeFlowResponse } from "../models/models_0"; import { InvokeFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/InvokeInlineAgentCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/InvokeInlineAgentCommand.ts index a385c37ac754d..30e5a5b0f7709 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/InvokeInlineAgentCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/InvokeInlineAgentCommand.ts @@ -1,16 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeInlineAgentResponse } from "../models/models_0"; -import { InvokeInlineAgentRequest } from "../models/models_1"; +import type { InvokeInlineAgentResponse } from "../models/models_0"; +import type { InvokeInlineAgentRequest } from "../models/models_1"; import { InvokeInlineAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListFlowExecutionEventsCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListFlowExecutionEventsCommand.ts index a9a1589371c9f..79f675ba8bbd4 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListFlowExecutionEventsCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListFlowExecutionEventsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowExecutionEventsRequest, ListFlowExecutionEventsResponse } from "../models/models_0"; +import type { ListFlowExecutionEventsRequest, ListFlowExecutionEventsResponse } from "../models/models_0"; import { ListFlowExecutionEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListFlowExecutionsCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListFlowExecutionsCommand.ts index 293fdacca8436..223ce2381f85b 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListFlowExecutionsCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListFlowExecutionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowExecutionsRequest, ListFlowExecutionsResponse } from "../models/models_0"; +import type { ListFlowExecutionsRequest, ListFlowExecutionsResponse } from "../models/models_0"; import { ListFlowExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListInvocationStepsCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListInvocationStepsCommand.ts index 7c2ea42cb4f51..e591dc8f8951d 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListInvocationStepsCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListInvocationStepsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInvocationStepsRequest, ListInvocationStepsResponse } from "../models/models_0"; +import type { ListInvocationStepsRequest, ListInvocationStepsResponse } from "../models/models_0"; import { ListInvocationSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListInvocationsCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListInvocationsCommand.ts index 4c05fa0faf482..7df48f87e7cc0 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListInvocationsCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListInvocationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInvocationsRequest, ListInvocationsResponse } from "../models/models_0"; +import type { ListInvocationsRequest, ListInvocationsResponse } from "../models/models_0"; import { ListInvocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListSessionsCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListSessionsCommand.ts index ed057cf52ae38..78f9be66c0726 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListSessionsCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListSessionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; +import type { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; import { ListSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/ListTagsForResourceCommand.ts index d673d1a231e5c..a8e6da9a414bb 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/OptimizePromptCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/OptimizePromptCommand.ts index 37fe111785056..ae8256a7f44d5 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/OptimizePromptCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/OptimizePromptCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OptimizePromptRequest, OptimizePromptResponse } from "../models/models_0"; +import type { OptimizePromptRequest, OptimizePromptResponse } from "../models/models_0"; import { OptimizePrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/PutInvocationStepCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/PutInvocationStepCommand.ts index ae5bdcfbd2a44..dcd7ca86ba86a 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/PutInvocationStepCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/PutInvocationStepCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutInvocationStepRequest, PutInvocationStepResponse } from "../models/models_0"; +import type { PutInvocationStepRequest, PutInvocationStepResponse } from "../models/models_0"; import { PutInvocationStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/RerankCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/RerankCommand.ts index d4d26bfd3482a..c50def0fda700 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/RerankCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/RerankCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RerankRequest, RerankResponse } from "../models/models_0"; +import type { RerankRequest, RerankResponse } from "../models/models_0"; import { Rerank } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateCommand.ts index 1a55d39228137..e173c48020eab 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetrieveAndGenerateRequest, RetrieveAndGenerateResponse } from "../models/models_0"; +import type { RetrieveAndGenerateRequest, RetrieveAndGenerateResponse } from "../models/models_0"; import { RetrieveAndGenerate } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateStreamCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateStreamCommand.ts index 442aaae8381e7..45615afa6eb43 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateStreamCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/RetrieveAndGenerateStreamCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetrieveAndGenerateStreamRequest, RetrieveAndGenerateStreamResponse } from "../models/models_0"; +import type { RetrieveAndGenerateStreamRequest, RetrieveAndGenerateStreamResponse } from "../models/models_0"; import { RetrieveAndGenerateStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/RetrieveCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/RetrieveCommand.ts index 7dcef44ab318a..76af03ceac98d 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/RetrieveCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/RetrieveCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetrieveRequest, RetrieveResponse } from "../models/models_0"; +import type { RetrieveRequest, RetrieveResponse } from "../models/models_0"; import { Retrieve } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/StartFlowExecutionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/StartFlowExecutionCommand.ts index 94a78e2354067..df814e75ec907 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/StartFlowExecutionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/StartFlowExecutionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFlowExecutionRequest, StartFlowExecutionResponse } from "../models/models_0"; +import type { StartFlowExecutionRequest, StartFlowExecutionResponse } from "../models/models_0"; import { StartFlowExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/StopFlowExecutionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/StopFlowExecutionCommand.ts index 35faf27a78905..8c4526e5f31b7 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/StopFlowExecutionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/StopFlowExecutionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopFlowExecutionRequest, StopFlowExecutionResponse } from "../models/models_0"; +import type { StopFlowExecutionRequest, StopFlowExecutionResponse } from "../models/models_0"; import { StopFlowExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/TagResourceCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/TagResourceCommand.ts index 6668418d7266d..70eedf023ddd1 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/UntagResourceCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/UntagResourceCommand.ts index b3b6ba0f14984..8d0889ccb9794 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/commands/UpdateSessionCommand.ts b/clients/client-bedrock-agent-runtime/src/commands/UpdateSessionCommand.ts index 77765acf2cebd..9c80770f8add4 100644 --- a/clients/client-bedrock-agent-runtime/src/commands/UpdateSessionCommand.ts +++ b/clients/client-bedrock-agent-runtime/src/commands/UpdateSessionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSessionRequest, UpdateSessionResponse } from "../models/models_0"; +import type { UpdateSessionRequest, UpdateSessionResponse } from "../models/models_0"; import { UpdateSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent-runtime/src/endpoint/EndpointParameters.ts b/clients/client-bedrock-agent-runtime/src/endpoint/EndpointParameters.ts index 0ee763714fed4..2a71140827ab0 100644 --- a/clients/client-bedrock-agent-runtime/src/endpoint/EndpointParameters.ts +++ b/clients/client-bedrock-agent-runtime/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bedrock-agent-runtime/src/endpoint/endpointResolver.ts b/clients/client-bedrock-agent-runtime/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-bedrock-agent-runtime/src/endpoint/endpointResolver.ts +++ b/clients/client-bedrock-agent-runtime/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bedrock-agent-runtime/src/extensionConfiguration.ts b/clients/client-bedrock-agent-runtime/src/extensionConfiguration.ts index 284b600f09495..06e64a5534c81 100644 --- a/clients/client-bedrock-agent-runtime/src/extensionConfiguration.ts +++ b/clients/client-bedrock-agent-runtime/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bedrock-agent-runtime/src/models/BedrockAgentRuntimeServiceException.ts b/clients/client-bedrock-agent-runtime/src/models/BedrockAgentRuntimeServiceException.ts index 4249161fc82f5..7873041f096b4 100644 --- a/clients/client-bedrock-agent-runtime/src/models/BedrockAgentRuntimeServiceException.ts +++ b/clients/client-bedrock-agent-runtime/src/models/BedrockAgentRuntimeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bedrock-agent-runtime/src/models/errors.ts b/clients/client-bedrock-agent-runtime/src/models/errors.ts index 21ff167181486..cbb4b04f53b5c 100644 --- a/clients/client-bedrock-agent-runtime/src/models/errors.ts +++ b/clients/client-bedrock-agent-runtime/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BedrockAgentRuntimeServiceException as __BaseException } from "./BedrockAgentRuntimeServiceException"; diff --git a/clients/client-bedrock-agent-runtime/src/pagination/GetAgentMemoryPaginator.ts b/clients/client-bedrock-agent-runtime/src/pagination/GetAgentMemoryPaginator.ts index f02272cdce35d..b38c7bd646365 100644 --- a/clients/client-bedrock-agent-runtime/src/pagination/GetAgentMemoryPaginator.ts +++ b/clients/client-bedrock-agent-runtime/src/pagination/GetAgentMemoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient"; import { diff --git a/clients/client-bedrock-agent-runtime/src/pagination/Interfaces.ts b/clients/client-bedrock-agent-runtime/src/pagination/Interfaces.ts index 230c242807141..2a45fc9634614 100644 --- a/clients/client-bedrock-agent-runtime/src/pagination/Interfaces.ts +++ b/clients/client-bedrock-agent-runtime/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient"; diff --git a/clients/client-bedrock-agent-runtime/src/pagination/ListFlowExecutionEventsPaginator.ts b/clients/client-bedrock-agent-runtime/src/pagination/ListFlowExecutionEventsPaginator.ts index 402c30f379f73..4eb92ee0318fb 100644 --- a/clients/client-bedrock-agent-runtime/src/pagination/ListFlowExecutionEventsPaginator.ts +++ b/clients/client-bedrock-agent-runtime/src/pagination/ListFlowExecutionEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient"; import { diff --git a/clients/client-bedrock-agent-runtime/src/pagination/ListFlowExecutionsPaginator.ts b/clients/client-bedrock-agent-runtime/src/pagination/ListFlowExecutionsPaginator.ts index 6aeff72ed27d2..624db1fb79692 100644 --- a/clients/client-bedrock-agent-runtime/src/pagination/ListFlowExecutionsPaginator.ts +++ b/clients/client-bedrock-agent-runtime/src/pagination/ListFlowExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient"; import { diff --git a/clients/client-bedrock-agent-runtime/src/pagination/ListInvocationStepsPaginator.ts b/clients/client-bedrock-agent-runtime/src/pagination/ListInvocationStepsPaginator.ts index 402e29d0bf534..e94de4688b5c6 100644 --- a/clients/client-bedrock-agent-runtime/src/pagination/ListInvocationStepsPaginator.ts +++ b/clients/client-bedrock-agent-runtime/src/pagination/ListInvocationStepsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient"; import { diff --git a/clients/client-bedrock-agent-runtime/src/pagination/ListInvocationsPaginator.ts b/clients/client-bedrock-agent-runtime/src/pagination/ListInvocationsPaginator.ts index 04ec527f5ecd7..de7a14211e4f0 100644 --- a/clients/client-bedrock-agent-runtime/src/pagination/ListInvocationsPaginator.ts +++ b/clients/client-bedrock-agent-runtime/src/pagination/ListInvocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient"; import { diff --git a/clients/client-bedrock-agent-runtime/src/pagination/ListSessionsPaginator.ts b/clients/client-bedrock-agent-runtime/src/pagination/ListSessionsPaginator.ts index 820a15e615831..f96a757de1230 100644 --- a/clients/client-bedrock-agent-runtime/src/pagination/ListSessionsPaginator.ts +++ b/clients/client-bedrock-agent-runtime/src/pagination/ListSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient"; import { diff --git a/clients/client-bedrock-agent-runtime/src/pagination/RerankPaginator.ts b/clients/client-bedrock-agent-runtime/src/pagination/RerankPaginator.ts index a433005b72f62..c00d2e7bd0cb8 100644 --- a/clients/client-bedrock-agent-runtime/src/pagination/RerankPaginator.ts +++ b/clients/client-bedrock-agent-runtime/src/pagination/RerankPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient"; import { RerankCommand, RerankCommandInput, RerankCommandOutput } from "../commands/RerankCommand"; diff --git a/clients/client-bedrock-agent-runtime/src/pagination/RetrievePaginator.ts b/clients/client-bedrock-agent-runtime/src/pagination/RetrievePaginator.ts index 0afa896a2753c..21013aa46275e 100644 --- a/clients/client-bedrock-agent-runtime/src/pagination/RetrievePaginator.ts +++ b/clients/client-bedrock-agent-runtime/src/pagination/RetrievePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentRuntimeClient } from "../BedrockAgentRuntimeClient"; import { RetrieveCommand, RetrieveCommandInput, RetrieveCommandOutput } from "../commands/RetrieveCommand"; diff --git a/clients/client-bedrock-agent-runtime/src/runtimeConfig.browser.ts b/clients/client-bedrock-agent-runtime/src/runtimeConfig.browser.ts index 25dc8e090c19b..3cbf2efeb9912 100644 --- a/clients/client-bedrock-agent-runtime/src/runtimeConfig.browser.ts +++ b/clients/client-bedrock-agent-runtime/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient"; + +import type { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bedrock-agent-runtime/src/runtimeConfig.native.ts b/clients/client-bedrock-agent-runtime/src/runtimeConfig.native.ts index 6d14993e3b1f7..e03b270c33a77 100644 --- a/clients/client-bedrock-agent-runtime/src/runtimeConfig.native.ts +++ b/clients/client-bedrock-agent-runtime/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient"; +import type { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bedrock-agent-runtime/src/runtimeConfig.shared.ts b/clients/client-bedrock-agent-runtime/src/runtimeConfig.shared.ts index 6b6c1aaa20486..fc27bd483b663 100644 --- a/clients/client-bedrock-agent-runtime/src/runtimeConfig.shared.ts +++ b/clients/client-bedrock-agent-runtime/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBedrockAgentRuntimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient"; +import type { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bedrock-agent-runtime/src/runtimeConfig.ts b/clients/client-bedrock-agent-runtime/src/runtimeConfig.ts index 30fb3e805ad2e..168048e5cdbc7 100644 --- a/clients/client-bedrock-agent-runtime/src/runtimeConfig.ts +++ b/clients/client-bedrock-agent-runtime/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient"; + +import type { BedrockAgentRuntimeClientConfig } from "./BedrockAgentRuntimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bedrock-agent-runtime/src/runtimeExtensions.ts b/clients/client-bedrock-agent-runtime/src/runtimeExtensions.ts index 97dcb8cf4f4ee..0821eeee67083 100644 --- a/clients/client-bedrock-agent-runtime/src/runtimeExtensions.ts +++ b/clients/client-bedrock-agent-runtime/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BedrockAgentRuntimeExtensionConfiguration } from "./extensionConfiguration"; +import type { BedrockAgentRuntimeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bedrock-agent-runtime/src/schemas/schemas_0.ts b/clients/client-bedrock-agent-runtime/src/schemas/schemas_0.ts index 825d6c9791ee8..b8d5fe12634e2 100644 --- a/clients/client-bedrock-agent-runtime/src/schemas/schemas_0.ts +++ b/clients/client-bedrock-agent-runtime/src/schemas/schemas_0.ts @@ -849,7 +849,7 @@ const n0 = "com.amazonaws.bedrockagentruntime"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bedrock-agent/package.json b/clients/client-bedrock-agent/package.json index 3d5fa49cd7ad4..32915a195c343 100644 --- a/clients/client-bedrock-agent/package.json +++ b/clients/client-bedrock-agent/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bedrock-agent/src/BedrockAgent.ts b/clients/client-bedrock-agent/src/BedrockAgent.ts index df37bf91e0233..90671101771b8 100644 --- a/clients/client-bedrock-agent/src/BedrockAgent.ts +++ b/clients/client-bedrock-agent/src/BedrockAgent.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BedrockAgentClient, BedrockAgentClientConfig } from "./BedrockAgentClient"; +import { BedrockAgentClient } from "./BedrockAgentClient"; import { AssociateAgentCollaboratorCommand, AssociateAgentCollaboratorCommandInput, diff --git a/clients/client-bedrock-agent/src/BedrockAgentClient.ts b/clients/client-bedrock-agent/src/BedrockAgentClient.ts index f388a67f008f9..0d727920b5def 100644 --- a/clients/client-bedrock-agent/src/BedrockAgentClient.ts +++ b/clients/client-bedrock-agent/src/BedrockAgentClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBedrockAgentHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -211,7 +220,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bedrock-agent/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bedrock-agent/src/auth/httpAuthExtensionConfiguration.ts index 164be8afc9e67..58f2d2497ef95 100644 --- a/clients/client-bedrock-agent/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bedrock-agent/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BedrockAgentHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BedrockAgentHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bedrock-agent/src/auth/httpAuthSchemeProvider.ts b/clients/client-bedrock-agent/src/auth/httpAuthSchemeProvider.ts index 887c1318e7f0e..c85bcbd3e2fa3 100644 --- a/clients/client-bedrock-agent/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bedrock-agent/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BedrockAgentClientConfig, BedrockAgentClientResolvedConfig } from "../BedrockAgentClient"; +import { type BedrockAgentClientResolvedConfig, BedrockAgentClientConfig } from "../BedrockAgentClient"; /** * @internal diff --git a/clients/client-bedrock-agent/src/commands/AssociateAgentCollaboratorCommand.ts b/clients/client-bedrock-agent/src/commands/AssociateAgentCollaboratorCommand.ts index 870f4c21982b0..58fda7abcd7c2 100644 --- a/clients/client-bedrock-agent/src/commands/AssociateAgentCollaboratorCommand.ts +++ b/clients/client-bedrock-agent/src/commands/AssociateAgentCollaboratorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAgentCollaboratorRequest, AssociateAgentCollaboratorResponse } from "../models/models_0"; +import type { AssociateAgentCollaboratorRequest, AssociateAgentCollaboratorResponse } from "../models/models_0"; import { AssociateAgentCollaborator } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/AssociateAgentKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/AssociateAgentKnowledgeBaseCommand.ts index 83c18672c8794..adeb3248221b5 100644 --- a/clients/client-bedrock-agent/src/commands/AssociateAgentKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/AssociateAgentKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAgentKnowledgeBaseRequest, AssociateAgentKnowledgeBaseResponse } from "../models/models_0"; +import type { AssociateAgentKnowledgeBaseRequest, AssociateAgentKnowledgeBaseResponse } from "../models/models_0"; import { AssociateAgentKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreateAgentActionGroupCommand.ts b/clients/client-bedrock-agent/src/commands/CreateAgentActionGroupCommand.ts index 2ea701c97df36..f69f95bcb82c5 100644 --- a/clients/client-bedrock-agent/src/commands/CreateAgentActionGroupCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateAgentActionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAgentActionGroupRequest, CreateAgentActionGroupResponse } from "../models/models_0"; +import type { CreateAgentActionGroupRequest, CreateAgentActionGroupResponse } from "../models/models_0"; import { CreateAgentActionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreateAgentAliasCommand.ts b/clients/client-bedrock-agent/src/commands/CreateAgentAliasCommand.ts index c78c22edc402f..b4e8816953f4f 100644 --- a/clients/client-bedrock-agent/src/commands/CreateAgentAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateAgentAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAgentAliasRequest, CreateAgentAliasResponse } from "../models/models_0"; +import type { CreateAgentAliasRequest, CreateAgentAliasResponse } from "../models/models_0"; import { CreateAgentAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreateAgentCommand.ts b/clients/client-bedrock-agent/src/commands/CreateAgentCommand.ts index 44fe1017e15b3..7cb7dd651bb2e 100644 --- a/clients/client-bedrock-agent/src/commands/CreateAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAgentRequest, CreateAgentResponse } from "../models/models_0"; +import type { CreateAgentRequest, CreateAgentResponse } from "../models/models_0"; import { CreateAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreateDataSourceCommand.ts b/clients/client-bedrock-agent/src/commands/CreateDataSourceCommand.ts index aa02926001190..42f8b6d0d2bff 100644 --- a/clients/client-bedrock-agent/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_0"; +import type { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_0"; import { CreateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreateFlowAliasCommand.ts b/clients/client-bedrock-agent/src/commands/CreateFlowAliasCommand.ts index e75255e42c824..7a3df859c29cf 100644 --- a/clients/client-bedrock-agent/src/commands/CreateFlowAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateFlowAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFlowAliasRequest, CreateFlowAliasResponse } from "../models/models_0"; +import type { CreateFlowAliasRequest, CreateFlowAliasResponse } from "../models/models_0"; import { CreateFlowAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreateFlowCommand.ts b/clients/client-bedrock-agent/src/commands/CreateFlowCommand.ts index 86a84487c9aec..72ef65ad7b7c7 100644 --- a/clients/client-bedrock-agent/src/commands/CreateFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFlowRequest, CreateFlowResponse } from "../models/models_1"; +import type { CreateFlowRequest, CreateFlowResponse } from "../models/models_1"; import { CreateFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreateFlowVersionCommand.ts b/clients/client-bedrock-agent/src/commands/CreateFlowVersionCommand.ts index d5ac25d64178f..5c09c9e229c34 100644 --- a/clients/client-bedrock-agent/src/commands/CreateFlowVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateFlowVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFlowVersionRequest } from "../models/models_0"; -import { CreateFlowVersionResponse } from "../models/models_1"; +import type { CreateFlowVersionRequest } from "../models/models_0"; +import type { CreateFlowVersionResponse } from "../models/models_1"; import { CreateFlowVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreateKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/CreateKnowledgeBaseCommand.ts index 4695e13cba9f1..8e288dee44fb4 100644 --- a/clients/client-bedrock-agent/src/commands/CreateKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreateKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateKnowledgeBaseRequest, CreateKnowledgeBaseResponse } from "../models/models_1"; +import type { CreateKnowledgeBaseRequest, CreateKnowledgeBaseResponse } from "../models/models_1"; import { CreateKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreatePromptCommand.ts b/clients/client-bedrock-agent/src/commands/CreatePromptCommand.ts index cfa50eff0ba4c..819cc569032ba 100644 --- a/clients/client-bedrock-agent/src/commands/CreatePromptCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreatePromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePromptRequest, CreatePromptResponse } from "../models/models_1"; +import type { CreatePromptRequest, CreatePromptResponse } from "../models/models_1"; import { CreatePrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/CreatePromptVersionCommand.ts b/clients/client-bedrock-agent/src/commands/CreatePromptVersionCommand.ts index 7dea20d66c19c..337711a98c0f3 100644 --- a/clients/client-bedrock-agent/src/commands/CreatePromptVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/CreatePromptVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePromptVersionRequest, CreatePromptVersionResponse } from "../models/models_1"; +import type { CreatePromptVersionRequest, CreatePromptVersionResponse } from "../models/models_1"; import { CreatePromptVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteAgentActionGroupCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteAgentActionGroupCommand.ts index e1c22a4afd0fc..6e769ee276439 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteAgentActionGroupCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteAgentActionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAgentActionGroupRequest, DeleteAgentActionGroupResponse } from "../models/models_0"; +import type { DeleteAgentActionGroupRequest, DeleteAgentActionGroupResponse } from "../models/models_0"; import { DeleteAgentActionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteAgentAliasCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteAgentAliasCommand.ts index 32cd5a0a4d6eb..7e0ff14838146 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteAgentAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteAgentAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAgentAliasRequest, DeleteAgentAliasResponse } from "../models/models_0"; +import type { DeleteAgentAliasRequest, DeleteAgentAliasResponse } from "../models/models_0"; import { DeleteAgentAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteAgentCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteAgentCommand.ts index 68c35e3275d20..0da3c658f84b6 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAgentRequest, DeleteAgentResponse } from "../models/models_0"; +import type { DeleteAgentRequest, DeleteAgentResponse } from "../models/models_0"; import { DeleteAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteAgentVersionCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteAgentVersionCommand.ts index ae769e848e894..87922e92a921d 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteAgentVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteAgentVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAgentVersionRequest, DeleteAgentVersionResponse } from "../models/models_1"; +import type { DeleteAgentVersionRequest, DeleteAgentVersionResponse } from "../models/models_1"; import { DeleteAgentVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteDataSourceCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteDataSourceCommand.ts index b8e535e95c065..882e5e77d2d2f 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_0"; +import type { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_0"; import { DeleteDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteFlowAliasCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteFlowAliasCommand.ts index 7cb54a905df78..a4b6c4c73d5dd 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteFlowAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteFlowAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFlowAliasRequest, DeleteFlowAliasResponse } from "../models/models_0"; +import type { DeleteFlowAliasRequest, DeleteFlowAliasResponse } from "../models/models_0"; import { DeleteFlowAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteFlowCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteFlowCommand.ts index 834958f7ebc47..f901bc45d62be 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0"; +import type { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0"; import { DeleteFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteFlowVersionCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteFlowVersionCommand.ts index 7cfde516ae8d6..15b450bf4fe57 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteFlowVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteFlowVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFlowVersionRequest, DeleteFlowVersionResponse } from "../models/models_0"; +import type { DeleteFlowVersionRequest, DeleteFlowVersionResponse } from "../models/models_0"; import { DeleteFlowVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseCommand.ts index 3a1511de5ad11..44ace6edfea2d 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKnowledgeBaseRequest, DeleteKnowledgeBaseResponse } from "../models/models_1"; +import type { DeleteKnowledgeBaseRequest, DeleteKnowledgeBaseResponse } from "../models/models_1"; import { DeleteKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseDocumentsCommand.ts b/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseDocumentsCommand.ts index a936dd8ec1b38..ffef50fcec03d 100644 --- a/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseDocumentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeleteKnowledgeBaseDocumentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKnowledgeBaseDocumentsRequest, DeleteKnowledgeBaseDocumentsResponse } from "../models/models_0"; +import type { DeleteKnowledgeBaseDocumentsRequest, DeleteKnowledgeBaseDocumentsResponse } from "../models/models_0"; import { DeleteKnowledgeBaseDocuments } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DeletePromptCommand.ts b/clients/client-bedrock-agent/src/commands/DeletePromptCommand.ts index 36aefb9a6f4ab..48649f47945be 100644 --- a/clients/client-bedrock-agent/src/commands/DeletePromptCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DeletePromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePromptRequest, DeletePromptResponse } from "../models/models_1"; +import type { DeletePromptRequest, DeletePromptResponse } from "../models/models_1"; import { DeletePrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DisassociateAgentCollaboratorCommand.ts b/clients/client-bedrock-agent/src/commands/DisassociateAgentCollaboratorCommand.ts index f906c4e8c833c..fccaa5585b351 100644 --- a/clients/client-bedrock-agent/src/commands/DisassociateAgentCollaboratorCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DisassociateAgentCollaboratorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateAgentCollaboratorRequest, DisassociateAgentCollaboratorResponse } from "../models/models_0"; +import type { DisassociateAgentCollaboratorRequest, DisassociateAgentCollaboratorResponse } from "../models/models_0"; import { DisassociateAgentCollaborator } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/DisassociateAgentKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/DisassociateAgentKnowledgeBaseCommand.ts index 29c8479279e3f..107e643c55b7a 100644 --- a/clients/client-bedrock-agent/src/commands/DisassociateAgentKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/DisassociateAgentKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateAgentKnowledgeBaseRequest, DisassociateAgentKnowledgeBaseResponse } from "../models/models_1"; +import type { DisassociateAgentKnowledgeBaseRequest, DisassociateAgentKnowledgeBaseResponse } from "../models/models_1"; import { DisassociateAgentKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetAgentActionGroupCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentActionGroupCommand.ts index eb06eedc118fa..d36eb49d6f99f 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentActionGroupCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentActionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentActionGroupRequest, GetAgentActionGroupResponse } from "../models/models_0"; +import type { GetAgentActionGroupRequest, GetAgentActionGroupResponse } from "../models/models_0"; import { GetAgentActionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetAgentAliasCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentAliasCommand.ts index 521a36cefd116..0930823a6c2d7 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentAliasRequest, GetAgentAliasResponse } from "../models/models_0"; +import type { GetAgentAliasRequest, GetAgentAliasResponse } from "../models/models_0"; import { GetAgentAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetAgentCollaboratorCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentCollaboratorCommand.ts index 605e413e5145e..d8a860b0eb4a9 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentCollaboratorCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentCollaboratorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentCollaboratorRequest, GetAgentCollaboratorResponse } from "../models/models_0"; +import type { GetAgentCollaboratorRequest, GetAgentCollaboratorResponse } from "../models/models_0"; import { GetAgentCollaborator } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetAgentCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentCommand.ts index ae96a8c79d336..c7229186dcd36 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentRequest, GetAgentResponse } from "../models/models_0"; +import type { GetAgentRequest, GetAgentResponse } from "../models/models_0"; import { GetAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetAgentKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentKnowledgeBaseCommand.ts index 3c1df95c4f0c1..dc6b7fed17e84 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentKnowledgeBaseRequest, GetAgentKnowledgeBaseResponse } from "../models/models_1"; +import type { GetAgentKnowledgeBaseRequest, GetAgentKnowledgeBaseResponse } from "../models/models_1"; import { GetAgentKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetAgentVersionCommand.ts b/clients/client-bedrock-agent/src/commands/GetAgentVersionCommand.ts index 59f81fbd76a28..dad78cc36ece1 100644 --- a/clients/client-bedrock-agent/src/commands/GetAgentVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetAgentVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentVersionRequest, GetAgentVersionResponse } from "../models/models_1"; +import type { GetAgentVersionRequest, GetAgentVersionResponse } from "../models/models_1"; import { GetAgentVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetDataSourceCommand.ts b/clients/client-bedrock-agent/src/commands/GetDataSourceCommand.ts index daf35944e100e..24a52e09c1b4d 100644 --- a/clients/client-bedrock-agent/src/commands/GetDataSourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataSourceRequest, GetDataSourceResponse } from "../models/models_0"; +import type { GetDataSourceRequest, GetDataSourceResponse } from "../models/models_0"; import { GetDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetFlowAliasCommand.ts b/clients/client-bedrock-agent/src/commands/GetFlowAliasCommand.ts index ecffd7e6b0edc..e804decc92b2f 100644 --- a/clients/client-bedrock-agent/src/commands/GetFlowAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetFlowAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFlowAliasRequest, GetFlowAliasResponse } from "../models/models_0"; +import type { GetFlowAliasRequest, GetFlowAliasResponse } from "../models/models_0"; import { GetFlowAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetFlowCommand.ts b/clients/client-bedrock-agent/src/commands/GetFlowCommand.ts index c3462eb3b85cf..24dbc579df693 100644 --- a/clients/client-bedrock-agent/src/commands/GetFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetFlowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFlowRequest } from "../models/models_0"; -import { GetFlowResponse } from "../models/models_1"; +import type { GetFlowRequest } from "../models/models_0"; +import type { GetFlowResponse } from "../models/models_1"; import { GetFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetFlowVersionCommand.ts b/clients/client-bedrock-agent/src/commands/GetFlowVersionCommand.ts index bcb754b101669..9ce4148b66b36 100644 --- a/clients/client-bedrock-agent/src/commands/GetFlowVersionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetFlowVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFlowVersionRequest } from "../models/models_0"; -import { GetFlowVersionResponse } from "../models/models_1"; +import type { GetFlowVersionRequest } from "../models/models_0"; +import type { GetFlowVersionResponse } from "../models/models_1"; import { GetFlowVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetIngestionJobCommand.ts b/clients/client-bedrock-agent/src/commands/GetIngestionJobCommand.ts index 861555c1131ae..13771e0d61946 100644 --- a/clients/client-bedrock-agent/src/commands/GetIngestionJobCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetIngestionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIngestionJobRequest, GetIngestionJobResponse } from "../models/models_0"; +import type { GetIngestionJobRequest, GetIngestionJobResponse } from "../models/models_0"; import { GetIngestionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseCommand.ts index 3cfaf3ca6b8d9..f106986832158 100644 --- a/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetKnowledgeBaseRequest, GetKnowledgeBaseResponse } from "../models/models_1"; +import type { GetKnowledgeBaseRequest, GetKnowledgeBaseResponse } from "../models/models_1"; import { GetKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseDocumentsCommand.ts b/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseDocumentsCommand.ts index 9e2b057205db1..ce2fd75879b1b 100644 --- a/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseDocumentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetKnowledgeBaseDocumentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetKnowledgeBaseDocumentsRequest, GetKnowledgeBaseDocumentsResponse } from "../models/models_0"; +import type { GetKnowledgeBaseDocumentsRequest, GetKnowledgeBaseDocumentsResponse } from "../models/models_0"; import { GetKnowledgeBaseDocuments } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/GetPromptCommand.ts b/clients/client-bedrock-agent/src/commands/GetPromptCommand.ts index f84ab660256e1..ffcdb184d31ac 100644 --- a/clients/client-bedrock-agent/src/commands/GetPromptCommand.ts +++ b/clients/client-bedrock-agent/src/commands/GetPromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPromptRequest, GetPromptResponse } from "../models/models_1"; +import type { GetPromptRequest, GetPromptResponse } from "../models/models_1"; import { GetPrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/IngestKnowledgeBaseDocumentsCommand.ts b/clients/client-bedrock-agent/src/commands/IngestKnowledgeBaseDocumentsCommand.ts index b6e689cee474c..aabae674c559d 100644 --- a/clients/client-bedrock-agent/src/commands/IngestKnowledgeBaseDocumentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/IngestKnowledgeBaseDocumentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IngestKnowledgeBaseDocumentsRequest, IngestKnowledgeBaseDocumentsResponse } from "../models/models_0"; +import type { IngestKnowledgeBaseDocumentsRequest, IngestKnowledgeBaseDocumentsResponse } from "../models/models_0"; import { IngestKnowledgeBaseDocuments } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListAgentActionGroupsCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentActionGroupsCommand.ts index 63ac64608b50f..2a96d9e65e437 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentActionGroupsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentActionGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentActionGroupsRequest, ListAgentActionGroupsResponse } from "../models/models_0"; +import type { ListAgentActionGroupsRequest, ListAgentActionGroupsResponse } from "../models/models_0"; import { ListAgentActionGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListAgentAliasesCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentAliasesCommand.ts index 63093ff063c40..74440c0720bfd 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentAliasesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentAliasesRequest, ListAgentAliasesResponse } from "../models/models_0"; +import type { ListAgentAliasesRequest, ListAgentAliasesResponse } from "../models/models_0"; import { ListAgentAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListAgentCollaboratorsCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentCollaboratorsCommand.ts index 1fab82de7fa35..6ceef7583992e 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentCollaboratorsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentCollaboratorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentCollaboratorsRequest, ListAgentCollaboratorsResponse } from "../models/models_0"; +import type { ListAgentCollaboratorsRequest, ListAgentCollaboratorsResponse } from "../models/models_0"; import { ListAgentCollaborators } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListAgentKnowledgeBasesCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentKnowledgeBasesCommand.ts index 16c53994c5e2d..72c03c37742b0 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentKnowledgeBasesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentKnowledgeBasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentKnowledgeBasesRequest, ListAgentKnowledgeBasesResponse } from "../models/models_1"; +import type { ListAgentKnowledgeBasesRequest, ListAgentKnowledgeBasesResponse } from "../models/models_1"; import { ListAgentKnowledgeBases } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListAgentVersionsCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentVersionsCommand.ts index b9d64f675be58..810aa9eb8f35b 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentVersionsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentVersionsRequest, ListAgentVersionsResponse } from "../models/models_1"; +import type { ListAgentVersionsRequest, ListAgentVersionsResponse } from "../models/models_1"; import { ListAgentVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListAgentsCommand.ts b/clients/client-bedrock-agent/src/commands/ListAgentsCommand.ts index b4dd227f6bf5e..0311dd4e1fe0f 100644 --- a/clients/client-bedrock-agent/src/commands/ListAgentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListAgentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentsRequest, ListAgentsResponse } from "../models/models_0"; +import type { ListAgentsRequest, ListAgentsResponse } from "../models/models_0"; import { ListAgents } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListDataSourcesCommand.ts b/clients/client-bedrock-agent/src/commands/ListDataSourcesCommand.ts index 31f8a9ae74cde..935e9631ec6c8 100644 --- a/clients/client-bedrock-agent/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListDataSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; +import type { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; import { ListDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListFlowAliasesCommand.ts b/clients/client-bedrock-agent/src/commands/ListFlowAliasesCommand.ts index 99ed6f5d59321..87de69f389abe 100644 --- a/clients/client-bedrock-agent/src/commands/ListFlowAliasesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListFlowAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowAliasesRequest, ListFlowAliasesResponse } from "../models/models_0"; +import type { ListFlowAliasesRequest, ListFlowAliasesResponse } from "../models/models_0"; import { ListFlowAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListFlowVersionsCommand.ts b/clients/client-bedrock-agent/src/commands/ListFlowVersionsCommand.ts index 7fbf6890bfc40..678df1b9c2a70 100644 --- a/clients/client-bedrock-agent/src/commands/ListFlowVersionsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListFlowVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowVersionsRequest, ListFlowVersionsResponse } from "../models/models_0"; +import type { ListFlowVersionsRequest, ListFlowVersionsResponse } from "../models/models_0"; import { ListFlowVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListFlowsCommand.ts b/clients/client-bedrock-agent/src/commands/ListFlowsCommand.ts index b72fd7a6dc81e..e2dcc15672abd 100644 --- a/clients/client-bedrock-agent/src/commands/ListFlowsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListFlowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowsRequest, ListFlowsResponse } from "../models/models_0"; +import type { ListFlowsRequest, ListFlowsResponse } from "../models/models_0"; import { ListFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListIngestionJobsCommand.ts b/clients/client-bedrock-agent/src/commands/ListIngestionJobsCommand.ts index 36811e03d70c5..d53f45ce71fe3 100644 --- a/clients/client-bedrock-agent/src/commands/ListIngestionJobsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListIngestionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIngestionJobsRequest, ListIngestionJobsResponse } from "../models/models_0"; +import type { ListIngestionJobsRequest, ListIngestionJobsResponse } from "../models/models_0"; import { ListIngestionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListKnowledgeBaseDocumentsCommand.ts b/clients/client-bedrock-agent/src/commands/ListKnowledgeBaseDocumentsCommand.ts index feeb2f5c252fe..e01d1ad559352 100644 --- a/clients/client-bedrock-agent/src/commands/ListKnowledgeBaseDocumentsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListKnowledgeBaseDocumentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKnowledgeBaseDocumentsRequest, ListKnowledgeBaseDocumentsResponse } from "../models/models_0"; +import type { ListKnowledgeBaseDocumentsRequest, ListKnowledgeBaseDocumentsResponse } from "../models/models_0"; import { ListKnowledgeBaseDocuments } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListKnowledgeBasesCommand.ts b/clients/client-bedrock-agent/src/commands/ListKnowledgeBasesCommand.ts index 6b72a61380cd2..a6588251dafec 100644 --- a/clients/client-bedrock-agent/src/commands/ListKnowledgeBasesCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListKnowledgeBasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKnowledgeBasesRequest, ListKnowledgeBasesResponse } from "../models/models_1"; +import type { ListKnowledgeBasesRequest, ListKnowledgeBasesResponse } from "../models/models_1"; import { ListKnowledgeBases } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListPromptsCommand.ts b/clients/client-bedrock-agent/src/commands/ListPromptsCommand.ts index 05645054bb9cd..518b607f99f93 100644 --- a/clients/client-bedrock-agent/src/commands/ListPromptsCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListPromptsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPromptsRequest, ListPromptsResponse } from "../models/models_1"; +import type { ListPromptsRequest, ListPromptsResponse } from "../models/models_1"; import { ListPrompts } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock-agent/src/commands/ListTagsForResourceCommand.ts index 7c7dd5acfa2cf..31e26319fca86 100644 --- a/clients/client-bedrock-agent/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/PrepareAgentCommand.ts b/clients/client-bedrock-agent/src/commands/PrepareAgentCommand.ts index 813f478111a8a..e276909098e31 100644 --- a/clients/client-bedrock-agent/src/commands/PrepareAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/PrepareAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PrepareAgentRequest, PrepareAgentResponse } from "../models/models_0"; +import type { PrepareAgentRequest, PrepareAgentResponse } from "../models/models_0"; import { PrepareAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/PrepareFlowCommand.ts b/clients/client-bedrock-agent/src/commands/PrepareFlowCommand.ts index 5c5aaaeaae766..77cc53d3a83d8 100644 --- a/clients/client-bedrock-agent/src/commands/PrepareFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/PrepareFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PrepareFlowRequest, PrepareFlowResponse } from "../models/models_0"; +import type { PrepareFlowRequest, PrepareFlowResponse } from "../models/models_0"; import { PrepareFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/StartIngestionJobCommand.ts b/clients/client-bedrock-agent/src/commands/StartIngestionJobCommand.ts index 493d9195656a8..37f7bc3773758 100644 --- a/clients/client-bedrock-agent/src/commands/StartIngestionJobCommand.ts +++ b/clients/client-bedrock-agent/src/commands/StartIngestionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartIngestionJobRequest, StartIngestionJobResponse } from "../models/models_0"; +import type { StartIngestionJobRequest, StartIngestionJobResponse } from "../models/models_0"; import { StartIngestionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/StopIngestionJobCommand.ts b/clients/client-bedrock-agent/src/commands/StopIngestionJobCommand.ts index 7560bfb44917f..51bfac6e9125a 100644 --- a/clients/client-bedrock-agent/src/commands/StopIngestionJobCommand.ts +++ b/clients/client-bedrock-agent/src/commands/StopIngestionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopIngestionJobRequest, StopIngestionJobResponse } from "../models/models_0"; +import type { StopIngestionJobRequest, StopIngestionJobResponse } from "../models/models_0"; import { StopIngestionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/TagResourceCommand.ts b/clients/client-bedrock-agent/src/commands/TagResourceCommand.ts index 906df0f555afc..40b265d21d795 100644 --- a/clients/client-bedrock-agent/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UntagResourceCommand.ts b/clients/client-bedrock-agent/src/commands/UntagResourceCommand.ts index 8de701b4183f8..7378626955d7c 100644 --- a/clients/client-bedrock-agent/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentActionGroupCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentActionGroupCommand.ts index 44ba9137cda36..df9dc24dd2f50 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentActionGroupCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentActionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgentActionGroupRequest, UpdateAgentActionGroupResponse } from "../models/models_0"; +import type { UpdateAgentActionGroupRequest, UpdateAgentActionGroupResponse } from "../models/models_0"; import { UpdateAgentActionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentAliasCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentAliasCommand.ts index 4fe5e3b2936f6..104d60d1bedb7 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgentAliasRequest, UpdateAgentAliasResponse } from "../models/models_0"; +import type { UpdateAgentAliasRequest, UpdateAgentAliasResponse } from "../models/models_0"; import { UpdateAgentAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentCollaboratorCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentCollaboratorCommand.ts index cd547c720cb85..bfdc93539874b 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentCollaboratorCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentCollaboratorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgentCollaboratorRequest, UpdateAgentCollaboratorResponse } from "../models/models_0"; +import type { UpdateAgentCollaboratorRequest, UpdateAgentCollaboratorResponse } from "../models/models_0"; import { UpdateAgentCollaborator } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentCommand.ts index ef9c2e02de5fb..fb242412a970a 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgentRequest, UpdateAgentResponse } from "../models/models_0"; +import type { UpdateAgentRequest, UpdateAgentResponse } from "../models/models_0"; import { UpdateAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdateAgentKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateAgentKnowledgeBaseCommand.ts index 70f92a6f0dce2..256efaa8b0481 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateAgentKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateAgentKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgentKnowledgeBaseRequest, UpdateAgentKnowledgeBaseResponse } from "../models/models_1"; +import type { UpdateAgentKnowledgeBaseRequest, UpdateAgentKnowledgeBaseResponse } from "../models/models_1"; import { UpdateAgentKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdateDataSourceCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateDataSourceCommand.ts index 1ce27130573b4..c15ed24792839 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_0"; +import type { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_0"; import { UpdateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdateFlowAliasCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateFlowAliasCommand.ts index 40e84b686819c..5d2703bf915cf 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateFlowAliasCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateFlowAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFlowAliasRequest, UpdateFlowAliasResponse } from "../models/models_0"; +import type { UpdateFlowAliasRequest, UpdateFlowAliasResponse } from "../models/models_0"; import { UpdateFlowAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdateFlowCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateFlowCommand.ts index 44c92ee23f7f1..59ef53791b89d 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateFlowCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFlowRequest, UpdateFlowResponse } from "../models/models_1"; +import type { UpdateFlowRequest, UpdateFlowResponse } from "../models/models_1"; import { UpdateFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdateKnowledgeBaseCommand.ts b/clients/client-bedrock-agent/src/commands/UpdateKnowledgeBaseCommand.ts index 29ba975b8fcbd..0ddfc8194fe1a 100644 --- a/clients/client-bedrock-agent/src/commands/UpdateKnowledgeBaseCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdateKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateKnowledgeBaseRequest, UpdateKnowledgeBaseResponse } from "../models/models_1"; +import type { UpdateKnowledgeBaseRequest, UpdateKnowledgeBaseResponse } from "../models/models_1"; import { UpdateKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/UpdatePromptCommand.ts b/clients/client-bedrock-agent/src/commands/UpdatePromptCommand.ts index 574a4f84e0a46..1be16b4263f44 100644 --- a/clients/client-bedrock-agent/src/commands/UpdatePromptCommand.ts +++ b/clients/client-bedrock-agent/src/commands/UpdatePromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePromptRequest, UpdatePromptResponse } from "../models/models_1"; +import type { UpdatePromptRequest, UpdatePromptResponse } from "../models/models_1"; import { UpdatePrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/commands/ValidateFlowDefinitionCommand.ts b/clients/client-bedrock-agent/src/commands/ValidateFlowDefinitionCommand.ts index 46df27740f782..593657c3895f6 100644 --- a/clients/client-bedrock-agent/src/commands/ValidateFlowDefinitionCommand.ts +++ b/clients/client-bedrock-agent/src/commands/ValidateFlowDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; +import type { BedrockAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidateFlowDefinitionRequest, ValidateFlowDefinitionResponse } from "../models/models_1"; +import type { ValidateFlowDefinitionRequest, ValidateFlowDefinitionResponse } from "../models/models_1"; import { ValidateFlowDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agent/src/endpoint/EndpointParameters.ts b/clients/client-bedrock-agent/src/endpoint/EndpointParameters.ts index 0ee763714fed4..2a71140827ab0 100644 --- a/clients/client-bedrock-agent/src/endpoint/EndpointParameters.ts +++ b/clients/client-bedrock-agent/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bedrock-agent/src/endpoint/endpointResolver.ts b/clients/client-bedrock-agent/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-bedrock-agent/src/endpoint/endpointResolver.ts +++ b/clients/client-bedrock-agent/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bedrock-agent/src/extensionConfiguration.ts b/clients/client-bedrock-agent/src/extensionConfiguration.ts index 89965a3bdd7eb..f3d1d42198758 100644 --- a/clients/client-bedrock-agent/src/extensionConfiguration.ts +++ b/clients/client-bedrock-agent/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bedrock-agent/src/models/BedrockAgentServiceException.ts b/clients/client-bedrock-agent/src/models/BedrockAgentServiceException.ts index 68d799a3152e2..62ea9395fd8d2 100644 --- a/clients/client-bedrock-agent/src/models/BedrockAgentServiceException.ts +++ b/clients/client-bedrock-agent/src/models/BedrockAgentServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bedrock-agent/src/models/errors.ts b/clients/client-bedrock-agent/src/models/errors.ts index ba54fcff3d2c8..fff60eb8a2641 100644 --- a/clients/client-bedrock-agent/src/models/errors.ts +++ b/clients/client-bedrock-agent/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BedrockAgentServiceException as __BaseException } from "./BedrockAgentServiceException"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-bedrock-agent/src/pagination/Interfaces.ts b/clients/client-bedrock-agent/src/pagination/Interfaces.ts index a50990820bbfc..44a3a229ca1aa 100644 --- a/clients/client-bedrock-agent/src/pagination/Interfaces.ts +++ b/clients/client-bedrock-agent/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; diff --git a/clients/client-bedrock-agent/src/pagination/ListAgentActionGroupsPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListAgentActionGroupsPaginator.ts index 2bf00037b59fe..6d76bb9935408 100644 --- a/clients/client-bedrock-agent/src/pagination/ListAgentActionGroupsPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListAgentActionGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListAgentAliasesPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListAgentAliasesPaginator.ts index 6bee8d9259d5d..c29b75c7d979c 100644 --- a/clients/client-bedrock-agent/src/pagination/ListAgentAliasesPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListAgentAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListAgentCollaboratorsPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListAgentCollaboratorsPaginator.ts index ffb8fe90cb559..b94026d2fb633 100644 --- a/clients/client-bedrock-agent/src/pagination/ListAgentCollaboratorsPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListAgentCollaboratorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListAgentKnowledgeBasesPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListAgentKnowledgeBasesPaginator.ts index 64fa1aae330fa..74585b1cb0aea 100644 --- a/clients/client-bedrock-agent/src/pagination/ListAgentKnowledgeBasesPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListAgentKnowledgeBasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListAgentVersionsPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListAgentVersionsPaginator.ts index 560077f96b8ef..101a108477e4b 100644 --- a/clients/client-bedrock-agent/src/pagination/ListAgentVersionsPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListAgentVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListAgentsPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListAgentsPaginator.ts index 390952c691d0c..88dcf4e3c7bc5 100644 --- a/clients/client-bedrock-agent/src/pagination/ListAgentsPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListAgentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { ListAgentsCommand, ListAgentsCommandInput, ListAgentsCommandOutput } from "../commands/ListAgentsCommand"; diff --git a/clients/client-bedrock-agent/src/pagination/ListDataSourcesPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListDataSourcesPaginator.ts index 5f3d7fdec9c42..3ab59c8b335e0 100644 --- a/clients/client-bedrock-agent/src/pagination/ListDataSourcesPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListDataSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListFlowAliasesPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListFlowAliasesPaginator.ts index 2dd4ef3cb4d18..c0e991f4da893 100644 --- a/clients/client-bedrock-agent/src/pagination/ListFlowAliasesPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListFlowAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListFlowVersionsPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListFlowVersionsPaginator.ts index d76c1a5cf6515..b4ceffc8cae52 100644 --- a/clients/client-bedrock-agent/src/pagination/ListFlowVersionsPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListFlowVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListFlowsPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListFlowsPaginator.ts index d76f19a7b430e..986c343a375f3 100644 --- a/clients/client-bedrock-agent/src/pagination/ListFlowsPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListFlowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { ListFlowsCommand, ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand"; diff --git a/clients/client-bedrock-agent/src/pagination/ListIngestionJobsPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListIngestionJobsPaginator.ts index d5a4eb5689688..d72ca8c237305 100644 --- a/clients/client-bedrock-agent/src/pagination/ListIngestionJobsPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListIngestionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListKnowledgeBaseDocumentsPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListKnowledgeBaseDocumentsPaginator.ts index d5a1ab5b8e279..c639100854772 100644 --- a/clients/client-bedrock-agent/src/pagination/ListKnowledgeBaseDocumentsPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListKnowledgeBaseDocumentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListKnowledgeBasesPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListKnowledgeBasesPaginator.ts index 97b13f4088785..10480ea1f3398 100644 --- a/clients/client-bedrock-agent/src/pagination/ListKnowledgeBasesPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListKnowledgeBasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { diff --git a/clients/client-bedrock-agent/src/pagination/ListPromptsPaginator.ts b/clients/client-bedrock-agent/src/pagination/ListPromptsPaginator.ts index 698925980e689..bf4aac7cf33e9 100644 --- a/clients/client-bedrock-agent/src/pagination/ListPromptsPaginator.ts +++ b/clients/client-bedrock-agent/src/pagination/ListPromptsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentClient } from "../BedrockAgentClient"; import { ListPromptsCommand, ListPromptsCommandInput, ListPromptsCommandOutput } from "../commands/ListPromptsCommand"; diff --git a/clients/client-bedrock-agent/src/runtimeConfig.browser.ts b/clients/client-bedrock-agent/src/runtimeConfig.browser.ts index 7beccda3207e0..e9447d523dfc6 100644 --- a/clients/client-bedrock-agent/src/runtimeConfig.browser.ts +++ b/clients/client-bedrock-agent/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockAgentClientConfig } from "./BedrockAgentClient"; + +import type { BedrockAgentClientConfig } from "./BedrockAgentClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bedrock-agent/src/runtimeConfig.native.ts b/clients/client-bedrock-agent/src/runtimeConfig.native.ts index b0c37d840d7eb..09be06a0db993 100644 --- a/clients/client-bedrock-agent/src/runtimeConfig.native.ts +++ b/clients/client-bedrock-agent/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BedrockAgentClientConfig } from "./BedrockAgentClient"; +import type { BedrockAgentClientConfig } from "./BedrockAgentClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bedrock-agent/src/runtimeConfig.shared.ts b/clients/client-bedrock-agent/src/runtimeConfig.shared.ts index c733b68aac3b7..0952fe41377b3 100644 --- a/clients/client-bedrock-agent/src/runtimeConfig.shared.ts +++ b/clients/client-bedrock-agent/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBedrockAgentHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BedrockAgentClientConfig } from "./BedrockAgentClient"; +import type { BedrockAgentClientConfig } from "./BedrockAgentClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bedrock-agent/src/runtimeConfig.ts b/clients/client-bedrock-agent/src/runtimeConfig.ts index b9fa3e0630a4c..e5cf9af82691c 100644 --- a/clients/client-bedrock-agent/src/runtimeConfig.ts +++ b/clients/client-bedrock-agent/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockAgentClientConfig } from "./BedrockAgentClient"; + +import type { BedrockAgentClientConfig } from "./BedrockAgentClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bedrock-agent/src/runtimeExtensions.ts b/clients/client-bedrock-agent/src/runtimeExtensions.ts index afcb5476d653b..7b81596de6ae2 100644 --- a/clients/client-bedrock-agent/src/runtimeExtensions.ts +++ b/clients/client-bedrock-agent/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BedrockAgentExtensionConfiguration } from "./extensionConfiguration"; +import type { BedrockAgentExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bedrock-agent/src/schemas/schemas_0.ts b/clients/client-bedrock-agent/src/schemas/schemas_0.ts index 8706e4e7f72de..c8d2360923023 100644 --- a/clients/client-bedrock-agent/src/schemas/schemas_0.ts +++ b/clients/client-bedrock-agent/src/schemas/schemas_0.ts @@ -977,7 +977,7 @@ const n0 = "com.amazonaws.bedrockagent"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bedrock-agentcore-control/package.json b/clients/client-bedrock-agentcore-control/package.json index 1fabdd0ec60b5..9ed7d085b6725 100644 --- a/clients/client-bedrock-agentcore-control/package.json +++ b/clients/client-bedrock-agentcore-control/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bedrock-agentcore-control/src/BedrockAgentCoreControl.ts b/clients/client-bedrock-agentcore-control/src/BedrockAgentCoreControl.ts index fd951fd0c1587..db4f478fc2b49 100644 --- a/clients/client-bedrock-agentcore-control/src/BedrockAgentCoreControl.ts +++ b/clients/client-bedrock-agentcore-control/src/BedrockAgentCoreControl.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BedrockAgentCoreControlClient, BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient"; +import { BedrockAgentCoreControlClient } from "./BedrockAgentCoreControlClient"; import { CreateAgentRuntimeCommand, CreateAgentRuntimeCommandInput, diff --git a/clients/client-bedrock-agentcore-control/src/BedrockAgentCoreControlClient.ts b/clients/client-bedrock-agentcore-control/src/BedrockAgentCoreControlClient.ts index 409740007caf3..0b57685b6811d 100644 --- a/clients/client-bedrock-agentcore-control/src/BedrockAgentCoreControlClient.ts +++ b/clients/client-bedrock-agentcore-control/src/BedrockAgentCoreControlClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBedrockAgentCoreControlHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateAgentRuntimeCommandInput, CreateAgentRuntimeCommandOutput } from "./commands/CreateAgentRuntimeCommand"; @@ -206,7 +215,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bedrock-agentcore-control/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bedrock-agentcore-control/src/auth/httpAuthExtensionConfiguration.ts index cfaa22010d509..9b16fe633e136 100644 --- a/clients/client-bedrock-agentcore-control/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bedrock-agentcore-control/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BedrockAgentCoreControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BedrockAgentCoreControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bedrock-agentcore-control/src/auth/httpAuthSchemeProvider.ts b/clients/client-bedrock-agentcore-control/src/auth/httpAuthSchemeProvider.ts index 2013dbbaf887b..dcd4eafa2d1b2 100644 --- a/clients/client-bedrock-agentcore-control/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bedrock-agentcore-control/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type BedrockAgentCoreControlClientResolvedConfig, BedrockAgentCoreControlClientConfig, - BedrockAgentCoreControlClientResolvedConfig, } from "../BedrockAgentCoreControlClient"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateAgentRuntimeCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateAgentRuntimeCommand.ts index 03485f1b467b8..3f7c535e89d4d 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateAgentRuntimeCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateAgentRuntimeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAgentRuntimeRequest, CreateAgentRuntimeResponse } from "../models/models_0"; +import type { CreateAgentRuntimeRequest, CreateAgentRuntimeResponse } from "../models/models_0"; import { CreateAgentRuntime } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateAgentRuntimeEndpointCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateAgentRuntimeEndpointCommand.ts index 1e494ec589bf6..35feebb04bcac 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateAgentRuntimeEndpointCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateAgentRuntimeEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAgentRuntimeEndpointRequest, CreateAgentRuntimeEndpointResponse } from "../models/models_0"; +import type { CreateAgentRuntimeEndpointRequest, CreateAgentRuntimeEndpointResponse } from "../models/models_0"; import { CreateAgentRuntimeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateApiKeyCredentialProviderCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateApiKeyCredentialProviderCommand.ts index fe47f2dea7761..a8473f0544fd0 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateApiKeyCredentialProviderCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateApiKeyCredentialProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApiKeyCredentialProviderRequest, CreateApiKeyCredentialProviderResponse } from "../models/models_0"; +import type { CreateApiKeyCredentialProviderRequest, CreateApiKeyCredentialProviderResponse } from "../models/models_0"; import { CreateApiKeyCredentialProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateBrowserCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateBrowserCommand.ts index afb8649343eac..51c922a70560c 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateBrowserCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateBrowserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBrowserRequest, CreateBrowserResponse } from "../models/models_0"; +import type { CreateBrowserRequest, CreateBrowserResponse } from "../models/models_0"; import { CreateBrowser } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateCodeInterpreterCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateCodeInterpreterCommand.ts index 8ceea94cfab09..38e61af91737a 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateCodeInterpreterCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateCodeInterpreterCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCodeInterpreterRequest, CreateCodeInterpreterResponse } from "../models/models_0"; +import type { CreateCodeInterpreterRequest, CreateCodeInterpreterResponse } from "../models/models_0"; import { CreateCodeInterpreter } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateGatewayCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateGatewayCommand.ts index f498f40b8ad9a..e530616f16512 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateGatewayCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateGatewayCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGatewayRequest, CreateGatewayResponse } from "../models/models_0"; +import type { CreateGatewayRequest, CreateGatewayResponse } from "../models/models_0"; import { CreateGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateGatewayTargetCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateGatewayTargetCommand.ts index ade846daa03da..86f86ba7ef407 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateGatewayTargetCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateGatewayTargetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGatewayTargetRequest, CreateGatewayTargetResponse } from "../models/models_0"; +import type { CreateGatewayTargetRequest, CreateGatewayTargetResponse } from "../models/models_0"; import { CreateGatewayTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateMemoryCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateMemoryCommand.ts index 9c58df5532bd9..9a0321d5fadb1 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateMemoryCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateMemoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMemoryInput, CreateMemoryOutput } from "../models/models_0"; +import type { CreateMemoryInput, CreateMemoryOutput } from "../models/models_0"; import { CreateMemory } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateOauth2CredentialProviderCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateOauth2CredentialProviderCommand.ts index 57bd1bb607e2f..c58a5cfe444d4 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateOauth2CredentialProviderCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateOauth2CredentialProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOauth2CredentialProviderRequest, CreateOauth2CredentialProviderResponse } from "../models/models_0"; +import type { CreateOauth2CredentialProviderRequest, CreateOauth2CredentialProviderResponse } from "../models/models_0"; import { CreateOauth2CredentialProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/CreateWorkloadIdentityCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/CreateWorkloadIdentityCommand.ts index 689755a5fc9a9..560c65ed0a7cc 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/CreateWorkloadIdentityCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/CreateWorkloadIdentityCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkloadIdentityRequest, CreateWorkloadIdentityResponse } from "../models/models_0"; +import type { CreateWorkloadIdentityRequest, CreateWorkloadIdentityResponse } from "../models/models_0"; import { CreateWorkloadIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteAgentRuntimeCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteAgentRuntimeCommand.ts index 47b34275ee9f6..3ab69858a88df 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteAgentRuntimeCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteAgentRuntimeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAgentRuntimeRequest, DeleteAgentRuntimeResponse } from "../models/models_0"; +import type { DeleteAgentRuntimeRequest, DeleteAgentRuntimeResponse } from "../models/models_0"; import { DeleteAgentRuntime } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteAgentRuntimeEndpointCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteAgentRuntimeEndpointCommand.ts index d3c9e0267fa4d..5ea800dbc931a 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteAgentRuntimeEndpointCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteAgentRuntimeEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAgentRuntimeEndpointRequest, DeleteAgentRuntimeEndpointResponse } from "../models/models_0"; +import type { DeleteAgentRuntimeEndpointRequest, DeleteAgentRuntimeEndpointResponse } from "../models/models_0"; import { DeleteAgentRuntimeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteApiKeyCredentialProviderCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteApiKeyCredentialProviderCommand.ts index 0b265ab95dc29..27a569805f04e 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteApiKeyCredentialProviderCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteApiKeyCredentialProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApiKeyCredentialProviderRequest, DeleteApiKeyCredentialProviderResponse } from "../models/models_0"; +import type { DeleteApiKeyCredentialProviderRequest, DeleteApiKeyCredentialProviderResponse } from "../models/models_0"; import { DeleteApiKeyCredentialProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteBrowserCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteBrowserCommand.ts index 7c4aca89c84b6..7c86054f3b97d 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteBrowserCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteBrowserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBrowserRequest, DeleteBrowserResponse } from "../models/models_0"; +import type { DeleteBrowserRequest, DeleteBrowserResponse } from "../models/models_0"; import { DeleteBrowser } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteCodeInterpreterCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteCodeInterpreterCommand.ts index af8d503dd2934..bf36a9e8156bd 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteCodeInterpreterCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteCodeInterpreterCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCodeInterpreterRequest, DeleteCodeInterpreterResponse } from "../models/models_0"; +import type { DeleteCodeInterpreterRequest, DeleteCodeInterpreterResponse } from "../models/models_0"; import { DeleteCodeInterpreter } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteGatewayCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteGatewayCommand.ts index 81a62994a5644..724977ffec8e8 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteGatewayCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteGatewayCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGatewayRequest, DeleteGatewayResponse } from "../models/models_0"; +import type { DeleteGatewayRequest, DeleteGatewayResponse } from "../models/models_0"; import { DeleteGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteGatewayTargetCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteGatewayTargetCommand.ts index a8d08e520369c..aa8e7c5ab4f86 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteGatewayTargetCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteGatewayTargetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGatewayTargetRequest, DeleteGatewayTargetResponse } from "../models/models_0"; +import type { DeleteGatewayTargetRequest, DeleteGatewayTargetResponse } from "../models/models_0"; import { DeleteGatewayTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteMemoryCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteMemoryCommand.ts index 8a569e3095152..bc5cb57762358 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteMemoryCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteMemoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMemoryInput, DeleteMemoryOutput } from "../models/models_0"; +import type { DeleteMemoryInput, DeleteMemoryOutput } from "../models/models_0"; import { DeleteMemory } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteOauth2CredentialProviderCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteOauth2CredentialProviderCommand.ts index faa9b01f65ae6..ed61416596c96 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteOauth2CredentialProviderCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteOauth2CredentialProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOauth2CredentialProviderRequest, DeleteOauth2CredentialProviderResponse } from "../models/models_0"; +import type { DeleteOauth2CredentialProviderRequest, DeleteOauth2CredentialProviderResponse } from "../models/models_0"; import { DeleteOauth2CredentialProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/DeleteWorkloadIdentityCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/DeleteWorkloadIdentityCommand.ts index 07347db5fd4e9..c631c6a2e45d5 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/DeleteWorkloadIdentityCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/DeleteWorkloadIdentityCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkloadIdentityRequest, DeleteWorkloadIdentityResponse } from "../models/models_0"; +import type { DeleteWorkloadIdentityRequest, DeleteWorkloadIdentityResponse } from "../models/models_0"; import { DeleteWorkloadIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetAgentRuntimeCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetAgentRuntimeCommand.ts index ce156dad6cf63..316caddc07fab 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetAgentRuntimeCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetAgentRuntimeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentRuntimeRequest, GetAgentRuntimeResponse } from "../models/models_0"; +import type { GetAgentRuntimeRequest, GetAgentRuntimeResponse } from "../models/models_0"; import { GetAgentRuntime } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetAgentRuntimeEndpointCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetAgentRuntimeEndpointCommand.ts index ddcddc81d05a1..7f90504c70ba5 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetAgentRuntimeEndpointCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetAgentRuntimeEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentRuntimeEndpointRequest, GetAgentRuntimeEndpointResponse } from "../models/models_0"; +import type { GetAgentRuntimeEndpointRequest, GetAgentRuntimeEndpointResponse } from "../models/models_0"; import { GetAgentRuntimeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetApiKeyCredentialProviderCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetApiKeyCredentialProviderCommand.ts index 1f55fc968e49c..05a1f563c4fe2 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetApiKeyCredentialProviderCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetApiKeyCredentialProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApiKeyCredentialProviderRequest, GetApiKeyCredentialProviderResponse } from "../models/models_0"; +import type { GetApiKeyCredentialProviderRequest, GetApiKeyCredentialProviderResponse } from "../models/models_0"; import { GetApiKeyCredentialProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetBrowserCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetBrowserCommand.ts index 34b1dfe76571f..192d1e8f1ea7c 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetBrowserCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetBrowserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBrowserRequest, GetBrowserResponse } from "../models/models_0"; +import type { GetBrowserRequest, GetBrowserResponse } from "../models/models_0"; import { GetBrowser } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetCodeInterpreterCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetCodeInterpreterCommand.ts index 1b706039dca5a..5dd8b904d9390 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetCodeInterpreterCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetCodeInterpreterCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCodeInterpreterRequest, GetCodeInterpreterResponse } from "../models/models_0"; +import type { GetCodeInterpreterRequest, GetCodeInterpreterResponse } from "../models/models_0"; import { GetCodeInterpreter } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetGatewayCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetGatewayCommand.ts index 1641f8d7e49bf..fc85cae43a446 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetGatewayCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetGatewayCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGatewayRequest, GetGatewayResponse } from "../models/models_0"; +import type { GetGatewayRequest, GetGatewayResponse } from "../models/models_0"; import { GetGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetGatewayTargetCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetGatewayTargetCommand.ts index 699288a0fe356..ab475a8e6b41c 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetGatewayTargetCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetGatewayTargetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGatewayTargetRequest, GetGatewayTargetResponse } from "../models/models_0"; +import type { GetGatewayTargetRequest, GetGatewayTargetResponse } from "../models/models_0"; import { GetGatewayTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetMemoryCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetMemoryCommand.ts index 4fa9c2692c886..3139504a9d544 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetMemoryCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetMemoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMemoryInput, GetMemoryOutput } from "../models/models_0"; +import type { GetMemoryInput, GetMemoryOutput } from "../models/models_0"; import { GetMemory } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetOauth2CredentialProviderCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetOauth2CredentialProviderCommand.ts index 81dddd27653b3..8d9976e15036c 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetOauth2CredentialProviderCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetOauth2CredentialProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOauth2CredentialProviderRequest, GetOauth2CredentialProviderResponse } from "../models/models_0"; +import type { GetOauth2CredentialProviderRequest, GetOauth2CredentialProviderResponse } from "../models/models_0"; import { GetOauth2CredentialProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetTokenVaultCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetTokenVaultCommand.ts index 0a4e5342b13e5..91895472b38e1 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetTokenVaultCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetTokenVaultCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTokenVaultRequest, GetTokenVaultResponse } from "../models/models_0"; +import type { GetTokenVaultRequest, GetTokenVaultResponse } from "../models/models_0"; import { GetTokenVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/GetWorkloadIdentityCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/GetWorkloadIdentityCommand.ts index 421b531588830..4d92ea5e37ce6 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/GetWorkloadIdentityCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/GetWorkloadIdentityCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkloadIdentityRequest, GetWorkloadIdentityResponse } from "../models/models_0"; +import type { GetWorkloadIdentityRequest, GetWorkloadIdentityResponse } from "../models/models_0"; import { GetWorkloadIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimeEndpointsCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimeEndpointsCommand.ts index c554177efc734..99202bf9624d3 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimeEndpointsCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimeEndpointsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentRuntimeEndpointsRequest, ListAgentRuntimeEndpointsResponse } from "../models/models_0"; +import type { ListAgentRuntimeEndpointsRequest, ListAgentRuntimeEndpointsResponse } from "../models/models_0"; import { ListAgentRuntimeEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimeVersionsCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimeVersionsCommand.ts index 01c030f88e665..0e876259e83ab 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimeVersionsCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimeVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentRuntimeVersionsRequest, ListAgentRuntimeVersionsResponse } from "../models/models_0"; +import type { ListAgentRuntimeVersionsRequest, ListAgentRuntimeVersionsResponse } from "../models/models_0"; import { ListAgentRuntimeVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimesCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimesCommand.ts index 44b0c19cd9b2b..c86d07b96c2e5 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimesCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListAgentRuntimesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentRuntimesRequest, ListAgentRuntimesResponse } from "../models/models_0"; +import type { ListAgentRuntimesRequest, ListAgentRuntimesResponse } from "../models/models_0"; import { ListAgentRuntimes } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListApiKeyCredentialProvidersCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListApiKeyCredentialProvidersCommand.ts index fea51fda12a0c..3fcc1c712a785 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListApiKeyCredentialProvidersCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListApiKeyCredentialProvidersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApiKeyCredentialProvidersRequest, ListApiKeyCredentialProvidersResponse } from "../models/models_0"; +import type { ListApiKeyCredentialProvidersRequest, ListApiKeyCredentialProvidersResponse } from "../models/models_0"; import { ListApiKeyCredentialProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListBrowsersCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListBrowsersCommand.ts index e1561392e13e3..6b839ff843481 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListBrowsersCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListBrowsersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBrowsersRequest, ListBrowsersResponse } from "../models/models_0"; +import type { ListBrowsersRequest, ListBrowsersResponse } from "../models/models_0"; import { ListBrowsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListCodeInterpretersCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListCodeInterpretersCommand.ts index 420456091beff..b72a4749fc8d1 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListCodeInterpretersCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListCodeInterpretersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCodeInterpretersRequest, ListCodeInterpretersResponse } from "../models/models_0"; +import type { ListCodeInterpretersRequest, ListCodeInterpretersResponse } from "../models/models_0"; import { ListCodeInterpreters } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListGatewayTargetsCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListGatewayTargetsCommand.ts index 9dd2a5362166d..9c9f3712e96ba 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListGatewayTargetsCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListGatewayTargetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGatewayTargetsRequest, ListGatewayTargetsResponse } from "../models/models_0"; +import type { ListGatewayTargetsRequest, ListGatewayTargetsResponse } from "../models/models_0"; import { ListGatewayTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListGatewaysCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListGatewaysCommand.ts index 1fc20cbc666e9..7809a5428c426 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListGatewaysCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListGatewaysCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGatewaysRequest, ListGatewaysResponse } from "../models/models_0"; +import type { ListGatewaysRequest, ListGatewaysResponse } from "../models/models_0"; import { ListGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListMemoriesCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListMemoriesCommand.ts index 40c5c6330900a..46001bbaf5f0b 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListMemoriesCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListMemoriesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMemoriesInput, ListMemoriesOutput } from "../models/models_0"; +import type { ListMemoriesInput, ListMemoriesOutput } from "../models/models_0"; import { ListMemories } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListOauth2CredentialProvidersCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListOauth2CredentialProvidersCommand.ts index 3dc6b5444486e..e393a614ae28b 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListOauth2CredentialProvidersCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListOauth2CredentialProvidersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOauth2CredentialProvidersRequest, ListOauth2CredentialProvidersResponse } from "../models/models_0"; +import type { ListOauth2CredentialProvidersRequest, ListOauth2CredentialProvidersResponse } from "../models/models_0"; import { ListOauth2CredentialProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListTagsForResourceCommand.ts index 55536d741b498..0671d7f12855a 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/ListWorkloadIdentitiesCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/ListWorkloadIdentitiesCommand.ts index ff46111bd08e2..58f1108d2dda9 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/ListWorkloadIdentitiesCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/ListWorkloadIdentitiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkloadIdentitiesRequest, ListWorkloadIdentitiesResponse } from "../models/models_0"; +import type { ListWorkloadIdentitiesRequest, ListWorkloadIdentitiesResponse } from "../models/models_0"; import { ListWorkloadIdentities } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/SetTokenVaultCMKCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/SetTokenVaultCMKCommand.ts index 2e8599ff5d1bb..2b6a67fc50fc4 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/SetTokenVaultCMKCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/SetTokenVaultCMKCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetTokenVaultCMKRequest, SetTokenVaultCMKResponse } from "../models/models_0"; +import type { SetTokenVaultCMKRequest, SetTokenVaultCMKResponse } from "../models/models_0"; import { SetTokenVaultCMK } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/SynchronizeGatewayTargetsCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/SynchronizeGatewayTargetsCommand.ts index a87afa1294b47..b75673503bd38 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/SynchronizeGatewayTargetsCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/SynchronizeGatewayTargetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SynchronizeGatewayTargetsRequest, SynchronizeGatewayTargetsResponse } from "../models/models_0"; +import type { SynchronizeGatewayTargetsRequest, SynchronizeGatewayTargetsResponse } from "../models/models_0"; import { SynchronizeGatewayTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/TagResourceCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/TagResourceCommand.ts index 720931e5f21d5..d8ac6dc06a313 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/UntagResourceCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/UntagResourceCommand.ts index cac0c45ab9c94..90f8c6718f880 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/UpdateAgentRuntimeCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/UpdateAgentRuntimeCommand.ts index 1261d5cdbb2a0..3e050e34002fc 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/UpdateAgentRuntimeCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/UpdateAgentRuntimeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgentRuntimeRequest, UpdateAgentRuntimeResponse } from "../models/models_0"; +import type { UpdateAgentRuntimeRequest, UpdateAgentRuntimeResponse } from "../models/models_0"; import { UpdateAgentRuntime } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/UpdateAgentRuntimeEndpointCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/UpdateAgentRuntimeEndpointCommand.ts index 678d90aabea32..41b6928a73d1f 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/UpdateAgentRuntimeEndpointCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/UpdateAgentRuntimeEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgentRuntimeEndpointRequest, UpdateAgentRuntimeEndpointResponse } from "../models/models_0"; +import type { UpdateAgentRuntimeEndpointRequest, UpdateAgentRuntimeEndpointResponse } from "../models/models_0"; import { UpdateAgentRuntimeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/UpdateApiKeyCredentialProviderCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/UpdateApiKeyCredentialProviderCommand.ts index b0aa842d37cf3..7a5f5d31b232b 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/UpdateApiKeyCredentialProviderCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/UpdateApiKeyCredentialProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApiKeyCredentialProviderRequest, UpdateApiKeyCredentialProviderResponse } from "../models/models_0"; +import type { UpdateApiKeyCredentialProviderRequest, UpdateApiKeyCredentialProviderResponse } from "../models/models_0"; import { UpdateApiKeyCredentialProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/UpdateGatewayCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/UpdateGatewayCommand.ts index 80bd4b3f90d56..2faf2ec5d255e 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/UpdateGatewayCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/UpdateGatewayCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGatewayRequest, UpdateGatewayResponse } from "../models/models_0"; +import type { UpdateGatewayRequest, UpdateGatewayResponse } from "../models/models_0"; import { UpdateGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/UpdateGatewayTargetCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/UpdateGatewayTargetCommand.ts index e1edad9eb999b..bb50d6874f9ea 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/UpdateGatewayTargetCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/UpdateGatewayTargetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGatewayTargetRequest, UpdateGatewayTargetResponse } from "../models/models_0"; +import type { UpdateGatewayTargetRequest, UpdateGatewayTargetResponse } from "../models/models_0"; import { UpdateGatewayTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/UpdateMemoryCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/UpdateMemoryCommand.ts index e6a0a4028f1a2..568cd1b85f3ba 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/UpdateMemoryCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/UpdateMemoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMemoryInput, UpdateMemoryOutput } from "../models/models_0"; +import type { UpdateMemoryInput, UpdateMemoryOutput } from "../models/models_0"; import { UpdateMemory } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/UpdateOauth2CredentialProviderCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/UpdateOauth2CredentialProviderCommand.ts index eb3fead528ee8..8f1066071a924 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/UpdateOauth2CredentialProviderCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/UpdateOauth2CredentialProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOauth2CredentialProviderRequest, UpdateOauth2CredentialProviderResponse } from "../models/models_0"; +import type { UpdateOauth2CredentialProviderRequest, UpdateOauth2CredentialProviderResponse } from "../models/models_0"; import { UpdateOauth2CredentialProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/commands/UpdateWorkloadIdentityCommand.ts b/clients/client-bedrock-agentcore-control/src/commands/UpdateWorkloadIdentityCommand.ts index df6e7d16ce4e8..82d7389d87588 100644 --- a/clients/client-bedrock-agentcore-control/src/commands/UpdateWorkloadIdentityCommand.ts +++ b/clients/client-bedrock-agentcore-control/src/commands/UpdateWorkloadIdentityCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockAgentCoreControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockAgentCoreControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkloadIdentityRequest, UpdateWorkloadIdentityResponse } from "../models/models_0"; +import type { UpdateWorkloadIdentityRequest, UpdateWorkloadIdentityResponse } from "../models/models_0"; import { UpdateWorkloadIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore-control/src/endpoint/EndpointParameters.ts b/clients/client-bedrock-agentcore-control/src/endpoint/EndpointParameters.ts index 40681752ab8ff..99c108722afb2 100644 --- a/clients/client-bedrock-agentcore-control/src/endpoint/EndpointParameters.ts +++ b/clients/client-bedrock-agentcore-control/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bedrock-agentcore-control/src/endpoint/endpointResolver.ts b/clients/client-bedrock-agentcore-control/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-bedrock-agentcore-control/src/endpoint/endpointResolver.ts +++ b/clients/client-bedrock-agentcore-control/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bedrock-agentcore-control/src/extensionConfiguration.ts b/clients/client-bedrock-agentcore-control/src/extensionConfiguration.ts index 086526ad4262e..14de86602c298 100644 --- a/clients/client-bedrock-agentcore-control/src/extensionConfiguration.ts +++ b/clients/client-bedrock-agentcore-control/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bedrock-agentcore-control/src/models/BedrockAgentCoreControlServiceException.ts b/clients/client-bedrock-agentcore-control/src/models/BedrockAgentCoreControlServiceException.ts index 6c024cbdefae8..2e95c965239fa 100644 --- a/clients/client-bedrock-agentcore-control/src/models/BedrockAgentCoreControlServiceException.ts +++ b/clients/client-bedrock-agentcore-control/src/models/BedrockAgentCoreControlServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bedrock-agentcore-control/src/models/errors.ts b/clients/client-bedrock-agentcore-control/src/models/errors.ts index c19cbf506ec07..e7a8bdbe06caf 100644 --- a/clients/client-bedrock-agentcore-control/src/models/errors.ts +++ b/clients/client-bedrock-agentcore-control/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BedrockAgentCoreControlServiceException as __BaseException } from "./BedrockAgentCoreControlServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-bedrock-agentcore-control/src/pagination/Interfaces.ts b/clients/client-bedrock-agentcore-control/src/pagination/Interfaces.ts index 9b2c14cefbbbe..cc97d2b406876 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/Interfaces.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimeEndpointsPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimeEndpointsPaginator.ts index 90b997897094e..0ffb39f907e16 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimeEndpointsPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimeEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimeVersionsPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimeVersionsPaginator.ts index 99f3ebe33eed3..cdc3942c6ab67 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimeVersionsPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimeVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimesPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimesPaginator.ts index 92a70c1104902..31d9ba393ad3f 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimesPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListAgentRuntimesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListApiKeyCredentialProvidersPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListApiKeyCredentialProvidersPaginator.ts index 37fda1a84592f..ba033b2a03b5a 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListApiKeyCredentialProvidersPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListApiKeyCredentialProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListBrowsersPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListBrowsersPaginator.ts index b02dcd63d8796..1f7aff000eeee 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListBrowsersPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListBrowsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListCodeInterpretersPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListCodeInterpretersPaginator.ts index 5ec5396c07191..a70cacd025e87 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListCodeInterpretersPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListCodeInterpretersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListGatewayTargetsPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListGatewayTargetsPaginator.ts index 36c479fb78959..b30170ffd5f1e 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListGatewayTargetsPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListGatewayTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListGatewaysPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListGatewaysPaginator.ts index 67ae7c589da97..63cdeac09192a 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListGatewaysPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListMemoriesPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListMemoriesPaginator.ts index c963491409832..bead7beae471c 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListMemoriesPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListMemoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListOauth2CredentialProvidersPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListOauth2CredentialProvidersPaginator.ts index e4be593cbb393..2adb7bb2d912d 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListOauth2CredentialProvidersPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListOauth2CredentialProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/pagination/ListWorkloadIdentitiesPaginator.ts b/clients/client-bedrock-agentcore-control/src/pagination/ListWorkloadIdentitiesPaginator.ts index 6ee35b627d960..67fb17eda0ab0 100644 --- a/clients/client-bedrock-agentcore-control/src/pagination/ListWorkloadIdentitiesPaginator.ts +++ b/clients/client-bedrock-agentcore-control/src/pagination/ListWorkloadIdentitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreControlClient } from "../BedrockAgentCoreControlClient"; import { diff --git a/clients/client-bedrock-agentcore-control/src/runtimeConfig.browser.ts b/clients/client-bedrock-agentcore-control/src/runtimeConfig.browser.ts index 6307917d471cd..c1554afa9892b 100644 --- a/clients/client-bedrock-agentcore-control/src/runtimeConfig.browser.ts +++ b/clients/client-bedrock-agentcore-control/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient"; + +import type { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bedrock-agentcore-control/src/runtimeConfig.native.ts b/clients/client-bedrock-agentcore-control/src/runtimeConfig.native.ts index b5394b970b77e..dde075be73a52 100644 --- a/clients/client-bedrock-agentcore-control/src/runtimeConfig.native.ts +++ b/clients/client-bedrock-agentcore-control/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient"; +import type { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bedrock-agentcore-control/src/runtimeConfig.shared.ts b/clients/client-bedrock-agentcore-control/src/runtimeConfig.shared.ts index 034eec847f981..b068c8fa3b509 100644 --- a/clients/client-bedrock-agentcore-control/src/runtimeConfig.shared.ts +++ b/clients/client-bedrock-agentcore-control/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBedrockAgentCoreControlHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient"; +import type { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bedrock-agentcore-control/src/runtimeConfig.ts b/clients/client-bedrock-agentcore-control/src/runtimeConfig.ts index 06b06a0712454..acaa27f2ea65b 100644 --- a/clients/client-bedrock-agentcore-control/src/runtimeConfig.ts +++ b/clients/client-bedrock-agentcore-control/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient"; + +import type { BedrockAgentCoreControlClientConfig } from "./BedrockAgentCoreControlClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bedrock-agentcore-control/src/runtimeExtensions.ts b/clients/client-bedrock-agentcore-control/src/runtimeExtensions.ts index 347d5d300486a..5d88dac877303 100644 --- a/clients/client-bedrock-agentcore-control/src/runtimeExtensions.ts +++ b/clients/client-bedrock-agentcore-control/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BedrockAgentCoreControlExtensionConfiguration } from "./extensionConfiguration"; +import type { BedrockAgentCoreControlExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bedrock-agentcore-control/src/schemas/schemas_0.ts b/clients/client-bedrock-agentcore-control/src/schemas/schemas_0.ts index c7bbb807519ed..37eb3eb9c6675 100644 --- a/clients/client-bedrock-agentcore-control/src/schemas/schemas_0.ts +++ b/clients/client-bedrock-agentcore-control/src/schemas/schemas_0.ts @@ -550,7 +550,7 @@ const n0 = "com.amazonaws.bedrockagentcorecontrol"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bedrock-agentcore/package.json b/clients/client-bedrock-agentcore/package.json index 6481f3231984d..26782f32dd393 100644 --- a/clients/client-bedrock-agentcore/package.json +++ b/clients/client-bedrock-agentcore/package.json @@ -32,7 +32,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -40,21 +40,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bedrock-agentcore/src/BedrockAgentCore.ts b/clients/client-bedrock-agentcore/src/BedrockAgentCore.ts index bb295e44e952f..cdeb71a75f518 100644 --- a/clients/client-bedrock-agentcore/src/BedrockAgentCore.ts +++ b/clients/client-bedrock-agentcore/src/BedrockAgentCore.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BedrockAgentCoreClient, BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient"; +import { BedrockAgentCoreClient } from "./BedrockAgentCoreClient"; import { BatchCreateMemoryRecordsCommand, BatchCreateMemoryRecordsCommandInput, diff --git a/clients/client-bedrock-agentcore/src/BedrockAgentCoreClient.ts b/clients/client-bedrock-agentcore/src/BedrockAgentCoreClient.ts index 7241506eb30b0..1d67301f42fbb 100644 --- a/clients/client-bedrock-agentcore/src/BedrockAgentCoreClient.ts +++ b/clients/client-bedrock-agentcore/src/BedrockAgentCoreClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,47 +21,56 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBedrockAgentCoreHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -162,7 +171,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bedrock-agentcore/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bedrock-agentcore/src/auth/httpAuthExtensionConfiguration.ts index c644ee34e9bbb..971d4c4a986c2 100644 --- a/clients/client-bedrock-agentcore/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bedrock-agentcore/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BedrockAgentCoreHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BedrockAgentCoreHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bedrock-agentcore/src/auth/httpAuthSchemeProvider.ts b/clients/client-bedrock-agentcore/src/auth/httpAuthSchemeProvider.ts index b693118fcef40..9bef30838fb98 100644 --- a/clients/client-bedrock-agentcore/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bedrock-agentcore/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BedrockAgentCoreClientConfig, BedrockAgentCoreClientResolvedConfig } from "../BedrockAgentCoreClient"; +import { type BedrockAgentCoreClientResolvedConfig, BedrockAgentCoreClientConfig } from "../BedrockAgentCoreClient"; /** * @internal diff --git a/clients/client-bedrock-agentcore/src/commands/BatchCreateMemoryRecordsCommand.ts b/clients/client-bedrock-agentcore/src/commands/BatchCreateMemoryRecordsCommand.ts index a3466a7e14e0a..f53ca03048a0b 100644 --- a/clients/client-bedrock-agentcore/src/commands/BatchCreateMemoryRecordsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/BatchCreateMemoryRecordsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateMemoryRecordsInput, BatchCreateMemoryRecordsOutput } from "../models/models_0"; +import type { BatchCreateMemoryRecordsInput, BatchCreateMemoryRecordsOutput } from "../models/models_0"; import { BatchCreateMemoryRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/BatchDeleteMemoryRecordsCommand.ts b/clients/client-bedrock-agentcore/src/commands/BatchDeleteMemoryRecordsCommand.ts index c8b268fdbf3ee..ccdae0581444d 100644 --- a/clients/client-bedrock-agentcore/src/commands/BatchDeleteMemoryRecordsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/BatchDeleteMemoryRecordsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteMemoryRecordsInput, BatchDeleteMemoryRecordsOutput } from "../models/models_0"; +import type { BatchDeleteMemoryRecordsInput, BatchDeleteMemoryRecordsOutput } from "../models/models_0"; import { BatchDeleteMemoryRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/BatchUpdateMemoryRecordsCommand.ts b/clients/client-bedrock-agentcore/src/commands/BatchUpdateMemoryRecordsCommand.ts index 01d2434fe7d89..57413521e409e 100644 --- a/clients/client-bedrock-agentcore/src/commands/BatchUpdateMemoryRecordsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/BatchUpdateMemoryRecordsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateMemoryRecordsInput, BatchUpdateMemoryRecordsOutput } from "../models/models_0"; +import type { BatchUpdateMemoryRecordsInput, BatchUpdateMemoryRecordsOutput } from "../models/models_0"; import { BatchUpdateMemoryRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/CompleteResourceTokenAuthCommand.ts b/clients/client-bedrock-agentcore/src/commands/CompleteResourceTokenAuthCommand.ts index 5e10d7bdddc90..d133238bcd1b7 100644 --- a/clients/client-bedrock-agentcore/src/commands/CompleteResourceTokenAuthCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/CompleteResourceTokenAuthCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteResourceTokenAuthRequest, CompleteResourceTokenAuthResponse } from "../models/models_0"; +import type { CompleteResourceTokenAuthRequest, CompleteResourceTokenAuthResponse } from "../models/models_0"; import { CompleteResourceTokenAuth } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/CreateEventCommand.ts b/clients/client-bedrock-agentcore/src/commands/CreateEventCommand.ts index 55eb4ff6c6435..77ff5babcf979 100644 --- a/clients/client-bedrock-agentcore/src/commands/CreateEventCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/CreateEventCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventInput, CreateEventOutput } from "../models/models_0"; +import type { CreateEventInput, CreateEventOutput } from "../models/models_0"; import { CreateEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/DeleteEventCommand.ts b/clients/client-bedrock-agentcore/src/commands/DeleteEventCommand.ts index 0c09a3e19261e..e2d7b8c76d921 100644 --- a/clients/client-bedrock-agentcore/src/commands/DeleteEventCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/DeleteEventCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventInput, DeleteEventOutput } from "../models/models_0"; +import type { DeleteEventInput, DeleteEventOutput } from "../models/models_0"; import { DeleteEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/DeleteMemoryRecordCommand.ts b/clients/client-bedrock-agentcore/src/commands/DeleteMemoryRecordCommand.ts index 7cc9cba570e9f..c83d7f8c38ce4 100644 --- a/clients/client-bedrock-agentcore/src/commands/DeleteMemoryRecordCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/DeleteMemoryRecordCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMemoryRecordInput, DeleteMemoryRecordOutput } from "../models/models_0"; +import type { DeleteMemoryRecordInput, DeleteMemoryRecordOutput } from "../models/models_0"; import { DeleteMemoryRecord } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetAgentCardCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetAgentCardCommand.ts index 66ade79a21822..20a836e0ec089 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetAgentCardCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetAgentCardCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAgentCardRequest, GetAgentCardResponse } from "../models/models_0"; +import type { GetAgentCardRequest, GetAgentCardResponse } from "../models/models_0"; import { GetAgentCard } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetBrowserSessionCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetBrowserSessionCommand.ts index 2d69a4442621b..7bc1213322b11 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetBrowserSessionCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetBrowserSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBrowserSessionRequest, GetBrowserSessionResponse } from "../models/models_0"; +import type { GetBrowserSessionRequest, GetBrowserSessionResponse } from "../models/models_0"; import { GetBrowserSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetCodeInterpreterSessionCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetCodeInterpreterSessionCommand.ts index e435744b48de8..72f79e7c607ad 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetCodeInterpreterSessionCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetCodeInterpreterSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCodeInterpreterSessionRequest, GetCodeInterpreterSessionResponse } from "../models/models_0"; +import type { GetCodeInterpreterSessionRequest, GetCodeInterpreterSessionResponse } from "../models/models_0"; import { GetCodeInterpreterSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetEventCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetEventCommand.ts index 7dd48eb0f3019..7a4b004d076e5 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetEventCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetEventCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventInput, GetEventOutput } from "../models/models_0"; +import type { GetEventInput, GetEventOutput } from "../models/models_0"; import { GetEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetMemoryRecordCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetMemoryRecordCommand.ts index 19efc1c9ecc2e..1624aef508f03 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetMemoryRecordCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetMemoryRecordCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMemoryRecordInput, GetMemoryRecordOutput } from "../models/models_0"; +import type { GetMemoryRecordInput, GetMemoryRecordOutput } from "../models/models_0"; import { GetMemoryRecord } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetResourceApiKeyCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetResourceApiKeyCommand.ts index 57288aace1097..9f80bed0c3abe 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetResourceApiKeyCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetResourceApiKeyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceApiKeyRequest, GetResourceApiKeyResponse } from "../models/models_0"; +import type { GetResourceApiKeyRequest, GetResourceApiKeyResponse } from "../models/models_0"; import { GetResourceApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetResourceOauth2TokenCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetResourceOauth2TokenCommand.ts index 569f98482d995..4af10cd305f89 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetResourceOauth2TokenCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetResourceOauth2TokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceOauth2TokenRequest, GetResourceOauth2TokenResponse } from "../models/models_0"; +import type { GetResourceOauth2TokenRequest, GetResourceOauth2TokenResponse } from "../models/models_0"; import { GetResourceOauth2Token } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenCommand.ts index d0bcca8b1b1d7..7e47580322463 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkloadAccessTokenRequest, GetWorkloadAccessTokenResponse } from "../models/models_0"; +import type { GetWorkloadAccessTokenRequest, GetWorkloadAccessTokenResponse } from "../models/models_0"; import { GetWorkloadAccessToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenForJWTCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenForJWTCommand.ts index 20eaf03fd8e40..8c041f684876a 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenForJWTCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenForJWTCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkloadAccessTokenForJWTRequest, GetWorkloadAccessTokenForJWTResponse } from "../models/models_0"; +import type { GetWorkloadAccessTokenForJWTRequest, GetWorkloadAccessTokenForJWTResponse } from "../models/models_0"; import { GetWorkloadAccessTokenForJWT } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenForUserIdCommand.ts b/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenForUserIdCommand.ts index f865dc9dc7d5f..9889aad91e13f 100644 --- a/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenForUserIdCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/GetWorkloadAccessTokenForUserIdCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkloadAccessTokenForUserIdRequest, GetWorkloadAccessTokenForUserIdResponse } from "../models/models_0"; +import type { + GetWorkloadAccessTokenForUserIdRequest, + GetWorkloadAccessTokenForUserIdResponse, +} from "../models/models_0"; import { GetWorkloadAccessTokenForUserId } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/InvokeAgentRuntimeCommand.ts b/clients/client-bedrock-agentcore/src/commands/InvokeAgentRuntimeCommand.ts index d0db2c921621d..05350baf8d33a 100644 --- a/clients/client-bedrock-agentcore/src/commands/InvokeAgentRuntimeCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/InvokeAgentRuntimeCommand.ts @@ -1,13 +1,17 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes, } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; import { InvokeAgentRuntimeRequest, InvokeAgentRuntimeResponse } from "../models/models_0"; import { InvokeAgentRuntime } from "../schemas/schemas_0"; diff --git a/clients/client-bedrock-agentcore/src/commands/InvokeCodeInterpreterCommand.ts b/clients/client-bedrock-agentcore/src/commands/InvokeCodeInterpreterCommand.ts index debf7c060b1d2..e593cce50e400 100644 --- a/clients/client-bedrock-agentcore/src/commands/InvokeCodeInterpreterCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/InvokeCodeInterpreterCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeCodeInterpreterRequest, InvokeCodeInterpreterResponse } from "../models/models_0"; +import type { InvokeCodeInterpreterRequest, InvokeCodeInterpreterResponse } from "../models/models_0"; import { InvokeCodeInterpreter } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/ListActorsCommand.ts b/clients/client-bedrock-agentcore/src/commands/ListActorsCommand.ts index 942090aa502e5..0d294c87003fd 100644 --- a/clients/client-bedrock-agentcore/src/commands/ListActorsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/ListActorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListActorsInput, ListActorsOutput } from "../models/models_0"; +import type { ListActorsInput, ListActorsOutput } from "../models/models_0"; import { ListActors } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/ListBrowserSessionsCommand.ts b/clients/client-bedrock-agentcore/src/commands/ListBrowserSessionsCommand.ts index d1bf481b41eec..46ddb6f079c3d 100644 --- a/clients/client-bedrock-agentcore/src/commands/ListBrowserSessionsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/ListBrowserSessionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBrowserSessionsRequest, ListBrowserSessionsResponse } from "../models/models_0"; +import type { ListBrowserSessionsRequest, ListBrowserSessionsResponse } from "../models/models_0"; import { ListBrowserSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/ListCodeInterpreterSessionsCommand.ts b/clients/client-bedrock-agentcore/src/commands/ListCodeInterpreterSessionsCommand.ts index 7624552f361fb..973a350ab6996 100644 --- a/clients/client-bedrock-agentcore/src/commands/ListCodeInterpreterSessionsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/ListCodeInterpreterSessionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCodeInterpreterSessionsRequest, ListCodeInterpreterSessionsResponse } from "../models/models_0"; +import type { ListCodeInterpreterSessionsRequest, ListCodeInterpreterSessionsResponse } from "../models/models_0"; import { ListCodeInterpreterSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/ListEventsCommand.ts b/clients/client-bedrock-agentcore/src/commands/ListEventsCommand.ts index 371830727b8e4..9f0903ab7db56 100644 --- a/clients/client-bedrock-agentcore/src/commands/ListEventsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/ListEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventsInput, ListEventsOutput } from "../models/models_0"; +import type { ListEventsInput, ListEventsOutput } from "../models/models_0"; import { ListEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/ListMemoryExtractionJobsCommand.ts b/clients/client-bedrock-agentcore/src/commands/ListMemoryExtractionJobsCommand.ts index 69de44a4bad2c..a684864ee3e4e 100644 --- a/clients/client-bedrock-agentcore/src/commands/ListMemoryExtractionJobsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/ListMemoryExtractionJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMemoryExtractionJobsInput, ListMemoryExtractionJobsOutput } from "../models/models_0"; +import type { ListMemoryExtractionJobsInput, ListMemoryExtractionJobsOutput } from "../models/models_0"; import { ListMemoryExtractionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/ListMemoryRecordsCommand.ts b/clients/client-bedrock-agentcore/src/commands/ListMemoryRecordsCommand.ts index 72b6eee9d22f2..ad1f54bcac23e 100644 --- a/clients/client-bedrock-agentcore/src/commands/ListMemoryRecordsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/ListMemoryRecordsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMemoryRecordsInput, ListMemoryRecordsOutput } from "../models/models_0"; +import type { ListMemoryRecordsInput, ListMemoryRecordsOutput } from "../models/models_0"; import { ListMemoryRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/ListSessionsCommand.ts b/clients/client-bedrock-agentcore/src/commands/ListSessionsCommand.ts index 9bdb538ab57a0..27269bc27e514 100644 --- a/clients/client-bedrock-agentcore/src/commands/ListSessionsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/ListSessionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSessionsInput, ListSessionsOutput } from "../models/models_0"; +import type { ListSessionsInput, ListSessionsOutput } from "../models/models_0"; import { ListSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/RetrieveMemoryRecordsCommand.ts b/clients/client-bedrock-agentcore/src/commands/RetrieveMemoryRecordsCommand.ts index 9da488f5abb90..8cdad5d8c5472 100644 --- a/clients/client-bedrock-agentcore/src/commands/RetrieveMemoryRecordsCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/RetrieveMemoryRecordsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetrieveMemoryRecordsInput, RetrieveMemoryRecordsOutput } from "../models/models_0"; +import type { RetrieveMemoryRecordsInput, RetrieveMemoryRecordsOutput } from "../models/models_0"; import { RetrieveMemoryRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/StartBrowserSessionCommand.ts b/clients/client-bedrock-agentcore/src/commands/StartBrowserSessionCommand.ts index 023d2abdbc040..e0ee58b43573f 100644 --- a/clients/client-bedrock-agentcore/src/commands/StartBrowserSessionCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/StartBrowserSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartBrowserSessionRequest, StartBrowserSessionResponse } from "../models/models_0"; +import type { StartBrowserSessionRequest, StartBrowserSessionResponse } from "../models/models_0"; import { StartBrowserSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/StartCodeInterpreterSessionCommand.ts b/clients/client-bedrock-agentcore/src/commands/StartCodeInterpreterSessionCommand.ts index 91d002dc08ebb..6cb553bba4a44 100644 --- a/clients/client-bedrock-agentcore/src/commands/StartCodeInterpreterSessionCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/StartCodeInterpreterSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCodeInterpreterSessionRequest, StartCodeInterpreterSessionResponse } from "../models/models_0"; +import type { StartCodeInterpreterSessionRequest, StartCodeInterpreterSessionResponse } from "../models/models_0"; import { StartCodeInterpreterSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/StartMemoryExtractionJobCommand.ts b/clients/client-bedrock-agentcore/src/commands/StartMemoryExtractionJobCommand.ts index be97d162746b4..fcdf75f4f38cd 100644 --- a/clients/client-bedrock-agentcore/src/commands/StartMemoryExtractionJobCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/StartMemoryExtractionJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMemoryExtractionJobInput, StartMemoryExtractionJobOutput } from "../models/models_0"; +import type { StartMemoryExtractionJobInput, StartMemoryExtractionJobOutput } from "../models/models_0"; import { StartMemoryExtractionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/StopBrowserSessionCommand.ts b/clients/client-bedrock-agentcore/src/commands/StopBrowserSessionCommand.ts index b0e22075065cb..1ebcf4a1348d5 100644 --- a/clients/client-bedrock-agentcore/src/commands/StopBrowserSessionCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/StopBrowserSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopBrowserSessionRequest, StopBrowserSessionResponse } from "../models/models_0"; +import type { StopBrowserSessionRequest, StopBrowserSessionResponse } from "../models/models_0"; import { StopBrowserSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/StopCodeInterpreterSessionCommand.ts b/clients/client-bedrock-agentcore/src/commands/StopCodeInterpreterSessionCommand.ts index b541234c2c368..29205693bf700 100644 --- a/clients/client-bedrock-agentcore/src/commands/StopCodeInterpreterSessionCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/StopCodeInterpreterSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopCodeInterpreterSessionRequest, StopCodeInterpreterSessionResponse } from "../models/models_0"; +import type { StopCodeInterpreterSessionRequest, StopCodeInterpreterSessionResponse } from "../models/models_0"; import { StopCodeInterpreterSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/StopRuntimeSessionCommand.ts b/clients/client-bedrock-agentcore/src/commands/StopRuntimeSessionCommand.ts index 56735f1841844..0baf024289ee0 100644 --- a/clients/client-bedrock-agentcore/src/commands/StopRuntimeSessionCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/StopRuntimeSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopRuntimeSessionRequest, StopRuntimeSessionResponse } from "../models/models_0"; +import type { StopRuntimeSessionRequest, StopRuntimeSessionResponse } from "../models/models_0"; import { StopRuntimeSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/commands/UpdateBrowserStreamCommand.ts b/clients/client-bedrock-agentcore/src/commands/UpdateBrowserStreamCommand.ts index 37b6311119e41..edde388aec127 100644 --- a/clients/client-bedrock-agentcore/src/commands/UpdateBrowserStreamCommand.ts +++ b/clients/client-bedrock-agentcore/src/commands/UpdateBrowserStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockAgentCoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockAgentCoreClient"; +import type { + BedrockAgentCoreClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockAgentCoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBrowserStreamRequest, UpdateBrowserStreamResponse } from "../models/models_0"; +import type { UpdateBrowserStreamRequest, UpdateBrowserStreamResponse } from "../models/models_0"; import { UpdateBrowserStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-agentcore/src/endpoint/EndpointParameters.ts b/clients/client-bedrock-agentcore/src/endpoint/EndpointParameters.ts index 40681752ab8ff..99c108722afb2 100644 --- a/clients/client-bedrock-agentcore/src/endpoint/EndpointParameters.ts +++ b/clients/client-bedrock-agentcore/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bedrock-agentcore/src/endpoint/endpointResolver.ts b/clients/client-bedrock-agentcore/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-bedrock-agentcore/src/endpoint/endpointResolver.ts +++ b/clients/client-bedrock-agentcore/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bedrock-agentcore/src/extensionConfiguration.ts b/clients/client-bedrock-agentcore/src/extensionConfiguration.ts index 48a8bece50fbe..64596454b9a49 100644 --- a/clients/client-bedrock-agentcore/src/extensionConfiguration.ts +++ b/clients/client-bedrock-agentcore/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bedrock-agentcore/src/models/BedrockAgentCoreServiceException.ts b/clients/client-bedrock-agentcore/src/models/BedrockAgentCoreServiceException.ts index 02735aac037b2..ef1b3d1cf2b68 100644 --- a/clients/client-bedrock-agentcore/src/models/BedrockAgentCoreServiceException.ts +++ b/clients/client-bedrock-agentcore/src/models/BedrockAgentCoreServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bedrock-agentcore/src/models/errors.ts b/clients/client-bedrock-agentcore/src/models/errors.ts index 9e3d786e79f12..028d0a0b30e15 100644 --- a/clients/client-bedrock-agentcore/src/models/errors.ts +++ b/clients/client-bedrock-agentcore/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BedrockAgentCoreServiceException as __BaseException } from "./BedrockAgentCoreServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-bedrock-agentcore/src/pagination/Interfaces.ts b/clients/client-bedrock-agentcore/src/pagination/Interfaces.ts index 048452ea8de91..b3f267cca472a 100644 --- a/clients/client-bedrock-agentcore/src/pagination/Interfaces.ts +++ b/clients/client-bedrock-agentcore/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BedrockAgentCoreClient } from "../BedrockAgentCoreClient"; diff --git a/clients/client-bedrock-agentcore/src/pagination/ListActorsPaginator.ts b/clients/client-bedrock-agentcore/src/pagination/ListActorsPaginator.ts index 52187613da9bf..b0ebb4725805b 100644 --- a/clients/client-bedrock-agentcore/src/pagination/ListActorsPaginator.ts +++ b/clients/client-bedrock-agentcore/src/pagination/ListActorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreClient } from "../BedrockAgentCoreClient"; import { ListActorsCommand, ListActorsCommandInput, ListActorsCommandOutput } from "../commands/ListActorsCommand"; diff --git a/clients/client-bedrock-agentcore/src/pagination/ListEventsPaginator.ts b/clients/client-bedrock-agentcore/src/pagination/ListEventsPaginator.ts index 1465cb266c2f9..f5988d62145f3 100644 --- a/clients/client-bedrock-agentcore/src/pagination/ListEventsPaginator.ts +++ b/clients/client-bedrock-agentcore/src/pagination/ListEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreClient } from "../BedrockAgentCoreClient"; import { ListEventsCommand, ListEventsCommandInput, ListEventsCommandOutput } from "../commands/ListEventsCommand"; diff --git a/clients/client-bedrock-agentcore/src/pagination/ListMemoryExtractionJobsPaginator.ts b/clients/client-bedrock-agentcore/src/pagination/ListMemoryExtractionJobsPaginator.ts index 4aa13d3ec5588..ce61c3ecc5992 100644 --- a/clients/client-bedrock-agentcore/src/pagination/ListMemoryExtractionJobsPaginator.ts +++ b/clients/client-bedrock-agentcore/src/pagination/ListMemoryExtractionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreClient } from "../BedrockAgentCoreClient"; import { diff --git a/clients/client-bedrock-agentcore/src/pagination/ListMemoryRecordsPaginator.ts b/clients/client-bedrock-agentcore/src/pagination/ListMemoryRecordsPaginator.ts index 4f94db303bb9d..a7e447967c47e 100644 --- a/clients/client-bedrock-agentcore/src/pagination/ListMemoryRecordsPaginator.ts +++ b/clients/client-bedrock-agentcore/src/pagination/ListMemoryRecordsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreClient } from "../BedrockAgentCoreClient"; import { diff --git a/clients/client-bedrock-agentcore/src/pagination/ListSessionsPaginator.ts b/clients/client-bedrock-agentcore/src/pagination/ListSessionsPaginator.ts index 5ed89c89daa3a..ff07dc6e9b81a 100644 --- a/clients/client-bedrock-agentcore/src/pagination/ListSessionsPaginator.ts +++ b/clients/client-bedrock-agentcore/src/pagination/ListSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreClient } from "../BedrockAgentCoreClient"; import { diff --git a/clients/client-bedrock-agentcore/src/pagination/RetrieveMemoryRecordsPaginator.ts b/clients/client-bedrock-agentcore/src/pagination/RetrieveMemoryRecordsPaginator.ts index 3aa6f632c52bb..ab74a097d7ae9 100644 --- a/clients/client-bedrock-agentcore/src/pagination/RetrieveMemoryRecordsPaginator.ts +++ b/clients/client-bedrock-agentcore/src/pagination/RetrieveMemoryRecordsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockAgentCoreClient } from "../BedrockAgentCoreClient"; import { diff --git a/clients/client-bedrock-agentcore/src/runtimeConfig.browser.ts b/clients/client-bedrock-agentcore/src/runtimeConfig.browser.ts index cb888e09ef5bc..6304db1e8956c 100644 --- a/clients/client-bedrock-agentcore/src/runtimeConfig.browser.ts +++ b/clients/client-bedrock-agentcore/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient"; + +import type { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bedrock-agentcore/src/runtimeConfig.native.ts b/clients/client-bedrock-agentcore/src/runtimeConfig.native.ts index 752c58c2354d7..90ca44ca6109d 100644 --- a/clients/client-bedrock-agentcore/src/runtimeConfig.native.ts +++ b/clients/client-bedrock-agentcore/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient"; +import type { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bedrock-agentcore/src/runtimeConfig.shared.ts b/clients/client-bedrock-agentcore/src/runtimeConfig.shared.ts index 403fc78bd975a..e58b4e5b74bc3 100644 --- a/clients/client-bedrock-agentcore/src/runtimeConfig.shared.ts +++ b/clients/client-bedrock-agentcore/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBedrockAgentCoreHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient"; +import type { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bedrock-agentcore/src/runtimeConfig.ts b/clients/client-bedrock-agentcore/src/runtimeConfig.ts index 203b4b122ce9b..7d5ae6fed5a96 100644 --- a/clients/client-bedrock-agentcore/src/runtimeConfig.ts +++ b/clients/client-bedrock-agentcore/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient"; + +import type { BedrockAgentCoreClientConfig } from "./BedrockAgentCoreClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bedrock-agentcore/src/runtimeExtensions.ts b/clients/client-bedrock-agentcore/src/runtimeExtensions.ts index 72db0eb5ed008..8cd6834a593d5 100644 --- a/clients/client-bedrock-agentcore/src/runtimeExtensions.ts +++ b/clients/client-bedrock-agentcore/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BedrockAgentCoreExtensionConfiguration } from "./extensionConfiguration"; +import type { BedrockAgentCoreExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bedrock-agentcore/src/schemas/schemas_0.ts b/clients/client-bedrock-agentcore/src/schemas/schemas_0.ts index 31e5dd9d9cb6a..3ead2b490c96c 100644 --- a/clients/client-bedrock-agentcore/src/schemas/schemas_0.ts +++ b/clients/client-bedrock-agentcore/src/schemas/schemas_0.ts @@ -356,7 +356,7 @@ const n0 = "com.amazonaws.bedrockagentcore"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bedrock-data-automation-runtime/package.json b/clients/client-bedrock-data-automation-runtime/package.json index d1ac036557e7e..b4953dd457f42 100644 --- a/clients/client-bedrock-data-automation-runtime/package.json +++ b/clients/client-bedrock-data-automation-runtime/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bedrock-data-automation-runtime/src/BedrockDataAutomationRuntime.ts b/clients/client-bedrock-data-automation-runtime/src/BedrockDataAutomationRuntime.ts index 649056dd6b247..3d44ddeb89af2 100644 --- a/clients/client-bedrock-data-automation-runtime/src/BedrockDataAutomationRuntime.ts +++ b/clients/client-bedrock-data-automation-runtime/src/BedrockDataAutomationRuntime.ts @@ -1,11 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { - BedrockDataAutomationRuntimeClient, - BedrockDataAutomationRuntimeClientConfig, -} from "./BedrockDataAutomationRuntimeClient"; +import { BedrockDataAutomationRuntimeClient } from "./BedrockDataAutomationRuntimeClient"; import { GetDataAutomationStatusCommand, GetDataAutomationStatusCommandInput, diff --git a/clients/client-bedrock-data-automation-runtime/src/BedrockDataAutomationRuntimeClient.ts b/clients/client-bedrock-data-automation-runtime/src/BedrockDataAutomationRuntimeClient.ts index 025fdb6e3ae7d..7cb99ef665608 100644 --- a/clients/client-bedrock-data-automation-runtime/src/BedrockDataAutomationRuntimeClient.ts +++ b/clients/client-bedrock-data-automation-runtime/src/BedrockDataAutomationRuntimeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBedrockDataAutomationRuntimeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -82,7 +91,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bedrock-data-automation-runtime/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bedrock-data-automation-runtime/src/auth/httpAuthExtensionConfiguration.ts index 13dc229601312..f88a342493c0b 100644 --- a/clients/client-bedrock-data-automation-runtime/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bedrock-data-automation-runtime/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BedrockDataAutomationRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BedrockDataAutomationRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bedrock-data-automation-runtime/src/auth/httpAuthSchemeProvider.ts b/clients/client-bedrock-data-automation-runtime/src/auth/httpAuthSchemeProvider.ts index 112c89e2fb4f0..99684fcb5e39b 100644 --- a/clients/client-bedrock-data-automation-runtime/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bedrock-data-automation-runtime/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type BedrockDataAutomationRuntimeClientResolvedConfig, BedrockDataAutomationRuntimeClientConfig, - BedrockDataAutomationRuntimeClientResolvedConfig, } from "../BedrockDataAutomationRuntimeClient"; /** diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/GetDataAutomationStatusCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/GetDataAutomationStatusCommand.ts index 885d2ad5a9a8e..0961889f88a79 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/GetDataAutomationStatusCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/GetDataAutomationStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataAutomationStatusRequest, GetDataAutomationStatusResponse } from "../models/models_0"; +import type { GetDataAutomationStatusRequest, GetDataAutomationStatusResponse } from "../models/models_0"; import { GetDataAutomationStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationAsyncCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationAsyncCommand.ts index 1417d58e516ee..e479cb6d35946 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationAsyncCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationAsyncCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeDataAutomationAsyncRequest, InvokeDataAutomationAsyncResponse } from "../models/models_0"; +import type { InvokeDataAutomationAsyncRequest, InvokeDataAutomationAsyncResponse } from "../models/models_0"; import { InvokeDataAutomationAsync } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationCommand.ts index 509453ea89c97..f0c0ac06aa5ff 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/InvokeDataAutomationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeDataAutomationRequest, InvokeDataAutomationResponse } from "../models/models_0"; +import type { InvokeDataAutomationRequest, InvokeDataAutomationResponse } from "../models/models_0"; import { InvokeDataAutomation } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/ListTagsForResourceCommand.ts index 09c4d5447b262..30328a99c56be 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/TagResourceCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/TagResourceCommand.ts index c18118fbb1a55..a3cceeaf3a948 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation-runtime/src/commands/UntagResourceCommand.ts b/clients/client-bedrock-data-automation-runtime/src/commands/UntagResourceCommand.ts index 94a1e5b93865b..c2faf4bbdc448 100644 --- a/clients/client-bedrock-data-automation-runtime/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock-data-automation-runtime/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation-runtime/src/endpoint/EndpointParameters.ts b/clients/client-bedrock-data-automation-runtime/src/endpoint/EndpointParameters.ts index 0ee763714fed4..2a71140827ab0 100644 --- a/clients/client-bedrock-data-automation-runtime/src/endpoint/EndpointParameters.ts +++ b/clients/client-bedrock-data-automation-runtime/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bedrock-data-automation-runtime/src/endpoint/endpointResolver.ts b/clients/client-bedrock-data-automation-runtime/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-bedrock-data-automation-runtime/src/endpoint/endpointResolver.ts +++ b/clients/client-bedrock-data-automation-runtime/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bedrock-data-automation-runtime/src/extensionConfiguration.ts b/clients/client-bedrock-data-automation-runtime/src/extensionConfiguration.ts index 46027e6ff9853..ba49f113ecef4 100644 --- a/clients/client-bedrock-data-automation-runtime/src/extensionConfiguration.ts +++ b/clients/client-bedrock-data-automation-runtime/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bedrock-data-automation-runtime/src/models/BedrockDataAutomationRuntimeServiceException.ts b/clients/client-bedrock-data-automation-runtime/src/models/BedrockDataAutomationRuntimeServiceException.ts index a36f5001399c7..d825af7ca15f4 100644 --- a/clients/client-bedrock-data-automation-runtime/src/models/BedrockDataAutomationRuntimeServiceException.ts +++ b/clients/client-bedrock-data-automation-runtime/src/models/BedrockDataAutomationRuntimeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bedrock-data-automation-runtime/src/models/errors.ts b/clients/client-bedrock-data-automation-runtime/src/models/errors.ts index db787288cf0ea..a17358aabd7fb 100644 --- a/clients/client-bedrock-data-automation-runtime/src/models/errors.ts +++ b/clients/client-bedrock-data-automation-runtime/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BedrockDataAutomationRuntimeServiceException as __BaseException } from "./BedrockDataAutomationRuntimeServiceException"; diff --git a/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.browser.ts b/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.browser.ts index 7d97bd74d330a..b333871ec95ce 100644 --- a/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.browser.ts +++ b/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockDataAutomationRuntimeClientConfig } from "./BedrockDataAutomationRuntimeClient"; + +import type { BedrockDataAutomationRuntimeClientConfig } from "./BedrockDataAutomationRuntimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.native.ts b/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.native.ts index cb709dfc2ba52..9fb93121479df 100644 --- a/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.native.ts +++ b/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BedrockDataAutomationRuntimeClientConfig } from "./BedrockDataAutomationRuntimeClient"; +import type { BedrockDataAutomationRuntimeClientConfig } from "./BedrockDataAutomationRuntimeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.shared.ts b/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.shared.ts index 87e3dbb343f7b..b609caee7f8c0 100644 --- a/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.shared.ts +++ b/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBedrockDataAutomationRuntimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BedrockDataAutomationRuntimeClientConfig } from "./BedrockDataAutomationRuntimeClient"; +import type { BedrockDataAutomationRuntimeClientConfig } from "./BedrockDataAutomationRuntimeClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.ts b/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.ts index 405f069cc8ada..134f568afed91 100644 --- a/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.ts +++ b/clients/client-bedrock-data-automation-runtime/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockDataAutomationRuntimeClientConfig } from "./BedrockDataAutomationRuntimeClient"; + +import type { BedrockDataAutomationRuntimeClientConfig } from "./BedrockDataAutomationRuntimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bedrock-data-automation-runtime/src/runtimeExtensions.ts b/clients/client-bedrock-data-automation-runtime/src/runtimeExtensions.ts index 0f0ec9d3f5479..a400b3f75dc3f 100644 --- a/clients/client-bedrock-data-automation-runtime/src/runtimeExtensions.ts +++ b/clients/client-bedrock-data-automation-runtime/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BedrockDataAutomationRuntimeExtensionConfiguration } from "./extensionConfiguration"; +import type { BedrockDataAutomationRuntimeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bedrock-data-automation-runtime/src/schemas/schemas_0.ts b/clients/client-bedrock-data-automation-runtime/src/schemas/schemas_0.ts index b320dede52505..bfb1851d12bc4 100644 --- a/clients/client-bedrock-data-automation-runtime/src/schemas/schemas_0.ts +++ b/clients/client-bedrock-data-automation-runtime/src/schemas/schemas_0.ts @@ -91,7 +91,7 @@ const n0 = "com.amazonaws.bedrockdataautomationruntime"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bedrock-data-automation/package.json b/clients/client-bedrock-data-automation/package.json index 247f959e940cf..8e3a96b328c0a 100644 --- a/clients/client-bedrock-data-automation/package.json +++ b/clients/client-bedrock-data-automation/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bedrock-data-automation/src/BedrockDataAutomation.ts b/clients/client-bedrock-data-automation/src/BedrockDataAutomation.ts index 8ef747fb06d4a..9399a46da33d6 100644 --- a/clients/client-bedrock-data-automation/src/BedrockDataAutomation.ts +++ b/clients/client-bedrock-data-automation/src/BedrockDataAutomation.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BedrockDataAutomationClient, BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient"; +import { BedrockDataAutomationClient } from "./BedrockDataAutomationClient"; import { CreateBlueprintCommand, CreateBlueprintCommandInput, diff --git a/clients/client-bedrock-data-automation/src/BedrockDataAutomationClient.ts b/clients/client-bedrock-data-automation/src/BedrockDataAutomationClient.ts index 9476de57a3d50..14f0c1a880eb0 100644 --- a/clients/client-bedrock-data-automation/src/BedrockDataAutomationClient.ts +++ b/clients/client-bedrock-data-automation/src/BedrockDataAutomationClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBedrockDataAutomationHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateBlueprintCommandInput, CreateBlueprintCommandOutput } from "./commands/CreateBlueprintCommand"; @@ -99,7 +108,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bedrock-data-automation/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bedrock-data-automation/src/auth/httpAuthExtensionConfiguration.ts index ed23d5b7d469d..d4ae93db9f4ba 100644 --- a/clients/client-bedrock-data-automation/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bedrock-data-automation/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BedrockDataAutomationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BedrockDataAutomationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bedrock-data-automation/src/auth/httpAuthSchemeProvider.ts b/clients/client-bedrock-data-automation/src/auth/httpAuthSchemeProvider.ts index c55c83faa6943..20bcbc4f5289e 100644 --- a/clients/client-bedrock-data-automation/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bedrock-data-automation/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type BedrockDataAutomationClientResolvedConfig, BedrockDataAutomationClientConfig, - BedrockDataAutomationClientResolvedConfig, } from "../BedrockDataAutomationClient"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/CreateBlueprintCommand.ts b/clients/client-bedrock-data-automation/src/commands/CreateBlueprintCommand.ts index c2276190f20d5..9cd2d715d2e04 100644 --- a/clients/client-bedrock-data-automation/src/commands/CreateBlueprintCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/CreateBlueprintCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBlueprintRequest, CreateBlueprintResponse } from "../models/models_0"; +import type { CreateBlueprintRequest, CreateBlueprintResponse } from "../models/models_0"; import { CreateBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/CreateBlueprintVersionCommand.ts b/clients/client-bedrock-data-automation/src/commands/CreateBlueprintVersionCommand.ts index faeceb54feefc..714e54b983eea 100644 --- a/clients/client-bedrock-data-automation/src/commands/CreateBlueprintVersionCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/CreateBlueprintVersionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBlueprintVersionRequest, CreateBlueprintVersionResponse } from "../models/models_0"; +import type { CreateBlueprintVersionRequest, CreateBlueprintVersionResponse } from "../models/models_0"; import { CreateBlueprintVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/CreateDataAutomationProjectCommand.ts b/clients/client-bedrock-data-automation/src/commands/CreateDataAutomationProjectCommand.ts index 5563811e802a1..e6e200a8179b0 100644 --- a/clients/client-bedrock-data-automation/src/commands/CreateDataAutomationProjectCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/CreateDataAutomationProjectCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataAutomationProjectRequest, CreateDataAutomationProjectResponse } from "../models/models_0"; +import type { CreateDataAutomationProjectRequest, CreateDataAutomationProjectResponse } from "../models/models_0"; import { CreateDataAutomationProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/DeleteBlueprintCommand.ts b/clients/client-bedrock-data-automation/src/commands/DeleteBlueprintCommand.ts index fb5f3152cefcd..bde8af673ff53 100644 --- a/clients/client-bedrock-data-automation/src/commands/DeleteBlueprintCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/DeleteBlueprintCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBlueprintRequest, DeleteBlueprintResponse } from "../models/models_0"; +import type { DeleteBlueprintRequest, DeleteBlueprintResponse } from "../models/models_0"; import { DeleteBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/DeleteDataAutomationProjectCommand.ts b/clients/client-bedrock-data-automation/src/commands/DeleteDataAutomationProjectCommand.ts index 2b1b7c676daf3..ffb52b081b976 100644 --- a/clients/client-bedrock-data-automation/src/commands/DeleteDataAutomationProjectCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/DeleteDataAutomationProjectCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataAutomationProjectRequest, DeleteDataAutomationProjectResponse } from "../models/models_0"; +import type { DeleteDataAutomationProjectRequest, DeleteDataAutomationProjectResponse } from "../models/models_0"; import { DeleteDataAutomationProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/GetBlueprintCommand.ts b/clients/client-bedrock-data-automation/src/commands/GetBlueprintCommand.ts index 51716bf2d5827..ac2c0d9c36148 100644 --- a/clients/client-bedrock-data-automation/src/commands/GetBlueprintCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/GetBlueprintCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBlueprintRequest, GetBlueprintResponse } from "../models/models_0"; +import type { GetBlueprintRequest, GetBlueprintResponse } from "../models/models_0"; import { GetBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/GetDataAutomationProjectCommand.ts b/clients/client-bedrock-data-automation/src/commands/GetDataAutomationProjectCommand.ts index 2397af34ef5fe..5dd7d5e14eff7 100644 --- a/clients/client-bedrock-data-automation/src/commands/GetDataAutomationProjectCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/GetDataAutomationProjectCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataAutomationProjectRequest, GetDataAutomationProjectResponse } from "../models/models_0"; +import type { GetDataAutomationProjectRequest, GetDataAutomationProjectResponse } from "../models/models_0"; import { GetDataAutomationProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/ListBlueprintsCommand.ts b/clients/client-bedrock-data-automation/src/commands/ListBlueprintsCommand.ts index a6d8939764f7d..7d9032ea748d1 100644 --- a/clients/client-bedrock-data-automation/src/commands/ListBlueprintsCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/ListBlueprintsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBlueprintsRequest, ListBlueprintsResponse } from "../models/models_0"; +import type { ListBlueprintsRequest, ListBlueprintsResponse } from "../models/models_0"; import { ListBlueprints } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/ListDataAutomationProjectsCommand.ts b/clients/client-bedrock-data-automation/src/commands/ListDataAutomationProjectsCommand.ts index 6402e7e7124ff..81078c665dfcb 100644 --- a/clients/client-bedrock-data-automation/src/commands/ListDataAutomationProjectsCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/ListDataAutomationProjectsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataAutomationProjectsRequest, ListDataAutomationProjectsResponse } from "../models/models_0"; +import type { ListDataAutomationProjectsRequest, ListDataAutomationProjectsResponse } from "../models/models_0"; import { ListDataAutomationProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock-data-automation/src/commands/ListTagsForResourceCommand.ts index f3cfc4a681726..c0cefeaf04294 100644 --- a/clients/client-bedrock-data-automation/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/TagResourceCommand.ts b/clients/client-bedrock-data-automation/src/commands/TagResourceCommand.ts index b617eda6b9464..3ccddb2f27282 100644 --- a/clients/client-bedrock-data-automation/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/UntagResourceCommand.ts b/clients/client-bedrock-data-automation/src/commands/UntagResourceCommand.ts index 72ba5e61a3da4..e256e0825769b 100644 --- a/clients/client-bedrock-data-automation/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/UpdateBlueprintCommand.ts b/clients/client-bedrock-data-automation/src/commands/UpdateBlueprintCommand.ts index 58bfb0e9a3a03..c3fa4224ab218 100644 --- a/clients/client-bedrock-data-automation/src/commands/UpdateBlueprintCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/UpdateBlueprintCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBlueprintRequest, UpdateBlueprintResponse } from "../models/models_0"; +import type { UpdateBlueprintRequest, UpdateBlueprintResponse } from "../models/models_0"; import { UpdateBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/commands/UpdateDataAutomationProjectCommand.ts b/clients/client-bedrock-data-automation/src/commands/UpdateDataAutomationProjectCommand.ts index f4359f3fc541c..65a43283a304c 100644 --- a/clients/client-bedrock-data-automation/src/commands/UpdateDataAutomationProjectCommand.ts +++ b/clients/client-bedrock-data-automation/src/commands/UpdateDataAutomationProjectCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { BedrockDataAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../BedrockDataAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataAutomationProjectRequest, UpdateDataAutomationProjectResponse } from "../models/models_0"; +import type { UpdateDataAutomationProjectRequest, UpdateDataAutomationProjectResponse } from "../models/models_0"; import { UpdateDataAutomationProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-data-automation/src/endpoint/EndpointParameters.ts b/clients/client-bedrock-data-automation/src/endpoint/EndpointParameters.ts index 0ee763714fed4..2a71140827ab0 100644 --- a/clients/client-bedrock-data-automation/src/endpoint/EndpointParameters.ts +++ b/clients/client-bedrock-data-automation/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bedrock-data-automation/src/endpoint/endpointResolver.ts b/clients/client-bedrock-data-automation/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-bedrock-data-automation/src/endpoint/endpointResolver.ts +++ b/clients/client-bedrock-data-automation/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bedrock-data-automation/src/extensionConfiguration.ts b/clients/client-bedrock-data-automation/src/extensionConfiguration.ts index 2b883450f9b98..50d87d20abc18 100644 --- a/clients/client-bedrock-data-automation/src/extensionConfiguration.ts +++ b/clients/client-bedrock-data-automation/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bedrock-data-automation/src/models/BedrockDataAutomationServiceException.ts b/clients/client-bedrock-data-automation/src/models/BedrockDataAutomationServiceException.ts index 5a153ec635ae9..611afa6d23954 100644 --- a/clients/client-bedrock-data-automation/src/models/BedrockDataAutomationServiceException.ts +++ b/clients/client-bedrock-data-automation/src/models/BedrockDataAutomationServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bedrock-data-automation/src/models/errors.ts b/clients/client-bedrock-data-automation/src/models/errors.ts index eabf561355af6..67d796e0510ec 100644 --- a/clients/client-bedrock-data-automation/src/models/errors.ts +++ b/clients/client-bedrock-data-automation/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BedrockDataAutomationServiceException as __BaseException } from "./BedrockDataAutomationServiceException"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-bedrock-data-automation/src/pagination/Interfaces.ts b/clients/client-bedrock-data-automation/src/pagination/Interfaces.ts index ecdfc194293a2..e41b2098e4e87 100644 --- a/clients/client-bedrock-data-automation/src/pagination/Interfaces.ts +++ b/clients/client-bedrock-data-automation/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BedrockDataAutomationClient } from "../BedrockDataAutomationClient"; diff --git a/clients/client-bedrock-data-automation/src/pagination/ListBlueprintsPaginator.ts b/clients/client-bedrock-data-automation/src/pagination/ListBlueprintsPaginator.ts index 575f8d8e2e423..51719c36af2a1 100644 --- a/clients/client-bedrock-data-automation/src/pagination/ListBlueprintsPaginator.ts +++ b/clients/client-bedrock-data-automation/src/pagination/ListBlueprintsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockDataAutomationClient } from "../BedrockDataAutomationClient"; import { diff --git a/clients/client-bedrock-data-automation/src/pagination/ListDataAutomationProjectsPaginator.ts b/clients/client-bedrock-data-automation/src/pagination/ListDataAutomationProjectsPaginator.ts index 6da203bedab9c..cac8f1a141c6f 100644 --- a/clients/client-bedrock-data-automation/src/pagination/ListDataAutomationProjectsPaginator.ts +++ b/clients/client-bedrock-data-automation/src/pagination/ListDataAutomationProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockDataAutomationClient } from "../BedrockDataAutomationClient"; import { diff --git a/clients/client-bedrock-data-automation/src/runtimeConfig.browser.ts b/clients/client-bedrock-data-automation/src/runtimeConfig.browser.ts index b68932f9c0e1f..42e9851888d35 100644 --- a/clients/client-bedrock-data-automation/src/runtimeConfig.browser.ts +++ b/clients/client-bedrock-data-automation/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient"; + +import type { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bedrock-data-automation/src/runtimeConfig.native.ts b/clients/client-bedrock-data-automation/src/runtimeConfig.native.ts index b7c510a237696..fa92f656c2208 100644 --- a/clients/client-bedrock-data-automation/src/runtimeConfig.native.ts +++ b/clients/client-bedrock-data-automation/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient"; +import type { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bedrock-data-automation/src/runtimeConfig.shared.ts b/clients/client-bedrock-data-automation/src/runtimeConfig.shared.ts index 9ee5b1719d513..62341b2d326cc 100644 --- a/clients/client-bedrock-data-automation/src/runtimeConfig.shared.ts +++ b/clients/client-bedrock-data-automation/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBedrockDataAutomationHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient"; +import type { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bedrock-data-automation/src/runtimeConfig.ts b/clients/client-bedrock-data-automation/src/runtimeConfig.ts index 3d56e4e5629ec..a36a94f31ec8b 100644 --- a/clients/client-bedrock-data-automation/src/runtimeConfig.ts +++ b/clients/client-bedrock-data-automation/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient"; + +import type { BedrockDataAutomationClientConfig } from "./BedrockDataAutomationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bedrock-data-automation/src/runtimeExtensions.ts b/clients/client-bedrock-data-automation/src/runtimeExtensions.ts index 36438563d5b00..820747bd1cd2c 100644 --- a/clients/client-bedrock-data-automation/src/runtimeExtensions.ts +++ b/clients/client-bedrock-data-automation/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BedrockDataAutomationExtensionConfiguration } from "./extensionConfiguration"; +import type { BedrockDataAutomationExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bedrock-data-automation/src/schemas/schemas_0.ts b/clients/client-bedrock-data-automation/src/schemas/schemas_0.ts index 24add8eab5328..f8b98569eb084 100644 --- a/clients/client-bedrock-data-automation/src/schemas/schemas_0.ts +++ b/clients/client-bedrock-data-automation/src/schemas/schemas_0.ts @@ -191,7 +191,7 @@ const n0 = "com.amazonaws.bedrockdataautomation"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bedrock-runtime/package.json b/clients/client-bedrock-runtime/package.json index d4c337926786a..84253a62ac77e 100644 --- a/clients/client-bedrock-runtime/package.json +++ b/clients/client-bedrock-runtime/package.json @@ -36,7 +36,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -44,21 +44,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bedrock-runtime/src/BedrockRuntime.ts b/clients/client-bedrock-runtime/src/BedrockRuntime.ts index 45f94446f71f0..b703f75f1d533 100644 --- a/clients/client-bedrock-runtime/src/BedrockRuntime.ts +++ b/clients/client-bedrock-runtime/src/BedrockRuntime.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BedrockRuntimeClient, BedrockRuntimeClientConfig } from "./BedrockRuntimeClient"; +import { BedrockRuntimeClient } from "./BedrockRuntimeClient"; import { ApplyGuardrailCommand, ApplyGuardrailCommandInput, diff --git a/clients/client-bedrock-runtime/src/BedrockRuntimeClient.ts b/clients/client-bedrock-runtime/src/BedrockRuntimeClient.ts index bdde4363d1096..1fb30fd0ec7cd 100644 --- a/clients/client-bedrock-runtime/src/BedrockRuntimeClient.ts +++ b/clients/client-bedrock-runtime/src/BedrockRuntimeClient.ts @@ -1,26 +1,30 @@ // smithy-typescript generated code import { - EventStreamInputConfig, - EventStreamResolvedConfig, + type EventStreamInputConfig, + type EventStreamResolvedConfig, resolveEventStreamConfig, } from "@aws-sdk/middleware-eventstream"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { resolveWebSocketConfig, WebSocketInputConfig, WebSocketResolvedConfig } from "@aws-sdk/middleware-websocket"; +import { + type WebSocketInputConfig, + type WebSocketResolvedConfig, + resolveWebSocketConfig, +} from "@aws-sdk/middleware-websocket"; import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -28,46 +32,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBedrockRuntimeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { ApplyGuardrailCommandInput, ApplyGuardrailCommandOutput } from "./commands/ApplyGuardrailCommand"; @@ -93,7 +106,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bedrock-runtime/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bedrock-runtime/src/auth/httpAuthExtensionConfiguration.ts index b333c6e3cb836..8df110c7e8256 100644 --- a/clients/client-bedrock-runtime/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bedrock-runtime/src/auth/httpAuthExtensionConfiguration.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { + type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider, - HttpAuthScheme, TokenIdentity, TokenIdentityProvider, } from "@smithy/types"; -import { BedrockRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BedrockRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bedrock-runtime/src/auth/httpAuthSchemeProvider.ts b/clients/client-bedrock-runtime/src/auth/httpAuthSchemeProvider.ts index 6183619a6b81b..ac69cd973ee92 100644 --- a/clients/client-bedrock-runtime/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bedrock-runtime/src/auth/httpAuthSchemeProvider.ts @@ -8,19 +8,19 @@ import { import { FromSsoInit } from "@aws-sdk/token-providers"; import { doesIdentityRequireRefresh, isIdentityExpired, memoizeIdentityProvider } from "@smithy/core"; import { + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParameters, + type HttpAuthSchemeParametersProvider, + type HttpAuthSchemeProvider, + type Provider, HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, - HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, - HttpAuthSchemeProvider, - Provider, TokenIdentity, TokenIdentityProvider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BedrockRuntimeClientConfig, BedrockRuntimeClientResolvedConfig } from "../BedrockRuntimeClient"; +import { type BedrockRuntimeClientResolvedConfig, BedrockRuntimeClientConfig } from "../BedrockRuntimeClient"; /** * @internal diff --git a/clients/client-bedrock-runtime/src/commands/ApplyGuardrailCommand.ts b/clients/client-bedrock-runtime/src/commands/ApplyGuardrailCommand.ts index 74cff494eea2b..3dc95b692b473 100644 --- a/clients/client-bedrock-runtime/src/commands/ApplyGuardrailCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/ApplyGuardrailCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplyGuardrailRequest, ApplyGuardrailResponse } from "../models/models_0"; +import type { ApplyGuardrailRequest, ApplyGuardrailResponse } from "../models/models_0"; import { ApplyGuardrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-runtime/src/commands/ConverseCommand.ts b/clients/client-bedrock-runtime/src/commands/ConverseCommand.ts index 398da7387bbba..f39d02afd77f6 100644 --- a/clients/client-bedrock-runtime/src/commands/ConverseCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/ConverseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConverseRequest, ConverseResponse } from "../models/models_0"; +import type { ConverseRequest, ConverseResponse } from "../models/models_0"; import { Converse } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-runtime/src/commands/ConverseStreamCommand.ts b/clients/client-bedrock-runtime/src/commands/ConverseStreamCommand.ts index de34d03f9e775..9cdd504047786 100644 --- a/clients/client-bedrock-runtime/src/commands/ConverseStreamCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/ConverseStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConverseStreamRequest, ConverseStreamResponse } from "../models/models_0"; +import type { ConverseStreamRequest, ConverseStreamResponse } from "../models/models_0"; import { ConverseStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-runtime/src/commands/CountTokensCommand.ts b/clients/client-bedrock-runtime/src/commands/CountTokensCommand.ts index 5737e1e0516ea..2a0928876041d 100644 --- a/clients/client-bedrock-runtime/src/commands/CountTokensCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/CountTokensCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CountTokensRequest, CountTokensResponse } from "../models/models_0"; +import type { CountTokensRequest, CountTokensResponse } from "../models/models_0"; import { CountTokens } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-runtime/src/commands/GetAsyncInvokeCommand.ts b/clients/client-bedrock-runtime/src/commands/GetAsyncInvokeCommand.ts index e9292901284c7..4a7326b46fa14 100644 --- a/clients/client-bedrock-runtime/src/commands/GetAsyncInvokeCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/GetAsyncInvokeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAsyncInvokeRequest, GetAsyncInvokeResponse } from "../models/models_0"; +import type { GetAsyncInvokeRequest, GetAsyncInvokeResponse } from "../models/models_0"; import { GetAsyncInvoke } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-runtime/src/commands/InvokeModelCommand.ts b/clients/client-bedrock-runtime/src/commands/InvokeModelCommand.ts index f0399dc681753..5b664e54293b3 100644 --- a/clients/client-bedrock-runtime/src/commands/InvokeModelCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/InvokeModelCommand.ts @@ -1,10 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; import { InvokeModelRequest, InvokeModelResponse } from "../models/models_0"; import { InvokeModel } from "../schemas/schemas_0"; diff --git a/clients/client-bedrock-runtime/src/commands/InvokeModelWithBidirectionalStreamCommand.ts b/clients/client-bedrock-runtime/src/commands/InvokeModelWithBidirectionalStreamCommand.ts index 9c9c49a866b46..59e3f1c5d5e36 100644 --- a/clients/client-bedrock-runtime/src/commands/InvokeModelWithBidirectionalStreamCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/InvokeModelWithBidirectionalStreamCommand.ts @@ -3,11 +3,15 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { InvokeModelWithBidirectionalStreamRequest, InvokeModelWithBidirectionalStreamResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock-runtime/src/commands/InvokeModelWithResponseStreamCommand.ts b/clients/client-bedrock-runtime/src/commands/InvokeModelWithResponseStreamCommand.ts index d644963a170e5..3d85fcba244b8 100644 --- a/clients/client-bedrock-runtime/src/commands/InvokeModelWithResponseStreamCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/InvokeModelWithResponseStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeModelWithResponseStreamRequest, InvokeModelWithResponseStreamResponse } from "../models/models_0"; +import { type InvokeModelWithResponseStreamResponse, InvokeModelWithResponseStreamRequest } from "../models/models_0"; import { InvokeModelWithResponseStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-runtime/src/commands/ListAsyncInvokesCommand.ts b/clients/client-bedrock-runtime/src/commands/ListAsyncInvokesCommand.ts index e78d460e5b37d..5379e4589d3d2 100644 --- a/clients/client-bedrock-runtime/src/commands/ListAsyncInvokesCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/ListAsyncInvokesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAsyncInvokesRequest, ListAsyncInvokesResponse } from "../models/models_0"; +import type { ListAsyncInvokesRequest, ListAsyncInvokesResponse } from "../models/models_0"; import { ListAsyncInvokes } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-runtime/src/commands/StartAsyncInvokeCommand.ts b/clients/client-bedrock-runtime/src/commands/StartAsyncInvokeCommand.ts index 07217982f9ab6..1afd883a58d0e 100644 --- a/clients/client-bedrock-runtime/src/commands/StartAsyncInvokeCommand.ts +++ b/clients/client-bedrock-runtime/src/commands/StartAsyncInvokeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockRuntimeClient"; +import type { + BedrockRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BedrockRuntimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAsyncInvokeRequest, StartAsyncInvokeResponse } from "../models/models_0"; +import type { StartAsyncInvokeRequest, StartAsyncInvokeResponse } from "../models/models_0"; import { StartAsyncInvoke } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock-runtime/src/endpoint/EndpointParameters.ts b/clients/client-bedrock-runtime/src/endpoint/EndpointParameters.ts index 0ee763714fed4..2a71140827ab0 100644 --- a/clients/client-bedrock-runtime/src/endpoint/EndpointParameters.ts +++ b/clients/client-bedrock-runtime/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bedrock-runtime/src/endpoint/endpointResolver.ts b/clients/client-bedrock-runtime/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-bedrock-runtime/src/endpoint/endpointResolver.ts +++ b/clients/client-bedrock-runtime/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bedrock-runtime/src/extensionConfiguration.ts b/clients/client-bedrock-runtime/src/extensionConfiguration.ts index 3808a9dc79c3a..18e526a5b3176 100644 --- a/clients/client-bedrock-runtime/src/extensionConfiguration.ts +++ b/clients/client-bedrock-runtime/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bedrock-runtime/src/models/BedrockRuntimeServiceException.ts b/clients/client-bedrock-runtime/src/models/BedrockRuntimeServiceException.ts index 3475708046e52..dbe5eadeaaf85 100644 --- a/clients/client-bedrock-runtime/src/models/BedrockRuntimeServiceException.ts +++ b/clients/client-bedrock-runtime/src/models/BedrockRuntimeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bedrock-runtime/src/models/errors.ts b/clients/client-bedrock-runtime/src/models/errors.ts index 971623c6171e2..761d2ebd60652 100644 --- a/clients/client-bedrock-runtime/src/models/errors.ts +++ b/clients/client-bedrock-runtime/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BedrockRuntimeServiceException as __BaseException } from "./BedrockRuntimeServiceException"; diff --git a/clients/client-bedrock-runtime/src/pagination/Interfaces.ts b/clients/client-bedrock-runtime/src/pagination/Interfaces.ts index 441261d4dd66e..eb45775474c31 100644 --- a/clients/client-bedrock-runtime/src/pagination/Interfaces.ts +++ b/clients/client-bedrock-runtime/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BedrockRuntimeClient } from "../BedrockRuntimeClient"; diff --git a/clients/client-bedrock-runtime/src/pagination/ListAsyncInvokesPaginator.ts b/clients/client-bedrock-runtime/src/pagination/ListAsyncInvokesPaginator.ts index 7e6f6f7174d22..5a5649b9507f3 100644 --- a/clients/client-bedrock-runtime/src/pagination/ListAsyncInvokesPaginator.ts +++ b/clients/client-bedrock-runtime/src/pagination/ListAsyncInvokesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockRuntimeClient } from "../BedrockRuntimeClient"; import { diff --git a/clients/client-bedrock-runtime/src/runtimeConfig.browser.ts b/clients/client-bedrock-runtime/src/runtimeConfig.browser.ts index cc1e6449a3bf4..c0f1d2ca8349c 100644 --- a/clients/client-bedrock-runtime/src/runtimeConfig.browser.ts +++ b/clients/client-bedrock-runtime/src/runtimeConfig.browser.ts @@ -13,12 +13,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as HttpRequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockRuntimeClientConfig } from "./BedrockRuntimeClient"; + +import type { BedrockRuntimeClientConfig } from "./BedrockRuntimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bedrock-runtime/src/runtimeConfig.native.ts b/clients/client-bedrock-runtime/src/runtimeConfig.native.ts index 08f3cdf4f3a18..991ed00d2667b 100644 --- a/clients/client-bedrock-runtime/src/runtimeConfig.native.ts +++ b/clients/client-bedrock-runtime/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { invalidFunction } from "@smithy/invalid-dependency"; -import { BedrockRuntimeClientConfig } from "./BedrockRuntimeClient"; +import type { BedrockRuntimeClientConfig } from "./BedrockRuntimeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bedrock-runtime/src/runtimeConfig.shared.ts b/clients/client-bedrock-runtime/src/runtimeConfig.shared.ts index 000fa151f39fa..2942b9634434a 100644 --- a/clients/client-bedrock-runtime/src/runtimeConfig.shared.ts +++ b/clients/client-bedrock-runtime/src/runtimeConfig.shared.ts @@ -3,13 +3,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { HttpBearerAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBedrockRuntimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BedrockRuntimeClientConfig } from "./BedrockRuntimeClient"; +import type { BedrockRuntimeClientConfig } from "./BedrockRuntimeClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bedrock-runtime/src/runtimeConfig.ts b/clients/client-bedrock-runtime/src/runtimeConfig.ts index ac4804ecc7988..eb8aff1f3a02b 100644 --- a/clients/client-bedrock-runtime/src/runtimeConfig.ts +++ b/clients/client-bedrock-runtime/src/runtimeConfig.ts @@ -23,14 +23,14 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttp2Handler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; -import { IdentityProviderConfig } from "@smithy/types"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import type { IdentityProviderConfig } from "@smithy/types"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockRuntimeClientConfig } from "./BedrockRuntimeClient"; + +import type { BedrockRuntimeClientConfig } from "./BedrockRuntimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bedrock-runtime/src/runtimeExtensions.ts b/clients/client-bedrock-runtime/src/runtimeExtensions.ts index 72e0a66dd27fe..9fe9beaa8afd7 100644 --- a/clients/client-bedrock-runtime/src/runtimeExtensions.ts +++ b/clients/client-bedrock-runtime/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BedrockRuntimeExtensionConfiguration } from "./extensionConfiguration"; +import type { BedrockRuntimeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bedrock-runtime/src/schemas/schemas_0.ts b/clients/client-bedrock-runtime/src/schemas/schemas_0.ts index 2bd7ca3036921..b77dcd2e85eca 100644 --- a/clients/client-bedrock-runtime/src/schemas/schemas_0.ts +++ b/clients/client-bedrock-runtime/src/schemas/schemas_0.ts @@ -443,7 +443,7 @@ const n0 = "com.amazonaws.bedrockruntime"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-bedrock/package.json b/clients/client-bedrock/package.json index 5bbcd5ac25dfd..5619dc5f38289 100644 --- a/clients/client-bedrock/package.json +++ b/clients/client-bedrock/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-bedrock/src/Bedrock.ts b/clients/client-bedrock/src/Bedrock.ts index 9b24db5c146de..803d1a7d0aee0 100644 --- a/clients/client-bedrock/src/Bedrock.ts +++ b/clients/client-bedrock/src/Bedrock.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BedrockClient, BedrockClientConfig } from "./BedrockClient"; +import { BedrockClient } from "./BedrockClient"; import { BatchDeleteEvaluationJobCommand, BatchDeleteEvaluationJobCommandInput, diff --git a/clients/client-bedrock/src/BedrockClient.ts b/clients/client-bedrock/src/BedrockClient.ts index 9ff837c805620..cd7597069df81 100644 --- a/clients/client-bedrock/src/BedrockClient.ts +++ b/clients/client-bedrock/src/BedrockClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBedrockHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -377,7 +386,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-bedrock/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-bedrock/src/auth/httpAuthExtensionConfiguration.ts index 8e1caabeb2d73..9ffbba813d6d6 100644 --- a/clients/client-bedrock/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-bedrock/src/auth/httpAuthExtensionConfiguration.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { + type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider, - HttpAuthScheme, TokenIdentity, TokenIdentityProvider, } from "@smithy/types"; -import { BedrockHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BedrockHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-bedrock/src/auth/httpAuthSchemeProvider.ts b/clients/client-bedrock/src/auth/httpAuthSchemeProvider.ts index 0cdb81ed2982c..96cdf30371597 100644 --- a/clients/client-bedrock/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-bedrock/src/auth/httpAuthSchemeProvider.ts @@ -8,19 +8,19 @@ import { import { FromSsoInit } from "@aws-sdk/token-providers"; import { doesIdentityRequireRefresh, isIdentityExpired, memoizeIdentityProvider } from "@smithy/core"; import { + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParameters, + type HttpAuthSchemeParametersProvider, + type HttpAuthSchemeProvider, + type Provider, HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, - HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, - HttpAuthSchemeProvider, - Provider, TokenIdentity, TokenIdentityProvider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BedrockClientConfig, BedrockClientResolvedConfig } from "../BedrockClient"; +import { type BedrockClientResolvedConfig, BedrockClientConfig } from "../BedrockClient"; /** * @internal diff --git a/clients/client-bedrock/src/commands/BatchDeleteEvaluationJobCommand.ts b/clients/client-bedrock/src/commands/BatchDeleteEvaluationJobCommand.ts index 813cf1957bd83..8bd852d6cbed8 100644 --- a/clients/client-bedrock/src/commands/BatchDeleteEvaluationJobCommand.ts +++ b/clients/client-bedrock/src/commands/BatchDeleteEvaluationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteEvaluationJobRequest, BatchDeleteEvaluationJobResponse } from "../models/models_0"; +import type { BatchDeleteEvaluationJobRequest, BatchDeleteEvaluationJobResponse } from "../models/models_0"; import { BatchDeleteEvaluationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CancelAutomatedReasoningPolicyBuildWorkflowCommand.ts b/clients/client-bedrock/src/commands/CancelAutomatedReasoningPolicyBuildWorkflowCommand.ts index d6ee3bb95f547..810554f7b4567 100644 --- a/clients/client-bedrock/src/commands/CancelAutomatedReasoningPolicyBuildWorkflowCommand.ts +++ b/clients/client-bedrock/src/commands/CancelAutomatedReasoningPolicyBuildWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CancelAutomatedReasoningPolicyBuildWorkflowRequest, CancelAutomatedReasoningPolicyBuildWorkflowResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyCommand.ts b/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyCommand.ts index e657390c00e32..a4c1de2d7d04c 100644 --- a/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyCommand.ts +++ b/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAutomatedReasoningPolicyRequest, CreateAutomatedReasoningPolicyResponse } from "../models/models_0"; +import type { CreateAutomatedReasoningPolicyRequest, CreateAutomatedReasoningPolicyResponse } from "../models/models_0"; import { CreateAutomatedReasoningPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyTestCaseCommand.ts b/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyTestCaseCommand.ts index 5386af9b610ca..59d53838afbe7 100644 --- a/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyTestCaseCommand.ts +++ b/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyTestCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateAutomatedReasoningPolicyTestCaseRequest, CreateAutomatedReasoningPolicyTestCaseResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyVersionCommand.ts b/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyVersionCommand.ts index e5eb2f09eef36..d7c4f4e3d52b8 100644 --- a/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyVersionCommand.ts +++ b/clients/client-bedrock/src/commands/CreateAutomatedReasoningPolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateAutomatedReasoningPolicyVersionRequest, CreateAutomatedReasoningPolicyVersionResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/CreateCustomModelCommand.ts b/clients/client-bedrock/src/commands/CreateCustomModelCommand.ts index 1b82b974c8119..5122d9a233124 100644 --- a/clients/client-bedrock/src/commands/CreateCustomModelCommand.ts +++ b/clients/client-bedrock/src/commands/CreateCustomModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomModelRequest, CreateCustomModelResponse } from "../models/models_0"; +import type { CreateCustomModelRequest, CreateCustomModelResponse } from "../models/models_0"; import { CreateCustomModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateCustomModelDeploymentCommand.ts b/clients/client-bedrock/src/commands/CreateCustomModelDeploymentCommand.ts index bc12c885fab3d..9d175612fcfd9 100644 --- a/clients/client-bedrock/src/commands/CreateCustomModelDeploymentCommand.ts +++ b/clients/client-bedrock/src/commands/CreateCustomModelDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomModelDeploymentRequest, CreateCustomModelDeploymentResponse } from "../models/models_0"; +import type { CreateCustomModelDeploymentRequest, CreateCustomModelDeploymentResponse } from "../models/models_0"; import { CreateCustomModelDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateEvaluationJobCommand.ts b/clients/client-bedrock/src/commands/CreateEvaluationJobCommand.ts index dea7dd206c050..5ba371cd80a8f 100644 --- a/clients/client-bedrock/src/commands/CreateEvaluationJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateEvaluationJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEvaluationJobResponse } from "../models/models_0"; -import { CreateEvaluationJobRequest } from "../models/models_1"; +import type { CreateEvaluationJobResponse } from "../models/models_0"; +import type { CreateEvaluationJobRequest } from "../models/models_1"; import { CreateEvaluationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateFoundationModelAgreementCommand.ts b/clients/client-bedrock/src/commands/CreateFoundationModelAgreementCommand.ts index 1e70fdbb47e76..3c49163f14c59 100644 --- a/clients/client-bedrock/src/commands/CreateFoundationModelAgreementCommand.ts +++ b/clients/client-bedrock/src/commands/CreateFoundationModelAgreementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFoundationModelAgreementRequest, CreateFoundationModelAgreementResponse } from "../models/models_1"; +import type { CreateFoundationModelAgreementRequest, CreateFoundationModelAgreementResponse } from "../models/models_1"; import { CreateFoundationModelAgreement } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateGuardrailCommand.ts b/clients/client-bedrock/src/commands/CreateGuardrailCommand.ts index 562d0f38477b9..e71a82d6c57f8 100644 --- a/clients/client-bedrock/src/commands/CreateGuardrailCommand.ts +++ b/clients/client-bedrock/src/commands/CreateGuardrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGuardrailRequest, CreateGuardrailResponse } from "../models/models_0"; +import type { CreateGuardrailRequest, CreateGuardrailResponse } from "../models/models_0"; import { CreateGuardrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateGuardrailVersionCommand.ts b/clients/client-bedrock/src/commands/CreateGuardrailVersionCommand.ts index 1a8a7ddc1d637..d79572888f22c 100644 --- a/clients/client-bedrock/src/commands/CreateGuardrailVersionCommand.ts +++ b/clients/client-bedrock/src/commands/CreateGuardrailVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGuardrailVersionRequest, CreateGuardrailVersionResponse } from "../models/models_0"; +import type { CreateGuardrailVersionRequest, CreateGuardrailVersionResponse } from "../models/models_0"; import { CreateGuardrailVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateInferenceProfileCommand.ts b/clients/client-bedrock/src/commands/CreateInferenceProfileCommand.ts index bd258b0dd812c..d70e2290848a5 100644 --- a/clients/client-bedrock/src/commands/CreateInferenceProfileCommand.ts +++ b/clients/client-bedrock/src/commands/CreateInferenceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInferenceProfileRequest, CreateInferenceProfileResponse } from "../models/models_0"; +import type { CreateInferenceProfileRequest, CreateInferenceProfileResponse } from "../models/models_0"; import { CreateInferenceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/CreateMarketplaceModelEndpointCommand.ts index 55ad743addb58..7ca4d20d2e6e2 100644 --- a/clients/client-bedrock/src/commands/CreateMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/CreateMarketplaceModelEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMarketplaceModelEndpointRequest, CreateMarketplaceModelEndpointResponse } from "../models/models_0"; +import type { CreateMarketplaceModelEndpointRequest, CreateMarketplaceModelEndpointResponse } from "../models/models_0"; import { CreateMarketplaceModelEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateModelCopyJobCommand.ts b/clients/client-bedrock/src/commands/CreateModelCopyJobCommand.ts index b736c36f378af..bb8d0242f4a47 100644 --- a/clients/client-bedrock/src/commands/CreateModelCopyJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateModelCopyJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelCopyJobRequest, CreateModelCopyJobResponse } from "../models/models_1"; +import type { CreateModelCopyJobRequest, CreateModelCopyJobResponse } from "../models/models_1"; import { CreateModelCopyJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateModelCustomizationJobCommand.ts b/clients/client-bedrock/src/commands/CreateModelCustomizationJobCommand.ts index 9c93d336ce115..9903b4b7fb54a 100644 --- a/clients/client-bedrock/src/commands/CreateModelCustomizationJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateModelCustomizationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelCustomizationJobRequest, CreateModelCustomizationJobResponse } from "../models/models_1"; +import type { CreateModelCustomizationJobRequest, CreateModelCustomizationJobResponse } from "../models/models_1"; import { CreateModelCustomizationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateModelImportJobCommand.ts b/clients/client-bedrock/src/commands/CreateModelImportJobCommand.ts index 21008627fe6bc..07cd7bd948880 100644 --- a/clients/client-bedrock/src/commands/CreateModelImportJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateModelImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelImportJobRequest, CreateModelImportJobResponse } from "../models/models_1"; +import type { CreateModelImportJobRequest, CreateModelImportJobResponse } from "../models/models_1"; import { CreateModelImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateModelInvocationJobCommand.ts b/clients/client-bedrock/src/commands/CreateModelInvocationJobCommand.ts index f10ebf386afdd..a0e69319a44af 100644 --- a/clients/client-bedrock/src/commands/CreateModelInvocationJobCommand.ts +++ b/clients/client-bedrock/src/commands/CreateModelInvocationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelInvocationJobRequest, CreateModelInvocationJobResponse } from "../models/models_1"; +import type { CreateModelInvocationJobRequest, CreateModelInvocationJobResponse } from "../models/models_1"; import { CreateModelInvocationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreatePromptRouterCommand.ts b/clients/client-bedrock/src/commands/CreatePromptRouterCommand.ts index c2e885b6d3839..0cf195f078f5e 100644 --- a/clients/client-bedrock/src/commands/CreatePromptRouterCommand.ts +++ b/clients/client-bedrock/src/commands/CreatePromptRouterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePromptRouterRequest, CreatePromptRouterResponse } from "../models/models_1"; +import type { CreatePromptRouterRequest, CreatePromptRouterResponse } from "../models/models_1"; import { CreatePromptRouter } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/CreateProvisionedModelThroughputCommand.ts b/clients/client-bedrock/src/commands/CreateProvisionedModelThroughputCommand.ts index c4c4194c171b2..9e406a6dbc845 100644 --- a/clients/client-bedrock/src/commands/CreateProvisionedModelThroughputCommand.ts +++ b/clients/client-bedrock/src/commands/CreateProvisionedModelThroughputCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProvisionedModelThroughputRequest, CreateProvisionedModelThroughputResponse } from "../models/models_1"; +import type { + CreateProvisionedModelThroughputRequest, + CreateProvisionedModelThroughputResponse, +} from "../models/models_1"; import { CreateProvisionedModelThroughput } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyBuildWorkflowCommand.ts b/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyBuildWorkflowCommand.ts index 9a21fb74449e9..dd79260741db1 100644 --- a/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyBuildWorkflowCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyBuildWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteAutomatedReasoningPolicyBuildWorkflowRequest, DeleteAutomatedReasoningPolicyBuildWorkflowResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyCommand.ts b/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyCommand.ts index dc71aa61f557e..13588dbcd4bf2 100644 --- a/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAutomatedReasoningPolicyRequest, DeleteAutomatedReasoningPolicyResponse } from "../models/models_0"; +import type { DeleteAutomatedReasoningPolicyRequest, DeleteAutomatedReasoningPolicyResponse } from "../models/models_0"; import { DeleteAutomatedReasoningPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyTestCaseCommand.ts b/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyTestCaseCommand.ts index 4a95df6a41816..bbf71c00a94da 100644 --- a/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyTestCaseCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteAutomatedReasoningPolicyTestCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteAutomatedReasoningPolicyTestCaseRequest, DeleteAutomatedReasoningPolicyTestCaseResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/DeleteCustomModelCommand.ts b/clients/client-bedrock/src/commands/DeleteCustomModelCommand.ts index 3e5eda9faa925..d283fc96b3772 100644 --- a/clients/client-bedrock/src/commands/DeleteCustomModelCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteCustomModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomModelRequest, DeleteCustomModelResponse } from "../models/models_0"; +import type { DeleteCustomModelRequest, DeleteCustomModelResponse } from "../models/models_0"; import { DeleteCustomModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteCustomModelDeploymentCommand.ts b/clients/client-bedrock/src/commands/DeleteCustomModelDeploymentCommand.ts index f0afdf12fa8da..6c53951811845 100644 --- a/clients/client-bedrock/src/commands/DeleteCustomModelDeploymentCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteCustomModelDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomModelDeploymentRequest, DeleteCustomModelDeploymentResponse } from "../models/models_0"; +import type { DeleteCustomModelDeploymentRequest, DeleteCustomModelDeploymentResponse } from "../models/models_0"; import { DeleteCustomModelDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteEnforcedGuardrailConfigurationCommand.ts b/clients/client-bedrock/src/commands/DeleteEnforcedGuardrailConfigurationCommand.ts index 9fda58b98a471..7bded18492d11 100644 --- a/clients/client-bedrock/src/commands/DeleteEnforcedGuardrailConfigurationCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteEnforcedGuardrailConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteEnforcedGuardrailConfigurationRequest, DeleteEnforcedGuardrailConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/DeleteFoundationModelAgreementCommand.ts b/clients/client-bedrock/src/commands/DeleteFoundationModelAgreementCommand.ts index e4d2a37bcc49b..dcf466d99df16 100644 --- a/clients/client-bedrock/src/commands/DeleteFoundationModelAgreementCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteFoundationModelAgreementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFoundationModelAgreementRequest, DeleteFoundationModelAgreementResponse } from "../models/models_1"; +import type { DeleteFoundationModelAgreementRequest, DeleteFoundationModelAgreementResponse } from "../models/models_1"; import { DeleteFoundationModelAgreement } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteGuardrailCommand.ts b/clients/client-bedrock/src/commands/DeleteGuardrailCommand.ts index a9ef3fb894996..5bad6fcf4812c 100644 --- a/clients/client-bedrock/src/commands/DeleteGuardrailCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteGuardrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGuardrailRequest, DeleteGuardrailResponse } from "../models/models_0"; +import type { DeleteGuardrailRequest, DeleteGuardrailResponse } from "../models/models_0"; import { DeleteGuardrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteImportedModelCommand.ts b/clients/client-bedrock/src/commands/DeleteImportedModelCommand.ts index 741d14d8e1716..463c648706ff0 100644 --- a/clients/client-bedrock/src/commands/DeleteImportedModelCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteImportedModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImportedModelRequest, DeleteImportedModelResponse } from "../models/models_1"; +import type { DeleteImportedModelRequest, DeleteImportedModelResponse } from "../models/models_1"; import { DeleteImportedModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteInferenceProfileCommand.ts b/clients/client-bedrock/src/commands/DeleteInferenceProfileCommand.ts index 0dd945baeccb6..9ae393a236c11 100644 --- a/clients/client-bedrock/src/commands/DeleteInferenceProfileCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteInferenceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInferenceProfileRequest, DeleteInferenceProfileResponse } from "../models/models_0"; +import type { DeleteInferenceProfileRequest, DeleteInferenceProfileResponse } from "../models/models_0"; import { DeleteInferenceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/DeleteMarketplaceModelEndpointCommand.ts index 0cef6e46a793b..5c5ce17e0d464 100644 --- a/clients/client-bedrock/src/commands/DeleteMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteMarketplaceModelEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMarketplaceModelEndpointRequest, DeleteMarketplaceModelEndpointResponse } from "../models/models_0"; +import type { DeleteMarketplaceModelEndpointRequest, DeleteMarketplaceModelEndpointResponse } from "../models/models_0"; import { DeleteMarketplaceModelEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteModelInvocationLoggingConfigurationCommand.ts b/clients/client-bedrock/src/commands/DeleteModelInvocationLoggingConfigurationCommand.ts index 459087ba5f3b2..859b5d115eb9f 100644 --- a/clients/client-bedrock/src/commands/DeleteModelInvocationLoggingConfigurationCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteModelInvocationLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteModelInvocationLoggingConfigurationRequest, DeleteModelInvocationLoggingConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-bedrock/src/commands/DeletePromptRouterCommand.ts b/clients/client-bedrock/src/commands/DeletePromptRouterCommand.ts index f9809bfe60dc4..88340fcff3619 100644 --- a/clients/client-bedrock/src/commands/DeletePromptRouterCommand.ts +++ b/clients/client-bedrock/src/commands/DeletePromptRouterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePromptRouterRequest, DeletePromptRouterResponse } from "../models/models_1"; +import type { DeletePromptRouterRequest, DeletePromptRouterResponse } from "../models/models_1"; import { DeletePromptRouter } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeleteProvisionedModelThroughputCommand.ts b/clients/client-bedrock/src/commands/DeleteProvisionedModelThroughputCommand.ts index 60beb76c365e1..7a772ffdf1ec8 100644 --- a/clients/client-bedrock/src/commands/DeleteProvisionedModelThroughputCommand.ts +++ b/clients/client-bedrock/src/commands/DeleteProvisionedModelThroughputCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProvisionedModelThroughputRequest, DeleteProvisionedModelThroughputResponse } from "../models/models_1"; +import type { + DeleteProvisionedModelThroughputRequest, + DeleteProvisionedModelThroughputResponse, +} from "../models/models_1"; import { DeleteProvisionedModelThroughput } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/DeregisterMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/DeregisterMarketplaceModelEndpointCommand.ts index 281b14e9d1741..0835262fabf67 100644 --- a/clients/client-bedrock/src/commands/DeregisterMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/DeregisterMarketplaceModelEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterMarketplaceModelEndpointRequest, DeregisterMarketplaceModelEndpointResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/ExportAutomatedReasoningPolicyVersionCommand.ts b/clients/client-bedrock/src/commands/ExportAutomatedReasoningPolicyVersionCommand.ts index 11e747c01c513..c942dbed1a848 100644 --- a/clients/client-bedrock/src/commands/ExportAutomatedReasoningPolicyVersionCommand.ts +++ b/clients/client-bedrock/src/commands/ExportAutomatedReasoningPolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ExportAutomatedReasoningPolicyVersionRequest, ExportAutomatedReasoningPolicyVersionResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyAnnotationsCommand.ts b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyAnnotationsCommand.ts index a1f16cef309df..056d9f4061c01 100644 --- a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyAnnotationsCommand.ts +++ b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyAnnotationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAutomatedReasoningPolicyAnnotationsRequest, GetAutomatedReasoningPolicyAnnotationsResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyBuildWorkflowCommand.ts b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyBuildWorkflowCommand.ts index f136492478068..728ee01917a80 100644 --- a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyBuildWorkflowCommand.ts +++ b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyBuildWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAutomatedReasoningPolicyBuildWorkflowRequest, GetAutomatedReasoningPolicyBuildWorkflowResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommand.ts b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommand.ts index 386a9dfe56ade..ad73c26a6c46b 100644 --- a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommand.ts +++ b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyBuildWorkflowResultAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAutomatedReasoningPolicyBuildWorkflowResultAssetsRequest, GetAutomatedReasoningPolicyBuildWorkflowResultAssetsResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyCommand.ts b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyCommand.ts index 3fa5b2c60d6e7..5cae8294bc25e 100644 --- a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyCommand.ts +++ b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAutomatedReasoningPolicyRequest, GetAutomatedReasoningPolicyResponse } from "../models/models_0"; +import type { GetAutomatedReasoningPolicyRequest, GetAutomatedReasoningPolicyResponse } from "../models/models_0"; import { GetAutomatedReasoningPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyNextScenarioCommand.ts b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyNextScenarioCommand.ts index b82a5be78c784..234add9245489 100644 --- a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyNextScenarioCommand.ts +++ b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyNextScenarioCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAutomatedReasoningPolicyNextScenarioRequest, GetAutomatedReasoningPolicyNextScenarioResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyTestCaseCommand.ts b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyTestCaseCommand.ts index 5f9ef9ca8cdeb..5eb8cbcac11ca 100644 --- a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyTestCaseCommand.ts +++ b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyTestCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAutomatedReasoningPolicyTestCaseRequest, GetAutomatedReasoningPolicyTestCaseResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyTestResultCommand.ts b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyTestResultCommand.ts index a83a1fa0015ee..2906bc654b72d 100644 --- a/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyTestResultCommand.ts +++ b/clients/client-bedrock/src/commands/GetAutomatedReasoningPolicyTestResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAutomatedReasoningPolicyTestResultRequest, GetAutomatedReasoningPolicyTestResultResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/GetCustomModelCommand.ts b/clients/client-bedrock/src/commands/GetCustomModelCommand.ts index 888b090607cdc..6ddf90eaa8484 100644 --- a/clients/client-bedrock/src/commands/GetCustomModelCommand.ts +++ b/clients/client-bedrock/src/commands/GetCustomModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCustomModelRequest, GetCustomModelResponse } from "../models/models_0"; +import type { GetCustomModelRequest, GetCustomModelResponse } from "../models/models_0"; import { GetCustomModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetCustomModelDeploymentCommand.ts b/clients/client-bedrock/src/commands/GetCustomModelDeploymentCommand.ts index e394460b8ca0a..94d6ad088fd8a 100644 --- a/clients/client-bedrock/src/commands/GetCustomModelDeploymentCommand.ts +++ b/clients/client-bedrock/src/commands/GetCustomModelDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCustomModelDeploymentRequest, GetCustomModelDeploymentResponse } from "../models/models_0"; +import type { GetCustomModelDeploymentRequest, GetCustomModelDeploymentResponse } from "../models/models_0"; import { GetCustomModelDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetEvaluationJobCommand.ts b/clients/client-bedrock/src/commands/GetEvaluationJobCommand.ts index 23bb46a58a3da..b2e2c991840cd 100644 --- a/clients/client-bedrock/src/commands/GetEvaluationJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetEvaluationJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEvaluationJobRequest } from "../models/models_0"; -import { GetEvaluationJobResponse } from "../models/models_1"; +import type { GetEvaluationJobRequest } from "../models/models_0"; +import type { GetEvaluationJobResponse } from "../models/models_1"; import { GetEvaluationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetFoundationModelAvailabilityCommand.ts b/clients/client-bedrock/src/commands/GetFoundationModelAvailabilityCommand.ts index cc2c79d4c0be9..40b5af88ea1ca 100644 --- a/clients/client-bedrock/src/commands/GetFoundationModelAvailabilityCommand.ts +++ b/clients/client-bedrock/src/commands/GetFoundationModelAvailabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFoundationModelAvailabilityRequest, GetFoundationModelAvailabilityResponse } from "../models/models_1"; +import type { GetFoundationModelAvailabilityRequest, GetFoundationModelAvailabilityResponse } from "../models/models_1"; import { GetFoundationModelAvailability } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetFoundationModelCommand.ts b/clients/client-bedrock/src/commands/GetFoundationModelCommand.ts index 6e115a608cbb2..a30033712349d 100644 --- a/clients/client-bedrock/src/commands/GetFoundationModelCommand.ts +++ b/clients/client-bedrock/src/commands/GetFoundationModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFoundationModelRequest, GetFoundationModelResponse } from "../models/models_1"; +import type { GetFoundationModelRequest, GetFoundationModelResponse } from "../models/models_1"; import { GetFoundationModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetGuardrailCommand.ts b/clients/client-bedrock/src/commands/GetGuardrailCommand.ts index 70502838b9204..48053156f4a91 100644 --- a/clients/client-bedrock/src/commands/GetGuardrailCommand.ts +++ b/clients/client-bedrock/src/commands/GetGuardrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGuardrailRequest, GetGuardrailResponse } from "../models/models_0"; +import type { GetGuardrailRequest, GetGuardrailResponse } from "../models/models_0"; import { GetGuardrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetImportedModelCommand.ts b/clients/client-bedrock/src/commands/GetImportedModelCommand.ts index c23b6de0fdea1..b3f0781c36f97 100644 --- a/clients/client-bedrock/src/commands/GetImportedModelCommand.ts +++ b/clients/client-bedrock/src/commands/GetImportedModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImportedModelRequest, GetImportedModelResponse } from "../models/models_1"; +import type { GetImportedModelRequest, GetImportedModelResponse } from "../models/models_1"; import { GetImportedModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetInferenceProfileCommand.ts b/clients/client-bedrock/src/commands/GetInferenceProfileCommand.ts index 838c3a8adb15c..aab492c363184 100644 --- a/clients/client-bedrock/src/commands/GetInferenceProfileCommand.ts +++ b/clients/client-bedrock/src/commands/GetInferenceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInferenceProfileRequest, GetInferenceProfileResponse } from "../models/models_0"; +import type { GetInferenceProfileRequest, GetInferenceProfileResponse } from "../models/models_0"; import { GetInferenceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/GetMarketplaceModelEndpointCommand.ts index 7310701a63e7f..f7c3b9f0849ac 100644 --- a/clients/client-bedrock/src/commands/GetMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/GetMarketplaceModelEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMarketplaceModelEndpointRequest, GetMarketplaceModelEndpointResponse } from "../models/models_0"; +import type { GetMarketplaceModelEndpointRequest, GetMarketplaceModelEndpointResponse } from "../models/models_0"; import { GetMarketplaceModelEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetModelCopyJobCommand.ts b/clients/client-bedrock/src/commands/GetModelCopyJobCommand.ts index 67512ddd9bc57..4b92ab187ca3b 100644 --- a/clients/client-bedrock/src/commands/GetModelCopyJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelCopyJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelCopyJobRequest, GetModelCopyJobResponse } from "../models/models_1"; +import type { GetModelCopyJobRequest, GetModelCopyJobResponse } from "../models/models_1"; import { GetModelCopyJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetModelCustomizationJobCommand.ts b/clients/client-bedrock/src/commands/GetModelCustomizationJobCommand.ts index 32ffa6bead60f..21a62136860f2 100644 --- a/clients/client-bedrock/src/commands/GetModelCustomizationJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelCustomizationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelCustomizationJobRequest, GetModelCustomizationJobResponse } from "../models/models_1"; +import type { GetModelCustomizationJobRequest, GetModelCustomizationJobResponse } from "../models/models_1"; import { GetModelCustomizationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetModelImportJobCommand.ts b/clients/client-bedrock/src/commands/GetModelImportJobCommand.ts index 14c466232aac0..91e378995e926 100644 --- a/clients/client-bedrock/src/commands/GetModelImportJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelImportJobRequest, GetModelImportJobResponse } from "../models/models_1"; +import type { GetModelImportJobRequest, GetModelImportJobResponse } from "../models/models_1"; import { GetModelImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetModelInvocationJobCommand.ts b/clients/client-bedrock/src/commands/GetModelInvocationJobCommand.ts index 3d79514446021..51924ca2e0456 100644 --- a/clients/client-bedrock/src/commands/GetModelInvocationJobCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelInvocationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelInvocationJobRequest, GetModelInvocationJobResponse } from "../models/models_1"; +import type { GetModelInvocationJobRequest, GetModelInvocationJobResponse } from "../models/models_1"; import { GetModelInvocationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetModelInvocationLoggingConfigurationCommand.ts b/clients/client-bedrock/src/commands/GetModelInvocationLoggingConfigurationCommand.ts index fbe2b3f2a46d3..087c4da51bb3b 100644 --- a/clients/client-bedrock/src/commands/GetModelInvocationLoggingConfigurationCommand.ts +++ b/clients/client-bedrock/src/commands/GetModelInvocationLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetModelInvocationLoggingConfigurationRequest, GetModelInvocationLoggingConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-bedrock/src/commands/GetPromptRouterCommand.ts b/clients/client-bedrock/src/commands/GetPromptRouterCommand.ts index f1ba74b0a984e..46ef9e4f36d65 100644 --- a/clients/client-bedrock/src/commands/GetPromptRouterCommand.ts +++ b/clients/client-bedrock/src/commands/GetPromptRouterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPromptRouterRequest, GetPromptRouterResponse } from "../models/models_1"; +import type { GetPromptRouterRequest, GetPromptRouterResponse } from "../models/models_1"; import { GetPromptRouter } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetProvisionedModelThroughputCommand.ts b/clients/client-bedrock/src/commands/GetProvisionedModelThroughputCommand.ts index 97f967cb5d2a0..9dfd445a1bd69 100644 --- a/clients/client-bedrock/src/commands/GetProvisionedModelThroughputCommand.ts +++ b/clients/client-bedrock/src/commands/GetProvisionedModelThroughputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProvisionedModelThroughputRequest, GetProvisionedModelThroughputResponse } from "../models/models_1"; +import type { GetProvisionedModelThroughputRequest, GetProvisionedModelThroughputResponse } from "../models/models_1"; import { GetProvisionedModelThroughput } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/GetUseCaseForModelAccessCommand.ts b/clients/client-bedrock/src/commands/GetUseCaseForModelAccessCommand.ts index 7cdb6a1d006bb..94ea289ebb57c 100644 --- a/clients/client-bedrock/src/commands/GetUseCaseForModelAccessCommand.ts +++ b/clients/client-bedrock/src/commands/GetUseCaseForModelAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUseCaseForModelAccessRequest, GetUseCaseForModelAccessResponse } from "../models/models_0"; +import type { GetUseCaseForModelAccessRequest, GetUseCaseForModelAccessResponse } from "../models/models_0"; import { GetUseCaseForModelAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListAutomatedReasoningPoliciesCommand.ts b/clients/client-bedrock/src/commands/ListAutomatedReasoningPoliciesCommand.ts index 7e58d9c556f12..cd62a76ecc9c5 100644 --- a/clients/client-bedrock/src/commands/ListAutomatedReasoningPoliciesCommand.ts +++ b/clients/client-bedrock/src/commands/ListAutomatedReasoningPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutomatedReasoningPoliciesRequest, ListAutomatedReasoningPoliciesResponse } from "../models/models_0"; +import type { ListAutomatedReasoningPoliciesRequest, ListAutomatedReasoningPoliciesResponse } from "../models/models_0"; import { ListAutomatedReasoningPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyBuildWorkflowsCommand.ts b/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyBuildWorkflowsCommand.ts index 054c29c151555..896e28e32d0dc 100644 --- a/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyBuildWorkflowsCommand.ts +++ b/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyBuildWorkflowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAutomatedReasoningPolicyBuildWorkflowsRequest, ListAutomatedReasoningPolicyBuildWorkflowsResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyTestCasesCommand.ts b/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyTestCasesCommand.ts index 9e2644a684717..f11a348e5b502 100644 --- a/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyTestCasesCommand.ts +++ b/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyTestCasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAutomatedReasoningPolicyTestCasesRequest, ListAutomatedReasoningPolicyTestCasesResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyTestResultsCommand.ts b/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyTestResultsCommand.ts index f6ffb382533ca..16069db003892 100644 --- a/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyTestResultsCommand.ts +++ b/clients/client-bedrock/src/commands/ListAutomatedReasoningPolicyTestResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAutomatedReasoningPolicyTestResultsRequest, ListAutomatedReasoningPolicyTestResultsResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/ListCustomModelDeploymentsCommand.ts b/clients/client-bedrock/src/commands/ListCustomModelDeploymentsCommand.ts index c331593896633..94e0d8b6aa231 100644 --- a/clients/client-bedrock/src/commands/ListCustomModelDeploymentsCommand.ts +++ b/clients/client-bedrock/src/commands/ListCustomModelDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCustomModelDeploymentsRequest, ListCustomModelDeploymentsResponse } from "../models/models_0"; +import type { ListCustomModelDeploymentsRequest, ListCustomModelDeploymentsResponse } from "../models/models_0"; import { ListCustomModelDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListCustomModelsCommand.ts b/clients/client-bedrock/src/commands/ListCustomModelsCommand.ts index a825d9738b32a..1ab80afd7e73f 100644 --- a/clients/client-bedrock/src/commands/ListCustomModelsCommand.ts +++ b/clients/client-bedrock/src/commands/ListCustomModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCustomModelsRequest, ListCustomModelsResponse } from "../models/models_0"; +import type { ListCustomModelsRequest, ListCustomModelsResponse } from "../models/models_0"; import { ListCustomModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListEnforcedGuardrailsConfigurationCommand.ts b/clients/client-bedrock/src/commands/ListEnforcedGuardrailsConfigurationCommand.ts index 3ff6897a5b4f1..01d68ac3061ff 100644 --- a/clients/client-bedrock/src/commands/ListEnforcedGuardrailsConfigurationCommand.ts +++ b/clients/client-bedrock/src/commands/ListEnforcedGuardrailsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListEnforcedGuardrailsConfigurationRequest, ListEnforcedGuardrailsConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/ListEvaluationJobsCommand.ts b/clients/client-bedrock/src/commands/ListEvaluationJobsCommand.ts index 61ee8cb6a4325..0d53507eb2aa9 100644 --- a/clients/client-bedrock/src/commands/ListEvaluationJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListEvaluationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEvaluationJobsRequest, ListEvaluationJobsResponse } from "../models/models_0"; +import type { ListEvaluationJobsRequest, ListEvaluationJobsResponse } from "../models/models_0"; import { ListEvaluationJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListFoundationModelAgreementOffersCommand.ts b/clients/client-bedrock/src/commands/ListFoundationModelAgreementOffersCommand.ts index cec18ba997e8d..edbae9c589acd 100644 --- a/clients/client-bedrock/src/commands/ListFoundationModelAgreementOffersCommand.ts +++ b/clients/client-bedrock/src/commands/ListFoundationModelAgreementOffersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListFoundationModelAgreementOffersRequest, ListFoundationModelAgreementOffersResponse, } from "../models/models_1"; diff --git a/clients/client-bedrock/src/commands/ListFoundationModelsCommand.ts b/clients/client-bedrock/src/commands/ListFoundationModelsCommand.ts index 2a999d5625461..b196fc26d4a23 100644 --- a/clients/client-bedrock/src/commands/ListFoundationModelsCommand.ts +++ b/clients/client-bedrock/src/commands/ListFoundationModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFoundationModelsRequest, ListFoundationModelsResponse } from "../models/models_1"; +import type { ListFoundationModelsRequest, ListFoundationModelsResponse } from "../models/models_1"; import { ListFoundationModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListGuardrailsCommand.ts b/clients/client-bedrock/src/commands/ListGuardrailsCommand.ts index 1ddb3e9031cf4..6bc608a133f6a 100644 --- a/clients/client-bedrock/src/commands/ListGuardrailsCommand.ts +++ b/clients/client-bedrock/src/commands/ListGuardrailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGuardrailsRequest, ListGuardrailsResponse } from "../models/models_0"; +import type { ListGuardrailsRequest, ListGuardrailsResponse } from "../models/models_0"; import { ListGuardrails } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListImportedModelsCommand.ts b/clients/client-bedrock/src/commands/ListImportedModelsCommand.ts index b70e978625bf8..3f886150ae3fb 100644 --- a/clients/client-bedrock/src/commands/ListImportedModelsCommand.ts +++ b/clients/client-bedrock/src/commands/ListImportedModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImportedModelsRequest, ListImportedModelsResponse } from "../models/models_1"; +import type { ListImportedModelsRequest, ListImportedModelsResponse } from "../models/models_1"; import { ListImportedModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListInferenceProfilesCommand.ts b/clients/client-bedrock/src/commands/ListInferenceProfilesCommand.ts index cc17a32a9cdd8..7d185aa1b3e13 100644 --- a/clients/client-bedrock/src/commands/ListInferenceProfilesCommand.ts +++ b/clients/client-bedrock/src/commands/ListInferenceProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInferenceProfilesRequest, ListInferenceProfilesResponse } from "../models/models_0"; +import type { ListInferenceProfilesRequest, ListInferenceProfilesResponse } from "../models/models_0"; import { ListInferenceProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListMarketplaceModelEndpointsCommand.ts b/clients/client-bedrock/src/commands/ListMarketplaceModelEndpointsCommand.ts index 98fb7ea7d0efb..ae7c3fb3e5a66 100644 --- a/clients/client-bedrock/src/commands/ListMarketplaceModelEndpointsCommand.ts +++ b/clients/client-bedrock/src/commands/ListMarketplaceModelEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMarketplaceModelEndpointsRequest, ListMarketplaceModelEndpointsResponse } from "../models/models_0"; +import type { ListMarketplaceModelEndpointsRequest, ListMarketplaceModelEndpointsResponse } from "../models/models_0"; import { ListMarketplaceModelEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListModelCopyJobsCommand.ts b/clients/client-bedrock/src/commands/ListModelCopyJobsCommand.ts index a79bddbb0aed3..dd622e1310a59 100644 --- a/clients/client-bedrock/src/commands/ListModelCopyJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListModelCopyJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelCopyJobsRequest, ListModelCopyJobsResponse } from "../models/models_1"; +import type { ListModelCopyJobsRequest, ListModelCopyJobsResponse } from "../models/models_1"; import { ListModelCopyJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListModelCustomizationJobsCommand.ts b/clients/client-bedrock/src/commands/ListModelCustomizationJobsCommand.ts index ceba098d72eb9..5ff86ac13bd23 100644 --- a/clients/client-bedrock/src/commands/ListModelCustomizationJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListModelCustomizationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelCustomizationJobsRequest, ListModelCustomizationJobsResponse } from "../models/models_1"; +import type { ListModelCustomizationJobsRequest, ListModelCustomizationJobsResponse } from "../models/models_1"; import { ListModelCustomizationJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListModelImportJobsCommand.ts b/clients/client-bedrock/src/commands/ListModelImportJobsCommand.ts index 15ab1d301c496..3e44195ac7bfd 100644 --- a/clients/client-bedrock/src/commands/ListModelImportJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListModelImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelImportJobsRequest, ListModelImportJobsResponse } from "../models/models_1"; +import type { ListModelImportJobsRequest, ListModelImportJobsResponse } from "../models/models_1"; import { ListModelImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListModelInvocationJobsCommand.ts b/clients/client-bedrock/src/commands/ListModelInvocationJobsCommand.ts index 23a80ba9201df..7d7f1e833a3f8 100644 --- a/clients/client-bedrock/src/commands/ListModelInvocationJobsCommand.ts +++ b/clients/client-bedrock/src/commands/ListModelInvocationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelInvocationJobsRequest, ListModelInvocationJobsResponse } from "../models/models_1"; +import type { ListModelInvocationJobsRequest, ListModelInvocationJobsResponse } from "../models/models_1"; import { ListModelInvocationJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListPromptRoutersCommand.ts b/clients/client-bedrock/src/commands/ListPromptRoutersCommand.ts index 7c1121e515645..a8b01a0d6063c 100644 --- a/clients/client-bedrock/src/commands/ListPromptRoutersCommand.ts +++ b/clients/client-bedrock/src/commands/ListPromptRoutersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPromptRoutersRequest, ListPromptRoutersResponse } from "../models/models_1"; +import type { ListPromptRoutersRequest, ListPromptRoutersResponse } from "../models/models_1"; import { ListPromptRouters } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListProvisionedModelThroughputsCommand.ts b/clients/client-bedrock/src/commands/ListProvisionedModelThroughputsCommand.ts index 888c532278a82..b0c3f87aaa1b6 100644 --- a/clients/client-bedrock/src/commands/ListProvisionedModelThroughputsCommand.ts +++ b/clients/client-bedrock/src/commands/ListProvisionedModelThroughputsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProvisionedModelThroughputsRequest, ListProvisionedModelThroughputsResponse } from "../models/models_1"; +import type { + ListProvisionedModelThroughputsRequest, + ListProvisionedModelThroughputsResponse, +} from "../models/models_1"; import { ListProvisionedModelThroughputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/ListTagsForResourceCommand.ts b/clients/client-bedrock/src/commands/ListTagsForResourceCommand.ts index a1581415abddb..8294c6dcbff95 100644 --- a/clients/client-bedrock/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-bedrock/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/PutEnforcedGuardrailConfigurationCommand.ts b/clients/client-bedrock/src/commands/PutEnforcedGuardrailConfigurationCommand.ts index f704f213f4736..4f59fb7aff379 100644 --- a/clients/client-bedrock/src/commands/PutEnforcedGuardrailConfigurationCommand.ts +++ b/clients/client-bedrock/src/commands/PutEnforcedGuardrailConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutEnforcedGuardrailConfigurationRequest, PutEnforcedGuardrailConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/PutModelInvocationLoggingConfigurationCommand.ts b/clients/client-bedrock/src/commands/PutModelInvocationLoggingConfigurationCommand.ts index f09d35156d131..03d89bd84b7c1 100644 --- a/clients/client-bedrock/src/commands/PutModelInvocationLoggingConfigurationCommand.ts +++ b/clients/client-bedrock/src/commands/PutModelInvocationLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutModelInvocationLoggingConfigurationRequest, PutModelInvocationLoggingConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-bedrock/src/commands/PutUseCaseForModelAccessCommand.ts b/clients/client-bedrock/src/commands/PutUseCaseForModelAccessCommand.ts index ca5ae2b2cb5ee..67effad9ce8c6 100644 --- a/clients/client-bedrock/src/commands/PutUseCaseForModelAccessCommand.ts +++ b/clients/client-bedrock/src/commands/PutUseCaseForModelAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutUseCaseForModelAccessRequest, PutUseCaseForModelAccessResponse } from "../models/models_0"; +import type { PutUseCaseForModelAccessRequest, PutUseCaseForModelAccessResponse } from "../models/models_0"; import { PutUseCaseForModelAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/RegisterMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/RegisterMarketplaceModelEndpointCommand.ts index 51720d2679356..a4859f0e63391 100644 --- a/clients/client-bedrock/src/commands/RegisterMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/RegisterMarketplaceModelEndpointCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterMarketplaceModelEndpointRequest, RegisterMarketplaceModelEndpointResponse } from "../models/models_0"; +import type { + RegisterMarketplaceModelEndpointRequest, + RegisterMarketplaceModelEndpointResponse, +} from "../models/models_0"; import { RegisterMarketplaceModelEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/StartAutomatedReasoningPolicyBuildWorkflowCommand.ts b/clients/client-bedrock/src/commands/StartAutomatedReasoningPolicyBuildWorkflowCommand.ts index e696f26c0df87..9989970002d64 100644 --- a/clients/client-bedrock/src/commands/StartAutomatedReasoningPolicyBuildWorkflowCommand.ts +++ b/clients/client-bedrock/src/commands/StartAutomatedReasoningPolicyBuildWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartAutomatedReasoningPolicyBuildWorkflowRequest, StartAutomatedReasoningPolicyBuildWorkflowResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/StartAutomatedReasoningPolicyTestWorkflowCommand.ts b/clients/client-bedrock/src/commands/StartAutomatedReasoningPolicyTestWorkflowCommand.ts index ffe50de4f22ae..dbd2caa29406e 100644 --- a/clients/client-bedrock/src/commands/StartAutomatedReasoningPolicyTestWorkflowCommand.ts +++ b/clients/client-bedrock/src/commands/StartAutomatedReasoningPolicyTestWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartAutomatedReasoningPolicyTestWorkflowRequest, StartAutomatedReasoningPolicyTestWorkflowResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/StopEvaluationJobCommand.ts b/clients/client-bedrock/src/commands/StopEvaluationJobCommand.ts index e0f7f489dc34f..c5f78c4f15d10 100644 --- a/clients/client-bedrock/src/commands/StopEvaluationJobCommand.ts +++ b/clients/client-bedrock/src/commands/StopEvaluationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopEvaluationJobRequest, StopEvaluationJobResponse } from "../models/models_0"; +import type { StopEvaluationJobRequest, StopEvaluationJobResponse } from "../models/models_0"; import { StopEvaluationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/StopModelCustomizationJobCommand.ts b/clients/client-bedrock/src/commands/StopModelCustomizationJobCommand.ts index 4aee7394a3843..0918d081dce6d 100644 --- a/clients/client-bedrock/src/commands/StopModelCustomizationJobCommand.ts +++ b/clients/client-bedrock/src/commands/StopModelCustomizationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopModelCustomizationJobRequest, StopModelCustomizationJobResponse } from "../models/models_1"; +import type { StopModelCustomizationJobRequest, StopModelCustomizationJobResponse } from "../models/models_1"; import { StopModelCustomizationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/StopModelInvocationJobCommand.ts b/clients/client-bedrock/src/commands/StopModelInvocationJobCommand.ts index 8c945e8c1d5b4..06cec63e06f7b 100644 --- a/clients/client-bedrock/src/commands/StopModelInvocationJobCommand.ts +++ b/clients/client-bedrock/src/commands/StopModelInvocationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopModelInvocationJobRequest, StopModelInvocationJobResponse } from "../models/models_1"; +import type { StopModelInvocationJobRequest, StopModelInvocationJobResponse } from "../models/models_1"; import { StopModelInvocationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/TagResourceCommand.ts b/clients/client-bedrock/src/commands/TagResourceCommand.ts index a8784c6596d40..438ace8488ca4 100644 --- a/clients/client-bedrock/src/commands/TagResourceCommand.ts +++ b/clients/client-bedrock/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/UntagResourceCommand.ts b/clients/client-bedrock/src/commands/UntagResourceCommand.ts index 62822a1c8eb68..57bcf4e7be943 100644 --- a/clients/client-bedrock/src/commands/UntagResourceCommand.ts +++ b/clients/client-bedrock/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyAnnotationsCommand.ts b/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyAnnotationsCommand.ts index a646cbc58d7cd..7b98e0912da52 100644 --- a/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyAnnotationsCommand.ts +++ b/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyAnnotationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateAutomatedReasoningPolicyAnnotationsRequest, UpdateAutomatedReasoningPolicyAnnotationsResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyCommand.ts b/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyCommand.ts index ca27df9faddca..82f364387c68c 100644 --- a/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyCommand.ts +++ b/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAutomatedReasoningPolicyRequest, UpdateAutomatedReasoningPolicyResponse } from "../models/models_0"; +import type { UpdateAutomatedReasoningPolicyRequest, UpdateAutomatedReasoningPolicyResponse } from "../models/models_0"; import { UpdateAutomatedReasoningPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyTestCaseCommand.ts b/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyTestCaseCommand.ts index ba2fa010908fd..cedb811a60307 100644 --- a/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyTestCaseCommand.ts +++ b/clients/client-bedrock/src/commands/UpdateAutomatedReasoningPolicyTestCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateAutomatedReasoningPolicyTestCaseRequest, UpdateAutomatedReasoningPolicyTestCaseResponse, } from "../models/models_0"; diff --git a/clients/client-bedrock/src/commands/UpdateGuardrailCommand.ts b/clients/client-bedrock/src/commands/UpdateGuardrailCommand.ts index 54dac8c4e5184..46637110a3f7c 100644 --- a/clients/client-bedrock/src/commands/UpdateGuardrailCommand.ts +++ b/clients/client-bedrock/src/commands/UpdateGuardrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGuardrailRequest, UpdateGuardrailResponse } from "../models/models_0"; +import type { UpdateGuardrailRequest, UpdateGuardrailResponse } from "../models/models_0"; import { UpdateGuardrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/UpdateMarketplaceModelEndpointCommand.ts b/clients/client-bedrock/src/commands/UpdateMarketplaceModelEndpointCommand.ts index 8de77abdef708..7f39461f5652e 100644 --- a/clients/client-bedrock/src/commands/UpdateMarketplaceModelEndpointCommand.ts +++ b/clients/client-bedrock/src/commands/UpdateMarketplaceModelEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMarketplaceModelEndpointRequest, UpdateMarketplaceModelEndpointResponse } from "../models/models_0"; +import type { UpdateMarketplaceModelEndpointRequest, UpdateMarketplaceModelEndpointResponse } from "../models/models_0"; import { UpdateMarketplaceModelEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/commands/UpdateProvisionedModelThroughputCommand.ts b/clients/client-bedrock/src/commands/UpdateProvisionedModelThroughputCommand.ts index d6dacb96be808..00fbb0e1242f8 100644 --- a/clients/client-bedrock/src/commands/UpdateProvisionedModelThroughputCommand.ts +++ b/clients/client-bedrock/src/commands/UpdateProvisionedModelThroughputCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; +import type { BedrockClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BedrockClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProvisionedModelThroughputRequest, UpdateProvisionedModelThroughputResponse } from "../models/models_1"; +import type { + UpdateProvisionedModelThroughputRequest, + UpdateProvisionedModelThroughputResponse, +} from "../models/models_1"; import { UpdateProvisionedModelThroughput } from "../schemas/schemas_0"; /** diff --git a/clients/client-bedrock/src/endpoint/EndpointParameters.ts b/clients/client-bedrock/src/endpoint/EndpointParameters.ts index 0ee763714fed4..2a71140827ab0 100644 --- a/clients/client-bedrock/src/endpoint/EndpointParameters.ts +++ b/clients/client-bedrock/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-bedrock/src/endpoint/endpointResolver.ts b/clients/client-bedrock/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-bedrock/src/endpoint/endpointResolver.ts +++ b/clients/client-bedrock/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-bedrock/src/extensionConfiguration.ts b/clients/client-bedrock/src/extensionConfiguration.ts index b846198a4f3f5..fe09b538df6c8 100644 --- a/clients/client-bedrock/src/extensionConfiguration.ts +++ b/clients/client-bedrock/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-bedrock/src/models/BedrockServiceException.ts b/clients/client-bedrock/src/models/BedrockServiceException.ts index f126143f588b1..25f734a70962d 100644 --- a/clients/client-bedrock/src/models/BedrockServiceException.ts +++ b/clients/client-bedrock/src/models/BedrockServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-bedrock/src/models/errors.ts b/clients/client-bedrock/src/models/errors.ts index 71a55d080cf3b..d3af540b462d4 100644 --- a/clients/client-bedrock/src/models/errors.ts +++ b/clients/client-bedrock/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BedrockServiceException as __BaseException } from "./BedrockServiceException"; diff --git a/clients/client-bedrock/src/pagination/Interfaces.ts b/clients/client-bedrock/src/pagination/Interfaces.ts index ec1f942315e03..22790aa6c968a 100644 --- a/clients/client-bedrock/src/pagination/Interfaces.ts +++ b/clients/client-bedrock/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; diff --git a/clients/client-bedrock/src/pagination/ListAutomatedReasoningPoliciesPaginator.ts b/clients/client-bedrock/src/pagination/ListAutomatedReasoningPoliciesPaginator.ts index 330a392f69637..6440c88cebc73 100644 --- a/clients/client-bedrock/src/pagination/ListAutomatedReasoningPoliciesPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListAutomatedReasoningPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyBuildWorkflowsPaginator.ts b/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyBuildWorkflowsPaginator.ts index 50ffdcdf652ec..48a2d9d256281 100644 --- a/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyBuildWorkflowsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyBuildWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyTestCasesPaginator.ts b/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyTestCasesPaginator.ts index 7e2efe08e8359..fa427f883efae 100644 --- a/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyTestCasesPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyTestCasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyTestResultsPaginator.ts b/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyTestResultsPaginator.ts index b71b8e49b29e9..814bba348e18b 100644 --- a/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyTestResultsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListAutomatedReasoningPolicyTestResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListCustomModelDeploymentsPaginator.ts b/clients/client-bedrock/src/pagination/ListCustomModelDeploymentsPaginator.ts index c24b9e158ab09..44ee7f5bbae24 100644 --- a/clients/client-bedrock/src/pagination/ListCustomModelDeploymentsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListCustomModelDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListCustomModelsPaginator.ts b/clients/client-bedrock/src/pagination/ListCustomModelsPaginator.ts index 987c2a8e857c7..8454743fd445b 100644 --- a/clients/client-bedrock/src/pagination/ListCustomModelsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListCustomModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListEnforcedGuardrailsConfigurationPaginator.ts b/clients/client-bedrock/src/pagination/ListEnforcedGuardrailsConfigurationPaginator.ts index 4fa7cef26be39..7095a2d33e002 100644 --- a/clients/client-bedrock/src/pagination/ListEnforcedGuardrailsConfigurationPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListEnforcedGuardrailsConfigurationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListEvaluationJobsPaginator.ts b/clients/client-bedrock/src/pagination/ListEvaluationJobsPaginator.ts index 738c6c0966aa3..621f834187a95 100644 --- a/clients/client-bedrock/src/pagination/ListEvaluationJobsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListEvaluationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListGuardrailsPaginator.ts b/clients/client-bedrock/src/pagination/ListGuardrailsPaginator.ts index 366826f600113..bb90ea5960908 100644 --- a/clients/client-bedrock/src/pagination/ListGuardrailsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListGuardrailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListImportedModelsPaginator.ts b/clients/client-bedrock/src/pagination/ListImportedModelsPaginator.ts index 6aab2372886f9..4c2463cef7895 100644 --- a/clients/client-bedrock/src/pagination/ListImportedModelsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListImportedModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListInferenceProfilesPaginator.ts b/clients/client-bedrock/src/pagination/ListInferenceProfilesPaginator.ts index 8ec0e32b2aab3..fd3235d2bec78 100644 --- a/clients/client-bedrock/src/pagination/ListInferenceProfilesPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListInferenceProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListMarketplaceModelEndpointsPaginator.ts b/clients/client-bedrock/src/pagination/ListMarketplaceModelEndpointsPaginator.ts index f4bda9cce8b6e..f787b0a6c9fb9 100644 --- a/clients/client-bedrock/src/pagination/ListMarketplaceModelEndpointsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListMarketplaceModelEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListModelCopyJobsPaginator.ts b/clients/client-bedrock/src/pagination/ListModelCopyJobsPaginator.ts index d3dc55b2233df..66243ed9931db 100644 --- a/clients/client-bedrock/src/pagination/ListModelCopyJobsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListModelCopyJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListModelCustomizationJobsPaginator.ts b/clients/client-bedrock/src/pagination/ListModelCustomizationJobsPaginator.ts index 501d34bd79817..75411174963c3 100644 --- a/clients/client-bedrock/src/pagination/ListModelCustomizationJobsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListModelCustomizationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListModelImportJobsPaginator.ts b/clients/client-bedrock/src/pagination/ListModelImportJobsPaginator.ts index 931318b6232ee..1a6cd2ef898b7 100644 --- a/clients/client-bedrock/src/pagination/ListModelImportJobsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListModelImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListModelInvocationJobsPaginator.ts b/clients/client-bedrock/src/pagination/ListModelInvocationJobsPaginator.ts index f65074bd115d0..b9ef5be062c94 100644 --- a/clients/client-bedrock/src/pagination/ListModelInvocationJobsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListModelInvocationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListPromptRoutersPaginator.ts b/clients/client-bedrock/src/pagination/ListPromptRoutersPaginator.ts index 2d4c23638e5ec..68fb1bbbd5d0a 100644 --- a/clients/client-bedrock/src/pagination/ListPromptRoutersPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListPromptRoutersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/pagination/ListProvisionedModelThroughputsPaginator.ts b/clients/client-bedrock/src/pagination/ListProvisionedModelThroughputsPaginator.ts index 41451da7f6fe7..444328491dba1 100644 --- a/clients/client-bedrock/src/pagination/ListProvisionedModelThroughputsPaginator.ts +++ b/clients/client-bedrock/src/pagination/ListProvisionedModelThroughputsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BedrockClient } from "../BedrockClient"; import { diff --git a/clients/client-bedrock/src/runtimeConfig.browser.ts b/clients/client-bedrock/src/runtimeConfig.browser.ts index 83bd46ad20f88..138f17ec959d6 100644 --- a/clients/client-bedrock/src/runtimeConfig.browser.ts +++ b/clients/client-bedrock/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockClientConfig } from "./BedrockClient"; + +import type { BedrockClientConfig } from "./BedrockClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-bedrock/src/runtimeConfig.native.ts b/clients/client-bedrock/src/runtimeConfig.native.ts index 0bad88035fefd..70b067fc2904e 100644 --- a/clients/client-bedrock/src/runtimeConfig.native.ts +++ b/clients/client-bedrock/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BedrockClientConfig } from "./BedrockClient"; +import type { BedrockClientConfig } from "./BedrockClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-bedrock/src/runtimeConfig.shared.ts b/clients/client-bedrock/src/runtimeConfig.shared.ts index 25c16a6d161de..36f2d4dd36b4d 100644 --- a/clients/client-bedrock/src/runtimeConfig.shared.ts +++ b/clients/client-bedrock/src/runtimeConfig.shared.ts @@ -3,13 +3,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { HttpBearerAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBedrockHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BedrockClientConfig } from "./BedrockClient"; +import type { BedrockClientConfig } from "./BedrockClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-bedrock/src/runtimeConfig.ts b/clients/client-bedrock/src/runtimeConfig.ts index 4de7a47199728..4ac6972a497b8 100644 --- a/clients/client-bedrock/src/runtimeConfig.ts +++ b/clients/client-bedrock/src/runtimeConfig.ts @@ -21,14 +21,14 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; -import { IdentityProviderConfig } from "@smithy/types"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import type { IdentityProviderConfig } from "@smithy/types"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BedrockClientConfig } from "./BedrockClient"; + +import type { BedrockClientConfig } from "./BedrockClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-bedrock/src/runtimeExtensions.ts b/clients/client-bedrock/src/runtimeExtensions.ts index 1143bfb83913a..ae173b3c79f09 100644 --- a/clients/client-bedrock/src/runtimeExtensions.ts +++ b/clients/client-bedrock/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BedrockExtensionConfiguration } from "./extensionConfiguration"; +import type { BedrockExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-bedrock/src/schemas/schemas_0.ts b/clients/client-bedrock/src/schemas/schemas_0.ts index 590541c100ce7..f37fee8355cbb 100644 --- a/clients/client-bedrock/src/schemas/schemas_0.ts +++ b/clients/client-bedrock/src/schemas/schemas_0.ts @@ -1191,7 +1191,7 @@ const n0 = "com.amazonaws.bedrock"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-billing/package.json b/clients/client-billing/package.json index 3219d25e8c9f5..55a6f2088bd32 100644 --- a/clients/client-billing/package.json +++ b/clients/client-billing/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-billing/src/Billing.ts b/clients/client-billing/src/Billing.ts index 73220aa3b98a0..4b230638eedf1 100644 --- a/clients/client-billing/src/Billing.ts +++ b/clients/client-billing/src/Billing.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BillingClient, BillingClientConfig } from "./BillingClient"; +import { BillingClient } from "./BillingClient"; import { AssociateSourceViewsCommand, AssociateSourceViewsCommandInput, diff --git a/clients/client-billing/src/BillingClient.ts b/clients/client-billing/src/BillingClient.ts index 68972aed97ebe..2a0c65b10391c 100644 --- a/clients/client-billing/src/BillingClient.ts +++ b/clients/client-billing/src/BillingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBillingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -88,7 +97,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-billing/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-billing/src/auth/httpAuthExtensionConfiguration.ts index 00fd87c198d8e..381dc63c6a0c9 100644 --- a/clients/client-billing/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-billing/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BillingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BillingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-billing/src/auth/httpAuthSchemeProvider.ts b/clients/client-billing/src/auth/httpAuthSchemeProvider.ts index 9e1a672f410c0..ef77942aee195 100644 --- a/clients/client-billing/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-billing/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BillingClientConfig, BillingClientResolvedConfig } from "../BillingClient"; +import { type BillingClientResolvedConfig, BillingClientConfig } from "../BillingClient"; /** * @internal diff --git a/clients/client-billing/src/commands/AssociateSourceViewsCommand.ts b/clients/client-billing/src/commands/AssociateSourceViewsCommand.ts index 520c5255c7cc5..8b70134e846f7 100644 --- a/clients/client-billing/src/commands/AssociateSourceViewsCommand.ts +++ b/clients/client-billing/src/commands/AssociateSourceViewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSourceViewsRequest, AssociateSourceViewsResponse } from "../models/models_0"; +import type { AssociateSourceViewsRequest, AssociateSourceViewsResponse } from "../models/models_0"; import { AssociateSourceViews } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/CreateBillingViewCommand.ts b/clients/client-billing/src/commands/CreateBillingViewCommand.ts index 5bc7319413730..a5aa3d26d9456 100644 --- a/clients/client-billing/src/commands/CreateBillingViewCommand.ts +++ b/clients/client-billing/src/commands/CreateBillingViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBillingViewRequest, CreateBillingViewResponse } from "../models/models_0"; +import type { CreateBillingViewRequest, CreateBillingViewResponse } from "../models/models_0"; import { CreateBillingView } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/DeleteBillingViewCommand.ts b/clients/client-billing/src/commands/DeleteBillingViewCommand.ts index 32ea98338e70e..32032955ab6b3 100644 --- a/clients/client-billing/src/commands/DeleteBillingViewCommand.ts +++ b/clients/client-billing/src/commands/DeleteBillingViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBillingViewRequest, DeleteBillingViewResponse } from "../models/models_0"; +import type { DeleteBillingViewRequest, DeleteBillingViewResponse } from "../models/models_0"; import { DeleteBillingView } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/DisassociateSourceViewsCommand.ts b/clients/client-billing/src/commands/DisassociateSourceViewsCommand.ts index 911d11838255a..19b83b79f16ce 100644 --- a/clients/client-billing/src/commands/DisassociateSourceViewsCommand.ts +++ b/clients/client-billing/src/commands/DisassociateSourceViewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateSourceViewsRequest, DisassociateSourceViewsResponse } from "../models/models_0"; +import type { DisassociateSourceViewsRequest, DisassociateSourceViewsResponse } from "../models/models_0"; import { DisassociateSourceViews } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/GetBillingViewCommand.ts b/clients/client-billing/src/commands/GetBillingViewCommand.ts index 7ca77d2feaac5..382cd6c3dbd26 100644 --- a/clients/client-billing/src/commands/GetBillingViewCommand.ts +++ b/clients/client-billing/src/commands/GetBillingViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBillingViewRequest, GetBillingViewResponse } from "../models/models_0"; +import type { GetBillingViewRequest, GetBillingViewResponse } from "../models/models_0"; import { GetBillingView } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/GetResourcePolicyCommand.ts b/clients/client-billing/src/commands/GetResourcePolicyCommand.ts index 86cb3e9806287..660db9f0977ad 100644 --- a/clients/client-billing/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-billing/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/ListBillingViewsCommand.ts b/clients/client-billing/src/commands/ListBillingViewsCommand.ts index aca4f21891623..f9d23ea9203d0 100644 --- a/clients/client-billing/src/commands/ListBillingViewsCommand.ts +++ b/clients/client-billing/src/commands/ListBillingViewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBillingViewsRequest, ListBillingViewsResponse } from "../models/models_0"; +import type { ListBillingViewsRequest, ListBillingViewsResponse } from "../models/models_0"; import { ListBillingViews } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts b/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts index 2024d0fc89363..049492a01eba5 100644 --- a/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts +++ b/clients/client-billing/src/commands/ListSourceViewsForBillingViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSourceViewsForBillingViewRequest, ListSourceViewsForBillingViewResponse } from "../models/models_0"; +import type { ListSourceViewsForBillingViewRequest, ListSourceViewsForBillingViewResponse } from "../models/models_0"; import { ListSourceViewsForBillingView } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/ListTagsForResourceCommand.ts b/clients/client-billing/src/commands/ListTagsForResourceCommand.ts index b64e9a07f0dcc..1e0077f82b019 100644 --- a/clients/client-billing/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-billing/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/TagResourceCommand.ts b/clients/client-billing/src/commands/TagResourceCommand.ts index e1e987588b2fd..10a49cd8e35dd 100644 --- a/clients/client-billing/src/commands/TagResourceCommand.ts +++ b/clients/client-billing/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/UntagResourceCommand.ts b/clients/client-billing/src/commands/UntagResourceCommand.ts index 7d96fd2cfa2c9..a28044c853d0c 100644 --- a/clients/client-billing/src/commands/UntagResourceCommand.ts +++ b/clients/client-billing/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/commands/UpdateBillingViewCommand.ts b/clients/client-billing/src/commands/UpdateBillingViewCommand.ts index 0e8ccfb2eedaa..569873913a743 100644 --- a/clients/client-billing/src/commands/UpdateBillingViewCommand.ts +++ b/clients/client-billing/src/commands/UpdateBillingViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; +import type { BillingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBillingViewRequest, UpdateBillingViewResponse } from "../models/models_0"; +import type { UpdateBillingViewRequest, UpdateBillingViewResponse } from "../models/models_0"; import { UpdateBillingView } from "../schemas/schemas_0"; /** diff --git a/clients/client-billing/src/endpoint/EndpointParameters.ts b/clients/client-billing/src/endpoint/EndpointParameters.ts index b0b57fbe7e261..bb31a3c5ea525 100644 --- a/clients/client-billing/src/endpoint/EndpointParameters.ts +++ b/clients/client-billing/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-billing/src/endpoint/endpointResolver.ts b/clients/client-billing/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-billing/src/endpoint/endpointResolver.ts +++ b/clients/client-billing/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-billing/src/extensionConfiguration.ts b/clients/client-billing/src/extensionConfiguration.ts index 9c0d625e6e446..d9ea337a837e1 100644 --- a/clients/client-billing/src/extensionConfiguration.ts +++ b/clients/client-billing/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-billing/src/models/BillingServiceException.ts b/clients/client-billing/src/models/BillingServiceException.ts index 546741f72890b..2021953bd6a9f 100644 --- a/clients/client-billing/src/models/BillingServiceException.ts +++ b/clients/client-billing/src/models/BillingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-billing/src/models/errors.ts b/clients/client-billing/src/models/errors.ts index dc8ec42387798..a9002d19583e9 100644 --- a/clients/client-billing/src/models/errors.ts +++ b/clients/client-billing/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BillingServiceException as __BaseException } from "./BillingServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-billing/src/pagination/Interfaces.ts b/clients/client-billing/src/pagination/Interfaces.ts index bfdb4991ccfcb..8c909f32d0574 100644 --- a/clients/client-billing/src/pagination/Interfaces.ts +++ b/clients/client-billing/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BillingClient } from "../BillingClient"; diff --git a/clients/client-billing/src/pagination/ListBillingViewsPaginator.ts b/clients/client-billing/src/pagination/ListBillingViewsPaginator.ts index b924479a98248..516957ddabf10 100644 --- a/clients/client-billing/src/pagination/ListBillingViewsPaginator.ts +++ b/clients/client-billing/src/pagination/ListBillingViewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingClient } from "../BillingClient"; import { diff --git a/clients/client-billing/src/pagination/ListSourceViewsForBillingViewPaginator.ts b/clients/client-billing/src/pagination/ListSourceViewsForBillingViewPaginator.ts index 94c95a419f1f8..44727e0644f1e 100644 --- a/clients/client-billing/src/pagination/ListSourceViewsForBillingViewPaginator.ts +++ b/clients/client-billing/src/pagination/ListSourceViewsForBillingViewPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingClient } from "../BillingClient"; import { diff --git a/clients/client-billing/src/runtimeConfig.browser.ts b/clients/client-billing/src/runtimeConfig.browser.ts index c7030c5ddfa1e..98afcefdaeaac 100644 --- a/clients/client-billing/src/runtimeConfig.browser.ts +++ b/clients/client-billing/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BillingClientConfig } from "./BillingClient"; + +import type { BillingClientConfig } from "./BillingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-billing/src/runtimeConfig.native.ts b/clients/client-billing/src/runtimeConfig.native.ts index 28df9fcf46e88..ce9c45dbcd9a8 100644 --- a/clients/client-billing/src/runtimeConfig.native.ts +++ b/clients/client-billing/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BillingClientConfig } from "./BillingClient"; +import type { BillingClientConfig } from "./BillingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-billing/src/runtimeConfig.shared.ts b/clients/client-billing/src/runtimeConfig.shared.ts index 24b89a5c725eb..8f3d9a84cbf7d 100644 --- a/clients/client-billing/src/runtimeConfig.shared.ts +++ b/clients/client-billing/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBillingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BillingClientConfig } from "./BillingClient"; +import type { BillingClientConfig } from "./BillingClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-billing/src/runtimeConfig.ts b/clients/client-billing/src/runtimeConfig.ts index c9b4184ea3592..c9d7787adfd66 100644 --- a/clients/client-billing/src/runtimeConfig.ts +++ b/clients/client-billing/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BillingClientConfig } from "./BillingClient"; + +import type { BillingClientConfig } from "./BillingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-billing/src/runtimeExtensions.ts b/clients/client-billing/src/runtimeExtensions.ts index 8f1fadf1dc63b..0c09c317f1627 100644 --- a/clients/client-billing/src/runtimeExtensions.ts +++ b/clients/client-billing/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BillingExtensionConfiguration } from "./extensionConfiguration"; +import type { BillingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-billing/src/schemas/schemas_0.ts b/clients/client-billing/src/schemas/schemas_0.ts index 948b932d9e279..745c80db4d065 100644 --- a/clients/client-billing/src/schemas/schemas_0.ts +++ b/clients/client-billing/src/schemas/schemas_0.ts @@ -122,7 +122,7 @@ const n0 = "com.amazonaws.billing"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-billingconductor/package.json b/clients/client-billingconductor/package.json index 21050be96fd77..9b3c811e490ca 100644 --- a/clients/client-billingconductor/package.json +++ b/clients/client-billingconductor/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-billingconductor/src/Billingconductor.ts b/clients/client-billingconductor/src/Billingconductor.ts index 868d6179f4951..d40ee858b551b 100644 --- a/clients/client-billingconductor/src/Billingconductor.ts +++ b/clients/client-billingconductor/src/Billingconductor.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BillingconductorClient, BillingconductorClientConfig } from "./BillingconductorClient"; +import { BillingconductorClient } from "./BillingconductorClient"; import { AssociateAccountsCommand, AssociateAccountsCommandInput, diff --git a/clients/client-billingconductor/src/BillingconductorClient.ts b/clients/client-billingconductor/src/BillingconductorClient.ts index a23adf146dc61..72bc956733b15 100644 --- a/clients/client-billingconductor/src/BillingconductorClient.ts +++ b/clients/client-billingconductor/src/BillingconductorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBillingconductorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateAccountsCommandInput, AssociateAccountsCommandOutput } from "./commands/AssociateAccountsCommand"; @@ -147,7 +156,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-billingconductor/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-billingconductor/src/auth/httpAuthExtensionConfiguration.ts index 2540239e93058..66635826a8997 100644 --- a/clients/client-billingconductor/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-billingconductor/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BillingconductorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BillingconductorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-billingconductor/src/auth/httpAuthSchemeProvider.ts b/clients/client-billingconductor/src/auth/httpAuthSchemeProvider.ts index 0adfe3d480563..583c4d5a3a6ba 100644 --- a/clients/client-billingconductor/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-billingconductor/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BillingconductorClientConfig, BillingconductorClientResolvedConfig } from "../BillingconductorClient"; +import { type BillingconductorClientResolvedConfig, BillingconductorClientConfig } from "../BillingconductorClient"; /** * @internal diff --git a/clients/client-billingconductor/src/commands/AssociateAccountsCommand.ts b/clients/client-billingconductor/src/commands/AssociateAccountsCommand.ts index 996526d2b10d7..d047724803014 100644 --- a/clients/client-billingconductor/src/commands/AssociateAccountsCommand.ts +++ b/clients/client-billingconductor/src/commands/AssociateAccountsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAccountsInput, AssociateAccountsOutput } from "../models/models_0"; +import type { AssociateAccountsInput, AssociateAccountsOutput } from "../models/models_0"; import { AssociateAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/AssociatePricingRulesCommand.ts b/clients/client-billingconductor/src/commands/AssociatePricingRulesCommand.ts index 9dbc945fd4789..c80cb2d755023 100644 --- a/clients/client-billingconductor/src/commands/AssociatePricingRulesCommand.ts +++ b/clients/client-billingconductor/src/commands/AssociatePricingRulesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociatePricingRulesInput, AssociatePricingRulesOutput } from "../models/models_0"; +import type { AssociatePricingRulesInput, AssociatePricingRulesOutput } from "../models/models_0"; import { AssociatePricingRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/BatchAssociateResourcesToCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/BatchAssociateResourcesToCustomLineItemCommand.ts index a793f57168335..9461388e51f6c 100644 --- a/clients/client-billingconductor/src/commands/BatchAssociateResourcesToCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/BatchAssociateResourcesToCustomLineItemCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchAssociateResourcesToCustomLineItemInput, BatchAssociateResourcesToCustomLineItemOutput, } from "../models/models_0"; diff --git a/clients/client-billingconductor/src/commands/BatchDisassociateResourcesFromCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/BatchDisassociateResourcesFromCustomLineItemCommand.ts index ba6f75d8559fb..77fac2fe9cf07 100644 --- a/clients/client-billingconductor/src/commands/BatchDisassociateResourcesFromCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/BatchDisassociateResourcesFromCustomLineItemCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchDisassociateResourcesFromCustomLineItemInput, BatchDisassociateResourcesFromCustomLineItemOutput, } from "../models/models_0"; diff --git a/clients/client-billingconductor/src/commands/CreateBillingGroupCommand.ts b/clients/client-billingconductor/src/commands/CreateBillingGroupCommand.ts index 04e99fc3270a2..9b8524cabc949 100644 --- a/clients/client-billingconductor/src/commands/CreateBillingGroupCommand.ts +++ b/clients/client-billingconductor/src/commands/CreateBillingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBillingGroupInput, CreateBillingGroupOutput } from "../models/models_0"; +import type { CreateBillingGroupInput, CreateBillingGroupOutput } from "../models/models_0"; import { CreateBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/CreateCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/CreateCustomLineItemCommand.ts index d512b305ac469..b87090de49d1d 100644 --- a/clients/client-billingconductor/src/commands/CreateCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/CreateCustomLineItemCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomLineItemInput, CreateCustomLineItemOutput } from "../models/models_0"; +import type { CreateCustomLineItemInput, CreateCustomLineItemOutput } from "../models/models_0"; import { CreateCustomLineItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/CreatePricingPlanCommand.ts b/clients/client-billingconductor/src/commands/CreatePricingPlanCommand.ts index c349e3c6d179e..2e059b6a9b956 100644 --- a/clients/client-billingconductor/src/commands/CreatePricingPlanCommand.ts +++ b/clients/client-billingconductor/src/commands/CreatePricingPlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePricingPlanInput, CreatePricingPlanOutput } from "../models/models_0"; +import type { CreatePricingPlanInput, CreatePricingPlanOutput } from "../models/models_0"; import { CreatePricingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/CreatePricingRuleCommand.ts b/clients/client-billingconductor/src/commands/CreatePricingRuleCommand.ts index 9d4fcc386f67b..fc15b561db883 100644 --- a/clients/client-billingconductor/src/commands/CreatePricingRuleCommand.ts +++ b/clients/client-billingconductor/src/commands/CreatePricingRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePricingRuleInput, CreatePricingRuleOutput } from "../models/models_0"; +import type { CreatePricingRuleInput, CreatePricingRuleOutput } from "../models/models_0"; import { CreatePricingRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/DeleteBillingGroupCommand.ts b/clients/client-billingconductor/src/commands/DeleteBillingGroupCommand.ts index 12cda386bedc7..f7cedba76db66 100644 --- a/clients/client-billingconductor/src/commands/DeleteBillingGroupCommand.ts +++ b/clients/client-billingconductor/src/commands/DeleteBillingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBillingGroupInput, DeleteBillingGroupOutput } from "../models/models_0"; +import type { DeleteBillingGroupInput, DeleteBillingGroupOutput } from "../models/models_0"; import { DeleteBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/DeleteCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/DeleteCustomLineItemCommand.ts index 1411499d944d5..718b65811485a 100644 --- a/clients/client-billingconductor/src/commands/DeleteCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/DeleteCustomLineItemCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomLineItemInput, DeleteCustomLineItemOutput } from "../models/models_0"; +import type { DeleteCustomLineItemInput, DeleteCustomLineItemOutput } from "../models/models_0"; import { DeleteCustomLineItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/DeletePricingPlanCommand.ts b/clients/client-billingconductor/src/commands/DeletePricingPlanCommand.ts index e50867fc198a6..016fccde99f5d 100644 --- a/clients/client-billingconductor/src/commands/DeletePricingPlanCommand.ts +++ b/clients/client-billingconductor/src/commands/DeletePricingPlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePricingPlanInput, DeletePricingPlanOutput } from "../models/models_0"; +import type { DeletePricingPlanInput, DeletePricingPlanOutput } from "../models/models_0"; import { DeletePricingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/DeletePricingRuleCommand.ts b/clients/client-billingconductor/src/commands/DeletePricingRuleCommand.ts index 932dd484cc248..d1a99332359d9 100644 --- a/clients/client-billingconductor/src/commands/DeletePricingRuleCommand.ts +++ b/clients/client-billingconductor/src/commands/DeletePricingRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePricingRuleInput, DeletePricingRuleOutput } from "../models/models_0"; +import type { DeletePricingRuleInput, DeletePricingRuleOutput } from "../models/models_0"; import { DeletePricingRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/DisassociateAccountsCommand.ts b/clients/client-billingconductor/src/commands/DisassociateAccountsCommand.ts index 693c0d3b92db6..13df49fe51450 100644 --- a/clients/client-billingconductor/src/commands/DisassociateAccountsCommand.ts +++ b/clients/client-billingconductor/src/commands/DisassociateAccountsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateAccountsInput, DisassociateAccountsOutput } from "../models/models_0"; +import type { DisassociateAccountsInput, DisassociateAccountsOutput } from "../models/models_0"; import { DisassociateAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/DisassociatePricingRulesCommand.ts b/clients/client-billingconductor/src/commands/DisassociatePricingRulesCommand.ts index 4e8dae655ad65..2f3338bd4b5ab 100644 --- a/clients/client-billingconductor/src/commands/DisassociatePricingRulesCommand.ts +++ b/clients/client-billingconductor/src/commands/DisassociatePricingRulesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociatePricingRulesInput, DisassociatePricingRulesOutput } from "../models/models_0"; +import type { DisassociatePricingRulesInput, DisassociatePricingRulesOutput } from "../models/models_0"; import { DisassociatePricingRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/GetBillingGroupCostReportCommand.ts b/clients/client-billingconductor/src/commands/GetBillingGroupCostReportCommand.ts index 5f9259094b2d3..f2d8d65010e53 100644 --- a/clients/client-billingconductor/src/commands/GetBillingGroupCostReportCommand.ts +++ b/clients/client-billingconductor/src/commands/GetBillingGroupCostReportCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBillingGroupCostReportInput, GetBillingGroupCostReportOutput } from "../models/models_0"; +import type { GetBillingGroupCostReportInput, GetBillingGroupCostReportOutput } from "../models/models_0"; import { GetBillingGroupCostReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/ListAccountAssociationsCommand.ts b/clients/client-billingconductor/src/commands/ListAccountAssociationsCommand.ts index a734febcdedac..e9c0c5a938606 100644 --- a/clients/client-billingconductor/src/commands/ListAccountAssociationsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListAccountAssociationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountAssociationsInput, ListAccountAssociationsOutput } from "../models/models_0"; +import type { ListAccountAssociationsInput, ListAccountAssociationsOutput } from "../models/models_0"; import { ListAccountAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/ListBillingGroupCostReportsCommand.ts b/clients/client-billingconductor/src/commands/ListBillingGroupCostReportsCommand.ts index 12c0d08652c3d..0eb091458daa7 100644 --- a/clients/client-billingconductor/src/commands/ListBillingGroupCostReportsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListBillingGroupCostReportsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBillingGroupCostReportsInput, ListBillingGroupCostReportsOutput } from "../models/models_0"; +import type { ListBillingGroupCostReportsInput, ListBillingGroupCostReportsOutput } from "../models/models_0"; import { ListBillingGroupCostReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/ListBillingGroupsCommand.ts b/clients/client-billingconductor/src/commands/ListBillingGroupsCommand.ts index 519492e4dd67a..9b9c821123824 100644 --- a/clients/client-billingconductor/src/commands/ListBillingGroupsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListBillingGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBillingGroupsInput, ListBillingGroupsOutput } from "../models/models_0"; +import type { ListBillingGroupsInput, ListBillingGroupsOutput } from "../models/models_0"; import { ListBillingGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/ListCustomLineItemVersionsCommand.ts b/clients/client-billingconductor/src/commands/ListCustomLineItemVersionsCommand.ts index 6561f4e5062fe..6ea98f7ddfcf6 100644 --- a/clients/client-billingconductor/src/commands/ListCustomLineItemVersionsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListCustomLineItemVersionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCustomLineItemVersionsInput, ListCustomLineItemVersionsOutput } from "../models/models_0"; +import type { ListCustomLineItemVersionsInput, ListCustomLineItemVersionsOutput } from "../models/models_0"; import { ListCustomLineItemVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/ListCustomLineItemsCommand.ts b/clients/client-billingconductor/src/commands/ListCustomLineItemsCommand.ts index 442876b0eb143..31aa7587da04c 100644 --- a/clients/client-billingconductor/src/commands/ListCustomLineItemsCommand.ts +++ b/clients/client-billingconductor/src/commands/ListCustomLineItemsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCustomLineItemsInput, ListCustomLineItemsOutput } from "../models/models_0"; +import type { ListCustomLineItemsInput, ListCustomLineItemsOutput } from "../models/models_0"; import { ListCustomLineItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/ListPricingPlansAssociatedWithPricingRuleCommand.ts b/clients/client-billingconductor/src/commands/ListPricingPlansAssociatedWithPricingRuleCommand.ts index fde2acf274e9e..fa475a6863708 100644 --- a/clients/client-billingconductor/src/commands/ListPricingPlansAssociatedWithPricingRuleCommand.ts +++ b/clients/client-billingconductor/src/commands/ListPricingPlansAssociatedWithPricingRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListPricingPlansAssociatedWithPricingRuleInput, ListPricingPlansAssociatedWithPricingRuleOutput, } from "../models/models_0"; diff --git a/clients/client-billingconductor/src/commands/ListPricingPlansCommand.ts b/clients/client-billingconductor/src/commands/ListPricingPlansCommand.ts index 49b473990eaaf..3bc7ca4113fce 100644 --- a/clients/client-billingconductor/src/commands/ListPricingPlansCommand.ts +++ b/clients/client-billingconductor/src/commands/ListPricingPlansCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPricingPlansInput, ListPricingPlansOutput } from "../models/models_0"; +import type { ListPricingPlansInput, ListPricingPlansOutput } from "../models/models_0"; import { ListPricingPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/ListPricingRulesAssociatedToPricingPlanCommand.ts b/clients/client-billingconductor/src/commands/ListPricingRulesAssociatedToPricingPlanCommand.ts index 35f9eefc1461f..6837711b217dd 100644 --- a/clients/client-billingconductor/src/commands/ListPricingRulesAssociatedToPricingPlanCommand.ts +++ b/clients/client-billingconductor/src/commands/ListPricingRulesAssociatedToPricingPlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListPricingRulesAssociatedToPricingPlanInput, ListPricingRulesAssociatedToPricingPlanOutput, } from "../models/models_0"; diff --git a/clients/client-billingconductor/src/commands/ListPricingRulesCommand.ts b/clients/client-billingconductor/src/commands/ListPricingRulesCommand.ts index c42f65a5e81e1..af687c0a26963 100644 --- a/clients/client-billingconductor/src/commands/ListPricingRulesCommand.ts +++ b/clients/client-billingconductor/src/commands/ListPricingRulesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPricingRulesInput, ListPricingRulesOutput } from "../models/models_0"; +import type { ListPricingRulesInput, ListPricingRulesOutput } from "../models/models_0"; import { ListPricingRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/ListResourcesAssociatedToCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/ListResourcesAssociatedToCustomLineItemCommand.ts index beb6ba42725b9..6a88efc3de0d7 100644 --- a/clients/client-billingconductor/src/commands/ListResourcesAssociatedToCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/ListResourcesAssociatedToCustomLineItemCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListResourcesAssociatedToCustomLineItemInput, ListResourcesAssociatedToCustomLineItemOutput, } from "../models/models_0"; diff --git a/clients/client-billingconductor/src/commands/ListTagsForResourceCommand.ts b/clients/client-billingconductor/src/commands/ListTagsForResourceCommand.ts index 25f3124d050e0..4d30c488510eb 100644 --- a/clients/client-billingconductor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-billingconductor/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/TagResourceCommand.ts b/clients/client-billingconductor/src/commands/TagResourceCommand.ts index 601b370a76f2c..f68c1cbb2903d 100644 --- a/clients/client-billingconductor/src/commands/TagResourceCommand.ts +++ b/clients/client-billingconductor/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/UntagResourceCommand.ts b/clients/client-billingconductor/src/commands/UntagResourceCommand.ts index 5a5b065b27c83..b0994412e9d2a 100644 --- a/clients/client-billingconductor/src/commands/UntagResourceCommand.ts +++ b/clients/client-billingconductor/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/UpdateBillingGroupCommand.ts b/clients/client-billingconductor/src/commands/UpdateBillingGroupCommand.ts index 63d49137657e6..f6ab9ba102ab6 100644 --- a/clients/client-billingconductor/src/commands/UpdateBillingGroupCommand.ts +++ b/clients/client-billingconductor/src/commands/UpdateBillingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBillingGroupInput, UpdateBillingGroupOutput } from "../models/models_0"; +import type { UpdateBillingGroupInput, UpdateBillingGroupOutput } from "../models/models_0"; import { UpdateBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/UpdateCustomLineItemCommand.ts b/clients/client-billingconductor/src/commands/UpdateCustomLineItemCommand.ts index 2e80c6c5c71ec..d57887bc2719f 100644 --- a/clients/client-billingconductor/src/commands/UpdateCustomLineItemCommand.ts +++ b/clients/client-billingconductor/src/commands/UpdateCustomLineItemCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCustomLineItemInput, UpdateCustomLineItemOutput } from "../models/models_0"; +import type { UpdateCustomLineItemInput, UpdateCustomLineItemOutput } from "../models/models_0"; import { UpdateCustomLineItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/UpdatePricingPlanCommand.ts b/clients/client-billingconductor/src/commands/UpdatePricingPlanCommand.ts index dade82dfb8de2..ae2c15201211b 100644 --- a/clients/client-billingconductor/src/commands/UpdatePricingPlanCommand.ts +++ b/clients/client-billingconductor/src/commands/UpdatePricingPlanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePricingPlanInput, UpdatePricingPlanOutput } from "../models/models_0"; +import type { UpdatePricingPlanInput, UpdatePricingPlanOutput } from "../models/models_0"; import { UpdatePricingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/commands/UpdatePricingRuleCommand.ts b/clients/client-billingconductor/src/commands/UpdatePricingRuleCommand.ts index 36ffc2bb991c0..3b26e23f6d5c7 100644 --- a/clients/client-billingconductor/src/commands/UpdatePricingRuleCommand.ts +++ b/clients/client-billingconductor/src/commands/UpdatePricingRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BillingconductorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BillingconductorClient"; +import type { + BillingconductorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../BillingconductorClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePricingRuleInput, UpdatePricingRuleOutput } from "../models/models_0"; +import type { UpdatePricingRuleInput, UpdatePricingRuleOutput } from "../models/models_0"; import { UpdatePricingRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-billingconductor/src/endpoint/EndpointParameters.ts b/clients/client-billingconductor/src/endpoint/EndpointParameters.ts index b0d53cb012041..6b16e91e73421 100644 --- a/clients/client-billingconductor/src/endpoint/EndpointParameters.ts +++ b/clients/client-billingconductor/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-billingconductor/src/endpoint/endpointResolver.ts b/clients/client-billingconductor/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-billingconductor/src/endpoint/endpointResolver.ts +++ b/clients/client-billingconductor/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-billingconductor/src/extensionConfiguration.ts b/clients/client-billingconductor/src/extensionConfiguration.ts index ff12ad90068fe..24ea1e7f6af7a 100644 --- a/clients/client-billingconductor/src/extensionConfiguration.ts +++ b/clients/client-billingconductor/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-billingconductor/src/models/BillingconductorServiceException.ts b/clients/client-billingconductor/src/models/BillingconductorServiceException.ts index 45c86b50f67d9..57cdfb1a75247 100644 --- a/clients/client-billingconductor/src/models/BillingconductorServiceException.ts +++ b/clients/client-billingconductor/src/models/BillingconductorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-billingconductor/src/models/errors.ts b/clients/client-billingconductor/src/models/errors.ts index d254d9b008ad6..8cd904b533c61 100644 --- a/clients/client-billingconductor/src/models/errors.ts +++ b/clients/client-billingconductor/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BillingconductorServiceException as __BaseException } from "./BillingconductorServiceException"; import { ConflictExceptionReason, ValidationExceptionReason } from "./enums"; diff --git a/clients/client-billingconductor/src/pagination/GetBillingGroupCostReportPaginator.ts b/clients/client-billingconductor/src/pagination/GetBillingGroupCostReportPaginator.ts index bf3f917852afa..496d304936210 100644 --- a/clients/client-billingconductor/src/pagination/GetBillingGroupCostReportPaginator.ts +++ b/clients/client-billingconductor/src/pagination/GetBillingGroupCostReportPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/Interfaces.ts b/clients/client-billingconductor/src/pagination/Interfaces.ts index 851b8d9e0b922..cfce429e480c1 100644 --- a/clients/client-billingconductor/src/pagination/Interfaces.ts +++ b/clients/client-billingconductor/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; diff --git a/clients/client-billingconductor/src/pagination/ListAccountAssociationsPaginator.ts b/clients/client-billingconductor/src/pagination/ListAccountAssociationsPaginator.ts index bdccc50977b7a..172c9d2f58566 100644 --- a/clients/client-billingconductor/src/pagination/ListAccountAssociationsPaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListAccountAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/ListBillingGroupCostReportsPaginator.ts b/clients/client-billingconductor/src/pagination/ListBillingGroupCostReportsPaginator.ts index 97208ff928206..80a1afb9ea936 100644 --- a/clients/client-billingconductor/src/pagination/ListBillingGroupCostReportsPaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListBillingGroupCostReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/ListBillingGroupsPaginator.ts b/clients/client-billingconductor/src/pagination/ListBillingGroupsPaginator.ts index 2c1b928654b90..4ba292a61cad2 100644 --- a/clients/client-billingconductor/src/pagination/ListBillingGroupsPaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListBillingGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/ListCustomLineItemVersionsPaginator.ts b/clients/client-billingconductor/src/pagination/ListCustomLineItemVersionsPaginator.ts index 3ebfaeacf77b2..08dac69ccea13 100644 --- a/clients/client-billingconductor/src/pagination/ListCustomLineItemVersionsPaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListCustomLineItemVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/ListCustomLineItemsPaginator.ts b/clients/client-billingconductor/src/pagination/ListCustomLineItemsPaginator.ts index 93b8c79a181bd..42c11118e56aa 100644 --- a/clients/client-billingconductor/src/pagination/ListCustomLineItemsPaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListCustomLineItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.ts b/clients/client-billingconductor/src/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.ts index 5c095603bd509..6c91a2d5bcca3 100644 --- a/clients/client-billingconductor/src/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListPricingPlansAssociatedWithPricingRulePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/ListPricingPlansPaginator.ts b/clients/client-billingconductor/src/pagination/ListPricingPlansPaginator.ts index fc65980f25a80..4296b882cb2c8 100644 --- a/clients/client-billingconductor/src/pagination/ListPricingPlansPaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListPricingPlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.ts b/clients/client-billingconductor/src/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.ts index 94efc57bc7c0d..287fa0467e932 100644 --- a/clients/client-billingconductor/src/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListPricingRulesAssociatedToPricingPlanPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/ListPricingRulesPaginator.ts b/clients/client-billingconductor/src/pagination/ListPricingRulesPaginator.ts index 235ab73384f9e..fc02ebf8de84d 100644 --- a/clients/client-billingconductor/src/pagination/ListPricingRulesPaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListPricingRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/pagination/ListResourcesAssociatedToCustomLineItemPaginator.ts b/clients/client-billingconductor/src/pagination/ListResourcesAssociatedToCustomLineItemPaginator.ts index 848c227502444..c6ba84de77f94 100644 --- a/clients/client-billingconductor/src/pagination/ListResourcesAssociatedToCustomLineItemPaginator.ts +++ b/clients/client-billingconductor/src/pagination/ListResourcesAssociatedToCustomLineItemPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BillingconductorClient } from "../BillingconductorClient"; import { diff --git a/clients/client-billingconductor/src/runtimeConfig.browser.ts b/clients/client-billingconductor/src/runtimeConfig.browser.ts index 35a2d04ea8539..0018e7c732bf5 100644 --- a/clients/client-billingconductor/src/runtimeConfig.browser.ts +++ b/clients/client-billingconductor/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BillingconductorClientConfig } from "./BillingconductorClient"; + +import type { BillingconductorClientConfig } from "./BillingconductorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-billingconductor/src/runtimeConfig.native.ts b/clients/client-billingconductor/src/runtimeConfig.native.ts index d68a20cae4f11..4ac3fa1de093a 100644 --- a/clients/client-billingconductor/src/runtimeConfig.native.ts +++ b/clients/client-billingconductor/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BillingconductorClientConfig } from "./BillingconductorClient"; +import type { BillingconductorClientConfig } from "./BillingconductorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-billingconductor/src/runtimeConfig.shared.ts b/clients/client-billingconductor/src/runtimeConfig.shared.ts index 25db3ef324083..38143aa9b61a7 100644 --- a/clients/client-billingconductor/src/runtimeConfig.shared.ts +++ b/clients/client-billingconductor/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBillingconductorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BillingconductorClientConfig } from "./BillingconductorClient"; +import type { BillingconductorClientConfig } from "./BillingconductorClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-billingconductor/src/runtimeConfig.ts b/clients/client-billingconductor/src/runtimeConfig.ts index 57b83a7d5f9a8..eb8d9c3c5f294 100644 --- a/clients/client-billingconductor/src/runtimeConfig.ts +++ b/clients/client-billingconductor/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BillingconductorClientConfig } from "./BillingconductorClient"; + +import type { BillingconductorClientConfig } from "./BillingconductorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-billingconductor/src/runtimeExtensions.ts b/clients/client-billingconductor/src/runtimeExtensions.ts index 5453ee0d1671f..765ee34847c94 100644 --- a/clients/client-billingconductor/src/runtimeExtensions.ts +++ b/clients/client-billingconductor/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BillingconductorExtensionConfiguration } from "./extensionConfiguration"; +import type { BillingconductorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-billingconductor/src/schemas/schemas_0.ts b/clients/client-billingconductor/src/schemas/schemas_0.ts index aaf48e25cbcaf..74600c295a2b5 100644 --- a/clients/client-billingconductor/src/schemas/schemas_0.ts +++ b/clients/client-billingconductor/src/schemas/schemas_0.ts @@ -292,7 +292,7 @@ const n0 = "com.amazonaws.billingconductor"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-braket/package.json b/clients/client-braket/package.json index eff25380ec2d6..05ebae45a878b 100644 --- a/clients/client-braket/package.json +++ b/clients/client-braket/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-braket/src/Braket.ts b/clients/client-braket/src/Braket.ts index afb7fede95429..6cb9a66bcc13b 100644 --- a/clients/client-braket/src/Braket.ts +++ b/clients/client-braket/src/Braket.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BraketClient, BraketClientConfig } from "./BraketClient"; +import { BraketClient } from "./BraketClient"; import { CancelJobCommand, CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand"; import { CancelQuantumTaskCommand, diff --git a/clients/client-braket/src/BraketClient.ts b/clients/client-braket/src/BraketClient.ts index bbb79d1085881..f8a0fc8047468 100644 --- a/clients/client-braket/src/BraketClient.ts +++ b/clients/client-braket/src/BraketClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBraketHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand"; @@ -96,7 +105,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-braket/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-braket/src/auth/httpAuthExtensionConfiguration.ts index a291807eec05d..75e3a0006361d 100644 --- a/clients/client-braket/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-braket/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BraketHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BraketHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-braket/src/auth/httpAuthSchemeProvider.ts b/clients/client-braket/src/auth/httpAuthSchemeProvider.ts index 76c3b64672bd8..260cd2aa43213 100644 --- a/clients/client-braket/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-braket/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BraketClientConfig, BraketClientResolvedConfig } from "../BraketClient"; +import { type BraketClientResolvedConfig, BraketClientConfig } from "../BraketClient"; /** * @internal diff --git a/clients/client-braket/src/commands/CancelJobCommand.ts b/clients/client-braket/src/commands/CancelJobCommand.ts index 79e905e546a44..02644db158089 100644 --- a/clients/client-braket/src/commands/CancelJobCommand.ts +++ b/clients/client-braket/src/commands/CancelJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelJobRequest, CancelJobResponse } from "../models/models_0"; +import type { CancelJobRequest, CancelJobResponse } from "../models/models_0"; import { CancelJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/CancelQuantumTaskCommand.ts b/clients/client-braket/src/commands/CancelQuantumTaskCommand.ts index 4d3f54e70f671..22871172ae230 100644 --- a/clients/client-braket/src/commands/CancelQuantumTaskCommand.ts +++ b/clients/client-braket/src/commands/CancelQuantumTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelQuantumTaskRequest, CancelQuantumTaskResponse } from "../models/models_0"; +import type { CancelQuantumTaskRequest, CancelQuantumTaskResponse } from "../models/models_0"; import { CancelQuantumTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/CreateJobCommand.ts b/clients/client-braket/src/commands/CreateJobCommand.ts index 94456298441a8..f9862801a9929 100644 --- a/clients/client-braket/src/commands/CreateJobCommand.ts +++ b/clients/client-braket/src/commands/CreateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJobRequest, CreateJobResponse } from "../models/models_0"; +import type { CreateJobRequest, CreateJobResponse } from "../models/models_0"; import { CreateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/CreateQuantumTaskCommand.ts b/clients/client-braket/src/commands/CreateQuantumTaskCommand.ts index f5ca24f99ca34..633d52539baf9 100644 --- a/clients/client-braket/src/commands/CreateQuantumTaskCommand.ts +++ b/clients/client-braket/src/commands/CreateQuantumTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQuantumTaskRequest, CreateQuantumTaskResponse } from "../models/models_0"; +import type { CreateQuantumTaskRequest, CreateQuantumTaskResponse } from "../models/models_0"; import { CreateQuantumTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/CreateSpendingLimitCommand.ts b/clients/client-braket/src/commands/CreateSpendingLimitCommand.ts index 85c4c283eb507..85f082d8feae0 100644 --- a/clients/client-braket/src/commands/CreateSpendingLimitCommand.ts +++ b/clients/client-braket/src/commands/CreateSpendingLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSpendingLimitRequest, CreateSpendingLimitResponse } from "../models/models_0"; +import type { CreateSpendingLimitRequest, CreateSpendingLimitResponse } from "../models/models_0"; import { CreateSpendingLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/DeleteSpendingLimitCommand.ts b/clients/client-braket/src/commands/DeleteSpendingLimitCommand.ts index c39241f576b1b..1ec392344491d 100644 --- a/clients/client-braket/src/commands/DeleteSpendingLimitCommand.ts +++ b/clients/client-braket/src/commands/DeleteSpendingLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSpendingLimitRequest, DeleteSpendingLimitResponse } from "../models/models_0"; +import type { DeleteSpendingLimitRequest, DeleteSpendingLimitResponse } from "../models/models_0"; import { DeleteSpendingLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/GetDeviceCommand.ts b/clients/client-braket/src/commands/GetDeviceCommand.ts index 5048c60d37f7b..fd51ab53a0c86 100644 --- a/clients/client-braket/src/commands/GetDeviceCommand.ts +++ b/clients/client-braket/src/commands/GetDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeviceRequest, GetDeviceResponse } from "../models/models_0"; +import type { GetDeviceRequest, GetDeviceResponse } from "../models/models_0"; import { GetDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/GetJobCommand.ts b/clients/client-braket/src/commands/GetJobCommand.ts index 92e4766187088..b7cd298f64952 100644 --- a/clients/client-braket/src/commands/GetJobCommand.ts +++ b/clients/client-braket/src/commands/GetJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobRequest, GetJobResponse } from "../models/models_0"; +import type { GetJobRequest, GetJobResponse } from "../models/models_0"; import { GetJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/GetQuantumTaskCommand.ts b/clients/client-braket/src/commands/GetQuantumTaskCommand.ts index b07e6aa36b6cb..595fac57d2c94 100644 --- a/clients/client-braket/src/commands/GetQuantumTaskCommand.ts +++ b/clients/client-braket/src/commands/GetQuantumTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQuantumTaskRequest, GetQuantumTaskResponse } from "../models/models_0"; +import type { GetQuantumTaskRequest, GetQuantumTaskResponse } from "../models/models_0"; import { GetQuantumTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/ListTagsForResourceCommand.ts b/clients/client-braket/src/commands/ListTagsForResourceCommand.ts index 557509e799153..461c6141622be 100644 --- a/clients/client-braket/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-braket/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/SearchDevicesCommand.ts b/clients/client-braket/src/commands/SearchDevicesCommand.ts index e0d230cebe736..8f96a10ff9a83 100644 --- a/clients/client-braket/src/commands/SearchDevicesCommand.ts +++ b/clients/client-braket/src/commands/SearchDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchDevicesRequest, SearchDevicesResponse } from "../models/models_0"; +import type { SearchDevicesRequest, SearchDevicesResponse } from "../models/models_0"; import { SearchDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/SearchJobsCommand.ts b/clients/client-braket/src/commands/SearchJobsCommand.ts index ae61618745060..662a526350fb7 100644 --- a/clients/client-braket/src/commands/SearchJobsCommand.ts +++ b/clients/client-braket/src/commands/SearchJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchJobsRequest, SearchJobsResponse } from "../models/models_0"; +import type { SearchJobsRequest, SearchJobsResponse } from "../models/models_0"; import { SearchJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/SearchQuantumTasksCommand.ts b/clients/client-braket/src/commands/SearchQuantumTasksCommand.ts index 54ce435b0b448..1206796c56a45 100644 --- a/clients/client-braket/src/commands/SearchQuantumTasksCommand.ts +++ b/clients/client-braket/src/commands/SearchQuantumTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchQuantumTasksRequest, SearchQuantumTasksResponse } from "../models/models_0"; +import type { SearchQuantumTasksRequest, SearchQuantumTasksResponse } from "../models/models_0"; import { SearchQuantumTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/SearchSpendingLimitsCommand.ts b/clients/client-braket/src/commands/SearchSpendingLimitsCommand.ts index 38f154de095cd..4a3c238c14004 100644 --- a/clients/client-braket/src/commands/SearchSpendingLimitsCommand.ts +++ b/clients/client-braket/src/commands/SearchSpendingLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchSpendingLimitsRequest, SearchSpendingLimitsResponse } from "../models/models_0"; +import type { SearchSpendingLimitsRequest, SearchSpendingLimitsResponse } from "../models/models_0"; import { SearchSpendingLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/TagResourceCommand.ts b/clients/client-braket/src/commands/TagResourceCommand.ts index a08e56f60d0d7..4eba0c4088dde 100644 --- a/clients/client-braket/src/commands/TagResourceCommand.ts +++ b/clients/client-braket/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/UntagResourceCommand.ts b/clients/client-braket/src/commands/UntagResourceCommand.ts index f759389173353..47b31bfba08e3 100644 --- a/clients/client-braket/src/commands/UntagResourceCommand.ts +++ b/clients/client-braket/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/commands/UpdateSpendingLimitCommand.ts b/clients/client-braket/src/commands/UpdateSpendingLimitCommand.ts index adf880527ea36..d67498686eca5 100644 --- a/clients/client-braket/src/commands/UpdateSpendingLimitCommand.ts +++ b/clients/client-braket/src/commands/UpdateSpendingLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; +import type { BraketClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BraketClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSpendingLimitRequest, UpdateSpendingLimitResponse } from "../models/models_0"; +import type { UpdateSpendingLimitRequest, UpdateSpendingLimitResponse } from "../models/models_0"; import { UpdateSpendingLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-braket/src/endpoint/EndpointParameters.ts b/clients/client-braket/src/endpoint/EndpointParameters.ts index 77cf94ec24f8d..bb910893f1027 100644 --- a/clients/client-braket/src/endpoint/EndpointParameters.ts +++ b/clients/client-braket/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-braket/src/endpoint/endpointResolver.ts b/clients/client-braket/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-braket/src/endpoint/endpointResolver.ts +++ b/clients/client-braket/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-braket/src/extensionConfiguration.ts b/clients/client-braket/src/extensionConfiguration.ts index 0c1c90d702ac6..10817dc4970b8 100644 --- a/clients/client-braket/src/extensionConfiguration.ts +++ b/clients/client-braket/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-braket/src/models/BraketServiceException.ts b/clients/client-braket/src/models/BraketServiceException.ts index 2944973c0ebc4..087958734666b 100644 --- a/clients/client-braket/src/models/BraketServiceException.ts +++ b/clients/client-braket/src/models/BraketServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-braket/src/models/errors.ts b/clients/client-braket/src/models/errors.ts index fb3f518d2cbfe..ca9f8f66d112c 100644 --- a/clients/client-braket/src/models/errors.ts +++ b/clients/client-braket/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BraketServiceException as __BaseException } from "./BraketServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-braket/src/pagination/Interfaces.ts b/clients/client-braket/src/pagination/Interfaces.ts index 655f62eb07684..37e5ebe97c01a 100644 --- a/clients/client-braket/src/pagination/Interfaces.ts +++ b/clients/client-braket/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BraketClient } from "../BraketClient"; diff --git a/clients/client-braket/src/pagination/SearchDevicesPaginator.ts b/clients/client-braket/src/pagination/SearchDevicesPaginator.ts index 611b8fd878200..612022f155d12 100644 --- a/clients/client-braket/src/pagination/SearchDevicesPaginator.ts +++ b/clients/client-braket/src/pagination/SearchDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BraketClient } from "../BraketClient"; import { diff --git a/clients/client-braket/src/pagination/SearchJobsPaginator.ts b/clients/client-braket/src/pagination/SearchJobsPaginator.ts index 854cce3a5a1b6..acc75adb7a0e3 100644 --- a/clients/client-braket/src/pagination/SearchJobsPaginator.ts +++ b/clients/client-braket/src/pagination/SearchJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BraketClient } from "../BraketClient"; import { SearchJobsCommand, SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand"; diff --git a/clients/client-braket/src/pagination/SearchQuantumTasksPaginator.ts b/clients/client-braket/src/pagination/SearchQuantumTasksPaginator.ts index d7617ba3dd9ff..ed9fe4f051cc9 100644 --- a/clients/client-braket/src/pagination/SearchQuantumTasksPaginator.ts +++ b/clients/client-braket/src/pagination/SearchQuantumTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BraketClient } from "../BraketClient"; import { diff --git a/clients/client-braket/src/pagination/SearchSpendingLimitsPaginator.ts b/clients/client-braket/src/pagination/SearchSpendingLimitsPaginator.ts index 599172df36cf8..0452552267e0d 100644 --- a/clients/client-braket/src/pagination/SearchSpendingLimitsPaginator.ts +++ b/clients/client-braket/src/pagination/SearchSpendingLimitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BraketClient } from "../BraketClient"; import { diff --git a/clients/client-braket/src/runtimeConfig.browser.ts b/clients/client-braket/src/runtimeConfig.browser.ts index a95bc17927ba2..d89b2e0576cde 100644 --- a/clients/client-braket/src/runtimeConfig.browser.ts +++ b/clients/client-braket/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BraketClientConfig } from "./BraketClient"; + +import type { BraketClientConfig } from "./BraketClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-braket/src/runtimeConfig.native.ts b/clients/client-braket/src/runtimeConfig.native.ts index b3e41f3c85f0c..127cc05e0e96c 100644 --- a/clients/client-braket/src/runtimeConfig.native.ts +++ b/clients/client-braket/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BraketClientConfig } from "./BraketClient"; +import type { BraketClientConfig } from "./BraketClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-braket/src/runtimeConfig.shared.ts b/clients/client-braket/src/runtimeConfig.shared.ts index c91942f9d924e..9a18151f0ad89 100644 --- a/clients/client-braket/src/runtimeConfig.shared.ts +++ b/clients/client-braket/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBraketHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BraketClientConfig } from "./BraketClient"; +import type { BraketClientConfig } from "./BraketClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-braket/src/runtimeConfig.ts b/clients/client-braket/src/runtimeConfig.ts index fbe27cbb233eb..52b9af0ef442c 100644 --- a/clients/client-braket/src/runtimeConfig.ts +++ b/clients/client-braket/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BraketClientConfig } from "./BraketClient"; + +import type { BraketClientConfig } from "./BraketClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-braket/src/runtimeExtensions.ts b/clients/client-braket/src/runtimeExtensions.ts index 77d00aef1e6bf..66739e937d85e 100644 --- a/clients/client-braket/src/runtimeExtensions.ts +++ b/clients/client-braket/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BraketExtensionConfiguration } from "./extensionConfiguration"; +import type { BraketExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-braket/src/schemas/schemas_0.ts b/clients/client-braket/src/schemas/schemas_0.ts index 13424e5fde3ce..703266cd7bc6e 100644 --- a/clients/client-braket/src/schemas/schemas_0.ts +++ b/clients/client-braket/src/schemas/schemas_0.ts @@ -211,7 +211,7 @@ const n0 = "com.amazonaws.braket"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-budgets/package.json b/clients/client-budgets/package.json index 4bb166a44eb75..3bde52c7723d7 100644 --- a/clients/client-budgets/package.json +++ b/clients/client-budgets/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-budgets/src/Budgets.ts b/clients/client-budgets/src/Budgets.ts index d792103219f1f..8ce161e9286d6 100644 --- a/clients/client-budgets/src/Budgets.ts +++ b/clients/client-budgets/src/Budgets.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { BudgetsClient, BudgetsClientConfig } from "./BudgetsClient"; +import { BudgetsClient } from "./BudgetsClient"; import { CreateBudgetActionCommand, CreateBudgetActionCommandInput, diff --git a/clients/client-budgets/src/BudgetsClient.ts b/clients/client-budgets/src/BudgetsClient.ts index fdcc02adc8481..d112006f85ed5 100644 --- a/clients/client-budgets/src/BudgetsClient.ts +++ b/clients/client-budgets/src/BudgetsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultBudgetsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateBudgetActionCommandInput, CreateBudgetActionCommandOutput } from "./commands/CreateBudgetActionCommand"; @@ -120,7 +129,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-budgets/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-budgets/src/auth/httpAuthExtensionConfiguration.ts index ff4cff2d36ff5..e6e36650eac4a 100644 --- a/clients/client-budgets/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-budgets/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { BudgetsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { BudgetsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-budgets/src/auth/httpAuthSchemeProvider.ts b/clients/client-budgets/src/auth/httpAuthSchemeProvider.ts index 0a64a37a80dab..1b08b882ae49c 100644 --- a/clients/client-budgets/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-budgets/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { BudgetsClientConfig, BudgetsClientResolvedConfig } from "../BudgetsClient"; +import { type BudgetsClientResolvedConfig, BudgetsClientConfig } from "../BudgetsClient"; /** * @internal diff --git a/clients/client-budgets/src/commands/CreateBudgetActionCommand.ts b/clients/client-budgets/src/commands/CreateBudgetActionCommand.ts index 8b21ecd57fd8d..7d7e94908839d 100644 --- a/clients/client-budgets/src/commands/CreateBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/CreateBudgetActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBudgetActionRequest, CreateBudgetActionResponse } from "../models/models_0"; +import type { CreateBudgetActionRequest, CreateBudgetActionResponse } from "../models/models_0"; import { CreateBudgetAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/CreateBudgetCommand.ts b/clients/client-budgets/src/commands/CreateBudgetCommand.ts index 8e292d075cc40..5da1941d15704 100644 --- a/clients/client-budgets/src/commands/CreateBudgetCommand.ts +++ b/clients/client-budgets/src/commands/CreateBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBudgetRequest, CreateBudgetResponse } from "../models/models_0"; +import type { CreateBudgetRequest, CreateBudgetResponse } from "../models/models_0"; import { CreateBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/CreateNotificationCommand.ts b/clients/client-budgets/src/commands/CreateNotificationCommand.ts index 00b5c785b1f78..f58f9f5a41f89 100644 --- a/clients/client-budgets/src/commands/CreateNotificationCommand.ts +++ b/clients/client-budgets/src/commands/CreateNotificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNotificationRequest, CreateNotificationResponse } from "../models/models_0"; +import type { CreateNotificationRequest, CreateNotificationResponse } from "../models/models_0"; import { CreateNotification } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/CreateSubscriberCommand.ts b/clients/client-budgets/src/commands/CreateSubscriberCommand.ts index e8d0d59bad5cf..fb9aade8f9de3 100644 --- a/clients/client-budgets/src/commands/CreateSubscriberCommand.ts +++ b/clients/client-budgets/src/commands/CreateSubscriberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubscriberRequest, CreateSubscriberResponse } from "../models/models_0"; +import type { CreateSubscriberRequest, CreateSubscriberResponse } from "../models/models_0"; import { CreateSubscriber } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DeleteBudgetActionCommand.ts b/clients/client-budgets/src/commands/DeleteBudgetActionCommand.ts index 71c0f9fb17d43..83fee79220be0 100644 --- a/clients/client-budgets/src/commands/DeleteBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/DeleteBudgetActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBudgetActionRequest, DeleteBudgetActionResponse } from "../models/models_0"; +import type { DeleteBudgetActionRequest, DeleteBudgetActionResponse } from "../models/models_0"; import { DeleteBudgetAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DeleteBudgetCommand.ts b/clients/client-budgets/src/commands/DeleteBudgetCommand.ts index c8d905a99c2a4..65ce431fa0557 100644 --- a/clients/client-budgets/src/commands/DeleteBudgetCommand.ts +++ b/clients/client-budgets/src/commands/DeleteBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBudgetRequest, DeleteBudgetResponse } from "../models/models_0"; +import type { DeleteBudgetRequest, DeleteBudgetResponse } from "../models/models_0"; import { DeleteBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DeleteNotificationCommand.ts b/clients/client-budgets/src/commands/DeleteNotificationCommand.ts index 1a7de895826cd..35c747e66cde9 100644 --- a/clients/client-budgets/src/commands/DeleteNotificationCommand.ts +++ b/clients/client-budgets/src/commands/DeleteNotificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNotificationRequest, DeleteNotificationResponse } from "../models/models_0"; +import type { DeleteNotificationRequest, DeleteNotificationResponse } from "../models/models_0"; import { DeleteNotification } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DeleteSubscriberCommand.ts b/clients/client-budgets/src/commands/DeleteSubscriberCommand.ts index 0c38e8549f36f..f905c990cbbe7 100644 --- a/clients/client-budgets/src/commands/DeleteSubscriberCommand.ts +++ b/clients/client-budgets/src/commands/DeleteSubscriberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubscriberRequest, DeleteSubscriberResponse } from "../models/models_0"; +import type { DeleteSubscriberRequest, DeleteSubscriberResponse } from "../models/models_0"; import { DeleteSubscriber } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DescribeBudgetActionCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetActionCommand.ts index 7738107b84de6..bae659d5b4a6b 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBudgetActionRequest, DescribeBudgetActionResponse } from "../models/models_0"; +import type { DescribeBudgetActionRequest, DescribeBudgetActionResponse } from "../models/models_0"; import { DescribeBudgetAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DescribeBudgetActionHistoriesCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetActionHistoriesCommand.ts index a74413950a582..c7d6b5e2920c4 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetActionHistoriesCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetActionHistoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBudgetActionHistoriesRequest, DescribeBudgetActionHistoriesResponse } from "../models/models_0"; +import type { DescribeBudgetActionHistoriesRequest, DescribeBudgetActionHistoriesResponse } from "../models/models_0"; import { DescribeBudgetActionHistories } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DescribeBudgetActionsForAccountCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetActionsForAccountCommand.ts index 421e3723ad97c..f5fb7d1c60a2e 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetActionsForAccountCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetActionsForAccountCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBudgetActionsForAccountRequest, DescribeBudgetActionsForAccountResponse } from "../models/models_0"; +import type { + DescribeBudgetActionsForAccountRequest, + DescribeBudgetActionsForAccountResponse, +} from "../models/models_0"; import { DescribeBudgetActionsForAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DescribeBudgetActionsForBudgetCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetActionsForBudgetCommand.ts index 9995f5615fae8..bf52392285c61 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetActionsForBudgetCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetActionsForBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBudgetActionsForBudgetRequest, DescribeBudgetActionsForBudgetResponse } from "../models/models_0"; +import type { DescribeBudgetActionsForBudgetRequest, DescribeBudgetActionsForBudgetResponse } from "../models/models_0"; import { DescribeBudgetActionsForBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DescribeBudgetCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetCommand.ts index 3cc1028d150b6..f73b133ac8f37 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBudgetRequest, DescribeBudgetResponse } from "../models/models_0"; +import type { DescribeBudgetRequest, DescribeBudgetResponse } from "../models/models_0"; import { DescribeBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DescribeBudgetNotificationsForAccountCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetNotificationsForAccountCommand.ts index c72a59fb2467c..b362f25ef9d5f 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetNotificationsForAccountCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetNotificationsForAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeBudgetNotificationsForAccountRequest, DescribeBudgetNotificationsForAccountResponse, } from "../models/models_0"; diff --git a/clients/client-budgets/src/commands/DescribeBudgetPerformanceHistoryCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetPerformanceHistoryCommand.ts index 982bb1be404ef..f07d2650f55ac 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetPerformanceHistoryCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetPerformanceHistoryCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBudgetPerformanceHistoryRequest, DescribeBudgetPerformanceHistoryResponse } from "../models/models_0"; +import type { + DescribeBudgetPerformanceHistoryRequest, + DescribeBudgetPerformanceHistoryResponse, +} from "../models/models_0"; import { DescribeBudgetPerformanceHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DescribeBudgetsCommand.ts b/clients/client-budgets/src/commands/DescribeBudgetsCommand.ts index e271a274941d9..73d0dfc43ebc9 100644 --- a/clients/client-budgets/src/commands/DescribeBudgetsCommand.ts +++ b/clients/client-budgets/src/commands/DescribeBudgetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBudgetsRequest, DescribeBudgetsResponse } from "../models/models_0"; +import type { DescribeBudgetsRequest, DescribeBudgetsResponse } from "../models/models_0"; import { DescribeBudgets } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DescribeNotificationsForBudgetCommand.ts b/clients/client-budgets/src/commands/DescribeNotificationsForBudgetCommand.ts index a8b9ffe84f51a..326a05567e675 100644 --- a/clients/client-budgets/src/commands/DescribeNotificationsForBudgetCommand.ts +++ b/clients/client-budgets/src/commands/DescribeNotificationsForBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNotificationsForBudgetRequest, DescribeNotificationsForBudgetResponse } from "../models/models_0"; +import type { DescribeNotificationsForBudgetRequest, DescribeNotificationsForBudgetResponse } from "../models/models_0"; import { DescribeNotificationsForBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/DescribeSubscribersForNotificationCommand.ts b/clients/client-budgets/src/commands/DescribeSubscribersForNotificationCommand.ts index ef0c77918bccf..50c38565d1c5e 100644 --- a/clients/client-budgets/src/commands/DescribeSubscribersForNotificationCommand.ts +++ b/clients/client-budgets/src/commands/DescribeSubscribersForNotificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeSubscribersForNotificationRequest, DescribeSubscribersForNotificationResponse, } from "../models/models_0"; diff --git a/clients/client-budgets/src/commands/ExecuteBudgetActionCommand.ts b/clients/client-budgets/src/commands/ExecuteBudgetActionCommand.ts index 37f886c559528..f86d780d73152 100644 --- a/clients/client-budgets/src/commands/ExecuteBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/ExecuteBudgetActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteBudgetActionRequest, ExecuteBudgetActionResponse } from "../models/models_0"; +import type { ExecuteBudgetActionRequest, ExecuteBudgetActionResponse } from "../models/models_0"; import { ExecuteBudgetAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/ListTagsForResourceCommand.ts b/clients/client-budgets/src/commands/ListTagsForResourceCommand.ts index d55cd317ca936..a7ce8e639aeca 100644 --- a/clients/client-budgets/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-budgets/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/TagResourceCommand.ts b/clients/client-budgets/src/commands/TagResourceCommand.ts index 6a1c6e3a6fdb6..c55d9f60ddc16 100644 --- a/clients/client-budgets/src/commands/TagResourceCommand.ts +++ b/clients/client-budgets/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/UntagResourceCommand.ts b/clients/client-budgets/src/commands/UntagResourceCommand.ts index 2858232be719d..7965220ddbac4 100644 --- a/clients/client-budgets/src/commands/UntagResourceCommand.ts +++ b/clients/client-budgets/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/UpdateBudgetActionCommand.ts b/clients/client-budgets/src/commands/UpdateBudgetActionCommand.ts index 79140645962c3..f319e8179eb16 100644 --- a/clients/client-budgets/src/commands/UpdateBudgetActionCommand.ts +++ b/clients/client-budgets/src/commands/UpdateBudgetActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBudgetActionRequest, UpdateBudgetActionResponse } from "../models/models_0"; +import type { UpdateBudgetActionRequest, UpdateBudgetActionResponse } from "../models/models_0"; import { UpdateBudgetAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/UpdateBudgetCommand.ts b/clients/client-budgets/src/commands/UpdateBudgetCommand.ts index fcb7eb34b6ba2..b1a9636c89215 100644 --- a/clients/client-budgets/src/commands/UpdateBudgetCommand.ts +++ b/clients/client-budgets/src/commands/UpdateBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBudgetRequest, UpdateBudgetResponse } from "../models/models_0"; +import type { UpdateBudgetRequest, UpdateBudgetResponse } from "../models/models_0"; import { UpdateBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/UpdateNotificationCommand.ts b/clients/client-budgets/src/commands/UpdateNotificationCommand.ts index 42c7ab2a45cbe..cd7368b873b1f 100644 --- a/clients/client-budgets/src/commands/UpdateNotificationCommand.ts +++ b/clients/client-budgets/src/commands/UpdateNotificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNotificationRequest, UpdateNotificationResponse } from "../models/models_0"; +import type { UpdateNotificationRequest, UpdateNotificationResponse } from "../models/models_0"; import { UpdateNotification } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/commands/UpdateSubscriberCommand.ts b/clients/client-budgets/src/commands/UpdateSubscriberCommand.ts index 755ce60cdb291..8345d69d76574 100644 --- a/clients/client-budgets/src/commands/UpdateSubscriberCommand.ts +++ b/clients/client-budgets/src/commands/UpdateSubscriberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; +import type { BudgetsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BudgetsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubscriberRequest, UpdateSubscriberResponse } from "../models/models_0"; +import type { UpdateSubscriberRequest, UpdateSubscriberResponse } from "../models/models_0"; import { UpdateSubscriber } from "../schemas/schemas_0"; /** diff --git a/clients/client-budgets/src/endpoint/EndpointParameters.ts b/clients/client-budgets/src/endpoint/EndpointParameters.ts index b1c3bce4d86fe..c122d550050af 100644 --- a/clients/client-budgets/src/endpoint/EndpointParameters.ts +++ b/clients/client-budgets/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-budgets/src/endpoint/endpointResolver.ts b/clients/client-budgets/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-budgets/src/endpoint/endpointResolver.ts +++ b/clients/client-budgets/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-budgets/src/extensionConfiguration.ts b/clients/client-budgets/src/extensionConfiguration.ts index 4037c256ce234..66dec200c463e 100644 --- a/clients/client-budgets/src/extensionConfiguration.ts +++ b/clients/client-budgets/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-budgets/src/models/BudgetsServiceException.ts b/clients/client-budgets/src/models/BudgetsServiceException.ts index 8c225520894d4..70efd8b8771bf 100644 --- a/clients/client-budgets/src/models/BudgetsServiceException.ts +++ b/clients/client-budgets/src/models/BudgetsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-budgets/src/models/errors.ts b/clients/client-budgets/src/models/errors.ts index 9a39908c318c3..2eff1cbf9d5d9 100644 --- a/clients/client-budgets/src/models/errors.ts +++ b/clients/client-budgets/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { BudgetsServiceException as __BaseException } from "./BudgetsServiceException"; diff --git a/clients/client-budgets/src/pagination/DescribeBudgetActionHistoriesPaginator.ts b/clients/client-budgets/src/pagination/DescribeBudgetActionHistoriesPaginator.ts index f0f7752a9d0b3..8f44ed98f13e5 100644 --- a/clients/client-budgets/src/pagination/DescribeBudgetActionHistoriesPaginator.ts +++ b/clients/client-budgets/src/pagination/DescribeBudgetActionHistoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BudgetsClient } from "../BudgetsClient"; import { diff --git a/clients/client-budgets/src/pagination/DescribeBudgetActionsForAccountPaginator.ts b/clients/client-budgets/src/pagination/DescribeBudgetActionsForAccountPaginator.ts index 983971a420599..0fd4f78a8ebbf 100644 --- a/clients/client-budgets/src/pagination/DescribeBudgetActionsForAccountPaginator.ts +++ b/clients/client-budgets/src/pagination/DescribeBudgetActionsForAccountPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BudgetsClient } from "../BudgetsClient"; import { diff --git a/clients/client-budgets/src/pagination/DescribeBudgetActionsForBudgetPaginator.ts b/clients/client-budgets/src/pagination/DescribeBudgetActionsForBudgetPaginator.ts index dd51f5ebb0de7..7682f27c77fe9 100644 --- a/clients/client-budgets/src/pagination/DescribeBudgetActionsForBudgetPaginator.ts +++ b/clients/client-budgets/src/pagination/DescribeBudgetActionsForBudgetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BudgetsClient } from "../BudgetsClient"; import { diff --git a/clients/client-budgets/src/pagination/DescribeBudgetNotificationsForAccountPaginator.ts b/clients/client-budgets/src/pagination/DescribeBudgetNotificationsForAccountPaginator.ts index 6d8e316c02eb4..7782a63390e82 100644 --- a/clients/client-budgets/src/pagination/DescribeBudgetNotificationsForAccountPaginator.ts +++ b/clients/client-budgets/src/pagination/DescribeBudgetNotificationsForAccountPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BudgetsClient } from "../BudgetsClient"; import { diff --git a/clients/client-budgets/src/pagination/DescribeBudgetPerformanceHistoryPaginator.ts b/clients/client-budgets/src/pagination/DescribeBudgetPerformanceHistoryPaginator.ts index a433d60bc89aa..4d39306048bb1 100644 --- a/clients/client-budgets/src/pagination/DescribeBudgetPerformanceHistoryPaginator.ts +++ b/clients/client-budgets/src/pagination/DescribeBudgetPerformanceHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BudgetsClient } from "../BudgetsClient"; import { diff --git a/clients/client-budgets/src/pagination/DescribeBudgetsPaginator.ts b/clients/client-budgets/src/pagination/DescribeBudgetsPaginator.ts index 2191c7a3a676b..86d9adf6ea542 100644 --- a/clients/client-budgets/src/pagination/DescribeBudgetsPaginator.ts +++ b/clients/client-budgets/src/pagination/DescribeBudgetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BudgetsClient } from "../BudgetsClient"; import { diff --git a/clients/client-budgets/src/pagination/DescribeNotificationsForBudgetPaginator.ts b/clients/client-budgets/src/pagination/DescribeNotificationsForBudgetPaginator.ts index 57472b6f5d6ec..0226c1572a049 100644 --- a/clients/client-budgets/src/pagination/DescribeNotificationsForBudgetPaginator.ts +++ b/clients/client-budgets/src/pagination/DescribeNotificationsForBudgetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BudgetsClient } from "../BudgetsClient"; import { diff --git a/clients/client-budgets/src/pagination/DescribeSubscribersForNotificationPaginator.ts b/clients/client-budgets/src/pagination/DescribeSubscribersForNotificationPaginator.ts index 596fb47df530c..da9a6fc6134b4 100644 --- a/clients/client-budgets/src/pagination/DescribeSubscribersForNotificationPaginator.ts +++ b/clients/client-budgets/src/pagination/DescribeSubscribersForNotificationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BudgetsClient } from "../BudgetsClient"; import { diff --git a/clients/client-budgets/src/pagination/Interfaces.ts b/clients/client-budgets/src/pagination/Interfaces.ts index e044e010cfd18..5362debefd79a 100644 --- a/clients/client-budgets/src/pagination/Interfaces.ts +++ b/clients/client-budgets/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { BudgetsClient } from "../BudgetsClient"; diff --git a/clients/client-budgets/src/runtimeConfig.browser.ts b/clients/client-budgets/src/runtimeConfig.browser.ts index 0c1fe26a15cf5..24894043f62c3 100644 --- a/clients/client-budgets/src/runtimeConfig.browser.ts +++ b/clients/client-budgets/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BudgetsClientConfig } from "./BudgetsClient"; + +import type { BudgetsClientConfig } from "./BudgetsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-budgets/src/runtimeConfig.native.ts b/clients/client-budgets/src/runtimeConfig.native.ts index bef4a6eb984f9..3f83239eb170b 100644 --- a/clients/client-budgets/src/runtimeConfig.native.ts +++ b/clients/client-budgets/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { BudgetsClientConfig } from "./BudgetsClient"; +import type { BudgetsClientConfig } from "./BudgetsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-budgets/src/runtimeConfig.shared.ts b/clients/client-budgets/src/runtimeConfig.shared.ts index 42aa5a680b49d..e65312f9ed52c 100644 --- a/clients/client-budgets/src/runtimeConfig.shared.ts +++ b/clients/client-budgets/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultBudgetsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { BudgetsClientConfig } from "./BudgetsClient"; +import type { BudgetsClientConfig } from "./BudgetsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-budgets/src/runtimeConfig.ts b/clients/client-budgets/src/runtimeConfig.ts index 4e1787d848862..4416b5c00bc6d 100644 --- a/clients/client-budgets/src/runtimeConfig.ts +++ b/clients/client-budgets/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { BudgetsClientConfig } from "./BudgetsClient"; + +import type { BudgetsClientConfig } from "./BudgetsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-budgets/src/runtimeExtensions.ts b/clients/client-budgets/src/runtimeExtensions.ts index a4bbbd2bddf6f..31b45bfc98b50 100644 --- a/clients/client-budgets/src/runtimeExtensions.ts +++ b/clients/client-budgets/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { BudgetsExtensionConfiguration } from "./extensionConfiguration"; +import type { BudgetsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-budgets/src/schemas/schemas_0.ts b/clients/client-budgets/src/schemas/schemas_0.ts index 18c8d5e404553..3bed99dd52ece 100644 --- a/clients/client-budgets/src/schemas/schemas_0.ts +++ b/clients/client-budgets/src/schemas/schemas_0.ts @@ -221,7 +221,7 @@ const n0 = "com.amazonaws.budgets"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-chatbot/package.json b/clients/client-chatbot/package.json index 36e5763a601de..93fc6243431b9 100644 --- a/clients/client-chatbot/package.json +++ b/clients/client-chatbot/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-chatbot/src/Chatbot.ts b/clients/client-chatbot/src/Chatbot.ts index 7ed3af48d4a33..97f803e1f87da 100644 --- a/clients/client-chatbot/src/Chatbot.ts +++ b/clients/client-chatbot/src/Chatbot.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ChatbotClient, ChatbotClientConfig } from "./ChatbotClient"; +import { ChatbotClient } from "./ChatbotClient"; import { AssociateToConfigurationCommand, AssociateToConfigurationCommandInput, diff --git a/clients/client-chatbot/src/ChatbotClient.ts b/clients/client-chatbot/src/ChatbotClient.ts index 964a846f64365..65e25e79d7823 100644 --- a/clients/client-chatbot/src/ChatbotClient.ts +++ b/clients/client-chatbot/src/ChatbotClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultChatbotHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -176,7 +185,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-chatbot/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-chatbot/src/auth/httpAuthExtensionConfiguration.ts index 56ec66062909d..adecc296df77a 100644 --- a/clients/client-chatbot/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-chatbot/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ChatbotHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ChatbotHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-chatbot/src/auth/httpAuthSchemeProvider.ts b/clients/client-chatbot/src/auth/httpAuthSchemeProvider.ts index 21b1a7ab741f4..eefbb2ea6c2b8 100644 --- a/clients/client-chatbot/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-chatbot/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ChatbotClientConfig, ChatbotClientResolvedConfig } from "../ChatbotClient"; +import { type ChatbotClientResolvedConfig, ChatbotClientConfig } from "../ChatbotClient"; /** * @internal diff --git a/clients/client-chatbot/src/commands/AssociateToConfigurationCommand.ts b/clients/client-chatbot/src/commands/AssociateToConfigurationCommand.ts index d29fa83604c2b..776454818d34e 100644 --- a/clients/client-chatbot/src/commands/AssociateToConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/AssociateToConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateToConfigurationRequest, AssociateToConfigurationResult } from "../models/models_0"; +import type { AssociateToConfigurationRequest, AssociateToConfigurationResult } from "../models/models_0"; import { AssociateToConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/CreateChimeWebhookConfigurationCommand.ts b/clients/client-chatbot/src/commands/CreateChimeWebhookConfigurationCommand.ts index f3d153aa7a09d..0e5260f187e17 100644 --- a/clients/client-chatbot/src/commands/CreateChimeWebhookConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/CreateChimeWebhookConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChimeWebhookConfigurationRequest, CreateChimeWebhookConfigurationResult } from "../models/models_0"; +import type { CreateChimeWebhookConfigurationRequest, CreateChimeWebhookConfigurationResult } from "../models/models_0"; import { CreateChimeWebhookConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/CreateCustomActionCommand.ts b/clients/client-chatbot/src/commands/CreateCustomActionCommand.ts index fd4f54ea37e87..6ff20dee735e0 100644 --- a/clients/client-chatbot/src/commands/CreateCustomActionCommand.ts +++ b/clients/client-chatbot/src/commands/CreateCustomActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomActionRequest, CreateCustomActionResult } from "../models/models_0"; +import type { CreateCustomActionRequest, CreateCustomActionResult } from "../models/models_0"; import { CreateCustomAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/CreateMicrosoftTeamsChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/CreateMicrosoftTeamsChannelConfigurationCommand.ts index 4f96ef13601b3..2e8af16d569fa 100644 --- a/clients/client-chatbot/src/commands/CreateMicrosoftTeamsChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/CreateMicrosoftTeamsChannelConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTeamsChannelConfigurationRequest, CreateTeamsChannelConfigurationResult } from "../models/models_0"; +import type { CreateTeamsChannelConfigurationRequest, CreateTeamsChannelConfigurationResult } from "../models/models_0"; import { CreateMicrosoftTeamsChannelConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/CreateSlackChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/CreateSlackChannelConfigurationCommand.ts index 16907ce461bff..051bdbbb5700b 100644 --- a/clients/client-chatbot/src/commands/CreateSlackChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/CreateSlackChannelConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSlackChannelConfigurationRequest, CreateSlackChannelConfigurationResult } from "../models/models_0"; +import type { CreateSlackChannelConfigurationRequest, CreateSlackChannelConfigurationResult } from "../models/models_0"; import { CreateSlackChannelConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DeleteChimeWebhookConfigurationCommand.ts b/clients/client-chatbot/src/commands/DeleteChimeWebhookConfigurationCommand.ts index dc78b755bc368..c86c3af9053f9 100644 --- a/clients/client-chatbot/src/commands/DeleteChimeWebhookConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteChimeWebhookConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChimeWebhookConfigurationRequest, DeleteChimeWebhookConfigurationResult } from "../models/models_0"; +import type { DeleteChimeWebhookConfigurationRequest, DeleteChimeWebhookConfigurationResult } from "../models/models_0"; import { DeleteChimeWebhookConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DeleteCustomActionCommand.ts b/clients/client-chatbot/src/commands/DeleteCustomActionCommand.ts index a23981875e7ca..a2deefa4bca56 100644 --- a/clients/client-chatbot/src/commands/DeleteCustomActionCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteCustomActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomActionRequest, DeleteCustomActionResult } from "../models/models_0"; +import type { DeleteCustomActionRequest, DeleteCustomActionResult } from "../models/models_0"; import { DeleteCustomAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.ts index e8932087acf6d..295c3ee1f6143 100644 --- a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsChannelConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTeamsChannelConfigurationRequest, DeleteTeamsChannelConfigurationResult } from "../models/models_0"; +import type { DeleteTeamsChannelConfigurationRequest, DeleteTeamsChannelConfigurationResult } from "../models/models_0"; import { DeleteMicrosoftTeamsChannelConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.ts b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.ts index e4e8a4a06bed8..904e4fd22630f 100644 --- a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsConfiguredTeamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTeamsConfiguredTeamRequest, DeleteTeamsConfiguredTeamResult } from "../models/models_0"; +import type { DeleteTeamsConfiguredTeamRequest, DeleteTeamsConfiguredTeamResult } from "../models/models_0"; import { DeleteMicrosoftTeamsConfiguredTeam } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsUserIdentityCommand.ts b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsUserIdentityCommand.ts index 1dce52e905f98..f62f799398803 100644 --- a/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsUserIdentityCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteMicrosoftTeamsUserIdentityCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMicrosoftTeamsUserIdentityRequest, DeleteMicrosoftTeamsUserIdentityResult } from "../models/models_0"; +import type { + DeleteMicrosoftTeamsUserIdentityRequest, + DeleteMicrosoftTeamsUserIdentityResult, +} from "../models/models_0"; import { DeleteMicrosoftTeamsUserIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DeleteSlackChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/DeleteSlackChannelConfigurationCommand.ts index e4da508ec4e48..90431970cd686 100644 --- a/clients/client-chatbot/src/commands/DeleteSlackChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteSlackChannelConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSlackChannelConfigurationRequest, DeleteSlackChannelConfigurationResult } from "../models/models_0"; +import type { DeleteSlackChannelConfigurationRequest, DeleteSlackChannelConfigurationResult } from "../models/models_0"; import { DeleteSlackChannelConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DeleteSlackUserIdentityCommand.ts b/clients/client-chatbot/src/commands/DeleteSlackUserIdentityCommand.ts index 2b70b731985d1..c550b9b001e51 100644 --- a/clients/client-chatbot/src/commands/DeleteSlackUserIdentityCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteSlackUserIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSlackUserIdentityRequest, DeleteSlackUserIdentityResult } from "../models/models_0"; +import type { DeleteSlackUserIdentityRequest, DeleteSlackUserIdentityResult } from "../models/models_0"; import { DeleteSlackUserIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DeleteSlackWorkspaceAuthorizationCommand.ts b/clients/client-chatbot/src/commands/DeleteSlackWorkspaceAuthorizationCommand.ts index 304bbab764797..8bc9a2240aabd 100644 --- a/clients/client-chatbot/src/commands/DeleteSlackWorkspaceAuthorizationCommand.ts +++ b/clients/client-chatbot/src/commands/DeleteSlackWorkspaceAuthorizationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSlackWorkspaceAuthorizationRequest, DeleteSlackWorkspaceAuthorizationResult } from "../models/models_0"; +import type { + DeleteSlackWorkspaceAuthorizationRequest, + DeleteSlackWorkspaceAuthorizationResult, +} from "../models/models_0"; import { DeleteSlackWorkspaceAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DescribeChimeWebhookConfigurationsCommand.ts b/clients/client-chatbot/src/commands/DescribeChimeWebhookConfigurationsCommand.ts index f9a1b001ae29b..6dda7b2ca9f7b 100644 --- a/clients/client-chatbot/src/commands/DescribeChimeWebhookConfigurationsCommand.ts +++ b/clients/client-chatbot/src/commands/DescribeChimeWebhookConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeChimeWebhookConfigurationsRequest, DescribeChimeWebhookConfigurationsResult, } from "../models/models_0"; diff --git a/clients/client-chatbot/src/commands/DescribeSlackChannelConfigurationsCommand.ts b/clients/client-chatbot/src/commands/DescribeSlackChannelConfigurationsCommand.ts index 2df2010360d7b..20e9ccb0b03b5 100644 --- a/clients/client-chatbot/src/commands/DescribeSlackChannelConfigurationsCommand.ts +++ b/clients/client-chatbot/src/commands/DescribeSlackChannelConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeSlackChannelConfigurationsRequest, DescribeSlackChannelConfigurationsResult, } from "../models/models_0"; diff --git a/clients/client-chatbot/src/commands/DescribeSlackUserIdentitiesCommand.ts b/clients/client-chatbot/src/commands/DescribeSlackUserIdentitiesCommand.ts index 8211db002465f..489a0b3474228 100644 --- a/clients/client-chatbot/src/commands/DescribeSlackUserIdentitiesCommand.ts +++ b/clients/client-chatbot/src/commands/DescribeSlackUserIdentitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSlackUserIdentitiesRequest, DescribeSlackUserIdentitiesResult } from "../models/models_0"; +import type { DescribeSlackUserIdentitiesRequest, DescribeSlackUserIdentitiesResult } from "../models/models_0"; import { DescribeSlackUserIdentities } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DescribeSlackWorkspacesCommand.ts b/clients/client-chatbot/src/commands/DescribeSlackWorkspacesCommand.ts index 787f7da307222..b3c4b917316c0 100644 --- a/clients/client-chatbot/src/commands/DescribeSlackWorkspacesCommand.ts +++ b/clients/client-chatbot/src/commands/DescribeSlackWorkspacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSlackWorkspacesRequest, DescribeSlackWorkspacesResult } from "../models/models_0"; +import type { DescribeSlackWorkspacesRequest, DescribeSlackWorkspacesResult } from "../models/models_0"; import { DescribeSlackWorkspaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/DisassociateFromConfigurationCommand.ts b/clients/client-chatbot/src/commands/DisassociateFromConfigurationCommand.ts index f5a074b6b1ba7..58bef90d4c6f2 100644 --- a/clients/client-chatbot/src/commands/DisassociateFromConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/DisassociateFromConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateFromConfigurationRequest, DisassociateFromConfigurationResult } from "../models/models_0"; +import type { DisassociateFromConfigurationRequest, DisassociateFromConfigurationResult } from "../models/models_0"; import { DisassociateFromConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/GetAccountPreferencesCommand.ts b/clients/client-chatbot/src/commands/GetAccountPreferencesCommand.ts index b5258e2658482..c65ed92d9f2fe 100644 --- a/clients/client-chatbot/src/commands/GetAccountPreferencesCommand.ts +++ b/clients/client-chatbot/src/commands/GetAccountPreferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountPreferencesRequest, GetAccountPreferencesResult } from "../models/models_0"; +import type { GetAccountPreferencesRequest, GetAccountPreferencesResult } from "../models/models_0"; import { GetAccountPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/GetCustomActionCommand.ts b/clients/client-chatbot/src/commands/GetCustomActionCommand.ts index 3cff496c1c135..f6d82cf42a9dd 100644 --- a/clients/client-chatbot/src/commands/GetCustomActionCommand.ts +++ b/clients/client-chatbot/src/commands/GetCustomActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCustomActionRequest, GetCustomActionResult } from "../models/models_0"; +import type { GetCustomActionRequest, GetCustomActionResult } from "../models/models_0"; import { GetCustomAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/GetMicrosoftTeamsChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/GetMicrosoftTeamsChannelConfigurationCommand.ts index 6eaa26d50fe06..22968d99cb484 100644 --- a/clients/client-chatbot/src/commands/GetMicrosoftTeamsChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/GetMicrosoftTeamsChannelConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTeamsChannelConfigurationRequest, GetTeamsChannelConfigurationResult } from "../models/models_0"; +import type { GetTeamsChannelConfigurationRequest, GetTeamsChannelConfigurationResult } from "../models/models_0"; import { GetMicrosoftTeamsChannelConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/ListAssociationsCommand.ts b/clients/client-chatbot/src/commands/ListAssociationsCommand.ts index c37771fa215ba..1618f39302275 100644 --- a/clients/client-chatbot/src/commands/ListAssociationsCommand.ts +++ b/clients/client-chatbot/src/commands/ListAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociationsRequest, ListAssociationsResult } from "../models/models_0"; +import type { ListAssociationsRequest, ListAssociationsResult } from "../models/models_0"; import { ListAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/ListCustomActionsCommand.ts b/clients/client-chatbot/src/commands/ListCustomActionsCommand.ts index 1a15bd6f91471..26c9f6687c45b 100644 --- a/clients/client-chatbot/src/commands/ListCustomActionsCommand.ts +++ b/clients/client-chatbot/src/commands/ListCustomActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCustomActionsRequest, ListCustomActionsResult } from "../models/models_0"; +import type { ListCustomActionsRequest, ListCustomActionsResult } from "../models/models_0"; import { ListCustomActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/ListMicrosoftTeamsChannelConfigurationsCommand.ts b/clients/client-chatbot/src/commands/ListMicrosoftTeamsChannelConfigurationsCommand.ts index 62c1add5af5b3..fb65d5b418989 100644 --- a/clients/client-chatbot/src/commands/ListMicrosoftTeamsChannelConfigurationsCommand.ts +++ b/clients/client-chatbot/src/commands/ListMicrosoftTeamsChannelConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTeamsChannelConfigurationsRequest, ListTeamsChannelConfigurationsResult } from "../models/models_0"; +import type { ListTeamsChannelConfigurationsRequest, ListTeamsChannelConfigurationsResult } from "../models/models_0"; import { ListMicrosoftTeamsChannelConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/ListMicrosoftTeamsConfiguredTeamsCommand.ts b/clients/client-chatbot/src/commands/ListMicrosoftTeamsConfiguredTeamsCommand.ts index fcfc55c9cb9f0..5c9b809b8cc9d 100644 --- a/clients/client-chatbot/src/commands/ListMicrosoftTeamsConfiguredTeamsCommand.ts +++ b/clients/client-chatbot/src/commands/ListMicrosoftTeamsConfiguredTeamsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMicrosoftTeamsConfiguredTeamsRequest, ListMicrosoftTeamsConfiguredTeamsResult } from "../models/models_0"; +import type { + ListMicrosoftTeamsConfiguredTeamsRequest, + ListMicrosoftTeamsConfiguredTeamsResult, +} from "../models/models_0"; import { ListMicrosoftTeamsConfiguredTeams } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/ListMicrosoftTeamsUserIdentitiesCommand.ts b/clients/client-chatbot/src/commands/ListMicrosoftTeamsUserIdentitiesCommand.ts index 1cf32a938e2b6..3cadffd4ca389 100644 --- a/clients/client-chatbot/src/commands/ListMicrosoftTeamsUserIdentitiesCommand.ts +++ b/clients/client-chatbot/src/commands/ListMicrosoftTeamsUserIdentitiesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMicrosoftTeamsUserIdentitiesRequest, ListMicrosoftTeamsUserIdentitiesResult } from "../models/models_0"; +import type { + ListMicrosoftTeamsUserIdentitiesRequest, + ListMicrosoftTeamsUserIdentitiesResult, +} from "../models/models_0"; import { ListMicrosoftTeamsUserIdentities } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/ListTagsForResourceCommand.ts b/clients/client-chatbot/src/commands/ListTagsForResourceCommand.ts index 9de239c5c7641..2ae5d6df7a561 100644 --- a/clients/client-chatbot/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chatbot/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/TagResourceCommand.ts b/clients/client-chatbot/src/commands/TagResourceCommand.ts index 4479e8bceeca8..1652af76fee1b 100644 --- a/clients/client-chatbot/src/commands/TagResourceCommand.ts +++ b/clients/client-chatbot/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/UntagResourceCommand.ts b/clients/client-chatbot/src/commands/UntagResourceCommand.ts index cb7331e86e019..fe7b2d8d28cc1 100644 --- a/clients/client-chatbot/src/commands/UntagResourceCommand.ts +++ b/clients/client-chatbot/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/UpdateAccountPreferencesCommand.ts b/clients/client-chatbot/src/commands/UpdateAccountPreferencesCommand.ts index e25bced650192..c8ea0bc678089 100644 --- a/clients/client-chatbot/src/commands/UpdateAccountPreferencesCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateAccountPreferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountPreferencesRequest, UpdateAccountPreferencesResult } from "../models/models_0"; +import type { UpdateAccountPreferencesRequest, UpdateAccountPreferencesResult } from "../models/models_0"; import { UpdateAccountPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/UpdateChimeWebhookConfigurationCommand.ts b/clients/client-chatbot/src/commands/UpdateChimeWebhookConfigurationCommand.ts index 5903212db5b65..aac20d562b61f 100644 --- a/clients/client-chatbot/src/commands/UpdateChimeWebhookConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateChimeWebhookConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChimeWebhookConfigurationRequest, UpdateChimeWebhookConfigurationResult } from "../models/models_0"; +import type { UpdateChimeWebhookConfigurationRequest, UpdateChimeWebhookConfigurationResult } from "../models/models_0"; import { UpdateChimeWebhookConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/UpdateCustomActionCommand.ts b/clients/client-chatbot/src/commands/UpdateCustomActionCommand.ts index 9997f16e4d259..ede77f851f2da 100644 --- a/clients/client-chatbot/src/commands/UpdateCustomActionCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateCustomActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCustomActionRequest, UpdateCustomActionResult } from "../models/models_0"; +import type { UpdateCustomActionRequest, UpdateCustomActionResult } from "../models/models_0"; import { UpdateCustomAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.ts index 9d0bb7e3b247a..ef10745c8449b 100644 --- a/clients/client-chatbot/src/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateMicrosoftTeamsChannelConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTeamsChannelConfigurationRequest, UpdateTeamsChannelConfigurationResult } from "../models/models_0"; +import type { UpdateTeamsChannelConfigurationRequest, UpdateTeamsChannelConfigurationResult } from "../models/models_0"; import { UpdateMicrosoftTeamsChannelConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/commands/UpdateSlackChannelConfigurationCommand.ts b/clients/client-chatbot/src/commands/UpdateSlackChannelConfigurationCommand.ts index 30f6c737fddf0..4c07989df7ac0 100644 --- a/clients/client-chatbot/src/commands/UpdateSlackChannelConfigurationCommand.ts +++ b/clients/client-chatbot/src/commands/UpdateSlackChannelConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; +import type { ChatbotClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChatbotClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSlackChannelConfigurationRequest, UpdateSlackChannelConfigurationResult } from "../models/models_0"; +import type { UpdateSlackChannelConfigurationRequest, UpdateSlackChannelConfigurationResult } from "../models/models_0"; import { UpdateSlackChannelConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chatbot/src/endpoint/EndpointParameters.ts b/clients/client-chatbot/src/endpoint/EndpointParameters.ts index b3660f1f7fa10..68a5ac8b116b7 100644 --- a/clients/client-chatbot/src/endpoint/EndpointParameters.ts +++ b/clients/client-chatbot/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-chatbot/src/endpoint/endpointResolver.ts b/clients/client-chatbot/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-chatbot/src/endpoint/endpointResolver.ts +++ b/clients/client-chatbot/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-chatbot/src/extensionConfiguration.ts b/clients/client-chatbot/src/extensionConfiguration.ts index c616a18544779..1d13dbafce89d 100644 --- a/clients/client-chatbot/src/extensionConfiguration.ts +++ b/clients/client-chatbot/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-chatbot/src/models/ChatbotServiceException.ts b/clients/client-chatbot/src/models/ChatbotServiceException.ts index 054fe0d582e8b..4faa7eed10ecc 100644 --- a/clients/client-chatbot/src/models/ChatbotServiceException.ts +++ b/clients/client-chatbot/src/models/ChatbotServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-chatbot/src/models/errors.ts b/clients/client-chatbot/src/models/errors.ts index 956b09185ca84..6c8e097812746 100644 --- a/clients/client-chatbot/src/models/errors.ts +++ b/clients/client-chatbot/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ChatbotServiceException as __BaseException } from "./ChatbotServiceException"; diff --git a/clients/client-chatbot/src/pagination/DescribeChimeWebhookConfigurationsPaginator.ts b/clients/client-chatbot/src/pagination/DescribeChimeWebhookConfigurationsPaginator.ts index f16e912567f1a..6f12e8b3a9831 100644 --- a/clients/client-chatbot/src/pagination/DescribeChimeWebhookConfigurationsPaginator.ts +++ b/clients/client-chatbot/src/pagination/DescribeChimeWebhookConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; import { diff --git a/clients/client-chatbot/src/pagination/DescribeSlackChannelConfigurationsPaginator.ts b/clients/client-chatbot/src/pagination/DescribeSlackChannelConfigurationsPaginator.ts index 8e9539c8d7c3a..bc6400034e4b6 100644 --- a/clients/client-chatbot/src/pagination/DescribeSlackChannelConfigurationsPaginator.ts +++ b/clients/client-chatbot/src/pagination/DescribeSlackChannelConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; import { diff --git a/clients/client-chatbot/src/pagination/DescribeSlackUserIdentitiesPaginator.ts b/clients/client-chatbot/src/pagination/DescribeSlackUserIdentitiesPaginator.ts index 47ab72102ca9a..ac628b1c7033b 100644 --- a/clients/client-chatbot/src/pagination/DescribeSlackUserIdentitiesPaginator.ts +++ b/clients/client-chatbot/src/pagination/DescribeSlackUserIdentitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; import { diff --git a/clients/client-chatbot/src/pagination/DescribeSlackWorkspacesPaginator.ts b/clients/client-chatbot/src/pagination/DescribeSlackWorkspacesPaginator.ts index d9f00788c6f1f..d24da268c6c9c 100644 --- a/clients/client-chatbot/src/pagination/DescribeSlackWorkspacesPaginator.ts +++ b/clients/client-chatbot/src/pagination/DescribeSlackWorkspacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; import { diff --git a/clients/client-chatbot/src/pagination/Interfaces.ts b/clients/client-chatbot/src/pagination/Interfaces.ts index 18b8622b53201..2bf2b8808c190 100644 --- a/clients/client-chatbot/src/pagination/Interfaces.ts +++ b/clients/client-chatbot/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; diff --git a/clients/client-chatbot/src/pagination/ListAssociationsPaginator.ts b/clients/client-chatbot/src/pagination/ListAssociationsPaginator.ts index 040602b81e23a..f337aecd6ae17 100644 --- a/clients/client-chatbot/src/pagination/ListAssociationsPaginator.ts +++ b/clients/client-chatbot/src/pagination/ListAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; import { diff --git a/clients/client-chatbot/src/pagination/ListCustomActionsPaginator.ts b/clients/client-chatbot/src/pagination/ListCustomActionsPaginator.ts index 3d824e3faa2a1..4208927799221 100644 --- a/clients/client-chatbot/src/pagination/ListCustomActionsPaginator.ts +++ b/clients/client-chatbot/src/pagination/ListCustomActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; import { diff --git a/clients/client-chatbot/src/pagination/ListMicrosoftTeamsChannelConfigurationsPaginator.ts b/clients/client-chatbot/src/pagination/ListMicrosoftTeamsChannelConfigurationsPaginator.ts index 2b211d17e8560..c9f5a4e91a5aa 100644 --- a/clients/client-chatbot/src/pagination/ListMicrosoftTeamsChannelConfigurationsPaginator.ts +++ b/clients/client-chatbot/src/pagination/ListMicrosoftTeamsChannelConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; import { diff --git a/clients/client-chatbot/src/pagination/ListMicrosoftTeamsConfiguredTeamsPaginator.ts b/clients/client-chatbot/src/pagination/ListMicrosoftTeamsConfiguredTeamsPaginator.ts index b66e2f5260839..dc0eb1c8d68cd 100644 --- a/clients/client-chatbot/src/pagination/ListMicrosoftTeamsConfiguredTeamsPaginator.ts +++ b/clients/client-chatbot/src/pagination/ListMicrosoftTeamsConfiguredTeamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; import { diff --git a/clients/client-chatbot/src/pagination/ListMicrosoftTeamsUserIdentitiesPaginator.ts b/clients/client-chatbot/src/pagination/ListMicrosoftTeamsUserIdentitiesPaginator.ts index 30b68757d4f52..72078a2dfd0cc 100644 --- a/clients/client-chatbot/src/pagination/ListMicrosoftTeamsUserIdentitiesPaginator.ts +++ b/clients/client-chatbot/src/pagination/ListMicrosoftTeamsUserIdentitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChatbotClient } from "../ChatbotClient"; import { diff --git a/clients/client-chatbot/src/runtimeConfig.browser.ts b/clients/client-chatbot/src/runtimeConfig.browser.ts index 7b65d35959a5a..226915b7029ce 100644 --- a/clients/client-chatbot/src/runtimeConfig.browser.ts +++ b/clients/client-chatbot/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChatbotClientConfig } from "./ChatbotClient"; + +import type { ChatbotClientConfig } from "./ChatbotClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-chatbot/src/runtimeConfig.native.ts b/clients/client-chatbot/src/runtimeConfig.native.ts index aa6510392d9e8..17821473a3522 100644 --- a/clients/client-chatbot/src/runtimeConfig.native.ts +++ b/clients/client-chatbot/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ChatbotClientConfig } from "./ChatbotClient"; +import type { ChatbotClientConfig } from "./ChatbotClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-chatbot/src/runtimeConfig.shared.ts b/clients/client-chatbot/src/runtimeConfig.shared.ts index 141a52de440fe..4606b7546607e 100644 --- a/clients/client-chatbot/src/runtimeConfig.shared.ts +++ b/clients/client-chatbot/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultChatbotHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ChatbotClientConfig } from "./ChatbotClient"; +import type { ChatbotClientConfig } from "./ChatbotClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-chatbot/src/runtimeConfig.ts b/clients/client-chatbot/src/runtimeConfig.ts index 8cdb788602e28..defb0f009f6ca 100644 --- a/clients/client-chatbot/src/runtimeConfig.ts +++ b/clients/client-chatbot/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChatbotClientConfig } from "./ChatbotClient"; + +import type { ChatbotClientConfig } from "./ChatbotClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-chatbot/src/runtimeExtensions.ts b/clients/client-chatbot/src/runtimeExtensions.ts index 9567d26a83b27..120b711f5c384 100644 --- a/clients/client-chatbot/src/runtimeExtensions.ts +++ b/clients/client-chatbot/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ChatbotExtensionConfiguration } from "./extensionConfiguration"; +import type { ChatbotExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-chatbot/src/schemas/schemas_0.ts b/clients/client-chatbot/src/schemas/schemas_0.ts index 78ef8f03a5c41..c7ece6d537c65 100644 --- a/clients/client-chatbot/src/schemas/schemas_0.ts +++ b/clients/client-chatbot/src/schemas/schemas_0.ts @@ -233,7 +233,7 @@ const n0 = "com.amazonaws.chatbot"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-chime-sdk-identity/package.json b/clients/client-chime-sdk-identity/package.json index ba819d20830ba..a3d11f235d474 100644 --- a/clients/client-chime-sdk-identity/package.json +++ b/clients/client-chime-sdk-identity/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-chime-sdk-identity/src/ChimeSDKIdentity.ts b/clients/client-chime-sdk-identity/src/ChimeSDKIdentity.ts index 5a693b342695a..3fb455db824ff 100644 --- a/clients/client-chime-sdk-identity/src/ChimeSDKIdentity.ts +++ b/clients/client-chime-sdk-identity/src/ChimeSDKIdentity.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ChimeSDKIdentityClient, ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient"; +import { ChimeSDKIdentityClient } from "./ChimeSDKIdentityClient"; import { CreateAppInstanceAdminCommand, CreateAppInstanceAdminCommandInput, diff --git a/clients/client-chime-sdk-identity/src/ChimeSDKIdentityClient.ts b/clients/client-chime-sdk-identity/src/ChimeSDKIdentityClient.ts index 0354bdd556911..830b5cc2f426d 100644 --- a/clients/client-chime-sdk-identity/src/ChimeSDKIdentityClient.ts +++ b/clients/client-chime-sdk-identity/src/ChimeSDKIdentityClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultChimeSDKIdentityHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -166,7 +175,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-chime-sdk-identity/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-chime-sdk-identity/src/auth/httpAuthExtensionConfiguration.ts index 0c0f7afc90e6c..95910cefcda07 100644 --- a/clients/client-chime-sdk-identity/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-chime-sdk-identity/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ChimeSDKIdentityHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ChimeSDKIdentityHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-chime-sdk-identity/src/auth/httpAuthSchemeProvider.ts b/clients/client-chime-sdk-identity/src/auth/httpAuthSchemeProvider.ts index dc3ff04b4d673..fe1529352ed56 100644 --- a/clients/client-chime-sdk-identity/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-chime-sdk-identity/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ChimeSDKIdentityClientConfig, ChimeSDKIdentityClientResolvedConfig } from "../ChimeSDKIdentityClient"; +import { type ChimeSDKIdentityClientResolvedConfig, ChimeSDKIdentityClientConfig } from "../ChimeSDKIdentityClient"; /** * @internal diff --git a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceAdminCommand.ts b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceAdminCommand.ts index 25549d98d1932..49e8199f6b783 100644 --- a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceAdminCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceAdminCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppInstanceAdminRequest, CreateAppInstanceAdminResponse } from "../models/models_0"; +import type { CreateAppInstanceAdminRequest, CreateAppInstanceAdminResponse } from "../models/models_0"; import { CreateAppInstanceAdmin } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceBotCommand.ts b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceBotCommand.ts index 27fb82a1b7bb2..c85e7afd9765d 100644 --- a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceBotCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceBotCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppInstanceBotRequest, CreateAppInstanceBotResponse } from "../models/models_0"; +import type { CreateAppInstanceBotRequest, CreateAppInstanceBotResponse } from "../models/models_0"; import { CreateAppInstanceBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceCommand.ts b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceCommand.ts index 2283b8ec9d7cb..e0f976a97def6 100644 --- a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppInstanceRequest, CreateAppInstanceResponse } from "../models/models_0"; +import type { CreateAppInstanceRequest, CreateAppInstanceResponse } from "../models/models_0"; import { CreateAppInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceUserCommand.ts b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceUserCommand.ts index 5dd017d5129a7..f839d8ea8741f 100644 --- a/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/CreateAppInstanceUserCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppInstanceUserRequest, CreateAppInstanceUserResponse } from "../models/models_0"; +import type { CreateAppInstanceUserRequest, CreateAppInstanceUserResponse } from "../models/models_0"; import { CreateAppInstanceUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceAdminCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceAdminCommand.ts index 4e3bf1ff8aaa3..2c99219e66699 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceAdminCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceAdminCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppInstanceAdminRequest } from "../models/models_0"; +import type { DeleteAppInstanceAdminRequest } from "../models/models_0"; import { DeleteAppInstanceAdmin } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceBotCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceBotCommand.ts index 43c8d7ac9be68..3e5aee280956f 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceBotCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceBotCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppInstanceBotRequest } from "../models/models_0"; +import type { DeleteAppInstanceBotRequest } from "../models/models_0"; import { DeleteAppInstanceBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceCommand.ts index adcf7dc15564d..9278a6ed5490c 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppInstanceRequest } from "../models/models_0"; +import type { DeleteAppInstanceRequest } from "../models/models_0"; import { DeleteAppInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceUserCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceUserCommand.ts index fc3e275f472d7..c6d3532fa0e57 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeleteAppInstanceUserCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppInstanceUserRequest } from "../models/models_0"; +import type { DeleteAppInstanceUserRequest } from "../models/models_0"; import { DeleteAppInstanceUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DeregisterAppInstanceUserEndpointCommand.ts b/clients/client-chime-sdk-identity/src/commands/DeregisterAppInstanceUserEndpointCommand.ts index 7caad8e7be307..aec90c65e8d35 100644 --- a/clients/client-chime-sdk-identity/src/commands/DeregisterAppInstanceUserEndpointCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DeregisterAppInstanceUserEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterAppInstanceUserEndpointRequest } from "../models/models_0"; +import type { DeregisterAppInstanceUserEndpointRequest } from "../models/models_0"; import { DeregisterAppInstanceUserEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceAdminCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceAdminCommand.ts index 251b28b97c445..6fdb1e3c98a57 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceAdminCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceAdminCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppInstanceAdminRequest, DescribeAppInstanceAdminResponse } from "../models/models_0"; +import type { DescribeAppInstanceAdminRequest, DescribeAppInstanceAdminResponse } from "../models/models_0"; import { DescribeAppInstanceAdmin } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceBotCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceBotCommand.ts index eb9dd4bd1a5c2..2fa28e0233ff8 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceBotCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceBotCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppInstanceBotRequest, DescribeAppInstanceBotResponse } from "../models/models_0"; +import type { DescribeAppInstanceBotRequest, DescribeAppInstanceBotResponse } from "../models/models_0"; import { DescribeAppInstanceBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceCommand.ts index 989e8dc60e805..946b41520f8ee 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppInstanceRequest, DescribeAppInstanceResponse } from "../models/models_0"; +import type { DescribeAppInstanceRequest, DescribeAppInstanceResponse } from "../models/models_0"; import { DescribeAppInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserCommand.ts index 88d5ea8396177..1156070273e3a 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppInstanceUserRequest, DescribeAppInstanceUserResponse } from "../models/models_0"; +import type { DescribeAppInstanceUserRequest, DescribeAppInstanceUserResponse } from "../models/models_0"; import { DescribeAppInstanceUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserEndpointCommand.ts b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserEndpointCommand.ts index 679c0f2221ddf..9b06127bcde7e 100644 --- a/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserEndpointCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/DescribeAppInstanceUserEndpointCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppInstanceUserEndpointRequest, DescribeAppInstanceUserEndpointResponse } from "../models/models_0"; +import type { + DescribeAppInstanceUserEndpointRequest, + DescribeAppInstanceUserEndpointResponse, +} from "../models/models_0"; import { DescribeAppInstanceUserEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/GetAppInstanceRetentionSettingsCommand.ts b/clients/client-chime-sdk-identity/src/commands/GetAppInstanceRetentionSettingsCommand.ts index 316166edc2113..5bd52b809c070 100644 --- a/clients/client-chime-sdk-identity/src/commands/GetAppInstanceRetentionSettingsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/GetAppInstanceRetentionSettingsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAppInstanceRetentionSettingsRequest, GetAppInstanceRetentionSettingsResponse } from "../models/models_0"; +import type { + GetAppInstanceRetentionSettingsRequest, + GetAppInstanceRetentionSettingsResponse, +} from "../models/models_0"; import { GetAppInstanceRetentionSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceAdminsCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceAdminsCommand.ts index 9d27aae5ccb7d..64f7697165185 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceAdminsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceAdminsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppInstanceAdminsRequest, ListAppInstanceAdminsResponse } from "../models/models_0"; +import type { ListAppInstanceAdminsRequest, ListAppInstanceAdminsResponse } from "../models/models_0"; import { ListAppInstanceAdmins } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceBotsCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceBotsCommand.ts index 2141bc24f8e3b..da04b2a9cfed3 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceBotsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceBotsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppInstanceBotsRequest, ListAppInstanceBotsResponse } from "../models/models_0"; +import type { ListAppInstanceBotsRequest, ListAppInstanceBotsResponse } from "../models/models_0"; import { ListAppInstanceBots } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUserEndpointsCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUserEndpointsCommand.ts index babab9e1cc349..530a677c72204 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUserEndpointsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUserEndpointsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppInstanceUserEndpointsRequest, ListAppInstanceUserEndpointsResponse } from "../models/models_0"; +import type { ListAppInstanceUserEndpointsRequest, ListAppInstanceUserEndpointsResponse } from "../models/models_0"; import { ListAppInstanceUserEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUsersCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUsersCommand.ts index 968bf2907fc45..54813ec49e274 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUsersCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstanceUsersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppInstanceUsersRequest, ListAppInstanceUsersResponse } from "../models/models_0"; +import type { ListAppInstanceUsersRequest, ListAppInstanceUsersResponse } from "../models/models_0"; import { ListAppInstanceUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/ListAppInstancesCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListAppInstancesCommand.ts index 9cb43b286e040..aa2489265184c 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListAppInstancesCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListAppInstancesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppInstancesRequest, ListAppInstancesResponse } from "../models/models_0"; +import type { ListAppInstancesRequest, ListAppInstancesResponse } from "../models/models_0"; import { ListAppInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-identity/src/commands/ListTagsForResourceCommand.ts index 54f01b99c6128..eed0b2a6f9394 100644 --- a/clients/client-chime-sdk-identity/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/PutAppInstanceRetentionSettingsCommand.ts b/clients/client-chime-sdk-identity/src/commands/PutAppInstanceRetentionSettingsCommand.ts index 374b801f48277..ed65cf3c1a58d 100644 --- a/clients/client-chime-sdk-identity/src/commands/PutAppInstanceRetentionSettingsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/PutAppInstanceRetentionSettingsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAppInstanceRetentionSettingsRequest, PutAppInstanceRetentionSettingsResponse } from "../models/models_0"; +import type { + PutAppInstanceRetentionSettingsRequest, + PutAppInstanceRetentionSettingsResponse, +} from "../models/models_0"; import { PutAppInstanceRetentionSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/PutAppInstanceUserExpirationSettingsCommand.ts b/clients/client-chime-sdk-identity/src/commands/PutAppInstanceUserExpirationSettingsCommand.ts index 677fb808b4cdf..bc8608369afec 100644 --- a/clients/client-chime-sdk-identity/src/commands/PutAppInstanceUserExpirationSettingsCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/PutAppInstanceUserExpirationSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutAppInstanceUserExpirationSettingsRequest, PutAppInstanceUserExpirationSettingsResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-identity/src/commands/RegisterAppInstanceUserEndpointCommand.ts b/clients/client-chime-sdk-identity/src/commands/RegisterAppInstanceUserEndpointCommand.ts index abeefdf9039ce..bedd6f58187e4 100644 --- a/clients/client-chime-sdk-identity/src/commands/RegisterAppInstanceUserEndpointCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/RegisterAppInstanceUserEndpointCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterAppInstanceUserEndpointRequest, RegisterAppInstanceUserEndpointResponse } from "../models/models_0"; +import type { + RegisterAppInstanceUserEndpointRequest, + RegisterAppInstanceUserEndpointResponse, +} from "../models/models_0"; import { RegisterAppInstanceUserEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-identity/src/commands/TagResourceCommand.ts index 5ae842c7416ec..f059c5ceee672 100644 --- a/clients/client-chime-sdk-identity/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-identity/src/commands/UntagResourceCommand.ts index 162d5c246d637..857906b1aa08b 100644 --- a/clients/client-chime-sdk-identity/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceBotCommand.ts b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceBotCommand.ts index 494f61f67985b..b3107c50610be 100644 --- a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceBotCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceBotCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppInstanceBotRequest, UpdateAppInstanceBotResponse } from "../models/models_0"; +import type { UpdateAppInstanceBotRequest, UpdateAppInstanceBotResponse } from "../models/models_0"; import { UpdateAppInstanceBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceCommand.ts b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceCommand.ts index 2a0498be490b9..98b5c0913933b 100644 --- a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppInstanceRequest, UpdateAppInstanceResponse } from "../models/models_0"; +import type { UpdateAppInstanceRequest, UpdateAppInstanceResponse } from "../models/models_0"; import { UpdateAppInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserCommand.ts b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserCommand.ts index 8a4264476cf8a..9ed2f2f213c4d 100644 --- a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppInstanceUserRequest, UpdateAppInstanceUserResponse } from "../models/models_0"; +import type { UpdateAppInstanceUserRequest, UpdateAppInstanceUserResponse } from "../models/models_0"; import { UpdateAppInstanceUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserEndpointCommand.ts b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserEndpointCommand.ts index d9bd28a69c0a2..ddd3de5461876 100644 --- a/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserEndpointCommand.ts +++ b/clients/client-chime-sdk-identity/src/commands/UpdateAppInstanceUserEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKIdentityClient"; +import type { + ChimeSDKIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppInstanceUserEndpointRequest, UpdateAppInstanceUserEndpointResponse } from "../models/models_0"; +import type { UpdateAppInstanceUserEndpointRequest, UpdateAppInstanceUserEndpointResponse } from "../models/models_0"; import { UpdateAppInstanceUserEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-identity/src/endpoint/EndpointParameters.ts b/clients/client-chime-sdk-identity/src/endpoint/EndpointParameters.ts index fef044477b780..eb0579393b4a5 100644 --- a/clients/client-chime-sdk-identity/src/endpoint/EndpointParameters.ts +++ b/clients/client-chime-sdk-identity/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-chime-sdk-identity/src/endpoint/endpointResolver.ts b/clients/client-chime-sdk-identity/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-chime-sdk-identity/src/endpoint/endpointResolver.ts +++ b/clients/client-chime-sdk-identity/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-chime-sdk-identity/src/extensionConfiguration.ts b/clients/client-chime-sdk-identity/src/extensionConfiguration.ts index c17cba0355a62..9ccfaa0f2e8fb 100644 --- a/clients/client-chime-sdk-identity/src/extensionConfiguration.ts +++ b/clients/client-chime-sdk-identity/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-chime-sdk-identity/src/models/ChimeSDKIdentityServiceException.ts b/clients/client-chime-sdk-identity/src/models/ChimeSDKIdentityServiceException.ts index 537bca2c702fe..ecb9f8d5360f7 100644 --- a/clients/client-chime-sdk-identity/src/models/ChimeSDKIdentityServiceException.ts +++ b/clients/client-chime-sdk-identity/src/models/ChimeSDKIdentityServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-chime-sdk-identity/src/models/errors.ts b/clients/client-chime-sdk-identity/src/models/errors.ts index a2a4bc1d05b21..e2bda4c03c8f8 100644 --- a/clients/client-chime-sdk-identity/src/models/errors.ts +++ b/clients/client-chime-sdk-identity/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ChimeSDKIdentityServiceException as __BaseException } from "./ChimeSDKIdentityServiceException"; import { ErrorCode } from "./enums"; diff --git a/clients/client-chime-sdk-identity/src/pagination/Interfaces.ts b/clients/client-chime-sdk-identity/src/pagination/Interfaces.ts index 959caf15aa90c..8b9d885d7b7cc 100644 --- a/clients/client-chime-sdk-identity/src/pagination/Interfaces.ts +++ b/clients/client-chime-sdk-identity/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient"; diff --git a/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceAdminsPaginator.ts b/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceAdminsPaginator.ts index 98267b3ebe22d..045289033e5de 100644 --- a/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceAdminsPaginator.ts +++ b/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceAdminsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient"; import { diff --git a/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceBotsPaginator.ts b/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceBotsPaginator.ts index 5fdc70fa9b6fc..a3b34a5f3ef02 100644 --- a/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceBotsPaginator.ts +++ b/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceBotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient"; import { diff --git a/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceUserEndpointsPaginator.ts b/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceUserEndpointsPaginator.ts index d60b2820be580..1b2b26ee9d1aa 100644 --- a/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceUserEndpointsPaginator.ts +++ b/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceUserEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient"; import { diff --git a/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceUsersPaginator.ts b/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceUsersPaginator.ts index 5179171ce5b4c..f58db1d7b0524 100644 --- a/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceUsersPaginator.ts +++ b/clients/client-chime-sdk-identity/src/pagination/ListAppInstanceUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient"; import { diff --git a/clients/client-chime-sdk-identity/src/pagination/ListAppInstancesPaginator.ts b/clients/client-chime-sdk-identity/src/pagination/ListAppInstancesPaginator.ts index 18bce5328b734..de6cbbe16d0fb 100644 --- a/clients/client-chime-sdk-identity/src/pagination/ListAppInstancesPaginator.ts +++ b/clients/client-chime-sdk-identity/src/pagination/ListAppInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient"; import { diff --git a/clients/client-chime-sdk-identity/src/runtimeConfig.browser.ts b/clients/client-chime-sdk-identity/src/runtimeConfig.browser.ts index cbf1e1a8bea1a..6f709a30849aa 100644 --- a/clients/client-chime-sdk-identity/src/runtimeConfig.browser.ts +++ b/clients/client-chime-sdk-identity/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient"; + +import type { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-chime-sdk-identity/src/runtimeConfig.native.ts b/clients/client-chime-sdk-identity/src/runtimeConfig.native.ts index 53d521354a0fe..599b652871746 100644 --- a/clients/client-chime-sdk-identity/src/runtimeConfig.native.ts +++ b/clients/client-chime-sdk-identity/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient"; +import type { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-chime-sdk-identity/src/runtimeConfig.shared.ts b/clients/client-chime-sdk-identity/src/runtimeConfig.shared.ts index 94df13694fc73..37b8fccb7b09a 100644 --- a/clients/client-chime-sdk-identity/src/runtimeConfig.shared.ts +++ b/clients/client-chime-sdk-identity/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultChimeSDKIdentityHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient"; +import type { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-chime-sdk-identity/src/runtimeConfig.ts b/clients/client-chime-sdk-identity/src/runtimeConfig.ts index fbe3d4ebf2b3c..19192d58a1d5e 100644 --- a/clients/client-chime-sdk-identity/src/runtimeConfig.ts +++ b/clients/client-chime-sdk-identity/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient"; + +import type { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-chime-sdk-identity/src/runtimeExtensions.ts b/clients/client-chime-sdk-identity/src/runtimeExtensions.ts index 01e7a5b834fd9..dfedfa6aea777 100644 --- a/clients/client-chime-sdk-identity/src/runtimeExtensions.ts +++ b/clients/client-chime-sdk-identity/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ChimeSDKIdentityExtensionConfiguration } from "./extensionConfiguration"; +import type { ChimeSDKIdentityExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-chime-sdk-identity/src/schemas/schemas_0.ts b/clients/client-chime-sdk-identity/src/schemas/schemas_0.ts index ee0d742873a74..9d57de56c823f 100644 --- a/clients/client-chime-sdk-identity/src/schemas/schemas_0.ts +++ b/clients/client-chime-sdk-identity/src/schemas/schemas_0.ts @@ -186,7 +186,7 @@ const n0 = "com.amazonaws.chimesdkidentity"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-chime-sdk-media-pipelines/package.json b/clients/client-chime-sdk-media-pipelines/package.json index 8ed656a43b52d..c36c88fbcf0fe 100644 --- a/clients/client-chime-sdk-media-pipelines/package.json +++ b/clients/client-chime-sdk-media-pipelines/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-chime-sdk-media-pipelines/src/ChimeSDKMediaPipelines.ts b/clients/client-chime-sdk-media-pipelines/src/ChimeSDKMediaPipelines.ts index 4858d3b2b56a3..456160f26c3fc 100644 --- a/clients/client-chime-sdk-media-pipelines/src/ChimeSDKMediaPipelines.ts +++ b/clients/client-chime-sdk-media-pipelines/src/ChimeSDKMediaPipelines.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ChimeSDKMediaPipelinesClient, ChimeSDKMediaPipelinesClientConfig } from "./ChimeSDKMediaPipelinesClient"; +import { ChimeSDKMediaPipelinesClient } from "./ChimeSDKMediaPipelinesClient"; import { CreateMediaCapturePipelineCommand, CreateMediaCapturePipelineCommandInput, diff --git a/clients/client-chime-sdk-media-pipelines/src/ChimeSDKMediaPipelinesClient.ts b/clients/client-chime-sdk-media-pipelines/src/ChimeSDKMediaPipelinesClient.ts index 5c238f44b689b..8f9f4946f754b 100644 --- a/clients/client-chime-sdk-media-pipelines/src/ChimeSDKMediaPipelinesClient.ts +++ b/clients/client-chime-sdk-media-pipelines/src/ChimeSDKMediaPipelinesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultChimeSDKMediaPipelinesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -176,7 +185,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-chime-sdk-media-pipelines/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-chime-sdk-media-pipelines/src/auth/httpAuthExtensionConfiguration.ts index 86c90c80d16b6..b4821196fe4df 100644 --- a/clients/client-chime-sdk-media-pipelines/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-chime-sdk-media-pipelines/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ChimeSDKMediaPipelinesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ChimeSDKMediaPipelinesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-chime-sdk-media-pipelines/src/auth/httpAuthSchemeProvider.ts b/clients/client-chime-sdk-media-pipelines/src/auth/httpAuthSchemeProvider.ts index 5e909a1ab6c1e..8005e3620d574 100644 --- a/clients/client-chime-sdk-media-pipelines/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-chime-sdk-media-pipelines/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ChimeSDKMediaPipelinesClientResolvedConfig, ChimeSDKMediaPipelinesClientConfig, - ChimeSDKMediaPipelinesClientResolvedConfig, } from "../ChimeSDKMediaPipelinesClient"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaCapturePipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaCapturePipelineCommand.ts index c171328471973..8eb3fec8f0830 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaCapturePipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaCapturePipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMediaCapturePipelineRequest, CreateMediaCapturePipelineResponse } from "../models/models_0"; +import type { CreateMediaCapturePipelineRequest, CreateMediaCapturePipelineResponse } from "../models/models_0"; import { CreateMediaCapturePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaConcatenationPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaConcatenationPipelineCommand.ts index 974b79d6d9198..db3c4c7847780 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaConcatenationPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaConcatenationPipelineCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMediaConcatenationPipelineRequest, CreateMediaConcatenationPipelineResponse } from "../models/models_0"; +import type { + CreateMediaConcatenationPipelineRequest, + CreateMediaConcatenationPipelineResponse, +} from "../models/models_0"; import { CreateMediaConcatenationPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineCommand.ts index 15744bc7b1deb..f7c7ebe538f06 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMediaInsightsPipelineRequest, CreateMediaInsightsPipelineResponse } from "../models/models_0"; +import type { CreateMediaInsightsPipelineRequest, CreateMediaInsightsPipelineResponse } from "../models/models_0"; import { CreateMediaInsightsPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineConfigurationCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineConfigurationCommand.ts index 0fb50ef1cd139..2b37f1a5c05bd 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineConfigurationCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaInsightsPipelineConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateMediaInsightsPipelineConfigurationRequest, CreateMediaInsightsPipelineConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaLiveConnectorPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaLiveConnectorPipelineCommand.ts index 6d7f22c152ce1..d3646804f8af4 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaLiveConnectorPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaLiveConnectorPipelineCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMediaLiveConnectorPipelineRequest, CreateMediaLiveConnectorPipelineResponse } from "../models/models_0"; +import type { + CreateMediaLiveConnectorPipelineRequest, + CreateMediaLiveConnectorPipelineResponse, +} from "../models/models_0"; import { CreateMediaLiveConnectorPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.ts index 54937478cc4d1..9ee0921e5c7b2 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaPipelineKinesisVideoStreamPoolCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateMediaPipelineKinesisVideoStreamPoolRequest, CreateMediaPipelineKinesisVideoStreamPoolResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaStreamPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaStreamPipelineCommand.ts index ee12e448636eb..0bc23ec475246 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaStreamPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/CreateMediaStreamPipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMediaStreamPipelineRequest, CreateMediaStreamPipelineResponse } from "../models/models_0"; +import type { CreateMediaStreamPipelineRequest, CreateMediaStreamPipelineResponse } from "../models/models_0"; import { CreateMediaStreamPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaCapturePipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaCapturePipelineCommand.ts index 172570b22e970..89b9406dd1f49 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaCapturePipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaCapturePipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMediaCapturePipelineRequest } from "../models/models_0"; +import type { DeleteMediaCapturePipelineRequest } from "../models/models_0"; import { DeleteMediaCapturePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaInsightsPipelineConfigurationCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaInsightsPipelineConfigurationCommand.ts index 026218611cbb7..2dc24d823e8aa 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaInsightsPipelineConfigurationCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaInsightsPipelineConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMediaInsightsPipelineConfigurationRequest } from "../models/models_0"; +import type { DeleteMediaInsightsPipelineConfigurationRequest } from "../models/models_0"; import { DeleteMediaInsightsPipelineConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineCommand.ts index f6d3819cde39d..4d14b29e0de6b 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMediaPipelineRequest } from "../models/models_0"; +import type { DeleteMediaPipelineRequest } from "../models/models_0"; import { DeleteMediaPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.ts index a49d421787810..a9ed9265f8060 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/DeleteMediaPipelineKinesisVideoStreamPoolCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMediaPipelineKinesisVideoStreamPoolRequest } from "../models/models_0"; +import type { DeleteMediaPipelineKinesisVideoStreamPoolRequest } from "../models/models_0"; import { DeleteMediaPipelineKinesisVideoStreamPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaCapturePipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaCapturePipelineCommand.ts index 11ed6b62c7a1b..e945db8cdfb0c 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaCapturePipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaCapturePipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMediaCapturePipelineRequest, GetMediaCapturePipelineResponse } from "../models/models_0"; +import type { GetMediaCapturePipelineRequest, GetMediaCapturePipelineResponse } from "../models/models_0"; import { GetMediaCapturePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaInsightsPipelineConfigurationCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaInsightsPipelineConfigurationCommand.ts index 8f5a992f30db1..be04ff16f939b 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaInsightsPipelineConfigurationCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaInsightsPipelineConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetMediaInsightsPipelineConfigurationRequest, GetMediaInsightsPipelineConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineCommand.ts index a2ef62f4bb5a0..cfdf591af6625 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMediaPipelineRequest, GetMediaPipelineResponse } from "../models/models_0"; +import type { GetMediaPipelineRequest, GetMediaPipelineResponse } from "../models/models_0"; import { GetMediaPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.ts index 8b58e8d4aa018..ad970545f8340 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetMediaPipelineKinesisVideoStreamPoolCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetMediaPipelineKinesisVideoStreamPoolRequest, GetMediaPipelineKinesisVideoStreamPoolResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetSpeakerSearchTaskCommand.ts index 64ab99afca25d..521e9775675bd 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetSpeakerSearchTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSpeakerSearchTaskRequest, GetSpeakerSearchTaskResponse } from "../models/models_0"; +import type { GetSpeakerSearchTaskRequest, GetSpeakerSearchTaskResponse } from "../models/models_0"; import { GetSpeakerSearchTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/GetVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/GetVoiceToneAnalysisTaskCommand.ts index a1f20f208153f..9d682a95c731f 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/GetVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/GetVoiceToneAnalysisTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceToneAnalysisTaskRequest, GetVoiceToneAnalysisTaskResponse } from "../models/models_0"; +import type { GetVoiceToneAnalysisTaskRequest, GetVoiceToneAnalysisTaskResponse } from "../models/models_0"; import { GetVoiceToneAnalysisTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaCapturePipelinesCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaCapturePipelinesCommand.ts index 009b64351057d..f6a57cf835960 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaCapturePipelinesCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaCapturePipelinesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMediaCapturePipelinesRequest, ListMediaCapturePipelinesResponse } from "../models/models_0"; +import type { ListMediaCapturePipelinesRequest, ListMediaCapturePipelinesResponse } from "../models/models_0"; import { ListMediaCapturePipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaInsightsPipelineConfigurationsCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaInsightsPipelineConfigurationsCommand.ts index 25be673a6ce2f..6fec845913b64 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaInsightsPipelineConfigurationsCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaInsightsPipelineConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListMediaInsightsPipelineConfigurationsRequest, ListMediaInsightsPipelineConfigurationsResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.ts index 7831e64ed5c9a..3acdd9757b377 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelineKinesisVideoStreamPoolsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListMediaPipelineKinesisVideoStreamPoolsRequest, ListMediaPipelineKinesisVideoStreamPoolsResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelinesCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelinesCommand.ts index bf446f98a151c..5489a9b26b022 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelinesCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListMediaPipelinesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMediaPipelinesRequest, ListMediaPipelinesResponse } from "../models/models_0"; +import type { ListMediaPipelinesRequest, ListMediaPipelinesResponse } from "../models/models_0"; import { ListMediaPipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/ListTagsForResourceCommand.ts index 50799fdc98b75..0ed6153076c7c 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/StartSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/StartSpeakerSearchTaskCommand.ts index 4e7e09e2346e3..3a543519ebc10 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/StartSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/StartSpeakerSearchTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSpeakerSearchTaskRequest, StartSpeakerSearchTaskResponse } from "../models/models_0"; +import type { StartSpeakerSearchTaskRequest, StartSpeakerSearchTaskResponse } from "../models/models_0"; import { StartSpeakerSearchTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/StartVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/StartVoiceToneAnalysisTaskCommand.ts index d0386b60d9d9d..70b28b2d98c36 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/StartVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/StartVoiceToneAnalysisTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartVoiceToneAnalysisTaskRequest, StartVoiceToneAnalysisTaskResponse } from "../models/models_0"; +import type { StartVoiceToneAnalysisTaskRequest, StartVoiceToneAnalysisTaskResponse } from "../models/models_0"; import { StartVoiceToneAnalysisTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/StopSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/StopSpeakerSearchTaskCommand.ts index ec8552ada0c69..685e43917f860 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/StopSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/StopSpeakerSearchTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopSpeakerSearchTaskRequest } from "../models/models_0"; +import type { StopSpeakerSearchTaskRequest } from "../models/models_0"; import { StopSpeakerSearchTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/StopVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/StopVoiceToneAnalysisTaskCommand.ts index ee424cc6d86e0..e8cde7e3cd6e3 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/StopVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/StopVoiceToneAnalysisTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopVoiceToneAnalysisTaskRequest } from "../models/models_0"; +import type { StopVoiceToneAnalysisTaskRequest } from "../models/models_0"; import { StopVoiceToneAnalysisTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/TagResourceCommand.ts index 1f1e5c7711710..10fa73d86902d 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/UntagResourceCommand.ts index 258104d503028..111b972e552bf 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineConfigurationCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineConfigurationCommand.ts index 2983b0e0af701..468cf40bd66c3 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineConfigurationCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateMediaInsightsPipelineConfigurationRequest, UpdateMediaInsightsPipelineConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineStatusCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineStatusCommand.ts index fccf0a216de9f..ffbc4ba7c910d 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineStatusCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaInsightsPipelineStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMediaInsightsPipelineStatusRequest } from "../models/models_0"; +import type { UpdateMediaInsightsPipelineStatusRequest } from "../models/models_0"; import { UpdateMediaInsightsPipelineStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.ts b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.ts index 7267485634019..a81d4dae46334 100644 --- a/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.ts +++ b/clients/client-chime-sdk-media-pipelines/src/commands/UpdateMediaPipelineKinesisVideoStreamPoolCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMediaPipelinesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMediaPipelinesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateMediaPipelineKinesisVideoStreamPoolRequest, UpdateMediaPipelineKinesisVideoStreamPoolResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-media-pipelines/src/endpoint/EndpointParameters.ts b/clients/client-chime-sdk-media-pipelines/src/endpoint/EndpointParameters.ts index fef044477b780..eb0579393b4a5 100644 --- a/clients/client-chime-sdk-media-pipelines/src/endpoint/EndpointParameters.ts +++ b/clients/client-chime-sdk-media-pipelines/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-chime-sdk-media-pipelines/src/endpoint/endpointResolver.ts b/clients/client-chime-sdk-media-pipelines/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-chime-sdk-media-pipelines/src/endpoint/endpointResolver.ts +++ b/clients/client-chime-sdk-media-pipelines/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-chime-sdk-media-pipelines/src/extensionConfiguration.ts b/clients/client-chime-sdk-media-pipelines/src/extensionConfiguration.ts index 02ef3703bfcae..32a360d33870e 100644 --- a/clients/client-chime-sdk-media-pipelines/src/extensionConfiguration.ts +++ b/clients/client-chime-sdk-media-pipelines/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-chime-sdk-media-pipelines/src/models/ChimeSDKMediaPipelinesServiceException.ts b/clients/client-chime-sdk-media-pipelines/src/models/ChimeSDKMediaPipelinesServiceException.ts index f3ac98d839500..355d2e628de7c 100644 --- a/clients/client-chime-sdk-media-pipelines/src/models/ChimeSDKMediaPipelinesServiceException.ts +++ b/clients/client-chime-sdk-media-pipelines/src/models/ChimeSDKMediaPipelinesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-chime-sdk-media-pipelines/src/models/errors.ts b/clients/client-chime-sdk-media-pipelines/src/models/errors.ts index baf2aefd06825..b0c64904490c2 100644 --- a/clients/client-chime-sdk-media-pipelines/src/models/errors.ts +++ b/clients/client-chime-sdk-media-pipelines/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ChimeSDKMediaPipelinesServiceException as __BaseException } from "./ChimeSDKMediaPipelinesServiceException"; import { ErrorCode } from "./enums"; diff --git a/clients/client-chime-sdk-media-pipelines/src/pagination/Interfaces.ts b/clients/client-chime-sdk-media-pipelines/src/pagination/Interfaces.ts index 824b9587054d0..910cb3b9ffce7 100644 --- a/clients/client-chime-sdk-media-pipelines/src/pagination/Interfaces.ts +++ b/clients/client-chime-sdk-media-pipelines/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ChimeSDKMediaPipelinesClient } from "../ChimeSDKMediaPipelinesClient"; diff --git a/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaCapturePipelinesPaginator.ts b/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaCapturePipelinesPaginator.ts index 5c4f0e75736bf..e4f1099d24ba7 100644 --- a/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaCapturePipelinesPaginator.ts +++ b/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaCapturePipelinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMediaPipelinesClient } from "../ChimeSDKMediaPipelinesClient"; import { diff --git a/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaInsightsPipelineConfigurationsPaginator.ts b/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaInsightsPipelineConfigurationsPaginator.ts index 72f6a715a79f8..46ba1db072801 100644 --- a/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaInsightsPipelineConfigurationsPaginator.ts +++ b/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaInsightsPipelineConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMediaPipelinesClient } from "../ChimeSDKMediaPipelinesClient"; import { diff --git a/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaPipelineKinesisVideoStreamPoolsPaginator.ts b/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaPipelineKinesisVideoStreamPoolsPaginator.ts index e644e41a76496..6931fd806cda4 100644 --- a/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaPipelineKinesisVideoStreamPoolsPaginator.ts +++ b/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaPipelineKinesisVideoStreamPoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMediaPipelinesClient } from "../ChimeSDKMediaPipelinesClient"; import { diff --git a/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaPipelinesPaginator.ts b/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaPipelinesPaginator.ts index 03ec8228331be..96ddfb04e69c5 100644 --- a/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaPipelinesPaginator.ts +++ b/clients/client-chime-sdk-media-pipelines/src/pagination/ListMediaPipelinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMediaPipelinesClient } from "../ChimeSDKMediaPipelinesClient"; import { diff --git a/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.browser.ts b/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.browser.ts index 169096a4ed4e1..a9cdb9f5cb05c 100644 --- a/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.browser.ts +++ b/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKMediaPipelinesClientConfig } from "./ChimeSDKMediaPipelinesClient"; + +import type { ChimeSDKMediaPipelinesClientConfig } from "./ChimeSDKMediaPipelinesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.native.ts b/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.native.ts index d10b6361ded29..e2a3f50f589c3 100644 --- a/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.native.ts +++ b/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ChimeSDKMediaPipelinesClientConfig } from "./ChimeSDKMediaPipelinesClient"; +import type { ChimeSDKMediaPipelinesClientConfig } from "./ChimeSDKMediaPipelinesClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.shared.ts b/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.shared.ts index 76b1c11c53ce8..7899818260948 100644 --- a/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.shared.ts +++ b/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultChimeSDKMediaPipelinesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ChimeSDKMediaPipelinesClientConfig } from "./ChimeSDKMediaPipelinesClient"; +import type { ChimeSDKMediaPipelinesClientConfig } from "./ChimeSDKMediaPipelinesClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.ts b/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.ts index 4073e0a69c613..cc0ccbb1aadac 100644 --- a/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.ts +++ b/clients/client-chime-sdk-media-pipelines/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKMediaPipelinesClientConfig } from "./ChimeSDKMediaPipelinesClient"; + +import type { ChimeSDKMediaPipelinesClientConfig } from "./ChimeSDKMediaPipelinesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-chime-sdk-media-pipelines/src/runtimeExtensions.ts b/clients/client-chime-sdk-media-pipelines/src/runtimeExtensions.ts index dc74d97c1c4c0..a52b6c2bde89f 100644 --- a/clients/client-chime-sdk-media-pipelines/src/runtimeExtensions.ts +++ b/clients/client-chime-sdk-media-pipelines/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ChimeSDKMediaPipelinesExtensionConfiguration } from "./extensionConfiguration"; +import type { ChimeSDKMediaPipelinesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-chime-sdk-media-pipelines/src/schemas/schemas_0.ts b/clients/client-chime-sdk-media-pipelines/src/schemas/schemas_0.ts index cf4e732f11231..77873e5264435 100644 --- a/clients/client-chime-sdk-media-pipelines/src/schemas/schemas_0.ts +++ b/clients/client-chime-sdk-media-pipelines/src/schemas/schemas_0.ts @@ -333,7 +333,7 @@ const n0 = "com.amazonaws.chimesdkmediapipelines"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-chime-sdk-meetings/package.json b/clients/client-chime-sdk-meetings/package.json index a6bfd1e743bbd..626727718d2aa 100644 --- a/clients/client-chime-sdk-meetings/package.json +++ b/clients/client-chime-sdk-meetings/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-chime-sdk-meetings/src/ChimeSDKMeetings.ts b/clients/client-chime-sdk-meetings/src/ChimeSDKMeetings.ts index 21407ba07dc06..92b74e4d7a8f9 100644 --- a/clients/client-chime-sdk-meetings/src/ChimeSDKMeetings.ts +++ b/clients/client-chime-sdk-meetings/src/ChimeSDKMeetings.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ChimeSDKMeetingsClient, ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient"; +import { ChimeSDKMeetingsClient } from "./ChimeSDKMeetingsClient"; import { BatchCreateAttendeeCommand, BatchCreateAttendeeCommandInput, diff --git a/clients/client-chime-sdk-meetings/src/ChimeSDKMeetingsClient.ts b/clients/client-chime-sdk-meetings/src/ChimeSDKMeetingsClient.ts index 0873190a654ba..95642694672e1 100644 --- a/clients/client-chime-sdk-meetings/src/ChimeSDKMeetingsClient.ts +++ b/clients/client-chime-sdk-meetings/src/ChimeSDKMeetingsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultChimeSDKMeetingsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -101,7 +110,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-chime-sdk-meetings/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-chime-sdk-meetings/src/auth/httpAuthExtensionConfiguration.ts index 973e858588548..80c5a4fb65acb 100644 --- a/clients/client-chime-sdk-meetings/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-chime-sdk-meetings/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ChimeSDKMeetingsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ChimeSDKMeetingsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-chime-sdk-meetings/src/auth/httpAuthSchemeProvider.ts b/clients/client-chime-sdk-meetings/src/auth/httpAuthSchemeProvider.ts index 4d3504f69387f..7d089bc86c22a 100644 --- a/clients/client-chime-sdk-meetings/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-chime-sdk-meetings/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ChimeSDKMeetingsClientConfig, ChimeSDKMeetingsClientResolvedConfig } from "../ChimeSDKMeetingsClient"; +import { type ChimeSDKMeetingsClientResolvedConfig, ChimeSDKMeetingsClientConfig } from "../ChimeSDKMeetingsClient"; /** * @internal diff --git a/clients/client-chime-sdk-meetings/src/commands/BatchCreateAttendeeCommand.ts b/clients/client-chime-sdk-meetings/src/commands/BatchCreateAttendeeCommand.ts index 66cc8c2a82e5b..bf1483a99ff94 100644 --- a/clients/client-chime-sdk-meetings/src/commands/BatchCreateAttendeeCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/BatchCreateAttendeeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateAttendeeRequest, BatchCreateAttendeeResponse } from "../models/models_0"; +import type { BatchCreateAttendeeRequest, BatchCreateAttendeeResponse } from "../models/models_0"; import { BatchCreateAttendee } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.ts b/clients/client-chime-sdk-meetings/src/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.ts index c937e8bbf9830..2f5486012f8c2 100644 --- a/clients/client-chime-sdk-meetings/src/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateAttendeeCapabilitiesExceptRequest } from "../models/models_0"; +import type { BatchUpdateAttendeeCapabilitiesExceptRequest } from "../models/models_0"; import { BatchUpdateAttendeeCapabilitiesExcept } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/CreateAttendeeCommand.ts b/clients/client-chime-sdk-meetings/src/commands/CreateAttendeeCommand.ts index 3e0982f7c9293..71004504ca9d2 100644 --- a/clients/client-chime-sdk-meetings/src/commands/CreateAttendeeCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/CreateAttendeeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAttendeeRequest, CreateAttendeeResponse } from "../models/models_0"; +import type { CreateAttendeeRequest, CreateAttendeeResponse } from "../models/models_0"; import { CreateAttendee } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/CreateMeetingCommand.ts b/clients/client-chime-sdk-meetings/src/commands/CreateMeetingCommand.ts index 9d60c0c5a42e1..7cd40fdcd6326 100644 --- a/clients/client-chime-sdk-meetings/src/commands/CreateMeetingCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/CreateMeetingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMeetingRequest, CreateMeetingResponse } from "../models/models_0"; +import type { CreateMeetingRequest, CreateMeetingResponse } from "../models/models_0"; import { CreateMeeting } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/CreateMeetingWithAttendeesCommand.ts b/clients/client-chime-sdk-meetings/src/commands/CreateMeetingWithAttendeesCommand.ts index fe2817f920524..526df82d0b860 100644 --- a/clients/client-chime-sdk-meetings/src/commands/CreateMeetingWithAttendeesCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/CreateMeetingWithAttendeesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMeetingWithAttendeesRequest, CreateMeetingWithAttendeesResponse } from "../models/models_0"; +import type { CreateMeetingWithAttendeesRequest, CreateMeetingWithAttendeesResponse } from "../models/models_0"; import { CreateMeetingWithAttendees } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/DeleteAttendeeCommand.ts b/clients/client-chime-sdk-meetings/src/commands/DeleteAttendeeCommand.ts index 71058bdfce588..ed3b6f1fcef8e 100644 --- a/clients/client-chime-sdk-meetings/src/commands/DeleteAttendeeCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/DeleteAttendeeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAttendeeRequest } from "../models/models_0"; +import type { DeleteAttendeeRequest } from "../models/models_0"; import { DeleteAttendee } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/DeleteMeetingCommand.ts b/clients/client-chime-sdk-meetings/src/commands/DeleteMeetingCommand.ts index 58e8d6d5138f7..af35154784e50 100644 --- a/clients/client-chime-sdk-meetings/src/commands/DeleteMeetingCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/DeleteMeetingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMeetingRequest } from "../models/models_0"; +import type { DeleteMeetingRequest } from "../models/models_0"; import { DeleteMeeting } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/GetAttendeeCommand.ts b/clients/client-chime-sdk-meetings/src/commands/GetAttendeeCommand.ts index ad320c9e1e654..16ed783fcce8e 100644 --- a/clients/client-chime-sdk-meetings/src/commands/GetAttendeeCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/GetAttendeeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAttendeeRequest, GetAttendeeResponse } from "../models/models_0"; +import type { GetAttendeeRequest, GetAttendeeResponse } from "../models/models_0"; import { GetAttendee } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/GetMeetingCommand.ts b/clients/client-chime-sdk-meetings/src/commands/GetMeetingCommand.ts index 98ea0821e0bb6..ce401a7c9b2df 100644 --- a/clients/client-chime-sdk-meetings/src/commands/GetMeetingCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/GetMeetingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMeetingRequest, GetMeetingResponse } from "../models/models_0"; +import type { GetMeetingRequest, GetMeetingResponse } from "../models/models_0"; import { GetMeeting } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/ListAttendeesCommand.ts b/clients/client-chime-sdk-meetings/src/commands/ListAttendeesCommand.ts index f728f2cfc92a5..b0c3fdeb36081 100644 --- a/clients/client-chime-sdk-meetings/src/commands/ListAttendeesCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/ListAttendeesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAttendeesRequest, ListAttendeesResponse } from "../models/models_0"; +import type { ListAttendeesRequest, ListAttendeesResponse } from "../models/models_0"; import { ListAttendees } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-meetings/src/commands/ListTagsForResourceCommand.ts index fde343697c59a..8320dc0044894 100644 --- a/clients/client-chime-sdk-meetings/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/StartMeetingTranscriptionCommand.ts b/clients/client-chime-sdk-meetings/src/commands/StartMeetingTranscriptionCommand.ts index 5dcdcfb4ba049..60f73823b1239 100644 --- a/clients/client-chime-sdk-meetings/src/commands/StartMeetingTranscriptionCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/StartMeetingTranscriptionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMeetingTranscriptionRequest } from "../models/models_0"; +import type { StartMeetingTranscriptionRequest } from "../models/models_0"; import { StartMeetingTranscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/StopMeetingTranscriptionCommand.ts b/clients/client-chime-sdk-meetings/src/commands/StopMeetingTranscriptionCommand.ts index d8833524a3281..eb396db041ce4 100644 --- a/clients/client-chime-sdk-meetings/src/commands/StopMeetingTranscriptionCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/StopMeetingTranscriptionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopMeetingTranscriptionRequest } from "../models/models_0"; +import type { StopMeetingTranscriptionRequest } from "../models/models_0"; import { StopMeetingTranscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-meetings/src/commands/TagResourceCommand.ts index b37ad08d0049b..a3dd19d8ba569 100644 --- a/clients/client-chime-sdk-meetings/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-meetings/src/commands/UntagResourceCommand.ts index 6f58d5dd52297..f3298aefb725d 100644 --- a/clients/client-chime-sdk-meetings/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/commands/UpdateAttendeeCapabilitiesCommand.ts b/clients/client-chime-sdk-meetings/src/commands/UpdateAttendeeCapabilitiesCommand.ts index 8ceb163375f83..0a8730fbead7b 100644 --- a/clients/client-chime-sdk-meetings/src/commands/UpdateAttendeeCapabilitiesCommand.ts +++ b/clients/client-chime-sdk-meetings/src/commands/UpdateAttendeeCapabilitiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKMeetingsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKMeetingsClient"; +import type { + ChimeSDKMeetingsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ChimeSDKMeetingsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAttendeeCapabilitiesRequest, UpdateAttendeeCapabilitiesResponse } from "../models/models_0"; +import type { UpdateAttendeeCapabilitiesRequest, UpdateAttendeeCapabilitiesResponse } from "../models/models_0"; import { UpdateAttendeeCapabilities } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-meetings/src/endpoint/EndpointParameters.ts b/clients/client-chime-sdk-meetings/src/endpoint/EndpointParameters.ts index fef044477b780..eb0579393b4a5 100644 --- a/clients/client-chime-sdk-meetings/src/endpoint/EndpointParameters.ts +++ b/clients/client-chime-sdk-meetings/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-chime-sdk-meetings/src/endpoint/endpointResolver.ts b/clients/client-chime-sdk-meetings/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-chime-sdk-meetings/src/endpoint/endpointResolver.ts +++ b/clients/client-chime-sdk-meetings/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-chime-sdk-meetings/src/extensionConfiguration.ts b/clients/client-chime-sdk-meetings/src/extensionConfiguration.ts index b174f28443df8..b594b242e86e5 100644 --- a/clients/client-chime-sdk-meetings/src/extensionConfiguration.ts +++ b/clients/client-chime-sdk-meetings/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-chime-sdk-meetings/src/models/ChimeSDKMeetingsServiceException.ts b/clients/client-chime-sdk-meetings/src/models/ChimeSDKMeetingsServiceException.ts index 4fc3355591afd..3def569914a73 100644 --- a/clients/client-chime-sdk-meetings/src/models/ChimeSDKMeetingsServiceException.ts +++ b/clients/client-chime-sdk-meetings/src/models/ChimeSDKMeetingsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-chime-sdk-meetings/src/models/errors.ts b/clients/client-chime-sdk-meetings/src/models/errors.ts index 0e78bc0ea21c3..397e18d305829 100644 --- a/clients/client-chime-sdk-meetings/src/models/errors.ts +++ b/clients/client-chime-sdk-meetings/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException"; diff --git a/clients/client-chime-sdk-meetings/src/pagination/Interfaces.ts b/clients/client-chime-sdk-meetings/src/pagination/Interfaces.ts index 2a11544a7d1db..eb4919bb0f057 100644 --- a/clients/client-chime-sdk-meetings/src/pagination/Interfaces.ts +++ b/clients/client-chime-sdk-meetings/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ChimeSDKMeetingsClient } from "../ChimeSDKMeetingsClient"; diff --git a/clients/client-chime-sdk-meetings/src/pagination/ListAttendeesPaginator.ts b/clients/client-chime-sdk-meetings/src/pagination/ListAttendeesPaginator.ts index c985853805639..78f11bf94781a 100644 --- a/clients/client-chime-sdk-meetings/src/pagination/ListAttendeesPaginator.ts +++ b/clients/client-chime-sdk-meetings/src/pagination/ListAttendeesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMeetingsClient } from "../ChimeSDKMeetingsClient"; import { diff --git a/clients/client-chime-sdk-meetings/src/runtimeConfig.browser.ts b/clients/client-chime-sdk-meetings/src/runtimeConfig.browser.ts index 743f67182f963..8081833682b22 100644 --- a/clients/client-chime-sdk-meetings/src/runtimeConfig.browser.ts +++ b/clients/client-chime-sdk-meetings/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient"; + +import type { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-chime-sdk-meetings/src/runtimeConfig.native.ts b/clients/client-chime-sdk-meetings/src/runtimeConfig.native.ts index 0377f7b9688af..2bd115f1e945b 100644 --- a/clients/client-chime-sdk-meetings/src/runtimeConfig.native.ts +++ b/clients/client-chime-sdk-meetings/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient"; +import type { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-chime-sdk-meetings/src/runtimeConfig.shared.ts b/clients/client-chime-sdk-meetings/src/runtimeConfig.shared.ts index 8f627d29d1113..04826b57c6177 100644 --- a/clients/client-chime-sdk-meetings/src/runtimeConfig.shared.ts +++ b/clients/client-chime-sdk-meetings/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultChimeSDKMeetingsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient"; +import type { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-chime-sdk-meetings/src/runtimeConfig.ts b/clients/client-chime-sdk-meetings/src/runtimeConfig.ts index badd2d78e0c2f..605dbbe04fc76 100644 --- a/clients/client-chime-sdk-meetings/src/runtimeConfig.ts +++ b/clients/client-chime-sdk-meetings/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient"; + +import type { ChimeSDKMeetingsClientConfig } from "./ChimeSDKMeetingsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-chime-sdk-meetings/src/runtimeExtensions.ts b/clients/client-chime-sdk-meetings/src/runtimeExtensions.ts index d258283853f93..9216d35e72db0 100644 --- a/clients/client-chime-sdk-meetings/src/runtimeExtensions.ts +++ b/clients/client-chime-sdk-meetings/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ChimeSDKMeetingsExtensionConfiguration } from "./extensionConfiguration"; +import type { ChimeSDKMeetingsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-chime-sdk-meetings/src/schemas/schemas_0.ts b/clients/client-chime-sdk-meetings/src/schemas/schemas_0.ts index cefa53b6dc790..aec339045b8cf 100644 --- a/clients/client-chime-sdk-meetings/src/schemas/schemas_0.ts +++ b/clients/client-chime-sdk-meetings/src/schemas/schemas_0.ts @@ -160,7 +160,7 @@ const n0 = "com.amazonaws.chimesdkmeetings"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-chime-sdk-messaging/package.json b/clients/client-chime-sdk-messaging/package.json index 6d1ea07dad471..c51ee11b52486 100644 --- a/clients/client-chime-sdk-messaging/package.json +++ b/clients/client-chime-sdk-messaging/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-chime-sdk-messaging/src/ChimeSDKMessaging.ts b/clients/client-chime-sdk-messaging/src/ChimeSDKMessaging.ts index 6e4ad552a0668..ac2df36864488 100644 --- a/clients/client-chime-sdk-messaging/src/ChimeSDKMessaging.ts +++ b/clients/client-chime-sdk-messaging/src/ChimeSDKMessaging.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ChimeSDKMessagingClient, ChimeSDKMessagingClientConfig } from "./ChimeSDKMessagingClient"; +import { ChimeSDKMessagingClient } from "./ChimeSDKMessagingClient"; import { AssociateChannelFlowCommand, AssociateChannelFlowCommandInput, diff --git a/clients/client-chime-sdk-messaging/src/ChimeSDKMessagingClient.ts b/clients/client-chime-sdk-messaging/src/ChimeSDKMessagingClient.ts index 00ab0c7d2d689..5962e30c6f6b8 100644 --- a/clients/client-chime-sdk-messaging/src/ChimeSDKMessagingClient.ts +++ b/clients/client-chime-sdk-messaging/src/ChimeSDKMessagingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultChimeSDKMessagingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -211,7 +220,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-chime-sdk-messaging/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-chime-sdk-messaging/src/auth/httpAuthExtensionConfiguration.ts index 23c312bac843f..e754cb8aadb10 100644 --- a/clients/client-chime-sdk-messaging/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-chime-sdk-messaging/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ChimeSDKMessagingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ChimeSDKMessagingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-chime-sdk-messaging/src/auth/httpAuthSchemeProvider.ts b/clients/client-chime-sdk-messaging/src/auth/httpAuthSchemeProvider.ts index 26354f40145ec..cee5e9a0f3a3d 100644 --- a/clients/client-chime-sdk-messaging/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-chime-sdk-messaging/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ChimeSDKMessagingClientConfig, ChimeSDKMessagingClientResolvedConfig } from "../ChimeSDKMessagingClient"; +import { type ChimeSDKMessagingClientResolvedConfig, ChimeSDKMessagingClientConfig } from "../ChimeSDKMessagingClient"; /** * @internal diff --git a/clients/client-chime-sdk-messaging/src/commands/AssociateChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/AssociateChannelFlowCommand.ts index c513ca697eaff..7afdd3726b9e4 100644 --- a/clients/client-chime-sdk-messaging/src/commands/AssociateChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/AssociateChannelFlowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateChannelFlowRequest } from "../models/models_0"; +import type { AssociateChannelFlowRequest } from "../models/models_0"; import { AssociateChannelFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/BatchCreateChannelMembershipCommand.ts b/clients/client-chime-sdk-messaging/src/commands/BatchCreateChannelMembershipCommand.ts index 284903142339d..b6b5cc0d8c83e 100644 --- a/clients/client-chime-sdk-messaging/src/commands/BatchCreateChannelMembershipCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/BatchCreateChannelMembershipCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateChannelMembershipRequest, BatchCreateChannelMembershipResponse } from "../models/models_0"; +import type { BatchCreateChannelMembershipRequest, BatchCreateChannelMembershipResponse } from "../models/models_0"; import { BatchCreateChannelMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/ChannelFlowCallbackCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ChannelFlowCallbackCommand.ts index 5e2b5e361dac3..f99db8403f9bb 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ChannelFlowCallbackCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ChannelFlowCallbackCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ChannelFlowCallbackRequest, ChannelFlowCallbackResponse } from "../models/models_0"; +import type { ChannelFlowCallbackRequest, ChannelFlowCallbackResponse } from "../models/models_0"; import { ChannelFlowCallback } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelBanCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelBanCommand.ts index 6af74fea2f03d..0a2c7a52b10c5 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelBanCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelBanCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChannelBanRequest, CreateChannelBanResponse } from "../models/models_0"; +import type { CreateChannelBanRequest, CreateChannelBanResponse } from "../models/models_0"; import { CreateChannelBan } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelCommand.ts index 4dfd2d5f92dc1..1421142ad0c9f 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; +import type { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; import { CreateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelFlowCommand.ts index a0e87dcc668e0..879642c2be4ed 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelFlowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChannelFlowRequest, CreateChannelFlowResponse } from "../models/models_0"; +import type { CreateChannelFlowRequest, CreateChannelFlowResponse } from "../models/models_0"; import { CreateChannelFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelMembershipCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelMembershipCommand.ts index f219e63b6532b..91b136a5c60ba 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelMembershipCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelMembershipCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChannelMembershipRequest, CreateChannelMembershipResponse } from "../models/models_0"; +import type { CreateChannelMembershipRequest, CreateChannelMembershipResponse } from "../models/models_0"; import { CreateChannelMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/CreateChannelModeratorCommand.ts b/clients/client-chime-sdk-messaging/src/commands/CreateChannelModeratorCommand.ts index 8551e64d3caef..bb6344fc2de3f 100644 --- a/clients/client-chime-sdk-messaging/src/commands/CreateChannelModeratorCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/CreateChannelModeratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChannelModeratorRequest, CreateChannelModeratorResponse } from "../models/models_0"; +import type { CreateChannelModeratorRequest, CreateChannelModeratorResponse } from "../models/models_0"; import { CreateChannelModerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelBanCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelBanCommand.ts index ce36cf65d535f..84f0e6bbc5162 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelBanCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelBanCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChannelBanRequest } from "../models/models_0"; +import type { DeleteChannelBanRequest } from "../models/models_0"; import { DeleteChannelBan } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelCommand.ts index 236ef41fac260..5f91932a0f448 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChannelRequest } from "../models/models_0"; +import type { DeleteChannelRequest } from "../models/models_0"; import { DeleteChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelFlowCommand.ts index 6e546309986df..f714544d9ea6e 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelFlowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChannelFlowRequest } from "../models/models_0"; +import type { DeleteChannelFlowRequest } from "../models/models_0"; import { DeleteChannelFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMembershipCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMembershipCommand.ts index a33bcc79ee9ae..7b68d46bd3008 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMembershipCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMembershipCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChannelMembershipRequest } from "../models/models_0"; +import type { DeleteChannelMembershipRequest } from "../models/models_0"; import { DeleteChannelMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMessageCommand.ts index d19bfe88ba4f6..aefecc0698313 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelMessageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChannelMessageRequest } from "../models/models_0"; +import type { DeleteChannelMessageRequest } from "../models/models_0"; import { DeleteChannelMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelModeratorCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelModeratorCommand.ts index 065767fb99007..543a82a44ccc6 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteChannelModeratorCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteChannelModeratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChannelModeratorRequest } from "../models/models_0"; +import type { DeleteChannelModeratorRequest } from "../models/models_0"; import { DeleteChannelModerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DeleteMessagingStreamingConfigurationsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DeleteMessagingStreamingConfigurationsCommand.ts index f1425b24505a1..96002d16de596 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DeleteMessagingStreamingConfigurationsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DeleteMessagingStreamingConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMessagingStreamingConfigurationsRequest } from "../models/models_0"; +import type { DeleteMessagingStreamingConfigurationsRequest } from "../models/models_0"; import { DeleteMessagingStreamingConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelBanCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelBanCommand.ts index a64711a3d2e6b..8bf5c8ba85a98 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelBanCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelBanCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeChannelBanRequest, DescribeChannelBanResponse } from "../models/models_0"; +import type { DescribeChannelBanRequest, DescribeChannelBanResponse } from "../models/models_0"; import { DescribeChannelBan } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelCommand.ts index 054330583a8cf..7e8dea5af816b 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0"; +import type { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0"; import { DescribeChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelFlowCommand.ts index e544f6929349d..066f99602044e 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelFlowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeChannelFlowRequest, DescribeChannelFlowResponse } from "../models/models_0"; +import type { DescribeChannelFlowRequest, DescribeChannelFlowResponse } from "../models/models_0"; import { DescribeChannelFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipCommand.ts index 1f87c357286e2..c7ac2c8bb89fe 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeChannelMembershipRequest, DescribeChannelMembershipResponse } from "../models/models_0"; +import type { DescribeChannelMembershipRequest, DescribeChannelMembershipResponse } from "../models/models_0"; import { DescribeChannelMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipForAppInstanceUserCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipForAppInstanceUserCommand.ts index e239e9aad884f..03371d69532e8 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipForAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelMembershipForAppInstanceUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeChannelMembershipForAppInstanceUserRequest, DescribeChannelMembershipForAppInstanceUserResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratedByAppInstanceUserCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratedByAppInstanceUserCommand.ts index 62aedc521fa07..0e27f1e8e12e1 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratedByAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratedByAppInstanceUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeChannelModeratedByAppInstanceUserRequest, DescribeChannelModeratedByAppInstanceUserResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratorCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratorCommand.ts index da17b16153db8..81700eaeb0715 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratorCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DescribeChannelModeratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeChannelModeratorRequest, DescribeChannelModeratorResponse } from "../models/models_0"; +import type { DescribeChannelModeratorRequest, DescribeChannelModeratorResponse } from "../models/models_0"; import { DescribeChannelModerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/DisassociateChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/DisassociateChannelFlowCommand.ts index 002cf983f297b..04c5583fe4a7c 100644 --- a/clients/client-chime-sdk-messaging/src/commands/DisassociateChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/DisassociateChannelFlowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateChannelFlowRequest } from "../models/models_0"; +import type { DisassociateChannelFlowRequest } from "../models/models_0"; import { DisassociateChannelFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/GetChannelMembershipPreferencesCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetChannelMembershipPreferencesCommand.ts index 8e5121c4163e0..b8fc08f0b5b64 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetChannelMembershipPreferencesCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetChannelMembershipPreferencesCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChannelMembershipPreferencesRequest, GetChannelMembershipPreferencesResponse } from "../models/models_0"; +import type { + GetChannelMembershipPreferencesRequest, + GetChannelMembershipPreferencesResponse, +} from "../models/models_0"; import { GetChannelMembershipPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageCommand.ts index 9cd2190cd77f4..d40a40bcbc8ba 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChannelMessageRequest, GetChannelMessageResponse } from "../models/models_0"; +import type { GetChannelMessageRequest, GetChannelMessageResponse } from "../models/models_0"; import { GetChannelMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageStatusCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageStatusCommand.ts index e78ac6a9742cd..647b90149f8c1 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageStatusCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetChannelMessageStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChannelMessageStatusRequest, GetChannelMessageStatusResponse } from "../models/models_0"; +import type { GetChannelMessageStatusRequest, GetChannelMessageStatusResponse } from "../models/models_0"; import { GetChannelMessageStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/GetMessagingSessionEndpointCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetMessagingSessionEndpointCommand.ts index 6919c7360048d..636930fce9251 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetMessagingSessionEndpointCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetMessagingSessionEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMessagingSessionEndpointRequest, GetMessagingSessionEndpointResponse } from "../models/models_0"; +import type { GetMessagingSessionEndpointRequest, GetMessagingSessionEndpointResponse } from "../models/models_0"; import { GetMessagingSessionEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/GetMessagingStreamingConfigurationsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/GetMessagingStreamingConfigurationsCommand.ts index 8c5f80233e6e4..470dd25c48f76 100644 --- a/clients/client-chime-sdk-messaging/src/commands/GetMessagingStreamingConfigurationsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/GetMessagingStreamingConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetMessagingStreamingConfigurationsRequest, GetMessagingStreamingConfigurationsResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelBansCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelBansCommand.ts index bfe1966cd334f..ccce169c4bd50 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelBansCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelBansCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelBansRequest, ListChannelBansResponse } from "../models/models_0"; +import type { ListChannelBansRequest, ListChannelBansResponse } from "../models/models_0"; import { ListChannelBans } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelFlowsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelFlowsCommand.ts index c180799bac4dc..8b5b92a3bea36 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelFlowsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelFlowsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelFlowsRequest, ListChannelFlowsResponse } from "../models/models_0"; +import type { ListChannelFlowsRequest, ListChannelFlowsResponse } from "../models/models_0"; import { ListChannelFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsCommand.ts index c39e12dd4c17f..ee405cc20a4f0 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelMembershipsRequest, ListChannelMembershipsResponse } from "../models/models_0"; +import type { ListChannelMembershipsRequest, ListChannelMembershipsResponse } from "../models/models_0"; import { ListChannelMemberships } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsForAppInstanceUserCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsForAppInstanceUserCommand.ts index b2b5696cc3331..d7bce421ddf02 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsForAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelMembershipsForAppInstanceUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListChannelMembershipsForAppInstanceUserRequest, ListChannelMembershipsForAppInstanceUserResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelMessagesCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelMessagesCommand.ts index 2448ee99f536e..d5bc5af1bc87d 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelMessagesCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelMessagesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelMessagesRequest, ListChannelMessagesResponse } from "../models/models_0"; +import type { ListChannelMessagesRequest, ListChannelMessagesResponse } from "../models/models_0"; import { ListChannelMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelModeratorsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelModeratorsCommand.ts index cf37658da63c9..7618311402e0a 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelModeratorsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelModeratorsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelModeratorsRequest, ListChannelModeratorsResponse } from "../models/models_0"; +import type { ListChannelModeratorsRequest, ListChannelModeratorsResponse } from "../models/models_0"; import { ListChannelModerators } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelsAssociatedWithChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelsAssociatedWithChannelFlowCommand.ts index 36a2f19c5310b..d7b3ab4d141d8 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelsAssociatedWithChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelsAssociatedWithChannelFlowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListChannelsAssociatedWithChannelFlowRequest, ListChannelsAssociatedWithChannelFlowResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelsCommand.ts index 8a3a34f4ff38b..74b0bc3b1e016 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; +import type { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/ListChannelsModeratedByAppInstanceUserCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListChannelsModeratedByAppInstanceUserCommand.ts index 6ab08b6f2a35f..8e11ab3fca63f 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListChannelsModeratedByAppInstanceUserCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListChannelsModeratedByAppInstanceUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListChannelsModeratedByAppInstanceUserRequest, ListChannelsModeratedByAppInstanceUserResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-messaging/src/commands/ListSubChannelsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListSubChannelsCommand.ts index 26b579865d03d..272daf3837f7a 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListSubChannelsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListSubChannelsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubChannelsRequest, ListSubChannelsResponse } from "../models/models_0"; +import type { ListSubChannelsRequest, ListSubChannelsResponse } from "../models/models_0"; import { ListSubChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-messaging/src/commands/ListTagsForResourceCommand.ts index f5b2786837305..c267291b013aa 100644 --- a/clients/client-chime-sdk-messaging/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/PutChannelExpirationSettingsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/PutChannelExpirationSettingsCommand.ts index 373dd52e70ef4..edc7f6cefd8a9 100644 --- a/clients/client-chime-sdk-messaging/src/commands/PutChannelExpirationSettingsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/PutChannelExpirationSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutChannelExpirationSettingsRequest, PutChannelExpirationSettingsResponse } from "../models/models_0"; +import type { PutChannelExpirationSettingsRequest, PutChannelExpirationSettingsResponse } from "../models/models_0"; import { PutChannelExpirationSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/PutChannelMembershipPreferencesCommand.ts b/clients/client-chime-sdk-messaging/src/commands/PutChannelMembershipPreferencesCommand.ts index 7e57045557bfd..7f0a1c89e7ac3 100644 --- a/clients/client-chime-sdk-messaging/src/commands/PutChannelMembershipPreferencesCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/PutChannelMembershipPreferencesCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutChannelMembershipPreferencesRequest, PutChannelMembershipPreferencesResponse } from "../models/models_0"; +import type { + PutChannelMembershipPreferencesRequest, + PutChannelMembershipPreferencesResponse, +} from "../models/models_0"; import { PutChannelMembershipPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/PutMessagingStreamingConfigurationsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/PutMessagingStreamingConfigurationsCommand.ts index 5739f3b6e5cd0..23cdf5cd9232d 100644 --- a/clients/client-chime-sdk-messaging/src/commands/PutMessagingStreamingConfigurationsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/PutMessagingStreamingConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutMessagingStreamingConfigurationsRequest, PutMessagingStreamingConfigurationsResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-messaging/src/commands/RedactChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/RedactChannelMessageCommand.ts index 424158eeaea28..a0f80ef3c42ae 100644 --- a/clients/client-chime-sdk-messaging/src/commands/RedactChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/RedactChannelMessageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RedactChannelMessageRequest, RedactChannelMessageResponse } from "../models/models_0"; +import type { RedactChannelMessageRequest, RedactChannelMessageResponse } from "../models/models_0"; import { RedactChannelMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/SearchChannelsCommand.ts b/clients/client-chime-sdk-messaging/src/commands/SearchChannelsCommand.ts index 56964415be6ab..725d7aef47b4b 100644 --- a/clients/client-chime-sdk-messaging/src/commands/SearchChannelsCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/SearchChannelsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchChannelsRequest, SearchChannelsResponse } from "../models/models_0"; +import type { SearchChannelsRequest, SearchChannelsResponse } from "../models/models_0"; import { SearchChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/SendChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/SendChannelMessageCommand.ts index 06f0c8b53b257..9b4dc1df77e34 100644 --- a/clients/client-chime-sdk-messaging/src/commands/SendChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/SendChannelMessageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendChannelMessageRequest, SendChannelMessageResponse } from "../models/models_0"; +import type { SendChannelMessageRequest, SendChannelMessageResponse } from "../models/models_0"; import { SendChannelMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-messaging/src/commands/TagResourceCommand.ts index 1e2710615d7ea..64911edc52771 100644 --- a/clients/client-chime-sdk-messaging/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UntagResourceCommand.ts index cec6740053d87..fa0185c687395 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelCommand.ts index 94f0a990a0298..a887328e84ead 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; +import type { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; import { UpdateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelFlowCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelFlowCommand.ts index f573bfeab1116..b82ffac9b6d64 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelFlowCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelFlowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChannelFlowRequest, UpdateChannelFlowResponse } from "../models/models_0"; +import type { UpdateChannelFlowRequest, UpdateChannelFlowResponse } from "../models/models_0"; import { UpdateChannelFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelMessageCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelMessageCommand.ts index ccb6d4c632490..5cd84090b9d17 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelMessageCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelMessageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChannelMessageRequest, UpdateChannelMessageResponse } from "../models/models_0"; +import type { UpdateChannelMessageRequest, UpdateChannelMessageResponse } from "../models/models_0"; import { UpdateChannelMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelReadMarkerCommand.ts b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelReadMarkerCommand.ts index 1264a9d8a1322..bba4b88d8acaa 100644 --- a/clients/client-chime-sdk-messaging/src/commands/UpdateChannelReadMarkerCommand.ts +++ b/clients/client-chime-sdk-messaging/src/commands/UpdateChannelReadMarkerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ChimeSDKMessagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ChimeSDKMessagingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChannelReadMarkerRequest, UpdateChannelReadMarkerResponse } from "../models/models_0"; +import type { UpdateChannelReadMarkerRequest, UpdateChannelReadMarkerResponse } from "../models/models_0"; import { UpdateChannelReadMarker } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-messaging/src/endpoint/EndpointParameters.ts b/clients/client-chime-sdk-messaging/src/endpoint/EndpointParameters.ts index fef044477b780..eb0579393b4a5 100644 --- a/clients/client-chime-sdk-messaging/src/endpoint/EndpointParameters.ts +++ b/clients/client-chime-sdk-messaging/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-chime-sdk-messaging/src/endpoint/endpointResolver.ts b/clients/client-chime-sdk-messaging/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-chime-sdk-messaging/src/endpoint/endpointResolver.ts +++ b/clients/client-chime-sdk-messaging/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-chime-sdk-messaging/src/extensionConfiguration.ts b/clients/client-chime-sdk-messaging/src/extensionConfiguration.ts index 9e0bdd27e40f4..2a8a4f4bfbd5d 100644 --- a/clients/client-chime-sdk-messaging/src/extensionConfiguration.ts +++ b/clients/client-chime-sdk-messaging/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-chime-sdk-messaging/src/models/ChimeSDKMessagingServiceException.ts b/clients/client-chime-sdk-messaging/src/models/ChimeSDKMessagingServiceException.ts index d6e6dd92d69d3..a8999c948ac41 100644 --- a/clients/client-chime-sdk-messaging/src/models/ChimeSDKMessagingServiceException.ts +++ b/clients/client-chime-sdk-messaging/src/models/ChimeSDKMessagingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-chime-sdk-messaging/src/models/errors.ts b/clients/client-chime-sdk-messaging/src/models/errors.ts index 41f362e9d2ae2..c6f6203c7b492 100644 --- a/clients/client-chime-sdk-messaging/src/models/errors.ts +++ b/clients/client-chime-sdk-messaging/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ChimeSDKMessagingServiceException as __BaseException } from "./ChimeSDKMessagingServiceException"; import { ErrorCode } from "./enums"; diff --git a/clients/client-chime-sdk-messaging/src/pagination/Interfaces.ts b/clients/client-chime-sdk-messaging/src/pagination/Interfaces.ts index 4deeecff030fc..396ab0ab97f80 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/Interfaces.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListChannelBansPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListChannelBansPaginator.ts index 9cb259ef59285..a6bcff71ce402 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListChannelBansPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListChannelBansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListChannelFlowsPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListChannelFlowsPaginator.ts index f58e3b2abfb71..1ce82e3d3680b 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListChannelFlowsPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListChannelFlowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListChannelMembershipsForAppInstanceUserPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListChannelMembershipsForAppInstanceUserPaginator.ts index 54701ef96316a..bc0d81868562e 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListChannelMembershipsForAppInstanceUserPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListChannelMembershipsForAppInstanceUserPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListChannelMembershipsPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListChannelMembershipsPaginator.ts index f5983765d6dc7..c089feb736209 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListChannelMembershipsPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListChannelMembershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListChannelMessagesPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListChannelMessagesPaginator.ts index 54a4fb521bbe9..4a972bb0dfe5a 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListChannelMessagesPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListChannelMessagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListChannelModeratorsPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListChannelModeratorsPaginator.ts index 68296e96744c2..ca748050aa5dc 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListChannelModeratorsPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListChannelModeratorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListChannelsAssociatedWithChannelFlowPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListChannelsAssociatedWithChannelFlowPaginator.ts index f6af39488e4d1..db58a3303a59c 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListChannelsAssociatedWithChannelFlowPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListChannelsAssociatedWithChannelFlowPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListChannelsModeratedByAppInstanceUserPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListChannelsModeratedByAppInstanceUserPaginator.ts index 9d8e0a21ff47a..1bd88ad56c3b4 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListChannelsModeratedByAppInstanceUserPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListChannelsModeratedByAppInstanceUserPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListChannelsPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListChannelsPaginator.ts index 5ef3b30841cca..7da6fb60b7e18 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/ListSubChannelsPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/ListSubChannelsPaginator.ts index 02fcc203fb0f3..6f2e062e97276 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/ListSubChannelsPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/ListSubChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/pagination/SearchChannelsPaginator.ts b/clients/client-chime-sdk-messaging/src/pagination/SearchChannelsPaginator.ts index 5947eae62b9b1..dede89378fe88 100644 --- a/clients/client-chime-sdk-messaging/src/pagination/SearchChannelsPaginator.ts +++ b/clients/client-chime-sdk-messaging/src/pagination/SearchChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKMessagingClient } from "../ChimeSDKMessagingClient"; import { diff --git a/clients/client-chime-sdk-messaging/src/runtimeConfig.browser.ts b/clients/client-chime-sdk-messaging/src/runtimeConfig.browser.ts index 75bbca6129e87..5023e6542587a 100644 --- a/clients/client-chime-sdk-messaging/src/runtimeConfig.browser.ts +++ b/clients/client-chime-sdk-messaging/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKMessagingClientConfig } from "./ChimeSDKMessagingClient"; + +import type { ChimeSDKMessagingClientConfig } from "./ChimeSDKMessagingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-chime-sdk-messaging/src/runtimeConfig.native.ts b/clients/client-chime-sdk-messaging/src/runtimeConfig.native.ts index 272d338aa3938..40f0217e87683 100644 --- a/clients/client-chime-sdk-messaging/src/runtimeConfig.native.ts +++ b/clients/client-chime-sdk-messaging/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ChimeSDKMessagingClientConfig } from "./ChimeSDKMessagingClient"; +import type { ChimeSDKMessagingClientConfig } from "./ChimeSDKMessagingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-chime-sdk-messaging/src/runtimeConfig.shared.ts b/clients/client-chime-sdk-messaging/src/runtimeConfig.shared.ts index 9c094834774d7..82ad66c5f37c3 100644 --- a/clients/client-chime-sdk-messaging/src/runtimeConfig.shared.ts +++ b/clients/client-chime-sdk-messaging/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultChimeSDKMessagingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ChimeSDKMessagingClientConfig } from "./ChimeSDKMessagingClient"; +import type { ChimeSDKMessagingClientConfig } from "./ChimeSDKMessagingClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-chime-sdk-messaging/src/runtimeConfig.ts b/clients/client-chime-sdk-messaging/src/runtimeConfig.ts index b7293d45f67b0..c50c0a2647a02 100644 --- a/clients/client-chime-sdk-messaging/src/runtimeConfig.ts +++ b/clients/client-chime-sdk-messaging/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKMessagingClientConfig } from "./ChimeSDKMessagingClient"; + +import type { ChimeSDKMessagingClientConfig } from "./ChimeSDKMessagingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-chime-sdk-messaging/src/runtimeExtensions.ts b/clients/client-chime-sdk-messaging/src/runtimeExtensions.ts index aba98e849fdd3..913c8ddbadb1c 100644 --- a/clients/client-chime-sdk-messaging/src/runtimeExtensions.ts +++ b/clients/client-chime-sdk-messaging/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ChimeSDKMessagingExtensionConfiguration } from "./extensionConfiguration"; +import type { ChimeSDKMessagingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-chime-sdk-messaging/src/schemas/schemas_0.ts b/clients/client-chime-sdk-messaging/src/schemas/schemas_0.ts index 43323cb1337ba..9121b26736242 100644 --- a/clients/client-chime-sdk-messaging/src/schemas/schemas_0.ts +++ b/clients/client-chime-sdk-messaging/src/schemas/schemas_0.ts @@ -329,7 +329,7 @@ const n0 = "com.amazonaws.chimesdkmessaging"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-chime-sdk-voice/package.json b/clients/client-chime-sdk-voice/package.json index 99558c12a6d75..792cae5a53570 100644 --- a/clients/client-chime-sdk-voice/package.json +++ b/clients/client-chime-sdk-voice/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-chime-sdk-voice/src/ChimeSDKVoice.ts b/clients/client-chime-sdk-voice/src/ChimeSDKVoice.ts index d65ae917f2e54..ae8e89a219b3a 100644 --- a/clients/client-chime-sdk-voice/src/ChimeSDKVoice.ts +++ b/clients/client-chime-sdk-voice/src/ChimeSDKVoice.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ChimeSDKVoiceClient, ChimeSDKVoiceClientConfig } from "./ChimeSDKVoiceClient"; +import { ChimeSDKVoiceClient } from "./ChimeSDKVoiceClient"; import { AssociatePhoneNumbersWithVoiceConnectorCommand, AssociatePhoneNumbersWithVoiceConnectorCommandInput, diff --git a/clients/client-chime-sdk-voice/src/ChimeSDKVoiceClient.ts b/clients/client-chime-sdk-voice/src/ChimeSDKVoiceClient.ts index d24964f98e751..d5f96fd735b12 100644 --- a/clients/client-chime-sdk-voice/src/ChimeSDKVoiceClient.ts +++ b/clients/client-chime-sdk-voice/src/ChimeSDKVoiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultChimeSDKVoiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -376,7 +385,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-chime-sdk-voice/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-chime-sdk-voice/src/auth/httpAuthExtensionConfiguration.ts index 8f0260cf7fcd3..5dfd0fdd0209a 100644 --- a/clients/client-chime-sdk-voice/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-chime-sdk-voice/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ChimeSDKVoiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ChimeSDKVoiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-chime-sdk-voice/src/auth/httpAuthSchemeProvider.ts b/clients/client-chime-sdk-voice/src/auth/httpAuthSchemeProvider.ts index aca01814ca1ef..0b80fc515d8cb 100644 --- a/clients/client-chime-sdk-voice/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-chime-sdk-voice/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ChimeSDKVoiceClientConfig, ChimeSDKVoiceClientResolvedConfig } from "../ChimeSDKVoiceClient"; +import { type ChimeSDKVoiceClientResolvedConfig, ChimeSDKVoiceClientConfig } from "../ChimeSDKVoiceClient"; /** * @internal diff --git a/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorCommand.ts index 6fd43dcc72d27..b668fe171cb4c 100644 --- a/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociatePhoneNumbersWithVoiceConnectorRequest, AssociatePhoneNumbersWithVoiceConnectorResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand.ts index 3816fcfb223c3..1a31e9aa559d4 100644 --- a/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/AssociatePhoneNumbersWithVoiceConnectorGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociatePhoneNumbersWithVoiceConnectorGroupRequest, AssociatePhoneNumbersWithVoiceConnectorGroupResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/BatchDeletePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/BatchDeletePhoneNumberCommand.ts index 2955ab6e34f34..97727e7927e3d 100644 --- a/clients/client-chime-sdk-voice/src/commands/BatchDeletePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/BatchDeletePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeletePhoneNumberRequest, BatchDeletePhoneNumberResponse } from "../models/models_0"; +import type { BatchDeletePhoneNumberRequest, BatchDeletePhoneNumberResponse } from "../models/models_0"; import { BatchDeletePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/BatchUpdatePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/BatchUpdatePhoneNumberCommand.ts index 2c650e47a77c5..1d9dd4e740996 100644 --- a/clients/client-chime-sdk-voice/src/commands/BatchUpdatePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/BatchUpdatePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdatePhoneNumberRequest, BatchUpdatePhoneNumberResponse } from "../models/models_0"; +import type { BatchUpdatePhoneNumberRequest, BatchUpdatePhoneNumberResponse } from "../models/models_0"; import { BatchUpdatePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/CreatePhoneNumberOrderCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreatePhoneNumberOrderCommand.ts index 25512cae9ab37..f8fe0e5e1a5af 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreatePhoneNumberOrderCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreatePhoneNumberOrderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePhoneNumberOrderRequest, CreatePhoneNumberOrderResponse } from "../models/models_0"; +import type { CreatePhoneNumberOrderRequest, CreatePhoneNumberOrderResponse } from "../models/models_0"; import { CreatePhoneNumberOrder } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/CreateProxySessionCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateProxySessionCommand.ts index 6b0e75cf939a3..0830fd9abdeff 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateProxySessionCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateProxySessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProxySessionRequest, CreateProxySessionResponse } from "../models/models_0"; +import type { CreateProxySessionRequest, CreateProxySessionResponse } from "../models/models_0"; import { CreateProxySession } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCallCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCallCommand.ts index 1d368438d68fd..4eb56d4254b26 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCallCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCallCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSipMediaApplicationCallRequest, CreateSipMediaApplicationCallResponse } from "../models/models_0"; +import type { CreateSipMediaApplicationCallRequest, CreateSipMediaApplicationCallResponse } from "../models/models_0"; import { CreateSipMediaApplicationCall } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCommand.ts index f32374d60c755..0c5aa67c1854d 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateSipMediaApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSipMediaApplicationRequest, CreateSipMediaApplicationResponse } from "../models/models_0"; +import type { CreateSipMediaApplicationRequest, CreateSipMediaApplicationResponse } from "../models/models_0"; import { CreateSipMediaApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/CreateSipRuleCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateSipRuleCommand.ts index e51ffcf451ef3..a5d7447ad2630 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateSipRuleCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateSipRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSipRuleRequest, CreateSipRuleResponse } from "../models/models_0"; +import type { CreateSipRuleRequest, CreateSipRuleResponse } from "../models/models_0"; import { CreateSipRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorCommand.ts index ef0f828392af6..f2072fdc4a776 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVoiceConnectorRequest, CreateVoiceConnectorResponse } from "../models/models_0"; +import type { CreateVoiceConnectorRequest, CreateVoiceConnectorResponse } from "../models/models_0"; import { CreateVoiceConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorGroupCommand.ts index cc526669f8b46..2db9b180af13a 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateVoiceConnectorGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVoiceConnectorGroupRequest, CreateVoiceConnectorGroupResponse } from "../models/models_0"; +import type { CreateVoiceConnectorGroupRequest, CreateVoiceConnectorGroupResponse } from "../models/models_0"; import { CreateVoiceConnectorGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileCommand.ts index c47eca84c6146..86f8254680456 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVoiceProfileRequest, CreateVoiceProfileResponse } from "../models/models_0"; +import type { CreateVoiceProfileRequest, CreateVoiceProfileResponse } from "../models/models_0"; import { CreateVoiceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileDomainCommand.ts b/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileDomainCommand.ts index 73d496389980e..0eb35e1dafba2 100644 --- a/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileDomainCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/CreateVoiceProfileDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVoiceProfileDomainRequest, CreateVoiceProfileDomainResponse } from "../models/models_0"; +import type { CreateVoiceProfileDomainRequest, CreateVoiceProfileDomainResponse } from "../models/models_0"; import { CreateVoiceProfileDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeletePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeletePhoneNumberCommand.ts index 2709a991f7aa6..7c3dac95b6d1c 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeletePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeletePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePhoneNumberRequest } from "../models/models_0"; +import type { DeletePhoneNumberRequest } from "../models/models_0"; import { DeletePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteProxySessionCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteProxySessionCommand.ts index 2cd4d02f1469f..4665b55577f3d 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteProxySessionCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteProxySessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProxySessionRequest } from "../models/models_0"; +import type { DeleteProxySessionRequest } from "../models/models_0"; import { DeleteProxySession } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteSipMediaApplicationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteSipMediaApplicationCommand.ts index 80f74391fe2e5..be820dbc363de 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteSipMediaApplicationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteSipMediaApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSipMediaApplicationRequest } from "../models/models_0"; +import type { DeleteSipMediaApplicationRequest } from "../models/models_0"; import { DeleteSipMediaApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteSipRuleCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteSipRuleCommand.ts index 8cb378c4e6c1b..9e071ca9e0da0 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteSipRuleCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteSipRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSipRuleRequest } from "../models/models_0"; +import type { DeleteSipRuleRequest } from "../models/models_0"; import { DeleteSipRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorCommand.ts index 53fc6f61ec774..ae3826b5e2a86 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceConnectorRequest } from "../models/models_0"; +import type { DeleteVoiceConnectorRequest } from "../models/models_0"; import { DeleteVoiceConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand.ts index 31dea77327ae2..712a6a8f50ca9 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorEmergencyCallingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceConnectorEmergencyCallingConfigurationRequest } from "../models/models_0"; +import type { DeleteVoiceConnectorEmergencyCallingConfigurationRequest } from "../models/models_0"; import { DeleteVoiceConnectorEmergencyCallingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.ts index 7c01e1e4aefbf..6c37491141356 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorExternalSystemsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceConnectorExternalSystemsConfigurationRequest } from "../models/models_0"; +import type { DeleteVoiceConnectorExternalSystemsConfigurationRequest } from "../models/models_0"; import { DeleteVoiceConnectorExternalSystemsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorGroupCommand.ts index 6901bd7b6b904..1bf4f31df2274 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceConnectorGroupRequest } from "../models/models_0"; +import type { DeleteVoiceConnectorGroupRequest } from "../models/models_0"; import { DeleteVoiceConnectorGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorOriginationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorOriginationCommand.ts index c17c4d73c9f82..b1cc32a3a6cc5 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorOriginationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorOriginationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceConnectorOriginationRequest } from "../models/models_0"; +import type { DeleteVoiceConnectorOriginationRequest } from "../models/models_0"; import { DeleteVoiceConnectorOrigination } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorProxyCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorProxyCommand.ts index aafcdd6520558..e0c2ec10299d1 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorProxyCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorProxyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceConnectorProxyRequest } from "../models/models_0"; +import type { DeleteVoiceConnectorProxyRequest } from "../models/models_0"; import { DeleteVoiceConnectorProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorStreamingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorStreamingConfigurationCommand.ts index 36be21597e943..e2196bb29f800 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorStreamingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorStreamingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceConnectorStreamingConfigurationRequest } from "../models/models_0"; +import type { DeleteVoiceConnectorStreamingConfigurationRequest } from "../models/models_0"; import { DeleteVoiceConnectorStreamingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCommand.ts index b7269e7fd0347..c08369a2044c2 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceConnectorTerminationRequest } from "../models/models_0"; +import type { DeleteVoiceConnectorTerminationRequest } from "../models/models_0"; import { DeleteVoiceConnectorTermination } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCredentialsCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCredentialsCommand.ts index a5ad622a7d12b..c642e3ebf2143 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCredentialsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceConnectorTerminationCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceConnectorTerminationCredentialsRequest } from "../models/models_0"; +import type { DeleteVoiceConnectorTerminationCredentialsRequest } from "../models/models_0"; import { DeleteVoiceConnectorTerminationCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileCommand.ts index 02fa473455144..cc0138f9b154f 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceProfileRequest } from "../models/models_0"; +import type { DeleteVoiceProfileRequest } from "../models/models_0"; import { DeleteVoiceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileDomainCommand.ts b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileDomainCommand.ts index de4b0884b94d3..f4e275b65d80e 100644 --- a/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileDomainCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DeleteVoiceProfileDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceProfileDomainRequest } from "../models/models_0"; +import type { DeleteVoiceProfileDomainRequest } from "../models/models_0"; import { DeleteVoiceProfileDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorCommand.ts index 66b1020f25ce1..ea5ec60e288a3 100644 --- a/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociatePhoneNumbersFromVoiceConnectorRequest, DisassociatePhoneNumbersFromVoiceConnectorResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorGroupCommand.ts index ca292ee08870b..45d489f414a31 100644 --- a/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/DisassociatePhoneNumbersFromVoiceConnectorGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociatePhoneNumbersFromVoiceConnectorGroupRequest, DisassociatePhoneNumbersFromVoiceConnectorGroupResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/GetGlobalSettingsCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetGlobalSettingsCommand.ts index aae818983101c..b852f4a673853 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetGlobalSettingsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetGlobalSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGlobalSettingsResponse } from "../models/models_0"; +import type { GetGlobalSettingsResponse } from "../models/models_0"; import { GetGlobalSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberCommand.ts index 1bb59c12dafad..56ab52c340d22 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPhoneNumberRequest, GetPhoneNumberResponse } from "../models/models_0"; +import type { GetPhoneNumberRequest, GetPhoneNumberResponse } from "../models/models_0"; import { GetPhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberOrderCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberOrderCommand.ts index 9c825b92f2dd6..16aae54bdd3f6 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberOrderCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberOrderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPhoneNumberOrderRequest, GetPhoneNumberOrderResponse } from "../models/models_0"; +import type { GetPhoneNumberOrderRequest, GetPhoneNumberOrderResponse } from "../models/models_0"; import { GetPhoneNumberOrder } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberSettingsCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberSettingsCommand.ts index 84e198d308383..0debbf1f0f6a2 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberSettingsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetPhoneNumberSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPhoneNumberSettingsResponse } from "../models/models_0"; +import type { GetPhoneNumberSettingsResponse } from "../models/models_0"; import { GetPhoneNumberSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetProxySessionCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetProxySessionCommand.ts index 502482a701bba..de1bb5b84e699 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetProxySessionCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetProxySessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProxySessionRequest, GetProxySessionResponse } from "../models/models_0"; +import type { GetProxySessionRequest, GetProxySessionResponse } from "../models/models_0"; import { GetProxySession } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationAlexaSkillConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationAlexaSkillConfigurationCommand.ts index 83642d145f6cf..29122880635bf 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationAlexaSkillConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationAlexaSkillConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetSipMediaApplicationAlexaSkillConfigurationRequest, GetSipMediaApplicationAlexaSkillConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationCommand.ts index a048f4f92ca70..bb386e3636625 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSipMediaApplicationRequest, GetSipMediaApplicationResponse } from "../models/models_0"; +import type { GetSipMediaApplicationRequest, GetSipMediaApplicationResponse } from "../models/models_0"; import { GetSipMediaApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationLoggingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationLoggingConfigurationCommand.ts index defee3aecac31..6557a504bc96c 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationLoggingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSipMediaApplicationLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetSipMediaApplicationLoggingConfigurationRequest, GetSipMediaApplicationLoggingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/GetSipRuleCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSipRuleCommand.ts index 16117a56cd0e8..b8797e0856a9a 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSipRuleCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSipRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSipRuleRequest, GetSipRuleResponse } from "../models/models_0"; +import type { GetSipRuleRequest, GetSipRuleResponse } from "../models/models_0"; import { GetSipRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetSpeakerSearchTaskCommand.ts index 6d73a06094fd7..b4d8a9b156389 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetSpeakerSearchTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSpeakerSearchTaskRequest, GetSpeakerSearchTaskResponse } from "../models/models_0"; +import type { GetSpeakerSearchTaskRequest, GetSpeakerSearchTaskResponse } from "../models/models_0"; import { GetSpeakerSearchTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorCommand.ts index 87e584131e04f..f9bf2a9f142a8 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceConnectorRequest, GetVoiceConnectorResponse } from "../models/models_0"; +import type { GetVoiceConnectorRequest, GetVoiceConnectorResponse } from "../models/models_0"; import { GetVoiceConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorEmergencyCallingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorEmergencyCallingConfigurationCommand.ts index 33d84c143c4be..21ae2cf7d3423 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorEmergencyCallingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorEmergencyCallingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetVoiceConnectorEmergencyCallingConfigurationRequest, GetVoiceConnectorEmergencyCallingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.ts index 5052b5a056a5b..1f5b846fa6c8b 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorExternalSystemsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetVoiceConnectorExternalSystemsConfigurationRequest, GetVoiceConnectorExternalSystemsConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorGroupCommand.ts index cd262ab07b555..7831a9c67b6d2 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceConnectorGroupRequest, GetVoiceConnectorGroupResponse } from "../models/models_0"; +import type { GetVoiceConnectorGroupRequest, GetVoiceConnectorGroupResponse } from "../models/models_0"; import { GetVoiceConnectorGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorLoggingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorLoggingConfigurationCommand.ts index 887f079b01db3..0d03e23d94795 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorLoggingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetVoiceConnectorLoggingConfigurationRequest, GetVoiceConnectorLoggingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorOriginationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorOriginationCommand.ts index e73492703633e..3a458ad011c68 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorOriginationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorOriginationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceConnectorOriginationRequest, GetVoiceConnectorOriginationResponse } from "../models/models_0"; +import type { GetVoiceConnectorOriginationRequest, GetVoiceConnectorOriginationResponse } from "../models/models_0"; import { GetVoiceConnectorOrigination } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorProxyCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorProxyCommand.ts index 3d4b6e51a48e9..f2c22906fe4a6 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorProxyCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorProxyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceConnectorProxyRequest, GetVoiceConnectorProxyResponse } from "../models/models_0"; +import type { GetVoiceConnectorProxyRequest, GetVoiceConnectorProxyResponse } from "../models/models_0"; import { GetVoiceConnectorProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorStreamingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorStreamingConfigurationCommand.ts index 249642a9adf71..597c97f670d0e 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorStreamingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorStreamingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetVoiceConnectorStreamingConfigurationRequest, GetVoiceConnectorStreamingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationCommand.ts index 7a9fe6fb64a4a..77f827a8ca199 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceConnectorTerminationRequest, GetVoiceConnectorTerminationResponse } from "../models/models_0"; +import type { GetVoiceConnectorTerminationRequest, GetVoiceConnectorTerminationResponse } from "../models/models_0"; import { GetVoiceConnectorTermination } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationHealthCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationHealthCommand.ts index 0fcbcf5f5a242..3b176dada5f39 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationHealthCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceConnectorTerminationHealthCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetVoiceConnectorTerminationHealthRequest, GetVoiceConnectorTerminationHealthResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileCommand.ts index dc3d0825e5261..9286e55a3c665 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceProfileRequest, GetVoiceProfileResponse } from "../models/models_0"; +import type { GetVoiceProfileRequest, GetVoiceProfileResponse } from "../models/models_0"; import { GetVoiceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileDomainCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileDomainCommand.ts index 596816702777b..ee66bdc05ee8a 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileDomainCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceProfileDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceProfileDomainRequest, GetVoiceProfileDomainResponse } from "../models/models_0"; +import type { GetVoiceProfileDomainRequest, GetVoiceProfileDomainResponse } from "../models/models_0"; import { GetVoiceProfileDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/GetVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/GetVoiceToneAnalysisTaskCommand.ts index 88611d24bcdab..36c64bc22843e 100644 --- a/clients/client-chime-sdk-voice/src/commands/GetVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/GetVoiceToneAnalysisTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceToneAnalysisTaskRequest, GetVoiceToneAnalysisTaskResponse } from "../models/models_0"; +import type { GetVoiceToneAnalysisTaskRequest, GetVoiceToneAnalysisTaskResponse } from "../models/models_0"; import { GetVoiceToneAnalysisTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListAvailableVoiceConnectorRegionsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListAvailableVoiceConnectorRegionsCommand.ts index a055c482ae099..b6276fefb16d2 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListAvailableVoiceConnectorRegionsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListAvailableVoiceConnectorRegionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAvailableVoiceConnectorRegionsResponse } from "../models/models_0"; +import type { ListAvailableVoiceConnectorRegionsResponse } from "../models/models_0"; import { ListAvailableVoiceConnectorRegions } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListPhoneNumberOrdersCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListPhoneNumberOrdersCommand.ts index 419123c776cc6..6f7869f4d8ab8 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListPhoneNumberOrdersCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListPhoneNumberOrdersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPhoneNumberOrdersRequest, ListPhoneNumberOrdersResponse } from "../models/models_0"; +import type { ListPhoneNumberOrdersRequest, ListPhoneNumberOrdersResponse } from "../models/models_0"; import { ListPhoneNumberOrders } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListPhoneNumbersCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListPhoneNumbersCommand.ts index 239d4019275ed..95052b5b8a889 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListPhoneNumbersCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListPhoneNumbersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPhoneNumbersRequest, ListPhoneNumbersResponse } from "../models/models_0"; +import type { ListPhoneNumbersRequest, ListPhoneNumbersResponse } from "../models/models_0"; import { ListPhoneNumbers } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListProxySessionsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListProxySessionsCommand.ts index 2415edb71f3de..1c5abf0f34956 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListProxySessionsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListProxySessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProxySessionsRequest, ListProxySessionsResponse } from "../models/models_0"; +import type { ListProxySessionsRequest, ListProxySessionsResponse } from "../models/models_0"; import { ListProxySessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListSipMediaApplicationsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListSipMediaApplicationsCommand.ts index 461bbf8d81f88..574c2acd2332f 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListSipMediaApplicationsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListSipMediaApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSipMediaApplicationsRequest, ListSipMediaApplicationsResponse } from "../models/models_0"; +import type { ListSipMediaApplicationsRequest, ListSipMediaApplicationsResponse } from "../models/models_0"; import { ListSipMediaApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListSipRulesCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListSipRulesCommand.ts index de5ef80ec9b18..89ffa5d0e478b 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListSipRulesCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListSipRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSipRulesRequest, ListSipRulesResponse } from "../models/models_0"; +import type { ListSipRulesRequest, ListSipRulesResponse } from "../models/models_0"; import { ListSipRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListSupportedPhoneNumberCountriesCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListSupportedPhoneNumberCountriesCommand.ts index 6f41c74d7db7d..daea598855da2 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListSupportedPhoneNumberCountriesCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListSupportedPhoneNumberCountriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListSupportedPhoneNumberCountriesRequest, ListSupportedPhoneNumberCountriesResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/ListTagsForResourceCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListTagsForResourceCommand.ts index c021c38e01ff1..616111616d7ef 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorGroupsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorGroupsCommand.ts index 9a6fce03f8f1f..1720160441fb2 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorGroupsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVoiceConnectorGroupsRequest, ListVoiceConnectorGroupsResponse } from "../models/models_0"; +import type { ListVoiceConnectorGroupsRequest, ListVoiceConnectorGroupsResponse } from "../models/models_0"; import { ListVoiceConnectorGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorTerminationCredentialsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorTerminationCredentialsCommand.ts index 71b507df21320..a10ac0cfa7560 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorTerminationCredentialsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorTerminationCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListVoiceConnectorTerminationCredentialsRequest, ListVoiceConnectorTerminationCredentialsResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorsCommand.ts index 93debe7dbc1e4..997313c8b5a6f 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceConnectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVoiceConnectorsRequest, ListVoiceConnectorsResponse } from "../models/models_0"; +import type { ListVoiceConnectorsRequest, ListVoiceConnectorsResponse } from "../models/models_0"; import { ListVoiceConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceProfileDomainsCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceProfileDomainsCommand.ts index 24a523ae84c45..d8bc46053ec57 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceProfileDomainsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceProfileDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVoiceProfileDomainsRequest, ListVoiceProfileDomainsResponse } from "../models/models_0"; +import type { ListVoiceProfileDomainsRequest, ListVoiceProfileDomainsResponse } from "../models/models_0"; import { ListVoiceProfileDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ListVoiceProfilesCommand.ts b/clients/client-chime-sdk-voice/src/commands/ListVoiceProfilesCommand.ts index ee1cd382bba9e..094211e5b17dc 100644 --- a/clients/client-chime-sdk-voice/src/commands/ListVoiceProfilesCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ListVoiceProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVoiceProfilesRequest, ListVoiceProfilesResponse } from "../models/models_0"; +import type { ListVoiceProfilesRequest, ListVoiceProfilesResponse } from "../models/models_0"; import { ListVoiceProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationAlexaSkillConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationAlexaSkillConfigurationCommand.ts index 9bb381c1c4bcc..42dda0be45c61 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationAlexaSkillConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationAlexaSkillConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutSipMediaApplicationAlexaSkillConfigurationRequest, PutSipMediaApplicationAlexaSkillConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationLoggingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationLoggingConfigurationCommand.ts index 5a1dcd0bdae29..2d038704df78b 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationLoggingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutSipMediaApplicationLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutSipMediaApplicationLoggingConfigurationRequest, PutSipMediaApplicationLoggingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorEmergencyCallingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorEmergencyCallingConfigurationCommand.ts index ff13bbd33c17f..d3b0a499b777f 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorEmergencyCallingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorEmergencyCallingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutVoiceConnectorEmergencyCallingConfigurationRequest, PutVoiceConnectorEmergencyCallingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.ts index 16e41ae4af3ba..e8ada9183be61 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorExternalSystemsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutVoiceConnectorExternalSystemsConfigurationRequest, PutVoiceConnectorExternalSystemsConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorLoggingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorLoggingConfigurationCommand.ts index c3ee77c1dd950..f57effaf6895c 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorLoggingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutVoiceConnectorLoggingConfigurationRequest, PutVoiceConnectorLoggingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorOriginationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorOriginationCommand.ts index f195477345d27..78c85e4538dc2 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorOriginationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorOriginationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutVoiceConnectorOriginationRequest, PutVoiceConnectorOriginationResponse } from "../models/models_0"; +import type { PutVoiceConnectorOriginationRequest, PutVoiceConnectorOriginationResponse } from "../models/models_0"; import { PutVoiceConnectorOrigination } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorProxyCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorProxyCommand.ts index fa20e8f34e7f0..6e4a6979adf01 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorProxyCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorProxyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutVoiceConnectorProxyRequest, PutVoiceConnectorProxyResponse } from "../models/models_0"; +import type { PutVoiceConnectorProxyRequest, PutVoiceConnectorProxyResponse } from "../models/models_0"; import { PutVoiceConnectorProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorStreamingConfigurationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorStreamingConfigurationCommand.ts index ef5668a0cefc4..391df8e7a1942 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorStreamingConfigurationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorStreamingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutVoiceConnectorStreamingConfigurationRequest, PutVoiceConnectorStreamingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCommand.ts index 706e1280ad2ae..c5fae3f21c758 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutVoiceConnectorTerminationRequest, PutVoiceConnectorTerminationResponse } from "../models/models_0"; +import type { PutVoiceConnectorTerminationRequest, PutVoiceConnectorTerminationResponse } from "../models/models_0"; import { PutVoiceConnectorTermination } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCredentialsCommand.ts b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCredentialsCommand.ts index aecf05a800193..0097d84bc8e90 100644 --- a/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCredentialsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/PutVoiceConnectorTerminationCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutVoiceConnectorTerminationCredentialsRequest } from "../models/models_0"; +import type { PutVoiceConnectorTerminationCredentialsRequest } from "../models/models_0"; import { PutVoiceConnectorTerminationCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/RestorePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/RestorePhoneNumberCommand.ts index 488cc8089f5ba..25ff81095ebc3 100644 --- a/clients/client-chime-sdk-voice/src/commands/RestorePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/RestorePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestorePhoneNumberRequest, RestorePhoneNumberResponse } from "../models/models_0"; +import type { RestorePhoneNumberRequest, RestorePhoneNumberResponse } from "../models/models_0"; import { RestorePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/SearchAvailablePhoneNumbersCommand.ts b/clients/client-chime-sdk-voice/src/commands/SearchAvailablePhoneNumbersCommand.ts index 0198402e983fb..c2933acc8dd29 100644 --- a/clients/client-chime-sdk-voice/src/commands/SearchAvailablePhoneNumbersCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/SearchAvailablePhoneNumbersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchAvailablePhoneNumbersRequest, SearchAvailablePhoneNumbersResponse } from "../models/models_0"; +import type { SearchAvailablePhoneNumbersRequest, SearchAvailablePhoneNumbersResponse } from "../models/models_0"; import { SearchAvailablePhoneNumbers } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/StartSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/StartSpeakerSearchTaskCommand.ts index a96bfb026c5f7..0e7f16098c74b 100644 --- a/clients/client-chime-sdk-voice/src/commands/StartSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/StartSpeakerSearchTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSpeakerSearchTaskRequest, StartSpeakerSearchTaskResponse } from "../models/models_0"; +import type { StartSpeakerSearchTaskRequest, StartSpeakerSearchTaskResponse } from "../models/models_0"; import { StartSpeakerSearchTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/StartVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/StartVoiceToneAnalysisTaskCommand.ts index 2ff60c2fc5405..0e66d8321e5e1 100644 --- a/clients/client-chime-sdk-voice/src/commands/StartVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/StartVoiceToneAnalysisTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartVoiceToneAnalysisTaskRequest, StartVoiceToneAnalysisTaskResponse } from "../models/models_0"; +import type { StartVoiceToneAnalysisTaskRequest, StartVoiceToneAnalysisTaskResponse } from "../models/models_0"; import { StartVoiceToneAnalysisTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/StopSpeakerSearchTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/StopSpeakerSearchTaskCommand.ts index 798dc5a52f894..0c4b77a899964 100644 --- a/clients/client-chime-sdk-voice/src/commands/StopSpeakerSearchTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/StopSpeakerSearchTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopSpeakerSearchTaskRequest } from "../models/models_0"; +import type { StopSpeakerSearchTaskRequest } from "../models/models_0"; import { StopSpeakerSearchTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/StopVoiceToneAnalysisTaskCommand.ts b/clients/client-chime-sdk-voice/src/commands/StopVoiceToneAnalysisTaskCommand.ts index 1f2f206efa1be..aa78f9f3cfce3 100644 --- a/clients/client-chime-sdk-voice/src/commands/StopVoiceToneAnalysisTaskCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/StopVoiceToneAnalysisTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopVoiceToneAnalysisTaskRequest } from "../models/models_0"; +import type { StopVoiceToneAnalysisTaskRequest } from "../models/models_0"; import { StopVoiceToneAnalysisTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/TagResourceCommand.ts b/clients/client-chime-sdk-voice/src/commands/TagResourceCommand.ts index aea913a02c509..63aa78889b676 100644 --- a/clients/client-chime-sdk-voice/src/commands/TagResourceCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UntagResourceCommand.ts b/clients/client-chime-sdk-voice/src/commands/UntagResourceCommand.ts index 6a48cb3f445d6..520c2917e2de4 100644 --- a/clients/client-chime-sdk-voice/src/commands/UntagResourceCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateGlobalSettingsCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateGlobalSettingsCommand.ts index 836198de0ea8a..ea43b266dd219 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateGlobalSettingsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateGlobalSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlobalSettingsRequest } from "../models/models_0"; +import type { UpdateGlobalSettingsRequest } from "../models/models_0"; import { UpdateGlobalSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberCommand.ts index 5c260a3770cd6..f4ca99b959deb 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePhoneNumberRequest, UpdatePhoneNumberResponse } from "../models/models_0"; +import type { UpdatePhoneNumberRequest, UpdatePhoneNumberResponse } from "../models/models_0"; import { UpdatePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberSettingsCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberSettingsCommand.ts index 9581882a3d27c..cd9ed884be6b7 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberSettingsCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdatePhoneNumberSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePhoneNumberSettingsRequest } from "../models/models_0"; +import type { UpdatePhoneNumberSettingsRequest } from "../models/models_0"; import { UpdatePhoneNumberSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateProxySessionCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateProxySessionCommand.ts index 08cd32a20d4cf..2a3e7408e89e8 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateProxySessionCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateProxySessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProxySessionRequest, UpdateProxySessionResponse } from "../models/models_0"; +import type { UpdateProxySessionRequest, UpdateProxySessionResponse } from "../models/models_0"; import { UpdateProxySession } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCallCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCallCommand.ts index ae6db4c1f5357..222d35cb6510f 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCallCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCallCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSipMediaApplicationCallRequest, UpdateSipMediaApplicationCallResponse } from "../models/models_0"; +import type { UpdateSipMediaApplicationCallRequest, UpdateSipMediaApplicationCallResponse } from "../models/models_0"; import { UpdateSipMediaApplicationCall } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCommand.ts index 652d0581f5773..f58d7db46b33c 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateSipMediaApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSipMediaApplicationRequest, UpdateSipMediaApplicationResponse } from "../models/models_0"; +import type { UpdateSipMediaApplicationRequest, UpdateSipMediaApplicationResponse } from "../models/models_0"; import { UpdateSipMediaApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateSipRuleCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateSipRuleCommand.ts index c763ad9e87273..7708b1d1a8fd7 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateSipRuleCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateSipRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSipRuleRequest, UpdateSipRuleResponse } from "../models/models_0"; +import type { UpdateSipRuleRequest, UpdateSipRuleResponse } from "../models/models_0"; import { UpdateSipRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorCommand.ts index c2a2e84c2c244..2f901d98282da 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVoiceConnectorRequest, UpdateVoiceConnectorResponse } from "../models/models_0"; +import type { UpdateVoiceConnectorRequest, UpdateVoiceConnectorResponse } from "../models/models_0"; import { UpdateVoiceConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorGroupCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorGroupCommand.ts index 0d263bb0cd5c2..0267a2bd74f75 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorGroupCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceConnectorGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVoiceConnectorGroupRequest, UpdateVoiceConnectorGroupResponse } from "../models/models_0"; +import type { UpdateVoiceConnectorGroupRequest, UpdateVoiceConnectorGroupResponse } from "../models/models_0"; import { UpdateVoiceConnectorGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileCommand.ts index 98910e1ffea7f..b7796c440dbed 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVoiceProfileRequest, UpdateVoiceProfileResponse } from "../models/models_0"; +import type { UpdateVoiceProfileRequest, UpdateVoiceProfileResponse } from "../models/models_0"; import { UpdateVoiceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileDomainCommand.ts b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileDomainCommand.ts index 685cfafd30b8b..1e440976be041 100644 --- a/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileDomainCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/UpdateVoiceProfileDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVoiceProfileDomainRequest, UpdateVoiceProfileDomainResponse } from "../models/models_0"; +import type { UpdateVoiceProfileDomainRequest, UpdateVoiceProfileDomainResponse } from "../models/models_0"; import { UpdateVoiceProfileDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/commands/ValidateE911AddressCommand.ts b/clients/client-chime-sdk-voice/src/commands/ValidateE911AddressCommand.ts index bfc11ab0b84cc..76fa62502ef58 100644 --- a/clients/client-chime-sdk-voice/src/commands/ValidateE911AddressCommand.ts +++ b/clients/client-chime-sdk-voice/src/commands/ValidateE911AddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeSDKVoiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidateE911AddressRequest, ValidateE911AddressResponse } from "../models/models_0"; +import type { ValidateE911AddressRequest, ValidateE911AddressResponse } from "../models/models_0"; import { ValidateE911Address } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime-sdk-voice/src/endpoint/EndpointParameters.ts b/clients/client-chime-sdk-voice/src/endpoint/EndpointParameters.ts index fef044477b780..eb0579393b4a5 100644 --- a/clients/client-chime-sdk-voice/src/endpoint/EndpointParameters.ts +++ b/clients/client-chime-sdk-voice/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-chime-sdk-voice/src/endpoint/endpointResolver.ts b/clients/client-chime-sdk-voice/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-chime-sdk-voice/src/endpoint/endpointResolver.ts +++ b/clients/client-chime-sdk-voice/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-chime-sdk-voice/src/extensionConfiguration.ts b/clients/client-chime-sdk-voice/src/extensionConfiguration.ts index cc856b66b68cb..e779642a85b3f 100644 --- a/clients/client-chime-sdk-voice/src/extensionConfiguration.ts +++ b/clients/client-chime-sdk-voice/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-chime-sdk-voice/src/models/ChimeSDKVoiceServiceException.ts b/clients/client-chime-sdk-voice/src/models/ChimeSDKVoiceServiceException.ts index fc91324ae93be..4efc17a86ee6c 100644 --- a/clients/client-chime-sdk-voice/src/models/ChimeSDKVoiceServiceException.ts +++ b/clients/client-chime-sdk-voice/src/models/ChimeSDKVoiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-chime-sdk-voice/src/models/errors.ts b/clients/client-chime-sdk-voice/src/models/errors.ts index 6c6a1ebf48401..1efabfe344159 100644 --- a/clients/client-chime-sdk-voice/src/models/errors.ts +++ b/clients/client-chime-sdk-voice/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ChimeSDKVoiceServiceException as __BaseException } from "./ChimeSDKVoiceServiceException"; import { ErrorCode } from "./enums"; diff --git a/clients/client-chime-sdk-voice/src/pagination/Interfaces.ts b/clients/client-chime-sdk-voice/src/pagination/Interfaces.ts index 80171802c6658..ec1714db2cc76 100644 --- a/clients/client-chime-sdk-voice/src/pagination/Interfaces.ts +++ b/clients/client-chime-sdk-voice/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; diff --git a/clients/client-chime-sdk-voice/src/pagination/ListPhoneNumberOrdersPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/ListPhoneNumberOrdersPaginator.ts index 1b05c78c228b4..bd20715580410 100644 --- a/clients/client-chime-sdk-voice/src/pagination/ListPhoneNumberOrdersPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/ListPhoneNumberOrdersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/pagination/ListPhoneNumbersPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/ListPhoneNumbersPaginator.ts index 807a5b33814ad..db07e261368ba 100644 --- a/clients/client-chime-sdk-voice/src/pagination/ListPhoneNumbersPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/ListPhoneNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/pagination/ListProxySessionsPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/ListProxySessionsPaginator.ts index 14449249110c6..21730f9ebab85 100644 --- a/clients/client-chime-sdk-voice/src/pagination/ListProxySessionsPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/ListProxySessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/pagination/ListSipMediaApplicationsPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/ListSipMediaApplicationsPaginator.ts index 6f834721db9cb..395d1867b01ff 100644 --- a/clients/client-chime-sdk-voice/src/pagination/ListSipMediaApplicationsPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/ListSipMediaApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/pagination/ListSipRulesPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/ListSipRulesPaginator.ts index be8a1fd5f3238..24919a2a0b07e 100644 --- a/clients/client-chime-sdk-voice/src/pagination/ListSipRulesPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/ListSipRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/pagination/ListVoiceConnectorGroupsPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/ListVoiceConnectorGroupsPaginator.ts index df3ded424969a..ae44f6968f009 100644 --- a/clients/client-chime-sdk-voice/src/pagination/ListVoiceConnectorGroupsPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/ListVoiceConnectorGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/pagination/ListVoiceConnectorsPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/ListVoiceConnectorsPaginator.ts index ceb34e893e6ea..f10497e6bfd6a 100644 --- a/clients/client-chime-sdk-voice/src/pagination/ListVoiceConnectorsPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/ListVoiceConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/pagination/ListVoiceProfileDomainsPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/ListVoiceProfileDomainsPaginator.ts index c5f67d1173fa6..8e89b164ddec7 100644 --- a/clients/client-chime-sdk-voice/src/pagination/ListVoiceProfileDomainsPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/ListVoiceProfileDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/pagination/ListVoiceProfilesPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/ListVoiceProfilesPaginator.ts index 6c93e80366679..29a0a7366f2b1 100644 --- a/clients/client-chime-sdk-voice/src/pagination/ListVoiceProfilesPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/ListVoiceProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/pagination/SearchAvailablePhoneNumbersPaginator.ts b/clients/client-chime-sdk-voice/src/pagination/SearchAvailablePhoneNumbersPaginator.ts index 94028316a71e9..ac4fe7deaa512 100644 --- a/clients/client-chime-sdk-voice/src/pagination/SearchAvailablePhoneNumbersPaginator.ts +++ b/clients/client-chime-sdk-voice/src/pagination/SearchAvailablePhoneNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeSDKVoiceClient } from "../ChimeSDKVoiceClient"; import { diff --git a/clients/client-chime-sdk-voice/src/runtimeConfig.browser.ts b/clients/client-chime-sdk-voice/src/runtimeConfig.browser.ts index 4b4b780286b93..1d2f1537ef9ee 100644 --- a/clients/client-chime-sdk-voice/src/runtimeConfig.browser.ts +++ b/clients/client-chime-sdk-voice/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKVoiceClientConfig } from "./ChimeSDKVoiceClient"; + +import type { ChimeSDKVoiceClientConfig } from "./ChimeSDKVoiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-chime-sdk-voice/src/runtimeConfig.native.ts b/clients/client-chime-sdk-voice/src/runtimeConfig.native.ts index 0aad377e68573..35c414b1af0aa 100644 --- a/clients/client-chime-sdk-voice/src/runtimeConfig.native.ts +++ b/clients/client-chime-sdk-voice/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ChimeSDKVoiceClientConfig } from "./ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientConfig } from "./ChimeSDKVoiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-chime-sdk-voice/src/runtimeConfig.shared.ts b/clients/client-chime-sdk-voice/src/runtimeConfig.shared.ts index 9d882b15bce2e..9081c03f9f2f4 100644 --- a/clients/client-chime-sdk-voice/src/runtimeConfig.shared.ts +++ b/clients/client-chime-sdk-voice/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultChimeSDKVoiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ChimeSDKVoiceClientConfig } from "./ChimeSDKVoiceClient"; +import type { ChimeSDKVoiceClientConfig } from "./ChimeSDKVoiceClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-chime-sdk-voice/src/runtimeConfig.ts b/clients/client-chime-sdk-voice/src/runtimeConfig.ts index 621bef71e743c..c44ce90e59613 100644 --- a/clients/client-chime-sdk-voice/src/runtimeConfig.ts +++ b/clients/client-chime-sdk-voice/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeSDKVoiceClientConfig } from "./ChimeSDKVoiceClient"; + +import type { ChimeSDKVoiceClientConfig } from "./ChimeSDKVoiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-chime-sdk-voice/src/runtimeExtensions.ts b/clients/client-chime-sdk-voice/src/runtimeExtensions.ts index bbbe0308bb6fc..55050e988b51f 100644 --- a/clients/client-chime-sdk-voice/src/runtimeExtensions.ts +++ b/clients/client-chime-sdk-voice/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ChimeSDKVoiceExtensionConfiguration } from "./extensionConfiguration"; +import type { ChimeSDKVoiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-chime-sdk-voice/src/schemas/schemas_0.ts b/clients/client-chime-sdk-voice/src/schemas/schemas_0.ts index 4fa7b883804c5..d9f8927250927 100644 --- a/clients/client-chime-sdk-voice/src/schemas/schemas_0.ts +++ b/clients/client-chime-sdk-voice/src/schemas/schemas_0.ts @@ -554,7 +554,7 @@ const n0 = "com.amazonaws.chimesdkvoice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-chime/package.json b/clients/client-chime/package.json index de27b5a3b442a..60b8d93196be7 100644 --- a/clients/client-chime/package.json +++ b/clients/client-chime/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-chime/src/Chime.ts b/clients/client-chime/src/Chime.ts index 0a0405186cff4..7d7f012c556cb 100644 --- a/clients/client-chime/src/Chime.ts +++ b/clients/client-chime/src/Chime.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { ChimeClient, ChimeClientConfig } from "./ChimeClient"; +import { ChimeClient } from "./ChimeClient"; import { AssociatePhoneNumberWithUserCommand, AssociatePhoneNumberWithUserCommandInput, diff --git a/clients/client-chime/src/ChimeClient.ts b/clients/client-chime/src/ChimeClient.ts index b2e733770bfae..8f34f88932051 100644 --- a/clients/client-chime/src/ChimeClient.ts +++ b/clients/client-chime/src/ChimeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultChimeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -210,7 +219,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-chime/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-chime/src/auth/httpAuthExtensionConfiguration.ts index 5ebdb013776c9..f457d6851850f 100644 --- a/clients/client-chime/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-chime/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ChimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ChimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-chime/src/auth/httpAuthSchemeProvider.ts b/clients/client-chime/src/auth/httpAuthSchemeProvider.ts index 576d08d8c312e..c7609d517257a 100644 --- a/clients/client-chime/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-chime/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ChimeClientConfig, ChimeClientResolvedConfig } from "../ChimeClient"; +import { type ChimeClientResolvedConfig, ChimeClientConfig } from "../ChimeClient"; /** * @internal diff --git a/clients/client-chime/src/commands/AssociatePhoneNumberWithUserCommand.ts b/clients/client-chime/src/commands/AssociatePhoneNumberWithUserCommand.ts index 3edd757dfce97..c7b8ebb388cf9 100644 --- a/clients/client-chime/src/commands/AssociatePhoneNumberWithUserCommand.ts +++ b/clients/client-chime/src/commands/AssociatePhoneNumberWithUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociatePhoneNumberWithUserRequest, AssociatePhoneNumberWithUserResponse } from "../models/models_0"; +import type { AssociatePhoneNumberWithUserRequest, AssociatePhoneNumberWithUserResponse } from "../models/models_0"; import { AssociatePhoneNumberWithUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/AssociateSigninDelegateGroupsWithAccountCommand.ts b/clients/client-chime/src/commands/AssociateSigninDelegateGroupsWithAccountCommand.ts index fdf7053912dc7..27ddcadd0ab36 100644 --- a/clients/client-chime/src/commands/AssociateSigninDelegateGroupsWithAccountCommand.ts +++ b/clients/client-chime/src/commands/AssociateSigninDelegateGroupsWithAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateSigninDelegateGroupsWithAccountRequest, AssociateSigninDelegateGroupsWithAccountResponse, } from "../models/models_0"; diff --git a/clients/client-chime/src/commands/BatchCreateRoomMembershipCommand.ts b/clients/client-chime/src/commands/BatchCreateRoomMembershipCommand.ts index 1a87d5a3fabe8..fa54f47348094 100644 --- a/clients/client-chime/src/commands/BatchCreateRoomMembershipCommand.ts +++ b/clients/client-chime/src/commands/BatchCreateRoomMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateRoomMembershipRequest, BatchCreateRoomMembershipResponse } from "../models/models_0"; +import type { BatchCreateRoomMembershipRequest, BatchCreateRoomMembershipResponse } from "../models/models_0"; import { BatchCreateRoomMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/BatchDeletePhoneNumberCommand.ts b/clients/client-chime/src/commands/BatchDeletePhoneNumberCommand.ts index 567c47dec6666..946ca3e72f191 100644 --- a/clients/client-chime/src/commands/BatchDeletePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/BatchDeletePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeletePhoneNumberRequest, BatchDeletePhoneNumberResponse } from "../models/models_0"; +import type { BatchDeletePhoneNumberRequest, BatchDeletePhoneNumberResponse } from "../models/models_0"; import { BatchDeletePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/BatchSuspendUserCommand.ts b/clients/client-chime/src/commands/BatchSuspendUserCommand.ts index eb3874bfd3aae..7536237051976 100644 --- a/clients/client-chime/src/commands/BatchSuspendUserCommand.ts +++ b/clients/client-chime/src/commands/BatchSuspendUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchSuspendUserRequest, BatchSuspendUserResponse } from "../models/models_0"; +import type { BatchSuspendUserRequest, BatchSuspendUserResponse } from "../models/models_0"; import { BatchSuspendUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/BatchUnsuspendUserCommand.ts b/clients/client-chime/src/commands/BatchUnsuspendUserCommand.ts index 76dffd87076f0..6f34caf42ca7f 100644 --- a/clients/client-chime/src/commands/BatchUnsuspendUserCommand.ts +++ b/clients/client-chime/src/commands/BatchUnsuspendUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUnsuspendUserRequest, BatchUnsuspendUserResponse } from "../models/models_0"; +import type { BatchUnsuspendUserRequest, BatchUnsuspendUserResponse } from "../models/models_0"; import { BatchUnsuspendUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/BatchUpdatePhoneNumberCommand.ts b/clients/client-chime/src/commands/BatchUpdatePhoneNumberCommand.ts index 086d19a9b62d0..75b7350d8db4d 100644 --- a/clients/client-chime/src/commands/BatchUpdatePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/BatchUpdatePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdatePhoneNumberRequest, BatchUpdatePhoneNumberResponse } from "../models/models_0"; +import type { BatchUpdatePhoneNumberRequest, BatchUpdatePhoneNumberResponse } from "../models/models_0"; import { BatchUpdatePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/BatchUpdateUserCommand.ts b/clients/client-chime/src/commands/BatchUpdateUserCommand.ts index 817378254e369..b3abf4b0195a6 100644 --- a/clients/client-chime/src/commands/BatchUpdateUserCommand.ts +++ b/clients/client-chime/src/commands/BatchUpdateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateUserRequest, BatchUpdateUserResponse } from "../models/models_0"; +import type { BatchUpdateUserRequest, BatchUpdateUserResponse } from "../models/models_0"; import { BatchUpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/CreateAccountCommand.ts b/clients/client-chime/src/commands/CreateAccountCommand.ts index 9fc2616d34391..a86a8ef030b8b 100644 --- a/clients/client-chime/src/commands/CreateAccountCommand.ts +++ b/clients/client-chime/src/commands/CreateAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccountRequest, CreateAccountResponse } from "../models/models_0"; +import type { CreateAccountRequest, CreateAccountResponse } from "../models/models_0"; import { CreateAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/CreateBotCommand.ts b/clients/client-chime/src/commands/CreateBotCommand.ts index 20b8dc934c135..617e4c0aedf7c 100644 --- a/clients/client-chime/src/commands/CreateBotCommand.ts +++ b/clients/client-chime/src/commands/CreateBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBotRequest, CreateBotResponse } from "../models/models_0"; +import type { CreateBotRequest, CreateBotResponse } from "../models/models_0"; import { CreateBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/CreateMeetingDialOutCommand.ts b/clients/client-chime/src/commands/CreateMeetingDialOutCommand.ts index d146da575c05c..8f105e9c48d3b 100644 --- a/clients/client-chime/src/commands/CreateMeetingDialOutCommand.ts +++ b/clients/client-chime/src/commands/CreateMeetingDialOutCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMeetingDialOutRequest, CreateMeetingDialOutResponse } from "../models/models_0"; +import type { CreateMeetingDialOutRequest, CreateMeetingDialOutResponse } from "../models/models_0"; import { CreateMeetingDialOut } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/CreatePhoneNumberOrderCommand.ts b/clients/client-chime/src/commands/CreatePhoneNumberOrderCommand.ts index c206c1e8080fe..9dceabd49ce2b 100644 --- a/clients/client-chime/src/commands/CreatePhoneNumberOrderCommand.ts +++ b/clients/client-chime/src/commands/CreatePhoneNumberOrderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePhoneNumberOrderRequest, CreatePhoneNumberOrderResponse } from "../models/models_0"; +import type { CreatePhoneNumberOrderRequest, CreatePhoneNumberOrderResponse } from "../models/models_0"; import { CreatePhoneNumberOrder } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/CreateRoomCommand.ts b/clients/client-chime/src/commands/CreateRoomCommand.ts index 9360f41455c38..e9c401c0b508e 100644 --- a/clients/client-chime/src/commands/CreateRoomCommand.ts +++ b/clients/client-chime/src/commands/CreateRoomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRoomRequest, CreateRoomResponse } from "../models/models_0"; +import type { CreateRoomRequest, CreateRoomResponse } from "../models/models_0"; import { CreateRoom } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/CreateRoomMembershipCommand.ts b/clients/client-chime/src/commands/CreateRoomMembershipCommand.ts index 3069792022e4c..49702d5bb4d6a 100644 --- a/clients/client-chime/src/commands/CreateRoomMembershipCommand.ts +++ b/clients/client-chime/src/commands/CreateRoomMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRoomMembershipRequest, CreateRoomMembershipResponse } from "../models/models_0"; +import type { CreateRoomMembershipRequest, CreateRoomMembershipResponse } from "../models/models_0"; import { CreateRoomMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/CreateUserCommand.ts b/clients/client-chime/src/commands/CreateUserCommand.ts index 7474106583dc8..c255537f62f9b 100644 --- a/clients/client-chime/src/commands/CreateUserCommand.ts +++ b/clients/client-chime/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/DeleteAccountCommand.ts b/clients/client-chime/src/commands/DeleteAccountCommand.ts index d510381bdb1ff..a35fc1309c80a 100644 --- a/clients/client-chime/src/commands/DeleteAccountCommand.ts +++ b/clients/client-chime/src/commands/DeleteAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountRequest, DeleteAccountResponse } from "../models/models_0"; +import type { DeleteAccountRequest, DeleteAccountResponse } from "../models/models_0"; import { DeleteAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/DeleteEventsConfigurationCommand.ts b/clients/client-chime/src/commands/DeleteEventsConfigurationCommand.ts index bb006632f65b0..beadf07d4ec38 100644 --- a/clients/client-chime/src/commands/DeleteEventsConfigurationCommand.ts +++ b/clients/client-chime/src/commands/DeleteEventsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventsConfigurationRequest } from "../models/models_0"; +import type { DeleteEventsConfigurationRequest } from "../models/models_0"; import { DeleteEventsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/DeletePhoneNumberCommand.ts b/clients/client-chime/src/commands/DeletePhoneNumberCommand.ts index ff85814c64b13..1852011e3984a 100644 --- a/clients/client-chime/src/commands/DeletePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/DeletePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePhoneNumberRequest } from "../models/models_0"; +import type { DeletePhoneNumberRequest } from "../models/models_0"; import { DeletePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/DeleteRoomCommand.ts b/clients/client-chime/src/commands/DeleteRoomCommand.ts index f6554ab5ee10f..332f8d6a65b77 100644 --- a/clients/client-chime/src/commands/DeleteRoomCommand.ts +++ b/clients/client-chime/src/commands/DeleteRoomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRoomRequest } from "../models/models_0"; +import type { DeleteRoomRequest } from "../models/models_0"; import { DeleteRoom } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/DeleteRoomMembershipCommand.ts b/clients/client-chime/src/commands/DeleteRoomMembershipCommand.ts index af9bf6dcba7e0..e141a1c6cabb3 100644 --- a/clients/client-chime/src/commands/DeleteRoomMembershipCommand.ts +++ b/clients/client-chime/src/commands/DeleteRoomMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRoomMembershipRequest } from "../models/models_0"; +import type { DeleteRoomMembershipRequest } from "../models/models_0"; import { DeleteRoomMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/DisassociatePhoneNumberFromUserCommand.ts b/clients/client-chime/src/commands/DisassociatePhoneNumberFromUserCommand.ts index 44b5fc9707a00..9d7f02093065c 100644 --- a/clients/client-chime/src/commands/DisassociatePhoneNumberFromUserCommand.ts +++ b/clients/client-chime/src/commands/DisassociatePhoneNumberFromUserCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociatePhoneNumberFromUserRequest, DisassociatePhoneNumberFromUserResponse } from "../models/models_0"; +import type { + DisassociatePhoneNumberFromUserRequest, + DisassociatePhoneNumberFromUserResponse, +} from "../models/models_0"; import { DisassociatePhoneNumberFromUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/DisassociateSigninDelegateGroupsFromAccountCommand.ts b/clients/client-chime/src/commands/DisassociateSigninDelegateGroupsFromAccountCommand.ts index ff55d779326d8..bceba680c1107 100644 --- a/clients/client-chime/src/commands/DisassociateSigninDelegateGroupsFromAccountCommand.ts +++ b/clients/client-chime/src/commands/DisassociateSigninDelegateGroupsFromAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateSigninDelegateGroupsFromAccountRequest, DisassociateSigninDelegateGroupsFromAccountResponse, } from "../models/models_0"; diff --git a/clients/client-chime/src/commands/GetAccountCommand.ts b/clients/client-chime/src/commands/GetAccountCommand.ts index 3c8dd90ee0268..a7add92414328 100644 --- a/clients/client-chime/src/commands/GetAccountCommand.ts +++ b/clients/client-chime/src/commands/GetAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountRequest, GetAccountResponse } from "../models/models_0"; +import type { GetAccountRequest, GetAccountResponse } from "../models/models_0"; import { GetAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetAccountSettingsCommand.ts b/clients/client-chime/src/commands/GetAccountSettingsCommand.ts index 3ba039c6f16ac..79e91094b9aae 100644 --- a/clients/client-chime/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0"; +import type { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0"; import { GetAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetBotCommand.ts b/clients/client-chime/src/commands/GetBotCommand.ts index 7c75d55df8301..95746fff5e828 100644 --- a/clients/client-chime/src/commands/GetBotCommand.ts +++ b/clients/client-chime/src/commands/GetBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBotRequest, GetBotResponse } from "../models/models_0"; +import type { GetBotRequest, GetBotResponse } from "../models/models_0"; import { GetBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetEventsConfigurationCommand.ts b/clients/client-chime/src/commands/GetEventsConfigurationCommand.ts index 12a7f00961f27..549b9b03944c0 100644 --- a/clients/client-chime/src/commands/GetEventsConfigurationCommand.ts +++ b/clients/client-chime/src/commands/GetEventsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventsConfigurationRequest, GetEventsConfigurationResponse } from "../models/models_0"; +import type { GetEventsConfigurationRequest, GetEventsConfigurationResponse } from "../models/models_0"; import { GetEventsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetGlobalSettingsCommand.ts b/clients/client-chime/src/commands/GetGlobalSettingsCommand.ts index 0fe78b7c29641..fdae68a5628a2 100644 --- a/clients/client-chime/src/commands/GetGlobalSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetGlobalSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGlobalSettingsResponse } from "../models/models_0"; +import type { GetGlobalSettingsResponse } from "../models/models_0"; import { GetGlobalSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetPhoneNumberCommand.ts b/clients/client-chime/src/commands/GetPhoneNumberCommand.ts index dd7fbbd9a38dc..24c68cd918926 100644 --- a/clients/client-chime/src/commands/GetPhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/GetPhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPhoneNumberRequest, GetPhoneNumberResponse } from "../models/models_0"; +import type { GetPhoneNumberRequest, GetPhoneNumberResponse } from "../models/models_0"; import { GetPhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetPhoneNumberOrderCommand.ts b/clients/client-chime/src/commands/GetPhoneNumberOrderCommand.ts index c398dbd584ef8..ca0c9f3a573ea 100644 --- a/clients/client-chime/src/commands/GetPhoneNumberOrderCommand.ts +++ b/clients/client-chime/src/commands/GetPhoneNumberOrderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPhoneNumberOrderRequest, GetPhoneNumberOrderResponse } from "../models/models_0"; +import type { GetPhoneNumberOrderRequest, GetPhoneNumberOrderResponse } from "../models/models_0"; import { GetPhoneNumberOrder } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetPhoneNumberSettingsCommand.ts b/clients/client-chime/src/commands/GetPhoneNumberSettingsCommand.ts index 55eb73885743e..43b5a1e6e079c 100644 --- a/clients/client-chime/src/commands/GetPhoneNumberSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetPhoneNumberSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPhoneNumberSettingsResponse } from "../models/models_0"; +import type { GetPhoneNumberSettingsResponse } from "../models/models_0"; import { GetPhoneNumberSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetRetentionSettingsCommand.ts b/clients/client-chime/src/commands/GetRetentionSettingsCommand.ts index 24d7fc2fbd12d..24eac5d21807a 100644 --- a/clients/client-chime/src/commands/GetRetentionSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetRetentionSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRetentionSettingsRequest, GetRetentionSettingsResponse } from "../models/models_0"; +import type { GetRetentionSettingsRequest, GetRetentionSettingsResponse } from "../models/models_0"; import { GetRetentionSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetRoomCommand.ts b/clients/client-chime/src/commands/GetRoomCommand.ts index 9af3b75f31d06..454dce79a0b38 100644 --- a/clients/client-chime/src/commands/GetRoomCommand.ts +++ b/clients/client-chime/src/commands/GetRoomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRoomRequest, GetRoomResponse } from "../models/models_0"; +import type { GetRoomRequest, GetRoomResponse } from "../models/models_0"; import { GetRoom } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetUserCommand.ts b/clients/client-chime/src/commands/GetUserCommand.ts index f58c58d8eeda0..b62bd3f8c0aa9 100644 --- a/clients/client-chime/src/commands/GetUserCommand.ts +++ b/clients/client-chime/src/commands/GetUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserRequest, GetUserResponse } from "../models/models_0"; +import type { GetUserRequest, GetUserResponse } from "../models/models_0"; import { GetUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/GetUserSettingsCommand.ts b/clients/client-chime/src/commands/GetUserSettingsCommand.ts index 981a07579a87e..3cc380d4010c2 100644 --- a/clients/client-chime/src/commands/GetUserSettingsCommand.ts +++ b/clients/client-chime/src/commands/GetUserSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserSettingsRequest, GetUserSettingsResponse } from "../models/models_0"; +import type { GetUserSettingsRequest, GetUserSettingsResponse } from "../models/models_0"; import { GetUserSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/InviteUsersCommand.ts b/clients/client-chime/src/commands/InviteUsersCommand.ts index 61d7547d0f863..f9386bfcdfc77 100644 --- a/clients/client-chime/src/commands/InviteUsersCommand.ts +++ b/clients/client-chime/src/commands/InviteUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InviteUsersRequest, InviteUsersResponse } from "../models/models_0"; +import type { InviteUsersRequest, InviteUsersResponse } from "../models/models_0"; import { InviteUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/ListAccountsCommand.ts b/clients/client-chime/src/commands/ListAccountsCommand.ts index c74c73f35747d..ce4e3c7549189 100644 --- a/clients/client-chime/src/commands/ListAccountsCommand.ts +++ b/clients/client-chime/src/commands/ListAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0"; +import type { ListAccountsRequest, ListAccountsResponse } from "../models/models_0"; import { ListAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/ListBotsCommand.ts b/clients/client-chime/src/commands/ListBotsCommand.ts index 771d093aa28fe..4ae296467dd1d 100644 --- a/clients/client-chime/src/commands/ListBotsCommand.ts +++ b/clients/client-chime/src/commands/ListBotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBotsRequest, ListBotsResponse } from "../models/models_0"; +import type { ListBotsRequest, ListBotsResponse } from "../models/models_0"; import { ListBots } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/ListPhoneNumberOrdersCommand.ts b/clients/client-chime/src/commands/ListPhoneNumberOrdersCommand.ts index f802ef6032a5a..e246fd249281f 100644 --- a/clients/client-chime/src/commands/ListPhoneNumberOrdersCommand.ts +++ b/clients/client-chime/src/commands/ListPhoneNumberOrdersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPhoneNumberOrdersRequest, ListPhoneNumberOrdersResponse } from "../models/models_0"; +import type { ListPhoneNumberOrdersRequest, ListPhoneNumberOrdersResponse } from "../models/models_0"; import { ListPhoneNumberOrders } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/ListPhoneNumbersCommand.ts b/clients/client-chime/src/commands/ListPhoneNumbersCommand.ts index b3ec2de8a4cce..0f406d5e1bd1b 100644 --- a/clients/client-chime/src/commands/ListPhoneNumbersCommand.ts +++ b/clients/client-chime/src/commands/ListPhoneNumbersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPhoneNumbersRequest, ListPhoneNumbersResponse } from "../models/models_0"; +import type { ListPhoneNumbersRequest, ListPhoneNumbersResponse } from "../models/models_0"; import { ListPhoneNumbers } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/ListRoomMembershipsCommand.ts b/clients/client-chime/src/commands/ListRoomMembershipsCommand.ts index 8f6a8d9f48005..342fd430cdcbd 100644 --- a/clients/client-chime/src/commands/ListRoomMembershipsCommand.ts +++ b/clients/client-chime/src/commands/ListRoomMembershipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoomMembershipsRequest, ListRoomMembershipsResponse } from "../models/models_0"; +import type { ListRoomMembershipsRequest, ListRoomMembershipsResponse } from "../models/models_0"; import { ListRoomMemberships } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/ListRoomsCommand.ts b/clients/client-chime/src/commands/ListRoomsCommand.ts index 57e8d1e8f0b16..e8f8f7b7ed012 100644 --- a/clients/client-chime/src/commands/ListRoomsCommand.ts +++ b/clients/client-chime/src/commands/ListRoomsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoomsRequest, ListRoomsResponse } from "../models/models_0"; +import type { ListRoomsRequest, ListRoomsResponse } from "../models/models_0"; import { ListRooms } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/ListSupportedPhoneNumberCountriesCommand.ts b/clients/client-chime/src/commands/ListSupportedPhoneNumberCountriesCommand.ts index 3929c87beaafc..60ba94d5bd4f4 100644 --- a/clients/client-chime/src/commands/ListSupportedPhoneNumberCountriesCommand.ts +++ b/clients/client-chime/src/commands/ListSupportedPhoneNumberCountriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListSupportedPhoneNumberCountriesRequest, ListSupportedPhoneNumberCountriesResponse, } from "../models/models_0"; diff --git a/clients/client-chime/src/commands/ListUsersCommand.ts b/clients/client-chime/src/commands/ListUsersCommand.ts index 8e059ebe61b4d..65e17fa786e84 100644 --- a/clients/client-chime/src/commands/ListUsersCommand.ts +++ b/clients/client-chime/src/commands/ListUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_0"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_0"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/LogoutUserCommand.ts b/clients/client-chime/src/commands/LogoutUserCommand.ts index a519b9c1403ad..5b4f6420f3389 100644 --- a/clients/client-chime/src/commands/LogoutUserCommand.ts +++ b/clients/client-chime/src/commands/LogoutUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LogoutUserRequest, LogoutUserResponse } from "../models/models_0"; +import type { LogoutUserRequest, LogoutUserResponse } from "../models/models_0"; import { LogoutUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/PutEventsConfigurationCommand.ts b/clients/client-chime/src/commands/PutEventsConfigurationCommand.ts index cca3c6504cdd4..62dd205c39fa3 100644 --- a/clients/client-chime/src/commands/PutEventsConfigurationCommand.ts +++ b/clients/client-chime/src/commands/PutEventsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEventsConfigurationRequest, PutEventsConfigurationResponse } from "../models/models_0"; +import type { PutEventsConfigurationRequest, PutEventsConfigurationResponse } from "../models/models_0"; import { PutEventsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/PutRetentionSettingsCommand.ts b/clients/client-chime/src/commands/PutRetentionSettingsCommand.ts index 3d005893bf6dd..af70433560e24 100644 --- a/clients/client-chime/src/commands/PutRetentionSettingsCommand.ts +++ b/clients/client-chime/src/commands/PutRetentionSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRetentionSettingsRequest, PutRetentionSettingsResponse } from "../models/models_0"; +import type { PutRetentionSettingsRequest, PutRetentionSettingsResponse } from "../models/models_0"; import { PutRetentionSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/RedactConversationMessageCommand.ts b/clients/client-chime/src/commands/RedactConversationMessageCommand.ts index ad876e6759205..f0534be5b4f26 100644 --- a/clients/client-chime/src/commands/RedactConversationMessageCommand.ts +++ b/clients/client-chime/src/commands/RedactConversationMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RedactConversationMessageRequest, RedactConversationMessageResponse } from "../models/models_0"; +import type { RedactConversationMessageRequest, RedactConversationMessageResponse } from "../models/models_0"; import { RedactConversationMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/RedactRoomMessageCommand.ts b/clients/client-chime/src/commands/RedactRoomMessageCommand.ts index 4f305250dbd5c..861a678413297 100644 --- a/clients/client-chime/src/commands/RedactRoomMessageCommand.ts +++ b/clients/client-chime/src/commands/RedactRoomMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RedactRoomMessageRequest, RedactRoomMessageResponse } from "../models/models_0"; +import type { RedactRoomMessageRequest, RedactRoomMessageResponse } from "../models/models_0"; import { RedactRoomMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/RegenerateSecurityTokenCommand.ts b/clients/client-chime/src/commands/RegenerateSecurityTokenCommand.ts index 76c11e0efd42f..6a33c286e6072 100644 --- a/clients/client-chime/src/commands/RegenerateSecurityTokenCommand.ts +++ b/clients/client-chime/src/commands/RegenerateSecurityTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegenerateSecurityTokenRequest, RegenerateSecurityTokenResponse } from "../models/models_0"; +import type { RegenerateSecurityTokenRequest, RegenerateSecurityTokenResponse } from "../models/models_0"; import { RegenerateSecurityToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/ResetPersonalPINCommand.ts b/clients/client-chime/src/commands/ResetPersonalPINCommand.ts index 8716b39d736e8..47fa802d61d40 100644 --- a/clients/client-chime/src/commands/ResetPersonalPINCommand.ts +++ b/clients/client-chime/src/commands/ResetPersonalPINCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetPersonalPINRequest, ResetPersonalPINResponse } from "../models/models_0"; +import type { ResetPersonalPINRequest, ResetPersonalPINResponse } from "../models/models_0"; import { ResetPersonalPIN } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/RestorePhoneNumberCommand.ts b/clients/client-chime/src/commands/RestorePhoneNumberCommand.ts index f41fbdb4261d3..84777af6578e7 100644 --- a/clients/client-chime/src/commands/RestorePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/RestorePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestorePhoneNumberRequest, RestorePhoneNumberResponse } from "../models/models_0"; +import type { RestorePhoneNumberRequest, RestorePhoneNumberResponse } from "../models/models_0"; import { RestorePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/SearchAvailablePhoneNumbersCommand.ts b/clients/client-chime/src/commands/SearchAvailablePhoneNumbersCommand.ts index 49f8f191f0dba..dd6f27e3ffd52 100644 --- a/clients/client-chime/src/commands/SearchAvailablePhoneNumbersCommand.ts +++ b/clients/client-chime/src/commands/SearchAvailablePhoneNumbersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchAvailablePhoneNumbersRequest, SearchAvailablePhoneNumbersResponse } from "../models/models_0"; +import type { SearchAvailablePhoneNumbersRequest, SearchAvailablePhoneNumbersResponse } from "../models/models_0"; import { SearchAvailablePhoneNumbers } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdateAccountCommand.ts b/clients/client-chime/src/commands/UpdateAccountCommand.ts index 9a4ab5c6628c5..abe242ec4e432 100644 --- a/clients/client-chime/src/commands/UpdateAccountCommand.ts +++ b/clients/client-chime/src/commands/UpdateAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountRequest, UpdateAccountResponse } from "../models/models_0"; +import type { UpdateAccountRequest, UpdateAccountResponse } from "../models/models_0"; import { UpdateAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-chime/src/commands/UpdateAccountSettingsCommand.ts index 95fecf90d32ba..974cdb60e7b45 100644 --- a/clients/client-chime/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-chime/src/commands/UpdateAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountSettingsRequest, UpdateAccountSettingsResponse } from "../models/models_0"; +import type { UpdateAccountSettingsRequest, UpdateAccountSettingsResponse } from "../models/models_0"; import { UpdateAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdateBotCommand.ts b/clients/client-chime/src/commands/UpdateBotCommand.ts index a37fbd475791d..bddd26b2f47fa 100644 --- a/clients/client-chime/src/commands/UpdateBotCommand.ts +++ b/clients/client-chime/src/commands/UpdateBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBotRequest, UpdateBotResponse } from "../models/models_0"; +import type { UpdateBotRequest, UpdateBotResponse } from "../models/models_0"; import { UpdateBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdateGlobalSettingsCommand.ts b/clients/client-chime/src/commands/UpdateGlobalSettingsCommand.ts index 66d2aa90c996d..48e0b57c7f14f 100644 --- a/clients/client-chime/src/commands/UpdateGlobalSettingsCommand.ts +++ b/clients/client-chime/src/commands/UpdateGlobalSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlobalSettingsRequest } from "../models/models_0"; +import type { UpdateGlobalSettingsRequest } from "../models/models_0"; import { UpdateGlobalSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdatePhoneNumberCommand.ts b/clients/client-chime/src/commands/UpdatePhoneNumberCommand.ts index 8b2d6040f1122..6a0519b2014c8 100644 --- a/clients/client-chime/src/commands/UpdatePhoneNumberCommand.ts +++ b/clients/client-chime/src/commands/UpdatePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePhoneNumberRequest, UpdatePhoneNumberResponse } from "../models/models_0"; +import type { UpdatePhoneNumberRequest, UpdatePhoneNumberResponse } from "../models/models_0"; import { UpdatePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdatePhoneNumberSettingsCommand.ts b/clients/client-chime/src/commands/UpdatePhoneNumberSettingsCommand.ts index c87c7f6c41215..5bb73c9413068 100644 --- a/clients/client-chime/src/commands/UpdatePhoneNumberSettingsCommand.ts +++ b/clients/client-chime/src/commands/UpdatePhoneNumberSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePhoneNumberSettingsRequest } from "../models/models_0"; +import type { UpdatePhoneNumberSettingsRequest } from "../models/models_0"; import { UpdatePhoneNumberSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdateRoomCommand.ts b/clients/client-chime/src/commands/UpdateRoomCommand.ts index 6eedb493894be..9947ddd6cc691 100644 --- a/clients/client-chime/src/commands/UpdateRoomCommand.ts +++ b/clients/client-chime/src/commands/UpdateRoomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoomRequest, UpdateRoomResponse } from "../models/models_0"; +import type { UpdateRoomRequest, UpdateRoomResponse } from "../models/models_0"; import { UpdateRoom } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdateRoomMembershipCommand.ts b/clients/client-chime/src/commands/UpdateRoomMembershipCommand.ts index 1b5b2f6eaf313..4299983ad49c9 100644 --- a/clients/client-chime/src/commands/UpdateRoomMembershipCommand.ts +++ b/clients/client-chime/src/commands/UpdateRoomMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoomMembershipRequest, UpdateRoomMembershipResponse } from "../models/models_0"; +import type { UpdateRoomMembershipRequest, UpdateRoomMembershipResponse } from "../models/models_0"; import { UpdateRoomMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdateUserCommand.ts b/clients/client-chime/src/commands/UpdateUserCommand.ts index 0977bb8e7ce2a..97ff74bf98bdb 100644 --- a/clients/client-chime/src/commands/UpdateUserCommand.ts +++ b/clients/client-chime/src/commands/UpdateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; import { UpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/commands/UpdateUserSettingsCommand.ts b/clients/client-chime/src/commands/UpdateUserSettingsCommand.ts index 642d5ca80a40c..3f99f5146e4a5 100644 --- a/clients/client-chime/src/commands/UpdateUserSettingsCommand.ts +++ b/clients/client-chime/src/commands/UpdateUserSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; +import type { ChimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ChimeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserSettingsRequest } from "../models/models_0"; +import type { UpdateUserSettingsRequest } from "../models/models_0"; import { UpdateUserSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-chime/src/endpoint/EndpointParameters.ts b/clients/client-chime/src/endpoint/EndpointParameters.ts index fef044477b780..eb0579393b4a5 100644 --- a/clients/client-chime/src/endpoint/EndpointParameters.ts +++ b/clients/client-chime/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-chime/src/endpoint/endpointResolver.ts b/clients/client-chime/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-chime/src/endpoint/endpointResolver.ts +++ b/clients/client-chime/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-chime/src/extensionConfiguration.ts b/clients/client-chime/src/extensionConfiguration.ts index 52691c56f8c55..98cd38dd50000 100644 --- a/clients/client-chime/src/extensionConfiguration.ts +++ b/clients/client-chime/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-chime/src/models/ChimeServiceException.ts b/clients/client-chime/src/models/ChimeServiceException.ts index e0acb6cc06e4d..f0bbfff987550 100644 --- a/clients/client-chime/src/models/ChimeServiceException.ts +++ b/clients/client-chime/src/models/ChimeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-chime/src/models/errors.ts b/clients/client-chime/src/models/errors.ts index 43ac97b084431..7a3ead63a7557 100644 --- a/clients/client-chime/src/models/errors.ts +++ b/clients/client-chime/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ChimeServiceException as __BaseException } from "./ChimeServiceException"; import { ErrorCode } from "./enums"; diff --git a/clients/client-chime/src/pagination/Interfaces.ts b/clients/client-chime/src/pagination/Interfaces.ts index 26417556b3191..15ead031bbfca 100644 --- a/clients/client-chime/src/pagination/Interfaces.ts +++ b/clients/client-chime/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ChimeClient } from "../ChimeClient"; diff --git a/clients/client-chime/src/pagination/ListAccountsPaginator.ts b/clients/client-chime/src/pagination/ListAccountsPaginator.ts index 0436a807c2d42..7d788eec205f9 100644 --- a/clients/client-chime/src/pagination/ListAccountsPaginator.ts +++ b/clients/client-chime/src/pagination/ListAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeClient } from "../ChimeClient"; import { diff --git a/clients/client-chime/src/pagination/ListBotsPaginator.ts b/clients/client-chime/src/pagination/ListBotsPaginator.ts index 2d49cab2a7b04..0a0580228d001 100644 --- a/clients/client-chime/src/pagination/ListBotsPaginator.ts +++ b/clients/client-chime/src/pagination/ListBotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeClient } from "../ChimeClient"; import { ListBotsCommand, ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBotsCommand"; diff --git a/clients/client-chime/src/pagination/ListPhoneNumberOrdersPaginator.ts b/clients/client-chime/src/pagination/ListPhoneNumberOrdersPaginator.ts index 1cfbffd364ea6..2285f830b9e01 100644 --- a/clients/client-chime/src/pagination/ListPhoneNumberOrdersPaginator.ts +++ b/clients/client-chime/src/pagination/ListPhoneNumberOrdersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeClient } from "../ChimeClient"; import { diff --git a/clients/client-chime/src/pagination/ListPhoneNumbersPaginator.ts b/clients/client-chime/src/pagination/ListPhoneNumbersPaginator.ts index 42bf73b5a28cb..f7985448a37cb 100644 --- a/clients/client-chime/src/pagination/ListPhoneNumbersPaginator.ts +++ b/clients/client-chime/src/pagination/ListPhoneNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeClient } from "../ChimeClient"; import { diff --git a/clients/client-chime/src/pagination/ListRoomMembershipsPaginator.ts b/clients/client-chime/src/pagination/ListRoomMembershipsPaginator.ts index 13fc98c860a68..05cb3d4b00e0b 100644 --- a/clients/client-chime/src/pagination/ListRoomMembershipsPaginator.ts +++ b/clients/client-chime/src/pagination/ListRoomMembershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeClient } from "../ChimeClient"; import { diff --git a/clients/client-chime/src/pagination/ListRoomsPaginator.ts b/clients/client-chime/src/pagination/ListRoomsPaginator.ts index ee5e5374b29ae..3cc4d529d460f 100644 --- a/clients/client-chime/src/pagination/ListRoomsPaginator.ts +++ b/clients/client-chime/src/pagination/ListRoomsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeClient } from "../ChimeClient"; import { ListRoomsCommand, ListRoomsCommandInput, ListRoomsCommandOutput } from "../commands/ListRoomsCommand"; diff --git a/clients/client-chime/src/pagination/ListUsersPaginator.ts b/clients/client-chime/src/pagination/ListUsersPaginator.ts index fb6d6dcf5e7c9..83d95e8f1efca 100644 --- a/clients/client-chime/src/pagination/ListUsersPaginator.ts +++ b/clients/client-chime/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeClient } from "../ChimeClient"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; diff --git a/clients/client-chime/src/pagination/SearchAvailablePhoneNumbersPaginator.ts b/clients/client-chime/src/pagination/SearchAvailablePhoneNumbersPaginator.ts index 442d3a4072e5b..d3a6d8ad3e0bd 100644 --- a/clients/client-chime/src/pagination/SearchAvailablePhoneNumbersPaginator.ts +++ b/clients/client-chime/src/pagination/SearchAvailablePhoneNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ChimeClient } from "../ChimeClient"; import { diff --git a/clients/client-chime/src/runtimeConfig.browser.ts b/clients/client-chime/src/runtimeConfig.browser.ts index ccdb76fc8afc0..2bb8cc48e5233 100644 --- a/clients/client-chime/src/runtimeConfig.browser.ts +++ b/clients/client-chime/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeClientConfig } from "./ChimeClient"; + +import type { ChimeClientConfig } from "./ChimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-chime/src/runtimeConfig.native.ts b/clients/client-chime/src/runtimeConfig.native.ts index 2e22960d8f9e2..9817b2541cbe1 100644 --- a/clients/client-chime/src/runtimeConfig.native.ts +++ b/clients/client-chime/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ChimeClientConfig } from "./ChimeClient"; +import type { ChimeClientConfig } from "./ChimeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-chime/src/runtimeConfig.shared.ts b/clients/client-chime/src/runtimeConfig.shared.ts index faa4ad037eace..082d26271b8e0 100644 --- a/clients/client-chime/src/runtimeConfig.shared.ts +++ b/clients/client-chime/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultChimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ChimeClientConfig } from "./ChimeClient"; +import type { ChimeClientConfig } from "./ChimeClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-chime/src/runtimeConfig.ts b/clients/client-chime/src/runtimeConfig.ts index 453b5d77b480b..c72384425f764 100644 --- a/clients/client-chime/src/runtimeConfig.ts +++ b/clients/client-chime/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ChimeClientConfig } from "./ChimeClient"; + +import type { ChimeClientConfig } from "./ChimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-chime/src/runtimeExtensions.ts b/clients/client-chime/src/runtimeExtensions.ts index 95e1f6665daa7..ab90adb4be611 100644 --- a/clients/client-chime/src/runtimeExtensions.ts +++ b/clients/client-chime/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ChimeExtensionConfiguration } from "./extensionConfiguration"; +import type { ChimeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-chime/src/schemas/schemas_0.ts b/clients/client-chime/src/schemas/schemas_0.ts index 6e9b8cdc39520..c01e75107acae 100644 --- a/clients/client-chime/src/schemas/schemas_0.ts +++ b/clients/client-chime/src/schemas/schemas_0.ts @@ -384,7 +384,7 @@ const n0 = "com.amazonaws.chime"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-cleanrooms/package.json b/clients/client-cleanrooms/package.json index 195a8a2058564..a1bfc5d545044 100644 --- a/clients/client-cleanrooms/package.json +++ b/clients/client-cleanrooms/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cleanrooms/src/CleanRooms.ts b/clients/client-cleanrooms/src/CleanRooms.ts index a8c6d457d1902..fc1688a9f86ab 100644 --- a/clients/client-cleanrooms/src/CleanRooms.ts +++ b/clients/client-cleanrooms/src/CleanRooms.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CleanRoomsClient, CleanRoomsClientConfig } from "./CleanRoomsClient"; +import { CleanRoomsClient } from "./CleanRoomsClient"; import { BatchGetCollaborationAnalysisTemplateCommand, BatchGetCollaborationAnalysisTemplateCommandInput, diff --git a/clients/client-cleanrooms/src/CleanRoomsClient.ts b/clients/client-cleanrooms/src/CleanRoomsClient.ts index cc2d589547c72..014ae7ec7e522 100644 --- a/clients/client-cleanrooms/src/CleanRoomsClient.ts +++ b/clients/client-cleanrooms/src/CleanRoomsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCleanRoomsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -346,7 +355,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cleanrooms/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cleanrooms/src/auth/httpAuthExtensionConfiguration.ts index 3b5d1077c38f0..f0423bccede26 100644 --- a/clients/client-cleanrooms/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cleanrooms/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CleanRoomsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CleanRoomsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cleanrooms/src/auth/httpAuthSchemeProvider.ts b/clients/client-cleanrooms/src/auth/httpAuthSchemeProvider.ts index 5fe3709fd91b3..9cf7018dcabda 100644 --- a/clients/client-cleanrooms/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cleanrooms/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CleanRoomsClientConfig, CleanRoomsClientResolvedConfig } from "../CleanRoomsClient"; +import { type CleanRoomsClientResolvedConfig, CleanRoomsClientConfig } from "../CleanRoomsClient"; /** * @internal diff --git a/clients/client-cleanrooms/src/commands/BatchGetCollaborationAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/BatchGetCollaborationAnalysisTemplateCommand.ts index 0efba1e611c9a..4e0d64269ead1 100644 --- a/clients/client-cleanrooms/src/commands/BatchGetCollaborationAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/BatchGetCollaborationAnalysisTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchGetCollaborationAnalysisTemplateInput, BatchGetCollaborationAnalysisTemplateOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/BatchGetSchemaAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/BatchGetSchemaAnalysisRuleCommand.ts index 90d395c8a456d..c9eb7357d8a50 100644 --- a/clients/client-cleanrooms/src/commands/BatchGetSchemaAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/BatchGetSchemaAnalysisRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetSchemaAnalysisRuleInput, BatchGetSchemaAnalysisRuleOutput } from "../models/models_0"; +import type { BatchGetSchemaAnalysisRuleInput, BatchGetSchemaAnalysisRuleOutput } from "../models/models_0"; import { BatchGetSchemaAnalysisRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/BatchGetSchemaCommand.ts b/clients/client-cleanrooms/src/commands/BatchGetSchemaCommand.ts index bb410aa29ceb5..d60dc1b492cf0 100644 --- a/clients/client-cleanrooms/src/commands/BatchGetSchemaCommand.ts +++ b/clients/client-cleanrooms/src/commands/BatchGetSchemaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetSchemaInput, BatchGetSchemaOutput } from "../models/models_0"; +import type { BatchGetSchemaInput, BatchGetSchemaOutput } from "../models/models_0"; import { BatchGetSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreateAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/CreateAnalysisTemplateCommand.ts index a2f0029c41e77..cad91f917742c 100644 --- a/clients/client-cleanrooms/src/commands/CreateAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateAnalysisTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnalysisTemplateInput, CreateAnalysisTemplateOutput } from "../models/models_0"; +import type { CreateAnalysisTemplateInput, CreateAnalysisTemplateOutput } from "../models/models_0"; import { CreateAnalysisTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreateCollaborationChangeRequestCommand.ts b/clients/client-cleanrooms/src/commands/CreateCollaborationChangeRequestCommand.ts index e26ae49db58e8..7fd58810754a6 100644 --- a/clients/client-cleanrooms/src/commands/CreateCollaborationChangeRequestCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateCollaborationChangeRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCollaborationChangeRequestInput, CreateCollaborationChangeRequestOutput } from "../models/models_0"; +import type { CreateCollaborationChangeRequestInput, CreateCollaborationChangeRequestOutput } from "../models/models_0"; import { CreateCollaborationChangeRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreateCollaborationCommand.ts b/clients/client-cleanrooms/src/commands/CreateCollaborationCommand.ts index 9b9db028b9f4b..c1ed44111d9dc 100644 --- a/clients/client-cleanrooms/src/commands/CreateCollaborationCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateCollaborationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCollaborationInput, CreateCollaborationOutput } from "../models/models_0"; +import type { CreateCollaborationInput, CreateCollaborationOutput } from "../models/models_0"; import { CreateCollaboration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredAudienceModelAssociationCommand.ts index bd657aa0ecdcf..333d66bc25668 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredAudienceModelAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateConfiguredAudienceModelAssociationInput, CreateConfiguredAudienceModelAssociationOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAnalysisRuleCommand.ts index b5cffe7d72cda..4d446aab9798f 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAnalysisRuleCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfiguredTableAnalysisRuleInput, CreateConfiguredTableAnalysisRuleOutput } from "../models/models_0"; +import type { + CreateConfiguredTableAnalysisRuleInput, + CreateConfiguredTableAnalysisRuleOutput, +} from "../models/models_0"; import { CreateConfiguredTableAnalysisRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.ts index 4521eb33c4755..467e798f99012 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationAnalysisRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateConfiguredTableAssociationAnalysisRuleInput, CreateConfiguredTableAssociationAnalysisRuleOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationCommand.ts index 4479aab53c011..abe09e8e9db47 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredTableAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfiguredTableAssociationInput, CreateConfiguredTableAssociationOutput } from "../models/models_0"; +import type { CreateConfiguredTableAssociationInput, CreateConfiguredTableAssociationOutput } from "../models/models_0"; import { CreateConfiguredTableAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreateConfiguredTableCommand.ts b/clients/client-cleanrooms/src/commands/CreateConfiguredTableCommand.ts index 4da26e2b801f3..d521274ddfa06 100644 --- a/clients/client-cleanrooms/src/commands/CreateConfiguredTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateConfiguredTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfiguredTableInput, CreateConfiguredTableOutput } from "../models/models_0"; +import type { CreateConfiguredTableInput, CreateConfiguredTableOutput } from "../models/models_0"; import { CreateConfiguredTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreateIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/CreateIdMappingTableCommand.ts index 8a401deeb0014..694c724626f91 100644 --- a/clients/client-cleanrooms/src/commands/CreateIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateIdMappingTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIdMappingTableInput, CreateIdMappingTableOutput } from "../models/models_0"; +import type { CreateIdMappingTableInput, CreateIdMappingTableOutput } from "../models/models_0"; import { CreateIdMappingTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreateIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/CreateIdNamespaceAssociationCommand.ts index c95fe0732b43c..f5bb64d5090fb 100644 --- a/clients/client-cleanrooms/src/commands/CreateIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateIdNamespaceAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIdNamespaceAssociationInput, CreateIdNamespaceAssociationOutput } from "../models/models_0"; +import type { CreateIdNamespaceAssociationInput, CreateIdNamespaceAssociationOutput } from "../models/models_0"; import { CreateIdNamespaceAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreateMembershipCommand.ts b/clients/client-cleanrooms/src/commands/CreateMembershipCommand.ts index beb6e45c4e9af..9b7a58ebee4ba 100644 --- a/clients/client-cleanrooms/src/commands/CreateMembershipCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreateMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMembershipInput, CreateMembershipOutput } from "../models/models_0"; +import type { CreateMembershipInput, CreateMembershipOutput } from "../models/models_0"; import { CreateMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/CreatePrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/CreatePrivacyBudgetTemplateCommand.ts index aa97b3a2423f4..4bb8ccc062c47 100644 --- a/clients/client-cleanrooms/src/commands/CreatePrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/CreatePrivacyBudgetTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePrivacyBudgetTemplateInput, CreatePrivacyBudgetTemplateOutput } from "../models/models_1"; +import type { CreatePrivacyBudgetTemplateInput, CreatePrivacyBudgetTemplateOutput } from "../models/models_1"; import { CreatePrivacyBudgetTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeleteAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/DeleteAnalysisTemplateCommand.ts index 6d3c9179edb40..672ba86b0e52a 100644 --- a/clients/client-cleanrooms/src/commands/DeleteAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteAnalysisTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnalysisTemplateInput, DeleteAnalysisTemplateOutput } from "../models/models_0"; +import type { DeleteAnalysisTemplateInput, DeleteAnalysisTemplateOutput } from "../models/models_0"; import { DeleteAnalysisTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeleteCollaborationCommand.ts b/clients/client-cleanrooms/src/commands/DeleteCollaborationCommand.ts index 07e1d3dfdd13e..d45c2035b9388 100644 --- a/clients/client-cleanrooms/src/commands/DeleteCollaborationCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteCollaborationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCollaborationInput, DeleteCollaborationOutput } from "../models/models_0"; +import type { DeleteCollaborationInput, DeleteCollaborationOutput } from "../models/models_0"; import { DeleteCollaboration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredAudienceModelAssociationCommand.ts index 71a60f4e7c6db..7681badaa2918 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredAudienceModelAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteConfiguredAudienceModelAssociationInput, DeleteConfiguredAudienceModelAssociationOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAnalysisRuleCommand.ts index 8418f9c39f1d4..b807241360744 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAnalysisRuleCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfiguredTableAnalysisRuleInput, DeleteConfiguredTableAnalysisRuleOutput } from "../models/models_0"; +import type { + DeleteConfiguredTableAnalysisRuleInput, + DeleteConfiguredTableAnalysisRuleOutput, +} from "../models/models_0"; import { DeleteConfiguredTableAnalysisRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.ts index 05239407cf459..cc96b660305cd 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationAnalysisRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteConfiguredTableAssociationAnalysisRuleInput, DeleteConfiguredTableAssociationAnalysisRuleOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationCommand.ts index 1b8cf0062d602..918fe3f2f891a 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfiguredTableAssociationInput, DeleteConfiguredTableAssociationOutput } from "../models/models_0"; +import type { DeleteConfiguredTableAssociationInput, DeleteConfiguredTableAssociationOutput } from "../models/models_0"; import { DeleteConfiguredTableAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableCommand.ts b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableCommand.ts index 3fd7135a8170b..cb0304da6d00e 100644 --- a/clients/client-cleanrooms/src/commands/DeleteConfiguredTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteConfiguredTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfiguredTableInput, DeleteConfiguredTableOutput } from "../models/models_0"; +import type { DeleteConfiguredTableInput, DeleteConfiguredTableOutput } from "../models/models_0"; import { DeleteConfiguredTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeleteIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/DeleteIdMappingTableCommand.ts index 9f4e3b50eab3f..f85374daa5c68 100644 --- a/clients/client-cleanrooms/src/commands/DeleteIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteIdMappingTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdMappingTableInput, DeleteIdMappingTableOutput } from "../models/models_0"; +import type { DeleteIdMappingTableInput, DeleteIdMappingTableOutput } from "../models/models_0"; import { DeleteIdMappingTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeleteIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/DeleteIdNamespaceAssociationCommand.ts index 9d39c72c199de..116661e62212e 100644 --- a/clients/client-cleanrooms/src/commands/DeleteIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteIdNamespaceAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdNamespaceAssociationInput, DeleteIdNamespaceAssociationOutput } from "../models/models_0"; +import type { DeleteIdNamespaceAssociationInput, DeleteIdNamespaceAssociationOutput } from "../models/models_0"; import { DeleteIdNamespaceAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeleteMemberCommand.ts b/clients/client-cleanrooms/src/commands/DeleteMemberCommand.ts index ee776097a50d9..8ad4b472c829a 100644 --- a/clients/client-cleanrooms/src/commands/DeleteMemberCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMemberInput, DeleteMemberOutput } from "../models/models_0"; +import type { DeleteMemberInput, DeleteMemberOutput } from "../models/models_0"; import { DeleteMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeleteMembershipCommand.ts b/clients/client-cleanrooms/src/commands/DeleteMembershipCommand.ts index cd26badf7d1f6..8d0a25586f0fe 100644 --- a/clients/client-cleanrooms/src/commands/DeleteMembershipCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeleteMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMembershipInput, DeleteMembershipOutput } from "../models/models_0"; +import type { DeleteMembershipInput, DeleteMembershipOutput } from "../models/models_0"; import { DeleteMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/DeletePrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/DeletePrivacyBudgetTemplateCommand.ts index c9043ff0e0bd4..a4d5d8ca6c5c0 100644 --- a/clients/client-cleanrooms/src/commands/DeletePrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/DeletePrivacyBudgetTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePrivacyBudgetTemplateInput, DeletePrivacyBudgetTemplateOutput } from "../models/models_1"; +import type { DeletePrivacyBudgetTemplateInput, DeletePrivacyBudgetTemplateOutput } from "../models/models_1"; import { DeletePrivacyBudgetTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/GetAnalysisTemplateCommand.ts index 2e1a20a3c428b..3c3e9a03005a2 100644 --- a/clients/client-cleanrooms/src/commands/GetAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetAnalysisTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnalysisTemplateInput, GetAnalysisTemplateOutput } from "../models/models_0"; +import type { GetAnalysisTemplateInput, GetAnalysisTemplateOutput } from "../models/models_0"; import { GetAnalysisTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationAnalysisTemplateCommand.ts index 512704dbe30d7..c714396e66aaa 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationAnalysisTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCollaborationAnalysisTemplateInput, GetCollaborationAnalysisTemplateOutput } from "../models/models_0"; +import type { GetCollaborationAnalysisTemplateInput, GetCollaborationAnalysisTemplateOutput } from "../models/models_0"; import { GetCollaborationAnalysisTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationChangeRequestCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationChangeRequestCommand.ts index 69d07b0e9c807..800dc0d18fc0a 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationChangeRequestCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationChangeRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCollaborationChangeRequestInput, GetCollaborationChangeRequestOutput } from "../models/models_0"; +import type { GetCollaborationChangeRequestInput, GetCollaborationChangeRequestOutput } from "../models/models_0"; import { GetCollaborationChangeRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationCommand.ts index 4f13abfe66389..19a1ed82c15f2 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCollaborationInput, GetCollaborationOutput } from "../models/models_0"; +import type { GetCollaborationInput, GetCollaborationOutput } from "../models/models_0"; import { GetCollaboration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationConfiguredAudienceModelAssociationCommand.ts index f0cef27a6a52f..6d77dc7b06e2b 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationConfiguredAudienceModelAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCollaborationConfiguredAudienceModelAssociationInput, GetCollaborationConfiguredAudienceModelAssociationOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationIdNamespaceAssociationCommand.ts index 71df9461d5343..2d22c27209fef 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationIdNamespaceAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCollaborationIdNamespaceAssociationInput, GetCollaborationIdNamespaceAssociationOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/GetCollaborationPrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/GetCollaborationPrivacyBudgetTemplateCommand.ts index 25f5159ed40dc..967c674738f69 100644 --- a/clients/client-cleanrooms/src/commands/GetCollaborationPrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetCollaborationPrivacyBudgetTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCollaborationPrivacyBudgetTemplateInput, GetCollaborationPrivacyBudgetTemplateOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredAudienceModelAssociationCommand.ts index 7b4eddb2dc38c..b1a2e772d6ccc 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredAudienceModelAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConfiguredAudienceModelAssociationInput, GetConfiguredAudienceModelAssociationOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredTableAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredTableAnalysisRuleCommand.ts index fc1f78d53e3d4..3f101c62785b6 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredTableAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredTableAnalysisRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfiguredTableAnalysisRuleInput, GetConfiguredTableAnalysisRuleOutput } from "../models/models_0"; +import type { GetConfiguredTableAnalysisRuleInput, GetConfiguredTableAnalysisRuleOutput } from "../models/models_0"; import { GetConfiguredTableAnalysisRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationAnalysisRuleCommand.ts index e22df18fa320d..34f21ca4a0644 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationAnalysisRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConfiguredTableAssociationAnalysisRuleInput, GetConfiguredTableAssociationAnalysisRuleOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationCommand.ts index 26ddce5574064..25244b133ad32 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredTableAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfiguredTableAssociationInput, GetConfiguredTableAssociationOutput } from "../models/models_0"; +import type { GetConfiguredTableAssociationInput, GetConfiguredTableAssociationOutput } from "../models/models_0"; import { GetConfiguredTableAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetConfiguredTableCommand.ts b/clients/client-cleanrooms/src/commands/GetConfiguredTableCommand.ts index a9ee007559245..f640031e4bdf6 100644 --- a/clients/client-cleanrooms/src/commands/GetConfiguredTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetConfiguredTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfiguredTableInput, GetConfiguredTableOutput } from "../models/models_0"; +import type { GetConfiguredTableInput, GetConfiguredTableOutput } from "../models/models_0"; import { GetConfiguredTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/GetIdMappingTableCommand.ts index 0f3f26359bb93..6ac4d1127a87f 100644 --- a/clients/client-cleanrooms/src/commands/GetIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetIdMappingTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdMappingTableInput, GetIdMappingTableOutput } from "../models/models_0"; +import type { GetIdMappingTableInput, GetIdMappingTableOutput } from "../models/models_0"; import { GetIdMappingTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/GetIdNamespaceAssociationCommand.ts index 494a659cb4c95..8b76f42eeac0e 100644 --- a/clients/client-cleanrooms/src/commands/GetIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetIdNamespaceAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdNamespaceAssociationInput, GetIdNamespaceAssociationOutput } from "../models/models_0"; +import type { GetIdNamespaceAssociationInput, GetIdNamespaceAssociationOutput } from "../models/models_0"; import { GetIdNamespaceAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetMembershipCommand.ts b/clients/client-cleanrooms/src/commands/GetMembershipCommand.ts index 70d20cef5fc01..9cf42b535af72 100644 --- a/clients/client-cleanrooms/src/commands/GetMembershipCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMembershipInput, GetMembershipOutput } from "../models/models_0"; +import type { GetMembershipInput, GetMembershipOutput } from "../models/models_0"; import { GetMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetPrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/GetPrivacyBudgetTemplateCommand.ts index 28f718c1e967d..5e16ccdf2dc07 100644 --- a/clients/client-cleanrooms/src/commands/GetPrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetPrivacyBudgetTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPrivacyBudgetTemplateInput, GetPrivacyBudgetTemplateOutput } from "../models/models_1"; +import type { GetPrivacyBudgetTemplateInput, GetPrivacyBudgetTemplateOutput } from "../models/models_1"; import { GetPrivacyBudgetTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetProtectedJobCommand.ts b/clients/client-cleanrooms/src/commands/GetProtectedJobCommand.ts index 36c5258470308..ed6c983f971c6 100644 --- a/clients/client-cleanrooms/src/commands/GetProtectedJobCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetProtectedJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProtectedJobInput, GetProtectedJobOutput } from "../models/models_0"; +import type { GetProtectedJobInput, GetProtectedJobOutput } from "../models/models_0"; import { GetProtectedJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetProtectedQueryCommand.ts b/clients/client-cleanrooms/src/commands/GetProtectedQueryCommand.ts index e53dee9d32711..92ebfdef176e9 100644 --- a/clients/client-cleanrooms/src/commands/GetProtectedQueryCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetProtectedQueryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProtectedQueryInput } from "../models/models_0"; -import { GetProtectedQueryOutput } from "../models/models_1"; +import type { GetProtectedQueryInput } from "../models/models_0"; +import type { GetProtectedQueryOutput } from "../models/models_1"; import { GetProtectedQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetSchemaAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/GetSchemaAnalysisRuleCommand.ts index 0100890fd45f2..a27a6bd2002f7 100644 --- a/clients/client-cleanrooms/src/commands/GetSchemaAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetSchemaAnalysisRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSchemaAnalysisRuleInput, GetSchemaAnalysisRuleOutput } from "../models/models_0"; +import type { GetSchemaAnalysisRuleInput, GetSchemaAnalysisRuleOutput } from "../models/models_0"; import { GetSchemaAnalysisRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/GetSchemaCommand.ts b/clients/client-cleanrooms/src/commands/GetSchemaCommand.ts index 8519247320879..6a5ccf75b97fe 100644 --- a/clients/client-cleanrooms/src/commands/GetSchemaCommand.ts +++ b/clients/client-cleanrooms/src/commands/GetSchemaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSchemaInput, GetSchemaOutput } from "../models/models_0"; +import type { GetSchemaInput, GetSchemaOutput } from "../models/models_0"; import { GetSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListAnalysisTemplatesCommand.ts b/clients/client-cleanrooms/src/commands/ListAnalysisTemplatesCommand.ts index 4cba5959a9887..7ade2879153c9 100644 --- a/clients/client-cleanrooms/src/commands/ListAnalysisTemplatesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListAnalysisTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnalysisTemplatesInput, ListAnalysisTemplatesOutput } from "../models/models_0"; +import type { ListAnalysisTemplatesInput, ListAnalysisTemplatesOutput } from "../models/models_0"; import { ListAnalysisTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationAnalysisTemplatesCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationAnalysisTemplatesCommand.ts index d5439267229c2..5442278a9babd 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationAnalysisTemplatesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationAnalysisTemplatesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCollaborationAnalysisTemplatesInput, ListCollaborationAnalysisTemplatesOutput } from "../models/models_0"; +import type { + ListCollaborationAnalysisTemplatesInput, + ListCollaborationAnalysisTemplatesOutput, +} from "../models/models_0"; import { ListCollaborationAnalysisTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationChangeRequestsCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationChangeRequestsCommand.ts index 31ada4c96178e..94a910ad4e085 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationChangeRequestsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationChangeRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCollaborationChangeRequestsInput, ListCollaborationChangeRequestsOutput } from "../models/models_0"; +import type { ListCollaborationChangeRequestsInput, ListCollaborationChangeRequestsOutput } from "../models/models_0"; import { ListCollaborationChangeRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationConfiguredAudienceModelAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationConfiguredAudienceModelAssociationsCommand.ts index 1e534f1731c3d..6172e69103398 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationConfiguredAudienceModelAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationConfiguredAudienceModelAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCollaborationConfiguredAudienceModelAssociationsInput, ListCollaborationConfiguredAudienceModelAssociationsOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationIdNamespaceAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationIdNamespaceAssociationsCommand.ts index 567bf0e01c977..1835db2f51293 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationIdNamespaceAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationIdNamespaceAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCollaborationIdNamespaceAssociationsInput, ListCollaborationIdNamespaceAssociationsOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetTemplatesCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetTemplatesCommand.ts index d3f55698378a6..ce211973c2ac9 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetTemplatesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCollaborationPrivacyBudgetTemplatesInput, ListCollaborationPrivacyBudgetTemplatesOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetsCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetsCommand.ts index 5ad02212d9f01..a8ffe6ee7fdc1 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationPrivacyBudgetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCollaborationPrivacyBudgetsInput, ListCollaborationPrivacyBudgetsOutput } from "../models/models_0"; +import type { ListCollaborationPrivacyBudgetsInput, ListCollaborationPrivacyBudgetsOutput } from "../models/models_0"; import { ListCollaborationPrivacyBudgets } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListCollaborationsCommand.ts b/clients/client-cleanrooms/src/commands/ListCollaborationsCommand.ts index a76fa7290a3e3..d2a985d3078e3 100644 --- a/clients/client-cleanrooms/src/commands/ListCollaborationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListCollaborationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCollaborationsInput, ListCollaborationsOutput } from "../models/models_0"; +import type { ListCollaborationsInput, ListCollaborationsOutput } from "../models/models_0"; import { ListCollaborations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListConfiguredAudienceModelAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListConfiguredAudienceModelAssociationsCommand.ts index 455ed3e538c6e..54e908b20aa37 100644 --- a/clients/client-cleanrooms/src/commands/ListConfiguredAudienceModelAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListConfiguredAudienceModelAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListConfiguredAudienceModelAssociationsInput, ListConfiguredAudienceModelAssociationsOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/ListConfiguredTableAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListConfiguredTableAssociationsCommand.ts index acb627bcb053a..9fc9dffdffe30 100644 --- a/clients/client-cleanrooms/src/commands/ListConfiguredTableAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListConfiguredTableAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfiguredTableAssociationsInput, ListConfiguredTableAssociationsOutput } from "../models/models_0"; +import type { ListConfiguredTableAssociationsInput, ListConfiguredTableAssociationsOutput } from "../models/models_0"; import { ListConfiguredTableAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListConfiguredTablesCommand.ts b/clients/client-cleanrooms/src/commands/ListConfiguredTablesCommand.ts index 81b5d72c6d2f8..8ca847f5f1e16 100644 --- a/clients/client-cleanrooms/src/commands/ListConfiguredTablesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListConfiguredTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfiguredTablesInput, ListConfiguredTablesOutput } from "../models/models_0"; +import type { ListConfiguredTablesInput, ListConfiguredTablesOutput } from "../models/models_0"; import { ListConfiguredTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListIdMappingTablesCommand.ts b/clients/client-cleanrooms/src/commands/ListIdMappingTablesCommand.ts index 2741efecad021..94012f07427ca 100644 --- a/clients/client-cleanrooms/src/commands/ListIdMappingTablesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListIdMappingTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdMappingTablesInput, ListIdMappingTablesOutput } from "../models/models_0"; +import type { ListIdMappingTablesInput, ListIdMappingTablesOutput } from "../models/models_0"; import { ListIdMappingTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListIdNamespaceAssociationsCommand.ts b/clients/client-cleanrooms/src/commands/ListIdNamespaceAssociationsCommand.ts index ee831ab186ae5..900372f84b1f8 100644 --- a/clients/client-cleanrooms/src/commands/ListIdNamespaceAssociationsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListIdNamespaceAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdNamespaceAssociationsInput, ListIdNamespaceAssociationsOutput } from "../models/models_0"; +import type { ListIdNamespaceAssociationsInput, ListIdNamespaceAssociationsOutput } from "../models/models_0"; import { ListIdNamespaceAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListMembersCommand.ts b/clients/client-cleanrooms/src/commands/ListMembersCommand.ts index 2ac7c6f5e8428..b3cffd830dc98 100644 --- a/clients/client-cleanrooms/src/commands/ListMembersCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMembersInput, ListMembersOutput } from "../models/models_0"; +import type { ListMembersInput, ListMembersOutput } from "../models/models_0"; import { ListMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListMembershipsCommand.ts b/clients/client-cleanrooms/src/commands/ListMembershipsCommand.ts index 611a7505ab7e8..baecd00f1c736 100644 --- a/clients/client-cleanrooms/src/commands/ListMembershipsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListMembershipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMembershipsInput, ListMembershipsOutput } from "../models/models_1"; +import type { ListMembershipsInput, ListMembershipsOutput } from "../models/models_1"; import { ListMemberships } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListPrivacyBudgetTemplatesCommand.ts b/clients/client-cleanrooms/src/commands/ListPrivacyBudgetTemplatesCommand.ts index 44e634db2f892..1d5d31829dcea 100644 --- a/clients/client-cleanrooms/src/commands/ListPrivacyBudgetTemplatesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListPrivacyBudgetTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPrivacyBudgetTemplatesInput, ListPrivacyBudgetTemplatesOutput } from "../models/models_1"; +import type { ListPrivacyBudgetTemplatesInput, ListPrivacyBudgetTemplatesOutput } from "../models/models_1"; import { ListPrivacyBudgetTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListPrivacyBudgetsCommand.ts b/clients/client-cleanrooms/src/commands/ListPrivacyBudgetsCommand.ts index 01faab89ef78f..2ef182f7f7e05 100644 --- a/clients/client-cleanrooms/src/commands/ListPrivacyBudgetsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListPrivacyBudgetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPrivacyBudgetsInput, ListPrivacyBudgetsOutput } from "../models/models_1"; +import type { ListPrivacyBudgetsInput, ListPrivacyBudgetsOutput } from "../models/models_1"; import { ListPrivacyBudgets } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListProtectedJobsCommand.ts b/clients/client-cleanrooms/src/commands/ListProtectedJobsCommand.ts index 6042f9f290d16..b8a1abfae4120 100644 --- a/clients/client-cleanrooms/src/commands/ListProtectedJobsCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListProtectedJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProtectedJobsInput, ListProtectedJobsOutput } from "../models/models_1"; +import type { ListProtectedJobsInput, ListProtectedJobsOutput } from "../models/models_1"; import { ListProtectedJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListProtectedQueriesCommand.ts b/clients/client-cleanrooms/src/commands/ListProtectedQueriesCommand.ts index c9bc91c68169b..4236c0772e184 100644 --- a/clients/client-cleanrooms/src/commands/ListProtectedQueriesCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListProtectedQueriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProtectedQueriesInput, ListProtectedQueriesOutput } from "../models/models_1"; +import type { ListProtectedQueriesInput, ListProtectedQueriesOutput } from "../models/models_1"; import { ListProtectedQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListSchemasCommand.ts b/clients/client-cleanrooms/src/commands/ListSchemasCommand.ts index dd2f8fe8be895..405d38af487b7 100644 --- a/clients/client-cleanrooms/src/commands/ListSchemasCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListSchemasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSchemasInput, ListSchemasOutput } from "../models/models_0"; +import type { ListSchemasInput, ListSchemasOutput } from "../models/models_0"; import { ListSchemas } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/ListTagsForResourceCommand.ts b/clients/client-cleanrooms/src/commands/ListTagsForResourceCommand.ts index a3e44522f39bb..059e7a0423c10 100644 --- a/clients/client-cleanrooms/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cleanrooms/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/PopulateIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/PopulateIdMappingTableCommand.ts index f2bdb07d41910..cf81a0c7f76ed 100644 --- a/clients/client-cleanrooms/src/commands/PopulateIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/PopulateIdMappingTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PopulateIdMappingTableInput, PopulateIdMappingTableOutput } from "../models/models_0"; +import type { PopulateIdMappingTableInput, PopulateIdMappingTableOutput } from "../models/models_0"; import { PopulateIdMappingTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/PreviewPrivacyImpactCommand.ts b/clients/client-cleanrooms/src/commands/PreviewPrivacyImpactCommand.ts index d624b18006334..8ad8be881c0c7 100644 --- a/clients/client-cleanrooms/src/commands/PreviewPrivacyImpactCommand.ts +++ b/clients/client-cleanrooms/src/commands/PreviewPrivacyImpactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PreviewPrivacyImpactInput, PreviewPrivacyImpactOutput } from "../models/models_1"; +import type { PreviewPrivacyImpactInput, PreviewPrivacyImpactOutput } from "../models/models_1"; import { PreviewPrivacyImpact } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/StartProtectedJobCommand.ts b/clients/client-cleanrooms/src/commands/StartProtectedJobCommand.ts index 2e372c860d3ee..1f78a1fa31a26 100644 --- a/clients/client-cleanrooms/src/commands/StartProtectedJobCommand.ts +++ b/clients/client-cleanrooms/src/commands/StartProtectedJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartProtectedJobInput, StartProtectedJobOutput } from "../models/models_1"; +import type { StartProtectedJobInput, StartProtectedJobOutput } from "../models/models_1"; import { StartProtectedJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/StartProtectedQueryCommand.ts b/clients/client-cleanrooms/src/commands/StartProtectedQueryCommand.ts index d5b78abe763af..e26bc2cfa3f20 100644 --- a/clients/client-cleanrooms/src/commands/StartProtectedQueryCommand.ts +++ b/clients/client-cleanrooms/src/commands/StartProtectedQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartProtectedQueryInput, StartProtectedQueryOutput } from "../models/models_1"; +import type { StartProtectedQueryInput, StartProtectedQueryOutput } from "../models/models_1"; import { StartProtectedQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/TagResourceCommand.ts b/clients/client-cleanrooms/src/commands/TagResourceCommand.ts index 5393cb2ddc25c..f7ec81662edd8 100644 --- a/clients/client-cleanrooms/src/commands/TagResourceCommand.ts +++ b/clients/client-cleanrooms/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_1"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UntagResourceCommand.ts b/clients/client-cleanrooms/src/commands/UntagResourceCommand.ts index 809949b4a1975..e49447ad6ef39 100644 --- a/clients/client-cleanrooms/src/commands/UntagResourceCommand.ts +++ b/clients/client-cleanrooms/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_1"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateAnalysisTemplateCommand.ts b/clients/client-cleanrooms/src/commands/UpdateAnalysisTemplateCommand.ts index 7b67cbe7220e2..9768be2ced593 100644 --- a/clients/client-cleanrooms/src/commands/UpdateAnalysisTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateAnalysisTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnalysisTemplateInput, UpdateAnalysisTemplateOutput } from "../models/models_0"; +import type { UpdateAnalysisTemplateInput, UpdateAnalysisTemplateOutput } from "../models/models_0"; import { UpdateAnalysisTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateCollaborationCommand.ts b/clients/client-cleanrooms/src/commands/UpdateCollaborationCommand.ts index b52cd3e6a2712..61a83b9806613 100644 --- a/clients/client-cleanrooms/src/commands/UpdateCollaborationCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateCollaborationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCollaborationInput, UpdateCollaborationOutput } from "../models/models_0"; +import type { UpdateCollaborationInput, UpdateCollaborationOutput } from "../models/models_0"; import { UpdateCollaboration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredAudienceModelAssociationCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredAudienceModelAssociationCommand.ts index e4692841f55ad..a17bc7a6410ce 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredAudienceModelAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredAudienceModelAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateConfiguredAudienceModelAssociationInput, UpdateConfiguredAudienceModelAssociationOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAnalysisRuleCommand.ts index 48cacf2b9424f..ac68a1e21f95a 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAnalysisRuleCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfiguredTableAnalysisRuleInput, UpdateConfiguredTableAnalysisRuleOutput } from "../models/models_0"; +import type { + UpdateConfiguredTableAnalysisRuleInput, + UpdateConfiguredTableAnalysisRuleOutput, +} from "../models/models_0"; import { UpdateConfiguredTableAnalysisRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.ts index 29e80b82fe75b..94c070b00c7c0 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationAnalysisRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateConfiguredTableAssociationAnalysisRuleInput, UpdateConfiguredTableAssociationAnalysisRuleOutput, } from "../models/models_0"; diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationCommand.ts index 57d9d8e87e623..02044eb36e5df 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfiguredTableAssociationInput, UpdateConfiguredTableAssociationOutput } from "../models/models_0"; +import type { UpdateConfiguredTableAssociationInput, UpdateConfiguredTableAssociationOutput } from "../models/models_0"; import { UpdateConfiguredTableAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableCommand.ts b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableCommand.ts index 2c4d2cf84c439..99456de5c9d99 100644 --- a/clients/client-cleanrooms/src/commands/UpdateConfiguredTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateConfiguredTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfiguredTableInput, UpdateConfiguredTableOutput } from "../models/models_0"; +import type { UpdateConfiguredTableInput, UpdateConfiguredTableOutput } from "../models/models_0"; import { UpdateConfiguredTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateIdMappingTableCommand.ts b/clients/client-cleanrooms/src/commands/UpdateIdMappingTableCommand.ts index 784777fbc3ed5..0aa94abaa0ddb 100644 --- a/clients/client-cleanrooms/src/commands/UpdateIdMappingTableCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateIdMappingTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIdMappingTableInput, UpdateIdMappingTableOutput } from "../models/models_0"; +import type { UpdateIdMappingTableInput, UpdateIdMappingTableOutput } from "../models/models_0"; import { UpdateIdMappingTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateIdNamespaceAssociationCommand.ts b/clients/client-cleanrooms/src/commands/UpdateIdNamespaceAssociationCommand.ts index d8f0a844f17a3..1aa117bdda421 100644 --- a/clients/client-cleanrooms/src/commands/UpdateIdNamespaceAssociationCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateIdNamespaceAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIdNamespaceAssociationInput, UpdateIdNamespaceAssociationOutput } from "../models/models_0"; +import type { UpdateIdNamespaceAssociationInput, UpdateIdNamespaceAssociationOutput } from "../models/models_0"; import { UpdateIdNamespaceAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateMembershipCommand.ts b/clients/client-cleanrooms/src/commands/UpdateMembershipCommand.ts index 9489fe89c41ab..0062e728b6b4f 100644 --- a/clients/client-cleanrooms/src/commands/UpdateMembershipCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMembershipInput, UpdateMembershipOutput } from "../models/models_1"; +import type { UpdateMembershipInput, UpdateMembershipOutput } from "../models/models_1"; import { UpdateMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdatePrivacyBudgetTemplateCommand.ts b/clients/client-cleanrooms/src/commands/UpdatePrivacyBudgetTemplateCommand.ts index 9bd00244d9de4..52614d2f6b47f 100644 --- a/clients/client-cleanrooms/src/commands/UpdatePrivacyBudgetTemplateCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdatePrivacyBudgetTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePrivacyBudgetTemplateInput, UpdatePrivacyBudgetTemplateOutput } from "../models/models_1"; +import type { UpdatePrivacyBudgetTemplateInput, UpdatePrivacyBudgetTemplateOutput } from "../models/models_1"; import { UpdatePrivacyBudgetTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateProtectedJobCommand.ts b/clients/client-cleanrooms/src/commands/UpdateProtectedJobCommand.ts index e9ad825ca02b3..2d57899a85077 100644 --- a/clients/client-cleanrooms/src/commands/UpdateProtectedJobCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateProtectedJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProtectedJobInput, UpdateProtectedJobOutput } from "../models/models_1"; +import type { UpdateProtectedJobInput, UpdateProtectedJobOutput } from "../models/models_1"; import { UpdateProtectedJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/commands/UpdateProtectedQueryCommand.ts b/clients/client-cleanrooms/src/commands/UpdateProtectedQueryCommand.ts index 0ea515c07b0e0..748b6b5c2e418 100644 --- a/clients/client-cleanrooms/src/commands/UpdateProtectedQueryCommand.ts +++ b/clients/client-cleanrooms/src/commands/UpdateProtectedQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; +import type { CleanRoomsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProtectedQueryInput, UpdateProtectedQueryOutput } from "../models/models_1"; +import type { UpdateProtectedQueryInput, UpdateProtectedQueryOutput } from "../models/models_1"; import { UpdateProtectedQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanrooms/src/endpoint/EndpointParameters.ts b/clients/client-cleanrooms/src/endpoint/EndpointParameters.ts index e73e9cd62e2c0..5a3befcbb9174 100644 --- a/clients/client-cleanrooms/src/endpoint/EndpointParameters.ts +++ b/clients/client-cleanrooms/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cleanrooms/src/endpoint/endpointResolver.ts b/clients/client-cleanrooms/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cleanrooms/src/endpoint/endpointResolver.ts +++ b/clients/client-cleanrooms/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cleanrooms/src/extensionConfiguration.ts b/clients/client-cleanrooms/src/extensionConfiguration.ts index 8afec0941688e..d1918a11bc2cb 100644 --- a/clients/client-cleanrooms/src/extensionConfiguration.ts +++ b/clients/client-cleanrooms/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cleanrooms/src/models/CleanRoomsServiceException.ts b/clients/client-cleanrooms/src/models/CleanRoomsServiceException.ts index 39bef9995ac10..a77ddfe8bd811 100644 --- a/clients/client-cleanrooms/src/models/CleanRoomsServiceException.ts +++ b/clients/client-cleanrooms/src/models/CleanRoomsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cleanrooms/src/models/errors.ts b/clients/client-cleanrooms/src/models/errors.ts index a0c628ec3c025..6f4dd772554ac 100644 --- a/clients/client-cleanrooms/src/models/errors.ts +++ b/clients/client-cleanrooms/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CleanRoomsServiceException as __BaseException } from "./CleanRoomsServiceException"; import { AccessDeniedExceptionReason, ConflictExceptionReason, ResourceType, ValidationExceptionReason } from "./enums"; diff --git a/clients/client-cleanrooms/src/pagination/Interfaces.ts b/clients/client-cleanrooms/src/pagination/Interfaces.ts index 21f968a6cf1ec..05d052e213cbd 100644 --- a/clients/client-cleanrooms/src/pagination/Interfaces.ts +++ b/clients/client-cleanrooms/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; diff --git a/clients/client-cleanrooms/src/pagination/ListAnalysisTemplatesPaginator.ts b/clients/client-cleanrooms/src/pagination/ListAnalysisTemplatesPaginator.ts index bb6cdf1cd7ede..4778919c64a77 100644 --- a/clients/client-cleanrooms/src/pagination/ListAnalysisTemplatesPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListAnalysisTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListCollaborationAnalysisTemplatesPaginator.ts b/clients/client-cleanrooms/src/pagination/ListCollaborationAnalysisTemplatesPaginator.ts index 59a8951b78e23..954a1704e99ce 100644 --- a/clients/client-cleanrooms/src/pagination/ListCollaborationAnalysisTemplatesPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListCollaborationAnalysisTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListCollaborationChangeRequestsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListCollaborationChangeRequestsPaginator.ts index 5e12b37928478..b7ccf525b5a7d 100644 --- a/clients/client-cleanrooms/src/pagination/ListCollaborationChangeRequestsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListCollaborationChangeRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListCollaborationConfiguredAudienceModelAssociationsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListCollaborationConfiguredAudienceModelAssociationsPaginator.ts index 1057d78c1148c..e776333f9cee9 100644 --- a/clients/client-cleanrooms/src/pagination/ListCollaborationConfiguredAudienceModelAssociationsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListCollaborationConfiguredAudienceModelAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListCollaborationIdNamespaceAssociationsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListCollaborationIdNamespaceAssociationsPaginator.ts index 8a25d822d069a..403010c17a624 100644 --- a/clients/client-cleanrooms/src/pagination/ListCollaborationIdNamespaceAssociationsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListCollaborationIdNamespaceAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListCollaborationPrivacyBudgetTemplatesPaginator.ts b/clients/client-cleanrooms/src/pagination/ListCollaborationPrivacyBudgetTemplatesPaginator.ts index 88352a5ec231c..16c817770fa65 100644 --- a/clients/client-cleanrooms/src/pagination/ListCollaborationPrivacyBudgetTemplatesPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListCollaborationPrivacyBudgetTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListCollaborationPrivacyBudgetsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListCollaborationPrivacyBudgetsPaginator.ts index d1d2f8ca306ed..6cbd02544cc6c 100644 --- a/clients/client-cleanrooms/src/pagination/ListCollaborationPrivacyBudgetsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListCollaborationPrivacyBudgetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListCollaborationsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListCollaborationsPaginator.ts index 5cc935a243c10..4d6eec186a3e7 100644 --- a/clients/client-cleanrooms/src/pagination/ListCollaborationsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListCollaborationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListConfiguredAudienceModelAssociationsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListConfiguredAudienceModelAssociationsPaginator.ts index 80aea30743fd8..30f2b2a598982 100644 --- a/clients/client-cleanrooms/src/pagination/ListConfiguredAudienceModelAssociationsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListConfiguredAudienceModelAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListConfiguredTableAssociationsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListConfiguredTableAssociationsPaginator.ts index eb0da9f76b8fc..f64f176539cc7 100644 --- a/clients/client-cleanrooms/src/pagination/ListConfiguredTableAssociationsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListConfiguredTableAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListConfiguredTablesPaginator.ts b/clients/client-cleanrooms/src/pagination/ListConfiguredTablesPaginator.ts index 8757b93ef39b1..7494ccde5667e 100644 --- a/clients/client-cleanrooms/src/pagination/ListConfiguredTablesPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListConfiguredTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListIdMappingTablesPaginator.ts b/clients/client-cleanrooms/src/pagination/ListIdMappingTablesPaginator.ts index 60a7f096e7a67..35ab084126510 100644 --- a/clients/client-cleanrooms/src/pagination/ListIdMappingTablesPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListIdMappingTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListIdNamespaceAssociationsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListIdNamespaceAssociationsPaginator.ts index d706d5040277c..a98876f04ac18 100644 --- a/clients/client-cleanrooms/src/pagination/ListIdNamespaceAssociationsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListIdNamespaceAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListMembersPaginator.ts b/clients/client-cleanrooms/src/pagination/ListMembersPaginator.ts index 41ea220024baf..fa100415aa5b8 100644 --- a/clients/client-cleanrooms/src/pagination/ListMembersPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { ListMembersCommand, ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand"; diff --git a/clients/client-cleanrooms/src/pagination/ListMembershipsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListMembershipsPaginator.ts index fec911c187efc..3671a80b3d9f4 100644 --- a/clients/client-cleanrooms/src/pagination/ListMembershipsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListMembershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListPrivacyBudgetTemplatesPaginator.ts b/clients/client-cleanrooms/src/pagination/ListPrivacyBudgetTemplatesPaginator.ts index 91c6850367055..1f244aa93e60f 100644 --- a/clients/client-cleanrooms/src/pagination/ListPrivacyBudgetTemplatesPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListPrivacyBudgetTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListPrivacyBudgetsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListPrivacyBudgetsPaginator.ts index 9ca8743ece918..68981ea447b0d 100644 --- a/clients/client-cleanrooms/src/pagination/ListPrivacyBudgetsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListPrivacyBudgetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListProtectedJobsPaginator.ts b/clients/client-cleanrooms/src/pagination/ListProtectedJobsPaginator.ts index 2da71f4fdb0a2..d237c811d8500 100644 --- a/clients/client-cleanrooms/src/pagination/ListProtectedJobsPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListProtectedJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListProtectedQueriesPaginator.ts b/clients/client-cleanrooms/src/pagination/ListProtectedQueriesPaginator.ts index 59556d1132fd0..0bbe7ef24c8ca 100644 --- a/clients/client-cleanrooms/src/pagination/ListProtectedQueriesPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListProtectedQueriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { diff --git a/clients/client-cleanrooms/src/pagination/ListSchemasPaginator.ts b/clients/client-cleanrooms/src/pagination/ListSchemasPaginator.ts index 09ad7214cde86..4ae441108012d 100644 --- a/clients/client-cleanrooms/src/pagination/ListSchemasPaginator.ts +++ b/clients/client-cleanrooms/src/pagination/ListSchemasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsClient } from "../CleanRoomsClient"; import { ListSchemasCommand, ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand"; diff --git a/clients/client-cleanrooms/src/runtimeConfig.browser.ts b/clients/client-cleanrooms/src/runtimeConfig.browser.ts index f7b9a71669576..a477e0d2f7adc 100644 --- a/clients/client-cleanrooms/src/runtimeConfig.browser.ts +++ b/clients/client-cleanrooms/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CleanRoomsClientConfig } from "./CleanRoomsClient"; + +import type { CleanRoomsClientConfig } from "./CleanRoomsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cleanrooms/src/runtimeConfig.native.ts b/clients/client-cleanrooms/src/runtimeConfig.native.ts index 49aeb965e327f..f49daac152d44 100644 --- a/clients/client-cleanrooms/src/runtimeConfig.native.ts +++ b/clients/client-cleanrooms/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CleanRoomsClientConfig } from "./CleanRoomsClient"; +import type { CleanRoomsClientConfig } from "./CleanRoomsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cleanrooms/src/runtimeConfig.shared.ts b/clients/client-cleanrooms/src/runtimeConfig.shared.ts index 8d9ed1b8f5a64..57644db9fd0dc 100644 --- a/clients/client-cleanrooms/src/runtimeConfig.shared.ts +++ b/clients/client-cleanrooms/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCleanRoomsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CleanRoomsClientConfig } from "./CleanRoomsClient"; +import type { CleanRoomsClientConfig } from "./CleanRoomsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cleanrooms/src/runtimeConfig.ts b/clients/client-cleanrooms/src/runtimeConfig.ts index dd90e79eba2db..3cd94ad82ad13 100644 --- a/clients/client-cleanrooms/src/runtimeConfig.ts +++ b/clients/client-cleanrooms/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CleanRoomsClientConfig } from "./CleanRoomsClient"; + +import type { CleanRoomsClientConfig } from "./CleanRoomsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cleanrooms/src/runtimeExtensions.ts b/clients/client-cleanrooms/src/runtimeExtensions.ts index 80a7f1ae36baa..9186448601956 100644 --- a/clients/client-cleanrooms/src/runtimeExtensions.ts +++ b/clients/client-cleanrooms/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CleanRoomsExtensionConfiguration } from "./extensionConfiguration"; +import type { CleanRoomsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cleanrooms/src/schemas/schemas_0.ts b/clients/client-cleanrooms/src/schemas/schemas_0.ts index 18315999ff863..3f596648ada40 100644 --- a/clients/client-cleanrooms/src/schemas/schemas_0.ts +++ b/clients/client-cleanrooms/src/schemas/schemas_0.ts @@ -809,7 +809,7 @@ const n0 = "com.amazonaws.cleanrooms"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cleanroomsml/package.json b/clients/client-cleanroomsml/package.json index 970b4d2d4dc56..280fdf3e6751b 100644 --- a/clients/client-cleanroomsml/package.json +++ b/clients/client-cleanroomsml/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cleanroomsml/src/CleanRoomsML.ts b/clients/client-cleanroomsml/src/CleanRoomsML.ts index 8f0975e813136..a15f29abd089e 100644 --- a/clients/client-cleanroomsml/src/CleanRoomsML.ts +++ b/clients/client-cleanroomsml/src/CleanRoomsML.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CleanRoomsMLClient, CleanRoomsMLClientConfig } from "./CleanRoomsMLClient"; +import { CleanRoomsMLClient } from "./CleanRoomsMLClient"; import { CancelTrainedModelCommand, CancelTrainedModelCommandInput, diff --git a/clients/client-cleanroomsml/src/CleanRoomsMLClient.ts b/clients/client-cleanroomsml/src/CleanRoomsMLClient.ts index 1ed5f7a67f01a..1a474bb1b444b 100644 --- a/clients/client-cleanroomsml/src/CleanRoomsMLClient.ts +++ b/clients/client-cleanroomsml/src/CleanRoomsMLClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCleanRoomsMLHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelTrainedModelCommandInput, CancelTrainedModelCommandOutput } from "./commands/CancelTrainedModelCommand"; @@ -264,7 +273,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cleanroomsml/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cleanroomsml/src/auth/httpAuthExtensionConfiguration.ts index d2b927c93a69e..f928af3a0ad54 100644 --- a/clients/client-cleanroomsml/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cleanroomsml/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CleanRoomsMLHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CleanRoomsMLHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cleanroomsml/src/auth/httpAuthSchemeProvider.ts b/clients/client-cleanroomsml/src/auth/httpAuthSchemeProvider.ts index fea30286d46d9..79736ee0784de 100644 --- a/clients/client-cleanroomsml/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cleanroomsml/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CleanRoomsMLClientConfig, CleanRoomsMLClientResolvedConfig } from "../CleanRoomsMLClient"; +import { type CleanRoomsMLClientResolvedConfig, CleanRoomsMLClientConfig } from "../CleanRoomsMLClient"; /** * @internal diff --git a/clients/client-cleanroomsml/src/commands/CancelTrainedModelCommand.ts b/clients/client-cleanroomsml/src/commands/CancelTrainedModelCommand.ts index 800a9af9638c0..534ac7930b9a5 100644 --- a/clients/client-cleanroomsml/src/commands/CancelTrainedModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CancelTrainedModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelTrainedModelRequest } from "../models/models_0"; +import type { CancelTrainedModelRequest } from "../models/models_0"; import { CancelTrainedModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/CancelTrainedModelInferenceJobCommand.ts b/clients/client-cleanroomsml/src/commands/CancelTrainedModelInferenceJobCommand.ts index 76f9cc180330b..8079796c93806 100644 --- a/clients/client-cleanroomsml/src/commands/CancelTrainedModelInferenceJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CancelTrainedModelInferenceJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelTrainedModelInferenceJobRequest } from "../models/models_0"; +import type { CancelTrainedModelInferenceJobRequest } from "../models/models_0"; import { CancelTrainedModelInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/CreateAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/CreateAudienceModelCommand.ts index 42ee2c3db1c40..9be869eb75c03 100644 --- a/clients/client-cleanroomsml/src/commands/CreateAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateAudienceModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAudienceModelRequest, CreateAudienceModelResponse } from "../models/models_0"; +import type { CreateAudienceModelRequest, CreateAudienceModelResponse } from "../models/models_0"; import { CreateAudienceModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/CreateConfiguredAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/CreateConfiguredAudienceModelCommand.ts index 8f455a0e66a7c..04a5f1df80ff5 100644 --- a/clients/client-cleanroomsml/src/commands/CreateConfiguredAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateConfiguredAudienceModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfiguredAudienceModelRequest, CreateConfiguredAudienceModelResponse } from "../models/models_0"; +import type { CreateConfiguredAudienceModelRequest, CreateConfiguredAudienceModelResponse } from "../models/models_0"; import { CreateConfiguredAudienceModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmAssociationCommand.ts b/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmAssociationCommand.ts index d902fea5f4f88..f5b32c7bec41c 100644 --- a/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmAssociationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateConfiguredModelAlgorithmAssociationRequest, CreateConfiguredModelAlgorithmAssociationResponse, } from "../models/models_0"; diff --git a/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmCommand.ts b/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmCommand.ts index 3b3ea23d942ca..982c9c07831af 100644 --- a/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateConfiguredModelAlgorithmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfiguredModelAlgorithmRequest, CreateConfiguredModelAlgorithmResponse } from "../models/models_0"; +import type { CreateConfiguredModelAlgorithmRequest, CreateConfiguredModelAlgorithmResponse } from "../models/models_0"; import { CreateConfiguredModelAlgorithm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/CreateMLInputChannelCommand.ts b/clients/client-cleanroomsml/src/commands/CreateMLInputChannelCommand.ts index b2a253e12415f..c4aba514fd187 100644 --- a/clients/client-cleanroomsml/src/commands/CreateMLInputChannelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateMLInputChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMLInputChannelRequest, CreateMLInputChannelResponse } from "../models/models_0"; +import type { CreateMLInputChannelRequest, CreateMLInputChannelResponse } from "../models/models_0"; import { CreateMLInputChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/CreateTrainedModelCommand.ts b/clients/client-cleanroomsml/src/commands/CreateTrainedModelCommand.ts index fd0efd5d1e35d..f35db4d89bbf2 100644 --- a/clients/client-cleanroomsml/src/commands/CreateTrainedModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateTrainedModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrainedModelRequest, CreateTrainedModelResponse } from "../models/models_0"; +import type { CreateTrainedModelRequest, CreateTrainedModelResponse } from "../models/models_0"; import { CreateTrainedModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/CreateTrainingDatasetCommand.ts b/clients/client-cleanroomsml/src/commands/CreateTrainingDatasetCommand.ts index b16661a647f23..b82950d2db110 100644 --- a/clients/client-cleanroomsml/src/commands/CreateTrainingDatasetCommand.ts +++ b/clients/client-cleanroomsml/src/commands/CreateTrainingDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrainingDatasetRequest, CreateTrainingDatasetResponse } from "../models/models_0"; +import type { CreateTrainingDatasetRequest, CreateTrainingDatasetResponse } from "../models/models_0"; import { CreateTrainingDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteAudienceGenerationJobCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteAudienceGenerationJobCommand.ts index a596d4ade026d..525600573ea7f 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteAudienceGenerationJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteAudienceGenerationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAudienceGenerationJobRequest } from "../models/models_0"; +import type { DeleteAudienceGenerationJobRequest } from "../models/models_0"; import { DeleteAudienceGenerationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteAudienceModelCommand.ts index c2f83204d6959..ef18f2f48aeac 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteAudienceModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAudienceModelRequest } from "../models/models_0"; +import type { DeleteAudienceModelRequest } from "../models/models_0"; import { DeleteAudienceModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelCommand.ts index 5fed61eed03a7..8a9937078f474 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfiguredAudienceModelRequest } from "../models/models_0"; +import type { DeleteConfiguredAudienceModelRequest } from "../models/models_0"; import { DeleteConfiguredAudienceModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelPolicyCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelPolicyCommand.ts index dda07256513dc..b7cc8f6af3232 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelPolicyCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteConfiguredAudienceModelPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfiguredAudienceModelPolicyRequest } from "../models/models_0"; +import type { DeleteConfiguredAudienceModelPolicyRequest } from "../models/models_0"; import { DeleteConfiguredAudienceModelPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmAssociationCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmAssociationCommand.ts index c2875eca8e686..a2ffbef69993b 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmAssociationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfiguredModelAlgorithmAssociationRequest } from "../models/models_0"; +import type { DeleteConfiguredModelAlgorithmAssociationRequest } from "../models/models_0"; import { DeleteConfiguredModelAlgorithmAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmCommand.ts index 595ffcbe31401..3597f1dec0815 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteConfiguredModelAlgorithmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfiguredModelAlgorithmRequest } from "../models/models_0"; +import type { DeleteConfiguredModelAlgorithmRequest } from "../models/models_0"; import { DeleteConfiguredModelAlgorithm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteMLConfigurationCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteMLConfigurationCommand.ts index 467c74420d350..b62afea980aaf 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteMLConfigurationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteMLConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMLConfigurationRequest } from "../models/models_0"; +import type { DeleteMLConfigurationRequest } from "../models/models_0"; import { DeleteMLConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteMLInputChannelDataCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteMLInputChannelDataCommand.ts index ef415bfae3806..e4816277b8e8d 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteMLInputChannelDataCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteMLInputChannelDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMLInputChannelDataRequest } from "../models/models_0"; +import type { DeleteMLInputChannelDataRequest } from "../models/models_0"; import { DeleteMLInputChannelData } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteTrainedModelOutputCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteTrainedModelOutputCommand.ts index 0efac8cb067cd..95cef99650316 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteTrainedModelOutputCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteTrainedModelOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrainedModelOutputRequest } from "../models/models_0"; +import type { DeleteTrainedModelOutputRequest } from "../models/models_0"; import { DeleteTrainedModelOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/DeleteTrainingDatasetCommand.ts b/clients/client-cleanroomsml/src/commands/DeleteTrainingDatasetCommand.ts index ddcef73ef28cf..4df7cad704243 100644 --- a/clients/client-cleanroomsml/src/commands/DeleteTrainingDatasetCommand.ts +++ b/clients/client-cleanroomsml/src/commands/DeleteTrainingDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrainingDatasetRequest } from "../models/models_0"; +import type { DeleteTrainingDatasetRequest } from "../models/models_0"; import { DeleteTrainingDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetAudienceGenerationJobCommand.ts b/clients/client-cleanroomsml/src/commands/GetAudienceGenerationJobCommand.ts index 6f7635cb59c8f..77d2bac9949ab 100644 --- a/clients/client-cleanroomsml/src/commands/GetAudienceGenerationJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetAudienceGenerationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAudienceGenerationJobRequest, GetAudienceGenerationJobResponse } from "../models/models_0"; +import type { GetAudienceGenerationJobRequest, GetAudienceGenerationJobResponse } from "../models/models_0"; import { GetAudienceGenerationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/GetAudienceModelCommand.ts index a77eab2c649f8..595f2dd9ccf5b 100644 --- a/clients/client-cleanroomsml/src/commands/GetAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetAudienceModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAudienceModelRequest, GetAudienceModelResponse } from "../models/models_0"; +import type { GetAudienceModelRequest, GetAudienceModelResponse } from "../models/models_0"; import { GetAudienceModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.ts b/clients/client-cleanroomsml/src/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.ts index 8d19a39ab2ec0..aad8429721af5 100644 --- a/clients/client-cleanroomsml/src/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCollaborationConfiguredModelAlgorithmAssociationRequest, GetCollaborationConfiguredModelAlgorithmAssociationResponse, } from "../models/models_0"; diff --git a/clients/client-cleanroomsml/src/commands/GetCollaborationMLInputChannelCommand.ts b/clients/client-cleanroomsml/src/commands/GetCollaborationMLInputChannelCommand.ts index 2dee8ae7efab2..4cff4eefbe6fa 100644 --- a/clients/client-cleanroomsml/src/commands/GetCollaborationMLInputChannelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetCollaborationMLInputChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCollaborationMLInputChannelRequest, GetCollaborationMLInputChannelResponse } from "../models/models_0"; +import type { GetCollaborationMLInputChannelRequest, GetCollaborationMLInputChannelResponse } from "../models/models_0"; import { GetCollaborationMLInputChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetCollaborationTrainedModelCommand.ts b/clients/client-cleanroomsml/src/commands/GetCollaborationTrainedModelCommand.ts index 37756d887acf4..bce47e1a0427c 100644 --- a/clients/client-cleanroomsml/src/commands/GetCollaborationTrainedModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetCollaborationTrainedModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCollaborationTrainedModelRequest, GetCollaborationTrainedModelResponse } from "../models/models_0"; +import type { GetCollaborationTrainedModelRequest, GetCollaborationTrainedModelResponse } from "../models/models_0"; import { GetCollaborationTrainedModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelCommand.ts index 8fa3f16266ae3..54aee33b0a8d5 100644 --- a/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfiguredAudienceModelRequest, GetConfiguredAudienceModelResponse } from "../models/models_0"; +import type { GetConfiguredAudienceModelRequest, GetConfiguredAudienceModelResponse } from "../models/models_0"; import { GetConfiguredAudienceModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelPolicyCommand.ts b/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelPolicyCommand.ts index 1fbbc8feb7ec9..5cfc232aa557c 100644 --- a/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelPolicyCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetConfiguredAudienceModelPolicyCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfiguredAudienceModelPolicyRequest, GetConfiguredAudienceModelPolicyResponse } from "../models/models_0"; +import type { + GetConfiguredAudienceModelPolicyRequest, + GetConfiguredAudienceModelPolicyResponse, +} from "../models/models_0"; import { GetConfiguredAudienceModelPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmAssociationCommand.ts b/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmAssociationCommand.ts index 6287f3c34f291..81d0e7448f5f0 100644 --- a/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmAssociationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConfiguredModelAlgorithmAssociationRequest, GetConfiguredModelAlgorithmAssociationResponse, } from "../models/models_0"; diff --git a/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmCommand.ts b/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmCommand.ts index 5bba82b7e19ec..f41acc0e90633 100644 --- a/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetConfiguredModelAlgorithmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfiguredModelAlgorithmRequest, GetConfiguredModelAlgorithmResponse } from "../models/models_0"; +import type { GetConfiguredModelAlgorithmRequest, GetConfiguredModelAlgorithmResponse } from "../models/models_0"; import { GetConfiguredModelAlgorithm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetMLConfigurationCommand.ts b/clients/client-cleanroomsml/src/commands/GetMLConfigurationCommand.ts index e75cc2de3d4b0..653e98a67947f 100644 --- a/clients/client-cleanroomsml/src/commands/GetMLConfigurationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetMLConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMLConfigurationRequest, GetMLConfigurationResponse } from "../models/models_0"; +import type { GetMLConfigurationRequest, GetMLConfigurationResponse } from "../models/models_0"; import { GetMLConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetMLInputChannelCommand.ts b/clients/client-cleanroomsml/src/commands/GetMLInputChannelCommand.ts index bf14319a522e6..31cd50bf1342b 100644 --- a/clients/client-cleanroomsml/src/commands/GetMLInputChannelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetMLInputChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMLInputChannelRequest, GetMLInputChannelResponse } from "../models/models_0"; +import type { GetMLInputChannelRequest, GetMLInputChannelResponse } from "../models/models_0"; import { GetMLInputChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetTrainedModelCommand.ts b/clients/client-cleanroomsml/src/commands/GetTrainedModelCommand.ts index 904a423092c73..e40c2a57b93ff 100644 --- a/clients/client-cleanroomsml/src/commands/GetTrainedModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetTrainedModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrainedModelRequest, GetTrainedModelResponse } from "../models/models_0"; +import type { GetTrainedModelRequest, GetTrainedModelResponse } from "../models/models_0"; import { GetTrainedModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetTrainedModelInferenceJobCommand.ts b/clients/client-cleanroomsml/src/commands/GetTrainedModelInferenceJobCommand.ts index e6c90ef9e7fe0..f60b65a26b119 100644 --- a/clients/client-cleanroomsml/src/commands/GetTrainedModelInferenceJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetTrainedModelInferenceJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrainedModelInferenceJobRequest, GetTrainedModelInferenceJobResponse } from "../models/models_0"; +import type { GetTrainedModelInferenceJobRequest, GetTrainedModelInferenceJobResponse } from "../models/models_0"; import { GetTrainedModelInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/GetTrainingDatasetCommand.ts b/clients/client-cleanroomsml/src/commands/GetTrainingDatasetCommand.ts index b3dfe6031c650..a6a8c8d49fcf8 100644 --- a/clients/client-cleanroomsml/src/commands/GetTrainingDatasetCommand.ts +++ b/clients/client-cleanroomsml/src/commands/GetTrainingDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrainingDatasetRequest, GetTrainingDatasetResponse } from "../models/models_0"; +import type { GetTrainingDatasetRequest, GetTrainingDatasetResponse } from "../models/models_0"; import { GetTrainingDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListAudienceExportJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListAudienceExportJobsCommand.ts index 5e36fed519ae6..b9125da6200f0 100644 --- a/clients/client-cleanroomsml/src/commands/ListAudienceExportJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListAudienceExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAudienceExportJobsRequest, ListAudienceExportJobsResponse } from "../models/models_0"; +import type { ListAudienceExportJobsRequest, ListAudienceExportJobsResponse } from "../models/models_0"; import { ListAudienceExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListAudienceGenerationJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListAudienceGenerationJobsCommand.ts index 8ad1e06bade40..fbbc6dc5e73c5 100644 --- a/clients/client-cleanroomsml/src/commands/ListAudienceGenerationJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListAudienceGenerationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAudienceGenerationJobsRequest, ListAudienceGenerationJobsResponse } from "../models/models_0"; +import type { ListAudienceGenerationJobsRequest, ListAudienceGenerationJobsResponse } from "../models/models_0"; import { ListAudienceGenerationJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListAudienceModelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListAudienceModelsCommand.ts index fc8c070b3eedd..3deb33a6cd39d 100644 --- a/clients/client-cleanroomsml/src/commands/ListAudienceModelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListAudienceModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAudienceModelsRequest, ListAudienceModelsResponse } from "../models/models_0"; +import type { ListAudienceModelsRequest, ListAudienceModelsResponse } from "../models/models_0"; import { ListAudienceModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.ts index ba1e561943bdb..3f6d592f343ec 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCollaborationConfiguredModelAlgorithmAssociationsRequest, ListCollaborationConfiguredModelAlgorithmAssociationsResponse, } from "../models/models_0"; diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationMLInputChannelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationMLInputChannelsCommand.ts index af33eab9d921c..6c0e5d13fc598 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationMLInputChannelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationMLInputChannelsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCollaborationMLInputChannelsRequest, ListCollaborationMLInputChannelsResponse } from "../models/models_0"; +import type { + ListCollaborationMLInputChannelsRequest, + ListCollaborationMLInputChannelsResponse, +} from "../models/models_0"; import { ListCollaborationMLInputChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelExportJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelExportJobsCommand.ts index b60749e34c7ba..25a70c8ded77c 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelExportJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCollaborationTrainedModelExportJobsRequest, ListCollaborationTrainedModelExportJobsResponse, } from "../models/models_0"; diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelInferenceJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelInferenceJobsCommand.ts index 68e1c8471c628..6559f141f211d 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelInferenceJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelInferenceJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCollaborationTrainedModelInferenceJobsRequest, ListCollaborationTrainedModelInferenceJobsResponse, } from "../models/models_0"; diff --git a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelsCommand.ts index 4b3fda07a8657..c0b41e9237d4a 100644 --- a/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListCollaborationTrainedModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCollaborationTrainedModelsRequest, ListCollaborationTrainedModelsResponse } from "../models/models_0"; +import type { ListCollaborationTrainedModelsRequest, ListCollaborationTrainedModelsResponse } from "../models/models_0"; import { ListCollaborationTrainedModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListConfiguredAudienceModelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListConfiguredAudienceModelsCommand.ts index f9617f85fe671..66d0ce4912363 100644 --- a/clients/client-cleanroomsml/src/commands/ListConfiguredAudienceModelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListConfiguredAudienceModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfiguredAudienceModelsRequest, ListConfiguredAudienceModelsResponse } from "../models/models_0"; +import type { ListConfiguredAudienceModelsRequest, ListConfiguredAudienceModelsResponse } from "../models/models_0"; import { ListConfiguredAudienceModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmAssociationsCommand.ts b/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmAssociationsCommand.ts index 7aa0fd8b83914..9a417bfcb028d 100644 --- a/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmAssociationsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListConfiguredModelAlgorithmAssociationsRequest, ListConfiguredModelAlgorithmAssociationsResponse, } from "../models/models_0"; diff --git a/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmsCommand.ts b/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmsCommand.ts index fdd245daca9fd..9195a35ae17fc 100644 --- a/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListConfiguredModelAlgorithmsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfiguredModelAlgorithmsRequest, ListConfiguredModelAlgorithmsResponse } from "../models/models_0"; +import type { ListConfiguredModelAlgorithmsRequest, ListConfiguredModelAlgorithmsResponse } from "../models/models_0"; import { ListConfiguredModelAlgorithms } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListMLInputChannelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListMLInputChannelsCommand.ts index 856f0cc88ea62..b1e9e36e5952d 100644 --- a/clients/client-cleanroomsml/src/commands/ListMLInputChannelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListMLInputChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMLInputChannelsRequest, ListMLInputChannelsResponse } from "../models/models_0"; +import type { ListMLInputChannelsRequest, ListMLInputChannelsResponse } from "../models/models_0"; import { ListMLInputChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListTagsForResourceCommand.ts b/clients/client-cleanroomsml/src/commands/ListTagsForResourceCommand.ts index fd1617e0753f9..1cf9b332b19ff 100644 --- a/clients/client-cleanroomsml/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListTrainedModelInferenceJobsCommand.ts b/clients/client-cleanroomsml/src/commands/ListTrainedModelInferenceJobsCommand.ts index e2792a80f1863..23708dff9bffd 100644 --- a/clients/client-cleanroomsml/src/commands/ListTrainedModelInferenceJobsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListTrainedModelInferenceJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrainedModelInferenceJobsRequest, ListTrainedModelInferenceJobsResponse } from "../models/models_0"; +import type { ListTrainedModelInferenceJobsRequest, ListTrainedModelInferenceJobsResponse } from "../models/models_0"; import { ListTrainedModelInferenceJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListTrainedModelVersionsCommand.ts b/clients/client-cleanroomsml/src/commands/ListTrainedModelVersionsCommand.ts index 01b1b8fc4459f..46dff5e9804ab 100644 --- a/clients/client-cleanroomsml/src/commands/ListTrainedModelVersionsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListTrainedModelVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrainedModelVersionsRequest, ListTrainedModelVersionsResponse } from "../models/models_0"; +import type { ListTrainedModelVersionsRequest, ListTrainedModelVersionsResponse } from "../models/models_0"; import { ListTrainedModelVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListTrainedModelsCommand.ts b/clients/client-cleanroomsml/src/commands/ListTrainedModelsCommand.ts index 0dc3adb510872..b0ea8bcf1f48a 100644 --- a/clients/client-cleanroomsml/src/commands/ListTrainedModelsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListTrainedModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrainedModelsRequest, ListTrainedModelsResponse } from "../models/models_0"; +import type { ListTrainedModelsRequest, ListTrainedModelsResponse } from "../models/models_0"; import { ListTrainedModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/ListTrainingDatasetsCommand.ts b/clients/client-cleanroomsml/src/commands/ListTrainingDatasetsCommand.ts index 0d92f4cf75dae..f1e4a1396f171 100644 --- a/clients/client-cleanroomsml/src/commands/ListTrainingDatasetsCommand.ts +++ b/clients/client-cleanroomsml/src/commands/ListTrainingDatasetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrainingDatasetsRequest, ListTrainingDatasetsResponse } from "../models/models_0"; +import type { ListTrainingDatasetsRequest, ListTrainingDatasetsResponse } from "../models/models_0"; import { ListTrainingDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/PutConfiguredAudienceModelPolicyCommand.ts b/clients/client-cleanroomsml/src/commands/PutConfiguredAudienceModelPolicyCommand.ts index 1f76c48cb4f5c..4725ae2b8272f 100644 --- a/clients/client-cleanroomsml/src/commands/PutConfiguredAudienceModelPolicyCommand.ts +++ b/clients/client-cleanroomsml/src/commands/PutConfiguredAudienceModelPolicyCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutConfiguredAudienceModelPolicyRequest, PutConfiguredAudienceModelPolicyResponse } from "../models/models_0"; +import type { + PutConfiguredAudienceModelPolicyRequest, + PutConfiguredAudienceModelPolicyResponse, +} from "../models/models_0"; import { PutConfiguredAudienceModelPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/PutMLConfigurationCommand.ts b/clients/client-cleanroomsml/src/commands/PutMLConfigurationCommand.ts index c23be2fe41ee8..5c04a65829402 100644 --- a/clients/client-cleanroomsml/src/commands/PutMLConfigurationCommand.ts +++ b/clients/client-cleanroomsml/src/commands/PutMLConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMLConfigurationRequest } from "../models/models_0"; +import type { PutMLConfigurationRequest } from "../models/models_0"; import { PutMLConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/StartAudienceExportJobCommand.ts b/clients/client-cleanroomsml/src/commands/StartAudienceExportJobCommand.ts index 779598b797290..cb7ec7ea9fb82 100644 --- a/clients/client-cleanroomsml/src/commands/StartAudienceExportJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/StartAudienceExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAudienceExportJobRequest } from "../models/models_0"; +import type { StartAudienceExportJobRequest } from "../models/models_0"; import { StartAudienceExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/StartAudienceGenerationJobCommand.ts b/clients/client-cleanroomsml/src/commands/StartAudienceGenerationJobCommand.ts index e25fa1ec5207c..5e4567487af28 100644 --- a/clients/client-cleanroomsml/src/commands/StartAudienceGenerationJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/StartAudienceGenerationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAudienceGenerationJobRequest, StartAudienceGenerationJobResponse } from "../models/models_0"; +import type { StartAudienceGenerationJobRequest, StartAudienceGenerationJobResponse } from "../models/models_0"; import { StartAudienceGenerationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/StartTrainedModelExportJobCommand.ts b/clients/client-cleanroomsml/src/commands/StartTrainedModelExportJobCommand.ts index e9526c753c196..350cad05e8d99 100644 --- a/clients/client-cleanroomsml/src/commands/StartTrainedModelExportJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/StartTrainedModelExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTrainedModelExportJobRequest } from "../models/models_0"; +import type { StartTrainedModelExportJobRequest } from "../models/models_0"; import { StartTrainedModelExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/StartTrainedModelInferenceJobCommand.ts b/clients/client-cleanroomsml/src/commands/StartTrainedModelInferenceJobCommand.ts index 1c94906ea0d52..96d1d19ae3229 100644 --- a/clients/client-cleanroomsml/src/commands/StartTrainedModelInferenceJobCommand.ts +++ b/clients/client-cleanroomsml/src/commands/StartTrainedModelInferenceJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTrainedModelInferenceJobRequest, StartTrainedModelInferenceJobResponse } from "../models/models_0"; +import type { StartTrainedModelInferenceJobRequest, StartTrainedModelInferenceJobResponse } from "../models/models_0"; import { StartTrainedModelInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/TagResourceCommand.ts b/clients/client-cleanroomsml/src/commands/TagResourceCommand.ts index 692e9071911e6..7ea8b26346e05 100644 --- a/clients/client-cleanroomsml/src/commands/TagResourceCommand.ts +++ b/clients/client-cleanroomsml/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/UntagResourceCommand.ts b/clients/client-cleanroomsml/src/commands/UntagResourceCommand.ts index bffd0c146ac16..9c1db9f5ce96c 100644 --- a/clients/client-cleanroomsml/src/commands/UntagResourceCommand.ts +++ b/clients/client-cleanroomsml/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/commands/UpdateConfiguredAudienceModelCommand.ts b/clients/client-cleanroomsml/src/commands/UpdateConfiguredAudienceModelCommand.ts index e06edd4e67db4..4dc3f27750889 100644 --- a/clients/client-cleanroomsml/src/commands/UpdateConfiguredAudienceModelCommand.ts +++ b/clients/client-cleanroomsml/src/commands/UpdateConfiguredAudienceModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; +import type { CleanRoomsMLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CleanRoomsMLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfiguredAudienceModelRequest, UpdateConfiguredAudienceModelResponse } from "../models/models_0"; +import type { UpdateConfiguredAudienceModelRequest, UpdateConfiguredAudienceModelResponse } from "../models/models_0"; import { UpdateConfiguredAudienceModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cleanroomsml/src/endpoint/EndpointParameters.ts b/clients/client-cleanroomsml/src/endpoint/EndpointParameters.ts index ab135f8b7561a..553f8378d61e2 100644 --- a/clients/client-cleanroomsml/src/endpoint/EndpointParameters.ts +++ b/clients/client-cleanroomsml/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cleanroomsml/src/endpoint/endpointResolver.ts b/clients/client-cleanroomsml/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cleanroomsml/src/endpoint/endpointResolver.ts +++ b/clients/client-cleanroomsml/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cleanroomsml/src/extensionConfiguration.ts b/clients/client-cleanroomsml/src/extensionConfiguration.ts index 74a22716c9661..b90ddd140a1b9 100644 --- a/clients/client-cleanroomsml/src/extensionConfiguration.ts +++ b/clients/client-cleanroomsml/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cleanroomsml/src/models/CleanRoomsMLServiceException.ts b/clients/client-cleanroomsml/src/models/CleanRoomsMLServiceException.ts index 11f9d3303905c..ab918735c5f6f 100644 --- a/clients/client-cleanroomsml/src/models/CleanRoomsMLServiceException.ts +++ b/clients/client-cleanroomsml/src/models/CleanRoomsMLServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cleanroomsml/src/models/errors.ts b/clients/client-cleanroomsml/src/models/errors.ts index 2d9a551c6498f..5dd3c61e78c82 100644 --- a/clients/client-cleanroomsml/src/models/errors.ts +++ b/clients/client-cleanroomsml/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CleanRoomsMLServiceException as __BaseException } from "./CleanRoomsMLServiceException"; diff --git a/clients/client-cleanroomsml/src/pagination/Interfaces.ts b/clients/client-cleanroomsml/src/pagination/Interfaces.ts index 3f350a99518c5..e20d7773fa3c7 100644 --- a/clients/client-cleanroomsml/src/pagination/Interfaces.ts +++ b/clients/client-cleanroomsml/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; diff --git a/clients/client-cleanroomsml/src/pagination/ListAudienceExportJobsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListAudienceExportJobsPaginator.ts index 7fc019669dec1..63e2015270962 100644 --- a/clients/client-cleanroomsml/src/pagination/ListAudienceExportJobsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListAudienceExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListAudienceGenerationJobsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListAudienceGenerationJobsPaginator.ts index d4b8ee0b2a44b..735aeb7f0aa19 100644 --- a/clients/client-cleanroomsml/src/pagination/ListAudienceGenerationJobsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListAudienceGenerationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListAudienceModelsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListAudienceModelsPaginator.ts index b56fb612a8d31..7c62491a54115 100644 --- a/clients/client-cleanroomsml/src/pagination/ListAudienceModelsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListAudienceModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.ts index 3478f1211819e..8f1281c76427d 100644 --- a/clients/client-cleanroomsml/src/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListCollaborationConfiguredModelAlgorithmAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListCollaborationMLInputChannelsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListCollaborationMLInputChannelsPaginator.ts index 51bf7ea099b0e..0a6b8489c20cb 100644 --- a/clients/client-cleanroomsml/src/pagination/ListCollaborationMLInputChannelsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListCollaborationMLInputChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelExportJobsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelExportJobsPaginator.ts index 8a58af6cabf0c..9a4990fe7d075 100644 --- a/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelExportJobsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.ts index c30aa19b74c90..bd554091a45e4 100644 --- a/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelInferenceJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelsPaginator.ts index 116ead2df33e2..f06644ceefbf1 100644 --- a/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListCollaborationTrainedModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListConfiguredAudienceModelsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListConfiguredAudienceModelsPaginator.ts index 243ff2852b40f..f8181660a5d41 100644 --- a/clients/client-cleanroomsml/src/pagination/ListConfiguredAudienceModelsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListConfiguredAudienceModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.ts index eb1114ff9d20e..85ce056d3b766 100644 --- a/clients/client-cleanroomsml/src/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListConfiguredModelAlgorithmAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListConfiguredModelAlgorithmsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListConfiguredModelAlgorithmsPaginator.ts index ed9b8efc90a4f..eb93c14e1ab75 100644 --- a/clients/client-cleanroomsml/src/pagination/ListConfiguredModelAlgorithmsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListConfiguredModelAlgorithmsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListMLInputChannelsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListMLInputChannelsPaginator.ts index bb6b63b1a8b94..0e452c5b3b16b 100644 --- a/clients/client-cleanroomsml/src/pagination/ListMLInputChannelsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListMLInputChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListTrainedModelInferenceJobsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListTrainedModelInferenceJobsPaginator.ts index 5cc3c42a59d28..a58a6bbfe3a2d 100644 --- a/clients/client-cleanroomsml/src/pagination/ListTrainedModelInferenceJobsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListTrainedModelInferenceJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListTrainedModelVersionsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListTrainedModelVersionsPaginator.ts index 7145df2eaa902..081288bea7174 100644 --- a/clients/client-cleanroomsml/src/pagination/ListTrainedModelVersionsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListTrainedModelVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListTrainedModelsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListTrainedModelsPaginator.ts index c56c9ba5d0679..c4f0930e9e927 100644 --- a/clients/client-cleanroomsml/src/pagination/ListTrainedModelsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListTrainedModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/pagination/ListTrainingDatasetsPaginator.ts b/clients/client-cleanroomsml/src/pagination/ListTrainingDatasetsPaginator.ts index 62b126cbba32b..5c158d5c0172a 100644 --- a/clients/client-cleanroomsml/src/pagination/ListTrainingDatasetsPaginator.ts +++ b/clients/client-cleanroomsml/src/pagination/ListTrainingDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CleanRoomsMLClient } from "../CleanRoomsMLClient"; import { diff --git a/clients/client-cleanroomsml/src/runtimeConfig.browser.ts b/clients/client-cleanroomsml/src/runtimeConfig.browser.ts index 985b31fe8d537..bdb4c2143775d 100644 --- a/clients/client-cleanroomsml/src/runtimeConfig.browser.ts +++ b/clients/client-cleanroomsml/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CleanRoomsMLClientConfig } from "./CleanRoomsMLClient"; + +import type { CleanRoomsMLClientConfig } from "./CleanRoomsMLClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cleanroomsml/src/runtimeConfig.native.ts b/clients/client-cleanroomsml/src/runtimeConfig.native.ts index a1ae694caad24..739e1ac284ee3 100644 --- a/clients/client-cleanroomsml/src/runtimeConfig.native.ts +++ b/clients/client-cleanroomsml/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CleanRoomsMLClientConfig } from "./CleanRoomsMLClient"; +import type { CleanRoomsMLClientConfig } from "./CleanRoomsMLClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cleanroomsml/src/runtimeConfig.shared.ts b/clients/client-cleanroomsml/src/runtimeConfig.shared.ts index 7ec4da2a774ea..3c58ca7a20373 100644 --- a/clients/client-cleanroomsml/src/runtimeConfig.shared.ts +++ b/clients/client-cleanroomsml/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCleanRoomsMLHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CleanRoomsMLClientConfig } from "./CleanRoomsMLClient"; +import type { CleanRoomsMLClientConfig } from "./CleanRoomsMLClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cleanroomsml/src/runtimeConfig.ts b/clients/client-cleanroomsml/src/runtimeConfig.ts index dc8a8f990e830..ae0bbf916aad5 100644 --- a/clients/client-cleanroomsml/src/runtimeConfig.ts +++ b/clients/client-cleanroomsml/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CleanRoomsMLClientConfig } from "./CleanRoomsMLClient"; + +import type { CleanRoomsMLClientConfig } from "./CleanRoomsMLClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cleanroomsml/src/runtimeExtensions.ts b/clients/client-cleanroomsml/src/runtimeExtensions.ts index 6b7124e82ca8b..4a61ce3573f3f 100644 --- a/clients/client-cleanroomsml/src/runtimeExtensions.ts +++ b/clients/client-cleanroomsml/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CleanRoomsMLExtensionConfiguration } from "./extensionConfiguration"; +import type { CleanRoomsMLExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cleanroomsml/src/schemas/schemas_0.ts b/clients/client-cleanroomsml/src/schemas/schemas_0.ts index 1e8f686a16cf9..5e2f968dfe6a7 100644 --- a/clients/client-cleanroomsml/src/schemas/schemas_0.ts +++ b/clients/client-cleanroomsml/src/schemas/schemas_0.ts @@ -455,7 +455,7 @@ const n0 = "com.amazonaws.cleanroomsml"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cloud9/package.json b/clients/client-cloud9/package.json index 7fdf58f842628..9439aa6d4ac7b 100644 --- a/clients/client-cloud9/package.json +++ b/clients/client-cloud9/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloud9/src/Cloud9.ts b/clients/client-cloud9/src/Cloud9.ts index e395024e3c531..f1e207d90767d 100644 --- a/clients/client-cloud9/src/Cloud9.ts +++ b/clients/client-cloud9/src/Cloud9.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { Cloud9Client, Cloud9ClientConfig } from "./Cloud9Client"; +import { Cloud9Client } from "./Cloud9Client"; import { CreateEnvironmentEC2Command, CreateEnvironmentEC2CommandInput, diff --git a/clients/client-cloud9/src/Cloud9Client.ts b/clients/client-cloud9/src/Cloud9Client.ts index 01e5728684ffc..68388c140c6b8 100644 --- a/clients/client-cloud9/src/Cloud9Client.ts +++ b/clients/client-cloud9/src/Cloud9Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloud9HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -101,7 +110,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloud9/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloud9/src/auth/httpAuthExtensionConfiguration.ts index 9c60ee88d90ba..6c80802f0de11 100644 --- a/clients/client-cloud9/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloud9/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Cloud9HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Cloud9HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloud9/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloud9/src/auth/httpAuthSchemeProvider.ts index e932ca67f1569..beab6f00bbec5 100644 --- a/clients/client-cloud9/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloud9/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { Cloud9ClientConfig, Cloud9ClientResolvedConfig } from "../Cloud9Client"; +import { type Cloud9ClientResolvedConfig, Cloud9ClientConfig } from "../Cloud9Client"; /** * @internal diff --git a/clients/client-cloud9/src/commands/CreateEnvironmentEC2Command.ts b/clients/client-cloud9/src/commands/CreateEnvironmentEC2Command.ts index 6bbbce4be57b6..d248b68f1d204 100644 --- a/clients/client-cloud9/src/commands/CreateEnvironmentEC2Command.ts +++ b/clients/client-cloud9/src/commands/CreateEnvironmentEC2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentEC2Request, CreateEnvironmentEC2Result } from "../models/models_0"; +import type { CreateEnvironmentEC2Request, CreateEnvironmentEC2Result } from "../models/models_0"; import { CreateEnvironmentEC2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/CreateEnvironmentMembershipCommand.ts b/clients/client-cloud9/src/commands/CreateEnvironmentMembershipCommand.ts index 2abe36340f8d9..a4c6d7154a34b 100644 --- a/clients/client-cloud9/src/commands/CreateEnvironmentMembershipCommand.ts +++ b/clients/client-cloud9/src/commands/CreateEnvironmentMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentMembershipRequest, CreateEnvironmentMembershipResult } from "../models/models_0"; +import type { CreateEnvironmentMembershipRequest, CreateEnvironmentMembershipResult } from "../models/models_0"; import { CreateEnvironmentMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/DeleteEnvironmentCommand.ts b/clients/client-cloud9/src/commands/DeleteEnvironmentCommand.ts index df44c762bd308..7cc3cb9282f74 100644 --- a/clients/client-cloud9/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-cloud9/src/commands/DeleteEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentRequest, DeleteEnvironmentResult } from "../models/models_0"; +import type { DeleteEnvironmentRequest, DeleteEnvironmentResult } from "../models/models_0"; import { DeleteEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/DeleteEnvironmentMembershipCommand.ts b/clients/client-cloud9/src/commands/DeleteEnvironmentMembershipCommand.ts index d36c13bbf05e3..4bd33b390bfb4 100644 --- a/clients/client-cloud9/src/commands/DeleteEnvironmentMembershipCommand.ts +++ b/clients/client-cloud9/src/commands/DeleteEnvironmentMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentMembershipRequest, DeleteEnvironmentMembershipResult } from "../models/models_0"; +import type { DeleteEnvironmentMembershipRequest, DeleteEnvironmentMembershipResult } from "../models/models_0"; import { DeleteEnvironmentMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/DescribeEnvironmentMembershipsCommand.ts b/clients/client-cloud9/src/commands/DescribeEnvironmentMembershipsCommand.ts index 8270cb6ec64f4..75ab0b56a89cd 100644 --- a/clients/client-cloud9/src/commands/DescribeEnvironmentMembershipsCommand.ts +++ b/clients/client-cloud9/src/commands/DescribeEnvironmentMembershipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEnvironmentMembershipsRequest, DescribeEnvironmentMembershipsResult } from "../models/models_0"; +import type { DescribeEnvironmentMembershipsRequest, DescribeEnvironmentMembershipsResult } from "../models/models_0"; import { DescribeEnvironmentMemberships } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/DescribeEnvironmentStatusCommand.ts b/clients/client-cloud9/src/commands/DescribeEnvironmentStatusCommand.ts index 06a0f6655c3a5..85c5cbe72a5ba 100644 --- a/clients/client-cloud9/src/commands/DescribeEnvironmentStatusCommand.ts +++ b/clients/client-cloud9/src/commands/DescribeEnvironmentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEnvironmentStatusRequest, DescribeEnvironmentStatusResult } from "../models/models_0"; +import type { DescribeEnvironmentStatusRequest, DescribeEnvironmentStatusResult } from "../models/models_0"; import { DescribeEnvironmentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/DescribeEnvironmentsCommand.ts b/clients/client-cloud9/src/commands/DescribeEnvironmentsCommand.ts index 9609de8da91d1..efac811ece2b8 100644 --- a/clients/client-cloud9/src/commands/DescribeEnvironmentsCommand.ts +++ b/clients/client-cloud9/src/commands/DescribeEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEnvironmentsRequest, DescribeEnvironmentsResult } from "../models/models_0"; +import type { DescribeEnvironmentsRequest, DescribeEnvironmentsResult } from "../models/models_0"; import { DescribeEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/ListEnvironmentsCommand.ts b/clients/client-cloud9/src/commands/ListEnvironmentsCommand.ts index 709058ec230be..314c12d60291d 100644 --- a/clients/client-cloud9/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-cloud9/src/commands/ListEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentsRequest, ListEnvironmentsResult } from "../models/models_0"; +import type { ListEnvironmentsRequest, ListEnvironmentsResult } from "../models/models_0"; import { ListEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloud9/src/commands/ListTagsForResourceCommand.ts index 9cc7e625e6ef2..4dbc26668cddc 100644 --- a/clients/client-cloud9/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloud9/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/TagResourceCommand.ts b/clients/client-cloud9/src/commands/TagResourceCommand.ts index 652d54732dc17..3fbb464789d57 100644 --- a/clients/client-cloud9/src/commands/TagResourceCommand.ts +++ b/clients/client-cloud9/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/UntagResourceCommand.ts b/clients/client-cloud9/src/commands/UntagResourceCommand.ts index 030da18f9ac85..e7ebfa1ad94c0 100644 --- a/clients/client-cloud9/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloud9/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/UpdateEnvironmentCommand.ts b/clients/client-cloud9/src/commands/UpdateEnvironmentCommand.ts index 23561640aa49f..b9af126c04ef1 100644 --- a/clients/client-cloud9/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-cloud9/src/commands/UpdateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentRequest, UpdateEnvironmentResult } from "../models/models_0"; +import type { UpdateEnvironmentRequest, UpdateEnvironmentResult } from "../models/models_0"; import { UpdateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/commands/UpdateEnvironmentMembershipCommand.ts b/clients/client-cloud9/src/commands/UpdateEnvironmentMembershipCommand.ts index 379a41591caa3..8a4c4d2bed83c 100644 --- a/clients/client-cloud9/src/commands/UpdateEnvironmentMembershipCommand.ts +++ b/clients/client-cloud9/src/commands/UpdateEnvironmentMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; +import type { Cloud9ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Cloud9Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentMembershipRequest, UpdateEnvironmentMembershipResult } from "../models/models_0"; +import type { UpdateEnvironmentMembershipRequest, UpdateEnvironmentMembershipResult } from "../models/models_0"; import { UpdateEnvironmentMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloud9/src/endpoint/EndpointParameters.ts b/clients/client-cloud9/src/endpoint/EndpointParameters.ts index fab31874b47e7..cdad7fb035d1d 100644 --- a/clients/client-cloud9/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloud9/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloud9/src/endpoint/endpointResolver.ts b/clients/client-cloud9/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloud9/src/endpoint/endpointResolver.ts +++ b/clients/client-cloud9/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloud9/src/extensionConfiguration.ts b/clients/client-cloud9/src/extensionConfiguration.ts index 70e20ba22d857..d223c5ce6d930 100644 --- a/clients/client-cloud9/src/extensionConfiguration.ts +++ b/clients/client-cloud9/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloud9/src/models/Cloud9ServiceException.ts b/clients/client-cloud9/src/models/Cloud9ServiceException.ts index 39d3b11d5836e..45af4093ed622 100644 --- a/clients/client-cloud9/src/models/Cloud9ServiceException.ts +++ b/clients/client-cloud9/src/models/Cloud9ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloud9/src/models/errors.ts b/clients/client-cloud9/src/models/errors.ts index 68f78b9a7a50a..25c20e3ec5c59 100644 --- a/clients/client-cloud9/src/models/errors.ts +++ b/clients/client-cloud9/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException"; diff --git a/clients/client-cloud9/src/pagination/DescribeEnvironmentMembershipsPaginator.ts b/clients/client-cloud9/src/pagination/DescribeEnvironmentMembershipsPaginator.ts index c42d5186a8071..6fc6574851d02 100644 --- a/clients/client-cloud9/src/pagination/DescribeEnvironmentMembershipsPaginator.ts +++ b/clients/client-cloud9/src/pagination/DescribeEnvironmentMembershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { Cloud9Client } from "../Cloud9Client"; import { diff --git a/clients/client-cloud9/src/pagination/Interfaces.ts b/clients/client-cloud9/src/pagination/Interfaces.ts index e9b6349babbb6..089f8eae662b1 100644 --- a/clients/client-cloud9/src/pagination/Interfaces.ts +++ b/clients/client-cloud9/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Cloud9Client } from "../Cloud9Client"; diff --git a/clients/client-cloud9/src/pagination/ListEnvironmentsPaginator.ts b/clients/client-cloud9/src/pagination/ListEnvironmentsPaginator.ts index 311c01159831b..71a34a5b89ba8 100644 --- a/clients/client-cloud9/src/pagination/ListEnvironmentsPaginator.ts +++ b/clients/client-cloud9/src/pagination/ListEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { Cloud9Client } from "../Cloud9Client"; import { diff --git a/clients/client-cloud9/src/runtimeConfig.browser.ts b/clients/client-cloud9/src/runtimeConfig.browser.ts index efc212f202fa8..77d67b7a14e75 100644 --- a/clients/client-cloud9/src/runtimeConfig.browser.ts +++ b/clients/client-cloud9/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Cloud9ClientConfig } from "./Cloud9Client"; + +import type { Cloud9ClientConfig } from "./Cloud9Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloud9/src/runtimeConfig.native.ts b/clients/client-cloud9/src/runtimeConfig.native.ts index 3eed668574b87..966cdaae83cbf 100644 --- a/clients/client-cloud9/src/runtimeConfig.native.ts +++ b/clients/client-cloud9/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Cloud9ClientConfig } from "./Cloud9Client"; +import type { Cloud9ClientConfig } from "./Cloud9Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloud9/src/runtimeConfig.shared.ts b/clients/client-cloud9/src/runtimeConfig.shared.ts index 28ba76ef4b55f..39736c2dad800 100644 --- a/clients/client-cloud9/src/runtimeConfig.shared.ts +++ b/clients/client-cloud9/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloud9HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { Cloud9ClientConfig } from "./Cloud9Client"; +import type { Cloud9ClientConfig } from "./Cloud9Client"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloud9/src/runtimeConfig.ts b/clients/client-cloud9/src/runtimeConfig.ts index 3b27c8abe3c05..f72f0003b80ce 100644 --- a/clients/client-cloud9/src/runtimeConfig.ts +++ b/clients/client-cloud9/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Cloud9ClientConfig } from "./Cloud9Client"; + +import type { Cloud9ClientConfig } from "./Cloud9Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloud9/src/runtimeExtensions.ts b/clients/client-cloud9/src/runtimeExtensions.ts index d8612684c70e3..25482d66283e2 100644 --- a/clients/client-cloud9/src/runtimeExtensions.ts +++ b/clients/client-cloud9/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Cloud9ExtensionConfiguration } from "./extensionConfiguration"; +import type { Cloud9ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloud9/src/schemas/schemas_0.ts b/clients/client-cloud9/src/schemas/schemas_0.ts index 829cee0122866..c92ee756eda76 100644 --- a/clients/client-cloud9/src/schemas/schemas_0.ts +++ b/clients/client-cloud9/src/schemas/schemas_0.ts @@ -103,7 +103,7 @@ const n0 = "com.amazonaws.cloud9"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-cloudcontrol/package.json b/clients/client-cloudcontrol/package.json index 969e934643002..53fd58e90fc82 100644 --- a/clients/client-cloudcontrol/package.json +++ b/clients/client-cloudcontrol/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudcontrol/src/CloudControl.ts b/clients/client-cloudcontrol/src/CloudControl.ts index 7bf55b7116f86..318ae731dfd01 100644 --- a/clients/client-cloudcontrol/src/CloudControl.ts +++ b/clients/client-cloudcontrol/src/CloudControl.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudControlClient, CloudControlClientConfig } from "./CloudControlClient"; +import { CloudControlClient } from "./CloudControlClient"; import { CancelResourceRequestCommand, CancelResourceRequestCommandInput, diff --git a/clients/client-cloudcontrol/src/CloudControlClient.ts b/clients/client-cloudcontrol/src/CloudControlClient.ts index 644a39fe97939..479a3f8ca8958 100644 --- a/clients/client-cloudcontrol/src/CloudControlClient.ts +++ b/clients/client-cloudcontrol/src/CloudControlClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudControlHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -81,7 +90,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudcontrol/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudcontrol/src/auth/httpAuthExtensionConfiguration.ts index 58634868b77a2..94b4b1d8c6127 100644 --- a/clients/client-cloudcontrol/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudcontrol/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudcontrol/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudcontrol/src/auth/httpAuthSchemeProvider.ts index 94924a5b5d3f8..e0db432ba1dde 100644 --- a/clients/client-cloudcontrol/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudcontrol/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudControlClientConfig, CloudControlClientResolvedConfig } from "../CloudControlClient"; +import { type CloudControlClientResolvedConfig, CloudControlClientConfig } from "../CloudControlClient"; /** * @internal diff --git a/clients/client-cloudcontrol/src/commands/CancelResourceRequestCommand.ts b/clients/client-cloudcontrol/src/commands/CancelResourceRequestCommand.ts index 73e9c82939ca9..b101f383f95b1 100644 --- a/clients/client-cloudcontrol/src/commands/CancelResourceRequestCommand.ts +++ b/clients/client-cloudcontrol/src/commands/CancelResourceRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; +import type { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelResourceRequestInput, CancelResourceRequestOutput } from "../models/models_0"; +import type { CancelResourceRequestInput, CancelResourceRequestOutput } from "../models/models_0"; import { CancelResourceRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudcontrol/src/commands/CreateResourceCommand.ts b/clients/client-cloudcontrol/src/commands/CreateResourceCommand.ts index cf27978d9f114..155d8d6c0fb88 100644 --- a/clients/client-cloudcontrol/src/commands/CreateResourceCommand.ts +++ b/clients/client-cloudcontrol/src/commands/CreateResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; +import type { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceInput, CreateResourceOutput } from "../models/models_0"; +import type { CreateResourceInput, CreateResourceOutput } from "../models/models_0"; import { CreateResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudcontrol/src/commands/DeleteResourceCommand.ts b/clients/client-cloudcontrol/src/commands/DeleteResourceCommand.ts index 323e48f4578a2..52888ae7709af 100644 --- a/clients/client-cloudcontrol/src/commands/DeleteResourceCommand.ts +++ b/clients/client-cloudcontrol/src/commands/DeleteResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; +import type { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceInput, DeleteResourceOutput } from "../models/models_0"; +import type { DeleteResourceInput, DeleteResourceOutput } from "../models/models_0"; import { DeleteResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudcontrol/src/commands/GetResourceCommand.ts b/clients/client-cloudcontrol/src/commands/GetResourceCommand.ts index 346daa7bc3980..51842f9893238 100644 --- a/clients/client-cloudcontrol/src/commands/GetResourceCommand.ts +++ b/clients/client-cloudcontrol/src/commands/GetResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; +import type { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceInput, GetResourceOutput } from "../models/models_0"; +import type { GetResourceInput, GetResourceOutput } from "../models/models_0"; import { GetResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudcontrol/src/commands/GetResourceRequestStatusCommand.ts b/clients/client-cloudcontrol/src/commands/GetResourceRequestStatusCommand.ts index 27117a5b06463..bd6298605fef4 100644 --- a/clients/client-cloudcontrol/src/commands/GetResourceRequestStatusCommand.ts +++ b/clients/client-cloudcontrol/src/commands/GetResourceRequestStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; +import type { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceRequestStatusInput, GetResourceRequestStatusOutput } from "../models/models_0"; +import type { GetResourceRequestStatusInput, GetResourceRequestStatusOutput } from "../models/models_0"; import { GetResourceRequestStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudcontrol/src/commands/ListResourceRequestsCommand.ts b/clients/client-cloudcontrol/src/commands/ListResourceRequestsCommand.ts index 34be3b5bdce46..cd0f9264bd786 100644 --- a/clients/client-cloudcontrol/src/commands/ListResourceRequestsCommand.ts +++ b/clients/client-cloudcontrol/src/commands/ListResourceRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; +import type { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceRequestsInput, ListResourceRequestsOutput } from "../models/models_0"; +import type { ListResourceRequestsInput, ListResourceRequestsOutput } from "../models/models_0"; import { ListResourceRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudcontrol/src/commands/ListResourcesCommand.ts b/clients/client-cloudcontrol/src/commands/ListResourcesCommand.ts index a1c4119e0f85f..9a6bf2c34e5bd 100644 --- a/clients/client-cloudcontrol/src/commands/ListResourcesCommand.ts +++ b/clients/client-cloudcontrol/src/commands/ListResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; +import type { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcesInput, ListResourcesOutput } from "../models/models_0"; +import type { ListResourcesInput, ListResourcesOutput } from "../models/models_0"; import { ListResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudcontrol/src/commands/UpdateResourceCommand.ts b/clients/client-cloudcontrol/src/commands/UpdateResourceCommand.ts index 899df502b59f9..a27eebd9406e7 100644 --- a/clients/client-cloudcontrol/src/commands/UpdateResourceCommand.ts +++ b/clients/client-cloudcontrol/src/commands/UpdateResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; +import type { CloudControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudControlClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResourceInput, UpdateResourceOutput } from "../models/models_0"; +import type { UpdateResourceInput, UpdateResourceOutput } from "../models/models_0"; import { UpdateResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudcontrol/src/endpoint/EndpointParameters.ts b/clients/client-cloudcontrol/src/endpoint/EndpointParameters.ts index ccfc2759ddc9d..8f6e15fa2be01 100644 --- a/clients/client-cloudcontrol/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudcontrol/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudcontrol/src/endpoint/endpointResolver.ts b/clients/client-cloudcontrol/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudcontrol/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudcontrol/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudcontrol/src/extensionConfiguration.ts b/clients/client-cloudcontrol/src/extensionConfiguration.ts index f32083a87d69b..6512232757631 100644 --- a/clients/client-cloudcontrol/src/extensionConfiguration.ts +++ b/clients/client-cloudcontrol/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudcontrol/src/models/CloudControlServiceException.ts b/clients/client-cloudcontrol/src/models/CloudControlServiceException.ts index 5300f36c84afc..0d62eb5d6246e 100644 --- a/clients/client-cloudcontrol/src/models/CloudControlServiceException.ts +++ b/clients/client-cloudcontrol/src/models/CloudControlServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudcontrol/src/models/errors.ts b/clients/client-cloudcontrol/src/models/errors.ts index 282204363629b..cd50e90f70521 100644 --- a/clients/client-cloudcontrol/src/models/errors.ts +++ b/clients/client-cloudcontrol/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException"; diff --git a/clients/client-cloudcontrol/src/pagination/Interfaces.ts b/clients/client-cloudcontrol/src/pagination/Interfaces.ts index 01de911c5d195..438e76df42f35 100644 --- a/clients/client-cloudcontrol/src/pagination/Interfaces.ts +++ b/clients/client-cloudcontrol/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CloudControlClient } from "../CloudControlClient"; diff --git a/clients/client-cloudcontrol/src/pagination/ListResourceRequestsPaginator.ts b/clients/client-cloudcontrol/src/pagination/ListResourceRequestsPaginator.ts index f5526eac0b6dc..76c86dfd3a20c 100644 --- a/clients/client-cloudcontrol/src/pagination/ListResourceRequestsPaginator.ts +++ b/clients/client-cloudcontrol/src/pagination/ListResourceRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudControlClient } from "../CloudControlClient"; import { diff --git a/clients/client-cloudcontrol/src/pagination/ListResourcesPaginator.ts b/clients/client-cloudcontrol/src/pagination/ListResourcesPaginator.ts index ba89de4a6b058..45fdc3d671e6b 100644 --- a/clients/client-cloudcontrol/src/pagination/ListResourcesPaginator.ts +++ b/clients/client-cloudcontrol/src/pagination/ListResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudControlClient } from "../CloudControlClient"; import { diff --git a/clients/client-cloudcontrol/src/runtimeConfig.browser.ts b/clients/client-cloudcontrol/src/runtimeConfig.browser.ts index 2028757d5ca24..677cea80e7495 100644 --- a/clients/client-cloudcontrol/src/runtimeConfig.browser.ts +++ b/clients/client-cloudcontrol/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudControlClientConfig } from "./CloudControlClient"; + +import type { CloudControlClientConfig } from "./CloudControlClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudcontrol/src/runtimeConfig.native.ts b/clients/client-cloudcontrol/src/runtimeConfig.native.ts index 23059d5b7ac88..938b3f0242d27 100644 --- a/clients/client-cloudcontrol/src/runtimeConfig.native.ts +++ b/clients/client-cloudcontrol/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudControlClientConfig } from "./CloudControlClient"; +import type { CloudControlClientConfig } from "./CloudControlClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudcontrol/src/runtimeConfig.shared.ts b/clients/client-cloudcontrol/src/runtimeConfig.shared.ts index 29b95fea5fec8..3d011f513cc25 100644 --- a/clients/client-cloudcontrol/src/runtimeConfig.shared.ts +++ b/clients/client-cloudcontrol/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudControlHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudControlClientConfig } from "./CloudControlClient"; +import type { CloudControlClientConfig } from "./CloudControlClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudcontrol/src/runtimeConfig.ts b/clients/client-cloudcontrol/src/runtimeConfig.ts index 6da5b2640037d..6251c07f0ee82 100644 --- a/clients/client-cloudcontrol/src/runtimeConfig.ts +++ b/clients/client-cloudcontrol/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudControlClientConfig } from "./CloudControlClient"; + +import type { CloudControlClientConfig } from "./CloudControlClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudcontrol/src/runtimeExtensions.ts b/clients/client-cloudcontrol/src/runtimeExtensions.ts index 9182bf8fc2812..62475c63e87a9 100644 --- a/clients/client-cloudcontrol/src/runtimeExtensions.ts +++ b/clients/client-cloudcontrol/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudControlExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudControlExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudcontrol/src/schemas/schemas_0.ts b/clients/client-cloudcontrol/src/schemas/schemas_0.ts index 420bdd1bf9497..e1933c9979555 100644 --- a/clients/client-cloudcontrol/src/schemas/schemas_0.ts +++ b/clients/client-cloudcontrol/src/schemas/schemas_0.ts @@ -90,7 +90,7 @@ const n0 = "com.amazonaws.cloudcontrol"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-clouddirectory/package.json b/clients/client-clouddirectory/package.json index 91a61d007ac07..d20f11521638c 100644 --- a/clients/client-clouddirectory/package.json +++ b/clients/client-clouddirectory/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-clouddirectory/src/CloudDirectory.ts b/clients/client-clouddirectory/src/CloudDirectory.ts index 5a359a5a23ecf..2445824d5d14b 100644 --- a/clients/client-clouddirectory/src/CloudDirectory.ts +++ b/clients/client-clouddirectory/src/CloudDirectory.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudDirectoryClient, CloudDirectoryClientConfig } from "./CloudDirectoryClient"; +import { CloudDirectoryClient } from "./CloudDirectoryClient"; import { AddFacetToObjectCommand, AddFacetToObjectCommandInput, diff --git a/clients/client-clouddirectory/src/CloudDirectoryClient.ts b/clients/client-clouddirectory/src/CloudDirectoryClient.ts index 6b6ae434c3846..465bc0cfdc6c2 100644 --- a/clients/client-clouddirectory/src/CloudDirectoryClient.ts +++ b/clients/client-clouddirectory/src/CloudDirectoryClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudDirectoryHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddFacetToObjectCommandInput, AddFacetToObjectCommandOutput } from "./commands/AddFacetToObjectCommand"; @@ -208,7 +217,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-clouddirectory/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-clouddirectory/src/auth/httpAuthExtensionConfiguration.ts index 2869578ac803c..724516c89d170 100644 --- a/clients/client-clouddirectory/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-clouddirectory/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudDirectoryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudDirectoryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-clouddirectory/src/auth/httpAuthSchemeProvider.ts b/clients/client-clouddirectory/src/auth/httpAuthSchemeProvider.ts index b0223314de712..90dfbd675ed01 100644 --- a/clients/client-clouddirectory/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-clouddirectory/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudDirectoryClientConfig, CloudDirectoryClientResolvedConfig } from "../CloudDirectoryClient"; +import { type CloudDirectoryClientResolvedConfig, CloudDirectoryClientConfig } from "../CloudDirectoryClient"; /** * @internal diff --git a/clients/client-clouddirectory/src/commands/AddFacetToObjectCommand.ts b/clients/client-clouddirectory/src/commands/AddFacetToObjectCommand.ts index 8d36311062b61..ecbe250536c37 100644 --- a/clients/client-clouddirectory/src/commands/AddFacetToObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/AddFacetToObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddFacetToObjectRequest, AddFacetToObjectResponse } from "../models/models_0"; +import type { AddFacetToObjectRequest, AddFacetToObjectResponse } from "../models/models_0"; import { AddFacetToObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ApplySchemaCommand.ts b/clients/client-clouddirectory/src/commands/ApplySchemaCommand.ts index 9ec74d2de5c02..603ec547d6786 100644 --- a/clients/client-clouddirectory/src/commands/ApplySchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/ApplySchemaCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplySchemaRequest, ApplySchemaResponse } from "../models/models_0"; +import type { ApplySchemaRequest, ApplySchemaResponse } from "../models/models_0"; import { ApplySchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/AttachObjectCommand.ts b/clients/client-clouddirectory/src/commands/AttachObjectCommand.ts index 3df8a795a00cd..a5b8139f5d591 100644 --- a/clients/client-clouddirectory/src/commands/AttachObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/AttachObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachObjectRequest, AttachObjectResponse } from "../models/models_0"; +import type { AttachObjectRequest, AttachObjectResponse } from "../models/models_0"; import { AttachObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/AttachPolicyCommand.ts b/clients/client-clouddirectory/src/commands/AttachPolicyCommand.ts index b9124c95403c7..ffaab6745afdf 100644 --- a/clients/client-clouddirectory/src/commands/AttachPolicyCommand.ts +++ b/clients/client-clouddirectory/src/commands/AttachPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachPolicyRequest, AttachPolicyResponse } from "../models/models_0"; +import type { AttachPolicyRequest, AttachPolicyResponse } from "../models/models_0"; import { AttachPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/AttachToIndexCommand.ts b/clients/client-clouddirectory/src/commands/AttachToIndexCommand.ts index e970f7cf8a9d6..16ad59fbd7c5b 100644 --- a/clients/client-clouddirectory/src/commands/AttachToIndexCommand.ts +++ b/clients/client-clouddirectory/src/commands/AttachToIndexCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachToIndexRequest, AttachToIndexResponse } from "../models/models_0"; +import type { AttachToIndexRequest, AttachToIndexResponse } from "../models/models_0"; import { AttachToIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/AttachTypedLinkCommand.ts b/clients/client-clouddirectory/src/commands/AttachTypedLinkCommand.ts index 827cffde9ed28..e69defea1d79e 100644 --- a/clients/client-clouddirectory/src/commands/AttachTypedLinkCommand.ts +++ b/clients/client-clouddirectory/src/commands/AttachTypedLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachTypedLinkRequest, AttachTypedLinkResponse } from "../models/models_0"; +import type { AttachTypedLinkRequest, AttachTypedLinkResponse } from "../models/models_0"; import { AttachTypedLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/BatchReadCommand.ts b/clients/client-clouddirectory/src/commands/BatchReadCommand.ts index 0abf195aeeb10..4cbc7a55ef3c9 100644 --- a/clients/client-clouddirectory/src/commands/BatchReadCommand.ts +++ b/clients/client-clouddirectory/src/commands/BatchReadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchReadRequest, BatchReadResponse } from "../models/models_0"; +import type { BatchReadRequest, BatchReadResponse } from "../models/models_0"; import { BatchRead } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/BatchWriteCommand.ts b/clients/client-clouddirectory/src/commands/BatchWriteCommand.ts index 5c0250566fab8..30c0516aa83f6 100644 --- a/clients/client-clouddirectory/src/commands/BatchWriteCommand.ts +++ b/clients/client-clouddirectory/src/commands/BatchWriteCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchWriteRequest, BatchWriteResponse } from "../models/models_0"; +import type { BatchWriteRequest, BatchWriteResponse } from "../models/models_0"; import { BatchWrite } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/CreateDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/CreateDirectoryCommand.ts index 6d11f001412c6..a35d82336cb4d 100644 --- a/clients/client-clouddirectory/src/commands/CreateDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDirectoryRequest, CreateDirectoryResponse } from "../models/models_0"; +import type { CreateDirectoryRequest, CreateDirectoryResponse } from "../models/models_0"; import { CreateDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/CreateFacetCommand.ts b/clients/client-clouddirectory/src/commands/CreateFacetCommand.ts index 4ef5eb8779153..cf2ceca8a8367 100644 --- a/clients/client-clouddirectory/src/commands/CreateFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateFacetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFacetRequest, CreateFacetResponse } from "../models/models_0"; +import type { CreateFacetRequest, CreateFacetResponse } from "../models/models_0"; import { CreateFacet } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/CreateIndexCommand.ts b/clients/client-clouddirectory/src/commands/CreateIndexCommand.ts index 987c60ccf1bcf..6ec92a2f162b6 100644 --- a/clients/client-clouddirectory/src/commands/CreateIndexCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateIndexCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; +import type { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; import { CreateIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/CreateObjectCommand.ts b/clients/client-clouddirectory/src/commands/CreateObjectCommand.ts index e3038f5c637cf..b93672c9e0606 100644 --- a/clients/client-clouddirectory/src/commands/CreateObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateObjectRequest, CreateObjectResponse } from "../models/models_0"; +import type { CreateObjectRequest, CreateObjectResponse } from "../models/models_0"; import { CreateObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/CreateSchemaCommand.ts b/clients/client-clouddirectory/src/commands/CreateSchemaCommand.ts index a27aaa0b78ef9..3c0d04f8270c2 100644 --- a/clients/client-clouddirectory/src/commands/CreateSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateSchemaCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSchemaRequest, CreateSchemaResponse } from "../models/models_0"; +import type { CreateSchemaRequest, CreateSchemaResponse } from "../models/models_0"; import { CreateSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/CreateTypedLinkFacetCommand.ts b/clients/client-clouddirectory/src/commands/CreateTypedLinkFacetCommand.ts index 593281a3ec091..74d8a9404bf30 100644 --- a/clients/client-clouddirectory/src/commands/CreateTypedLinkFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/CreateTypedLinkFacetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTypedLinkFacetRequest, CreateTypedLinkFacetResponse } from "../models/models_0"; +import type { CreateTypedLinkFacetRequest, CreateTypedLinkFacetResponse } from "../models/models_0"; import { CreateTypedLinkFacet } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DeleteDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/DeleteDirectoryCommand.ts index 025e0275b1d9d..c6d30ab1ed747 100644 --- a/clients/client-clouddirectory/src/commands/DeleteDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDirectoryRequest, DeleteDirectoryResponse } from "../models/models_0"; +import type { DeleteDirectoryRequest, DeleteDirectoryResponse } from "../models/models_0"; import { DeleteDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DeleteFacetCommand.ts b/clients/client-clouddirectory/src/commands/DeleteFacetCommand.ts index c1064bb1da870..2a17400eb531b 100644 --- a/clients/client-clouddirectory/src/commands/DeleteFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteFacetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFacetRequest, DeleteFacetResponse } from "../models/models_0"; +import type { DeleteFacetRequest, DeleteFacetResponse } from "../models/models_0"; import { DeleteFacet } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DeleteObjectCommand.ts b/clients/client-clouddirectory/src/commands/DeleteObjectCommand.ts index 59c159a0a139a..53d43ff126875 100644 --- a/clients/client-clouddirectory/src/commands/DeleteObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteObjectRequest, DeleteObjectResponse } from "../models/models_0"; +import type { DeleteObjectRequest, DeleteObjectResponse } from "../models/models_0"; import { DeleteObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DeleteSchemaCommand.ts b/clients/client-clouddirectory/src/commands/DeleteSchemaCommand.ts index 37e48c468e89a..f213161c644b0 100644 --- a/clients/client-clouddirectory/src/commands/DeleteSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteSchemaCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSchemaRequest, DeleteSchemaResponse } from "../models/models_0"; +import type { DeleteSchemaRequest, DeleteSchemaResponse } from "../models/models_0"; import { DeleteSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DeleteTypedLinkFacetCommand.ts b/clients/client-clouddirectory/src/commands/DeleteTypedLinkFacetCommand.ts index bb11b5dac57d6..d9395c2b7396f 100644 --- a/clients/client-clouddirectory/src/commands/DeleteTypedLinkFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/DeleteTypedLinkFacetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTypedLinkFacetRequest, DeleteTypedLinkFacetResponse } from "../models/models_0"; +import type { DeleteTypedLinkFacetRequest, DeleteTypedLinkFacetResponse } from "../models/models_0"; import { DeleteTypedLinkFacet } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DetachFromIndexCommand.ts b/clients/client-clouddirectory/src/commands/DetachFromIndexCommand.ts index 51d1187bb7516..3784ff6328d80 100644 --- a/clients/client-clouddirectory/src/commands/DetachFromIndexCommand.ts +++ b/clients/client-clouddirectory/src/commands/DetachFromIndexCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachFromIndexRequest, DetachFromIndexResponse } from "../models/models_0"; +import type { DetachFromIndexRequest, DetachFromIndexResponse } from "../models/models_0"; import { DetachFromIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DetachObjectCommand.ts b/clients/client-clouddirectory/src/commands/DetachObjectCommand.ts index 4ee38da9d0b0b..af367b1455018 100644 --- a/clients/client-clouddirectory/src/commands/DetachObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/DetachObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachObjectRequest, DetachObjectResponse } from "../models/models_0"; +import type { DetachObjectRequest, DetachObjectResponse } from "../models/models_0"; import { DetachObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DetachPolicyCommand.ts b/clients/client-clouddirectory/src/commands/DetachPolicyCommand.ts index 04253e910f40e..cba0ad4cdd66c 100644 --- a/clients/client-clouddirectory/src/commands/DetachPolicyCommand.ts +++ b/clients/client-clouddirectory/src/commands/DetachPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachPolicyRequest, DetachPolicyResponse } from "../models/models_0"; +import type { DetachPolicyRequest, DetachPolicyResponse } from "../models/models_0"; import { DetachPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DetachTypedLinkCommand.ts b/clients/client-clouddirectory/src/commands/DetachTypedLinkCommand.ts index b61ea5829ff29..3613b44e6a747 100644 --- a/clients/client-clouddirectory/src/commands/DetachTypedLinkCommand.ts +++ b/clients/client-clouddirectory/src/commands/DetachTypedLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachTypedLinkRequest } from "../models/models_0"; +import type { DetachTypedLinkRequest } from "../models/models_0"; import { DetachTypedLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/DisableDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/DisableDirectoryCommand.ts index d39cd77687a81..2d486f1b9a52c 100644 --- a/clients/client-clouddirectory/src/commands/DisableDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/DisableDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableDirectoryRequest, DisableDirectoryResponse } from "../models/models_0"; +import type { DisableDirectoryRequest, DisableDirectoryResponse } from "../models/models_0"; import { DisableDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/EnableDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/EnableDirectoryCommand.ts index 9ea516988cbb5..7f3f0deaa44e1 100644 --- a/clients/client-clouddirectory/src/commands/EnableDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/EnableDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableDirectoryRequest, EnableDirectoryResponse } from "../models/models_0"; +import type { EnableDirectoryRequest, EnableDirectoryResponse } from "../models/models_0"; import { EnableDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/GetAppliedSchemaVersionCommand.ts b/clients/client-clouddirectory/src/commands/GetAppliedSchemaVersionCommand.ts index 7fe65ad598928..fd343b3995c05 100644 --- a/clients/client-clouddirectory/src/commands/GetAppliedSchemaVersionCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetAppliedSchemaVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAppliedSchemaVersionRequest, GetAppliedSchemaVersionResponse } from "../models/models_0"; +import type { GetAppliedSchemaVersionRequest, GetAppliedSchemaVersionResponse } from "../models/models_0"; import { GetAppliedSchemaVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/GetDirectoryCommand.ts b/clients/client-clouddirectory/src/commands/GetDirectoryCommand.ts index 94c8314c5a15b..d0c96f17ca37c 100644 --- a/clients/client-clouddirectory/src/commands/GetDirectoryCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDirectoryRequest, GetDirectoryResponse } from "../models/models_0"; +import type { GetDirectoryRequest, GetDirectoryResponse } from "../models/models_0"; import { GetDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/GetFacetCommand.ts b/clients/client-clouddirectory/src/commands/GetFacetCommand.ts index e62a15aa014b6..64c6b07f90bc4 100644 --- a/clients/client-clouddirectory/src/commands/GetFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetFacetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFacetRequest, GetFacetResponse } from "../models/models_0"; +import type { GetFacetRequest, GetFacetResponse } from "../models/models_0"; import { GetFacet } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/GetLinkAttributesCommand.ts b/clients/client-clouddirectory/src/commands/GetLinkAttributesCommand.ts index 557da501f9da5..783953d600136 100644 --- a/clients/client-clouddirectory/src/commands/GetLinkAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetLinkAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLinkAttributesRequest, GetLinkAttributesResponse } from "../models/models_0"; +import type { GetLinkAttributesRequest, GetLinkAttributesResponse } from "../models/models_0"; import { GetLinkAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/GetObjectAttributesCommand.ts b/clients/client-clouddirectory/src/commands/GetObjectAttributesCommand.ts index 3830fc333a0d7..edeb48d620d72 100644 --- a/clients/client-clouddirectory/src/commands/GetObjectAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetObjectAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectAttributesRequest, GetObjectAttributesResponse } from "../models/models_0"; +import type { GetObjectAttributesRequest, GetObjectAttributesResponse } from "../models/models_0"; import { GetObjectAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/GetObjectInformationCommand.ts b/clients/client-clouddirectory/src/commands/GetObjectInformationCommand.ts index 95c7c475b0110..6545d3a077a83 100644 --- a/clients/client-clouddirectory/src/commands/GetObjectInformationCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetObjectInformationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectInformationRequest, GetObjectInformationResponse } from "../models/models_0"; +import type { GetObjectInformationRequest, GetObjectInformationResponse } from "../models/models_0"; import { GetObjectInformation } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/GetSchemaAsJsonCommand.ts b/clients/client-clouddirectory/src/commands/GetSchemaAsJsonCommand.ts index 328684d3b8d3e..30fb12647efac 100644 --- a/clients/client-clouddirectory/src/commands/GetSchemaAsJsonCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetSchemaAsJsonCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSchemaAsJsonRequest, GetSchemaAsJsonResponse } from "../models/models_0"; +import type { GetSchemaAsJsonRequest, GetSchemaAsJsonResponse } from "../models/models_0"; import { GetSchemaAsJson } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/GetTypedLinkFacetInformationCommand.ts b/clients/client-clouddirectory/src/commands/GetTypedLinkFacetInformationCommand.ts index 5d51788e9bcde..3ca5c08ab926a 100644 --- a/clients/client-clouddirectory/src/commands/GetTypedLinkFacetInformationCommand.ts +++ b/clients/client-clouddirectory/src/commands/GetTypedLinkFacetInformationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTypedLinkFacetInformationRequest, GetTypedLinkFacetInformationResponse } from "../models/models_0"; +import type { GetTypedLinkFacetInformationRequest, GetTypedLinkFacetInformationResponse } from "../models/models_0"; import { GetTypedLinkFacetInformation } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListAppliedSchemaArnsCommand.ts b/clients/client-clouddirectory/src/commands/ListAppliedSchemaArnsCommand.ts index b36f95abcdb64..174007b539aa4 100644 --- a/clients/client-clouddirectory/src/commands/ListAppliedSchemaArnsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListAppliedSchemaArnsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppliedSchemaArnsRequest, ListAppliedSchemaArnsResponse } from "../models/models_0"; +import type { ListAppliedSchemaArnsRequest, ListAppliedSchemaArnsResponse } from "../models/models_0"; import { ListAppliedSchemaArns } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListAttachedIndicesCommand.ts b/clients/client-clouddirectory/src/commands/ListAttachedIndicesCommand.ts index 213adb8b0ea7e..e0460c61ec82d 100644 --- a/clients/client-clouddirectory/src/commands/ListAttachedIndicesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListAttachedIndicesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAttachedIndicesRequest, ListAttachedIndicesResponse } from "../models/models_0"; +import type { ListAttachedIndicesRequest, ListAttachedIndicesResponse } from "../models/models_0"; import { ListAttachedIndices } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListDevelopmentSchemaArnsCommand.ts b/clients/client-clouddirectory/src/commands/ListDevelopmentSchemaArnsCommand.ts index e78de849fde97..3c295fea0f7f1 100644 --- a/clients/client-clouddirectory/src/commands/ListDevelopmentSchemaArnsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListDevelopmentSchemaArnsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevelopmentSchemaArnsRequest, ListDevelopmentSchemaArnsResponse } from "../models/models_0"; +import type { ListDevelopmentSchemaArnsRequest, ListDevelopmentSchemaArnsResponse } from "../models/models_0"; import { ListDevelopmentSchemaArns } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListDirectoriesCommand.ts b/clients/client-clouddirectory/src/commands/ListDirectoriesCommand.ts index 731d4f1e6084c..622b23b1c2b37 100644 --- a/clients/client-clouddirectory/src/commands/ListDirectoriesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListDirectoriesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDirectoriesRequest, ListDirectoriesResponse } from "../models/models_0"; +import type { ListDirectoriesRequest, ListDirectoriesResponse } from "../models/models_0"; import { ListDirectories } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListFacetAttributesCommand.ts b/clients/client-clouddirectory/src/commands/ListFacetAttributesCommand.ts index b27e4a613c47f..a040ead99a7a6 100644 --- a/clients/client-clouddirectory/src/commands/ListFacetAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListFacetAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFacetAttributesRequest, ListFacetAttributesResponse } from "../models/models_0"; +import type { ListFacetAttributesRequest, ListFacetAttributesResponse } from "../models/models_0"; import { ListFacetAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListFacetNamesCommand.ts b/clients/client-clouddirectory/src/commands/ListFacetNamesCommand.ts index f99cf7fdfd758..b9b62f990fffe 100644 --- a/clients/client-clouddirectory/src/commands/ListFacetNamesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListFacetNamesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFacetNamesRequest, ListFacetNamesResponse } from "../models/models_0"; +import type { ListFacetNamesRequest, ListFacetNamesResponse } from "../models/models_0"; import { ListFacetNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListIncomingTypedLinksCommand.ts b/clients/client-clouddirectory/src/commands/ListIncomingTypedLinksCommand.ts index 3bc23d649a8f9..171a118733e41 100644 --- a/clients/client-clouddirectory/src/commands/ListIncomingTypedLinksCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListIncomingTypedLinksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIncomingTypedLinksRequest, ListIncomingTypedLinksResponse } from "../models/models_0"; +import type { ListIncomingTypedLinksRequest, ListIncomingTypedLinksResponse } from "../models/models_0"; import { ListIncomingTypedLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListIndexCommand.ts b/clients/client-clouddirectory/src/commands/ListIndexCommand.ts index 8f7f6659ba0e4..088f1d9fd5c3d 100644 --- a/clients/client-clouddirectory/src/commands/ListIndexCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListIndexCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIndexRequest, ListIndexResponse } from "../models/models_0"; +import type { ListIndexRequest, ListIndexResponse } from "../models/models_0"; import { ListIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListManagedSchemaArnsCommand.ts b/clients/client-clouddirectory/src/commands/ListManagedSchemaArnsCommand.ts index 11ce810f6e865..cfe006115e345 100644 --- a/clients/client-clouddirectory/src/commands/ListManagedSchemaArnsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListManagedSchemaArnsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListManagedSchemaArnsRequest, ListManagedSchemaArnsResponse } from "../models/models_0"; +import type { ListManagedSchemaArnsRequest, ListManagedSchemaArnsResponse } from "../models/models_0"; import { ListManagedSchemaArns } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListObjectAttributesCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectAttributesCommand.ts index 256507eeb990c..4f4129e6d4ce1 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectAttributesRequest, ListObjectAttributesResponse } from "../models/models_0"; +import type { ListObjectAttributesRequest, ListObjectAttributesResponse } from "../models/models_0"; import { ListObjectAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListObjectChildrenCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectChildrenCommand.ts index 829e4629a5f61..723a20ad92c76 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectChildrenCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectChildrenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectChildrenRequest, ListObjectChildrenResponse } from "../models/models_0"; +import type { ListObjectChildrenRequest, ListObjectChildrenResponse } from "../models/models_0"; import { ListObjectChildren } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListObjectParentPathsCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectParentPathsCommand.ts index ce357d91e0842..2d1f0a9682dde 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectParentPathsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectParentPathsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectParentPathsRequest, ListObjectParentPathsResponse } from "../models/models_0"; +import type { ListObjectParentPathsRequest, ListObjectParentPathsResponse } from "../models/models_0"; import { ListObjectParentPaths } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListObjectParentsCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectParentsCommand.ts index bb722bd3239a7..5116a7e2b2a53 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectParentsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectParentsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectParentsRequest, ListObjectParentsResponse } from "../models/models_0"; +import type { ListObjectParentsRequest, ListObjectParentsResponse } from "../models/models_0"; import { ListObjectParents } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListObjectPoliciesCommand.ts b/clients/client-clouddirectory/src/commands/ListObjectPoliciesCommand.ts index ff103be2b00df..3a931905639b8 100644 --- a/clients/client-clouddirectory/src/commands/ListObjectPoliciesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListObjectPoliciesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectPoliciesRequest, ListObjectPoliciesResponse } from "../models/models_0"; +import type { ListObjectPoliciesRequest, ListObjectPoliciesResponse } from "../models/models_0"; import { ListObjectPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListOutgoingTypedLinksCommand.ts b/clients/client-clouddirectory/src/commands/ListOutgoingTypedLinksCommand.ts index 3dc20f83be5a0..7e3fba3a217a1 100644 --- a/clients/client-clouddirectory/src/commands/ListOutgoingTypedLinksCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListOutgoingTypedLinksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOutgoingTypedLinksRequest, ListOutgoingTypedLinksResponse } from "../models/models_0"; +import type { ListOutgoingTypedLinksRequest, ListOutgoingTypedLinksResponse } from "../models/models_0"; import { ListOutgoingTypedLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListPolicyAttachmentsCommand.ts b/clients/client-clouddirectory/src/commands/ListPolicyAttachmentsCommand.ts index da9ca7339bf34..7cbe8548b48fe 100644 --- a/clients/client-clouddirectory/src/commands/ListPolicyAttachmentsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListPolicyAttachmentsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPolicyAttachmentsRequest, ListPolicyAttachmentsResponse } from "../models/models_0"; +import type { ListPolicyAttachmentsRequest, ListPolicyAttachmentsResponse } from "../models/models_0"; import { ListPolicyAttachments } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListPublishedSchemaArnsCommand.ts b/clients/client-clouddirectory/src/commands/ListPublishedSchemaArnsCommand.ts index e0f1e49039382..9bfc38b5bb683 100644 --- a/clients/client-clouddirectory/src/commands/ListPublishedSchemaArnsCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListPublishedSchemaArnsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPublishedSchemaArnsRequest, ListPublishedSchemaArnsResponse } from "../models/models_0"; +import type { ListPublishedSchemaArnsRequest, ListPublishedSchemaArnsResponse } from "../models/models_0"; import { ListPublishedSchemaArns } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListTagsForResourceCommand.ts b/clients/client-clouddirectory/src/commands/ListTagsForResourceCommand.ts index f35090e9eeeef..c084d738b2f79 100644 --- a/clients/client-clouddirectory/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListTypedLinkFacetAttributesCommand.ts b/clients/client-clouddirectory/src/commands/ListTypedLinkFacetAttributesCommand.ts index 3c0d9ed501e2c..0aeb626d9fb77 100644 --- a/clients/client-clouddirectory/src/commands/ListTypedLinkFacetAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListTypedLinkFacetAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTypedLinkFacetAttributesRequest, ListTypedLinkFacetAttributesResponse } from "../models/models_0"; +import type { ListTypedLinkFacetAttributesRequest, ListTypedLinkFacetAttributesResponse } from "../models/models_0"; import { ListTypedLinkFacetAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/ListTypedLinkFacetNamesCommand.ts b/clients/client-clouddirectory/src/commands/ListTypedLinkFacetNamesCommand.ts index d70ea26c94665..3ea386a1e062e 100644 --- a/clients/client-clouddirectory/src/commands/ListTypedLinkFacetNamesCommand.ts +++ b/clients/client-clouddirectory/src/commands/ListTypedLinkFacetNamesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTypedLinkFacetNamesRequest, ListTypedLinkFacetNamesResponse } from "../models/models_0"; +import type { ListTypedLinkFacetNamesRequest, ListTypedLinkFacetNamesResponse } from "../models/models_0"; import { ListTypedLinkFacetNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/LookupPolicyCommand.ts b/clients/client-clouddirectory/src/commands/LookupPolicyCommand.ts index 88be2d55ab44d..0ca07f89051f0 100644 --- a/clients/client-clouddirectory/src/commands/LookupPolicyCommand.ts +++ b/clients/client-clouddirectory/src/commands/LookupPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookupPolicyRequest, LookupPolicyResponse } from "../models/models_0"; +import type { LookupPolicyRequest, LookupPolicyResponse } from "../models/models_0"; import { LookupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/PublishSchemaCommand.ts b/clients/client-clouddirectory/src/commands/PublishSchemaCommand.ts index 84f1957f13696..7344ed81d07d5 100644 --- a/clients/client-clouddirectory/src/commands/PublishSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/PublishSchemaCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishSchemaRequest, PublishSchemaResponse } from "../models/models_0"; +import type { PublishSchemaRequest, PublishSchemaResponse } from "../models/models_0"; import { PublishSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/PutSchemaFromJsonCommand.ts b/clients/client-clouddirectory/src/commands/PutSchemaFromJsonCommand.ts index 79bf3b4424347..cab4d5d1a660c 100644 --- a/clients/client-clouddirectory/src/commands/PutSchemaFromJsonCommand.ts +++ b/clients/client-clouddirectory/src/commands/PutSchemaFromJsonCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSchemaFromJsonRequest, PutSchemaFromJsonResponse } from "../models/models_0"; +import type { PutSchemaFromJsonRequest, PutSchemaFromJsonResponse } from "../models/models_0"; import { PutSchemaFromJson } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/RemoveFacetFromObjectCommand.ts b/clients/client-clouddirectory/src/commands/RemoveFacetFromObjectCommand.ts index 536499d3b9330..70e4e9bc49781 100644 --- a/clients/client-clouddirectory/src/commands/RemoveFacetFromObjectCommand.ts +++ b/clients/client-clouddirectory/src/commands/RemoveFacetFromObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveFacetFromObjectRequest, RemoveFacetFromObjectResponse } from "../models/models_0"; +import type { RemoveFacetFromObjectRequest, RemoveFacetFromObjectResponse } from "../models/models_0"; import { RemoveFacetFromObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/TagResourceCommand.ts b/clients/client-clouddirectory/src/commands/TagResourceCommand.ts index a9575b64a6999..2752e17b15317 100644 --- a/clients/client-clouddirectory/src/commands/TagResourceCommand.ts +++ b/clients/client-clouddirectory/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/UntagResourceCommand.ts b/clients/client-clouddirectory/src/commands/UntagResourceCommand.ts index c8cdfef431830..e3d24df9395f2 100644 --- a/clients/client-clouddirectory/src/commands/UntagResourceCommand.ts +++ b/clients/client-clouddirectory/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/UpdateFacetCommand.ts b/clients/client-clouddirectory/src/commands/UpdateFacetCommand.ts index c912dc3a9c0a0..9cbda9f8ac164 100644 --- a/clients/client-clouddirectory/src/commands/UpdateFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateFacetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFacetRequest, UpdateFacetResponse } from "../models/models_0"; +import type { UpdateFacetRequest, UpdateFacetResponse } from "../models/models_0"; import { UpdateFacet } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/UpdateLinkAttributesCommand.ts b/clients/client-clouddirectory/src/commands/UpdateLinkAttributesCommand.ts index 182dc1765b0a1..dc006226232f1 100644 --- a/clients/client-clouddirectory/src/commands/UpdateLinkAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateLinkAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLinkAttributesRequest, UpdateLinkAttributesResponse } from "../models/models_0"; +import type { UpdateLinkAttributesRequest, UpdateLinkAttributesResponse } from "../models/models_0"; import { UpdateLinkAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/UpdateObjectAttributesCommand.ts b/clients/client-clouddirectory/src/commands/UpdateObjectAttributesCommand.ts index b978766752078..27886afb52b23 100644 --- a/clients/client-clouddirectory/src/commands/UpdateObjectAttributesCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateObjectAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateObjectAttributesRequest, UpdateObjectAttributesResponse } from "../models/models_0"; +import type { UpdateObjectAttributesRequest, UpdateObjectAttributesResponse } from "../models/models_0"; import { UpdateObjectAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/UpdateSchemaCommand.ts b/clients/client-clouddirectory/src/commands/UpdateSchemaCommand.ts index 746ab997fcd53..7414d88bbcb60 100644 --- a/clients/client-clouddirectory/src/commands/UpdateSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateSchemaCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSchemaRequest, UpdateSchemaResponse } from "../models/models_0"; +import type { UpdateSchemaRequest, UpdateSchemaResponse } from "../models/models_0"; import { UpdateSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/UpdateTypedLinkFacetCommand.ts b/clients/client-clouddirectory/src/commands/UpdateTypedLinkFacetCommand.ts index 28da15ff797b0..5e2da568fb4d9 100644 --- a/clients/client-clouddirectory/src/commands/UpdateTypedLinkFacetCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpdateTypedLinkFacetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTypedLinkFacetRequest, UpdateTypedLinkFacetResponse } from "../models/models_0"; +import type { UpdateTypedLinkFacetRequest, UpdateTypedLinkFacetResponse } from "../models/models_0"; import { UpdateTypedLinkFacet } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/UpgradeAppliedSchemaCommand.ts b/clients/client-clouddirectory/src/commands/UpgradeAppliedSchemaCommand.ts index 892a1e2289b38..b622b638a3347 100644 --- a/clients/client-clouddirectory/src/commands/UpgradeAppliedSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpgradeAppliedSchemaCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpgradeAppliedSchemaRequest, UpgradeAppliedSchemaResponse } from "../models/models_0"; +import type { UpgradeAppliedSchemaRequest, UpgradeAppliedSchemaResponse } from "../models/models_0"; import { UpgradeAppliedSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/commands/UpgradePublishedSchemaCommand.ts b/clients/client-clouddirectory/src/commands/UpgradePublishedSchemaCommand.ts index 11753c7003142..1fb26a52c9806 100644 --- a/clients/client-clouddirectory/src/commands/UpgradePublishedSchemaCommand.ts +++ b/clients/client-clouddirectory/src/commands/UpgradePublishedSchemaCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudDirectoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudDirectoryClient"; +import type { + CloudDirectoryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudDirectoryClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpgradePublishedSchemaRequest, UpgradePublishedSchemaResponse } from "../models/models_0"; +import type { UpgradePublishedSchemaRequest, UpgradePublishedSchemaResponse } from "../models/models_0"; import { UpgradePublishedSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-clouddirectory/src/endpoint/EndpointParameters.ts b/clients/client-clouddirectory/src/endpoint/EndpointParameters.ts index eec20245a8b1b..82b6b7a0f0057 100644 --- a/clients/client-clouddirectory/src/endpoint/EndpointParameters.ts +++ b/clients/client-clouddirectory/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-clouddirectory/src/endpoint/endpointResolver.ts b/clients/client-clouddirectory/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-clouddirectory/src/endpoint/endpointResolver.ts +++ b/clients/client-clouddirectory/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-clouddirectory/src/extensionConfiguration.ts b/clients/client-clouddirectory/src/extensionConfiguration.ts index 849562a31dcf3..5c5ace779cbe0 100644 --- a/clients/client-clouddirectory/src/extensionConfiguration.ts +++ b/clients/client-clouddirectory/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-clouddirectory/src/models/CloudDirectoryServiceException.ts b/clients/client-clouddirectory/src/models/CloudDirectoryServiceException.ts index eeb0d290d8022..0145a5f8e21ca 100644 --- a/clients/client-clouddirectory/src/models/CloudDirectoryServiceException.ts +++ b/clients/client-clouddirectory/src/models/CloudDirectoryServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-clouddirectory/src/models/errors.ts b/clients/client-clouddirectory/src/models/errors.ts index 6e5147136801f..cadac8fa62ff9 100644 --- a/clients/client-clouddirectory/src/models/errors.ts +++ b/clients/client-clouddirectory/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudDirectoryServiceException as __BaseException } from "./CloudDirectoryServiceException"; import { BatchWriteExceptionType } from "./enums"; diff --git a/clients/client-clouddirectory/src/pagination/Interfaces.ts b/clients/client-clouddirectory/src/pagination/Interfaces.ts index ce74f724fbaf4..9ac071019f8bc 100644 --- a/clients/client-clouddirectory/src/pagination/Interfaces.ts +++ b/clients/client-clouddirectory/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; diff --git a/clients/client-clouddirectory/src/pagination/ListAppliedSchemaArnsPaginator.ts b/clients/client-clouddirectory/src/pagination/ListAppliedSchemaArnsPaginator.ts index 139c24f7b0132..bba778da7977a 100644 --- a/clients/client-clouddirectory/src/pagination/ListAppliedSchemaArnsPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListAppliedSchemaArnsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListAttachedIndicesPaginator.ts b/clients/client-clouddirectory/src/pagination/ListAttachedIndicesPaginator.ts index 80291b2796df8..eef2247b7237e 100644 --- a/clients/client-clouddirectory/src/pagination/ListAttachedIndicesPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListAttachedIndicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListDevelopmentSchemaArnsPaginator.ts b/clients/client-clouddirectory/src/pagination/ListDevelopmentSchemaArnsPaginator.ts index 70409ffd8adc1..64830ca029c03 100644 --- a/clients/client-clouddirectory/src/pagination/ListDevelopmentSchemaArnsPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListDevelopmentSchemaArnsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListDirectoriesPaginator.ts b/clients/client-clouddirectory/src/pagination/ListDirectoriesPaginator.ts index a1e86c0aa585e..ac7c4cf8532be 100644 --- a/clients/client-clouddirectory/src/pagination/ListDirectoriesPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListDirectoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListFacetAttributesPaginator.ts b/clients/client-clouddirectory/src/pagination/ListFacetAttributesPaginator.ts index fd6511f9a826d..bb82eec3dce99 100644 --- a/clients/client-clouddirectory/src/pagination/ListFacetAttributesPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListFacetAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListFacetNamesPaginator.ts b/clients/client-clouddirectory/src/pagination/ListFacetNamesPaginator.ts index f356100658535..af73686122bf0 100644 --- a/clients/client-clouddirectory/src/pagination/ListFacetNamesPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListFacetNamesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListIndexPaginator.ts b/clients/client-clouddirectory/src/pagination/ListIndexPaginator.ts index ebf7d02555396..9aa0e7c32b29e 100644 --- a/clients/client-clouddirectory/src/pagination/ListIndexPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListIndexPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { ListIndexCommand, ListIndexCommandInput, ListIndexCommandOutput } from "../commands/ListIndexCommand"; diff --git a/clients/client-clouddirectory/src/pagination/ListManagedSchemaArnsPaginator.ts b/clients/client-clouddirectory/src/pagination/ListManagedSchemaArnsPaginator.ts index 75bd48f5e329f..1ddf5f2580e6b 100644 --- a/clients/client-clouddirectory/src/pagination/ListManagedSchemaArnsPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListManagedSchemaArnsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListObjectAttributesPaginator.ts b/clients/client-clouddirectory/src/pagination/ListObjectAttributesPaginator.ts index 726383f57d297..bf0206a2c32df 100644 --- a/clients/client-clouddirectory/src/pagination/ListObjectAttributesPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListObjectAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListObjectChildrenPaginator.ts b/clients/client-clouddirectory/src/pagination/ListObjectChildrenPaginator.ts index 4892d7271eebe..401a1d7d2c492 100644 --- a/clients/client-clouddirectory/src/pagination/ListObjectChildrenPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListObjectChildrenPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListObjectParentPathsPaginator.ts b/clients/client-clouddirectory/src/pagination/ListObjectParentPathsPaginator.ts index c47951ededda0..40a4739711e88 100644 --- a/clients/client-clouddirectory/src/pagination/ListObjectParentPathsPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListObjectParentPathsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListObjectParentsPaginator.ts b/clients/client-clouddirectory/src/pagination/ListObjectParentsPaginator.ts index 4bbfd2a410572..4b9b531d22146 100644 --- a/clients/client-clouddirectory/src/pagination/ListObjectParentsPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListObjectParentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListObjectPoliciesPaginator.ts b/clients/client-clouddirectory/src/pagination/ListObjectPoliciesPaginator.ts index 85332705255bb..d5c6902dca748 100644 --- a/clients/client-clouddirectory/src/pagination/ListObjectPoliciesPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListObjectPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListPolicyAttachmentsPaginator.ts b/clients/client-clouddirectory/src/pagination/ListPolicyAttachmentsPaginator.ts index fccac9e4feddf..8b5835ba9e25a 100644 --- a/clients/client-clouddirectory/src/pagination/ListPolicyAttachmentsPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListPolicyAttachmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListPublishedSchemaArnsPaginator.ts b/clients/client-clouddirectory/src/pagination/ListPublishedSchemaArnsPaginator.ts index 9bb018df342b3..483335c50f311 100644 --- a/clients/client-clouddirectory/src/pagination/ListPublishedSchemaArnsPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListPublishedSchemaArnsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-clouddirectory/src/pagination/ListTagsForResourcePaginator.ts index d1314ea736a3b..24668dda53d25 100644 --- a/clients/client-clouddirectory/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListTypedLinkFacetAttributesPaginator.ts b/clients/client-clouddirectory/src/pagination/ListTypedLinkFacetAttributesPaginator.ts index 579096bb63b37..e46c4184c0eb5 100644 --- a/clients/client-clouddirectory/src/pagination/ListTypedLinkFacetAttributesPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListTypedLinkFacetAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/ListTypedLinkFacetNamesPaginator.ts b/clients/client-clouddirectory/src/pagination/ListTypedLinkFacetNamesPaginator.ts index 014792319a00b..7ba67c4cf6e91 100644 --- a/clients/client-clouddirectory/src/pagination/ListTypedLinkFacetNamesPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/ListTypedLinkFacetNamesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/pagination/LookupPolicyPaginator.ts b/clients/client-clouddirectory/src/pagination/LookupPolicyPaginator.ts index e9a6506b1958d..483f9d260b9ef 100644 --- a/clients/client-clouddirectory/src/pagination/LookupPolicyPaginator.ts +++ b/clients/client-clouddirectory/src/pagination/LookupPolicyPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudDirectoryClient } from "../CloudDirectoryClient"; import { diff --git a/clients/client-clouddirectory/src/runtimeConfig.browser.ts b/clients/client-clouddirectory/src/runtimeConfig.browser.ts index 3ef5c5d457dc2..7f289abba9420 100644 --- a/clients/client-clouddirectory/src/runtimeConfig.browser.ts +++ b/clients/client-clouddirectory/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudDirectoryClientConfig } from "./CloudDirectoryClient"; + +import type { CloudDirectoryClientConfig } from "./CloudDirectoryClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-clouddirectory/src/runtimeConfig.native.ts b/clients/client-clouddirectory/src/runtimeConfig.native.ts index 5fbb691d0eccb..ed481181a8975 100644 --- a/clients/client-clouddirectory/src/runtimeConfig.native.ts +++ b/clients/client-clouddirectory/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudDirectoryClientConfig } from "./CloudDirectoryClient"; +import type { CloudDirectoryClientConfig } from "./CloudDirectoryClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-clouddirectory/src/runtimeConfig.shared.ts b/clients/client-clouddirectory/src/runtimeConfig.shared.ts index 2f41877aa6d54..68fcb145b4522 100644 --- a/clients/client-clouddirectory/src/runtimeConfig.shared.ts +++ b/clients/client-clouddirectory/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudDirectoryHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudDirectoryClientConfig } from "./CloudDirectoryClient"; +import type { CloudDirectoryClientConfig } from "./CloudDirectoryClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-clouddirectory/src/runtimeConfig.ts b/clients/client-clouddirectory/src/runtimeConfig.ts index 4d6116d9282dc..51e3943bc2784 100644 --- a/clients/client-clouddirectory/src/runtimeConfig.ts +++ b/clients/client-clouddirectory/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudDirectoryClientConfig } from "./CloudDirectoryClient"; + +import type { CloudDirectoryClientConfig } from "./CloudDirectoryClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-clouddirectory/src/runtimeExtensions.ts b/clients/client-clouddirectory/src/runtimeExtensions.ts index bac13e0df2c14..26dc946076190 100644 --- a/clients/client-clouddirectory/src/runtimeExtensions.ts +++ b/clients/client-clouddirectory/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudDirectoryExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudDirectoryExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-clouddirectory/src/schemas/schemas_0.ts b/clients/client-clouddirectory/src/schemas/schemas_0.ts index 48d49c4d6886d..e6c3ec6787214 100644 --- a/clients/client-clouddirectory/src/schemas/schemas_0.ts +++ b/clients/client-clouddirectory/src/schemas/schemas_0.ts @@ -470,7 +470,7 @@ const n0 = "com.amazonaws.clouddirectory"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cloudformation/package.json b/clients/client-cloudformation/package.json index d75fc4f3d8bad..c268c14df3a0e 100644 --- a/clients/client-cloudformation/package.json +++ b/clients/client-cloudformation/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudformation/src/CloudFormation.ts b/clients/client-cloudformation/src/CloudFormation.ts index b5b3d77d5fcc7..83d8b142f3080 100644 --- a/clients/client-cloudformation/src/CloudFormation.ts +++ b/clients/client-cloudformation/src/CloudFormation.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudFormationClient, CloudFormationClientConfig } from "./CloudFormationClient"; +import { CloudFormationClient } from "./CloudFormationClient"; import { ActivateOrganizationsAccessCommand, ActivateOrganizationsAccessCommandInput, diff --git a/clients/client-cloudformation/src/CloudFormationClient.ts b/clients/client-cloudformation/src/CloudFormationClient.ts index 54194d866bbc2..677c522371c77 100644 --- a/clients/client-cloudformation/src/CloudFormationClient.ts +++ b/clients/client-cloudformation/src/CloudFormationClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudFormationHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -289,7 +298,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudformation/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudformation/src/auth/httpAuthExtensionConfiguration.ts index 821123af4166f..8f6b5c0d69882 100644 --- a/clients/client-cloudformation/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudformation/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudFormationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudFormationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudformation/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudformation/src/auth/httpAuthSchemeProvider.ts index d1d3a50799c38..3f6368024cc3d 100644 --- a/clients/client-cloudformation/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudformation/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudFormationClientConfig, CloudFormationClientResolvedConfig } from "../CloudFormationClient"; +import { type CloudFormationClientResolvedConfig, CloudFormationClientConfig } from "../CloudFormationClient"; /** * @internal diff --git a/clients/client-cloudformation/src/commands/ActivateOrganizationsAccessCommand.ts b/clients/client-cloudformation/src/commands/ActivateOrganizationsAccessCommand.ts index 608e0dae90b1a..73fd7421be68d 100644 --- a/clients/client-cloudformation/src/commands/ActivateOrganizationsAccessCommand.ts +++ b/clients/client-cloudformation/src/commands/ActivateOrganizationsAccessCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateOrganizationsAccessInput, ActivateOrganizationsAccessOutput } from "../models/models_0"; +import type { ActivateOrganizationsAccessInput, ActivateOrganizationsAccessOutput } from "../models/models_0"; import { ActivateOrganizationsAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ActivateTypeCommand.ts b/clients/client-cloudformation/src/commands/ActivateTypeCommand.ts index 9f2d560aba542..7f3a3ff61350e 100644 --- a/clients/client-cloudformation/src/commands/ActivateTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/ActivateTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateTypeInput, ActivateTypeOutput } from "../models/models_0"; +import type { ActivateTypeInput, ActivateTypeOutput } from "../models/models_0"; import { ActivateType } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/BatchDescribeTypeConfigurationsCommand.ts b/clients/client-cloudformation/src/commands/BatchDescribeTypeConfigurationsCommand.ts index a09b8117bf130..04e4fa583c591 100644 --- a/clients/client-cloudformation/src/commands/BatchDescribeTypeConfigurationsCommand.ts +++ b/clients/client-cloudformation/src/commands/BatchDescribeTypeConfigurationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDescribeTypeConfigurationsInput, BatchDescribeTypeConfigurationsOutput } from "../models/models_0"; +import type { BatchDescribeTypeConfigurationsInput, BatchDescribeTypeConfigurationsOutput } from "../models/models_0"; import { BatchDescribeTypeConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/CancelUpdateStackCommand.ts b/clients/client-cloudformation/src/commands/CancelUpdateStackCommand.ts index 5f9f0fbc0d7ec..6794fbc897d98 100644 --- a/clients/client-cloudformation/src/commands/CancelUpdateStackCommand.ts +++ b/clients/client-cloudformation/src/commands/CancelUpdateStackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelUpdateStackInput } from "../models/models_0"; +import type { CancelUpdateStackInput } from "../models/models_0"; import { CancelUpdateStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ContinueUpdateRollbackCommand.ts b/clients/client-cloudformation/src/commands/ContinueUpdateRollbackCommand.ts index 1bf985417be44..91677ec430f15 100644 --- a/clients/client-cloudformation/src/commands/ContinueUpdateRollbackCommand.ts +++ b/clients/client-cloudformation/src/commands/ContinueUpdateRollbackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ContinueUpdateRollbackInput, ContinueUpdateRollbackOutput } from "../models/models_0"; +import type { ContinueUpdateRollbackInput, ContinueUpdateRollbackOutput } from "../models/models_0"; import { ContinueUpdateRollback } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/CreateChangeSetCommand.ts b/clients/client-cloudformation/src/commands/CreateChangeSetCommand.ts index 67298fd6fa1b6..bb80964485d96 100644 --- a/clients/client-cloudformation/src/commands/CreateChangeSetCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateChangeSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChangeSetInput, CreateChangeSetOutput } from "../models/models_0"; +import type { CreateChangeSetInput, CreateChangeSetOutput } from "../models/models_0"; import { CreateChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/CreateGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/CreateGeneratedTemplateCommand.ts index 66fa261cc5292..3f8f53d4ed478 100644 --- a/clients/client-cloudformation/src/commands/CreateGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateGeneratedTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGeneratedTemplateInput, CreateGeneratedTemplateOutput } from "../models/models_0"; +import type { CreateGeneratedTemplateInput, CreateGeneratedTemplateOutput } from "../models/models_0"; import { CreateGeneratedTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/CreateStackCommand.ts b/clients/client-cloudformation/src/commands/CreateStackCommand.ts index c3243fece9b19..d197ab5af280b 100644 --- a/clients/client-cloudformation/src/commands/CreateStackCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateStackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStackInput, CreateStackOutput } from "../models/models_0"; +import type { CreateStackInput, CreateStackOutput } from "../models/models_0"; import { CreateStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/CreateStackInstancesCommand.ts b/clients/client-cloudformation/src/commands/CreateStackInstancesCommand.ts index 9381ff2c7eb75..6b623f7fdf20e 100644 --- a/clients/client-cloudformation/src/commands/CreateStackInstancesCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateStackInstancesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStackInstancesInput, CreateStackInstancesOutput } from "../models/models_0"; +import type { CreateStackInstancesInput, CreateStackInstancesOutput } from "../models/models_0"; import { CreateStackInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/CreateStackRefactorCommand.ts b/clients/client-cloudformation/src/commands/CreateStackRefactorCommand.ts index 771af9d8cb605..07f0823f27739 100644 --- a/clients/client-cloudformation/src/commands/CreateStackRefactorCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateStackRefactorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStackRefactorInput, CreateStackRefactorOutput } from "../models/models_0"; +import type { CreateStackRefactorInput, CreateStackRefactorOutput } from "../models/models_0"; import { CreateStackRefactor } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/CreateStackSetCommand.ts b/clients/client-cloudformation/src/commands/CreateStackSetCommand.ts index 41ba932e5f575..809ce68ca9161 100644 --- a/clients/client-cloudformation/src/commands/CreateStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/CreateStackSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStackSetInput, CreateStackSetOutput } from "../models/models_0"; +import type { CreateStackSetInput, CreateStackSetOutput } from "../models/models_0"; import { CreateStackSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DeactivateOrganizationsAccessCommand.ts b/clients/client-cloudformation/src/commands/DeactivateOrganizationsAccessCommand.ts index 19610f9f06a4f..1ae9b43cc691e 100644 --- a/clients/client-cloudformation/src/commands/DeactivateOrganizationsAccessCommand.ts +++ b/clients/client-cloudformation/src/commands/DeactivateOrganizationsAccessCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeactivateOrganizationsAccessInput, DeactivateOrganizationsAccessOutput } from "../models/models_0"; +import type { DeactivateOrganizationsAccessInput, DeactivateOrganizationsAccessOutput } from "../models/models_0"; import { DeactivateOrganizationsAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DeactivateTypeCommand.ts b/clients/client-cloudformation/src/commands/DeactivateTypeCommand.ts index a5424ce4e3ebe..4698ccef3aa4e 100644 --- a/clients/client-cloudformation/src/commands/DeactivateTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/DeactivateTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeactivateTypeInput, DeactivateTypeOutput } from "../models/models_0"; +import type { DeactivateTypeInput, DeactivateTypeOutput } from "../models/models_0"; import { DeactivateType } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DeleteChangeSetCommand.ts b/clients/client-cloudformation/src/commands/DeleteChangeSetCommand.ts index 6603df1c046f0..f1a22c34b49bc 100644 --- a/clients/client-cloudformation/src/commands/DeleteChangeSetCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteChangeSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChangeSetInput, DeleteChangeSetOutput } from "../models/models_0"; +import type { DeleteChangeSetInput, DeleteChangeSetOutput } from "../models/models_0"; import { DeleteChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DeleteGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/DeleteGeneratedTemplateCommand.ts index d47132e93d6e2..2e855f483167c 100644 --- a/clients/client-cloudformation/src/commands/DeleteGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteGeneratedTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGeneratedTemplateInput } from "../models/models_0"; +import type { DeleteGeneratedTemplateInput } from "../models/models_0"; import { DeleteGeneratedTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DeleteStackCommand.ts b/clients/client-cloudformation/src/commands/DeleteStackCommand.ts index 920573f2d99f7..250240a1758ab 100644 --- a/clients/client-cloudformation/src/commands/DeleteStackCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteStackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStackInput } from "../models/models_0"; +import type { DeleteStackInput } from "../models/models_0"; import { DeleteStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DeleteStackInstancesCommand.ts b/clients/client-cloudformation/src/commands/DeleteStackInstancesCommand.ts index 4d58a32c5bb97..80343c5719811 100644 --- a/clients/client-cloudformation/src/commands/DeleteStackInstancesCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteStackInstancesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStackInstancesInput, DeleteStackInstancesOutput } from "../models/models_0"; +import type { DeleteStackInstancesInput, DeleteStackInstancesOutput } from "../models/models_0"; import { DeleteStackInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DeleteStackSetCommand.ts b/clients/client-cloudformation/src/commands/DeleteStackSetCommand.ts index 72bd8c0f00b7e..ef2d8a5d1aa56 100644 --- a/clients/client-cloudformation/src/commands/DeleteStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/DeleteStackSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStackSetInput, DeleteStackSetOutput } from "../models/models_0"; +import type { DeleteStackSetInput, DeleteStackSetOutput } from "../models/models_0"; import { DeleteStackSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DeregisterTypeCommand.ts b/clients/client-cloudformation/src/commands/DeregisterTypeCommand.ts index 9e6270528db8b..63778fcc00573 100644 --- a/clients/client-cloudformation/src/commands/DeregisterTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/DeregisterTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterTypeInput, DeregisterTypeOutput } from "../models/models_0"; +import type { DeregisterTypeInput, DeregisterTypeOutput } from "../models/models_0"; import { DeregisterType } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-cloudformation/src/commands/DescribeAccountLimitsCommand.ts index ce45e6091e435..671780455f2a1 100644 --- a/clients/client-cloudformation/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeAccountLimitsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountLimitsInput, DescribeAccountLimitsOutput } from "../models/models_0"; +import type { DescribeAccountLimitsInput, DescribeAccountLimitsOutput } from "../models/models_0"; import { DescribeAccountLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeChangeSetCommand.ts b/clients/client-cloudformation/src/commands/DescribeChangeSetCommand.ts index 9d874e3c1b1a1..241411b9634f2 100644 --- a/clients/client-cloudformation/src/commands/DescribeChangeSetCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeChangeSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeChangeSetInput, DescribeChangeSetOutput } from "../models/models_0"; +import type { DescribeChangeSetInput, DescribeChangeSetOutput } from "../models/models_0"; import { DescribeChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeChangeSetHooksCommand.ts b/clients/client-cloudformation/src/commands/DescribeChangeSetHooksCommand.ts index 137f7aab7bd7e..411c1ac1beb0b 100644 --- a/clients/client-cloudformation/src/commands/DescribeChangeSetHooksCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeChangeSetHooksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeChangeSetHooksInput, DescribeChangeSetHooksOutput } from "../models/models_0"; +import type { DescribeChangeSetHooksInput, DescribeChangeSetHooksOutput } from "../models/models_0"; import { DescribeChangeSetHooks } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeEventsCommand.ts b/clients/client-cloudformation/src/commands/DescribeEventsCommand.ts index 468b7c87a7600..1698adccd6cfd 100644 --- a/clients/client-cloudformation/src/commands/DescribeEventsCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsInput, DescribeEventsOutput } from "../models/models_0"; +import type { DescribeEventsInput, DescribeEventsOutput } from "../models/models_0"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/DescribeGeneratedTemplateCommand.ts index a458fe2961f27..0add86c86bf4b 100644 --- a/clients/client-cloudformation/src/commands/DescribeGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeGeneratedTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGeneratedTemplateInput, DescribeGeneratedTemplateOutput } from "../models/models_0"; +import type { DescribeGeneratedTemplateInput, DescribeGeneratedTemplateOutput } from "../models/models_0"; import { DescribeGeneratedTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeOrganizationsAccessCommand.ts b/clients/client-cloudformation/src/commands/DescribeOrganizationsAccessCommand.ts index 03851c97bc7bb..16a3ed17848a1 100644 --- a/clients/client-cloudformation/src/commands/DescribeOrganizationsAccessCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeOrganizationsAccessCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrganizationsAccessInput, DescribeOrganizationsAccessOutput } from "../models/models_0"; +import type { DescribeOrganizationsAccessInput, DescribeOrganizationsAccessOutput } from "../models/models_0"; import { DescribeOrganizationsAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribePublisherCommand.ts b/clients/client-cloudformation/src/commands/DescribePublisherCommand.ts index 17ee388727420..d847e9f3ebadd 100644 --- a/clients/client-cloudformation/src/commands/DescribePublisherCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribePublisherCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePublisherInput, DescribePublisherOutput } from "../models/models_0"; +import type { DescribePublisherInput, DescribePublisherOutput } from "../models/models_0"; import { DescribePublisher } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeResourceScanCommand.ts b/clients/client-cloudformation/src/commands/DescribeResourceScanCommand.ts index 11cae0496e3db..72ab84976ace3 100644 --- a/clients/client-cloudformation/src/commands/DescribeResourceScanCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeResourceScanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourceScanInput, DescribeResourceScanOutput } from "../models/models_0"; +import type { DescribeResourceScanInput, DescribeResourceScanOutput } from "../models/models_0"; import { DescribeResourceScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStackDriftDetectionStatusCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackDriftDetectionStatusCommand.ts index 986a074f84e88..b6165bfb09ee4 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackDriftDetectionStatusCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackDriftDetectionStatusCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStackDriftDetectionStatusInput, DescribeStackDriftDetectionStatusOutput } from "../models/models_0"; +import type { + DescribeStackDriftDetectionStatusInput, + DescribeStackDriftDetectionStatusOutput, +} from "../models/models_0"; import { DescribeStackDriftDetectionStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStackEventsCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackEventsCommand.ts index deb624805cf06..ff82f20a99b8d 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackEventsCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStackEventsInput, DescribeStackEventsOutput } from "../models/models_0"; +import type { DescribeStackEventsInput, DescribeStackEventsOutput } from "../models/models_0"; import { DescribeStackEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStackInstanceCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackInstanceCommand.ts index 53428ac2393ee..9113dcf63f3b4 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackInstanceCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStackInstanceInput, DescribeStackInstanceOutput } from "../models/models_0"; +import type { DescribeStackInstanceInput, DescribeStackInstanceOutput } from "../models/models_0"; import { DescribeStackInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStackRefactorCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackRefactorCommand.ts index 4690ee1b49484..599a631ae57b8 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackRefactorCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackRefactorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStackRefactorInput, DescribeStackRefactorOutput } from "../models/models_0"; +import type { DescribeStackRefactorInput, DescribeStackRefactorOutput } from "../models/models_0"; import { DescribeStackRefactor } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStackResourceCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackResourceCommand.ts index af62657339084..ac3f899463c34 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackResourceCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStackResourceInput, DescribeStackResourceOutput } from "../models/models_0"; +import type { DescribeStackResourceInput, DescribeStackResourceOutput } from "../models/models_0"; import { DescribeStackResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStackResourceDriftsCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackResourceDriftsCommand.ts index 0dc1b9cd6e41b..2acbf17431d0d 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackResourceDriftsCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackResourceDriftsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStackResourceDriftsInput, DescribeStackResourceDriftsOutput } from "../models/models_0"; +import type { DescribeStackResourceDriftsInput, DescribeStackResourceDriftsOutput } from "../models/models_0"; import { DescribeStackResourceDrifts } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStackResourcesCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackResourcesCommand.ts index 1bf0d644da94b..dfde0b0e74b8a 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackResourcesCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStackResourcesInput, DescribeStackResourcesOutput } from "../models/models_0"; +import type { DescribeStackResourcesInput, DescribeStackResourcesOutput } from "../models/models_0"; import { DescribeStackResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStackSetCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackSetCommand.ts index 5cb31da1ab7e5..68ff920e5a548 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStackSetInput, DescribeStackSetOutput } from "../models/models_0"; +import type { DescribeStackSetInput, DescribeStackSetOutput } from "../models/models_0"; import { DescribeStackSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStackSetOperationCommand.ts b/clients/client-cloudformation/src/commands/DescribeStackSetOperationCommand.ts index 959f45de9720a..b4bdde1d9c489 100644 --- a/clients/client-cloudformation/src/commands/DescribeStackSetOperationCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStackSetOperationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStackSetOperationInput, DescribeStackSetOperationOutput } from "../models/models_0"; +import type { DescribeStackSetOperationInput, DescribeStackSetOperationOutput } from "../models/models_0"; import { DescribeStackSetOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeStacksCommand.ts b/clients/client-cloudformation/src/commands/DescribeStacksCommand.ts index 1751e5aa8321f..9b63577055411 100644 --- a/clients/client-cloudformation/src/commands/DescribeStacksCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeStacksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStacksInput, DescribeStacksOutput } from "../models/models_0"; +import type { DescribeStacksInput, DescribeStacksOutput } from "../models/models_0"; import { DescribeStacks } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeTypeCommand.ts b/clients/client-cloudformation/src/commands/DescribeTypeCommand.ts index 663b33efd6090..58bdca0a4b384 100644 --- a/clients/client-cloudformation/src/commands/DescribeTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTypeInput, DescribeTypeOutput } from "../models/models_0"; +import type { DescribeTypeInput, DescribeTypeOutput } from "../models/models_0"; import { DescribeType } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DescribeTypeRegistrationCommand.ts b/clients/client-cloudformation/src/commands/DescribeTypeRegistrationCommand.ts index 34296c2deea06..2aba269451bd3 100644 --- a/clients/client-cloudformation/src/commands/DescribeTypeRegistrationCommand.ts +++ b/clients/client-cloudformation/src/commands/DescribeTypeRegistrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTypeRegistrationInput, DescribeTypeRegistrationOutput } from "../models/models_0"; +import type { DescribeTypeRegistrationInput, DescribeTypeRegistrationOutput } from "../models/models_0"; import { DescribeTypeRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DetectStackDriftCommand.ts b/clients/client-cloudformation/src/commands/DetectStackDriftCommand.ts index fa2c0a38f1f04..a793351fb938b 100644 --- a/clients/client-cloudformation/src/commands/DetectStackDriftCommand.ts +++ b/clients/client-cloudformation/src/commands/DetectStackDriftCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectStackDriftInput, DetectStackDriftOutput } from "../models/models_0"; +import type { DetectStackDriftInput, DetectStackDriftOutput } from "../models/models_0"; import { DetectStackDrift } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DetectStackResourceDriftCommand.ts b/clients/client-cloudformation/src/commands/DetectStackResourceDriftCommand.ts index d52ba718d72c9..4c5d22bd0ab56 100644 --- a/clients/client-cloudformation/src/commands/DetectStackResourceDriftCommand.ts +++ b/clients/client-cloudformation/src/commands/DetectStackResourceDriftCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectStackResourceDriftInput, DetectStackResourceDriftOutput } from "../models/models_0"; +import type { DetectStackResourceDriftInput, DetectStackResourceDriftOutput } from "../models/models_0"; import { DetectStackResourceDrift } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/DetectStackSetDriftCommand.ts b/clients/client-cloudformation/src/commands/DetectStackSetDriftCommand.ts index b8ed4a471fa02..4ba26525f1f33 100644 --- a/clients/client-cloudformation/src/commands/DetectStackSetDriftCommand.ts +++ b/clients/client-cloudformation/src/commands/DetectStackSetDriftCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectStackSetDriftInput, DetectStackSetDriftOutput } from "../models/models_0"; +import type { DetectStackSetDriftInput, DetectStackSetDriftOutput } from "../models/models_0"; import { DetectStackSetDrift } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/EstimateTemplateCostCommand.ts b/clients/client-cloudformation/src/commands/EstimateTemplateCostCommand.ts index b4912b81c9439..1d53d37f89e4a 100644 --- a/clients/client-cloudformation/src/commands/EstimateTemplateCostCommand.ts +++ b/clients/client-cloudformation/src/commands/EstimateTemplateCostCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EstimateTemplateCostInput, EstimateTemplateCostOutput } from "../models/models_0"; +import type { EstimateTemplateCostInput, EstimateTemplateCostOutput } from "../models/models_0"; import { EstimateTemplateCost } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ExecuteChangeSetCommand.ts b/clients/client-cloudformation/src/commands/ExecuteChangeSetCommand.ts index e55f4bcf9bdcc..f53d633bb2402 100644 --- a/clients/client-cloudformation/src/commands/ExecuteChangeSetCommand.ts +++ b/clients/client-cloudformation/src/commands/ExecuteChangeSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteChangeSetInput, ExecuteChangeSetOutput } from "../models/models_0"; +import type { ExecuteChangeSetInput, ExecuteChangeSetOutput } from "../models/models_0"; import { ExecuteChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ExecuteStackRefactorCommand.ts b/clients/client-cloudformation/src/commands/ExecuteStackRefactorCommand.ts index b9715d3f5aa40..ef8ba2c0bee51 100644 --- a/clients/client-cloudformation/src/commands/ExecuteStackRefactorCommand.ts +++ b/clients/client-cloudformation/src/commands/ExecuteStackRefactorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteStackRefactorInput } from "../models/models_0"; +import type { ExecuteStackRefactorInput } from "../models/models_0"; import { ExecuteStackRefactor } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/GetGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/GetGeneratedTemplateCommand.ts index 7ea8c29ca5a29..7b1e4c146a6a1 100644 --- a/clients/client-cloudformation/src/commands/GetGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/GetGeneratedTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGeneratedTemplateInput, GetGeneratedTemplateOutput } from "../models/models_0"; +import type { GetGeneratedTemplateInput, GetGeneratedTemplateOutput } from "../models/models_0"; import { GetGeneratedTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/GetHookResultCommand.ts b/clients/client-cloudformation/src/commands/GetHookResultCommand.ts index 143144a64d598..b4531cc182f5a 100644 --- a/clients/client-cloudformation/src/commands/GetHookResultCommand.ts +++ b/clients/client-cloudformation/src/commands/GetHookResultCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHookResultInput, GetHookResultOutput } from "../models/models_0"; +import type { GetHookResultInput, GetHookResultOutput } from "../models/models_0"; import { GetHookResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/GetStackPolicyCommand.ts b/clients/client-cloudformation/src/commands/GetStackPolicyCommand.ts index 771ce0f681152..e9d55cb7fcc82 100644 --- a/clients/client-cloudformation/src/commands/GetStackPolicyCommand.ts +++ b/clients/client-cloudformation/src/commands/GetStackPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStackPolicyInput, GetStackPolicyOutput } from "../models/models_0"; +import type { GetStackPolicyInput, GetStackPolicyOutput } from "../models/models_0"; import { GetStackPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/GetTemplateCommand.ts b/clients/client-cloudformation/src/commands/GetTemplateCommand.ts index f3977a228c235..3d24e4703d4b4 100644 --- a/clients/client-cloudformation/src/commands/GetTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/GetTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTemplateInput, GetTemplateOutput } from "../models/models_0"; +import type { GetTemplateInput, GetTemplateOutput } from "../models/models_0"; import { GetTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/GetTemplateSummaryCommand.ts b/clients/client-cloudformation/src/commands/GetTemplateSummaryCommand.ts index 07528d479228a..e36854a2a080f 100644 --- a/clients/client-cloudformation/src/commands/GetTemplateSummaryCommand.ts +++ b/clients/client-cloudformation/src/commands/GetTemplateSummaryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTemplateSummaryInput, GetTemplateSummaryOutput } from "../models/models_0"; +import type { GetTemplateSummaryInput, GetTemplateSummaryOutput } from "../models/models_0"; import { GetTemplateSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ImportStacksToStackSetCommand.ts b/clients/client-cloudformation/src/commands/ImportStacksToStackSetCommand.ts index 07a1ec6b7966a..744e0de38b862 100644 --- a/clients/client-cloudformation/src/commands/ImportStacksToStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/ImportStacksToStackSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportStacksToStackSetInput, ImportStacksToStackSetOutput } from "../models/models_0"; +import type { ImportStacksToStackSetInput, ImportStacksToStackSetOutput } from "../models/models_0"; import { ImportStacksToStackSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListChangeSetsCommand.ts b/clients/client-cloudformation/src/commands/ListChangeSetsCommand.ts index 2d13e0c129124..cefaa66e6631d 100644 --- a/clients/client-cloudformation/src/commands/ListChangeSetsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListChangeSetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChangeSetsInput, ListChangeSetsOutput } from "../models/models_0"; +import type { ListChangeSetsInput, ListChangeSetsOutput } from "../models/models_0"; import { ListChangeSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListExportsCommand.ts b/clients/client-cloudformation/src/commands/ListExportsCommand.ts index 3252aa847922a..d0bd6e3715fad 100644 --- a/clients/client-cloudformation/src/commands/ListExportsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListExportsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExportsInput, ListExportsOutput } from "../models/models_0"; +import type { ListExportsInput, ListExportsOutput } from "../models/models_0"; import { ListExports } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListGeneratedTemplatesCommand.ts b/clients/client-cloudformation/src/commands/ListGeneratedTemplatesCommand.ts index 3aeac4ad4e3c2..25b63316c9bf9 100644 --- a/clients/client-cloudformation/src/commands/ListGeneratedTemplatesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListGeneratedTemplatesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGeneratedTemplatesInput, ListGeneratedTemplatesOutput } from "../models/models_0"; +import type { ListGeneratedTemplatesInput, ListGeneratedTemplatesOutput } from "../models/models_0"; import { ListGeneratedTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListHookResultsCommand.ts b/clients/client-cloudformation/src/commands/ListHookResultsCommand.ts index 765b229270b63..0ba831a186108 100644 --- a/clients/client-cloudformation/src/commands/ListHookResultsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListHookResultsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHookResultsInput, ListHookResultsOutput } from "../models/models_0"; +import type { ListHookResultsInput, ListHookResultsOutput } from "../models/models_0"; import { ListHookResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListImportsCommand.ts b/clients/client-cloudformation/src/commands/ListImportsCommand.ts index 852a78d1b5d6b..e52032765ebfa 100644 --- a/clients/client-cloudformation/src/commands/ListImportsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListImportsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImportsInput, ListImportsOutput } from "../models/models_0"; +import type { ListImportsInput, ListImportsOutput } from "../models/models_0"; import { ListImports } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListResourceScanRelatedResourcesCommand.ts b/clients/client-cloudformation/src/commands/ListResourceScanRelatedResourcesCommand.ts index d5f4e2f443d4c..0346c76ea6de8 100644 --- a/clients/client-cloudformation/src/commands/ListResourceScanRelatedResourcesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListResourceScanRelatedResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceScanRelatedResourcesInput, ListResourceScanRelatedResourcesOutput } from "../models/models_0"; +import type { ListResourceScanRelatedResourcesInput, ListResourceScanRelatedResourcesOutput } from "../models/models_0"; import { ListResourceScanRelatedResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListResourceScanResourcesCommand.ts b/clients/client-cloudformation/src/commands/ListResourceScanResourcesCommand.ts index 5aba1faa71f2c..059fa7df28fab 100644 --- a/clients/client-cloudformation/src/commands/ListResourceScanResourcesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListResourceScanResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceScanResourcesInput, ListResourceScanResourcesOutput } from "../models/models_0"; +import type { ListResourceScanResourcesInput, ListResourceScanResourcesOutput } from "../models/models_0"; import { ListResourceScanResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListResourceScansCommand.ts b/clients/client-cloudformation/src/commands/ListResourceScansCommand.ts index b03c315613453..4a3135ab9aa99 100644 --- a/clients/client-cloudformation/src/commands/ListResourceScansCommand.ts +++ b/clients/client-cloudformation/src/commands/ListResourceScansCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceScansInput, ListResourceScansOutput } from "../models/models_0"; +import type { ListResourceScansInput, ListResourceScansOutput } from "../models/models_0"; import { ListResourceScans } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStackInstanceResourceDriftsCommand.ts b/clients/client-cloudformation/src/commands/ListStackInstanceResourceDriftsCommand.ts index c7ea591e9069a..1c7401f37afbb 100644 --- a/clients/client-cloudformation/src/commands/ListStackInstanceResourceDriftsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackInstanceResourceDriftsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStackInstanceResourceDriftsInput, ListStackInstanceResourceDriftsOutput } from "../models/models_0"; +import type { ListStackInstanceResourceDriftsInput, ListStackInstanceResourceDriftsOutput } from "../models/models_0"; import { ListStackInstanceResourceDrifts } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStackInstancesCommand.ts b/clients/client-cloudformation/src/commands/ListStackInstancesCommand.ts index 55f421e189124..0e6b59bc58cc0 100644 --- a/clients/client-cloudformation/src/commands/ListStackInstancesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackInstancesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStackInstancesInput, ListStackInstancesOutput } from "../models/models_0"; +import type { ListStackInstancesInput, ListStackInstancesOutput } from "../models/models_0"; import { ListStackInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStackRefactorActionsCommand.ts b/clients/client-cloudformation/src/commands/ListStackRefactorActionsCommand.ts index 570163ea054d6..6e8336863c7df 100644 --- a/clients/client-cloudformation/src/commands/ListStackRefactorActionsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackRefactorActionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStackRefactorActionsInput, ListStackRefactorActionsOutput } from "../models/models_0"; +import type { ListStackRefactorActionsInput, ListStackRefactorActionsOutput } from "../models/models_0"; import { ListStackRefactorActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStackRefactorsCommand.ts b/clients/client-cloudformation/src/commands/ListStackRefactorsCommand.ts index 234f23069c75f..12785603f5458 100644 --- a/clients/client-cloudformation/src/commands/ListStackRefactorsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackRefactorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStackRefactorsInput, ListStackRefactorsOutput } from "../models/models_0"; +import type { ListStackRefactorsInput, ListStackRefactorsOutput } from "../models/models_0"; import { ListStackRefactors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStackResourcesCommand.ts b/clients/client-cloudformation/src/commands/ListStackResourcesCommand.ts index 933141fefc5c1..83a28b1640aa2 100644 --- a/clients/client-cloudformation/src/commands/ListStackResourcesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStackResourcesInput, ListStackResourcesOutput } from "../models/models_0"; +import type { ListStackResourcesInput, ListStackResourcesOutput } from "../models/models_0"; import { ListStackResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStackSetAutoDeploymentTargetsCommand.ts b/clients/client-cloudformation/src/commands/ListStackSetAutoDeploymentTargetsCommand.ts index 09d37ec55bac9..56e0165c1ea48 100644 --- a/clients/client-cloudformation/src/commands/ListStackSetAutoDeploymentTargetsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackSetAutoDeploymentTargetsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStackSetAutoDeploymentTargetsInput, ListStackSetAutoDeploymentTargetsOutput } from "../models/models_0"; +import type { + ListStackSetAutoDeploymentTargetsInput, + ListStackSetAutoDeploymentTargetsOutput, +} from "../models/models_0"; import { ListStackSetAutoDeploymentTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStackSetOperationResultsCommand.ts b/clients/client-cloudformation/src/commands/ListStackSetOperationResultsCommand.ts index 29e0bedea1b6d..e2502c425923e 100644 --- a/clients/client-cloudformation/src/commands/ListStackSetOperationResultsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackSetOperationResultsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStackSetOperationResultsInput, ListStackSetOperationResultsOutput } from "../models/models_0"; +import type { ListStackSetOperationResultsInput, ListStackSetOperationResultsOutput } from "../models/models_0"; import { ListStackSetOperationResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStackSetOperationsCommand.ts b/clients/client-cloudformation/src/commands/ListStackSetOperationsCommand.ts index 86423a0417165..0959bcf402814 100644 --- a/clients/client-cloudformation/src/commands/ListStackSetOperationsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackSetOperationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStackSetOperationsInput, ListStackSetOperationsOutput } from "../models/models_0"; +import type { ListStackSetOperationsInput, ListStackSetOperationsOutput } from "../models/models_0"; import { ListStackSetOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStackSetsCommand.ts b/clients/client-cloudformation/src/commands/ListStackSetsCommand.ts index d527f2f7a665b..b23c99f1744fd 100644 --- a/clients/client-cloudformation/src/commands/ListStackSetsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStackSetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStackSetsInput, ListStackSetsOutput } from "../models/models_0"; +import type { ListStackSetsInput, ListStackSetsOutput } from "../models/models_0"; import { ListStackSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListStacksCommand.ts b/clients/client-cloudformation/src/commands/ListStacksCommand.ts index f6d195149454c..7d0619676cf60 100644 --- a/clients/client-cloudformation/src/commands/ListStacksCommand.ts +++ b/clients/client-cloudformation/src/commands/ListStacksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStacksInput, ListStacksOutput } from "../models/models_0"; +import type { ListStacksInput, ListStacksOutput } from "../models/models_0"; import { ListStacks } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListTypeRegistrationsCommand.ts b/clients/client-cloudformation/src/commands/ListTypeRegistrationsCommand.ts index a86e999bd4187..f480e82fb9860 100644 --- a/clients/client-cloudformation/src/commands/ListTypeRegistrationsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListTypeRegistrationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTypeRegistrationsInput, ListTypeRegistrationsOutput } from "../models/models_0"; +import type { ListTypeRegistrationsInput, ListTypeRegistrationsOutput } from "../models/models_0"; import { ListTypeRegistrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListTypeVersionsCommand.ts b/clients/client-cloudformation/src/commands/ListTypeVersionsCommand.ts index 68927ecc241d1..afba34339168d 100644 --- a/clients/client-cloudformation/src/commands/ListTypeVersionsCommand.ts +++ b/clients/client-cloudformation/src/commands/ListTypeVersionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTypeVersionsInput, ListTypeVersionsOutput } from "../models/models_0"; +import type { ListTypeVersionsInput, ListTypeVersionsOutput } from "../models/models_0"; import { ListTypeVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ListTypesCommand.ts b/clients/client-cloudformation/src/commands/ListTypesCommand.ts index 767ca4c9d8604..ab89a7ea0cc88 100644 --- a/clients/client-cloudformation/src/commands/ListTypesCommand.ts +++ b/clients/client-cloudformation/src/commands/ListTypesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTypesInput, ListTypesOutput } from "../models/models_0"; +import type { ListTypesInput, ListTypesOutput } from "../models/models_0"; import { ListTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/PublishTypeCommand.ts b/clients/client-cloudformation/src/commands/PublishTypeCommand.ts index fb4c90915856d..419c75a59d308 100644 --- a/clients/client-cloudformation/src/commands/PublishTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/PublishTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishTypeInput, PublishTypeOutput } from "../models/models_0"; +import type { PublishTypeInput, PublishTypeOutput } from "../models/models_0"; import { PublishType } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/RecordHandlerProgressCommand.ts b/clients/client-cloudformation/src/commands/RecordHandlerProgressCommand.ts index e943e0abcb764..7beabbc09e585 100644 --- a/clients/client-cloudformation/src/commands/RecordHandlerProgressCommand.ts +++ b/clients/client-cloudformation/src/commands/RecordHandlerProgressCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecordHandlerProgressInput, RecordHandlerProgressOutput } from "../models/models_0"; +import type { RecordHandlerProgressInput, RecordHandlerProgressOutput } from "../models/models_0"; import { RecordHandlerProgress } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/RegisterPublisherCommand.ts b/clients/client-cloudformation/src/commands/RegisterPublisherCommand.ts index 4320ae8d7f5d2..64ac1c81723e6 100644 --- a/clients/client-cloudformation/src/commands/RegisterPublisherCommand.ts +++ b/clients/client-cloudformation/src/commands/RegisterPublisherCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterPublisherInput, RegisterPublisherOutput } from "../models/models_0"; +import type { RegisterPublisherInput, RegisterPublisherOutput } from "../models/models_0"; import { RegisterPublisher } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/RegisterTypeCommand.ts b/clients/client-cloudformation/src/commands/RegisterTypeCommand.ts index 4b554f7a46dcd..1b5383136592e 100644 --- a/clients/client-cloudformation/src/commands/RegisterTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/RegisterTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterTypeInput, RegisterTypeOutput } from "../models/models_0"; +import type { RegisterTypeInput, RegisterTypeOutput } from "../models/models_0"; import { RegisterType } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/RollbackStackCommand.ts b/clients/client-cloudformation/src/commands/RollbackStackCommand.ts index 65dc58904d644..c1f83d6c61ad0 100644 --- a/clients/client-cloudformation/src/commands/RollbackStackCommand.ts +++ b/clients/client-cloudformation/src/commands/RollbackStackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RollbackStackInput, RollbackStackOutput } from "../models/models_0"; +import type { RollbackStackInput, RollbackStackOutput } from "../models/models_0"; import { RollbackStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/SetStackPolicyCommand.ts b/clients/client-cloudformation/src/commands/SetStackPolicyCommand.ts index e783f5dbfb89a..c4ac1dec76fdc 100644 --- a/clients/client-cloudformation/src/commands/SetStackPolicyCommand.ts +++ b/clients/client-cloudformation/src/commands/SetStackPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetStackPolicyInput } from "../models/models_0"; +import type { SetStackPolicyInput } from "../models/models_0"; import { SetStackPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/SetTypeConfigurationCommand.ts b/clients/client-cloudformation/src/commands/SetTypeConfigurationCommand.ts index d3bd8366285a8..cfc8a610d2f40 100644 --- a/clients/client-cloudformation/src/commands/SetTypeConfigurationCommand.ts +++ b/clients/client-cloudformation/src/commands/SetTypeConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetTypeConfigurationInput, SetTypeConfigurationOutput } from "../models/models_0"; +import type { SetTypeConfigurationInput, SetTypeConfigurationOutput } from "../models/models_0"; import { SetTypeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/SetTypeDefaultVersionCommand.ts b/clients/client-cloudformation/src/commands/SetTypeDefaultVersionCommand.ts index f7834ca58f1f2..eef26f230cfee 100644 --- a/clients/client-cloudformation/src/commands/SetTypeDefaultVersionCommand.ts +++ b/clients/client-cloudformation/src/commands/SetTypeDefaultVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetTypeDefaultVersionInput, SetTypeDefaultVersionOutput } from "../models/models_0"; +import type { SetTypeDefaultVersionInput, SetTypeDefaultVersionOutput } from "../models/models_0"; import { SetTypeDefaultVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/SignalResourceCommand.ts b/clients/client-cloudformation/src/commands/SignalResourceCommand.ts index 8e1e3ee2f00de..eb9b41d905b0f 100644 --- a/clients/client-cloudformation/src/commands/SignalResourceCommand.ts +++ b/clients/client-cloudformation/src/commands/SignalResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SignalResourceInput } from "../models/models_0"; +import type { SignalResourceInput } from "../models/models_0"; import { SignalResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/StartResourceScanCommand.ts b/clients/client-cloudformation/src/commands/StartResourceScanCommand.ts index dfbc823b28ee1..fdb6dddae9ebe 100644 --- a/clients/client-cloudformation/src/commands/StartResourceScanCommand.ts +++ b/clients/client-cloudformation/src/commands/StartResourceScanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartResourceScanInput, StartResourceScanOutput } from "../models/models_0"; +import type { StartResourceScanInput, StartResourceScanOutput } from "../models/models_0"; import { StartResourceScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/StopStackSetOperationCommand.ts b/clients/client-cloudformation/src/commands/StopStackSetOperationCommand.ts index b7eaef4380951..322d6ed00b90d 100644 --- a/clients/client-cloudformation/src/commands/StopStackSetOperationCommand.ts +++ b/clients/client-cloudformation/src/commands/StopStackSetOperationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopStackSetOperationInput, StopStackSetOperationOutput } from "../models/models_0"; +import type { StopStackSetOperationInput, StopStackSetOperationOutput } from "../models/models_0"; import { StopStackSetOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/TestTypeCommand.ts b/clients/client-cloudformation/src/commands/TestTypeCommand.ts index 2c3c267ff8b50..ff9b0c5fc8ddc 100644 --- a/clients/client-cloudformation/src/commands/TestTypeCommand.ts +++ b/clients/client-cloudformation/src/commands/TestTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestTypeInput, TestTypeOutput } from "../models/models_0"; +import type { TestTypeInput, TestTypeOutput } from "../models/models_0"; import { TestType } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/UpdateGeneratedTemplateCommand.ts b/clients/client-cloudformation/src/commands/UpdateGeneratedTemplateCommand.ts index a55f4ef09d4fc..9558e67ce1348 100644 --- a/clients/client-cloudformation/src/commands/UpdateGeneratedTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateGeneratedTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGeneratedTemplateInput, UpdateGeneratedTemplateOutput } from "../models/models_0"; +import type { UpdateGeneratedTemplateInput, UpdateGeneratedTemplateOutput } from "../models/models_0"; import { UpdateGeneratedTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/UpdateStackCommand.ts b/clients/client-cloudformation/src/commands/UpdateStackCommand.ts index d8e39a264f588..5874804ff33a2 100644 --- a/clients/client-cloudformation/src/commands/UpdateStackCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateStackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStackInput, UpdateStackOutput } from "../models/models_0"; +import type { UpdateStackInput, UpdateStackOutput } from "../models/models_0"; import { UpdateStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/UpdateStackInstancesCommand.ts b/clients/client-cloudformation/src/commands/UpdateStackInstancesCommand.ts index 837d267f4d3b5..9718879fa5cae 100644 --- a/clients/client-cloudformation/src/commands/UpdateStackInstancesCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateStackInstancesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStackInstancesInput, UpdateStackInstancesOutput } from "../models/models_0"; +import type { UpdateStackInstancesInput, UpdateStackInstancesOutput } from "../models/models_0"; import { UpdateStackInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/UpdateStackSetCommand.ts b/clients/client-cloudformation/src/commands/UpdateStackSetCommand.ts index 438ffab251c97..503160b4472ab 100644 --- a/clients/client-cloudformation/src/commands/UpdateStackSetCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateStackSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStackSetInput, UpdateStackSetOutput } from "../models/models_0"; +import type { UpdateStackSetInput, UpdateStackSetOutput } from "../models/models_0"; import { UpdateStackSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/UpdateTerminationProtectionCommand.ts b/clients/client-cloudformation/src/commands/UpdateTerminationProtectionCommand.ts index dd17e6ac57c8f..7bac5ce2d3654 100644 --- a/clients/client-cloudformation/src/commands/UpdateTerminationProtectionCommand.ts +++ b/clients/client-cloudformation/src/commands/UpdateTerminationProtectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTerminationProtectionInput, UpdateTerminationProtectionOutput } from "../models/models_0"; +import type { UpdateTerminationProtectionInput, UpdateTerminationProtectionOutput } from "../models/models_0"; import { UpdateTerminationProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/commands/ValidateTemplateCommand.ts b/clients/client-cloudformation/src/commands/ValidateTemplateCommand.ts index 05eeade2e131e..f4053787feae0 100644 --- a/clients/client-cloudformation/src/commands/ValidateTemplateCommand.ts +++ b/clients/client-cloudformation/src/commands/ValidateTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFormationClient"; +import type { + CloudFormationClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudFormationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidateTemplateInput, ValidateTemplateOutput } from "../models/models_0"; +import type { ValidateTemplateInput, ValidateTemplateOutput } from "../models/models_0"; import { ValidateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudformation/src/endpoint/EndpointParameters.ts b/clients/client-cloudformation/src/endpoint/EndpointParameters.ts index 9e18e85ad79c7..3b24af02d55b7 100644 --- a/clients/client-cloudformation/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudformation/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudformation/src/endpoint/endpointResolver.ts b/clients/client-cloudformation/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudformation/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudformation/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudformation/src/extensionConfiguration.ts b/clients/client-cloudformation/src/extensionConfiguration.ts index c3ba57defefd5..4d88c44042f7e 100644 --- a/clients/client-cloudformation/src/extensionConfiguration.ts +++ b/clients/client-cloudformation/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudformation/src/models/CloudFormationServiceException.ts b/clients/client-cloudformation/src/models/CloudFormationServiceException.ts index c32d51d0dc98d..f631f9fb09355 100644 --- a/clients/client-cloudformation/src/models/CloudFormationServiceException.ts +++ b/clients/client-cloudformation/src/models/CloudFormationServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudformation/src/models/errors.ts b/clients/client-cloudformation/src/models/errors.ts index efb0505226e6a..ef56f21a183a7 100644 --- a/clients/client-cloudformation/src/models/errors.ts +++ b/clients/client-cloudformation/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudFormationServiceException as __BaseException } from "./CloudFormationServiceException"; diff --git a/clients/client-cloudformation/src/pagination/DescribeAccountLimitsPaginator.ts b/clients/client-cloudformation/src/pagination/DescribeAccountLimitsPaginator.ts index ace94939b9747..c970e623f1fde 100644 --- a/clients/client-cloudformation/src/pagination/DescribeAccountLimitsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/DescribeAccountLimitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/DescribeChangeSetPaginator.ts b/clients/client-cloudformation/src/pagination/DescribeChangeSetPaginator.ts index 5e3a354d13c2f..67e07ac1e0571 100644 --- a/clients/client-cloudformation/src/pagination/DescribeChangeSetPaginator.ts +++ b/clients/client-cloudformation/src/pagination/DescribeChangeSetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/DescribeEventsPaginator.ts b/clients/client-cloudformation/src/pagination/DescribeEventsPaginator.ts index 4ec6cc81a8585..350d210564e7d 100644 --- a/clients/client-cloudformation/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/DescribeStackEventsPaginator.ts b/clients/client-cloudformation/src/pagination/DescribeStackEventsPaginator.ts index 1bc785bd520b1..81f1c9ce7b4ae 100644 --- a/clients/client-cloudformation/src/pagination/DescribeStackEventsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/DescribeStackEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/DescribeStackResourceDriftsPaginator.ts b/clients/client-cloudformation/src/pagination/DescribeStackResourceDriftsPaginator.ts index 80388bfaac947..659fc0dd670b8 100644 --- a/clients/client-cloudformation/src/pagination/DescribeStackResourceDriftsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/DescribeStackResourceDriftsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/DescribeStacksPaginator.ts b/clients/client-cloudformation/src/pagination/DescribeStacksPaginator.ts index e14d60f3606c0..1dee75bc182c1 100644 --- a/clients/client-cloudformation/src/pagination/DescribeStacksPaginator.ts +++ b/clients/client-cloudformation/src/pagination/DescribeStacksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/Interfaces.ts b/clients/client-cloudformation/src/pagination/Interfaces.ts index e375bae84207d..0633de09331f7 100644 --- a/clients/client-cloudformation/src/pagination/Interfaces.ts +++ b/clients/client-cloudformation/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; diff --git a/clients/client-cloudformation/src/pagination/ListChangeSetsPaginator.ts b/clients/client-cloudformation/src/pagination/ListChangeSetsPaginator.ts index 3d870a2fc1544..61d4f69f2006d 100644 --- a/clients/client-cloudformation/src/pagination/ListChangeSetsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListChangeSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListExportsPaginator.ts b/clients/client-cloudformation/src/pagination/ListExportsPaginator.ts index 845d2fd872397..e52c6d6beaad5 100644 --- a/clients/client-cloudformation/src/pagination/ListExportsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { ListExportsCommand, ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand"; diff --git a/clients/client-cloudformation/src/pagination/ListGeneratedTemplatesPaginator.ts b/clients/client-cloudformation/src/pagination/ListGeneratedTemplatesPaginator.ts index 1f3f7b5ad289d..079828eebfff2 100644 --- a/clients/client-cloudformation/src/pagination/ListGeneratedTemplatesPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListGeneratedTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListImportsPaginator.ts b/clients/client-cloudformation/src/pagination/ListImportsPaginator.ts index 36d0ab885a531..c8abc784b873a 100644 --- a/clients/client-cloudformation/src/pagination/ListImportsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListImportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { ListImportsCommand, ListImportsCommandInput, ListImportsCommandOutput } from "../commands/ListImportsCommand"; diff --git a/clients/client-cloudformation/src/pagination/ListResourceScanRelatedResourcesPaginator.ts b/clients/client-cloudformation/src/pagination/ListResourceScanRelatedResourcesPaginator.ts index 7fffa23001a26..ea00fe0c89515 100644 --- a/clients/client-cloudformation/src/pagination/ListResourceScanRelatedResourcesPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListResourceScanRelatedResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListResourceScanResourcesPaginator.ts b/clients/client-cloudformation/src/pagination/ListResourceScanResourcesPaginator.ts index 4401cee687fac..ea1ed49db6122 100644 --- a/clients/client-cloudformation/src/pagination/ListResourceScanResourcesPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListResourceScanResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListResourceScansPaginator.ts b/clients/client-cloudformation/src/pagination/ListResourceScansPaginator.ts index 0e75570d4489b..1967f9cc5ee87 100644 --- a/clients/client-cloudformation/src/pagination/ListResourceScansPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListResourceScansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListStackInstancesPaginator.ts b/clients/client-cloudformation/src/pagination/ListStackInstancesPaginator.ts index e912425494867..7c07c7f1c470d 100644 --- a/clients/client-cloudformation/src/pagination/ListStackInstancesPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListStackInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListStackRefactorActionsPaginator.ts b/clients/client-cloudformation/src/pagination/ListStackRefactorActionsPaginator.ts index c2b9d7112f4b0..50d05fc79abd9 100644 --- a/clients/client-cloudformation/src/pagination/ListStackRefactorActionsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListStackRefactorActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListStackRefactorsPaginator.ts b/clients/client-cloudformation/src/pagination/ListStackRefactorsPaginator.ts index 754fd06a15bb6..f0da593847662 100644 --- a/clients/client-cloudformation/src/pagination/ListStackRefactorsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListStackRefactorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListStackResourcesPaginator.ts b/clients/client-cloudformation/src/pagination/ListStackResourcesPaginator.ts index 0adb5870b278a..3e8b8e0b653ba 100644 --- a/clients/client-cloudformation/src/pagination/ListStackResourcesPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListStackResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListStackSetOperationResultsPaginator.ts b/clients/client-cloudformation/src/pagination/ListStackSetOperationResultsPaginator.ts index b01830b4e0383..766de9503551f 100644 --- a/clients/client-cloudformation/src/pagination/ListStackSetOperationResultsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListStackSetOperationResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListStackSetOperationsPaginator.ts b/clients/client-cloudformation/src/pagination/ListStackSetOperationsPaginator.ts index 87762e1f273ce..9c19d6fc5e836 100644 --- a/clients/client-cloudformation/src/pagination/ListStackSetOperationsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListStackSetOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListStackSetsPaginator.ts b/clients/client-cloudformation/src/pagination/ListStackSetsPaginator.ts index acb03f727ca20..847bef48f5e81 100644 --- a/clients/client-cloudformation/src/pagination/ListStackSetsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListStackSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListStacksPaginator.ts b/clients/client-cloudformation/src/pagination/ListStacksPaginator.ts index c9652a3f8c658..7f60205d0f31e 100644 --- a/clients/client-cloudformation/src/pagination/ListStacksPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListStacksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { ListStacksCommand, ListStacksCommandInput, ListStacksCommandOutput } from "../commands/ListStacksCommand"; diff --git a/clients/client-cloudformation/src/pagination/ListTypeRegistrationsPaginator.ts b/clients/client-cloudformation/src/pagination/ListTypeRegistrationsPaginator.ts index 587e123733292..43eb4ee7f9430 100644 --- a/clients/client-cloudformation/src/pagination/ListTypeRegistrationsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListTypeRegistrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListTypeVersionsPaginator.ts b/clients/client-cloudformation/src/pagination/ListTypeVersionsPaginator.ts index f4d5e48c07ffd..7148290ae3e37 100644 --- a/clients/client-cloudformation/src/pagination/ListTypeVersionsPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListTypeVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { diff --git a/clients/client-cloudformation/src/pagination/ListTypesPaginator.ts b/clients/client-cloudformation/src/pagination/ListTypesPaginator.ts index 9955ba30056fe..fcd73d22eba1a 100644 --- a/clients/client-cloudformation/src/pagination/ListTypesPaginator.ts +++ b/clients/client-cloudformation/src/pagination/ListTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFormationClient } from "../CloudFormationClient"; import { ListTypesCommand, ListTypesCommandInput, ListTypesCommandOutput } from "../commands/ListTypesCommand"; diff --git a/clients/client-cloudformation/src/runtimeConfig.browser.ts b/clients/client-cloudformation/src/runtimeConfig.browser.ts index 7ff6184b3963f..d85cee98f36f9 100644 --- a/clients/client-cloudformation/src/runtimeConfig.browser.ts +++ b/clients/client-cloudformation/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudFormationClientConfig } from "./CloudFormationClient"; + +import type { CloudFormationClientConfig } from "./CloudFormationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudformation/src/runtimeConfig.native.ts b/clients/client-cloudformation/src/runtimeConfig.native.ts index 649c71ed7f2d5..950c3250118dd 100644 --- a/clients/client-cloudformation/src/runtimeConfig.native.ts +++ b/clients/client-cloudformation/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudFormationClientConfig } from "./CloudFormationClient"; +import type { CloudFormationClientConfig } from "./CloudFormationClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudformation/src/runtimeConfig.shared.ts b/clients/client-cloudformation/src/runtimeConfig.shared.ts index 2ab851e9f5a59..c7aef479d1307 100644 --- a/clients/client-cloudformation/src/runtimeConfig.shared.ts +++ b/clients/client-cloudformation/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudFormationHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudFormationClientConfig } from "./CloudFormationClient"; +import type { CloudFormationClientConfig } from "./CloudFormationClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudformation/src/runtimeConfig.ts b/clients/client-cloudformation/src/runtimeConfig.ts index 01a568ca3fbf6..f2c0429ae1d09 100644 --- a/clients/client-cloudformation/src/runtimeConfig.ts +++ b/clients/client-cloudformation/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudFormationClientConfig } from "./CloudFormationClient"; + +import type { CloudFormationClientConfig } from "./CloudFormationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudformation/src/runtimeExtensions.ts b/clients/client-cloudformation/src/runtimeExtensions.ts index eab946f504df2..794aa2ae1359d 100644 --- a/clients/client-cloudformation/src/runtimeExtensions.ts +++ b/clients/client-cloudformation/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudFormationExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudFormationExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudformation/src/schemas/schemas_0.ts b/clients/client-cloudformation/src/schemas/schemas_0.ts index fab42c2ed8399..ee83198d0e27e 100644 --- a/clients/client-cloudformation/src/schemas/schemas_0.ts +++ b/clients/client-cloudformation/src/schemas/schemas_0.ts @@ -772,7 +772,7 @@ const n0 = "com.amazonaws.cloudformation"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cloudfront-keyvaluestore/package.json b/clients/client-cloudfront-keyvaluestore/package.json index 1aa535d52427e..e7bd9183b27d7 100644 --- a/clients/client-cloudfront-keyvaluestore/package.json +++ b/clients/client-cloudfront-keyvaluestore/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudfront-keyvaluestore/src/CloudFrontKeyValueStore.ts b/clients/client-cloudfront-keyvaluestore/src/CloudFrontKeyValueStore.ts index 0b6f93dd134d0..c3f61cf9c2dfd 100644 --- a/clients/client-cloudfront-keyvaluestore/src/CloudFrontKeyValueStore.ts +++ b/clients/client-cloudfront-keyvaluestore/src/CloudFrontKeyValueStore.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudFrontKeyValueStoreClient, CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient"; +import { CloudFrontKeyValueStoreClient } from "./CloudFrontKeyValueStoreClient"; import { DeleteKeyCommand, DeleteKeyCommandInput, DeleteKeyCommandOutput } from "./commands/DeleteKeyCommand"; import { DescribeKeyValueStoreCommand, diff --git a/clients/client-cloudfront-keyvaluestore/src/CloudFrontKeyValueStoreClient.ts b/clients/client-cloudfront-keyvaluestore/src/CloudFrontKeyValueStoreClient.ts index 0cecec1edcba8..6070bdb6d3ad3 100644 --- a/clients/client-cloudfront-keyvaluestore/src/CloudFrontKeyValueStoreClient.ts +++ b/clients/client-cloudfront-keyvaluestore/src/CloudFrontKeyValueStoreClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudFrontKeyValueStoreHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DeleteKeyCommandInput, DeleteKeyCommandOutput } from "./commands/DeleteKeyCommand"; @@ -73,7 +82,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudfront-keyvaluestore/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudfront-keyvaluestore/src/auth/httpAuthExtensionConfiguration.ts index 34082dbc036a5..34c6bd10ac1f2 100644 --- a/clients/client-cloudfront-keyvaluestore/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudfront-keyvaluestore/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudFrontKeyValueStoreHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudFrontKeyValueStoreHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudfront-keyvaluestore/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudfront-keyvaluestore/src/auth/httpAuthSchemeProvider.ts index e4b29ce0caa6a..10d89c043e442 100644 --- a/clients/client-cloudfront-keyvaluestore/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudfront-keyvaluestore/src/auth/httpAuthSchemeProvider.ts @@ -12,16 +12,16 @@ import { import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { EndpointParameterInstructions, resolveParams } from "@smithy/middleware-endpoint"; import { + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParametersProvider, + type Provider, EndpointV2, HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, HttpAuthSchemeId, HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Logger, - Provider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/DeleteKeyCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/DeleteKeyCommand.ts index 941e24df9c439..845f2f9cd0a0a 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/DeleteKeyCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/DeleteKeyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CloudFrontKeyValueStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudFrontKeyValueStoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKeyRequest, DeleteKeyResponse } from "../models/models_0"; +import type { DeleteKeyRequest, DeleteKeyResponse } from "../models/models_0"; import { DeleteKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/DescribeKeyValueStoreCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/DescribeKeyValueStoreCommand.ts index 39a2d2e010546..ffe340955c637 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/DescribeKeyValueStoreCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/DescribeKeyValueStoreCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CloudFrontKeyValueStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudFrontKeyValueStoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeKeyValueStoreRequest, DescribeKeyValueStoreResponse } from "../models/models_0"; +import type { DescribeKeyValueStoreRequest, DescribeKeyValueStoreResponse } from "../models/models_0"; import { DescribeKeyValueStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/GetKeyCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/GetKeyCommand.ts index 84758c86ca0f1..967d940b5cc55 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/GetKeyCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/GetKeyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CloudFrontKeyValueStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudFrontKeyValueStoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetKeyRequest, GetKeyResponse } from "../models/models_0"; +import type { GetKeyRequest, GetKeyResponse } from "../models/models_0"; import { GetKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/ListKeysCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/ListKeysCommand.ts index fd22dede7ea63..0c276b534ee37 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/ListKeysCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/ListKeysCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CloudFrontKeyValueStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudFrontKeyValueStoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKeysRequest, ListKeysResponse } from "../models/models_0"; +import type { ListKeysRequest, ListKeysResponse } from "../models/models_0"; import { ListKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/PutKeyCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/PutKeyCommand.ts index 750d84f5e352b..3f21f1cc783a1 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/PutKeyCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/PutKeyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CloudFrontKeyValueStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudFrontKeyValueStoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutKeyRequest, PutKeyResponse } from "../models/models_0"; +import type { PutKeyRequest, PutKeyResponse } from "../models/models_0"; import { PutKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront-keyvaluestore/src/commands/UpdateKeysCommand.ts b/clients/client-cloudfront-keyvaluestore/src/commands/UpdateKeysCommand.ts index e99acc70e6edb..a0834ba2b1812 100644 --- a/clients/client-cloudfront-keyvaluestore/src/commands/UpdateKeysCommand.ts +++ b/clients/client-cloudfront-keyvaluestore/src/commands/UpdateKeysCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CloudFrontKeyValueStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudFrontKeyValueStoreClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateKeysRequest, UpdateKeysResponse } from "../models/models_0"; +import type { UpdateKeysRequest, UpdateKeysResponse } from "../models/models_0"; import { UpdateKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront-keyvaluestore/src/endpoint/EndpointParameters.ts b/clients/client-cloudfront-keyvaluestore/src/endpoint/EndpointParameters.ts index cbe00899dd08d..3c186abf2c7be 100644 --- a/clients/client-cloudfront-keyvaluestore/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudfront-keyvaluestore/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudfront-keyvaluestore/src/endpoint/endpointResolver.ts b/clients/client-cloudfront-keyvaluestore/src/endpoint/endpointResolver.ts index 5e32ce1b80b97..db2add505e14f 100644 --- a/clients/client-cloudfront-keyvaluestore/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudfront-keyvaluestore/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudfront-keyvaluestore/src/extensionConfiguration.ts b/clients/client-cloudfront-keyvaluestore/src/extensionConfiguration.ts index e569228259646..a915391134aab 100644 --- a/clients/client-cloudfront-keyvaluestore/src/extensionConfiguration.ts +++ b/clients/client-cloudfront-keyvaluestore/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudfront-keyvaluestore/src/models/CloudFrontKeyValueStoreServiceException.ts b/clients/client-cloudfront-keyvaluestore/src/models/CloudFrontKeyValueStoreServiceException.ts index d9aa5276b7cb1..dee448439e2ef 100644 --- a/clients/client-cloudfront-keyvaluestore/src/models/CloudFrontKeyValueStoreServiceException.ts +++ b/clients/client-cloudfront-keyvaluestore/src/models/CloudFrontKeyValueStoreServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudfront-keyvaluestore/src/models/errors.ts b/clients/client-cloudfront-keyvaluestore/src/models/errors.ts index 2146acdc8b0fe..748d08f3d1b93 100644 --- a/clients/client-cloudfront-keyvaluestore/src/models/errors.ts +++ b/clients/client-cloudfront-keyvaluestore/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudFrontKeyValueStoreServiceException as __BaseException } from "./CloudFrontKeyValueStoreServiceException"; diff --git a/clients/client-cloudfront-keyvaluestore/src/pagination/Interfaces.ts b/clients/client-cloudfront-keyvaluestore/src/pagination/Interfaces.ts index 33a77d7636e1b..bcc76fc3b818f 100644 --- a/clients/client-cloudfront-keyvaluestore/src/pagination/Interfaces.ts +++ b/clients/client-cloudfront-keyvaluestore/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CloudFrontKeyValueStoreClient } from "../CloudFrontKeyValueStoreClient"; diff --git a/clients/client-cloudfront-keyvaluestore/src/pagination/ListKeysPaginator.ts b/clients/client-cloudfront-keyvaluestore/src/pagination/ListKeysPaginator.ts index 3f07f989b9eeb..64e1af68ae17b 100644 --- a/clients/client-cloudfront-keyvaluestore/src/pagination/ListKeysPaginator.ts +++ b/clients/client-cloudfront-keyvaluestore/src/pagination/ListKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontKeyValueStoreClient } from "../CloudFrontKeyValueStoreClient"; import { ListKeysCommand, ListKeysCommandInput, ListKeysCommandOutput } from "../commands/ListKeysCommand"; diff --git a/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.browser.ts b/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.browser.ts index d4d00ac0ae430..36a6cc76be3a3 100644 --- a/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.browser.ts +++ b/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient"; + +import type { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.native.ts b/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.native.ts index 48f3d6e3cf576..265ffbbe29883 100644 --- a/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.native.ts +++ b/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient"; +import type { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.shared.ts b/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.shared.ts index da6afd9b403fb..89c6f8f4f7598 100644 --- a/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.shared.ts +++ b/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.shared.ts @@ -3,13 +3,13 @@ import { AwsSdkSigV4ASigner, AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudFrontKeyValueStoreHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient"; +import type { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.ts b/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.ts index e2c2b49f4f16e..9d1a96beff3f8 100644 --- a/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.ts +++ b/clients/client-cloudfront-keyvaluestore/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient"; + +import type { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudfront-keyvaluestore/src/runtimeExtensions.ts b/clients/client-cloudfront-keyvaluestore/src/runtimeExtensions.ts index 1da3b3e740281..687cc2fbf4945 100644 --- a/clients/client-cloudfront-keyvaluestore/src/runtimeExtensions.ts +++ b/clients/client-cloudfront-keyvaluestore/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudFrontKeyValueStoreExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudFrontKeyValueStoreExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudfront-keyvaluestore/src/schemas/schemas_0.ts b/clients/client-cloudfront-keyvaluestore/src/schemas/schemas_0.ts index 8dd66700df66e..f93b9c3b55cf8 100644 --- a/clients/client-cloudfront-keyvaluestore/src/schemas/schemas_0.ts +++ b/clients/client-cloudfront-keyvaluestore/src/schemas/schemas_0.ts @@ -58,7 +58,7 @@ const n0 = "com.amazonaws.cloudfrontkeyvaluestore"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-cloudfront/package.json b/clients/client-cloudfront/package.json index f7077d5c9979d..7a3622ff2f763 100644 --- a/clients/client-cloudfront/package.json +++ b/clients/client-cloudfront/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudfront/src/CloudFront.ts b/clients/client-cloudfront/src/CloudFront.ts index f3afcdf1fb5db..e7a7467ff89c2 100644 --- a/clients/client-cloudfront/src/CloudFront.ts +++ b/clients/client-cloudfront/src/CloudFront.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudFrontClient, CloudFrontClientConfig } from "./CloudFrontClient"; +import { CloudFrontClient } from "./CloudFrontClient"; import { AssociateAliasCommand, AssociateAliasCommandInput, diff --git a/clients/client-cloudfront/src/CloudFrontClient.ts b/clients/client-cloudfront/src/CloudFrontClient.ts index 69fc82c408741..e1c6a4d39b38d 100644 --- a/clients/client-cloudfront/src/CloudFrontClient.ts +++ b/clients/client-cloudfront/src/CloudFrontClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudFrontHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateAliasCommandInput, AssociateAliasCommandOutput } from "./commands/AssociateAliasCommand"; @@ -573,7 +582,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudfront/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudfront/src/auth/httpAuthExtensionConfiguration.ts index e01d6e628b699..3a9ed548ddb45 100644 --- a/clients/client-cloudfront/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudfront/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudFrontHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudFrontHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudfront/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudfront/src/auth/httpAuthSchemeProvider.ts index 25d0800dd72d1..264b7713a2d75 100644 --- a/clients/client-cloudfront/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudfront/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudFrontClientConfig, CloudFrontClientResolvedConfig } from "../CloudFrontClient"; +import { type CloudFrontClientResolvedConfig, CloudFrontClientConfig } from "../CloudFrontClient"; /** * @internal diff --git a/clients/client-cloudfront/src/commands/AssociateAliasCommand.ts b/clients/client-cloudfront/src/commands/AssociateAliasCommand.ts index 15c114379af83..d1f03bfb7a591 100644 --- a/clients/client-cloudfront/src/commands/AssociateAliasCommand.ts +++ b/clients/client-cloudfront/src/commands/AssociateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAliasRequest } from "../models/models_0"; +import type { AssociateAliasRequest } from "../models/models_0"; import { AssociateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/AssociateDistributionTenantWebACLCommand.ts b/clients/client-cloudfront/src/commands/AssociateDistributionTenantWebACLCommand.ts index cf438ecee9628..ad7963daa188f 100644 --- a/clients/client-cloudfront/src/commands/AssociateDistributionTenantWebACLCommand.ts +++ b/clients/client-cloudfront/src/commands/AssociateDistributionTenantWebACLCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDistributionTenantWebACLRequest, AssociateDistributionTenantWebACLResult } from "../models/models_0"; +import type { + AssociateDistributionTenantWebACLRequest, + AssociateDistributionTenantWebACLResult, +} from "../models/models_0"; import { AssociateDistributionTenantWebACL } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/AssociateDistributionWebACLCommand.ts b/clients/client-cloudfront/src/commands/AssociateDistributionWebACLCommand.ts index 2b0e8ddf67bea..5868145a1f96a 100644 --- a/clients/client-cloudfront/src/commands/AssociateDistributionWebACLCommand.ts +++ b/clients/client-cloudfront/src/commands/AssociateDistributionWebACLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDistributionWebACLRequest, AssociateDistributionWebACLResult } from "../models/models_0"; +import type { AssociateDistributionWebACLRequest, AssociateDistributionWebACLResult } from "../models/models_0"; import { AssociateDistributionWebACL } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CopyDistributionCommand.ts b/clients/client-cloudfront/src/commands/CopyDistributionCommand.ts index 51f434d3d56ce..00a8e3a1185d1 100644 --- a/clients/client-cloudfront/src/commands/CopyDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/CopyDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDistributionRequest, CopyDistributionResult } from "../models/models_0"; +import type { CopyDistributionRequest, CopyDistributionResult } from "../models/models_0"; import { CopyDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateAnycastIpListCommand.ts b/clients/client-cloudfront/src/commands/CreateAnycastIpListCommand.ts index c7fd39c18d6d2..fba8d76f87678 100644 --- a/clients/client-cloudfront/src/commands/CreateAnycastIpListCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateAnycastIpListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnycastIpListRequest, CreateAnycastIpListResult } from "../models/models_0"; +import type { CreateAnycastIpListRequest, CreateAnycastIpListResult } from "../models/models_0"; import { CreateAnycastIpList } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateCachePolicyCommand.ts b/clients/client-cloudfront/src/commands/CreateCachePolicyCommand.ts index 56e6808bacf7f..83d740619e762 100644 --- a/clients/client-cloudfront/src/commands/CreateCachePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateCachePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCachePolicyRequest, CreateCachePolicyResult } from "../models/models_0"; +import type { CreateCachePolicyRequest, CreateCachePolicyResult } from "../models/models_0"; import { CreateCachePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateCloudFrontOriginAccessIdentityCommand.ts b/clients/client-cloudfront/src/commands/CreateCloudFrontOriginAccessIdentityCommand.ts index 23fc395ef4ec2..c9affc4a5189d 100644 --- a/clients/client-cloudfront/src/commands/CreateCloudFrontOriginAccessIdentityCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateCloudFrontOriginAccessIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateCloudFrontOriginAccessIdentityRequest, CreateCloudFrontOriginAccessIdentityResult, } from "../models/models_0"; diff --git a/clients/client-cloudfront/src/commands/CreateConnectionFunctionCommand.ts b/clients/client-cloudfront/src/commands/CreateConnectionFunctionCommand.ts index a24ad4884c327..932764bfd06a0 100644 --- a/clients/client-cloudfront/src/commands/CreateConnectionFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateConnectionFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionFunctionRequest, CreateConnectionFunctionResult } from "../models/models_0"; +import type { CreateConnectionFunctionRequest, CreateConnectionFunctionResult } from "../models/models_0"; import { CreateConnectionFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateConnectionGroupCommand.ts b/clients/client-cloudfront/src/commands/CreateConnectionGroupCommand.ts index d3c709db77133..896f95063aada 100644 --- a/clients/client-cloudfront/src/commands/CreateConnectionGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateConnectionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionGroupRequest, CreateConnectionGroupResult } from "../models/models_0"; +import type { CreateConnectionGroupRequest, CreateConnectionGroupResult } from "../models/models_0"; import { CreateConnectionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateContinuousDeploymentPolicyCommand.ts b/clients/client-cloudfront/src/commands/CreateContinuousDeploymentPolicyCommand.ts index f7df6c955be57..21476ae92dc7c 100644 --- a/clients/client-cloudfront/src/commands/CreateContinuousDeploymentPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateContinuousDeploymentPolicyCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContinuousDeploymentPolicyRequest, CreateContinuousDeploymentPolicyResult } from "../models/models_0"; +import type { + CreateContinuousDeploymentPolicyRequest, + CreateContinuousDeploymentPolicyResult, +} from "../models/models_0"; import { CreateContinuousDeploymentPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateDistributionCommand.ts b/clients/client-cloudfront/src/commands/CreateDistributionCommand.ts index 3f2ac38467d80..d82af215411fe 100644 --- a/clients/client-cloudfront/src/commands/CreateDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDistributionRequest, CreateDistributionResult } from "../models/models_0"; +import type { CreateDistributionRequest, CreateDistributionResult } from "../models/models_0"; import { CreateDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateDistributionTenantCommand.ts b/clients/client-cloudfront/src/commands/CreateDistributionTenantCommand.ts index 345216321a3a5..94a5bad3e81f7 100644 --- a/clients/client-cloudfront/src/commands/CreateDistributionTenantCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateDistributionTenantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDistributionTenantRequest, CreateDistributionTenantResult } from "../models/models_0"; +import type { CreateDistributionTenantRequest, CreateDistributionTenantResult } from "../models/models_0"; import { CreateDistributionTenant } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateDistributionWithTagsCommand.ts b/clients/client-cloudfront/src/commands/CreateDistributionWithTagsCommand.ts index f1c57d8d1e83e..054ba4d58b3c2 100644 --- a/clients/client-cloudfront/src/commands/CreateDistributionWithTagsCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateDistributionWithTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDistributionWithTagsRequest, CreateDistributionWithTagsResult } from "../models/models_0"; +import type { CreateDistributionWithTagsRequest, CreateDistributionWithTagsResult } from "../models/models_0"; import { CreateDistributionWithTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionConfigCommand.ts b/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionConfigCommand.ts index 5a08620127c13..a86893f48152c 100644 --- a/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionConfigCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFieldLevelEncryptionConfigRequest, CreateFieldLevelEncryptionConfigResult } from "../models/models_0"; +import type { + CreateFieldLevelEncryptionConfigRequest, + CreateFieldLevelEncryptionConfigResult, +} from "../models/models_0"; import { CreateFieldLevelEncryptionConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionProfileCommand.ts b/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionProfileCommand.ts index 9e8455abaad0e..30aeb90ffa25a 100644 --- a/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionProfileCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateFieldLevelEncryptionProfileCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFieldLevelEncryptionProfileRequest, CreateFieldLevelEncryptionProfileResult } from "../models/models_0"; +import type { + CreateFieldLevelEncryptionProfileRequest, + CreateFieldLevelEncryptionProfileResult, +} from "../models/models_0"; import { CreateFieldLevelEncryptionProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateFunctionCommand.ts b/clients/client-cloudfront/src/commands/CreateFunctionCommand.ts index 2e7550129033f..460a27f24e1d6 100644 --- a/clients/client-cloudfront/src/commands/CreateFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFunctionRequest, CreateFunctionResult } from "../models/models_0"; +import type { CreateFunctionRequest, CreateFunctionResult } from "../models/models_0"; import { CreateFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateInvalidationCommand.ts b/clients/client-cloudfront/src/commands/CreateInvalidationCommand.ts index 65cb38bf46cc3..9a73909d69a47 100644 --- a/clients/client-cloudfront/src/commands/CreateInvalidationCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateInvalidationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInvalidationRequest, CreateInvalidationResult } from "../models/models_0"; +import type { CreateInvalidationRequest, CreateInvalidationResult } from "../models/models_0"; import { CreateInvalidation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateInvalidationForDistributionTenantCommand.ts b/clients/client-cloudfront/src/commands/CreateInvalidationForDistributionTenantCommand.ts index 6f7592e9d1526..e64c195631496 100644 --- a/clients/client-cloudfront/src/commands/CreateInvalidationForDistributionTenantCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateInvalidationForDistributionTenantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateInvalidationForDistributionTenantRequest, CreateInvalidationForDistributionTenantResult, } from "../models/models_0"; diff --git a/clients/client-cloudfront/src/commands/CreateKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/CreateKeyGroupCommand.ts index 585776020c0ba..cfe6c09b3ae6d 100644 --- a/clients/client-cloudfront/src/commands/CreateKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateKeyGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateKeyGroupRequest, CreateKeyGroupResult } from "../models/models_0"; +import type { CreateKeyGroupRequest, CreateKeyGroupResult } from "../models/models_0"; import { CreateKeyGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateKeyValueStoreCommand.ts b/clients/client-cloudfront/src/commands/CreateKeyValueStoreCommand.ts index a330553fd8e13..c5a6f3e3ddc9f 100644 --- a/clients/client-cloudfront/src/commands/CreateKeyValueStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateKeyValueStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateKeyValueStoreRequest, CreateKeyValueStoreResult } from "../models/models_0"; +import type { CreateKeyValueStoreRequest, CreateKeyValueStoreResult } from "../models/models_0"; import { CreateKeyValueStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateMonitoringSubscriptionCommand.ts b/clients/client-cloudfront/src/commands/CreateMonitoringSubscriptionCommand.ts index add0668843fad..6e7416f46f64d 100644 --- a/clients/client-cloudfront/src/commands/CreateMonitoringSubscriptionCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateMonitoringSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMonitoringSubscriptionRequest, CreateMonitoringSubscriptionResult } from "../models/models_0"; +import type { CreateMonitoringSubscriptionRequest, CreateMonitoringSubscriptionResult } from "../models/models_0"; import { CreateMonitoringSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateOriginAccessControlCommand.ts b/clients/client-cloudfront/src/commands/CreateOriginAccessControlCommand.ts index 297511c941565..e1843ace978cc 100644 --- a/clients/client-cloudfront/src/commands/CreateOriginAccessControlCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateOriginAccessControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOriginAccessControlRequest, CreateOriginAccessControlResult } from "../models/models_0"; +import type { CreateOriginAccessControlRequest, CreateOriginAccessControlResult } from "../models/models_0"; import { CreateOriginAccessControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateOriginRequestPolicyCommand.ts b/clients/client-cloudfront/src/commands/CreateOriginRequestPolicyCommand.ts index f42846c31e62b..a53b02e22c44f 100644 --- a/clients/client-cloudfront/src/commands/CreateOriginRequestPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateOriginRequestPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOriginRequestPolicyRequest, CreateOriginRequestPolicyResult } from "../models/models_0"; +import type { CreateOriginRequestPolicyRequest, CreateOriginRequestPolicyResult } from "../models/models_0"; import { CreateOriginRequestPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreatePublicKeyCommand.ts b/clients/client-cloudfront/src/commands/CreatePublicKeyCommand.ts index 962f4e1051adc..627052272f094 100644 --- a/clients/client-cloudfront/src/commands/CreatePublicKeyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreatePublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePublicKeyRequest, CreatePublicKeyResult } from "../models/models_0"; +import type { CreatePublicKeyRequest, CreatePublicKeyResult } from "../models/models_0"; import { CreatePublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/CreateRealtimeLogConfigCommand.ts index 376f5426a1aa2..be2e5a72e9390 100644 --- a/clients/client-cloudfront/src/commands/CreateRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateRealtimeLogConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRealtimeLogConfigRequest, CreateRealtimeLogConfigResult } from "../models/models_0"; +import type { CreateRealtimeLogConfigRequest, CreateRealtimeLogConfigResult } from "../models/models_0"; import { CreateRealtimeLogConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateResponseHeadersPolicyCommand.ts b/clients/client-cloudfront/src/commands/CreateResponseHeadersPolicyCommand.ts index 9b9061f861e23..24da25b95f631 100644 --- a/clients/client-cloudfront/src/commands/CreateResponseHeadersPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateResponseHeadersPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResponseHeadersPolicyRequest, CreateResponseHeadersPolicyResult } from "../models/models_0"; +import type { CreateResponseHeadersPolicyRequest, CreateResponseHeadersPolicyResult } from "../models/models_0"; import { CreateResponseHeadersPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateStreamingDistributionCommand.ts b/clients/client-cloudfront/src/commands/CreateStreamingDistributionCommand.ts index 6ea721e4c139b..f47328fc119f5 100644 --- a/clients/client-cloudfront/src/commands/CreateStreamingDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateStreamingDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStreamingDistributionRequest, CreateStreamingDistributionResult } from "../models/models_0"; +import type { CreateStreamingDistributionRequest, CreateStreamingDistributionResult } from "../models/models_0"; import { CreateStreamingDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateStreamingDistributionWithTagsCommand.ts b/clients/client-cloudfront/src/commands/CreateStreamingDistributionWithTagsCommand.ts index 2d4b92c731969..c2aae73eb0c3e 100644 --- a/clients/client-cloudfront/src/commands/CreateStreamingDistributionWithTagsCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateStreamingDistributionWithTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateStreamingDistributionWithTagsRequest, CreateStreamingDistributionWithTagsResult, } from "../models/models_0"; diff --git a/clients/client-cloudfront/src/commands/CreateTrustStoreCommand.ts b/clients/client-cloudfront/src/commands/CreateTrustStoreCommand.ts index e1e0de88a83fa..665f89c715a7e 100644 --- a/clients/client-cloudfront/src/commands/CreateTrustStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateTrustStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrustStoreRequest, CreateTrustStoreResult } from "../models/models_0"; +import type { CreateTrustStoreRequest, CreateTrustStoreResult } from "../models/models_0"; import { CreateTrustStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/CreateVpcOriginCommand.ts b/clients/client-cloudfront/src/commands/CreateVpcOriginCommand.ts index 14018efbc1742..5da8c47309b26 100644 --- a/clients/client-cloudfront/src/commands/CreateVpcOriginCommand.ts +++ b/clients/client-cloudfront/src/commands/CreateVpcOriginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcOriginRequest, CreateVpcOriginResult } from "../models/models_0"; +import type { CreateVpcOriginRequest, CreateVpcOriginResult } from "../models/models_0"; import { CreateVpcOrigin } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteAnycastIpListCommand.ts b/clients/client-cloudfront/src/commands/DeleteAnycastIpListCommand.ts index 5b0a8ca0c68ee..cf06b33240efc 100644 --- a/clients/client-cloudfront/src/commands/DeleteAnycastIpListCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteAnycastIpListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnycastIpListRequest } from "../models/models_0"; +import type { DeleteAnycastIpListRequest } from "../models/models_0"; import { DeleteAnycastIpList } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteCachePolicyCommand.ts b/clients/client-cloudfront/src/commands/DeleteCachePolicyCommand.ts index 84cd00e0d20cf..ff55869951f40 100644 --- a/clients/client-cloudfront/src/commands/DeleteCachePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteCachePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCachePolicyRequest } from "../models/models_0"; +import type { DeleteCachePolicyRequest } from "../models/models_0"; import { DeleteCachePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteCloudFrontOriginAccessIdentityCommand.ts b/clients/client-cloudfront/src/commands/DeleteCloudFrontOriginAccessIdentityCommand.ts index 39d698203d302..cb889f512d36b 100644 --- a/clients/client-cloudfront/src/commands/DeleteCloudFrontOriginAccessIdentityCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteCloudFrontOriginAccessIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCloudFrontOriginAccessIdentityRequest } from "../models/models_0"; +import type { DeleteCloudFrontOriginAccessIdentityRequest } from "../models/models_0"; import { DeleteCloudFrontOriginAccessIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteConnectionFunctionCommand.ts b/clients/client-cloudfront/src/commands/DeleteConnectionFunctionCommand.ts index ed00259aefe4e..27a10e9639422 100644 --- a/clients/client-cloudfront/src/commands/DeleteConnectionFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteConnectionFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionFunctionRequest } from "../models/models_0"; +import type { DeleteConnectionFunctionRequest } from "../models/models_0"; import { DeleteConnectionFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteConnectionGroupCommand.ts b/clients/client-cloudfront/src/commands/DeleteConnectionGroupCommand.ts index 39d691dcea248..bd212fa8be0aa 100644 --- a/clients/client-cloudfront/src/commands/DeleteConnectionGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteConnectionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionGroupRequest } from "../models/models_0"; +import type { DeleteConnectionGroupRequest } from "../models/models_0"; import { DeleteConnectionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteContinuousDeploymentPolicyCommand.ts b/clients/client-cloudfront/src/commands/DeleteContinuousDeploymentPolicyCommand.ts index 1d55c1befaeeb..299aed6235baa 100644 --- a/clients/client-cloudfront/src/commands/DeleteContinuousDeploymentPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteContinuousDeploymentPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContinuousDeploymentPolicyRequest } from "../models/models_0"; +import type { DeleteContinuousDeploymentPolicyRequest } from "../models/models_0"; import { DeleteContinuousDeploymentPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteDistributionCommand.ts b/clients/client-cloudfront/src/commands/DeleteDistributionCommand.ts index 8ccf57094f0d8..6bd08a73dcad9 100644 --- a/clients/client-cloudfront/src/commands/DeleteDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDistributionRequest } from "../models/models_0"; +import type { DeleteDistributionRequest } from "../models/models_0"; import { DeleteDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteDistributionTenantCommand.ts b/clients/client-cloudfront/src/commands/DeleteDistributionTenantCommand.ts index 7f6f921c928f5..22c0ee0d34d27 100644 --- a/clients/client-cloudfront/src/commands/DeleteDistributionTenantCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteDistributionTenantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDistributionTenantRequest } from "../models/models_0"; +import type { DeleteDistributionTenantRequest } from "../models/models_0"; import { DeleteDistributionTenant } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionConfigCommand.ts b/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionConfigCommand.ts index 3a4eca36ef7c4..bc98c6f357c6c 100644 --- a/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFieldLevelEncryptionConfigRequest } from "../models/models_0"; +import type { DeleteFieldLevelEncryptionConfigRequest } from "../models/models_0"; import { DeleteFieldLevelEncryptionConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionProfileCommand.ts b/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionProfileCommand.ts index 51f86051432c3..247177793f114 100644 --- a/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionProfileCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteFieldLevelEncryptionProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFieldLevelEncryptionProfileRequest } from "../models/models_0"; +import type { DeleteFieldLevelEncryptionProfileRequest } from "../models/models_0"; import { DeleteFieldLevelEncryptionProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteFunctionCommand.ts b/clients/client-cloudfront/src/commands/DeleteFunctionCommand.ts index 9ac1b97e5a28a..2629c0553f0e6 100644 --- a/clients/client-cloudfront/src/commands/DeleteFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFunctionRequest } from "../models/models_0"; +import type { DeleteFunctionRequest } from "../models/models_0"; import { DeleteFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/DeleteKeyGroupCommand.ts index e5a608a8bc31f..4edab437e9eea 100644 --- a/clients/client-cloudfront/src/commands/DeleteKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteKeyGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKeyGroupRequest } from "../models/models_0"; +import type { DeleteKeyGroupRequest } from "../models/models_0"; import { DeleteKeyGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteKeyValueStoreCommand.ts b/clients/client-cloudfront/src/commands/DeleteKeyValueStoreCommand.ts index 6d94429b0a3fc..e968c8a574b6f 100644 --- a/clients/client-cloudfront/src/commands/DeleteKeyValueStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteKeyValueStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKeyValueStoreRequest } from "../models/models_0"; +import type { DeleteKeyValueStoreRequest } from "../models/models_0"; import { DeleteKeyValueStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteMonitoringSubscriptionCommand.ts b/clients/client-cloudfront/src/commands/DeleteMonitoringSubscriptionCommand.ts index dc8fce0be9e09..32e1cc0bb9278 100644 --- a/clients/client-cloudfront/src/commands/DeleteMonitoringSubscriptionCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteMonitoringSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMonitoringSubscriptionRequest, DeleteMonitoringSubscriptionResult } from "../models/models_0"; +import type { DeleteMonitoringSubscriptionRequest, DeleteMonitoringSubscriptionResult } from "../models/models_0"; import { DeleteMonitoringSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteOriginAccessControlCommand.ts b/clients/client-cloudfront/src/commands/DeleteOriginAccessControlCommand.ts index 6127fbf8d321e..d74afda02b852 100644 --- a/clients/client-cloudfront/src/commands/DeleteOriginAccessControlCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteOriginAccessControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOriginAccessControlRequest } from "../models/models_0"; +import type { DeleteOriginAccessControlRequest } from "../models/models_0"; import { DeleteOriginAccessControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteOriginRequestPolicyCommand.ts b/clients/client-cloudfront/src/commands/DeleteOriginRequestPolicyCommand.ts index bb6fd05638b44..8725fc6d7aaca 100644 --- a/clients/client-cloudfront/src/commands/DeleteOriginRequestPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteOriginRequestPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOriginRequestPolicyRequest } from "../models/models_0"; +import type { DeleteOriginRequestPolicyRequest } from "../models/models_0"; import { DeleteOriginRequestPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeletePublicKeyCommand.ts b/clients/client-cloudfront/src/commands/DeletePublicKeyCommand.ts index 3dfab53630e0b..d0d7800866db9 100644 --- a/clients/client-cloudfront/src/commands/DeletePublicKeyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeletePublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePublicKeyRequest } from "../models/models_0"; +import type { DeletePublicKeyRequest } from "../models/models_0"; import { DeletePublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/DeleteRealtimeLogConfigCommand.ts index b7f04888f981c..8204eef5ab1cd 100644 --- a/clients/client-cloudfront/src/commands/DeleteRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteRealtimeLogConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRealtimeLogConfigRequest } from "../models/models_0"; +import type { DeleteRealtimeLogConfigRequest } from "../models/models_0"; import { DeleteRealtimeLogConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-cloudfront/src/commands/DeleteResourcePolicyCommand.ts index c0ebfc4c5254f..e3ccb9c8b7d10 100644 --- a/clients/client-cloudfront/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest } from "../models/models_0"; +import type { DeleteResourcePolicyRequest } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteResponseHeadersPolicyCommand.ts b/clients/client-cloudfront/src/commands/DeleteResponseHeadersPolicyCommand.ts index f12a3e291ef28..23d1641c7452c 100644 --- a/clients/client-cloudfront/src/commands/DeleteResponseHeadersPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteResponseHeadersPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResponseHeadersPolicyRequest } from "../models/models_0"; +import type { DeleteResponseHeadersPolicyRequest } from "../models/models_0"; import { DeleteResponseHeadersPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteStreamingDistributionCommand.ts b/clients/client-cloudfront/src/commands/DeleteStreamingDistributionCommand.ts index da565b2587d9a..af1957c62351a 100644 --- a/clients/client-cloudfront/src/commands/DeleteStreamingDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteStreamingDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStreamingDistributionRequest } from "../models/models_0"; +import type { DeleteStreamingDistributionRequest } from "../models/models_0"; import { DeleteStreamingDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteTrustStoreCommand.ts b/clients/client-cloudfront/src/commands/DeleteTrustStoreCommand.ts index e69a7b02aa287..ce2968068e465 100644 --- a/clients/client-cloudfront/src/commands/DeleteTrustStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteTrustStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrustStoreRequest } from "../models/models_0"; +import type { DeleteTrustStoreRequest } from "../models/models_0"; import { DeleteTrustStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DeleteVpcOriginCommand.ts b/clients/client-cloudfront/src/commands/DeleteVpcOriginCommand.ts index 12384b0f6dbc4..cc47d630553d5 100644 --- a/clients/client-cloudfront/src/commands/DeleteVpcOriginCommand.ts +++ b/clients/client-cloudfront/src/commands/DeleteVpcOriginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcOriginRequest, DeleteVpcOriginResult } from "../models/models_0"; +import type { DeleteVpcOriginRequest, DeleteVpcOriginResult } from "../models/models_0"; import { DeleteVpcOrigin } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DescribeConnectionFunctionCommand.ts b/clients/client-cloudfront/src/commands/DescribeConnectionFunctionCommand.ts index f2e947312134b..ffc59f50a6434 100644 --- a/clients/client-cloudfront/src/commands/DescribeConnectionFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/DescribeConnectionFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectionFunctionRequest, DescribeConnectionFunctionResult } from "../models/models_0"; +import type { DescribeConnectionFunctionRequest, DescribeConnectionFunctionResult } from "../models/models_0"; import { DescribeConnectionFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DescribeFunctionCommand.ts b/clients/client-cloudfront/src/commands/DescribeFunctionCommand.ts index 7ff40934dd5a1..97134797741d6 100644 --- a/clients/client-cloudfront/src/commands/DescribeFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/DescribeFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFunctionRequest, DescribeFunctionResult } from "../models/models_0"; +import type { DescribeFunctionRequest, DescribeFunctionResult } from "../models/models_0"; import { DescribeFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DescribeKeyValueStoreCommand.ts b/clients/client-cloudfront/src/commands/DescribeKeyValueStoreCommand.ts index 97d9dc2922870..9e8644c09c489 100644 --- a/clients/client-cloudfront/src/commands/DescribeKeyValueStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/DescribeKeyValueStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeKeyValueStoreRequest, DescribeKeyValueStoreResult } from "../models/models_0"; +import type { DescribeKeyValueStoreRequest, DescribeKeyValueStoreResult } from "../models/models_0"; import { DescribeKeyValueStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/DisassociateDistributionTenantWebACLCommand.ts b/clients/client-cloudfront/src/commands/DisassociateDistributionTenantWebACLCommand.ts index 6120792a41568..8b0e9c8a90ac0 100644 --- a/clients/client-cloudfront/src/commands/DisassociateDistributionTenantWebACLCommand.ts +++ b/clients/client-cloudfront/src/commands/DisassociateDistributionTenantWebACLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateDistributionTenantWebACLRequest, DisassociateDistributionTenantWebACLResult, } from "../models/models_0"; diff --git a/clients/client-cloudfront/src/commands/DisassociateDistributionWebACLCommand.ts b/clients/client-cloudfront/src/commands/DisassociateDistributionWebACLCommand.ts index 048193c40aecd..04a8c929ff92f 100644 --- a/clients/client-cloudfront/src/commands/DisassociateDistributionWebACLCommand.ts +++ b/clients/client-cloudfront/src/commands/DisassociateDistributionWebACLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateDistributionWebACLRequest, DisassociateDistributionWebACLResult } from "../models/models_0"; +import type { DisassociateDistributionWebACLRequest, DisassociateDistributionWebACLResult } from "../models/models_0"; import { DisassociateDistributionWebACL } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetAnycastIpListCommand.ts b/clients/client-cloudfront/src/commands/GetAnycastIpListCommand.ts index 65e2636dadddc..8db57429689b4 100644 --- a/clients/client-cloudfront/src/commands/GetAnycastIpListCommand.ts +++ b/clients/client-cloudfront/src/commands/GetAnycastIpListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnycastIpListRequest, GetAnycastIpListResult } from "../models/models_0"; +import type { GetAnycastIpListRequest, GetAnycastIpListResult } from "../models/models_0"; import { GetAnycastIpList } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetCachePolicyCommand.ts b/clients/client-cloudfront/src/commands/GetCachePolicyCommand.ts index c4b7e5459ca96..42acf8a0f8a85 100644 --- a/clients/client-cloudfront/src/commands/GetCachePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetCachePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCachePolicyRequest, GetCachePolicyResult } from "../models/models_0"; +import type { GetCachePolicyRequest, GetCachePolicyResult } from "../models/models_0"; import { GetCachePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetCachePolicyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetCachePolicyConfigCommand.ts index 4e1e526d9a0c6..0d3fcabf1b44b 100644 --- a/clients/client-cloudfront/src/commands/GetCachePolicyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetCachePolicyConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCachePolicyConfigRequest, GetCachePolicyConfigResult } from "../models/models_0"; +import type { GetCachePolicyConfigRequest, GetCachePolicyConfigResult } from "../models/models_0"; import { GetCachePolicyConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityCommand.ts b/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityCommand.ts index bdb6710fde90e..2929ce65799df 100644 --- a/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityCommand.ts +++ b/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCloudFrontOriginAccessIdentityRequest, GetCloudFrontOriginAccessIdentityResult } from "../models/models_0"; +import type { + GetCloudFrontOriginAccessIdentityRequest, + GetCloudFrontOriginAccessIdentityResult, +} from "../models/models_0"; import { GetCloudFrontOriginAccessIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityConfigCommand.ts b/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityConfigCommand.ts index e93b952f7c2c0..d6aa4748d09d8 100644 --- a/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetCloudFrontOriginAccessIdentityConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCloudFrontOriginAccessIdentityConfigRequest, GetCloudFrontOriginAccessIdentityConfigResult, } from "../models/models_0"; diff --git a/clients/client-cloudfront/src/commands/GetConnectionFunctionCommand.ts b/clients/client-cloudfront/src/commands/GetConnectionFunctionCommand.ts index 1e05fd8642d52..cc22e5888531d 100644 --- a/clients/client-cloudfront/src/commands/GetConnectionFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetConnectionFunctionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionFunctionRequest, GetConnectionFunctionResult } from "../models/models_0"; +import { type GetConnectionFunctionRequest, GetConnectionFunctionResult } from "../models/models_0"; import { GetConnectionFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetConnectionGroupByRoutingEndpointCommand.ts b/clients/client-cloudfront/src/commands/GetConnectionGroupByRoutingEndpointCommand.ts index 86f4138dbf8c2..2d7fdf10fccff 100644 --- a/clients/client-cloudfront/src/commands/GetConnectionGroupByRoutingEndpointCommand.ts +++ b/clients/client-cloudfront/src/commands/GetConnectionGroupByRoutingEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConnectionGroupByRoutingEndpointRequest, GetConnectionGroupByRoutingEndpointResult, } from "../models/models_0"; diff --git a/clients/client-cloudfront/src/commands/GetConnectionGroupCommand.ts b/clients/client-cloudfront/src/commands/GetConnectionGroupCommand.ts index cb9b395695cb9..ed0b5c50033e0 100644 --- a/clients/client-cloudfront/src/commands/GetConnectionGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/GetConnectionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionGroupRequest, GetConnectionGroupResult } from "../models/models_0"; +import type { GetConnectionGroupRequest, GetConnectionGroupResult } from "../models/models_0"; import { GetConnectionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyCommand.ts b/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyCommand.ts index 3475ac2ff1cc0..d6b7e66c89b87 100644 --- a/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContinuousDeploymentPolicyRequest, GetContinuousDeploymentPolicyResult } from "../models/models_0"; +import type { GetContinuousDeploymentPolicyRequest, GetContinuousDeploymentPolicyResult } from "../models/models_0"; import { GetContinuousDeploymentPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyConfigCommand.ts index 5bfc9bacb0849..f59692c91be16 100644 --- a/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetContinuousDeploymentPolicyConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetContinuousDeploymentPolicyConfigRequest, GetContinuousDeploymentPolicyConfigResult, } from "../models/models_0"; diff --git a/clients/client-cloudfront/src/commands/GetDistributionCommand.ts b/clients/client-cloudfront/src/commands/GetDistributionCommand.ts index 6cb1fda498ae5..c4a573bb5fb5c 100644 --- a/clients/client-cloudfront/src/commands/GetDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDistributionRequest, GetDistributionResult } from "../models/models_0"; +import type { GetDistributionRequest, GetDistributionResult } from "../models/models_0"; import { GetDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetDistributionConfigCommand.ts b/clients/client-cloudfront/src/commands/GetDistributionConfigCommand.ts index f04b5d06bcc94..42edd5e24976f 100644 --- a/clients/client-cloudfront/src/commands/GetDistributionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetDistributionConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDistributionConfigRequest, GetDistributionConfigResult } from "../models/models_0"; +import type { GetDistributionConfigRequest, GetDistributionConfigResult } from "../models/models_0"; import { GetDistributionConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetDistributionTenantByDomainCommand.ts b/clients/client-cloudfront/src/commands/GetDistributionTenantByDomainCommand.ts index eb114f73468e4..a01ecedb38d30 100644 --- a/clients/client-cloudfront/src/commands/GetDistributionTenantByDomainCommand.ts +++ b/clients/client-cloudfront/src/commands/GetDistributionTenantByDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDistributionTenantByDomainRequest, GetDistributionTenantByDomainResult } from "../models/models_0"; +import type { GetDistributionTenantByDomainRequest, GetDistributionTenantByDomainResult } from "../models/models_0"; import { GetDistributionTenantByDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetDistributionTenantCommand.ts b/clients/client-cloudfront/src/commands/GetDistributionTenantCommand.ts index fb0114e9d65e1..679557c8ed003 100644 --- a/clients/client-cloudfront/src/commands/GetDistributionTenantCommand.ts +++ b/clients/client-cloudfront/src/commands/GetDistributionTenantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDistributionTenantRequest, GetDistributionTenantResult } from "../models/models_0"; +import type { GetDistributionTenantRequest, GetDistributionTenantResult } from "../models/models_0"; import { GetDistributionTenant } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionCommand.ts b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionCommand.ts index bb9a7b78c995a..d76c213c864df 100644 --- a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFieldLevelEncryptionRequest, GetFieldLevelEncryptionResult } from "../models/models_0"; +import type { GetFieldLevelEncryptionRequest, GetFieldLevelEncryptionResult } from "../models/models_0"; import { GetFieldLevelEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionConfigCommand.ts b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionConfigCommand.ts index 28818fc634d79..cc307f888c0fa 100644 --- a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFieldLevelEncryptionConfigRequest, GetFieldLevelEncryptionConfigResult } from "../models/models_0"; +import type { GetFieldLevelEncryptionConfigRequest, GetFieldLevelEncryptionConfigResult } from "../models/models_0"; import { GetFieldLevelEncryptionConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileCommand.ts b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileCommand.ts index 9a4e0d0e93719..79ebbf2b28b59 100644 --- a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFieldLevelEncryptionProfileRequest, GetFieldLevelEncryptionProfileResult } from "../models/models_0"; +import type { GetFieldLevelEncryptionProfileRequest, GetFieldLevelEncryptionProfileResult } from "../models/models_0"; import { GetFieldLevelEncryptionProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileConfigCommand.ts b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileConfigCommand.ts index 1aec702d3417a..5680f49b36bde 100644 --- a/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFieldLevelEncryptionProfileConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetFieldLevelEncryptionProfileConfigRequest, GetFieldLevelEncryptionProfileConfigResult, } from "../models/models_0"; diff --git a/clients/client-cloudfront/src/commands/GetFunctionCommand.ts b/clients/client-cloudfront/src/commands/GetFunctionCommand.ts index 241cb98364dcf..abc2d3a1f6337 100644 --- a/clients/client-cloudfront/src/commands/GetFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetFunctionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFunctionRequest, GetFunctionResult } from "../models/models_0"; +import { type GetFunctionRequest, GetFunctionResult } from "../models/models_0"; import { GetFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetInvalidationCommand.ts b/clients/client-cloudfront/src/commands/GetInvalidationCommand.ts index a32e6c8c8ffac..2c9dad8172d43 100644 --- a/clients/client-cloudfront/src/commands/GetInvalidationCommand.ts +++ b/clients/client-cloudfront/src/commands/GetInvalidationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInvalidationRequest, GetInvalidationResult } from "../models/models_0"; +import type { GetInvalidationRequest, GetInvalidationResult } from "../models/models_0"; import { GetInvalidation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetInvalidationForDistributionTenantCommand.ts b/clients/client-cloudfront/src/commands/GetInvalidationForDistributionTenantCommand.ts index d6a3a8d5c4355..b9a772f5949c1 100644 --- a/clients/client-cloudfront/src/commands/GetInvalidationForDistributionTenantCommand.ts +++ b/clients/client-cloudfront/src/commands/GetInvalidationForDistributionTenantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetInvalidationForDistributionTenantRequest, GetInvalidationForDistributionTenantResult, } from "../models/models_0"; diff --git a/clients/client-cloudfront/src/commands/GetKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/GetKeyGroupCommand.ts index 667d836bc33b2..626a2cf4abb12 100644 --- a/clients/client-cloudfront/src/commands/GetKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/GetKeyGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetKeyGroupRequest, GetKeyGroupResult } from "../models/models_0"; +import type { GetKeyGroupRequest, GetKeyGroupResult } from "../models/models_0"; import { GetKeyGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetKeyGroupConfigCommand.ts b/clients/client-cloudfront/src/commands/GetKeyGroupConfigCommand.ts index 390f3bd8aac33..c66778d8de0d0 100644 --- a/clients/client-cloudfront/src/commands/GetKeyGroupConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetKeyGroupConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetKeyGroupConfigRequest, GetKeyGroupConfigResult } from "../models/models_0"; +import type { GetKeyGroupConfigRequest, GetKeyGroupConfigResult } from "../models/models_0"; import { GetKeyGroupConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetManagedCertificateDetailsCommand.ts b/clients/client-cloudfront/src/commands/GetManagedCertificateDetailsCommand.ts index 9c8c7a96f1612..59e07e103ca40 100644 --- a/clients/client-cloudfront/src/commands/GetManagedCertificateDetailsCommand.ts +++ b/clients/client-cloudfront/src/commands/GetManagedCertificateDetailsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedCertificateDetailsRequest } from "../models/models_0"; -import { GetManagedCertificateDetailsResult } from "../models/models_1"; +import type { GetManagedCertificateDetailsRequest } from "../models/models_0"; +import type { GetManagedCertificateDetailsResult } from "../models/models_1"; import { GetManagedCertificateDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetMonitoringSubscriptionCommand.ts b/clients/client-cloudfront/src/commands/GetMonitoringSubscriptionCommand.ts index ba757b6822974..ebad52338e760 100644 --- a/clients/client-cloudfront/src/commands/GetMonitoringSubscriptionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetMonitoringSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMonitoringSubscriptionRequest, GetMonitoringSubscriptionResult } from "../models/models_1"; +import type { GetMonitoringSubscriptionRequest, GetMonitoringSubscriptionResult } from "../models/models_1"; import { GetMonitoringSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetOriginAccessControlCommand.ts b/clients/client-cloudfront/src/commands/GetOriginAccessControlCommand.ts index cdfefec5f00b9..6442fa2437516 100644 --- a/clients/client-cloudfront/src/commands/GetOriginAccessControlCommand.ts +++ b/clients/client-cloudfront/src/commands/GetOriginAccessControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOriginAccessControlRequest, GetOriginAccessControlResult } from "../models/models_1"; +import type { GetOriginAccessControlRequest, GetOriginAccessControlResult } from "../models/models_1"; import { GetOriginAccessControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetOriginAccessControlConfigCommand.ts b/clients/client-cloudfront/src/commands/GetOriginAccessControlConfigCommand.ts index 58705e087c8c6..3b7bf4e9bbaeb 100644 --- a/clients/client-cloudfront/src/commands/GetOriginAccessControlConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetOriginAccessControlConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOriginAccessControlConfigRequest, GetOriginAccessControlConfigResult } from "../models/models_1"; +import type { GetOriginAccessControlConfigRequest, GetOriginAccessControlConfigResult } from "../models/models_1"; import { GetOriginAccessControlConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetOriginRequestPolicyCommand.ts b/clients/client-cloudfront/src/commands/GetOriginRequestPolicyCommand.ts index 8cdc1daf99544..e4219b67657f0 100644 --- a/clients/client-cloudfront/src/commands/GetOriginRequestPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetOriginRequestPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOriginRequestPolicyRequest, GetOriginRequestPolicyResult } from "../models/models_1"; +import type { GetOriginRequestPolicyRequest, GetOriginRequestPolicyResult } from "../models/models_1"; import { GetOriginRequestPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetOriginRequestPolicyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetOriginRequestPolicyConfigCommand.ts index 995cd0444c048..9849cba84f283 100644 --- a/clients/client-cloudfront/src/commands/GetOriginRequestPolicyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetOriginRequestPolicyConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOriginRequestPolicyConfigRequest, GetOriginRequestPolicyConfigResult } from "../models/models_1"; +import type { GetOriginRequestPolicyConfigRequest, GetOriginRequestPolicyConfigResult } from "../models/models_1"; import { GetOriginRequestPolicyConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetPublicKeyCommand.ts b/clients/client-cloudfront/src/commands/GetPublicKeyCommand.ts index 540aa779f943d..0da0876aa8f6f 100644 --- a/clients/client-cloudfront/src/commands/GetPublicKeyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetPublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPublicKeyRequest, GetPublicKeyResult } from "../models/models_1"; +import type { GetPublicKeyRequest, GetPublicKeyResult } from "../models/models_1"; import { GetPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetPublicKeyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetPublicKeyConfigCommand.ts index 7b7794d2dc7b1..e8a851b27fb7c 100644 --- a/clients/client-cloudfront/src/commands/GetPublicKeyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetPublicKeyConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPublicKeyConfigRequest, GetPublicKeyConfigResult } from "../models/models_1"; +import type { GetPublicKeyConfigRequest, GetPublicKeyConfigResult } from "../models/models_1"; import { GetPublicKeyConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/GetRealtimeLogConfigCommand.ts index a36bb31a81b62..92229bc67c1f9 100644 --- a/clients/client-cloudfront/src/commands/GetRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetRealtimeLogConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRealtimeLogConfigRequest, GetRealtimeLogConfigResult } from "../models/models_1"; +import type { GetRealtimeLogConfigRequest, GetRealtimeLogConfigResult } from "../models/models_1"; import { GetRealtimeLogConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetResourcePolicyCommand.ts b/clients/client-cloudfront/src/commands/GetResourcePolicyCommand.ts index 0fa1a9c7c751f..2a4b0ae9e9d3b 100644 --- a/clients/client-cloudfront/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResult } from "../models/models_1"; +import type { GetResourcePolicyRequest, GetResourcePolicyResult } from "../models/models_1"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyCommand.ts b/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyCommand.ts index 3d8932c5a74ff..eb49ef3a436cc 100644 --- a/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResponseHeadersPolicyRequest, GetResponseHeadersPolicyResult } from "../models/models_1"; +import type { GetResponseHeadersPolicyRequest, GetResponseHeadersPolicyResult } from "../models/models_1"; import { GetResponseHeadersPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyConfigCommand.ts b/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyConfigCommand.ts index c758182154553..7ef4a4150a24a 100644 --- a/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetResponseHeadersPolicyConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResponseHeadersPolicyConfigRequest, GetResponseHeadersPolicyConfigResult } from "../models/models_1"; +import type { GetResponseHeadersPolicyConfigRequest, GetResponseHeadersPolicyConfigResult } from "../models/models_1"; import { GetResponseHeadersPolicyConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetStreamingDistributionCommand.ts b/clients/client-cloudfront/src/commands/GetStreamingDistributionCommand.ts index 011e4f74dbebb..1c01898d73554 100644 --- a/clients/client-cloudfront/src/commands/GetStreamingDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/GetStreamingDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStreamingDistributionRequest, GetStreamingDistributionResult } from "../models/models_1"; +import type { GetStreamingDistributionRequest, GetStreamingDistributionResult } from "../models/models_1"; import { GetStreamingDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetStreamingDistributionConfigCommand.ts b/clients/client-cloudfront/src/commands/GetStreamingDistributionConfigCommand.ts index 59e0054a45151..0802d4721877c 100644 --- a/clients/client-cloudfront/src/commands/GetStreamingDistributionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/GetStreamingDistributionConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStreamingDistributionConfigRequest, GetStreamingDistributionConfigResult } from "../models/models_1"; +import type { GetStreamingDistributionConfigRequest, GetStreamingDistributionConfigResult } from "../models/models_1"; import { GetStreamingDistributionConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetTrustStoreCommand.ts b/clients/client-cloudfront/src/commands/GetTrustStoreCommand.ts index b5be6a02fadfa..4a127324b238b 100644 --- a/clients/client-cloudfront/src/commands/GetTrustStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/GetTrustStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrustStoreRequest, GetTrustStoreResult } from "../models/models_1"; +import type { GetTrustStoreRequest, GetTrustStoreResult } from "../models/models_1"; import { GetTrustStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/GetVpcOriginCommand.ts b/clients/client-cloudfront/src/commands/GetVpcOriginCommand.ts index 249277e2bb074..ad9ec93e56d4a 100644 --- a/clients/client-cloudfront/src/commands/GetVpcOriginCommand.ts +++ b/clients/client-cloudfront/src/commands/GetVpcOriginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVpcOriginRequest, GetVpcOriginResult } from "../models/models_1"; +import type { GetVpcOriginRequest, GetVpcOriginResult } from "../models/models_1"; import { GetVpcOrigin } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListAnycastIpListsCommand.ts b/clients/client-cloudfront/src/commands/ListAnycastIpListsCommand.ts index fce11899ed0dd..bb7438dd284b2 100644 --- a/clients/client-cloudfront/src/commands/ListAnycastIpListsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListAnycastIpListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnycastIpListsRequest, ListAnycastIpListsResult } from "../models/models_1"; +import type { ListAnycastIpListsRequest, ListAnycastIpListsResult } from "../models/models_1"; import { ListAnycastIpLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListCachePoliciesCommand.ts b/clients/client-cloudfront/src/commands/ListCachePoliciesCommand.ts index 2267810d431a4..46e8297bd1da3 100644 --- a/clients/client-cloudfront/src/commands/ListCachePoliciesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListCachePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCachePoliciesRequest, ListCachePoliciesResult } from "../models/models_1"; +import type { ListCachePoliciesRequest, ListCachePoliciesResult } from "../models/models_1"; import { ListCachePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListCloudFrontOriginAccessIdentitiesCommand.ts b/clients/client-cloudfront/src/commands/ListCloudFrontOriginAccessIdentitiesCommand.ts index edde883b691da..080cd72e73a61 100644 --- a/clients/client-cloudfront/src/commands/ListCloudFrontOriginAccessIdentitiesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListCloudFrontOriginAccessIdentitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCloudFrontOriginAccessIdentitiesRequest, ListCloudFrontOriginAccessIdentitiesResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/ListConflictingAliasesCommand.ts b/clients/client-cloudfront/src/commands/ListConflictingAliasesCommand.ts index d85219afee850..6a5d814b7de84 100644 --- a/clients/client-cloudfront/src/commands/ListConflictingAliasesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListConflictingAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConflictingAliasesRequest, ListConflictingAliasesResult } from "../models/models_1"; +import type { ListConflictingAliasesRequest, ListConflictingAliasesResult } from "../models/models_1"; import { ListConflictingAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListConnectionFunctionsCommand.ts b/clients/client-cloudfront/src/commands/ListConnectionFunctionsCommand.ts index 1484862e50adb..8d1a471c7dec5 100644 --- a/clients/client-cloudfront/src/commands/ListConnectionFunctionsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListConnectionFunctionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectionFunctionsRequest, ListConnectionFunctionsResult } from "../models/models_1"; +import type { ListConnectionFunctionsRequest, ListConnectionFunctionsResult } from "../models/models_1"; import { ListConnectionFunctions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListConnectionGroupsCommand.ts b/clients/client-cloudfront/src/commands/ListConnectionGroupsCommand.ts index ab82cadaa9de8..3d26bd2875c5c 100644 --- a/clients/client-cloudfront/src/commands/ListConnectionGroupsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListConnectionGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectionGroupsRequest, ListConnectionGroupsResult } from "../models/models_1"; +import type { ListConnectionGroupsRequest, ListConnectionGroupsResult } from "../models/models_1"; import { ListConnectionGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListContinuousDeploymentPoliciesCommand.ts b/clients/client-cloudfront/src/commands/ListContinuousDeploymentPoliciesCommand.ts index 027782adcfb10..7060c86cb4492 100644 --- a/clients/client-cloudfront/src/commands/ListContinuousDeploymentPoliciesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListContinuousDeploymentPoliciesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContinuousDeploymentPoliciesRequest, ListContinuousDeploymentPoliciesResult } from "../models/models_1"; +import type { + ListContinuousDeploymentPoliciesRequest, + ListContinuousDeploymentPoliciesResult, +} from "../models/models_1"; import { ListContinuousDeploymentPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDistributionTenantsByCustomizationCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionTenantsByCustomizationCommand.ts index 752faab8af0ed..489da2046b498 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionTenantsByCustomizationCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionTenantsByCustomizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDistributionTenantsByCustomizationRequest, ListDistributionTenantsByCustomizationResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/ListDistributionTenantsCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionTenantsCommand.ts index 1143ba4cfd677..9badea3af073c 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionTenantsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionTenantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDistributionTenantsRequest, ListDistributionTenantsResult } from "../models/models_1"; +import type { ListDistributionTenantsRequest, ListDistributionTenantsResult } from "../models/models_1"; import { ListDistributionTenants } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByAnycastIpListIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByAnycastIpListIdCommand.ts index 02d255e2a691b..d8a184ca08272 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByAnycastIpListIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByAnycastIpListIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDistributionsByAnycastIpListIdRequest, ListDistributionsByAnycastIpListIdResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByCachePolicyIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByCachePolicyIdCommand.ts index 7daa988e475b2..99a035af62898 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByCachePolicyIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByCachePolicyIdCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDistributionsByCachePolicyIdRequest, ListDistributionsByCachePolicyIdResult } from "../models/models_1"; +import type { + ListDistributionsByCachePolicyIdRequest, + ListDistributionsByCachePolicyIdResult, +} from "../models/models_1"; import { ListDistributionsByCachePolicyId } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByConnectionFunctionCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByConnectionFunctionCommand.ts index 9ac1c75952d9b..185e537f11663 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByConnectionFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByConnectionFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDistributionsByConnectionFunctionRequest, ListDistributionsByConnectionFunctionResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByConnectionModeCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByConnectionModeCommand.ts index 8ff9d84b4a5c9..6d17481ecdc79 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByConnectionModeCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByConnectionModeCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDistributionsByConnectionModeRequest, ListDistributionsByConnectionModeResult } from "../models/models_1"; +import type { + ListDistributionsByConnectionModeRequest, + ListDistributionsByConnectionModeResult, +} from "../models/models_1"; import { ListDistributionsByConnectionMode } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByKeyGroupCommand.ts index 8a6b6499b258a..98f0c792d9146 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByKeyGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDistributionsByKeyGroupRequest, ListDistributionsByKeyGroupResult } from "../models/models_1"; +import type { ListDistributionsByKeyGroupRequest, ListDistributionsByKeyGroupResult } from "../models/models_1"; import { ListDistributionsByKeyGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByOriginRequestPolicyIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByOriginRequestPolicyIdCommand.ts index 699f475a67b19..267ca6fcc48b5 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByOriginRequestPolicyIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByOriginRequestPolicyIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDistributionsByOriginRequestPolicyIdRequest, ListDistributionsByOriginRequestPolicyIdResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByOwnedResourceCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByOwnedResourceCommand.ts index 674ecf75ed879..802078e267d03 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByOwnedResourceCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByOwnedResourceCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDistributionsByOwnedResourceRequest, ListDistributionsByOwnedResourceResult } from "../models/models_1"; +import type { + ListDistributionsByOwnedResourceRequest, + ListDistributionsByOwnedResourceResult, +} from "../models/models_1"; import { ListDistributionsByOwnedResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByRealtimeLogConfigCommand.ts index 63d254bb5ce15..0025baeb35dde 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByRealtimeLogConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDistributionsByRealtimeLogConfigRequest, ListDistributionsByRealtimeLogConfigResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByResponseHeadersPolicyIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByResponseHeadersPolicyIdCommand.ts index 03bc81a3cb7a5..cf00d1f90ad7f 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByResponseHeadersPolicyIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByResponseHeadersPolicyIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDistributionsByResponseHeadersPolicyIdRequest, ListDistributionsByResponseHeadersPolicyIdResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByTrustStoreCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByTrustStoreCommand.ts index 506a67ca88035..13a1c8b6d69a0 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByTrustStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByTrustStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDistributionsByTrustStoreRequest, ListDistributionsByTrustStoreResult } from "../models/models_1"; +import type { ListDistributionsByTrustStoreRequest, ListDistributionsByTrustStoreResult } from "../models/models_1"; import { ListDistributionsByTrustStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByVpcOriginIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByVpcOriginIdCommand.ts index e969024af2dc9..376dc23122111 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByVpcOriginIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByVpcOriginIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDistributionsByVpcOriginIdRequest, ListDistributionsByVpcOriginIdResult } from "../models/models_1"; +import type { ListDistributionsByVpcOriginIdRequest, ListDistributionsByVpcOriginIdResult } from "../models/models_1"; import { ListDistributionsByVpcOriginId } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDistributionsByWebACLIdCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsByWebACLIdCommand.ts index b14e02362f690..2b27ad4076a1d 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsByWebACLIdCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsByWebACLIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDistributionsByWebACLIdRequest, ListDistributionsByWebACLIdResult } from "../models/models_1"; +import type { ListDistributionsByWebACLIdRequest, ListDistributionsByWebACLIdResult } from "../models/models_1"; import { ListDistributionsByWebACLId } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDistributionsCommand.ts b/clients/client-cloudfront/src/commands/ListDistributionsCommand.ts index 15972c21230c2..04a75a00a8d4b 100644 --- a/clients/client-cloudfront/src/commands/ListDistributionsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDistributionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDistributionsRequest, ListDistributionsResult } from "../models/models_1"; +import type { ListDistributionsRequest, ListDistributionsResult } from "../models/models_1"; import { ListDistributions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListDomainConflictsCommand.ts b/clients/client-cloudfront/src/commands/ListDomainConflictsCommand.ts index 3c991ee5a2296..c030ddc551376 100644 --- a/clients/client-cloudfront/src/commands/ListDomainConflictsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListDomainConflictsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainConflictsRequest, ListDomainConflictsResult } from "../models/models_1"; +import type { ListDomainConflictsRequest, ListDomainConflictsResult } from "../models/models_1"; import { ListDomainConflicts } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionConfigsCommand.ts b/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionConfigsCommand.ts index 4656bce068ac4..de6bae766fa9b 100644 --- a/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionConfigsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFieldLevelEncryptionConfigsRequest, ListFieldLevelEncryptionConfigsResult } from "../models/models_1"; +import type { ListFieldLevelEncryptionConfigsRequest, ListFieldLevelEncryptionConfigsResult } from "../models/models_1"; import { ListFieldLevelEncryptionConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionProfilesCommand.ts b/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionProfilesCommand.ts index 8ac9fd7eb4e4f..38eb9939966b5 100644 --- a/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionProfilesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListFieldLevelEncryptionProfilesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFieldLevelEncryptionProfilesRequest, ListFieldLevelEncryptionProfilesResult } from "../models/models_1"; +import type { + ListFieldLevelEncryptionProfilesRequest, + ListFieldLevelEncryptionProfilesResult, +} from "../models/models_1"; import { ListFieldLevelEncryptionProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListFunctionsCommand.ts b/clients/client-cloudfront/src/commands/ListFunctionsCommand.ts index b3ba0d4a225d4..7825ba14334d2 100644 --- a/clients/client-cloudfront/src/commands/ListFunctionsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListFunctionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFunctionsRequest, ListFunctionsResult } from "../models/models_1"; +import type { ListFunctionsRequest, ListFunctionsResult } from "../models/models_1"; import { ListFunctions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListInvalidationsCommand.ts b/clients/client-cloudfront/src/commands/ListInvalidationsCommand.ts index efa734ccb97ef..ac67133ee5fed 100644 --- a/clients/client-cloudfront/src/commands/ListInvalidationsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListInvalidationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInvalidationsRequest, ListInvalidationsResult } from "../models/models_1"; +import type { ListInvalidationsRequest, ListInvalidationsResult } from "../models/models_1"; import { ListInvalidations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListInvalidationsForDistributionTenantCommand.ts b/clients/client-cloudfront/src/commands/ListInvalidationsForDistributionTenantCommand.ts index 628780cab1c53..072201a9e536f 100644 --- a/clients/client-cloudfront/src/commands/ListInvalidationsForDistributionTenantCommand.ts +++ b/clients/client-cloudfront/src/commands/ListInvalidationsForDistributionTenantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListInvalidationsForDistributionTenantRequest, ListInvalidationsForDistributionTenantResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/ListKeyGroupsCommand.ts b/clients/client-cloudfront/src/commands/ListKeyGroupsCommand.ts index 27d4157be1489..e4ea7c7219d63 100644 --- a/clients/client-cloudfront/src/commands/ListKeyGroupsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListKeyGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKeyGroupsRequest, ListKeyGroupsResult } from "../models/models_1"; +import type { ListKeyGroupsRequest, ListKeyGroupsResult } from "../models/models_1"; import { ListKeyGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListKeyValueStoresCommand.ts b/clients/client-cloudfront/src/commands/ListKeyValueStoresCommand.ts index 25e89fa62ab41..40ad6946ea5e2 100644 --- a/clients/client-cloudfront/src/commands/ListKeyValueStoresCommand.ts +++ b/clients/client-cloudfront/src/commands/ListKeyValueStoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKeyValueStoresRequest, ListKeyValueStoresResult } from "../models/models_1"; +import type { ListKeyValueStoresRequest, ListKeyValueStoresResult } from "../models/models_1"; import { ListKeyValueStores } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListOriginAccessControlsCommand.ts b/clients/client-cloudfront/src/commands/ListOriginAccessControlsCommand.ts index e05554b993e24..bda9515ca5b1b 100644 --- a/clients/client-cloudfront/src/commands/ListOriginAccessControlsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListOriginAccessControlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOriginAccessControlsRequest, ListOriginAccessControlsResult } from "../models/models_1"; +import type { ListOriginAccessControlsRequest, ListOriginAccessControlsResult } from "../models/models_1"; import { ListOriginAccessControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListOriginRequestPoliciesCommand.ts b/clients/client-cloudfront/src/commands/ListOriginRequestPoliciesCommand.ts index 687276a4dbb3a..bce5f54fc31e0 100644 --- a/clients/client-cloudfront/src/commands/ListOriginRequestPoliciesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListOriginRequestPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOriginRequestPoliciesRequest, ListOriginRequestPoliciesResult } from "../models/models_1"; +import type { ListOriginRequestPoliciesRequest, ListOriginRequestPoliciesResult } from "../models/models_1"; import { ListOriginRequestPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListPublicKeysCommand.ts b/clients/client-cloudfront/src/commands/ListPublicKeysCommand.ts index 9d4cd03a84eda..01087b176ad56 100644 --- a/clients/client-cloudfront/src/commands/ListPublicKeysCommand.ts +++ b/clients/client-cloudfront/src/commands/ListPublicKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPublicKeysRequest, ListPublicKeysResult } from "../models/models_1"; +import type { ListPublicKeysRequest, ListPublicKeysResult } from "../models/models_1"; import { ListPublicKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListRealtimeLogConfigsCommand.ts b/clients/client-cloudfront/src/commands/ListRealtimeLogConfigsCommand.ts index 3e765fcbb8670..888686880f9c6 100644 --- a/clients/client-cloudfront/src/commands/ListRealtimeLogConfigsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListRealtimeLogConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRealtimeLogConfigsRequest, ListRealtimeLogConfigsResult } from "../models/models_1"; +import type { ListRealtimeLogConfigsRequest, ListRealtimeLogConfigsResult } from "../models/models_1"; import { ListRealtimeLogConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListResponseHeadersPoliciesCommand.ts b/clients/client-cloudfront/src/commands/ListResponseHeadersPoliciesCommand.ts index ca75b73c11f7e..fad020693a267 100644 --- a/clients/client-cloudfront/src/commands/ListResponseHeadersPoliciesCommand.ts +++ b/clients/client-cloudfront/src/commands/ListResponseHeadersPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResponseHeadersPoliciesRequest, ListResponseHeadersPoliciesResult } from "../models/models_1"; +import type { ListResponseHeadersPoliciesRequest, ListResponseHeadersPoliciesResult } from "../models/models_1"; import { ListResponseHeadersPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListStreamingDistributionsCommand.ts b/clients/client-cloudfront/src/commands/ListStreamingDistributionsCommand.ts index 98aa03dad27cc..5164110cd8b45 100644 --- a/clients/client-cloudfront/src/commands/ListStreamingDistributionsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListStreamingDistributionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStreamingDistributionsRequest, ListStreamingDistributionsResult } from "../models/models_1"; +import type { ListStreamingDistributionsRequest, ListStreamingDistributionsResult } from "../models/models_1"; import { ListStreamingDistributions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudfront/src/commands/ListTagsForResourceCommand.ts index e0d5503c9dc07..accd51591f109 100644 --- a/clients/client-cloudfront/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudfront/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_1"; +import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListTrustStoresCommand.ts b/clients/client-cloudfront/src/commands/ListTrustStoresCommand.ts index 86747b7502ad9..f3f1e33acf706 100644 --- a/clients/client-cloudfront/src/commands/ListTrustStoresCommand.ts +++ b/clients/client-cloudfront/src/commands/ListTrustStoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrustStoresRequest, ListTrustStoresResult } from "../models/models_1"; +import type { ListTrustStoresRequest, ListTrustStoresResult } from "../models/models_1"; import { ListTrustStores } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/ListVpcOriginsCommand.ts b/clients/client-cloudfront/src/commands/ListVpcOriginsCommand.ts index 4872a6346025d..10abe93b5e7a3 100644 --- a/clients/client-cloudfront/src/commands/ListVpcOriginsCommand.ts +++ b/clients/client-cloudfront/src/commands/ListVpcOriginsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcOriginsRequest, ListVpcOriginsResult } from "../models/models_1"; +import type { ListVpcOriginsRequest, ListVpcOriginsResult } from "../models/models_1"; import { ListVpcOrigins } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/PublishConnectionFunctionCommand.ts b/clients/client-cloudfront/src/commands/PublishConnectionFunctionCommand.ts index 1e41c9c3a78a5..68fba61346768 100644 --- a/clients/client-cloudfront/src/commands/PublishConnectionFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/PublishConnectionFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishConnectionFunctionRequest, PublishConnectionFunctionResult } from "../models/models_1"; +import type { PublishConnectionFunctionRequest, PublishConnectionFunctionResult } from "../models/models_1"; import { PublishConnectionFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/PublishFunctionCommand.ts b/clients/client-cloudfront/src/commands/PublishFunctionCommand.ts index 6c9f379f5758a..148b02156df07 100644 --- a/clients/client-cloudfront/src/commands/PublishFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/PublishFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishFunctionRequest, PublishFunctionResult } from "../models/models_1"; +import type { PublishFunctionRequest, PublishFunctionResult } from "../models/models_1"; import { PublishFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/PutResourcePolicyCommand.ts b/clients/client-cloudfront/src/commands/PutResourcePolicyCommand.ts index 70d332561f890..6346634a1ebcc 100644 --- a/clients/client-cloudfront/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResult } from "../models/models_1"; +import type { PutResourcePolicyRequest, PutResourcePolicyResult } from "../models/models_1"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/TagResourceCommand.ts b/clients/client-cloudfront/src/commands/TagResourceCommand.ts index a8d9a31a7fd2f..c4628fde315f8 100644 --- a/clients/client-cloudfront/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudfront/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_1"; +import type { TagResourceRequest } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/TestConnectionFunctionCommand.ts b/clients/client-cloudfront/src/commands/TestConnectionFunctionCommand.ts index 4bc0423da0262..66db110aa66d7 100644 --- a/clients/client-cloudfront/src/commands/TestConnectionFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/TestConnectionFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestConnectionFunctionRequest, TestConnectionFunctionResult } from "../models/models_1"; +import type { TestConnectionFunctionRequest, TestConnectionFunctionResult } from "../models/models_1"; import { TestConnectionFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/TestFunctionCommand.ts b/clients/client-cloudfront/src/commands/TestFunctionCommand.ts index d625aff10a671..1a96aca9cdae5 100644 --- a/clients/client-cloudfront/src/commands/TestFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/TestFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestFunctionRequest, TestFunctionResult } from "../models/models_1"; +import type { TestFunctionRequest, TestFunctionResult } from "../models/models_1"; import { TestFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UntagResourceCommand.ts b/clients/client-cloudfront/src/commands/UntagResourceCommand.ts index b1b9776567833..ce7a8b23395c7 100644 --- a/clients/client-cloudfront/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudfront/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_1"; +import type { UntagResourceRequest } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateAnycastIpListCommand.ts b/clients/client-cloudfront/src/commands/UpdateAnycastIpListCommand.ts index 84130e8f1e4f5..b8e8450faa647 100644 --- a/clients/client-cloudfront/src/commands/UpdateAnycastIpListCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateAnycastIpListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnycastIpListRequest, UpdateAnycastIpListResult } from "../models/models_1"; +import type { UpdateAnycastIpListRequest, UpdateAnycastIpListResult } from "../models/models_1"; import { UpdateAnycastIpList } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateCachePolicyCommand.ts b/clients/client-cloudfront/src/commands/UpdateCachePolicyCommand.ts index ea5a6040c64bf..86567492bdfa8 100644 --- a/clients/client-cloudfront/src/commands/UpdateCachePolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateCachePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCachePolicyRequest, UpdateCachePolicyResult } from "../models/models_1"; +import type { UpdateCachePolicyRequest, UpdateCachePolicyResult } from "../models/models_1"; import { UpdateCachePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateCloudFrontOriginAccessIdentityCommand.ts b/clients/client-cloudfront/src/commands/UpdateCloudFrontOriginAccessIdentityCommand.ts index 492cdcaaff576..22e318443eddb 100644 --- a/clients/client-cloudfront/src/commands/UpdateCloudFrontOriginAccessIdentityCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateCloudFrontOriginAccessIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateCloudFrontOriginAccessIdentityRequest, UpdateCloudFrontOriginAccessIdentityResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/UpdateConnectionFunctionCommand.ts b/clients/client-cloudfront/src/commands/UpdateConnectionFunctionCommand.ts index f5f62e3be830f..5c1f268e33967 100644 --- a/clients/client-cloudfront/src/commands/UpdateConnectionFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateConnectionFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectionFunctionRequest, UpdateConnectionFunctionResult } from "../models/models_1"; +import type { UpdateConnectionFunctionRequest, UpdateConnectionFunctionResult } from "../models/models_1"; import { UpdateConnectionFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateConnectionGroupCommand.ts b/clients/client-cloudfront/src/commands/UpdateConnectionGroupCommand.ts index f22829b9e6879..e28e96c3d95a3 100644 --- a/clients/client-cloudfront/src/commands/UpdateConnectionGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateConnectionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectionGroupRequest, UpdateConnectionGroupResult } from "../models/models_1"; +import type { UpdateConnectionGroupRequest, UpdateConnectionGroupResult } from "../models/models_1"; import { UpdateConnectionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateContinuousDeploymentPolicyCommand.ts b/clients/client-cloudfront/src/commands/UpdateContinuousDeploymentPolicyCommand.ts index 7980005849025..6a7fdf1d90e30 100644 --- a/clients/client-cloudfront/src/commands/UpdateContinuousDeploymentPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateContinuousDeploymentPolicyCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContinuousDeploymentPolicyRequest, UpdateContinuousDeploymentPolicyResult } from "../models/models_1"; +import type { + UpdateContinuousDeploymentPolicyRequest, + UpdateContinuousDeploymentPolicyResult, +} from "../models/models_1"; import { UpdateContinuousDeploymentPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateDistributionCommand.ts b/clients/client-cloudfront/src/commands/UpdateDistributionCommand.ts index a742a28d788e7..634a36b04c2b1 100644 --- a/clients/client-cloudfront/src/commands/UpdateDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDistributionRequest, UpdateDistributionResult } from "../models/models_1"; +import type { UpdateDistributionRequest, UpdateDistributionResult } from "../models/models_1"; import { UpdateDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateDistributionTenantCommand.ts b/clients/client-cloudfront/src/commands/UpdateDistributionTenantCommand.ts index 1803ec6a5ba1e..429440eda1ec2 100644 --- a/clients/client-cloudfront/src/commands/UpdateDistributionTenantCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateDistributionTenantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDistributionTenantRequest, UpdateDistributionTenantResult } from "../models/models_1"; +import type { UpdateDistributionTenantRequest, UpdateDistributionTenantResult } from "../models/models_1"; import { UpdateDistributionTenant } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateDistributionWithStagingConfigCommand.ts b/clients/client-cloudfront/src/commands/UpdateDistributionWithStagingConfigCommand.ts index ac0dcc4dd2eaa..35037c2f09c2e 100644 --- a/clients/client-cloudfront/src/commands/UpdateDistributionWithStagingConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateDistributionWithStagingConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateDistributionWithStagingConfigRequest, UpdateDistributionWithStagingConfigResult, } from "../models/models_1"; diff --git a/clients/client-cloudfront/src/commands/UpdateDomainAssociationCommand.ts b/clients/client-cloudfront/src/commands/UpdateDomainAssociationCommand.ts index e458faf336253..acd2aad216236 100644 --- a/clients/client-cloudfront/src/commands/UpdateDomainAssociationCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainAssociationRequest, UpdateDomainAssociationResult } from "../models/models_1"; +import type { UpdateDomainAssociationRequest, UpdateDomainAssociationResult } from "../models/models_1"; import { UpdateDomainAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionConfigCommand.ts b/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionConfigCommand.ts index 1daba00740814..167daafa69d74 100644 --- a/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionConfigCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFieldLevelEncryptionConfigRequest, UpdateFieldLevelEncryptionConfigResult } from "../models/models_1"; +import type { + UpdateFieldLevelEncryptionConfigRequest, + UpdateFieldLevelEncryptionConfigResult, +} from "../models/models_1"; import { UpdateFieldLevelEncryptionConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionProfileCommand.ts b/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionProfileCommand.ts index e4f30e4816239..db7d084d6c2ba 100644 --- a/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionProfileCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateFieldLevelEncryptionProfileCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFieldLevelEncryptionProfileRequest, UpdateFieldLevelEncryptionProfileResult } from "../models/models_1"; +import type { + UpdateFieldLevelEncryptionProfileRequest, + UpdateFieldLevelEncryptionProfileResult, +} from "../models/models_1"; import { UpdateFieldLevelEncryptionProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts b/clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts index fbb92be0bec2e..ab10754119e60 100644 --- a/clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFunctionRequest, UpdateFunctionResult } from "../models/models_1"; +import type { UpdateFunctionRequest, UpdateFunctionResult } from "../models/models_1"; import { UpdateFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateKeyGroupCommand.ts b/clients/client-cloudfront/src/commands/UpdateKeyGroupCommand.ts index ccddab296cf42..1396d22d86575 100644 --- a/clients/client-cloudfront/src/commands/UpdateKeyGroupCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateKeyGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateKeyGroupRequest, UpdateKeyGroupResult } from "../models/models_1"; +import type { UpdateKeyGroupRequest, UpdateKeyGroupResult } from "../models/models_1"; import { UpdateKeyGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateKeyValueStoreCommand.ts b/clients/client-cloudfront/src/commands/UpdateKeyValueStoreCommand.ts index c88af14491a3d..861078cf4802f 100644 --- a/clients/client-cloudfront/src/commands/UpdateKeyValueStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateKeyValueStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateKeyValueStoreRequest, UpdateKeyValueStoreResult } from "../models/models_1"; +import type { UpdateKeyValueStoreRequest, UpdateKeyValueStoreResult } from "../models/models_1"; import { UpdateKeyValueStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateOriginAccessControlCommand.ts b/clients/client-cloudfront/src/commands/UpdateOriginAccessControlCommand.ts index 048d116693d43..d23e11e08d4a6 100644 --- a/clients/client-cloudfront/src/commands/UpdateOriginAccessControlCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateOriginAccessControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOriginAccessControlRequest, UpdateOriginAccessControlResult } from "../models/models_1"; +import type { UpdateOriginAccessControlRequest, UpdateOriginAccessControlResult } from "../models/models_1"; import { UpdateOriginAccessControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateOriginRequestPolicyCommand.ts b/clients/client-cloudfront/src/commands/UpdateOriginRequestPolicyCommand.ts index 93f91509e1af6..1bce78a99cb89 100644 --- a/clients/client-cloudfront/src/commands/UpdateOriginRequestPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateOriginRequestPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOriginRequestPolicyRequest, UpdateOriginRequestPolicyResult } from "../models/models_1"; +import type { UpdateOriginRequestPolicyRequest, UpdateOriginRequestPolicyResult } from "../models/models_1"; import { UpdateOriginRequestPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdatePublicKeyCommand.ts b/clients/client-cloudfront/src/commands/UpdatePublicKeyCommand.ts index d1b86fdde537c..c6c4d1f1603d2 100644 --- a/clients/client-cloudfront/src/commands/UpdatePublicKeyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdatePublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePublicKeyRequest, UpdatePublicKeyResult } from "../models/models_1"; +import type { UpdatePublicKeyRequest, UpdatePublicKeyResult } from "../models/models_1"; import { UpdatePublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateRealtimeLogConfigCommand.ts b/clients/client-cloudfront/src/commands/UpdateRealtimeLogConfigCommand.ts index bd0d0cdcc8ae4..f0bc04a40a979 100644 --- a/clients/client-cloudfront/src/commands/UpdateRealtimeLogConfigCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateRealtimeLogConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRealtimeLogConfigRequest, UpdateRealtimeLogConfigResult } from "../models/models_1"; +import type { UpdateRealtimeLogConfigRequest, UpdateRealtimeLogConfigResult } from "../models/models_1"; import { UpdateRealtimeLogConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateResponseHeadersPolicyCommand.ts b/clients/client-cloudfront/src/commands/UpdateResponseHeadersPolicyCommand.ts index f6940850fec44..8b9881c62d910 100644 --- a/clients/client-cloudfront/src/commands/UpdateResponseHeadersPolicyCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateResponseHeadersPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResponseHeadersPolicyRequest, UpdateResponseHeadersPolicyResult } from "../models/models_1"; +import type { UpdateResponseHeadersPolicyRequest, UpdateResponseHeadersPolicyResult } from "../models/models_1"; import { UpdateResponseHeadersPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateStreamingDistributionCommand.ts b/clients/client-cloudfront/src/commands/UpdateStreamingDistributionCommand.ts index 60ca90853b56c..cd0ea9341aa57 100644 --- a/clients/client-cloudfront/src/commands/UpdateStreamingDistributionCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateStreamingDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStreamingDistributionRequest, UpdateStreamingDistributionResult } from "../models/models_1"; +import type { UpdateStreamingDistributionRequest, UpdateStreamingDistributionResult } from "../models/models_1"; import { UpdateStreamingDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateTrustStoreCommand.ts b/clients/client-cloudfront/src/commands/UpdateTrustStoreCommand.ts index 2991c9ca3c99c..5c1e7667766a2 100644 --- a/clients/client-cloudfront/src/commands/UpdateTrustStoreCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateTrustStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrustStoreRequest, UpdateTrustStoreResult } from "../models/models_1"; +import type { UpdateTrustStoreRequest, UpdateTrustStoreResult } from "../models/models_1"; import { UpdateTrustStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/UpdateVpcOriginCommand.ts b/clients/client-cloudfront/src/commands/UpdateVpcOriginCommand.ts index fe605e7e3e472..95b2d5461e887 100644 --- a/clients/client-cloudfront/src/commands/UpdateVpcOriginCommand.ts +++ b/clients/client-cloudfront/src/commands/UpdateVpcOriginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVpcOriginRequest, UpdateVpcOriginResult } from "../models/models_1"; +import type { UpdateVpcOriginRequest, UpdateVpcOriginResult } from "../models/models_1"; import { UpdateVpcOrigin } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/commands/VerifyDnsConfigurationCommand.ts b/clients/client-cloudfront/src/commands/VerifyDnsConfigurationCommand.ts index cd31f1d5025e2..69b5ad91db3cf 100644 --- a/clients/client-cloudfront/src/commands/VerifyDnsConfigurationCommand.ts +++ b/clients/client-cloudfront/src/commands/VerifyDnsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; +import type { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyDnsConfigurationRequest, VerifyDnsConfigurationResult } from "../models/models_1"; +import type { VerifyDnsConfigurationRequest, VerifyDnsConfigurationResult } from "../models/models_1"; import { VerifyDnsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudfront/src/endpoint/EndpointParameters.ts b/clients/client-cloudfront/src/endpoint/EndpointParameters.ts index 70eac0caaa727..ae14f4ab8f42a 100644 --- a/clients/client-cloudfront/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudfront/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudfront/src/endpoint/endpointResolver.ts b/clients/client-cloudfront/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudfront/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudfront/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudfront/src/extensionConfiguration.ts b/clients/client-cloudfront/src/extensionConfiguration.ts index 2e79be3b3c9d1..cdaf0c3d184dd 100644 --- a/clients/client-cloudfront/src/extensionConfiguration.ts +++ b/clients/client-cloudfront/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudfront/src/models/CloudFrontServiceException.ts b/clients/client-cloudfront/src/models/CloudFrontServiceException.ts index 70e55c960cb9e..362ffaefdd2e6 100644 --- a/clients/client-cloudfront/src/models/CloudFrontServiceException.ts +++ b/clients/client-cloudfront/src/models/CloudFrontServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudfront/src/models/errors.ts b/clients/client-cloudfront/src/models/errors.ts index 6d869ec449895..9500fd7dc252f 100644 --- a/clients/client-cloudfront/src/models/errors.ts +++ b/clients/client-cloudfront/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudFrontServiceException as __BaseException } from "./CloudFrontServiceException"; diff --git a/clients/client-cloudfront/src/pagination/Interfaces.ts b/clients/client-cloudfront/src/pagination/Interfaces.ts index ada12ec7287a8..fc0b7c5110163 100644 --- a/clients/client-cloudfront/src/pagination/Interfaces.ts +++ b/clients/client-cloudfront/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; diff --git a/clients/client-cloudfront/src/pagination/ListCloudFrontOriginAccessIdentitiesPaginator.ts b/clients/client-cloudfront/src/pagination/ListCloudFrontOriginAccessIdentitiesPaginator.ts index 21d855a941ade..5c6e01e82a4f4 100644 --- a/clients/client-cloudfront/src/pagination/ListCloudFrontOriginAccessIdentitiesPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListCloudFrontOriginAccessIdentitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListConnectionFunctionsPaginator.ts b/clients/client-cloudfront/src/pagination/ListConnectionFunctionsPaginator.ts index 03127e271ee6b..3ce6c65913e46 100644 --- a/clients/client-cloudfront/src/pagination/ListConnectionFunctionsPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListConnectionFunctionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListConnectionGroupsPaginator.ts b/clients/client-cloudfront/src/pagination/ListConnectionGroupsPaginator.ts index c7e5e694b7340..b1e1d3bf3e207 100644 --- a/clients/client-cloudfront/src/pagination/ListConnectionGroupsPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListConnectionGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListDistributionTenantsByCustomizationPaginator.ts b/clients/client-cloudfront/src/pagination/ListDistributionTenantsByCustomizationPaginator.ts index 96c1e8703a61b..95e3722896c56 100644 --- a/clients/client-cloudfront/src/pagination/ListDistributionTenantsByCustomizationPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListDistributionTenantsByCustomizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListDistributionTenantsPaginator.ts b/clients/client-cloudfront/src/pagination/ListDistributionTenantsPaginator.ts index 9d51323abd6e2..ebbe776835593 100644 --- a/clients/client-cloudfront/src/pagination/ListDistributionTenantsPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListDistributionTenantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListDistributionsByConnectionFunctionPaginator.ts b/clients/client-cloudfront/src/pagination/ListDistributionsByConnectionFunctionPaginator.ts index 8269309c0e762..90718f7b7b1f5 100644 --- a/clients/client-cloudfront/src/pagination/ListDistributionsByConnectionFunctionPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListDistributionsByConnectionFunctionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListDistributionsByConnectionModePaginator.ts b/clients/client-cloudfront/src/pagination/ListDistributionsByConnectionModePaginator.ts index e3ef1f5e62391..6750232e699a0 100644 --- a/clients/client-cloudfront/src/pagination/ListDistributionsByConnectionModePaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListDistributionsByConnectionModePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListDistributionsByTrustStorePaginator.ts b/clients/client-cloudfront/src/pagination/ListDistributionsByTrustStorePaginator.ts index a516279071a64..0bd42957892ff 100644 --- a/clients/client-cloudfront/src/pagination/ListDistributionsByTrustStorePaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListDistributionsByTrustStorePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListDistributionsPaginator.ts b/clients/client-cloudfront/src/pagination/ListDistributionsPaginator.ts index 06d55e81b8f6a..7f3964c736c7e 100644 --- a/clients/client-cloudfront/src/pagination/ListDistributionsPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListDistributionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListDomainConflictsPaginator.ts b/clients/client-cloudfront/src/pagination/ListDomainConflictsPaginator.ts index 29089cf00dcff..b113df07f0f55 100644 --- a/clients/client-cloudfront/src/pagination/ListDomainConflictsPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListDomainConflictsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListInvalidationsForDistributionTenantPaginator.ts b/clients/client-cloudfront/src/pagination/ListInvalidationsForDistributionTenantPaginator.ts index 8fd18e0d93eaa..e447d995cf207 100644 --- a/clients/client-cloudfront/src/pagination/ListInvalidationsForDistributionTenantPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListInvalidationsForDistributionTenantPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListInvalidationsPaginator.ts b/clients/client-cloudfront/src/pagination/ListInvalidationsPaginator.ts index 84431bfc95221..854db9a71bb0b 100644 --- a/clients/client-cloudfront/src/pagination/ListInvalidationsPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListInvalidationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListKeyValueStoresPaginator.ts b/clients/client-cloudfront/src/pagination/ListKeyValueStoresPaginator.ts index 4d1a2502284c8..5ee18fc5d6da8 100644 --- a/clients/client-cloudfront/src/pagination/ListKeyValueStoresPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListKeyValueStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListOriginAccessControlsPaginator.ts b/clients/client-cloudfront/src/pagination/ListOriginAccessControlsPaginator.ts index ee74ca8322b02..b8749b8c3526d 100644 --- a/clients/client-cloudfront/src/pagination/ListOriginAccessControlsPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListOriginAccessControlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListPublicKeysPaginator.ts b/clients/client-cloudfront/src/pagination/ListPublicKeysPaginator.ts index 7ac029d11c475..81739600af367 100644 --- a/clients/client-cloudfront/src/pagination/ListPublicKeysPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListPublicKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListStreamingDistributionsPaginator.ts b/clients/client-cloudfront/src/pagination/ListStreamingDistributionsPaginator.ts index de3124e1f4531..3938ed5a3e034 100644 --- a/clients/client-cloudfront/src/pagination/ListStreamingDistributionsPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListStreamingDistributionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/pagination/ListTrustStoresPaginator.ts b/clients/client-cloudfront/src/pagination/ListTrustStoresPaginator.ts index 97b2f2ad4f801..a52bb888f90ed 100644 --- a/clients/client-cloudfront/src/pagination/ListTrustStoresPaginator.ts +++ b/clients/client-cloudfront/src/pagination/ListTrustStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudFrontClient } from "../CloudFrontClient"; import { diff --git a/clients/client-cloudfront/src/runtimeConfig.browser.ts b/clients/client-cloudfront/src/runtimeConfig.browser.ts index bad3cc630b090..ff2822b94c6ac 100644 --- a/clients/client-cloudfront/src/runtimeConfig.browser.ts +++ b/clients/client-cloudfront/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudFrontClientConfig } from "./CloudFrontClient"; + +import type { CloudFrontClientConfig } from "./CloudFrontClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudfront/src/runtimeConfig.native.ts b/clients/client-cloudfront/src/runtimeConfig.native.ts index 3e17152d503ba..d7f31939597ed 100644 --- a/clients/client-cloudfront/src/runtimeConfig.native.ts +++ b/clients/client-cloudfront/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudFrontClientConfig } from "./CloudFrontClient"; +import type { CloudFrontClientConfig } from "./CloudFrontClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudfront/src/runtimeConfig.shared.ts b/clients/client-cloudfront/src/runtimeConfig.shared.ts index ca9acd9c09d09..e2136474b84e2 100644 --- a/clients/client-cloudfront/src/runtimeConfig.shared.ts +++ b/clients/client-cloudfront/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestXmlProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudFrontHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudFrontClientConfig } from "./CloudFrontClient"; +import type { CloudFrontClientConfig } from "./CloudFrontClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudfront/src/runtimeConfig.ts b/clients/client-cloudfront/src/runtimeConfig.ts index 7f5a3a2d032be..97b7f6a906936 100644 --- a/clients/client-cloudfront/src/runtimeConfig.ts +++ b/clients/client-cloudfront/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudFrontClientConfig } from "./CloudFrontClient"; + +import type { CloudFrontClientConfig } from "./CloudFrontClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudfront/src/runtimeExtensions.ts b/clients/client-cloudfront/src/runtimeExtensions.ts index 1561eff4dfc33..2f98c0da147c1 100644 --- a/clients/client-cloudfront/src/runtimeExtensions.ts +++ b/clients/client-cloudfront/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudFrontExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudFrontExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudfront/src/schemas/schemas_0.ts b/clients/client-cloudfront/src/schemas/schemas_0.ts index 46abb3398b48d..51af4f7f6fe88 100644 --- a/clients/client-cloudfront/src/schemas/schemas_0.ts +++ b/clients/client-cloudfront/src/schemas/schemas_0.ts @@ -1174,7 +1174,7 @@ const n0 = "com.amazonaws.cloudfront"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-cloudhsm-v2/package.json b/clients/client-cloudhsm-v2/package.json index c99e4fab7ddc7..f3ef5ab2ebab2 100644 --- a/clients/client-cloudhsm-v2/package.json +++ b/clients/client-cloudhsm-v2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudhsm-v2/src/CloudHSMV2.ts b/clients/client-cloudhsm-v2/src/CloudHSMV2.ts index 0aeac82f5d5aa..cfeb1147b94af 100644 --- a/clients/client-cloudhsm-v2/src/CloudHSMV2.ts +++ b/clients/client-cloudhsm-v2/src/CloudHSMV2.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudHSMV2Client, CloudHSMV2ClientConfig } from "./CloudHSMV2Client"; +import { CloudHSMV2Client } from "./CloudHSMV2Client"; import { CopyBackupToRegionCommand, CopyBackupToRegionCommandInput, diff --git a/clients/client-cloudhsm-v2/src/CloudHSMV2Client.ts b/clients/client-cloudhsm-v2/src/CloudHSMV2Client.ts index a60d8403a63d8..d2b38666646f2 100644 --- a/clients/client-cloudhsm-v2/src/CloudHSMV2Client.ts +++ b/clients/client-cloudhsm-v2/src/CloudHSMV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudHSMV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CopyBackupToRegionCommandInput, CopyBackupToRegionCommandOutput } from "./commands/CopyBackupToRegionCommand"; @@ -88,7 +97,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudhsm-v2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudhsm-v2/src/auth/httpAuthExtensionConfiguration.ts index aee25773b91f4..022be4066d01f 100644 --- a/clients/client-cloudhsm-v2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudhsm-v2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudHSMV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudHSMV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudhsm-v2/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudhsm-v2/src/auth/httpAuthSchemeProvider.ts index 8a00d339b8951..671064744febc 100644 --- a/clients/client-cloudhsm-v2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudhsm-v2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudHSMV2ClientConfig, CloudHSMV2ClientResolvedConfig } from "../CloudHSMV2Client"; +import { type CloudHSMV2ClientResolvedConfig, CloudHSMV2ClientConfig } from "../CloudHSMV2Client"; /** * @internal diff --git a/clients/client-cloudhsm-v2/src/commands/CopyBackupToRegionCommand.ts b/clients/client-cloudhsm-v2/src/commands/CopyBackupToRegionCommand.ts index ed2fcb917d48b..a464177afef49 100644 --- a/clients/client-cloudhsm-v2/src/commands/CopyBackupToRegionCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/CopyBackupToRegionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyBackupToRegionRequest, CopyBackupToRegionResponse } from "../models/models_0"; +import type { CopyBackupToRegionRequest, CopyBackupToRegionResponse } from "../models/models_0"; import { CopyBackupToRegion } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/CreateClusterCommand.ts b/clients/client-cloudhsm-v2/src/commands/CreateClusterCommand.ts index 9b48cb68be456..ed0dd1135c205 100644 --- a/clients/client-cloudhsm-v2/src/commands/CreateClusterCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/CreateHsmCommand.ts b/clients/client-cloudhsm-v2/src/commands/CreateHsmCommand.ts index 1d4ab41f77063..fd806370e0cbd 100644 --- a/clients/client-cloudhsm-v2/src/commands/CreateHsmCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/CreateHsmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHsmRequest, CreateHsmResponse } from "../models/models_0"; +import type { CreateHsmRequest, CreateHsmResponse } from "../models/models_0"; import { CreateHsm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/DeleteBackupCommand.ts b/clients/client-cloudhsm-v2/src/commands/DeleteBackupCommand.ts index f41b9b0ef4ae4..08cb3d68821b5 100644 --- a/clients/client-cloudhsm-v2/src/commands/DeleteBackupCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DeleteBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackupRequest, DeleteBackupResponse } from "../models/models_0"; +import type { DeleteBackupRequest, DeleteBackupResponse } from "../models/models_0"; import { DeleteBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/DeleteClusterCommand.ts b/clients/client-cloudhsm-v2/src/commands/DeleteClusterCommand.ts index e9556dd641ae6..964a402a1ddc5 100644 --- a/clients/client-cloudhsm-v2/src/commands/DeleteClusterCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/DeleteHsmCommand.ts b/clients/client-cloudhsm-v2/src/commands/DeleteHsmCommand.ts index 701fc35139461..b899e2ff4abbb 100644 --- a/clients/client-cloudhsm-v2/src/commands/DeleteHsmCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DeleteHsmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHsmRequest, DeleteHsmResponse } from "../models/models_0"; +import type { DeleteHsmRequest, DeleteHsmResponse } from "../models/models_0"; import { DeleteHsm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-cloudhsm-v2/src/commands/DeleteResourcePolicyCommand.ts index 59a68a099e1bd..031fd570b4b0a 100644 --- a/clients/client-cloudhsm-v2/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/DescribeBackupsCommand.ts b/clients/client-cloudhsm-v2/src/commands/DescribeBackupsCommand.ts index 37e176e51bb51..f6fc91ea9317d 100644 --- a/clients/client-cloudhsm-v2/src/commands/DescribeBackupsCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DescribeBackupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBackupsRequest, DescribeBackupsResponse } from "../models/models_0"; +import type { DescribeBackupsRequest, DescribeBackupsResponse } from "../models/models_0"; import { DescribeBackups } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/DescribeClustersCommand.ts b/clients/client-cloudhsm-v2/src/commands/DescribeClustersCommand.ts index 899cab33cee49..c5ebde5890acc 100644 --- a/clients/client-cloudhsm-v2/src/commands/DescribeClustersCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/DescribeClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0"; +import type { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0"; import { DescribeClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/GetResourcePolicyCommand.ts b/clients/client-cloudhsm-v2/src/commands/GetResourcePolicyCommand.ts index 422b68716e621..290ae0d9f12d6 100644 --- a/clients/client-cloudhsm-v2/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/InitializeClusterCommand.ts b/clients/client-cloudhsm-v2/src/commands/InitializeClusterCommand.ts index a792bba9ca41d..3eb0d7246b817 100644 --- a/clients/client-cloudhsm-v2/src/commands/InitializeClusterCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/InitializeClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InitializeClusterRequest, InitializeClusterResponse } from "../models/models_0"; +import type { InitializeClusterRequest, InitializeClusterResponse } from "../models/models_0"; import { InitializeCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/ListTagsCommand.ts b/clients/client-cloudhsm-v2/src/commands/ListTagsCommand.ts index 4bde4ae62ef2f..e450f52e643fd 100644 --- a/clients/client-cloudhsm-v2/src/commands/ListTagsCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsRequest, ListTagsResponse } from "../models/models_0"; +import type { ListTagsRequest, ListTagsResponse } from "../models/models_0"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/ModifyBackupAttributesCommand.ts b/clients/client-cloudhsm-v2/src/commands/ModifyBackupAttributesCommand.ts index ad042827577ed..21ee69b18b4de 100644 --- a/clients/client-cloudhsm-v2/src/commands/ModifyBackupAttributesCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/ModifyBackupAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyBackupAttributesRequest, ModifyBackupAttributesResponse } from "../models/models_0"; +import type { ModifyBackupAttributesRequest, ModifyBackupAttributesResponse } from "../models/models_0"; import { ModifyBackupAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/ModifyClusterCommand.ts b/clients/client-cloudhsm-v2/src/commands/ModifyClusterCommand.ts index 7f4f5baa4244f..f4cf8b834be68 100644 --- a/clients/client-cloudhsm-v2/src/commands/ModifyClusterCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/ModifyClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClusterRequest, ModifyClusterResponse } from "../models/models_0"; +import type { ModifyClusterRequest, ModifyClusterResponse } from "../models/models_0"; import { ModifyCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/PutResourcePolicyCommand.ts b/clients/client-cloudhsm-v2/src/commands/PutResourcePolicyCommand.ts index 0b10feb5512f4..c4ed80eb2bf15 100644 --- a/clients/client-cloudhsm-v2/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/RestoreBackupCommand.ts b/clients/client-cloudhsm-v2/src/commands/RestoreBackupCommand.ts index baebd43d4fc81..8f0ad47efbef7 100644 --- a/clients/client-cloudhsm-v2/src/commands/RestoreBackupCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/RestoreBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreBackupRequest, RestoreBackupResponse } from "../models/models_0"; +import type { RestoreBackupRequest, RestoreBackupResponse } from "../models/models_0"; import { RestoreBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/TagResourceCommand.ts b/clients/client-cloudhsm-v2/src/commands/TagResourceCommand.ts index b944acbf091f8..507937c996000 100644 --- a/clients/client-cloudhsm-v2/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/commands/UntagResourceCommand.ts b/clients/client-cloudhsm-v2/src/commands/UntagResourceCommand.ts index 65acd1da10e61..1c860aee5064d 100644 --- a/clients/client-cloudhsm-v2/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudhsm-v2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; +import type { CloudHSMV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm-v2/src/endpoint/EndpointParameters.ts b/clients/client-cloudhsm-v2/src/endpoint/EndpointParameters.ts index f6a8b9b8ebc1c..f2a66dd8ec422 100644 --- a/clients/client-cloudhsm-v2/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudhsm-v2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudhsm-v2/src/endpoint/endpointResolver.ts b/clients/client-cloudhsm-v2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudhsm-v2/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudhsm-v2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudhsm-v2/src/extensionConfiguration.ts b/clients/client-cloudhsm-v2/src/extensionConfiguration.ts index 103c8575b7c36..e90aed5d5ceba 100644 --- a/clients/client-cloudhsm-v2/src/extensionConfiguration.ts +++ b/clients/client-cloudhsm-v2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudhsm-v2/src/models/CloudHSMV2ServiceException.ts b/clients/client-cloudhsm-v2/src/models/CloudHSMV2ServiceException.ts index 1907c7bf406b6..f5dc88a52d2fa 100644 --- a/clients/client-cloudhsm-v2/src/models/CloudHSMV2ServiceException.ts +++ b/clients/client-cloudhsm-v2/src/models/CloudHSMV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudhsm-v2/src/models/errors.ts b/clients/client-cloudhsm-v2/src/models/errors.ts index 7b4a12304a534..78f068803d667 100644 --- a/clients/client-cloudhsm-v2/src/models/errors.ts +++ b/clients/client-cloudhsm-v2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudHSMV2ServiceException as __BaseException } from "./CloudHSMV2ServiceException"; diff --git a/clients/client-cloudhsm-v2/src/pagination/DescribeBackupsPaginator.ts b/clients/client-cloudhsm-v2/src/pagination/DescribeBackupsPaginator.ts index 2a3375f243b72..f08aed3de2055 100644 --- a/clients/client-cloudhsm-v2/src/pagination/DescribeBackupsPaginator.ts +++ b/clients/client-cloudhsm-v2/src/pagination/DescribeBackupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudHSMV2Client } from "../CloudHSMV2Client"; import { diff --git a/clients/client-cloudhsm-v2/src/pagination/DescribeClustersPaginator.ts b/clients/client-cloudhsm-v2/src/pagination/DescribeClustersPaginator.ts index 86b86fab708e5..a75d8eae4ea5b 100644 --- a/clients/client-cloudhsm-v2/src/pagination/DescribeClustersPaginator.ts +++ b/clients/client-cloudhsm-v2/src/pagination/DescribeClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudHSMV2Client } from "../CloudHSMV2Client"; import { diff --git a/clients/client-cloudhsm-v2/src/pagination/Interfaces.ts b/clients/client-cloudhsm-v2/src/pagination/Interfaces.ts index 5175b152a9cf0..46506696b9892 100644 --- a/clients/client-cloudhsm-v2/src/pagination/Interfaces.ts +++ b/clients/client-cloudhsm-v2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CloudHSMV2Client } from "../CloudHSMV2Client"; diff --git a/clients/client-cloudhsm-v2/src/pagination/ListTagsPaginator.ts b/clients/client-cloudhsm-v2/src/pagination/ListTagsPaginator.ts index 488bff7c403ce..2eca31305ff2d 100644 --- a/clients/client-cloudhsm-v2/src/pagination/ListTagsPaginator.ts +++ b/clients/client-cloudhsm-v2/src/pagination/ListTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudHSMV2Client } from "../CloudHSMV2Client"; import { ListTagsCommand, ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand"; diff --git a/clients/client-cloudhsm-v2/src/runtimeConfig.browser.ts b/clients/client-cloudhsm-v2/src/runtimeConfig.browser.ts index c7fb7ca8a0a77..78fb2f1e33194 100644 --- a/clients/client-cloudhsm-v2/src/runtimeConfig.browser.ts +++ b/clients/client-cloudhsm-v2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client"; + +import type { CloudHSMV2ClientConfig } from "./CloudHSMV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudhsm-v2/src/runtimeConfig.native.ts b/clients/client-cloudhsm-v2/src/runtimeConfig.native.ts index e61a840e80cc1..0ec39b2c46593 100644 --- a/clients/client-cloudhsm-v2/src/runtimeConfig.native.ts +++ b/clients/client-cloudhsm-v2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client"; +import type { CloudHSMV2ClientConfig } from "./CloudHSMV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudhsm-v2/src/runtimeConfig.shared.ts b/clients/client-cloudhsm-v2/src/runtimeConfig.shared.ts index 63faafdc1737c..f9447e977abe2 100644 --- a/clients/client-cloudhsm-v2/src/runtimeConfig.shared.ts +++ b/clients/client-cloudhsm-v2/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudHSMV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client"; +import type { CloudHSMV2ClientConfig } from "./CloudHSMV2Client"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudhsm-v2/src/runtimeConfig.ts b/clients/client-cloudhsm-v2/src/runtimeConfig.ts index d3c8b0cd67fe6..7f7bdac7f1944 100644 --- a/clients/client-cloudhsm-v2/src/runtimeConfig.ts +++ b/clients/client-cloudhsm-v2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudHSMV2ClientConfig } from "./CloudHSMV2Client"; + +import type { CloudHSMV2ClientConfig } from "./CloudHSMV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudhsm-v2/src/runtimeExtensions.ts b/clients/client-cloudhsm-v2/src/runtimeExtensions.ts index 01a4581771a36..9e69388f01d4b 100644 --- a/clients/client-cloudhsm-v2/src/runtimeExtensions.ts +++ b/clients/client-cloudhsm-v2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudHSMV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudHSMV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudhsm-v2/src/schemas/schemas_0.ts b/clients/client-cloudhsm-v2/src/schemas/schemas_0.ts index 93f3edb47a725..e5c72a4bf1e0b 100644 --- a/clients/client-cloudhsm-v2/src/schemas/schemas_0.ts +++ b/clients/client-cloudhsm-v2/src/schemas/schemas_0.ts @@ -130,7 +130,7 @@ const n0 = "com.amazonaws.cloudhsmv2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cloudhsm/package.json b/clients/client-cloudhsm/package.json index 0426da02b3016..9a3ea4d53d673 100644 --- a/clients/client-cloudhsm/package.json +++ b/clients/client-cloudhsm/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudhsm/src/CloudHSM.ts b/clients/client-cloudhsm/src/CloudHSM.ts index c7c94a7fe28ca..a01ab12c81ffe 100644 --- a/clients/client-cloudhsm/src/CloudHSM.ts +++ b/clients/client-cloudhsm/src/CloudHSM.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudHSMClient, CloudHSMClientConfig } from "./CloudHSMClient"; +import { CloudHSMClient } from "./CloudHSMClient"; import { AddTagsToResourceCommand, AddTagsToResourceCommandInput, diff --git a/clients/client-cloudhsm/src/CloudHSMClient.ts b/clients/client-cloudhsm/src/CloudHSMClient.ts index bb6da7a8aa456..7248c98ac07b0 100644 --- a/clients/client-cloudhsm/src/CloudHSMClient.ts +++ b/clients/client-cloudhsm/src/CloudHSMClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudHSMHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput } from "./commands/AddTagsToResourceCommand"; @@ -90,7 +99,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudhsm/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudhsm/src/auth/httpAuthExtensionConfiguration.ts index 75f1b524a6fbc..063f297e3b7ea 100644 --- a/clients/client-cloudhsm/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudhsm/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudHSMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudHSMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudhsm/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudhsm/src/auth/httpAuthSchemeProvider.ts index e70d8ce029371..5bee3f38bcf78 100644 --- a/clients/client-cloudhsm/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudhsm/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudHSMClientConfig, CloudHSMClientResolvedConfig } from "../CloudHSMClient"; +import { type CloudHSMClientResolvedConfig, CloudHSMClientConfig } from "../CloudHSMClient"; /** * @internal diff --git a/clients/client-cloudhsm/src/commands/AddTagsToResourceCommand.ts b/clients/client-cloudhsm/src/commands/AddTagsToResourceCommand.ts index 87d7341be6bed..2ffdd437ca3d7 100644 --- a/clients/client-cloudhsm/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-cloudhsm/src/commands/AddTagsToResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToResourceRequest, AddTagsToResourceResponse } from "../models/models_0"; +import type { AddTagsToResourceRequest, AddTagsToResourceResponse } from "../models/models_0"; import { AddTagsToResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/CreateHapgCommand.ts b/clients/client-cloudhsm/src/commands/CreateHapgCommand.ts index e394ec7a7c83c..d4cc8d9ec02a0 100644 --- a/clients/client-cloudhsm/src/commands/CreateHapgCommand.ts +++ b/clients/client-cloudhsm/src/commands/CreateHapgCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHapgRequest, CreateHapgResponse } from "../models/models_0"; +import type { CreateHapgRequest, CreateHapgResponse } from "../models/models_0"; import { CreateHapg } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/CreateHsmCommand.ts b/clients/client-cloudhsm/src/commands/CreateHsmCommand.ts index 556c532b09db4..db858c26d7874 100644 --- a/clients/client-cloudhsm/src/commands/CreateHsmCommand.ts +++ b/clients/client-cloudhsm/src/commands/CreateHsmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHsmRequest, CreateHsmResponse } from "../models/models_0"; +import type { CreateHsmRequest, CreateHsmResponse } from "../models/models_0"; import { CreateHsm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/CreateLunaClientCommand.ts b/clients/client-cloudhsm/src/commands/CreateLunaClientCommand.ts index 58c75bc9838c8..18c0255ece133 100644 --- a/clients/client-cloudhsm/src/commands/CreateLunaClientCommand.ts +++ b/clients/client-cloudhsm/src/commands/CreateLunaClientCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLunaClientRequest, CreateLunaClientResponse } from "../models/models_0"; +import type { CreateLunaClientRequest, CreateLunaClientResponse } from "../models/models_0"; import { CreateLunaClient } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/DeleteHapgCommand.ts b/clients/client-cloudhsm/src/commands/DeleteHapgCommand.ts index 5c577bc63c2c5..b4a43f690eadb 100644 --- a/clients/client-cloudhsm/src/commands/DeleteHapgCommand.ts +++ b/clients/client-cloudhsm/src/commands/DeleteHapgCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHapgRequest, DeleteHapgResponse } from "../models/models_0"; +import type { DeleteHapgRequest, DeleteHapgResponse } from "../models/models_0"; import { DeleteHapg } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/DeleteHsmCommand.ts b/clients/client-cloudhsm/src/commands/DeleteHsmCommand.ts index 4f60e34e5629d..9c57915854e2c 100644 --- a/clients/client-cloudhsm/src/commands/DeleteHsmCommand.ts +++ b/clients/client-cloudhsm/src/commands/DeleteHsmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHsmRequest, DeleteHsmResponse } from "../models/models_0"; +import type { DeleteHsmRequest, DeleteHsmResponse } from "../models/models_0"; import { DeleteHsm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/DeleteLunaClientCommand.ts b/clients/client-cloudhsm/src/commands/DeleteLunaClientCommand.ts index 3d0fb7d5e389b..9e78bf758752f 100644 --- a/clients/client-cloudhsm/src/commands/DeleteLunaClientCommand.ts +++ b/clients/client-cloudhsm/src/commands/DeleteLunaClientCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLunaClientRequest, DeleteLunaClientResponse } from "../models/models_0"; +import type { DeleteLunaClientRequest, DeleteLunaClientResponse } from "../models/models_0"; import { DeleteLunaClient } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/DescribeHapgCommand.ts b/clients/client-cloudhsm/src/commands/DescribeHapgCommand.ts index e31d2ecc10c01..c78883d44dfcd 100644 --- a/clients/client-cloudhsm/src/commands/DescribeHapgCommand.ts +++ b/clients/client-cloudhsm/src/commands/DescribeHapgCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHapgRequest, DescribeHapgResponse } from "../models/models_0"; +import type { DescribeHapgRequest, DescribeHapgResponse } from "../models/models_0"; import { DescribeHapg } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/DescribeHsmCommand.ts b/clients/client-cloudhsm/src/commands/DescribeHsmCommand.ts index 27f4f35502df9..e44d53ccdeb72 100644 --- a/clients/client-cloudhsm/src/commands/DescribeHsmCommand.ts +++ b/clients/client-cloudhsm/src/commands/DescribeHsmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHsmRequest, DescribeHsmResponse } from "../models/models_0"; +import type { DescribeHsmRequest, DescribeHsmResponse } from "../models/models_0"; import { DescribeHsm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/DescribeLunaClientCommand.ts b/clients/client-cloudhsm/src/commands/DescribeLunaClientCommand.ts index 5633f2b0b5f71..7b24c0880715b 100644 --- a/clients/client-cloudhsm/src/commands/DescribeLunaClientCommand.ts +++ b/clients/client-cloudhsm/src/commands/DescribeLunaClientCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLunaClientRequest, DescribeLunaClientResponse } from "../models/models_0"; +import type { DescribeLunaClientRequest, DescribeLunaClientResponse } from "../models/models_0"; import { DescribeLunaClient } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/GetConfigCommand.ts b/clients/client-cloudhsm/src/commands/GetConfigCommand.ts index 57c934986bead..5a06ec7964ebf 100644 --- a/clients/client-cloudhsm/src/commands/GetConfigCommand.ts +++ b/clients/client-cloudhsm/src/commands/GetConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfigRequest, GetConfigResponse } from "../models/models_0"; +import type { GetConfigRequest, GetConfigResponse } from "../models/models_0"; import { GetConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/ListAvailableZonesCommand.ts b/clients/client-cloudhsm/src/commands/ListAvailableZonesCommand.ts index 9ae4c2d4bb9f9..578bb28349a48 100644 --- a/clients/client-cloudhsm/src/commands/ListAvailableZonesCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListAvailableZonesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAvailableZonesRequest, ListAvailableZonesResponse } from "../models/models_0"; +import type { ListAvailableZonesRequest, ListAvailableZonesResponse } from "../models/models_0"; import { ListAvailableZones } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/ListHapgsCommand.ts b/clients/client-cloudhsm/src/commands/ListHapgsCommand.ts index 1dec878c6dda4..365d77cef26d5 100644 --- a/clients/client-cloudhsm/src/commands/ListHapgsCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListHapgsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHapgsRequest, ListHapgsResponse } from "../models/models_0"; +import type { ListHapgsRequest, ListHapgsResponse } from "../models/models_0"; import { ListHapgs } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/ListHsmsCommand.ts b/clients/client-cloudhsm/src/commands/ListHsmsCommand.ts index 622eb1501950f..1ebcfc9eebe58 100644 --- a/clients/client-cloudhsm/src/commands/ListHsmsCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListHsmsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHsmsRequest, ListHsmsResponse } from "../models/models_0"; +import type { ListHsmsRequest, ListHsmsResponse } from "../models/models_0"; import { ListHsms } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/ListLunaClientsCommand.ts b/clients/client-cloudhsm/src/commands/ListLunaClientsCommand.ts index 34b2ac7a41213..8c200e9c86ce6 100644 --- a/clients/client-cloudhsm/src/commands/ListLunaClientsCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListLunaClientsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLunaClientsRequest, ListLunaClientsResponse } from "../models/models_0"; +import type { ListLunaClientsRequest, ListLunaClientsResponse } from "../models/models_0"; import { ListLunaClients } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudhsm/src/commands/ListTagsForResourceCommand.ts index 2b2f42018404d..e43b6a43526a3 100644 --- a/clients/client-cloudhsm/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudhsm/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/ModifyHapgCommand.ts b/clients/client-cloudhsm/src/commands/ModifyHapgCommand.ts index 0cfdfbeba7e32..e7b66ea408b8e 100644 --- a/clients/client-cloudhsm/src/commands/ModifyHapgCommand.ts +++ b/clients/client-cloudhsm/src/commands/ModifyHapgCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyHapgRequest, ModifyHapgResponse } from "../models/models_0"; +import type { ModifyHapgRequest, ModifyHapgResponse } from "../models/models_0"; import { ModifyHapg } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/ModifyHsmCommand.ts b/clients/client-cloudhsm/src/commands/ModifyHsmCommand.ts index 264dce5b58ac6..39b63fe7367d1 100644 --- a/clients/client-cloudhsm/src/commands/ModifyHsmCommand.ts +++ b/clients/client-cloudhsm/src/commands/ModifyHsmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyHsmRequest, ModifyHsmResponse } from "../models/models_0"; +import type { ModifyHsmRequest, ModifyHsmResponse } from "../models/models_0"; import { ModifyHsm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/ModifyLunaClientCommand.ts b/clients/client-cloudhsm/src/commands/ModifyLunaClientCommand.ts index d4d434535643c..dac34411d3edd 100644 --- a/clients/client-cloudhsm/src/commands/ModifyLunaClientCommand.ts +++ b/clients/client-cloudhsm/src/commands/ModifyLunaClientCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyLunaClientRequest, ModifyLunaClientResponse } from "../models/models_0"; +import type { ModifyLunaClientRequest, ModifyLunaClientResponse } from "../models/models_0"; import { ModifyLunaClient } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-cloudhsm/src/commands/RemoveTagsFromResourceCommand.ts index f588af9d49e0d..27272e79439d9 100644 --- a/clients/client-cloudhsm/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-cloudhsm/src/commands/RemoveTagsFromResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; +import type { CloudHSMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudHSMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromResourceRequest, RemoveTagsFromResourceResponse } from "../models/models_0"; +import type { RemoveTagsFromResourceRequest, RemoveTagsFromResourceResponse } from "../models/models_0"; import { RemoveTagsFromResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudhsm/src/endpoint/EndpointParameters.ts b/clients/client-cloudhsm/src/endpoint/EndpointParameters.ts index f6a8b9b8ebc1c..f2a66dd8ec422 100644 --- a/clients/client-cloudhsm/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudhsm/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudhsm/src/endpoint/endpointResolver.ts b/clients/client-cloudhsm/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudhsm/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudhsm/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudhsm/src/extensionConfiguration.ts b/clients/client-cloudhsm/src/extensionConfiguration.ts index 3a3528c31d853..d3b6afda5d4cd 100644 --- a/clients/client-cloudhsm/src/extensionConfiguration.ts +++ b/clients/client-cloudhsm/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudhsm/src/models/CloudHSMServiceException.ts b/clients/client-cloudhsm/src/models/CloudHSMServiceException.ts index f2d69df057812..6c824d541b210 100644 --- a/clients/client-cloudhsm/src/models/CloudHSMServiceException.ts +++ b/clients/client-cloudhsm/src/models/CloudHSMServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudhsm/src/models/errors.ts b/clients/client-cloudhsm/src/models/errors.ts index 959b8c3c848c1..117a9b97ba804 100644 --- a/clients/client-cloudhsm/src/models/errors.ts +++ b/clients/client-cloudhsm/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudHSMServiceException as __BaseException } from "./CloudHSMServiceException"; diff --git a/clients/client-cloudhsm/src/runtimeConfig.browser.ts b/clients/client-cloudhsm/src/runtimeConfig.browser.ts index fb2ee808926f1..02ecfb50a97e1 100644 --- a/clients/client-cloudhsm/src/runtimeConfig.browser.ts +++ b/clients/client-cloudhsm/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudHSMClientConfig } from "./CloudHSMClient"; + +import type { CloudHSMClientConfig } from "./CloudHSMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudhsm/src/runtimeConfig.native.ts b/clients/client-cloudhsm/src/runtimeConfig.native.ts index aa779beb5f1db..2413eea2ec8f3 100644 --- a/clients/client-cloudhsm/src/runtimeConfig.native.ts +++ b/clients/client-cloudhsm/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudHSMClientConfig } from "./CloudHSMClient"; +import type { CloudHSMClientConfig } from "./CloudHSMClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudhsm/src/runtimeConfig.shared.ts b/clients/client-cloudhsm/src/runtimeConfig.shared.ts index 5be128f1ec204..1c072fd1346f4 100644 --- a/clients/client-cloudhsm/src/runtimeConfig.shared.ts +++ b/clients/client-cloudhsm/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudHSMHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudHSMClientConfig } from "./CloudHSMClient"; +import type { CloudHSMClientConfig } from "./CloudHSMClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudhsm/src/runtimeConfig.ts b/clients/client-cloudhsm/src/runtimeConfig.ts index c06f87c6c8ef2..4be8e7b5a3404 100644 --- a/clients/client-cloudhsm/src/runtimeConfig.ts +++ b/clients/client-cloudhsm/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudHSMClientConfig } from "./CloudHSMClient"; + +import type { CloudHSMClientConfig } from "./CloudHSMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudhsm/src/runtimeExtensions.ts b/clients/client-cloudhsm/src/runtimeExtensions.ts index 7309d11a9f0d7..a6ed81dd464bb 100644 --- a/clients/client-cloudhsm/src/runtimeExtensions.ts +++ b/clients/client-cloudhsm/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudHSMExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudHSMExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudhsm/src/schemas/schemas_0.ts b/clients/client-cloudhsm/src/schemas/schemas_0.ts index b17da5a8285e2..d8a009c24895a 100644 --- a/clients/client-cloudhsm/src/schemas/schemas_0.ts +++ b/clients/client-cloudhsm/src/schemas/schemas_0.ts @@ -125,7 +125,7 @@ const n0 = "com.amazonaws.cloudhsm"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { CloudHSMServiceException as __CloudHSMServiceException } from "../models/CloudHSMServiceException"; import { diff --git a/clients/client-cloudsearch-domain/package.json b/clients/client-cloudsearch-domain/package.json index 529b683a9c9b5..3ee64a5bfc111 100644 --- a/clients/client-cloudsearch-domain/package.json +++ b/clients/client-cloudsearch-domain/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudsearch-domain/src/CloudSearchDomain.ts b/clients/client-cloudsearch-domain/src/CloudSearchDomain.ts index dbce3c0cde7b0..96fcffc13324e 100644 --- a/clients/client-cloudsearch-domain/src/CloudSearchDomain.ts +++ b/clients/client-cloudsearch-domain/src/CloudSearchDomain.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudSearchDomainClient, CloudSearchDomainClientConfig } from "./CloudSearchDomainClient"; +import { CloudSearchDomainClient } from "./CloudSearchDomainClient"; import { SearchCommand, SearchCommandInput, SearchCommandOutput } from "./commands/SearchCommand"; import { SuggestCommand, SuggestCommandInput, SuggestCommandOutput } from "./commands/SuggestCommand"; import { diff --git a/clients/client-cloudsearch-domain/src/CloudSearchDomainClient.ts b/clients/client-cloudsearch-domain/src/CloudSearchDomainClient.ts index 176c8259a56e8..b1b7a5f76020e 100644 --- a/clients/client-cloudsearch-domain/src/CloudSearchDomainClient.ts +++ b/clients/client-cloudsearch-domain/src/CloudSearchDomainClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudSearchDomainHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { SearchCommandInput, SearchCommandOutput } from "./commands/SearchCommand"; @@ -67,7 +76,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudsearch-domain/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudsearch-domain/src/auth/httpAuthExtensionConfiguration.ts index 990c1e4430e83..91626b6cf2174 100644 --- a/clients/client-cloudsearch-domain/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudsearch-domain/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudSearchDomainHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudSearchDomainHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudsearch-domain/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudsearch-domain/src/auth/httpAuthSchemeProvider.ts index b339cf8e3ccd7..dd61271e23195 100644 --- a/clients/client-cloudsearch-domain/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudsearch-domain/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudSearchDomainClientConfig, CloudSearchDomainClientResolvedConfig } from "../CloudSearchDomainClient"; +import { type CloudSearchDomainClientResolvedConfig, CloudSearchDomainClientConfig } from "../CloudSearchDomainClient"; /** * @internal diff --git a/clients/client-cloudsearch-domain/src/commands/SearchCommand.ts b/clients/client-cloudsearch-domain/src/commands/SearchCommand.ts index d061753b7252b..24b54d97b74c5 100644 --- a/clients/client-cloudsearch-domain/src/commands/SearchCommand.ts +++ b/clients/client-cloudsearch-domain/src/commands/SearchCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudSearchDomainClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchRequest, SearchResponse } from "../models/models_0"; +import type { SearchRequest, SearchResponse } from "../models/models_0"; import { Search } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch-domain/src/commands/SuggestCommand.ts b/clients/client-cloudsearch-domain/src/commands/SuggestCommand.ts index 10c6e3a71fe42..41e3264d07c5d 100644 --- a/clients/client-cloudsearch-domain/src/commands/SuggestCommand.ts +++ b/clients/client-cloudsearch-domain/src/commands/SuggestCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudSearchDomainClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SuggestRequest, SuggestResponse } from "../models/models_0"; +import type { SuggestRequest, SuggestResponse } from "../models/models_0"; import { Suggest } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch-domain/src/commands/UploadDocumentsCommand.ts b/clients/client-cloudsearch-domain/src/commands/UploadDocumentsCommand.ts index aea820391d5a3..dfb54cb8f0f0b 100644 --- a/clients/client-cloudsearch-domain/src/commands/UploadDocumentsCommand.ts +++ b/clients/client-cloudsearch-domain/src/commands/UploadDocumentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; -import { +import type { CloudSearchDomainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CloudSearchDomainClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UploadDocumentsRequest, UploadDocumentsResponse } from "../models/models_0"; +import { type UploadDocumentsResponse, UploadDocumentsRequest } from "../models/models_0"; import { UploadDocuments } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch-domain/src/endpoint/EndpointParameters.ts b/clients/client-cloudsearch-domain/src/endpoint/EndpointParameters.ts index 07097ce8006e3..7364b6b1fd423 100644 --- a/clients/client-cloudsearch-domain/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudsearch-domain/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudsearch-domain/src/endpoint/endpointResolver.ts b/clients/client-cloudsearch-domain/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudsearch-domain/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudsearch-domain/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudsearch-domain/src/extensionConfiguration.ts b/clients/client-cloudsearch-domain/src/extensionConfiguration.ts index 12c2b21630d74..fa77021ce5049 100644 --- a/clients/client-cloudsearch-domain/src/extensionConfiguration.ts +++ b/clients/client-cloudsearch-domain/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudsearch-domain/src/models/CloudSearchDomainServiceException.ts b/clients/client-cloudsearch-domain/src/models/CloudSearchDomainServiceException.ts index 49a876df56262..37f2f668372ef 100644 --- a/clients/client-cloudsearch-domain/src/models/CloudSearchDomainServiceException.ts +++ b/clients/client-cloudsearch-domain/src/models/CloudSearchDomainServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudsearch-domain/src/models/errors.ts b/clients/client-cloudsearch-domain/src/models/errors.ts index 6a4a36ecbbd27..f73a2e3344e1b 100644 --- a/clients/client-cloudsearch-domain/src/models/errors.ts +++ b/clients/client-cloudsearch-domain/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudSearchDomainServiceException as __BaseException } from "./CloudSearchDomainServiceException"; diff --git a/clients/client-cloudsearch-domain/src/runtimeConfig.browser.ts b/clients/client-cloudsearch-domain/src/runtimeConfig.browser.ts index 6b2d66de20a0a..b56320ac5f64c 100644 --- a/clients/client-cloudsearch-domain/src/runtimeConfig.browser.ts +++ b/clients/client-cloudsearch-domain/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient"; + +import type { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudsearch-domain/src/runtimeConfig.native.ts b/clients/client-cloudsearch-domain/src/runtimeConfig.native.ts index 30f9418179099..68b222ba3523a 100644 --- a/clients/client-cloudsearch-domain/src/runtimeConfig.native.ts +++ b/clients/client-cloudsearch-domain/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient"; +import type { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudsearch-domain/src/runtimeConfig.shared.ts b/clients/client-cloudsearch-domain/src/runtimeConfig.shared.ts index 3418de5b17445..7835d42d051af 100644 --- a/clients/client-cloudsearch-domain/src/runtimeConfig.shared.ts +++ b/clients/client-cloudsearch-domain/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudSearchDomainHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient"; +import type { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudsearch-domain/src/runtimeConfig.ts b/clients/client-cloudsearch-domain/src/runtimeConfig.ts index ba58c23f31380..3ad11ed8948ce 100644 --- a/clients/client-cloudsearch-domain/src/runtimeConfig.ts +++ b/clients/client-cloudsearch-domain/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient"; + +import type { CloudSearchDomainClientConfig } from "./CloudSearchDomainClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudsearch-domain/src/runtimeExtensions.ts b/clients/client-cloudsearch-domain/src/runtimeExtensions.ts index 85a5c66c3756f..2aec37169db7d 100644 --- a/clients/client-cloudsearch-domain/src/runtimeExtensions.ts +++ b/clients/client-cloudsearch-domain/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudSearchDomainExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudSearchDomainExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudsearch-domain/src/schemas/schemas_0.ts b/clients/client-cloudsearch-domain/src/schemas/schemas_0.ts index 24b3698f0e15e..97a298aa86b88 100644 --- a/clients/client-cloudsearch-domain/src/schemas/schemas_0.ts +++ b/clients/client-cloudsearch-domain/src/schemas/schemas_0.ts @@ -89,7 +89,7 @@ const n0 = "com.amazonaws.cloudsearchdomain"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cloudsearch/package.json b/clients/client-cloudsearch/package.json index 50085aa21885e..322cc126dc4c6 100644 --- a/clients/client-cloudsearch/package.json +++ b/clients/client-cloudsearch/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudsearch/src/CloudSearch.ts b/clients/client-cloudsearch/src/CloudSearch.ts index ce3fda2f71729..5cd65ea4630b8 100644 --- a/clients/client-cloudsearch/src/CloudSearch.ts +++ b/clients/client-cloudsearch/src/CloudSearch.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudSearchClient, CloudSearchClientConfig } from "./CloudSearchClient"; +import { CloudSearchClient } from "./CloudSearchClient"; import { BuildSuggestersCommand, BuildSuggestersCommandInput, diff --git a/clients/client-cloudsearch/src/CloudSearchClient.ts b/clients/client-cloudsearch/src/CloudSearchClient.ts index 05faf672cdf65..14e2193daa3a9 100644 --- a/clients/client-cloudsearch/src/CloudSearchClient.ts +++ b/clients/client-cloudsearch/src/CloudSearchClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudSearchHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BuildSuggestersCommandInput, BuildSuggestersCommandOutput } from "./commands/BuildSuggestersCommand"; @@ -129,7 +138,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudsearch/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudsearch/src/auth/httpAuthExtensionConfiguration.ts index 0fb23efbcb871..f0c64ffcc9dd2 100644 --- a/clients/client-cloudsearch/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudsearch/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudSearchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudSearchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudsearch/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudsearch/src/auth/httpAuthSchemeProvider.ts index 289979d03cdc5..f28d0091ecbc2 100644 --- a/clients/client-cloudsearch/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudsearch/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudSearchClientConfig, CloudSearchClientResolvedConfig } from "../CloudSearchClient"; +import { type CloudSearchClientResolvedConfig, CloudSearchClientConfig } from "../CloudSearchClient"; /** * @internal diff --git a/clients/client-cloudsearch/src/commands/BuildSuggestersCommand.ts b/clients/client-cloudsearch/src/commands/BuildSuggestersCommand.ts index 11546f323a46f..01491a99c2f01 100644 --- a/clients/client-cloudsearch/src/commands/BuildSuggestersCommand.ts +++ b/clients/client-cloudsearch/src/commands/BuildSuggestersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BuildSuggestersRequest, BuildSuggestersResponse } from "../models/models_0"; +import type { BuildSuggestersRequest, BuildSuggestersResponse } from "../models/models_0"; import { BuildSuggesters } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/CreateDomainCommand.ts b/clients/client-cloudsearch/src/commands/CreateDomainCommand.ts index eef648259da0d..bf6e0d4c849cb 100644 --- a/clients/client-cloudsearch/src/commands/CreateDomainCommand.ts +++ b/clients/client-cloudsearch/src/commands/CreateDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; +import type { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; import { CreateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DefineAnalysisSchemeCommand.ts b/clients/client-cloudsearch/src/commands/DefineAnalysisSchemeCommand.ts index 22f36a0960118..2af973d929354 100644 --- a/clients/client-cloudsearch/src/commands/DefineAnalysisSchemeCommand.ts +++ b/clients/client-cloudsearch/src/commands/DefineAnalysisSchemeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DefineAnalysisSchemeRequest, DefineAnalysisSchemeResponse } from "../models/models_0"; +import type { DefineAnalysisSchemeRequest, DefineAnalysisSchemeResponse } from "../models/models_0"; import { DefineAnalysisScheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DefineExpressionCommand.ts b/clients/client-cloudsearch/src/commands/DefineExpressionCommand.ts index b15401763e79b..253dc8e4bbd69 100644 --- a/clients/client-cloudsearch/src/commands/DefineExpressionCommand.ts +++ b/clients/client-cloudsearch/src/commands/DefineExpressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DefineExpressionRequest, DefineExpressionResponse } from "../models/models_0"; +import type { DefineExpressionRequest, DefineExpressionResponse } from "../models/models_0"; import { DefineExpression } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DefineIndexFieldCommand.ts b/clients/client-cloudsearch/src/commands/DefineIndexFieldCommand.ts index afc665c7a1d6e..77f60a70bcc43 100644 --- a/clients/client-cloudsearch/src/commands/DefineIndexFieldCommand.ts +++ b/clients/client-cloudsearch/src/commands/DefineIndexFieldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DefineIndexFieldRequest, DefineIndexFieldResponse } from "../models/models_0"; +import type { DefineIndexFieldRequest, DefineIndexFieldResponse } from "../models/models_0"; import { DefineIndexField } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DefineSuggesterCommand.ts b/clients/client-cloudsearch/src/commands/DefineSuggesterCommand.ts index b6e2d79ef8682..6efa5fdd2ba9e 100644 --- a/clients/client-cloudsearch/src/commands/DefineSuggesterCommand.ts +++ b/clients/client-cloudsearch/src/commands/DefineSuggesterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DefineSuggesterRequest, DefineSuggesterResponse } from "../models/models_0"; +import type { DefineSuggesterRequest, DefineSuggesterResponse } from "../models/models_0"; import { DefineSuggester } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DeleteAnalysisSchemeCommand.ts b/clients/client-cloudsearch/src/commands/DeleteAnalysisSchemeCommand.ts index d91403da99722..ac5971d79a2f8 100644 --- a/clients/client-cloudsearch/src/commands/DeleteAnalysisSchemeCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteAnalysisSchemeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnalysisSchemeRequest, DeleteAnalysisSchemeResponse } from "../models/models_0"; +import type { DeleteAnalysisSchemeRequest, DeleteAnalysisSchemeResponse } from "../models/models_0"; import { DeleteAnalysisScheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DeleteDomainCommand.ts b/clients/client-cloudsearch/src/commands/DeleteDomainCommand.ts index 655afd3561688..2b500d4dcf4d3 100644 --- a/clients/client-cloudsearch/src/commands/DeleteDomainCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; +import type { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; import { DeleteDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DeleteExpressionCommand.ts b/clients/client-cloudsearch/src/commands/DeleteExpressionCommand.ts index e387fa7fb52d1..71987c992d5ee 100644 --- a/clients/client-cloudsearch/src/commands/DeleteExpressionCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteExpressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteExpressionRequest, DeleteExpressionResponse } from "../models/models_0"; +import type { DeleteExpressionRequest, DeleteExpressionResponse } from "../models/models_0"; import { DeleteExpression } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DeleteIndexFieldCommand.ts b/clients/client-cloudsearch/src/commands/DeleteIndexFieldCommand.ts index c7e669a04ed02..6f717527d2e5e 100644 --- a/clients/client-cloudsearch/src/commands/DeleteIndexFieldCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteIndexFieldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIndexFieldRequest, DeleteIndexFieldResponse } from "../models/models_0"; +import type { DeleteIndexFieldRequest, DeleteIndexFieldResponse } from "../models/models_0"; import { DeleteIndexField } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DeleteSuggesterCommand.ts b/clients/client-cloudsearch/src/commands/DeleteSuggesterCommand.ts index 7770a21559afd..1492fc3bd2a69 100644 --- a/clients/client-cloudsearch/src/commands/DeleteSuggesterCommand.ts +++ b/clients/client-cloudsearch/src/commands/DeleteSuggesterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSuggesterRequest, DeleteSuggesterResponse } from "../models/models_0"; +import type { DeleteSuggesterRequest, DeleteSuggesterResponse } from "../models/models_0"; import { DeleteSuggester } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DescribeAnalysisSchemesCommand.ts b/clients/client-cloudsearch/src/commands/DescribeAnalysisSchemesCommand.ts index e18f295e99ff8..fe8f83298f0aa 100644 --- a/clients/client-cloudsearch/src/commands/DescribeAnalysisSchemesCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeAnalysisSchemesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAnalysisSchemesRequest, DescribeAnalysisSchemesResponse } from "../models/models_0"; +import type { DescribeAnalysisSchemesRequest, DescribeAnalysisSchemesResponse } from "../models/models_0"; import { DescribeAnalysisSchemes } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DescribeAvailabilityOptionsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeAvailabilityOptionsCommand.ts index e37091bfee680..4df675908b19c 100644 --- a/clients/client-cloudsearch/src/commands/DescribeAvailabilityOptionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeAvailabilityOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAvailabilityOptionsRequest, DescribeAvailabilityOptionsResponse } from "../models/models_0"; +import type { DescribeAvailabilityOptionsRequest, DescribeAvailabilityOptionsResponse } from "../models/models_0"; import { DescribeAvailabilityOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DescribeDomainEndpointOptionsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeDomainEndpointOptionsCommand.ts index bfcd80308eaa1..e973030cbd23b 100644 --- a/clients/client-cloudsearch/src/commands/DescribeDomainEndpointOptionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeDomainEndpointOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainEndpointOptionsRequest, DescribeDomainEndpointOptionsResponse } from "../models/models_0"; +import type { DescribeDomainEndpointOptionsRequest, DescribeDomainEndpointOptionsResponse } from "../models/models_0"; import { DescribeDomainEndpointOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DescribeDomainsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeDomainsCommand.ts index e3226499c3f71..706ae526de993 100644 --- a/clients/client-cloudsearch/src/commands/DescribeDomainsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainsRequest, DescribeDomainsResponse } from "../models/models_0"; +import type { DescribeDomainsRequest, DescribeDomainsResponse } from "../models/models_0"; import { DescribeDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DescribeExpressionsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeExpressionsCommand.ts index 9c7b5aaf21f07..e403fa15e05ee 100644 --- a/clients/client-cloudsearch/src/commands/DescribeExpressionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeExpressionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExpressionsRequest, DescribeExpressionsResponse } from "../models/models_0"; +import type { DescribeExpressionsRequest, DescribeExpressionsResponse } from "../models/models_0"; import { DescribeExpressions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DescribeIndexFieldsCommand.ts b/clients/client-cloudsearch/src/commands/DescribeIndexFieldsCommand.ts index f0431052fba62..a85409e185314 100644 --- a/clients/client-cloudsearch/src/commands/DescribeIndexFieldsCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeIndexFieldsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIndexFieldsRequest, DescribeIndexFieldsResponse } from "../models/models_0"; +import type { DescribeIndexFieldsRequest, DescribeIndexFieldsResponse } from "../models/models_0"; import { DescribeIndexFields } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DescribeScalingParametersCommand.ts b/clients/client-cloudsearch/src/commands/DescribeScalingParametersCommand.ts index f261f3ae626d2..3a763ee2fa074 100644 --- a/clients/client-cloudsearch/src/commands/DescribeScalingParametersCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeScalingParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScalingParametersRequest, DescribeScalingParametersResponse } from "../models/models_0"; +import type { DescribeScalingParametersRequest, DescribeScalingParametersResponse } from "../models/models_0"; import { DescribeScalingParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DescribeServiceAccessPoliciesCommand.ts b/clients/client-cloudsearch/src/commands/DescribeServiceAccessPoliciesCommand.ts index d7c14921f3c16..bf27185ff8a03 100644 --- a/clients/client-cloudsearch/src/commands/DescribeServiceAccessPoliciesCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeServiceAccessPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServiceAccessPoliciesRequest, DescribeServiceAccessPoliciesResponse } from "../models/models_0"; +import type { DescribeServiceAccessPoliciesRequest, DescribeServiceAccessPoliciesResponse } from "../models/models_0"; import { DescribeServiceAccessPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/DescribeSuggestersCommand.ts b/clients/client-cloudsearch/src/commands/DescribeSuggestersCommand.ts index a2d3890e62365..2bccfa3c0949a 100644 --- a/clients/client-cloudsearch/src/commands/DescribeSuggestersCommand.ts +++ b/clients/client-cloudsearch/src/commands/DescribeSuggestersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSuggestersRequest, DescribeSuggestersResponse } from "../models/models_0"; +import type { DescribeSuggestersRequest, DescribeSuggestersResponse } from "../models/models_0"; import { DescribeSuggesters } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/IndexDocumentsCommand.ts b/clients/client-cloudsearch/src/commands/IndexDocumentsCommand.ts index ec7d1d5c964c2..48b5d5e15a773 100644 --- a/clients/client-cloudsearch/src/commands/IndexDocumentsCommand.ts +++ b/clients/client-cloudsearch/src/commands/IndexDocumentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IndexDocumentsRequest, IndexDocumentsResponse } from "../models/models_0"; +import type { IndexDocumentsRequest, IndexDocumentsResponse } from "../models/models_0"; import { IndexDocuments } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/ListDomainNamesCommand.ts b/clients/client-cloudsearch/src/commands/ListDomainNamesCommand.ts index 5710bf39b7622..e4f3286bea8ab 100644 --- a/clients/client-cloudsearch/src/commands/ListDomainNamesCommand.ts +++ b/clients/client-cloudsearch/src/commands/ListDomainNamesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainNamesResponse } from "../models/models_0"; +import type { ListDomainNamesResponse } from "../models/models_0"; import { ListDomainNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/UpdateAvailabilityOptionsCommand.ts b/clients/client-cloudsearch/src/commands/UpdateAvailabilityOptionsCommand.ts index 878d464868c38..14331229dfd70 100644 --- a/clients/client-cloudsearch/src/commands/UpdateAvailabilityOptionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/UpdateAvailabilityOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAvailabilityOptionsRequest, UpdateAvailabilityOptionsResponse } from "../models/models_0"; +import type { UpdateAvailabilityOptionsRequest, UpdateAvailabilityOptionsResponse } from "../models/models_0"; import { UpdateAvailabilityOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/UpdateDomainEndpointOptionsCommand.ts b/clients/client-cloudsearch/src/commands/UpdateDomainEndpointOptionsCommand.ts index f730fda84241b..853c93aa91a3f 100644 --- a/clients/client-cloudsearch/src/commands/UpdateDomainEndpointOptionsCommand.ts +++ b/clients/client-cloudsearch/src/commands/UpdateDomainEndpointOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainEndpointOptionsRequest, UpdateDomainEndpointOptionsResponse } from "../models/models_0"; +import type { UpdateDomainEndpointOptionsRequest, UpdateDomainEndpointOptionsResponse } from "../models/models_0"; import { UpdateDomainEndpointOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/UpdateScalingParametersCommand.ts b/clients/client-cloudsearch/src/commands/UpdateScalingParametersCommand.ts index 986b42f886196..c15e0c399193a 100644 --- a/clients/client-cloudsearch/src/commands/UpdateScalingParametersCommand.ts +++ b/clients/client-cloudsearch/src/commands/UpdateScalingParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScalingParametersRequest, UpdateScalingParametersResponse } from "../models/models_0"; +import type { UpdateScalingParametersRequest, UpdateScalingParametersResponse } from "../models/models_0"; import { UpdateScalingParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/commands/UpdateServiceAccessPoliciesCommand.ts b/clients/client-cloudsearch/src/commands/UpdateServiceAccessPoliciesCommand.ts index aa70b4c3c630d..3b688ee7cb700 100644 --- a/clients/client-cloudsearch/src/commands/UpdateServiceAccessPoliciesCommand.ts +++ b/clients/client-cloudsearch/src/commands/UpdateServiceAccessPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; +import type { CloudSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudSearchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceAccessPoliciesRequest, UpdateServiceAccessPoliciesResponse } from "../models/models_0"; +import type { UpdateServiceAccessPoliciesRequest, UpdateServiceAccessPoliciesResponse } from "../models/models_0"; import { UpdateServiceAccessPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudsearch/src/endpoint/EndpointParameters.ts b/clients/client-cloudsearch/src/endpoint/EndpointParameters.ts index 07097ce8006e3..7364b6b1fd423 100644 --- a/clients/client-cloudsearch/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudsearch/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudsearch/src/endpoint/endpointResolver.ts b/clients/client-cloudsearch/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudsearch/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudsearch/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudsearch/src/extensionConfiguration.ts b/clients/client-cloudsearch/src/extensionConfiguration.ts index 60a91d431fffd..4dcb697d66e2c 100644 --- a/clients/client-cloudsearch/src/extensionConfiguration.ts +++ b/clients/client-cloudsearch/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudsearch/src/models/CloudSearchServiceException.ts b/clients/client-cloudsearch/src/models/CloudSearchServiceException.ts index e7d2de9c43505..895946ba7684f 100644 --- a/clients/client-cloudsearch/src/models/CloudSearchServiceException.ts +++ b/clients/client-cloudsearch/src/models/CloudSearchServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudsearch/src/models/errors.ts b/clients/client-cloudsearch/src/models/errors.ts index 10cefa412baef..97a04451edc53 100644 --- a/clients/client-cloudsearch/src/models/errors.ts +++ b/clients/client-cloudsearch/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudSearchServiceException as __BaseException } from "./CloudSearchServiceException"; diff --git a/clients/client-cloudsearch/src/runtimeConfig.browser.ts b/clients/client-cloudsearch/src/runtimeConfig.browser.ts index 27b3aaddf4e11..8771bb100a228 100644 --- a/clients/client-cloudsearch/src/runtimeConfig.browser.ts +++ b/clients/client-cloudsearch/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudSearchClientConfig } from "./CloudSearchClient"; + +import type { CloudSearchClientConfig } from "./CloudSearchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudsearch/src/runtimeConfig.native.ts b/clients/client-cloudsearch/src/runtimeConfig.native.ts index 4903a1d70d8fd..a940c03eea16b 100644 --- a/clients/client-cloudsearch/src/runtimeConfig.native.ts +++ b/clients/client-cloudsearch/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudSearchClientConfig } from "./CloudSearchClient"; +import type { CloudSearchClientConfig } from "./CloudSearchClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudsearch/src/runtimeConfig.shared.ts b/clients/client-cloudsearch/src/runtimeConfig.shared.ts index d7ec82568923c..4a10fbee14139 100644 --- a/clients/client-cloudsearch/src/runtimeConfig.shared.ts +++ b/clients/client-cloudsearch/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudSearchHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudSearchClientConfig } from "./CloudSearchClient"; +import type { CloudSearchClientConfig } from "./CloudSearchClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudsearch/src/runtimeConfig.ts b/clients/client-cloudsearch/src/runtimeConfig.ts index 3a52d25bd29f5..665ff6d86c735 100644 --- a/clients/client-cloudsearch/src/runtimeConfig.ts +++ b/clients/client-cloudsearch/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudSearchClientConfig } from "./CloudSearchClient"; + +import type { CloudSearchClientConfig } from "./CloudSearchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudsearch/src/runtimeExtensions.ts b/clients/client-cloudsearch/src/runtimeExtensions.ts index 2552d0d64878b..8bc21b95ee201 100644 --- a/clients/client-cloudsearch/src/runtimeExtensions.ts +++ b/clients/client-cloudsearch/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudSearchExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudSearchExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudsearch/src/schemas/schemas_0.ts b/clients/client-cloudsearch/src/schemas/schemas_0.ts index dd02e9ddfd933..b686556ffa0be 100644 --- a/clients/client-cloudsearch/src/schemas/schemas_0.ts +++ b/clients/client-cloudsearch/src/schemas/schemas_0.ts @@ -193,7 +193,7 @@ const n0 = "com.amazonaws.cloudsearch"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cloudtrail-data/package.json b/clients/client-cloudtrail-data/package.json index 2b2496fc7c57a..299c22bedeec0 100644 --- a/clients/client-cloudtrail-data/package.json +++ b/clients/client-cloudtrail-data/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudtrail-data/src/CloudTrailData.ts b/clients/client-cloudtrail-data/src/CloudTrailData.ts index e4752fd9758d4..024bae717f42f 100644 --- a/clients/client-cloudtrail-data/src/CloudTrailData.ts +++ b/clients/client-cloudtrail-data/src/CloudTrailData.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudTrailDataClient, CloudTrailDataClientConfig } from "./CloudTrailDataClient"; +import { CloudTrailDataClient } from "./CloudTrailDataClient"; import { PutAuditEventsCommand, PutAuditEventsCommandInput, diff --git a/clients/client-cloudtrail-data/src/CloudTrailDataClient.ts b/clients/client-cloudtrail-data/src/CloudTrailDataClient.ts index c843e9b468869..228f2556fc82d 100644 --- a/clients/client-cloudtrail-data/src/CloudTrailDataClient.ts +++ b/clients/client-cloudtrail-data/src/CloudTrailDataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudTrailDataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { PutAuditEventsCommandInput, PutAuditEventsCommandOutput } from "./commands/PutAuditEventsCommand"; @@ -65,7 +74,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudtrail-data/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudtrail-data/src/auth/httpAuthExtensionConfiguration.ts index 06cae9f0b099b..8b7a5504dd316 100644 --- a/clients/client-cloudtrail-data/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudtrail-data/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudTrailDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudTrailDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudtrail-data/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudtrail-data/src/auth/httpAuthSchemeProvider.ts index 2660a77c34abf..5dc1b80252b32 100644 --- a/clients/client-cloudtrail-data/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudtrail-data/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudTrailDataClientConfig, CloudTrailDataClientResolvedConfig } from "../CloudTrailDataClient"; +import { type CloudTrailDataClientResolvedConfig, CloudTrailDataClientConfig } from "../CloudTrailDataClient"; /** * @internal diff --git a/clients/client-cloudtrail-data/src/commands/PutAuditEventsCommand.ts b/clients/client-cloudtrail-data/src/commands/PutAuditEventsCommand.ts index 483f002f3df99..2a9349edbfea7 100644 --- a/clients/client-cloudtrail-data/src/commands/PutAuditEventsCommand.ts +++ b/clients/client-cloudtrail-data/src/commands/PutAuditEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailDataClient"; +import type { + CloudTrailDataClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudTrailDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAuditEventsRequest, PutAuditEventsResponse } from "../models/models_0"; +import type { PutAuditEventsRequest, PutAuditEventsResponse } from "../models/models_0"; import { PutAuditEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail-data/src/endpoint/EndpointParameters.ts b/clients/client-cloudtrail-data/src/endpoint/EndpointParameters.ts index 24a0005bdbe82..4f3732ed1c913 100644 --- a/clients/client-cloudtrail-data/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudtrail-data/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudtrail-data/src/endpoint/endpointResolver.ts b/clients/client-cloudtrail-data/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudtrail-data/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudtrail-data/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudtrail-data/src/extensionConfiguration.ts b/clients/client-cloudtrail-data/src/extensionConfiguration.ts index 96f17dced49d7..dff9665cc8e4d 100644 --- a/clients/client-cloudtrail-data/src/extensionConfiguration.ts +++ b/clients/client-cloudtrail-data/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudtrail-data/src/models/CloudTrailDataServiceException.ts b/clients/client-cloudtrail-data/src/models/CloudTrailDataServiceException.ts index 1a7daeba94830..b7953bdb6c678 100644 --- a/clients/client-cloudtrail-data/src/models/CloudTrailDataServiceException.ts +++ b/clients/client-cloudtrail-data/src/models/CloudTrailDataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudtrail-data/src/models/errors.ts b/clients/client-cloudtrail-data/src/models/errors.ts index ba36b00524bd0..6d87b92d631aa 100644 --- a/clients/client-cloudtrail-data/src/models/errors.ts +++ b/clients/client-cloudtrail-data/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudTrailDataServiceException as __BaseException } from "./CloudTrailDataServiceException"; diff --git a/clients/client-cloudtrail-data/src/runtimeConfig.browser.ts b/clients/client-cloudtrail-data/src/runtimeConfig.browser.ts index 80f8404ad1410..9e0e6858ab913 100644 --- a/clients/client-cloudtrail-data/src/runtimeConfig.browser.ts +++ b/clients/client-cloudtrail-data/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudTrailDataClientConfig } from "./CloudTrailDataClient"; + +import type { CloudTrailDataClientConfig } from "./CloudTrailDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudtrail-data/src/runtimeConfig.native.ts b/clients/client-cloudtrail-data/src/runtimeConfig.native.ts index 5d35d5a557d4c..3315ecedb5ee5 100644 --- a/clients/client-cloudtrail-data/src/runtimeConfig.native.ts +++ b/clients/client-cloudtrail-data/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudTrailDataClientConfig } from "./CloudTrailDataClient"; +import type { CloudTrailDataClientConfig } from "./CloudTrailDataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudtrail-data/src/runtimeConfig.shared.ts b/clients/client-cloudtrail-data/src/runtimeConfig.shared.ts index 391331e1578e7..c834950bd3731 100644 --- a/clients/client-cloudtrail-data/src/runtimeConfig.shared.ts +++ b/clients/client-cloudtrail-data/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudTrailDataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudTrailDataClientConfig } from "./CloudTrailDataClient"; +import type { CloudTrailDataClientConfig } from "./CloudTrailDataClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudtrail-data/src/runtimeConfig.ts b/clients/client-cloudtrail-data/src/runtimeConfig.ts index af34aa14fab3b..d8ba08bb32118 100644 --- a/clients/client-cloudtrail-data/src/runtimeConfig.ts +++ b/clients/client-cloudtrail-data/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudTrailDataClientConfig } from "./CloudTrailDataClient"; + +import type { CloudTrailDataClientConfig } from "./CloudTrailDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudtrail-data/src/runtimeExtensions.ts b/clients/client-cloudtrail-data/src/runtimeExtensions.ts index 8cab2fead3d9e..58d0cf449c0c7 100644 --- a/clients/client-cloudtrail-data/src/runtimeExtensions.ts +++ b/clients/client-cloudtrail-data/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudTrailDataExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudTrailDataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudtrail-data/src/schemas/schemas_0.ts b/clients/client-cloudtrail-data/src/schemas/schemas_0.ts index 84dbbba6981db..ea2ae9df50231 100644 --- a/clients/client-cloudtrail-data/src/schemas/schemas_0.ts +++ b/clients/client-cloudtrail-data/src/schemas/schemas_0.ts @@ -34,7 +34,7 @@ const n0 = "com.amazonaws.cloudtraildata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { CloudTrailDataServiceException as __CloudTrailDataServiceException } from "../models/CloudTrailDataServiceException"; import { diff --git a/clients/client-cloudtrail/package.json b/clients/client-cloudtrail/package.json index d779e5e58df7d..e40ebafbfc31f 100644 --- a/clients/client-cloudtrail/package.json +++ b/clients/client-cloudtrail/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudtrail/src/CloudTrail.ts b/clients/client-cloudtrail/src/CloudTrail.ts index a95feb4db2d15..ddbdfd9611c74 100644 --- a/clients/client-cloudtrail/src/CloudTrail.ts +++ b/clients/client-cloudtrail/src/CloudTrail.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudTrailClient, CloudTrailClientConfig } from "./CloudTrailClient"; +import { CloudTrailClient } from "./CloudTrailClient"; import { AddTagsCommand, AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand"; import { CancelQueryCommand, CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand"; import { diff --git a/clients/client-cloudtrail/src/CloudTrailClient.ts b/clients/client-cloudtrail/src/CloudTrailClient.ts index 499050d5b39c0..329e074539c24 100644 --- a/clients/client-cloudtrail/src/CloudTrailClient.ts +++ b/clients/client-cloudtrail/src/CloudTrailClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudTrailHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand"; @@ -175,7 +184,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudtrail/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudtrail/src/auth/httpAuthExtensionConfiguration.ts index 68a3f06ddfa38..8363b64c0583c 100644 --- a/clients/client-cloudtrail/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudtrail/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudTrailHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudTrailHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudtrail/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudtrail/src/auth/httpAuthSchemeProvider.ts index cdd95204521ae..9672df0974bf4 100644 --- a/clients/client-cloudtrail/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudtrail/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudTrailClientConfig, CloudTrailClientResolvedConfig } from "../CloudTrailClient"; +import { type CloudTrailClientResolvedConfig, CloudTrailClientConfig } from "../CloudTrailClient"; /** * @internal diff --git a/clients/client-cloudtrail/src/commands/AddTagsCommand.ts b/clients/client-cloudtrail/src/commands/AddTagsCommand.ts index 27e11da3aafca..fd91077e89589 100644 --- a/clients/client-cloudtrail/src/commands/AddTagsCommand.ts +++ b/clients/client-cloudtrail/src/commands/AddTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsRequest, AddTagsResponse } from "../models/models_0"; +import type { AddTagsRequest, AddTagsResponse } from "../models/models_0"; import { AddTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/CancelQueryCommand.ts b/clients/client-cloudtrail/src/commands/CancelQueryCommand.ts index 5432377aa91ff..9133306b3c52b 100644 --- a/clients/client-cloudtrail/src/commands/CancelQueryCommand.ts +++ b/clients/client-cloudtrail/src/commands/CancelQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelQueryRequest, CancelQueryResponse } from "../models/models_0"; +import type { CancelQueryRequest, CancelQueryResponse } from "../models/models_0"; import { CancelQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/CreateChannelCommand.ts b/clients/client-cloudtrail/src/commands/CreateChannelCommand.ts index 9b15d8fc1c575..99ad509f3c1ce 100644 --- a/clients/client-cloudtrail/src/commands/CreateChannelCommand.ts +++ b/clients/client-cloudtrail/src/commands/CreateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; +import type { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; import { CreateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/CreateDashboardCommand.ts b/clients/client-cloudtrail/src/commands/CreateDashboardCommand.ts index 9df8b712ac01c..d14f2acda7657 100644 --- a/clients/client-cloudtrail/src/commands/CreateDashboardCommand.ts +++ b/clients/client-cloudtrail/src/commands/CreateDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDashboardRequest, CreateDashboardResponse } from "../models/models_0"; +import type { CreateDashboardRequest, CreateDashboardResponse } from "../models/models_0"; import { CreateDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/CreateEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/CreateEventDataStoreCommand.ts index d80c234eb96bb..8567fa5bcbd54 100644 --- a/clients/client-cloudtrail/src/commands/CreateEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/CreateEventDataStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventDataStoreRequest, CreateEventDataStoreResponse } from "../models/models_0"; +import type { CreateEventDataStoreRequest, CreateEventDataStoreResponse } from "../models/models_0"; import { CreateEventDataStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/CreateTrailCommand.ts b/clients/client-cloudtrail/src/commands/CreateTrailCommand.ts index 940f9fee1054d..085b49bb5f781 100644 --- a/clients/client-cloudtrail/src/commands/CreateTrailCommand.ts +++ b/clients/client-cloudtrail/src/commands/CreateTrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrailRequest, CreateTrailResponse } from "../models/models_0"; +import type { CreateTrailRequest, CreateTrailResponse } from "../models/models_0"; import { CreateTrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/DeleteChannelCommand.ts b/clients/client-cloudtrail/src/commands/DeleteChannelCommand.ts index 6b3d473cb8e34..287817dafad0c 100644 --- a/clients/client-cloudtrail/src/commands/DeleteChannelCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0"; +import type { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0"; import { DeleteChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/DeleteDashboardCommand.ts b/clients/client-cloudtrail/src/commands/DeleteDashboardCommand.ts index fd5c2200cbd47..4f4a3dedf04f0 100644 --- a/clients/client-cloudtrail/src/commands/DeleteDashboardCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDashboardRequest, DeleteDashboardResponse } from "../models/models_0"; +import type { DeleteDashboardRequest, DeleteDashboardResponse } from "../models/models_0"; import { DeleteDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/DeleteEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/DeleteEventDataStoreCommand.ts index cd0cd8806163e..eb4816f814151 100644 --- a/clients/client-cloudtrail/src/commands/DeleteEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteEventDataStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventDataStoreRequest, DeleteEventDataStoreResponse } from "../models/models_0"; +import type { DeleteEventDataStoreRequest, DeleteEventDataStoreResponse } from "../models/models_0"; import { DeleteEventDataStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-cloudtrail/src/commands/DeleteResourcePolicyCommand.ts index 9d73cf838593d..6ef1239d578ff 100644 --- a/clients/client-cloudtrail/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/DeleteTrailCommand.ts b/clients/client-cloudtrail/src/commands/DeleteTrailCommand.ts index 279da30cb8268..f1b7de7d1418b 100644 --- a/clients/client-cloudtrail/src/commands/DeleteTrailCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeleteTrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrailRequest, DeleteTrailResponse } from "../models/models_0"; +import type { DeleteTrailRequest, DeleteTrailResponse } from "../models/models_0"; import { DeleteTrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/DeregisterOrganizationDelegatedAdminCommand.ts b/clients/client-cloudtrail/src/commands/DeregisterOrganizationDelegatedAdminCommand.ts index 265295af41a9d..769bfacf6a485 100644 --- a/clients/client-cloudtrail/src/commands/DeregisterOrganizationDelegatedAdminCommand.ts +++ b/clients/client-cloudtrail/src/commands/DeregisterOrganizationDelegatedAdminCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterOrganizationDelegatedAdminRequest, DeregisterOrganizationDelegatedAdminResponse, } from "../models/models_0"; diff --git a/clients/client-cloudtrail/src/commands/DescribeQueryCommand.ts b/clients/client-cloudtrail/src/commands/DescribeQueryCommand.ts index 2c91c52af1fd4..4a76964281226 100644 --- a/clients/client-cloudtrail/src/commands/DescribeQueryCommand.ts +++ b/clients/client-cloudtrail/src/commands/DescribeQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeQueryRequest, DescribeQueryResponse } from "../models/models_0"; +import type { DescribeQueryRequest, DescribeQueryResponse } from "../models/models_0"; import { DescribeQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/DescribeTrailsCommand.ts b/clients/client-cloudtrail/src/commands/DescribeTrailsCommand.ts index 6d9189969e2e1..cbba9f16b8251 100644 --- a/clients/client-cloudtrail/src/commands/DescribeTrailsCommand.ts +++ b/clients/client-cloudtrail/src/commands/DescribeTrailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrailsRequest, DescribeTrailsResponse } from "../models/models_0"; +import type { DescribeTrailsRequest, DescribeTrailsResponse } from "../models/models_0"; import { DescribeTrails } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/DisableFederationCommand.ts b/clients/client-cloudtrail/src/commands/DisableFederationCommand.ts index 527529bc4a9b7..99150029e20cc 100644 --- a/clients/client-cloudtrail/src/commands/DisableFederationCommand.ts +++ b/clients/client-cloudtrail/src/commands/DisableFederationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableFederationRequest, DisableFederationResponse } from "../models/models_0"; +import type { DisableFederationRequest, DisableFederationResponse } from "../models/models_0"; import { DisableFederation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/EnableFederationCommand.ts b/clients/client-cloudtrail/src/commands/EnableFederationCommand.ts index 3964efe97875b..e56d8e6831081 100644 --- a/clients/client-cloudtrail/src/commands/EnableFederationCommand.ts +++ b/clients/client-cloudtrail/src/commands/EnableFederationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableFederationRequest, EnableFederationResponse } from "../models/models_0"; +import type { EnableFederationRequest, EnableFederationResponse } from "../models/models_0"; import { EnableFederation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GenerateQueryCommand.ts b/clients/client-cloudtrail/src/commands/GenerateQueryCommand.ts index 4a0e9132cc0a8..27f10d1aab8b4 100644 --- a/clients/client-cloudtrail/src/commands/GenerateQueryCommand.ts +++ b/clients/client-cloudtrail/src/commands/GenerateQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateQueryRequest, GenerateQueryResponse } from "../models/models_0"; +import type { GenerateQueryRequest, GenerateQueryResponse } from "../models/models_0"; import { GenerateQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetChannelCommand.ts b/clients/client-cloudtrail/src/commands/GetChannelCommand.ts index a566c3e37acdf..d468360005d3c 100644 --- a/clients/client-cloudtrail/src/commands/GetChannelCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChannelRequest, GetChannelResponse } from "../models/models_0"; +import type { GetChannelRequest, GetChannelResponse } from "../models/models_0"; import { GetChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetDashboardCommand.ts b/clients/client-cloudtrail/src/commands/GetDashboardCommand.ts index 5dfa3fc5cd7d9..6d06282ae247d 100644 --- a/clients/client-cloudtrail/src/commands/GetDashboardCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDashboardRequest, GetDashboardResponse } from "../models/models_0"; +import type { GetDashboardRequest, GetDashboardResponse } from "../models/models_0"; import { GetDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetEventConfigurationCommand.ts b/clients/client-cloudtrail/src/commands/GetEventConfigurationCommand.ts index 26eff6a7ae6c2..2531ea453b08c 100644 --- a/clients/client-cloudtrail/src/commands/GetEventConfigurationCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetEventConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventConfigurationRequest, GetEventConfigurationResponse } from "../models/models_0"; +import type { GetEventConfigurationRequest, GetEventConfigurationResponse } from "../models/models_0"; import { GetEventConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/GetEventDataStoreCommand.ts index dbc85ae2f06ca..68280e0fd594a 100644 --- a/clients/client-cloudtrail/src/commands/GetEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetEventDataStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventDataStoreRequest, GetEventDataStoreResponse } from "../models/models_0"; +import type { GetEventDataStoreRequest, GetEventDataStoreResponse } from "../models/models_0"; import { GetEventDataStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetEventSelectorsCommand.ts b/clients/client-cloudtrail/src/commands/GetEventSelectorsCommand.ts index c6df6866d41ca..1ef0327a52841 100644 --- a/clients/client-cloudtrail/src/commands/GetEventSelectorsCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetEventSelectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventSelectorsRequest, GetEventSelectorsResponse } from "../models/models_0"; +import type { GetEventSelectorsRequest, GetEventSelectorsResponse } from "../models/models_0"; import { GetEventSelectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetImportCommand.ts b/clients/client-cloudtrail/src/commands/GetImportCommand.ts index e1b8f3bbbc9c9..4ee1ed50bad21 100644 --- a/clients/client-cloudtrail/src/commands/GetImportCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImportRequest, GetImportResponse } from "../models/models_0"; +import type { GetImportRequest, GetImportResponse } from "../models/models_0"; import { GetImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetInsightSelectorsCommand.ts b/clients/client-cloudtrail/src/commands/GetInsightSelectorsCommand.ts index c02a042bc0c97..c9a5dd2ed3cba 100644 --- a/clients/client-cloudtrail/src/commands/GetInsightSelectorsCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetInsightSelectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightSelectorsRequest, GetInsightSelectorsResponse } from "../models/models_0"; +import type { GetInsightSelectorsRequest, GetInsightSelectorsResponse } from "../models/models_0"; import { GetInsightSelectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetQueryResultsCommand.ts b/clients/client-cloudtrail/src/commands/GetQueryResultsCommand.ts index 848309d8d5c1f..50498a1c2d94c 100644 --- a/clients/client-cloudtrail/src/commands/GetQueryResultsCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetQueryResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueryResultsRequest, GetQueryResultsResponse } from "../models/models_0"; +import type { GetQueryResultsRequest, GetQueryResultsResponse } from "../models/models_0"; import { GetQueryResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetResourcePolicyCommand.ts b/clients/client-cloudtrail/src/commands/GetResourcePolicyCommand.ts index e2fa1872bce9c..e11c3aee44bbe 100644 --- a/clients/client-cloudtrail/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetTrailCommand.ts b/clients/client-cloudtrail/src/commands/GetTrailCommand.ts index d08d83610d0f4..bd30c84a37a02 100644 --- a/clients/client-cloudtrail/src/commands/GetTrailCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetTrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrailRequest, GetTrailResponse } from "../models/models_0"; +import type { GetTrailRequest, GetTrailResponse } from "../models/models_0"; import { GetTrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/GetTrailStatusCommand.ts b/clients/client-cloudtrail/src/commands/GetTrailStatusCommand.ts index 8a0a6c428af5c..00d742154d5e6 100644 --- a/clients/client-cloudtrail/src/commands/GetTrailStatusCommand.ts +++ b/clients/client-cloudtrail/src/commands/GetTrailStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrailStatusRequest, GetTrailStatusResponse } from "../models/models_0"; +import type { GetTrailStatusRequest, GetTrailStatusResponse } from "../models/models_0"; import { GetTrailStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListChannelsCommand.ts b/clients/client-cloudtrail/src/commands/ListChannelsCommand.ts index e91d910bb41df..0bf5e906345c7 100644 --- a/clients/client-cloudtrail/src/commands/ListChannelsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; +import type { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListDashboardsCommand.ts b/clients/client-cloudtrail/src/commands/ListDashboardsCommand.ts index a62b961d62849..a8194cc2241f7 100644 --- a/clients/client-cloudtrail/src/commands/ListDashboardsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListDashboardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_0"; +import type { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_0"; import { ListDashboards } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListEventDataStoresCommand.ts b/clients/client-cloudtrail/src/commands/ListEventDataStoresCommand.ts index 7c94432643eba..018e721fedcfd 100644 --- a/clients/client-cloudtrail/src/commands/ListEventDataStoresCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListEventDataStoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventDataStoresRequest, ListEventDataStoresResponse } from "../models/models_0"; +import type { ListEventDataStoresRequest, ListEventDataStoresResponse } from "../models/models_0"; import { ListEventDataStores } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListImportFailuresCommand.ts b/clients/client-cloudtrail/src/commands/ListImportFailuresCommand.ts index 9b34360d19df5..db0cdcd6e743c 100644 --- a/clients/client-cloudtrail/src/commands/ListImportFailuresCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListImportFailuresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImportFailuresRequest, ListImportFailuresResponse } from "../models/models_0"; +import type { ListImportFailuresRequest, ListImportFailuresResponse } from "../models/models_0"; import { ListImportFailures } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListImportsCommand.ts b/clients/client-cloudtrail/src/commands/ListImportsCommand.ts index aee79f8afc859..7ffd216b9d0df 100644 --- a/clients/client-cloudtrail/src/commands/ListImportsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListImportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImportsRequest, ListImportsResponse } from "../models/models_0"; +import type { ListImportsRequest, ListImportsResponse } from "../models/models_0"; import { ListImports } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListInsightsDataCommand.ts b/clients/client-cloudtrail/src/commands/ListInsightsDataCommand.ts index d7836c9439460..f3da6be66eaa8 100644 --- a/clients/client-cloudtrail/src/commands/ListInsightsDataCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListInsightsDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInsightsDataRequest, ListInsightsDataResponse } from "../models/models_0"; +import type { ListInsightsDataRequest, ListInsightsDataResponse } from "../models/models_0"; import { ListInsightsData } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListInsightsMetricDataCommand.ts b/clients/client-cloudtrail/src/commands/ListInsightsMetricDataCommand.ts index 0ec1c7042e7a2..a5fd37a4c2346 100644 --- a/clients/client-cloudtrail/src/commands/ListInsightsMetricDataCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListInsightsMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInsightsMetricDataRequest, ListInsightsMetricDataResponse } from "../models/models_0"; +import type { ListInsightsMetricDataRequest, ListInsightsMetricDataResponse } from "../models/models_0"; import { ListInsightsMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListPublicKeysCommand.ts b/clients/client-cloudtrail/src/commands/ListPublicKeysCommand.ts index 042a38f25e7b4..f726125e3236b 100644 --- a/clients/client-cloudtrail/src/commands/ListPublicKeysCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListPublicKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPublicKeysRequest, ListPublicKeysResponse } from "../models/models_0"; +import type { ListPublicKeysRequest, ListPublicKeysResponse } from "../models/models_0"; import { ListPublicKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListQueriesCommand.ts b/clients/client-cloudtrail/src/commands/ListQueriesCommand.ts index 165d62fc095df..ecaba2f046924 100644 --- a/clients/client-cloudtrail/src/commands/ListQueriesCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListQueriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueriesRequest, ListQueriesResponse } from "../models/models_0"; +import type { ListQueriesRequest, ListQueriesResponse } from "../models/models_0"; import { ListQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListTagsCommand.ts b/clients/client-cloudtrail/src/commands/ListTagsCommand.ts index 5343db3e0c97b..48284d5d9f113 100644 --- a/clients/client-cloudtrail/src/commands/ListTagsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsRequest, ListTagsResponse } from "../models/models_0"; +import type { ListTagsRequest, ListTagsResponse } from "../models/models_0"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/ListTrailsCommand.ts b/clients/client-cloudtrail/src/commands/ListTrailsCommand.ts index e1d299415a1e8..55a59a742aa6f 100644 --- a/clients/client-cloudtrail/src/commands/ListTrailsCommand.ts +++ b/clients/client-cloudtrail/src/commands/ListTrailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrailsRequest, ListTrailsResponse } from "../models/models_0"; +import type { ListTrailsRequest, ListTrailsResponse } from "../models/models_0"; import { ListTrails } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/LookupEventsCommand.ts b/clients/client-cloudtrail/src/commands/LookupEventsCommand.ts index ae7fa5d92aa39..60b2d70c8d62c 100644 --- a/clients/client-cloudtrail/src/commands/LookupEventsCommand.ts +++ b/clients/client-cloudtrail/src/commands/LookupEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookupEventsRequest, LookupEventsResponse } from "../models/models_0"; +import type { LookupEventsRequest, LookupEventsResponse } from "../models/models_0"; import { LookupEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/PutEventConfigurationCommand.ts b/clients/client-cloudtrail/src/commands/PutEventConfigurationCommand.ts index 45f0933315ce1..e3afc85a5e45c 100644 --- a/clients/client-cloudtrail/src/commands/PutEventConfigurationCommand.ts +++ b/clients/client-cloudtrail/src/commands/PutEventConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEventConfigurationRequest, PutEventConfigurationResponse } from "../models/models_0"; +import type { PutEventConfigurationRequest, PutEventConfigurationResponse } from "../models/models_0"; import { PutEventConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/PutEventSelectorsCommand.ts b/clients/client-cloudtrail/src/commands/PutEventSelectorsCommand.ts index 2ba24136495b3..cb0f9f0afecd5 100644 --- a/clients/client-cloudtrail/src/commands/PutEventSelectorsCommand.ts +++ b/clients/client-cloudtrail/src/commands/PutEventSelectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEventSelectorsRequest, PutEventSelectorsResponse } from "../models/models_0"; +import type { PutEventSelectorsRequest, PutEventSelectorsResponse } from "../models/models_0"; import { PutEventSelectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/PutInsightSelectorsCommand.ts b/clients/client-cloudtrail/src/commands/PutInsightSelectorsCommand.ts index e870caffa84e2..22a2d241b0848 100644 --- a/clients/client-cloudtrail/src/commands/PutInsightSelectorsCommand.ts +++ b/clients/client-cloudtrail/src/commands/PutInsightSelectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutInsightSelectorsRequest, PutInsightSelectorsResponse } from "../models/models_0"; +import type { PutInsightSelectorsRequest, PutInsightSelectorsResponse } from "../models/models_0"; import { PutInsightSelectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/PutResourcePolicyCommand.ts b/clients/client-cloudtrail/src/commands/PutResourcePolicyCommand.ts index 4a2072e436a33..eccf9debabaef 100644 --- a/clients/client-cloudtrail/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-cloudtrail/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/RegisterOrganizationDelegatedAdminCommand.ts b/clients/client-cloudtrail/src/commands/RegisterOrganizationDelegatedAdminCommand.ts index 7fa4be096d842..79d1dcf1c48e1 100644 --- a/clients/client-cloudtrail/src/commands/RegisterOrganizationDelegatedAdminCommand.ts +++ b/clients/client-cloudtrail/src/commands/RegisterOrganizationDelegatedAdminCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RegisterOrganizationDelegatedAdminRequest, RegisterOrganizationDelegatedAdminResponse, } from "../models/models_0"; diff --git a/clients/client-cloudtrail/src/commands/RemoveTagsCommand.ts b/clients/client-cloudtrail/src/commands/RemoveTagsCommand.ts index c9da94f2e43a5..8dce4d7d4c1e5 100644 --- a/clients/client-cloudtrail/src/commands/RemoveTagsCommand.ts +++ b/clients/client-cloudtrail/src/commands/RemoveTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsRequest, RemoveTagsResponse } from "../models/models_0"; +import type { RemoveTagsRequest, RemoveTagsResponse } from "../models/models_0"; import { RemoveTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/RestoreEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/RestoreEventDataStoreCommand.ts index a972835339396..3689046d8be99 100644 --- a/clients/client-cloudtrail/src/commands/RestoreEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/RestoreEventDataStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreEventDataStoreRequest, RestoreEventDataStoreResponse } from "../models/models_0"; +import type { RestoreEventDataStoreRequest, RestoreEventDataStoreResponse } from "../models/models_0"; import { RestoreEventDataStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/SearchSampleQueriesCommand.ts b/clients/client-cloudtrail/src/commands/SearchSampleQueriesCommand.ts index a12b2e424d137..c018842e0667c 100644 --- a/clients/client-cloudtrail/src/commands/SearchSampleQueriesCommand.ts +++ b/clients/client-cloudtrail/src/commands/SearchSampleQueriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchSampleQueriesRequest, SearchSampleQueriesResponse } from "../models/models_0"; +import type { SearchSampleQueriesRequest, SearchSampleQueriesResponse } from "../models/models_0"; import { SearchSampleQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/StartDashboardRefreshCommand.ts b/clients/client-cloudtrail/src/commands/StartDashboardRefreshCommand.ts index 146998c151f21..f68b9f963ef43 100644 --- a/clients/client-cloudtrail/src/commands/StartDashboardRefreshCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartDashboardRefreshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDashboardRefreshRequest, StartDashboardRefreshResponse } from "../models/models_0"; +import type { StartDashboardRefreshRequest, StartDashboardRefreshResponse } from "../models/models_0"; import { StartDashboardRefresh } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/StartEventDataStoreIngestionCommand.ts b/clients/client-cloudtrail/src/commands/StartEventDataStoreIngestionCommand.ts index 936f55b124bd6..30b3f32bcb6eb 100644 --- a/clients/client-cloudtrail/src/commands/StartEventDataStoreIngestionCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartEventDataStoreIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartEventDataStoreIngestionRequest, StartEventDataStoreIngestionResponse } from "../models/models_0"; +import type { StartEventDataStoreIngestionRequest, StartEventDataStoreIngestionResponse } from "../models/models_0"; import { StartEventDataStoreIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/StartImportCommand.ts b/clients/client-cloudtrail/src/commands/StartImportCommand.ts index 4a268c92c717e..15b978e55cce5 100644 --- a/clients/client-cloudtrail/src/commands/StartImportCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartImportRequest, StartImportResponse } from "../models/models_0"; +import type { StartImportRequest, StartImportResponse } from "../models/models_0"; import { StartImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/StartLoggingCommand.ts b/clients/client-cloudtrail/src/commands/StartLoggingCommand.ts index e66a77e6785cb..13b717aec17ba 100644 --- a/clients/client-cloudtrail/src/commands/StartLoggingCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartLoggingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartLoggingRequest, StartLoggingResponse } from "../models/models_0"; +import type { StartLoggingRequest, StartLoggingResponse } from "../models/models_0"; import { StartLogging } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/StartQueryCommand.ts b/clients/client-cloudtrail/src/commands/StartQueryCommand.ts index 09ab0f3048afd..e47f56175cde1 100644 --- a/clients/client-cloudtrail/src/commands/StartQueryCommand.ts +++ b/clients/client-cloudtrail/src/commands/StartQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartQueryRequest, StartQueryResponse } from "../models/models_0"; +import type { StartQueryRequest, StartQueryResponse } from "../models/models_0"; import { StartQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/StopEventDataStoreIngestionCommand.ts b/clients/client-cloudtrail/src/commands/StopEventDataStoreIngestionCommand.ts index 68bd112169b8c..6c56d88feb4df 100644 --- a/clients/client-cloudtrail/src/commands/StopEventDataStoreIngestionCommand.ts +++ b/clients/client-cloudtrail/src/commands/StopEventDataStoreIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopEventDataStoreIngestionRequest, StopEventDataStoreIngestionResponse } from "../models/models_0"; +import type { StopEventDataStoreIngestionRequest, StopEventDataStoreIngestionResponse } from "../models/models_0"; import { StopEventDataStoreIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/StopImportCommand.ts b/clients/client-cloudtrail/src/commands/StopImportCommand.ts index 5e955c6f0ac03..d7685ae852367 100644 --- a/clients/client-cloudtrail/src/commands/StopImportCommand.ts +++ b/clients/client-cloudtrail/src/commands/StopImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopImportRequest, StopImportResponse } from "../models/models_0"; +import type { StopImportRequest, StopImportResponse } from "../models/models_0"; import { StopImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/StopLoggingCommand.ts b/clients/client-cloudtrail/src/commands/StopLoggingCommand.ts index ee8206cce73b2..ef587d4116169 100644 --- a/clients/client-cloudtrail/src/commands/StopLoggingCommand.ts +++ b/clients/client-cloudtrail/src/commands/StopLoggingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopLoggingRequest, StopLoggingResponse } from "../models/models_0"; +import type { StopLoggingRequest, StopLoggingResponse } from "../models/models_0"; import { StopLogging } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/UpdateChannelCommand.ts b/clients/client-cloudtrail/src/commands/UpdateChannelCommand.ts index 0f7d754a6d051..db554250b692d 100644 --- a/clients/client-cloudtrail/src/commands/UpdateChannelCommand.ts +++ b/clients/client-cloudtrail/src/commands/UpdateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; +import type { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; import { UpdateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/UpdateDashboardCommand.ts b/clients/client-cloudtrail/src/commands/UpdateDashboardCommand.ts index a8d9ffa48cf7f..1c0afc766c629 100644 --- a/clients/client-cloudtrail/src/commands/UpdateDashboardCommand.ts +++ b/clients/client-cloudtrail/src/commands/UpdateDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDashboardRequest, UpdateDashboardResponse } from "../models/models_0"; +import type { UpdateDashboardRequest, UpdateDashboardResponse } from "../models/models_0"; import { UpdateDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/UpdateEventDataStoreCommand.ts b/clients/client-cloudtrail/src/commands/UpdateEventDataStoreCommand.ts index 4b949d5ac6067..c242a79e6b1a8 100644 --- a/clients/client-cloudtrail/src/commands/UpdateEventDataStoreCommand.ts +++ b/clients/client-cloudtrail/src/commands/UpdateEventDataStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEventDataStoreRequest, UpdateEventDataStoreResponse } from "../models/models_0"; +import type { UpdateEventDataStoreRequest, UpdateEventDataStoreResponse } from "../models/models_0"; import { UpdateEventDataStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/commands/UpdateTrailCommand.ts b/clients/client-cloudtrail/src/commands/UpdateTrailCommand.ts index aa6014000901a..140bce2bcdd65 100644 --- a/clients/client-cloudtrail/src/commands/UpdateTrailCommand.ts +++ b/clients/client-cloudtrail/src/commands/UpdateTrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; +import type { CloudTrailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudTrailClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrailRequest, UpdateTrailResponse } from "../models/models_0"; +import type { UpdateTrailRequest, UpdateTrailResponse } from "../models/models_0"; import { UpdateTrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudtrail/src/endpoint/EndpointParameters.ts b/clients/client-cloudtrail/src/endpoint/EndpointParameters.ts index 2c0628574c518..cc3925f1cff84 100644 --- a/clients/client-cloudtrail/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudtrail/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudtrail/src/endpoint/endpointResolver.ts b/clients/client-cloudtrail/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudtrail/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudtrail/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudtrail/src/extensionConfiguration.ts b/clients/client-cloudtrail/src/extensionConfiguration.ts index 1585356b297e0..2da71e8f23a2a 100644 --- a/clients/client-cloudtrail/src/extensionConfiguration.ts +++ b/clients/client-cloudtrail/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudtrail/src/models/CloudTrailServiceException.ts b/clients/client-cloudtrail/src/models/CloudTrailServiceException.ts index dd08540a96a7c..9998ed00fcdad 100644 --- a/clients/client-cloudtrail/src/models/CloudTrailServiceException.ts +++ b/clients/client-cloudtrail/src/models/CloudTrailServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudtrail/src/models/errors.ts b/clients/client-cloudtrail/src/models/errors.ts index bd20a6ac89573..ac34c48756b1c 100644 --- a/clients/client-cloudtrail/src/models/errors.ts +++ b/clients/client-cloudtrail/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudTrailServiceException as __BaseException } from "./CloudTrailServiceException"; diff --git a/clients/client-cloudtrail/src/pagination/GetQueryResultsPaginator.ts b/clients/client-cloudtrail/src/pagination/GetQueryResultsPaginator.ts index e8ea81bb59a29..dc155e46d7383 100644 --- a/clients/client-cloudtrail/src/pagination/GetQueryResultsPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/GetQueryResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { diff --git a/clients/client-cloudtrail/src/pagination/Interfaces.ts b/clients/client-cloudtrail/src/pagination/Interfaces.ts index 6ff1e06c19b1e..e92584c8f7b21 100644 --- a/clients/client-cloudtrail/src/pagination/Interfaces.ts +++ b/clients/client-cloudtrail/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; diff --git a/clients/client-cloudtrail/src/pagination/ListChannelsPaginator.ts b/clients/client-cloudtrail/src/pagination/ListChannelsPaginator.ts index ccfaabe4532ab..7e8027fa85dc7 100644 --- a/clients/client-cloudtrail/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { diff --git a/clients/client-cloudtrail/src/pagination/ListEventDataStoresPaginator.ts b/clients/client-cloudtrail/src/pagination/ListEventDataStoresPaginator.ts index 00c17ad55e9d2..4aa1a55eecd64 100644 --- a/clients/client-cloudtrail/src/pagination/ListEventDataStoresPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListEventDataStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { diff --git a/clients/client-cloudtrail/src/pagination/ListImportFailuresPaginator.ts b/clients/client-cloudtrail/src/pagination/ListImportFailuresPaginator.ts index 88e7d7263f4c0..1004ea41faad3 100644 --- a/clients/client-cloudtrail/src/pagination/ListImportFailuresPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListImportFailuresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { diff --git a/clients/client-cloudtrail/src/pagination/ListImportsPaginator.ts b/clients/client-cloudtrail/src/pagination/ListImportsPaginator.ts index 4e08d0c018748..a07a37682e35b 100644 --- a/clients/client-cloudtrail/src/pagination/ListImportsPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListImportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { ListImportsCommand, ListImportsCommandInput, ListImportsCommandOutput } from "../commands/ListImportsCommand"; diff --git a/clients/client-cloudtrail/src/pagination/ListInsightsDataPaginator.ts b/clients/client-cloudtrail/src/pagination/ListInsightsDataPaginator.ts index 44a1795dae441..50006de05dcb7 100644 --- a/clients/client-cloudtrail/src/pagination/ListInsightsDataPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListInsightsDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { diff --git a/clients/client-cloudtrail/src/pagination/ListInsightsMetricDataPaginator.ts b/clients/client-cloudtrail/src/pagination/ListInsightsMetricDataPaginator.ts index b67f491bf8cc2..d426c96b40b93 100644 --- a/clients/client-cloudtrail/src/pagination/ListInsightsMetricDataPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListInsightsMetricDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { diff --git a/clients/client-cloudtrail/src/pagination/ListPublicKeysPaginator.ts b/clients/client-cloudtrail/src/pagination/ListPublicKeysPaginator.ts index 37d4498fe898d..2bab71d2ed352 100644 --- a/clients/client-cloudtrail/src/pagination/ListPublicKeysPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListPublicKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { diff --git a/clients/client-cloudtrail/src/pagination/ListQueriesPaginator.ts b/clients/client-cloudtrail/src/pagination/ListQueriesPaginator.ts index 5217ade3aa1a9..7c1a4d71937fc 100644 --- a/clients/client-cloudtrail/src/pagination/ListQueriesPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListQueriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { ListQueriesCommand, ListQueriesCommandInput, ListQueriesCommandOutput } from "../commands/ListQueriesCommand"; diff --git a/clients/client-cloudtrail/src/pagination/ListTagsPaginator.ts b/clients/client-cloudtrail/src/pagination/ListTagsPaginator.ts index f34c8c995afec..c8abc172760e0 100644 --- a/clients/client-cloudtrail/src/pagination/ListTagsPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { ListTagsCommand, ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand"; diff --git a/clients/client-cloudtrail/src/pagination/ListTrailsPaginator.ts b/clients/client-cloudtrail/src/pagination/ListTrailsPaginator.ts index ea7284e820e30..bb95dd95a095f 100644 --- a/clients/client-cloudtrail/src/pagination/ListTrailsPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/ListTrailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { ListTrailsCommand, ListTrailsCommandInput, ListTrailsCommandOutput } from "../commands/ListTrailsCommand"; diff --git a/clients/client-cloudtrail/src/pagination/LookupEventsPaginator.ts b/clients/client-cloudtrail/src/pagination/LookupEventsPaginator.ts index 317f834e91387..04f83c6ca0ee6 100644 --- a/clients/client-cloudtrail/src/pagination/LookupEventsPaginator.ts +++ b/clients/client-cloudtrail/src/pagination/LookupEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudTrailClient } from "../CloudTrailClient"; import { diff --git a/clients/client-cloudtrail/src/runtimeConfig.browser.ts b/clients/client-cloudtrail/src/runtimeConfig.browser.ts index c3d0f5e3c57a3..b35a61fb00990 100644 --- a/clients/client-cloudtrail/src/runtimeConfig.browser.ts +++ b/clients/client-cloudtrail/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudTrailClientConfig } from "./CloudTrailClient"; + +import type { CloudTrailClientConfig } from "./CloudTrailClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudtrail/src/runtimeConfig.native.ts b/clients/client-cloudtrail/src/runtimeConfig.native.ts index 3da752416d012..156f4be99523e 100644 --- a/clients/client-cloudtrail/src/runtimeConfig.native.ts +++ b/clients/client-cloudtrail/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudTrailClientConfig } from "./CloudTrailClient"; +import type { CloudTrailClientConfig } from "./CloudTrailClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudtrail/src/runtimeConfig.shared.ts b/clients/client-cloudtrail/src/runtimeConfig.shared.ts index 7d99fd29ff96e..b774d13f9dbf1 100644 --- a/clients/client-cloudtrail/src/runtimeConfig.shared.ts +++ b/clients/client-cloudtrail/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudTrailHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudTrailClientConfig } from "./CloudTrailClient"; +import type { CloudTrailClientConfig } from "./CloudTrailClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudtrail/src/runtimeConfig.ts b/clients/client-cloudtrail/src/runtimeConfig.ts index 6ba154585955b..1a98d9846f26c 100644 --- a/clients/client-cloudtrail/src/runtimeConfig.ts +++ b/clients/client-cloudtrail/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudTrailClientConfig } from "./CloudTrailClient"; + +import type { CloudTrailClientConfig } from "./CloudTrailClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudtrail/src/runtimeExtensions.ts b/clients/client-cloudtrail/src/runtimeExtensions.ts index 2b93bd2a98eb1..d4757b53afcca 100644 --- a/clients/client-cloudtrail/src/runtimeExtensions.ts +++ b/clients/client-cloudtrail/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudTrailExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudTrailExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudtrail/src/schemas/schemas_0.ts b/clients/client-cloudtrail/src/schemas/schemas_0.ts index 2ba18b89d7bd0..1653d6c060ba5 100644 --- a/clients/client-cloudtrail/src/schemas/schemas_0.ts +++ b/clients/client-cloudtrail/src/schemas/schemas_0.ts @@ -507,7 +507,7 @@ const n0 = "com.amazonaws.cloudtrail"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cloudwatch-events/package.json b/clients/client-cloudwatch-events/package.json index 5301233a606fd..b6934f93da002 100644 --- a/clients/client-cloudwatch-events/package.json +++ b/clients/client-cloudwatch-events/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudwatch-events/src/CloudWatchEvents.ts b/clients/client-cloudwatch-events/src/CloudWatchEvents.ts index 2a0b09b0793f8..a5f44e599c10b 100644 --- a/clients/client-cloudwatch-events/src/CloudWatchEvents.ts +++ b/clients/client-cloudwatch-events/src/CloudWatchEvents.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudWatchEventsClient, CloudWatchEventsClientConfig } from "./CloudWatchEventsClient"; +import { CloudWatchEventsClient } from "./CloudWatchEventsClient"; import { ActivateEventSourceCommand, ActivateEventSourceCommandInput, diff --git a/clients/client-cloudwatch-events/src/CloudWatchEventsClient.ts b/clients/client-cloudwatch-events/src/CloudWatchEventsClient.ts index 324c459c8d821..3021f7237e057 100644 --- a/clients/client-cloudwatch-events/src/CloudWatchEventsClient.ts +++ b/clients/client-cloudwatch-events/src/CloudWatchEventsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudWatchEventsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -163,7 +172,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudwatch-events/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudwatch-events/src/auth/httpAuthExtensionConfiguration.ts index b8189336a8978..310f71ce6445b 100644 --- a/clients/client-cloudwatch-events/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudwatch-events/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudWatchEventsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudWatchEventsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudwatch-events/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudwatch-events/src/auth/httpAuthSchemeProvider.ts index 198be2107cf93..ae769512dece4 100644 --- a/clients/client-cloudwatch-events/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudwatch-events/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudWatchEventsClientConfig, CloudWatchEventsClientResolvedConfig } from "../CloudWatchEventsClient"; +import { type CloudWatchEventsClientResolvedConfig, CloudWatchEventsClientConfig } from "../CloudWatchEventsClient"; /** * @internal diff --git a/clients/client-cloudwatch-events/src/commands/ActivateEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/ActivateEventSourceCommand.ts index 3cff6baddfd23..9f5325f1de545 100644 --- a/clients/client-cloudwatch-events/src/commands/ActivateEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ActivateEventSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateEventSourceRequest } from "../models/models_0"; +import type { ActivateEventSourceRequest } from "../models/models_0"; import { ActivateEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/CancelReplayCommand.ts b/clients/client-cloudwatch-events/src/commands/CancelReplayCommand.ts index ae6f9e7d51071..f9d9fe73d5c07 100644 --- a/clients/client-cloudwatch-events/src/commands/CancelReplayCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CancelReplayCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelReplayRequest, CancelReplayResponse } from "../models/models_0"; +import type { CancelReplayRequest, CancelReplayResponse } from "../models/models_0"; import { CancelReplay } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/CreateApiDestinationCommand.ts b/clients/client-cloudwatch-events/src/commands/CreateApiDestinationCommand.ts index 8b07e38856f66..db7ae823cf709 100644 --- a/clients/client-cloudwatch-events/src/commands/CreateApiDestinationCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreateApiDestinationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApiDestinationRequest, CreateApiDestinationResponse } from "../models/models_0"; +import type { CreateApiDestinationRequest, CreateApiDestinationResponse } from "../models/models_0"; import { CreateApiDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/CreateArchiveCommand.ts b/clients/client-cloudwatch-events/src/commands/CreateArchiveCommand.ts index 7dc5b85f9c6ef..136b626eb4c00 100644 --- a/clients/client-cloudwatch-events/src/commands/CreateArchiveCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreateArchiveCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateArchiveRequest, CreateArchiveResponse } from "../models/models_0"; +import type { CreateArchiveRequest, CreateArchiveResponse } from "../models/models_0"; import { CreateArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/CreateConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/CreateConnectionCommand.ts index 15463ad3fec62..e1f031bc5b477 100644 --- a/clients/client-cloudwatch-events/src/commands/CreateConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreateConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; +import type { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; import { CreateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/CreateEventBusCommand.ts b/clients/client-cloudwatch-events/src/commands/CreateEventBusCommand.ts index 6cabb07ae6d81..24f663013fa18 100644 --- a/clients/client-cloudwatch-events/src/commands/CreateEventBusCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreateEventBusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventBusRequest, CreateEventBusResponse } from "../models/models_0"; +import type { CreateEventBusRequest, CreateEventBusResponse } from "../models/models_0"; import { CreateEventBus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/CreatePartnerEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/CreatePartnerEventSourceCommand.ts index 0af3ce57e55ff..4c3f968a4aa0d 100644 --- a/clients/client-cloudwatch-events/src/commands/CreatePartnerEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/CreatePartnerEventSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePartnerEventSourceRequest, CreatePartnerEventSourceResponse } from "../models/models_0"; +import type { CreatePartnerEventSourceRequest, CreatePartnerEventSourceResponse } from "../models/models_0"; import { CreatePartnerEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DeactivateEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/DeactivateEventSourceCommand.ts index 99f08753bd00c..abd3dc750e880 100644 --- a/clients/client-cloudwatch-events/src/commands/DeactivateEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeactivateEventSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeactivateEventSourceRequest } from "../models/models_0"; +import type { DeactivateEventSourceRequest } from "../models/models_0"; import { DeactivateEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DeauthorizeConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/DeauthorizeConnectionCommand.ts index 2e426786a354d..4be8ded4e4397 100644 --- a/clients/client-cloudwatch-events/src/commands/DeauthorizeConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeauthorizeConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeauthorizeConnectionRequest, DeauthorizeConnectionResponse } from "../models/models_0"; +import type { DeauthorizeConnectionRequest, DeauthorizeConnectionResponse } from "../models/models_0"; import { DeauthorizeConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DeleteApiDestinationCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteApiDestinationCommand.ts index 881dc9f6222d0..92e57cfaafdaf 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteApiDestinationCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteApiDestinationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApiDestinationRequest, DeleteApiDestinationResponse } from "../models/models_0"; +import type { DeleteApiDestinationRequest, DeleteApiDestinationResponse } from "../models/models_0"; import { DeleteApiDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DeleteArchiveCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteArchiveCommand.ts index 0709c9257a9ae..b0571248d7db3 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteArchiveCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteArchiveCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteArchiveRequest, DeleteArchiveResponse } from "../models/models_0"; +import type { DeleteArchiveRequest, DeleteArchiveResponse } from "../models/models_0"; import { DeleteArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DeleteConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteConnectionCommand.ts index fdb2fe3ad119c..d88264380089f 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0"; +import type { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DeleteEventBusCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteEventBusCommand.ts index 36e61ed833894..e3e73ae54cbe1 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteEventBusCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteEventBusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventBusRequest } from "../models/models_0"; +import type { DeleteEventBusRequest } from "../models/models_0"; import { DeleteEventBus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DeletePartnerEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/DeletePartnerEventSourceCommand.ts index eeba4b95c66f1..7e5f1047311bf 100644 --- a/clients/client-cloudwatch-events/src/commands/DeletePartnerEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeletePartnerEventSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePartnerEventSourceRequest } from "../models/models_0"; +import type { DeletePartnerEventSourceRequest } from "../models/models_0"; import { DeletePartnerEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DeleteRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/DeleteRuleCommand.ts index 70d82578d5144..29503cb09d1fd 100644 --- a/clients/client-cloudwatch-events/src/commands/DeleteRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DeleteRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleRequest } from "../models/models_0"; +import type { DeleteRuleRequest } from "../models/models_0"; import { DeleteRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DescribeApiDestinationCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeApiDestinationCommand.ts index ef055bf93aaa5..b392294ee03f6 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeApiDestinationCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeApiDestinationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeApiDestinationRequest, DescribeApiDestinationResponse } from "../models/models_0"; +import type { DescribeApiDestinationRequest, DescribeApiDestinationResponse } from "../models/models_0"; import { DescribeApiDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DescribeArchiveCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeArchiveCommand.ts index 6a04e1a06c2c7..7231f7194c072 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeArchiveCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeArchiveCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeArchiveRequest, DescribeArchiveResponse } from "../models/models_0"; +import type { DescribeArchiveRequest, DescribeArchiveResponse } from "../models/models_0"; import { DescribeArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DescribeConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeConnectionCommand.ts index cc76896af9e0a..97f54b67251a3 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectionRequest, DescribeConnectionResponse } from "../models/models_0"; +import type { DescribeConnectionRequest, DescribeConnectionResponse } from "../models/models_0"; import { DescribeConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DescribeEventBusCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeEventBusCommand.ts index 5c502b786e040..88a4d5e797ea7 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeEventBusCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeEventBusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventBusRequest, DescribeEventBusResponse } from "../models/models_0"; +import type { DescribeEventBusRequest, DescribeEventBusResponse } from "../models/models_0"; import { DescribeEventBus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DescribeEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeEventSourceCommand.ts index 755f4b50f49db..f8882623a9520 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeEventSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventSourceRequest, DescribeEventSourceResponse } from "../models/models_0"; +import type { DescribeEventSourceRequest, DescribeEventSourceResponse } from "../models/models_0"; import { DescribeEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DescribePartnerEventSourceCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribePartnerEventSourceCommand.ts index c7a3a51202de7..215b4fe917419 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribePartnerEventSourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribePartnerEventSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePartnerEventSourceRequest, DescribePartnerEventSourceResponse } from "../models/models_0"; +import type { DescribePartnerEventSourceRequest, DescribePartnerEventSourceResponse } from "../models/models_0"; import { DescribePartnerEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DescribeReplayCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeReplayCommand.ts index f4a0ad21bacdf..523d195ee603d 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeReplayCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeReplayCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReplayRequest, DescribeReplayResponse } from "../models/models_0"; +import type { DescribeReplayRequest, DescribeReplayResponse } from "../models/models_0"; import { DescribeReplay } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DescribeRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/DescribeRuleCommand.ts index 93bf2c9727135..5a7a7d57d6c9d 100644 --- a/clients/client-cloudwatch-events/src/commands/DescribeRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DescribeRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRuleRequest, DescribeRuleResponse } from "../models/models_0"; +import type { DescribeRuleRequest, DescribeRuleResponse } from "../models/models_0"; import { DescribeRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/DisableRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/DisableRuleCommand.ts index d8570a9b126d9..a87e9cc34b6d7 100644 --- a/clients/client-cloudwatch-events/src/commands/DisableRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/DisableRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableRuleRequest } from "../models/models_0"; +import type { DisableRuleRequest } from "../models/models_0"; import { DisableRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/EnableRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/EnableRuleCommand.ts index b0f99fd484b5c..809aac101f4ba 100644 --- a/clients/client-cloudwatch-events/src/commands/EnableRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/EnableRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableRuleRequest } from "../models/models_0"; +import type { EnableRuleRequest } from "../models/models_0"; import { EnableRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListApiDestinationsCommand.ts b/clients/client-cloudwatch-events/src/commands/ListApiDestinationsCommand.ts index 97b997d2a8ac6..5fa33f1b0c494 100644 --- a/clients/client-cloudwatch-events/src/commands/ListApiDestinationsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListApiDestinationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApiDestinationsRequest, ListApiDestinationsResponse } from "../models/models_0"; +import type { ListApiDestinationsRequest, ListApiDestinationsResponse } from "../models/models_0"; import { ListApiDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListArchivesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListArchivesCommand.ts index 2fa6bae2f2f9a..4ea6c15f613bb 100644 --- a/clients/client-cloudwatch-events/src/commands/ListArchivesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListArchivesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListArchivesRequest, ListArchivesResponse } from "../models/models_0"; +import type { ListArchivesRequest, ListArchivesResponse } from "../models/models_0"; import { ListArchives } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListConnectionsCommand.ts b/clients/client-cloudwatch-events/src/commands/ListConnectionsCommand.ts index dd8675501b145..2b05143bea589 100644 --- a/clients/client-cloudwatch-events/src/commands/ListConnectionsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListConnectionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0"; +import type { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0"; import { ListConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListEventBusesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListEventBusesCommand.ts index bcca0b5939ac4..295247d6f34cc 100644 --- a/clients/client-cloudwatch-events/src/commands/ListEventBusesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListEventBusesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventBusesRequest, ListEventBusesResponse } from "../models/models_0"; +import type { ListEventBusesRequest, ListEventBusesResponse } from "../models/models_0"; import { ListEventBuses } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListEventSourcesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListEventSourcesCommand.ts index 86a94cbce9bcf..291dab067b083 100644 --- a/clients/client-cloudwatch-events/src/commands/ListEventSourcesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListEventSourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventSourcesRequest, ListEventSourcesResponse } from "../models/models_0"; +import type { ListEventSourcesRequest, ListEventSourcesResponse } from "../models/models_0"; import { ListEventSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourceAccountsCommand.ts b/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourceAccountsCommand.ts index 5f960389fb1cc..be656fb702752 100644 --- a/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourceAccountsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourceAccountsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPartnerEventSourceAccountsRequest, ListPartnerEventSourceAccountsResponse } from "../models/models_0"; +import type { ListPartnerEventSourceAccountsRequest, ListPartnerEventSourceAccountsResponse } from "../models/models_0"; import { ListPartnerEventSourceAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourcesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourcesCommand.ts index 478f04d7aa0d6..aa6cb355bac66 100644 --- a/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourcesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListPartnerEventSourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPartnerEventSourcesRequest, ListPartnerEventSourcesResponse } from "../models/models_0"; +import type { ListPartnerEventSourcesRequest, ListPartnerEventSourcesResponse } from "../models/models_0"; import { ListPartnerEventSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListReplaysCommand.ts b/clients/client-cloudwatch-events/src/commands/ListReplaysCommand.ts index adde9cc303fe0..2817b3f5de4c2 100644 --- a/clients/client-cloudwatch-events/src/commands/ListReplaysCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListReplaysCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReplaysRequest, ListReplaysResponse } from "../models/models_0"; +import type { ListReplaysRequest, ListReplaysResponse } from "../models/models_0"; import { ListReplays } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListRuleNamesByTargetCommand.ts b/clients/client-cloudwatch-events/src/commands/ListRuleNamesByTargetCommand.ts index 4afa10c738109..6075a99e47f71 100644 --- a/clients/client-cloudwatch-events/src/commands/ListRuleNamesByTargetCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListRuleNamesByTargetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRuleNamesByTargetRequest, ListRuleNamesByTargetResponse } from "../models/models_0"; +import type { ListRuleNamesByTargetRequest, ListRuleNamesByTargetResponse } from "../models/models_0"; import { ListRuleNamesByTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListRulesCommand.ts b/clients/client-cloudwatch-events/src/commands/ListRulesCommand.ts index 2d8e4f70d8c96..8fde8e9a4dce9 100644 --- a/clients/client-cloudwatch-events/src/commands/ListRulesCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListRulesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRulesRequest, ListRulesResponse } from "../models/models_0"; +import type { ListRulesRequest, ListRulesResponse } from "../models/models_0"; import { ListRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudwatch-events/src/commands/ListTagsForResourceCommand.ts index 7bbb6da501388..75ebfe2f89080 100644 --- a/clients/client-cloudwatch-events/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/ListTargetsByRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/ListTargetsByRuleCommand.ts index 57119c50f3334..b04bfc24c6d8b 100644 --- a/clients/client-cloudwatch-events/src/commands/ListTargetsByRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/ListTargetsByRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTargetsByRuleRequest, ListTargetsByRuleResponse } from "../models/models_0"; +import type { ListTargetsByRuleRequest, ListTargetsByRuleResponse } from "../models/models_0"; import { ListTargetsByRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/PutEventsCommand.ts b/clients/client-cloudwatch-events/src/commands/PutEventsCommand.ts index b969bb31be0c4..15412b8746c5f 100644 --- a/clients/client-cloudwatch-events/src/commands/PutEventsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEventsRequest, PutEventsResponse } from "../models/models_0"; +import type { PutEventsRequest, PutEventsResponse } from "../models/models_0"; import { PutEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/PutPartnerEventsCommand.ts b/clients/client-cloudwatch-events/src/commands/PutPartnerEventsCommand.ts index fb3aaedb071d0..c43613a5af21f 100644 --- a/clients/client-cloudwatch-events/src/commands/PutPartnerEventsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutPartnerEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPartnerEventsRequest, PutPartnerEventsResponse } from "../models/models_0"; +import type { PutPartnerEventsRequest, PutPartnerEventsResponse } from "../models/models_0"; import { PutPartnerEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/PutPermissionCommand.ts b/clients/client-cloudwatch-events/src/commands/PutPermissionCommand.ts index 4ef76a9328be1..99b4ca26bb31c 100644 --- a/clients/client-cloudwatch-events/src/commands/PutPermissionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutPermissionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPermissionRequest } from "../models/models_0"; +import type { PutPermissionRequest } from "../models/models_0"; import { PutPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/PutRuleCommand.ts b/clients/client-cloudwatch-events/src/commands/PutRuleCommand.ts index 2857f69e8efe2..7257aa138f82b 100644 --- a/clients/client-cloudwatch-events/src/commands/PutRuleCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRuleRequest, PutRuleResponse } from "../models/models_0"; +import type { PutRuleRequest, PutRuleResponse } from "../models/models_0"; import { PutRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/PutTargetsCommand.ts b/clients/client-cloudwatch-events/src/commands/PutTargetsCommand.ts index 8ef05ea0d8325..3acf1a4d6804c 100644 --- a/clients/client-cloudwatch-events/src/commands/PutTargetsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/PutTargetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTargetsRequest, PutTargetsResponse } from "../models/models_0"; +import type { PutTargetsRequest, PutTargetsResponse } from "../models/models_0"; import { PutTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/RemovePermissionCommand.ts b/clients/client-cloudwatch-events/src/commands/RemovePermissionCommand.ts index 85427dbe02a88..df79c8ec8bed2 100644 --- a/clients/client-cloudwatch-events/src/commands/RemovePermissionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/RemovePermissionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemovePermissionRequest } from "../models/models_0"; +import type { RemovePermissionRequest } from "../models/models_0"; import { RemovePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/RemoveTargetsCommand.ts b/clients/client-cloudwatch-events/src/commands/RemoveTargetsCommand.ts index 6b37e9634d546..5f2b893c38efc 100644 --- a/clients/client-cloudwatch-events/src/commands/RemoveTargetsCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/RemoveTargetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTargetsRequest, RemoveTargetsResponse } from "../models/models_0"; +import type { RemoveTargetsRequest, RemoveTargetsResponse } from "../models/models_0"; import { RemoveTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/StartReplayCommand.ts b/clients/client-cloudwatch-events/src/commands/StartReplayCommand.ts index 0dbe958820678..3635c30b4757b 100644 --- a/clients/client-cloudwatch-events/src/commands/StartReplayCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/StartReplayCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReplayRequest, StartReplayResponse } from "../models/models_0"; +import type { StartReplayRequest, StartReplayResponse } from "../models/models_0"; import { StartReplay } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/TagResourceCommand.ts b/clients/client-cloudwatch-events/src/commands/TagResourceCommand.ts index 6d720c1dd23f4..9045256c83d69 100644 --- a/clients/client-cloudwatch-events/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/TestEventPatternCommand.ts b/clients/client-cloudwatch-events/src/commands/TestEventPatternCommand.ts index 8443ec2b459f6..99194a523117e 100644 --- a/clients/client-cloudwatch-events/src/commands/TestEventPatternCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/TestEventPatternCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestEventPatternRequest, TestEventPatternResponse } from "../models/models_0"; +import type { TestEventPatternRequest, TestEventPatternResponse } from "../models/models_0"; import { TestEventPattern } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/UntagResourceCommand.ts b/clients/client-cloudwatch-events/src/commands/UntagResourceCommand.ts index 653c2f8c14a4c..4b2bc7b203fd9 100644 --- a/clients/client-cloudwatch-events/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/UpdateApiDestinationCommand.ts b/clients/client-cloudwatch-events/src/commands/UpdateApiDestinationCommand.ts index 1428769308fc1..0185e4119b10f 100644 --- a/clients/client-cloudwatch-events/src/commands/UpdateApiDestinationCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/UpdateApiDestinationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApiDestinationRequest, UpdateApiDestinationResponse } from "../models/models_0"; +import type { UpdateApiDestinationRequest, UpdateApiDestinationResponse } from "../models/models_0"; import { UpdateApiDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/UpdateArchiveCommand.ts b/clients/client-cloudwatch-events/src/commands/UpdateArchiveCommand.ts index 60306dcbdf580..5773869bb5d94 100644 --- a/clients/client-cloudwatch-events/src/commands/UpdateArchiveCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/UpdateArchiveCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateArchiveRequest, UpdateArchiveResponse } from "../models/models_0"; +import type { UpdateArchiveRequest, UpdateArchiveResponse } from "../models/models_0"; import { UpdateArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/commands/UpdateConnectionCommand.ts b/clients/client-cloudwatch-events/src/commands/UpdateConnectionCommand.ts index ed93d2cad7a29..89e9513b36b55 100644 --- a/clients/client-cloudwatch-events/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-cloudwatch-events/src/commands/UpdateConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchEventsClient"; +import type { + CloudWatchEventsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchEventsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_0"; +import type { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_0"; import { UpdateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-events/src/endpoint/EndpointParameters.ts b/clients/client-cloudwatch-events/src/endpoint/EndpointParameters.ts index 5addb93c1fe99..0929d85905f8b 100644 --- a/clients/client-cloudwatch-events/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudwatch-events/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudwatch-events/src/endpoint/endpointResolver.ts b/clients/client-cloudwatch-events/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudwatch-events/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudwatch-events/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudwatch-events/src/extensionConfiguration.ts b/clients/client-cloudwatch-events/src/extensionConfiguration.ts index b6356589ec069..c00efb12d1f53 100644 --- a/clients/client-cloudwatch-events/src/extensionConfiguration.ts +++ b/clients/client-cloudwatch-events/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudwatch-events/src/models/CloudWatchEventsServiceException.ts b/clients/client-cloudwatch-events/src/models/CloudWatchEventsServiceException.ts index c6078b33a442a..1a34c00d667d8 100644 --- a/clients/client-cloudwatch-events/src/models/CloudWatchEventsServiceException.ts +++ b/clients/client-cloudwatch-events/src/models/CloudWatchEventsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudwatch-events/src/models/errors.ts b/clients/client-cloudwatch-events/src/models/errors.ts index c6c0fd1ab2710..7501482e12ebb 100644 --- a/clients/client-cloudwatch-events/src/models/errors.ts +++ b/clients/client-cloudwatch-events/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudWatchEventsServiceException as __BaseException } from "./CloudWatchEventsServiceException"; diff --git a/clients/client-cloudwatch-events/src/runtimeConfig.browser.ts b/clients/client-cloudwatch-events/src/runtimeConfig.browser.ts index f3df0be20abb2..43d720612b403 100644 --- a/clients/client-cloudwatch-events/src/runtimeConfig.browser.ts +++ b/clients/client-cloudwatch-events/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudWatchEventsClientConfig } from "./CloudWatchEventsClient"; + +import type { CloudWatchEventsClientConfig } from "./CloudWatchEventsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudwatch-events/src/runtimeConfig.native.ts b/clients/client-cloudwatch-events/src/runtimeConfig.native.ts index 82c0465715a91..45b1eaf18dd60 100644 --- a/clients/client-cloudwatch-events/src/runtimeConfig.native.ts +++ b/clients/client-cloudwatch-events/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudWatchEventsClientConfig } from "./CloudWatchEventsClient"; +import type { CloudWatchEventsClientConfig } from "./CloudWatchEventsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudwatch-events/src/runtimeConfig.shared.ts b/clients/client-cloudwatch-events/src/runtimeConfig.shared.ts index 30accb9fc1934..d8682bf9f2728 100644 --- a/clients/client-cloudwatch-events/src/runtimeConfig.shared.ts +++ b/clients/client-cloudwatch-events/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudWatchEventsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudWatchEventsClientConfig } from "./CloudWatchEventsClient"; +import type { CloudWatchEventsClientConfig } from "./CloudWatchEventsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudwatch-events/src/runtimeConfig.ts b/clients/client-cloudwatch-events/src/runtimeConfig.ts index 045254c6122c6..4a79578525fcb 100644 --- a/clients/client-cloudwatch-events/src/runtimeConfig.ts +++ b/clients/client-cloudwatch-events/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudWatchEventsClientConfig } from "./CloudWatchEventsClient"; + +import type { CloudWatchEventsClientConfig } from "./CloudWatchEventsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudwatch-events/src/runtimeExtensions.ts b/clients/client-cloudwatch-events/src/runtimeExtensions.ts index 347c548f7d95f..17d537e6f1ef4 100644 --- a/clients/client-cloudwatch-events/src/runtimeExtensions.ts +++ b/clients/client-cloudwatch-events/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudWatchEventsExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudWatchEventsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudwatch-events/src/schemas/schemas_0.ts b/clients/client-cloudwatch-events/src/schemas/schemas_0.ts index 3f9b5ec016e68..8f8a1f9591314 100644 --- a/clients/client-cloudwatch-events/src/schemas/schemas_0.ts +++ b/clients/client-cloudwatch-events/src/schemas/schemas_0.ts @@ -396,7 +396,7 @@ const n0 = "com.amazonaws.cloudwatchevents"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cloudwatch-logs/package.json b/clients/client-cloudwatch-logs/package.json index 93b4713e7d499..83c4486ae3724 100644 --- a/clients/client-cloudwatch-logs/package.json +++ b/clients/client-cloudwatch-logs/package.json @@ -34,7 +34,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -42,21 +42,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudwatch-logs/src/CloudWatchLogs.ts b/clients/client-cloudwatch-logs/src/CloudWatchLogs.ts index 7cbfed22ef6af..cdb78f2466024 100644 --- a/clients/client-cloudwatch-logs/src/CloudWatchLogs.ts +++ b/clients/client-cloudwatch-logs/src/CloudWatchLogs.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudWatchLogsClient, CloudWatchLogsClientConfig } from "./CloudWatchLogsClient"; +import { CloudWatchLogsClient } from "./CloudWatchLogsClient"; import { AssociateKmsKeyCommand, AssociateKmsKeyCommandInput, diff --git a/clients/client-cloudwatch-logs/src/CloudWatchLogsClient.ts b/clients/client-cloudwatch-logs/src/CloudWatchLogsClient.ts index 984ca4be15d41..05cc72b9a0c90 100644 --- a/clients/client-cloudwatch-logs/src/CloudWatchLogsClient.ts +++ b/clients/client-cloudwatch-logs/src/CloudWatchLogsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudWatchLogsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateKmsKeyCommandInput, AssociateKmsKeyCommandOutput } from "./commands/AssociateKmsKeyCommand"; @@ -297,7 +306,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudwatch-logs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudwatch-logs/src/auth/httpAuthExtensionConfiguration.ts index 87eb101c15757..196ee7dc1841f 100644 --- a/clients/client-cloudwatch-logs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudwatch-logs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudWatchLogsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudWatchLogsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudwatch-logs/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudwatch-logs/src/auth/httpAuthSchemeProvider.ts index 4fb0036cd21f6..2f1574a5841c1 100644 --- a/clients/client-cloudwatch-logs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudwatch-logs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudWatchLogsClientConfig, CloudWatchLogsClientResolvedConfig } from "../CloudWatchLogsClient"; +import { type CloudWatchLogsClientResolvedConfig, CloudWatchLogsClientConfig } from "../CloudWatchLogsClient"; /** * @internal diff --git a/clients/client-cloudwatch-logs/src/commands/AssociateKmsKeyCommand.ts b/clients/client-cloudwatch-logs/src/commands/AssociateKmsKeyCommand.ts index e5e7efe5e3044..b4b9e60a28ed0 100644 --- a/clients/client-cloudwatch-logs/src/commands/AssociateKmsKeyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/AssociateKmsKeyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateKmsKeyRequest } from "../models/models_0"; +import type { AssociateKmsKeyRequest } from "../models/models_0"; import { AssociateKmsKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/CancelExportTaskCommand.ts b/clients/client-cloudwatch-logs/src/commands/CancelExportTaskCommand.ts index f2ccbef157ddb..dac49f345f24f 100644 --- a/clients/client-cloudwatch-logs/src/commands/CancelExportTaskCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CancelExportTaskCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelExportTaskRequest } from "../models/models_0"; +import type { CancelExportTaskRequest } from "../models/models_0"; import { CancelExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/CreateDeliveryCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateDeliveryCommand.ts index 180611070e46f..f58fadb62dc89 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateDeliveryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateDeliveryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeliveryRequest, CreateDeliveryResponse } from "../models/models_0"; +import type { CreateDeliveryRequest, CreateDeliveryResponse } from "../models/models_0"; import { CreateDelivery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/CreateExportTaskCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateExportTaskCommand.ts index fba32a7559443..1e3dcf1194c41 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateExportTaskCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateExportTaskCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExportTaskRequest, CreateExportTaskResponse } from "../models/models_0"; +import type { CreateExportTaskRequest, CreateExportTaskResponse } from "../models/models_0"; import { CreateExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/CreateLogAnomalyDetectorCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateLogAnomalyDetectorCommand.ts index 3b0e213045ad0..40038743fe8a6 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateLogAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateLogAnomalyDetectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLogAnomalyDetectorRequest, CreateLogAnomalyDetectorResponse } from "../models/models_0"; +import type { CreateLogAnomalyDetectorRequest, CreateLogAnomalyDetectorResponse } from "../models/models_0"; import { CreateLogAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/CreateLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateLogGroupCommand.ts index 8cb20ac3c3ba0..240ea3f7ab31e 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateLogGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLogGroupRequest } from "../models/models_0"; +import type { CreateLogGroupRequest } from "../models/models_0"; import { CreateLogGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/CreateLogStreamCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateLogStreamCommand.ts index 732b8b89beac7..71fec8b03d732 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateLogStreamCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateLogStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLogStreamRequest } from "../models/models_0"; +import type { CreateLogStreamRequest } from "../models/models_0"; import { CreateLogStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/CreateScheduledQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/CreateScheduledQueryCommand.ts index 448d883ccb394..78b513162ef99 100644 --- a/clients/client-cloudwatch-logs/src/commands/CreateScheduledQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/CreateScheduledQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScheduledQueryRequest, CreateScheduledQueryResponse } from "../models/models_0"; +import type { CreateScheduledQueryRequest, CreateScheduledQueryResponse } from "../models/models_0"; import { CreateScheduledQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteAccountPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteAccountPolicyCommand.ts index 4a1baf28c28c9..d38c31ae55784 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteAccountPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteAccountPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountPolicyRequest } from "../models/models_0"; +import type { DeleteAccountPolicyRequest } from "../models/models_0"; import { DeleteAccountPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDataProtectionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDataProtectionPolicyCommand.ts index e7ccf41d8e58e..8e48a4a5754de 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDataProtectionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDataProtectionPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataProtectionPolicyRequest } from "../models/models_0"; +import type { DeleteDataProtectionPolicyRequest } from "../models/models_0"; import { DeleteDataProtectionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryCommand.ts index 36000c4a02c3c..bbf060246522f 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeliveryRequest } from "../models/models_0"; +import type { DeleteDeliveryRequest } from "../models/models_0"; import { DeleteDelivery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationCommand.ts index 050969a03be78..08ec34c4584ac 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeliveryDestinationRequest } from "../models/models_0"; +import type { DeleteDeliveryDestinationRequest } from "../models/models_0"; import { DeleteDeliveryDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationPolicyCommand.ts index 3574a15552c7f..7722b8a29ef9a 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDeliveryDestinationPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeliveryDestinationPolicyRequest } from "../models/models_0"; +import type { DeleteDeliveryDestinationPolicyRequest } from "../models/models_0"; import { DeleteDeliveryDestinationPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDeliverySourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDeliverySourceCommand.ts index c9aa2cfe9e75f..92343ad8ebda2 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDeliverySourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDeliverySourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeliverySourceRequest } from "../models/models_0"; +import type { DeleteDeliverySourceRequest } from "../models/models_0"; import { DeleteDeliverySource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteDestinationCommand.ts index 9ee448981100c..55022f9d4e3c6 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteDestinationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDestinationRequest } from "../models/models_0"; +import type { DeleteDestinationRequest } from "../models/models_0"; import { DeleteDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteIndexPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteIndexPolicyCommand.ts index 5f8dbaf9eb648..1a14337a52329 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteIndexPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteIndexPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIndexPolicyRequest, DeleteIndexPolicyResponse } from "../models/models_0"; +import type { DeleteIndexPolicyRequest, DeleteIndexPolicyResponse } from "../models/models_0"; import { DeleteIndexPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteIntegrationCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteIntegrationCommand.ts index 749bcba5a3159..60d2e5570ac31 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIntegrationRequest, DeleteIntegrationResponse } from "../models/models_0"; +import type { DeleteIntegrationRequest, DeleteIntegrationResponse } from "../models/models_0"; import { DeleteIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteLogAnomalyDetectorCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteLogAnomalyDetectorCommand.ts index 817f8bd25f895..cae31f8ab7082 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteLogAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteLogAnomalyDetectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLogAnomalyDetectorRequest } from "../models/models_0"; +import type { DeleteLogAnomalyDetectorRequest } from "../models/models_0"; import { DeleteLogAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteLogGroupCommand.ts index aad92ee62dc78..faaae6c9e0a1f 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteLogGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLogGroupRequest } from "../models/models_0"; +import type { DeleteLogGroupRequest } from "../models/models_0"; import { DeleteLogGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteLogStreamCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteLogStreamCommand.ts index c3de3d92841fc..2ef29787fd441 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteLogStreamCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteLogStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLogStreamRequest } from "../models/models_0"; +import type { DeleteLogStreamRequest } from "../models/models_0"; import { DeleteLogStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteMetricFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteMetricFilterCommand.ts index 9b6e3c4011167..e2bd949385276 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteMetricFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteMetricFilterCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMetricFilterRequest } from "../models/models_0"; +import type { DeleteMetricFilterRequest } from "../models/models_0"; import { DeleteMetricFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteQueryDefinitionCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteQueryDefinitionCommand.ts index c8559e82ad443..ed64bf5934cf3 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteQueryDefinitionCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteQueryDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueryDefinitionRequest, DeleteQueryDefinitionResponse } from "../models/models_0"; +import type { DeleteQueryDefinitionRequest, DeleteQueryDefinitionResponse } from "../models/models_0"; import { DeleteQueryDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteResourcePolicyCommand.ts index c910714f611aa..b452f9995a86b 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest } from "../models/models_0"; +import type { DeleteResourcePolicyRequest } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteRetentionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteRetentionPolicyCommand.ts index 3d9a1bd2fac10..081fdb6f86099 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteRetentionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteRetentionPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRetentionPolicyRequest } from "../models/models_0"; +import type { DeleteRetentionPolicyRequest } from "../models/models_0"; import { DeleteRetentionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteScheduledQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteScheduledQueryCommand.ts index 0e1076232a447..4a0cd6ca2500b 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteScheduledQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteScheduledQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScheduledQueryRequest, DeleteScheduledQueryResponse } from "../models/models_0"; +import type { DeleteScheduledQueryRequest, DeleteScheduledQueryResponse } from "../models/models_0"; import { DeleteScheduledQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteSubscriptionFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteSubscriptionFilterCommand.ts index 800388611d4c8..5108080253113 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteSubscriptionFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteSubscriptionFilterCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubscriptionFilterRequest } from "../models/models_0"; +import type { DeleteSubscriptionFilterRequest } from "../models/models_0"; import { DeleteSubscriptionFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DeleteTransformerCommand.ts b/clients/client-cloudwatch-logs/src/commands/DeleteTransformerCommand.ts index dfb3fb565b383..03a4f6f243829 100644 --- a/clients/client-cloudwatch-logs/src/commands/DeleteTransformerCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DeleteTransformerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTransformerRequest } from "../models/models_0"; +import type { DeleteTransformerRequest } from "../models/models_0"; import { DeleteTransformer } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeAccountPoliciesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeAccountPoliciesCommand.ts index b917410563b28..1572251c1a217 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeAccountPoliciesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeAccountPoliciesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountPoliciesRequest, DescribeAccountPoliciesResponse } from "../models/models_0"; +import type { DescribeAccountPoliciesRequest, DescribeAccountPoliciesResponse } from "../models/models_0"; import { DescribeAccountPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeConfigurationTemplatesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeConfigurationTemplatesCommand.ts index 35754c5aa73d1..9a5cac72157d8 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeConfigurationTemplatesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeConfigurationTemplatesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConfigurationTemplatesRequest, DescribeConfigurationTemplatesResponse } from "../models/models_0"; +import type { DescribeConfigurationTemplatesRequest, DescribeConfigurationTemplatesResponse } from "../models/models_0"; import { DescribeConfigurationTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeDeliveriesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeDeliveriesCommand.ts index a90f560121a69..c9c2082fa7ee7 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeDeliveriesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeDeliveriesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeliveriesRequest, DescribeDeliveriesResponse } from "../models/models_0"; +import type { DescribeDeliveriesRequest, DescribeDeliveriesResponse } from "../models/models_0"; import { DescribeDeliveries } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeDeliveryDestinationsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeDeliveryDestinationsCommand.ts index 4b7b6ab1bf06e..a7d40c468b03b 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeDeliveryDestinationsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeDeliveryDestinationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeliveryDestinationsRequest, DescribeDeliveryDestinationsResponse } from "../models/models_0"; +import type { DescribeDeliveryDestinationsRequest, DescribeDeliveryDestinationsResponse } from "../models/models_0"; import { DescribeDeliveryDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeDeliverySourcesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeDeliverySourcesCommand.ts index 68e75c6bd92db..a702d56393d81 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeDeliverySourcesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeDeliverySourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeliverySourcesRequest, DescribeDeliverySourcesResponse } from "../models/models_0"; +import type { DescribeDeliverySourcesRequest, DescribeDeliverySourcesResponse } from "../models/models_0"; import { DescribeDeliverySources } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeDestinationsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeDestinationsCommand.ts index b41e35e4b03a8..cd21899e24d45 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeDestinationsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeDestinationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDestinationsRequest, DescribeDestinationsResponse } from "../models/models_0"; +import type { DescribeDestinationsRequest, DescribeDestinationsResponse } from "../models/models_0"; import { DescribeDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeExportTasksCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeExportTasksCommand.ts index 191f178495727..93c2fd6ad25f0 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeExportTasksCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeExportTasksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExportTasksRequest, DescribeExportTasksResponse } from "../models/models_0"; +import type { DescribeExportTasksRequest, DescribeExportTasksResponse } from "../models/models_0"; import { DescribeExportTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeFieldIndexesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeFieldIndexesCommand.ts index a631531e29f9e..afd662d852935 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeFieldIndexesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeFieldIndexesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFieldIndexesRequest, DescribeFieldIndexesResponse } from "../models/models_0"; +import type { DescribeFieldIndexesRequest, DescribeFieldIndexesResponse } from "../models/models_0"; import { DescribeFieldIndexes } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeIndexPoliciesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeIndexPoliciesCommand.ts index 5340306eb1ad3..70ee2361bfc41 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeIndexPoliciesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeIndexPoliciesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIndexPoliciesRequest, DescribeIndexPoliciesResponse } from "../models/models_0"; +import type { DescribeIndexPoliciesRequest, DescribeIndexPoliciesResponse } from "../models/models_0"; import { DescribeIndexPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeLogGroupsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeLogGroupsCommand.ts index 26d0362c2202e..580c58064513a 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeLogGroupsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeLogGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLogGroupsRequest, DescribeLogGroupsResponse } from "../models/models_0"; +import type { DescribeLogGroupsRequest, DescribeLogGroupsResponse } from "../models/models_0"; import { DescribeLogGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeLogStreamsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeLogStreamsCommand.ts index 74af005b799ca..792aab9416105 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeLogStreamsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeLogStreamsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLogStreamsRequest, DescribeLogStreamsResponse } from "../models/models_0"; +import type { DescribeLogStreamsRequest, DescribeLogStreamsResponse } from "../models/models_0"; import { DescribeLogStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeMetricFiltersCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeMetricFiltersCommand.ts index 599ddba050cf4..fe75fa5b9aa09 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeMetricFiltersCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeMetricFiltersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetricFiltersRequest, DescribeMetricFiltersResponse } from "../models/models_0"; +import type { DescribeMetricFiltersRequest, DescribeMetricFiltersResponse } from "../models/models_0"; import { DescribeMetricFilters } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeQueriesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeQueriesCommand.ts index 1cba05e20cc74..9239d7d94e122 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeQueriesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeQueriesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeQueriesRequest, DescribeQueriesResponse } from "../models/models_0"; +import type { DescribeQueriesRequest, DescribeQueriesResponse } from "../models/models_0"; import { DescribeQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeQueryDefinitionsCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeQueryDefinitionsCommand.ts index 99157e7bee84e..621448b560ccb 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeQueryDefinitionsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeQueryDefinitionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeQueryDefinitionsRequest, DescribeQueryDefinitionsResponse } from "../models/models_0"; +import type { DescribeQueryDefinitionsRequest, DescribeQueryDefinitionsResponse } from "../models/models_0"; import { DescribeQueryDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeResourcePoliciesCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeResourcePoliciesCommand.ts index fe3d6dfd81be2..914080c42d423 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeResourcePoliciesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeResourcePoliciesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourcePoliciesRequest, DescribeResourcePoliciesResponse } from "../models/models_0"; +import type { DescribeResourcePoliciesRequest, DescribeResourcePoliciesResponse } from "../models/models_0"; import { DescribeResourcePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DescribeSubscriptionFiltersCommand.ts b/clients/client-cloudwatch-logs/src/commands/DescribeSubscriptionFiltersCommand.ts index d1cba049ff290..41853ebd09e7a 100644 --- a/clients/client-cloudwatch-logs/src/commands/DescribeSubscriptionFiltersCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DescribeSubscriptionFiltersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSubscriptionFiltersRequest, DescribeSubscriptionFiltersResponse } from "../models/models_0"; +import type { DescribeSubscriptionFiltersRequest, DescribeSubscriptionFiltersResponse } from "../models/models_0"; import { DescribeSubscriptionFilters } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/DisassociateKmsKeyCommand.ts b/clients/client-cloudwatch-logs/src/commands/DisassociateKmsKeyCommand.ts index d614a65f86c81..4873b9c9b87ba 100644 --- a/clients/client-cloudwatch-logs/src/commands/DisassociateKmsKeyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/DisassociateKmsKeyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateKmsKeyRequest } from "../models/models_0"; +import type { DisassociateKmsKeyRequest } from "../models/models_0"; import { DisassociateKmsKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/FilterLogEventsCommand.ts b/clients/client-cloudwatch-logs/src/commands/FilterLogEventsCommand.ts index 1214d2d2603d7..9695d4792908e 100644 --- a/clients/client-cloudwatch-logs/src/commands/FilterLogEventsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/FilterLogEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FilterLogEventsRequest, FilterLogEventsResponse } from "../models/models_0"; +import type { FilterLogEventsRequest, FilterLogEventsResponse } from "../models/models_0"; import { FilterLogEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetDataProtectionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDataProtectionPolicyCommand.ts index 32ca9bfb4ba77..fac7de3de2b81 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDataProtectionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDataProtectionPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataProtectionPolicyRequest, GetDataProtectionPolicyResponse } from "../models/models_0"; +import type { GetDataProtectionPolicyRequest, GetDataProtectionPolicyResponse } from "../models/models_0"; import { GetDataProtectionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetDeliveryCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDeliveryCommand.ts index 57398f96da16f..2b883a45e890d 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDeliveryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDeliveryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeliveryRequest, GetDeliveryResponse } from "../models/models_0"; +import type { GetDeliveryRequest, GetDeliveryResponse } from "../models/models_0"; import { GetDelivery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationCommand.ts index a78c4f709d6be..fd447518a6dce 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeliveryDestinationRequest, GetDeliveryDestinationResponse } from "../models/models_0"; +import type { GetDeliveryDestinationRequest, GetDeliveryDestinationResponse } from "../models/models_0"; import { GetDeliveryDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationPolicyCommand.ts index 6a0b2ec838c3f..931c53a8c1011 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDeliveryDestinationPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeliveryDestinationPolicyRequest, GetDeliveryDestinationPolicyResponse } from "../models/models_0"; +import type { GetDeliveryDestinationPolicyRequest, GetDeliveryDestinationPolicyResponse } from "../models/models_0"; import { GetDeliveryDestinationPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetDeliverySourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetDeliverySourceCommand.ts index 2846eb3c30d29..9469fe3b759a3 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetDeliverySourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetDeliverySourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeliverySourceRequest, GetDeliverySourceResponse } from "../models/models_0"; +import type { GetDeliverySourceRequest, GetDeliverySourceResponse } from "../models/models_0"; import { GetDeliverySource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetIntegrationCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetIntegrationCommand.ts index 9b4d10430deb0..5582b179680af 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetIntegrationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIntegrationRequest, GetIntegrationResponse } from "../models/models_0"; +import type { GetIntegrationRequest, GetIntegrationResponse } from "../models/models_0"; import { GetIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetLogAnomalyDetectorCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetLogAnomalyDetectorCommand.ts index ae7ec28c20acd..19f4b42aecfb8 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetLogAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetLogAnomalyDetectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLogAnomalyDetectorRequest, GetLogAnomalyDetectorResponse } from "../models/models_0"; +import type { GetLogAnomalyDetectorRequest, GetLogAnomalyDetectorResponse } from "../models/models_0"; import { GetLogAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetLogEventsCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetLogEventsCommand.ts index 66530ced51fea..90898d0c05261 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetLogEventsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetLogEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLogEventsRequest, GetLogEventsResponse } from "../models/models_0"; +import type { GetLogEventsRequest, GetLogEventsResponse } from "../models/models_0"; import { GetLogEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetLogGroupFieldsCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetLogGroupFieldsCommand.ts index c9a5e8e541b24..cbf13fa0c7f0d 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetLogGroupFieldsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetLogGroupFieldsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLogGroupFieldsRequest, GetLogGroupFieldsResponse } from "../models/models_0"; +import type { GetLogGroupFieldsRequest, GetLogGroupFieldsResponse } from "../models/models_0"; import { GetLogGroupFields } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetLogObjectCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetLogObjectCommand.ts index d810c04cc632f..57a17af7b1adb 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetLogObjectCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetLogObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLogObjectRequest, GetLogObjectResponse } from "../models/models_0"; +import type { GetLogObjectRequest, GetLogObjectResponse } from "../models/models_0"; import { GetLogObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetLogRecordCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetLogRecordCommand.ts index a6843705864e9..b0796df25f182 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetLogRecordCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetLogRecordCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLogRecordRequest, GetLogRecordResponse } from "../models/models_0"; +import type { GetLogRecordRequest, GetLogRecordResponse } from "../models/models_0"; import { GetLogRecord } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetQueryResultsCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetQueryResultsCommand.ts index 565dc169cc47e..b77f31a2bbd56 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetQueryResultsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetQueryResultsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueryResultsRequest, GetQueryResultsResponse } from "../models/models_0"; +import type { GetQueryResultsRequest, GetQueryResultsResponse } from "../models/models_0"; import { GetQueryResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetScheduledQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetScheduledQueryCommand.ts index ea0beddce0da0..cefe77b686216 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetScheduledQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetScheduledQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetScheduledQueryRequest, GetScheduledQueryResponse } from "../models/models_0"; +import type { GetScheduledQueryRequest, GetScheduledQueryResponse } from "../models/models_0"; import { GetScheduledQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetScheduledQueryHistoryCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetScheduledQueryHistoryCommand.ts index 11db640414585..cdb32758612d4 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetScheduledQueryHistoryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetScheduledQueryHistoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetScheduledQueryHistoryRequest, GetScheduledQueryHistoryResponse } from "../models/models_0"; +import type { GetScheduledQueryHistoryRequest, GetScheduledQueryHistoryResponse } from "../models/models_0"; import { GetScheduledQueryHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/GetTransformerCommand.ts b/clients/client-cloudwatch-logs/src/commands/GetTransformerCommand.ts index b06c994f791d8..f75646f32113e 100644 --- a/clients/client-cloudwatch-logs/src/commands/GetTransformerCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/GetTransformerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTransformerRequest, GetTransformerResponse } from "../models/models_0"; +import type { GetTransformerRequest, GetTransformerResponse } from "../models/models_0"; import { GetTransformer } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/ListAnomaliesCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListAnomaliesCommand.ts index b3c0c4add9ba4..7e41b6928267c 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListAnomaliesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListAnomaliesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnomaliesRequest, ListAnomaliesResponse } from "../models/models_0"; +import type { ListAnomaliesRequest, ListAnomaliesResponse } from "../models/models_0"; import { ListAnomalies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/ListIntegrationsCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListIntegrationsCommand.ts index b3098a2428ebb..ae074ac222360 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListIntegrationsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListIntegrationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIntegrationsRequest, ListIntegrationsResponse } from "../models/models_0"; +import type { ListIntegrationsRequest, ListIntegrationsResponse } from "../models/models_0"; import { ListIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/ListLogAnomalyDetectorsCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListLogAnomalyDetectorsCommand.ts index 060840b81c9d7..5693f54ca0a64 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListLogAnomalyDetectorsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListLogAnomalyDetectorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLogAnomalyDetectorsRequest, ListLogAnomalyDetectorsResponse } from "../models/models_0"; +import type { ListLogAnomalyDetectorsRequest, ListLogAnomalyDetectorsResponse } from "../models/models_0"; import { ListLogAnomalyDetectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/ListLogGroupsCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListLogGroupsCommand.ts index 3568d8495ba25..9b0049909e840 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListLogGroupsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListLogGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLogGroupsRequest, ListLogGroupsResponse } from "../models/models_0"; +import type { ListLogGroupsRequest, ListLogGroupsResponse } from "../models/models_0"; import { ListLogGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/ListLogGroupsForQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListLogGroupsForQueryCommand.ts index 9a00ddb6b5171..f3d03cccb6273 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListLogGroupsForQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListLogGroupsForQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLogGroupsForQueryRequest, ListLogGroupsForQueryResponse } from "../models/models_0"; +import type { ListLogGroupsForQueryRequest, ListLogGroupsForQueryResponse } from "../models/models_0"; import { ListLogGroupsForQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/ListScheduledQueriesCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListScheduledQueriesCommand.ts index ca453d9d268d8..0c42bf2b4f9a6 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListScheduledQueriesCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListScheduledQueriesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScheduledQueriesRequest, ListScheduledQueriesResponse } from "../models/models_0"; +import type { ListScheduledQueriesRequest, ListScheduledQueriesResponse } from "../models/models_0"; import { ListScheduledQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListTagsForResourceCommand.ts index feefa4a7cc581..6ad15bae9d14e 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/ListTagsLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/ListTagsLogGroupCommand.ts index 22a4ce5e2a5bc..c555ca408a904 100644 --- a/clients/client-cloudwatch-logs/src/commands/ListTagsLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/ListTagsLogGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsLogGroupRequest, ListTagsLogGroupResponse } from "../models/models_0"; +import type { ListTagsLogGroupRequest, ListTagsLogGroupResponse } from "../models/models_0"; import { ListTagsLogGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutAccountPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutAccountPolicyCommand.ts index be9d16fb60c3f..de90ffab7bb12 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutAccountPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutAccountPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountPolicyRequest, PutAccountPolicyResponse } from "../models/models_0"; +import type { PutAccountPolicyRequest, PutAccountPolicyResponse } from "../models/models_0"; import { PutAccountPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutDataProtectionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDataProtectionPolicyCommand.ts index afed61b4958bc..ee0f8a35edfa0 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDataProtectionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDataProtectionPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDataProtectionPolicyRequest, PutDataProtectionPolicyResponse } from "../models/models_0"; +import type { PutDataProtectionPolicyRequest, PutDataProtectionPolicyResponse } from "../models/models_0"; import { PutDataProtectionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationCommand.ts index ccb393f74383d..15375ff847aaa 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDeliveryDestinationRequest, PutDeliveryDestinationResponse } from "../models/models_0"; +import type { PutDeliveryDestinationRequest, PutDeliveryDestinationResponse } from "../models/models_0"; import { PutDeliveryDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationPolicyCommand.ts index e3e1575a77539..220a169011342 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDeliveryDestinationPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDeliveryDestinationPolicyRequest, PutDeliveryDestinationPolicyResponse } from "../models/models_0"; +import type { PutDeliveryDestinationPolicyRequest, PutDeliveryDestinationPolicyResponse } from "../models/models_0"; import { PutDeliveryDestinationPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutDeliverySourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDeliverySourceCommand.ts index 2f00ee40fe262..f520e88f5f5ae 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDeliverySourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDeliverySourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDeliverySourceRequest, PutDeliverySourceResponse } from "../models/models_0"; +import type { PutDeliverySourceRequest, PutDeliverySourceResponse } from "../models/models_0"; import { PutDeliverySource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutDestinationCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDestinationCommand.ts index 30ceb8e468566..d4fb97599f808 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDestinationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDestinationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDestinationRequest, PutDestinationResponse } from "../models/models_0"; +import type { PutDestinationRequest, PutDestinationResponse } from "../models/models_0"; import { PutDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutDestinationPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutDestinationPolicyCommand.ts index 23dc36edca5ae..3735b40873d57 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutDestinationPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutDestinationPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDestinationPolicyRequest } from "../models/models_0"; +import type { PutDestinationPolicyRequest } from "../models/models_0"; import { PutDestinationPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutIndexPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutIndexPolicyCommand.ts index d24e7ff2817d5..9fdfcf36b560f 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutIndexPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutIndexPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutIndexPolicyRequest, PutIndexPolicyResponse } from "../models/models_0"; +import type { PutIndexPolicyRequest, PutIndexPolicyResponse } from "../models/models_0"; import { PutIndexPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutIntegrationCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutIntegrationCommand.ts index f349ad0c5e3d3..349375ab5d958 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutIntegrationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutIntegrationRequest, PutIntegrationResponse } from "../models/models_0"; +import type { PutIntegrationRequest, PutIntegrationResponse } from "../models/models_0"; import { PutIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutLogEventsCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutLogEventsCommand.ts index 3e39988c2c354..7b9b636111d03 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutLogEventsCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutLogEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutLogEventsRequest, PutLogEventsResponse } from "../models/models_0"; +import type { PutLogEventsRequest, PutLogEventsResponse } from "../models/models_0"; import { PutLogEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutLogGroupDeletionProtectionCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutLogGroupDeletionProtectionCommand.ts index b21c06cd748b2..22f0d533b354c 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutLogGroupDeletionProtectionCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutLogGroupDeletionProtectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutLogGroupDeletionProtectionRequest } from "../models/models_0"; +import type { PutLogGroupDeletionProtectionRequest } from "../models/models_0"; import { PutLogGroupDeletionProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutMetricFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutMetricFilterCommand.ts index d67beb6637a2d..644687e09e140 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutMetricFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutMetricFilterCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMetricFilterRequest } from "../models/models_0"; +import type { PutMetricFilterRequest } from "../models/models_0"; import { PutMetricFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutQueryDefinitionCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutQueryDefinitionCommand.ts index d896055704a5f..6421e10f1e909 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutQueryDefinitionCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutQueryDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutQueryDefinitionRequest, PutQueryDefinitionResponse } from "../models/models_0"; +import type { PutQueryDefinitionRequest, PutQueryDefinitionResponse } from "../models/models_0"; import { PutQueryDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutResourcePolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutResourcePolicyCommand.ts index 68f715c088d42..82d7310cea6d2 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutRetentionPolicyCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutRetentionPolicyCommand.ts index 0fff65a5f06d8..ff95c8966ce8e 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutRetentionPolicyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutRetentionPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRetentionPolicyRequest } from "../models/models_0"; +import type { PutRetentionPolicyRequest } from "../models/models_0"; import { PutRetentionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutSubscriptionFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutSubscriptionFilterCommand.ts index 2828175250b95..249f8e2511f9e 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutSubscriptionFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutSubscriptionFilterCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSubscriptionFilterRequest } from "../models/models_0"; +import type { PutSubscriptionFilterRequest } from "../models/models_0"; import { PutSubscriptionFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/PutTransformerCommand.ts b/clients/client-cloudwatch-logs/src/commands/PutTransformerCommand.ts index c855e6ec55c9d..0bf8c2ac93633 100644 --- a/clients/client-cloudwatch-logs/src/commands/PutTransformerCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/PutTransformerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTransformerRequest } from "../models/models_0"; +import type { PutTransformerRequest } from "../models/models_0"; import { PutTransformer } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/StartLiveTailCommand.ts b/clients/client-cloudwatch-logs/src/commands/StartLiveTailCommand.ts index c217a569d155f..40152f5944dea 100644 --- a/clients/client-cloudwatch-logs/src/commands/StartLiveTailCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/StartLiveTailCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartLiveTailRequest, StartLiveTailResponse } from "../models/models_0"; +import type { StartLiveTailRequest, StartLiveTailResponse } from "../models/models_0"; import { StartLiveTail } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/StartQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/StartQueryCommand.ts index 94f93ac5db5eb..7a8ecc6eaa6de 100644 --- a/clients/client-cloudwatch-logs/src/commands/StartQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/StartQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartQueryRequest, StartQueryResponse } from "../models/models_0"; +import type { StartQueryRequest, StartQueryResponse } from "../models/models_0"; import { StartQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/StopQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/StopQueryCommand.ts index 8a7621cdbb4b3..1f8209c37c044 100644 --- a/clients/client-cloudwatch-logs/src/commands/StopQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/StopQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopQueryRequest, StopQueryResponse } from "../models/models_0"; +import type { StopQueryRequest, StopQueryResponse } from "../models/models_0"; import { StopQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/TagLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/TagLogGroupCommand.ts index 37576643ac0df..88d41841e1e3a 100644 --- a/clients/client-cloudwatch-logs/src/commands/TagLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/TagLogGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagLogGroupRequest } from "../models/models_0"; +import type { TagLogGroupRequest } from "../models/models_0"; import { TagLogGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/TagResourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/TagResourceCommand.ts index 5315ca6f222ab..58a310f7d3406 100644 --- a/clients/client-cloudwatch-logs/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/TestMetricFilterCommand.ts b/clients/client-cloudwatch-logs/src/commands/TestMetricFilterCommand.ts index b1bc6c0f9ebd3..a48b45f1e9ff6 100644 --- a/clients/client-cloudwatch-logs/src/commands/TestMetricFilterCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/TestMetricFilterCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestMetricFilterRequest, TestMetricFilterResponse } from "../models/models_0"; +import type { TestMetricFilterRequest, TestMetricFilterResponse } from "../models/models_0"; import { TestMetricFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/TestTransformerCommand.ts b/clients/client-cloudwatch-logs/src/commands/TestTransformerCommand.ts index 0d1cea382a270..afdd6b6acc0bb 100644 --- a/clients/client-cloudwatch-logs/src/commands/TestTransformerCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/TestTransformerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestTransformerRequest, TestTransformerResponse } from "../models/models_0"; +import type { TestTransformerRequest, TestTransformerResponse } from "../models/models_0"; import { TestTransformer } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/UntagLogGroupCommand.ts b/clients/client-cloudwatch-logs/src/commands/UntagLogGroupCommand.ts index 9dd8a4d02e8da..6afaa1fa7497b 100644 --- a/clients/client-cloudwatch-logs/src/commands/UntagLogGroupCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UntagLogGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagLogGroupRequest } from "../models/models_0"; +import type { UntagLogGroupRequest } from "../models/models_0"; import { UntagLogGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/UntagResourceCommand.ts b/clients/client-cloudwatch-logs/src/commands/UntagResourceCommand.ts index 306ed94199c77..310b765e1ceff 100644 --- a/clients/client-cloudwatch-logs/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/UpdateAnomalyCommand.ts b/clients/client-cloudwatch-logs/src/commands/UpdateAnomalyCommand.ts index e2c2b94a1825a..bbe9022407c0a 100644 --- a/clients/client-cloudwatch-logs/src/commands/UpdateAnomalyCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UpdateAnomalyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnomalyRequest } from "../models/models_0"; +import type { UpdateAnomalyRequest } from "../models/models_0"; import { UpdateAnomaly } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/UpdateDeliveryConfigurationCommand.ts b/clients/client-cloudwatch-logs/src/commands/UpdateDeliveryConfigurationCommand.ts index 3eb83a9b0ec37..b30ab073bc8f4 100644 --- a/clients/client-cloudwatch-logs/src/commands/UpdateDeliveryConfigurationCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UpdateDeliveryConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeliveryConfigurationRequest, UpdateDeliveryConfigurationResponse } from "../models/models_0"; +import type { UpdateDeliveryConfigurationRequest, UpdateDeliveryConfigurationResponse } from "../models/models_0"; import { UpdateDeliveryConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/UpdateLogAnomalyDetectorCommand.ts b/clients/client-cloudwatch-logs/src/commands/UpdateLogAnomalyDetectorCommand.ts index 5bf31d5c8c2d3..6d720fe7b6b02 100644 --- a/clients/client-cloudwatch-logs/src/commands/UpdateLogAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UpdateLogAnomalyDetectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLogAnomalyDetectorRequest } from "../models/models_0"; +import type { UpdateLogAnomalyDetectorRequest } from "../models/models_0"; import { UpdateLogAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/commands/UpdateScheduledQueryCommand.ts b/clients/client-cloudwatch-logs/src/commands/UpdateScheduledQueryCommand.ts index 7f75ee88b15b0..6fcd2ef6c5bd5 100644 --- a/clients/client-cloudwatch-logs/src/commands/UpdateScheduledQueryCommand.ts +++ b/clients/client-cloudwatch-logs/src/commands/UpdateScheduledQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchLogsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchLogsClient"; +import type { + CloudWatchLogsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CloudWatchLogsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScheduledQueryRequest, UpdateScheduledQueryResponse } from "../models/models_0"; +import type { UpdateScheduledQueryRequest, UpdateScheduledQueryResponse } from "../models/models_0"; import { UpdateScheduledQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch-logs/src/endpoint/EndpointParameters.ts b/clients/client-cloudwatch-logs/src/endpoint/EndpointParameters.ts index 70f6bf1815c0d..e3ff96cf8e64d 100644 --- a/clients/client-cloudwatch-logs/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudwatch-logs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudwatch-logs/src/endpoint/endpointResolver.ts b/clients/client-cloudwatch-logs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudwatch-logs/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudwatch-logs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudwatch-logs/src/extensionConfiguration.ts b/clients/client-cloudwatch-logs/src/extensionConfiguration.ts index b554f394a8c1d..af4d8d0fd5d20 100644 --- a/clients/client-cloudwatch-logs/src/extensionConfiguration.ts +++ b/clients/client-cloudwatch-logs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudwatch-logs/src/models/CloudWatchLogsServiceException.ts b/clients/client-cloudwatch-logs/src/models/CloudWatchLogsServiceException.ts index 5e042661923e3..d545c66bb7404 100644 --- a/clients/client-cloudwatch-logs/src/models/CloudWatchLogsServiceException.ts +++ b/clients/client-cloudwatch-logs/src/models/CloudWatchLogsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudwatch-logs/src/models/errors.ts b/clients/client-cloudwatch-logs/src/models/errors.ts index e956e195bae2c..a966d23e314b5 100644 --- a/clients/client-cloudwatch-logs/src/models/errors.ts +++ b/clients/client-cloudwatch-logs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudWatchLogsServiceException as __BaseException } from "./CloudWatchLogsServiceException"; import { QueryCompileError } from "./models_0"; diff --git a/clients/client-cloudwatch-logs/src/pagination/DescribeConfigurationTemplatesPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/DescribeConfigurationTemplatesPaginator.ts index 1406cb51058a0..04c08733ce1e6 100644 --- a/clients/client-cloudwatch-logs/src/pagination/DescribeConfigurationTemplatesPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/DescribeConfigurationTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/DescribeDeliveriesPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/DescribeDeliveriesPaginator.ts index 2eac8ad1d658f..917d9247b6749 100644 --- a/clients/client-cloudwatch-logs/src/pagination/DescribeDeliveriesPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/DescribeDeliveriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/DescribeDeliveryDestinationsPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/DescribeDeliveryDestinationsPaginator.ts index e3646df11a9cf..78de30ab9ab45 100644 --- a/clients/client-cloudwatch-logs/src/pagination/DescribeDeliveryDestinationsPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/DescribeDeliveryDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/DescribeDeliverySourcesPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/DescribeDeliverySourcesPaginator.ts index 1d30be49111b2..e9d09bc501ecf 100644 --- a/clients/client-cloudwatch-logs/src/pagination/DescribeDeliverySourcesPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/DescribeDeliverySourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/DescribeDestinationsPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/DescribeDestinationsPaginator.ts index cd8864a34b810..19aa6ea12fddb 100644 --- a/clients/client-cloudwatch-logs/src/pagination/DescribeDestinationsPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/DescribeDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/DescribeLogGroupsPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/DescribeLogGroupsPaginator.ts index 493a08dc25502..543cb2618924f 100644 --- a/clients/client-cloudwatch-logs/src/pagination/DescribeLogGroupsPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/DescribeLogGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/DescribeLogStreamsPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/DescribeLogStreamsPaginator.ts index f490d5ab989d1..c8fd50ba84d79 100644 --- a/clients/client-cloudwatch-logs/src/pagination/DescribeLogStreamsPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/DescribeLogStreamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/DescribeMetricFiltersPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/DescribeMetricFiltersPaginator.ts index d888ce45a295a..55ca94d980244 100644 --- a/clients/client-cloudwatch-logs/src/pagination/DescribeMetricFiltersPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/DescribeMetricFiltersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/DescribeSubscriptionFiltersPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/DescribeSubscriptionFiltersPaginator.ts index 1a5dd82752e52..c7e4dda1c2f3f 100644 --- a/clients/client-cloudwatch-logs/src/pagination/DescribeSubscriptionFiltersPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/DescribeSubscriptionFiltersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/FilterLogEventsPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/FilterLogEventsPaginator.ts index d2ac6cf59d5ce..ff94ee50b4dc5 100644 --- a/clients/client-cloudwatch-logs/src/pagination/FilterLogEventsPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/FilterLogEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/GetLogEventsPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/GetLogEventsPaginator.ts index 97f219a48262c..30790d16a6a99 100644 --- a/clients/client-cloudwatch-logs/src/pagination/GetLogEventsPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/GetLogEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/GetScheduledQueryHistoryPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/GetScheduledQueryHistoryPaginator.ts index 1cdf184109526..8ee258cb9fa4a 100644 --- a/clients/client-cloudwatch-logs/src/pagination/GetScheduledQueryHistoryPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/GetScheduledQueryHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/Interfaces.ts b/clients/client-cloudwatch-logs/src/pagination/Interfaces.ts index f8a328bd02bff..fe37c7de048e1 100644 --- a/clients/client-cloudwatch-logs/src/pagination/Interfaces.ts +++ b/clients/client-cloudwatch-logs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; diff --git a/clients/client-cloudwatch-logs/src/pagination/ListAnomaliesPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/ListAnomaliesPaginator.ts index 5b46fdb76344a..04d3a01ae4f7e 100644 --- a/clients/client-cloudwatch-logs/src/pagination/ListAnomaliesPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/ListAnomaliesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/ListLogAnomalyDetectorsPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/ListLogAnomalyDetectorsPaginator.ts index 4ede215808aae..b5e7d0cfb8472 100644 --- a/clients/client-cloudwatch-logs/src/pagination/ListLogAnomalyDetectorsPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/ListLogAnomalyDetectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/ListLogGroupsForQueryPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/ListLogGroupsForQueryPaginator.ts index 34782241c9a21..f3addc6bf7630 100644 --- a/clients/client-cloudwatch-logs/src/pagination/ListLogGroupsForQueryPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/ListLogGroupsForQueryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/pagination/ListScheduledQueriesPaginator.ts b/clients/client-cloudwatch-logs/src/pagination/ListScheduledQueriesPaginator.ts index 167f6f4be5492..41a1e183cb87f 100644 --- a/clients/client-cloudwatch-logs/src/pagination/ListScheduledQueriesPaginator.ts +++ b/clients/client-cloudwatch-logs/src/pagination/ListScheduledQueriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchLogsClient } from "../CloudWatchLogsClient"; import { diff --git a/clients/client-cloudwatch-logs/src/runtimeConfig.browser.ts b/clients/client-cloudwatch-logs/src/runtimeConfig.browser.ts index a8089dcd6bc27..9d45d8c2f643b 100644 --- a/clients/client-cloudwatch-logs/src/runtimeConfig.browser.ts +++ b/clients/client-cloudwatch-logs/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudWatchLogsClientConfig } from "./CloudWatchLogsClient"; + +import type { CloudWatchLogsClientConfig } from "./CloudWatchLogsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudwatch-logs/src/runtimeConfig.native.ts b/clients/client-cloudwatch-logs/src/runtimeConfig.native.ts index 50400c45c925a..7d474b4e88297 100644 --- a/clients/client-cloudwatch-logs/src/runtimeConfig.native.ts +++ b/clients/client-cloudwatch-logs/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudWatchLogsClientConfig } from "./CloudWatchLogsClient"; +import type { CloudWatchLogsClientConfig } from "./CloudWatchLogsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudwatch-logs/src/runtimeConfig.shared.ts b/clients/client-cloudwatch-logs/src/runtimeConfig.shared.ts index 6ea79893a5ff0..4eac36718c9fe 100644 --- a/clients/client-cloudwatch-logs/src/runtimeConfig.shared.ts +++ b/clients/client-cloudwatch-logs/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudWatchLogsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudWatchLogsClientConfig } from "./CloudWatchLogsClient"; +import type { CloudWatchLogsClientConfig } from "./CloudWatchLogsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudwatch-logs/src/runtimeConfig.ts b/clients/client-cloudwatch-logs/src/runtimeConfig.ts index b52dc3bc40af3..5fc8b3ed23044 100644 --- a/clients/client-cloudwatch-logs/src/runtimeConfig.ts +++ b/clients/client-cloudwatch-logs/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudWatchLogsClientConfig } from "./CloudWatchLogsClient"; + +import type { CloudWatchLogsClientConfig } from "./CloudWatchLogsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudwatch-logs/src/runtimeExtensions.ts b/clients/client-cloudwatch-logs/src/runtimeExtensions.ts index 2d97f2cb805d9..eac6ad92dfe35 100644 --- a/clients/client-cloudwatch-logs/src/runtimeExtensions.ts +++ b/clients/client-cloudwatch-logs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudWatchLogsExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudWatchLogsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudwatch-logs/src/schemas/schemas_0.ts b/clients/client-cloudwatch-logs/src/schemas/schemas_0.ts index a2d07e10d43e2..a1d33356810b8 100644 --- a/clients/client-cloudwatch-logs/src/schemas/schemas_0.ts +++ b/clients/client-cloudwatch-logs/src/schemas/schemas_0.ts @@ -791,7 +791,7 @@ const n0 = "com.amazonaws.cloudwatchlogs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cloudwatch/package.json b/clients/client-cloudwatch/package.json index 1984c3d3d8907..31c1af3408c30 100644 --- a/clients/client-cloudwatch/package.json +++ b/clients/client-cloudwatch/package.json @@ -34,27 +34,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cloudwatch/src/CloudWatch.ts b/clients/client-cloudwatch/src/CloudWatch.ts index 20ac1dea4fa8d..7c398eb27e864 100644 --- a/clients/client-cloudwatch/src/CloudWatch.ts +++ b/clients/client-cloudwatch/src/CloudWatch.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CloudWatchClient, CloudWatchClientConfig } from "./CloudWatchClient"; +import { CloudWatchClient } from "./CloudWatchClient"; import { DeleteAlarmsCommand, DeleteAlarmsCommandInput, diff --git a/clients/client-cloudwatch/src/CloudWatchClient.ts b/clients/client-cloudwatch/src/CloudWatchClient.ts index bf4e5e46f6249..b5812edf0ab8e 100644 --- a/clients/client-cloudwatch/src/CloudWatchClient.ts +++ b/clients/client-cloudwatch/src/CloudWatchClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,45 +21,54 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCloudWatchHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DeleteAlarmsCommandInput, DeleteAlarmsCommandOutput } from "./commands/DeleteAlarmsCommand"; @@ -150,7 +159,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cloudwatch/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cloudwatch/src/auth/httpAuthExtensionConfiguration.ts index 0198879403339..676c13147f4f3 100644 --- a/clients/client-cloudwatch/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cloudwatch/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CloudWatchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CloudWatchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cloudwatch/src/auth/httpAuthSchemeProvider.ts b/clients/client-cloudwatch/src/auth/httpAuthSchemeProvider.ts index 8fa118a1437bf..d42a5f412e481 100644 --- a/clients/client-cloudwatch/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cloudwatch/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CloudWatchClientConfig, CloudWatchClientResolvedConfig } from "../CloudWatchClient"; +import { type CloudWatchClientResolvedConfig, CloudWatchClientConfig } from "../CloudWatchClient"; /** * @internal diff --git a/clients/client-cloudwatch/src/commands/DeleteAlarmsCommand.ts b/clients/client-cloudwatch/src/commands/DeleteAlarmsCommand.ts index 6931fdd2bef58..92e329eaf71db 100644 --- a/clients/client-cloudwatch/src/commands/DeleteAlarmsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteAlarmsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAlarmsInput } from "../models/models_0"; +import type { DeleteAlarmsInput } from "../models/models_0"; import { DeleteAlarms } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DeleteAnomalyDetectorCommand.ts b/clients/client-cloudwatch/src/commands/DeleteAnomalyDetectorCommand.ts index 883f74bf3eb23..42f3f6a744fb0 100644 --- a/clients/client-cloudwatch/src/commands/DeleteAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteAnomalyDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnomalyDetectorInput, DeleteAnomalyDetectorOutput } from "../models/models_0"; +import type { DeleteAnomalyDetectorInput, DeleteAnomalyDetectorOutput } from "../models/models_0"; import { DeleteAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DeleteDashboardsCommand.ts b/clients/client-cloudwatch/src/commands/DeleteDashboardsCommand.ts index bb3f2956ef434..9bba766fa89f0 100644 --- a/clients/client-cloudwatch/src/commands/DeleteDashboardsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteDashboardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDashboardsInput, DeleteDashboardsOutput } from "../models/models_0"; +import type { DeleteDashboardsInput, DeleteDashboardsOutput } from "../models/models_0"; import { DeleteDashboards } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DeleteInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/DeleteInsightRulesCommand.ts index d0bff4e06b3df..4f641498e748c 100644 --- a/clients/client-cloudwatch/src/commands/DeleteInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteInsightRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInsightRulesInput, DeleteInsightRulesOutput } from "../models/models_0"; +import type { DeleteInsightRulesInput, DeleteInsightRulesOutput } from "../models/models_0"; import { DeleteInsightRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DeleteMetricStreamCommand.ts b/clients/client-cloudwatch/src/commands/DeleteMetricStreamCommand.ts index ab716a766e058..73e336e2f92ed 100644 --- a/clients/client-cloudwatch/src/commands/DeleteMetricStreamCommand.ts +++ b/clients/client-cloudwatch/src/commands/DeleteMetricStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMetricStreamInput, DeleteMetricStreamOutput } from "../models/models_0"; +import type { DeleteMetricStreamInput, DeleteMetricStreamOutput } from "../models/models_0"; import { DeleteMetricStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DescribeAlarmContributorsCommand.ts b/clients/client-cloudwatch/src/commands/DescribeAlarmContributorsCommand.ts index 668fd69e9e512..02c0e015d2968 100644 --- a/clients/client-cloudwatch/src/commands/DescribeAlarmContributorsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeAlarmContributorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAlarmContributorsInput, DescribeAlarmContributorsOutput } from "../models/models_0"; +import type { DescribeAlarmContributorsInput, DescribeAlarmContributorsOutput } from "../models/models_0"; import { DescribeAlarmContributors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DescribeAlarmHistoryCommand.ts b/clients/client-cloudwatch/src/commands/DescribeAlarmHistoryCommand.ts index 019cb119d6532..d399ec52de190 100644 --- a/clients/client-cloudwatch/src/commands/DescribeAlarmHistoryCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeAlarmHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAlarmHistoryInput, DescribeAlarmHistoryOutput } from "../models/models_0"; +import type { DescribeAlarmHistoryInput, DescribeAlarmHistoryOutput } from "../models/models_0"; import { DescribeAlarmHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DescribeAlarmsCommand.ts b/clients/client-cloudwatch/src/commands/DescribeAlarmsCommand.ts index 765919ed026e2..23f0024dccbc1 100644 --- a/clients/client-cloudwatch/src/commands/DescribeAlarmsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeAlarmsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAlarmsInput, DescribeAlarmsOutput } from "../models/models_0"; +import type { DescribeAlarmsInput, DescribeAlarmsOutput } from "../models/models_0"; import { DescribeAlarms } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DescribeAlarmsForMetricCommand.ts b/clients/client-cloudwatch/src/commands/DescribeAlarmsForMetricCommand.ts index 42d1a5e34386a..16246cc54a634 100644 --- a/clients/client-cloudwatch/src/commands/DescribeAlarmsForMetricCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeAlarmsForMetricCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAlarmsForMetricInput, DescribeAlarmsForMetricOutput } from "../models/models_0"; +import type { DescribeAlarmsForMetricInput, DescribeAlarmsForMetricOutput } from "../models/models_0"; import { DescribeAlarmsForMetric } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DescribeAnomalyDetectorsCommand.ts b/clients/client-cloudwatch/src/commands/DescribeAnomalyDetectorsCommand.ts index 056a3a53c9e61..20bf5dce9e0ef 100644 --- a/clients/client-cloudwatch/src/commands/DescribeAnomalyDetectorsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeAnomalyDetectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAnomalyDetectorsInput, DescribeAnomalyDetectorsOutput } from "../models/models_0"; +import type { DescribeAnomalyDetectorsInput, DescribeAnomalyDetectorsOutput } from "../models/models_0"; import { DescribeAnomalyDetectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DescribeInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/DescribeInsightRulesCommand.ts index 9fb84b57eaea5..092960c5cedc0 100644 --- a/clients/client-cloudwatch/src/commands/DescribeInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/DescribeInsightRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInsightRulesInput, DescribeInsightRulesOutput } from "../models/models_0"; +import type { DescribeInsightRulesInput, DescribeInsightRulesOutput } from "../models/models_0"; import { DescribeInsightRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DisableAlarmActionsCommand.ts b/clients/client-cloudwatch/src/commands/DisableAlarmActionsCommand.ts index e0acbad2435c0..6f709244661a2 100644 --- a/clients/client-cloudwatch/src/commands/DisableAlarmActionsCommand.ts +++ b/clients/client-cloudwatch/src/commands/DisableAlarmActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableAlarmActionsInput } from "../models/models_0"; +import type { DisableAlarmActionsInput } from "../models/models_0"; import { DisableAlarmActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/DisableInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/DisableInsightRulesCommand.ts index e9f1b58feca6e..3e2044d716e63 100644 --- a/clients/client-cloudwatch/src/commands/DisableInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/DisableInsightRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableInsightRulesInput, DisableInsightRulesOutput } from "../models/models_0"; +import type { DisableInsightRulesInput, DisableInsightRulesOutput } from "../models/models_0"; import { DisableInsightRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/EnableAlarmActionsCommand.ts b/clients/client-cloudwatch/src/commands/EnableAlarmActionsCommand.ts index abb510f978b9e..1b7bab6693df0 100644 --- a/clients/client-cloudwatch/src/commands/EnableAlarmActionsCommand.ts +++ b/clients/client-cloudwatch/src/commands/EnableAlarmActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableAlarmActionsInput } from "../models/models_0"; +import type { EnableAlarmActionsInput } from "../models/models_0"; import { EnableAlarmActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/EnableInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/EnableInsightRulesCommand.ts index 235f6783bec9a..8a121b15d01cc 100644 --- a/clients/client-cloudwatch/src/commands/EnableInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/EnableInsightRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableInsightRulesInput, EnableInsightRulesOutput } from "../models/models_0"; +import type { EnableInsightRulesInput, EnableInsightRulesOutput } from "../models/models_0"; import { EnableInsightRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/GetDashboardCommand.ts b/clients/client-cloudwatch/src/commands/GetDashboardCommand.ts index 6e22ebe524b5b..6d479e7647fca 100644 --- a/clients/client-cloudwatch/src/commands/GetDashboardCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDashboardInput, GetDashboardOutput } from "../models/models_0"; +import type { GetDashboardInput, GetDashboardOutput } from "../models/models_0"; import { GetDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/GetInsightRuleReportCommand.ts b/clients/client-cloudwatch/src/commands/GetInsightRuleReportCommand.ts index 873c6eb75bb57..2d482aef72ebd 100644 --- a/clients/client-cloudwatch/src/commands/GetInsightRuleReportCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetInsightRuleReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightRuleReportInput, GetInsightRuleReportOutput } from "../models/models_0"; +import type { GetInsightRuleReportInput, GetInsightRuleReportOutput } from "../models/models_0"; import { GetInsightRuleReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/GetMetricDataCommand.ts b/clients/client-cloudwatch/src/commands/GetMetricDataCommand.ts index 5f0b4d2d64ff1..af43852401b90 100644 --- a/clients/client-cloudwatch/src/commands/GetMetricDataCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMetricDataInput, GetMetricDataOutput } from "../models/models_0"; +import type { GetMetricDataInput, GetMetricDataOutput } from "../models/models_0"; import { GetMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/GetMetricStatisticsCommand.ts b/clients/client-cloudwatch/src/commands/GetMetricStatisticsCommand.ts index bcb0780675085..aa58f3f367c54 100644 --- a/clients/client-cloudwatch/src/commands/GetMetricStatisticsCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetMetricStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMetricStatisticsInput, GetMetricStatisticsOutput } from "../models/models_0"; +import type { GetMetricStatisticsInput, GetMetricStatisticsOutput } from "../models/models_0"; import { GetMetricStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/GetMetricStreamCommand.ts b/clients/client-cloudwatch/src/commands/GetMetricStreamCommand.ts index 4c2232b072c3c..ebb6b59707817 100644 --- a/clients/client-cloudwatch/src/commands/GetMetricStreamCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetMetricStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMetricStreamInput, GetMetricStreamOutput } from "../models/models_0"; +import type { GetMetricStreamInput, GetMetricStreamOutput } from "../models/models_0"; import { GetMetricStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/GetMetricWidgetImageCommand.ts b/clients/client-cloudwatch/src/commands/GetMetricWidgetImageCommand.ts index 1be04549f9d2a..0f87418f218f1 100644 --- a/clients/client-cloudwatch/src/commands/GetMetricWidgetImageCommand.ts +++ b/clients/client-cloudwatch/src/commands/GetMetricWidgetImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMetricWidgetImageInput, GetMetricWidgetImageOutput } from "../models/models_0"; +import type { GetMetricWidgetImageInput, GetMetricWidgetImageOutput } from "../models/models_0"; import { GetMetricWidgetImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/ListDashboardsCommand.ts b/clients/client-cloudwatch/src/commands/ListDashboardsCommand.ts index 73e9799b75ef2..fc34f78dac3e5 100644 --- a/clients/client-cloudwatch/src/commands/ListDashboardsCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListDashboardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDashboardsInput, ListDashboardsOutput } from "../models/models_0"; +import type { ListDashboardsInput, ListDashboardsOutput } from "../models/models_0"; import { ListDashboards } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/ListManagedInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/ListManagedInsightRulesCommand.ts index c23871f4fa793..f87b106967b6d 100644 --- a/clients/client-cloudwatch/src/commands/ListManagedInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListManagedInsightRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListManagedInsightRulesInput, ListManagedInsightRulesOutput } from "../models/models_0"; +import type { ListManagedInsightRulesInput, ListManagedInsightRulesOutput } from "../models/models_0"; import { ListManagedInsightRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/ListMetricStreamsCommand.ts b/clients/client-cloudwatch/src/commands/ListMetricStreamsCommand.ts index bb18543ea73ae..76bb0d3188772 100644 --- a/clients/client-cloudwatch/src/commands/ListMetricStreamsCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListMetricStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMetricStreamsInput, ListMetricStreamsOutput } from "../models/models_0"; +import type { ListMetricStreamsInput, ListMetricStreamsOutput } from "../models/models_0"; import { ListMetricStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/ListMetricsCommand.ts b/clients/client-cloudwatch/src/commands/ListMetricsCommand.ts index 4826fae90cce0..aca827ccaa617 100644 --- a/clients/client-cloudwatch/src/commands/ListMetricsCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMetricsInput, ListMetricsOutput } from "../models/models_0"; +import type { ListMetricsInput, ListMetricsOutput } from "../models/models_0"; import { ListMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/ListTagsForResourceCommand.ts b/clients/client-cloudwatch/src/commands/ListTagsForResourceCommand.ts index 24072dce0db0a..1339bfb3a4dd7 100644 --- a/clients/client-cloudwatch/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cloudwatch/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/PutAnomalyDetectorCommand.ts b/clients/client-cloudwatch/src/commands/PutAnomalyDetectorCommand.ts index c15b6fb0e0014..5bfbcbc170762 100644 --- a/clients/client-cloudwatch/src/commands/PutAnomalyDetectorCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutAnomalyDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAnomalyDetectorInput, PutAnomalyDetectorOutput } from "../models/models_0"; +import type { PutAnomalyDetectorInput, PutAnomalyDetectorOutput } from "../models/models_0"; import { PutAnomalyDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/PutCompositeAlarmCommand.ts b/clients/client-cloudwatch/src/commands/PutCompositeAlarmCommand.ts index 1a6db2658fd78..2cad411fc4323 100644 --- a/clients/client-cloudwatch/src/commands/PutCompositeAlarmCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutCompositeAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutCompositeAlarmInput } from "../models/models_0"; +import type { PutCompositeAlarmInput } from "../models/models_0"; import { PutCompositeAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/PutDashboardCommand.ts b/clients/client-cloudwatch/src/commands/PutDashboardCommand.ts index 0e0f6c01aef4b..9c2ccc7a5237d 100644 --- a/clients/client-cloudwatch/src/commands/PutDashboardCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDashboardInput, PutDashboardOutput } from "../models/models_0"; +import type { PutDashboardInput, PutDashboardOutput } from "../models/models_0"; import { PutDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/PutInsightRuleCommand.ts b/clients/client-cloudwatch/src/commands/PutInsightRuleCommand.ts index e2f02c17a0dde..27e56581c2bf9 100644 --- a/clients/client-cloudwatch/src/commands/PutInsightRuleCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutInsightRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutInsightRuleInput, PutInsightRuleOutput } from "../models/models_0"; +import type { PutInsightRuleInput, PutInsightRuleOutput } from "../models/models_0"; import { PutInsightRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/PutManagedInsightRulesCommand.ts b/clients/client-cloudwatch/src/commands/PutManagedInsightRulesCommand.ts index bef50478c89f3..386ee771d0c4f 100644 --- a/clients/client-cloudwatch/src/commands/PutManagedInsightRulesCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutManagedInsightRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutManagedInsightRulesInput, PutManagedInsightRulesOutput } from "../models/models_0"; +import type { PutManagedInsightRulesInput, PutManagedInsightRulesOutput } from "../models/models_0"; import { PutManagedInsightRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/PutMetricAlarmCommand.ts b/clients/client-cloudwatch/src/commands/PutMetricAlarmCommand.ts index 6d58024d4c1b6..6fa506ae435da 100644 --- a/clients/client-cloudwatch/src/commands/PutMetricAlarmCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutMetricAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMetricAlarmInput } from "../models/models_0"; +import type { PutMetricAlarmInput } from "../models/models_0"; import { PutMetricAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/PutMetricDataCommand.ts b/clients/client-cloudwatch/src/commands/PutMetricDataCommand.ts index d8bf25dc39559..a56fead71db68 100644 --- a/clients/client-cloudwatch/src/commands/PutMetricDataCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutMetricDataCommand.ts @@ -2,11 +2,11 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMetricDataInput } from "../models/models_0"; +import type { PutMetricDataInput } from "../models/models_0"; import { PutMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/PutMetricStreamCommand.ts b/clients/client-cloudwatch/src/commands/PutMetricStreamCommand.ts index c6d6cc731e41b..4dad113359c27 100644 --- a/clients/client-cloudwatch/src/commands/PutMetricStreamCommand.ts +++ b/clients/client-cloudwatch/src/commands/PutMetricStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMetricStreamInput, PutMetricStreamOutput } from "../models/models_0"; +import type { PutMetricStreamInput, PutMetricStreamOutput } from "../models/models_0"; import { PutMetricStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/SetAlarmStateCommand.ts b/clients/client-cloudwatch/src/commands/SetAlarmStateCommand.ts index 447a53c761e5e..35ca9e3008b0d 100644 --- a/clients/client-cloudwatch/src/commands/SetAlarmStateCommand.ts +++ b/clients/client-cloudwatch/src/commands/SetAlarmStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetAlarmStateInput } from "../models/models_0"; +import type { SetAlarmStateInput } from "../models/models_0"; import { SetAlarmState } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/StartMetricStreamsCommand.ts b/clients/client-cloudwatch/src/commands/StartMetricStreamsCommand.ts index e8ba72bbb3f9e..6ef060d94a41c 100644 --- a/clients/client-cloudwatch/src/commands/StartMetricStreamsCommand.ts +++ b/clients/client-cloudwatch/src/commands/StartMetricStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMetricStreamsInput, StartMetricStreamsOutput } from "../models/models_0"; +import type { StartMetricStreamsInput, StartMetricStreamsOutput } from "../models/models_0"; import { StartMetricStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/StopMetricStreamsCommand.ts b/clients/client-cloudwatch/src/commands/StopMetricStreamsCommand.ts index ffc1c7f2596fa..0a8391225d0ca 100644 --- a/clients/client-cloudwatch/src/commands/StopMetricStreamsCommand.ts +++ b/clients/client-cloudwatch/src/commands/StopMetricStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopMetricStreamsInput, StopMetricStreamsOutput } from "../models/models_0"; +import type { StopMetricStreamsInput, StopMetricStreamsOutput } from "../models/models_0"; import { StopMetricStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/TagResourceCommand.ts b/clients/client-cloudwatch/src/commands/TagResourceCommand.ts index bf2dd688cfb39..7f340d40c8a4f 100644 --- a/clients/client-cloudwatch/src/commands/TagResourceCommand.ts +++ b/clients/client-cloudwatch/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/commands/UntagResourceCommand.ts b/clients/client-cloudwatch/src/commands/UntagResourceCommand.ts index 1a5e83f807622..45d067f50aae5 100644 --- a/clients/client-cloudwatch/src/commands/UntagResourceCommand.ts +++ b/clients/client-cloudwatch/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; +import type { CloudWatchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudWatchClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cloudwatch/src/endpoint/EndpointParameters.ts b/clients/client-cloudwatch/src/endpoint/EndpointParameters.ts index 21a0c2acbafb1..543bfb1b842d4 100644 --- a/clients/client-cloudwatch/src/endpoint/EndpointParameters.ts +++ b/clients/client-cloudwatch/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cloudwatch/src/endpoint/endpointResolver.ts b/clients/client-cloudwatch/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cloudwatch/src/endpoint/endpointResolver.ts +++ b/clients/client-cloudwatch/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cloudwatch/src/extensionConfiguration.ts b/clients/client-cloudwatch/src/extensionConfiguration.ts index 28e29d46f017c..fb36ab5d93420 100644 --- a/clients/client-cloudwatch/src/extensionConfiguration.ts +++ b/clients/client-cloudwatch/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cloudwatch/src/models/CloudWatchServiceException.ts b/clients/client-cloudwatch/src/models/CloudWatchServiceException.ts index 051f7f8e2a3a5..c80a1b7e68e51 100644 --- a/clients/client-cloudwatch/src/models/CloudWatchServiceException.ts +++ b/clients/client-cloudwatch/src/models/CloudWatchServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cloudwatch/src/models/errors.ts b/clients/client-cloudwatch/src/models/errors.ts index 1048a882475a5..598cd392eece2 100644 --- a/clients/client-cloudwatch/src/models/errors.ts +++ b/clients/client-cloudwatch/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CloudWatchServiceException as __BaseException } from "./CloudWatchServiceException"; import { DashboardValidationMessage } from "./models_0"; diff --git a/clients/client-cloudwatch/src/pagination/DescribeAlarmHistoryPaginator.ts b/clients/client-cloudwatch/src/pagination/DescribeAlarmHistoryPaginator.ts index 83e36abece83b..5874b58dbd958 100644 --- a/clients/client-cloudwatch/src/pagination/DescribeAlarmHistoryPaginator.ts +++ b/clients/client-cloudwatch/src/pagination/DescribeAlarmHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; import { diff --git a/clients/client-cloudwatch/src/pagination/DescribeAlarmsPaginator.ts b/clients/client-cloudwatch/src/pagination/DescribeAlarmsPaginator.ts index 112e5e9a88d30..be1d335db081f 100644 --- a/clients/client-cloudwatch/src/pagination/DescribeAlarmsPaginator.ts +++ b/clients/client-cloudwatch/src/pagination/DescribeAlarmsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; import { diff --git a/clients/client-cloudwatch/src/pagination/DescribeAnomalyDetectorsPaginator.ts b/clients/client-cloudwatch/src/pagination/DescribeAnomalyDetectorsPaginator.ts index 772156493dfce..d901368be433b 100644 --- a/clients/client-cloudwatch/src/pagination/DescribeAnomalyDetectorsPaginator.ts +++ b/clients/client-cloudwatch/src/pagination/DescribeAnomalyDetectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; import { diff --git a/clients/client-cloudwatch/src/pagination/DescribeInsightRulesPaginator.ts b/clients/client-cloudwatch/src/pagination/DescribeInsightRulesPaginator.ts index 397c74cad60d1..f090e1729995a 100644 --- a/clients/client-cloudwatch/src/pagination/DescribeInsightRulesPaginator.ts +++ b/clients/client-cloudwatch/src/pagination/DescribeInsightRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; import { diff --git a/clients/client-cloudwatch/src/pagination/GetMetricDataPaginator.ts b/clients/client-cloudwatch/src/pagination/GetMetricDataPaginator.ts index 6b1442731e8ae..6a9e6305e2e4b 100644 --- a/clients/client-cloudwatch/src/pagination/GetMetricDataPaginator.ts +++ b/clients/client-cloudwatch/src/pagination/GetMetricDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; import { diff --git a/clients/client-cloudwatch/src/pagination/Interfaces.ts b/clients/client-cloudwatch/src/pagination/Interfaces.ts index 47ae4733c4051..c9b096fdb7018 100644 --- a/clients/client-cloudwatch/src/pagination/Interfaces.ts +++ b/clients/client-cloudwatch/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; diff --git a/clients/client-cloudwatch/src/pagination/ListDashboardsPaginator.ts b/clients/client-cloudwatch/src/pagination/ListDashboardsPaginator.ts index 688b9317759b7..8ffd01e081abb 100644 --- a/clients/client-cloudwatch/src/pagination/ListDashboardsPaginator.ts +++ b/clients/client-cloudwatch/src/pagination/ListDashboardsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; import { diff --git a/clients/client-cloudwatch/src/pagination/ListManagedInsightRulesPaginator.ts b/clients/client-cloudwatch/src/pagination/ListManagedInsightRulesPaginator.ts index bdbee388d175d..8a2b84ffc5154 100644 --- a/clients/client-cloudwatch/src/pagination/ListManagedInsightRulesPaginator.ts +++ b/clients/client-cloudwatch/src/pagination/ListManagedInsightRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; import { diff --git a/clients/client-cloudwatch/src/pagination/ListMetricStreamsPaginator.ts b/clients/client-cloudwatch/src/pagination/ListMetricStreamsPaginator.ts index 6b22a74112722..96f8308446680 100644 --- a/clients/client-cloudwatch/src/pagination/ListMetricStreamsPaginator.ts +++ b/clients/client-cloudwatch/src/pagination/ListMetricStreamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; import { diff --git a/clients/client-cloudwatch/src/pagination/ListMetricsPaginator.ts b/clients/client-cloudwatch/src/pagination/ListMetricsPaginator.ts index 3cb3d313b877d..ac4445c9a440d 100644 --- a/clients/client-cloudwatch/src/pagination/ListMetricsPaginator.ts +++ b/clients/client-cloudwatch/src/pagination/ListMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CloudWatchClient } from "../CloudWatchClient"; import { ListMetricsCommand, ListMetricsCommandInput, ListMetricsCommandOutput } from "../commands/ListMetricsCommand"; diff --git a/clients/client-cloudwatch/src/runtimeConfig.browser.ts b/clients/client-cloudwatch/src/runtimeConfig.browser.ts index f363e10a54d41..bd15e57c80bb8 100644 --- a/clients/client-cloudwatch/src/runtimeConfig.browser.ts +++ b/clients/client-cloudwatch/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudWatchClientConfig } from "./CloudWatchClient"; + +import type { CloudWatchClientConfig } from "./CloudWatchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cloudwatch/src/runtimeConfig.native.ts b/clients/client-cloudwatch/src/runtimeConfig.native.ts index c319f1b73a1d1..018f48063bdf9 100644 --- a/clients/client-cloudwatch/src/runtimeConfig.native.ts +++ b/clients/client-cloudwatch/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CloudWatchClientConfig } from "./CloudWatchClient"; +import type { CloudWatchClientConfig } from "./CloudWatchClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cloudwatch/src/runtimeConfig.shared.ts b/clients/client-cloudwatch/src/runtimeConfig.shared.ts index 252f22b7bab1e..e71e583d9b5c0 100644 --- a/clients/client-cloudwatch/src/runtimeConfig.shared.ts +++ b/clients/client-cloudwatch/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCloudWatchHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CloudWatchClientConfig } from "./CloudWatchClient"; +import type { CloudWatchClientConfig } from "./CloudWatchClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cloudwatch/src/runtimeConfig.ts b/clients/client-cloudwatch/src/runtimeConfig.ts index b4878d103fe13..e3169644d3ff7 100644 --- a/clients/client-cloudwatch/src/runtimeConfig.ts +++ b/clients/client-cloudwatch/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CloudWatchClientConfig } from "./CloudWatchClient"; + +import type { CloudWatchClientConfig } from "./CloudWatchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cloudwatch/src/runtimeExtensions.ts b/clients/client-cloudwatch/src/runtimeExtensions.ts index e3d26606950fd..46a253d785a01 100644 --- a/clients/client-cloudwatch/src/runtimeExtensions.ts +++ b/clients/client-cloudwatch/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CloudWatchExtensionConfiguration } from "./extensionConfiguration"; +import type { CloudWatchExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cloudwatch/src/schemas/schemas_0.ts b/clients/client-cloudwatch/src/schemas/schemas_0.ts index da1c6d046259a..0a0d8dcb87ef9 100644 --- a/clients/client-cloudwatch/src/schemas/schemas_0.ts +++ b/clients/client-cloudwatch/src/schemas/schemas_0.ts @@ -353,7 +353,7 @@ const n0 = "com.amazonaws.cloudwatch"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-codeartifact/package.json b/clients/client-codeartifact/package.json index 0fbe9545525de..5888bbf5b6791 100644 --- a/clients/client-codeartifact/package.json +++ b/clients/client-codeartifact/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codeartifact/src/Codeartifact.ts b/clients/client-codeartifact/src/Codeartifact.ts index fdd3b457def33..7630999514d58 100644 --- a/clients/client-codeartifact/src/Codeartifact.ts +++ b/clients/client-codeartifact/src/Codeartifact.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeartifactClient, CodeartifactClientConfig } from "./CodeartifactClient"; +import { CodeartifactClient } from "./CodeartifactClient"; import { AssociateExternalConnectionCommand, AssociateExternalConnectionCommandInput, diff --git a/clients/client-codeartifact/src/CodeartifactClient.ts b/clients/client-codeartifact/src/CodeartifactClient.ts index cfe9c93e15116..6a5983299975a 100644 --- a/clients/client-codeartifact/src/CodeartifactClient.ts +++ b/clients/client-codeartifact/src/CodeartifactClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeartifactHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -203,7 +212,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codeartifact/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codeartifact/src/auth/httpAuthExtensionConfiguration.ts index 0cec256608378..38df8089e7cb6 100644 --- a/clients/client-codeartifact/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codeartifact/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodeartifactHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeartifactHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codeartifact/src/auth/httpAuthSchemeProvider.ts b/clients/client-codeartifact/src/auth/httpAuthSchemeProvider.ts index 787b2622c4825..3e8fb8006f997 100644 --- a/clients/client-codeartifact/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codeartifact/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeartifactClientConfig, CodeartifactClientResolvedConfig } from "../CodeartifactClient"; +import { type CodeartifactClientResolvedConfig, CodeartifactClientConfig } from "../CodeartifactClient"; /** * @internal diff --git a/clients/client-codeartifact/src/commands/AssociateExternalConnectionCommand.ts b/clients/client-codeartifact/src/commands/AssociateExternalConnectionCommand.ts index 5d1924463fbb1..00455c2458487 100644 --- a/clients/client-codeartifact/src/commands/AssociateExternalConnectionCommand.ts +++ b/clients/client-codeartifact/src/commands/AssociateExternalConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateExternalConnectionRequest, AssociateExternalConnectionResult } from "../models/models_0"; +import type { AssociateExternalConnectionRequest, AssociateExternalConnectionResult } from "../models/models_0"; import { AssociateExternalConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/CopyPackageVersionsCommand.ts b/clients/client-codeartifact/src/commands/CopyPackageVersionsCommand.ts index 21a268e156054..0038d627c169a 100644 --- a/clients/client-codeartifact/src/commands/CopyPackageVersionsCommand.ts +++ b/clients/client-codeartifact/src/commands/CopyPackageVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyPackageVersionsRequest, CopyPackageVersionsResult } from "../models/models_0"; +import type { CopyPackageVersionsRequest, CopyPackageVersionsResult } from "../models/models_0"; import { CopyPackageVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/CreateDomainCommand.ts b/clients/client-codeartifact/src/commands/CreateDomainCommand.ts index 2a394afaa9965..69a1b345eb317 100644 --- a/clients/client-codeartifact/src/commands/CreateDomainCommand.ts +++ b/clients/client-codeartifact/src/commands/CreateDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainRequest, CreateDomainResult } from "../models/models_0"; +import type { CreateDomainRequest, CreateDomainResult } from "../models/models_0"; import { CreateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/CreatePackageGroupCommand.ts b/clients/client-codeartifact/src/commands/CreatePackageGroupCommand.ts index 2546c8f89f773..c059b3ef16f5b 100644 --- a/clients/client-codeartifact/src/commands/CreatePackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/CreatePackageGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePackageGroupRequest, CreatePackageGroupResult } from "../models/models_0"; +import type { CreatePackageGroupRequest, CreatePackageGroupResult } from "../models/models_0"; import { CreatePackageGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/CreateRepositoryCommand.ts b/clients/client-codeartifact/src/commands/CreateRepositoryCommand.ts index f029bf0d441fd..0471a5087fc14 100644 --- a/clients/client-codeartifact/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-codeartifact/src/commands/CreateRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRepositoryRequest, CreateRepositoryResult } from "../models/models_0"; +import type { CreateRepositoryRequest, CreateRepositoryResult } from "../models/models_0"; import { CreateRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DeleteDomainCommand.ts b/clients/client-codeartifact/src/commands/DeleteDomainCommand.ts index 3d3f1a207594f..34a2024b801d7 100644 --- a/clients/client-codeartifact/src/commands/DeleteDomainCommand.ts +++ b/clients/client-codeartifact/src/commands/DeleteDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainRequest, DeleteDomainResult } from "../models/models_0"; +import type { DeleteDomainRequest, DeleteDomainResult } from "../models/models_0"; import { DeleteDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DeleteDomainPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/DeleteDomainPermissionsPolicyCommand.ts index 53d7f71da6c65..ca5e27403f04b 100644 --- a/clients/client-codeartifact/src/commands/DeleteDomainPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/DeleteDomainPermissionsPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainPermissionsPolicyRequest, DeleteDomainPermissionsPolicyResult } from "../models/models_0"; +import type { DeleteDomainPermissionsPolicyRequest, DeleteDomainPermissionsPolicyResult } from "../models/models_0"; import { DeleteDomainPermissionsPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DeletePackageCommand.ts b/clients/client-codeartifact/src/commands/DeletePackageCommand.ts index ef71858530bcc..d6f3d1d38e635 100644 --- a/clients/client-codeartifact/src/commands/DeletePackageCommand.ts +++ b/clients/client-codeartifact/src/commands/DeletePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePackageRequest, DeletePackageResult } from "../models/models_0"; +import type { DeletePackageRequest, DeletePackageResult } from "../models/models_0"; import { DeletePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DeletePackageGroupCommand.ts b/clients/client-codeartifact/src/commands/DeletePackageGroupCommand.ts index b59c57f15670f..643a43d512e98 100644 --- a/clients/client-codeartifact/src/commands/DeletePackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/DeletePackageGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePackageGroupRequest, DeletePackageGroupResult } from "../models/models_0"; +import type { DeletePackageGroupRequest, DeletePackageGroupResult } from "../models/models_0"; import { DeletePackageGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DeletePackageVersionsCommand.ts b/clients/client-codeartifact/src/commands/DeletePackageVersionsCommand.ts index 1b6a91f8c1544..1739bced81cf1 100644 --- a/clients/client-codeartifact/src/commands/DeletePackageVersionsCommand.ts +++ b/clients/client-codeartifact/src/commands/DeletePackageVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePackageVersionsRequest, DeletePackageVersionsResult } from "../models/models_0"; +import type { DeletePackageVersionsRequest, DeletePackageVersionsResult } from "../models/models_0"; import { DeletePackageVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DeleteRepositoryCommand.ts b/clients/client-codeartifact/src/commands/DeleteRepositoryCommand.ts index 4615a7d4d5f4b..76a4f18412e8d 100644 --- a/clients/client-codeartifact/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-codeartifact/src/commands/DeleteRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryRequest, DeleteRepositoryResult } from "../models/models_0"; +import type { DeleteRepositoryRequest, DeleteRepositoryResult } from "../models/models_0"; import { DeleteRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DeleteRepositoryPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/DeleteRepositoryPermissionsPolicyCommand.ts index dc402df020969..3d4019b0173f7 100644 --- a/clients/client-codeartifact/src/commands/DeleteRepositoryPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/DeleteRepositoryPermissionsPolicyCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryPermissionsPolicyRequest, DeleteRepositoryPermissionsPolicyResult } from "../models/models_0"; +import type { + DeleteRepositoryPermissionsPolicyRequest, + DeleteRepositoryPermissionsPolicyResult, +} from "../models/models_0"; import { DeleteRepositoryPermissionsPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DescribeDomainCommand.ts b/clients/client-codeartifact/src/commands/DescribeDomainCommand.ts index de2b646a8c6be..2e9dfd95c82ca 100644 --- a/clients/client-codeartifact/src/commands/DescribeDomainCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribeDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainRequest, DescribeDomainResult } from "../models/models_0"; +import type { DescribeDomainRequest, DescribeDomainResult } from "../models/models_0"; import { DescribeDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DescribePackageCommand.ts b/clients/client-codeartifact/src/commands/DescribePackageCommand.ts index 26f61cf6c0ece..521238570773a 100644 --- a/clients/client-codeartifact/src/commands/DescribePackageCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePackageRequest, DescribePackageResult } from "../models/models_0"; +import type { DescribePackageRequest, DescribePackageResult } from "../models/models_0"; import { DescribePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DescribePackageGroupCommand.ts b/clients/client-codeartifact/src/commands/DescribePackageGroupCommand.ts index f9b77eaa2db7b..9aa05551ee053 100644 --- a/clients/client-codeartifact/src/commands/DescribePackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribePackageGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePackageGroupRequest, DescribePackageGroupResult } from "../models/models_0"; +import type { DescribePackageGroupRequest, DescribePackageGroupResult } from "../models/models_0"; import { DescribePackageGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DescribePackageVersionCommand.ts b/clients/client-codeartifact/src/commands/DescribePackageVersionCommand.ts index 49ae860190b45..b7f3e3a1be3e4 100644 --- a/clients/client-codeartifact/src/commands/DescribePackageVersionCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribePackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePackageVersionRequest, DescribePackageVersionResult } from "../models/models_0"; +import type { DescribePackageVersionRequest, DescribePackageVersionResult } from "../models/models_0"; import { DescribePackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DescribeRepositoryCommand.ts b/clients/client-codeartifact/src/commands/DescribeRepositoryCommand.ts index 85bf2a8e1ec50..82ac0367c3240 100644 --- a/clients/client-codeartifact/src/commands/DescribeRepositoryCommand.ts +++ b/clients/client-codeartifact/src/commands/DescribeRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRepositoryRequest, DescribeRepositoryResult } from "../models/models_0"; +import type { DescribeRepositoryRequest, DescribeRepositoryResult } from "../models/models_0"; import { DescribeRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DisassociateExternalConnectionCommand.ts b/clients/client-codeartifact/src/commands/DisassociateExternalConnectionCommand.ts index 951947baaca40..c4e03cae6c011 100644 --- a/clients/client-codeartifact/src/commands/DisassociateExternalConnectionCommand.ts +++ b/clients/client-codeartifact/src/commands/DisassociateExternalConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateExternalConnectionRequest, DisassociateExternalConnectionResult } from "../models/models_0"; +import type { DisassociateExternalConnectionRequest, DisassociateExternalConnectionResult } from "../models/models_0"; import { DisassociateExternalConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/DisposePackageVersionsCommand.ts b/clients/client-codeartifact/src/commands/DisposePackageVersionsCommand.ts index fd5e9ddef4b2e..c43fadfab5b47 100644 --- a/clients/client-codeartifact/src/commands/DisposePackageVersionsCommand.ts +++ b/clients/client-codeartifact/src/commands/DisposePackageVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisposePackageVersionsRequest, DisposePackageVersionsResult } from "../models/models_0"; +import type { DisposePackageVersionsRequest, DisposePackageVersionsResult } from "../models/models_0"; import { DisposePackageVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/GetAssociatedPackageGroupCommand.ts b/clients/client-codeartifact/src/commands/GetAssociatedPackageGroupCommand.ts index cf236422844e3..de9c8601799f1 100644 --- a/clients/client-codeartifact/src/commands/GetAssociatedPackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/GetAssociatedPackageGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssociatedPackageGroupRequest, GetAssociatedPackageGroupResult } from "../models/models_0"; +import type { GetAssociatedPackageGroupRequest, GetAssociatedPackageGroupResult } from "../models/models_0"; import { GetAssociatedPackageGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/GetAuthorizationTokenCommand.ts b/clients/client-codeartifact/src/commands/GetAuthorizationTokenCommand.ts index 46b91a1bad198..8259bc6a87b05 100644 --- a/clients/client-codeartifact/src/commands/GetAuthorizationTokenCommand.ts +++ b/clients/client-codeartifact/src/commands/GetAuthorizationTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAuthorizationTokenRequest, GetAuthorizationTokenResult } from "../models/models_0"; +import type { GetAuthorizationTokenRequest, GetAuthorizationTokenResult } from "../models/models_0"; import { GetAuthorizationToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/GetDomainPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/GetDomainPermissionsPolicyCommand.ts index c0bfc7d3be2dc..7bf7cc8a1f698 100644 --- a/clients/client-codeartifact/src/commands/GetDomainPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/GetDomainPermissionsPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainPermissionsPolicyRequest, GetDomainPermissionsPolicyResult } from "../models/models_0"; +import type { GetDomainPermissionsPolicyRequest, GetDomainPermissionsPolicyResult } from "../models/models_0"; import { GetDomainPermissionsPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/GetPackageVersionAssetCommand.ts b/clients/client-codeartifact/src/commands/GetPackageVersionAssetCommand.ts index b831fe3f36632..93b9adb920742 100644 --- a/clients/client-codeartifact/src/commands/GetPackageVersionAssetCommand.ts +++ b/clients/client-codeartifact/src/commands/GetPackageVersionAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPackageVersionAssetRequest, GetPackageVersionAssetResult } from "../models/models_0"; +import { type GetPackageVersionAssetRequest, GetPackageVersionAssetResult } from "../models/models_0"; import { GetPackageVersionAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/GetPackageVersionReadmeCommand.ts b/clients/client-codeartifact/src/commands/GetPackageVersionReadmeCommand.ts index 1b6b774455c4b..210281bbbb930 100644 --- a/clients/client-codeartifact/src/commands/GetPackageVersionReadmeCommand.ts +++ b/clients/client-codeartifact/src/commands/GetPackageVersionReadmeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPackageVersionReadmeRequest, GetPackageVersionReadmeResult } from "../models/models_0"; +import type { GetPackageVersionReadmeRequest, GetPackageVersionReadmeResult } from "../models/models_0"; import { GetPackageVersionReadme } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/GetRepositoryEndpointCommand.ts b/clients/client-codeartifact/src/commands/GetRepositoryEndpointCommand.ts index de5188c80c276..8aa915d36890f 100644 --- a/clients/client-codeartifact/src/commands/GetRepositoryEndpointCommand.ts +++ b/clients/client-codeartifact/src/commands/GetRepositoryEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryEndpointRequest, GetRepositoryEndpointResult } from "../models/models_0"; +import type { GetRepositoryEndpointRequest, GetRepositoryEndpointResult } from "../models/models_0"; import { GetRepositoryEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/GetRepositoryPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/GetRepositoryPermissionsPolicyCommand.ts index 09f6c6f97aed6..f262c27473918 100644 --- a/clients/client-codeartifact/src/commands/GetRepositoryPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/GetRepositoryPermissionsPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryPermissionsPolicyRequest, GetRepositoryPermissionsPolicyResult } from "../models/models_0"; +import type { GetRepositoryPermissionsPolicyRequest, GetRepositoryPermissionsPolicyResult } from "../models/models_0"; import { GetRepositoryPermissionsPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListAllowedRepositoriesForGroupCommand.ts b/clients/client-codeartifact/src/commands/ListAllowedRepositoriesForGroupCommand.ts index 08965bfbbbee3..dc9c7075595e2 100644 --- a/clients/client-codeartifact/src/commands/ListAllowedRepositoriesForGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/ListAllowedRepositoriesForGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAllowedRepositoriesForGroupRequest, ListAllowedRepositoriesForGroupResult } from "../models/models_0"; +import type { ListAllowedRepositoriesForGroupRequest, ListAllowedRepositoriesForGroupResult } from "../models/models_0"; import { ListAllowedRepositoriesForGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListAssociatedPackagesCommand.ts b/clients/client-codeartifact/src/commands/ListAssociatedPackagesCommand.ts index b8b0499a205c3..b796b66b93b18 100644 --- a/clients/client-codeartifact/src/commands/ListAssociatedPackagesCommand.ts +++ b/clients/client-codeartifact/src/commands/ListAssociatedPackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociatedPackagesRequest, ListAssociatedPackagesResult } from "../models/models_0"; +import type { ListAssociatedPackagesRequest, ListAssociatedPackagesResult } from "../models/models_0"; import { ListAssociatedPackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListDomainsCommand.ts b/clients/client-codeartifact/src/commands/ListDomainsCommand.ts index 2bc0bb3040c5e..7b4ca11bfdae6 100644 --- a/clients/client-codeartifact/src/commands/ListDomainsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsRequest, ListDomainsResult } from "../models/models_0"; +import type { ListDomainsRequest, ListDomainsResult } from "../models/models_0"; import { ListDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListPackageGroupsCommand.ts b/clients/client-codeartifact/src/commands/ListPackageGroupsCommand.ts index 7b24bbcf744e1..c1c220e2e856d 100644 --- a/clients/client-codeartifact/src/commands/ListPackageGroupsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackageGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPackageGroupsRequest, ListPackageGroupsResult } from "../models/models_0"; +import type { ListPackageGroupsRequest, ListPackageGroupsResult } from "../models/models_0"; import { ListPackageGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListPackageVersionAssetsCommand.ts b/clients/client-codeartifact/src/commands/ListPackageVersionAssetsCommand.ts index 1500a095b0828..0a94302a1b8cc 100644 --- a/clients/client-codeartifact/src/commands/ListPackageVersionAssetsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackageVersionAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPackageVersionAssetsRequest, ListPackageVersionAssetsResult } from "../models/models_0"; +import type { ListPackageVersionAssetsRequest, ListPackageVersionAssetsResult } from "../models/models_0"; import { ListPackageVersionAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListPackageVersionDependenciesCommand.ts b/clients/client-codeartifact/src/commands/ListPackageVersionDependenciesCommand.ts index d93daef6cdfd0..ce4b7d7f1719d 100644 --- a/clients/client-codeartifact/src/commands/ListPackageVersionDependenciesCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackageVersionDependenciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPackageVersionDependenciesRequest, ListPackageVersionDependenciesResult } from "../models/models_0"; +import type { ListPackageVersionDependenciesRequest, ListPackageVersionDependenciesResult } from "../models/models_0"; import { ListPackageVersionDependencies } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListPackageVersionsCommand.ts b/clients/client-codeartifact/src/commands/ListPackageVersionsCommand.ts index 1a57097c68a74..bd790116f57b0 100644 --- a/clients/client-codeartifact/src/commands/ListPackageVersionsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackageVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPackageVersionsRequest, ListPackageVersionsResult } from "../models/models_0"; +import type { ListPackageVersionsRequest, ListPackageVersionsResult } from "../models/models_0"; import { ListPackageVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListPackagesCommand.ts b/clients/client-codeartifact/src/commands/ListPackagesCommand.ts index aaaa8bf5d7ae6..00ece13d23936 100644 --- a/clients/client-codeartifact/src/commands/ListPackagesCommand.ts +++ b/clients/client-codeartifact/src/commands/ListPackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPackagesRequest, ListPackagesResult } from "../models/models_0"; +import type { ListPackagesRequest, ListPackagesResult } from "../models/models_0"; import { ListPackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListRepositoriesCommand.ts b/clients/client-codeartifact/src/commands/ListRepositoriesCommand.ts index d8a89cdb0b4c8..8858415504d74 100644 --- a/clients/client-codeartifact/src/commands/ListRepositoriesCommand.ts +++ b/clients/client-codeartifact/src/commands/ListRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositoriesRequest, ListRepositoriesResult } from "../models/models_0"; +import type { ListRepositoriesRequest, ListRepositoriesResult } from "../models/models_0"; import { ListRepositories } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListRepositoriesInDomainCommand.ts b/clients/client-codeartifact/src/commands/ListRepositoriesInDomainCommand.ts index 82337a1fd8a00..00c8efc53653c 100644 --- a/clients/client-codeartifact/src/commands/ListRepositoriesInDomainCommand.ts +++ b/clients/client-codeartifact/src/commands/ListRepositoriesInDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositoriesInDomainRequest, ListRepositoriesInDomainResult } from "../models/models_0"; +import type { ListRepositoriesInDomainRequest, ListRepositoriesInDomainResult } from "../models/models_0"; import { ListRepositoriesInDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListSubPackageGroupsCommand.ts b/clients/client-codeartifact/src/commands/ListSubPackageGroupsCommand.ts index e3e90cf2fa51c..9a0f787747a5c 100644 --- a/clients/client-codeartifact/src/commands/ListSubPackageGroupsCommand.ts +++ b/clients/client-codeartifact/src/commands/ListSubPackageGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubPackageGroupsRequest, ListSubPackageGroupsResult } from "../models/models_0"; +import type { ListSubPackageGroupsRequest, ListSubPackageGroupsResult } from "../models/models_0"; import { ListSubPackageGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeartifact/src/commands/ListTagsForResourceCommand.ts index fac25d62de358..b2a7a0dcdb4f0 100644 --- a/clients/client-codeartifact/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeartifact/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/PublishPackageVersionCommand.ts b/clients/client-codeartifact/src/commands/PublishPackageVersionCommand.ts index 7ea35ac47c3af..f8ccfd7f5ffac 100644 --- a/clients/client-codeartifact/src/commands/PublishPackageVersionCommand.ts +++ b/clients/client-codeartifact/src/commands/PublishPackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishPackageVersionRequest, PublishPackageVersionResult } from "../models/models_0"; +import { type PublishPackageVersionResult, PublishPackageVersionRequest } from "../models/models_0"; import { PublishPackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/PutDomainPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/PutDomainPermissionsPolicyCommand.ts index bf5220a24f3d0..e639cbd2ee287 100644 --- a/clients/client-codeartifact/src/commands/PutDomainPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/PutDomainPermissionsPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDomainPermissionsPolicyRequest, PutDomainPermissionsPolicyResult } from "../models/models_0"; +import type { PutDomainPermissionsPolicyRequest, PutDomainPermissionsPolicyResult } from "../models/models_0"; import { PutDomainPermissionsPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/PutPackageOriginConfigurationCommand.ts b/clients/client-codeartifact/src/commands/PutPackageOriginConfigurationCommand.ts index 5f26a6cf951f6..3ce74060e1b8e 100644 --- a/clients/client-codeartifact/src/commands/PutPackageOriginConfigurationCommand.ts +++ b/clients/client-codeartifact/src/commands/PutPackageOriginConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPackageOriginConfigurationRequest, PutPackageOriginConfigurationResult } from "../models/models_0"; +import type { PutPackageOriginConfigurationRequest, PutPackageOriginConfigurationResult } from "../models/models_0"; import { PutPackageOriginConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/PutRepositoryPermissionsPolicyCommand.ts b/clients/client-codeartifact/src/commands/PutRepositoryPermissionsPolicyCommand.ts index 7897da616f326..f16043bed75d5 100644 --- a/clients/client-codeartifact/src/commands/PutRepositoryPermissionsPolicyCommand.ts +++ b/clients/client-codeartifact/src/commands/PutRepositoryPermissionsPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRepositoryPermissionsPolicyRequest, PutRepositoryPermissionsPolicyResult } from "../models/models_0"; +import type { PutRepositoryPermissionsPolicyRequest, PutRepositoryPermissionsPolicyResult } from "../models/models_0"; import { PutRepositoryPermissionsPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/TagResourceCommand.ts b/clients/client-codeartifact/src/commands/TagResourceCommand.ts index 5386aa6bdd3c7..b3a71f18c7252 100644 --- a/clients/client-codeartifact/src/commands/TagResourceCommand.ts +++ b/clients/client-codeartifact/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResult } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResult } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/UntagResourceCommand.ts b/clients/client-codeartifact/src/commands/UntagResourceCommand.ts index 5d49160534f1a..1325d12c75727 100644 --- a/clients/client-codeartifact/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeartifact/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/UpdatePackageGroupCommand.ts b/clients/client-codeartifact/src/commands/UpdatePackageGroupCommand.ts index 768a3c3e99615..b48ceaa801d05 100644 --- a/clients/client-codeartifact/src/commands/UpdatePackageGroupCommand.ts +++ b/clients/client-codeartifact/src/commands/UpdatePackageGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePackageGroupRequest, UpdatePackageGroupResult } from "../models/models_0"; +import type { UpdatePackageGroupRequest, UpdatePackageGroupResult } from "../models/models_0"; import { UpdatePackageGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/UpdatePackageGroupOriginConfigurationCommand.ts b/clients/client-codeartifact/src/commands/UpdatePackageGroupOriginConfigurationCommand.ts index ba8f944d2949c..5e4d5872afb3b 100644 --- a/clients/client-codeartifact/src/commands/UpdatePackageGroupOriginConfigurationCommand.ts +++ b/clients/client-codeartifact/src/commands/UpdatePackageGroupOriginConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdatePackageGroupOriginConfigurationRequest, UpdatePackageGroupOriginConfigurationResult, } from "../models/models_0"; diff --git a/clients/client-codeartifact/src/commands/UpdatePackageVersionsStatusCommand.ts b/clients/client-codeartifact/src/commands/UpdatePackageVersionsStatusCommand.ts index 1e8fb54621fcf..b0c69f0f30b16 100644 --- a/clients/client-codeartifact/src/commands/UpdatePackageVersionsStatusCommand.ts +++ b/clients/client-codeartifact/src/commands/UpdatePackageVersionsStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePackageVersionsStatusRequest, UpdatePackageVersionsStatusResult } from "../models/models_0"; +import type { UpdatePackageVersionsStatusRequest, UpdatePackageVersionsStatusResult } from "../models/models_0"; import { UpdatePackageVersionsStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/commands/UpdateRepositoryCommand.ts b/clients/client-codeartifact/src/commands/UpdateRepositoryCommand.ts index 1de54bfbda1c3..ff8a8aea43f1a 100644 --- a/clients/client-codeartifact/src/commands/UpdateRepositoryCommand.ts +++ b/clients/client-codeartifact/src/commands/UpdateRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; +import type { CodeartifactClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeartifactClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRepositoryRequest, UpdateRepositoryResult } from "../models/models_0"; +import type { UpdateRepositoryRequest, UpdateRepositoryResult } from "../models/models_0"; import { UpdateRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeartifact/src/endpoint/EndpointParameters.ts b/clients/client-codeartifact/src/endpoint/EndpointParameters.ts index 6040fe28e4d3a..b84cd65199554 100644 --- a/clients/client-codeartifact/src/endpoint/EndpointParameters.ts +++ b/clients/client-codeartifact/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codeartifact/src/endpoint/endpointResolver.ts b/clients/client-codeartifact/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codeartifact/src/endpoint/endpointResolver.ts +++ b/clients/client-codeartifact/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codeartifact/src/extensionConfiguration.ts b/clients/client-codeartifact/src/extensionConfiguration.ts index 15a03801600cf..7006261b0cfdc 100644 --- a/clients/client-codeartifact/src/extensionConfiguration.ts +++ b/clients/client-codeartifact/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codeartifact/src/models/CodeartifactServiceException.ts b/clients/client-codeartifact/src/models/CodeartifactServiceException.ts index 9c69a40636775..8598e72d6a054 100644 --- a/clients/client-codeartifact/src/models/CodeartifactServiceException.ts +++ b/clients/client-codeartifact/src/models/CodeartifactServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codeartifact/src/models/errors.ts b/clients/client-codeartifact/src/models/errors.ts index 88d5cc89b933f..39712e91c3bf8 100644 --- a/clients/client-codeartifact/src/models/errors.ts +++ b/clients/client-codeartifact/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeartifactServiceException as __BaseException } from "./CodeartifactServiceException"; import { ResourceType, ValidationExceptionReason } from "./enums"; diff --git a/clients/client-codeartifact/src/pagination/Interfaces.ts b/clients/client-codeartifact/src/pagination/Interfaces.ts index 24d915789f4bf..a52b36f85708c 100644 --- a/clients/client-codeartifact/src/pagination/Interfaces.ts +++ b/clients/client-codeartifact/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; diff --git a/clients/client-codeartifact/src/pagination/ListAllowedRepositoriesForGroupPaginator.ts b/clients/client-codeartifact/src/pagination/ListAllowedRepositoriesForGroupPaginator.ts index 5aeabef991a55..8022ae0d230a4 100644 --- a/clients/client-codeartifact/src/pagination/ListAllowedRepositoriesForGroupPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListAllowedRepositoriesForGroupPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { diff --git a/clients/client-codeartifact/src/pagination/ListAssociatedPackagesPaginator.ts b/clients/client-codeartifact/src/pagination/ListAssociatedPackagesPaginator.ts index e960007dd84ce..042a718b4356f 100644 --- a/clients/client-codeartifact/src/pagination/ListAssociatedPackagesPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListAssociatedPackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { diff --git a/clients/client-codeartifact/src/pagination/ListDomainsPaginator.ts b/clients/client-codeartifact/src/pagination/ListDomainsPaginator.ts index cf3c2aa04f821..26d1685c2126a 100644 --- a/clients/client-codeartifact/src/pagination/ListDomainsPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { ListDomainsCommand, ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand"; diff --git a/clients/client-codeartifact/src/pagination/ListPackageGroupsPaginator.ts b/clients/client-codeartifact/src/pagination/ListPackageGroupsPaginator.ts index 500e7d6de303a..55283c7eac449 100644 --- a/clients/client-codeartifact/src/pagination/ListPackageGroupsPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListPackageGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { diff --git a/clients/client-codeartifact/src/pagination/ListPackageVersionAssetsPaginator.ts b/clients/client-codeartifact/src/pagination/ListPackageVersionAssetsPaginator.ts index 776d73253650c..81aecc5e25106 100644 --- a/clients/client-codeartifact/src/pagination/ListPackageVersionAssetsPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListPackageVersionAssetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { diff --git a/clients/client-codeartifact/src/pagination/ListPackageVersionsPaginator.ts b/clients/client-codeartifact/src/pagination/ListPackageVersionsPaginator.ts index 083aecb91ec68..7b7bfd486600f 100644 --- a/clients/client-codeartifact/src/pagination/ListPackageVersionsPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListPackageVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { diff --git a/clients/client-codeartifact/src/pagination/ListPackagesPaginator.ts b/clients/client-codeartifact/src/pagination/ListPackagesPaginator.ts index 5df1049208e1e..e71f006ab9d23 100644 --- a/clients/client-codeartifact/src/pagination/ListPackagesPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListPackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { diff --git a/clients/client-codeartifact/src/pagination/ListRepositoriesInDomainPaginator.ts b/clients/client-codeartifact/src/pagination/ListRepositoriesInDomainPaginator.ts index 9ee8a4201b6ec..399b8bd269ca7 100644 --- a/clients/client-codeartifact/src/pagination/ListRepositoriesInDomainPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListRepositoriesInDomainPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { diff --git a/clients/client-codeartifact/src/pagination/ListRepositoriesPaginator.ts b/clients/client-codeartifact/src/pagination/ListRepositoriesPaginator.ts index 34b85b1a841c4..de4026f9f1bfb 100644 --- a/clients/client-codeartifact/src/pagination/ListRepositoriesPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListRepositoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { diff --git a/clients/client-codeartifact/src/pagination/ListSubPackageGroupsPaginator.ts b/clients/client-codeartifact/src/pagination/ListSubPackageGroupsPaginator.ts index d21811bc757c0..ad47cf370d796 100644 --- a/clients/client-codeartifact/src/pagination/ListSubPackageGroupsPaginator.ts +++ b/clients/client-codeartifact/src/pagination/ListSubPackageGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeartifactClient } from "../CodeartifactClient"; import { diff --git a/clients/client-codeartifact/src/runtimeConfig.browser.ts b/clients/client-codeartifact/src/runtimeConfig.browser.ts index 726098ca030b3..b6fdfa0988673 100644 --- a/clients/client-codeartifact/src/runtimeConfig.browser.ts +++ b/clients/client-codeartifact/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeartifactClientConfig } from "./CodeartifactClient"; + +import type { CodeartifactClientConfig } from "./CodeartifactClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codeartifact/src/runtimeConfig.native.ts b/clients/client-codeartifact/src/runtimeConfig.native.ts index 5c834d98eb607..e8f5113fa02de 100644 --- a/clients/client-codeartifact/src/runtimeConfig.native.ts +++ b/clients/client-codeartifact/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeartifactClientConfig } from "./CodeartifactClient"; +import type { CodeartifactClientConfig } from "./CodeartifactClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codeartifact/src/runtimeConfig.shared.ts b/clients/client-codeartifact/src/runtimeConfig.shared.ts index d1867154f872a..9e45df4fa9c41 100644 --- a/clients/client-codeartifact/src/runtimeConfig.shared.ts +++ b/clients/client-codeartifact/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeartifactHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeartifactClientConfig } from "./CodeartifactClient"; +import type { CodeartifactClientConfig } from "./CodeartifactClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codeartifact/src/runtimeConfig.ts b/clients/client-codeartifact/src/runtimeConfig.ts index ea0077b1a0fbc..db36452763fc8 100644 --- a/clients/client-codeartifact/src/runtimeConfig.ts +++ b/clients/client-codeartifact/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeartifactClientConfig } from "./CodeartifactClient"; + +import type { CodeartifactClientConfig } from "./CodeartifactClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codeartifact/src/runtimeExtensions.ts b/clients/client-codeartifact/src/runtimeExtensions.ts index 0c57c162eba53..beffe4de40e9c 100644 --- a/clients/client-codeartifact/src/runtimeExtensions.ts +++ b/clients/client-codeartifact/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeartifactExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeartifactExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codeartifact/src/schemas/schemas_0.ts b/clients/client-codeartifact/src/schemas/schemas_0.ts index f2dc571660269..ac3bcbb1db1cb 100644 --- a/clients/client-codeartifact/src/schemas/schemas_0.ts +++ b/clients/client-codeartifact/src/schemas/schemas_0.ts @@ -342,7 +342,7 @@ const n0 = "com.amazonaws.codeartifact"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-codebuild/package.json b/clients/client-codebuild/package.json index 0fa96be8b4304..f08ef818a02f3 100644 --- a/clients/client-codebuild/package.json +++ b/clients/client-codebuild/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codebuild/src/CodeBuild.ts b/clients/client-codebuild/src/CodeBuild.ts index ff0513023f72f..881ca5b78c2a3 100644 --- a/clients/client-codebuild/src/CodeBuild.ts +++ b/clients/client-codebuild/src/CodeBuild.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeBuildClient, CodeBuildClientConfig } from "./CodeBuildClient"; +import { CodeBuildClient } from "./CodeBuildClient"; import { BatchDeleteBuildsCommand, BatchDeleteBuildsCommandInput, diff --git a/clients/client-codebuild/src/CodeBuildClient.ts b/clients/client-codebuild/src/CodeBuildClient.ts index 5aed3d944fc68..76926dab7e2aa 100644 --- a/clients/client-codebuild/src/CodeBuildClient.ts +++ b/clients/client-codebuild/src/CodeBuildClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeBuildHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchDeleteBuildsCommandInput, BatchDeleteBuildsCommandOutput } from "./commands/BatchDeleteBuildsCommand"; @@ -183,7 +192,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codebuild/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codebuild/src/auth/httpAuthExtensionConfiguration.ts index 2a8d59f3454be..3e6bd4a258bed 100644 --- a/clients/client-codebuild/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codebuild/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodeBuildHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeBuildHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codebuild/src/auth/httpAuthSchemeProvider.ts b/clients/client-codebuild/src/auth/httpAuthSchemeProvider.ts index aa68022080cd8..8f01bd12ce96a 100644 --- a/clients/client-codebuild/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codebuild/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeBuildClientConfig, CodeBuildClientResolvedConfig } from "../CodeBuildClient"; +import { type CodeBuildClientResolvedConfig, CodeBuildClientConfig } from "../CodeBuildClient"; /** * @internal diff --git a/clients/client-codebuild/src/commands/BatchDeleteBuildsCommand.ts b/clients/client-codebuild/src/commands/BatchDeleteBuildsCommand.ts index 396d705904d2e..77d3eab15d48c 100644 --- a/clients/client-codebuild/src/commands/BatchDeleteBuildsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchDeleteBuildsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteBuildsInput, BatchDeleteBuildsOutput } from "../models/models_0"; +import type { BatchDeleteBuildsInput, BatchDeleteBuildsOutput } from "../models/models_0"; import { BatchDeleteBuilds } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts b/clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts index 25b4d667f6ec5..9be0240d3d255 100644 --- a/clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetBuildBatchesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetBuildBatchesInput, BatchGetBuildBatchesOutput } from "../models/models_0"; +import type { BatchGetBuildBatchesInput, BatchGetBuildBatchesOutput } from "../models/models_0"; import { BatchGetBuildBatches } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/BatchGetBuildsCommand.ts b/clients/client-codebuild/src/commands/BatchGetBuildsCommand.ts index 16d2ee9ef85f0..f55708c990a7d 100644 --- a/clients/client-codebuild/src/commands/BatchGetBuildsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetBuildsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetBuildsInput, BatchGetBuildsOutput } from "../models/models_0"; +import type { BatchGetBuildsInput, BatchGetBuildsOutput } from "../models/models_0"; import { BatchGetBuilds } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/BatchGetCommandExecutionsCommand.ts b/clients/client-codebuild/src/commands/BatchGetCommandExecutionsCommand.ts index 3f4ddd5677ff9..a738a6ef09d4f 100644 --- a/clients/client-codebuild/src/commands/BatchGetCommandExecutionsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetCommandExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetCommandExecutionsInput, BatchGetCommandExecutionsOutput } from "../models/models_0"; +import type { BatchGetCommandExecutionsInput, BatchGetCommandExecutionsOutput } from "../models/models_0"; import { BatchGetCommandExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/BatchGetFleetsCommand.ts b/clients/client-codebuild/src/commands/BatchGetFleetsCommand.ts index 3bb5666f4f222..e99ec88221cd0 100644 --- a/clients/client-codebuild/src/commands/BatchGetFleetsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetFleetsInput, BatchGetFleetsOutput } from "../models/models_0"; +import type { BatchGetFleetsInput, BatchGetFleetsOutput } from "../models/models_0"; import { BatchGetFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/BatchGetProjectsCommand.ts b/clients/client-codebuild/src/commands/BatchGetProjectsCommand.ts index 2a912a125d532..6220ba0aa1a47 100644 --- a/clients/client-codebuild/src/commands/BatchGetProjectsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetProjectsInput, BatchGetProjectsOutput } from "../models/models_0"; +import type { BatchGetProjectsInput, BatchGetProjectsOutput } from "../models/models_0"; import { BatchGetProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/BatchGetReportGroupsCommand.ts b/clients/client-codebuild/src/commands/BatchGetReportGroupsCommand.ts index 0d75a00a6606c..7517a70f9ac34 100644 --- a/clients/client-codebuild/src/commands/BatchGetReportGroupsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetReportGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetReportGroupsInput, BatchGetReportGroupsOutput } from "../models/models_0"; +import type { BatchGetReportGroupsInput, BatchGetReportGroupsOutput } from "../models/models_0"; import { BatchGetReportGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/BatchGetReportsCommand.ts b/clients/client-codebuild/src/commands/BatchGetReportsCommand.ts index f0df501e671c6..41ac3458ba383 100644 --- a/clients/client-codebuild/src/commands/BatchGetReportsCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetReportsInput, BatchGetReportsOutput } from "../models/models_0"; +import type { BatchGetReportsInput, BatchGetReportsOutput } from "../models/models_0"; import { BatchGetReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/BatchGetSandboxesCommand.ts b/clients/client-codebuild/src/commands/BatchGetSandboxesCommand.ts index 2826ced0405df..27017869de791 100644 --- a/clients/client-codebuild/src/commands/BatchGetSandboxesCommand.ts +++ b/clients/client-codebuild/src/commands/BatchGetSandboxesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetSandboxesInput, BatchGetSandboxesOutput } from "../models/models_0"; +import type { BatchGetSandboxesInput, BatchGetSandboxesOutput } from "../models/models_0"; import { BatchGetSandboxes } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/CreateFleetCommand.ts b/clients/client-codebuild/src/commands/CreateFleetCommand.ts index 08f8054e525ca..0e764127cbb34 100644 --- a/clients/client-codebuild/src/commands/CreateFleetCommand.ts +++ b/clients/client-codebuild/src/commands/CreateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFleetInput, CreateFleetOutput } from "../models/models_0"; +import type { CreateFleetInput, CreateFleetOutput } from "../models/models_0"; import { CreateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/CreateProjectCommand.ts b/clients/client-codebuild/src/commands/CreateProjectCommand.ts index dea585ea5dd0b..a8b3912cffe75 100644 --- a/clients/client-codebuild/src/commands/CreateProjectCommand.ts +++ b/clients/client-codebuild/src/commands/CreateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectInput, CreateProjectOutput } from "../models/models_0"; +import type { CreateProjectInput, CreateProjectOutput } from "../models/models_0"; import { CreateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/CreateReportGroupCommand.ts b/clients/client-codebuild/src/commands/CreateReportGroupCommand.ts index f23d60f470eab..cd581d102c0aa 100644 --- a/clients/client-codebuild/src/commands/CreateReportGroupCommand.ts +++ b/clients/client-codebuild/src/commands/CreateReportGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReportGroupInput, CreateReportGroupOutput } from "../models/models_0"; +import type { CreateReportGroupInput, CreateReportGroupOutput } from "../models/models_0"; import { CreateReportGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/CreateWebhookCommand.ts b/clients/client-codebuild/src/commands/CreateWebhookCommand.ts index fc9c772690055..089f9fecc45dc 100644 --- a/clients/client-codebuild/src/commands/CreateWebhookCommand.ts +++ b/clients/client-codebuild/src/commands/CreateWebhookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebhookInput, CreateWebhookOutput } from "../models/models_0"; +import type { CreateWebhookInput, CreateWebhookOutput } from "../models/models_0"; import { CreateWebhook } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DeleteBuildBatchCommand.ts b/clients/client-codebuild/src/commands/DeleteBuildBatchCommand.ts index a6203414f5cb7..c2f665c5f37b2 100644 --- a/clients/client-codebuild/src/commands/DeleteBuildBatchCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteBuildBatchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBuildBatchInput, DeleteBuildBatchOutput } from "../models/models_0"; +import type { DeleteBuildBatchInput, DeleteBuildBatchOutput } from "../models/models_0"; import { DeleteBuildBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DeleteFleetCommand.ts b/clients/client-codebuild/src/commands/DeleteFleetCommand.ts index 00087c6b8e1ad..7a1ffb63a253c 100644 --- a/clients/client-codebuild/src/commands/DeleteFleetCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFleetInput, DeleteFleetOutput } from "../models/models_0"; +import type { DeleteFleetInput, DeleteFleetOutput } from "../models/models_0"; import { DeleteFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DeleteProjectCommand.ts b/clients/client-codebuild/src/commands/DeleteProjectCommand.ts index e73a3e731501d..4122aa3c10f6f 100644 --- a/clients/client-codebuild/src/commands/DeleteProjectCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectInput, DeleteProjectOutput } from "../models/models_0"; +import type { DeleteProjectInput, DeleteProjectOutput } from "../models/models_0"; import { DeleteProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DeleteReportCommand.ts b/clients/client-codebuild/src/commands/DeleteReportCommand.ts index da5810310688b..b6b8c100433a9 100644 --- a/clients/client-codebuild/src/commands/DeleteReportCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReportInput, DeleteReportOutput } from "../models/models_0"; +import type { DeleteReportInput, DeleteReportOutput } from "../models/models_0"; import { DeleteReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DeleteReportGroupCommand.ts b/clients/client-codebuild/src/commands/DeleteReportGroupCommand.ts index 3125cdaa03600..7b57907068a32 100644 --- a/clients/client-codebuild/src/commands/DeleteReportGroupCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteReportGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReportGroupInput, DeleteReportGroupOutput } from "../models/models_0"; +import type { DeleteReportGroupInput, DeleteReportGroupOutput } from "../models/models_0"; import { DeleteReportGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-codebuild/src/commands/DeleteResourcePolicyCommand.ts index fcc196d10d0c3..253eadbb7bb42 100644 --- a/clients/client-codebuild/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyInput, DeleteResourcePolicyOutput } from "../models/models_0"; +import type { DeleteResourcePolicyInput, DeleteResourcePolicyOutput } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DeleteSourceCredentialsCommand.ts b/clients/client-codebuild/src/commands/DeleteSourceCredentialsCommand.ts index 9e66a2e33a006..c036913eb8397 100644 --- a/clients/client-codebuild/src/commands/DeleteSourceCredentialsCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteSourceCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSourceCredentialsInput, DeleteSourceCredentialsOutput } from "../models/models_0"; +import type { DeleteSourceCredentialsInput, DeleteSourceCredentialsOutput } from "../models/models_0"; import { DeleteSourceCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DeleteWebhookCommand.ts b/clients/client-codebuild/src/commands/DeleteWebhookCommand.ts index 8626d655f2e83..7d9cc668425bb 100644 --- a/clients/client-codebuild/src/commands/DeleteWebhookCommand.ts +++ b/clients/client-codebuild/src/commands/DeleteWebhookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebhookInput, DeleteWebhookOutput } from "../models/models_0"; +import type { DeleteWebhookInput, DeleteWebhookOutput } from "../models/models_0"; import { DeleteWebhook } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DescribeCodeCoveragesCommand.ts b/clients/client-codebuild/src/commands/DescribeCodeCoveragesCommand.ts index e8a16c40bf289..621febdafa283 100644 --- a/clients/client-codebuild/src/commands/DescribeCodeCoveragesCommand.ts +++ b/clients/client-codebuild/src/commands/DescribeCodeCoveragesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCodeCoveragesInput, DescribeCodeCoveragesOutput } from "../models/models_0"; +import type { DescribeCodeCoveragesInput, DescribeCodeCoveragesOutput } from "../models/models_0"; import { DescribeCodeCoverages } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/DescribeTestCasesCommand.ts b/clients/client-codebuild/src/commands/DescribeTestCasesCommand.ts index 970087aa22ae1..09e97425f56a6 100644 --- a/clients/client-codebuild/src/commands/DescribeTestCasesCommand.ts +++ b/clients/client-codebuild/src/commands/DescribeTestCasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTestCasesInput, DescribeTestCasesOutput } from "../models/models_0"; +import type { DescribeTestCasesInput, DescribeTestCasesOutput } from "../models/models_0"; import { DescribeTestCases } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/GetReportGroupTrendCommand.ts b/clients/client-codebuild/src/commands/GetReportGroupTrendCommand.ts index a3e5abefa0f85..4ee2c02f8f5fe 100644 --- a/clients/client-codebuild/src/commands/GetReportGroupTrendCommand.ts +++ b/clients/client-codebuild/src/commands/GetReportGroupTrendCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReportGroupTrendInput, GetReportGroupTrendOutput } from "../models/models_0"; +import type { GetReportGroupTrendInput, GetReportGroupTrendOutput } from "../models/models_0"; import { GetReportGroupTrend } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/GetResourcePolicyCommand.ts b/clients/client-codebuild/src/commands/GetResourcePolicyCommand.ts index 1d076dad9d3e8..f309cacca6f7a 100644 --- a/clients/client-codebuild/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-codebuild/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyInput, GetResourcePolicyOutput } from "../models/models_0"; +import type { GetResourcePolicyInput, GetResourcePolicyOutput } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ImportSourceCredentialsCommand.ts b/clients/client-codebuild/src/commands/ImportSourceCredentialsCommand.ts index 7c19fcaac0f09..25ab560d72194 100644 --- a/clients/client-codebuild/src/commands/ImportSourceCredentialsCommand.ts +++ b/clients/client-codebuild/src/commands/ImportSourceCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportSourceCredentialsInput, ImportSourceCredentialsOutput } from "../models/models_0"; +import type { ImportSourceCredentialsInput, ImportSourceCredentialsOutput } from "../models/models_0"; import { ImportSourceCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/InvalidateProjectCacheCommand.ts b/clients/client-codebuild/src/commands/InvalidateProjectCacheCommand.ts index 199952d7ce8c8..124eb36338c66 100644 --- a/clients/client-codebuild/src/commands/InvalidateProjectCacheCommand.ts +++ b/clients/client-codebuild/src/commands/InvalidateProjectCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvalidateProjectCacheInput, InvalidateProjectCacheOutput } from "../models/models_0"; +import type { InvalidateProjectCacheInput, InvalidateProjectCacheOutput } from "../models/models_0"; import { InvalidateProjectCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListBuildBatchesCommand.ts b/clients/client-codebuild/src/commands/ListBuildBatchesCommand.ts index cee44f13bb4dc..5a53ceb5b320d 100644 --- a/clients/client-codebuild/src/commands/ListBuildBatchesCommand.ts +++ b/clients/client-codebuild/src/commands/ListBuildBatchesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBuildBatchesInput, ListBuildBatchesOutput } from "../models/models_0"; +import type { ListBuildBatchesInput, ListBuildBatchesOutput } from "../models/models_0"; import { ListBuildBatches } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListBuildBatchesForProjectCommand.ts b/clients/client-codebuild/src/commands/ListBuildBatchesForProjectCommand.ts index 0743e11804092..d3bfd53d46272 100644 --- a/clients/client-codebuild/src/commands/ListBuildBatchesForProjectCommand.ts +++ b/clients/client-codebuild/src/commands/ListBuildBatchesForProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBuildBatchesForProjectInput, ListBuildBatchesForProjectOutput } from "../models/models_0"; +import type { ListBuildBatchesForProjectInput, ListBuildBatchesForProjectOutput } from "../models/models_0"; import { ListBuildBatchesForProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListBuildsCommand.ts b/clients/client-codebuild/src/commands/ListBuildsCommand.ts index e0f842d940c1d..cc8a93fb65564 100644 --- a/clients/client-codebuild/src/commands/ListBuildsCommand.ts +++ b/clients/client-codebuild/src/commands/ListBuildsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBuildsInput, ListBuildsOutput } from "../models/models_0"; +import type { ListBuildsInput, ListBuildsOutput } from "../models/models_0"; import { ListBuilds } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListBuildsForProjectCommand.ts b/clients/client-codebuild/src/commands/ListBuildsForProjectCommand.ts index 22f67eb3df648..710d1a16ba235 100644 --- a/clients/client-codebuild/src/commands/ListBuildsForProjectCommand.ts +++ b/clients/client-codebuild/src/commands/ListBuildsForProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBuildsForProjectInput, ListBuildsForProjectOutput } from "../models/models_0"; +import type { ListBuildsForProjectInput, ListBuildsForProjectOutput } from "../models/models_0"; import { ListBuildsForProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListCommandExecutionsForSandboxCommand.ts b/clients/client-codebuild/src/commands/ListCommandExecutionsForSandboxCommand.ts index 52dcfc76fe23c..4c6a2e8f659a1 100644 --- a/clients/client-codebuild/src/commands/ListCommandExecutionsForSandboxCommand.ts +++ b/clients/client-codebuild/src/commands/ListCommandExecutionsForSandboxCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCommandExecutionsForSandboxInput, ListCommandExecutionsForSandboxOutput } from "../models/models_0"; +import type { ListCommandExecutionsForSandboxInput, ListCommandExecutionsForSandboxOutput } from "../models/models_0"; import { ListCommandExecutionsForSandbox } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListCuratedEnvironmentImagesCommand.ts b/clients/client-codebuild/src/commands/ListCuratedEnvironmentImagesCommand.ts index 34de6e3d58cc0..9c4eb94a24009 100644 --- a/clients/client-codebuild/src/commands/ListCuratedEnvironmentImagesCommand.ts +++ b/clients/client-codebuild/src/commands/ListCuratedEnvironmentImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCuratedEnvironmentImagesInput, ListCuratedEnvironmentImagesOutput } from "../models/models_0"; +import type { ListCuratedEnvironmentImagesInput, ListCuratedEnvironmentImagesOutput } from "../models/models_0"; import { ListCuratedEnvironmentImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListFleetsCommand.ts b/clients/client-codebuild/src/commands/ListFleetsCommand.ts index 85450f79f6f14..5bb3d810e37bf 100644 --- a/clients/client-codebuild/src/commands/ListFleetsCommand.ts +++ b/clients/client-codebuild/src/commands/ListFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFleetsInput, ListFleetsOutput } from "../models/models_0"; +import type { ListFleetsInput, ListFleetsOutput } from "../models/models_0"; import { ListFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListProjectsCommand.ts b/clients/client-codebuild/src/commands/ListProjectsCommand.ts index 3b63516db7ba8..56b9ced216b08 100644 --- a/clients/client-codebuild/src/commands/ListProjectsCommand.ts +++ b/clients/client-codebuild/src/commands/ListProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProjectsInput, ListProjectsOutput } from "../models/models_0"; +import type { ListProjectsInput, ListProjectsOutput } from "../models/models_0"; import { ListProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListReportGroupsCommand.ts b/clients/client-codebuild/src/commands/ListReportGroupsCommand.ts index 0be351ce8ae8e..44f3b07adaa66 100644 --- a/clients/client-codebuild/src/commands/ListReportGroupsCommand.ts +++ b/clients/client-codebuild/src/commands/ListReportGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReportGroupsInput, ListReportGroupsOutput } from "../models/models_0"; +import type { ListReportGroupsInput, ListReportGroupsOutput } from "../models/models_0"; import { ListReportGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListReportsCommand.ts b/clients/client-codebuild/src/commands/ListReportsCommand.ts index f7378a6d52982..e5fb8a6193ae7 100644 --- a/clients/client-codebuild/src/commands/ListReportsCommand.ts +++ b/clients/client-codebuild/src/commands/ListReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReportsInput, ListReportsOutput } from "../models/models_0"; +import type { ListReportsInput, ListReportsOutput } from "../models/models_0"; import { ListReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListReportsForReportGroupCommand.ts b/clients/client-codebuild/src/commands/ListReportsForReportGroupCommand.ts index bc0d0538fa464..e93842b504cd7 100644 --- a/clients/client-codebuild/src/commands/ListReportsForReportGroupCommand.ts +++ b/clients/client-codebuild/src/commands/ListReportsForReportGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReportsForReportGroupInput, ListReportsForReportGroupOutput } from "../models/models_0"; +import type { ListReportsForReportGroupInput, ListReportsForReportGroupOutput } from "../models/models_0"; import { ListReportsForReportGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListSandboxesCommand.ts b/clients/client-codebuild/src/commands/ListSandboxesCommand.ts index 92a67bf792f59..cbb268f8bb3cc 100644 --- a/clients/client-codebuild/src/commands/ListSandboxesCommand.ts +++ b/clients/client-codebuild/src/commands/ListSandboxesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSandboxesInput, ListSandboxesOutput } from "../models/models_0"; +import type { ListSandboxesInput, ListSandboxesOutput } from "../models/models_0"; import { ListSandboxes } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListSandboxesForProjectCommand.ts b/clients/client-codebuild/src/commands/ListSandboxesForProjectCommand.ts index 56c3dcbae73d7..62efc3c217427 100644 --- a/clients/client-codebuild/src/commands/ListSandboxesForProjectCommand.ts +++ b/clients/client-codebuild/src/commands/ListSandboxesForProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSandboxesForProjectInput, ListSandboxesForProjectOutput } from "../models/models_0"; +import type { ListSandboxesForProjectInput, ListSandboxesForProjectOutput } from "../models/models_0"; import { ListSandboxesForProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListSharedProjectsCommand.ts b/clients/client-codebuild/src/commands/ListSharedProjectsCommand.ts index ac4d722441bb5..4388be97f5318 100644 --- a/clients/client-codebuild/src/commands/ListSharedProjectsCommand.ts +++ b/clients/client-codebuild/src/commands/ListSharedProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSharedProjectsInput, ListSharedProjectsOutput } from "../models/models_0"; +import type { ListSharedProjectsInput, ListSharedProjectsOutput } from "../models/models_0"; import { ListSharedProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListSharedReportGroupsCommand.ts b/clients/client-codebuild/src/commands/ListSharedReportGroupsCommand.ts index 5ed2f10731097..e40f105cc7404 100644 --- a/clients/client-codebuild/src/commands/ListSharedReportGroupsCommand.ts +++ b/clients/client-codebuild/src/commands/ListSharedReportGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSharedReportGroupsInput, ListSharedReportGroupsOutput } from "../models/models_0"; +import type { ListSharedReportGroupsInput, ListSharedReportGroupsOutput } from "../models/models_0"; import { ListSharedReportGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/ListSourceCredentialsCommand.ts b/clients/client-codebuild/src/commands/ListSourceCredentialsCommand.ts index c144ee24d0d39..d5dade42323ff 100644 --- a/clients/client-codebuild/src/commands/ListSourceCredentialsCommand.ts +++ b/clients/client-codebuild/src/commands/ListSourceCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSourceCredentialsInput, ListSourceCredentialsOutput } from "../models/models_0"; +import type { ListSourceCredentialsInput, ListSourceCredentialsOutput } from "../models/models_0"; import { ListSourceCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/PutResourcePolicyCommand.ts b/clients/client-codebuild/src/commands/PutResourcePolicyCommand.ts index cd11dc4102c0c..fd84a5c12f323 100644 --- a/clients/client-codebuild/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-codebuild/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0"; +import type { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts b/clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts index bf679ee33d39a..c4e32d3a9aae8 100644 --- a/clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts +++ b/clients/client-codebuild/src/commands/RetryBuildBatchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetryBuildBatchInput, RetryBuildBatchOutput } from "../models/models_0"; +import type { RetryBuildBatchInput, RetryBuildBatchOutput } from "../models/models_0"; import { RetryBuildBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/RetryBuildCommand.ts b/clients/client-codebuild/src/commands/RetryBuildCommand.ts index cf3278895e002..2444efcea9d96 100644 --- a/clients/client-codebuild/src/commands/RetryBuildCommand.ts +++ b/clients/client-codebuild/src/commands/RetryBuildCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetryBuildInput, RetryBuildOutput } from "../models/models_0"; +import type { RetryBuildInput, RetryBuildOutput } from "../models/models_0"; import { RetryBuild } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/StartBuildBatchCommand.ts b/clients/client-codebuild/src/commands/StartBuildBatchCommand.ts index 6c80a1cde3c55..c06084626dcd8 100644 --- a/clients/client-codebuild/src/commands/StartBuildBatchCommand.ts +++ b/clients/client-codebuild/src/commands/StartBuildBatchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartBuildBatchInput, StartBuildBatchOutput } from "../models/models_0"; +import type { StartBuildBatchInput, StartBuildBatchOutput } from "../models/models_0"; import { StartBuildBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/StartBuildCommand.ts b/clients/client-codebuild/src/commands/StartBuildCommand.ts index f552e2308a98d..3e06ad20f2d76 100644 --- a/clients/client-codebuild/src/commands/StartBuildCommand.ts +++ b/clients/client-codebuild/src/commands/StartBuildCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartBuildInput, StartBuildOutput } from "../models/models_0"; +import type { StartBuildInput, StartBuildOutput } from "../models/models_0"; import { StartBuild } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/StartCommandExecutionCommand.ts b/clients/client-codebuild/src/commands/StartCommandExecutionCommand.ts index 207efbcd154d1..9bbf009f58f3b 100644 --- a/clients/client-codebuild/src/commands/StartCommandExecutionCommand.ts +++ b/clients/client-codebuild/src/commands/StartCommandExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCommandExecutionInput, StartCommandExecutionOutput } from "../models/models_0"; +import type { StartCommandExecutionInput, StartCommandExecutionOutput } from "../models/models_0"; import { StartCommandExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/StartSandboxCommand.ts b/clients/client-codebuild/src/commands/StartSandboxCommand.ts index 761f458c00589..3aa56ce6a61f8 100644 --- a/clients/client-codebuild/src/commands/StartSandboxCommand.ts +++ b/clients/client-codebuild/src/commands/StartSandboxCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSandboxInput, StartSandboxOutput } from "../models/models_0"; +import type { StartSandboxInput, StartSandboxOutput } from "../models/models_0"; import { StartSandbox } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/StartSandboxConnectionCommand.ts b/clients/client-codebuild/src/commands/StartSandboxConnectionCommand.ts index b58bd0397f653..d8a274904e7a0 100644 --- a/clients/client-codebuild/src/commands/StartSandboxConnectionCommand.ts +++ b/clients/client-codebuild/src/commands/StartSandboxConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSandboxConnectionInput, StartSandboxConnectionOutput } from "../models/models_0"; +import type { StartSandboxConnectionInput, StartSandboxConnectionOutput } from "../models/models_0"; import { StartSandboxConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/StopBuildBatchCommand.ts b/clients/client-codebuild/src/commands/StopBuildBatchCommand.ts index ddb6737e8cad2..ffbed5895ed8c 100644 --- a/clients/client-codebuild/src/commands/StopBuildBatchCommand.ts +++ b/clients/client-codebuild/src/commands/StopBuildBatchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopBuildBatchInput, StopBuildBatchOutput } from "../models/models_0"; +import type { StopBuildBatchInput, StopBuildBatchOutput } from "../models/models_0"; import { StopBuildBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/StopBuildCommand.ts b/clients/client-codebuild/src/commands/StopBuildCommand.ts index d2efd02a46501..491b1dc7bd285 100644 --- a/clients/client-codebuild/src/commands/StopBuildCommand.ts +++ b/clients/client-codebuild/src/commands/StopBuildCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopBuildInput, StopBuildOutput } from "../models/models_0"; +import type { StopBuildInput, StopBuildOutput } from "../models/models_0"; import { StopBuild } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/StopSandboxCommand.ts b/clients/client-codebuild/src/commands/StopSandboxCommand.ts index fb9a89a7c8718..a5ab474413efa 100644 --- a/clients/client-codebuild/src/commands/StopSandboxCommand.ts +++ b/clients/client-codebuild/src/commands/StopSandboxCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopSandboxInput, StopSandboxOutput } from "../models/models_0"; +import type { StopSandboxInput, StopSandboxOutput } from "../models/models_0"; import { StopSandbox } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/UpdateFleetCommand.ts b/clients/client-codebuild/src/commands/UpdateFleetCommand.ts index 3813c6f7f1a6f..70ba6fa69a6ca 100644 --- a/clients/client-codebuild/src/commands/UpdateFleetCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFleetInput, UpdateFleetOutput } from "../models/models_0"; +import type { UpdateFleetInput, UpdateFleetOutput } from "../models/models_0"; import { UpdateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/UpdateProjectCommand.ts b/clients/client-codebuild/src/commands/UpdateProjectCommand.ts index ee855a7e406ce..38aef25c5208b 100644 --- a/clients/client-codebuild/src/commands/UpdateProjectCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProjectInput, UpdateProjectOutput } from "../models/models_0"; +import type { UpdateProjectInput, UpdateProjectOutput } from "../models/models_0"; import { UpdateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/UpdateProjectVisibilityCommand.ts b/clients/client-codebuild/src/commands/UpdateProjectVisibilityCommand.ts index ddacfea65ef75..3e8c9fb31e790 100644 --- a/clients/client-codebuild/src/commands/UpdateProjectVisibilityCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateProjectVisibilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProjectVisibilityInput, UpdateProjectVisibilityOutput } from "../models/models_0"; +import type { UpdateProjectVisibilityInput, UpdateProjectVisibilityOutput } from "../models/models_0"; import { UpdateProjectVisibility } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/UpdateReportGroupCommand.ts b/clients/client-codebuild/src/commands/UpdateReportGroupCommand.ts index 2ac7bc2524e2a..9b06373ece596 100644 --- a/clients/client-codebuild/src/commands/UpdateReportGroupCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateReportGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReportGroupInput, UpdateReportGroupOutput } from "../models/models_0"; +import type { UpdateReportGroupInput, UpdateReportGroupOutput } from "../models/models_0"; import { UpdateReportGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/commands/UpdateWebhookCommand.ts b/clients/client-codebuild/src/commands/UpdateWebhookCommand.ts index 0f828cb936d14..6c7a3e031835c 100644 --- a/clients/client-codebuild/src/commands/UpdateWebhookCommand.ts +++ b/clients/client-codebuild/src/commands/UpdateWebhookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; +import type { CodeBuildClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeBuildClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWebhookInput, UpdateWebhookOutput } from "../models/models_0"; +import type { UpdateWebhookInput, UpdateWebhookOutput } from "../models/models_0"; import { UpdateWebhook } from "../schemas/schemas_0"; /** diff --git a/clients/client-codebuild/src/endpoint/EndpointParameters.ts b/clients/client-codebuild/src/endpoint/EndpointParameters.ts index d0149490af12b..2160579e59611 100644 --- a/clients/client-codebuild/src/endpoint/EndpointParameters.ts +++ b/clients/client-codebuild/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codebuild/src/endpoint/endpointResolver.ts b/clients/client-codebuild/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codebuild/src/endpoint/endpointResolver.ts +++ b/clients/client-codebuild/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codebuild/src/extensionConfiguration.ts b/clients/client-codebuild/src/extensionConfiguration.ts index a07d3290b0e20..77d9dcd0b3a4b 100644 --- a/clients/client-codebuild/src/extensionConfiguration.ts +++ b/clients/client-codebuild/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codebuild/src/models/CodeBuildServiceException.ts b/clients/client-codebuild/src/models/CodeBuildServiceException.ts index b0415461fc937..9edc077edf78c 100644 --- a/clients/client-codebuild/src/models/CodeBuildServiceException.ts +++ b/clients/client-codebuild/src/models/CodeBuildServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codebuild/src/models/errors.ts b/clients/client-codebuild/src/models/errors.ts index 3f3d29098ae02..00d1388c31e72 100644 --- a/clients/client-codebuild/src/models/errors.ts +++ b/clients/client-codebuild/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeBuildServiceException as __BaseException } from "./CodeBuildServiceException"; diff --git a/clients/client-codebuild/src/pagination/DescribeCodeCoveragesPaginator.ts b/clients/client-codebuild/src/pagination/DescribeCodeCoveragesPaginator.ts index 6875cdd5fcb34..c930e28dab0ca 100644 --- a/clients/client-codebuild/src/pagination/DescribeCodeCoveragesPaginator.ts +++ b/clients/client-codebuild/src/pagination/DescribeCodeCoveragesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/DescribeTestCasesPaginator.ts b/clients/client-codebuild/src/pagination/DescribeTestCasesPaginator.ts index d488847d16fd0..f24186f34fd30 100644 --- a/clients/client-codebuild/src/pagination/DescribeTestCasesPaginator.ts +++ b/clients/client-codebuild/src/pagination/DescribeTestCasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/Interfaces.ts b/clients/client-codebuild/src/pagination/Interfaces.ts index 4977e0bb8830f..61fe0d7053f62 100644 --- a/clients/client-codebuild/src/pagination/Interfaces.ts +++ b/clients/client-codebuild/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; diff --git a/clients/client-codebuild/src/pagination/ListBuildBatchesForProjectPaginator.ts b/clients/client-codebuild/src/pagination/ListBuildBatchesForProjectPaginator.ts index 4b6ad51a8a98e..ffc16c1a751b7 100644 --- a/clients/client-codebuild/src/pagination/ListBuildBatchesForProjectPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListBuildBatchesForProjectPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListBuildBatchesPaginator.ts b/clients/client-codebuild/src/pagination/ListBuildBatchesPaginator.ts index 5023d7fc094c2..a49b6aa65de3f 100644 --- a/clients/client-codebuild/src/pagination/ListBuildBatchesPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListBuildBatchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListBuildsForProjectPaginator.ts b/clients/client-codebuild/src/pagination/ListBuildsForProjectPaginator.ts index ef7cbe8cfa5e6..50b17a8c7fb96 100644 --- a/clients/client-codebuild/src/pagination/ListBuildsForProjectPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListBuildsForProjectPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListBuildsPaginator.ts b/clients/client-codebuild/src/pagination/ListBuildsPaginator.ts index bcf6b0c68bc1d..1380ce5a13681 100644 --- a/clients/client-codebuild/src/pagination/ListBuildsPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListBuildsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { ListBuildsCommand, ListBuildsCommandInput, ListBuildsCommandOutput } from "../commands/ListBuildsCommand"; diff --git a/clients/client-codebuild/src/pagination/ListCommandExecutionsForSandboxPaginator.ts b/clients/client-codebuild/src/pagination/ListCommandExecutionsForSandboxPaginator.ts index b1708f136540e..fd4c640bf0281 100644 --- a/clients/client-codebuild/src/pagination/ListCommandExecutionsForSandboxPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListCommandExecutionsForSandboxPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListFleetsPaginator.ts b/clients/client-codebuild/src/pagination/ListFleetsPaginator.ts index 81a565ac20d32..848cceac7c1ac 100644 --- a/clients/client-codebuild/src/pagination/ListFleetsPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListFleetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { ListFleetsCommand, ListFleetsCommandInput, ListFleetsCommandOutput } from "../commands/ListFleetsCommand"; diff --git a/clients/client-codebuild/src/pagination/ListProjectsPaginator.ts b/clients/client-codebuild/src/pagination/ListProjectsPaginator.ts index daa458489135c..518857ccf2c3c 100644 --- a/clients/client-codebuild/src/pagination/ListProjectsPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListReportGroupsPaginator.ts b/clients/client-codebuild/src/pagination/ListReportGroupsPaginator.ts index 7a64e5cc9bbb1..3f83781834351 100644 --- a/clients/client-codebuild/src/pagination/ListReportGroupsPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListReportGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListReportsForReportGroupPaginator.ts b/clients/client-codebuild/src/pagination/ListReportsForReportGroupPaginator.ts index 6b2eca7336cd7..f064dc9c38b74 100644 --- a/clients/client-codebuild/src/pagination/ListReportsForReportGroupPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListReportsForReportGroupPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListReportsPaginator.ts b/clients/client-codebuild/src/pagination/ListReportsPaginator.ts index a65ad6b4a15f2..b9c1fc37bf265 100644 --- a/clients/client-codebuild/src/pagination/ListReportsPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { ListReportsCommand, ListReportsCommandInput, ListReportsCommandOutput } from "../commands/ListReportsCommand"; diff --git a/clients/client-codebuild/src/pagination/ListSandboxesForProjectPaginator.ts b/clients/client-codebuild/src/pagination/ListSandboxesForProjectPaginator.ts index e01eaa16e01e4..365ccd481786c 100644 --- a/clients/client-codebuild/src/pagination/ListSandboxesForProjectPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListSandboxesForProjectPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListSandboxesPaginator.ts b/clients/client-codebuild/src/pagination/ListSandboxesPaginator.ts index 2417cd98d0536..184dc38beb2a5 100644 --- a/clients/client-codebuild/src/pagination/ListSandboxesPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListSandboxesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListSharedProjectsPaginator.ts b/clients/client-codebuild/src/pagination/ListSharedProjectsPaginator.ts index c53630929a6df..1e54ddda7ec66 100644 --- a/clients/client-codebuild/src/pagination/ListSharedProjectsPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListSharedProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/pagination/ListSharedReportGroupsPaginator.ts b/clients/client-codebuild/src/pagination/ListSharedReportGroupsPaginator.ts index 1fb5b0822f009..59f5de6089ab0 100644 --- a/clients/client-codebuild/src/pagination/ListSharedReportGroupsPaginator.ts +++ b/clients/client-codebuild/src/pagination/ListSharedReportGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeBuildClient } from "../CodeBuildClient"; import { diff --git a/clients/client-codebuild/src/runtimeConfig.browser.ts b/clients/client-codebuild/src/runtimeConfig.browser.ts index 8483f015e1eb1..4b9aa8cff2bb3 100644 --- a/clients/client-codebuild/src/runtimeConfig.browser.ts +++ b/clients/client-codebuild/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeBuildClientConfig } from "./CodeBuildClient"; + +import type { CodeBuildClientConfig } from "./CodeBuildClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codebuild/src/runtimeConfig.native.ts b/clients/client-codebuild/src/runtimeConfig.native.ts index 3a6135715b4b3..86c01b4cf4669 100644 --- a/clients/client-codebuild/src/runtimeConfig.native.ts +++ b/clients/client-codebuild/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeBuildClientConfig } from "./CodeBuildClient"; +import type { CodeBuildClientConfig } from "./CodeBuildClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codebuild/src/runtimeConfig.shared.ts b/clients/client-codebuild/src/runtimeConfig.shared.ts index afcefb5d3ffeb..9bd77b4ce29de 100644 --- a/clients/client-codebuild/src/runtimeConfig.shared.ts +++ b/clients/client-codebuild/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeBuildHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeBuildClientConfig } from "./CodeBuildClient"; +import type { CodeBuildClientConfig } from "./CodeBuildClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codebuild/src/runtimeConfig.ts b/clients/client-codebuild/src/runtimeConfig.ts index bc7e125dad49b..9a8c3c6619180 100644 --- a/clients/client-codebuild/src/runtimeConfig.ts +++ b/clients/client-codebuild/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeBuildClientConfig } from "./CodeBuildClient"; + +import type { CodeBuildClientConfig } from "./CodeBuildClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codebuild/src/runtimeExtensions.ts b/clients/client-codebuild/src/runtimeExtensions.ts index 7f96acc4054ea..6b2cd58501e37 100644 --- a/clients/client-codebuild/src/runtimeExtensions.ts +++ b/clients/client-codebuild/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeBuildExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeBuildExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codebuild/src/schemas/schemas_0.ts b/clients/client-codebuild/src/schemas/schemas_0.ts index bf084daab06ef..7080e4ad0aacd 100644 --- a/clients/client-codebuild/src/schemas/schemas_0.ts +++ b/clients/client-codebuild/src/schemas/schemas_0.ts @@ -609,7 +609,7 @@ const n0 = "com.amazonaws.codebuild"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-codecatalyst/package.json b/clients/client-codecatalyst/package.json index d4cf1304e2340..89ebcfca904f9 100644 --- a/clients/client-codecatalyst/package.json +++ b/clients/client-codecatalyst/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codecatalyst/src/CodeCatalyst.ts b/clients/client-codecatalyst/src/CodeCatalyst.ts index bbec5bfdd8044..64432577cbdf0 100644 --- a/clients/client-codecatalyst/src/CodeCatalyst.ts +++ b/clients/client-codecatalyst/src/CodeCatalyst.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeCatalystClient, CodeCatalystClientConfig } from "./CodeCatalystClient"; +import { CodeCatalystClient } from "./CodeCatalystClient"; import { CreateAccessTokenCommand, CreateAccessTokenCommandInput, diff --git a/clients/client-codecatalyst/src/CodeCatalystClient.ts b/clients/client-codecatalyst/src/CodeCatalystClient.ts index 74a7ce32484ff..270e9258b067d 100644 --- a/clients/client-codecatalyst/src/CodeCatalystClient.ts +++ b/clients/client-codecatalyst/src/CodeCatalystClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,39 +21,48 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeCatalystHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateAccessTokenCommandInput, CreateAccessTokenCommandOutput } from "./commands/CreateAccessTokenCommand"; @@ -146,7 +155,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codecatalyst/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codecatalyst/src/auth/httpAuthExtensionConfiguration.ts index 30a5417819a22..0c18890d9caad 100644 --- a/clients/client-codecatalyst/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codecatalyst/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { HttpAuthScheme, TokenIdentity, TokenIdentityProvider } from "@smithy/types"; +import { type HttpAuthScheme, TokenIdentity, TokenIdentityProvider } from "@smithy/types"; -import { CodeCatalystHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeCatalystHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codecatalyst/src/auth/httpAuthSchemeProvider.ts b/clients/client-codecatalyst/src/auth/httpAuthSchemeProvider.ts index de6ea7e13631b..6c3766f7c8a6b 100644 --- a/clients/client-codecatalyst/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codecatalyst/src/auth/httpAuthSchemeProvider.ts @@ -2,19 +2,19 @@ import { FromSsoInit } from "@aws-sdk/token-providers"; import { doesIdentityRequireRefresh, isIdentityExpired, memoizeIdentityProvider } from "@smithy/core"; import { + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParameters, + type HttpAuthSchemeParametersProvider, + type HttpAuthSchemeProvider, + type Provider, HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, - HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, - HttpAuthSchemeProvider, - Provider, TokenIdentity, TokenIdentityProvider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeCatalystClientResolvedConfig } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig } from "../CodeCatalystClient"; /** * @internal diff --git a/clients/client-codecatalyst/src/commands/CreateAccessTokenCommand.ts b/clients/client-codecatalyst/src/commands/CreateAccessTokenCommand.ts index 6800910dc71dc..c5498b140d1a5 100644 --- a/clients/client-codecatalyst/src/commands/CreateAccessTokenCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateAccessTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessTokenRequest, CreateAccessTokenResponse } from "../models/models_0"; +import type { CreateAccessTokenRequest, CreateAccessTokenResponse } from "../models/models_0"; import { CreateAccessToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/CreateDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/CreateDevEnvironmentCommand.ts index 75d095957a45d..68e8aae2059bf 100644 --- a/clients/client-codecatalyst/src/commands/CreateDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateDevEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDevEnvironmentRequest, CreateDevEnvironmentResponse } from "../models/models_0"; +import type { CreateDevEnvironmentRequest, CreateDevEnvironmentResponse } from "../models/models_0"; import { CreateDevEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/CreateProjectCommand.ts b/clients/client-codecatalyst/src/commands/CreateProjectCommand.ts index 4b7a20b037842..f08b9241d8b7b 100644 --- a/clients/client-codecatalyst/src/commands/CreateProjectCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; +import type { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; import { CreateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/CreateSourceRepositoryBranchCommand.ts b/clients/client-codecatalyst/src/commands/CreateSourceRepositoryBranchCommand.ts index 6ccf2e31dd1ff..72f58e71d8611 100644 --- a/clients/client-codecatalyst/src/commands/CreateSourceRepositoryBranchCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateSourceRepositoryBranchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSourceRepositoryBranchRequest, CreateSourceRepositoryBranchResponse } from "../models/models_0"; +import type { CreateSourceRepositoryBranchRequest, CreateSourceRepositoryBranchResponse } from "../models/models_0"; import { CreateSourceRepositoryBranch } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/CreateSourceRepositoryCommand.ts b/clients/client-codecatalyst/src/commands/CreateSourceRepositoryCommand.ts index 05d74996ecb83..6562fae15fbca 100644 --- a/clients/client-codecatalyst/src/commands/CreateSourceRepositoryCommand.ts +++ b/clients/client-codecatalyst/src/commands/CreateSourceRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSourceRepositoryRequest, CreateSourceRepositoryResponse } from "../models/models_0"; +import type { CreateSourceRepositoryRequest, CreateSourceRepositoryResponse } from "../models/models_0"; import { CreateSourceRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/DeleteAccessTokenCommand.ts b/clients/client-codecatalyst/src/commands/DeleteAccessTokenCommand.ts index 9de0bbee57df4..545b41d6357bb 100644 --- a/clients/client-codecatalyst/src/commands/DeleteAccessTokenCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteAccessTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessTokenRequest, DeleteAccessTokenResponse } from "../models/models_0"; +import type { DeleteAccessTokenRequest, DeleteAccessTokenResponse } from "../models/models_0"; import { DeleteAccessToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/DeleteDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/DeleteDevEnvironmentCommand.ts index a945ba7ffb9ac..2f97f5a96ce7d 100644 --- a/clients/client-codecatalyst/src/commands/DeleteDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteDevEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDevEnvironmentRequest, DeleteDevEnvironmentResponse } from "../models/models_0"; +import type { DeleteDevEnvironmentRequest, DeleteDevEnvironmentResponse } from "../models/models_0"; import { DeleteDevEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/DeleteProjectCommand.ts b/clients/client-codecatalyst/src/commands/DeleteProjectCommand.ts index e68ca87432970..d39f3b628c1a8 100644 --- a/clients/client-codecatalyst/src/commands/DeleteProjectCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; +import type { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; import { DeleteProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/DeleteSourceRepositoryCommand.ts b/clients/client-codecatalyst/src/commands/DeleteSourceRepositoryCommand.ts index 0f0885666b222..9b89d83449dd7 100644 --- a/clients/client-codecatalyst/src/commands/DeleteSourceRepositoryCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteSourceRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSourceRepositoryRequest, DeleteSourceRepositoryResponse } from "../models/models_0"; +import type { DeleteSourceRepositoryRequest, DeleteSourceRepositoryResponse } from "../models/models_0"; import { DeleteSourceRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/DeleteSpaceCommand.ts b/clients/client-codecatalyst/src/commands/DeleteSpaceCommand.ts index 5656fe2e0d3ca..db38254398f0f 100644 --- a/clients/client-codecatalyst/src/commands/DeleteSpaceCommand.ts +++ b/clients/client-codecatalyst/src/commands/DeleteSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSpaceRequest, DeleteSpaceResponse } from "../models/models_0"; +import type { DeleteSpaceRequest, DeleteSpaceResponse } from "../models/models_0"; import { DeleteSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/GetDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/GetDevEnvironmentCommand.ts index bedcff0c08dcc..52c363fcf88f2 100644 --- a/clients/client-codecatalyst/src/commands/GetDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetDevEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDevEnvironmentRequest, GetDevEnvironmentResponse } from "../models/models_0"; +import type { GetDevEnvironmentRequest, GetDevEnvironmentResponse } from "../models/models_0"; import { GetDevEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/GetProjectCommand.ts b/clients/client-codecatalyst/src/commands/GetProjectCommand.ts index 3205d3e176685..1f32ef157eff9 100644 --- a/clients/client-codecatalyst/src/commands/GetProjectCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProjectRequest, GetProjectResponse } from "../models/models_0"; +import type { GetProjectRequest, GetProjectResponse } from "../models/models_0"; import { GetProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/GetSourceRepositoryCloneUrlsCommand.ts b/clients/client-codecatalyst/src/commands/GetSourceRepositoryCloneUrlsCommand.ts index 8e29795b21d1a..71abc265533d3 100644 --- a/clients/client-codecatalyst/src/commands/GetSourceRepositoryCloneUrlsCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetSourceRepositoryCloneUrlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSourceRepositoryCloneUrlsRequest, GetSourceRepositoryCloneUrlsResponse } from "../models/models_0"; +import type { GetSourceRepositoryCloneUrlsRequest, GetSourceRepositoryCloneUrlsResponse } from "../models/models_0"; import { GetSourceRepositoryCloneUrls } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/GetSourceRepositoryCommand.ts b/clients/client-codecatalyst/src/commands/GetSourceRepositoryCommand.ts index ae32fda6b41f1..cf1b77b498534 100644 --- a/clients/client-codecatalyst/src/commands/GetSourceRepositoryCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetSourceRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSourceRepositoryRequest, GetSourceRepositoryResponse } from "../models/models_0"; +import type { GetSourceRepositoryRequest, GetSourceRepositoryResponse } from "../models/models_0"; import { GetSourceRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/GetSpaceCommand.ts b/clients/client-codecatalyst/src/commands/GetSpaceCommand.ts index 2ef19ce6987c7..c103884e7c606 100644 --- a/clients/client-codecatalyst/src/commands/GetSpaceCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSpaceRequest, GetSpaceResponse } from "../models/models_0"; +import type { GetSpaceRequest, GetSpaceResponse } from "../models/models_0"; import { GetSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/GetSubscriptionCommand.ts b/clients/client-codecatalyst/src/commands/GetSubscriptionCommand.ts index 7064762f56326..6787dab997ac6 100644 --- a/clients/client-codecatalyst/src/commands/GetSubscriptionCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSubscriptionRequest, GetSubscriptionResponse } from "../models/models_0"; +import type { GetSubscriptionRequest, GetSubscriptionResponse } from "../models/models_0"; import { GetSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/GetUserDetailsCommand.ts b/clients/client-codecatalyst/src/commands/GetUserDetailsCommand.ts index 5e1637d908b7b..12ac2825be2da 100644 --- a/clients/client-codecatalyst/src/commands/GetUserDetailsCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetUserDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserDetailsRequest, GetUserDetailsResponse } from "../models/models_0"; +import type { GetUserDetailsRequest, GetUserDetailsResponse } from "../models/models_0"; import { GetUserDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/GetWorkflowCommand.ts b/clients/client-codecatalyst/src/commands/GetWorkflowCommand.ts index b384e9dbc72d8..f4aaa6148c4b1 100644 --- a/clients/client-codecatalyst/src/commands/GetWorkflowCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; +import type { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; import { GetWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/GetWorkflowRunCommand.ts b/clients/client-codecatalyst/src/commands/GetWorkflowRunCommand.ts index 3c403b9789039..634b3808d9a79 100644 --- a/clients/client-codecatalyst/src/commands/GetWorkflowRunCommand.ts +++ b/clients/client-codecatalyst/src/commands/GetWorkflowRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkflowRunRequest, GetWorkflowRunResponse } from "../models/models_0"; +import type { GetWorkflowRunRequest, GetWorkflowRunResponse } from "../models/models_0"; import { GetWorkflowRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListAccessTokensCommand.ts b/clients/client-codecatalyst/src/commands/ListAccessTokensCommand.ts index dccfb04af16d0..a8ff9c1169d34 100644 --- a/clients/client-codecatalyst/src/commands/ListAccessTokensCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListAccessTokensCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessTokensRequest, ListAccessTokensResponse } from "../models/models_0"; +import type { ListAccessTokensRequest, ListAccessTokensResponse } from "../models/models_0"; import { ListAccessTokens } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListDevEnvironmentSessionsCommand.ts b/clients/client-codecatalyst/src/commands/ListDevEnvironmentSessionsCommand.ts index ae28b78242edc..c1f9abbd01255 100644 --- a/clients/client-codecatalyst/src/commands/ListDevEnvironmentSessionsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListDevEnvironmentSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevEnvironmentSessionsRequest, ListDevEnvironmentSessionsResponse } from "../models/models_0"; +import type { ListDevEnvironmentSessionsRequest, ListDevEnvironmentSessionsResponse } from "../models/models_0"; import { ListDevEnvironmentSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListDevEnvironmentsCommand.ts b/clients/client-codecatalyst/src/commands/ListDevEnvironmentsCommand.ts index 2acaf180d4c8b..e1233c7d09245 100644 --- a/clients/client-codecatalyst/src/commands/ListDevEnvironmentsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListDevEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevEnvironmentsRequest, ListDevEnvironmentsResponse } from "../models/models_0"; +import type { ListDevEnvironmentsRequest, ListDevEnvironmentsResponse } from "../models/models_0"; import { ListDevEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListEventLogsCommand.ts b/clients/client-codecatalyst/src/commands/ListEventLogsCommand.ts index 8429502058e7c..c6bf69998d110 100644 --- a/clients/client-codecatalyst/src/commands/ListEventLogsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListEventLogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventLogsRequest, ListEventLogsResponse } from "../models/models_0"; +import type { ListEventLogsRequest, ListEventLogsResponse } from "../models/models_0"; import { ListEventLogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListProjectsCommand.ts b/clients/client-codecatalyst/src/commands/ListProjectsCommand.ts index b937e301be21f..3097e7fa7de54 100644 --- a/clients/client-codecatalyst/src/commands/ListProjectsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProjectsRequest, ListProjectsResponse } from "../models/models_0"; +import type { ListProjectsRequest, ListProjectsResponse } from "../models/models_0"; import { ListProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListSourceRepositoriesCommand.ts b/clients/client-codecatalyst/src/commands/ListSourceRepositoriesCommand.ts index 2e9a5736609f1..50b553b2f8f9f 100644 --- a/clients/client-codecatalyst/src/commands/ListSourceRepositoriesCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListSourceRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSourceRepositoriesRequest, ListSourceRepositoriesResponse } from "../models/models_0"; +import type { ListSourceRepositoriesRequest, ListSourceRepositoriesResponse } from "../models/models_0"; import { ListSourceRepositories } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListSourceRepositoryBranchesCommand.ts b/clients/client-codecatalyst/src/commands/ListSourceRepositoryBranchesCommand.ts index 8f3587de1f313..2b34a457f2b92 100644 --- a/clients/client-codecatalyst/src/commands/ListSourceRepositoryBranchesCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListSourceRepositoryBranchesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSourceRepositoryBranchesRequest, ListSourceRepositoryBranchesResponse } from "../models/models_0"; +import type { ListSourceRepositoryBranchesRequest, ListSourceRepositoryBranchesResponse } from "../models/models_0"; import { ListSourceRepositoryBranches } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListSpacesCommand.ts b/clients/client-codecatalyst/src/commands/ListSpacesCommand.ts index 5c89e8f6f3172..08a331c1254b7 100644 --- a/clients/client-codecatalyst/src/commands/ListSpacesCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListSpacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSpacesRequest, ListSpacesResponse } from "../models/models_0"; +import type { ListSpacesRequest, ListSpacesResponse } from "../models/models_0"; import { ListSpaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListWorkflowRunsCommand.ts b/clients/client-codecatalyst/src/commands/ListWorkflowRunsCommand.ts index a9c9e9640bec4..fa5bd8b3682e2 100644 --- a/clients/client-codecatalyst/src/commands/ListWorkflowRunsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListWorkflowRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowRunsRequest, ListWorkflowRunsResponse } from "../models/models_0"; +import type { ListWorkflowRunsRequest, ListWorkflowRunsResponse } from "../models/models_0"; import { ListWorkflowRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/ListWorkflowsCommand.ts b/clients/client-codecatalyst/src/commands/ListWorkflowsCommand.ts index c6d68b407768f..e036cff4d226f 100644 --- a/clients/client-codecatalyst/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-codecatalyst/src/commands/ListWorkflowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; +import type { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; import { ListWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/StartDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/StartDevEnvironmentCommand.ts index 10fdac7913101..fc1bc90542766 100644 --- a/clients/client-codecatalyst/src/commands/StartDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/StartDevEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDevEnvironmentRequest, StartDevEnvironmentResponse } from "../models/models_0"; +import type { StartDevEnvironmentRequest, StartDevEnvironmentResponse } from "../models/models_0"; import { StartDevEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/StartDevEnvironmentSessionCommand.ts b/clients/client-codecatalyst/src/commands/StartDevEnvironmentSessionCommand.ts index 4d0779c7eba76..fbfab15caa0fe 100644 --- a/clients/client-codecatalyst/src/commands/StartDevEnvironmentSessionCommand.ts +++ b/clients/client-codecatalyst/src/commands/StartDevEnvironmentSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDevEnvironmentSessionRequest, StartDevEnvironmentSessionResponse } from "../models/models_0"; +import type { StartDevEnvironmentSessionRequest, StartDevEnvironmentSessionResponse } from "../models/models_0"; import { StartDevEnvironmentSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/StartWorkflowRunCommand.ts b/clients/client-codecatalyst/src/commands/StartWorkflowRunCommand.ts index 89a4b5e912c7f..8731d4e941483 100644 --- a/clients/client-codecatalyst/src/commands/StartWorkflowRunCommand.ts +++ b/clients/client-codecatalyst/src/commands/StartWorkflowRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartWorkflowRunRequest, StartWorkflowRunResponse } from "../models/models_0"; +import type { StartWorkflowRunRequest, StartWorkflowRunResponse } from "../models/models_0"; import { StartWorkflowRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/StopDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/StopDevEnvironmentCommand.ts index 1eb5b16f2f0ea..b310e4cefb41a 100644 --- a/clients/client-codecatalyst/src/commands/StopDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/StopDevEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDevEnvironmentRequest, StopDevEnvironmentResponse } from "../models/models_0"; +import type { StopDevEnvironmentRequest, StopDevEnvironmentResponse } from "../models/models_0"; import { StopDevEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/StopDevEnvironmentSessionCommand.ts b/clients/client-codecatalyst/src/commands/StopDevEnvironmentSessionCommand.ts index e4d596da06d0d..59ffaed4d9e0a 100644 --- a/clients/client-codecatalyst/src/commands/StopDevEnvironmentSessionCommand.ts +++ b/clients/client-codecatalyst/src/commands/StopDevEnvironmentSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDevEnvironmentSessionRequest, StopDevEnvironmentSessionResponse } from "../models/models_0"; +import type { StopDevEnvironmentSessionRequest, StopDevEnvironmentSessionResponse } from "../models/models_0"; import { StopDevEnvironmentSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/UpdateDevEnvironmentCommand.ts b/clients/client-codecatalyst/src/commands/UpdateDevEnvironmentCommand.ts index b677dc846af15..7b40120fba5a8 100644 --- a/clients/client-codecatalyst/src/commands/UpdateDevEnvironmentCommand.ts +++ b/clients/client-codecatalyst/src/commands/UpdateDevEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDevEnvironmentRequest, UpdateDevEnvironmentResponse } from "../models/models_0"; +import type { UpdateDevEnvironmentRequest, UpdateDevEnvironmentResponse } from "../models/models_0"; import { UpdateDevEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/UpdateProjectCommand.ts b/clients/client-codecatalyst/src/commands/UpdateProjectCommand.ts index f2b7a87eb9bbf..69bdd93bc6e0b 100644 --- a/clients/client-codecatalyst/src/commands/UpdateProjectCommand.ts +++ b/clients/client-codecatalyst/src/commands/UpdateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_0"; +import type { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_0"; import { UpdateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/UpdateSpaceCommand.ts b/clients/client-codecatalyst/src/commands/UpdateSpaceCommand.ts index 464d6b31d69f9..82c0066e6a0c4 100644 --- a/clients/client-codecatalyst/src/commands/UpdateSpaceCommand.ts +++ b/clients/client-codecatalyst/src/commands/UpdateSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSpaceRequest, UpdateSpaceResponse } from "../models/models_0"; +import type { UpdateSpaceRequest, UpdateSpaceResponse } from "../models/models_0"; import { UpdateSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/commands/VerifySessionCommand.ts b/clients/client-codecatalyst/src/commands/VerifySessionCommand.ts index 57f90fbac89e9..965d6343e3bdf 100644 --- a/clients/client-codecatalyst/src/commands/VerifySessionCommand.ts +++ b/clients/client-codecatalyst/src/commands/VerifySessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; +import type { CodeCatalystClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCatalystClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifySessionResponse } from "../models/models_0"; +import type { VerifySessionResponse } from "../models/models_0"; import { VerifySession } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecatalyst/src/endpoint/EndpointParameters.ts b/clients/client-codecatalyst/src/endpoint/EndpointParameters.ts index 53261b26509fd..9d3f2d96415d6 100644 --- a/clients/client-codecatalyst/src/endpoint/EndpointParameters.ts +++ b/clients/client-codecatalyst/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codecatalyst/src/endpoint/endpointResolver.ts b/clients/client-codecatalyst/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-codecatalyst/src/endpoint/endpointResolver.ts +++ b/clients/client-codecatalyst/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codecatalyst/src/extensionConfiguration.ts b/clients/client-codecatalyst/src/extensionConfiguration.ts index 9574c77b1b5de..a5f0b844f87b6 100644 --- a/clients/client-codecatalyst/src/extensionConfiguration.ts +++ b/clients/client-codecatalyst/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codecatalyst/src/models/CodeCatalystServiceException.ts b/clients/client-codecatalyst/src/models/CodeCatalystServiceException.ts index 9a9daba5e72cf..b644c476b21f6 100644 --- a/clients/client-codecatalyst/src/models/CodeCatalystServiceException.ts +++ b/clients/client-codecatalyst/src/models/CodeCatalystServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codecatalyst/src/models/errors.ts b/clients/client-codecatalyst/src/models/errors.ts index 0f09c15fbe9b7..e819720754117 100644 --- a/clients/client-codecatalyst/src/models/errors.ts +++ b/clients/client-codecatalyst/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeCatalystServiceException as __BaseException } from "./CodeCatalystServiceException"; diff --git a/clients/client-codecatalyst/src/pagination/Interfaces.ts b/clients/client-codecatalyst/src/pagination/Interfaces.ts index 5882216d882cd..c4200e6b788f4 100644 --- a/clients/client-codecatalyst/src/pagination/Interfaces.ts +++ b/clients/client-codecatalyst/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; diff --git a/clients/client-codecatalyst/src/pagination/ListAccessTokensPaginator.ts b/clients/client-codecatalyst/src/pagination/ListAccessTokensPaginator.ts index 6c7073a0c4337..8f0e48d979b32 100644 --- a/clients/client-codecatalyst/src/pagination/ListAccessTokensPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListAccessTokensPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { diff --git a/clients/client-codecatalyst/src/pagination/ListDevEnvironmentSessionsPaginator.ts b/clients/client-codecatalyst/src/pagination/ListDevEnvironmentSessionsPaginator.ts index 564e15312cf88..cb4030d13ed70 100644 --- a/clients/client-codecatalyst/src/pagination/ListDevEnvironmentSessionsPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListDevEnvironmentSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { diff --git a/clients/client-codecatalyst/src/pagination/ListDevEnvironmentsPaginator.ts b/clients/client-codecatalyst/src/pagination/ListDevEnvironmentsPaginator.ts index e37260ca2ac12..599b8fbf56785 100644 --- a/clients/client-codecatalyst/src/pagination/ListDevEnvironmentsPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListDevEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { diff --git a/clients/client-codecatalyst/src/pagination/ListEventLogsPaginator.ts b/clients/client-codecatalyst/src/pagination/ListEventLogsPaginator.ts index 00446a0c130ed..07ee3991291a2 100644 --- a/clients/client-codecatalyst/src/pagination/ListEventLogsPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListEventLogsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { diff --git a/clients/client-codecatalyst/src/pagination/ListProjectsPaginator.ts b/clients/client-codecatalyst/src/pagination/ListProjectsPaginator.ts index ec0d87582e128..3a8f564ed6ea7 100644 --- a/clients/client-codecatalyst/src/pagination/ListProjectsPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { diff --git a/clients/client-codecatalyst/src/pagination/ListSourceRepositoriesPaginator.ts b/clients/client-codecatalyst/src/pagination/ListSourceRepositoriesPaginator.ts index 21093692aee38..6d05c9efe7e48 100644 --- a/clients/client-codecatalyst/src/pagination/ListSourceRepositoriesPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListSourceRepositoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { diff --git a/clients/client-codecatalyst/src/pagination/ListSourceRepositoryBranchesPaginator.ts b/clients/client-codecatalyst/src/pagination/ListSourceRepositoryBranchesPaginator.ts index 9195e2b09a61d..bea2bb2f3253b 100644 --- a/clients/client-codecatalyst/src/pagination/ListSourceRepositoryBranchesPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListSourceRepositoryBranchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { diff --git a/clients/client-codecatalyst/src/pagination/ListSpacesPaginator.ts b/clients/client-codecatalyst/src/pagination/ListSpacesPaginator.ts index 944135cc7d655..6db8ad09d381a 100644 --- a/clients/client-codecatalyst/src/pagination/ListSpacesPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListSpacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { ListSpacesCommand, ListSpacesCommandInput, ListSpacesCommandOutput } from "../commands/ListSpacesCommand"; diff --git a/clients/client-codecatalyst/src/pagination/ListWorkflowRunsPaginator.ts b/clients/client-codecatalyst/src/pagination/ListWorkflowRunsPaginator.ts index b005287fab0dd..497a82db66703 100644 --- a/clients/client-codecatalyst/src/pagination/ListWorkflowRunsPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListWorkflowRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { diff --git a/clients/client-codecatalyst/src/pagination/ListWorkflowsPaginator.ts b/clients/client-codecatalyst/src/pagination/ListWorkflowsPaginator.ts index a1b93c79440bd..c972497ea3687 100644 --- a/clients/client-codecatalyst/src/pagination/ListWorkflowsPaginator.ts +++ b/clients/client-codecatalyst/src/pagination/ListWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCatalystClient } from "../CodeCatalystClient"; import { diff --git a/clients/client-codecatalyst/src/runtimeConfig.browser.ts b/clients/client-codecatalyst/src/runtimeConfig.browser.ts index 1003d6c445db0..4867e842d1bcd 100644 --- a/clients/client-codecatalyst/src/runtimeConfig.browser.ts +++ b/clients/client-codecatalyst/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeCatalystClientConfig } from "./CodeCatalystClient"; + +import type { CodeCatalystClientConfig } from "./CodeCatalystClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codecatalyst/src/runtimeConfig.native.ts b/clients/client-codecatalyst/src/runtimeConfig.native.ts index 39e37ac7ef6ee..bada8d16bae5b 100644 --- a/clients/client-codecatalyst/src/runtimeConfig.native.ts +++ b/clients/client-codecatalyst/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeCatalystClientConfig } from "./CodeCatalystClient"; +import type { CodeCatalystClientConfig } from "./CodeCatalystClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codecatalyst/src/runtimeConfig.shared.ts b/clients/client-codecatalyst/src/runtimeConfig.shared.ts index f68e4a24abdcd..c4334715fce31 100644 --- a/clients/client-codecatalyst/src/runtimeConfig.shared.ts +++ b/clients/client-codecatalyst/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { HttpBearerAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeCatalystHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeCatalystClientConfig } from "./CodeCatalystClient"; +import type { CodeCatalystClientConfig } from "./CodeCatalystClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codecatalyst/src/runtimeConfig.ts b/clients/client-codecatalyst/src/runtimeConfig.ts index 2f1d2a2b1ea54..27f58ba38f3ff 100644 --- a/clients/client-codecatalyst/src/runtimeConfig.ts +++ b/clients/client-codecatalyst/src/runtimeConfig.ts @@ -16,14 +16,14 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; -import { IdentityProviderConfig } from "@smithy/types"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import type { IdentityProviderConfig } from "@smithy/types"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeCatalystClientConfig } from "./CodeCatalystClient"; + +import type { CodeCatalystClientConfig } from "./CodeCatalystClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codecatalyst/src/runtimeExtensions.ts b/clients/client-codecatalyst/src/runtimeExtensions.ts index 1f0a86dfcfa11..004864799ad8b 100644 --- a/clients/client-codecatalyst/src/runtimeExtensions.ts +++ b/clients/client-codecatalyst/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeCatalystExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeCatalystExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codecatalyst/src/schemas/schemas_0.ts b/clients/client-codecatalyst/src/schemas/schemas_0.ts index cfef0f2bdbe10..420fafc557db2 100644 --- a/clients/client-codecatalyst/src/schemas/schemas_0.ts +++ b/clients/client-codecatalyst/src/schemas/schemas_0.ts @@ -269,7 +269,7 @@ const n0 = "com.amazonaws.codecatalyst"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-codecommit/package.json b/clients/client-codecommit/package.json index ab66b3b9953df..d194a0a7b8bb4 100644 --- a/clients/client-codecommit/package.json +++ b/clients/client-codecommit/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codecommit/src/CodeCommit.ts b/clients/client-codecommit/src/CodeCommit.ts index 9cb3a527a324b..7a86920bfbc84 100644 --- a/clients/client-codecommit/src/CodeCommit.ts +++ b/clients/client-codecommit/src/CodeCommit.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeCommitClient, CodeCommitClientConfig } from "./CodeCommitClient"; +import { CodeCommitClient } from "./CodeCommitClient"; import { AssociateApprovalRuleTemplateWithRepositoryCommand, AssociateApprovalRuleTemplateWithRepositoryCommandInput, diff --git a/clients/client-codecommit/src/CodeCommitClient.ts b/clients/client-codecommit/src/CodeCommitClient.ts index ac92e9df35e3c..6380f8f4ac122 100644 --- a/clients/client-codecommit/src/CodeCommitClient.ts +++ b/clients/client-codecommit/src/CodeCommitClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeCommitHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -293,7 +302,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codecommit/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codecommit/src/auth/httpAuthExtensionConfiguration.ts index e552e0abc9611..591a775c668c8 100644 --- a/clients/client-codecommit/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codecommit/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodeCommitHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeCommitHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codecommit/src/auth/httpAuthSchemeProvider.ts b/clients/client-codecommit/src/auth/httpAuthSchemeProvider.ts index 661df084da27f..2c5376601c2df 100644 --- a/clients/client-codecommit/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codecommit/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeCommitClientConfig, CodeCommitClientResolvedConfig } from "../CodeCommitClient"; +import { type CodeCommitClientResolvedConfig, CodeCommitClientConfig } from "../CodeCommitClient"; /** * @internal diff --git a/clients/client-codecommit/src/commands/AssociateApprovalRuleTemplateWithRepositoryCommand.ts b/clients/client-codecommit/src/commands/AssociateApprovalRuleTemplateWithRepositoryCommand.ts index 6a9496714b8df..02020b1392f5c 100644 --- a/clients/client-codecommit/src/commands/AssociateApprovalRuleTemplateWithRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/AssociateApprovalRuleTemplateWithRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateApprovalRuleTemplateWithRepositoryInput } from "../models/models_0"; +import type { AssociateApprovalRuleTemplateWithRepositoryInput } from "../models/models_0"; import { AssociateApprovalRuleTemplateWithRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand.ts b/clients/client-codecommit/src/commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand.ts index ad96d773129aa..7e9de131569a5 100644 --- a/clients/client-codecommit/src/commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand.ts +++ b/clients/client-codecommit/src/commands/BatchAssociateApprovalRuleTemplateWithRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchAssociateApprovalRuleTemplateWithRepositoriesInput, BatchAssociateApprovalRuleTemplateWithRepositoriesOutput, } from "../models/models_0"; diff --git a/clients/client-codecommit/src/commands/BatchDescribeMergeConflictsCommand.ts b/clients/client-codecommit/src/commands/BatchDescribeMergeConflictsCommand.ts index 24991b5237110..805e93cfabebd 100644 --- a/clients/client-codecommit/src/commands/BatchDescribeMergeConflictsCommand.ts +++ b/clients/client-codecommit/src/commands/BatchDescribeMergeConflictsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDescribeMergeConflictsInput, BatchDescribeMergeConflictsOutput } from "../models/models_0"; +import type { BatchDescribeMergeConflictsInput, BatchDescribeMergeConflictsOutput } from "../models/models_0"; import { BatchDescribeMergeConflicts } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand.ts b/clients/client-codecommit/src/commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand.ts index e51880462efc1..dda01f9030ee1 100644 --- a/clients/client-codecommit/src/commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand.ts +++ b/clients/client-codecommit/src/commands/BatchDisassociateApprovalRuleTemplateFromRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchDisassociateApprovalRuleTemplateFromRepositoriesInput, BatchDisassociateApprovalRuleTemplateFromRepositoriesOutput, } from "../models/models_0"; diff --git a/clients/client-codecommit/src/commands/BatchGetCommitsCommand.ts b/clients/client-codecommit/src/commands/BatchGetCommitsCommand.ts index ae069224a8a95..423a8af2290d8 100644 --- a/clients/client-codecommit/src/commands/BatchGetCommitsCommand.ts +++ b/clients/client-codecommit/src/commands/BatchGetCommitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetCommitsInput, BatchGetCommitsOutput } from "../models/models_0"; +import type { BatchGetCommitsInput, BatchGetCommitsOutput } from "../models/models_0"; import { BatchGetCommits } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/BatchGetRepositoriesCommand.ts b/clients/client-codecommit/src/commands/BatchGetRepositoriesCommand.ts index 3b51c6d183fce..25f81ae767079 100644 --- a/clients/client-codecommit/src/commands/BatchGetRepositoriesCommand.ts +++ b/clients/client-codecommit/src/commands/BatchGetRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetRepositoriesInput, BatchGetRepositoriesOutput } from "../models/models_0"; +import type { BatchGetRepositoriesInput, BatchGetRepositoriesOutput } from "../models/models_0"; import { BatchGetRepositories } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/CreateApprovalRuleTemplateCommand.ts b/clients/client-codecommit/src/commands/CreateApprovalRuleTemplateCommand.ts index 691e0563a5d86..ea9a9d5949a20 100644 --- a/clients/client-codecommit/src/commands/CreateApprovalRuleTemplateCommand.ts +++ b/clients/client-codecommit/src/commands/CreateApprovalRuleTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApprovalRuleTemplateInput, CreateApprovalRuleTemplateOutput } from "../models/models_0"; +import type { CreateApprovalRuleTemplateInput, CreateApprovalRuleTemplateOutput } from "../models/models_0"; import { CreateApprovalRuleTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/CreateBranchCommand.ts b/clients/client-codecommit/src/commands/CreateBranchCommand.ts index 6bee5eda18d1d..711cd3e976404 100644 --- a/clients/client-codecommit/src/commands/CreateBranchCommand.ts +++ b/clients/client-codecommit/src/commands/CreateBranchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBranchInput } from "../models/models_0"; +import type { CreateBranchInput } from "../models/models_0"; import { CreateBranch } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/CreateCommitCommand.ts b/clients/client-codecommit/src/commands/CreateCommitCommand.ts index de2cb7fdbb33e..a85a43a0c0129 100644 --- a/clients/client-codecommit/src/commands/CreateCommitCommand.ts +++ b/clients/client-codecommit/src/commands/CreateCommitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCommitInput, CreateCommitOutput } from "../models/models_0"; +import type { CreateCommitInput, CreateCommitOutput } from "../models/models_0"; import { CreateCommit } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/CreatePullRequestApprovalRuleCommand.ts b/clients/client-codecommit/src/commands/CreatePullRequestApprovalRuleCommand.ts index 1f8a33ebc78f7..613519a1920f7 100644 --- a/clients/client-codecommit/src/commands/CreatePullRequestApprovalRuleCommand.ts +++ b/clients/client-codecommit/src/commands/CreatePullRequestApprovalRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePullRequestApprovalRuleInput, CreatePullRequestApprovalRuleOutput } from "../models/models_0"; +import type { CreatePullRequestApprovalRuleInput, CreatePullRequestApprovalRuleOutput } from "../models/models_0"; import { CreatePullRequestApprovalRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/CreatePullRequestCommand.ts b/clients/client-codecommit/src/commands/CreatePullRequestCommand.ts index 629a048da692b..fcf327a489411 100644 --- a/clients/client-codecommit/src/commands/CreatePullRequestCommand.ts +++ b/clients/client-codecommit/src/commands/CreatePullRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePullRequestInput, CreatePullRequestOutput } from "../models/models_0"; +import type { CreatePullRequestInput, CreatePullRequestOutput } from "../models/models_0"; import { CreatePullRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/CreateRepositoryCommand.ts b/clients/client-codecommit/src/commands/CreateRepositoryCommand.ts index e39d559c86353..fb210045d9596 100644 --- a/clients/client-codecommit/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/CreateRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRepositoryInput, CreateRepositoryOutput } from "../models/models_0"; +import type { CreateRepositoryInput, CreateRepositoryOutput } from "../models/models_0"; import { CreateRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/CreateUnreferencedMergeCommitCommand.ts b/clients/client-codecommit/src/commands/CreateUnreferencedMergeCommitCommand.ts index 49a820a830487..5268109db7089 100644 --- a/clients/client-codecommit/src/commands/CreateUnreferencedMergeCommitCommand.ts +++ b/clients/client-codecommit/src/commands/CreateUnreferencedMergeCommitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUnreferencedMergeCommitInput, CreateUnreferencedMergeCommitOutput } from "../models/models_0"; +import type { CreateUnreferencedMergeCommitInput, CreateUnreferencedMergeCommitOutput } from "../models/models_0"; import { CreateUnreferencedMergeCommit } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/DeleteApprovalRuleTemplateCommand.ts b/clients/client-codecommit/src/commands/DeleteApprovalRuleTemplateCommand.ts index 2023a256bcf10..5f661a3b79a3e 100644 --- a/clients/client-codecommit/src/commands/DeleteApprovalRuleTemplateCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteApprovalRuleTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApprovalRuleTemplateInput, DeleteApprovalRuleTemplateOutput } from "../models/models_0"; +import type { DeleteApprovalRuleTemplateInput, DeleteApprovalRuleTemplateOutput } from "../models/models_0"; import { DeleteApprovalRuleTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/DeleteBranchCommand.ts b/clients/client-codecommit/src/commands/DeleteBranchCommand.ts index efd838716bbac..f13fbf587390e 100644 --- a/clients/client-codecommit/src/commands/DeleteBranchCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteBranchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBranchInput, DeleteBranchOutput } from "../models/models_0"; +import type { DeleteBranchInput, DeleteBranchOutput } from "../models/models_0"; import { DeleteBranch } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/DeleteCommentContentCommand.ts b/clients/client-codecommit/src/commands/DeleteCommentContentCommand.ts index 18f8f41d9be56..0a06c5d3cc5b7 100644 --- a/clients/client-codecommit/src/commands/DeleteCommentContentCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteCommentContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCommentContentInput, DeleteCommentContentOutput } from "../models/models_0"; +import type { DeleteCommentContentInput, DeleteCommentContentOutput } from "../models/models_0"; import { DeleteCommentContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/DeleteFileCommand.ts b/clients/client-codecommit/src/commands/DeleteFileCommand.ts index a72c732c7573a..b35868df3a895 100644 --- a/clients/client-codecommit/src/commands/DeleteFileCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteFileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFileInput, DeleteFileOutput } from "../models/models_0"; +import type { DeleteFileInput, DeleteFileOutput } from "../models/models_0"; import { DeleteFile } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/DeletePullRequestApprovalRuleCommand.ts b/clients/client-codecommit/src/commands/DeletePullRequestApprovalRuleCommand.ts index 55befb99e53f0..f75f74583fe29 100644 --- a/clients/client-codecommit/src/commands/DeletePullRequestApprovalRuleCommand.ts +++ b/clients/client-codecommit/src/commands/DeletePullRequestApprovalRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePullRequestApprovalRuleInput, DeletePullRequestApprovalRuleOutput } from "../models/models_0"; +import type { DeletePullRequestApprovalRuleInput, DeletePullRequestApprovalRuleOutput } from "../models/models_0"; import { DeletePullRequestApprovalRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/DeleteRepositoryCommand.ts b/clients/client-codecommit/src/commands/DeleteRepositoryCommand.ts index 862495a709006..b081513db1c8f 100644 --- a/clients/client-codecommit/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/DeleteRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryInput, DeleteRepositoryOutput } from "../models/models_0"; +import type { DeleteRepositoryInput, DeleteRepositoryOutput } from "../models/models_0"; import { DeleteRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/DescribeMergeConflictsCommand.ts b/clients/client-codecommit/src/commands/DescribeMergeConflictsCommand.ts index ad068338cc195..78aeaeb7dc70f 100644 --- a/clients/client-codecommit/src/commands/DescribeMergeConflictsCommand.ts +++ b/clients/client-codecommit/src/commands/DescribeMergeConflictsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMergeConflictsInput, DescribeMergeConflictsOutput } from "../models/models_0"; +import type { DescribeMergeConflictsInput, DescribeMergeConflictsOutput } from "../models/models_0"; import { DescribeMergeConflicts } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/DescribePullRequestEventsCommand.ts b/clients/client-codecommit/src/commands/DescribePullRequestEventsCommand.ts index 12ddb024a1e52..7c24cbcd9aec4 100644 --- a/clients/client-codecommit/src/commands/DescribePullRequestEventsCommand.ts +++ b/clients/client-codecommit/src/commands/DescribePullRequestEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePullRequestEventsInput, DescribePullRequestEventsOutput } from "../models/models_0"; +import type { DescribePullRequestEventsInput, DescribePullRequestEventsOutput } from "../models/models_0"; import { DescribePullRequestEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/DisassociateApprovalRuleTemplateFromRepositoryCommand.ts b/clients/client-codecommit/src/commands/DisassociateApprovalRuleTemplateFromRepositoryCommand.ts index 09244cad9e391..9434e7f737e39 100644 --- a/clients/client-codecommit/src/commands/DisassociateApprovalRuleTemplateFromRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/DisassociateApprovalRuleTemplateFromRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateApprovalRuleTemplateFromRepositoryInput } from "../models/models_0"; +import type { DisassociateApprovalRuleTemplateFromRepositoryInput } from "../models/models_0"; import { DisassociateApprovalRuleTemplateFromRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/EvaluatePullRequestApprovalRulesCommand.ts b/clients/client-codecommit/src/commands/EvaluatePullRequestApprovalRulesCommand.ts index ec40124c29dfe..81ea353d6e1f8 100644 --- a/clients/client-codecommit/src/commands/EvaluatePullRequestApprovalRulesCommand.ts +++ b/clients/client-codecommit/src/commands/EvaluatePullRequestApprovalRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvaluatePullRequestApprovalRulesInput, EvaluatePullRequestApprovalRulesOutput } from "../models/models_0"; +import type { EvaluatePullRequestApprovalRulesInput, EvaluatePullRequestApprovalRulesOutput } from "../models/models_0"; import { EvaluatePullRequestApprovalRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetApprovalRuleTemplateCommand.ts b/clients/client-codecommit/src/commands/GetApprovalRuleTemplateCommand.ts index ae3b74c90986c..7b05942b5c26a 100644 --- a/clients/client-codecommit/src/commands/GetApprovalRuleTemplateCommand.ts +++ b/clients/client-codecommit/src/commands/GetApprovalRuleTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApprovalRuleTemplateInput, GetApprovalRuleTemplateOutput } from "../models/models_0"; +import type { GetApprovalRuleTemplateInput, GetApprovalRuleTemplateOutput } from "../models/models_0"; import { GetApprovalRuleTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetBlobCommand.ts b/clients/client-codecommit/src/commands/GetBlobCommand.ts index e0caf3237e05d..11537d89d69b8 100644 --- a/clients/client-codecommit/src/commands/GetBlobCommand.ts +++ b/clients/client-codecommit/src/commands/GetBlobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBlobInput, GetBlobOutput } from "../models/models_0"; +import type { GetBlobInput, GetBlobOutput } from "../models/models_0"; import { GetBlob } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetBranchCommand.ts b/clients/client-codecommit/src/commands/GetBranchCommand.ts index 932de97e7b50b..55dbc02d9673e 100644 --- a/clients/client-codecommit/src/commands/GetBranchCommand.ts +++ b/clients/client-codecommit/src/commands/GetBranchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBranchInput, GetBranchOutput } from "../models/models_0"; +import type { GetBranchInput, GetBranchOutput } from "../models/models_0"; import { GetBranch } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetCommentCommand.ts b/clients/client-codecommit/src/commands/GetCommentCommand.ts index 6624060976cbd..1a54f6548b558 100644 --- a/clients/client-codecommit/src/commands/GetCommentCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCommentInput, GetCommentOutput } from "../models/models_0"; +import type { GetCommentInput, GetCommentOutput } from "../models/models_0"; import { GetComment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetCommentReactionsCommand.ts b/clients/client-codecommit/src/commands/GetCommentReactionsCommand.ts index 8872b9acc0cdc..3335804a30a6f 100644 --- a/clients/client-codecommit/src/commands/GetCommentReactionsCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommentReactionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCommentReactionsInput, GetCommentReactionsOutput } from "../models/models_0"; +import type { GetCommentReactionsInput, GetCommentReactionsOutput } from "../models/models_0"; import { GetCommentReactions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetCommentsForComparedCommitCommand.ts b/clients/client-codecommit/src/commands/GetCommentsForComparedCommitCommand.ts index c43c5a00e2ee2..818dc8e403a70 100644 --- a/clients/client-codecommit/src/commands/GetCommentsForComparedCommitCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommentsForComparedCommitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCommentsForComparedCommitInput, GetCommentsForComparedCommitOutput } from "../models/models_0"; +import type { GetCommentsForComparedCommitInput, GetCommentsForComparedCommitOutput } from "../models/models_0"; import { GetCommentsForComparedCommit } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetCommentsForPullRequestCommand.ts b/clients/client-codecommit/src/commands/GetCommentsForPullRequestCommand.ts index ead6c6ff16ae1..3d23c02a20389 100644 --- a/clients/client-codecommit/src/commands/GetCommentsForPullRequestCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommentsForPullRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCommentsForPullRequestInput, GetCommentsForPullRequestOutput } from "../models/models_0"; +import type { GetCommentsForPullRequestInput, GetCommentsForPullRequestOutput } from "../models/models_0"; import { GetCommentsForPullRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetCommitCommand.ts b/clients/client-codecommit/src/commands/GetCommitCommand.ts index 8802289f48e05..917db52e6dddc 100644 --- a/clients/client-codecommit/src/commands/GetCommitCommand.ts +++ b/clients/client-codecommit/src/commands/GetCommitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCommitInput, GetCommitOutput } from "../models/models_0"; +import type { GetCommitInput, GetCommitOutput } from "../models/models_0"; import { GetCommit } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetDifferencesCommand.ts b/clients/client-codecommit/src/commands/GetDifferencesCommand.ts index 39bfd97df155b..862478a049a9d 100644 --- a/clients/client-codecommit/src/commands/GetDifferencesCommand.ts +++ b/clients/client-codecommit/src/commands/GetDifferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDifferencesInput, GetDifferencesOutput } from "../models/models_0"; +import type { GetDifferencesInput, GetDifferencesOutput } from "../models/models_0"; import { GetDifferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetFileCommand.ts b/clients/client-codecommit/src/commands/GetFileCommand.ts index 2043b0918cc57..2209c81512c49 100644 --- a/clients/client-codecommit/src/commands/GetFileCommand.ts +++ b/clients/client-codecommit/src/commands/GetFileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFileInput, GetFileOutput } from "../models/models_0"; +import type { GetFileInput, GetFileOutput } from "../models/models_0"; import { GetFile } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetFolderCommand.ts b/clients/client-codecommit/src/commands/GetFolderCommand.ts index e62d946439589..80bf4730c262a 100644 --- a/clients/client-codecommit/src/commands/GetFolderCommand.ts +++ b/clients/client-codecommit/src/commands/GetFolderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFolderInput, GetFolderOutput } from "../models/models_0"; +import type { GetFolderInput, GetFolderOutput } from "../models/models_0"; import { GetFolder } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetMergeCommitCommand.ts b/clients/client-codecommit/src/commands/GetMergeCommitCommand.ts index 44feba0c181c1..ba4a2d3d749f8 100644 --- a/clients/client-codecommit/src/commands/GetMergeCommitCommand.ts +++ b/clients/client-codecommit/src/commands/GetMergeCommitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMergeCommitInput, GetMergeCommitOutput } from "../models/models_0"; +import type { GetMergeCommitInput, GetMergeCommitOutput } from "../models/models_0"; import { GetMergeCommit } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetMergeConflictsCommand.ts b/clients/client-codecommit/src/commands/GetMergeConflictsCommand.ts index 7665a22290a46..2b0e0b86ca79f 100644 --- a/clients/client-codecommit/src/commands/GetMergeConflictsCommand.ts +++ b/clients/client-codecommit/src/commands/GetMergeConflictsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMergeConflictsInput, GetMergeConflictsOutput } from "../models/models_0"; +import type { GetMergeConflictsInput, GetMergeConflictsOutput } from "../models/models_0"; import { GetMergeConflicts } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetMergeOptionsCommand.ts b/clients/client-codecommit/src/commands/GetMergeOptionsCommand.ts index f88ef0c2f621f..34a884698443f 100644 --- a/clients/client-codecommit/src/commands/GetMergeOptionsCommand.ts +++ b/clients/client-codecommit/src/commands/GetMergeOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMergeOptionsInput, GetMergeOptionsOutput } from "../models/models_0"; +import type { GetMergeOptionsInput, GetMergeOptionsOutput } from "../models/models_0"; import { GetMergeOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetPullRequestApprovalStatesCommand.ts b/clients/client-codecommit/src/commands/GetPullRequestApprovalStatesCommand.ts index 2617782c961da..e6b9b026504e2 100644 --- a/clients/client-codecommit/src/commands/GetPullRequestApprovalStatesCommand.ts +++ b/clients/client-codecommit/src/commands/GetPullRequestApprovalStatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPullRequestApprovalStatesInput, GetPullRequestApprovalStatesOutput } from "../models/models_0"; +import type { GetPullRequestApprovalStatesInput, GetPullRequestApprovalStatesOutput } from "../models/models_0"; import { GetPullRequestApprovalStates } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetPullRequestCommand.ts b/clients/client-codecommit/src/commands/GetPullRequestCommand.ts index de9204fbb0e31..4f487d1f376fc 100644 --- a/clients/client-codecommit/src/commands/GetPullRequestCommand.ts +++ b/clients/client-codecommit/src/commands/GetPullRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPullRequestInput, GetPullRequestOutput } from "../models/models_0"; +import type { GetPullRequestInput, GetPullRequestOutput } from "../models/models_0"; import { GetPullRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetPullRequestOverrideStateCommand.ts b/clients/client-codecommit/src/commands/GetPullRequestOverrideStateCommand.ts index b85d53ccf94de..a92ac7c19b710 100644 --- a/clients/client-codecommit/src/commands/GetPullRequestOverrideStateCommand.ts +++ b/clients/client-codecommit/src/commands/GetPullRequestOverrideStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPullRequestOverrideStateInput, GetPullRequestOverrideStateOutput } from "../models/models_0"; +import type { GetPullRequestOverrideStateInput, GetPullRequestOverrideStateOutput } from "../models/models_0"; import { GetPullRequestOverrideState } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetRepositoryCommand.ts b/clients/client-codecommit/src/commands/GetRepositoryCommand.ts index bc1ca2c35deb5..0b4dd4d3a33b8 100644 --- a/clients/client-codecommit/src/commands/GetRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/GetRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryInput, GetRepositoryOutput } from "../models/models_0"; +import type { GetRepositoryInput, GetRepositoryOutput } from "../models/models_0"; import { GetRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/GetRepositoryTriggersCommand.ts b/clients/client-codecommit/src/commands/GetRepositoryTriggersCommand.ts index 3cd0743ba54f8..15cef312ae5d9 100644 --- a/clients/client-codecommit/src/commands/GetRepositoryTriggersCommand.ts +++ b/clients/client-codecommit/src/commands/GetRepositoryTriggersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryTriggersInput, GetRepositoryTriggersOutput } from "../models/models_0"; +import type { GetRepositoryTriggersInput, GetRepositoryTriggersOutput } from "../models/models_0"; import { GetRepositoryTriggers } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/ListApprovalRuleTemplatesCommand.ts b/clients/client-codecommit/src/commands/ListApprovalRuleTemplatesCommand.ts index 61eb521e3294e..d1f8855cbaa1a 100644 --- a/clients/client-codecommit/src/commands/ListApprovalRuleTemplatesCommand.ts +++ b/clients/client-codecommit/src/commands/ListApprovalRuleTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApprovalRuleTemplatesInput, ListApprovalRuleTemplatesOutput } from "../models/models_0"; +import type { ListApprovalRuleTemplatesInput, ListApprovalRuleTemplatesOutput } from "../models/models_0"; import { ListApprovalRuleTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand.ts b/clients/client-codecommit/src/commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand.ts index 5774b8c7f4660..be81d401359e9 100644 --- a/clients/client-codecommit/src/commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand.ts +++ b/clients/client-codecommit/src/commands/ListAssociatedApprovalRuleTemplatesForRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAssociatedApprovalRuleTemplatesForRepositoryInput, ListAssociatedApprovalRuleTemplatesForRepositoryOutput, } from "../models/models_0"; diff --git a/clients/client-codecommit/src/commands/ListBranchesCommand.ts b/clients/client-codecommit/src/commands/ListBranchesCommand.ts index 4a636f584b3d4..147432ca939c7 100644 --- a/clients/client-codecommit/src/commands/ListBranchesCommand.ts +++ b/clients/client-codecommit/src/commands/ListBranchesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBranchesInput, ListBranchesOutput } from "../models/models_0"; +import type { ListBranchesInput, ListBranchesOutput } from "../models/models_0"; import { ListBranches } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/ListFileCommitHistoryCommand.ts b/clients/client-codecommit/src/commands/ListFileCommitHistoryCommand.ts index 28e076282d439..da452ca20628a 100644 --- a/clients/client-codecommit/src/commands/ListFileCommitHistoryCommand.ts +++ b/clients/client-codecommit/src/commands/ListFileCommitHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFileCommitHistoryRequest, ListFileCommitHistoryResponse } from "../models/models_0"; +import type { ListFileCommitHistoryRequest, ListFileCommitHistoryResponse } from "../models/models_0"; import { ListFileCommitHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/ListPullRequestsCommand.ts b/clients/client-codecommit/src/commands/ListPullRequestsCommand.ts index df0d816221267..42f8684251375 100644 --- a/clients/client-codecommit/src/commands/ListPullRequestsCommand.ts +++ b/clients/client-codecommit/src/commands/ListPullRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPullRequestsInput, ListPullRequestsOutput } from "../models/models_0"; +import type { ListPullRequestsInput, ListPullRequestsOutput } from "../models/models_0"; import { ListPullRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/ListRepositoriesCommand.ts b/clients/client-codecommit/src/commands/ListRepositoriesCommand.ts index 382459ab71eb1..c11d3e0061c68 100644 --- a/clients/client-codecommit/src/commands/ListRepositoriesCommand.ts +++ b/clients/client-codecommit/src/commands/ListRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositoriesInput, ListRepositoriesOutput } from "../models/models_0"; +import type { ListRepositoriesInput, ListRepositoriesOutput } from "../models/models_0"; import { ListRepositories } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/ListRepositoriesForApprovalRuleTemplateCommand.ts b/clients/client-codecommit/src/commands/ListRepositoriesForApprovalRuleTemplateCommand.ts index a72b982c8eacf..f516ce41fa73d 100644 --- a/clients/client-codecommit/src/commands/ListRepositoriesForApprovalRuleTemplateCommand.ts +++ b/clients/client-codecommit/src/commands/ListRepositoriesForApprovalRuleTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListRepositoriesForApprovalRuleTemplateInput, ListRepositoriesForApprovalRuleTemplateOutput, } from "../models/models_0"; diff --git a/clients/client-codecommit/src/commands/ListTagsForResourceCommand.ts b/clients/client-codecommit/src/commands/ListTagsForResourceCommand.ts index 1a09ca8fdb1f9..b54b6b4eb5159 100644 --- a/clients/client-codecommit/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codecommit/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/MergeBranchesByFastForwardCommand.ts b/clients/client-codecommit/src/commands/MergeBranchesByFastForwardCommand.ts index f93ffce265055..54147f175f957 100644 --- a/clients/client-codecommit/src/commands/MergeBranchesByFastForwardCommand.ts +++ b/clients/client-codecommit/src/commands/MergeBranchesByFastForwardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MergeBranchesByFastForwardInput, MergeBranchesByFastForwardOutput } from "../models/models_0"; +import type { MergeBranchesByFastForwardInput, MergeBranchesByFastForwardOutput } from "../models/models_0"; import { MergeBranchesByFastForward } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/MergeBranchesBySquashCommand.ts b/clients/client-codecommit/src/commands/MergeBranchesBySquashCommand.ts index 16f1c24a093b9..ce52aecf1cad6 100644 --- a/clients/client-codecommit/src/commands/MergeBranchesBySquashCommand.ts +++ b/clients/client-codecommit/src/commands/MergeBranchesBySquashCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MergeBranchesBySquashInput, MergeBranchesBySquashOutput } from "../models/models_0"; +import type { MergeBranchesBySquashInput, MergeBranchesBySquashOutput } from "../models/models_0"; import { MergeBranchesBySquash } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/MergeBranchesByThreeWayCommand.ts b/clients/client-codecommit/src/commands/MergeBranchesByThreeWayCommand.ts index 637373f91ba5b..dccc3744e0fa5 100644 --- a/clients/client-codecommit/src/commands/MergeBranchesByThreeWayCommand.ts +++ b/clients/client-codecommit/src/commands/MergeBranchesByThreeWayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MergeBranchesByThreeWayInput, MergeBranchesByThreeWayOutput } from "../models/models_0"; +import type { MergeBranchesByThreeWayInput, MergeBranchesByThreeWayOutput } from "../models/models_0"; import { MergeBranchesByThreeWay } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/MergePullRequestByFastForwardCommand.ts b/clients/client-codecommit/src/commands/MergePullRequestByFastForwardCommand.ts index badf834cdae29..ff4e00c91ee9b 100644 --- a/clients/client-codecommit/src/commands/MergePullRequestByFastForwardCommand.ts +++ b/clients/client-codecommit/src/commands/MergePullRequestByFastForwardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MergePullRequestByFastForwardInput, MergePullRequestByFastForwardOutput } from "../models/models_0"; +import type { MergePullRequestByFastForwardInput, MergePullRequestByFastForwardOutput } from "../models/models_0"; import { MergePullRequestByFastForward } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/MergePullRequestBySquashCommand.ts b/clients/client-codecommit/src/commands/MergePullRequestBySquashCommand.ts index d963b3e156832..3d7b87ea7ff1a 100644 --- a/clients/client-codecommit/src/commands/MergePullRequestBySquashCommand.ts +++ b/clients/client-codecommit/src/commands/MergePullRequestBySquashCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MergePullRequestBySquashInput, MergePullRequestBySquashOutput } from "../models/models_0"; +import type { MergePullRequestBySquashInput, MergePullRequestBySquashOutput } from "../models/models_0"; import { MergePullRequestBySquash } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/MergePullRequestByThreeWayCommand.ts b/clients/client-codecommit/src/commands/MergePullRequestByThreeWayCommand.ts index 73389e9316ded..2a7bd7406b21a 100644 --- a/clients/client-codecommit/src/commands/MergePullRequestByThreeWayCommand.ts +++ b/clients/client-codecommit/src/commands/MergePullRequestByThreeWayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MergePullRequestByThreeWayInput, MergePullRequestByThreeWayOutput } from "../models/models_0"; +import type { MergePullRequestByThreeWayInput, MergePullRequestByThreeWayOutput } from "../models/models_0"; import { MergePullRequestByThreeWay } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/OverridePullRequestApprovalRulesCommand.ts b/clients/client-codecommit/src/commands/OverridePullRequestApprovalRulesCommand.ts index 3812fd6c9b81c..3e30df839093a 100644 --- a/clients/client-codecommit/src/commands/OverridePullRequestApprovalRulesCommand.ts +++ b/clients/client-codecommit/src/commands/OverridePullRequestApprovalRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OverridePullRequestApprovalRulesInput } from "../models/models_0"; +import type { OverridePullRequestApprovalRulesInput } from "../models/models_0"; import { OverridePullRequestApprovalRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/PostCommentForComparedCommitCommand.ts b/clients/client-codecommit/src/commands/PostCommentForComparedCommitCommand.ts index 379d3ff21c69a..933e7bedadf49 100644 --- a/clients/client-codecommit/src/commands/PostCommentForComparedCommitCommand.ts +++ b/clients/client-codecommit/src/commands/PostCommentForComparedCommitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostCommentForComparedCommitInput, PostCommentForComparedCommitOutput } from "../models/models_0"; +import type { PostCommentForComparedCommitInput, PostCommentForComparedCommitOutput } from "../models/models_0"; import { PostCommentForComparedCommit } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/PostCommentForPullRequestCommand.ts b/clients/client-codecommit/src/commands/PostCommentForPullRequestCommand.ts index f430c1302f2fc..a28edff4dae13 100644 --- a/clients/client-codecommit/src/commands/PostCommentForPullRequestCommand.ts +++ b/clients/client-codecommit/src/commands/PostCommentForPullRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostCommentForPullRequestInput, PostCommentForPullRequestOutput } from "../models/models_0"; +import type { PostCommentForPullRequestInput, PostCommentForPullRequestOutput } from "../models/models_0"; import { PostCommentForPullRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/PostCommentReplyCommand.ts b/clients/client-codecommit/src/commands/PostCommentReplyCommand.ts index 117bd0f5fa23d..3e24a1cc013b9 100644 --- a/clients/client-codecommit/src/commands/PostCommentReplyCommand.ts +++ b/clients/client-codecommit/src/commands/PostCommentReplyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostCommentReplyInput, PostCommentReplyOutput } from "../models/models_0"; +import type { PostCommentReplyInput, PostCommentReplyOutput } from "../models/models_0"; import { PostCommentReply } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/PutCommentReactionCommand.ts b/clients/client-codecommit/src/commands/PutCommentReactionCommand.ts index 3be31dab8ce88..94424dbe33029 100644 --- a/clients/client-codecommit/src/commands/PutCommentReactionCommand.ts +++ b/clients/client-codecommit/src/commands/PutCommentReactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutCommentReactionInput } from "../models/models_0"; +import type { PutCommentReactionInput } from "../models/models_0"; import { PutCommentReaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/PutFileCommand.ts b/clients/client-codecommit/src/commands/PutFileCommand.ts index 4a61ec7896404..0ee4fef811dc9 100644 --- a/clients/client-codecommit/src/commands/PutFileCommand.ts +++ b/clients/client-codecommit/src/commands/PutFileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutFileInput, PutFileOutput } from "../models/models_0"; +import type { PutFileInput, PutFileOutput } from "../models/models_0"; import { PutFile } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/PutRepositoryTriggersCommand.ts b/clients/client-codecommit/src/commands/PutRepositoryTriggersCommand.ts index ceefb2fb8a0c0..62f0664c6c978 100644 --- a/clients/client-codecommit/src/commands/PutRepositoryTriggersCommand.ts +++ b/clients/client-codecommit/src/commands/PutRepositoryTriggersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRepositoryTriggersInput, PutRepositoryTriggersOutput } from "../models/models_0"; +import type { PutRepositoryTriggersInput, PutRepositoryTriggersOutput } from "../models/models_0"; import { PutRepositoryTriggers } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/TagResourceCommand.ts b/clients/client-codecommit/src/commands/TagResourceCommand.ts index 859388c725c84..ac7287dcd4d01 100644 --- a/clients/client-codecommit/src/commands/TagResourceCommand.ts +++ b/clients/client-codecommit/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput } from "../models/models_0"; +import type { TagResourceInput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/TestRepositoryTriggersCommand.ts b/clients/client-codecommit/src/commands/TestRepositoryTriggersCommand.ts index 37f298f7c24ff..c3b9402927bf0 100644 --- a/clients/client-codecommit/src/commands/TestRepositoryTriggersCommand.ts +++ b/clients/client-codecommit/src/commands/TestRepositoryTriggersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestRepositoryTriggersInput, TestRepositoryTriggersOutput } from "../models/models_0"; +import type { TestRepositoryTriggersInput, TestRepositoryTriggersOutput } from "../models/models_0"; import { TestRepositoryTriggers } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UntagResourceCommand.ts b/clients/client-codecommit/src/commands/UntagResourceCommand.ts index 71d714b0e6632..cdd4598db6820 100644 --- a/clients/client-codecommit/src/commands/UntagResourceCommand.ts +++ b/clients/client-codecommit/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput } from "../models/models_0"; +import type { UntagResourceInput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateContentCommand.ts b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateContentCommand.ts index 04e912c5683e6..bdf8f1566ce77 100644 --- a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateContentCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateContentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApprovalRuleTemplateContentInput, UpdateApprovalRuleTemplateContentOutput } from "../models/models_0"; +import type { + UpdateApprovalRuleTemplateContentInput, + UpdateApprovalRuleTemplateContentOutput, +} from "../models/models_0"; import { UpdateApprovalRuleTemplateContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateDescriptionCommand.ts b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateDescriptionCommand.ts index 89ae6bced5950..08a6c6715612e 100644 --- a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateDescriptionCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateDescriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateApprovalRuleTemplateDescriptionInput, UpdateApprovalRuleTemplateDescriptionOutput, } from "../models/models_0"; diff --git a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateNameCommand.ts b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateNameCommand.ts index e7b9d3365b97a..97111f4408a66 100644 --- a/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateNameCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateApprovalRuleTemplateNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApprovalRuleTemplateNameInput, UpdateApprovalRuleTemplateNameOutput } from "../models/models_0"; +import type { UpdateApprovalRuleTemplateNameInput, UpdateApprovalRuleTemplateNameOutput } from "../models/models_0"; import { UpdateApprovalRuleTemplateName } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdateCommentCommand.ts b/clients/client-codecommit/src/commands/UpdateCommentCommand.ts index af5ab04687321..7312005ffeeb9 100644 --- a/clients/client-codecommit/src/commands/UpdateCommentCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateCommentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCommentInput, UpdateCommentOutput } from "../models/models_0"; +import type { UpdateCommentInput, UpdateCommentOutput } from "../models/models_0"; import { UpdateComment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdateDefaultBranchCommand.ts b/clients/client-codecommit/src/commands/UpdateDefaultBranchCommand.ts index c4f4d9fd6e76b..e70114c9c5714 100644 --- a/clients/client-codecommit/src/commands/UpdateDefaultBranchCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateDefaultBranchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDefaultBranchInput } from "../models/models_0"; +import type { UpdateDefaultBranchInput } from "../models/models_0"; import { UpdateDefaultBranch } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestApprovalRuleContentCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestApprovalRuleContentCommand.ts index c03efceb4b07b..89bf2c7e9f4cd 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestApprovalRuleContentCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestApprovalRuleContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdatePullRequestApprovalRuleContentInput, UpdatePullRequestApprovalRuleContentOutput, } from "../models/models_0"; diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestApprovalStateCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestApprovalStateCommand.ts index 8f8e2125b4d0f..3ecc533c5492c 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestApprovalStateCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestApprovalStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePullRequestApprovalStateInput } from "../models/models_0"; +import type { UpdatePullRequestApprovalStateInput } from "../models/models_0"; import { UpdatePullRequestApprovalState } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestDescriptionCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestDescriptionCommand.ts index 40a0c1e09ff31..4f2b4190e49e3 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestDescriptionCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestDescriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePullRequestDescriptionInput, UpdatePullRequestDescriptionOutput } from "../models/models_0"; +import type { UpdatePullRequestDescriptionInput, UpdatePullRequestDescriptionOutput } from "../models/models_0"; import { UpdatePullRequestDescription } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestStatusCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestStatusCommand.ts index 7350073f87b94..dadf5f8e63f37 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestStatusCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePullRequestStatusInput, UpdatePullRequestStatusOutput } from "../models/models_0"; +import type { UpdatePullRequestStatusInput, UpdatePullRequestStatusOutput } from "../models/models_0"; import { UpdatePullRequestStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdatePullRequestTitleCommand.ts b/clients/client-codecommit/src/commands/UpdatePullRequestTitleCommand.ts index 7c83b8f01f0c4..b3c602a2c6314 100644 --- a/clients/client-codecommit/src/commands/UpdatePullRequestTitleCommand.ts +++ b/clients/client-codecommit/src/commands/UpdatePullRequestTitleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePullRequestTitleInput, UpdatePullRequestTitleOutput } from "../models/models_0"; +import type { UpdatePullRequestTitleInput, UpdatePullRequestTitleOutput } from "../models/models_0"; import { UpdatePullRequestTitle } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdateRepositoryDescriptionCommand.ts b/clients/client-codecommit/src/commands/UpdateRepositoryDescriptionCommand.ts index fcf83f8c3b183..ac3c7f67465e2 100644 --- a/clients/client-codecommit/src/commands/UpdateRepositoryDescriptionCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateRepositoryDescriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRepositoryDescriptionInput } from "../models/models_0"; +import type { UpdateRepositoryDescriptionInput } from "../models/models_0"; import { UpdateRepositoryDescription } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdateRepositoryEncryptionKeyCommand.ts b/clients/client-codecommit/src/commands/UpdateRepositoryEncryptionKeyCommand.ts index 2d90398dc0f32..1788603f4b1da 100644 --- a/clients/client-codecommit/src/commands/UpdateRepositoryEncryptionKeyCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateRepositoryEncryptionKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRepositoryEncryptionKeyInput, UpdateRepositoryEncryptionKeyOutput } from "../models/models_0"; +import type { UpdateRepositoryEncryptionKeyInput, UpdateRepositoryEncryptionKeyOutput } from "../models/models_0"; import { UpdateRepositoryEncryptionKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/commands/UpdateRepositoryNameCommand.ts b/clients/client-codecommit/src/commands/UpdateRepositoryNameCommand.ts index f8d81396323ea..a61cb60e750a4 100644 --- a/clients/client-codecommit/src/commands/UpdateRepositoryNameCommand.ts +++ b/clients/client-codecommit/src/commands/UpdateRepositoryNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; +import type { CodeCommitClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeCommitClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRepositoryNameInput } from "../models/models_0"; +import type { UpdateRepositoryNameInput } from "../models/models_0"; import { UpdateRepositoryName } from "../schemas/schemas_0"; /** diff --git a/clients/client-codecommit/src/endpoint/EndpointParameters.ts b/clients/client-codecommit/src/endpoint/EndpointParameters.ts index b96fc56e8aec7..8ad38c1555b53 100644 --- a/clients/client-codecommit/src/endpoint/EndpointParameters.ts +++ b/clients/client-codecommit/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codecommit/src/endpoint/endpointResolver.ts b/clients/client-codecommit/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codecommit/src/endpoint/endpointResolver.ts +++ b/clients/client-codecommit/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codecommit/src/extensionConfiguration.ts b/clients/client-codecommit/src/extensionConfiguration.ts index 36d158398a867..13a2a6e8ad0e5 100644 --- a/clients/client-codecommit/src/extensionConfiguration.ts +++ b/clients/client-codecommit/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codecommit/src/models/CodeCommitServiceException.ts b/clients/client-codecommit/src/models/CodeCommitServiceException.ts index 256d7c81a7602..00f3ec74dda04 100644 --- a/clients/client-codecommit/src/models/CodeCommitServiceException.ts +++ b/clients/client-codecommit/src/models/CodeCommitServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codecommit/src/models/errors.ts b/clients/client-codecommit/src/models/errors.ts index 815a5216a0023..6a1767de7f8a8 100644 --- a/clients/client-codecommit/src/models/errors.ts +++ b/clients/client-codecommit/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeCommitServiceException as __BaseException } from "./CodeCommitServiceException"; diff --git a/clients/client-codecommit/src/pagination/DescribeMergeConflictsPaginator.ts b/clients/client-codecommit/src/pagination/DescribeMergeConflictsPaginator.ts index ac43078d9f2ca..75935cfedc7a9 100644 --- a/clients/client-codecommit/src/pagination/DescribeMergeConflictsPaginator.ts +++ b/clients/client-codecommit/src/pagination/DescribeMergeConflictsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/DescribePullRequestEventsPaginator.ts b/clients/client-codecommit/src/pagination/DescribePullRequestEventsPaginator.ts index bb9c7d6f4913b..2c8d4903f0e3d 100644 --- a/clients/client-codecommit/src/pagination/DescribePullRequestEventsPaginator.ts +++ b/clients/client-codecommit/src/pagination/DescribePullRequestEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/GetCommentReactionsPaginator.ts b/clients/client-codecommit/src/pagination/GetCommentReactionsPaginator.ts index a9604b86ac443..918558cc1dc2c 100644 --- a/clients/client-codecommit/src/pagination/GetCommentReactionsPaginator.ts +++ b/clients/client-codecommit/src/pagination/GetCommentReactionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/GetCommentsForComparedCommitPaginator.ts b/clients/client-codecommit/src/pagination/GetCommentsForComparedCommitPaginator.ts index 78e27158945fd..829b3961728a7 100644 --- a/clients/client-codecommit/src/pagination/GetCommentsForComparedCommitPaginator.ts +++ b/clients/client-codecommit/src/pagination/GetCommentsForComparedCommitPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/GetCommentsForPullRequestPaginator.ts b/clients/client-codecommit/src/pagination/GetCommentsForPullRequestPaginator.ts index 140cf066d88c5..25f8be670fea9 100644 --- a/clients/client-codecommit/src/pagination/GetCommentsForPullRequestPaginator.ts +++ b/clients/client-codecommit/src/pagination/GetCommentsForPullRequestPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/GetDifferencesPaginator.ts b/clients/client-codecommit/src/pagination/GetDifferencesPaginator.ts index e9cf7c9bf5f02..05d25dbf184f4 100644 --- a/clients/client-codecommit/src/pagination/GetDifferencesPaginator.ts +++ b/clients/client-codecommit/src/pagination/GetDifferencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/GetMergeConflictsPaginator.ts b/clients/client-codecommit/src/pagination/GetMergeConflictsPaginator.ts index 0cc28277deb20..ce82416dc01a9 100644 --- a/clients/client-codecommit/src/pagination/GetMergeConflictsPaginator.ts +++ b/clients/client-codecommit/src/pagination/GetMergeConflictsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/Interfaces.ts b/clients/client-codecommit/src/pagination/Interfaces.ts index 9e7811812fa72..2a8eb9af5706c 100644 --- a/clients/client-codecommit/src/pagination/Interfaces.ts +++ b/clients/client-codecommit/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; diff --git a/clients/client-codecommit/src/pagination/ListApprovalRuleTemplatesPaginator.ts b/clients/client-codecommit/src/pagination/ListApprovalRuleTemplatesPaginator.ts index b7a6da5e00292..fbadbb9b3aeae 100644 --- a/clients/client-codecommit/src/pagination/ListApprovalRuleTemplatesPaginator.ts +++ b/clients/client-codecommit/src/pagination/ListApprovalRuleTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.ts b/clients/client-codecommit/src/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.ts index c675a34e56463..b42cdc6cb725e 100644 --- a/clients/client-codecommit/src/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.ts +++ b/clients/client-codecommit/src/pagination/ListAssociatedApprovalRuleTemplatesForRepositoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/ListBranchesPaginator.ts b/clients/client-codecommit/src/pagination/ListBranchesPaginator.ts index ed9413d6021d9..ebd5a2123cd04 100644 --- a/clients/client-codecommit/src/pagination/ListBranchesPaginator.ts +++ b/clients/client-codecommit/src/pagination/ListBranchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/ListFileCommitHistoryPaginator.ts b/clients/client-codecommit/src/pagination/ListFileCommitHistoryPaginator.ts index 99ad27c07625f..c394c11037afd 100644 --- a/clients/client-codecommit/src/pagination/ListFileCommitHistoryPaginator.ts +++ b/clients/client-codecommit/src/pagination/ListFileCommitHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/ListPullRequestsPaginator.ts b/clients/client-codecommit/src/pagination/ListPullRequestsPaginator.ts index b0ef9a201dfce..39dc0df51d4a5 100644 --- a/clients/client-codecommit/src/pagination/ListPullRequestsPaginator.ts +++ b/clients/client-codecommit/src/pagination/ListPullRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/ListRepositoriesForApprovalRuleTemplatePaginator.ts b/clients/client-codecommit/src/pagination/ListRepositoriesForApprovalRuleTemplatePaginator.ts index bf909c1b432e8..1b5cdd10ebf91 100644 --- a/clients/client-codecommit/src/pagination/ListRepositoriesForApprovalRuleTemplatePaginator.ts +++ b/clients/client-codecommit/src/pagination/ListRepositoriesForApprovalRuleTemplatePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/pagination/ListRepositoriesPaginator.ts b/clients/client-codecommit/src/pagination/ListRepositoriesPaginator.ts index 1ad483495cf0d..92e8a8f4f312e 100644 --- a/clients/client-codecommit/src/pagination/ListRepositoriesPaginator.ts +++ b/clients/client-codecommit/src/pagination/ListRepositoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeCommitClient } from "../CodeCommitClient"; import { diff --git a/clients/client-codecommit/src/runtimeConfig.browser.ts b/clients/client-codecommit/src/runtimeConfig.browser.ts index 8338388aa6405..7037c155c2ec5 100644 --- a/clients/client-codecommit/src/runtimeConfig.browser.ts +++ b/clients/client-codecommit/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeCommitClientConfig } from "./CodeCommitClient"; + +import type { CodeCommitClientConfig } from "./CodeCommitClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codecommit/src/runtimeConfig.native.ts b/clients/client-codecommit/src/runtimeConfig.native.ts index 6ad361fa18d5d..39d5429cbe684 100644 --- a/clients/client-codecommit/src/runtimeConfig.native.ts +++ b/clients/client-codecommit/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeCommitClientConfig } from "./CodeCommitClient"; +import type { CodeCommitClientConfig } from "./CodeCommitClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codecommit/src/runtimeConfig.shared.ts b/clients/client-codecommit/src/runtimeConfig.shared.ts index 40fabdd06af10..ee0f1fbaea249 100644 --- a/clients/client-codecommit/src/runtimeConfig.shared.ts +++ b/clients/client-codecommit/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeCommitHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeCommitClientConfig } from "./CodeCommitClient"; +import type { CodeCommitClientConfig } from "./CodeCommitClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codecommit/src/runtimeConfig.ts b/clients/client-codecommit/src/runtimeConfig.ts index ad0823ae692c4..f0ccf366fc4b7 100644 --- a/clients/client-codecommit/src/runtimeConfig.ts +++ b/clients/client-codecommit/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeCommitClientConfig } from "./CodeCommitClient"; + +import type { CodeCommitClientConfig } from "./CodeCommitClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codecommit/src/runtimeExtensions.ts b/clients/client-codecommit/src/runtimeExtensions.ts index febb1fbd7a48e..3c832c53a9d5b 100644 --- a/clients/client-codecommit/src/runtimeExtensions.ts +++ b/clients/client-codecommit/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeCommitExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeCommitExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codecommit/src/schemas/schemas_0.ts b/clients/client-codecommit/src/schemas/schemas_0.ts index 51665f5251c2c..7886af9ac30fc 100644 --- a/clients/client-codecommit/src/schemas/schemas_0.ts +++ b/clients/client-codecommit/src/schemas/schemas_0.ts @@ -734,7 +734,7 @@ const n0 = "com.amazonaws.codecommit"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-codeconnections/package.json b/clients/client-codeconnections/package.json index 4a7d70d8826bd..94f6a8eef6014 100644 --- a/clients/client-codeconnections/package.json +++ b/clients/client-codeconnections/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codeconnections/src/CodeConnections.ts b/clients/client-codeconnections/src/CodeConnections.ts index bff2197c80006..1ce75b17ce334 100644 --- a/clients/client-codeconnections/src/CodeConnections.ts +++ b/clients/client-codeconnections/src/CodeConnections.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeConnectionsClient, CodeConnectionsClientConfig } from "./CodeConnectionsClient"; +import { CodeConnectionsClient } from "./CodeConnectionsClient"; import { CreateConnectionCommand, CreateConnectionCommandInput, diff --git a/clients/client-codeconnections/src/CodeConnectionsClient.ts b/clients/client-codeconnections/src/CodeConnectionsClient.ts index ff84352559cd0..1dd1fa6b8283d 100644 --- a/clients/client-codeconnections/src/CodeConnectionsClient.ts +++ b/clients/client-codeconnections/src/CodeConnectionsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeConnectionsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand"; @@ -133,7 +142,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codeconnections/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codeconnections/src/auth/httpAuthExtensionConfiguration.ts index 5736a60bbb31c..55e9a6ca0405f 100644 --- a/clients/client-codeconnections/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codeconnections/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodeConnectionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeConnectionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codeconnections/src/auth/httpAuthSchemeProvider.ts b/clients/client-codeconnections/src/auth/httpAuthSchemeProvider.ts index d0232069c5f56..6efa06e60c583 100644 --- a/clients/client-codeconnections/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codeconnections/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeConnectionsClientConfig, CodeConnectionsClientResolvedConfig } from "../CodeConnectionsClient"; +import { type CodeConnectionsClientResolvedConfig, CodeConnectionsClientConfig } from "../CodeConnectionsClient"; /** * @internal diff --git a/clients/client-codeconnections/src/commands/CreateConnectionCommand.ts b/clients/client-codeconnections/src/commands/CreateConnectionCommand.ts index 83d14e411271d..2555077bb413d 100644 --- a/clients/client-codeconnections/src/commands/CreateConnectionCommand.ts +++ b/clients/client-codeconnections/src/commands/CreateConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionInput, CreateConnectionOutput } from "../models/models_0"; +import type { CreateConnectionInput, CreateConnectionOutput } from "../models/models_0"; import { CreateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/CreateHostCommand.ts b/clients/client-codeconnections/src/commands/CreateHostCommand.ts index dcc6d69cf01ce..bc47a47228063 100644 --- a/clients/client-codeconnections/src/commands/CreateHostCommand.ts +++ b/clients/client-codeconnections/src/commands/CreateHostCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHostInput, CreateHostOutput } from "../models/models_0"; +import type { CreateHostInput, CreateHostOutput } from "../models/models_0"; import { CreateHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/CreateRepositoryLinkCommand.ts b/clients/client-codeconnections/src/commands/CreateRepositoryLinkCommand.ts index 9fa6dca9e107d..cb5e8d1db85d5 100644 --- a/clients/client-codeconnections/src/commands/CreateRepositoryLinkCommand.ts +++ b/clients/client-codeconnections/src/commands/CreateRepositoryLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRepositoryLinkInput, CreateRepositoryLinkOutput } from "../models/models_0"; +import type { CreateRepositoryLinkInput, CreateRepositoryLinkOutput } from "../models/models_0"; import { CreateRepositoryLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/CreateSyncConfigurationCommand.ts b/clients/client-codeconnections/src/commands/CreateSyncConfigurationCommand.ts index c87aebfe83d97..c4d4a72ea7675 100644 --- a/clients/client-codeconnections/src/commands/CreateSyncConfigurationCommand.ts +++ b/clients/client-codeconnections/src/commands/CreateSyncConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSyncConfigurationInput, CreateSyncConfigurationOutput } from "../models/models_0"; +import type { CreateSyncConfigurationInput, CreateSyncConfigurationOutput } from "../models/models_0"; import { CreateSyncConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/DeleteConnectionCommand.ts b/clients/client-codeconnections/src/commands/DeleteConnectionCommand.ts index c71c4cdf665d1..4835b943c314a 100644 --- a/clients/client-codeconnections/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-codeconnections/src/commands/DeleteConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionInput, DeleteConnectionOutput } from "../models/models_0"; +import type { DeleteConnectionInput, DeleteConnectionOutput } from "../models/models_0"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/DeleteHostCommand.ts b/clients/client-codeconnections/src/commands/DeleteHostCommand.ts index 7580607d5aedf..0b8258a034f74 100644 --- a/clients/client-codeconnections/src/commands/DeleteHostCommand.ts +++ b/clients/client-codeconnections/src/commands/DeleteHostCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHostInput, DeleteHostOutput } from "../models/models_0"; +import type { DeleteHostInput, DeleteHostOutput } from "../models/models_0"; import { DeleteHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/DeleteRepositoryLinkCommand.ts b/clients/client-codeconnections/src/commands/DeleteRepositoryLinkCommand.ts index 629c63f2bdb07..3af8e16124a44 100644 --- a/clients/client-codeconnections/src/commands/DeleteRepositoryLinkCommand.ts +++ b/clients/client-codeconnections/src/commands/DeleteRepositoryLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryLinkInput, DeleteRepositoryLinkOutput } from "../models/models_0"; +import type { DeleteRepositoryLinkInput, DeleteRepositoryLinkOutput } from "../models/models_0"; import { DeleteRepositoryLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/DeleteSyncConfigurationCommand.ts b/clients/client-codeconnections/src/commands/DeleteSyncConfigurationCommand.ts index fa8cae1c80ec4..e9bc8eb2f8318 100644 --- a/clients/client-codeconnections/src/commands/DeleteSyncConfigurationCommand.ts +++ b/clients/client-codeconnections/src/commands/DeleteSyncConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSyncConfigurationInput, DeleteSyncConfigurationOutput } from "../models/models_0"; +import type { DeleteSyncConfigurationInput, DeleteSyncConfigurationOutput } from "../models/models_0"; import { DeleteSyncConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/GetConnectionCommand.ts b/clients/client-codeconnections/src/commands/GetConnectionCommand.ts index 9178160aa1aab..e4c8a61c8b4d7 100644 --- a/clients/client-codeconnections/src/commands/GetConnectionCommand.ts +++ b/clients/client-codeconnections/src/commands/GetConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionInput, GetConnectionOutput } from "../models/models_0"; +import type { GetConnectionInput, GetConnectionOutput } from "../models/models_0"; import { GetConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/GetHostCommand.ts b/clients/client-codeconnections/src/commands/GetHostCommand.ts index ef656b610461b..8773958113e04 100644 --- a/clients/client-codeconnections/src/commands/GetHostCommand.ts +++ b/clients/client-codeconnections/src/commands/GetHostCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHostInput, GetHostOutput } from "../models/models_0"; +import type { GetHostInput, GetHostOutput } from "../models/models_0"; import { GetHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/GetRepositoryLinkCommand.ts b/clients/client-codeconnections/src/commands/GetRepositoryLinkCommand.ts index 2efffd68be01f..c2f850f0d88bc 100644 --- a/clients/client-codeconnections/src/commands/GetRepositoryLinkCommand.ts +++ b/clients/client-codeconnections/src/commands/GetRepositoryLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryLinkInput, GetRepositoryLinkOutput } from "../models/models_0"; +import type { GetRepositoryLinkInput, GetRepositoryLinkOutput } from "../models/models_0"; import { GetRepositoryLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/GetRepositorySyncStatusCommand.ts b/clients/client-codeconnections/src/commands/GetRepositorySyncStatusCommand.ts index cfa09262dffe7..c5c87e9bb51c8 100644 --- a/clients/client-codeconnections/src/commands/GetRepositorySyncStatusCommand.ts +++ b/clients/client-codeconnections/src/commands/GetRepositorySyncStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositorySyncStatusInput, GetRepositorySyncStatusOutput } from "../models/models_0"; +import type { GetRepositorySyncStatusInput, GetRepositorySyncStatusOutput } from "../models/models_0"; import { GetRepositorySyncStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/GetResourceSyncStatusCommand.ts b/clients/client-codeconnections/src/commands/GetResourceSyncStatusCommand.ts index 541d8d911e41e..2b41380aad8c7 100644 --- a/clients/client-codeconnections/src/commands/GetResourceSyncStatusCommand.ts +++ b/clients/client-codeconnections/src/commands/GetResourceSyncStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceSyncStatusInput, GetResourceSyncStatusOutput } from "../models/models_0"; +import type { GetResourceSyncStatusInput, GetResourceSyncStatusOutput } from "../models/models_0"; import { GetResourceSyncStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/GetSyncBlockerSummaryCommand.ts b/clients/client-codeconnections/src/commands/GetSyncBlockerSummaryCommand.ts index ed6e5e666ba2e..c7c7145ba493d 100644 --- a/clients/client-codeconnections/src/commands/GetSyncBlockerSummaryCommand.ts +++ b/clients/client-codeconnections/src/commands/GetSyncBlockerSummaryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSyncBlockerSummaryInput, GetSyncBlockerSummaryOutput } from "../models/models_0"; +import type { GetSyncBlockerSummaryInput, GetSyncBlockerSummaryOutput } from "../models/models_0"; import { GetSyncBlockerSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/GetSyncConfigurationCommand.ts b/clients/client-codeconnections/src/commands/GetSyncConfigurationCommand.ts index 32a67cf6de098..2eda02b3384c2 100644 --- a/clients/client-codeconnections/src/commands/GetSyncConfigurationCommand.ts +++ b/clients/client-codeconnections/src/commands/GetSyncConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSyncConfigurationInput, GetSyncConfigurationOutput } from "../models/models_0"; +import type { GetSyncConfigurationInput, GetSyncConfigurationOutput } from "../models/models_0"; import { GetSyncConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/ListConnectionsCommand.ts b/clients/client-codeconnections/src/commands/ListConnectionsCommand.ts index 51c5014c8a926..e76b9681f388c 100644 --- a/clients/client-codeconnections/src/commands/ListConnectionsCommand.ts +++ b/clients/client-codeconnections/src/commands/ListConnectionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectionsInput, ListConnectionsOutput } from "../models/models_0"; +import type { ListConnectionsInput, ListConnectionsOutput } from "../models/models_0"; import { ListConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/ListHostsCommand.ts b/clients/client-codeconnections/src/commands/ListHostsCommand.ts index 3693ded68d27d..bda174047827d 100644 --- a/clients/client-codeconnections/src/commands/ListHostsCommand.ts +++ b/clients/client-codeconnections/src/commands/ListHostsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHostsInput, ListHostsOutput } from "../models/models_0"; +import type { ListHostsInput, ListHostsOutput } from "../models/models_0"; import { ListHosts } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/ListRepositoryLinksCommand.ts b/clients/client-codeconnections/src/commands/ListRepositoryLinksCommand.ts index 48479c1209b5c..0c4281fa2b029 100644 --- a/clients/client-codeconnections/src/commands/ListRepositoryLinksCommand.ts +++ b/clients/client-codeconnections/src/commands/ListRepositoryLinksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositoryLinksInput, ListRepositoryLinksOutput } from "../models/models_0"; +import type { ListRepositoryLinksInput, ListRepositoryLinksOutput } from "../models/models_0"; import { ListRepositoryLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/ListRepositorySyncDefinitionsCommand.ts b/clients/client-codeconnections/src/commands/ListRepositorySyncDefinitionsCommand.ts index 341e0aff7bbba..cc8fc140207cf 100644 --- a/clients/client-codeconnections/src/commands/ListRepositorySyncDefinitionsCommand.ts +++ b/clients/client-codeconnections/src/commands/ListRepositorySyncDefinitionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositorySyncDefinitionsInput, ListRepositorySyncDefinitionsOutput } from "../models/models_0"; +import type { ListRepositorySyncDefinitionsInput, ListRepositorySyncDefinitionsOutput } from "../models/models_0"; import { ListRepositorySyncDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/ListSyncConfigurationsCommand.ts b/clients/client-codeconnections/src/commands/ListSyncConfigurationsCommand.ts index f27115fcfcdbe..4d6d93e943f64 100644 --- a/clients/client-codeconnections/src/commands/ListSyncConfigurationsCommand.ts +++ b/clients/client-codeconnections/src/commands/ListSyncConfigurationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSyncConfigurationsInput, ListSyncConfigurationsOutput } from "../models/models_0"; +import type { ListSyncConfigurationsInput, ListSyncConfigurationsOutput } from "../models/models_0"; import { ListSyncConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeconnections/src/commands/ListTagsForResourceCommand.ts index 6c6ba442444fc..f5804824ca021 100644 --- a/clients/client-codeconnections/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeconnections/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/TagResourceCommand.ts b/clients/client-codeconnections/src/commands/TagResourceCommand.ts index deb195662d7e8..4f21faf4e70a5 100644 --- a/clients/client-codeconnections/src/commands/TagResourceCommand.ts +++ b/clients/client-codeconnections/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/UntagResourceCommand.ts b/clients/client-codeconnections/src/commands/UntagResourceCommand.ts index 6d5aef0db1197..71289f50f9563 100644 --- a/clients/client-codeconnections/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeconnections/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/UpdateHostCommand.ts b/clients/client-codeconnections/src/commands/UpdateHostCommand.ts index f310c579c3872..6fd1f46f508e1 100644 --- a/clients/client-codeconnections/src/commands/UpdateHostCommand.ts +++ b/clients/client-codeconnections/src/commands/UpdateHostCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHostInput, UpdateHostOutput } from "../models/models_0"; +import type { UpdateHostInput, UpdateHostOutput } from "../models/models_0"; import { UpdateHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/UpdateRepositoryLinkCommand.ts b/clients/client-codeconnections/src/commands/UpdateRepositoryLinkCommand.ts index 0bb5ebba02520..529f0dd0657f3 100644 --- a/clients/client-codeconnections/src/commands/UpdateRepositoryLinkCommand.ts +++ b/clients/client-codeconnections/src/commands/UpdateRepositoryLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRepositoryLinkInput, UpdateRepositoryLinkOutput } from "../models/models_0"; +import type { UpdateRepositoryLinkInput, UpdateRepositoryLinkOutput } from "../models/models_0"; import { UpdateRepositoryLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/UpdateSyncBlockerCommand.ts b/clients/client-codeconnections/src/commands/UpdateSyncBlockerCommand.ts index 57b967396c472..b3610d65b5c03 100644 --- a/clients/client-codeconnections/src/commands/UpdateSyncBlockerCommand.ts +++ b/clients/client-codeconnections/src/commands/UpdateSyncBlockerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSyncBlockerInput, UpdateSyncBlockerOutput } from "../models/models_0"; +import type { UpdateSyncBlockerInput, UpdateSyncBlockerOutput } from "../models/models_0"; import { UpdateSyncBlocker } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/commands/UpdateSyncConfigurationCommand.ts b/clients/client-codeconnections/src/commands/UpdateSyncConfigurationCommand.ts index 9e5b3c3238aac..e49428b31a1fe 100644 --- a/clients/client-codeconnections/src/commands/UpdateSyncConfigurationCommand.ts +++ b/clients/client-codeconnections/src/commands/UpdateSyncConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeConnectionsClient"; +import type { + CodeConnectionsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSyncConfigurationInput, UpdateSyncConfigurationOutput } from "../models/models_0"; +import type { UpdateSyncConfigurationInput, UpdateSyncConfigurationOutput } from "../models/models_0"; import { UpdateSyncConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeconnections/src/endpoint/EndpointParameters.ts b/clients/client-codeconnections/src/endpoint/EndpointParameters.ts index aca82fe238ed7..d0d6945db0936 100644 --- a/clients/client-codeconnections/src/endpoint/EndpointParameters.ts +++ b/clients/client-codeconnections/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codeconnections/src/endpoint/endpointResolver.ts b/clients/client-codeconnections/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codeconnections/src/endpoint/endpointResolver.ts +++ b/clients/client-codeconnections/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codeconnections/src/extensionConfiguration.ts b/clients/client-codeconnections/src/extensionConfiguration.ts index ae23e7616278e..6d40d867c422e 100644 --- a/clients/client-codeconnections/src/extensionConfiguration.ts +++ b/clients/client-codeconnections/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codeconnections/src/models/CodeConnectionsServiceException.ts b/clients/client-codeconnections/src/models/CodeConnectionsServiceException.ts index 367f2b66cbf10..3d7ebd86e816d 100644 --- a/clients/client-codeconnections/src/models/CodeConnectionsServiceException.ts +++ b/clients/client-codeconnections/src/models/CodeConnectionsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codeconnections/src/models/errors.ts b/clients/client-codeconnections/src/models/errors.ts index f209ebe1d5a55..1cf0e92be10b5 100644 --- a/clients/client-codeconnections/src/models/errors.ts +++ b/clients/client-codeconnections/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeConnectionsServiceException as __BaseException } from "./CodeConnectionsServiceException"; diff --git a/clients/client-codeconnections/src/pagination/Interfaces.ts b/clients/client-codeconnections/src/pagination/Interfaces.ts index 0f3412499252c..fcb789d1fdf5c 100644 --- a/clients/client-codeconnections/src/pagination/Interfaces.ts +++ b/clients/client-codeconnections/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeConnectionsClient } from "../CodeConnectionsClient"; diff --git a/clients/client-codeconnections/src/pagination/ListConnectionsPaginator.ts b/clients/client-codeconnections/src/pagination/ListConnectionsPaginator.ts index 6408583e9f6ad..0965ab595ebc3 100644 --- a/clients/client-codeconnections/src/pagination/ListConnectionsPaginator.ts +++ b/clients/client-codeconnections/src/pagination/ListConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeConnectionsClient } from "../CodeConnectionsClient"; import { diff --git a/clients/client-codeconnections/src/pagination/ListHostsPaginator.ts b/clients/client-codeconnections/src/pagination/ListHostsPaginator.ts index 168c26d579fa9..36dbb3c597d84 100644 --- a/clients/client-codeconnections/src/pagination/ListHostsPaginator.ts +++ b/clients/client-codeconnections/src/pagination/ListHostsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeConnectionsClient } from "../CodeConnectionsClient"; import { ListHostsCommand, ListHostsCommandInput, ListHostsCommandOutput } from "../commands/ListHostsCommand"; diff --git a/clients/client-codeconnections/src/pagination/ListRepositoryLinksPaginator.ts b/clients/client-codeconnections/src/pagination/ListRepositoryLinksPaginator.ts index f4dd8a085f0ba..e971e3ad1e856 100644 --- a/clients/client-codeconnections/src/pagination/ListRepositoryLinksPaginator.ts +++ b/clients/client-codeconnections/src/pagination/ListRepositoryLinksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeConnectionsClient } from "../CodeConnectionsClient"; import { diff --git a/clients/client-codeconnections/src/pagination/ListSyncConfigurationsPaginator.ts b/clients/client-codeconnections/src/pagination/ListSyncConfigurationsPaginator.ts index f9c928387e1fe..21b39b89f7b54 100644 --- a/clients/client-codeconnections/src/pagination/ListSyncConfigurationsPaginator.ts +++ b/clients/client-codeconnections/src/pagination/ListSyncConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeConnectionsClient } from "../CodeConnectionsClient"; import { diff --git a/clients/client-codeconnections/src/runtimeConfig.browser.ts b/clients/client-codeconnections/src/runtimeConfig.browser.ts index 4fb6921288eb2..978420d1ec45d 100644 --- a/clients/client-codeconnections/src/runtimeConfig.browser.ts +++ b/clients/client-codeconnections/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeConnectionsClientConfig } from "./CodeConnectionsClient"; + +import type { CodeConnectionsClientConfig } from "./CodeConnectionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codeconnections/src/runtimeConfig.native.ts b/clients/client-codeconnections/src/runtimeConfig.native.ts index c7d0fc2f369d6..09301afab80a4 100644 --- a/clients/client-codeconnections/src/runtimeConfig.native.ts +++ b/clients/client-codeconnections/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeConnectionsClientConfig } from "./CodeConnectionsClient"; +import type { CodeConnectionsClientConfig } from "./CodeConnectionsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codeconnections/src/runtimeConfig.shared.ts b/clients/client-codeconnections/src/runtimeConfig.shared.ts index bfe4adcec9fb1..59ed22baf8aaf 100644 --- a/clients/client-codeconnections/src/runtimeConfig.shared.ts +++ b/clients/client-codeconnections/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeConnectionsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeConnectionsClientConfig } from "./CodeConnectionsClient"; +import type { CodeConnectionsClientConfig } from "./CodeConnectionsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codeconnections/src/runtimeConfig.ts b/clients/client-codeconnections/src/runtimeConfig.ts index d8adb6523a698..702921cc6a1e8 100644 --- a/clients/client-codeconnections/src/runtimeConfig.ts +++ b/clients/client-codeconnections/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeConnectionsClientConfig } from "./CodeConnectionsClient"; + +import type { CodeConnectionsClientConfig } from "./CodeConnectionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codeconnections/src/runtimeExtensions.ts b/clients/client-codeconnections/src/runtimeExtensions.ts index 3661816cdf847..cb781d232954e 100644 --- a/clients/client-codeconnections/src/runtimeExtensions.ts +++ b/clients/client-codeconnections/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeConnectionsExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeConnectionsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codeconnections/src/schemas/schemas_0.ts b/clients/client-codeconnections/src/schemas/schemas_0.ts index d28fec66f4a6f..f5f0651cccfa0 100644 --- a/clients/client-codeconnections/src/schemas/schemas_0.ts +++ b/clients/client-codeconnections/src/schemas/schemas_0.ts @@ -195,7 +195,7 @@ const n0 = "com.amazonaws.codeconnections"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { CodeConnectionsServiceException as __CodeConnectionsServiceException } from "../models/CodeConnectionsServiceException"; import { diff --git a/clients/client-codedeploy/package.json b/clients/client-codedeploy/package.json index f735ff9728e3b..c21e33eb7aada 100644 --- a/clients/client-codedeploy/package.json +++ b/clients/client-codedeploy/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codedeploy/src/CodeDeploy.ts b/clients/client-codedeploy/src/CodeDeploy.ts index ef81fb2bb2455..9f9337bb53b50 100644 --- a/clients/client-codedeploy/src/CodeDeploy.ts +++ b/clients/client-codedeploy/src/CodeDeploy.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeDeployClient, CodeDeployClientConfig } from "./CodeDeployClient"; +import { CodeDeployClient } from "./CodeDeployClient"; import { AddTagsToOnPremisesInstancesCommand, AddTagsToOnPremisesInstancesCommandInput, diff --git a/clients/client-codedeploy/src/CodeDeployClient.ts b/clients/client-codedeploy/src/CodeDeployClient.ts index 84bba0444e209..e51f01f577170 100644 --- a/clients/client-codedeploy/src/CodeDeployClient.ts +++ b/clients/client-codedeploy/src/CodeDeployClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeDeployHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -213,7 +222,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codedeploy/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codedeploy/src/auth/httpAuthExtensionConfiguration.ts index 35181aaf877a8..890f4a8c9a96d 100644 --- a/clients/client-codedeploy/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codedeploy/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodeDeployHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeDeployHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codedeploy/src/auth/httpAuthSchemeProvider.ts b/clients/client-codedeploy/src/auth/httpAuthSchemeProvider.ts index d40ab0f10e60b..c2a38ae72936b 100644 --- a/clients/client-codedeploy/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codedeploy/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeDeployClientConfig, CodeDeployClientResolvedConfig } from "../CodeDeployClient"; +import { type CodeDeployClientResolvedConfig, CodeDeployClientConfig } from "../CodeDeployClient"; /** * @internal diff --git a/clients/client-codedeploy/src/commands/AddTagsToOnPremisesInstancesCommand.ts b/clients/client-codedeploy/src/commands/AddTagsToOnPremisesInstancesCommand.ts index 26be41e1b225e..41df2d2c52fde 100644 --- a/clients/client-codedeploy/src/commands/AddTagsToOnPremisesInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/AddTagsToOnPremisesInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToOnPremisesInstancesInput } from "../models/models_0"; +import type { AddTagsToOnPremisesInstancesInput } from "../models/models_0"; import { AddTagsToOnPremisesInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/BatchGetApplicationRevisionsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetApplicationRevisionsCommand.ts index 7f5999c5251a1..32d3d3b384d63 100644 --- a/clients/client-codedeploy/src/commands/BatchGetApplicationRevisionsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetApplicationRevisionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetApplicationRevisionsInput, BatchGetApplicationRevisionsOutput } from "../models/models_0"; +import type { BatchGetApplicationRevisionsInput, BatchGetApplicationRevisionsOutput } from "../models/models_0"; import { BatchGetApplicationRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/BatchGetApplicationsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetApplicationsCommand.ts index 03b87ec85d77a..ec52cf5822619 100644 --- a/clients/client-codedeploy/src/commands/BatchGetApplicationsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetApplicationsInput, BatchGetApplicationsOutput } from "../models/models_0"; +import type { BatchGetApplicationsInput, BatchGetApplicationsOutput } from "../models/models_0"; import { BatchGetApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/BatchGetDeploymentGroupsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetDeploymentGroupsCommand.ts index f4866f5197d0b..9052ca8faeb68 100644 --- a/clients/client-codedeploy/src/commands/BatchGetDeploymentGroupsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetDeploymentGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetDeploymentGroupsInput, BatchGetDeploymentGroupsOutput } from "../models/models_0"; +import type { BatchGetDeploymentGroupsInput, BatchGetDeploymentGroupsOutput } from "../models/models_0"; import { BatchGetDeploymentGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/BatchGetDeploymentInstancesCommand.ts b/clients/client-codedeploy/src/commands/BatchGetDeploymentInstancesCommand.ts index c6437ed0e5c92..4375839e3583b 100644 --- a/clients/client-codedeploy/src/commands/BatchGetDeploymentInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetDeploymentInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetDeploymentInstancesInput, BatchGetDeploymentInstancesOutput } from "../models/models_0"; +import type { BatchGetDeploymentInstancesInput, BatchGetDeploymentInstancesOutput } from "../models/models_0"; import { BatchGetDeploymentInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/BatchGetDeploymentTargetsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetDeploymentTargetsCommand.ts index 90784e4f48426..add1f36798eaa 100644 --- a/clients/client-codedeploy/src/commands/BatchGetDeploymentTargetsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetDeploymentTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetDeploymentTargetsInput, BatchGetDeploymentTargetsOutput } from "../models/models_0"; +import type { BatchGetDeploymentTargetsInput, BatchGetDeploymentTargetsOutput } from "../models/models_0"; import { BatchGetDeploymentTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/BatchGetDeploymentsCommand.ts b/clients/client-codedeploy/src/commands/BatchGetDeploymentsCommand.ts index 1eaec8c9282f2..baa2daf28bc71 100644 --- a/clients/client-codedeploy/src/commands/BatchGetDeploymentsCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetDeploymentsInput, BatchGetDeploymentsOutput } from "../models/models_0"; +import type { BatchGetDeploymentsInput, BatchGetDeploymentsOutput } from "../models/models_0"; import { BatchGetDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/BatchGetOnPremisesInstancesCommand.ts b/clients/client-codedeploy/src/commands/BatchGetOnPremisesInstancesCommand.ts index b7578db1ed8df..3595241d09e25 100644 --- a/clients/client-codedeploy/src/commands/BatchGetOnPremisesInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/BatchGetOnPremisesInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetOnPremisesInstancesInput, BatchGetOnPremisesInstancesOutput } from "../models/models_0"; +import type { BatchGetOnPremisesInstancesInput, BatchGetOnPremisesInstancesOutput } from "../models/models_0"; import { BatchGetOnPremisesInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ContinueDeploymentCommand.ts b/clients/client-codedeploy/src/commands/ContinueDeploymentCommand.ts index 5d17100cf5645..da76aa1d432a4 100644 --- a/clients/client-codedeploy/src/commands/ContinueDeploymentCommand.ts +++ b/clients/client-codedeploy/src/commands/ContinueDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ContinueDeploymentInput } from "../models/models_0"; +import type { ContinueDeploymentInput } from "../models/models_0"; import { ContinueDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/CreateApplicationCommand.ts b/clients/client-codedeploy/src/commands/CreateApplicationCommand.ts index 4388ce4826a89..9cd49ea3d05b4 100644 --- a/clients/client-codedeploy/src/commands/CreateApplicationCommand.ts +++ b/clients/client-codedeploy/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationInput, CreateApplicationOutput } from "../models/models_0"; +import type { CreateApplicationInput, CreateApplicationOutput } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/CreateDeploymentCommand.ts b/clients/client-codedeploy/src/commands/CreateDeploymentCommand.ts index fcb90e5c4ff16..dc33da5e70c11 100644 --- a/clients/client-codedeploy/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-codedeploy/src/commands/CreateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeploymentInput, CreateDeploymentOutput } from "../models/models_0"; +import type { CreateDeploymentInput, CreateDeploymentOutput } from "../models/models_0"; import { CreateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/CreateDeploymentConfigCommand.ts b/clients/client-codedeploy/src/commands/CreateDeploymentConfigCommand.ts index 504f5b7c9af25..5e5a3dc2f9357 100644 --- a/clients/client-codedeploy/src/commands/CreateDeploymentConfigCommand.ts +++ b/clients/client-codedeploy/src/commands/CreateDeploymentConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeploymentConfigInput, CreateDeploymentConfigOutput } from "../models/models_0"; +import type { CreateDeploymentConfigInput, CreateDeploymentConfigOutput } from "../models/models_0"; import { CreateDeploymentConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/CreateDeploymentGroupCommand.ts b/clients/client-codedeploy/src/commands/CreateDeploymentGroupCommand.ts index ca3ff50f3db8d..1bc01bf0b7851 100644 --- a/clients/client-codedeploy/src/commands/CreateDeploymentGroupCommand.ts +++ b/clients/client-codedeploy/src/commands/CreateDeploymentGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeploymentGroupInput, CreateDeploymentGroupOutput } from "../models/models_0"; +import type { CreateDeploymentGroupInput, CreateDeploymentGroupOutput } from "../models/models_0"; import { CreateDeploymentGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/DeleteApplicationCommand.ts b/clients/client-codedeploy/src/commands/DeleteApplicationCommand.ts index 980aeebff0122..27a4b0879784b 100644 --- a/clients/client-codedeploy/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationInput } from "../models/models_0"; +import type { DeleteApplicationInput } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/DeleteDeploymentConfigCommand.ts b/clients/client-codedeploy/src/commands/DeleteDeploymentConfigCommand.ts index e1dd91fa22088..26ffc0b11ac35 100644 --- a/clients/client-codedeploy/src/commands/DeleteDeploymentConfigCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteDeploymentConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeploymentConfigInput } from "../models/models_0"; +import type { DeleteDeploymentConfigInput } from "../models/models_0"; import { DeleteDeploymentConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/DeleteDeploymentGroupCommand.ts b/clients/client-codedeploy/src/commands/DeleteDeploymentGroupCommand.ts index 3dc6c3622c61c..d293321b24c34 100644 --- a/clients/client-codedeploy/src/commands/DeleteDeploymentGroupCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteDeploymentGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeploymentGroupInput, DeleteDeploymentGroupOutput } from "../models/models_0"; +import type { DeleteDeploymentGroupInput, DeleteDeploymentGroupOutput } from "../models/models_0"; import { DeleteDeploymentGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/DeleteGitHubAccountTokenCommand.ts b/clients/client-codedeploy/src/commands/DeleteGitHubAccountTokenCommand.ts index c40a1bd9715dc..3d3a988993b58 100644 --- a/clients/client-codedeploy/src/commands/DeleteGitHubAccountTokenCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteGitHubAccountTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGitHubAccountTokenInput, DeleteGitHubAccountTokenOutput } from "../models/models_0"; +import type { DeleteGitHubAccountTokenInput, DeleteGitHubAccountTokenOutput } from "../models/models_0"; import { DeleteGitHubAccountToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/DeleteResourcesByExternalIdCommand.ts b/clients/client-codedeploy/src/commands/DeleteResourcesByExternalIdCommand.ts index 104762126d079..8aec7750420b0 100644 --- a/clients/client-codedeploy/src/commands/DeleteResourcesByExternalIdCommand.ts +++ b/clients/client-codedeploy/src/commands/DeleteResourcesByExternalIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcesByExternalIdInput, DeleteResourcesByExternalIdOutput } from "../models/models_0"; +import type { DeleteResourcesByExternalIdInput, DeleteResourcesByExternalIdOutput } from "../models/models_0"; import { DeleteResourcesByExternalId } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/DeregisterOnPremisesInstanceCommand.ts b/clients/client-codedeploy/src/commands/DeregisterOnPremisesInstanceCommand.ts index 95596e0421059..4c272764cddfd 100644 --- a/clients/client-codedeploy/src/commands/DeregisterOnPremisesInstanceCommand.ts +++ b/clients/client-codedeploy/src/commands/DeregisterOnPremisesInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterOnPremisesInstanceInput } from "../models/models_0"; +import type { DeregisterOnPremisesInstanceInput } from "../models/models_0"; import { DeregisterOnPremisesInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/GetApplicationCommand.ts b/clients/client-codedeploy/src/commands/GetApplicationCommand.ts index daa2f50db0a12..835f4f3968fcd 100644 --- a/clients/client-codedeploy/src/commands/GetApplicationCommand.ts +++ b/clients/client-codedeploy/src/commands/GetApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationInput, GetApplicationOutput } from "../models/models_0"; +import type { GetApplicationInput, GetApplicationOutput } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/GetApplicationRevisionCommand.ts b/clients/client-codedeploy/src/commands/GetApplicationRevisionCommand.ts index b74f27454c64b..20fcebacb5eda 100644 --- a/clients/client-codedeploy/src/commands/GetApplicationRevisionCommand.ts +++ b/clients/client-codedeploy/src/commands/GetApplicationRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationRevisionInput, GetApplicationRevisionOutput } from "../models/models_0"; +import type { GetApplicationRevisionInput, GetApplicationRevisionOutput } from "../models/models_0"; import { GetApplicationRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/GetDeploymentCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentCommand.ts index 36c34f1353bec..fb408e9c4ec51 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeploymentInput, GetDeploymentOutput } from "../models/models_0"; +import type { GetDeploymentInput, GetDeploymentOutput } from "../models/models_0"; import { GetDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/GetDeploymentConfigCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentConfigCommand.ts index 57935beb060ad..796d921f23693 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentConfigCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeploymentConfigInput, GetDeploymentConfigOutput } from "../models/models_0"; +import type { GetDeploymentConfigInput, GetDeploymentConfigOutput } from "../models/models_0"; import { GetDeploymentConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/GetDeploymentGroupCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentGroupCommand.ts index e4a70164ab4c6..12502347b66b8 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentGroupCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeploymentGroupInput, GetDeploymentGroupOutput } from "../models/models_0"; +import type { GetDeploymentGroupInput, GetDeploymentGroupOutput } from "../models/models_0"; import { GetDeploymentGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/GetDeploymentInstanceCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentInstanceCommand.ts index 37d7970651a1e..f1158844170db 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentInstanceCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeploymentInstanceInput, GetDeploymentInstanceOutput } from "../models/models_0"; +import type { GetDeploymentInstanceInput, GetDeploymentInstanceOutput } from "../models/models_0"; import { GetDeploymentInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/GetDeploymentTargetCommand.ts b/clients/client-codedeploy/src/commands/GetDeploymentTargetCommand.ts index 0c0e2db3928bf..b213ef59526aa 100644 --- a/clients/client-codedeploy/src/commands/GetDeploymentTargetCommand.ts +++ b/clients/client-codedeploy/src/commands/GetDeploymentTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeploymentTargetInput, GetDeploymentTargetOutput } from "../models/models_0"; +import type { GetDeploymentTargetInput, GetDeploymentTargetOutput } from "../models/models_0"; import { GetDeploymentTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/GetOnPremisesInstanceCommand.ts b/clients/client-codedeploy/src/commands/GetOnPremisesInstanceCommand.ts index 1863b75eb8640..e7ec10698baf9 100644 --- a/clients/client-codedeploy/src/commands/GetOnPremisesInstanceCommand.ts +++ b/clients/client-codedeploy/src/commands/GetOnPremisesInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOnPremisesInstanceInput, GetOnPremisesInstanceOutput } from "../models/models_0"; +import type { GetOnPremisesInstanceInput, GetOnPremisesInstanceOutput } from "../models/models_0"; import { GetOnPremisesInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListApplicationRevisionsCommand.ts b/clients/client-codedeploy/src/commands/ListApplicationRevisionsCommand.ts index b8722a90e534f..224a990639ced 100644 --- a/clients/client-codedeploy/src/commands/ListApplicationRevisionsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListApplicationRevisionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationRevisionsInput, ListApplicationRevisionsOutput } from "../models/models_0"; +import type { ListApplicationRevisionsInput, ListApplicationRevisionsOutput } from "../models/models_0"; import { ListApplicationRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListApplicationsCommand.ts b/clients/client-codedeploy/src/commands/ListApplicationsCommand.ts index 9cd3dcb76bf95..bb52827223e62 100644 --- a/clients/client-codedeploy/src/commands/ListApplicationsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0"; +import type { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListDeploymentConfigsCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentConfigsCommand.ts index 49c94497c65fe..12d34c2fa2de0 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentConfigsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeploymentConfigsInput, ListDeploymentConfigsOutput } from "../models/models_0"; +import type { ListDeploymentConfigsInput, ListDeploymentConfigsOutput } from "../models/models_0"; import { ListDeploymentConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListDeploymentGroupsCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentGroupsCommand.ts index 82cac5082b75b..59937dbe2e2c1 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentGroupsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeploymentGroupsInput, ListDeploymentGroupsOutput } from "../models/models_0"; +import type { ListDeploymentGroupsInput, ListDeploymentGroupsOutput } from "../models/models_0"; import { ListDeploymentGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListDeploymentInstancesCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentInstancesCommand.ts index 6200395032f73..56507f36e4a67 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeploymentInstancesInput, ListDeploymentInstancesOutput } from "../models/models_0"; +import type { ListDeploymentInstancesInput, ListDeploymentInstancesOutput } from "../models/models_0"; import { ListDeploymentInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListDeploymentTargetsCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentTargetsCommand.ts index b35793bc37615..2db9842204655 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentTargetsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeploymentTargetsInput, ListDeploymentTargetsOutput } from "../models/models_0"; +import type { ListDeploymentTargetsInput, ListDeploymentTargetsOutput } from "../models/models_0"; import { ListDeploymentTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListDeploymentsCommand.ts b/clients/client-codedeploy/src/commands/ListDeploymentsCommand.ts index bd91baf5ab643..880e43b1ffd80 100644 --- a/clients/client-codedeploy/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-codedeploy/src/commands/ListDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeploymentsInput, ListDeploymentsOutput } from "../models/models_0"; +import type { ListDeploymentsInput, ListDeploymentsOutput } from "../models/models_0"; import { ListDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListGitHubAccountTokenNamesCommand.ts b/clients/client-codedeploy/src/commands/ListGitHubAccountTokenNamesCommand.ts index 2c9889ae7bfd4..531809445a984 100644 --- a/clients/client-codedeploy/src/commands/ListGitHubAccountTokenNamesCommand.ts +++ b/clients/client-codedeploy/src/commands/ListGitHubAccountTokenNamesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGitHubAccountTokenNamesInput, ListGitHubAccountTokenNamesOutput } from "../models/models_0"; +import type { ListGitHubAccountTokenNamesInput, ListGitHubAccountTokenNamesOutput } from "../models/models_0"; import { ListGitHubAccountTokenNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListOnPremisesInstancesCommand.ts b/clients/client-codedeploy/src/commands/ListOnPremisesInstancesCommand.ts index c27562c9a1e1a..c9f6a2e67c453 100644 --- a/clients/client-codedeploy/src/commands/ListOnPremisesInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/ListOnPremisesInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOnPremisesInstancesInput, ListOnPremisesInstancesOutput } from "../models/models_0"; +import type { ListOnPremisesInstancesInput, ListOnPremisesInstancesOutput } from "../models/models_0"; import { ListOnPremisesInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/ListTagsForResourceCommand.ts b/clients/client-codedeploy/src/commands/ListTagsForResourceCommand.ts index 1ca0dac3802e2..d3103895015d9 100644 --- a/clients/client-codedeploy/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codedeploy/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/PutLifecycleEventHookExecutionStatusCommand.ts b/clients/client-codedeploy/src/commands/PutLifecycleEventHookExecutionStatusCommand.ts index 697625d740963..abd87b326ac8d 100644 --- a/clients/client-codedeploy/src/commands/PutLifecycleEventHookExecutionStatusCommand.ts +++ b/clients/client-codedeploy/src/commands/PutLifecycleEventHookExecutionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutLifecycleEventHookExecutionStatusInput, PutLifecycleEventHookExecutionStatusOutput, } from "../models/models_0"; diff --git a/clients/client-codedeploy/src/commands/RegisterApplicationRevisionCommand.ts b/clients/client-codedeploy/src/commands/RegisterApplicationRevisionCommand.ts index 7032c1933a04a..ea4cf95438751 100644 --- a/clients/client-codedeploy/src/commands/RegisterApplicationRevisionCommand.ts +++ b/clients/client-codedeploy/src/commands/RegisterApplicationRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterApplicationRevisionInput } from "../models/models_0"; +import type { RegisterApplicationRevisionInput } from "../models/models_0"; import { RegisterApplicationRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/RegisterOnPremisesInstanceCommand.ts b/clients/client-codedeploy/src/commands/RegisterOnPremisesInstanceCommand.ts index 2bfe4130ba211..60098d21e764e 100644 --- a/clients/client-codedeploy/src/commands/RegisterOnPremisesInstanceCommand.ts +++ b/clients/client-codedeploy/src/commands/RegisterOnPremisesInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterOnPremisesInstanceInput } from "../models/models_0"; +import type { RegisterOnPremisesInstanceInput } from "../models/models_0"; import { RegisterOnPremisesInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/RemoveTagsFromOnPremisesInstancesCommand.ts b/clients/client-codedeploy/src/commands/RemoveTagsFromOnPremisesInstancesCommand.ts index 879ca8c2d4974..c86e1c3c1381f 100644 --- a/clients/client-codedeploy/src/commands/RemoveTagsFromOnPremisesInstancesCommand.ts +++ b/clients/client-codedeploy/src/commands/RemoveTagsFromOnPremisesInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromOnPremisesInstancesInput } from "../models/models_0"; +import type { RemoveTagsFromOnPremisesInstancesInput } from "../models/models_0"; import { RemoveTagsFromOnPremisesInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/SkipWaitTimeForInstanceTerminationCommand.ts b/clients/client-codedeploy/src/commands/SkipWaitTimeForInstanceTerminationCommand.ts index 423d5e4478322..96b212b977961 100644 --- a/clients/client-codedeploy/src/commands/SkipWaitTimeForInstanceTerminationCommand.ts +++ b/clients/client-codedeploy/src/commands/SkipWaitTimeForInstanceTerminationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SkipWaitTimeForInstanceTerminationInput } from "../models/models_0"; +import type { SkipWaitTimeForInstanceTerminationInput } from "../models/models_0"; import { SkipWaitTimeForInstanceTermination } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/StopDeploymentCommand.ts b/clients/client-codedeploy/src/commands/StopDeploymentCommand.ts index 76d19b05f8391..32d19197ea755 100644 --- a/clients/client-codedeploy/src/commands/StopDeploymentCommand.ts +++ b/clients/client-codedeploy/src/commands/StopDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDeploymentInput, StopDeploymentOutput } from "../models/models_0"; +import type { StopDeploymentInput, StopDeploymentOutput } from "../models/models_0"; import { StopDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/TagResourceCommand.ts b/clients/client-codedeploy/src/commands/TagResourceCommand.ts index d69ae3582bce0..73d55fdb0e178 100644 --- a/clients/client-codedeploy/src/commands/TagResourceCommand.ts +++ b/clients/client-codedeploy/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/UntagResourceCommand.ts b/clients/client-codedeploy/src/commands/UntagResourceCommand.ts index 223bf9d6dbde2..4091e2d02aa03 100644 --- a/clients/client-codedeploy/src/commands/UntagResourceCommand.ts +++ b/clients/client-codedeploy/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/UpdateApplicationCommand.ts b/clients/client-codedeploy/src/commands/UpdateApplicationCommand.ts index e306827dc071d..6e0b29cb31fde 100644 --- a/clients/client-codedeploy/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-codedeploy/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationInput } from "../models/models_0"; +import type { UpdateApplicationInput } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/commands/UpdateDeploymentGroupCommand.ts b/clients/client-codedeploy/src/commands/UpdateDeploymentGroupCommand.ts index b5727dfcfeb3f..2192a485be1f7 100644 --- a/clients/client-codedeploy/src/commands/UpdateDeploymentGroupCommand.ts +++ b/clients/client-codedeploy/src/commands/UpdateDeploymentGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; +import type { CodeDeployClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeDeployClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeploymentGroupInput, UpdateDeploymentGroupOutput } from "../models/models_0"; +import type { UpdateDeploymentGroupInput, UpdateDeploymentGroupOutput } from "../models/models_0"; import { UpdateDeploymentGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codedeploy/src/endpoint/EndpointParameters.ts b/clients/client-codedeploy/src/endpoint/EndpointParameters.ts index a9936b7247f6e..c5677726ea8bf 100644 --- a/clients/client-codedeploy/src/endpoint/EndpointParameters.ts +++ b/clients/client-codedeploy/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codedeploy/src/endpoint/endpointResolver.ts b/clients/client-codedeploy/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codedeploy/src/endpoint/endpointResolver.ts +++ b/clients/client-codedeploy/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codedeploy/src/extensionConfiguration.ts b/clients/client-codedeploy/src/extensionConfiguration.ts index 73b526b7566c3..f91b29a68f809 100644 --- a/clients/client-codedeploy/src/extensionConfiguration.ts +++ b/clients/client-codedeploy/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codedeploy/src/models/CodeDeployServiceException.ts b/clients/client-codedeploy/src/models/CodeDeployServiceException.ts index 881887ed3b4e4..0c13a3d5bd48b 100644 --- a/clients/client-codedeploy/src/models/CodeDeployServiceException.ts +++ b/clients/client-codedeploy/src/models/CodeDeployServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codedeploy/src/models/errors.ts b/clients/client-codedeploy/src/models/errors.ts index adb713f47214f..868765c10e83a 100644 --- a/clients/client-codedeploy/src/models/errors.ts +++ b/clients/client-codedeploy/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeDeployServiceException as __BaseException } from "./CodeDeployServiceException"; diff --git a/clients/client-codedeploy/src/pagination/Interfaces.ts b/clients/client-codedeploy/src/pagination/Interfaces.ts index 6026acb045e99..28ef7409b72b2 100644 --- a/clients/client-codedeploy/src/pagination/Interfaces.ts +++ b/clients/client-codedeploy/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeDeployClient } from "../CodeDeployClient"; diff --git a/clients/client-codedeploy/src/pagination/ListApplicationRevisionsPaginator.ts b/clients/client-codedeploy/src/pagination/ListApplicationRevisionsPaginator.ts index 791e1f8b4ef4d..0119a6c045ec3 100644 --- a/clients/client-codedeploy/src/pagination/ListApplicationRevisionsPaginator.ts +++ b/clients/client-codedeploy/src/pagination/ListApplicationRevisionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeDeployClient } from "../CodeDeployClient"; import { diff --git a/clients/client-codedeploy/src/pagination/ListApplicationsPaginator.ts b/clients/client-codedeploy/src/pagination/ListApplicationsPaginator.ts index 0d06fcf2413a7..80b73abe7595f 100644 --- a/clients/client-codedeploy/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-codedeploy/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeDeployClient } from "../CodeDeployClient"; import { diff --git a/clients/client-codedeploy/src/pagination/ListDeploymentConfigsPaginator.ts b/clients/client-codedeploy/src/pagination/ListDeploymentConfigsPaginator.ts index d7e45bd9fd039..51e29584f12a9 100644 --- a/clients/client-codedeploy/src/pagination/ListDeploymentConfigsPaginator.ts +++ b/clients/client-codedeploy/src/pagination/ListDeploymentConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeDeployClient } from "../CodeDeployClient"; import { diff --git a/clients/client-codedeploy/src/pagination/ListDeploymentGroupsPaginator.ts b/clients/client-codedeploy/src/pagination/ListDeploymentGroupsPaginator.ts index 2bdea5f227763..de7c92c9e700b 100644 --- a/clients/client-codedeploy/src/pagination/ListDeploymentGroupsPaginator.ts +++ b/clients/client-codedeploy/src/pagination/ListDeploymentGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeDeployClient } from "../CodeDeployClient"; import { diff --git a/clients/client-codedeploy/src/pagination/ListDeploymentInstancesPaginator.ts b/clients/client-codedeploy/src/pagination/ListDeploymentInstancesPaginator.ts index 95667d6feba7f..1cf68599da91d 100644 --- a/clients/client-codedeploy/src/pagination/ListDeploymentInstancesPaginator.ts +++ b/clients/client-codedeploy/src/pagination/ListDeploymentInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeDeployClient } from "../CodeDeployClient"; import { diff --git a/clients/client-codedeploy/src/pagination/ListDeploymentsPaginator.ts b/clients/client-codedeploy/src/pagination/ListDeploymentsPaginator.ts index 783a0f3996cb4..9806200e302b6 100644 --- a/clients/client-codedeploy/src/pagination/ListDeploymentsPaginator.ts +++ b/clients/client-codedeploy/src/pagination/ListDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeDeployClient } from "../CodeDeployClient"; import { diff --git a/clients/client-codedeploy/src/runtimeConfig.browser.ts b/clients/client-codedeploy/src/runtimeConfig.browser.ts index 0373f87855711..c5a5b57fd3c2a 100644 --- a/clients/client-codedeploy/src/runtimeConfig.browser.ts +++ b/clients/client-codedeploy/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeDeployClientConfig } from "./CodeDeployClient"; + +import type { CodeDeployClientConfig } from "./CodeDeployClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codedeploy/src/runtimeConfig.native.ts b/clients/client-codedeploy/src/runtimeConfig.native.ts index a18e0c26e08f3..80c7144586439 100644 --- a/clients/client-codedeploy/src/runtimeConfig.native.ts +++ b/clients/client-codedeploy/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeDeployClientConfig } from "./CodeDeployClient"; +import type { CodeDeployClientConfig } from "./CodeDeployClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codedeploy/src/runtimeConfig.shared.ts b/clients/client-codedeploy/src/runtimeConfig.shared.ts index 2b8cf0408cd7c..b034865cfb6f6 100644 --- a/clients/client-codedeploy/src/runtimeConfig.shared.ts +++ b/clients/client-codedeploy/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeDeployHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeDeployClientConfig } from "./CodeDeployClient"; +import type { CodeDeployClientConfig } from "./CodeDeployClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codedeploy/src/runtimeConfig.ts b/clients/client-codedeploy/src/runtimeConfig.ts index 545a7d76b5bc9..eef56663ea5f0 100644 --- a/clients/client-codedeploy/src/runtimeConfig.ts +++ b/clients/client-codedeploy/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeDeployClientConfig } from "./CodeDeployClient"; + +import type { CodeDeployClientConfig } from "./CodeDeployClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codedeploy/src/runtimeExtensions.ts b/clients/client-codedeploy/src/runtimeExtensions.ts index 8479b13557850..068be5229048a 100644 --- a/clients/client-codedeploy/src/runtimeExtensions.ts +++ b/clients/client-codedeploy/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeDeployExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeDeployExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codedeploy/src/schemas/schemas_0.ts b/clients/client-codedeploy/src/schemas/schemas_0.ts index 25973e0501dce..6c5ce35f7d468 100644 --- a/clients/client-codedeploy/src/schemas/schemas_0.ts +++ b/clients/client-codedeploy/src/schemas/schemas_0.ts @@ -548,7 +548,7 @@ const n0 = "com.amazonaws.codedeploy"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-codeguru-reviewer/package.json b/clients/client-codeguru-reviewer/package.json index a91ed634d9b1b..f3499ddf34a65 100644 --- a/clients/client-codeguru-reviewer/package.json +++ b/clients/client-codeguru-reviewer/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codeguru-reviewer/src/CodeGuruReviewer.ts b/clients/client-codeguru-reviewer/src/CodeGuruReviewer.ts index 1a549613285ed..5d55e8b191e27 100644 --- a/clients/client-codeguru-reviewer/src/CodeGuruReviewer.ts +++ b/clients/client-codeguru-reviewer/src/CodeGuruReviewer.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeGuruReviewerClient, CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient"; +import { CodeGuruReviewerClient } from "./CodeGuruReviewerClient"; import { AssociateRepositoryCommand, AssociateRepositoryCommandInput, diff --git a/clients/client-codeguru-reviewer/src/CodeGuruReviewerClient.ts b/clients/client-codeguru-reviewer/src/CodeGuruReviewerClient.ts index ef40177134884..520d86f6f7241 100644 --- a/clients/client-codeguru-reviewer/src/CodeGuruReviewerClient.ts +++ b/clients/client-codeguru-reviewer/src/CodeGuruReviewerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeGuruReviewerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -105,7 +114,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codeguru-reviewer/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codeguru-reviewer/src/auth/httpAuthExtensionConfiguration.ts index d9f46fb38a00a..9f5fbee57a85d 100644 --- a/clients/client-codeguru-reviewer/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codeguru-reviewer/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodeGuruReviewerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeGuruReviewerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codeguru-reviewer/src/auth/httpAuthSchemeProvider.ts b/clients/client-codeguru-reviewer/src/auth/httpAuthSchemeProvider.ts index 23b7c26895425..dcdc40334175a 100644 --- a/clients/client-codeguru-reviewer/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codeguru-reviewer/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeGuruReviewerClientConfig, CodeGuruReviewerClientResolvedConfig } from "../CodeGuruReviewerClient"; +import { type CodeGuruReviewerClientResolvedConfig, CodeGuruReviewerClientConfig } from "../CodeGuruReviewerClient"; /** * @internal diff --git a/clients/client-codeguru-reviewer/src/commands/AssociateRepositoryCommand.ts b/clients/client-codeguru-reviewer/src/commands/AssociateRepositoryCommand.ts index 23b3b3bdf7491..f6efa878c9250 100644 --- a/clients/client-codeguru-reviewer/src/commands/AssociateRepositoryCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/AssociateRepositoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateRepositoryRequest, AssociateRepositoryResponse } from "../models/models_0"; +import type { AssociateRepositoryRequest, AssociateRepositoryResponse } from "../models/models_0"; import { AssociateRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/CreateCodeReviewCommand.ts b/clients/client-codeguru-reviewer/src/commands/CreateCodeReviewCommand.ts index e562ba096281f..5a9ab74388975 100644 --- a/clients/client-codeguru-reviewer/src/commands/CreateCodeReviewCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/CreateCodeReviewCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCodeReviewRequest, CreateCodeReviewResponse } from "../models/models_0"; +import type { CreateCodeReviewRequest, CreateCodeReviewResponse } from "../models/models_0"; import { CreateCodeReview } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/DescribeCodeReviewCommand.ts b/clients/client-codeguru-reviewer/src/commands/DescribeCodeReviewCommand.ts index 5eeb54d3fdb6e..fe42e04a63864 100644 --- a/clients/client-codeguru-reviewer/src/commands/DescribeCodeReviewCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/DescribeCodeReviewCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCodeReviewRequest, DescribeCodeReviewResponse } from "../models/models_0"; +import type { DescribeCodeReviewRequest, DescribeCodeReviewResponse } from "../models/models_0"; import { DescribeCodeReview } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/DescribeRecommendationFeedbackCommand.ts b/clients/client-codeguru-reviewer/src/commands/DescribeRecommendationFeedbackCommand.ts index 776e1424c861d..51ec1b9a05454 100644 --- a/clients/client-codeguru-reviewer/src/commands/DescribeRecommendationFeedbackCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/DescribeRecommendationFeedbackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecommendationFeedbackRequest, DescribeRecommendationFeedbackResponse } from "../models/models_0"; +import type { DescribeRecommendationFeedbackRequest, DescribeRecommendationFeedbackResponse } from "../models/models_0"; import { DescribeRecommendationFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/DescribeRepositoryAssociationCommand.ts b/clients/client-codeguru-reviewer/src/commands/DescribeRepositoryAssociationCommand.ts index 82b8df43e99f9..c378b4001c1f6 100644 --- a/clients/client-codeguru-reviewer/src/commands/DescribeRepositoryAssociationCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/DescribeRepositoryAssociationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRepositoryAssociationRequest, DescribeRepositoryAssociationResponse } from "../models/models_0"; +import type { DescribeRepositoryAssociationRequest, DescribeRepositoryAssociationResponse } from "../models/models_0"; import { DescribeRepositoryAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/DisassociateRepositoryCommand.ts b/clients/client-codeguru-reviewer/src/commands/DisassociateRepositoryCommand.ts index 1e0bcbb1303e8..50fe275f18f7e 100644 --- a/clients/client-codeguru-reviewer/src/commands/DisassociateRepositoryCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/DisassociateRepositoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateRepositoryRequest, DisassociateRepositoryResponse } from "../models/models_0"; +import type { DisassociateRepositoryRequest, DisassociateRepositoryResponse } from "../models/models_0"; import { DisassociateRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/ListCodeReviewsCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListCodeReviewsCommand.ts index cc6da97c6677a..029b3f1cf1b01 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListCodeReviewsCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListCodeReviewsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCodeReviewsRequest, ListCodeReviewsResponse } from "../models/models_0"; +import type { ListCodeReviewsRequest, ListCodeReviewsResponse } from "../models/models_0"; import { ListCodeReviews } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/ListRecommendationFeedbackCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListRecommendationFeedbackCommand.ts index b51bee570761e..4f8c63087f1e0 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListRecommendationFeedbackCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListRecommendationFeedbackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationFeedbackRequest, ListRecommendationFeedbackResponse } from "../models/models_0"; +import type { ListRecommendationFeedbackRequest, ListRecommendationFeedbackResponse } from "../models/models_0"; import { ListRecommendationFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/ListRecommendationsCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListRecommendationsCommand.ts index fac7f77af9914..38c3234996067 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; +import type { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; import { ListRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/ListRepositoryAssociationsCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListRepositoryAssociationsCommand.ts index 460a5b8d78ac2..fcbc14f8f19cb 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListRepositoryAssociationsCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListRepositoryAssociationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositoryAssociationsRequest, ListRepositoryAssociationsResponse } from "../models/models_0"; +import type { ListRepositoryAssociationsRequest, ListRepositoryAssociationsResponse } from "../models/models_0"; import { ListRepositoryAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeguru-reviewer/src/commands/ListTagsForResourceCommand.ts index 54b1941907ebb..c055eeed61cb8 100644 --- a/clients/client-codeguru-reviewer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/PutRecommendationFeedbackCommand.ts b/clients/client-codeguru-reviewer/src/commands/PutRecommendationFeedbackCommand.ts index bd3dc79338c6e..18d700d11b099 100644 --- a/clients/client-codeguru-reviewer/src/commands/PutRecommendationFeedbackCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/PutRecommendationFeedbackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRecommendationFeedbackRequest, PutRecommendationFeedbackResponse } from "../models/models_0"; +import type { PutRecommendationFeedbackRequest, PutRecommendationFeedbackResponse } from "../models/models_0"; import { PutRecommendationFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/TagResourceCommand.ts b/clients/client-codeguru-reviewer/src/commands/TagResourceCommand.ts index d01f2043b32ca..e43a57940b56c 100644 --- a/clients/client-codeguru-reviewer/src/commands/TagResourceCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/commands/UntagResourceCommand.ts b/clients/client-codeguru-reviewer/src/commands/UntagResourceCommand.ts index edccebc6c91ac..7f94f72b10e97 100644 --- a/clients/client-codeguru-reviewer/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeguru-reviewer/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruReviewerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruReviewerClient"; +import type { + CodeGuruReviewerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruReviewerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-reviewer/src/endpoint/EndpointParameters.ts b/clients/client-codeguru-reviewer/src/endpoint/EndpointParameters.ts index a7d79386021b6..b1c4fae7d3e8f 100644 --- a/clients/client-codeguru-reviewer/src/endpoint/EndpointParameters.ts +++ b/clients/client-codeguru-reviewer/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codeguru-reviewer/src/endpoint/endpointResolver.ts b/clients/client-codeguru-reviewer/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codeguru-reviewer/src/endpoint/endpointResolver.ts +++ b/clients/client-codeguru-reviewer/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codeguru-reviewer/src/extensionConfiguration.ts b/clients/client-codeguru-reviewer/src/extensionConfiguration.ts index ac5706aa39659..5221738421644 100644 --- a/clients/client-codeguru-reviewer/src/extensionConfiguration.ts +++ b/clients/client-codeguru-reviewer/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codeguru-reviewer/src/models/CodeGuruReviewerServiceException.ts b/clients/client-codeguru-reviewer/src/models/CodeGuruReviewerServiceException.ts index c56329832c7f2..0e8916383fd3b 100644 --- a/clients/client-codeguru-reviewer/src/models/CodeGuruReviewerServiceException.ts +++ b/clients/client-codeguru-reviewer/src/models/CodeGuruReviewerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codeguru-reviewer/src/models/errors.ts b/clients/client-codeguru-reviewer/src/models/errors.ts index 7ea3e30ed7e4e..e29682a1939f2 100644 --- a/clients/client-codeguru-reviewer/src/models/errors.ts +++ b/clients/client-codeguru-reviewer/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeGuruReviewerServiceException as __BaseException } from "./CodeGuruReviewerServiceException"; diff --git a/clients/client-codeguru-reviewer/src/pagination/Interfaces.ts b/clients/client-codeguru-reviewer/src/pagination/Interfaces.ts index 65739e0a90e79..2b9d6a2194fb2 100644 --- a/clients/client-codeguru-reviewer/src/pagination/Interfaces.ts +++ b/clients/client-codeguru-reviewer/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeGuruReviewerClient } from "../CodeGuruReviewerClient"; diff --git a/clients/client-codeguru-reviewer/src/pagination/ListCodeReviewsPaginator.ts b/clients/client-codeguru-reviewer/src/pagination/ListCodeReviewsPaginator.ts index f48e9e2089b4b..a97a328cfcf0e 100644 --- a/clients/client-codeguru-reviewer/src/pagination/ListCodeReviewsPaginator.ts +++ b/clients/client-codeguru-reviewer/src/pagination/ListCodeReviewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruReviewerClient } from "../CodeGuruReviewerClient"; import { diff --git a/clients/client-codeguru-reviewer/src/pagination/ListRecommendationFeedbackPaginator.ts b/clients/client-codeguru-reviewer/src/pagination/ListRecommendationFeedbackPaginator.ts index 352f2f27f8c4d..9866e9074d1b8 100644 --- a/clients/client-codeguru-reviewer/src/pagination/ListRecommendationFeedbackPaginator.ts +++ b/clients/client-codeguru-reviewer/src/pagination/ListRecommendationFeedbackPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruReviewerClient } from "../CodeGuruReviewerClient"; import { diff --git a/clients/client-codeguru-reviewer/src/pagination/ListRecommendationsPaginator.ts b/clients/client-codeguru-reviewer/src/pagination/ListRecommendationsPaginator.ts index 7bc241f6ff2a6..626c96b194cff 100644 --- a/clients/client-codeguru-reviewer/src/pagination/ListRecommendationsPaginator.ts +++ b/clients/client-codeguru-reviewer/src/pagination/ListRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruReviewerClient } from "../CodeGuruReviewerClient"; import { diff --git a/clients/client-codeguru-reviewer/src/pagination/ListRepositoryAssociationsPaginator.ts b/clients/client-codeguru-reviewer/src/pagination/ListRepositoryAssociationsPaginator.ts index 794cd3675059b..3a811fb9b4c8a 100644 --- a/clients/client-codeguru-reviewer/src/pagination/ListRepositoryAssociationsPaginator.ts +++ b/clients/client-codeguru-reviewer/src/pagination/ListRepositoryAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruReviewerClient } from "../CodeGuruReviewerClient"; import { diff --git a/clients/client-codeguru-reviewer/src/runtimeConfig.browser.ts b/clients/client-codeguru-reviewer/src/runtimeConfig.browser.ts index 35f7535a5fcb4..35fd55abc2522 100644 --- a/clients/client-codeguru-reviewer/src/runtimeConfig.browser.ts +++ b/clients/client-codeguru-reviewer/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient"; + +import type { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codeguru-reviewer/src/runtimeConfig.native.ts b/clients/client-codeguru-reviewer/src/runtimeConfig.native.ts index e40b994aac271..9d4bee35f31ae 100644 --- a/clients/client-codeguru-reviewer/src/runtimeConfig.native.ts +++ b/clients/client-codeguru-reviewer/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient"; +import type { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codeguru-reviewer/src/runtimeConfig.shared.ts b/clients/client-codeguru-reviewer/src/runtimeConfig.shared.ts index 11e342dd7bbc4..75af6d163bc40 100644 --- a/clients/client-codeguru-reviewer/src/runtimeConfig.shared.ts +++ b/clients/client-codeguru-reviewer/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeGuruReviewerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient"; +import type { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codeguru-reviewer/src/runtimeConfig.ts b/clients/client-codeguru-reviewer/src/runtimeConfig.ts index 00d0c954f2072..9427a73b6ba7e 100644 --- a/clients/client-codeguru-reviewer/src/runtimeConfig.ts +++ b/clients/client-codeguru-reviewer/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient"; + +import type { CodeGuruReviewerClientConfig } from "./CodeGuruReviewerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codeguru-reviewer/src/runtimeExtensions.ts b/clients/client-codeguru-reviewer/src/runtimeExtensions.ts index 17715e8e42603..a3d94dd4b3ca4 100644 --- a/clients/client-codeguru-reviewer/src/runtimeExtensions.ts +++ b/clients/client-codeguru-reviewer/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeGuruReviewerExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeGuruReviewerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codeguru-reviewer/src/schemas/schemas_0.ts b/clients/client-codeguru-reviewer/src/schemas/schemas_0.ts index 892af8df448dc..7087542f751e3 100644 --- a/clients/client-codeguru-reviewer/src/schemas/schemas_0.ts +++ b/clients/client-codeguru-reviewer/src/schemas/schemas_0.ts @@ -159,7 +159,7 @@ const n0 = "com.amazonaws.codegurureviewer"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-codeguru-security/package.json b/clients/client-codeguru-security/package.json index 1a1715a61761d..ca65dbd3512d6 100644 --- a/clients/client-codeguru-security/package.json +++ b/clients/client-codeguru-security/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codeguru-security/src/CodeGuruSecurity.ts b/clients/client-codeguru-security/src/CodeGuruSecurity.ts index f54b7aa9b0f80..e1c5696752e67 100644 --- a/clients/client-codeguru-security/src/CodeGuruSecurity.ts +++ b/clients/client-codeguru-security/src/CodeGuruSecurity.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeGuruSecurityClient, CodeGuruSecurityClientConfig } from "./CodeGuruSecurityClient"; +import { CodeGuruSecurityClient } from "./CodeGuruSecurityClient"; import { BatchGetFindingsCommand, BatchGetFindingsCommandInput, diff --git a/clients/client-codeguru-security/src/CodeGuruSecurityClient.ts b/clients/client-codeguru-security/src/CodeGuruSecurityClient.ts index b626ee539d72b..7fe9b2cc0e85d 100644 --- a/clients/client-codeguru-security/src/CodeGuruSecurityClient.ts +++ b/clients/client-codeguru-security/src/CodeGuruSecurityClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeGuruSecurityHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetFindingsCommandInput, BatchGetFindingsCommandOutput } from "./commands/BatchGetFindingsCommand"; @@ -89,7 +98,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codeguru-security/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codeguru-security/src/auth/httpAuthExtensionConfiguration.ts index 634f1231c1d8b..35e0929e017ad 100644 --- a/clients/client-codeguru-security/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codeguru-security/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodeGuruSecurityHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeGuruSecurityHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codeguru-security/src/auth/httpAuthSchemeProvider.ts b/clients/client-codeguru-security/src/auth/httpAuthSchemeProvider.ts index 424579a8bf3e7..00f954b08a2a5 100644 --- a/clients/client-codeguru-security/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codeguru-security/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeGuruSecurityClientConfig, CodeGuruSecurityClientResolvedConfig } from "../CodeGuruSecurityClient"; +import { type CodeGuruSecurityClientResolvedConfig, CodeGuruSecurityClientConfig } from "../CodeGuruSecurityClient"; /** * @internal diff --git a/clients/client-codeguru-security/src/commands/BatchGetFindingsCommand.ts b/clients/client-codeguru-security/src/commands/BatchGetFindingsCommand.ts index 491b900f37652..67c3c202909a5 100644 --- a/clients/client-codeguru-security/src/commands/BatchGetFindingsCommand.ts +++ b/clients/client-codeguru-security/src/commands/BatchGetFindingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetFindingsRequest, BatchGetFindingsResponse } from "../models/models_0"; +import type { BatchGetFindingsRequest, BatchGetFindingsResponse } from "../models/models_0"; import { BatchGetFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/CreateScanCommand.ts b/clients/client-codeguru-security/src/commands/CreateScanCommand.ts index ca001abd4ae36..a0d789d8963d7 100644 --- a/clients/client-codeguru-security/src/commands/CreateScanCommand.ts +++ b/clients/client-codeguru-security/src/commands/CreateScanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScanRequest, CreateScanResponse } from "../models/models_0"; +import type { CreateScanRequest, CreateScanResponse } from "../models/models_0"; import { CreateScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/CreateUploadUrlCommand.ts b/clients/client-codeguru-security/src/commands/CreateUploadUrlCommand.ts index 6f39a862e4638..b2497a930204a 100644 --- a/clients/client-codeguru-security/src/commands/CreateUploadUrlCommand.ts +++ b/clients/client-codeguru-security/src/commands/CreateUploadUrlCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUploadUrlRequest, CreateUploadUrlResponse } from "../models/models_0"; +import type { CreateUploadUrlRequest, CreateUploadUrlResponse } from "../models/models_0"; import { CreateUploadUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/GetAccountConfigurationCommand.ts b/clients/client-codeguru-security/src/commands/GetAccountConfigurationCommand.ts index 8ef208ec78ae9..098dfc64ae289 100644 --- a/clients/client-codeguru-security/src/commands/GetAccountConfigurationCommand.ts +++ b/clients/client-codeguru-security/src/commands/GetAccountConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountConfigurationRequest, GetAccountConfigurationResponse } from "../models/models_0"; +import type { GetAccountConfigurationRequest, GetAccountConfigurationResponse } from "../models/models_0"; import { GetAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/GetFindingsCommand.ts b/clients/client-codeguru-security/src/commands/GetFindingsCommand.ts index a043f002e17d9..166eb99cd5f50 100644 --- a/clients/client-codeguru-security/src/commands/GetFindingsCommand.ts +++ b/clients/client-codeguru-security/src/commands/GetFindingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingsRequest, GetFindingsResponse } from "../models/models_0"; +import type { GetFindingsRequest, GetFindingsResponse } from "../models/models_0"; import { GetFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/GetMetricsSummaryCommand.ts b/clients/client-codeguru-security/src/commands/GetMetricsSummaryCommand.ts index 5d6b34fac2411..d61ff5068cb0f 100644 --- a/clients/client-codeguru-security/src/commands/GetMetricsSummaryCommand.ts +++ b/clients/client-codeguru-security/src/commands/GetMetricsSummaryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMetricsSummaryRequest, GetMetricsSummaryResponse } from "../models/models_0"; +import type { GetMetricsSummaryRequest, GetMetricsSummaryResponse } from "../models/models_0"; import { GetMetricsSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/GetScanCommand.ts b/clients/client-codeguru-security/src/commands/GetScanCommand.ts index f786f71fe2ccd..5061ceb7593c1 100644 --- a/clients/client-codeguru-security/src/commands/GetScanCommand.ts +++ b/clients/client-codeguru-security/src/commands/GetScanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetScanRequest, GetScanResponse } from "../models/models_0"; +import type { GetScanRequest, GetScanResponse } from "../models/models_0"; import { GetScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/ListFindingsMetricsCommand.ts b/clients/client-codeguru-security/src/commands/ListFindingsMetricsCommand.ts index cb477a7cfe9a1..64eef24b78f89 100644 --- a/clients/client-codeguru-security/src/commands/ListFindingsMetricsCommand.ts +++ b/clients/client-codeguru-security/src/commands/ListFindingsMetricsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFindingsMetricsRequest, ListFindingsMetricsResponse } from "../models/models_0"; +import type { ListFindingsMetricsRequest, ListFindingsMetricsResponse } from "../models/models_0"; import { ListFindingsMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/ListScansCommand.ts b/clients/client-codeguru-security/src/commands/ListScansCommand.ts index 90e897ffc9333..6180e3475e2c6 100644 --- a/clients/client-codeguru-security/src/commands/ListScansCommand.ts +++ b/clients/client-codeguru-security/src/commands/ListScansCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScansRequest, ListScansResponse } from "../models/models_0"; +import type { ListScansRequest, ListScansResponse } from "../models/models_0"; import { ListScans } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeguru-security/src/commands/ListTagsForResourceCommand.ts index 88191f824efb3..9b3d04ac90bd4 100644 --- a/clients/client-codeguru-security/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeguru-security/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/TagResourceCommand.ts b/clients/client-codeguru-security/src/commands/TagResourceCommand.ts index fdbce7d5a82c1..e06916ca188d2 100644 --- a/clients/client-codeguru-security/src/commands/TagResourceCommand.ts +++ b/clients/client-codeguru-security/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/UntagResourceCommand.ts b/clients/client-codeguru-security/src/commands/UntagResourceCommand.ts index 86200b7a6550f..67fd037554311 100644 --- a/clients/client-codeguru-security/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeguru-security/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/commands/UpdateAccountConfigurationCommand.ts b/clients/client-codeguru-security/src/commands/UpdateAccountConfigurationCommand.ts index 724646448fbf7..791a3ebd34a1c 100644 --- a/clients/client-codeguru-security/src/commands/UpdateAccountConfigurationCommand.ts +++ b/clients/client-codeguru-security/src/commands/UpdateAccountConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruSecurityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruSecurityClient"; +import type { + CodeGuruSecurityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruSecurityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountConfigurationRequest, UpdateAccountConfigurationResponse } from "../models/models_0"; +import type { UpdateAccountConfigurationRequest, UpdateAccountConfigurationResponse } from "../models/models_0"; import { UpdateAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguru-security/src/endpoint/EndpointParameters.ts b/clients/client-codeguru-security/src/endpoint/EndpointParameters.ts index 3460fac198663..4d6c9b4e58146 100644 --- a/clients/client-codeguru-security/src/endpoint/EndpointParameters.ts +++ b/clients/client-codeguru-security/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codeguru-security/src/endpoint/endpointResolver.ts b/clients/client-codeguru-security/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codeguru-security/src/endpoint/endpointResolver.ts +++ b/clients/client-codeguru-security/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codeguru-security/src/extensionConfiguration.ts b/clients/client-codeguru-security/src/extensionConfiguration.ts index af07e9bc0a494..ecbc20c0eecbb 100644 --- a/clients/client-codeguru-security/src/extensionConfiguration.ts +++ b/clients/client-codeguru-security/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codeguru-security/src/models/CodeGuruSecurityServiceException.ts b/clients/client-codeguru-security/src/models/CodeGuruSecurityServiceException.ts index 5911b66c5af54..074c2dc9c13e0 100644 --- a/clients/client-codeguru-security/src/models/CodeGuruSecurityServiceException.ts +++ b/clients/client-codeguru-security/src/models/CodeGuruSecurityServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codeguru-security/src/models/errors.ts b/clients/client-codeguru-security/src/models/errors.ts index 17e5c06f30f23..2467471089b95 100644 --- a/clients/client-codeguru-security/src/models/errors.ts +++ b/clients/client-codeguru-security/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeGuruSecurityServiceException as __BaseException } from "./CodeGuruSecurityServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-codeguru-security/src/pagination/GetFindingsPaginator.ts b/clients/client-codeguru-security/src/pagination/GetFindingsPaginator.ts index e217c4b63e486..6f3fde922a6e9 100644 --- a/clients/client-codeguru-security/src/pagination/GetFindingsPaginator.ts +++ b/clients/client-codeguru-security/src/pagination/GetFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruSecurityClient } from "../CodeGuruSecurityClient"; import { GetFindingsCommand, GetFindingsCommandInput, GetFindingsCommandOutput } from "../commands/GetFindingsCommand"; diff --git a/clients/client-codeguru-security/src/pagination/Interfaces.ts b/clients/client-codeguru-security/src/pagination/Interfaces.ts index e3ee4ea453fae..72b319221fad3 100644 --- a/clients/client-codeguru-security/src/pagination/Interfaces.ts +++ b/clients/client-codeguru-security/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeGuruSecurityClient } from "../CodeGuruSecurityClient"; diff --git a/clients/client-codeguru-security/src/pagination/ListFindingsMetricsPaginator.ts b/clients/client-codeguru-security/src/pagination/ListFindingsMetricsPaginator.ts index 3a3f56bc8c3fa..cac1a41efe774 100644 --- a/clients/client-codeguru-security/src/pagination/ListFindingsMetricsPaginator.ts +++ b/clients/client-codeguru-security/src/pagination/ListFindingsMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruSecurityClient } from "../CodeGuruSecurityClient"; import { diff --git a/clients/client-codeguru-security/src/pagination/ListScansPaginator.ts b/clients/client-codeguru-security/src/pagination/ListScansPaginator.ts index 7b2def5e8e53b..523d00dd5ddb2 100644 --- a/clients/client-codeguru-security/src/pagination/ListScansPaginator.ts +++ b/clients/client-codeguru-security/src/pagination/ListScansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruSecurityClient } from "../CodeGuruSecurityClient"; import { ListScansCommand, ListScansCommandInput, ListScansCommandOutput } from "../commands/ListScansCommand"; diff --git a/clients/client-codeguru-security/src/runtimeConfig.browser.ts b/clients/client-codeguru-security/src/runtimeConfig.browser.ts index 85611a0a6cd3c..d50b9a800bc68 100644 --- a/clients/client-codeguru-security/src/runtimeConfig.browser.ts +++ b/clients/client-codeguru-security/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeGuruSecurityClientConfig } from "./CodeGuruSecurityClient"; + +import type { CodeGuruSecurityClientConfig } from "./CodeGuruSecurityClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codeguru-security/src/runtimeConfig.native.ts b/clients/client-codeguru-security/src/runtimeConfig.native.ts index 1df8fbdd3656d..738e486d1c98d 100644 --- a/clients/client-codeguru-security/src/runtimeConfig.native.ts +++ b/clients/client-codeguru-security/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeGuruSecurityClientConfig } from "./CodeGuruSecurityClient"; +import type { CodeGuruSecurityClientConfig } from "./CodeGuruSecurityClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codeguru-security/src/runtimeConfig.shared.ts b/clients/client-codeguru-security/src/runtimeConfig.shared.ts index f984301061517..c2e2868674146 100644 --- a/clients/client-codeguru-security/src/runtimeConfig.shared.ts +++ b/clients/client-codeguru-security/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeGuruSecurityHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeGuruSecurityClientConfig } from "./CodeGuruSecurityClient"; +import type { CodeGuruSecurityClientConfig } from "./CodeGuruSecurityClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codeguru-security/src/runtimeConfig.ts b/clients/client-codeguru-security/src/runtimeConfig.ts index 598b21368b6db..fb02e5f5ee062 100644 --- a/clients/client-codeguru-security/src/runtimeConfig.ts +++ b/clients/client-codeguru-security/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeGuruSecurityClientConfig } from "./CodeGuruSecurityClient"; + +import type { CodeGuruSecurityClientConfig } from "./CodeGuruSecurityClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codeguru-security/src/runtimeExtensions.ts b/clients/client-codeguru-security/src/runtimeExtensions.ts index 48779ceb89d96..e649d89eeb4b7 100644 --- a/clients/client-codeguru-security/src/runtimeExtensions.ts +++ b/clients/client-codeguru-security/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeGuruSecurityExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeGuruSecurityExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codeguru-security/src/schemas/schemas_0.ts b/clients/client-codeguru-security/src/schemas/schemas_0.ts index 176fa3c79efb3..eb9ffbbdacad1 100644 --- a/clients/client-codeguru-security/src/schemas/schemas_0.ts +++ b/clients/client-codeguru-security/src/schemas/schemas_0.ts @@ -170,7 +170,7 @@ const n0 = "com.amazonaws.codegurusecurity"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-codeguruprofiler/package.json b/clients/client-codeguruprofiler/package.json index 1188d1d60e207..5d33df6763d4f 100644 --- a/clients/client-codeguruprofiler/package.json +++ b/clients/client-codeguruprofiler/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codeguruprofiler/src/CodeGuruProfiler.ts b/clients/client-codeguruprofiler/src/CodeGuruProfiler.ts index dcfc66d38d69c..a01b1b812b54f 100644 --- a/clients/client-codeguruprofiler/src/CodeGuruProfiler.ts +++ b/clients/client-codeguruprofiler/src/CodeGuruProfiler.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeGuruProfilerClient, CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient"; +import { CodeGuruProfilerClient } from "./CodeGuruProfilerClient"; import { AddNotificationChannelsCommand, AddNotificationChannelsCommandInput, diff --git a/clients/client-codeguruprofiler/src/CodeGuruProfilerClient.ts b/clients/client-codeguruprofiler/src/CodeGuruProfilerClient.ts index 6fd2107c7a884..d6dd0aa69aec7 100644 --- a/clients/client-codeguruprofiler/src/CodeGuruProfilerClient.ts +++ b/clients/client-codeguruprofiler/src/CodeGuruProfilerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeGuruProfilerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -123,7 +132,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codeguruprofiler/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codeguruprofiler/src/auth/httpAuthExtensionConfiguration.ts index 93cf71e34cf8c..345dc594d52d6 100644 --- a/clients/client-codeguruprofiler/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codeguruprofiler/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodeGuruProfilerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeGuruProfilerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codeguruprofiler/src/auth/httpAuthSchemeProvider.ts b/clients/client-codeguruprofiler/src/auth/httpAuthSchemeProvider.ts index c5e0a2b134ad1..db5a637e2a71c 100644 --- a/clients/client-codeguruprofiler/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codeguruprofiler/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeGuruProfilerClientConfig, CodeGuruProfilerClientResolvedConfig } from "../CodeGuruProfilerClient"; +import { type CodeGuruProfilerClientResolvedConfig, CodeGuruProfilerClientConfig } from "../CodeGuruProfilerClient"; /** * @internal diff --git a/clients/client-codeguruprofiler/src/commands/AddNotificationChannelsCommand.ts b/clients/client-codeguruprofiler/src/commands/AddNotificationChannelsCommand.ts index e9a2b13ace7d6..230d6119edc06 100644 --- a/clients/client-codeguruprofiler/src/commands/AddNotificationChannelsCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/AddNotificationChannelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddNotificationChannelsRequest, AddNotificationChannelsResponse } from "../models/models_0"; +import type { AddNotificationChannelsRequest, AddNotificationChannelsResponse } from "../models/models_0"; import { AddNotificationChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/BatchGetFrameMetricDataCommand.ts b/clients/client-codeguruprofiler/src/commands/BatchGetFrameMetricDataCommand.ts index e7227f0387c51..eaceb70e463a7 100644 --- a/clients/client-codeguruprofiler/src/commands/BatchGetFrameMetricDataCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/BatchGetFrameMetricDataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetFrameMetricDataRequest, BatchGetFrameMetricDataResponse } from "../models/models_0"; +import type { BatchGetFrameMetricDataRequest, BatchGetFrameMetricDataResponse } from "../models/models_0"; import { BatchGetFrameMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/ConfigureAgentCommand.ts b/clients/client-codeguruprofiler/src/commands/ConfigureAgentCommand.ts index c282445e2022f..fb2c2fb5d0deb 100644 --- a/clients/client-codeguruprofiler/src/commands/ConfigureAgentCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ConfigureAgentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigureAgentRequest, ConfigureAgentResponse } from "../models/models_0"; +import type { ConfigureAgentRequest, ConfigureAgentResponse } from "../models/models_0"; import { ConfigureAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/CreateProfilingGroupCommand.ts b/clients/client-codeguruprofiler/src/commands/CreateProfilingGroupCommand.ts index 4747555965190..a96e66aeb16b6 100644 --- a/clients/client-codeguruprofiler/src/commands/CreateProfilingGroupCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/CreateProfilingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProfilingGroupRequest, CreateProfilingGroupResponse } from "../models/models_0"; +import type { CreateProfilingGroupRequest, CreateProfilingGroupResponse } from "../models/models_0"; import { CreateProfilingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/DeleteProfilingGroupCommand.ts b/clients/client-codeguruprofiler/src/commands/DeleteProfilingGroupCommand.ts index 174198c81917b..0066197cb80a3 100644 --- a/clients/client-codeguruprofiler/src/commands/DeleteProfilingGroupCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/DeleteProfilingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfilingGroupRequest, DeleteProfilingGroupResponse } from "../models/models_0"; +import type { DeleteProfilingGroupRequest, DeleteProfilingGroupResponse } from "../models/models_0"; import { DeleteProfilingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/DescribeProfilingGroupCommand.ts b/clients/client-codeguruprofiler/src/commands/DescribeProfilingGroupCommand.ts index 4607e098a4bf4..7f53593cf8dc8 100644 --- a/clients/client-codeguruprofiler/src/commands/DescribeProfilingGroupCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/DescribeProfilingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProfilingGroupRequest, DescribeProfilingGroupResponse } from "../models/models_0"; +import type { DescribeProfilingGroupRequest, DescribeProfilingGroupResponse } from "../models/models_0"; import { DescribeProfilingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/GetFindingsReportAccountSummaryCommand.ts b/clients/client-codeguruprofiler/src/commands/GetFindingsReportAccountSummaryCommand.ts index ed169480d7ef8..7169246717048 100644 --- a/clients/client-codeguruprofiler/src/commands/GetFindingsReportAccountSummaryCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetFindingsReportAccountSummaryCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingsReportAccountSummaryRequest, GetFindingsReportAccountSummaryResponse } from "../models/models_0"; +import type { + GetFindingsReportAccountSummaryRequest, + GetFindingsReportAccountSummaryResponse, +} from "../models/models_0"; import { GetFindingsReportAccountSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/GetNotificationConfigurationCommand.ts b/clients/client-codeguruprofiler/src/commands/GetNotificationConfigurationCommand.ts index cd037b54c3116..77648e5b2c6e8 100644 --- a/clients/client-codeguruprofiler/src/commands/GetNotificationConfigurationCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetNotificationConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNotificationConfigurationRequest, GetNotificationConfigurationResponse } from "../models/models_0"; +import type { GetNotificationConfigurationRequest, GetNotificationConfigurationResponse } from "../models/models_0"; import { GetNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/GetPolicyCommand.ts b/clients/client-codeguruprofiler/src/commands/GetPolicyCommand.ts index 10fdb6ca0f9a3..34fa54ee3cfd3 100644 --- a/clients/client-codeguruprofiler/src/commands/GetPolicyCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; +import type { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; import { GetPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/GetProfileCommand.ts b/clients/client-codeguruprofiler/src/commands/GetProfileCommand.ts index 580929e3237cc..98c0db3122978 100644 --- a/clients/client-codeguruprofiler/src/commands/GetProfileCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetProfileCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileRequest, GetProfileResponse } from "../models/models_0"; +import { type GetProfileRequest, GetProfileResponse } from "../models/models_0"; import { GetProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/GetRecommendationsCommand.ts b/clients/client-codeguruprofiler/src/commands/GetRecommendationsCommand.ts index 449330d7a62d2..432d2da4dddba 100644 --- a/clients/client-codeguruprofiler/src/commands/GetRecommendationsCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/GetRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0"; +import type { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0"; import { GetRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/ListFindingsReportsCommand.ts b/clients/client-codeguruprofiler/src/commands/ListFindingsReportsCommand.ts index 41646d64fab8f..b95adf0b7c7c5 100644 --- a/clients/client-codeguruprofiler/src/commands/ListFindingsReportsCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ListFindingsReportsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFindingsReportsRequest, ListFindingsReportsResponse } from "../models/models_0"; +import type { ListFindingsReportsRequest, ListFindingsReportsResponse } from "../models/models_0"; import { ListFindingsReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/ListProfileTimesCommand.ts b/clients/client-codeguruprofiler/src/commands/ListProfileTimesCommand.ts index 614879f1e6898..94eee49d256b8 100644 --- a/clients/client-codeguruprofiler/src/commands/ListProfileTimesCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ListProfileTimesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfileTimesRequest, ListProfileTimesResponse } from "../models/models_0"; +import type { ListProfileTimesRequest, ListProfileTimesResponse } from "../models/models_0"; import { ListProfileTimes } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/ListProfilingGroupsCommand.ts b/clients/client-codeguruprofiler/src/commands/ListProfilingGroupsCommand.ts index eace1dfb3a99a..08bcec5acce5e 100644 --- a/clients/client-codeguruprofiler/src/commands/ListProfilingGroupsCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ListProfilingGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfilingGroupsRequest, ListProfilingGroupsResponse } from "../models/models_0"; +import type { ListProfilingGroupsRequest, ListProfilingGroupsResponse } from "../models/models_0"; import { ListProfilingGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/ListTagsForResourceCommand.ts b/clients/client-codeguruprofiler/src/commands/ListTagsForResourceCommand.ts index 9988f33d59f48..30704e48b6e8e 100644 --- a/clients/client-codeguruprofiler/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/PostAgentProfileCommand.ts b/clients/client-codeguruprofiler/src/commands/PostAgentProfileCommand.ts index af118d2d181bd..05623d92de82d 100644 --- a/clients/client-codeguruprofiler/src/commands/PostAgentProfileCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/PostAgentProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostAgentProfileRequest, PostAgentProfileResponse } from "../models/models_0"; +import { type PostAgentProfileResponse, PostAgentProfileRequest } from "../models/models_0"; import { PostAgentProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/PutPermissionCommand.ts b/clients/client-codeguruprofiler/src/commands/PutPermissionCommand.ts index 04adc0cdf7d8e..3c0781963e42b 100644 --- a/clients/client-codeguruprofiler/src/commands/PutPermissionCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/PutPermissionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPermissionRequest, PutPermissionResponse } from "../models/models_0"; +import type { PutPermissionRequest, PutPermissionResponse } from "../models/models_0"; import { PutPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/RemoveNotificationChannelCommand.ts b/clients/client-codeguruprofiler/src/commands/RemoveNotificationChannelCommand.ts index 0fb1d1441b417..16513c7fe75cf 100644 --- a/clients/client-codeguruprofiler/src/commands/RemoveNotificationChannelCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/RemoveNotificationChannelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveNotificationChannelRequest, RemoveNotificationChannelResponse } from "../models/models_0"; +import type { RemoveNotificationChannelRequest, RemoveNotificationChannelResponse } from "../models/models_0"; import { RemoveNotificationChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/RemovePermissionCommand.ts b/clients/client-codeguruprofiler/src/commands/RemovePermissionCommand.ts index 2e560201f7c2a..b86adacb5ab5b 100644 --- a/clients/client-codeguruprofiler/src/commands/RemovePermissionCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/RemovePermissionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemovePermissionRequest, RemovePermissionResponse } from "../models/models_0"; +import type { RemovePermissionRequest, RemovePermissionResponse } from "../models/models_0"; import { RemovePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/SubmitFeedbackCommand.ts b/clients/client-codeguruprofiler/src/commands/SubmitFeedbackCommand.ts index ca217ec7dc999..e62b47b3bbeb6 100644 --- a/clients/client-codeguruprofiler/src/commands/SubmitFeedbackCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/SubmitFeedbackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitFeedbackRequest, SubmitFeedbackResponse } from "../models/models_0"; +import type { SubmitFeedbackRequest, SubmitFeedbackResponse } from "../models/models_0"; import { SubmitFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/TagResourceCommand.ts b/clients/client-codeguruprofiler/src/commands/TagResourceCommand.ts index 4f67163e10ae2..d6520cda76ca3 100644 --- a/clients/client-codeguruprofiler/src/commands/TagResourceCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/UntagResourceCommand.ts b/clients/client-codeguruprofiler/src/commands/UntagResourceCommand.ts index 28e27d09c5601..352180967bc0e 100644 --- a/clients/client-codeguruprofiler/src/commands/UntagResourceCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/commands/UpdateProfilingGroupCommand.ts b/clients/client-codeguruprofiler/src/commands/UpdateProfilingGroupCommand.ts index 740a83de13c5a..81f6826a2b960 100644 --- a/clients/client-codeguruprofiler/src/commands/UpdateProfilingGroupCommand.ts +++ b/clients/client-codeguruprofiler/src/commands/UpdateProfilingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient"; +import type { + CodeGuruProfilerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CodeGuruProfilerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProfilingGroupRequest, UpdateProfilingGroupResponse } from "../models/models_0"; +import type { UpdateProfilingGroupRequest, UpdateProfilingGroupResponse } from "../models/models_0"; import { UpdateProfilingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-codeguruprofiler/src/endpoint/EndpointParameters.ts b/clients/client-codeguruprofiler/src/endpoint/EndpointParameters.ts index 5fe942cf0742d..3ce0118053266 100644 --- a/clients/client-codeguruprofiler/src/endpoint/EndpointParameters.ts +++ b/clients/client-codeguruprofiler/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codeguruprofiler/src/endpoint/endpointResolver.ts b/clients/client-codeguruprofiler/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codeguruprofiler/src/endpoint/endpointResolver.ts +++ b/clients/client-codeguruprofiler/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codeguruprofiler/src/extensionConfiguration.ts b/clients/client-codeguruprofiler/src/extensionConfiguration.ts index f42d5762882c9..7dfb532d6fb7e 100644 --- a/clients/client-codeguruprofiler/src/extensionConfiguration.ts +++ b/clients/client-codeguruprofiler/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codeguruprofiler/src/models/CodeGuruProfilerServiceException.ts b/clients/client-codeguruprofiler/src/models/CodeGuruProfilerServiceException.ts index e53ff9fe15af1..c34ae62650125 100644 --- a/clients/client-codeguruprofiler/src/models/CodeGuruProfilerServiceException.ts +++ b/clients/client-codeguruprofiler/src/models/CodeGuruProfilerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codeguruprofiler/src/models/errors.ts b/clients/client-codeguruprofiler/src/models/errors.ts index a3f50eacdef02..b268b1243eeab 100644 --- a/clients/client-codeguruprofiler/src/models/errors.ts +++ b/clients/client-codeguruprofiler/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException"; diff --git a/clients/client-codeguruprofiler/src/pagination/GetFindingsReportAccountSummaryPaginator.ts b/clients/client-codeguruprofiler/src/pagination/GetFindingsReportAccountSummaryPaginator.ts index 20c8a454eca02..3b7dab1549842 100644 --- a/clients/client-codeguruprofiler/src/pagination/GetFindingsReportAccountSummaryPaginator.ts +++ b/clients/client-codeguruprofiler/src/pagination/GetFindingsReportAccountSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruProfilerClient } from "../CodeGuruProfilerClient"; import { diff --git a/clients/client-codeguruprofiler/src/pagination/Interfaces.ts b/clients/client-codeguruprofiler/src/pagination/Interfaces.ts index b94cb9ee6d2f3..145de523cb91d 100644 --- a/clients/client-codeguruprofiler/src/pagination/Interfaces.ts +++ b/clients/client-codeguruprofiler/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeGuruProfilerClient } from "../CodeGuruProfilerClient"; diff --git a/clients/client-codeguruprofiler/src/pagination/ListFindingsReportsPaginator.ts b/clients/client-codeguruprofiler/src/pagination/ListFindingsReportsPaginator.ts index 90c70151a269c..329f6e17f7b0b 100644 --- a/clients/client-codeguruprofiler/src/pagination/ListFindingsReportsPaginator.ts +++ b/clients/client-codeguruprofiler/src/pagination/ListFindingsReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruProfilerClient } from "../CodeGuruProfilerClient"; import { diff --git a/clients/client-codeguruprofiler/src/pagination/ListProfileTimesPaginator.ts b/clients/client-codeguruprofiler/src/pagination/ListProfileTimesPaginator.ts index 346de7d057ebe..ece01aa4a3941 100644 --- a/clients/client-codeguruprofiler/src/pagination/ListProfileTimesPaginator.ts +++ b/clients/client-codeguruprofiler/src/pagination/ListProfileTimesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruProfilerClient } from "../CodeGuruProfilerClient"; import { diff --git a/clients/client-codeguruprofiler/src/pagination/ListProfilingGroupsPaginator.ts b/clients/client-codeguruprofiler/src/pagination/ListProfilingGroupsPaginator.ts index bb9172985c67a..01756e1192e4e 100644 --- a/clients/client-codeguruprofiler/src/pagination/ListProfilingGroupsPaginator.ts +++ b/clients/client-codeguruprofiler/src/pagination/ListProfilingGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeGuruProfilerClient } from "../CodeGuruProfilerClient"; import { diff --git a/clients/client-codeguruprofiler/src/runtimeConfig.browser.ts b/clients/client-codeguruprofiler/src/runtimeConfig.browser.ts index 7790850fca107..36256700cc811 100644 --- a/clients/client-codeguruprofiler/src/runtimeConfig.browser.ts +++ b/clients/client-codeguruprofiler/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient"; + +import type { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codeguruprofiler/src/runtimeConfig.native.ts b/clients/client-codeguruprofiler/src/runtimeConfig.native.ts index c0353cb34d394..57e0fd314f1f2 100644 --- a/clients/client-codeguruprofiler/src/runtimeConfig.native.ts +++ b/clients/client-codeguruprofiler/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient"; +import type { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codeguruprofiler/src/runtimeConfig.shared.ts b/clients/client-codeguruprofiler/src/runtimeConfig.shared.ts index b49745df3443a..34d6a222eb75d 100644 --- a/clients/client-codeguruprofiler/src/runtimeConfig.shared.ts +++ b/clients/client-codeguruprofiler/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeGuruProfilerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient"; +import type { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codeguruprofiler/src/runtimeConfig.ts b/clients/client-codeguruprofiler/src/runtimeConfig.ts index 88104d12ab95f..02c32c776f812 100644 --- a/clients/client-codeguruprofiler/src/runtimeConfig.ts +++ b/clients/client-codeguruprofiler/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient"; + +import type { CodeGuruProfilerClientConfig } from "./CodeGuruProfilerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codeguruprofiler/src/runtimeExtensions.ts b/clients/client-codeguruprofiler/src/runtimeExtensions.ts index d0e0a90e51b70..336e3cc8d9278 100644 --- a/clients/client-codeguruprofiler/src/runtimeExtensions.ts +++ b/clients/client-codeguruprofiler/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeGuruProfilerExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeGuruProfilerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codeguruprofiler/src/schemas/schemas_0.ts b/clients/client-codeguruprofiler/src/schemas/schemas_0.ts index 5f0ac3da790d5..f77a188630d62 100644 --- a/clients/client-codeguruprofiler/src/schemas/schemas_0.ts +++ b/clients/client-codeguruprofiler/src/schemas/schemas_0.ts @@ -212,7 +212,7 @@ const n0 = "com.amazonaws.codeguruprofiler"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-codepipeline/package.json b/clients/client-codepipeline/package.json index 399e162f2189b..ae79b4a39cd94 100644 --- a/clients/client-codepipeline/package.json +++ b/clients/client-codepipeline/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codepipeline/src/CodePipeline.ts b/clients/client-codepipeline/src/CodePipeline.ts index be8f305f4add7..ca5e846438711 100644 --- a/clients/client-codepipeline/src/CodePipeline.ts +++ b/clients/client-codepipeline/src/CodePipeline.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodePipelineClient, CodePipelineClientConfig } from "./CodePipelineClient"; +import { CodePipelineClient } from "./CodePipelineClient"; import { AcknowledgeJobCommand, AcknowledgeJobCommandInput, diff --git a/clients/client-codepipeline/src/CodePipelineClient.ts b/clients/client-codepipeline/src/CodePipelineClient.ts index 73b53e2360ab7..327d8ddf69d74 100644 --- a/clients/client-codepipeline/src/CodePipelineClient.ts +++ b/clients/client-codepipeline/src/CodePipelineClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodePipelineHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcknowledgeJobCommandInput, AcknowledgeJobCommandOutput } from "./commands/AcknowledgeJobCommand"; @@ -174,7 +183,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codepipeline/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codepipeline/src/auth/httpAuthExtensionConfiguration.ts index 08d337d4129ab..36dd95c6130a5 100644 --- a/clients/client-codepipeline/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codepipeline/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodePipelineHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodePipelineHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codepipeline/src/auth/httpAuthSchemeProvider.ts b/clients/client-codepipeline/src/auth/httpAuthSchemeProvider.ts index 37be100655824..d42286fbbecab 100644 --- a/clients/client-codepipeline/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codepipeline/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodePipelineClientConfig, CodePipelineClientResolvedConfig } from "../CodePipelineClient"; +import { type CodePipelineClientResolvedConfig, CodePipelineClientConfig } from "../CodePipelineClient"; /** * @internal diff --git a/clients/client-codepipeline/src/commands/AcknowledgeJobCommand.ts b/clients/client-codepipeline/src/commands/AcknowledgeJobCommand.ts index d83b674d8d3d1..f6218dafee2f1 100644 --- a/clients/client-codepipeline/src/commands/AcknowledgeJobCommand.ts +++ b/clients/client-codepipeline/src/commands/AcknowledgeJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcknowledgeJobInput, AcknowledgeJobOutput } from "../models/models_0"; +import type { AcknowledgeJobInput, AcknowledgeJobOutput } from "../models/models_0"; import { AcknowledgeJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/AcknowledgeThirdPartyJobCommand.ts b/clients/client-codepipeline/src/commands/AcknowledgeThirdPartyJobCommand.ts index 24319bc7bc204..db7e00c957a8e 100644 --- a/clients/client-codepipeline/src/commands/AcknowledgeThirdPartyJobCommand.ts +++ b/clients/client-codepipeline/src/commands/AcknowledgeThirdPartyJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcknowledgeThirdPartyJobInput, AcknowledgeThirdPartyJobOutput } from "../models/models_0"; +import type { AcknowledgeThirdPartyJobInput, AcknowledgeThirdPartyJobOutput } from "../models/models_0"; import { AcknowledgeThirdPartyJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/CreateCustomActionTypeCommand.ts b/clients/client-codepipeline/src/commands/CreateCustomActionTypeCommand.ts index c1bd9a6bb0a91..1293035fd5a7d 100644 --- a/clients/client-codepipeline/src/commands/CreateCustomActionTypeCommand.ts +++ b/clients/client-codepipeline/src/commands/CreateCustomActionTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomActionTypeInput, CreateCustomActionTypeOutput } from "../models/models_0"; +import type { CreateCustomActionTypeInput, CreateCustomActionTypeOutput } from "../models/models_0"; import { CreateCustomActionType } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/CreatePipelineCommand.ts b/clients/client-codepipeline/src/commands/CreatePipelineCommand.ts index c146634ee584c..aa75998fa348b 100644 --- a/clients/client-codepipeline/src/commands/CreatePipelineCommand.ts +++ b/clients/client-codepipeline/src/commands/CreatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePipelineInput, CreatePipelineOutput } from "../models/models_0"; +import type { CreatePipelineInput, CreatePipelineOutput } from "../models/models_0"; import { CreatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/DeleteCustomActionTypeCommand.ts b/clients/client-codepipeline/src/commands/DeleteCustomActionTypeCommand.ts index a12ac4ed16e02..75b91fb54e62c 100644 --- a/clients/client-codepipeline/src/commands/DeleteCustomActionTypeCommand.ts +++ b/clients/client-codepipeline/src/commands/DeleteCustomActionTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomActionTypeInput } from "../models/models_0"; +import type { DeleteCustomActionTypeInput } from "../models/models_0"; import { DeleteCustomActionType } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/DeletePipelineCommand.ts b/clients/client-codepipeline/src/commands/DeletePipelineCommand.ts index 6a4d4fa546b55..d912b21b0aaee 100644 --- a/clients/client-codepipeline/src/commands/DeletePipelineCommand.ts +++ b/clients/client-codepipeline/src/commands/DeletePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePipelineInput } from "../models/models_0"; +import type { DeletePipelineInput } from "../models/models_0"; import { DeletePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/DeleteWebhookCommand.ts b/clients/client-codepipeline/src/commands/DeleteWebhookCommand.ts index ea268c07d5521..ea72249473d60 100644 --- a/clients/client-codepipeline/src/commands/DeleteWebhookCommand.ts +++ b/clients/client-codepipeline/src/commands/DeleteWebhookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebhookInput, DeleteWebhookOutput } from "../models/models_0"; +import type { DeleteWebhookInput, DeleteWebhookOutput } from "../models/models_0"; import { DeleteWebhook } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/DeregisterWebhookWithThirdPartyCommand.ts b/clients/client-codepipeline/src/commands/DeregisterWebhookWithThirdPartyCommand.ts index 597be6cc50a4c..53d6bd059f413 100644 --- a/clients/client-codepipeline/src/commands/DeregisterWebhookWithThirdPartyCommand.ts +++ b/clients/client-codepipeline/src/commands/DeregisterWebhookWithThirdPartyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterWebhookWithThirdPartyInput, DeregisterWebhookWithThirdPartyOutput } from "../models/models_0"; +import type { DeregisterWebhookWithThirdPartyInput, DeregisterWebhookWithThirdPartyOutput } from "../models/models_0"; import { DeregisterWebhookWithThirdParty } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/DisableStageTransitionCommand.ts b/clients/client-codepipeline/src/commands/DisableStageTransitionCommand.ts index b080f81ac5c99..fe16215c6ceb3 100644 --- a/clients/client-codepipeline/src/commands/DisableStageTransitionCommand.ts +++ b/clients/client-codepipeline/src/commands/DisableStageTransitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableStageTransitionInput } from "../models/models_0"; +import type { DisableStageTransitionInput } from "../models/models_0"; import { DisableStageTransition } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/EnableStageTransitionCommand.ts b/clients/client-codepipeline/src/commands/EnableStageTransitionCommand.ts index aff20cc564efe..bda6c4fafa68c 100644 --- a/clients/client-codepipeline/src/commands/EnableStageTransitionCommand.ts +++ b/clients/client-codepipeline/src/commands/EnableStageTransitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableStageTransitionInput } from "../models/models_0"; +import type { EnableStageTransitionInput } from "../models/models_0"; import { EnableStageTransition } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/GetActionTypeCommand.ts b/clients/client-codepipeline/src/commands/GetActionTypeCommand.ts index 7d4a059b41e29..b0e896889d076 100644 --- a/clients/client-codepipeline/src/commands/GetActionTypeCommand.ts +++ b/clients/client-codepipeline/src/commands/GetActionTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetActionTypeInput, GetActionTypeOutput } from "../models/models_0"; +import type { GetActionTypeInput, GetActionTypeOutput } from "../models/models_0"; import { GetActionType } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/GetJobDetailsCommand.ts b/clients/client-codepipeline/src/commands/GetJobDetailsCommand.ts index 051a28fe824c9..90a95533251f6 100644 --- a/clients/client-codepipeline/src/commands/GetJobDetailsCommand.ts +++ b/clients/client-codepipeline/src/commands/GetJobDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobDetailsInput, GetJobDetailsOutput } from "../models/models_0"; +import type { GetJobDetailsInput, GetJobDetailsOutput } from "../models/models_0"; import { GetJobDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/GetPipelineCommand.ts b/clients/client-codepipeline/src/commands/GetPipelineCommand.ts index 635a3ab395684..b58a078e22d0e 100644 --- a/clients/client-codepipeline/src/commands/GetPipelineCommand.ts +++ b/clients/client-codepipeline/src/commands/GetPipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPipelineInput, GetPipelineOutput } from "../models/models_0"; +import type { GetPipelineInput, GetPipelineOutput } from "../models/models_0"; import { GetPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/GetPipelineExecutionCommand.ts b/clients/client-codepipeline/src/commands/GetPipelineExecutionCommand.ts index 06a16cef10aae..2fa200da17258 100644 --- a/clients/client-codepipeline/src/commands/GetPipelineExecutionCommand.ts +++ b/clients/client-codepipeline/src/commands/GetPipelineExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPipelineExecutionInput, GetPipelineExecutionOutput } from "../models/models_0"; +import type { GetPipelineExecutionInput, GetPipelineExecutionOutput } from "../models/models_0"; import { GetPipelineExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/GetPipelineStateCommand.ts b/clients/client-codepipeline/src/commands/GetPipelineStateCommand.ts index 6a6c10db3055c..3b6b7e8191cb7 100644 --- a/clients/client-codepipeline/src/commands/GetPipelineStateCommand.ts +++ b/clients/client-codepipeline/src/commands/GetPipelineStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPipelineStateInput, GetPipelineStateOutput } from "../models/models_0"; +import type { GetPipelineStateInput, GetPipelineStateOutput } from "../models/models_0"; import { GetPipelineState } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/GetThirdPartyJobDetailsCommand.ts b/clients/client-codepipeline/src/commands/GetThirdPartyJobDetailsCommand.ts index bc9a97578f961..5911c22bde624 100644 --- a/clients/client-codepipeline/src/commands/GetThirdPartyJobDetailsCommand.ts +++ b/clients/client-codepipeline/src/commands/GetThirdPartyJobDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetThirdPartyJobDetailsInput, GetThirdPartyJobDetailsOutput } from "../models/models_0"; +import type { GetThirdPartyJobDetailsInput, GetThirdPartyJobDetailsOutput } from "../models/models_0"; import { GetThirdPartyJobDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/ListActionExecutionsCommand.ts b/clients/client-codepipeline/src/commands/ListActionExecutionsCommand.ts index a9dfd76c42760..53c4e3238d85d 100644 --- a/clients/client-codepipeline/src/commands/ListActionExecutionsCommand.ts +++ b/clients/client-codepipeline/src/commands/ListActionExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListActionExecutionsInput, ListActionExecutionsOutput } from "../models/models_0"; +import type { ListActionExecutionsInput, ListActionExecutionsOutput } from "../models/models_0"; import { ListActionExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/ListActionTypesCommand.ts b/clients/client-codepipeline/src/commands/ListActionTypesCommand.ts index 14479ab696f92..4651e6dca4f74 100644 --- a/clients/client-codepipeline/src/commands/ListActionTypesCommand.ts +++ b/clients/client-codepipeline/src/commands/ListActionTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListActionTypesInput, ListActionTypesOutput } from "../models/models_0"; +import type { ListActionTypesInput, ListActionTypesOutput } from "../models/models_0"; import { ListActionTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/ListDeployActionExecutionTargetsCommand.ts b/clients/client-codepipeline/src/commands/ListDeployActionExecutionTargetsCommand.ts index ad3b77b4fc6d3..7736ac4dfb938 100644 --- a/clients/client-codepipeline/src/commands/ListDeployActionExecutionTargetsCommand.ts +++ b/clients/client-codepipeline/src/commands/ListDeployActionExecutionTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeployActionExecutionTargetsInput, ListDeployActionExecutionTargetsOutput } from "../models/models_0"; +import type { ListDeployActionExecutionTargetsInput, ListDeployActionExecutionTargetsOutput } from "../models/models_0"; import { ListDeployActionExecutionTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/ListPipelineExecutionsCommand.ts b/clients/client-codepipeline/src/commands/ListPipelineExecutionsCommand.ts index 54fc74e73ff2e..0318d310bf2a9 100644 --- a/clients/client-codepipeline/src/commands/ListPipelineExecutionsCommand.ts +++ b/clients/client-codepipeline/src/commands/ListPipelineExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelineExecutionsInput, ListPipelineExecutionsOutput } from "../models/models_0"; +import type { ListPipelineExecutionsInput, ListPipelineExecutionsOutput } from "../models/models_0"; import { ListPipelineExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/ListPipelinesCommand.ts b/clients/client-codepipeline/src/commands/ListPipelinesCommand.ts index 6afbe12c637c6..3900682f757c9 100644 --- a/clients/client-codepipeline/src/commands/ListPipelinesCommand.ts +++ b/clients/client-codepipeline/src/commands/ListPipelinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0"; +import type { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0"; import { ListPipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/ListRuleExecutionsCommand.ts b/clients/client-codepipeline/src/commands/ListRuleExecutionsCommand.ts index b110a4a3f3e1c..1cfde1263ae2b 100644 --- a/clients/client-codepipeline/src/commands/ListRuleExecutionsCommand.ts +++ b/clients/client-codepipeline/src/commands/ListRuleExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRuleExecutionsInput, ListRuleExecutionsOutput } from "../models/models_0"; +import type { ListRuleExecutionsInput, ListRuleExecutionsOutput } from "../models/models_0"; import { ListRuleExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/ListRuleTypesCommand.ts b/clients/client-codepipeline/src/commands/ListRuleTypesCommand.ts index 9538388dca041..193f7d429f805 100644 --- a/clients/client-codepipeline/src/commands/ListRuleTypesCommand.ts +++ b/clients/client-codepipeline/src/commands/ListRuleTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRuleTypesInput, ListRuleTypesOutput } from "../models/models_0"; +import type { ListRuleTypesInput, ListRuleTypesOutput } from "../models/models_0"; import { ListRuleTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/ListTagsForResourceCommand.ts b/clients/client-codepipeline/src/commands/ListTagsForResourceCommand.ts index f0487f2383413..74ad4cf15ae8e 100644 --- a/clients/client-codepipeline/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codepipeline/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/ListWebhooksCommand.ts b/clients/client-codepipeline/src/commands/ListWebhooksCommand.ts index 557ffac704b3b..ede791689e19c 100644 --- a/clients/client-codepipeline/src/commands/ListWebhooksCommand.ts +++ b/clients/client-codepipeline/src/commands/ListWebhooksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWebhooksInput, ListWebhooksOutput } from "../models/models_0"; +import type { ListWebhooksInput, ListWebhooksOutput } from "../models/models_0"; import { ListWebhooks } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/OverrideStageConditionCommand.ts b/clients/client-codepipeline/src/commands/OverrideStageConditionCommand.ts index 13ed87b69bd6a..dbf8b0a17af0d 100644 --- a/clients/client-codepipeline/src/commands/OverrideStageConditionCommand.ts +++ b/clients/client-codepipeline/src/commands/OverrideStageConditionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OverrideStageConditionInput } from "../models/models_0"; +import type { OverrideStageConditionInput } from "../models/models_0"; import { OverrideStageCondition } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/PollForJobsCommand.ts b/clients/client-codepipeline/src/commands/PollForJobsCommand.ts index b3a4728d2c758..16c6354deaee9 100644 --- a/clients/client-codepipeline/src/commands/PollForJobsCommand.ts +++ b/clients/client-codepipeline/src/commands/PollForJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PollForJobsInput, PollForJobsOutput } from "../models/models_0"; +import type { PollForJobsInput, PollForJobsOutput } from "../models/models_0"; import { PollForJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/PollForThirdPartyJobsCommand.ts b/clients/client-codepipeline/src/commands/PollForThirdPartyJobsCommand.ts index 9f21e23057cd2..319124135bb4b 100644 --- a/clients/client-codepipeline/src/commands/PollForThirdPartyJobsCommand.ts +++ b/clients/client-codepipeline/src/commands/PollForThirdPartyJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PollForThirdPartyJobsInput, PollForThirdPartyJobsOutput } from "../models/models_0"; +import type { PollForThirdPartyJobsInput, PollForThirdPartyJobsOutput } from "../models/models_0"; import { PollForThirdPartyJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/PutActionRevisionCommand.ts b/clients/client-codepipeline/src/commands/PutActionRevisionCommand.ts index 54a727738c27a..f0bcd3a5a104c 100644 --- a/clients/client-codepipeline/src/commands/PutActionRevisionCommand.ts +++ b/clients/client-codepipeline/src/commands/PutActionRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutActionRevisionInput, PutActionRevisionOutput } from "../models/models_0"; +import type { PutActionRevisionInput, PutActionRevisionOutput } from "../models/models_0"; import { PutActionRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/PutApprovalResultCommand.ts b/clients/client-codepipeline/src/commands/PutApprovalResultCommand.ts index f0601af50d461..a556b00488072 100644 --- a/clients/client-codepipeline/src/commands/PutApprovalResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutApprovalResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutApprovalResultInput, PutApprovalResultOutput } from "../models/models_0"; +import type { PutApprovalResultInput, PutApprovalResultOutput } from "../models/models_0"; import { PutApprovalResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/PutJobFailureResultCommand.ts b/clients/client-codepipeline/src/commands/PutJobFailureResultCommand.ts index 6de81babb4260..5e0d9a201f9ea 100644 --- a/clients/client-codepipeline/src/commands/PutJobFailureResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutJobFailureResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutJobFailureResultInput } from "../models/models_0"; +import type { PutJobFailureResultInput } from "../models/models_0"; import { PutJobFailureResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/PutJobSuccessResultCommand.ts b/clients/client-codepipeline/src/commands/PutJobSuccessResultCommand.ts index 6bf64f255de9c..2f995cdd76d4e 100644 --- a/clients/client-codepipeline/src/commands/PutJobSuccessResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutJobSuccessResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutJobSuccessResultInput } from "../models/models_0"; +import type { PutJobSuccessResultInput } from "../models/models_0"; import { PutJobSuccessResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/PutThirdPartyJobFailureResultCommand.ts b/clients/client-codepipeline/src/commands/PutThirdPartyJobFailureResultCommand.ts index c7f7c4cdb0d12..eda176d1f7ae5 100644 --- a/clients/client-codepipeline/src/commands/PutThirdPartyJobFailureResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutThirdPartyJobFailureResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutThirdPartyJobFailureResultInput } from "../models/models_0"; +import type { PutThirdPartyJobFailureResultInput } from "../models/models_0"; import { PutThirdPartyJobFailureResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/PutThirdPartyJobSuccessResultCommand.ts b/clients/client-codepipeline/src/commands/PutThirdPartyJobSuccessResultCommand.ts index 58836d512642b..99ccf8feb001d 100644 --- a/clients/client-codepipeline/src/commands/PutThirdPartyJobSuccessResultCommand.ts +++ b/clients/client-codepipeline/src/commands/PutThirdPartyJobSuccessResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutThirdPartyJobSuccessResultInput } from "../models/models_0"; +import type { PutThirdPartyJobSuccessResultInput } from "../models/models_0"; import { PutThirdPartyJobSuccessResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/PutWebhookCommand.ts b/clients/client-codepipeline/src/commands/PutWebhookCommand.ts index b06a3085fce96..f6fb7d86089c7 100644 --- a/clients/client-codepipeline/src/commands/PutWebhookCommand.ts +++ b/clients/client-codepipeline/src/commands/PutWebhookCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWebhookInput, PutWebhookOutput } from "../models/models_0"; +import type { PutWebhookInput, PutWebhookOutput } from "../models/models_0"; import { PutWebhook } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/RegisterWebhookWithThirdPartyCommand.ts b/clients/client-codepipeline/src/commands/RegisterWebhookWithThirdPartyCommand.ts index bd7188dff536b..89db1bb2afc86 100644 --- a/clients/client-codepipeline/src/commands/RegisterWebhookWithThirdPartyCommand.ts +++ b/clients/client-codepipeline/src/commands/RegisterWebhookWithThirdPartyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterWebhookWithThirdPartyInput, RegisterWebhookWithThirdPartyOutput } from "../models/models_0"; +import type { RegisterWebhookWithThirdPartyInput, RegisterWebhookWithThirdPartyOutput } from "../models/models_0"; import { RegisterWebhookWithThirdParty } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/RetryStageExecutionCommand.ts b/clients/client-codepipeline/src/commands/RetryStageExecutionCommand.ts index 9db87770a3227..316a3c3bcff4a 100644 --- a/clients/client-codepipeline/src/commands/RetryStageExecutionCommand.ts +++ b/clients/client-codepipeline/src/commands/RetryStageExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetryStageExecutionInput, RetryStageExecutionOutput } from "../models/models_0"; +import type { RetryStageExecutionInput, RetryStageExecutionOutput } from "../models/models_0"; import { RetryStageExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/RollbackStageCommand.ts b/clients/client-codepipeline/src/commands/RollbackStageCommand.ts index f5ef6ee0a5af2..8e5fc528e1ca3 100644 --- a/clients/client-codepipeline/src/commands/RollbackStageCommand.ts +++ b/clients/client-codepipeline/src/commands/RollbackStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RollbackStageInput, RollbackStageOutput } from "../models/models_0"; +import type { RollbackStageInput, RollbackStageOutput } from "../models/models_0"; import { RollbackStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/StartPipelineExecutionCommand.ts b/clients/client-codepipeline/src/commands/StartPipelineExecutionCommand.ts index 1d835c2be6ad7..f8c89a64dca07 100644 --- a/clients/client-codepipeline/src/commands/StartPipelineExecutionCommand.ts +++ b/clients/client-codepipeline/src/commands/StartPipelineExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPipelineExecutionInput, StartPipelineExecutionOutput } from "../models/models_0"; +import type { StartPipelineExecutionInput, StartPipelineExecutionOutput } from "../models/models_0"; import { StartPipelineExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/StopPipelineExecutionCommand.ts b/clients/client-codepipeline/src/commands/StopPipelineExecutionCommand.ts index 97fa785b4f931..9cf582455c683 100644 --- a/clients/client-codepipeline/src/commands/StopPipelineExecutionCommand.ts +++ b/clients/client-codepipeline/src/commands/StopPipelineExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopPipelineExecutionInput, StopPipelineExecutionOutput } from "../models/models_0"; +import type { StopPipelineExecutionInput, StopPipelineExecutionOutput } from "../models/models_0"; import { StopPipelineExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/TagResourceCommand.ts b/clients/client-codepipeline/src/commands/TagResourceCommand.ts index 29fd268e5e8b8..8c7cda869d4de 100644 --- a/clients/client-codepipeline/src/commands/TagResourceCommand.ts +++ b/clients/client-codepipeline/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/UntagResourceCommand.ts b/clients/client-codepipeline/src/commands/UntagResourceCommand.ts index 057a522510149..8766e90745d2d 100644 --- a/clients/client-codepipeline/src/commands/UntagResourceCommand.ts +++ b/clients/client-codepipeline/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/UpdateActionTypeCommand.ts b/clients/client-codepipeline/src/commands/UpdateActionTypeCommand.ts index 43e63532fe388..c84115a21b143 100644 --- a/clients/client-codepipeline/src/commands/UpdateActionTypeCommand.ts +++ b/clients/client-codepipeline/src/commands/UpdateActionTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateActionTypeInput } from "../models/models_0"; +import type { UpdateActionTypeInput } from "../models/models_0"; import { UpdateActionType } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/commands/UpdatePipelineCommand.ts b/clients/client-codepipeline/src/commands/UpdatePipelineCommand.ts index 7c27f7b3d1b78..212153f296a63 100644 --- a/clients/client-codepipeline/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-codepipeline/src/commands/UpdatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; +import type { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePipelineInput, UpdatePipelineOutput } from "../models/models_0"; +import type { UpdatePipelineInput, UpdatePipelineOutput } from "../models/models_0"; import { UpdatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-codepipeline/src/endpoint/EndpointParameters.ts b/clients/client-codepipeline/src/endpoint/EndpointParameters.ts index 14f99a8173d4f..4b07260ad930b 100644 --- a/clients/client-codepipeline/src/endpoint/EndpointParameters.ts +++ b/clients/client-codepipeline/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codepipeline/src/endpoint/endpointResolver.ts b/clients/client-codepipeline/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codepipeline/src/endpoint/endpointResolver.ts +++ b/clients/client-codepipeline/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codepipeline/src/extensionConfiguration.ts b/clients/client-codepipeline/src/extensionConfiguration.ts index e5f3b81656abf..90439680506b8 100644 --- a/clients/client-codepipeline/src/extensionConfiguration.ts +++ b/clients/client-codepipeline/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codepipeline/src/models/CodePipelineServiceException.ts b/clients/client-codepipeline/src/models/CodePipelineServiceException.ts index a11760180cdcb..7119c63d16598 100644 --- a/clients/client-codepipeline/src/models/CodePipelineServiceException.ts +++ b/clients/client-codepipeline/src/models/CodePipelineServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codepipeline/src/models/errors.ts b/clients/client-codepipeline/src/models/errors.ts index 9ade055a78a6f..f26da53975be3 100644 --- a/clients/client-codepipeline/src/models/errors.ts +++ b/clients/client-codepipeline/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodePipelineServiceException as __BaseException } from "./CodePipelineServiceException"; diff --git a/clients/client-codepipeline/src/pagination/Interfaces.ts b/clients/client-codepipeline/src/pagination/Interfaces.ts index 77611be46ae4a..5c137d0249431 100644 --- a/clients/client-codepipeline/src/pagination/Interfaces.ts +++ b/clients/client-codepipeline/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodePipelineClient } from "../CodePipelineClient"; diff --git a/clients/client-codepipeline/src/pagination/ListActionExecutionsPaginator.ts b/clients/client-codepipeline/src/pagination/ListActionExecutionsPaginator.ts index 97619b2cccf1f..0d808f4e6265c 100644 --- a/clients/client-codepipeline/src/pagination/ListActionExecutionsPaginator.ts +++ b/clients/client-codepipeline/src/pagination/ListActionExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodePipelineClient } from "../CodePipelineClient"; import { diff --git a/clients/client-codepipeline/src/pagination/ListActionTypesPaginator.ts b/clients/client-codepipeline/src/pagination/ListActionTypesPaginator.ts index c65881522e2b8..a00885fe0d381 100644 --- a/clients/client-codepipeline/src/pagination/ListActionTypesPaginator.ts +++ b/clients/client-codepipeline/src/pagination/ListActionTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodePipelineClient } from "../CodePipelineClient"; import { diff --git a/clients/client-codepipeline/src/pagination/ListDeployActionExecutionTargetsPaginator.ts b/clients/client-codepipeline/src/pagination/ListDeployActionExecutionTargetsPaginator.ts index 324b5a72876d8..a3def49ba2900 100644 --- a/clients/client-codepipeline/src/pagination/ListDeployActionExecutionTargetsPaginator.ts +++ b/clients/client-codepipeline/src/pagination/ListDeployActionExecutionTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodePipelineClient } from "../CodePipelineClient"; import { diff --git a/clients/client-codepipeline/src/pagination/ListPipelineExecutionsPaginator.ts b/clients/client-codepipeline/src/pagination/ListPipelineExecutionsPaginator.ts index 4a459a67234d1..ee8f9d51aa955 100644 --- a/clients/client-codepipeline/src/pagination/ListPipelineExecutionsPaginator.ts +++ b/clients/client-codepipeline/src/pagination/ListPipelineExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodePipelineClient } from "../CodePipelineClient"; import { diff --git a/clients/client-codepipeline/src/pagination/ListPipelinesPaginator.ts b/clients/client-codepipeline/src/pagination/ListPipelinesPaginator.ts index 6240f3970b893..52a1d50f48080 100644 --- a/clients/client-codepipeline/src/pagination/ListPipelinesPaginator.ts +++ b/clients/client-codepipeline/src/pagination/ListPipelinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodePipelineClient } from "../CodePipelineClient"; import { diff --git a/clients/client-codepipeline/src/pagination/ListRuleExecutionsPaginator.ts b/clients/client-codepipeline/src/pagination/ListRuleExecutionsPaginator.ts index 20a4d5b63de25..e53613af166b5 100644 --- a/clients/client-codepipeline/src/pagination/ListRuleExecutionsPaginator.ts +++ b/clients/client-codepipeline/src/pagination/ListRuleExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodePipelineClient } from "../CodePipelineClient"; import { diff --git a/clients/client-codepipeline/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-codepipeline/src/pagination/ListTagsForResourcePaginator.ts index ec197b7f98403..c9ef1207b6473 100644 --- a/clients/client-codepipeline/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-codepipeline/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodePipelineClient } from "../CodePipelineClient"; import { diff --git a/clients/client-codepipeline/src/pagination/ListWebhooksPaginator.ts b/clients/client-codepipeline/src/pagination/ListWebhooksPaginator.ts index b27b265fa5bd5..8577ec69ff25b 100644 --- a/clients/client-codepipeline/src/pagination/ListWebhooksPaginator.ts +++ b/clients/client-codepipeline/src/pagination/ListWebhooksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodePipelineClient } from "../CodePipelineClient"; import { diff --git a/clients/client-codepipeline/src/runtimeConfig.browser.ts b/clients/client-codepipeline/src/runtimeConfig.browser.ts index 480dd5008c459..f82638445a1ee 100644 --- a/clients/client-codepipeline/src/runtimeConfig.browser.ts +++ b/clients/client-codepipeline/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodePipelineClientConfig } from "./CodePipelineClient"; + +import type { CodePipelineClientConfig } from "./CodePipelineClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codepipeline/src/runtimeConfig.native.ts b/clients/client-codepipeline/src/runtimeConfig.native.ts index b49a56f1443cb..d7c5afb2e0bad 100644 --- a/clients/client-codepipeline/src/runtimeConfig.native.ts +++ b/clients/client-codepipeline/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodePipelineClientConfig } from "./CodePipelineClient"; +import type { CodePipelineClientConfig } from "./CodePipelineClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codepipeline/src/runtimeConfig.shared.ts b/clients/client-codepipeline/src/runtimeConfig.shared.ts index 120c81ef3a4ca..222a4189e1435 100644 --- a/clients/client-codepipeline/src/runtimeConfig.shared.ts +++ b/clients/client-codepipeline/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodePipelineHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodePipelineClientConfig } from "./CodePipelineClient"; +import type { CodePipelineClientConfig } from "./CodePipelineClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codepipeline/src/runtimeConfig.ts b/clients/client-codepipeline/src/runtimeConfig.ts index e7947ccdc5d57..c414444c76009 100644 --- a/clients/client-codepipeline/src/runtimeConfig.ts +++ b/clients/client-codepipeline/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodePipelineClientConfig } from "./CodePipelineClient"; + +import type { CodePipelineClientConfig } from "./CodePipelineClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codepipeline/src/runtimeExtensions.ts b/clients/client-codepipeline/src/runtimeExtensions.ts index 28d3db8db535e..c0bfa8823458a 100644 --- a/clients/client-codepipeline/src/runtimeExtensions.ts +++ b/clients/client-codepipeline/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodePipelineExtensionConfiguration } from "./extensionConfiguration"; +import type { CodePipelineExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codepipeline/src/schemas/schemas_0.ts b/clients/client-codepipeline/src/schemas/schemas_0.ts index f435a01b90601..0bd304a1cec53 100644 --- a/clients/client-codepipeline/src/schemas/schemas_0.ts +++ b/clients/client-codepipeline/src/schemas/schemas_0.ts @@ -566,7 +566,7 @@ const n0 = "com.amazonaws.codepipeline"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-codestar-connections/package.json b/clients/client-codestar-connections/package.json index 8784cea15d846..a592b1f37a860 100644 --- a/clients/client-codestar-connections/package.json +++ b/clients/client-codestar-connections/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codestar-connections/src/CodeStarConnections.ts b/clients/client-codestar-connections/src/CodeStarConnections.ts index 8f677dc71be63..a5307ce2a833f 100644 --- a/clients/client-codestar-connections/src/CodeStarConnections.ts +++ b/clients/client-codestar-connections/src/CodeStarConnections.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodeStarConnectionsClient, CodeStarConnectionsClientConfig } from "./CodeStarConnectionsClient"; +import { CodeStarConnectionsClient } from "./CodeStarConnectionsClient"; import { CreateConnectionCommand, CreateConnectionCommandInput, diff --git a/clients/client-codestar-connections/src/CodeStarConnectionsClient.ts b/clients/client-codestar-connections/src/CodeStarConnectionsClient.ts index ac52ea0fa25a6..61a526bc50928 100644 --- a/clients/client-codestar-connections/src/CodeStarConnectionsClient.ts +++ b/clients/client-codestar-connections/src/CodeStarConnectionsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodeStarConnectionsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand"; @@ -133,7 +142,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codestar-connections/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codestar-connections/src/auth/httpAuthExtensionConfiguration.ts index 3145cf3168c59..2f5b60a22029e 100644 --- a/clients/client-codestar-connections/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codestar-connections/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodeStarConnectionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodeStarConnectionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codestar-connections/src/auth/httpAuthSchemeProvider.ts b/clients/client-codestar-connections/src/auth/httpAuthSchemeProvider.ts index f37386e563978..14f063e3f312a 100644 --- a/clients/client-codestar-connections/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codestar-connections/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CodeStarConnectionsClientConfig, CodeStarConnectionsClientResolvedConfig } from "../CodeStarConnectionsClient"; +import { + type CodeStarConnectionsClientResolvedConfig, + CodeStarConnectionsClientConfig, +} from "../CodeStarConnectionsClient"; /** * @internal diff --git a/clients/client-codestar-connections/src/commands/CreateConnectionCommand.ts b/clients/client-codestar-connections/src/commands/CreateConnectionCommand.ts index 06c0cbaf17966..b5957370ea1d0 100644 --- a/clients/client-codestar-connections/src/commands/CreateConnectionCommand.ts +++ b/clients/client-codestar-connections/src/commands/CreateConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionInput, CreateConnectionOutput } from "../models/models_0"; +import type { CreateConnectionInput, CreateConnectionOutput } from "../models/models_0"; import { CreateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/CreateHostCommand.ts b/clients/client-codestar-connections/src/commands/CreateHostCommand.ts index a00796f095ea8..109685d3435d9 100644 --- a/clients/client-codestar-connections/src/commands/CreateHostCommand.ts +++ b/clients/client-codestar-connections/src/commands/CreateHostCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHostInput, CreateHostOutput } from "../models/models_0"; +import type { CreateHostInput, CreateHostOutput } from "../models/models_0"; import { CreateHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/CreateRepositoryLinkCommand.ts b/clients/client-codestar-connections/src/commands/CreateRepositoryLinkCommand.ts index f930802716ee1..fbb8f3690bcf3 100644 --- a/clients/client-codestar-connections/src/commands/CreateRepositoryLinkCommand.ts +++ b/clients/client-codestar-connections/src/commands/CreateRepositoryLinkCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRepositoryLinkInput, CreateRepositoryLinkOutput } from "../models/models_0"; +import type { CreateRepositoryLinkInput, CreateRepositoryLinkOutput } from "../models/models_0"; import { CreateRepositoryLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/CreateSyncConfigurationCommand.ts b/clients/client-codestar-connections/src/commands/CreateSyncConfigurationCommand.ts index 15ffa04127b29..14256a9d822d9 100644 --- a/clients/client-codestar-connections/src/commands/CreateSyncConfigurationCommand.ts +++ b/clients/client-codestar-connections/src/commands/CreateSyncConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSyncConfigurationInput, CreateSyncConfigurationOutput } from "../models/models_0"; +import type { CreateSyncConfigurationInput, CreateSyncConfigurationOutput } from "../models/models_0"; import { CreateSyncConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/DeleteConnectionCommand.ts b/clients/client-codestar-connections/src/commands/DeleteConnectionCommand.ts index 407c0a7bc3d4b..707e7ef98c075 100644 --- a/clients/client-codestar-connections/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-codestar-connections/src/commands/DeleteConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionInput, DeleteConnectionOutput } from "../models/models_0"; +import type { DeleteConnectionInput, DeleteConnectionOutput } from "../models/models_0"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/DeleteHostCommand.ts b/clients/client-codestar-connections/src/commands/DeleteHostCommand.ts index 9497763145a9f..73e2cc220ac48 100644 --- a/clients/client-codestar-connections/src/commands/DeleteHostCommand.ts +++ b/clients/client-codestar-connections/src/commands/DeleteHostCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHostInput, DeleteHostOutput } from "../models/models_0"; +import type { DeleteHostInput, DeleteHostOutput } from "../models/models_0"; import { DeleteHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/DeleteRepositoryLinkCommand.ts b/clients/client-codestar-connections/src/commands/DeleteRepositoryLinkCommand.ts index 0bda7852ca792..d04974ca07b2e 100644 --- a/clients/client-codestar-connections/src/commands/DeleteRepositoryLinkCommand.ts +++ b/clients/client-codestar-connections/src/commands/DeleteRepositoryLinkCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryLinkInput, DeleteRepositoryLinkOutput } from "../models/models_0"; +import type { DeleteRepositoryLinkInput, DeleteRepositoryLinkOutput } from "../models/models_0"; import { DeleteRepositoryLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/DeleteSyncConfigurationCommand.ts b/clients/client-codestar-connections/src/commands/DeleteSyncConfigurationCommand.ts index 1d1320e2c6686..525680a397106 100644 --- a/clients/client-codestar-connections/src/commands/DeleteSyncConfigurationCommand.ts +++ b/clients/client-codestar-connections/src/commands/DeleteSyncConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSyncConfigurationInput, DeleteSyncConfigurationOutput } from "../models/models_0"; +import type { DeleteSyncConfigurationInput, DeleteSyncConfigurationOutput } from "../models/models_0"; import { DeleteSyncConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/GetConnectionCommand.ts b/clients/client-codestar-connections/src/commands/GetConnectionCommand.ts index f87a956c0e22d..b6b6f5a25bbae 100644 --- a/clients/client-codestar-connections/src/commands/GetConnectionCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionInput, GetConnectionOutput } from "../models/models_0"; +import type { GetConnectionInput, GetConnectionOutput } from "../models/models_0"; import { GetConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/GetHostCommand.ts b/clients/client-codestar-connections/src/commands/GetHostCommand.ts index db4dd021d0327..52bf5436534af 100644 --- a/clients/client-codestar-connections/src/commands/GetHostCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetHostCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHostInput, GetHostOutput } from "../models/models_0"; +import type { GetHostInput, GetHostOutput } from "../models/models_0"; import { GetHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/GetRepositoryLinkCommand.ts b/clients/client-codestar-connections/src/commands/GetRepositoryLinkCommand.ts index 897e9725bae9d..9727f6ba23c74 100644 --- a/clients/client-codestar-connections/src/commands/GetRepositoryLinkCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetRepositoryLinkCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryLinkInput, GetRepositoryLinkOutput } from "../models/models_0"; +import type { GetRepositoryLinkInput, GetRepositoryLinkOutput } from "../models/models_0"; import { GetRepositoryLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/GetRepositorySyncStatusCommand.ts b/clients/client-codestar-connections/src/commands/GetRepositorySyncStatusCommand.ts index f00989967558a..b4ec277cc1a02 100644 --- a/clients/client-codestar-connections/src/commands/GetRepositorySyncStatusCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetRepositorySyncStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositorySyncStatusInput, GetRepositorySyncStatusOutput } from "../models/models_0"; +import type { GetRepositorySyncStatusInput, GetRepositorySyncStatusOutput } from "../models/models_0"; import { GetRepositorySyncStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/GetResourceSyncStatusCommand.ts b/clients/client-codestar-connections/src/commands/GetResourceSyncStatusCommand.ts index a70fed4af477e..f63053dc984d8 100644 --- a/clients/client-codestar-connections/src/commands/GetResourceSyncStatusCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetResourceSyncStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceSyncStatusInput, GetResourceSyncStatusOutput } from "../models/models_0"; +import type { GetResourceSyncStatusInput, GetResourceSyncStatusOutput } from "../models/models_0"; import { GetResourceSyncStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/GetSyncBlockerSummaryCommand.ts b/clients/client-codestar-connections/src/commands/GetSyncBlockerSummaryCommand.ts index 93c60a8bf29bc..7912e5deafc32 100644 --- a/clients/client-codestar-connections/src/commands/GetSyncBlockerSummaryCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetSyncBlockerSummaryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSyncBlockerSummaryInput, GetSyncBlockerSummaryOutput } from "../models/models_0"; +import type { GetSyncBlockerSummaryInput, GetSyncBlockerSummaryOutput } from "../models/models_0"; import { GetSyncBlockerSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/GetSyncConfigurationCommand.ts b/clients/client-codestar-connections/src/commands/GetSyncConfigurationCommand.ts index c472de9ed34d5..02dac7052144d 100644 --- a/clients/client-codestar-connections/src/commands/GetSyncConfigurationCommand.ts +++ b/clients/client-codestar-connections/src/commands/GetSyncConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSyncConfigurationInput, GetSyncConfigurationOutput } from "../models/models_0"; +import type { GetSyncConfigurationInput, GetSyncConfigurationOutput } from "../models/models_0"; import { GetSyncConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/ListConnectionsCommand.ts b/clients/client-codestar-connections/src/commands/ListConnectionsCommand.ts index 5d8975c51fcc4..0b4d5b26d7f3a 100644 --- a/clients/client-codestar-connections/src/commands/ListConnectionsCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListConnectionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectionsInput, ListConnectionsOutput } from "../models/models_0"; +import type { ListConnectionsInput, ListConnectionsOutput } from "../models/models_0"; import { ListConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/ListHostsCommand.ts b/clients/client-codestar-connections/src/commands/ListHostsCommand.ts index e364e24ec6e09..9ae3b51992a49 100644 --- a/clients/client-codestar-connections/src/commands/ListHostsCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListHostsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHostsInput, ListHostsOutput } from "../models/models_0"; +import type { ListHostsInput, ListHostsOutput } from "../models/models_0"; import { ListHosts } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/ListRepositoryLinksCommand.ts b/clients/client-codestar-connections/src/commands/ListRepositoryLinksCommand.ts index c05b9a7bf6b1d..839aaa44acba0 100644 --- a/clients/client-codestar-connections/src/commands/ListRepositoryLinksCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListRepositoryLinksCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositoryLinksInput, ListRepositoryLinksOutput } from "../models/models_0"; +import type { ListRepositoryLinksInput, ListRepositoryLinksOutput } from "../models/models_0"; import { ListRepositoryLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/ListRepositorySyncDefinitionsCommand.ts b/clients/client-codestar-connections/src/commands/ListRepositorySyncDefinitionsCommand.ts index f4a57730547b2..e2f3ef174bd13 100644 --- a/clients/client-codestar-connections/src/commands/ListRepositorySyncDefinitionsCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListRepositorySyncDefinitionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositorySyncDefinitionsInput, ListRepositorySyncDefinitionsOutput } from "../models/models_0"; +import type { ListRepositorySyncDefinitionsInput, ListRepositorySyncDefinitionsOutput } from "../models/models_0"; import { ListRepositorySyncDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/ListSyncConfigurationsCommand.ts b/clients/client-codestar-connections/src/commands/ListSyncConfigurationsCommand.ts index 8fa0e160bd1b8..e39a19630175c 100644 --- a/clients/client-codestar-connections/src/commands/ListSyncConfigurationsCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListSyncConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSyncConfigurationsInput, ListSyncConfigurationsOutput } from "../models/models_0"; +import type { ListSyncConfigurationsInput, ListSyncConfigurationsOutput } from "../models/models_0"; import { ListSyncConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/ListTagsForResourceCommand.ts b/clients/client-codestar-connections/src/commands/ListTagsForResourceCommand.ts index a45b1c1ce2296..387c90d48f5ed 100644 --- a/clients/client-codestar-connections/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codestar-connections/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/TagResourceCommand.ts b/clients/client-codestar-connections/src/commands/TagResourceCommand.ts index 5c0184ef7568d..34b2cba51c54f 100644 --- a/clients/client-codestar-connections/src/commands/TagResourceCommand.ts +++ b/clients/client-codestar-connections/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/UntagResourceCommand.ts b/clients/client-codestar-connections/src/commands/UntagResourceCommand.ts index 2caaf2084a6b2..7e14dec82e52e 100644 --- a/clients/client-codestar-connections/src/commands/UntagResourceCommand.ts +++ b/clients/client-codestar-connections/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/UpdateHostCommand.ts b/clients/client-codestar-connections/src/commands/UpdateHostCommand.ts index ae73ffeefdf2b..2e97c9876ff0b 100644 --- a/clients/client-codestar-connections/src/commands/UpdateHostCommand.ts +++ b/clients/client-codestar-connections/src/commands/UpdateHostCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHostInput, UpdateHostOutput } from "../models/models_0"; +import type { UpdateHostInput, UpdateHostOutput } from "../models/models_0"; import { UpdateHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/UpdateRepositoryLinkCommand.ts b/clients/client-codestar-connections/src/commands/UpdateRepositoryLinkCommand.ts index a8324bdca2680..af6dfe81df3f6 100644 --- a/clients/client-codestar-connections/src/commands/UpdateRepositoryLinkCommand.ts +++ b/clients/client-codestar-connections/src/commands/UpdateRepositoryLinkCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRepositoryLinkInput, UpdateRepositoryLinkOutput } from "../models/models_0"; +import type { UpdateRepositoryLinkInput, UpdateRepositoryLinkOutput } from "../models/models_0"; import { UpdateRepositoryLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/UpdateSyncBlockerCommand.ts b/clients/client-codestar-connections/src/commands/UpdateSyncBlockerCommand.ts index 17a4896e17753..cb8e25b59e5bd 100644 --- a/clients/client-codestar-connections/src/commands/UpdateSyncBlockerCommand.ts +++ b/clients/client-codestar-connections/src/commands/UpdateSyncBlockerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSyncBlockerInput, UpdateSyncBlockerOutput } from "../models/models_0"; +import type { UpdateSyncBlockerInput, UpdateSyncBlockerOutput } from "../models/models_0"; import { UpdateSyncBlocker } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/commands/UpdateSyncConfigurationCommand.ts b/clients/client-codestar-connections/src/commands/UpdateSyncConfigurationCommand.ts index 7b227e98cd8f7..8ee9abdb5a563 100644 --- a/clients/client-codestar-connections/src/commands/UpdateSyncConfigurationCommand.ts +++ b/clients/client-codestar-connections/src/commands/UpdateSyncConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodeStarConnectionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodeStarConnectionsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSyncConfigurationInput, UpdateSyncConfigurationOutput } from "../models/models_0"; +import type { UpdateSyncConfigurationInput, UpdateSyncConfigurationOutput } from "../models/models_0"; import { UpdateSyncConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-connections/src/endpoint/EndpointParameters.ts b/clients/client-codestar-connections/src/endpoint/EndpointParameters.ts index 56704a188f7ca..af55a61f62d3a 100644 --- a/clients/client-codestar-connections/src/endpoint/EndpointParameters.ts +++ b/clients/client-codestar-connections/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codestar-connections/src/endpoint/endpointResolver.ts b/clients/client-codestar-connections/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codestar-connections/src/endpoint/endpointResolver.ts +++ b/clients/client-codestar-connections/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codestar-connections/src/extensionConfiguration.ts b/clients/client-codestar-connections/src/extensionConfiguration.ts index 4195ecfda0f77..d1f01c3d921b3 100644 --- a/clients/client-codestar-connections/src/extensionConfiguration.ts +++ b/clients/client-codestar-connections/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codestar-connections/src/models/CodeStarConnectionsServiceException.ts b/clients/client-codestar-connections/src/models/CodeStarConnectionsServiceException.ts index 0159f4810fdc0..c90ef27a8b829 100644 --- a/clients/client-codestar-connections/src/models/CodeStarConnectionsServiceException.ts +++ b/clients/client-codestar-connections/src/models/CodeStarConnectionsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codestar-connections/src/models/errors.ts b/clients/client-codestar-connections/src/models/errors.ts index e601e9d79409a..14ea03efd6352 100644 --- a/clients/client-codestar-connections/src/models/errors.ts +++ b/clients/client-codestar-connections/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException"; diff --git a/clients/client-codestar-connections/src/pagination/Interfaces.ts b/clients/client-codestar-connections/src/pagination/Interfaces.ts index 1dbcb3a042245..3d5e33a3261ef 100644 --- a/clients/client-codestar-connections/src/pagination/Interfaces.ts +++ b/clients/client-codestar-connections/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient"; diff --git a/clients/client-codestar-connections/src/pagination/ListConnectionsPaginator.ts b/clients/client-codestar-connections/src/pagination/ListConnectionsPaginator.ts index 22ae2dd0cdfca..091d561c84f04 100644 --- a/clients/client-codestar-connections/src/pagination/ListConnectionsPaginator.ts +++ b/clients/client-codestar-connections/src/pagination/ListConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient"; import { diff --git a/clients/client-codestar-connections/src/pagination/ListHostsPaginator.ts b/clients/client-codestar-connections/src/pagination/ListHostsPaginator.ts index 02c179c5ddaf9..034b9183d9fb7 100644 --- a/clients/client-codestar-connections/src/pagination/ListHostsPaginator.ts +++ b/clients/client-codestar-connections/src/pagination/ListHostsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient"; import { ListHostsCommand, ListHostsCommandInput, ListHostsCommandOutput } from "../commands/ListHostsCommand"; diff --git a/clients/client-codestar-connections/src/pagination/ListRepositoryLinksPaginator.ts b/clients/client-codestar-connections/src/pagination/ListRepositoryLinksPaginator.ts index 843a948f3494f..9c05cd570de61 100644 --- a/clients/client-codestar-connections/src/pagination/ListRepositoryLinksPaginator.ts +++ b/clients/client-codestar-connections/src/pagination/ListRepositoryLinksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient"; import { diff --git a/clients/client-codestar-connections/src/pagination/ListSyncConfigurationsPaginator.ts b/clients/client-codestar-connections/src/pagination/ListSyncConfigurationsPaginator.ts index 09d58816f694c..97b7c914f7434 100644 --- a/clients/client-codestar-connections/src/pagination/ListSyncConfigurationsPaginator.ts +++ b/clients/client-codestar-connections/src/pagination/ListSyncConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient"; import { diff --git a/clients/client-codestar-connections/src/runtimeConfig.browser.ts b/clients/client-codestar-connections/src/runtimeConfig.browser.ts index f4e889a24bbfd..0b585042de0a9 100644 --- a/clients/client-codestar-connections/src/runtimeConfig.browser.ts +++ b/clients/client-codestar-connections/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeStarConnectionsClientConfig } from "./CodeStarConnectionsClient"; + +import type { CodeStarConnectionsClientConfig } from "./CodeStarConnectionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codestar-connections/src/runtimeConfig.native.ts b/clients/client-codestar-connections/src/runtimeConfig.native.ts index fbeb6bb28e416..07983082ee761 100644 --- a/clients/client-codestar-connections/src/runtimeConfig.native.ts +++ b/clients/client-codestar-connections/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodeStarConnectionsClientConfig } from "./CodeStarConnectionsClient"; +import type { CodeStarConnectionsClientConfig } from "./CodeStarConnectionsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codestar-connections/src/runtimeConfig.shared.ts b/clients/client-codestar-connections/src/runtimeConfig.shared.ts index 31cbcdfdcff19..13c2ec31de215 100644 --- a/clients/client-codestar-connections/src/runtimeConfig.shared.ts +++ b/clients/client-codestar-connections/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodeStarConnectionsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodeStarConnectionsClientConfig } from "./CodeStarConnectionsClient"; +import type { CodeStarConnectionsClientConfig } from "./CodeStarConnectionsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codestar-connections/src/runtimeConfig.ts b/clients/client-codestar-connections/src/runtimeConfig.ts index 85d157f55216f..fa4a738e9a694 100644 --- a/clients/client-codestar-connections/src/runtimeConfig.ts +++ b/clients/client-codestar-connections/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodeStarConnectionsClientConfig } from "./CodeStarConnectionsClient"; + +import type { CodeStarConnectionsClientConfig } from "./CodeStarConnectionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codestar-connections/src/runtimeExtensions.ts b/clients/client-codestar-connections/src/runtimeExtensions.ts index 36f98046c9131..8bbafbb2fba14 100644 --- a/clients/client-codestar-connections/src/runtimeExtensions.ts +++ b/clients/client-codestar-connections/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodeStarConnectionsExtensionConfiguration } from "./extensionConfiguration"; +import type { CodeStarConnectionsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codestar-connections/src/schemas/schemas_0.ts b/clients/client-codestar-connections/src/schemas/schemas_0.ts index 470393a90ea96..29e8217ae1ef5 100644 --- a/clients/client-codestar-connections/src/schemas/schemas_0.ts +++ b/clients/client-codestar-connections/src/schemas/schemas_0.ts @@ -194,7 +194,7 @@ const n0 = "com.amazonaws.codestarconnections"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { CodeStarConnectionsServiceException as __CodeStarConnectionsServiceException } from "../models/CodeStarConnectionsServiceException"; import { diff --git a/clients/client-codestar-notifications/package.json b/clients/client-codestar-notifications/package.json index 3b5892539348a..7ca88cbe47c85 100644 --- a/clients/client-codestar-notifications/package.json +++ b/clients/client-codestar-notifications/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-codestar-notifications/src/CodestarNotifications.ts b/clients/client-codestar-notifications/src/CodestarNotifications.ts index d7ddbae9db0c2..07324e24716c9 100644 --- a/clients/client-codestar-notifications/src/CodestarNotifications.ts +++ b/clients/client-codestar-notifications/src/CodestarNotifications.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CodestarNotificationsClient, CodestarNotificationsClientConfig } from "./CodestarNotificationsClient"; +import { CodestarNotificationsClient } from "./CodestarNotificationsClient"; import { CreateNotificationRuleCommand, CreateNotificationRuleCommandInput, diff --git a/clients/client-codestar-notifications/src/CodestarNotificationsClient.ts b/clients/client-codestar-notifications/src/CodestarNotificationsClient.ts index e35b513cf042d..6ae33dc273634 100644 --- a/clients/client-codestar-notifications/src/CodestarNotificationsClient.ts +++ b/clients/client-codestar-notifications/src/CodestarNotificationsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCodestarNotificationsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -95,7 +104,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-codestar-notifications/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-codestar-notifications/src/auth/httpAuthExtensionConfiguration.ts index 7319bebf02678..6e6beb6ed6b67 100644 --- a/clients/client-codestar-notifications/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-codestar-notifications/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CodestarNotificationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CodestarNotificationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-codestar-notifications/src/auth/httpAuthSchemeProvider.ts b/clients/client-codestar-notifications/src/auth/httpAuthSchemeProvider.ts index 670b6af8e9358..1e1fb9179424b 100644 --- a/clients/client-codestar-notifications/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-codestar-notifications/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type CodestarNotificationsClientResolvedConfig, CodestarNotificationsClientConfig, - CodestarNotificationsClientResolvedConfig, } from "../CodestarNotificationsClient"; /** diff --git a/clients/client-codestar-notifications/src/commands/CreateNotificationRuleCommand.ts b/clients/client-codestar-notifications/src/commands/CreateNotificationRuleCommand.ts index 68a93e352e609..924349cb19a63 100644 --- a/clients/client-codestar-notifications/src/commands/CreateNotificationRuleCommand.ts +++ b/clients/client-codestar-notifications/src/commands/CreateNotificationRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNotificationRuleRequest, CreateNotificationRuleResult } from "../models/models_0"; +import type { CreateNotificationRuleRequest, CreateNotificationRuleResult } from "../models/models_0"; import { CreateNotificationRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/DeleteNotificationRuleCommand.ts b/clients/client-codestar-notifications/src/commands/DeleteNotificationRuleCommand.ts index c2dea48bb0b2e..5159d0689e9d1 100644 --- a/clients/client-codestar-notifications/src/commands/DeleteNotificationRuleCommand.ts +++ b/clients/client-codestar-notifications/src/commands/DeleteNotificationRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNotificationRuleRequest, DeleteNotificationRuleResult } from "../models/models_0"; +import type { DeleteNotificationRuleRequest, DeleteNotificationRuleResult } from "../models/models_0"; import { DeleteNotificationRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/DeleteTargetCommand.ts b/clients/client-codestar-notifications/src/commands/DeleteTargetCommand.ts index 0ec0f293061e7..2a58505c756ea 100644 --- a/clients/client-codestar-notifications/src/commands/DeleteTargetCommand.ts +++ b/clients/client-codestar-notifications/src/commands/DeleteTargetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTargetRequest, DeleteTargetResult } from "../models/models_0"; +import type { DeleteTargetRequest, DeleteTargetResult } from "../models/models_0"; import { DeleteTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/DescribeNotificationRuleCommand.ts b/clients/client-codestar-notifications/src/commands/DescribeNotificationRuleCommand.ts index 4c9078cb51ba2..202ac57400896 100644 --- a/clients/client-codestar-notifications/src/commands/DescribeNotificationRuleCommand.ts +++ b/clients/client-codestar-notifications/src/commands/DescribeNotificationRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNotificationRuleRequest, DescribeNotificationRuleResult } from "../models/models_0"; +import type { DescribeNotificationRuleRequest, DescribeNotificationRuleResult } from "../models/models_0"; import { DescribeNotificationRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/ListEventTypesCommand.ts b/clients/client-codestar-notifications/src/commands/ListEventTypesCommand.ts index d95a0fd5c2c2e..0e829fd68e37a 100644 --- a/clients/client-codestar-notifications/src/commands/ListEventTypesCommand.ts +++ b/clients/client-codestar-notifications/src/commands/ListEventTypesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventTypesRequest, ListEventTypesResult } from "../models/models_0"; +import type { ListEventTypesRequest, ListEventTypesResult } from "../models/models_0"; import { ListEventTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/ListNotificationRulesCommand.ts b/clients/client-codestar-notifications/src/commands/ListNotificationRulesCommand.ts index 8a79935c05638..a5ca6dac5411b 100644 --- a/clients/client-codestar-notifications/src/commands/ListNotificationRulesCommand.ts +++ b/clients/client-codestar-notifications/src/commands/ListNotificationRulesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotificationRulesRequest, ListNotificationRulesResult } from "../models/models_0"; +import type { ListNotificationRulesRequest, ListNotificationRulesResult } from "../models/models_0"; import { ListNotificationRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/ListTagsForResourceCommand.ts b/clients/client-codestar-notifications/src/commands/ListTagsForResourceCommand.ts index 47743195956db..0eb95385c2331 100644 --- a/clients/client-codestar-notifications/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-codestar-notifications/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/ListTargetsCommand.ts b/clients/client-codestar-notifications/src/commands/ListTargetsCommand.ts index 213e9a372ac97..166a37e0bcd64 100644 --- a/clients/client-codestar-notifications/src/commands/ListTargetsCommand.ts +++ b/clients/client-codestar-notifications/src/commands/ListTargetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTargetsRequest, ListTargetsResult } from "../models/models_0"; +import type { ListTargetsRequest, ListTargetsResult } from "../models/models_0"; import { ListTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/SubscribeCommand.ts b/clients/client-codestar-notifications/src/commands/SubscribeCommand.ts index 2eea58ca7ab01..e4dd67e5cf3dc 100644 --- a/clients/client-codestar-notifications/src/commands/SubscribeCommand.ts +++ b/clients/client-codestar-notifications/src/commands/SubscribeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubscribeRequest, SubscribeResult } from "../models/models_0"; +import type { SubscribeRequest, SubscribeResult } from "../models/models_0"; import { Subscribe } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/TagResourceCommand.ts b/clients/client-codestar-notifications/src/commands/TagResourceCommand.ts index c77aa6230ffbb..7c95dac6e8e80 100644 --- a/clients/client-codestar-notifications/src/commands/TagResourceCommand.ts +++ b/clients/client-codestar-notifications/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResult } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResult } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/UnsubscribeCommand.ts b/clients/client-codestar-notifications/src/commands/UnsubscribeCommand.ts index 3348ee52e9684..c7c95d4536d69 100644 --- a/clients/client-codestar-notifications/src/commands/UnsubscribeCommand.ts +++ b/clients/client-codestar-notifications/src/commands/UnsubscribeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnsubscribeRequest, UnsubscribeResult } from "../models/models_0"; +import type { UnsubscribeRequest, UnsubscribeResult } from "../models/models_0"; import { Unsubscribe } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/UntagResourceCommand.ts b/clients/client-codestar-notifications/src/commands/UntagResourceCommand.ts index 0af81b3d0b277..644ed49678417 100644 --- a/clients/client-codestar-notifications/src/commands/UntagResourceCommand.ts +++ b/clients/client-codestar-notifications/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/commands/UpdateNotificationRuleCommand.ts b/clients/client-codestar-notifications/src/commands/UpdateNotificationRuleCommand.ts index 302a51b423fef..ff22f9afaf9f6 100644 --- a/clients/client-codestar-notifications/src/commands/UpdateNotificationRuleCommand.ts +++ b/clients/client-codestar-notifications/src/commands/UpdateNotificationRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CodestarNotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CodestarNotificationsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNotificationRuleRequest, UpdateNotificationRuleResult } from "../models/models_0"; +import type { UpdateNotificationRuleRequest, UpdateNotificationRuleResult } from "../models/models_0"; import { UpdateNotificationRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-codestar-notifications/src/endpoint/EndpointParameters.ts b/clients/client-codestar-notifications/src/endpoint/EndpointParameters.ts index 0ff677d98a9ed..c30d89b247fe5 100644 --- a/clients/client-codestar-notifications/src/endpoint/EndpointParameters.ts +++ b/clients/client-codestar-notifications/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-codestar-notifications/src/endpoint/endpointResolver.ts b/clients/client-codestar-notifications/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-codestar-notifications/src/endpoint/endpointResolver.ts +++ b/clients/client-codestar-notifications/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-codestar-notifications/src/extensionConfiguration.ts b/clients/client-codestar-notifications/src/extensionConfiguration.ts index 4bcbc623b8515..90e6a012c0842 100644 --- a/clients/client-codestar-notifications/src/extensionConfiguration.ts +++ b/clients/client-codestar-notifications/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-codestar-notifications/src/models/CodestarNotificationsServiceException.ts b/clients/client-codestar-notifications/src/models/CodestarNotificationsServiceException.ts index 329b8cb452423..72ead82c7bd4d 100644 --- a/clients/client-codestar-notifications/src/models/CodestarNotificationsServiceException.ts +++ b/clients/client-codestar-notifications/src/models/CodestarNotificationsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-codestar-notifications/src/models/errors.ts b/clients/client-codestar-notifications/src/models/errors.ts index efe327a102eef..0b00f578e41a6 100644 --- a/clients/client-codestar-notifications/src/models/errors.ts +++ b/clients/client-codestar-notifications/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CodestarNotificationsServiceException as __BaseException } from "./CodestarNotificationsServiceException"; diff --git a/clients/client-codestar-notifications/src/pagination/Interfaces.ts b/clients/client-codestar-notifications/src/pagination/Interfaces.ts index 5dd648fab7097..5c8505d68bf39 100644 --- a/clients/client-codestar-notifications/src/pagination/Interfaces.ts +++ b/clients/client-codestar-notifications/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CodestarNotificationsClient } from "../CodestarNotificationsClient"; diff --git a/clients/client-codestar-notifications/src/pagination/ListEventTypesPaginator.ts b/clients/client-codestar-notifications/src/pagination/ListEventTypesPaginator.ts index d17d27496c533..ec26b0a42b9df 100644 --- a/clients/client-codestar-notifications/src/pagination/ListEventTypesPaginator.ts +++ b/clients/client-codestar-notifications/src/pagination/ListEventTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodestarNotificationsClient } from "../CodestarNotificationsClient"; import { diff --git a/clients/client-codestar-notifications/src/pagination/ListNotificationRulesPaginator.ts b/clients/client-codestar-notifications/src/pagination/ListNotificationRulesPaginator.ts index af3b06700e139..12c60fd94ed9f 100644 --- a/clients/client-codestar-notifications/src/pagination/ListNotificationRulesPaginator.ts +++ b/clients/client-codestar-notifications/src/pagination/ListNotificationRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodestarNotificationsClient } from "../CodestarNotificationsClient"; import { diff --git a/clients/client-codestar-notifications/src/pagination/ListTargetsPaginator.ts b/clients/client-codestar-notifications/src/pagination/ListTargetsPaginator.ts index a8026eaa1ace8..9dabdc2907805 100644 --- a/clients/client-codestar-notifications/src/pagination/ListTargetsPaginator.ts +++ b/clients/client-codestar-notifications/src/pagination/ListTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CodestarNotificationsClient } from "../CodestarNotificationsClient"; import { ListTargetsCommand, ListTargetsCommandInput, ListTargetsCommandOutput } from "../commands/ListTargetsCommand"; diff --git a/clients/client-codestar-notifications/src/runtimeConfig.browser.ts b/clients/client-codestar-notifications/src/runtimeConfig.browser.ts index c38c493d8467a..83d706e950e5a 100644 --- a/clients/client-codestar-notifications/src/runtimeConfig.browser.ts +++ b/clients/client-codestar-notifications/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient"; + +import type { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-codestar-notifications/src/runtimeConfig.native.ts b/clients/client-codestar-notifications/src/runtimeConfig.native.ts index 161b24b499455..ba3d8de7f85b8 100644 --- a/clients/client-codestar-notifications/src/runtimeConfig.native.ts +++ b/clients/client-codestar-notifications/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient"; +import type { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-codestar-notifications/src/runtimeConfig.shared.ts b/clients/client-codestar-notifications/src/runtimeConfig.shared.ts index b14fe08348a3f..b828d47c863a7 100644 --- a/clients/client-codestar-notifications/src/runtimeConfig.shared.ts +++ b/clients/client-codestar-notifications/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCodestarNotificationsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient"; +import type { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-codestar-notifications/src/runtimeConfig.ts b/clients/client-codestar-notifications/src/runtimeConfig.ts index 55f7c4a23c1bb..4df908ab0db16 100644 --- a/clients/client-codestar-notifications/src/runtimeConfig.ts +++ b/clients/client-codestar-notifications/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient"; + +import type { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-codestar-notifications/src/runtimeExtensions.ts b/clients/client-codestar-notifications/src/runtimeExtensions.ts index 00d6db182f74b..3654e345821ee 100644 --- a/clients/client-codestar-notifications/src/runtimeExtensions.ts +++ b/clients/client-codestar-notifications/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CodestarNotificationsExtensionConfiguration } from "./extensionConfiguration"; +import type { CodestarNotificationsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-codestar-notifications/src/schemas/schemas_0.ts b/clients/client-codestar-notifications/src/schemas/schemas_0.ts index 7901b8eec8851..fe83c45d49433 100644 --- a/clients/client-codestar-notifications/src/schemas/schemas_0.ts +++ b/clients/client-codestar-notifications/src/schemas/schemas_0.ts @@ -99,7 +99,7 @@ const n0 = "com.amazonaws.codestarnotifications"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cognito-identity-provider/package.json b/clients/client-cognito-identity-provider/package.json index e41333e02e722..10eb6591e8a1c 100644 --- a/clients/client-cognito-identity-provider/package.json +++ b/clients/client-cognito-identity-provider/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cognito-identity-provider/src/CognitoIdentityProvider.ts b/clients/client-cognito-identity-provider/src/CognitoIdentityProvider.ts index b2c4213f0f0a2..e176866fee994 100644 --- a/clients/client-cognito-identity-provider/src/CognitoIdentityProvider.ts +++ b/clients/client-cognito-identity-provider/src/CognitoIdentityProvider.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CognitoIdentityProviderClient, CognitoIdentityProviderClientConfig } from "./CognitoIdentityProviderClient"; +import { CognitoIdentityProviderClient } from "./CognitoIdentityProviderClient"; import { AddCustomAttributesCommand, AddCustomAttributesCommandInput, diff --git a/clients/client-cognito-identity-provider/src/CognitoIdentityProviderClient.ts b/clients/client-cognito-identity-provider/src/CognitoIdentityProviderClient.ts index 926f2cd56cc1c..911b22c28c139 100644 --- a/clients/client-cognito-identity-provider/src/CognitoIdentityProviderClient.ts +++ b/clients/client-cognito-identity-provider/src/CognitoIdentityProviderClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCognitoIdentityProviderHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -387,7 +396,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cognito-identity-provider/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cognito-identity-provider/src/auth/httpAuthExtensionConfiguration.ts index c44ea9bb58b4d..d30da05cc5e93 100644 --- a/clients/client-cognito-identity-provider/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cognito-identity-provider/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CognitoIdentityProviderHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CognitoIdentityProviderHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cognito-identity-provider/src/auth/httpAuthSchemeProvider.ts b/clients/client-cognito-identity-provider/src/auth/httpAuthSchemeProvider.ts index 4aa5ecbaaee17..23f5f64ba18ce 100644 --- a/clients/client-cognito-identity-provider/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cognito-identity-provider/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type CognitoIdentityProviderClientResolvedConfig, CognitoIdentityProviderClientConfig, - CognitoIdentityProviderClientResolvedConfig, } from "../CognitoIdentityProviderClient"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AddCustomAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/AddCustomAttributesCommand.ts index d9c05d65c5ae1..a38242c1ff12e 100644 --- a/clients/client-cognito-identity-provider/src/commands/AddCustomAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AddCustomAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddCustomAttributesRequest, AddCustomAttributesResponse } from "../models/models_0"; +import type { AddCustomAttributesRequest, AddCustomAttributesResponse } from "../models/models_0"; import { AddCustomAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminAddUserToGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminAddUserToGroupCommand.ts index de9e2c38cabc9..4b89e36485d28 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminAddUserToGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminAddUserToGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminAddUserToGroupRequest } from "../models/models_0"; +import type { AdminAddUserToGroupRequest } from "../models/models_0"; import { AdminAddUserToGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminConfirmSignUpCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminConfirmSignUpCommand.ts index 2af728e3009c9..71f3546181e51 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminConfirmSignUpCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminConfirmSignUpCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminConfirmSignUpRequest, AdminConfirmSignUpResponse } from "../models/models_0"; +import type { AdminConfirmSignUpRequest, AdminConfirmSignUpResponse } from "../models/models_0"; import { AdminConfirmSignUp } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminCreateUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminCreateUserCommand.ts index d6c61500c15bf..82cea72c2c2d4 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminCreateUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminCreateUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminCreateUserRequest, AdminCreateUserResponse } from "../models/models_0"; +import type { AdminCreateUserRequest, AdminCreateUserResponse } from "../models/models_0"; import { AdminCreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserAttributesCommand.ts index 7e87922b4e4ca..4c8ed6cf37129 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminDeleteUserAttributesRequest, AdminDeleteUserAttributesResponse } from "../models/models_0"; +import type { AdminDeleteUserAttributesRequest, AdminDeleteUserAttributesResponse } from "../models/models_0"; import { AdminDeleteUserAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserCommand.ts index b8d223da89d9a..20401e2031876 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminDeleteUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminDeleteUserRequest } from "../models/models_0"; +import type { AdminDeleteUserRequest } from "../models/models_0"; import { AdminDeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminDisableProviderForUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminDisableProviderForUserCommand.ts index ed1094d37997d..2ae8981ac7fa4 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminDisableProviderForUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminDisableProviderForUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminDisableProviderForUserRequest, AdminDisableProviderForUserResponse } from "../models/models_0"; +import type { AdminDisableProviderForUserRequest, AdminDisableProviderForUserResponse } from "../models/models_0"; import { AdminDisableProviderForUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminDisableUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminDisableUserCommand.ts index 8bd0f30c25506..92b0540b73758 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminDisableUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminDisableUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminDisableUserRequest, AdminDisableUserResponse } from "../models/models_0"; +import type { AdminDisableUserRequest, AdminDisableUserResponse } from "../models/models_0"; import { AdminDisableUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminEnableUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminEnableUserCommand.ts index ea2f95e6cd53c..0570b90fe8589 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminEnableUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminEnableUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminEnableUserRequest, AdminEnableUserResponse } from "../models/models_0"; +import type { AdminEnableUserRequest, AdminEnableUserResponse } from "../models/models_0"; import { AdminEnableUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminForgetDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminForgetDeviceCommand.ts index 58a35322833f2..3cbfe719fc3f3 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminForgetDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminForgetDeviceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminForgetDeviceRequest } from "../models/models_0"; +import type { AdminForgetDeviceRequest } from "../models/models_0"; import { AdminForgetDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminGetDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminGetDeviceCommand.ts index 30a291d624100..72cbeb807758a 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminGetDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminGetDeviceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminGetDeviceRequest, AdminGetDeviceResponse } from "../models/models_0"; +import type { AdminGetDeviceRequest, AdminGetDeviceResponse } from "../models/models_0"; import { AdminGetDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminGetUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminGetUserCommand.ts index 175581fb6b799..6552c60d86f15 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminGetUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminGetUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminGetUserRequest, AdminGetUserResponse } from "../models/models_0"; +import type { AdminGetUserRequest, AdminGetUserResponse } from "../models/models_0"; import { AdminGetUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminInitiateAuthCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminInitiateAuthCommand.ts index 167f141347b05..6f66a74d5f869 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminInitiateAuthCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminInitiateAuthCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminInitiateAuthRequest, AdminInitiateAuthResponse } from "../models/models_0"; +import type { AdminInitiateAuthRequest, AdminInitiateAuthResponse } from "../models/models_0"; import { AdminInitiateAuth } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminLinkProviderForUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminLinkProviderForUserCommand.ts index bb7c1d17d5e2f..8c24e7db172b8 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminLinkProviderForUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminLinkProviderForUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminLinkProviderForUserRequest, AdminLinkProviderForUserResponse } from "../models/models_0"; +import type { AdminLinkProviderForUserRequest, AdminLinkProviderForUserResponse } from "../models/models_0"; import { AdminLinkProviderForUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminListDevicesCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminListDevicesCommand.ts index aa72a4fd4c68c..78e344c1fbb95 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminListDevicesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminListDevicesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminListDevicesRequest, AdminListDevicesResponse } from "../models/models_0"; +import type { AdminListDevicesRequest, AdminListDevicesResponse } from "../models/models_0"; import { AdminListDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminListGroupsForUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminListGroupsForUserCommand.ts index 027c504661ed3..4e2fd70025ed1 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminListGroupsForUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminListGroupsForUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminListGroupsForUserRequest, AdminListGroupsForUserResponse } from "../models/models_0"; +import type { AdminListGroupsForUserRequest, AdminListGroupsForUserResponse } from "../models/models_0"; import { AdminListGroupsForUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminListUserAuthEventsCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminListUserAuthEventsCommand.ts index 17591b7fc30e1..110bd333bb9bc 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminListUserAuthEventsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminListUserAuthEventsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminListUserAuthEventsRequest, AdminListUserAuthEventsResponse } from "../models/models_0"; +import type { AdminListUserAuthEventsRequest, AdminListUserAuthEventsResponse } from "../models/models_0"; import { AdminListUserAuthEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminRemoveUserFromGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminRemoveUserFromGroupCommand.ts index 9dc923f4dc172..0cfdb0097b1b4 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminRemoveUserFromGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminRemoveUserFromGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminRemoveUserFromGroupRequest } from "../models/models_0"; +import type { AdminRemoveUserFromGroupRequest } from "../models/models_0"; import { AdminRemoveUserFromGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminResetUserPasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminResetUserPasswordCommand.ts index be2612bede188..f20e3e6c507c6 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminResetUserPasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminResetUserPasswordCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminResetUserPasswordRequest, AdminResetUserPasswordResponse } from "../models/models_0"; +import type { AdminResetUserPasswordRequest, AdminResetUserPasswordResponse } from "../models/models_0"; import { AdminResetUserPassword } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminRespondToAuthChallengeCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminRespondToAuthChallengeCommand.ts index b7d4e2db7f596..ee1e5eb7b40ad 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminRespondToAuthChallengeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminRespondToAuthChallengeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminRespondToAuthChallengeRequest, AdminRespondToAuthChallengeResponse } from "../models/models_0"; +import type { AdminRespondToAuthChallengeRequest, AdminRespondToAuthChallengeResponse } from "../models/models_0"; import { AdminRespondToAuthChallenge } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminSetUserMFAPreferenceCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminSetUserMFAPreferenceCommand.ts index c9f13ffb5649b..d0f6ba59b9f9d 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminSetUserMFAPreferenceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminSetUserMFAPreferenceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminSetUserMFAPreferenceRequest, AdminSetUserMFAPreferenceResponse } from "../models/models_0"; +import type { AdminSetUserMFAPreferenceRequest, AdminSetUserMFAPreferenceResponse } from "../models/models_0"; import { AdminSetUserMFAPreference } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminSetUserPasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminSetUserPasswordCommand.ts index ef0677183c828..66d0653bebcb8 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminSetUserPasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminSetUserPasswordCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminSetUserPasswordRequest, AdminSetUserPasswordResponse } from "../models/models_0"; +import type { AdminSetUserPasswordRequest, AdminSetUserPasswordResponse } from "../models/models_0"; import { AdminSetUserPassword } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminSetUserSettingsCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminSetUserSettingsCommand.ts index 0b6b22341295c..1f730322b56b9 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminSetUserSettingsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminSetUserSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminSetUserSettingsRequest, AdminSetUserSettingsResponse } from "../models/models_0"; +import type { AdminSetUserSettingsRequest, AdminSetUserSettingsResponse } from "../models/models_0"; import { AdminSetUserSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminUpdateAuthEventFeedbackCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminUpdateAuthEventFeedbackCommand.ts index 53e48aa72d5b1..1d0893eb74ca6 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminUpdateAuthEventFeedbackCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminUpdateAuthEventFeedbackCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminUpdateAuthEventFeedbackRequest, AdminUpdateAuthEventFeedbackResponse } from "../models/models_0"; +import type { AdminUpdateAuthEventFeedbackRequest, AdminUpdateAuthEventFeedbackResponse } from "../models/models_0"; import { AdminUpdateAuthEventFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminUpdateDeviceStatusCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminUpdateDeviceStatusCommand.ts index 5718e1507f828..48b9ab4064f50 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminUpdateDeviceStatusCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminUpdateDeviceStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminUpdateDeviceStatusRequest, AdminUpdateDeviceStatusResponse } from "../models/models_0"; +import type { AdminUpdateDeviceStatusRequest, AdminUpdateDeviceStatusResponse } from "../models/models_0"; import { AdminUpdateDeviceStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminUpdateUserAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminUpdateUserAttributesCommand.ts index 5454f2cf039ac..9c0d4b89330fa 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminUpdateUserAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminUpdateUserAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminUpdateUserAttributesRequest, AdminUpdateUserAttributesResponse } from "../models/models_0"; +import type { AdminUpdateUserAttributesRequest, AdminUpdateUserAttributesResponse } from "../models/models_0"; import { AdminUpdateUserAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AdminUserGlobalSignOutCommand.ts b/clients/client-cognito-identity-provider/src/commands/AdminUserGlobalSignOutCommand.ts index 9b761a6e83257..bef049125b57f 100644 --- a/clients/client-cognito-identity-provider/src/commands/AdminUserGlobalSignOutCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AdminUserGlobalSignOutCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdminUserGlobalSignOutRequest, AdminUserGlobalSignOutResponse } from "../models/models_0"; +import type { AdminUserGlobalSignOutRequest, AdminUserGlobalSignOutResponse } from "../models/models_0"; import { AdminUserGlobalSignOut } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/AssociateSoftwareTokenCommand.ts b/clients/client-cognito-identity-provider/src/commands/AssociateSoftwareTokenCommand.ts index 7b3410cd747f6..8ac5b95a6beec 100644 --- a/clients/client-cognito-identity-provider/src/commands/AssociateSoftwareTokenCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/AssociateSoftwareTokenCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSoftwareTokenRequest, AssociateSoftwareTokenResponse } from "../models/models_0"; +import type { AssociateSoftwareTokenRequest, AssociateSoftwareTokenResponse } from "../models/models_0"; import { AssociateSoftwareToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ChangePasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/ChangePasswordCommand.ts index e77d943e3cbb1..9af43b39f2744 100644 --- a/clients/client-cognito-identity-provider/src/commands/ChangePasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ChangePasswordCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ChangePasswordRequest, ChangePasswordResponse } from "../models/models_0"; +import type { ChangePasswordRequest, ChangePasswordResponse } from "../models/models_0"; import { ChangePassword } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CompleteWebAuthnRegistrationCommand.ts b/clients/client-cognito-identity-provider/src/commands/CompleteWebAuthnRegistrationCommand.ts index 8d139a9d5fd2f..f87d69f32636f 100644 --- a/clients/client-cognito-identity-provider/src/commands/CompleteWebAuthnRegistrationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CompleteWebAuthnRegistrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteWebAuthnRegistrationRequest, CompleteWebAuthnRegistrationResponse } from "../models/models_0"; +import type { CompleteWebAuthnRegistrationRequest, CompleteWebAuthnRegistrationResponse } from "../models/models_0"; import { CompleteWebAuthnRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ConfirmDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/ConfirmDeviceCommand.ts index cb1863bc9988f..cd69a208cf3c3 100644 --- a/clients/client-cognito-identity-provider/src/commands/ConfirmDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ConfirmDeviceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmDeviceRequest, ConfirmDeviceResponse } from "../models/models_0"; +import type { ConfirmDeviceRequest, ConfirmDeviceResponse } from "../models/models_0"; import { ConfirmDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ConfirmForgotPasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/ConfirmForgotPasswordCommand.ts index 45fda10a2ff02..62ca50e3c3bee 100644 --- a/clients/client-cognito-identity-provider/src/commands/ConfirmForgotPasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ConfirmForgotPasswordCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmForgotPasswordRequest, ConfirmForgotPasswordResponse } from "../models/models_0"; +import type { ConfirmForgotPasswordRequest, ConfirmForgotPasswordResponse } from "../models/models_0"; import { ConfirmForgotPassword } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ConfirmSignUpCommand.ts b/clients/client-cognito-identity-provider/src/commands/ConfirmSignUpCommand.ts index 35032dd8fc722..9fa3e4e70fe27 100644 --- a/clients/client-cognito-identity-provider/src/commands/ConfirmSignUpCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ConfirmSignUpCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmSignUpRequest, ConfirmSignUpResponse } from "../models/models_0"; +import type { ConfirmSignUpRequest, ConfirmSignUpResponse } from "../models/models_0"; import { ConfirmSignUp } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CreateGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateGroupCommand.ts index 12ffe685021a6..e836e4f3f51f2 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; +import type { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; import { CreateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CreateIdentityProviderCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateIdentityProviderCommand.ts index 7e1daaffc9bd3..122c440939723 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateIdentityProviderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateIdentityProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIdentityProviderRequest, CreateIdentityProviderResponse } from "../models/models_0"; +import type { CreateIdentityProviderRequest, CreateIdentityProviderResponse } from "../models/models_0"; import { CreateIdentityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CreateManagedLoginBrandingCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateManagedLoginBrandingCommand.ts index c5fc2f661bd07..139ce5b040642 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateManagedLoginBrandingCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateManagedLoginBrandingCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateManagedLoginBrandingRequest, CreateManagedLoginBrandingResponse } from "../models/models_0"; +import type { CreateManagedLoginBrandingRequest, CreateManagedLoginBrandingResponse } from "../models/models_0"; import { CreateManagedLoginBranding } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CreateResourceServerCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateResourceServerCommand.ts index a11f91d03fb33..402ee79fc51d3 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateResourceServerCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateResourceServerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceServerRequest, CreateResourceServerResponse } from "../models/models_0"; +import type { CreateResourceServerRequest, CreateResourceServerResponse } from "../models/models_0"; import { CreateResourceServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CreateTermsCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateTermsCommand.ts index ccfdfbcb04d78..d006080e97755 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateTermsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateTermsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTermsRequest, CreateTermsResponse } from "../models/models_0"; +import type { CreateTermsRequest, CreateTermsResponse } from "../models/models_0"; import { CreateTerms } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CreateUserImportJobCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateUserImportJobCommand.ts index 7cd0e248c58cf..034550eebc162 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateUserImportJobCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateUserImportJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserImportJobRequest, CreateUserImportJobResponse } from "../models/models_0"; +import type { CreateUserImportJobRequest, CreateUserImportJobResponse } from "../models/models_0"; import { CreateUserImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolClientCommand.ts index 00041527e3303..f0c788291a0ab 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolClientCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserPoolClientRequest, CreateUserPoolClientResponse } from "../models/models_0"; +import type { CreateUserPoolClientRequest, CreateUserPoolClientResponse } from "../models/models_0"; import { CreateUserPoolClient } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolCommand.ts index 104ee9d59dcb4..0367cce016afe 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserPoolRequest, CreateUserPoolResponse } from "../models/models_0"; +import type { CreateUserPoolRequest, CreateUserPoolResponse } from "../models/models_0"; import { CreateUserPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolDomainCommand.ts b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolDomainCommand.ts index e3b65cc78195f..1eb20295fc3c9 100644 --- a/clients/client-cognito-identity-provider/src/commands/CreateUserPoolDomainCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/CreateUserPoolDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserPoolDomainRequest, CreateUserPoolDomainResponse } from "../models/models_0"; +import type { CreateUserPoolDomainRequest, CreateUserPoolDomainResponse } from "../models/models_0"; import { CreateUserPoolDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteGroupCommand.ts index 308353c48842a..ec976ab8b5efe 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupRequest } from "../models/models_0"; +import type { DeleteGroupRequest } from "../models/models_0"; import { DeleteGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteIdentityProviderCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteIdentityProviderCommand.ts index 9f434b3651a5c..9d7bc5d807de7 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteIdentityProviderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteIdentityProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentityProviderRequest } from "../models/models_0"; +import type { DeleteIdentityProviderRequest } from "../models/models_0"; import { DeleteIdentityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteManagedLoginBrandingCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteManagedLoginBrandingCommand.ts index 0729fb1da8d42..ce1489d6ff2c4 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteManagedLoginBrandingCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteManagedLoginBrandingCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteManagedLoginBrandingRequest } from "../models/models_0"; +import type { DeleteManagedLoginBrandingRequest } from "../models/models_0"; import { DeleteManagedLoginBranding } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteResourceServerCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteResourceServerCommand.ts index 746ef0f33ff4b..8bf826ea0d5a1 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteResourceServerCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteResourceServerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceServerRequest } from "../models/models_0"; +import type { DeleteResourceServerRequest } from "../models/models_0"; import { DeleteResourceServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteTermsCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteTermsCommand.ts index 21fcc0fb508eb..83586b32b627a 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteTermsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteTermsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTermsRequest } from "../models/models_0"; +import type { DeleteTermsRequest } from "../models/models_0"; import { DeleteTerms } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserAttributesCommand.ts index c6e408ca17991..f0baddc52ac14 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserAttributesRequest, DeleteUserAttributesResponse } from "../models/models_0"; +import type { DeleteUserAttributesRequest, DeleteUserAttributesResponse } from "../models/models_0"; import { DeleteUserAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserCommand.ts index 669b74d8ccf21..07c35ef154ce9 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest } from "../models/models_0"; +import type { DeleteUserRequest } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolClientCommand.ts index 3d87cdf1ecb77..fd38a374bd3ea 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolClientCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserPoolClientRequest } from "../models/models_0"; +import type { DeleteUserPoolClientRequest } from "../models/models_0"; import { DeleteUserPoolClient } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolCommand.ts index 6a3ea9400d68b..ad60c89e40360 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserPoolRequest } from "../models/models_0"; +import type { DeleteUserPoolRequest } from "../models/models_0"; import { DeleteUserPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolDomainCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolDomainCommand.ts index cd78e0f139f2e..ca91d507b2420 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolDomainCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteUserPoolDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserPoolDomainRequest, DeleteUserPoolDomainResponse } from "../models/models_0"; +import type { DeleteUserPoolDomainRequest, DeleteUserPoolDomainResponse } from "../models/models_0"; import { DeleteUserPoolDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DeleteWebAuthnCredentialCommand.ts b/clients/client-cognito-identity-provider/src/commands/DeleteWebAuthnCredentialCommand.ts index dfe1399b82eab..ae21f2ae21c8b 100644 --- a/clients/client-cognito-identity-provider/src/commands/DeleteWebAuthnCredentialCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DeleteWebAuthnCredentialCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebAuthnCredentialRequest, DeleteWebAuthnCredentialResponse } from "../models/models_0"; +import type { DeleteWebAuthnCredentialRequest, DeleteWebAuthnCredentialResponse } from "../models/models_0"; import { DeleteWebAuthnCredential } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeIdentityProviderCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeIdentityProviderCommand.ts index 47bdd28ef150c..966d1352ccd74 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeIdentityProviderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeIdentityProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIdentityProviderRequest, DescribeIdentityProviderResponse } from "../models/models_0"; +import type { DescribeIdentityProviderRequest, DescribeIdentityProviderResponse } from "../models/models_0"; import { DescribeIdentityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingByClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingByClientCommand.ts index ffa2120d018d0..cfee234328de8 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingByClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingByClientCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeManagedLoginBrandingByClientRequest, DescribeManagedLoginBrandingByClientResponse, } from "../models/models_0"; diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingCommand.ts index 97a818fd245c9..b47e9f992a822 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeManagedLoginBrandingCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeManagedLoginBrandingRequest, DescribeManagedLoginBrandingResponse } from "../models/models_0"; +import type { DescribeManagedLoginBrandingRequest, DescribeManagedLoginBrandingResponse } from "../models/models_0"; import { DescribeManagedLoginBranding } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeResourceServerCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeResourceServerCommand.ts index 1f83dde4391f2..fa5f0dac0b200 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeResourceServerCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeResourceServerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourceServerRequest, DescribeResourceServerResponse } from "../models/models_0"; +import type { DescribeResourceServerRequest, DescribeResourceServerResponse } from "../models/models_0"; import { DescribeResourceServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeRiskConfigurationCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeRiskConfigurationCommand.ts index 99d720076e107..c3c725eb527bd 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeRiskConfigurationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeRiskConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRiskConfigurationRequest, DescribeRiskConfigurationResponse } from "../models/models_0"; +import type { DescribeRiskConfigurationRequest, DescribeRiskConfigurationResponse } from "../models/models_0"; import { DescribeRiskConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeTermsCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeTermsCommand.ts index aba111fce7a3d..5ee18c52c7765 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeTermsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeTermsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTermsRequest, DescribeTermsResponse } from "../models/models_0"; +import type { DescribeTermsRequest, DescribeTermsResponse } from "../models/models_0"; import { DescribeTerms } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeUserImportJobCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeUserImportJobCommand.ts index ffb84700416b2..ab04b00a3b76a 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeUserImportJobCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeUserImportJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserImportJobRequest, DescribeUserImportJobResponse } from "../models/models_0"; +import type { DescribeUserImportJobRequest, DescribeUserImportJobResponse } from "../models/models_0"; import { DescribeUserImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolClientCommand.ts index 56800e1e003fc..206e7d01a7a2f 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolClientCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserPoolClientRequest, DescribeUserPoolClientResponse } from "../models/models_0"; +import type { DescribeUserPoolClientRequest, DescribeUserPoolClientResponse } from "../models/models_0"; import { DescribeUserPoolClient } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolCommand.ts index 8001fef02c7d2..2c96c318f73a4 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserPoolRequest, DescribeUserPoolResponse } from "../models/models_0"; +import type { DescribeUserPoolRequest, DescribeUserPoolResponse } from "../models/models_0"; import { DescribeUserPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolDomainCommand.ts b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolDomainCommand.ts index 2092312322db6..1d9cc3052e2be 100644 --- a/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolDomainCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/DescribeUserPoolDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserPoolDomainRequest, DescribeUserPoolDomainResponse } from "../models/models_0"; +import type { DescribeUserPoolDomainRequest, DescribeUserPoolDomainResponse } from "../models/models_0"; import { DescribeUserPoolDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ForgetDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/ForgetDeviceCommand.ts index f974897d706ae..050c96fda230b 100644 --- a/clients/client-cognito-identity-provider/src/commands/ForgetDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ForgetDeviceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForgetDeviceRequest } from "../models/models_0"; +import type { ForgetDeviceRequest } from "../models/models_0"; import { ForgetDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ForgotPasswordCommand.ts b/clients/client-cognito-identity-provider/src/commands/ForgotPasswordCommand.ts index 8f2915dd6d909..460942de6505c 100644 --- a/clients/client-cognito-identity-provider/src/commands/ForgotPasswordCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ForgotPasswordCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForgotPasswordRequest, ForgotPasswordResponse } from "../models/models_0"; +import type { ForgotPasswordRequest, ForgotPasswordResponse } from "../models/models_0"; import { ForgotPassword } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetCSVHeaderCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetCSVHeaderCommand.ts index 4d24f3ef34827..f25c2a1ca5ab8 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetCSVHeaderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetCSVHeaderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCSVHeaderRequest, GetCSVHeaderResponse } from "../models/models_0"; +import type { GetCSVHeaderRequest, GetCSVHeaderResponse } from "../models/models_0"; import { GetCSVHeader } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetDeviceCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetDeviceCommand.ts index 4e81a0f74bb61..f37aef34bdfc7 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetDeviceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetDeviceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeviceRequest, GetDeviceResponse } from "../models/models_0"; +import type { GetDeviceRequest, GetDeviceResponse } from "../models/models_0"; import { GetDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetGroupCommand.ts index 3188377479094..00275a4af05d0 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupRequest, GetGroupResponse } from "../models/models_0"; +import type { GetGroupRequest, GetGroupResponse } from "../models/models_0"; import { GetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetIdentityProviderByIdentifierCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetIdentityProviderByIdentifierCommand.ts index efe3b9f13d05a..34d4ae27f5e94 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetIdentityProviderByIdentifierCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetIdentityProviderByIdentifierCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentityProviderByIdentifierRequest, GetIdentityProviderByIdentifierResponse } from "../models/models_0"; +import type { + GetIdentityProviderByIdentifierRequest, + GetIdentityProviderByIdentifierResponse, +} from "../models/models_0"; import { GetIdentityProviderByIdentifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetLogDeliveryConfigurationCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetLogDeliveryConfigurationCommand.ts index 036e91a567de4..cb3a626c6490f 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetLogDeliveryConfigurationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetLogDeliveryConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLogDeliveryConfigurationRequest, GetLogDeliveryConfigurationResponse } from "../models/models_0"; +import type { GetLogDeliveryConfigurationRequest, GetLogDeliveryConfigurationResponse } from "../models/models_0"; import { GetLogDeliveryConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetSigningCertificateCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetSigningCertificateCommand.ts index 85ee0e02269b7..78bdfe0ad7a2d 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetSigningCertificateCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetSigningCertificateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSigningCertificateRequest, GetSigningCertificateResponse } from "../models/models_0"; +import type { GetSigningCertificateRequest, GetSigningCertificateResponse } from "../models/models_0"; import { GetSigningCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetTokensFromRefreshTokenCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetTokensFromRefreshTokenCommand.ts index 25930d86f1e02..1c6dc35b44772 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetTokensFromRefreshTokenCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetTokensFromRefreshTokenCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTokensFromRefreshTokenRequest, GetTokensFromRefreshTokenResponse } from "../models/models_0"; +import type { GetTokensFromRefreshTokenRequest, GetTokensFromRefreshTokenResponse } from "../models/models_0"; import { GetTokensFromRefreshToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetUICustomizationCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUICustomizationCommand.ts index aa6a5ddd83224..1a1556a849d70 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUICustomizationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUICustomizationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUICustomizationRequest, GetUICustomizationResponse } from "../models/models_0"; +import type { GetUICustomizationRequest, GetUICustomizationResponse } from "../models/models_0"; import { GetUICustomization } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetUserAttributeVerificationCodeCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUserAttributeVerificationCodeCommand.ts index 8c17fd9b01141..f0bd74cb6dac8 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUserAttributeVerificationCodeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUserAttributeVerificationCodeCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserAttributeVerificationCodeRequest, GetUserAttributeVerificationCodeResponse } from "../models/models_0"; +import type { + GetUserAttributeVerificationCodeRequest, + GetUserAttributeVerificationCodeResponse, +} from "../models/models_0"; import { GetUserAttributeVerificationCode } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetUserAuthFactorsCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUserAuthFactorsCommand.ts index e67c71f7b5c8c..a3269711eed54 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUserAuthFactorsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUserAuthFactorsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserAuthFactorsRequest, GetUserAuthFactorsResponse } from "../models/models_0"; +import type { GetUserAuthFactorsRequest, GetUserAuthFactorsResponse } from "../models/models_0"; import { GetUserAuthFactors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetUserCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUserCommand.ts index 14c57072ea6e6..1bfa68f0bf79c 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUserCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserRequest, GetUserResponse } from "../models/models_0"; +import type { GetUserRequest, GetUserResponse } from "../models/models_0"; import { GetUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GetUserPoolMfaConfigCommand.ts b/clients/client-cognito-identity-provider/src/commands/GetUserPoolMfaConfigCommand.ts index a20adcc4ab50b..769388f664e44 100644 --- a/clients/client-cognito-identity-provider/src/commands/GetUserPoolMfaConfigCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GetUserPoolMfaConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserPoolMfaConfigRequest, GetUserPoolMfaConfigResponse } from "../models/models_0"; +import type { GetUserPoolMfaConfigRequest, GetUserPoolMfaConfigResponse } from "../models/models_0"; import { GetUserPoolMfaConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/GlobalSignOutCommand.ts b/clients/client-cognito-identity-provider/src/commands/GlobalSignOutCommand.ts index c8ce5832f8e75..4664105dda63b 100644 --- a/clients/client-cognito-identity-provider/src/commands/GlobalSignOutCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/GlobalSignOutCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlobalSignOutRequest, GlobalSignOutResponse } from "../models/models_0"; +import type { GlobalSignOutRequest, GlobalSignOutResponse } from "../models/models_0"; import { GlobalSignOut } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/InitiateAuthCommand.ts b/clients/client-cognito-identity-provider/src/commands/InitiateAuthCommand.ts index 489f943879240..e158b06bf7718 100644 --- a/clients/client-cognito-identity-provider/src/commands/InitiateAuthCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/InitiateAuthCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InitiateAuthRequest, InitiateAuthResponse } from "../models/models_0"; +import type { InitiateAuthRequest, InitiateAuthResponse } from "../models/models_0"; import { InitiateAuth } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListDevicesCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListDevicesCommand.ts index 6f5978fa34c29..a1cbd117b2a55 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListDevicesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListDevicesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevicesRequest, ListDevicesResponse } from "../models/models_0"; +import type { ListDevicesRequest, ListDevicesResponse } from "../models/models_0"; import { ListDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListGroupsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListGroupsCommand.ts index 27b3f69dd27c1..fc1f1488f96b5 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListGroupsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListGroupsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; +import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; import { ListGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListIdentityProvidersCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListIdentityProvidersCommand.ts index f8bacbaeaeb41..b9cba151ce7df 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListIdentityProvidersCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListIdentityProvidersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0"; +import type { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0"; import { ListIdentityProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListResourceServersCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListResourceServersCommand.ts index badc2cee3e819..4e915774450a0 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListResourceServersCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListResourceServersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceServersRequest, ListResourceServersResponse } from "../models/models_0"; +import type { ListResourceServersRequest, ListResourceServersResponse } from "../models/models_0"; import { ListResourceServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListTagsForResourceCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListTagsForResourceCommand.ts index 471530632fd76..5d25e3747ce7d 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListTermsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListTermsCommand.ts index 1eb5a26c52229..ae186ef792db7 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListTermsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListTermsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTermsRequest, ListTermsResponse } from "../models/models_0"; +import type { ListTermsRequest, ListTermsResponse } from "../models/models_0"; import { ListTerms } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListUserImportJobsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUserImportJobsCommand.ts index 41809af4011fb..fdcccbccb7953 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUserImportJobsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUserImportJobsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUserImportJobsRequest, ListUserImportJobsResponse } from "../models/models_0"; +import type { ListUserImportJobsRequest, ListUserImportJobsResponse } from "../models/models_0"; import { ListUserImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListUserPoolClientsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUserPoolClientsCommand.ts index 1a857f8bfefb5..2b9d3f8648d93 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUserPoolClientsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUserPoolClientsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUserPoolClientsRequest, ListUserPoolClientsResponse } from "../models/models_0"; +import type { ListUserPoolClientsRequest, ListUserPoolClientsResponse } from "../models/models_0"; import { ListUserPoolClients } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListUserPoolsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUserPoolsCommand.ts index 41974eebbe1b2..888e20c93ded8 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUserPoolsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUserPoolsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUserPoolsRequest, ListUserPoolsResponse } from "../models/models_0"; +import type { ListUserPoolsRequest, ListUserPoolsResponse } from "../models/models_0"; import { ListUserPools } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListUsersCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUsersCommand.ts index 248538391dbf0..160593661dec1 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUsersCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUsersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_0"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_0"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListUsersInGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListUsersInGroupCommand.ts index 804daf573508d..26330b4e2b6eb 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListUsersInGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListUsersInGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersInGroupRequest, ListUsersInGroupResponse } from "../models/models_0"; +import type { ListUsersInGroupRequest, ListUsersInGroupResponse } from "../models/models_0"; import { ListUsersInGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ListWebAuthnCredentialsCommand.ts b/clients/client-cognito-identity-provider/src/commands/ListWebAuthnCredentialsCommand.ts index 2cd31ea2524e8..d68391ec8921d 100644 --- a/clients/client-cognito-identity-provider/src/commands/ListWebAuthnCredentialsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ListWebAuthnCredentialsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWebAuthnCredentialsRequest, ListWebAuthnCredentialsResponse } from "../models/models_0"; +import type { ListWebAuthnCredentialsRequest, ListWebAuthnCredentialsResponse } from "../models/models_0"; import { ListWebAuthnCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/ResendConfirmationCodeCommand.ts b/clients/client-cognito-identity-provider/src/commands/ResendConfirmationCodeCommand.ts index 1ebc0c8fd5cb7..1f1dc0a9b6b15 100644 --- a/clients/client-cognito-identity-provider/src/commands/ResendConfirmationCodeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/ResendConfirmationCodeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResendConfirmationCodeRequest, ResendConfirmationCodeResponse } from "../models/models_0"; +import type { ResendConfirmationCodeRequest, ResendConfirmationCodeResponse } from "../models/models_0"; import { ResendConfirmationCode } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/RespondToAuthChallengeCommand.ts b/clients/client-cognito-identity-provider/src/commands/RespondToAuthChallengeCommand.ts index d1dbcb3cfee47..686c646f1210d 100644 --- a/clients/client-cognito-identity-provider/src/commands/RespondToAuthChallengeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/RespondToAuthChallengeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RespondToAuthChallengeRequest, RespondToAuthChallengeResponse } from "../models/models_0"; +import type { RespondToAuthChallengeRequest, RespondToAuthChallengeResponse } from "../models/models_0"; import { RespondToAuthChallenge } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/RevokeTokenCommand.ts b/clients/client-cognito-identity-provider/src/commands/RevokeTokenCommand.ts index fb6c7deeddfe9..e271099145ac5 100644 --- a/clients/client-cognito-identity-provider/src/commands/RevokeTokenCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/RevokeTokenCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeTokenRequest, RevokeTokenResponse } from "../models/models_0"; +import type { RevokeTokenRequest, RevokeTokenResponse } from "../models/models_0"; import { RevokeToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/SetLogDeliveryConfigurationCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetLogDeliveryConfigurationCommand.ts index 1b8512ffe6e46..75c7b3f4c7301 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetLogDeliveryConfigurationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetLogDeliveryConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetLogDeliveryConfigurationRequest, SetLogDeliveryConfigurationResponse } from "../models/models_0"; +import type { SetLogDeliveryConfigurationRequest, SetLogDeliveryConfigurationResponse } from "../models/models_0"; import { SetLogDeliveryConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/SetRiskConfigurationCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetRiskConfigurationCommand.ts index 3d07fffb52c45..51b91f54227e7 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetRiskConfigurationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetRiskConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetRiskConfigurationRequest, SetRiskConfigurationResponse } from "../models/models_0"; +import type { SetRiskConfigurationRequest, SetRiskConfigurationResponse } from "../models/models_0"; import { SetRiskConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/SetUICustomizationCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetUICustomizationCommand.ts index dca6c9c27e107..59af9b33f229b 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetUICustomizationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetUICustomizationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetUICustomizationRequest, SetUICustomizationResponse } from "../models/models_0"; +import type { SetUICustomizationRequest, SetUICustomizationResponse } from "../models/models_0"; import { SetUICustomization } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/SetUserMFAPreferenceCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetUserMFAPreferenceCommand.ts index 37c1425a2053b..b66b2362f830a 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetUserMFAPreferenceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetUserMFAPreferenceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetUserMFAPreferenceRequest, SetUserMFAPreferenceResponse } from "../models/models_0"; +import type { SetUserMFAPreferenceRequest, SetUserMFAPreferenceResponse } from "../models/models_0"; import { SetUserMFAPreference } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/SetUserPoolMfaConfigCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetUserPoolMfaConfigCommand.ts index 02cab3a2259bc..e5972407060ca 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetUserPoolMfaConfigCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetUserPoolMfaConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetUserPoolMfaConfigRequest, SetUserPoolMfaConfigResponse } from "../models/models_0"; +import type { SetUserPoolMfaConfigRequest, SetUserPoolMfaConfigResponse } from "../models/models_0"; import { SetUserPoolMfaConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/SetUserSettingsCommand.ts b/clients/client-cognito-identity-provider/src/commands/SetUserSettingsCommand.ts index 8da422f30b756..9c6453e442f18 100644 --- a/clients/client-cognito-identity-provider/src/commands/SetUserSettingsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SetUserSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetUserSettingsRequest, SetUserSettingsResponse } from "../models/models_0"; +import type { SetUserSettingsRequest, SetUserSettingsResponse } from "../models/models_0"; import { SetUserSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/SignUpCommand.ts b/clients/client-cognito-identity-provider/src/commands/SignUpCommand.ts index ea9abf3d0327d..3cdcfe85be1e3 100644 --- a/clients/client-cognito-identity-provider/src/commands/SignUpCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/SignUpCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SignUpRequest, SignUpResponse } from "../models/models_0"; +import type { SignUpRequest, SignUpResponse } from "../models/models_0"; import { SignUp } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/StartUserImportJobCommand.ts b/clients/client-cognito-identity-provider/src/commands/StartUserImportJobCommand.ts index 482c1b05e6b37..9b89041c7a40f 100644 --- a/clients/client-cognito-identity-provider/src/commands/StartUserImportJobCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/StartUserImportJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartUserImportJobRequest, StartUserImportJobResponse } from "../models/models_0"; +import type { StartUserImportJobRequest, StartUserImportJobResponse } from "../models/models_0"; import { StartUserImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/StartWebAuthnRegistrationCommand.ts b/clients/client-cognito-identity-provider/src/commands/StartWebAuthnRegistrationCommand.ts index e16d2e4d5b7ad..6932902bc90d6 100644 --- a/clients/client-cognito-identity-provider/src/commands/StartWebAuthnRegistrationCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/StartWebAuthnRegistrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartWebAuthnRegistrationRequest, StartWebAuthnRegistrationResponse } from "../models/models_0"; +import type { StartWebAuthnRegistrationRequest, StartWebAuthnRegistrationResponse } from "../models/models_0"; import { StartWebAuthnRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/StopUserImportJobCommand.ts b/clients/client-cognito-identity-provider/src/commands/StopUserImportJobCommand.ts index 27e67c4f0a6ad..ad1d183355f1a 100644 --- a/clients/client-cognito-identity-provider/src/commands/StopUserImportJobCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/StopUserImportJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopUserImportJobRequest, StopUserImportJobResponse } from "../models/models_0"; +import type { StopUserImportJobRequest, StopUserImportJobResponse } from "../models/models_0"; import { StopUserImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/TagResourceCommand.ts b/clients/client-cognito-identity-provider/src/commands/TagResourceCommand.ts index ec38e01c4dd38..deb37d68b1b0f 100644 --- a/clients/client-cognito-identity-provider/src/commands/TagResourceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UntagResourceCommand.ts b/clients/client-cognito-identity-provider/src/commands/UntagResourceCommand.ts index 4e6276160af54..c9fb001b2793e 100644 --- a/clients/client-cognito-identity-provider/src/commands/UntagResourceCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateAuthEventFeedbackCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateAuthEventFeedbackCommand.ts index ed4eebc816267..9fc9e87957fda 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateAuthEventFeedbackCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateAuthEventFeedbackCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAuthEventFeedbackRequest, UpdateAuthEventFeedbackResponse } from "../models/models_0"; +import type { UpdateAuthEventFeedbackRequest, UpdateAuthEventFeedbackResponse } from "../models/models_0"; import { UpdateAuthEventFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateDeviceStatusCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateDeviceStatusCommand.ts index ff260738e7137..61257106ce12f 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateDeviceStatusCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateDeviceStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeviceStatusRequest, UpdateDeviceStatusResponse } from "../models/models_0"; +import type { UpdateDeviceStatusRequest, UpdateDeviceStatusResponse } from "../models/models_0"; import { UpdateDeviceStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateGroupCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateGroupCommand.ts index 0165e316aa76d..3e700977c8a3e 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateGroupCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0"; +import type { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0"; import { UpdateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateIdentityProviderCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateIdentityProviderCommand.ts index fe7d6af41eb84..d3b5a9e056e47 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateIdentityProviderCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateIdentityProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIdentityProviderRequest, UpdateIdentityProviderResponse } from "../models/models_0"; +import type { UpdateIdentityProviderRequest, UpdateIdentityProviderResponse } from "../models/models_0"; import { UpdateIdentityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateManagedLoginBrandingCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateManagedLoginBrandingCommand.ts index ffa5b65eb4e7e..b20815ec3696c 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateManagedLoginBrandingCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateManagedLoginBrandingCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateManagedLoginBrandingRequest, UpdateManagedLoginBrandingResponse } from "../models/models_0"; +import type { UpdateManagedLoginBrandingRequest, UpdateManagedLoginBrandingResponse } from "../models/models_0"; import { UpdateManagedLoginBranding } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateResourceServerCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateResourceServerCommand.ts index 5803218af5c25..ef417dcd2d5c2 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateResourceServerCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateResourceServerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResourceServerRequest, UpdateResourceServerResponse } from "../models/models_0"; +import type { UpdateResourceServerRequest, UpdateResourceServerResponse } from "../models/models_0"; import { UpdateResourceServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateTermsCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateTermsCommand.ts index 5922e41ed701c..035ec22eb9151 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateTermsCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateTermsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTermsRequest, UpdateTermsResponse } from "../models/models_0"; +import type { UpdateTermsRequest, UpdateTermsResponse } from "../models/models_0"; import { UpdateTerms } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateUserAttributesCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateUserAttributesCommand.ts index 9692d0b5b9ef3..95293eb01dad3 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateUserAttributesCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateUserAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserAttributesRequest, UpdateUserAttributesResponse } from "../models/models_0"; +import type { UpdateUserAttributesRequest, UpdateUserAttributesResponse } from "../models/models_0"; import { UpdateUserAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolClientCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolClientCommand.ts index a071acab62917..637c2bd07fefa 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolClientCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolClientCommand.ts @@ -1,16 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserPoolClientRequest } from "../models/models_0"; -import { UpdateUserPoolClientResponse } from "../models/models_1"; +import type { UpdateUserPoolClientRequest } from "../models/models_0"; +import type { UpdateUserPoolClientResponse } from "../models/models_1"; import { UpdateUserPoolClient } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolCommand.ts index 3aa7c9d531b81..490ce7a59cbf8 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserPoolRequest, UpdateUserPoolResponse } from "../models/models_0"; +import type { UpdateUserPoolRequest, UpdateUserPoolResponse } from "../models/models_0"; import { UpdateUserPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolDomainCommand.ts b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolDomainCommand.ts index eaed1a7438254..13c5b93c331ef 100644 --- a/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolDomainCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/UpdateUserPoolDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserPoolDomainRequest, UpdateUserPoolDomainResponse } from "../models/models_1"; +import type { UpdateUserPoolDomainRequest, UpdateUserPoolDomainResponse } from "../models/models_1"; import { UpdateUserPoolDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/VerifySoftwareTokenCommand.ts b/clients/client-cognito-identity-provider/src/commands/VerifySoftwareTokenCommand.ts index b3474ed64b575..a8d861e95d9c3 100644 --- a/clients/client-cognito-identity-provider/src/commands/VerifySoftwareTokenCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/VerifySoftwareTokenCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifySoftwareTokenRequest, VerifySoftwareTokenResponse } from "../models/models_1"; +import type { VerifySoftwareTokenRequest, VerifySoftwareTokenResponse } from "../models/models_1"; import { VerifySoftwareToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/commands/VerifyUserAttributeCommand.ts b/clients/client-cognito-identity-provider/src/commands/VerifyUserAttributeCommand.ts index 3fbba3c36f3b3..9812ff5f3e120 100644 --- a/clients/client-cognito-identity-provider/src/commands/VerifyUserAttributeCommand.ts +++ b/clients/client-cognito-identity-provider/src/commands/VerifyUserAttributeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CognitoIdentityProviderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CognitoIdentityProviderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyUserAttributeRequest, VerifyUserAttributeResponse } from "../models/models_1"; +import type { VerifyUserAttributeRequest, VerifyUserAttributeResponse } from "../models/models_1"; import { VerifyUserAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity-provider/src/endpoint/EndpointParameters.ts b/clients/client-cognito-identity-provider/src/endpoint/EndpointParameters.ts index 775f725835f81..e6b74c6ebd60e 100644 --- a/clients/client-cognito-identity-provider/src/endpoint/EndpointParameters.ts +++ b/clients/client-cognito-identity-provider/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cognito-identity-provider/src/endpoint/endpointResolver.ts b/clients/client-cognito-identity-provider/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cognito-identity-provider/src/endpoint/endpointResolver.ts +++ b/clients/client-cognito-identity-provider/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cognito-identity-provider/src/extensionConfiguration.ts b/clients/client-cognito-identity-provider/src/extensionConfiguration.ts index d117425c0ac55..adc90cbd4dce9 100644 --- a/clients/client-cognito-identity-provider/src/extensionConfiguration.ts +++ b/clients/client-cognito-identity-provider/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cognito-identity-provider/src/models/CognitoIdentityProviderServiceException.ts b/clients/client-cognito-identity-provider/src/models/CognitoIdentityProviderServiceException.ts index 21618b2c67ee8..46ed2847532c5 100644 --- a/clients/client-cognito-identity-provider/src/models/CognitoIdentityProviderServiceException.ts +++ b/clients/client-cognito-identity-provider/src/models/CognitoIdentityProviderServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cognito-identity-provider/src/models/errors.ts b/clients/client-cognito-identity-provider/src/models/errors.ts index 27ef9a53378f5..6c42148630a04 100644 --- a/clients/client-cognito-identity-provider/src/models/errors.ts +++ b/clients/client-cognito-identity-provider/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CognitoIdentityProviderServiceException as __BaseException } from "./CognitoIdentityProviderServiceException"; diff --git a/clients/client-cognito-identity-provider/src/pagination/AdminListGroupsForUserPaginator.ts b/clients/client-cognito-identity-provider/src/pagination/AdminListGroupsForUserPaginator.ts index 89c602e01386c..5d9f4c9704f39 100644 --- a/clients/client-cognito-identity-provider/src/pagination/AdminListGroupsForUserPaginator.ts +++ b/clients/client-cognito-identity-provider/src/pagination/AdminListGroupsForUserPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; import { diff --git a/clients/client-cognito-identity-provider/src/pagination/AdminListUserAuthEventsPaginator.ts b/clients/client-cognito-identity-provider/src/pagination/AdminListUserAuthEventsPaginator.ts index 32367e98b7e4c..9df1b4ad7fc45 100644 --- a/clients/client-cognito-identity-provider/src/pagination/AdminListUserAuthEventsPaginator.ts +++ b/clients/client-cognito-identity-provider/src/pagination/AdminListUserAuthEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; import { diff --git a/clients/client-cognito-identity-provider/src/pagination/Interfaces.ts b/clients/client-cognito-identity-provider/src/pagination/Interfaces.ts index 4246216543c74..8c45edfbbc67f 100644 --- a/clients/client-cognito-identity-provider/src/pagination/Interfaces.ts +++ b/clients/client-cognito-identity-provider/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; diff --git a/clients/client-cognito-identity-provider/src/pagination/ListGroupsPaginator.ts b/clients/client-cognito-identity-provider/src/pagination/ListGroupsPaginator.ts index 5fa448eaa7ddb..a9ba453911b0b 100644 --- a/clients/client-cognito-identity-provider/src/pagination/ListGroupsPaginator.ts +++ b/clients/client-cognito-identity-provider/src/pagination/ListGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand"; diff --git a/clients/client-cognito-identity-provider/src/pagination/ListIdentityProvidersPaginator.ts b/clients/client-cognito-identity-provider/src/pagination/ListIdentityProvidersPaginator.ts index 7d23353c0abd0..205f6222c6764 100644 --- a/clients/client-cognito-identity-provider/src/pagination/ListIdentityProvidersPaginator.ts +++ b/clients/client-cognito-identity-provider/src/pagination/ListIdentityProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; import { diff --git a/clients/client-cognito-identity-provider/src/pagination/ListResourceServersPaginator.ts b/clients/client-cognito-identity-provider/src/pagination/ListResourceServersPaginator.ts index 974f01bdd2a57..45caba55d9d3a 100644 --- a/clients/client-cognito-identity-provider/src/pagination/ListResourceServersPaginator.ts +++ b/clients/client-cognito-identity-provider/src/pagination/ListResourceServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; import { diff --git a/clients/client-cognito-identity-provider/src/pagination/ListUserPoolClientsPaginator.ts b/clients/client-cognito-identity-provider/src/pagination/ListUserPoolClientsPaginator.ts index 596d4bac7d3a7..8e76725ea8c25 100644 --- a/clients/client-cognito-identity-provider/src/pagination/ListUserPoolClientsPaginator.ts +++ b/clients/client-cognito-identity-provider/src/pagination/ListUserPoolClientsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; import { diff --git a/clients/client-cognito-identity-provider/src/pagination/ListUserPoolsPaginator.ts b/clients/client-cognito-identity-provider/src/pagination/ListUserPoolsPaginator.ts index 726240255b612..728045cdc4e18 100644 --- a/clients/client-cognito-identity-provider/src/pagination/ListUserPoolsPaginator.ts +++ b/clients/client-cognito-identity-provider/src/pagination/ListUserPoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; import { diff --git a/clients/client-cognito-identity-provider/src/pagination/ListUsersInGroupPaginator.ts b/clients/client-cognito-identity-provider/src/pagination/ListUsersInGroupPaginator.ts index ccb97cc844e7d..ae02748bf3d58 100644 --- a/clients/client-cognito-identity-provider/src/pagination/ListUsersInGroupPaginator.ts +++ b/clients/client-cognito-identity-provider/src/pagination/ListUsersInGroupPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; import { diff --git a/clients/client-cognito-identity-provider/src/pagination/ListUsersPaginator.ts b/clients/client-cognito-identity-provider/src/pagination/ListUsersPaginator.ts index 8604413106069..14338e48c127a 100644 --- a/clients/client-cognito-identity-provider/src/pagination/ListUsersPaginator.ts +++ b/clients/client-cognito-identity-provider/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityProviderClient } from "../CognitoIdentityProviderClient"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; diff --git a/clients/client-cognito-identity-provider/src/runtimeConfig.browser.ts b/clients/client-cognito-identity-provider/src/runtimeConfig.browser.ts index f4f951f2c1193..31e1807ff57dc 100644 --- a/clients/client-cognito-identity-provider/src/runtimeConfig.browser.ts +++ b/clients/client-cognito-identity-provider/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CognitoIdentityProviderClientConfig } from "./CognitoIdentityProviderClient"; + +import type { CognitoIdentityProviderClientConfig } from "./CognitoIdentityProviderClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cognito-identity-provider/src/runtimeConfig.native.ts b/clients/client-cognito-identity-provider/src/runtimeConfig.native.ts index cf2c1c7bed0b6..3b459ab28b1d1 100644 --- a/clients/client-cognito-identity-provider/src/runtimeConfig.native.ts +++ b/clients/client-cognito-identity-provider/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CognitoIdentityProviderClientConfig } from "./CognitoIdentityProviderClient"; +import type { CognitoIdentityProviderClientConfig } from "./CognitoIdentityProviderClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cognito-identity-provider/src/runtimeConfig.shared.ts b/clients/client-cognito-identity-provider/src/runtimeConfig.shared.ts index 6fbdaa3ee6751..360af75773963 100644 --- a/clients/client-cognito-identity-provider/src/runtimeConfig.shared.ts +++ b/clients/client-cognito-identity-provider/src/runtimeConfig.shared.ts @@ -3,13 +3,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCognitoIdentityProviderHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CognitoIdentityProviderClientConfig } from "./CognitoIdentityProviderClient"; +import type { CognitoIdentityProviderClientConfig } from "./CognitoIdentityProviderClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cognito-identity-provider/src/runtimeConfig.ts b/clients/client-cognito-identity-provider/src/runtimeConfig.ts index 033c824e19978..da9a4146018b4 100644 --- a/clients/client-cognito-identity-provider/src/runtimeConfig.ts +++ b/clients/client-cognito-identity-provider/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CognitoIdentityProviderClientConfig } from "./CognitoIdentityProviderClient"; + +import type { CognitoIdentityProviderClientConfig } from "./CognitoIdentityProviderClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cognito-identity-provider/src/runtimeExtensions.ts b/clients/client-cognito-identity-provider/src/runtimeExtensions.ts index 00dd0e563c2d9..e446537534063 100644 --- a/clients/client-cognito-identity-provider/src/runtimeExtensions.ts +++ b/clients/client-cognito-identity-provider/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CognitoIdentityProviderExtensionConfiguration } from "./extensionConfiguration"; +import type { CognitoIdentityProviderExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cognito-identity-provider/src/schemas/schemas_0.ts b/clients/client-cognito-identity-provider/src/schemas/schemas_0.ts index d836f06b59a3d..9799b06ef8270 100644 --- a/clients/client-cognito-identity-provider/src/schemas/schemas_0.ts +++ b/clients/client-cognito-identity-provider/src/schemas/schemas_0.ts @@ -882,7 +882,7 @@ const n0 = "com.amazonaws.cognitoidentityprovider"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cognito-identity/package.json b/clients/client-cognito-identity/package.json index 8dad9deffe837..bc114744502fc 100644 --- a/clients/client-cognito-identity/package.json +++ b/clients/client-cognito-identity/package.json @@ -34,26 +34,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cognito-identity/src/CognitoIdentity.ts b/clients/client-cognito-identity/src/CognitoIdentity.ts index 34c639eb50c1a..30d38d1fb1a8c 100644 --- a/clients/client-cognito-identity/src/CognitoIdentity.ts +++ b/clients/client-cognito-identity/src/CognitoIdentity.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CognitoIdentityClient, CognitoIdentityClientConfig } from "./CognitoIdentityClient"; +import { CognitoIdentityClient } from "./CognitoIdentityClient"; import { CreateIdentityPoolCommand, CreateIdentityPoolCommandInput, diff --git a/clients/client-cognito-identity/src/CognitoIdentityClient.ts b/clients/client-cognito-identity/src/CognitoIdentityClient.ts index 2265fa64a91d2..c24819f81bdb9 100644 --- a/clients/client-cognito-identity/src/CognitoIdentityClient.ts +++ b/clients/client-cognito-identity/src/CognitoIdentityClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCognitoIdentityHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateIdentityPoolCommandInput, CreateIdentityPoolCommandOutput } from "./commands/CreateIdentityPoolCommand"; @@ -120,7 +129,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cognito-identity/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cognito-identity/src/auth/httpAuthExtensionConfiguration.ts index 9cb320d9723a3..26a4c3f5f22b6 100644 --- a/clients/client-cognito-identity/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cognito-identity/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CognitoIdentityHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CognitoIdentityHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cognito-identity/src/auth/httpAuthSchemeProvider.ts b/clients/client-cognito-identity/src/auth/httpAuthSchemeProvider.ts index bf75b5cf42992..3ccf15397daf5 100644 --- a/clients/client-cognito-identity/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cognito-identity/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CognitoIdentityClientConfig, CognitoIdentityClientResolvedConfig } from "../CognitoIdentityClient"; +import { type CognitoIdentityClientResolvedConfig, CognitoIdentityClientConfig } from "../CognitoIdentityClient"; /** * @internal diff --git a/clients/client-cognito-identity/src/commands/CreateIdentityPoolCommand.ts b/clients/client-cognito-identity/src/commands/CreateIdentityPoolCommand.ts index 4c9bf054e952b..aada5cd0db901 100644 --- a/clients/client-cognito-identity/src/commands/CreateIdentityPoolCommand.ts +++ b/clients/client-cognito-identity/src/commands/CreateIdentityPoolCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIdentityPoolInput, IdentityPool } from "../models/models_0"; +import type { CreateIdentityPoolInput, IdentityPool } from "../models/models_0"; import { CreateIdentityPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/DeleteIdentitiesCommand.ts b/clients/client-cognito-identity/src/commands/DeleteIdentitiesCommand.ts index edc6ab910d177..de7fb54606466 100644 --- a/clients/client-cognito-identity/src/commands/DeleteIdentitiesCommand.ts +++ b/clients/client-cognito-identity/src/commands/DeleteIdentitiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentitiesInput, DeleteIdentitiesResponse } from "../models/models_0"; +import type { DeleteIdentitiesInput, DeleteIdentitiesResponse } from "../models/models_0"; import { DeleteIdentities } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/DeleteIdentityPoolCommand.ts b/clients/client-cognito-identity/src/commands/DeleteIdentityPoolCommand.ts index 1b2323f8b9484..68039c4cb1f38 100644 --- a/clients/client-cognito-identity/src/commands/DeleteIdentityPoolCommand.ts +++ b/clients/client-cognito-identity/src/commands/DeleteIdentityPoolCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentityPoolInput } from "../models/models_0"; +import type { DeleteIdentityPoolInput } from "../models/models_0"; import { DeleteIdentityPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/DescribeIdentityCommand.ts b/clients/client-cognito-identity/src/commands/DescribeIdentityCommand.ts index 2179b3ad2e20b..18b6955347eb2 100644 --- a/clients/client-cognito-identity/src/commands/DescribeIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/DescribeIdentityCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIdentityInput, IdentityDescription } from "../models/models_0"; +import type { DescribeIdentityInput, IdentityDescription } from "../models/models_0"; import { DescribeIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/DescribeIdentityPoolCommand.ts b/clients/client-cognito-identity/src/commands/DescribeIdentityPoolCommand.ts index b1f18be9859f3..0bf95b2e4ddbf 100644 --- a/clients/client-cognito-identity/src/commands/DescribeIdentityPoolCommand.ts +++ b/clients/client-cognito-identity/src/commands/DescribeIdentityPoolCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIdentityPoolInput, IdentityPool } from "../models/models_0"; +import type { DescribeIdentityPoolInput, IdentityPool } from "../models/models_0"; import { DescribeIdentityPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/GetCredentialsForIdentityCommand.ts b/clients/client-cognito-identity/src/commands/GetCredentialsForIdentityCommand.ts index 1958dd9a408fe..34a9ca28974d2 100644 --- a/clients/client-cognito-identity/src/commands/GetCredentialsForIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetCredentialsForIdentityCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCredentialsForIdentityInput, GetCredentialsForIdentityResponse } from "../models/models_0"; +import type { GetCredentialsForIdentityInput, GetCredentialsForIdentityResponse } from "../models/models_0"; import { GetCredentialsForIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/GetIdCommand.ts b/clients/client-cognito-identity/src/commands/GetIdCommand.ts index 279818ad1b9b0..ee2ae56370821 100644 --- a/clients/client-cognito-identity/src/commands/GetIdCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetIdCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdInput, GetIdResponse } from "../models/models_0"; +import type { GetIdInput, GetIdResponse } from "../models/models_0"; import { GetId } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/GetIdentityPoolRolesCommand.ts b/clients/client-cognito-identity/src/commands/GetIdentityPoolRolesCommand.ts index a27e4d0ab4637..90b7d11b20bf0 100644 --- a/clients/client-cognito-identity/src/commands/GetIdentityPoolRolesCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetIdentityPoolRolesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentityPoolRolesInput, GetIdentityPoolRolesResponse } from "../models/models_0"; +import type { GetIdentityPoolRolesInput, GetIdentityPoolRolesResponse } from "../models/models_0"; import { GetIdentityPoolRoles } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/GetOpenIdTokenCommand.ts b/clients/client-cognito-identity/src/commands/GetOpenIdTokenCommand.ts index c43d321ba5fb8..21cadc8efc40b 100644 --- a/clients/client-cognito-identity/src/commands/GetOpenIdTokenCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetOpenIdTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOpenIdTokenInput, GetOpenIdTokenResponse } from "../models/models_0"; +import type { GetOpenIdTokenInput, GetOpenIdTokenResponse } from "../models/models_0"; import { GetOpenIdToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts b/clients/client-cognito-identity/src/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts index 7fcb4d90e79a8..ac259111ffd8d 100644 --- a/clients/client-cognito-identity/src/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetOpenIdTokenForDeveloperIdentityCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetOpenIdTokenForDeveloperIdentityInput, GetOpenIdTokenForDeveloperIdentityResponse, } from "../models/models_0"; diff --git a/clients/client-cognito-identity/src/commands/GetPrincipalTagAttributeMapCommand.ts b/clients/client-cognito-identity/src/commands/GetPrincipalTagAttributeMapCommand.ts index 8d9ceb9c3fa69..b0b3350dee1dc 100644 --- a/clients/client-cognito-identity/src/commands/GetPrincipalTagAttributeMapCommand.ts +++ b/clients/client-cognito-identity/src/commands/GetPrincipalTagAttributeMapCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPrincipalTagAttributeMapInput, GetPrincipalTagAttributeMapResponse } from "../models/models_0"; +import type { GetPrincipalTagAttributeMapInput, GetPrincipalTagAttributeMapResponse } from "../models/models_0"; import { GetPrincipalTagAttributeMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/ListIdentitiesCommand.ts b/clients/client-cognito-identity/src/commands/ListIdentitiesCommand.ts index 8ef6dce724f06..38c4b35e92498 100644 --- a/clients/client-cognito-identity/src/commands/ListIdentitiesCommand.ts +++ b/clients/client-cognito-identity/src/commands/ListIdentitiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentitiesInput, ListIdentitiesResponse } from "../models/models_0"; +import type { ListIdentitiesInput, ListIdentitiesResponse } from "../models/models_0"; import { ListIdentities } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/ListIdentityPoolsCommand.ts b/clients/client-cognito-identity/src/commands/ListIdentityPoolsCommand.ts index 965c6c89a243f..a5c00977bf588 100644 --- a/clients/client-cognito-identity/src/commands/ListIdentityPoolsCommand.ts +++ b/clients/client-cognito-identity/src/commands/ListIdentityPoolsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentityPoolsInput, ListIdentityPoolsResponse } from "../models/models_0"; +import type { ListIdentityPoolsInput, ListIdentityPoolsResponse } from "../models/models_0"; import { ListIdentityPools } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/ListTagsForResourceCommand.ts b/clients/client-cognito-identity/src/commands/ListTagsForResourceCommand.ts index 2d2cbc4cc77cc..7485497f4f68d 100644 --- a/clients/client-cognito-identity/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cognito-identity/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/LookupDeveloperIdentityCommand.ts b/clients/client-cognito-identity/src/commands/LookupDeveloperIdentityCommand.ts index 32a0051392526..c9f6c5156e4bc 100644 --- a/clients/client-cognito-identity/src/commands/LookupDeveloperIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/LookupDeveloperIdentityCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookupDeveloperIdentityInput, LookupDeveloperIdentityResponse } from "../models/models_0"; +import type { LookupDeveloperIdentityInput, LookupDeveloperIdentityResponse } from "../models/models_0"; import { LookupDeveloperIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/MergeDeveloperIdentitiesCommand.ts b/clients/client-cognito-identity/src/commands/MergeDeveloperIdentitiesCommand.ts index bc5a7fa51d47d..1fafdd6d66bb3 100644 --- a/clients/client-cognito-identity/src/commands/MergeDeveloperIdentitiesCommand.ts +++ b/clients/client-cognito-identity/src/commands/MergeDeveloperIdentitiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MergeDeveloperIdentitiesInput, MergeDeveloperIdentitiesResponse } from "../models/models_0"; +import type { MergeDeveloperIdentitiesInput, MergeDeveloperIdentitiesResponse } from "../models/models_0"; import { MergeDeveloperIdentities } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/SetIdentityPoolRolesCommand.ts b/clients/client-cognito-identity/src/commands/SetIdentityPoolRolesCommand.ts index 7c29a18feb5ad..b4e423fc4635e 100644 --- a/clients/client-cognito-identity/src/commands/SetIdentityPoolRolesCommand.ts +++ b/clients/client-cognito-identity/src/commands/SetIdentityPoolRolesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetIdentityPoolRolesInput } from "../models/models_0"; +import type { SetIdentityPoolRolesInput } from "../models/models_0"; import { SetIdentityPoolRoles } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/SetPrincipalTagAttributeMapCommand.ts b/clients/client-cognito-identity/src/commands/SetPrincipalTagAttributeMapCommand.ts index be6160644d442..00815cb166e71 100644 --- a/clients/client-cognito-identity/src/commands/SetPrincipalTagAttributeMapCommand.ts +++ b/clients/client-cognito-identity/src/commands/SetPrincipalTagAttributeMapCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetPrincipalTagAttributeMapInput, SetPrincipalTagAttributeMapResponse } from "../models/models_0"; +import type { SetPrincipalTagAttributeMapInput, SetPrincipalTagAttributeMapResponse } from "../models/models_0"; import { SetPrincipalTagAttributeMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/TagResourceCommand.ts b/clients/client-cognito-identity/src/commands/TagResourceCommand.ts index 0f3dc74ad57b5..13052f0355421 100644 --- a/clients/client-cognito-identity/src/commands/TagResourceCommand.ts +++ b/clients/client-cognito-identity/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceResponse } from "../models/models_0"; +import type { TagResourceInput, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/UnlinkDeveloperIdentityCommand.ts b/clients/client-cognito-identity/src/commands/UnlinkDeveloperIdentityCommand.ts index dcbb8aa6ca2e6..476dade7f9ea1 100644 --- a/clients/client-cognito-identity/src/commands/UnlinkDeveloperIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/UnlinkDeveloperIdentityCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnlinkDeveloperIdentityInput } from "../models/models_0"; +import type { UnlinkDeveloperIdentityInput } from "../models/models_0"; import { UnlinkDeveloperIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/UnlinkIdentityCommand.ts b/clients/client-cognito-identity/src/commands/UnlinkIdentityCommand.ts index 15ae2a81e7008..2ddb93af62c7c 100644 --- a/clients/client-cognito-identity/src/commands/UnlinkIdentityCommand.ts +++ b/clients/client-cognito-identity/src/commands/UnlinkIdentityCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnlinkIdentityInput } from "../models/models_0"; +import type { UnlinkIdentityInput } from "../models/models_0"; import { UnlinkIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/UntagResourceCommand.ts b/clients/client-cognito-identity/src/commands/UntagResourceCommand.ts index 681fe971b307e..f0a9265b28cea 100644 --- a/clients/client-cognito-identity/src/commands/UntagResourceCommand.ts +++ b/clients/client-cognito-identity/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/commands/UpdateIdentityPoolCommand.ts b/clients/client-cognito-identity/src/commands/UpdateIdentityPoolCommand.ts index 593d7b16fd7f3..fff13d5a38148 100644 --- a/clients/client-cognito-identity/src/commands/UpdateIdentityPoolCommand.ts +++ b/clients/client-cognito-identity/src/commands/UpdateIdentityPoolCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoIdentityClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoIdentityClient"; +import type { + CognitoIdentityClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CognitoIdentityClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentityPool } from "../models/models_0"; +import type { IdentityPool } from "../models/models_0"; import { UpdateIdentityPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-identity/src/endpoint/EndpointParameters.ts b/clients/client-cognito-identity/src/endpoint/EndpointParameters.ts index 0c7e764fabcd1..09d4309fec0bb 100644 --- a/clients/client-cognito-identity/src/endpoint/EndpointParameters.ts +++ b/clients/client-cognito-identity/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cognito-identity/src/endpoint/endpointResolver.ts b/clients/client-cognito-identity/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cognito-identity/src/endpoint/endpointResolver.ts +++ b/clients/client-cognito-identity/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cognito-identity/src/extensionConfiguration.ts b/clients/client-cognito-identity/src/extensionConfiguration.ts index 610fbb6b7d20f..623f24ad2c68d 100644 --- a/clients/client-cognito-identity/src/extensionConfiguration.ts +++ b/clients/client-cognito-identity/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cognito-identity/src/models/CognitoIdentityServiceException.ts b/clients/client-cognito-identity/src/models/CognitoIdentityServiceException.ts index 8f428526fb1c5..007cc4d65707d 100644 --- a/clients/client-cognito-identity/src/models/CognitoIdentityServiceException.ts +++ b/clients/client-cognito-identity/src/models/CognitoIdentityServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cognito-identity/src/models/errors.ts b/clients/client-cognito-identity/src/models/errors.ts index 4fdf32b59f29a..49eeff13f91ce 100644 --- a/clients/client-cognito-identity/src/models/errors.ts +++ b/clients/client-cognito-identity/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CognitoIdentityServiceException as __BaseException } from "./CognitoIdentityServiceException"; diff --git a/clients/client-cognito-identity/src/pagination/Interfaces.ts b/clients/client-cognito-identity/src/pagination/Interfaces.ts index d9016a59fe35a..aa1cc38955a6d 100644 --- a/clients/client-cognito-identity/src/pagination/Interfaces.ts +++ b/clients/client-cognito-identity/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CognitoIdentityClient } from "../CognitoIdentityClient"; diff --git a/clients/client-cognito-identity/src/pagination/ListIdentityPoolsPaginator.ts b/clients/client-cognito-identity/src/pagination/ListIdentityPoolsPaginator.ts index 8850060396054..d4b82efe65a5e 100644 --- a/clients/client-cognito-identity/src/pagination/ListIdentityPoolsPaginator.ts +++ b/clients/client-cognito-identity/src/pagination/ListIdentityPoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CognitoIdentityClient } from "../CognitoIdentityClient"; import { diff --git a/clients/client-cognito-identity/src/runtimeConfig.browser.ts b/clients/client-cognito-identity/src/runtimeConfig.browser.ts index bfc56bce6e589..1ea905f3e8f61 100644 --- a/clients/client-cognito-identity/src/runtimeConfig.browser.ts +++ b/clients/client-cognito-identity/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CognitoIdentityClientConfig } from "./CognitoIdentityClient"; + +import type { CognitoIdentityClientConfig } from "./CognitoIdentityClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cognito-identity/src/runtimeConfig.native.ts b/clients/client-cognito-identity/src/runtimeConfig.native.ts index 5471c6c9e8d56..b27675c8d8add 100644 --- a/clients/client-cognito-identity/src/runtimeConfig.native.ts +++ b/clients/client-cognito-identity/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CognitoIdentityClientConfig } from "./CognitoIdentityClient"; +import type { CognitoIdentityClientConfig } from "./CognitoIdentityClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cognito-identity/src/runtimeConfig.shared.ts b/clients/client-cognito-identity/src/runtimeConfig.shared.ts index 744fe81cf7e48..de5771015b719 100644 --- a/clients/client-cognito-identity/src/runtimeConfig.shared.ts +++ b/clients/client-cognito-identity/src/runtimeConfig.shared.ts @@ -3,13 +3,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCognitoIdentityHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CognitoIdentityClientConfig } from "./CognitoIdentityClient"; +import type { CognitoIdentityClientConfig } from "./CognitoIdentityClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cognito-identity/src/runtimeConfig.ts b/clients/client-cognito-identity/src/runtimeConfig.ts index 569a59f8d0079..66dfa865e43da 100644 --- a/clients/client-cognito-identity/src/runtimeConfig.ts +++ b/clients/client-cognito-identity/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CognitoIdentityClientConfig } from "./CognitoIdentityClient"; + +import type { CognitoIdentityClientConfig } from "./CognitoIdentityClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cognito-identity/src/runtimeExtensions.ts b/clients/client-cognito-identity/src/runtimeExtensions.ts index c6c6b09dfa869..3c8835f95e916 100644 --- a/clients/client-cognito-identity/src/runtimeExtensions.ts +++ b/clients/client-cognito-identity/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CognitoIdentityExtensionConfiguration } from "./extensionConfiguration"; +import type { CognitoIdentityExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cognito-identity/src/schemas/schemas_0.ts b/clients/client-cognito-identity/src/schemas/schemas_0.ts index e44deabd3b52c..7358d8c0ce7dd 100644 --- a/clients/client-cognito-identity/src/schemas/schemas_0.ts +++ b/clients/client-cognito-identity/src/schemas/schemas_0.ts @@ -152,7 +152,7 @@ const n0 = "com.amazonaws.cognitoidentity"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cognito-sync/package.json b/clients/client-cognito-sync/package.json index a051acea14f86..61786aac56f22 100644 --- a/clients/client-cognito-sync/package.json +++ b/clients/client-cognito-sync/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cognito-sync/src/CognitoSync.ts b/clients/client-cognito-sync/src/CognitoSync.ts index d5d38f9313489..840c289ecc204 100644 --- a/clients/client-cognito-sync/src/CognitoSync.ts +++ b/clients/client-cognito-sync/src/CognitoSync.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { CognitoSyncClient, CognitoSyncClientConfig } from "./CognitoSyncClient"; +import { CognitoSyncClient } from "./CognitoSyncClient"; import { BulkPublishCommand, BulkPublishCommandInput, BulkPublishCommandOutput } from "./commands/BulkPublishCommand"; import { DeleteDatasetCommand, diff --git a/clients/client-cognito-sync/src/CognitoSyncClient.ts b/clients/client-cognito-sync/src/CognitoSyncClient.ts index 1bc6efa10e7ae..e24142a9b62b2 100644 --- a/clients/client-cognito-sync/src/CognitoSyncClient.ts +++ b/clients/client-cognito-sync/src/CognitoSyncClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCognitoSyncHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BulkPublishCommandInput, BulkPublishCommandOutput } from "./commands/BulkPublishCommand"; @@ -102,7 +111,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cognito-sync/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cognito-sync/src/auth/httpAuthExtensionConfiguration.ts index 46581cf676f1c..cafb788f9c723 100644 --- a/clients/client-cognito-sync/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cognito-sync/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CognitoSyncHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CognitoSyncHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cognito-sync/src/auth/httpAuthSchemeProvider.ts b/clients/client-cognito-sync/src/auth/httpAuthSchemeProvider.ts index e9b3bc7784878..a158613b00a35 100644 --- a/clients/client-cognito-sync/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cognito-sync/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CognitoSyncClientConfig, CognitoSyncClientResolvedConfig } from "../CognitoSyncClient"; +import { type CognitoSyncClientResolvedConfig, CognitoSyncClientConfig } from "../CognitoSyncClient"; /** * @internal diff --git a/clients/client-cognito-sync/src/commands/BulkPublishCommand.ts b/clients/client-cognito-sync/src/commands/BulkPublishCommand.ts index a83c38087acc0..e77d0f3caf86f 100644 --- a/clients/client-cognito-sync/src/commands/BulkPublishCommand.ts +++ b/clients/client-cognito-sync/src/commands/BulkPublishCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BulkPublishRequest, BulkPublishResponse } from "../models/models_0"; +import type { BulkPublishRequest, BulkPublishResponse } from "../models/models_0"; import { BulkPublish } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/DeleteDatasetCommand.ts b/clients/client-cognito-sync/src/commands/DeleteDatasetCommand.ts index 894634d81c7f1..0124913540810 100644 --- a/clients/client-cognito-sync/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-cognito-sync/src/commands/DeleteDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; +import type { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; import { DeleteDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/DescribeDatasetCommand.ts b/clients/client-cognito-sync/src/commands/DescribeDatasetCommand.ts index 1c674ac577e88..89875a86bb7d7 100644 --- a/clients/client-cognito-sync/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-cognito-sync/src/commands/DescribeDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; +import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; import { DescribeDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/DescribeIdentityPoolUsageCommand.ts b/clients/client-cognito-sync/src/commands/DescribeIdentityPoolUsageCommand.ts index e323c9786cdfb..74f2bab40f1f0 100644 --- a/clients/client-cognito-sync/src/commands/DescribeIdentityPoolUsageCommand.ts +++ b/clients/client-cognito-sync/src/commands/DescribeIdentityPoolUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIdentityPoolUsageRequest, DescribeIdentityPoolUsageResponse } from "../models/models_0"; +import type { DescribeIdentityPoolUsageRequest, DescribeIdentityPoolUsageResponse } from "../models/models_0"; import { DescribeIdentityPoolUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/DescribeIdentityUsageCommand.ts b/clients/client-cognito-sync/src/commands/DescribeIdentityUsageCommand.ts index bc8c4d9d30922..018293bffaeca 100644 --- a/clients/client-cognito-sync/src/commands/DescribeIdentityUsageCommand.ts +++ b/clients/client-cognito-sync/src/commands/DescribeIdentityUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIdentityUsageRequest, DescribeIdentityUsageResponse } from "../models/models_0"; +import type { DescribeIdentityUsageRequest, DescribeIdentityUsageResponse } from "../models/models_0"; import { DescribeIdentityUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/GetBulkPublishDetailsCommand.ts b/clients/client-cognito-sync/src/commands/GetBulkPublishDetailsCommand.ts index 6e6c3302149ed..9e04a4bd8a596 100644 --- a/clients/client-cognito-sync/src/commands/GetBulkPublishDetailsCommand.ts +++ b/clients/client-cognito-sync/src/commands/GetBulkPublishDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBulkPublishDetailsRequest, GetBulkPublishDetailsResponse } from "../models/models_0"; +import type { GetBulkPublishDetailsRequest, GetBulkPublishDetailsResponse } from "../models/models_0"; import { GetBulkPublishDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/GetCognitoEventsCommand.ts b/clients/client-cognito-sync/src/commands/GetCognitoEventsCommand.ts index 0d1007b2833e9..64b654baa0540 100644 --- a/clients/client-cognito-sync/src/commands/GetCognitoEventsCommand.ts +++ b/clients/client-cognito-sync/src/commands/GetCognitoEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCognitoEventsRequest, GetCognitoEventsResponse } from "../models/models_0"; +import type { GetCognitoEventsRequest, GetCognitoEventsResponse } from "../models/models_0"; import { GetCognitoEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/GetIdentityPoolConfigurationCommand.ts b/clients/client-cognito-sync/src/commands/GetIdentityPoolConfigurationCommand.ts index febc4a26475a5..22b1de1e9a0cf 100644 --- a/clients/client-cognito-sync/src/commands/GetIdentityPoolConfigurationCommand.ts +++ b/clients/client-cognito-sync/src/commands/GetIdentityPoolConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentityPoolConfigurationRequest, GetIdentityPoolConfigurationResponse } from "../models/models_0"; +import type { GetIdentityPoolConfigurationRequest, GetIdentityPoolConfigurationResponse } from "../models/models_0"; import { GetIdentityPoolConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/ListDatasetsCommand.ts b/clients/client-cognito-sync/src/commands/ListDatasetsCommand.ts index 23d3cc9317657..24d9f437c8fe4 100644 --- a/clients/client-cognito-sync/src/commands/ListDatasetsCommand.ts +++ b/clients/client-cognito-sync/src/commands/ListDatasetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; +import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; import { ListDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/ListIdentityPoolUsageCommand.ts b/clients/client-cognito-sync/src/commands/ListIdentityPoolUsageCommand.ts index 17e305efe19eb..e288802250888 100644 --- a/clients/client-cognito-sync/src/commands/ListIdentityPoolUsageCommand.ts +++ b/clients/client-cognito-sync/src/commands/ListIdentityPoolUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentityPoolUsageRequest, ListIdentityPoolUsageResponse } from "../models/models_0"; +import type { ListIdentityPoolUsageRequest, ListIdentityPoolUsageResponse } from "../models/models_0"; import { ListIdentityPoolUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/ListRecordsCommand.ts b/clients/client-cognito-sync/src/commands/ListRecordsCommand.ts index 9f7b586644a70..04b2c05eba100 100644 --- a/clients/client-cognito-sync/src/commands/ListRecordsCommand.ts +++ b/clients/client-cognito-sync/src/commands/ListRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecordsRequest, ListRecordsResponse } from "../models/models_0"; +import type { ListRecordsRequest, ListRecordsResponse } from "../models/models_0"; import { ListRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/RegisterDeviceCommand.ts b/clients/client-cognito-sync/src/commands/RegisterDeviceCommand.ts index ec0a27fb557c4..5d53b5fd2e2b4 100644 --- a/clients/client-cognito-sync/src/commands/RegisterDeviceCommand.ts +++ b/clients/client-cognito-sync/src/commands/RegisterDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterDeviceRequest, RegisterDeviceResponse } from "../models/models_0"; +import type { RegisterDeviceRequest, RegisterDeviceResponse } from "../models/models_0"; import { RegisterDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/SetCognitoEventsCommand.ts b/clients/client-cognito-sync/src/commands/SetCognitoEventsCommand.ts index 86d0617232f54..7b7184a864fb6 100644 --- a/clients/client-cognito-sync/src/commands/SetCognitoEventsCommand.ts +++ b/clients/client-cognito-sync/src/commands/SetCognitoEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetCognitoEventsRequest } from "../models/models_0"; +import type { SetCognitoEventsRequest } from "../models/models_0"; import { SetCognitoEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/SetIdentityPoolConfigurationCommand.ts b/clients/client-cognito-sync/src/commands/SetIdentityPoolConfigurationCommand.ts index 3572b28300502..e8a5ff9c8e1b8 100644 --- a/clients/client-cognito-sync/src/commands/SetIdentityPoolConfigurationCommand.ts +++ b/clients/client-cognito-sync/src/commands/SetIdentityPoolConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetIdentityPoolConfigurationRequest, SetIdentityPoolConfigurationResponse } from "../models/models_0"; +import type { SetIdentityPoolConfigurationRequest, SetIdentityPoolConfigurationResponse } from "../models/models_0"; import { SetIdentityPoolConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/SubscribeToDatasetCommand.ts b/clients/client-cognito-sync/src/commands/SubscribeToDatasetCommand.ts index f11ba133e26d8..082be0a56e674 100644 --- a/clients/client-cognito-sync/src/commands/SubscribeToDatasetCommand.ts +++ b/clients/client-cognito-sync/src/commands/SubscribeToDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubscribeToDatasetRequest, SubscribeToDatasetResponse } from "../models/models_0"; +import type { SubscribeToDatasetRequest, SubscribeToDatasetResponse } from "../models/models_0"; import { SubscribeToDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/UnsubscribeFromDatasetCommand.ts b/clients/client-cognito-sync/src/commands/UnsubscribeFromDatasetCommand.ts index 6b2aa072c69d5..b826472d7d370 100644 --- a/clients/client-cognito-sync/src/commands/UnsubscribeFromDatasetCommand.ts +++ b/clients/client-cognito-sync/src/commands/UnsubscribeFromDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnsubscribeFromDatasetRequest, UnsubscribeFromDatasetResponse } from "../models/models_0"; +import type { UnsubscribeFromDatasetRequest, UnsubscribeFromDatasetResponse } from "../models/models_0"; import { UnsubscribeFromDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/commands/UpdateRecordsCommand.ts b/clients/client-cognito-sync/src/commands/UpdateRecordsCommand.ts index 23f9e2a8ea92d..aacef696e48ce 100644 --- a/clients/client-cognito-sync/src/commands/UpdateRecordsCommand.ts +++ b/clients/client-cognito-sync/src/commands/UpdateRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; +import type { CognitoSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CognitoSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecordsRequest, UpdateRecordsResponse } from "../models/models_0"; +import type { UpdateRecordsRequest, UpdateRecordsResponse } from "../models/models_0"; import { UpdateRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-cognito-sync/src/endpoint/EndpointParameters.ts b/clients/client-cognito-sync/src/endpoint/EndpointParameters.ts index 95c0b79e4e30e..0b56a2ee6cead 100644 --- a/clients/client-cognito-sync/src/endpoint/EndpointParameters.ts +++ b/clients/client-cognito-sync/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cognito-sync/src/endpoint/endpointResolver.ts b/clients/client-cognito-sync/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cognito-sync/src/endpoint/endpointResolver.ts +++ b/clients/client-cognito-sync/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cognito-sync/src/extensionConfiguration.ts b/clients/client-cognito-sync/src/extensionConfiguration.ts index f479832a6039c..68eef75eeb316 100644 --- a/clients/client-cognito-sync/src/extensionConfiguration.ts +++ b/clients/client-cognito-sync/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cognito-sync/src/models/CognitoSyncServiceException.ts b/clients/client-cognito-sync/src/models/CognitoSyncServiceException.ts index b1b589ccf5acc..568fe5ce72fcd 100644 --- a/clients/client-cognito-sync/src/models/CognitoSyncServiceException.ts +++ b/clients/client-cognito-sync/src/models/CognitoSyncServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cognito-sync/src/models/errors.ts b/clients/client-cognito-sync/src/models/errors.ts index eed1a05d38e2b..c5603f3e447d8 100644 --- a/clients/client-cognito-sync/src/models/errors.ts +++ b/clients/client-cognito-sync/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CognitoSyncServiceException as __BaseException } from "./CognitoSyncServiceException"; diff --git a/clients/client-cognito-sync/src/runtimeConfig.browser.ts b/clients/client-cognito-sync/src/runtimeConfig.browser.ts index 990247054c047..11fa0ed321902 100644 --- a/clients/client-cognito-sync/src/runtimeConfig.browser.ts +++ b/clients/client-cognito-sync/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CognitoSyncClientConfig } from "./CognitoSyncClient"; + +import type { CognitoSyncClientConfig } from "./CognitoSyncClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cognito-sync/src/runtimeConfig.native.ts b/clients/client-cognito-sync/src/runtimeConfig.native.ts index 605d5b8d3b9a4..6c98a949b4038 100644 --- a/clients/client-cognito-sync/src/runtimeConfig.native.ts +++ b/clients/client-cognito-sync/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CognitoSyncClientConfig } from "./CognitoSyncClient"; +import type { CognitoSyncClientConfig } from "./CognitoSyncClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cognito-sync/src/runtimeConfig.shared.ts b/clients/client-cognito-sync/src/runtimeConfig.shared.ts index 5780d5f4a8d32..ef1240b15b362 100644 --- a/clients/client-cognito-sync/src/runtimeConfig.shared.ts +++ b/clients/client-cognito-sync/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCognitoSyncHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CognitoSyncClientConfig } from "./CognitoSyncClient"; +import type { CognitoSyncClientConfig } from "./CognitoSyncClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cognito-sync/src/runtimeConfig.ts b/clients/client-cognito-sync/src/runtimeConfig.ts index a8cef8013fadc..911730f39de00 100644 --- a/clients/client-cognito-sync/src/runtimeConfig.ts +++ b/clients/client-cognito-sync/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CognitoSyncClientConfig } from "./CognitoSyncClient"; + +import type { CognitoSyncClientConfig } from "./CognitoSyncClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cognito-sync/src/runtimeExtensions.ts b/clients/client-cognito-sync/src/runtimeExtensions.ts index a4663fd96ca01..4ba28e4a70472 100644 --- a/clients/client-cognito-sync/src/runtimeExtensions.ts +++ b/clients/client-cognito-sync/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CognitoSyncExtensionConfiguration } from "./extensionConfiguration"; +import type { CognitoSyncExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cognito-sync/src/schemas/schemas_0.ts b/clients/client-cognito-sync/src/schemas/schemas_0.ts index 28e136fc6781a..1b3dbb0af3f20 100644 --- a/clients/client-cognito-sync/src/schemas/schemas_0.ts +++ b/clients/client-cognito-sync/src/schemas/schemas_0.ts @@ -132,7 +132,7 @@ const n0 = "com.amazonaws.cognitosync"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-comprehend/package.json b/clients/client-comprehend/package.json index 7f02230d12e2b..0880d18993bd7 100644 --- a/clients/client-comprehend/package.json +++ b/clients/client-comprehend/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-comprehend/src/Comprehend.ts b/clients/client-comprehend/src/Comprehend.ts index 462ef6d85b958..147f1c85aad49 100644 --- a/clients/client-comprehend/src/Comprehend.ts +++ b/clients/client-comprehend/src/Comprehend.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchDetectDominantLanguageCommand, @@ -419,7 +419,7 @@ import { UpdateFlywheelCommandInput, UpdateFlywheelCommandOutput, } from "./commands/UpdateFlywheelCommand"; -import { ComprehendClient, ComprehendClientConfig } from "./ComprehendClient"; +import { ComprehendClient } from "./ComprehendClient"; const commands = { BatchDetectDominantLanguageCommand, diff --git a/clients/client-comprehend/src/ComprehendClient.ts b/clients/client-comprehend/src/ComprehendClient.ts index 120931cf8a408..859dc8c4ff756 100644 --- a/clients/client-comprehend/src/ComprehendClient.ts +++ b/clients/client-comprehend/src/ComprehendClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultComprehendHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -329,7 +338,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-comprehend/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-comprehend/src/auth/httpAuthExtensionConfiguration.ts index 5eb92709ff671..19f8096f3a50f 100644 --- a/clients/client-comprehend/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-comprehend/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ComprehendHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ComprehendHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-comprehend/src/auth/httpAuthSchemeProvider.ts b/clients/client-comprehend/src/auth/httpAuthSchemeProvider.ts index d46f1be52cfa1..1d10cce7af418 100644 --- a/clients/client-comprehend/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-comprehend/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ComprehendClientConfig, ComprehendClientResolvedConfig } from "../ComprehendClient"; +import { type ComprehendClientResolvedConfig, ComprehendClientConfig } from "../ComprehendClient"; /** * @internal diff --git a/clients/client-comprehend/src/commands/BatchDetectDominantLanguageCommand.ts b/clients/client-comprehend/src/commands/BatchDetectDominantLanguageCommand.ts index ad979c56a0ecc..ad47ae2f8884b 100644 --- a/clients/client-comprehend/src/commands/BatchDetectDominantLanguageCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectDominantLanguageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDetectDominantLanguageRequest, BatchDetectDominantLanguageResponse } from "../models/models_0"; +import type { BatchDetectDominantLanguageRequest, BatchDetectDominantLanguageResponse } from "../models/models_0"; import { BatchDetectDominantLanguage } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/BatchDetectEntitiesCommand.ts b/clients/client-comprehend/src/commands/BatchDetectEntitiesCommand.ts index e274f27c20315..57456e17c1f8d 100644 --- a/clients/client-comprehend/src/commands/BatchDetectEntitiesCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDetectEntitiesRequest, BatchDetectEntitiesResponse } from "../models/models_0"; +import type { BatchDetectEntitiesRequest, BatchDetectEntitiesResponse } from "../models/models_0"; import { BatchDetectEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/BatchDetectKeyPhrasesCommand.ts b/clients/client-comprehend/src/commands/BatchDetectKeyPhrasesCommand.ts index 4b349fba559a3..59474479259db 100644 --- a/clients/client-comprehend/src/commands/BatchDetectKeyPhrasesCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectKeyPhrasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDetectKeyPhrasesRequest, BatchDetectKeyPhrasesResponse } from "../models/models_0"; +import type { BatchDetectKeyPhrasesRequest, BatchDetectKeyPhrasesResponse } from "../models/models_0"; import { BatchDetectKeyPhrases } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/BatchDetectSentimentCommand.ts b/clients/client-comprehend/src/commands/BatchDetectSentimentCommand.ts index 65d42b5b9ba4d..9eb59862321ce 100644 --- a/clients/client-comprehend/src/commands/BatchDetectSentimentCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectSentimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDetectSentimentRequest, BatchDetectSentimentResponse } from "../models/models_0"; +import type { BatchDetectSentimentRequest, BatchDetectSentimentResponse } from "../models/models_0"; import { BatchDetectSentiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/BatchDetectSyntaxCommand.ts b/clients/client-comprehend/src/commands/BatchDetectSyntaxCommand.ts index f09c9120699a5..42f81e172724d 100644 --- a/clients/client-comprehend/src/commands/BatchDetectSyntaxCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectSyntaxCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDetectSyntaxRequest, BatchDetectSyntaxResponse } from "../models/models_0"; +import type { BatchDetectSyntaxRequest, BatchDetectSyntaxResponse } from "../models/models_0"; import { BatchDetectSyntax } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/BatchDetectTargetedSentimentCommand.ts b/clients/client-comprehend/src/commands/BatchDetectTargetedSentimentCommand.ts index cd8e062033676..5b688a803807d 100644 --- a/clients/client-comprehend/src/commands/BatchDetectTargetedSentimentCommand.ts +++ b/clients/client-comprehend/src/commands/BatchDetectTargetedSentimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDetectTargetedSentimentRequest, BatchDetectTargetedSentimentResponse } from "../models/models_0"; +import type { BatchDetectTargetedSentimentRequest, BatchDetectTargetedSentimentResponse } from "../models/models_0"; import { BatchDetectTargetedSentiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ClassifyDocumentCommand.ts b/clients/client-comprehend/src/commands/ClassifyDocumentCommand.ts index 27610c7758641..8f330a31c3c56 100644 --- a/clients/client-comprehend/src/commands/ClassifyDocumentCommand.ts +++ b/clients/client-comprehend/src/commands/ClassifyDocumentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClassifyDocumentRequest, ClassifyDocumentResponse } from "../models/models_0"; +import type { ClassifyDocumentRequest, ClassifyDocumentResponse } from "../models/models_0"; import { ClassifyDocument } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ContainsPiiEntitiesCommand.ts b/clients/client-comprehend/src/commands/ContainsPiiEntitiesCommand.ts index 08dab5d3f007d..9e9f0ff23aef9 100644 --- a/clients/client-comprehend/src/commands/ContainsPiiEntitiesCommand.ts +++ b/clients/client-comprehend/src/commands/ContainsPiiEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ContainsPiiEntitiesRequest, ContainsPiiEntitiesResponse } from "../models/models_0"; +import type { ContainsPiiEntitiesRequest, ContainsPiiEntitiesResponse } from "../models/models_0"; import { ContainsPiiEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/CreateDatasetCommand.ts b/clients/client-comprehend/src/commands/CreateDatasetCommand.ts index c9bc3c852403a..7741748502d1a 100644 --- a/clients/client-comprehend/src/commands/CreateDatasetCommand.ts +++ b/clients/client-comprehend/src/commands/CreateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; +import type { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; import { CreateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/CreateDocumentClassifierCommand.ts b/clients/client-comprehend/src/commands/CreateDocumentClassifierCommand.ts index 77db490b2eaf1..323ca069cc489 100644 --- a/clients/client-comprehend/src/commands/CreateDocumentClassifierCommand.ts +++ b/clients/client-comprehend/src/commands/CreateDocumentClassifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDocumentClassifierRequest, CreateDocumentClassifierResponse } from "../models/models_0"; +import type { CreateDocumentClassifierRequest, CreateDocumentClassifierResponse } from "../models/models_0"; import { CreateDocumentClassifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/CreateEndpointCommand.ts b/clients/client-comprehend/src/commands/CreateEndpointCommand.ts index 5aba2c16c69b9..65a8f95bc050e 100644 --- a/clients/client-comprehend/src/commands/CreateEndpointCommand.ts +++ b/clients/client-comprehend/src/commands/CreateEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEndpointRequest, CreateEndpointResponse } from "../models/models_0"; +import type { CreateEndpointRequest, CreateEndpointResponse } from "../models/models_0"; import { CreateEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/CreateEntityRecognizerCommand.ts b/clients/client-comprehend/src/commands/CreateEntityRecognizerCommand.ts index a369188ab2e87..e33155689aa59 100644 --- a/clients/client-comprehend/src/commands/CreateEntityRecognizerCommand.ts +++ b/clients/client-comprehend/src/commands/CreateEntityRecognizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEntityRecognizerRequest, CreateEntityRecognizerResponse } from "../models/models_0"; +import type { CreateEntityRecognizerRequest, CreateEntityRecognizerResponse } from "../models/models_0"; import { CreateEntityRecognizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/CreateFlywheelCommand.ts b/clients/client-comprehend/src/commands/CreateFlywheelCommand.ts index c6061aa20845c..50abc86913a0f 100644 --- a/clients/client-comprehend/src/commands/CreateFlywheelCommand.ts +++ b/clients/client-comprehend/src/commands/CreateFlywheelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFlywheelRequest, CreateFlywheelResponse } from "../models/models_0"; +import type { CreateFlywheelRequest, CreateFlywheelResponse } from "../models/models_0"; import { CreateFlywheel } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DeleteDocumentClassifierCommand.ts b/clients/client-comprehend/src/commands/DeleteDocumentClassifierCommand.ts index 5d83535e39508..ca1ed9b7fd500 100644 --- a/clients/client-comprehend/src/commands/DeleteDocumentClassifierCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteDocumentClassifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDocumentClassifierRequest, DeleteDocumentClassifierResponse } from "../models/models_0"; +import type { DeleteDocumentClassifierRequest, DeleteDocumentClassifierResponse } from "../models/models_0"; import { DeleteDocumentClassifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DeleteEndpointCommand.ts b/clients/client-comprehend/src/commands/DeleteEndpointCommand.ts index 79b00efa0fb08..ddef3545f5def 100644 --- a/clients/client-comprehend/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEndpointRequest, DeleteEndpointResponse } from "../models/models_0"; +import type { DeleteEndpointRequest, DeleteEndpointResponse } from "../models/models_0"; import { DeleteEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DeleteEntityRecognizerCommand.ts b/clients/client-comprehend/src/commands/DeleteEntityRecognizerCommand.ts index fd7a63dc82c5b..d4a10935c46ba 100644 --- a/clients/client-comprehend/src/commands/DeleteEntityRecognizerCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteEntityRecognizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEntityRecognizerRequest, DeleteEntityRecognizerResponse } from "../models/models_0"; +import type { DeleteEntityRecognizerRequest, DeleteEntityRecognizerResponse } from "../models/models_0"; import { DeleteEntityRecognizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DeleteFlywheelCommand.ts b/clients/client-comprehend/src/commands/DeleteFlywheelCommand.ts index 4c7ff8f2c4410..82f0fe264021b 100644 --- a/clients/client-comprehend/src/commands/DeleteFlywheelCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteFlywheelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFlywheelRequest, DeleteFlywheelResponse } from "../models/models_0"; +import type { DeleteFlywheelRequest, DeleteFlywheelResponse } from "../models/models_0"; import { DeleteFlywheel } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-comprehend/src/commands/DeleteResourcePolicyCommand.ts index 6cd2c3f9a019c..a05f8eb0964fd 100644 --- a/clients/client-comprehend/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-comprehend/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeDatasetCommand.ts b/clients/client-comprehend/src/commands/DescribeDatasetCommand.ts index f78da95e6d44e..702d2a958d72a 100644 --- a/clients/client-comprehend/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; +import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; import { DescribeDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeDocumentClassificationJobCommand.ts b/clients/client-comprehend/src/commands/DescribeDocumentClassificationJobCommand.ts index 40c6ba98d8e4e..85f50d0e6acb3 100644 --- a/clients/client-comprehend/src/commands/DescribeDocumentClassificationJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeDocumentClassificationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDocumentClassificationJobRequest, DescribeDocumentClassificationJobResponse, } from "../models/models_0"; diff --git a/clients/client-comprehend/src/commands/DescribeDocumentClassifierCommand.ts b/clients/client-comprehend/src/commands/DescribeDocumentClassifierCommand.ts index 8348bb734efed..aaa67185b753c 100644 --- a/clients/client-comprehend/src/commands/DescribeDocumentClassifierCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeDocumentClassifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDocumentClassifierRequest, DescribeDocumentClassifierResponse } from "../models/models_0"; +import type { DescribeDocumentClassifierRequest, DescribeDocumentClassifierResponse } from "../models/models_0"; import { DescribeDocumentClassifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeDominantLanguageDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeDominantLanguageDetectionJobCommand.ts index 40e1b84d03515..86643e7836770 100644 --- a/clients/client-comprehend/src/commands/DescribeDominantLanguageDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeDominantLanguageDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDominantLanguageDetectionJobRequest, DescribeDominantLanguageDetectionJobResponse, } from "../models/models_0"; diff --git a/clients/client-comprehend/src/commands/DescribeEndpointCommand.ts b/clients/client-comprehend/src/commands/DescribeEndpointCommand.ts index 2fcedea7ad762..c5aa61f22d1c8 100644 --- a/clients/client-comprehend/src/commands/DescribeEndpointCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointRequest, DescribeEndpointResponse } from "../models/models_0"; +import type { DescribeEndpointRequest, DescribeEndpointResponse } from "../models/models_0"; import { DescribeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeEntitiesDetectionJobCommand.ts index 22eff64b8f445..bf87fada36ee4 100644 --- a/clients/client-comprehend/src/commands/DescribeEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeEntitiesDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEntitiesDetectionJobRequest, DescribeEntitiesDetectionJobResponse } from "../models/models_0"; +import type { DescribeEntitiesDetectionJobRequest, DescribeEntitiesDetectionJobResponse } from "../models/models_0"; import { DescribeEntitiesDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeEntityRecognizerCommand.ts b/clients/client-comprehend/src/commands/DescribeEntityRecognizerCommand.ts index cc29f16b57a7d..26ab293f14fc4 100644 --- a/clients/client-comprehend/src/commands/DescribeEntityRecognizerCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeEntityRecognizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEntityRecognizerRequest, DescribeEntityRecognizerResponse } from "../models/models_0"; +import type { DescribeEntityRecognizerRequest, DescribeEntityRecognizerResponse } from "../models/models_0"; import { DescribeEntityRecognizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeEventsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeEventsDetectionJobCommand.ts index 2e4378d860a78..55e64233485b9 100644 --- a/clients/client-comprehend/src/commands/DescribeEventsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeEventsDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsDetectionJobRequest, DescribeEventsDetectionJobResponse } from "../models/models_0"; +import type { DescribeEventsDetectionJobRequest, DescribeEventsDetectionJobResponse } from "../models/models_0"; import { DescribeEventsDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeFlywheelCommand.ts b/clients/client-comprehend/src/commands/DescribeFlywheelCommand.ts index 8b073362b45fe..a7353a9f66208 100644 --- a/clients/client-comprehend/src/commands/DescribeFlywheelCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeFlywheelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFlywheelRequest, DescribeFlywheelResponse } from "../models/models_0"; +import type { DescribeFlywheelRequest, DescribeFlywheelResponse } from "../models/models_0"; import { DescribeFlywheel } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeFlywheelIterationCommand.ts b/clients/client-comprehend/src/commands/DescribeFlywheelIterationCommand.ts index 84418b8b04475..8ea32e31d444d 100644 --- a/clients/client-comprehend/src/commands/DescribeFlywheelIterationCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeFlywheelIterationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFlywheelIterationRequest, DescribeFlywheelIterationResponse } from "../models/models_0"; +import type { DescribeFlywheelIterationRequest, DescribeFlywheelIterationResponse } from "../models/models_0"; import { DescribeFlywheelIteration } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeKeyPhrasesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeKeyPhrasesDetectionJobCommand.ts index 233d27a8e37c6..aeacbdb65f5d6 100644 --- a/clients/client-comprehend/src/commands/DescribeKeyPhrasesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeKeyPhrasesDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeKeyPhrasesDetectionJobRequest, DescribeKeyPhrasesDetectionJobResponse } from "../models/models_0"; +import type { DescribeKeyPhrasesDetectionJobRequest, DescribeKeyPhrasesDetectionJobResponse } from "../models/models_0"; import { DescribeKeyPhrasesDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribePiiEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribePiiEntitiesDetectionJobCommand.ts index ed5d0bce002f6..38e0beb04c210 100644 --- a/clients/client-comprehend/src/commands/DescribePiiEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribePiiEntitiesDetectionJobCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePiiEntitiesDetectionJobRequest, DescribePiiEntitiesDetectionJobResponse } from "../models/models_0"; +import type { + DescribePiiEntitiesDetectionJobRequest, + DescribePiiEntitiesDetectionJobResponse, +} from "../models/models_0"; import { DescribePiiEntitiesDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-comprehend/src/commands/DescribeResourcePolicyCommand.ts index d369d44289815..5359450129211 100644 --- a/clients/client-comprehend/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; +import type { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; import { DescribeResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeSentimentDetectionJobCommand.ts index 6b33e5d93f638..d92244a74dd6a 100644 --- a/clients/client-comprehend/src/commands/DescribeSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeSentimentDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSentimentDetectionJobRequest, DescribeSentimentDetectionJobResponse } from "../models/models_0"; +import type { DescribeSentimentDetectionJobRequest, DescribeSentimentDetectionJobResponse } from "../models/models_0"; import { DescribeSentimentDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DescribeTargetedSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeTargetedSentimentDetectionJobCommand.ts index 613256f005a59..009b31cd73345 100644 --- a/clients/client-comprehend/src/commands/DescribeTargetedSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeTargetedSentimentDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTargetedSentimentDetectionJobRequest, DescribeTargetedSentimentDetectionJobResponse, } from "../models/models_0"; diff --git a/clients/client-comprehend/src/commands/DescribeTopicsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/DescribeTopicsDetectionJobCommand.ts index bb8685d603fa2..24fd14e039f5a 100644 --- a/clients/client-comprehend/src/commands/DescribeTopicsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/DescribeTopicsDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTopicsDetectionJobRequest, DescribeTopicsDetectionJobResponse } from "../models/models_0"; +import type { DescribeTopicsDetectionJobRequest, DescribeTopicsDetectionJobResponse } from "../models/models_0"; import { DescribeTopicsDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DetectDominantLanguageCommand.ts b/clients/client-comprehend/src/commands/DetectDominantLanguageCommand.ts index 98a83f7facf4c..9ce64a948e515 100644 --- a/clients/client-comprehend/src/commands/DetectDominantLanguageCommand.ts +++ b/clients/client-comprehend/src/commands/DetectDominantLanguageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectDominantLanguageRequest, DetectDominantLanguageResponse } from "../models/models_0"; +import type { DetectDominantLanguageRequest, DetectDominantLanguageResponse } from "../models/models_0"; import { DetectDominantLanguage } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DetectEntitiesCommand.ts b/clients/client-comprehend/src/commands/DetectEntitiesCommand.ts index d6e7a64c40f90..4264eed86dda6 100644 --- a/clients/client-comprehend/src/commands/DetectEntitiesCommand.ts +++ b/clients/client-comprehend/src/commands/DetectEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectEntitiesRequest, DetectEntitiesResponse } from "../models/models_0"; +import type { DetectEntitiesRequest, DetectEntitiesResponse } from "../models/models_0"; import { DetectEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DetectKeyPhrasesCommand.ts b/clients/client-comprehend/src/commands/DetectKeyPhrasesCommand.ts index 130132fb2b99f..2d62deb74551a 100644 --- a/clients/client-comprehend/src/commands/DetectKeyPhrasesCommand.ts +++ b/clients/client-comprehend/src/commands/DetectKeyPhrasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectKeyPhrasesRequest, DetectKeyPhrasesResponse } from "../models/models_0"; +import type { DetectKeyPhrasesRequest, DetectKeyPhrasesResponse } from "../models/models_0"; import { DetectKeyPhrases } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DetectPiiEntitiesCommand.ts b/clients/client-comprehend/src/commands/DetectPiiEntitiesCommand.ts index ea78db03be085..2147a22a013f6 100644 --- a/clients/client-comprehend/src/commands/DetectPiiEntitiesCommand.ts +++ b/clients/client-comprehend/src/commands/DetectPiiEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectPiiEntitiesRequest, DetectPiiEntitiesResponse } from "../models/models_0"; +import type { DetectPiiEntitiesRequest, DetectPiiEntitiesResponse } from "../models/models_0"; import { DetectPiiEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DetectSentimentCommand.ts b/clients/client-comprehend/src/commands/DetectSentimentCommand.ts index 28b962df1d41e..342d297212026 100644 --- a/clients/client-comprehend/src/commands/DetectSentimentCommand.ts +++ b/clients/client-comprehend/src/commands/DetectSentimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectSentimentRequest, DetectSentimentResponse } from "../models/models_0"; +import type { DetectSentimentRequest, DetectSentimentResponse } from "../models/models_0"; import { DetectSentiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DetectSyntaxCommand.ts b/clients/client-comprehend/src/commands/DetectSyntaxCommand.ts index e219a81e4f6f1..6daaf9a7145cd 100644 --- a/clients/client-comprehend/src/commands/DetectSyntaxCommand.ts +++ b/clients/client-comprehend/src/commands/DetectSyntaxCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectSyntaxRequest, DetectSyntaxResponse } from "../models/models_0"; +import type { DetectSyntaxRequest, DetectSyntaxResponse } from "../models/models_0"; import { DetectSyntax } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DetectTargetedSentimentCommand.ts b/clients/client-comprehend/src/commands/DetectTargetedSentimentCommand.ts index e5ebe82b6bc80..83785f25de1e4 100644 --- a/clients/client-comprehend/src/commands/DetectTargetedSentimentCommand.ts +++ b/clients/client-comprehend/src/commands/DetectTargetedSentimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectTargetedSentimentRequest, DetectTargetedSentimentResponse } from "../models/models_0"; +import type { DetectTargetedSentimentRequest, DetectTargetedSentimentResponse } from "../models/models_0"; import { DetectTargetedSentiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/DetectToxicContentCommand.ts b/clients/client-comprehend/src/commands/DetectToxicContentCommand.ts index 83ca62093fcd6..9f17713537691 100644 --- a/clients/client-comprehend/src/commands/DetectToxicContentCommand.ts +++ b/clients/client-comprehend/src/commands/DetectToxicContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectToxicContentRequest, DetectToxicContentResponse } from "../models/models_0"; +import type { DetectToxicContentRequest, DetectToxicContentResponse } from "../models/models_0"; import { DetectToxicContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ImportModelCommand.ts b/clients/client-comprehend/src/commands/ImportModelCommand.ts index 1f5fb0727a122..3107979979a92 100644 --- a/clients/client-comprehend/src/commands/ImportModelCommand.ts +++ b/clients/client-comprehend/src/commands/ImportModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportModelRequest, ImportModelResponse } from "../models/models_0"; +import type { ImportModelRequest, ImportModelResponse } from "../models/models_0"; import { ImportModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListDatasetsCommand.ts b/clients/client-comprehend/src/commands/ListDatasetsCommand.ts index f9b9f283f54c7..8d843d99c1e60 100644 --- a/clients/client-comprehend/src/commands/ListDatasetsCommand.ts +++ b/clients/client-comprehend/src/commands/ListDatasetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; +import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; import { ListDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListDocumentClassificationJobsCommand.ts b/clients/client-comprehend/src/commands/ListDocumentClassificationJobsCommand.ts index 7f96ea80f0ce4..79f4b6b18f995 100644 --- a/clients/client-comprehend/src/commands/ListDocumentClassificationJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListDocumentClassificationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDocumentClassificationJobsRequest, ListDocumentClassificationJobsResponse } from "../models/models_0"; +import type { ListDocumentClassificationJobsRequest, ListDocumentClassificationJobsResponse } from "../models/models_0"; import { ListDocumentClassificationJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListDocumentClassifierSummariesCommand.ts b/clients/client-comprehend/src/commands/ListDocumentClassifierSummariesCommand.ts index 91e4baf3790e5..c6098d3adedf8 100644 --- a/clients/client-comprehend/src/commands/ListDocumentClassifierSummariesCommand.ts +++ b/clients/client-comprehend/src/commands/ListDocumentClassifierSummariesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDocumentClassifierSummariesRequest, ListDocumentClassifierSummariesResponse } from "../models/models_0"; +import type { + ListDocumentClassifierSummariesRequest, + ListDocumentClassifierSummariesResponse, +} from "../models/models_0"; import { ListDocumentClassifierSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListDocumentClassifiersCommand.ts b/clients/client-comprehend/src/commands/ListDocumentClassifiersCommand.ts index 7debfb75670f1..ca0935172596f 100644 --- a/clients/client-comprehend/src/commands/ListDocumentClassifiersCommand.ts +++ b/clients/client-comprehend/src/commands/ListDocumentClassifiersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDocumentClassifiersRequest, ListDocumentClassifiersResponse } from "../models/models_0"; +import type { ListDocumentClassifiersRequest, ListDocumentClassifiersResponse } from "../models/models_0"; import { ListDocumentClassifiers } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListDominantLanguageDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListDominantLanguageDetectionJobsCommand.ts index 6f7a7ce2f8b03..d912014a814ff 100644 --- a/clients/client-comprehend/src/commands/ListDominantLanguageDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListDominantLanguageDetectionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDominantLanguageDetectionJobsRequest, ListDominantLanguageDetectionJobsResponse, } from "../models/models_0"; diff --git a/clients/client-comprehend/src/commands/ListEndpointsCommand.ts b/clients/client-comprehend/src/commands/ListEndpointsCommand.ts index 5018e896834bc..058a433e86d47 100644 --- a/clients/client-comprehend/src/commands/ListEndpointsCommand.ts +++ b/clients/client-comprehend/src/commands/ListEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEndpointsRequest, ListEndpointsResponse } from "../models/models_0"; +import type { ListEndpointsRequest, ListEndpointsResponse } from "../models/models_0"; import { ListEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListEntitiesDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListEntitiesDetectionJobsCommand.ts index a634789a7911c..ef6c88ee2ac4f 100644 --- a/clients/client-comprehend/src/commands/ListEntitiesDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListEntitiesDetectionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEntitiesDetectionJobsRequest, ListEntitiesDetectionJobsResponse } from "../models/models_0"; +import type { ListEntitiesDetectionJobsRequest, ListEntitiesDetectionJobsResponse } from "../models/models_0"; import { ListEntitiesDetectionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListEntityRecognizerSummariesCommand.ts b/clients/client-comprehend/src/commands/ListEntityRecognizerSummariesCommand.ts index b8c45011e8258..0968fd41e081b 100644 --- a/clients/client-comprehend/src/commands/ListEntityRecognizerSummariesCommand.ts +++ b/clients/client-comprehend/src/commands/ListEntityRecognizerSummariesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEntityRecognizerSummariesRequest, ListEntityRecognizerSummariesResponse } from "../models/models_0"; +import type { ListEntityRecognizerSummariesRequest, ListEntityRecognizerSummariesResponse } from "../models/models_0"; import { ListEntityRecognizerSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListEntityRecognizersCommand.ts b/clients/client-comprehend/src/commands/ListEntityRecognizersCommand.ts index cbb04294a40f4..fba9e6f316129 100644 --- a/clients/client-comprehend/src/commands/ListEntityRecognizersCommand.ts +++ b/clients/client-comprehend/src/commands/ListEntityRecognizersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEntityRecognizersRequest, ListEntityRecognizersResponse } from "../models/models_0"; +import type { ListEntityRecognizersRequest, ListEntityRecognizersResponse } from "../models/models_0"; import { ListEntityRecognizers } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListEventsDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListEventsDetectionJobsCommand.ts index 5f75a2b07b341..53637f96691df 100644 --- a/clients/client-comprehend/src/commands/ListEventsDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListEventsDetectionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventsDetectionJobsRequest, ListEventsDetectionJobsResponse } from "../models/models_0"; +import type { ListEventsDetectionJobsRequest, ListEventsDetectionJobsResponse } from "../models/models_0"; import { ListEventsDetectionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListFlywheelIterationHistoryCommand.ts b/clients/client-comprehend/src/commands/ListFlywheelIterationHistoryCommand.ts index d567ee750e4cf..ad510853cae9f 100644 --- a/clients/client-comprehend/src/commands/ListFlywheelIterationHistoryCommand.ts +++ b/clients/client-comprehend/src/commands/ListFlywheelIterationHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlywheelIterationHistoryRequest, ListFlywheelIterationHistoryResponse } from "../models/models_0"; +import type { ListFlywheelIterationHistoryRequest, ListFlywheelIterationHistoryResponse } from "../models/models_0"; import { ListFlywheelIterationHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListFlywheelsCommand.ts b/clients/client-comprehend/src/commands/ListFlywheelsCommand.ts index 01b26af4837c6..7894c8c0f9ab0 100644 --- a/clients/client-comprehend/src/commands/ListFlywheelsCommand.ts +++ b/clients/client-comprehend/src/commands/ListFlywheelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlywheelsRequest, ListFlywheelsResponse } from "../models/models_0"; +import type { ListFlywheelsRequest, ListFlywheelsResponse } from "../models/models_0"; import { ListFlywheels } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListKeyPhrasesDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListKeyPhrasesDetectionJobsCommand.ts index 6a1a23fee39fe..089d53bf15c99 100644 --- a/clients/client-comprehend/src/commands/ListKeyPhrasesDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListKeyPhrasesDetectionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKeyPhrasesDetectionJobsRequest, ListKeyPhrasesDetectionJobsResponse } from "../models/models_0"; +import type { ListKeyPhrasesDetectionJobsRequest, ListKeyPhrasesDetectionJobsResponse } from "../models/models_0"; import { ListKeyPhrasesDetectionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListPiiEntitiesDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListPiiEntitiesDetectionJobsCommand.ts index 4fa1b9c346443..bb4894c2134b5 100644 --- a/clients/client-comprehend/src/commands/ListPiiEntitiesDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListPiiEntitiesDetectionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPiiEntitiesDetectionJobsRequest, ListPiiEntitiesDetectionJobsResponse } from "../models/models_0"; +import type { ListPiiEntitiesDetectionJobsRequest, ListPiiEntitiesDetectionJobsResponse } from "../models/models_0"; import { ListPiiEntitiesDetectionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListSentimentDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListSentimentDetectionJobsCommand.ts index 4bc546081e1dd..c245e2bc240cc 100644 --- a/clients/client-comprehend/src/commands/ListSentimentDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListSentimentDetectionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSentimentDetectionJobsRequest, ListSentimentDetectionJobsResponse } from "../models/models_0"; +import type { ListSentimentDetectionJobsRequest, ListSentimentDetectionJobsResponse } from "../models/models_0"; import { ListSentimentDetectionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListTagsForResourceCommand.ts b/clients/client-comprehend/src/commands/ListTagsForResourceCommand.ts index c455cfd649e73..a3a56a0117dce 100644 --- a/clients/client-comprehend/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-comprehend/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/ListTargetedSentimentDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListTargetedSentimentDetectionJobsCommand.ts index 3d7acdea00745..7ed99bb696a51 100644 --- a/clients/client-comprehend/src/commands/ListTargetedSentimentDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListTargetedSentimentDetectionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListTargetedSentimentDetectionJobsRequest, ListTargetedSentimentDetectionJobsResponse, } from "../models/models_0"; diff --git a/clients/client-comprehend/src/commands/ListTopicsDetectionJobsCommand.ts b/clients/client-comprehend/src/commands/ListTopicsDetectionJobsCommand.ts index ecf144c4543d4..5d5d891247910 100644 --- a/clients/client-comprehend/src/commands/ListTopicsDetectionJobsCommand.ts +++ b/clients/client-comprehend/src/commands/ListTopicsDetectionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTopicsDetectionJobsRequest, ListTopicsDetectionJobsResponse } from "../models/models_0"; +import type { ListTopicsDetectionJobsRequest, ListTopicsDetectionJobsResponse } from "../models/models_0"; import { ListTopicsDetectionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/PutResourcePolicyCommand.ts b/clients/client-comprehend/src/commands/PutResourcePolicyCommand.ts index d9e9855b15c0a..40f19de2ff08d 100644 --- a/clients/client-comprehend/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-comprehend/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StartDocumentClassificationJobCommand.ts b/clients/client-comprehend/src/commands/StartDocumentClassificationJobCommand.ts index ce14e04388356..fe2fb460a04f4 100644 --- a/clients/client-comprehend/src/commands/StartDocumentClassificationJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartDocumentClassificationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDocumentClassificationJobRequest, StartDocumentClassificationJobResponse } from "../models/models_0"; +import type { StartDocumentClassificationJobRequest, StartDocumentClassificationJobResponse } from "../models/models_0"; import { StartDocumentClassificationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StartDominantLanguageDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartDominantLanguageDetectionJobCommand.ts index e3e2eff466cf1..120be565fb707 100644 --- a/clients/client-comprehend/src/commands/StartDominantLanguageDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartDominantLanguageDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartDominantLanguageDetectionJobRequest, StartDominantLanguageDetectionJobResponse, } from "../models/models_0"; diff --git a/clients/client-comprehend/src/commands/StartEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartEntitiesDetectionJobCommand.ts index a9cf1d0c2a696..f260e7a837af9 100644 --- a/clients/client-comprehend/src/commands/StartEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartEntitiesDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartEntitiesDetectionJobRequest, StartEntitiesDetectionJobResponse } from "../models/models_0"; +import type { StartEntitiesDetectionJobRequest, StartEntitiesDetectionJobResponse } from "../models/models_0"; import { StartEntitiesDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StartEventsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartEventsDetectionJobCommand.ts index 4aa51ea35e974..975bafe40bd9a 100644 --- a/clients/client-comprehend/src/commands/StartEventsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartEventsDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartEventsDetectionJobRequest, StartEventsDetectionJobResponse } from "../models/models_0"; +import type { StartEventsDetectionJobRequest, StartEventsDetectionJobResponse } from "../models/models_0"; import { StartEventsDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StartFlywheelIterationCommand.ts b/clients/client-comprehend/src/commands/StartFlywheelIterationCommand.ts index 995151c0fc3a4..c52de478ce96b 100644 --- a/clients/client-comprehend/src/commands/StartFlywheelIterationCommand.ts +++ b/clients/client-comprehend/src/commands/StartFlywheelIterationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFlywheelIterationRequest, StartFlywheelIterationResponse } from "../models/models_0"; +import type { StartFlywheelIterationRequest, StartFlywheelIterationResponse } from "../models/models_0"; import { StartFlywheelIteration } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StartKeyPhrasesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartKeyPhrasesDetectionJobCommand.ts index 8ab7a45470774..970a6fb8f462a 100644 --- a/clients/client-comprehend/src/commands/StartKeyPhrasesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartKeyPhrasesDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartKeyPhrasesDetectionJobRequest, StartKeyPhrasesDetectionJobResponse } from "../models/models_0"; +import type { StartKeyPhrasesDetectionJobRequest, StartKeyPhrasesDetectionJobResponse } from "../models/models_0"; import { StartKeyPhrasesDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StartPiiEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartPiiEntitiesDetectionJobCommand.ts index ed9075dd086f0..a4bed2a9e042b 100644 --- a/clients/client-comprehend/src/commands/StartPiiEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartPiiEntitiesDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPiiEntitiesDetectionJobRequest, StartPiiEntitiesDetectionJobResponse } from "../models/models_0"; +import type { StartPiiEntitiesDetectionJobRequest, StartPiiEntitiesDetectionJobResponse } from "../models/models_0"; import { StartPiiEntitiesDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StartSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartSentimentDetectionJobCommand.ts index 2b309999df4af..54d4ea6ee4d04 100644 --- a/clients/client-comprehend/src/commands/StartSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartSentimentDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSentimentDetectionJobRequest, StartSentimentDetectionJobResponse } from "../models/models_0"; +import type { StartSentimentDetectionJobRequest, StartSentimentDetectionJobResponse } from "../models/models_0"; import { StartSentimentDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StartTargetedSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartTargetedSentimentDetectionJobCommand.ts index 25faefdb97b31..0d89400881404 100644 --- a/clients/client-comprehend/src/commands/StartTargetedSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartTargetedSentimentDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartTargetedSentimentDetectionJobRequest, StartTargetedSentimentDetectionJobResponse, } from "../models/models_0"; diff --git a/clients/client-comprehend/src/commands/StartTopicsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StartTopicsDetectionJobCommand.ts index 2a4e831923d5f..3d7a4c03a58cd 100644 --- a/clients/client-comprehend/src/commands/StartTopicsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StartTopicsDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTopicsDetectionJobRequest, StartTopicsDetectionJobResponse } from "../models/models_0"; +import type { StartTopicsDetectionJobRequest, StartTopicsDetectionJobResponse } from "../models/models_0"; import { StartTopicsDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StopDominantLanguageDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopDominantLanguageDetectionJobCommand.ts index 9d3e757518e1f..1fb7a10a2d222 100644 --- a/clients/client-comprehend/src/commands/StopDominantLanguageDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopDominantLanguageDetectionJobCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDominantLanguageDetectionJobRequest, StopDominantLanguageDetectionJobResponse } from "../models/models_0"; +import type { + StopDominantLanguageDetectionJobRequest, + StopDominantLanguageDetectionJobResponse, +} from "../models/models_0"; import { StopDominantLanguageDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StopEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopEntitiesDetectionJobCommand.ts index e61874123fed8..7118905d622c3 100644 --- a/clients/client-comprehend/src/commands/StopEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopEntitiesDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopEntitiesDetectionJobRequest, StopEntitiesDetectionJobResponse } from "../models/models_0"; +import type { StopEntitiesDetectionJobRequest, StopEntitiesDetectionJobResponse } from "../models/models_0"; import { StopEntitiesDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StopEventsDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopEventsDetectionJobCommand.ts index b29823d1543f0..6db949544ade0 100644 --- a/clients/client-comprehend/src/commands/StopEventsDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopEventsDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopEventsDetectionJobRequest, StopEventsDetectionJobResponse } from "../models/models_0"; +import type { StopEventsDetectionJobRequest, StopEventsDetectionJobResponse } from "../models/models_0"; import { StopEventsDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StopKeyPhrasesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopKeyPhrasesDetectionJobCommand.ts index 1e418c7840b2a..f67bb538bc678 100644 --- a/clients/client-comprehend/src/commands/StopKeyPhrasesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopKeyPhrasesDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopKeyPhrasesDetectionJobRequest, StopKeyPhrasesDetectionJobResponse } from "../models/models_0"; +import type { StopKeyPhrasesDetectionJobRequest, StopKeyPhrasesDetectionJobResponse } from "../models/models_0"; import { StopKeyPhrasesDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StopPiiEntitiesDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopPiiEntitiesDetectionJobCommand.ts index aa80308980607..21b4621dd90d2 100644 --- a/clients/client-comprehend/src/commands/StopPiiEntitiesDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopPiiEntitiesDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopPiiEntitiesDetectionJobRequest, StopPiiEntitiesDetectionJobResponse } from "../models/models_0"; +import type { StopPiiEntitiesDetectionJobRequest, StopPiiEntitiesDetectionJobResponse } from "../models/models_0"; import { StopPiiEntitiesDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StopSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopSentimentDetectionJobCommand.ts index f30a675c47b49..f13efbe93c3e3 100644 --- a/clients/client-comprehend/src/commands/StopSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopSentimentDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopSentimentDetectionJobRequest, StopSentimentDetectionJobResponse } from "../models/models_0"; +import type { StopSentimentDetectionJobRequest, StopSentimentDetectionJobResponse } from "../models/models_0"; import { StopSentimentDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StopTargetedSentimentDetectionJobCommand.ts b/clients/client-comprehend/src/commands/StopTargetedSentimentDetectionJobCommand.ts index beafa7ffe1827..81964146168cc 100644 --- a/clients/client-comprehend/src/commands/StopTargetedSentimentDetectionJobCommand.ts +++ b/clients/client-comprehend/src/commands/StopTargetedSentimentDetectionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StopTargetedSentimentDetectionJobRequest, StopTargetedSentimentDetectionJobResponse, } from "../models/models_0"; diff --git a/clients/client-comprehend/src/commands/StopTrainingDocumentClassifierCommand.ts b/clients/client-comprehend/src/commands/StopTrainingDocumentClassifierCommand.ts index a28282451498d..4b32ffb71175e 100644 --- a/clients/client-comprehend/src/commands/StopTrainingDocumentClassifierCommand.ts +++ b/clients/client-comprehend/src/commands/StopTrainingDocumentClassifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopTrainingDocumentClassifierRequest, StopTrainingDocumentClassifierResponse } from "../models/models_0"; +import type { StopTrainingDocumentClassifierRequest, StopTrainingDocumentClassifierResponse } from "../models/models_0"; import { StopTrainingDocumentClassifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/StopTrainingEntityRecognizerCommand.ts b/clients/client-comprehend/src/commands/StopTrainingEntityRecognizerCommand.ts index e0bce04c0d09f..db634a3912cec 100644 --- a/clients/client-comprehend/src/commands/StopTrainingEntityRecognizerCommand.ts +++ b/clients/client-comprehend/src/commands/StopTrainingEntityRecognizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopTrainingEntityRecognizerRequest, StopTrainingEntityRecognizerResponse } from "../models/models_0"; +import type { StopTrainingEntityRecognizerRequest, StopTrainingEntityRecognizerResponse } from "../models/models_0"; import { StopTrainingEntityRecognizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/TagResourceCommand.ts b/clients/client-comprehend/src/commands/TagResourceCommand.ts index 7379e3598dd69..48ac055c863b8 100644 --- a/clients/client-comprehend/src/commands/TagResourceCommand.ts +++ b/clients/client-comprehend/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/UntagResourceCommand.ts b/clients/client-comprehend/src/commands/UntagResourceCommand.ts index b5f905dba7dc5..34d758848dc2f 100644 --- a/clients/client-comprehend/src/commands/UntagResourceCommand.ts +++ b/clients/client-comprehend/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/UpdateEndpointCommand.ts b/clients/client-comprehend/src/commands/UpdateEndpointCommand.ts index b3947625306a3..9ceabb4132b1a 100644 --- a/clients/client-comprehend/src/commands/UpdateEndpointCommand.ts +++ b/clients/client-comprehend/src/commands/UpdateEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEndpointRequest, UpdateEndpointResponse } from "../models/models_0"; +import type { UpdateEndpointRequest, UpdateEndpointResponse } from "../models/models_0"; import { UpdateEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/commands/UpdateFlywheelCommand.ts b/clients/client-comprehend/src/commands/UpdateFlywheelCommand.ts index ac708b31e10de..a52b7d6f5e6e9 100644 --- a/clients/client-comprehend/src/commands/UpdateFlywheelCommand.ts +++ b/clients/client-comprehend/src/commands/UpdateFlywheelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; +import type { ComprehendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComprehendClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFlywheelRequest, UpdateFlywheelResponse } from "../models/models_0"; +import type { UpdateFlywheelRequest, UpdateFlywheelResponse } from "../models/models_0"; import { UpdateFlywheel } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehend/src/endpoint/EndpointParameters.ts b/clients/client-comprehend/src/endpoint/EndpointParameters.ts index d8794c32cca87..8cf2793f47ea7 100644 --- a/clients/client-comprehend/src/endpoint/EndpointParameters.ts +++ b/clients/client-comprehend/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-comprehend/src/endpoint/endpointResolver.ts b/clients/client-comprehend/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-comprehend/src/endpoint/endpointResolver.ts +++ b/clients/client-comprehend/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-comprehend/src/extensionConfiguration.ts b/clients/client-comprehend/src/extensionConfiguration.ts index fa3c624e4b004..66e65f903a259 100644 --- a/clients/client-comprehend/src/extensionConfiguration.ts +++ b/clients/client-comprehend/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-comprehend/src/models/ComprehendServiceException.ts b/clients/client-comprehend/src/models/ComprehendServiceException.ts index 484a594ba0471..bd7d985edbc32 100644 --- a/clients/client-comprehend/src/models/ComprehendServiceException.ts +++ b/clients/client-comprehend/src/models/ComprehendServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-comprehend/src/models/errors.ts b/clients/client-comprehend/src/models/errors.ts index 7038555059218..f37d05b2be69a 100644 --- a/clients/client-comprehend/src/models/errors.ts +++ b/clients/client-comprehend/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ComprehendServiceException as __BaseException } from "./ComprehendServiceException"; import { InvalidRequestReason } from "./enums"; diff --git a/clients/client-comprehend/src/pagination/Interfaces.ts b/clients/client-comprehend/src/pagination/Interfaces.ts index 767acef2f544e..dbeca532b28e0 100644 --- a/clients/client-comprehend/src/pagination/Interfaces.ts +++ b/clients/client-comprehend/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ComprehendClient } from "../ComprehendClient"; diff --git a/clients/client-comprehend/src/pagination/ListDatasetsPaginator.ts b/clients/client-comprehend/src/pagination/ListDatasetsPaginator.ts index 2f85640d4c15d..639cc7308b69b 100644 --- a/clients/client-comprehend/src/pagination/ListDatasetsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetsCommand, diff --git a/clients/client-comprehend/src/pagination/ListDocumentClassificationJobsPaginator.ts b/clients/client-comprehend/src/pagination/ListDocumentClassificationJobsPaginator.ts index 3dc5d38e3d6c5..e62fd6b515be8 100644 --- a/clients/client-comprehend/src/pagination/ListDocumentClassificationJobsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListDocumentClassificationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDocumentClassificationJobsCommand, diff --git a/clients/client-comprehend/src/pagination/ListDocumentClassifierSummariesPaginator.ts b/clients/client-comprehend/src/pagination/ListDocumentClassifierSummariesPaginator.ts index 33c13ab6b9f37..bfc3dce6a5782 100644 --- a/clients/client-comprehend/src/pagination/ListDocumentClassifierSummariesPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListDocumentClassifierSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDocumentClassifierSummariesCommand, diff --git a/clients/client-comprehend/src/pagination/ListDocumentClassifiersPaginator.ts b/clients/client-comprehend/src/pagination/ListDocumentClassifiersPaginator.ts index 3eedce941d5b9..8a575d4f86c90 100644 --- a/clients/client-comprehend/src/pagination/ListDocumentClassifiersPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListDocumentClassifiersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDocumentClassifiersCommand, diff --git a/clients/client-comprehend/src/pagination/ListDominantLanguageDetectionJobsPaginator.ts b/clients/client-comprehend/src/pagination/ListDominantLanguageDetectionJobsPaginator.ts index 58c479a144db7..7d9a2f7cd5c93 100644 --- a/clients/client-comprehend/src/pagination/ListDominantLanguageDetectionJobsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListDominantLanguageDetectionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDominantLanguageDetectionJobsCommand, diff --git a/clients/client-comprehend/src/pagination/ListEndpointsPaginator.ts b/clients/client-comprehend/src/pagination/ListEndpointsPaginator.ts index cb275a003c95a..026993b0f9c8a 100644 --- a/clients/client-comprehend/src/pagination/ListEndpointsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEndpointsCommand, diff --git a/clients/client-comprehend/src/pagination/ListEntitiesDetectionJobsPaginator.ts b/clients/client-comprehend/src/pagination/ListEntitiesDetectionJobsPaginator.ts index 7293ad9b4d0f2..cab652911978c 100644 --- a/clients/client-comprehend/src/pagination/ListEntitiesDetectionJobsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListEntitiesDetectionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntitiesDetectionJobsCommand, diff --git a/clients/client-comprehend/src/pagination/ListEntityRecognizerSummariesPaginator.ts b/clients/client-comprehend/src/pagination/ListEntityRecognizerSummariesPaginator.ts index 0b4fd70866377..5abeaaf8a53a9 100644 --- a/clients/client-comprehend/src/pagination/ListEntityRecognizerSummariesPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListEntityRecognizerSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntityRecognizerSummariesCommand, diff --git a/clients/client-comprehend/src/pagination/ListEntityRecognizersPaginator.ts b/clients/client-comprehend/src/pagination/ListEntityRecognizersPaginator.ts index 9e219966825e8..74017fe057bde 100644 --- a/clients/client-comprehend/src/pagination/ListEntityRecognizersPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListEntityRecognizersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntityRecognizersCommand, diff --git a/clients/client-comprehend/src/pagination/ListEventsDetectionJobsPaginator.ts b/clients/client-comprehend/src/pagination/ListEventsDetectionJobsPaginator.ts index 0c3fa2a294291..15b7bbbe32679 100644 --- a/clients/client-comprehend/src/pagination/ListEventsDetectionJobsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListEventsDetectionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventsDetectionJobsCommand, diff --git a/clients/client-comprehend/src/pagination/ListFlywheelIterationHistoryPaginator.ts b/clients/client-comprehend/src/pagination/ListFlywheelIterationHistoryPaginator.ts index 202fb8fdfe2b0..3bea4f8bb9966 100644 --- a/clients/client-comprehend/src/pagination/ListFlywheelIterationHistoryPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListFlywheelIterationHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFlywheelIterationHistoryCommand, diff --git a/clients/client-comprehend/src/pagination/ListFlywheelsPaginator.ts b/clients/client-comprehend/src/pagination/ListFlywheelsPaginator.ts index 3ce33f13bd9be..d4637ad45af62 100644 --- a/clients/client-comprehend/src/pagination/ListFlywheelsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListFlywheelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFlywheelsCommand, diff --git a/clients/client-comprehend/src/pagination/ListKeyPhrasesDetectionJobsPaginator.ts b/clients/client-comprehend/src/pagination/ListKeyPhrasesDetectionJobsPaginator.ts index 3601c871fcd86..2065774674c77 100644 --- a/clients/client-comprehend/src/pagination/ListKeyPhrasesDetectionJobsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListKeyPhrasesDetectionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKeyPhrasesDetectionJobsCommand, diff --git a/clients/client-comprehend/src/pagination/ListPiiEntitiesDetectionJobsPaginator.ts b/clients/client-comprehend/src/pagination/ListPiiEntitiesDetectionJobsPaginator.ts index 0a3d706d7e4fd..9516d6ddf44ba 100644 --- a/clients/client-comprehend/src/pagination/ListPiiEntitiesDetectionJobsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListPiiEntitiesDetectionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPiiEntitiesDetectionJobsCommand, diff --git a/clients/client-comprehend/src/pagination/ListSentimentDetectionJobsPaginator.ts b/clients/client-comprehend/src/pagination/ListSentimentDetectionJobsPaginator.ts index 228d01b8cb6cb..3996f8331854d 100644 --- a/clients/client-comprehend/src/pagination/ListSentimentDetectionJobsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListSentimentDetectionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSentimentDetectionJobsCommand, diff --git a/clients/client-comprehend/src/pagination/ListTargetedSentimentDetectionJobsPaginator.ts b/clients/client-comprehend/src/pagination/ListTargetedSentimentDetectionJobsPaginator.ts index 3a48fc9c5cb0c..bdd361952c261 100644 --- a/clients/client-comprehend/src/pagination/ListTargetedSentimentDetectionJobsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListTargetedSentimentDetectionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTargetedSentimentDetectionJobsCommand, diff --git a/clients/client-comprehend/src/pagination/ListTopicsDetectionJobsPaginator.ts b/clients/client-comprehend/src/pagination/ListTopicsDetectionJobsPaginator.ts index 14366542d6239..2c1695fc78027 100644 --- a/clients/client-comprehend/src/pagination/ListTopicsDetectionJobsPaginator.ts +++ b/clients/client-comprehend/src/pagination/ListTopicsDetectionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTopicsDetectionJobsCommand, diff --git a/clients/client-comprehend/src/runtimeConfig.browser.ts b/clients/client-comprehend/src/runtimeConfig.browser.ts index 3ca2df9d891e4..862e092c745e9 100644 --- a/clients/client-comprehend/src/runtimeConfig.browser.ts +++ b/clients/client-comprehend/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ComprehendClientConfig } from "./ComprehendClient"; + +import type { ComprehendClientConfig } from "./ComprehendClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-comprehend/src/runtimeConfig.native.ts b/clients/client-comprehend/src/runtimeConfig.native.ts index 9cae7a15c8b8a..4147759dd54eb 100644 --- a/clients/client-comprehend/src/runtimeConfig.native.ts +++ b/clients/client-comprehend/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ComprehendClientConfig } from "./ComprehendClient"; +import type { ComprehendClientConfig } from "./ComprehendClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-comprehend/src/runtimeConfig.shared.ts b/clients/client-comprehend/src/runtimeConfig.shared.ts index 48c8d9b5f4b94..d460cedbd2962 100644 --- a/clients/client-comprehend/src/runtimeConfig.shared.ts +++ b/clients/client-comprehend/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultComprehendHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ComprehendClientConfig } from "./ComprehendClient"; +import type { ComprehendClientConfig } from "./ComprehendClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-comprehend/src/runtimeConfig.ts b/clients/client-comprehend/src/runtimeConfig.ts index c111c4dc39eb6..155893d9e416e 100644 --- a/clients/client-comprehend/src/runtimeConfig.ts +++ b/clients/client-comprehend/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ComprehendClientConfig } from "./ComprehendClient"; + +import type { ComprehendClientConfig } from "./ComprehendClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-comprehend/src/runtimeExtensions.ts b/clients/client-comprehend/src/runtimeExtensions.ts index 7e7f02bbf2769..7505800e007ce 100644 --- a/clients/client-comprehend/src/runtimeExtensions.ts +++ b/clients/client-comprehend/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ComprehendExtensionConfiguration } from "./extensionConfiguration"; +import type { ComprehendExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-comprehend/src/schemas/schemas_0.ts b/clients/client-comprehend/src/schemas/schemas_0.ts index 00e8226dee07c..5090bf2e9dcd9 100644 --- a/clients/client-comprehend/src/schemas/schemas_0.ts +++ b/clients/client-comprehend/src/schemas/schemas_0.ts @@ -608,7 +608,7 @@ const n0 = "com.amazonaws.comprehend"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-comprehendmedical/package.json b/clients/client-comprehendmedical/package.json index bc12c63dc35b7..45988fdf1ef45 100644 --- a/clients/client-comprehendmedical/package.json +++ b/clients/client-comprehendmedical/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-comprehendmedical/src/ComprehendMedical.ts b/clients/client-comprehendmedical/src/ComprehendMedical.ts index 67a9a2c9ba3e6..b4487dc5738b9 100644 --- a/clients/client-comprehendmedical/src/ComprehendMedical.ts +++ b/clients/client-comprehendmedical/src/ComprehendMedical.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DescribeEntitiesDetectionV2JobCommand, @@ -124,7 +124,7 @@ import { StopSNOMEDCTInferenceJobCommandInput, StopSNOMEDCTInferenceJobCommandOutput, } from "./commands/StopSNOMEDCTInferenceJobCommand"; -import { ComprehendMedicalClient, ComprehendMedicalClientConfig } from "./ComprehendMedicalClient"; +import { ComprehendMedicalClient } from "./ComprehendMedicalClient"; const commands = { DescribeEntitiesDetectionV2JobCommand, diff --git a/clients/client-comprehendmedical/src/ComprehendMedicalClient.ts b/clients/client-comprehendmedical/src/ComprehendMedicalClient.ts index 41346921a37f5..5fc51971fb311 100644 --- a/clients/client-comprehendmedical/src/ComprehendMedicalClient.ts +++ b/clients/client-comprehendmedical/src/ComprehendMedicalClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultComprehendMedicalHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -150,7 +159,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-comprehendmedical/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-comprehendmedical/src/auth/httpAuthExtensionConfiguration.ts index b03529414a058..1c5bfe0d50a94 100644 --- a/clients/client-comprehendmedical/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-comprehendmedical/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ComprehendMedicalHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ComprehendMedicalHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-comprehendmedical/src/auth/httpAuthSchemeProvider.ts b/clients/client-comprehendmedical/src/auth/httpAuthSchemeProvider.ts index 0909f36565478..9f72fba54474b 100644 --- a/clients/client-comprehendmedical/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-comprehendmedical/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ComprehendMedicalClientConfig, ComprehendMedicalClientResolvedConfig } from "../ComprehendMedicalClient"; +import { type ComprehendMedicalClientResolvedConfig, ComprehendMedicalClientConfig } from "../ComprehendMedicalClient"; /** * @internal diff --git a/clients/client-comprehendmedical/src/commands/DescribeEntitiesDetectionV2JobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribeEntitiesDetectionV2JobCommand.ts index f28dfd07a2378..eeb37b7d8e717 100644 --- a/clients/client-comprehendmedical/src/commands/DescribeEntitiesDetectionV2JobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribeEntitiesDetectionV2JobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEntitiesDetectionV2JobRequest, DescribeEntitiesDetectionV2JobResponse } from "../models/models_0"; +import type { DescribeEntitiesDetectionV2JobRequest, DescribeEntitiesDetectionV2JobResponse } from "../models/models_0"; import { DescribeEntitiesDetectionV2Job } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/DescribeICD10CMInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribeICD10CMInferenceJobCommand.ts index d4f9b3509a36c..2868a14a74e5f 100644 --- a/clients/client-comprehendmedical/src/commands/DescribeICD10CMInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribeICD10CMInferenceJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeICD10CMInferenceJobRequest, DescribeICD10CMInferenceJobResponse } from "../models/models_0"; +import type { DescribeICD10CMInferenceJobRequest, DescribeICD10CMInferenceJobResponse } from "../models/models_0"; import { DescribeICD10CMInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/DescribePHIDetectionJobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribePHIDetectionJobCommand.ts index 399a31e42a996..de78fe1ea2dd9 100644 --- a/clients/client-comprehendmedical/src/commands/DescribePHIDetectionJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribePHIDetectionJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePHIDetectionJobRequest, DescribePHIDetectionJobResponse } from "../models/models_0"; +import type { DescribePHIDetectionJobRequest, DescribePHIDetectionJobResponse } from "../models/models_0"; import { DescribePHIDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/DescribeRxNormInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribeRxNormInferenceJobCommand.ts index 538ecaa282464..db6afbb13dde2 100644 --- a/clients/client-comprehendmedical/src/commands/DescribeRxNormInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribeRxNormInferenceJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRxNormInferenceJobRequest, DescribeRxNormInferenceJobResponse } from "../models/models_0"; +import type { DescribeRxNormInferenceJobRequest, DescribeRxNormInferenceJobResponse } from "../models/models_0"; import { DescribeRxNormInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/DescribeSNOMEDCTInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/DescribeSNOMEDCTInferenceJobCommand.ts index 87ef9b00c0fee..e99cbd02a1f38 100644 --- a/clients/client-comprehendmedical/src/commands/DescribeSNOMEDCTInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DescribeSNOMEDCTInferenceJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSNOMEDCTInferenceJobRequest, DescribeSNOMEDCTInferenceJobResponse } from "../models/models_0"; +import type { DescribeSNOMEDCTInferenceJobRequest, DescribeSNOMEDCTInferenceJobResponse } from "../models/models_0"; import { DescribeSNOMEDCTInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/DetectEntitiesCommand.ts b/clients/client-comprehendmedical/src/commands/DetectEntitiesCommand.ts index d965147467599..41e528326db9b 100644 --- a/clients/client-comprehendmedical/src/commands/DetectEntitiesCommand.ts +++ b/clients/client-comprehendmedical/src/commands/DetectEntitiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectEntitiesRequest, DetectEntitiesResponse } from "../models/models_0"; +import type { DetectEntitiesRequest, DetectEntitiesResponse } from "../models/models_0"; import { DetectEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/DetectEntitiesV2Command.ts b/clients/client-comprehendmedical/src/commands/DetectEntitiesV2Command.ts index d3a230c0915f3..e2e61da619c6d 100644 --- a/clients/client-comprehendmedical/src/commands/DetectEntitiesV2Command.ts +++ b/clients/client-comprehendmedical/src/commands/DetectEntitiesV2Command.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectEntitiesV2Request, DetectEntitiesV2Response } from "../models/models_0"; +import type { DetectEntitiesV2Request, DetectEntitiesV2Response } from "../models/models_0"; import { DetectEntitiesV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/DetectPHICommand.ts b/clients/client-comprehendmedical/src/commands/DetectPHICommand.ts index 007269b05ced9..35d115d838de5 100644 --- a/clients/client-comprehendmedical/src/commands/DetectPHICommand.ts +++ b/clients/client-comprehendmedical/src/commands/DetectPHICommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectPHIRequest, DetectPHIResponse } from "../models/models_0"; +import type { DetectPHIRequest, DetectPHIResponse } from "../models/models_0"; import { DetectPHI } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/InferICD10CMCommand.ts b/clients/client-comprehendmedical/src/commands/InferICD10CMCommand.ts index 6ffaebf6680e4..eb9d1ef8780d1 100644 --- a/clients/client-comprehendmedical/src/commands/InferICD10CMCommand.ts +++ b/clients/client-comprehendmedical/src/commands/InferICD10CMCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InferICD10CMRequest, InferICD10CMResponse } from "../models/models_0"; +import type { InferICD10CMRequest, InferICD10CMResponse } from "../models/models_0"; import { InferICD10CM } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/InferRxNormCommand.ts b/clients/client-comprehendmedical/src/commands/InferRxNormCommand.ts index d18c128792c1c..6215e5500f95a 100644 --- a/clients/client-comprehendmedical/src/commands/InferRxNormCommand.ts +++ b/clients/client-comprehendmedical/src/commands/InferRxNormCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InferRxNormRequest, InferRxNormResponse } from "../models/models_0"; +import type { InferRxNormRequest, InferRxNormResponse } from "../models/models_0"; import { InferRxNorm } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/InferSNOMEDCTCommand.ts b/clients/client-comprehendmedical/src/commands/InferSNOMEDCTCommand.ts index 96976995c6bf6..368d59430959c 100644 --- a/clients/client-comprehendmedical/src/commands/InferSNOMEDCTCommand.ts +++ b/clients/client-comprehendmedical/src/commands/InferSNOMEDCTCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InferSNOMEDCTRequest, InferSNOMEDCTResponse } from "../models/models_0"; +import type { InferSNOMEDCTRequest, InferSNOMEDCTResponse } from "../models/models_0"; import { InferSNOMEDCT } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/ListEntitiesDetectionV2JobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListEntitiesDetectionV2JobsCommand.ts index a1aad131401cb..e292c92d965d6 100644 --- a/clients/client-comprehendmedical/src/commands/ListEntitiesDetectionV2JobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListEntitiesDetectionV2JobsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEntitiesDetectionV2JobsRequest, ListEntitiesDetectionV2JobsResponse } from "../models/models_0"; +import type { ListEntitiesDetectionV2JobsRequest, ListEntitiesDetectionV2JobsResponse } from "../models/models_0"; import { ListEntitiesDetectionV2Jobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/ListICD10CMInferenceJobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListICD10CMInferenceJobsCommand.ts index f16d357281be5..ae9117b4841f3 100644 --- a/clients/client-comprehendmedical/src/commands/ListICD10CMInferenceJobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListICD10CMInferenceJobsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListICD10CMInferenceJobsRequest, ListICD10CMInferenceJobsResponse } from "../models/models_0"; +import type { ListICD10CMInferenceJobsRequest, ListICD10CMInferenceJobsResponse } from "../models/models_0"; import { ListICD10CMInferenceJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/ListPHIDetectionJobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListPHIDetectionJobsCommand.ts index c59116c053dda..7d8358f703fd1 100644 --- a/clients/client-comprehendmedical/src/commands/ListPHIDetectionJobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListPHIDetectionJobsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPHIDetectionJobsRequest, ListPHIDetectionJobsResponse } from "../models/models_0"; +import type { ListPHIDetectionJobsRequest, ListPHIDetectionJobsResponse } from "../models/models_0"; import { ListPHIDetectionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/ListRxNormInferenceJobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListRxNormInferenceJobsCommand.ts index 17a90fd2a5d36..d70c010280855 100644 --- a/clients/client-comprehendmedical/src/commands/ListRxNormInferenceJobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListRxNormInferenceJobsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRxNormInferenceJobsRequest, ListRxNormInferenceJobsResponse } from "../models/models_0"; +import type { ListRxNormInferenceJobsRequest, ListRxNormInferenceJobsResponse } from "../models/models_0"; import { ListRxNormInferenceJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/ListSNOMEDCTInferenceJobsCommand.ts b/clients/client-comprehendmedical/src/commands/ListSNOMEDCTInferenceJobsCommand.ts index f5731a7ed3953..c6158dd8d7108 100644 --- a/clients/client-comprehendmedical/src/commands/ListSNOMEDCTInferenceJobsCommand.ts +++ b/clients/client-comprehendmedical/src/commands/ListSNOMEDCTInferenceJobsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSNOMEDCTInferenceJobsRequest, ListSNOMEDCTInferenceJobsResponse } from "../models/models_0"; +import type { ListSNOMEDCTInferenceJobsRequest, ListSNOMEDCTInferenceJobsResponse } from "../models/models_0"; import { ListSNOMEDCTInferenceJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StartEntitiesDetectionV2JobCommand.ts b/clients/client-comprehendmedical/src/commands/StartEntitiesDetectionV2JobCommand.ts index f4baefcfc1ce8..f06354259ee68 100644 --- a/clients/client-comprehendmedical/src/commands/StartEntitiesDetectionV2JobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartEntitiesDetectionV2JobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartEntitiesDetectionV2JobRequest, StartEntitiesDetectionV2JobResponse } from "../models/models_0"; +import type { StartEntitiesDetectionV2JobRequest, StartEntitiesDetectionV2JobResponse } from "../models/models_0"; import { StartEntitiesDetectionV2Job } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StartICD10CMInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StartICD10CMInferenceJobCommand.ts index 627d664ea2077..4d0eeb627fc90 100644 --- a/clients/client-comprehendmedical/src/commands/StartICD10CMInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartICD10CMInferenceJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartICD10CMInferenceJobRequest, StartICD10CMInferenceJobResponse } from "../models/models_0"; +import type { StartICD10CMInferenceJobRequest, StartICD10CMInferenceJobResponse } from "../models/models_0"; import { StartICD10CMInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StartPHIDetectionJobCommand.ts b/clients/client-comprehendmedical/src/commands/StartPHIDetectionJobCommand.ts index 8d69900422a2b..82c5338fe802a 100644 --- a/clients/client-comprehendmedical/src/commands/StartPHIDetectionJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartPHIDetectionJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPHIDetectionJobRequest, StartPHIDetectionJobResponse } from "../models/models_0"; +import type { StartPHIDetectionJobRequest, StartPHIDetectionJobResponse } from "../models/models_0"; import { StartPHIDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StartRxNormInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StartRxNormInferenceJobCommand.ts index d006d8a5287b8..6c39bd4e34e99 100644 --- a/clients/client-comprehendmedical/src/commands/StartRxNormInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartRxNormInferenceJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRxNormInferenceJobRequest, StartRxNormInferenceJobResponse } from "../models/models_0"; +import type { StartRxNormInferenceJobRequest, StartRxNormInferenceJobResponse } from "../models/models_0"; import { StartRxNormInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StartSNOMEDCTInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StartSNOMEDCTInferenceJobCommand.ts index bb6a0f20e67fd..bab6b29983271 100644 --- a/clients/client-comprehendmedical/src/commands/StartSNOMEDCTInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StartSNOMEDCTInferenceJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSNOMEDCTInferenceJobRequest, StartSNOMEDCTInferenceJobResponse } from "../models/models_0"; +import type { StartSNOMEDCTInferenceJobRequest, StartSNOMEDCTInferenceJobResponse } from "../models/models_0"; import { StartSNOMEDCTInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StopEntitiesDetectionV2JobCommand.ts b/clients/client-comprehendmedical/src/commands/StopEntitiesDetectionV2JobCommand.ts index 30a04e1014786..c6c9dd9d002af 100644 --- a/clients/client-comprehendmedical/src/commands/StopEntitiesDetectionV2JobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopEntitiesDetectionV2JobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopEntitiesDetectionV2JobRequest, StopEntitiesDetectionV2JobResponse } from "../models/models_0"; +import type { StopEntitiesDetectionV2JobRequest, StopEntitiesDetectionV2JobResponse } from "../models/models_0"; import { StopEntitiesDetectionV2Job } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StopICD10CMInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StopICD10CMInferenceJobCommand.ts index f77089a65d43a..ed98d9b37f70a 100644 --- a/clients/client-comprehendmedical/src/commands/StopICD10CMInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopICD10CMInferenceJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopICD10CMInferenceJobRequest, StopICD10CMInferenceJobResponse } from "../models/models_0"; +import type { StopICD10CMInferenceJobRequest, StopICD10CMInferenceJobResponse } from "../models/models_0"; import { StopICD10CMInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StopPHIDetectionJobCommand.ts b/clients/client-comprehendmedical/src/commands/StopPHIDetectionJobCommand.ts index 7ae0c6cacfb9c..679ead759bdb1 100644 --- a/clients/client-comprehendmedical/src/commands/StopPHIDetectionJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopPHIDetectionJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopPHIDetectionJobRequest, StopPHIDetectionJobResponse } from "../models/models_0"; +import type { StopPHIDetectionJobRequest, StopPHIDetectionJobResponse } from "../models/models_0"; import { StopPHIDetectionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StopRxNormInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StopRxNormInferenceJobCommand.ts index 2b38a0f22f9e7..ad5c163ff2801 100644 --- a/clients/client-comprehendmedical/src/commands/StopRxNormInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopRxNormInferenceJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopRxNormInferenceJobRequest, StopRxNormInferenceJobResponse } from "../models/models_0"; +import type { StopRxNormInferenceJobRequest, StopRxNormInferenceJobResponse } from "../models/models_0"; import { StopRxNormInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/commands/StopSNOMEDCTInferenceJobCommand.ts b/clients/client-comprehendmedical/src/commands/StopSNOMEDCTInferenceJobCommand.ts index 7b02a3e469841..84eacf69494b5 100644 --- a/clients/client-comprehendmedical/src/commands/StopSNOMEDCTInferenceJobCommand.ts +++ b/clients/client-comprehendmedical/src/commands/StopSNOMEDCTInferenceJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComprehendMedicalClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComprehendMedicalClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopSNOMEDCTInferenceJobRequest, StopSNOMEDCTInferenceJobResponse } from "../models/models_0"; +import type { StopSNOMEDCTInferenceJobRequest, StopSNOMEDCTInferenceJobResponse } from "../models/models_0"; import { StopSNOMEDCTInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-comprehendmedical/src/endpoint/EndpointParameters.ts b/clients/client-comprehendmedical/src/endpoint/EndpointParameters.ts index 1435196891d89..dcb9f4d1c670f 100644 --- a/clients/client-comprehendmedical/src/endpoint/EndpointParameters.ts +++ b/clients/client-comprehendmedical/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-comprehendmedical/src/endpoint/endpointResolver.ts b/clients/client-comprehendmedical/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-comprehendmedical/src/endpoint/endpointResolver.ts +++ b/clients/client-comprehendmedical/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-comprehendmedical/src/extensionConfiguration.ts b/clients/client-comprehendmedical/src/extensionConfiguration.ts index da33fb4c140b5..bcaf5dd50423f 100644 --- a/clients/client-comprehendmedical/src/extensionConfiguration.ts +++ b/clients/client-comprehendmedical/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-comprehendmedical/src/models/ComprehendMedicalServiceException.ts b/clients/client-comprehendmedical/src/models/ComprehendMedicalServiceException.ts index 5ac16f01a1e74..8924f07e98254 100644 --- a/clients/client-comprehendmedical/src/models/ComprehendMedicalServiceException.ts +++ b/clients/client-comprehendmedical/src/models/ComprehendMedicalServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-comprehendmedical/src/models/errors.ts b/clients/client-comprehendmedical/src/models/errors.ts index 139223d849d8b..f25ac8f224ffc 100644 --- a/clients/client-comprehendmedical/src/models/errors.ts +++ b/clients/client-comprehendmedical/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ComprehendMedicalServiceException as __BaseException } from "./ComprehendMedicalServiceException"; diff --git a/clients/client-comprehendmedical/src/runtimeConfig.browser.ts b/clients/client-comprehendmedical/src/runtimeConfig.browser.ts index 51d1d08395819..2860fdbe888ac 100644 --- a/clients/client-comprehendmedical/src/runtimeConfig.browser.ts +++ b/clients/client-comprehendmedical/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient"; + +import type { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-comprehendmedical/src/runtimeConfig.native.ts b/clients/client-comprehendmedical/src/runtimeConfig.native.ts index 4296005d287e9..183f0ddbabb77 100644 --- a/clients/client-comprehendmedical/src/runtimeConfig.native.ts +++ b/clients/client-comprehendmedical/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient"; +import type { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-comprehendmedical/src/runtimeConfig.shared.ts b/clients/client-comprehendmedical/src/runtimeConfig.shared.ts index 3620b16a4f634..62252b36fd3d4 100644 --- a/clients/client-comprehendmedical/src/runtimeConfig.shared.ts +++ b/clients/client-comprehendmedical/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultComprehendMedicalHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient"; +import type { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-comprehendmedical/src/runtimeConfig.ts b/clients/client-comprehendmedical/src/runtimeConfig.ts index 8ac15850598d0..13ead68d06038 100644 --- a/clients/client-comprehendmedical/src/runtimeConfig.ts +++ b/clients/client-comprehendmedical/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient"; + +import type { ComprehendMedicalClientConfig } from "./ComprehendMedicalClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-comprehendmedical/src/runtimeExtensions.ts b/clients/client-comprehendmedical/src/runtimeExtensions.ts index 803a14fc1c482..b069d472ac49a 100644 --- a/clients/client-comprehendmedical/src/runtimeExtensions.ts +++ b/clients/client-comprehendmedical/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ComprehendMedicalExtensionConfiguration } from "./extensionConfiguration"; +import type { ComprehendMedicalExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-comprehendmedical/src/schemas/schemas_0.ts b/clients/client-comprehendmedical/src/schemas/schemas_0.ts index 8a8887c492ae8..f4397cdd8bae8 100644 --- a/clients/client-comprehendmedical/src/schemas/schemas_0.ts +++ b/clients/client-comprehendmedical/src/schemas/schemas_0.ts @@ -176,7 +176,7 @@ const n0 = "com.amazonaws.comprehendmedical"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ComprehendMedicalServiceException as __ComprehendMedicalServiceException } from "../models/ComprehendMedicalServiceException"; import { diff --git a/clients/client-compute-optimizer-automation/package.json b/clients/client-compute-optimizer-automation/package.json index bf72cdf7e10b2..dac873023444e 100644 --- a/clients/client-compute-optimizer-automation/package.json +++ b/clients/client-compute-optimizer-automation/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-compute-optimizer-automation/src/ComputeOptimizerAutomation.ts b/clients/client-compute-optimizer-automation/src/ComputeOptimizerAutomation.ts index eb5f27cd0aeca..56af8d2481480 100644 --- a/clients/client-compute-optimizer-automation/src/ComputeOptimizerAutomation.ts +++ b/clients/client-compute-optimizer-automation/src/ComputeOptimizerAutomation.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateAccountsCommand, @@ -113,10 +113,7 @@ import { UpdateEnrollmentConfigurationCommandInput, UpdateEnrollmentConfigurationCommandOutput, } from "./commands/UpdateEnrollmentConfigurationCommand"; -import { - ComputeOptimizerAutomationClient, - ComputeOptimizerAutomationClientConfig, -} from "./ComputeOptimizerAutomationClient"; +import { ComputeOptimizerAutomationClient } from "./ComputeOptimizerAutomationClient"; const commands = { AssociateAccountsCommand, diff --git a/clients/client-compute-optimizer-automation/src/ComputeOptimizerAutomationClient.ts b/clients/client-compute-optimizer-automation/src/ComputeOptimizerAutomationClient.ts index 72d0841b2dd64..6af6dcd6b5a33 100644 --- a/clients/client-compute-optimizer-automation/src/ComputeOptimizerAutomationClient.ts +++ b/clients/client-compute-optimizer-automation/src/ComputeOptimizerAutomationClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultComputeOptimizerAutomationHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateAccountsCommandInput, AssociateAccountsCommandOutput } from "./commands/AssociateAccountsCommand"; @@ -138,7 +147,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-compute-optimizer-automation/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-compute-optimizer-automation/src/auth/httpAuthExtensionConfiguration.ts index e85e733a9e34f..bf86f2e3094b4 100644 --- a/clients/client-compute-optimizer-automation/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-compute-optimizer-automation/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ComputeOptimizerAutomationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ComputeOptimizerAutomationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-compute-optimizer-automation/src/auth/httpAuthSchemeProvider.ts b/clients/client-compute-optimizer-automation/src/auth/httpAuthSchemeProvider.ts index 5b1464eacf3f0..7599f53e6a6dd 100644 --- a/clients/client-compute-optimizer-automation/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-compute-optimizer-automation/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ComputeOptimizerAutomationClientResolvedConfig, ComputeOptimizerAutomationClientConfig, - ComputeOptimizerAutomationClientResolvedConfig, } from "../ComputeOptimizerAutomationClient"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/AssociateAccountsCommand.ts b/clients/client-compute-optimizer-automation/src/commands/AssociateAccountsCommand.ts index 8f586c5d13f60..ad2ac0b0a050e 100644 --- a/clients/client-compute-optimizer-automation/src/commands/AssociateAccountsCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/AssociateAccountsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAccountsRequest, AssociateAccountsResponse } from "../models/models_0"; +import type { AssociateAccountsRequest, AssociateAccountsResponse } from "../models/models_0"; import { AssociateAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/CreateAutomationRuleCommand.ts b/clients/client-compute-optimizer-automation/src/commands/CreateAutomationRuleCommand.ts index b3a861f48ec59..622ec7a90ccce 100644 --- a/clients/client-compute-optimizer-automation/src/commands/CreateAutomationRuleCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/CreateAutomationRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAutomationRuleRequest, CreateAutomationRuleResponse } from "../models/models_0"; +import type { CreateAutomationRuleRequest, CreateAutomationRuleResponse } from "../models/models_0"; import { CreateAutomationRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/DeleteAutomationRuleCommand.ts b/clients/client-compute-optimizer-automation/src/commands/DeleteAutomationRuleCommand.ts index 064b2d25791af..b5d7bbe98f69e 100644 --- a/clients/client-compute-optimizer-automation/src/commands/DeleteAutomationRuleCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/DeleteAutomationRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAutomationRuleRequest, DeleteAutomationRuleResponse } from "../models/models_0"; +import type { DeleteAutomationRuleRequest, DeleteAutomationRuleResponse } from "../models/models_0"; import { DeleteAutomationRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/DisassociateAccountsCommand.ts b/clients/client-compute-optimizer-automation/src/commands/DisassociateAccountsCommand.ts index d32eca1077e85..5ca08a5578631 100644 --- a/clients/client-compute-optimizer-automation/src/commands/DisassociateAccountsCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/DisassociateAccountsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateAccountsRequest, DisassociateAccountsResponse } from "../models/models_0"; +import type { DisassociateAccountsRequest, DisassociateAccountsResponse } from "../models/models_0"; import { DisassociateAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/GetAutomationEventCommand.ts b/clients/client-compute-optimizer-automation/src/commands/GetAutomationEventCommand.ts index 426aea9081a4c..ef12be169bc0f 100644 --- a/clients/client-compute-optimizer-automation/src/commands/GetAutomationEventCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/GetAutomationEventCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAutomationEventRequest, GetAutomationEventResponse } from "../models/models_0"; +import type { GetAutomationEventRequest, GetAutomationEventResponse } from "../models/models_0"; import { GetAutomationEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/GetAutomationRuleCommand.ts b/clients/client-compute-optimizer-automation/src/commands/GetAutomationRuleCommand.ts index fc7b9b437501e..81ad1d6d72615 100644 --- a/clients/client-compute-optimizer-automation/src/commands/GetAutomationRuleCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/GetAutomationRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAutomationRuleRequest, GetAutomationRuleResponse } from "../models/models_0"; +import type { GetAutomationRuleRequest, GetAutomationRuleResponse } from "../models/models_0"; import { GetAutomationRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/GetEnrollmentConfigurationCommand.ts b/clients/client-compute-optimizer-automation/src/commands/GetEnrollmentConfigurationCommand.ts index 464305d5f00f4..d5841ae60e91c 100644 --- a/clients/client-compute-optimizer-automation/src/commands/GetEnrollmentConfigurationCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/GetEnrollmentConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnrollmentConfigurationRequest, GetEnrollmentConfigurationResponse } from "../models/models_0"; +import type { GetEnrollmentConfigurationRequest, GetEnrollmentConfigurationResponse } from "../models/models_0"; import { GetEnrollmentConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/ListAccountsCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListAccountsCommand.ts index 74ed6150edece..ece5950f0cc8a 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListAccountsCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListAccountsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0"; +import type { ListAccountsRequest, ListAccountsResponse } from "../models/models_0"; import { ListAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventStepsCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventStepsCommand.ts index d7d45a93e6d33..72b2c3c85a80f 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventStepsCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventStepsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutomationEventStepsRequest, ListAutomationEventStepsResponse } from "../models/models_0"; +import type { ListAutomationEventStepsRequest, ListAutomationEventStepsResponse } from "../models/models_0"; import { ListAutomationEventSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventSummariesCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventSummariesCommand.ts index 32167879d93dd..74b8042eaac74 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventSummariesCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventSummariesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutomationEventSummariesRequest, ListAutomationEventSummariesResponse } from "../models/models_0"; +import type { ListAutomationEventSummariesRequest, ListAutomationEventSummariesResponse } from "../models/models_0"; import { ListAutomationEventSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventsCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventsCommand.ts index a3fd27823befc..78272cd879378 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventsCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListAutomationEventsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutomationEventsRequest, ListAutomationEventsResponse } from "../models/models_0"; +import type { ListAutomationEventsRequest, ListAutomationEventsResponse } from "../models/models_0"; import { ListAutomationEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulePreviewCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulePreviewCommand.ts index 133fff3a38efa..1e1dbc35fe470 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulePreviewCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulePreviewCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutomationRulePreviewRequest, ListAutomationRulePreviewResponse } from "../models/models_0"; +import type { ListAutomationRulePreviewRequest, ListAutomationRulePreviewResponse } from "../models/models_0"; import { ListAutomationRulePreview } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulePreviewSummariesCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulePreviewSummariesCommand.ts index 806a9a359d7ff..836d9c684f79a 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulePreviewSummariesCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulePreviewSummariesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAutomationRulePreviewSummariesRequest, ListAutomationRulePreviewSummariesResponse, } from "../models/models_0"; diff --git a/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulesCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulesCommand.ts index 8a258805a5c80..3f729272aee18 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulesCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListAutomationRulesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutomationRulesRequest, ListAutomationRulesResponse } from "../models/models_0"; +import type { ListAutomationRulesRequest, ListAutomationRulesResponse } from "../models/models_0"; import { ListAutomationRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/ListRecommendedActionSummariesCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListRecommendedActionSummariesCommand.ts index 3a4762e302906..f19b9a0182032 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListRecommendedActionSummariesCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListRecommendedActionSummariesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendedActionSummariesRequest, ListRecommendedActionSummariesResponse } from "../models/models_0"; +import type { ListRecommendedActionSummariesRequest, ListRecommendedActionSummariesResponse } from "../models/models_0"; import { ListRecommendedActionSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/ListRecommendedActionsCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListRecommendedActionsCommand.ts index 217a690ff0345..15b6acb5af1ac 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListRecommendedActionsCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListRecommendedActionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendedActionsRequest, ListRecommendedActionsResponse } from "../models/models_0"; +import type { ListRecommendedActionsRequest, ListRecommendedActionsResponse } from "../models/models_0"; import { ListRecommendedActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/ListTagsForResourceCommand.ts b/clients/client-compute-optimizer-automation/src/commands/ListTagsForResourceCommand.ts index 4b415c4bab126..cbf195a7776d6 100644 --- a/clients/client-compute-optimizer-automation/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/RollbackAutomationEventCommand.ts b/clients/client-compute-optimizer-automation/src/commands/RollbackAutomationEventCommand.ts index 528379aa5db97..c5e8ea28ac9ed 100644 --- a/clients/client-compute-optimizer-automation/src/commands/RollbackAutomationEventCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/RollbackAutomationEventCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RollbackAutomationEventRequest, RollbackAutomationEventResponse } from "../models/models_0"; +import type { RollbackAutomationEventRequest, RollbackAutomationEventResponse } from "../models/models_0"; import { RollbackAutomationEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/StartAutomationEventCommand.ts b/clients/client-compute-optimizer-automation/src/commands/StartAutomationEventCommand.ts index 3ed005c813b56..fb98927fda5f5 100644 --- a/clients/client-compute-optimizer-automation/src/commands/StartAutomationEventCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/StartAutomationEventCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAutomationEventRequest, StartAutomationEventResponse } from "../models/models_0"; +import type { StartAutomationEventRequest, StartAutomationEventResponse } from "../models/models_0"; import { StartAutomationEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/TagResourceCommand.ts b/clients/client-compute-optimizer-automation/src/commands/TagResourceCommand.ts index 8120ca02b283f..7e62171804bc6 100644 --- a/clients/client-compute-optimizer-automation/src/commands/TagResourceCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/UntagResourceCommand.ts b/clients/client-compute-optimizer-automation/src/commands/UntagResourceCommand.ts index 19c9c69ccfb77..258676a34c41c 100644 --- a/clients/client-compute-optimizer-automation/src/commands/UntagResourceCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/UpdateAutomationRuleCommand.ts b/clients/client-compute-optimizer-automation/src/commands/UpdateAutomationRuleCommand.ts index a2a3b122519c9..44d5900300850 100644 --- a/clients/client-compute-optimizer-automation/src/commands/UpdateAutomationRuleCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/UpdateAutomationRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAutomationRuleRequest, UpdateAutomationRuleResponse } from "../models/models_0"; +import type { UpdateAutomationRuleRequest, UpdateAutomationRuleResponse } from "../models/models_0"; import { UpdateAutomationRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/commands/UpdateEnrollmentConfigurationCommand.ts b/clients/client-compute-optimizer-automation/src/commands/UpdateEnrollmentConfigurationCommand.ts index c7e9d5ed6d3d8..ae3b23aff3eb5 100644 --- a/clients/client-compute-optimizer-automation/src/commands/UpdateEnrollmentConfigurationCommand.ts +++ b/clients/client-compute-optimizer-automation/src/commands/UpdateEnrollmentConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ComputeOptimizerAutomationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ComputeOptimizerAutomationClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnrollmentConfigurationRequest, UpdateEnrollmentConfigurationResponse } from "../models/models_0"; +import type { UpdateEnrollmentConfigurationRequest, UpdateEnrollmentConfigurationResponse } from "../models/models_0"; import { UpdateEnrollmentConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer-automation/src/endpoint/EndpointParameters.ts b/clients/client-compute-optimizer-automation/src/endpoint/EndpointParameters.ts index 753676a0c0727..6b5ba4bd8db9e 100644 --- a/clients/client-compute-optimizer-automation/src/endpoint/EndpointParameters.ts +++ b/clients/client-compute-optimizer-automation/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-compute-optimizer-automation/src/endpoint/endpointResolver.ts b/clients/client-compute-optimizer-automation/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-compute-optimizer-automation/src/endpoint/endpointResolver.ts +++ b/clients/client-compute-optimizer-automation/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-compute-optimizer-automation/src/extensionConfiguration.ts b/clients/client-compute-optimizer-automation/src/extensionConfiguration.ts index ec9b55bccda2a..089dd19dda36e 100644 --- a/clients/client-compute-optimizer-automation/src/extensionConfiguration.ts +++ b/clients/client-compute-optimizer-automation/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-compute-optimizer-automation/src/models/ComputeOptimizerAutomationServiceException.ts b/clients/client-compute-optimizer-automation/src/models/ComputeOptimizerAutomationServiceException.ts index 3bcd0150b429f..119d8d677cd69 100644 --- a/clients/client-compute-optimizer-automation/src/models/ComputeOptimizerAutomationServiceException.ts +++ b/clients/client-compute-optimizer-automation/src/models/ComputeOptimizerAutomationServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-compute-optimizer-automation/src/models/errors.ts b/clients/client-compute-optimizer-automation/src/models/errors.ts index 4d5bb55f2432c..24df811b2d862 100644 --- a/clients/client-compute-optimizer-automation/src/models/errors.ts +++ b/clients/client-compute-optimizer-automation/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ComputeOptimizerAutomationServiceException as __BaseException } from "./ComputeOptimizerAutomationServiceException"; diff --git a/clients/client-compute-optimizer-automation/src/pagination/Interfaces.ts b/clients/client-compute-optimizer-automation/src/pagination/Interfaces.ts index 14ef3007ea13f..2c6e5d27c6175 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/Interfaces.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ComputeOptimizerAutomationClient } from "../ComputeOptimizerAutomationClient"; diff --git a/clients/client-compute-optimizer-automation/src/pagination/ListAccountsPaginator.ts b/clients/client-compute-optimizer-automation/src/pagination/ListAccountsPaginator.ts index 230d6b752dec8..dfda9c95e9d63 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/ListAccountsPaginator.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/ListAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountsCommand, diff --git a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventStepsPaginator.ts b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventStepsPaginator.ts index 20dc91dc36500..d29008d626f2c 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventStepsPaginator.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventStepsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAutomationEventStepsCommand, diff --git a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventSummariesPaginator.ts b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventSummariesPaginator.ts index abea8ed32fb18..1975c3b03a5b7 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventSummariesPaginator.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAutomationEventSummariesCommand, diff --git a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventsPaginator.ts b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventsPaginator.ts index 53181c3821ad0..0a99471a27927 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventsPaginator.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAutomationEventsCommand, diff --git a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulePreviewPaginator.ts b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulePreviewPaginator.ts index 5512f0ad1fa12..a7470139e3b8c 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulePreviewPaginator.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulePreviewPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAutomationRulePreviewCommand, diff --git a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulePreviewSummariesPaginator.ts b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulePreviewSummariesPaginator.ts index 4b0a883999317..3f55646e1beff 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulePreviewSummariesPaginator.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulePreviewSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAutomationRulePreviewSummariesCommand, diff --git a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulesPaginator.ts b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulesPaginator.ts index 1e16b34b66f12..730c81f988cbe 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulesPaginator.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/ListAutomationRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAutomationRulesCommand, diff --git a/clients/client-compute-optimizer-automation/src/pagination/ListRecommendedActionSummariesPaginator.ts b/clients/client-compute-optimizer-automation/src/pagination/ListRecommendedActionSummariesPaginator.ts index 2f7fce11c8758..903c4735e881f 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/ListRecommendedActionSummariesPaginator.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/ListRecommendedActionSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendedActionSummariesCommand, diff --git a/clients/client-compute-optimizer-automation/src/pagination/ListRecommendedActionsPaginator.ts b/clients/client-compute-optimizer-automation/src/pagination/ListRecommendedActionsPaginator.ts index 83e2b50f43f17..f39528f5e94b8 100644 --- a/clients/client-compute-optimizer-automation/src/pagination/ListRecommendedActionsPaginator.ts +++ b/clients/client-compute-optimizer-automation/src/pagination/ListRecommendedActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendedActionsCommand, diff --git a/clients/client-compute-optimizer-automation/src/runtimeConfig.browser.ts b/clients/client-compute-optimizer-automation/src/runtimeConfig.browser.ts index c7a2642c6a13f..1d5d1d8c74ca1 100644 --- a/clients/client-compute-optimizer-automation/src/runtimeConfig.browser.ts +++ b/clients/client-compute-optimizer-automation/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ComputeOptimizerAutomationClientConfig } from "./ComputeOptimizerAutomationClient"; + +import type { ComputeOptimizerAutomationClientConfig } from "./ComputeOptimizerAutomationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-compute-optimizer-automation/src/runtimeConfig.native.ts b/clients/client-compute-optimizer-automation/src/runtimeConfig.native.ts index 78faab03042c7..b40c8e39a008b 100644 --- a/clients/client-compute-optimizer-automation/src/runtimeConfig.native.ts +++ b/clients/client-compute-optimizer-automation/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ComputeOptimizerAutomationClientConfig } from "./ComputeOptimizerAutomationClient"; +import type { ComputeOptimizerAutomationClientConfig } from "./ComputeOptimizerAutomationClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-compute-optimizer-automation/src/runtimeConfig.shared.ts b/clients/client-compute-optimizer-automation/src/runtimeConfig.shared.ts index 138c87e84524c..2090b9d59bbcf 100644 --- a/clients/client-compute-optimizer-automation/src/runtimeConfig.shared.ts +++ b/clients/client-compute-optimizer-automation/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultComputeOptimizerAutomationHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ComputeOptimizerAutomationClientConfig } from "./ComputeOptimizerAutomationClient"; +import type { ComputeOptimizerAutomationClientConfig } from "./ComputeOptimizerAutomationClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-compute-optimizer-automation/src/runtimeConfig.ts b/clients/client-compute-optimizer-automation/src/runtimeConfig.ts index 20409de40661d..b24dfb65411d9 100644 --- a/clients/client-compute-optimizer-automation/src/runtimeConfig.ts +++ b/clients/client-compute-optimizer-automation/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ComputeOptimizerAutomationClientConfig } from "./ComputeOptimizerAutomationClient"; + +import type { ComputeOptimizerAutomationClientConfig } from "./ComputeOptimizerAutomationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-compute-optimizer-automation/src/runtimeExtensions.ts b/clients/client-compute-optimizer-automation/src/runtimeExtensions.ts index c7fb4617b4372..90f375f262ab5 100644 --- a/clients/client-compute-optimizer-automation/src/runtimeExtensions.ts +++ b/clients/client-compute-optimizer-automation/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ComputeOptimizerAutomationExtensionConfiguration } from "./extensionConfiguration"; +import type { ComputeOptimizerAutomationExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-compute-optimizer-automation/src/schemas/schemas_0.ts b/clients/client-compute-optimizer-automation/src/schemas/schemas_0.ts index 3c36e3f99bd0d..7adb605d8df91 100644 --- a/clients/client-compute-optimizer-automation/src/schemas/schemas_0.ts +++ b/clients/client-compute-optimizer-automation/src/schemas/schemas_0.ts @@ -226,7 +226,7 @@ const n0 = "com.amazonaws.computeoptimizerautomation"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ComputeOptimizerAutomationServiceException as __ComputeOptimizerAutomationServiceException } from "../models/ComputeOptimizerAutomationServiceException"; import { diff --git a/clients/client-compute-optimizer/package.json b/clients/client-compute-optimizer/package.json index 3ef62482f3eee..3dc794cb372f0 100644 --- a/clients/client-compute-optimizer/package.json +++ b/clients/client-compute-optimizer/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-compute-optimizer/src/ComputeOptimizer.ts b/clients/client-compute-optimizer/src/ComputeOptimizer.ts index cb27bc92cd1df..08d92cf03d878 100644 --- a/clients/client-compute-optimizer/src/ComputeOptimizer.ts +++ b/clients/client-compute-optimizer/src/ComputeOptimizer.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteRecommendationPreferencesCommand, @@ -142,7 +142,7 @@ import { UpdateEnrollmentStatusCommandInput, UpdateEnrollmentStatusCommandOutput, } from "./commands/UpdateEnrollmentStatusCommand"; -import { ComputeOptimizerClient, ComputeOptimizerClientConfig } from "./ComputeOptimizerClient"; +import { ComputeOptimizerClient } from "./ComputeOptimizerClient"; const commands = { DeleteRecommendationPreferencesCommand, diff --git a/clients/client-compute-optimizer/src/ComputeOptimizerClient.ts b/clients/client-compute-optimizer/src/ComputeOptimizerClient.ts index dfc6c8ffd25a1..3960dcb1e8430 100644 --- a/clients/client-compute-optimizer/src/ComputeOptimizerClient.ts +++ b/clients/client-compute-optimizer/src/ComputeOptimizerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultComputeOptimizerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -176,7 +185,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-compute-optimizer/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-compute-optimizer/src/auth/httpAuthExtensionConfiguration.ts index fe1bd12618544..309fd79e43ddc 100644 --- a/clients/client-compute-optimizer/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-compute-optimizer/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ComputeOptimizerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ComputeOptimizerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-compute-optimizer/src/auth/httpAuthSchemeProvider.ts b/clients/client-compute-optimizer/src/auth/httpAuthSchemeProvider.ts index 1f75c05174f44..5d652fd7d1fcd 100644 --- a/clients/client-compute-optimizer/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-compute-optimizer/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ComputeOptimizerClientConfig, ComputeOptimizerClientResolvedConfig } from "../ComputeOptimizerClient"; +import { type ComputeOptimizerClientResolvedConfig, ComputeOptimizerClientConfig } from "../ComputeOptimizerClient"; /** * @internal diff --git a/clients/client-compute-optimizer/src/commands/DeleteRecommendationPreferencesCommand.ts b/clients/client-compute-optimizer/src/commands/DeleteRecommendationPreferencesCommand.ts index 1395223a9fe19..5184004d6502f 100644 --- a/clients/client-compute-optimizer/src/commands/DeleteRecommendationPreferencesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/DeleteRecommendationPreferencesCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecommendationPreferencesRequest, DeleteRecommendationPreferencesResponse } from "../models/models_0"; +import type { + DeleteRecommendationPreferencesRequest, + DeleteRecommendationPreferencesResponse, +} from "../models/models_0"; import { DeleteRecommendationPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/DescribeRecommendationExportJobsCommand.ts b/clients/client-compute-optimizer/src/commands/DescribeRecommendationExportJobsCommand.ts index ef733503bcccc..7ea10815f532f 100644 --- a/clients/client-compute-optimizer/src/commands/DescribeRecommendationExportJobsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/DescribeRecommendationExportJobsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecommendationExportJobsRequest, DescribeRecommendationExportJobsResponse } from "../models/models_0"; +import type { + DescribeRecommendationExportJobsRequest, + DescribeRecommendationExportJobsResponse, +} from "../models/models_0"; import { DescribeRecommendationExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/ExportAutoScalingGroupRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportAutoScalingGroupRecommendationsCommand.ts index efd27a2c00fa8..0f3e5b8b38c2d 100644 --- a/clients/client-compute-optimizer/src/commands/ExportAutoScalingGroupRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportAutoScalingGroupRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ExportAutoScalingGroupRecommendationsRequest, ExportAutoScalingGroupRecommendationsResponse, } from "../models/models_0"; diff --git a/clients/client-compute-optimizer/src/commands/ExportEBSVolumeRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportEBSVolumeRecommendationsCommand.ts index 211ea4877106d..00b20a361826c 100644 --- a/clients/client-compute-optimizer/src/commands/ExportEBSVolumeRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportEBSVolumeRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportEBSVolumeRecommendationsRequest, ExportEBSVolumeRecommendationsResponse } from "../models/models_0"; +import type { ExportEBSVolumeRecommendationsRequest, ExportEBSVolumeRecommendationsResponse } from "../models/models_0"; import { ExportEBSVolumeRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/ExportEC2InstanceRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportEC2InstanceRecommendationsCommand.ts index 99514fbbb3a36..695e72867e75d 100644 --- a/clients/client-compute-optimizer/src/commands/ExportEC2InstanceRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportEC2InstanceRecommendationsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportEC2InstanceRecommendationsRequest, ExportEC2InstanceRecommendationsResponse } from "../models/models_0"; +import type { + ExportEC2InstanceRecommendationsRequest, + ExportEC2InstanceRecommendationsResponse, +} from "../models/models_0"; import { ExportEC2InstanceRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/ExportECSServiceRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportECSServiceRecommendationsCommand.ts index 51fbee9dc4759..39d881f6e724a 100644 --- a/clients/client-compute-optimizer/src/commands/ExportECSServiceRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportECSServiceRecommendationsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportECSServiceRecommendationsRequest, ExportECSServiceRecommendationsResponse } from "../models/models_0"; +import type { + ExportECSServiceRecommendationsRequest, + ExportECSServiceRecommendationsResponse, +} from "../models/models_0"; import { ExportECSServiceRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/ExportIdleRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportIdleRecommendationsCommand.ts index e038d54306e9c..0993a1d50904e 100644 --- a/clients/client-compute-optimizer/src/commands/ExportIdleRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportIdleRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportIdleRecommendationsRequest, ExportIdleRecommendationsResponse } from "../models/models_0"; +import type { ExportIdleRecommendationsRequest, ExportIdleRecommendationsResponse } from "../models/models_0"; import { ExportIdleRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/ExportLambdaFunctionRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportLambdaFunctionRecommendationsCommand.ts index c3cd1b8b621b4..2f8c456e09da0 100644 --- a/clients/client-compute-optimizer/src/commands/ExportLambdaFunctionRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportLambdaFunctionRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ExportLambdaFunctionRecommendationsRequest, ExportLambdaFunctionRecommendationsResponse, } from "../models/models_0"; diff --git a/clients/client-compute-optimizer/src/commands/ExportLicenseRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportLicenseRecommendationsCommand.ts index bb7bad67fd576..b5a78a6ac8a25 100644 --- a/clients/client-compute-optimizer/src/commands/ExportLicenseRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportLicenseRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportLicenseRecommendationsRequest, ExportLicenseRecommendationsResponse } from "../models/models_0"; +import type { ExportLicenseRecommendationsRequest, ExportLicenseRecommendationsResponse } from "../models/models_0"; import { ExportLicenseRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/ExportRDSDatabaseRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/ExportRDSDatabaseRecommendationsCommand.ts index d3a534eb5175b..f1e140be38316 100644 --- a/clients/client-compute-optimizer/src/commands/ExportRDSDatabaseRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/ExportRDSDatabaseRecommendationsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportRDSDatabaseRecommendationsRequest, ExportRDSDatabaseRecommendationsResponse } from "../models/models_0"; +import type { + ExportRDSDatabaseRecommendationsRequest, + ExportRDSDatabaseRecommendationsResponse, +} from "../models/models_0"; import { ExportRDSDatabaseRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetAutoScalingGroupRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetAutoScalingGroupRecommendationsCommand.ts index 876918e04e87b..bb61fa5cddb3e 100644 --- a/clients/client-compute-optimizer/src/commands/GetAutoScalingGroupRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetAutoScalingGroupRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAutoScalingGroupRecommendationsRequest, GetAutoScalingGroupRecommendationsResponse, } from "../models/models_0"; diff --git a/clients/client-compute-optimizer/src/commands/GetEBSVolumeRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetEBSVolumeRecommendationsCommand.ts index a65e21180ae85..52c9acc55aec4 100644 --- a/clients/client-compute-optimizer/src/commands/GetEBSVolumeRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEBSVolumeRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEBSVolumeRecommendationsRequest, GetEBSVolumeRecommendationsResponse } from "../models/models_0"; +import type { GetEBSVolumeRecommendationsRequest, GetEBSVolumeRecommendationsResponse } from "../models/models_0"; import { GetEBSVolumeRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetEC2InstanceRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetEC2InstanceRecommendationsCommand.ts index f53bb350bccaf..f1424034113de 100644 --- a/clients/client-compute-optimizer/src/commands/GetEC2InstanceRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEC2InstanceRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEC2InstanceRecommendationsRequest, GetEC2InstanceRecommendationsResponse } from "../models/models_0"; +import type { GetEC2InstanceRecommendationsRequest, GetEC2InstanceRecommendationsResponse } from "../models/models_0"; import { GetEC2InstanceRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetEC2RecommendationProjectedMetricsCommand.ts b/clients/client-compute-optimizer/src/commands/GetEC2RecommendationProjectedMetricsCommand.ts index 71d75f246405c..04411ee3f1a17 100644 --- a/clients/client-compute-optimizer/src/commands/GetEC2RecommendationProjectedMetricsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEC2RecommendationProjectedMetricsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetEC2RecommendationProjectedMetricsRequest, GetEC2RecommendationProjectedMetricsResponse, } from "../models/models_0"; diff --git a/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationProjectedMetricsCommand.ts b/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationProjectedMetricsCommand.ts index 1fbe06446dc46..ca7d725240b30 100644 --- a/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationProjectedMetricsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationProjectedMetricsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetECSServiceRecommendationProjectedMetricsRequest, GetECSServiceRecommendationProjectedMetricsResponse, } from "../models/models_0"; diff --git a/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationsCommand.ts index 82d425bc43a91..c0ebc005386a8 100644 --- a/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetECSServiceRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetECSServiceRecommendationsRequest, GetECSServiceRecommendationsResponse } from "../models/models_0"; +import type { GetECSServiceRecommendationsRequest, GetECSServiceRecommendationsResponse } from "../models/models_0"; import { GetECSServiceRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetEffectiveRecommendationPreferencesCommand.ts b/clients/client-compute-optimizer/src/commands/GetEffectiveRecommendationPreferencesCommand.ts index 335ba41833a4c..35c1bc70cfb14 100644 --- a/clients/client-compute-optimizer/src/commands/GetEffectiveRecommendationPreferencesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEffectiveRecommendationPreferencesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetEffectiveRecommendationPreferencesRequest, GetEffectiveRecommendationPreferencesResponse, } from "../models/models_0"; diff --git a/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusCommand.ts b/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusCommand.ts index 7fb4543e751a5..675a40cb8dc09 100644 --- a/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnrollmentStatusRequest, GetEnrollmentStatusResponse } from "../models/models_0"; +import type { GetEnrollmentStatusRequest, GetEnrollmentStatusResponse } from "../models/models_0"; import { GetEnrollmentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusesForOrganizationCommand.ts b/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusesForOrganizationCommand.ts index 0e32aaf57e9bf..5bcf3142947b1 100644 --- a/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusesForOrganizationCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetEnrollmentStatusesForOrganizationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetEnrollmentStatusesForOrganizationRequest, GetEnrollmentStatusesForOrganizationResponse, } from "../models/models_0"; diff --git a/clients/client-compute-optimizer/src/commands/GetIdleRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetIdleRecommendationsCommand.ts index 39d1baf3edbed..509b7f1cd2ecb 100644 --- a/clients/client-compute-optimizer/src/commands/GetIdleRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetIdleRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdleRecommendationsRequest, GetIdleRecommendationsResponse } from "../models/models_0"; +import type { GetIdleRecommendationsRequest, GetIdleRecommendationsResponse } from "../models/models_0"; import { GetIdleRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetLambdaFunctionRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetLambdaFunctionRecommendationsCommand.ts index ab24119ed85b2..796bfaca8a179 100644 --- a/clients/client-compute-optimizer/src/commands/GetLambdaFunctionRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetLambdaFunctionRecommendationsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLambdaFunctionRecommendationsRequest, GetLambdaFunctionRecommendationsResponse } from "../models/models_0"; +import type { + GetLambdaFunctionRecommendationsRequest, + GetLambdaFunctionRecommendationsResponse, +} from "../models/models_0"; import { GetLambdaFunctionRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetLicenseRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetLicenseRecommendationsCommand.ts index 84a5804cc4570..cdff5180939f2 100644 --- a/clients/client-compute-optimizer/src/commands/GetLicenseRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetLicenseRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLicenseRecommendationsRequest, GetLicenseRecommendationsResponse } from "../models/models_0"; +import type { GetLicenseRecommendationsRequest, GetLicenseRecommendationsResponse } from "../models/models_0"; import { GetLicenseRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.ts b/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.ts index f392725531b3c..4a492beeba423 100644 --- a/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationProjectedMetricsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetRDSDatabaseRecommendationProjectedMetricsRequest, GetRDSDatabaseRecommendationProjectedMetricsResponse, } from "../models/models_0"; diff --git a/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationsCommand.ts b/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationsCommand.ts index fb87570de49ab..6ec11c34e228c 100644 --- a/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationsCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetRDSDatabaseRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRDSDatabaseRecommendationsRequest, GetRDSDatabaseRecommendationsResponse } from "../models/models_0"; +import type { GetRDSDatabaseRecommendationsRequest, GetRDSDatabaseRecommendationsResponse } from "../models/models_0"; import { GetRDSDatabaseRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetRecommendationPreferencesCommand.ts b/clients/client-compute-optimizer/src/commands/GetRecommendationPreferencesCommand.ts index dfd96c500f7b2..8ecad331be8a8 100644 --- a/clients/client-compute-optimizer/src/commands/GetRecommendationPreferencesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetRecommendationPreferencesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommendationPreferencesRequest, GetRecommendationPreferencesResponse } from "../models/models_0"; +import type { GetRecommendationPreferencesRequest, GetRecommendationPreferencesResponse } from "../models/models_0"; import { GetRecommendationPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/GetRecommendationSummariesCommand.ts b/clients/client-compute-optimizer/src/commands/GetRecommendationSummariesCommand.ts index 0726ae218b703..b5c38a61733d4 100644 --- a/clients/client-compute-optimizer/src/commands/GetRecommendationSummariesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/GetRecommendationSummariesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommendationSummariesRequest, GetRecommendationSummariesResponse } from "../models/models_0"; +import type { GetRecommendationSummariesRequest, GetRecommendationSummariesResponse } from "../models/models_0"; import { GetRecommendationSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/PutRecommendationPreferencesCommand.ts b/clients/client-compute-optimizer/src/commands/PutRecommendationPreferencesCommand.ts index fda5709fad7ba..303060a740f64 100644 --- a/clients/client-compute-optimizer/src/commands/PutRecommendationPreferencesCommand.ts +++ b/clients/client-compute-optimizer/src/commands/PutRecommendationPreferencesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRecommendationPreferencesRequest, PutRecommendationPreferencesResponse } from "../models/models_0"; +import type { PutRecommendationPreferencesRequest, PutRecommendationPreferencesResponse } from "../models/models_0"; import { PutRecommendationPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/commands/UpdateEnrollmentStatusCommand.ts b/clients/client-compute-optimizer/src/commands/UpdateEnrollmentStatusCommand.ts index 487884b067555..1324e09b97ba5 100644 --- a/clients/client-compute-optimizer/src/commands/UpdateEnrollmentStatusCommand.ts +++ b/clients/client-compute-optimizer/src/commands/UpdateEnrollmentStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ComputeOptimizerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ComputeOptimizerClient"; +import type { + ComputeOptimizerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ComputeOptimizerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnrollmentStatusRequest, UpdateEnrollmentStatusResponse } from "../models/models_0"; +import type { UpdateEnrollmentStatusRequest, UpdateEnrollmentStatusResponse } from "../models/models_0"; import { UpdateEnrollmentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-compute-optimizer/src/endpoint/EndpointParameters.ts b/clients/client-compute-optimizer/src/endpoint/EndpointParameters.ts index a06830c64e642..4f1b611703e57 100644 --- a/clients/client-compute-optimizer/src/endpoint/EndpointParameters.ts +++ b/clients/client-compute-optimizer/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-compute-optimizer/src/endpoint/endpointResolver.ts b/clients/client-compute-optimizer/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-compute-optimizer/src/endpoint/endpointResolver.ts +++ b/clients/client-compute-optimizer/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-compute-optimizer/src/extensionConfiguration.ts b/clients/client-compute-optimizer/src/extensionConfiguration.ts index ecb27161af550..9a2a9a6b6b7e7 100644 --- a/clients/client-compute-optimizer/src/extensionConfiguration.ts +++ b/clients/client-compute-optimizer/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-compute-optimizer/src/models/ComputeOptimizerServiceException.ts b/clients/client-compute-optimizer/src/models/ComputeOptimizerServiceException.ts index cb8cec76254b6..c7520b8d9f595 100644 --- a/clients/client-compute-optimizer/src/models/ComputeOptimizerServiceException.ts +++ b/clients/client-compute-optimizer/src/models/ComputeOptimizerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-compute-optimizer/src/models/errors.ts b/clients/client-compute-optimizer/src/models/errors.ts index 32e3a4ccf5ab3..39c0fbccceb89 100644 --- a/clients/client-compute-optimizer/src/models/errors.ts +++ b/clients/client-compute-optimizer/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ComputeOptimizerServiceException as __BaseException } from "./ComputeOptimizerServiceException"; diff --git a/clients/client-compute-optimizer/src/pagination/DescribeRecommendationExportJobsPaginator.ts b/clients/client-compute-optimizer/src/pagination/DescribeRecommendationExportJobsPaginator.ts index 25e0c1c94d90f..36addaac5f58c 100644 --- a/clients/client-compute-optimizer/src/pagination/DescribeRecommendationExportJobsPaginator.ts +++ b/clients/client-compute-optimizer/src/pagination/DescribeRecommendationExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRecommendationExportJobsCommand, diff --git a/clients/client-compute-optimizer/src/pagination/GetEnrollmentStatusesForOrganizationPaginator.ts b/clients/client-compute-optimizer/src/pagination/GetEnrollmentStatusesForOrganizationPaginator.ts index c57665bb3cdbb..21c4172ae98e3 100644 --- a/clients/client-compute-optimizer/src/pagination/GetEnrollmentStatusesForOrganizationPaginator.ts +++ b/clients/client-compute-optimizer/src/pagination/GetEnrollmentStatusesForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetEnrollmentStatusesForOrganizationCommand, diff --git a/clients/client-compute-optimizer/src/pagination/GetLambdaFunctionRecommendationsPaginator.ts b/clients/client-compute-optimizer/src/pagination/GetLambdaFunctionRecommendationsPaginator.ts index 9af901c0fdcee..c779c8190acd0 100644 --- a/clients/client-compute-optimizer/src/pagination/GetLambdaFunctionRecommendationsPaginator.ts +++ b/clients/client-compute-optimizer/src/pagination/GetLambdaFunctionRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetLambdaFunctionRecommendationsCommand, diff --git a/clients/client-compute-optimizer/src/pagination/GetRecommendationPreferencesPaginator.ts b/clients/client-compute-optimizer/src/pagination/GetRecommendationPreferencesPaginator.ts index 88cba46359c96..d07d330f84d1f 100644 --- a/clients/client-compute-optimizer/src/pagination/GetRecommendationPreferencesPaginator.ts +++ b/clients/client-compute-optimizer/src/pagination/GetRecommendationPreferencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetRecommendationPreferencesCommand, diff --git a/clients/client-compute-optimizer/src/pagination/GetRecommendationSummariesPaginator.ts b/clients/client-compute-optimizer/src/pagination/GetRecommendationSummariesPaginator.ts index 9d40236fbb59e..6f99cf7fb2d52 100644 --- a/clients/client-compute-optimizer/src/pagination/GetRecommendationSummariesPaginator.ts +++ b/clients/client-compute-optimizer/src/pagination/GetRecommendationSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetRecommendationSummariesCommand, diff --git a/clients/client-compute-optimizer/src/pagination/Interfaces.ts b/clients/client-compute-optimizer/src/pagination/Interfaces.ts index 6cc0e2645fb12..03beb0290fa9e 100644 --- a/clients/client-compute-optimizer/src/pagination/Interfaces.ts +++ b/clients/client-compute-optimizer/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ComputeOptimizerClient } from "../ComputeOptimizerClient"; diff --git a/clients/client-compute-optimizer/src/runtimeConfig.browser.ts b/clients/client-compute-optimizer/src/runtimeConfig.browser.ts index f8edf129f2687..b52f25e034439 100644 --- a/clients/client-compute-optimizer/src/runtimeConfig.browser.ts +++ b/clients/client-compute-optimizer/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ComputeOptimizerClientConfig } from "./ComputeOptimizerClient"; + +import type { ComputeOptimizerClientConfig } from "./ComputeOptimizerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-compute-optimizer/src/runtimeConfig.native.ts b/clients/client-compute-optimizer/src/runtimeConfig.native.ts index 376f00ef08a7d..00c321f26e953 100644 --- a/clients/client-compute-optimizer/src/runtimeConfig.native.ts +++ b/clients/client-compute-optimizer/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ComputeOptimizerClientConfig } from "./ComputeOptimizerClient"; +import type { ComputeOptimizerClientConfig } from "./ComputeOptimizerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-compute-optimizer/src/runtimeConfig.shared.ts b/clients/client-compute-optimizer/src/runtimeConfig.shared.ts index 401337975de91..08a5a67f42caf 100644 --- a/clients/client-compute-optimizer/src/runtimeConfig.shared.ts +++ b/clients/client-compute-optimizer/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultComputeOptimizerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ComputeOptimizerClientConfig } from "./ComputeOptimizerClient"; +import type { ComputeOptimizerClientConfig } from "./ComputeOptimizerClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-compute-optimizer/src/runtimeConfig.ts b/clients/client-compute-optimizer/src/runtimeConfig.ts index 17ab33803db55..71338b5818b67 100644 --- a/clients/client-compute-optimizer/src/runtimeConfig.ts +++ b/clients/client-compute-optimizer/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ComputeOptimizerClientConfig } from "./ComputeOptimizerClient"; + +import type { ComputeOptimizerClientConfig } from "./ComputeOptimizerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-compute-optimizer/src/runtimeExtensions.ts b/clients/client-compute-optimizer/src/runtimeExtensions.ts index 8baeee98e4200..1cf2c4109c94e 100644 --- a/clients/client-compute-optimizer/src/runtimeExtensions.ts +++ b/clients/client-compute-optimizer/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ComputeOptimizerExtensionConfiguration } from "./extensionConfiguration"; +import type { ComputeOptimizerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-compute-optimizer/src/schemas/schemas_0.ts b/clients/client-compute-optimizer/src/schemas/schemas_0.ts index 926bc4e549768..663469d929a56 100644 --- a/clients/client-compute-optimizer/src/schemas/schemas_0.ts +++ b/clients/client-compute-optimizer/src/schemas/schemas_0.ts @@ -476,7 +476,7 @@ const n0 = "com.amazonaws.computeoptimizer"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ComputeOptimizerServiceException as __ComputeOptimizerServiceException } from "../models/ComputeOptimizerServiceException"; import { diff --git a/clients/client-config-service/package.json b/clients/client-config-service/package.json index 7e5b81eb7cf62..38eedb6d60a97 100644 --- a/clients/client-config-service/package.json +++ b/clients/client-config-service/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-config-service/src/ConfigService.ts b/clients/client-config-service/src/ConfigService.ts index add0776cbc650..bf94ea7da0d7d 100644 --- a/clients/client-config-service/src/ConfigService.ts +++ b/clients/client-config-service/src/ConfigService.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateResourceTypesCommand, @@ -483,7 +483,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { ConfigServiceClient, ConfigServiceClientConfig } from "./ConfigServiceClient"; +import { ConfigServiceClient } from "./ConfigServiceClient"; const commands = { AssociateResourceTypesCommand, diff --git a/clients/client-config-service/src/ConfigServiceClient.ts b/clients/client-config-service/src/ConfigServiceClient.ts index e0ec43aad9e76..a50ad5fde3bb1 100644 --- a/clients/client-config-service/src/ConfigServiceClient.ts +++ b/clients/client-config-service/src/ConfigServiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultConfigServiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -416,7 +425,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-config-service/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-config-service/src/auth/httpAuthExtensionConfiguration.ts index df05c9010a761..67d3f222a91ec 100644 --- a/clients/client-config-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-config-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ConfigServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ConfigServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-config-service/src/auth/httpAuthSchemeProvider.ts b/clients/client-config-service/src/auth/httpAuthSchemeProvider.ts index 46ebdcdde733c..4fce8b3642a1b 100644 --- a/clients/client-config-service/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-config-service/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ConfigServiceClientConfig, ConfigServiceClientResolvedConfig } from "../ConfigServiceClient"; +import { type ConfigServiceClientResolvedConfig, ConfigServiceClientConfig } from "../ConfigServiceClient"; /** * @internal diff --git a/clients/client-config-service/src/commands/AssociateResourceTypesCommand.ts b/clients/client-config-service/src/commands/AssociateResourceTypesCommand.ts index f39371d86634b..eb7024a3e56af 100644 --- a/clients/client-config-service/src/commands/AssociateResourceTypesCommand.ts +++ b/clients/client-config-service/src/commands/AssociateResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateResourceTypesRequest, AssociateResourceTypesResponse } from "../models/models_0"; +import type { AssociateResourceTypesRequest, AssociateResourceTypesResponse } from "../models/models_0"; import { AssociateResourceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts b/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts index fcdc2876ac803..d86b7aa548d6f 100644 --- a/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/BatchGetAggregateResourceConfigCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetAggregateResourceConfigRequest, BatchGetAggregateResourceConfigResponse } from "../models/models_0"; +import type { + BatchGetAggregateResourceConfigRequest, + BatchGetAggregateResourceConfigResponse, +} from "../models/models_0"; import { BatchGetAggregateResourceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts b/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts index 755f9a09777e3..7a4a3900a6d28 100644 --- a/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/BatchGetResourceConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetResourceConfigRequest, BatchGetResourceConfigResponse } from "../models/models_0"; +import type { BatchGetResourceConfigRequest, BatchGetResourceConfigResponse } from "../models/models_0"; import { BatchGetResourceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteAggregationAuthorizationCommand.ts b/clients/client-config-service/src/commands/DeleteAggregationAuthorizationCommand.ts index c4e9058e44f40..69b8265dfacaa 100644 --- a/clients/client-config-service/src/commands/DeleteAggregationAuthorizationCommand.ts +++ b/clients/client-config-service/src/commands/DeleteAggregationAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAggregationAuthorizationRequest } from "../models/models_0"; +import type { DeleteAggregationAuthorizationRequest } from "../models/models_0"; import { DeleteAggregationAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteConfigRuleCommand.ts b/clients/client-config-service/src/commands/DeleteConfigRuleCommand.ts index 443cb9e13ca2d..b65c12230fbc7 100644 --- a/clients/client-config-service/src/commands/DeleteConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/DeleteConfigRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigRuleRequest } from "../models/models_0"; +import type { DeleteConfigRuleRequest } from "../models/models_0"; import { DeleteConfigRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteConfigurationAggregatorCommand.ts b/clients/client-config-service/src/commands/DeleteConfigurationAggregatorCommand.ts index 8b20e9130fbf6..fca8ebf0f1e8f 100644 --- a/clients/client-config-service/src/commands/DeleteConfigurationAggregatorCommand.ts +++ b/clients/client-config-service/src/commands/DeleteConfigurationAggregatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationAggregatorRequest } from "../models/models_0"; +import type { DeleteConfigurationAggregatorRequest } from "../models/models_0"; import { DeleteConfigurationAggregator } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/DeleteConfigurationRecorderCommand.ts index ada45a569ebae..7bd81b752c10e 100644 --- a/clients/client-config-service/src/commands/DeleteConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/DeleteConfigurationRecorderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationRecorderRequest } from "../models/models_0"; +import type { DeleteConfigurationRecorderRequest } from "../models/models_0"; import { DeleteConfigurationRecorder } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteConformancePackCommand.ts b/clients/client-config-service/src/commands/DeleteConformancePackCommand.ts index 196e820402cfa..13c8a79978412 100644 --- a/clients/client-config-service/src/commands/DeleteConformancePackCommand.ts +++ b/clients/client-config-service/src/commands/DeleteConformancePackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConformancePackRequest } from "../models/models_0"; +import type { DeleteConformancePackRequest } from "../models/models_0"; import { DeleteConformancePack } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteDeliveryChannelCommand.ts b/clients/client-config-service/src/commands/DeleteDeliveryChannelCommand.ts index 73abf7ba3ddb2..2f4077ad883f5 100644 --- a/clients/client-config-service/src/commands/DeleteDeliveryChannelCommand.ts +++ b/clients/client-config-service/src/commands/DeleteDeliveryChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeliveryChannelRequest } from "../models/models_0"; +import type { DeleteDeliveryChannelRequest } from "../models/models_0"; import { DeleteDeliveryChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteEvaluationResultsCommand.ts b/clients/client-config-service/src/commands/DeleteEvaluationResultsCommand.ts index 04f186e7f688e..c902e1e2a0235 100644 --- a/clients/client-config-service/src/commands/DeleteEvaluationResultsCommand.ts +++ b/clients/client-config-service/src/commands/DeleteEvaluationResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEvaluationResultsRequest, DeleteEvaluationResultsResponse } from "../models/models_0"; +import type { DeleteEvaluationResultsRequest, DeleteEvaluationResultsResponse } from "../models/models_0"; import { DeleteEvaluationResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteOrganizationConfigRuleCommand.ts b/clients/client-config-service/src/commands/DeleteOrganizationConfigRuleCommand.ts index eadb7330806e9..9e9dee41e36da 100644 --- a/clients/client-config-service/src/commands/DeleteOrganizationConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/DeleteOrganizationConfigRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOrganizationConfigRuleRequest } from "../models/models_0"; +import type { DeleteOrganizationConfigRuleRequest } from "../models/models_0"; import { DeleteOrganizationConfigRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteOrganizationConformancePackCommand.ts b/clients/client-config-service/src/commands/DeleteOrganizationConformancePackCommand.ts index f9afaf3b31a90..53d02de57620e 100644 --- a/clients/client-config-service/src/commands/DeleteOrganizationConformancePackCommand.ts +++ b/clients/client-config-service/src/commands/DeleteOrganizationConformancePackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOrganizationConformancePackRequest } from "../models/models_0"; +import type { DeleteOrganizationConformancePackRequest } from "../models/models_0"; import { DeleteOrganizationConformancePack } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeletePendingAggregationRequestCommand.ts b/clients/client-config-service/src/commands/DeletePendingAggregationRequestCommand.ts index 2ca8913a8cc37..fddad707b161e 100644 --- a/clients/client-config-service/src/commands/DeletePendingAggregationRequestCommand.ts +++ b/clients/client-config-service/src/commands/DeletePendingAggregationRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePendingAggregationRequestRequest } from "../models/models_0"; +import type { DeletePendingAggregationRequestRequest } from "../models/models_0"; import { DeletePendingAggregationRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteRemediationConfigurationCommand.ts b/clients/client-config-service/src/commands/DeleteRemediationConfigurationCommand.ts index c68456e98b631..2edb6947892ba 100644 --- a/clients/client-config-service/src/commands/DeleteRemediationConfigurationCommand.ts +++ b/clients/client-config-service/src/commands/DeleteRemediationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRemediationConfigurationRequest, DeleteRemediationConfigurationResponse } from "../models/models_0"; +import type { DeleteRemediationConfigurationRequest, DeleteRemediationConfigurationResponse } from "../models/models_0"; import { DeleteRemediationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteRemediationExceptionsCommand.ts b/clients/client-config-service/src/commands/DeleteRemediationExceptionsCommand.ts index 5ab170a1a3f7b..798acf7052c76 100644 --- a/clients/client-config-service/src/commands/DeleteRemediationExceptionsCommand.ts +++ b/clients/client-config-service/src/commands/DeleteRemediationExceptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRemediationExceptionsRequest, DeleteRemediationExceptionsResponse } from "../models/models_0"; +import type { DeleteRemediationExceptionsRequest, DeleteRemediationExceptionsResponse } from "../models/models_0"; import { DeleteRemediationExceptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteResourceConfigCommand.ts b/clients/client-config-service/src/commands/DeleteResourceConfigCommand.ts index 9516bc8c24321..e7c0d57e1bcd9 100644 --- a/clients/client-config-service/src/commands/DeleteResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/DeleteResourceConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceConfigRequest } from "../models/models_0"; +import type { DeleteResourceConfigRequest } from "../models/models_0"; import { DeleteResourceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteRetentionConfigurationCommand.ts b/clients/client-config-service/src/commands/DeleteRetentionConfigurationCommand.ts index 7273834547f6f..67d6766c4ea23 100644 --- a/clients/client-config-service/src/commands/DeleteRetentionConfigurationCommand.ts +++ b/clients/client-config-service/src/commands/DeleteRetentionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRetentionConfigurationRequest } from "../models/models_0"; +import type { DeleteRetentionConfigurationRequest } from "../models/models_0"; import { DeleteRetentionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeleteServiceLinkedConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/DeleteServiceLinkedConfigurationRecorderCommand.ts index 756e0ab64837d..1dd02a5260809 100644 --- a/clients/client-config-service/src/commands/DeleteServiceLinkedConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/DeleteServiceLinkedConfigurationRecorderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteServiceLinkedConfigurationRecorderRequest, DeleteServiceLinkedConfigurationRecorderResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DeleteStoredQueryCommand.ts b/clients/client-config-service/src/commands/DeleteStoredQueryCommand.ts index 29ff5be0892ef..150fed98e7e67 100644 --- a/clients/client-config-service/src/commands/DeleteStoredQueryCommand.ts +++ b/clients/client-config-service/src/commands/DeleteStoredQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStoredQueryRequest, DeleteStoredQueryResponse } from "../models/models_0"; +import type { DeleteStoredQueryRequest, DeleteStoredQueryResponse } from "../models/models_0"; import { DeleteStoredQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DeliverConfigSnapshotCommand.ts b/clients/client-config-service/src/commands/DeliverConfigSnapshotCommand.ts index 372b6b5dc7787..9437defb1deb5 100644 --- a/clients/client-config-service/src/commands/DeliverConfigSnapshotCommand.ts +++ b/clients/client-config-service/src/commands/DeliverConfigSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeliverConfigSnapshotRequest, DeliverConfigSnapshotResponse } from "../models/models_0"; +import type { DeliverConfigSnapshotRequest, DeliverConfigSnapshotResponse } from "../models/models_0"; import { DeliverConfigSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeAggregateComplianceByConfigRulesCommand.ts b/clients/client-config-service/src/commands/DescribeAggregateComplianceByConfigRulesCommand.ts index 93dfb61ed2eac..30202d956475d 100644 --- a/clients/client-config-service/src/commands/DescribeAggregateComplianceByConfigRulesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeAggregateComplianceByConfigRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeAggregateComplianceByConfigRulesRequest, DescribeAggregateComplianceByConfigRulesResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeAggregateComplianceByConformancePacksCommand.ts b/clients/client-config-service/src/commands/DescribeAggregateComplianceByConformancePacksCommand.ts index 4f10281b3fbca..550ed2246ece0 100644 --- a/clients/client-config-service/src/commands/DescribeAggregateComplianceByConformancePacksCommand.ts +++ b/clients/client-config-service/src/commands/DescribeAggregateComplianceByConformancePacksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeAggregateComplianceByConformancePacksRequest, DescribeAggregateComplianceByConformancePacksResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeAggregationAuthorizationsCommand.ts b/clients/client-config-service/src/commands/DescribeAggregationAuthorizationsCommand.ts index 8dd6cebbd9cdc..c0f172e79deb7 100644 --- a/clients/client-config-service/src/commands/DescribeAggregationAuthorizationsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeAggregationAuthorizationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeAggregationAuthorizationsRequest, DescribeAggregationAuthorizationsResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeComplianceByConfigRuleCommand.ts b/clients/client-config-service/src/commands/DescribeComplianceByConfigRuleCommand.ts index fb304251a342a..f8e01fd9ecc17 100644 --- a/clients/client-config-service/src/commands/DescribeComplianceByConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/DescribeComplianceByConfigRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeComplianceByConfigRuleRequest, DescribeComplianceByConfigRuleResponse } from "../models/models_0"; +import type { DescribeComplianceByConfigRuleRequest, DescribeComplianceByConfigRuleResponse } from "../models/models_0"; import { DescribeComplianceByConfigRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeComplianceByResourceCommand.ts b/clients/client-config-service/src/commands/DescribeComplianceByResourceCommand.ts index 08cd4bad4287b..7a05d6031cccb 100644 --- a/clients/client-config-service/src/commands/DescribeComplianceByResourceCommand.ts +++ b/clients/client-config-service/src/commands/DescribeComplianceByResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeComplianceByResourceRequest, DescribeComplianceByResourceResponse } from "../models/models_0"; +import type { DescribeComplianceByResourceRequest, DescribeComplianceByResourceResponse } from "../models/models_0"; import { DescribeComplianceByResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeConfigRuleEvaluationStatusCommand.ts b/clients/client-config-service/src/commands/DescribeConfigRuleEvaluationStatusCommand.ts index d5ac66aa53859..76200a20078af 100644 --- a/clients/client-config-service/src/commands/DescribeConfigRuleEvaluationStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigRuleEvaluationStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeConfigRuleEvaluationStatusRequest, DescribeConfigRuleEvaluationStatusResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeConfigRulesCommand.ts b/clients/client-config-service/src/commands/DescribeConfigRulesCommand.ts index e2ad3b2537016..951d5cb161487 100644 --- a/clients/client-config-service/src/commands/DescribeConfigRulesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConfigRulesRequest, DescribeConfigRulesResponse } from "../models/models_0"; +import type { DescribeConfigRulesRequest, DescribeConfigRulesResponse } from "../models/models_0"; import { DescribeConfigRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeConfigurationAggregatorSourcesStatusCommand.ts b/clients/client-config-service/src/commands/DescribeConfigurationAggregatorSourcesStatusCommand.ts index 83a6b96422c0f..a60ed5d20df7a 100644 --- a/clients/client-config-service/src/commands/DescribeConfigurationAggregatorSourcesStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigurationAggregatorSourcesStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeConfigurationAggregatorSourcesStatusRequest, DescribeConfigurationAggregatorSourcesStatusResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeConfigurationAggregatorsCommand.ts b/clients/client-config-service/src/commands/DescribeConfigurationAggregatorsCommand.ts index dfd636d214963..2cb285eb58880 100644 --- a/clients/client-config-service/src/commands/DescribeConfigurationAggregatorsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigurationAggregatorsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConfigurationAggregatorsRequest, DescribeConfigurationAggregatorsResponse } from "../models/models_0"; +import type { + DescribeConfigurationAggregatorsRequest, + DescribeConfigurationAggregatorsResponse, +} from "../models/models_0"; import { DescribeConfigurationAggregators } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeConfigurationRecorderStatusCommand.ts b/clients/client-config-service/src/commands/DescribeConfigurationRecorderStatusCommand.ts index 567a9e816143b..63416e37dc062 100644 --- a/clients/client-config-service/src/commands/DescribeConfigurationRecorderStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigurationRecorderStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeConfigurationRecorderStatusRequest, DescribeConfigurationRecorderStatusResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts b/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts index d7cd111b103f4..efb6ff04ebe0f 100644 --- a/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConfigurationRecordersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConfigurationRecordersRequest, DescribeConfigurationRecordersResponse } from "../models/models_0"; +import type { DescribeConfigurationRecordersRequest, DescribeConfigurationRecordersResponse } from "../models/models_0"; import { DescribeConfigurationRecorders } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeConformancePackComplianceCommand.ts b/clients/client-config-service/src/commands/DescribeConformancePackComplianceCommand.ts index 62cd247509edf..0eadd95d6896c 100644 --- a/clients/client-config-service/src/commands/DescribeConformancePackComplianceCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConformancePackComplianceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeConformancePackComplianceRequest, DescribeConformancePackComplianceResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeConformancePackStatusCommand.ts b/clients/client-config-service/src/commands/DescribeConformancePackStatusCommand.ts index 23c696dbd9594..f2b80c0955cb7 100644 --- a/clients/client-config-service/src/commands/DescribeConformancePackStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConformancePackStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConformancePackStatusRequest, DescribeConformancePackStatusResponse } from "../models/models_0"; +import type { DescribeConformancePackStatusRequest, DescribeConformancePackStatusResponse } from "../models/models_0"; import { DescribeConformancePackStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeConformancePacksCommand.ts b/clients/client-config-service/src/commands/DescribeConformancePacksCommand.ts index 5a856683e3dee..0e7c5dcdd1d73 100644 --- a/clients/client-config-service/src/commands/DescribeConformancePacksCommand.ts +++ b/clients/client-config-service/src/commands/DescribeConformancePacksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConformancePacksRequest, DescribeConformancePacksResponse } from "../models/models_0"; +import type { DescribeConformancePacksRequest, DescribeConformancePacksResponse } from "../models/models_0"; import { DescribeConformancePacks } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeDeliveryChannelStatusCommand.ts b/clients/client-config-service/src/commands/DescribeDeliveryChannelStatusCommand.ts index fa1b2d8e518d6..71a2cc5990f80 100644 --- a/clients/client-config-service/src/commands/DescribeDeliveryChannelStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeDeliveryChannelStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeliveryChannelStatusRequest, DescribeDeliveryChannelStatusResponse } from "../models/models_0"; +import type { DescribeDeliveryChannelStatusRequest, DescribeDeliveryChannelStatusResponse } from "../models/models_0"; import { DescribeDeliveryChannelStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeDeliveryChannelsCommand.ts b/clients/client-config-service/src/commands/DescribeDeliveryChannelsCommand.ts index f6c87b63cede1..1f4571c8f89dc 100644 --- a/clients/client-config-service/src/commands/DescribeDeliveryChannelsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeDeliveryChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeliveryChannelsRequest, DescribeDeliveryChannelsResponse } from "../models/models_0"; +import type { DescribeDeliveryChannelsRequest, DescribeDeliveryChannelsResponse } from "../models/models_0"; import { DescribeDeliveryChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeOrganizationConfigRuleStatusesCommand.ts b/clients/client-config-service/src/commands/DescribeOrganizationConfigRuleStatusesCommand.ts index ced39168bf00e..0753d7335979e 100644 --- a/clients/client-config-service/src/commands/DescribeOrganizationConfigRuleStatusesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeOrganizationConfigRuleStatusesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeOrganizationConfigRuleStatusesRequest, DescribeOrganizationConfigRuleStatusesResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeOrganizationConfigRulesCommand.ts b/clients/client-config-service/src/commands/DescribeOrganizationConfigRulesCommand.ts index c0dd9d3be3aff..f12322ad30791 100644 --- a/clients/client-config-service/src/commands/DescribeOrganizationConfigRulesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeOrganizationConfigRulesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrganizationConfigRulesRequest, DescribeOrganizationConfigRulesResponse } from "../models/models_0"; +import type { + DescribeOrganizationConfigRulesRequest, + DescribeOrganizationConfigRulesResponse, +} from "../models/models_0"; import { DescribeOrganizationConfigRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeOrganizationConformancePackStatusesCommand.ts b/clients/client-config-service/src/commands/DescribeOrganizationConformancePackStatusesCommand.ts index b9826bab90722..dcafdbebc8cc6 100644 --- a/clients/client-config-service/src/commands/DescribeOrganizationConformancePackStatusesCommand.ts +++ b/clients/client-config-service/src/commands/DescribeOrganizationConformancePackStatusesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeOrganizationConformancePackStatusesRequest, DescribeOrganizationConformancePackStatusesResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeOrganizationConformancePacksCommand.ts b/clients/client-config-service/src/commands/DescribeOrganizationConformancePacksCommand.ts index 6b3516643928b..1c622b4f0b150 100644 --- a/clients/client-config-service/src/commands/DescribeOrganizationConformancePacksCommand.ts +++ b/clients/client-config-service/src/commands/DescribeOrganizationConformancePacksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeOrganizationConformancePacksRequest, DescribeOrganizationConformancePacksResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribePendingAggregationRequestsCommand.ts b/clients/client-config-service/src/commands/DescribePendingAggregationRequestsCommand.ts index 6ef73eea3de69..564353b2aa093 100644 --- a/clients/client-config-service/src/commands/DescribePendingAggregationRequestsCommand.ts +++ b/clients/client-config-service/src/commands/DescribePendingAggregationRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribePendingAggregationRequestsRequest, DescribePendingAggregationRequestsResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeRemediationConfigurationsCommand.ts b/clients/client-config-service/src/commands/DescribeRemediationConfigurationsCommand.ts index c980969fe6299..30eaab1600122 100644 --- a/clients/client-config-service/src/commands/DescribeRemediationConfigurationsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeRemediationConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeRemediationConfigurationsRequest, DescribeRemediationConfigurationsResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeRemediationExceptionsCommand.ts b/clients/client-config-service/src/commands/DescribeRemediationExceptionsCommand.ts index e6d26a8f812eb..a7d3528ab906b 100644 --- a/clients/client-config-service/src/commands/DescribeRemediationExceptionsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeRemediationExceptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRemediationExceptionsRequest, DescribeRemediationExceptionsResponse } from "../models/models_0"; +import type { DescribeRemediationExceptionsRequest, DescribeRemediationExceptionsResponse } from "../models/models_0"; import { DescribeRemediationExceptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts b/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts index ee09666053d63..c8b170722d352 100644 --- a/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts +++ b/clients/client-config-service/src/commands/DescribeRemediationExecutionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeRemediationExecutionStatusRequest, DescribeRemediationExecutionStatusResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/DescribeRetentionConfigurationsCommand.ts b/clients/client-config-service/src/commands/DescribeRetentionConfigurationsCommand.ts index cb85f7dc114a0..c09fc0d919aa6 100644 --- a/clients/client-config-service/src/commands/DescribeRetentionConfigurationsCommand.ts +++ b/clients/client-config-service/src/commands/DescribeRetentionConfigurationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRetentionConfigurationsRequest, DescribeRetentionConfigurationsResponse } from "../models/models_0"; +import type { + DescribeRetentionConfigurationsRequest, + DescribeRetentionConfigurationsResponse, +} from "../models/models_0"; import { DescribeRetentionConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/DisassociateResourceTypesCommand.ts b/clients/client-config-service/src/commands/DisassociateResourceTypesCommand.ts index 3f4478ab2f566..937f9c1a79b1c 100644 --- a/clients/client-config-service/src/commands/DisassociateResourceTypesCommand.ts +++ b/clients/client-config-service/src/commands/DisassociateResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateResourceTypesRequest, DisassociateResourceTypesResponse } from "../models/models_0"; +import type { DisassociateResourceTypesRequest, DisassociateResourceTypesResponse } from "../models/models_0"; import { DisassociateResourceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetAggregateComplianceDetailsByConfigRuleCommand.ts b/clients/client-config-service/src/commands/GetAggregateComplianceDetailsByConfigRuleCommand.ts index 7ddbe60df49cf..564bab4b12095 100644 --- a/clients/client-config-service/src/commands/GetAggregateComplianceDetailsByConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateComplianceDetailsByConfigRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAggregateComplianceDetailsByConfigRuleRequest, GetAggregateComplianceDetailsByConfigRuleResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/GetAggregateConfigRuleComplianceSummaryCommand.ts b/clients/client-config-service/src/commands/GetAggregateConfigRuleComplianceSummaryCommand.ts index 65daabe9959c5..37d68dbfb0c64 100644 --- a/clients/client-config-service/src/commands/GetAggregateConfigRuleComplianceSummaryCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateConfigRuleComplianceSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAggregateConfigRuleComplianceSummaryRequest, GetAggregateConfigRuleComplianceSummaryResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/GetAggregateConformancePackComplianceSummaryCommand.ts b/clients/client-config-service/src/commands/GetAggregateConformancePackComplianceSummaryCommand.ts index 764ea957e6d5d..31ac706daeeaa 100644 --- a/clients/client-config-service/src/commands/GetAggregateConformancePackComplianceSummaryCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateConformancePackComplianceSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAggregateConformancePackComplianceSummaryRequest, GetAggregateConformancePackComplianceSummaryResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts b/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts index 1eb8c4f00dce9..685297b9bc788 100644 --- a/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateDiscoveredResourceCountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAggregateDiscoveredResourceCountsRequest, GetAggregateDiscoveredResourceCountsResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts b/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts index e188be7d3a840..bce75aad312d2 100644 --- a/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/GetAggregateResourceConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAggregateResourceConfigRequest, GetAggregateResourceConfigResponse } from "../models/models_0"; +import type { GetAggregateResourceConfigRequest, GetAggregateResourceConfigResponse } from "../models/models_0"; import { GetAggregateResourceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetComplianceDetailsByConfigRuleCommand.ts b/clients/client-config-service/src/commands/GetComplianceDetailsByConfigRuleCommand.ts index f649dff6bea32..829d33cbc9fb0 100644 --- a/clients/client-config-service/src/commands/GetComplianceDetailsByConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/GetComplianceDetailsByConfigRuleCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetComplianceDetailsByConfigRuleRequest, GetComplianceDetailsByConfigRuleResponse } from "../models/models_0"; +import type { + GetComplianceDetailsByConfigRuleRequest, + GetComplianceDetailsByConfigRuleResponse, +} from "../models/models_0"; import { GetComplianceDetailsByConfigRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetComplianceDetailsByResourceCommand.ts b/clients/client-config-service/src/commands/GetComplianceDetailsByResourceCommand.ts index b1ff587d35c17..e52f4f58337ce 100644 --- a/clients/client-config-service/src/commands/GetComplianceDetailsByResourceCommand.ts +++ b/clients/client-config-service/src/commands/GetComplianceDetailsByResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetComplianceDetailsByResourceRequest, GetComplianceDetailsByResourceResponse } from "../models/models_0"; +import type { GetComplianceDetailsByResourceRequest, GetComplianceDetailsByResourceResponse } from "../models/models_0"; import { GetComplianceDetailsByResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetComplianceSummaryByConfigRuleCommand.ts b/clients/client-config-service/src/commands/GetComplianceSummaryByConfigRuleCommand.ts index 48bd7af460562..ee27a9ca3ad3b 100644 --- a/clients/client-config-service/src/commands/GetComplianceSummaryByConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/GetComplianceSummaryByConfigRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetComplianceSummaryByConfigRuleResponse } from "../models/models_0"; +import type { GetComplianceSummaryByConfigRuleResponse } from "../models/models_0"; import { GetComplianceSummaryByConfigRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetComplianceSummaryByResourceTypeCommand.ts b/clients/client-config-service/src/commands/GetComplianceSummaryByResourceTypeCommand.ts index 3674a1188d606..1b8acebc70582 100644 --- a/clients/client-config-service/src/commands/GetComplianceSummaryByResourceTypeCommand.ts +++ b/clients/client-config-service/src/commands/GetComplianceSummaryByResourceTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetComplianceSummaryByResourceTypeRequest, GetComplianceSummaryByResourceTypeResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/GetConformancePackComplianceDetailsCommand.ts b/clients/client-config-service/src/commands/GetConformancePackComplianceDetailsCommand.ts index 190f0351de8a9..fc663c4bf52da 100644 --- a/clients/client-config-service/src/commands/GetConformancePackComplianceDetailsCommand.ts +++ b/clients/client-config-service/src/commands/GetConformancePackComplianceDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConformancePackComplianceDetailsRequest, GetConformancePackComplianceDetailsResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/GetConformancePackComplianceSummaryCommand.ts b/clients/client-config-service/src/commands/GetConformancePackComplianceSummaryCommand.ts index 2b0d96ea0b6a8..90fda83d7c47c 100644 --- a/clients/client-config-service/src/commands/GetConformancePackComplianceSummaryCommand.ts +++ b/clients/client-config-service/src/commands/GetConformancePackComplianceSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConformancePackComplianceSummaryRequest, GetConformancePackComplianceSummaryResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/GetCustomRulePolicyCommand.ts b/clients/client-config-service/src/commands/GetCustomRulePolicyCommand.ts index 338c0320e780f..7a777ace7fc2f 100644 --- a/clients/client-config-service/src/commands/GetCustomRulePolicyCommand.ts +++ b/clients/client-config-service/src/commands/GetCustomRulePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCustomRulePolicyRequest, GetCustomRulePolicyResponse } from "../models/models_0"; +import type { GetCustomRulePolicyRequest, GetCustomRulePolicyResponse } from "../models/models_0"; import { GetCustomRulePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts b/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts index 2b086f326d16b..1437aa601cac3 100644 --- a/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts +++ b/clients/client-config-service/src/commands/GetDiscoveredResourceCountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDiscoveredResourceCountsRequest, GetDiscoveredResourceCountsResponse } from "../models/models_0"; +import type { GetDiscoveredResourceCountsRequest, GetDiscoveredResourceCountsResponse } from "../models/models_0"; import { GetDiscoveredResourceCounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetOrganizationConfigRuleDetailedStatusCommand.ts b/clients/client-config-service/src/commands/GetOrganizationConfigRuleDetailedStatusCommand.ts index fadc02157545f..2a52898975cc0 100644 --- a/clients/client-config-service/src/commands/GetOrganizationConfigRuleDetailedStatusCommand.ts +++ b/clients/client-config-service/src/commands/GetOrganizationConfigRuleDetailedStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetOrganizationConfigRuleDetailedStatusRequest, GetOrganizationConfigRuleDetailedStatusResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/GetOrganizationConformancePackDetailedStatusCommand.ts b/clients/client-config-service/src/commands/GetOrganizationConformancePackDetailedStatusCommand.ts index c91d7f44a2e0e..acd3976e6e028 100644 --- a/clients/client-config-service/src/commands/GetOrganizationConformancePackDetailedStatusCommand.ts +++ b/clients/client-config-service/src/commands/GetOrganizationConformancePackDetailedStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetOrganizationConformancePackDetailedStatusRequest, GetOrganizationConformancePackDetailedStatusResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/GetOrganizationCustomRulePolicyCommand.ts b/clients/client-config-service/src/commands/GetOrganizationCustomRulePolicyCommand.ts index 2856fd1e9b73d..6d5b4bab50df8 100644 --- a/clients/client-config-service/src/commands/GetOrganizationCustomRulePolicyCommand.ts +++ b/clients/client-config-service/src/commands/GetOrganizationCustomRulePolicyCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOrganizationCustomRulePolicyRequest, GetOrganizationCustomRulePolicyResponse } from "../models/models_0"; +import type { + GetOrganizationCustomRulePolicyRequest, + GetOrganizationCustomRulePolicyResponse, +} from "../models/models_0"; import { GetOrganizationCustomRulePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts b/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts index 57c7bf871d034..79cf5487a42da 100644 --- a/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts +++ b/clients/client-config-service/src/commands/GetResourceConfigHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceConfigHistoryRequest, GetResourceConfigHistoryResponse } from "../models/models_0"; +import type { GetResourceConfigHistoryRequest, GetResourceConfigHistoryResponse } from "../models/models_0"; import { GetResourceConfigHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetResourceEvaluationSummaryCommand.ts b/clients/client-config-service/src/commands/GetResourceEvaluationSummaryCommand.ts index 9fe89e7764d08..0a6c9909ec1ec 100644 --- a/clients/client-config-service/src/commands/GetResourceEvaluationSummaryCommand.ts +++ b/clients/client-config-service/src/commands/GetResourceEvaluationSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceEvaluationSummaryRequest, GetResourceEvaluationSummaryResponse } from "../models/models_0"; +import type { GetResourceEvaluationSummaryRequest, GetResourceEvaluationSummaryResponse } from "../models/models_0"; import { GetResourceEvaluationSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/GetStoredQueryCommand.ts b/clients/client-config-service/src/commands/GetStoredQueryCommand.ts index 8da2dd7c0acb7..2b28c89eef3ff 100644 --- a/clients/client-config-service/src/commands/GetStoredQueryCommand.ts +++ b/clients/client-config-service/src/commands/GetStoredQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStoredQueryRequest, GetStoredQueryResponse } from "../models/models_0"; +import type { GetStoredQueryRequest, GetStoredQueryResponse } from "../models/models_0"; import { GetStoredQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts b/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts index 78345e33ec916..4dd0c71edc877 100644 --- a/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts +++ b/clients/client-config-service/src/commands/ListAggregateDiscoveredResourcesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAggregateDiscoveredResourcesRequest, ListAggregateDiscoveredResourcesResponse } from "../models/models_0"; +import type { + ListAggregateDiscoveredResourcesRequest, + ListAggregateDiscoveredResourcesResponse, +} from "../models/models_0"; import { ListAggregateDiscoveredResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/ListConfigurationRecordersCommand.ts b/clients/client-config-service/src/commands/ListConfigurationRecordersCommand.ts index bb0581811301e..f77a7e29ec2c8 100644 --- a/clients/client-config-service/src/commands/ListConfigurationRecordersCommand.ts +++ b/clients/client-config-service/src/commands/ListConfigurationRecordersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationRecordersRequest, ListConfigurationRecordersResponse } from "../models/models_0"; +import type { ListConfigurationRecordersRequest, ListConfigurationRecordersResponse } from "../models/models_0"; import { ListConfigurationRecorders } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/ListConformancePackComplianceScoresCommand.ts b/clients/client-config-service/src/commands/ListConformancePackComplianceScoresCommand.ts index 7b031479cabc7..1ff657806af01 100644 --- a/clients/client-config-service/src/commands/ListConformancePackComplianceScoresCommand.ts +++ b/clients/client-config-service/src/commands/ListConformancePackComplianceScoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListConformancePackComplianceScoresRequest, ListConformancePackComplianceScoresResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts b/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts index b3441d1e5c332..01cb218bfb3a7 100644 --- a/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts +++ b/clients/client-config-service/src/commands/ListDiscoveredResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDiscoveredResourcesRequest, ListDiscoveredResourcesResponse } from "../models/models_0"; +import type { ListDiscoveredResourcesRequest, ListDiscoveredResourcesResponse } from "../models/models_0"; import { ListDiscoveredResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/ListResourceEvaluationsCommand.ts b/clients/client-config-service/src/commands/ListResourceEvaluationsCommand.ts index 7d7d152721844..6cdfbd6bd2f52 100644 --- a/clients/client-config-service/src/commands/ListResourceEvaluationsCommand.ts +++ b/clients/client-config-service/src/commands/ListResourceEvaluationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceEvaluationsRequest, ListResourceEvaluationsResponse } from "../models/models_0"; +import type { ListResourceEvaluationsRequest, ListResourceEvaluationsResponse } from "../models/models_0"; import { ListResourceEvaluations } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/ListStoredQueriesCommand.ts b/clients/client-config-service/src/commands/ListStoredQueriesCommand.ts index 28fdbc72af39f..e0f8a2b4ee432 100644 --- a/clients/client-config-service/src/commands/ListStoredQueriesCommand.ts +++ b/clients/client-config-service/src/commands/ListStoredQueriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStoredQueriesRequest, ListStoredQueriesResponse } from "../models/models_0"; +import type { ListStoredQueriesRequest, ListStoredQueriesResponse } from "../models/models_0"; import { ListStoredQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-config-service/src/commands/ListTagsForResourceCommand.ts index 484b22ef6f183..5501efccbf817 100644 --- a/clients/client-config-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-config-service/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutAggregationAuthorizationCommand.ts b/clients/client-config-service/src/commands/PutAggregationAuthorizationCommand.ts index 5ba8451ec6ba2..d217e889766e3 100644 --- a/clients/client-config-service/src/commands/PutAggregationAuthorizationCommand.ts +++ b/clients/client-config-service/src/commands/PutAggregationAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAggregationAuthorizationRequest, PutAggregationAuthorizationResponse } from "../models/models_0"; +import type { PutAggregationAuthorizationRequest, PutAggregationAuthorizationResponse } from "../models/models_0"; import { PutAggregationAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutConfigRuleCommand.ts b/clients/client-config-service/src/commands/PutConfigRuleCommand.ts index 5513dc47efc7d..cfe51a4baf8f0 100644 --- a/clients/client-config-service/src/commands/PutConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/PutConfigRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutConfigRuleRequest } from "../models/models_0"; +import type { PutConfigRuleRequest } from "../models/models_0"; import { PutConfigRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutConfigurationAggregatorCommand.ts b/clients/client-config-service/src/commands/PutConfigurationAggregatorCommand.ts index 7cea0bdc761db..78ad48ec4d605 100644 --- a/clients/client-config-service/src/commands/PutConfigurationAggregatorCommand.ts +++ b/clients/client-config-service/src/commands/PutConfigurationAggregatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutConfigurationAggregatorRequest, PutConfigurationAggregatorResponse } from "../models/models_0"; +import type { PutConfigurationAggregatorRequest, PutConfigurationAggregatorResponse } from "../models/models_0"; import { PutConfigurationAggregator } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts index d5b1240a4347d..b9c33a2665e12 100644 --- a/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/PutConfigurationRecorderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutConfigurationRecorderRequest } from "../models/models_0"; +import type { PutConfigurationRecorderRequest } from "../models/models_0"; import { PutConfigurationRecorder } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutConformancePackCommand.ts b/clients/client-config-service/src/commands/PutConformancePackCommand.ts index 7f2bf8f098feb..b59247e1717df 100644 --- a/clients/client-config-service/src/commands/PutConformancePackCommand.ts +++ b/clients/client-config-service/src/commands/PutConformancePackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutConformancePackRequest, PutConformancePackResponse } from "../models/models_0"; +import type { PutConformancePackRequest, PutConformancePackResponse } from "../models/models_0"; import { PutConformancePack } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts b/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts index db28136c6019c..f21151918ecca 100644 --- a/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts +++ b/clients/client-config-service/src/commands/PutDeliveryChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDeliveryChannelRequest } from "../models/models_0"; +import type { PutDeliveryChannelRequest } from "../models/models_0"; import { PutDeliveryChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutEvaluationsCommand.ts b/clients/client-config-service/src/commands/PutEvaluationsCommand.ts index a7e7d44353e53..f77ea9909ac97 100644 --- a/clients/client-config-service/src/commands/PutEvaluationsCommand.ts +++ b/clients/client-config-service/src/commands/PutEvaluationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEvaluationsRequest, PutEvaluationsResponse } from "../models/models_0"; +import type { PutEvaluationsRequest, PutEvaluationsResponse } from "../models/models_0"; import { PutEvaluations } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutExternalEvaluationCommand.ts b/clients/client-config-service/src/commands/PutExternalEvaluationCommand.ts index 7b6ef11878d2d..274ae629b8499 100644 --- a/clients/client-config-service/src/commands/PutExternalEvaluationCommand.ts +++ b/clients/client-config-service/src/commands/PutExternalEvaluationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutExternalEvaluationRequest, PutExternalEvaluationResponse } from "../models/models_0"; +import type { PutExternalEvaluationRequest, PutExternalEvaluationResponse } from "../models/models_0"; import { PutExternalEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts b/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts index ba0da9961d897..c46f23509e29f 100644 --- a/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts +++ b/clients/client-config-service/src/commands/PutOrganizationConfigRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutOrganizationConfigRuleRequest, PutOrganizationConfigRuleResponse } from "../models/models_0"; +import type { PutOrganizationConfigRuleRequest, PutOrganizationConfigRuleResponse } from "../models/models_0"; import { PutOrganizationConfigRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutOrganizationConformancePackCommand.ts b/clients/client-config-service/src/commands/PutOrganizationConformancePackCommand.ts index 2b1cd140c6c86..790ca64441771 100644 --- a/clients/client-config-service/src/commands/PutOrganizationConformancePackCommand.ts +++ b/clients/client-config-service/src/commands/PutOrganizationConformancePackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutOrganizationConformancePackRequest, PutOrganizationConformancePackResponse } from "../models/models_0"; +import type { PutOrganizationConformancePackRequest, PutOrganizationConformancePackResponse } from "../models/models_0"; import { PutOrganizationConformancePack } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutRemediationConfigurationsCommand.ts b/clients/client-config-service/src/commands/PutRemediationConfigurationsCommand.ts index bcfbd93dffa02..1bed75325010c 100644 --- a/clients/client-config-service/src/commands/PutRemediationConfigurationsCommand.ts +++ b/clients/client-config-service/src/commands/PutRemediationConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRemediationConfigurationsRequest, PutRemediationConfigurationsResponse } from "../models/models_0"; +import type { PutRemediationConfigurationsRequest, PutRemediationConfigurationsResponse } from "../models/models_0"; import { PutRemediationConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutRemediationExceptionsCommand.ts b/clients/client-config-service/src/commands/PutRemediationExceptionsCommand.ts index 972e0ed6cb31a..03882e023cf0c 100644 --- a/clients/client-config-service/src/commands/PutRemediationExceptionsCommand.ts +++ b/clients/client-config-service/src/commands/PutRemediationExceptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRemediationExceptionsRequest, PutRemediationExceptionsResponse } from "../models/models_0"; +import type { PutRemediationExceptionsRequest, PutRemediationExceptionsResponse } from "../models/models_0"; import { PutRemediationExceptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutResourceConfigCommand.ts b/clients/client-config-service/src/commands/PutResourceConfigCommand.ts index 9c04ebea6a895..d37f845a2f5fc 100644 --- a/clients/client-config-service/src/commands/PutResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/PutResourceConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourceConfigRequest } from "../models/models_0"; +import type { PutResourceConfigRequest } from "../models/models_0"; import { PutResourceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutRetentionConfigurationCommand.ts b/clients/client-config-service/src/commands/PutRetentionConfigurationCommand.ts index 2d93b6a758664..9f8e14d6d2ed9 100644 --- a/clients/client-config-service/src/commands/PutRetentionConfigurationCommand.ts +++ b/clients/client-config-service/src/commands/PutRetentionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRetentionConfigurationRequest, PutRetentionConfigurationResponse } from "../models/models_0"; +import type { PutRetentionConfigurationRequest, PutRetentionConfigurationResponse } from "../models/models_0"; import { PutRetentionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/PutServiceLinkedConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/PutServiceLinkedConfigurationRecorderCommand.ts index eeadd2a4929fb..2f0156d8f9501 100644 --- a/clients/client-config-service/src/commands/PutServiceLinkedConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/PutServiceLinkedConfigurationRecorderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutServiceLinkedConfigurationRecorderRequest, PutServiceLinkedConfigurationRecorderResponse, } from "../models/models_0"; diff --git a/clients/client-config-service/src/commands/PutStoredQueryCommand.ts b/clients/client-config-service/src/commands/PutStoredQueryCommand.ts index 45300446f0ef3..20a468b0bd0a9 100644 --- a/clients/client-config-service/src/commands/PutStoredQueryCommand.ts +++ b/clients/client-config-service/src/commands/PutStoredQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutStoredQueryRequest, PutStoredQueryResponse } from "../models/models_0"; +import type { PutStoredQueryRequest, PutStoredQueryResponse } from "../models/models_0"; import { PutStoredQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/SelectAggregateResourceConfigCommand.ts b/clients/client-config-service/src/commands/SelectAggregateResourceConfigCommand.ts index ee72b582ceaba..8016a7526b456 100644 --- a/clients/client-config-service/src/commands/SelectAggregateResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/SelectAggregateResourceConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SelectAggregateResourceConfigRequest, SelectAggregateResourceConfigResponse } from "../models/models_0"; +import type { SelectAggregateResourceConfigRequest, SelectAggregateResourceConfigResponse } from "../models/models_0"; import { SelectAggregateResourceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/SelectResourceConfigCommand.ts b/clients/client-config-service/src/commands/SelectResourceConfigCommand.ts index 48921d212e6f8..29ac0451f68ad 100644 --- a/clients/client-config-service/src/commands/SelectResourceConfigCommand.ts +++ b/clients/client-config-service/src/commands/SelectResourceConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SelectResourceConfigRequest, SelectResourceConfigResponse } from "../models/models_0"; +import type { SelectResourceConfigRequest, SelectResourceConfigResponse } from "../models/models_0"; import { SelectResourceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/StartConfigRulesEvaluationCommand.ts b/clients/client-config-service/src/commands/StartConfigRulesEvaluationCommand.ts index 039f46db7f821..bef6fa3c28647 100644 --- a/clients/client-config-service/src/commands/StartConfigRulesEvaluationCommand.ts +++ b/clients/client-config-service/src/commands/StartConfigRulesEvaluationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartConfigRulesEvaluationRequest, StartConfigRulesEvaluationResponse } from "../models/models_0"; +import type { StartConfigRulesEvaluationRequest, StartConfigRulesEvaluationResponse } from "../models/models_0"; import { StartConfigRulesEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/StartConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/StartConfigurationRecorderCommand.ts index b6054266f9d2b..099cd0e850549 100644 --- a/clients/client-config-service/src/commands/StartConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/StartConfigurationRecorderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartConfigurationRecorderRequest } from "../models/models_0"; +import type { StartConfigurationRecorderRequest } from "../models/models_0"; import { StartConfigurationRecorder } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts b/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts index 5f7c412488ff0..64fd2ad1f384b 100644 --- a/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts +++ b/clients/client-config-service/src/commands/StartRemediationExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRemediationExecutionRequest, StartRemediationExecutionResponse } from "../models/models_0"; +import type { StartRemediationExecutionRequest, StartRemediationExecutionResponse } from "../models/models_0"; import { StartRemediationExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/StartResourceEvaluationCommand.ts b/clients/client-config-service/src/commands/StartResourceEvaluationCommand.ts index cbf911ef1c1ca..4f7eea10ec75e 100644 --- a/clients/client-config-service/src/commands/StartResourceEvaluationCommand.ts +++ b/clients/client-config-service/src/commands/StartResourceEvaluationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartResourceEvaluationRequest, StartResourceEvaluationResponse } from "../models/models_0"; +import type { StartResourceEvaluationRequest, StartResourceEvaluationResponse } from "../models/models_0"; import { StartResourceEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/StopConfigurationRecorderCommand.ts b/clients/client-config-service/src/commands/StopConfigurationRecorderCommand.ts index 3689e0d716d92..c5563dfe7b953 100644 --- a/clients/client-config-service/src/commands/StopConfigurationRecorderCommand.ts +++ b/clients/client-config-service/src/commands/StopConfigurationRecorderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopConfigurationRecorderRequest } from "../models/models_0"; +import type { StopConfigurationRecorderRequest } from "../models/models_0"; import { StopConfigurationRecorder } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/TagResourceCommand.ts b/clients/client-config-service/src/commands/TagResourceCommand.ts index 4badda42715d8..43b7c866912c3 100644 --- a/clients/client-config-service/src/commands/TagResourceCommand.ts +++ b/clients/client-config-service/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/commands/UntagResourceCommand.ts b/clients/client-config-service/src/commands/UntagResourceCommand.ts index 2451c277fb046..f18de3f30868d 100644 --- a/clients/client-config-service/src/commands/UntagResourceCommand.ts +++ b/clients/client-config-service/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; +import type { ConfigServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConfigServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-config-service/src/endpoint/EndpointParameters.ts b/clients/client-config-service/src/endpoint/EndpointParameters.ts index e3a1fc6790537..9ed2e06c8663e 100644 --- a/clients/client-config-service/src/endpoint/EndpointParameters.ts +++ b/clients/client-config-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-config-service/src/endpoint/endpointResolver.ts b/clients/client-config-service/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-config-service/src/endpoint/endpointResolver.ts +++ b/clients/client-config-service/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-config-service/src/extensionConfiguration.ts b/clients/client-config-service/src/extensionConfiguration.ts index 31b25b9931986..056562ce0182d 100644 --- a/clients/client-config-service/src/extensionConfiguration.ts +++ b/clients/client-config-service/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-config-service/src/models/ConfigServiceServiceException.ts b/clients/client-config-service/src/models/ConfigServiceServiceException.ts index 597c67ad9795c..dfe990e19483f 100644 --- a/clients/client-config-service/src/models/ConfigServiceServiceException.ts +++ b/clients/client-config-service/src/models/ConfigServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-config-service/src/models/errors.ts b/clients/client-config-service/src/models/errors.ts index fd77f2ca2fc8c..87dfe3bb99e20 100644 --- a/clients/client-config-service/src/models/errors.ts +++ b/clients/client-config-service/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConfigServiceServiceException as __BaseException } from "./ConfigServiceServiceException"; diff --git a/clients/client-config-service/src/pagination/DescribeAggregateComplianceByConfigRulesPaginator.ts b/clients/client-config-service/src/pagination/DescribeAggregateComplianceByConfigRulesPaginator.ts index 6527d3f3a4b8b..c4085562b7731 100644 --- a/clients/client-config-service/src/pagination/DescribeAggregateComplianceByConfigRulesPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeAggregateComplianceByConfigRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAggregateComplianceByConfigRulesCommand, diff --git a/clients/client-config-service/src/pagination/DescribeAggregateComplianceByConformancePacksPaginator.ts b/clients/client-config-service/src/pagination/DescribeAggregateComplianceByConformancePacksPaginator.ts index 336f41810174e..5e31cd2c58044 100644 --- a/clients/client-config-service/src/pagination/DescribeAggregateComplianceByConformancePacksPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeAggregateComplianceByConformancePacksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAggregateComplianceByConformancePacksCommand, diff --git a/clients/client-config-service/src/pagination/DescribeAggregationAuthorizationsPaginator.ts b/clients/client-config-service/src/pagination/DescribeAggregationAuthorizationsPaginator.ts index 1cb69d0e90ad7..46e19e24ceb61 100644 --- a/clients/client-config-service/src/pagination/DescribeAggregationAuthorizationsPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeAggregationAuthorizationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAggregationAuthorizationsCommand, diff --git a/clients/client-config-service/src/pagination/DescribeComplianceByConfigRulePaginator.ts b/clients/client-config-service/src/pagination/DescribeComplianceByConfigRulePaginator.ts index 29ab3f9c507fb..aa37802cc9912 100644 --- a/clients/client-config-service/src/pagination/DescribeComplianceByConfigRulePaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeComplianceByConfigRulePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeComplianceByConfigRuleCommand, diff --git a/clients/client-config-service/src/pagination/DescribeComplianceByResourcePaginator.ts b/clients/client-config-service/src/pagination/DescribeComplianceByResourcePaginator.ts index 6e9814126ef65..d08968fdd119f 100644 --- a/clients/client-config-service/src/pagination/DescribeComplianceByResourcePaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeComplianceByResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeComplianceByResourceCommand, diff --git a/clients/client-config-service/src/pagination/DescribeConfigRuleEvaluationStatusPaginator.ts b/clients/client-config-service/src/pagination/DescribeConfigRuleEvaluationStatusPaginator.ts index 9e4d8dab2de2e..e28e7c0e8bed6 100644 --- a/clients/client-config-service/src/pagination/DescribeConfigRuleEvaluationStatusPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeConfigRuleEvaluationStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeConfigRuleEvaluationStatusCommand, diff --git a/clients/client-config-service/src/pagination/DescribeConfigRulesPaginator.ts b/clients/client-config-service/src/pagination/DescribeConfigRulesPaginator.ts index e19ff2cf8e4dc..c1195c4c56d4f 100644 --- a/clients/client-config-service/src/pagination/DescribeConfigRulesPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeConfigRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeConfigRulesCommand, diff --git a/clients/client-config-service/src/pagination/DescribeConfigurationAggregatorSourcesStatusPaginator.ts b/clients/client-config-service/src/pagination/DescribeConfigurationAggregatorSourcesStatusPaginator.ts index 535bc819f0ded..bc4678993cc44 100644 --- a/clients/client-config-service/src/pagination/DescribeConfigurationAggregatorSourcesStatusPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeConfigurationAggregatorSourcesStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeConfigurationAggregatorSourcesStatusCommand, diff --git a/clients/client-config-service/src/pagination/DescribeConfigurationAggregatorsPaginator.ts b/clients/client-config-service/src/pagination/DescribeConfigurationAggregatorsPaginator.ts index 6611c0477d942..4009e7bb950c1 100644 --- a/clients/client-config-service/src/pagination/DescribeConfigurationAggregatorsPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeConfigurationAggregatorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeConfigurationAggregatorsCommand, diff --git a/clients/client-config-service/src/pagination/DescribeConformancePackCompliancePaginator.ts b/clients/client-config-service/src/pagination/DescribeConformancePackCompliancePaginator.ts index eddcff05d14a1..af2cea92d5414 100644 --- a/clients/client-config-service/src/pagination/DescribeConformancePackCompliancePaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeConformancePackCompliancePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeConformancePackComplianceCommand, diff --git a/clients/client-config-service/src/pagination/DescribeConformancePackStatusPaginator.ts b/clients/client-config-service/src/pagination/DescribeConformancePackStatusPaginator.ts index fff27a77a4549..5288af7b935c4 100644 --- a/clients/client-config-service/src/pagination/DescribeConformancePackStatusPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeConformancePackStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeConformancePackStatusCommand, diff --git a/clients/client-config-service/src/pagination/DescribeConformancePacksPaginator.ts b/clients/client-config-service/src/pagination/DescribeConformancePacksPaginator.ts index e45dcfc3e8443..18c155a763e86 100644 --- a/clients/client-config-service/src/pagination/DescribeConformancePacksPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeConformancePacksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeConformancePacksCommand, diff --git a/clients/client-config-service/src/pagination/DescribeOrganizationConfigRuleStatusesPaginator.ts b/clients/client-config-service/src/pagination/DescribeOrganizationConfigRuleStatusesPaginator.ts index 613de899ddd12..1600dbb455ba1 100644 --- a/clients/client-config-service/src/pagination/DescribeOrganizationConfigRuleStatusesPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeOrganizationConfigRuleStatusesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrganizationConfigRuleStatusesCommand, diff --git a/clients/client-config-service/src/pagination/DescribeOrganizationConfigRulesPaginator.ts b/clients/client-config-service/src/pagination/DescribeOrganizationConfigRulesPaginator.ts index d78981d336950..8e38b8d15a264 100644 --- a/clients/client-config-service/src/pagination/DescribeOrganizationConfigRulesPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeOrganizationConfigRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrganizationConfigRulesCommand, diff --git a/clients/client-config-service/src/pagination/DescribeOrganizationConformancePackStatusesPaginator.ts b/clients/client-config-service/src/pagination/DescribeOrganizationConformancePackStatusesPaginator.ts index 20faee92f56bb..26cac1d9e1b5a 100644 --- a/clients/client-config-service/src/pagination/DescribeOrganizationConformancePackStatusesPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeOrganizationConformancePackStatusesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrganizationConformancePackStatusesCommand, diff --git a/clients/client-config-service/src/pagination/DescribeOrganizationConformancePacksPaginator.ts b/clients/client-config-service/src/pagination/DescribeOrganizationConformancePacksPaginator.ts index 1cb9fc99a5ed3..30d8f30ba8385 100644 --- a/clients/client-config-service/src/pagination/DescribeOrganizationConformancePacksPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeOrganizationConformancePacksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrganizationConformancePacksCommand, diff --git a/clients/client-config-service/src/pagination/DescribePendingAggregationRequestsPaginator.ts b/clients/client-config-service/src/pagination/DescribePendingAggregationRequestsPaginator.ts index b2c5a755be35b..6fd6d9caa96c0 100644 --- a/clients/client-config-service/src/pagination/DescribePendingAggregationRequestsPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribePendingAggregationRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePendingAggregationRequestsCommand, diff --git a/clients/client-config-service/src/pagination/DescribeRemediationExceptionsPaginator.ts b/clients/client-config-service/src/pagination/DescribeRemediationExceptionsPaginator.ts index b133a75bc9d77..dc9b0b68e36fb 100644 --- a/clients/client-config-service/src/pagination/DescribeRemediationExceptionsPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeRemediationExceptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRemediationExceptionsCommand, diff --git a/clients/client-config-service/src/pagination/DescribeRemediationExecutionStatusPaginator.ts b/clients/client-config-service/src/pagination/DescribeRemediationExecutionStatusPaginator.ts index 48146f9bdc420..3f37d0d963b6f 100644 --- a/clients/client-config-service/src/pagination/DescribeRemediationExecutionStatusPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeRemediationExecutionStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRemediationExecutionStatusCommand, diff --git a/clients/client-config-service/src/pagination/DescribeRetentionConfigurationsPaginator.ts b/clients/client-config-service/src/pagination/DescribeRetentionConfigurationsPaginator.ts index 071abd9c23fdb..ee6a3f2c35372 100644 --- a/clients/client-config-service/src/pagination/DescribeRetentionConfigurationsPaginator.ts +++ b/clients/client-config-service/src/pagination/DescribeRetentionConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRetentionConfigurationsCommand, diff --git a/clients/client-config-service/src/pagination/GetAggregateComplianceDetailsByConfigRulePaginator.ts b/clients/client-config-service/src/pagination/GetAggregateComplianceDetailsByConfigRulePaginator.ts index ba4b6b64dc265..feb46ab64477f 100644 --- a/clients/client-config-service/src/pagination/GetAggregateComplianceDetailsByConfigRulePaginator.ts +++ b/clients/client-config-service/src/pagination/GetAggregateComplianceDetailsByConfigRulePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAggregateComplianceDetailsByConfigRuleCommand, diff --git a/clients/client-config-service/src/pagination/GetAggregateConfigRuleComplianceSummaryPaginator.ts b/clients/client-config-service/src/pagination/GetAggregateConfigRuleComplianceSummaryPaginator.ts index 6899994572784..842d713e9b320 100644 --- a/clients/client-config-service/src/pagination/GetAggregateConfigRuleComplianceSummaryPaginator.ts +++ b/clients/client-config-service/src/pagination/GetAggregateConfigRuleComplianceSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAggregateConfigRuleComplianceSummaryCommand, diff --git a/clients/client-config-service/src/pagination/GetAggregateConformancePackComplianceSummaryPaginator.ts b/clients/client-config-service/src/pagination/GetAggregateConformancePackComplianceSummaryPaginator.ts index 5e9c0c7071591..193726f63e953 100644 --- a/clients/client-config-service/src/pagination/GetAggregateConformancePackComplianceSummaryPaginator.ts +++ b/clients/client-config-service/src/pagination/GetAggregateConformancePackComplianceSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAggregateConformancePackComplianceSummaryCommand, diff --git a/clients/client-config-service/src/pagination/GetAggregateDiscoveredResourceCountsPaginator.ts b/clients/client-config-service/src/pagination/GetAggregateDiscoveredResourceCountsPaginator.ts index e4acacfb1a8da..193cf3cb201ea 100644 --- a/clients/client-config-service/src/pagination/GetAggregateDiscoveredResourceCountsPaginator.ts +++ b/clients/client-config-service/src/pagination/GetAggregateDiscoveredResourceCountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAggregateDiscoveredResourceCountsCommand, diff --git a/clients/client-config-service/src/pagination/GetComplianceDetailsByConfigRulePaginator.ts b/clients/client-config-service/src/pagination/GetComplianceDetailsByConfigRulePaginator.ts index 0f2238694bcad..2f2c4de0fd155 100644 --- a/clients/client-config-service/src/pagination/GetComplianceDetailsByConfigRulePaginator.ts +++ b/clients/client-config-service/src/pagination/GetComplianceDetailsByConfigRulePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetComplianceDetailsByConfigRuleCommand, diff --git a/clients/client-config-service/src/pagination/GetComplianceDetailsByResourcePaginator.ts b/clients/client-config-service/src/pagination/GetComplianceDetailsByResourcePaginator.ts index 7d7ef518d9180..3cb78bb1c825d 100644 --- a/clients/client-config-service/src/pagination/GetComplianceDetailsByResourcePaginator.ts +++ b/clients/client-config-service/src/pagination/GetComplianceDetailsByResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetComplianceDetailsByResourceCommand, diff --git a/clients/client-config-service/src/pagination/GetConformancePackComplianceDetailsPaginator.ts b/clients/client-config-service/src/pagination/GetConformancePackComplianceDetailsPaginator.ts index cf8100fdb0b73..0cade932f1fb7 100644 --- a/clients/client-config-service/src/pagination/GetConformancePackComplianceDetailsPaginator.ts +++ b/clients/client-config-service/src/pagination/GetConformancePackComplianceDetailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetConformancePackComplianceDetailsCommand, diff --git a/clients/client-config-service/src/pagination/GetConformancePackComplianceSummaryPaginator.ts b/clients/client-config-service/src/pagination/GetConformancePackComplianceSummaryPaginator.ts index 12ffbf9f5bc34..88148918eda35 100644 --- a/clients/client-config-service/src/pagination/GetConformancePackComplianceSummaryPaginator.ts +++ b/clients/client-config-service/src/pagination/GetConformancePackComplianceSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetConformancePackComplianceSummaryCommand, diff --git a/clients/client-config-service/src/pagination/GetDiscoveredResourceCountsPaginator.ts b/clients/client-config-service/src/pagination/GetDiscoveredResourceCountsPaginator.ts index e88b5ac255ee7..8478d9bf32e46 100644 --- a/clients/client-config-service/src/pagination/GetDiscoveredResourceCountsPaginator.ts +++ b/clients/client-config-service/src/pagination/GetDiscoveredResourceCountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetDiscoveredResourceCountsCommand, diff --git a/clients/client-config-service/src/pagination/GetOrganizationConfigRuleDetailedStatusPaginator.ts b/clients/client-config-service/src/pagination/GetOrganizationConfigRuleDetailedStatusPaginator.ts index fed9b55fe2745..13da3e7784c7e 100644 --- a/clients/client-config-service/src/pagination/GetOrganizationConfigRuleDetailedStatusPaginator.ts +++ b/clients/client-config-service/src/pagination/GetOrganizationConfigRuleDetailedStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetOrganizationConfigRuleDetailedStatusCommand, diff --git a/clients/client-config-service/src/pagination/GetOrganizationConformancePackDetailedStatusPaginator.ts b/clients/client-config-service/src/pagination/GetOrganizationConformancePackDetailedStatusPaginator.ts index 62cb7eb8aefcb..73f6fedd94641 100644 --- a/clients/client-config-service/src/pagination/GetOrganizationConformancePackDetailedStatusPaginator.ts +++ b/clients/client-config-service/src/pagination/GetOrganizationConformancePackDetailedStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetOrganizationConformancePackDetailedStatusCommand, diff --git a/clients/client-config-service/src/pagination/GetResourceConfigHistoryPaginator.ts b/clients/client-config-service/src/pagination/GetResourceConfigHistoryPaginator.ts index 6ab4d49658b64..54534231cb170 100644 --- a/clients/client-config-service/src/pagination/GetResourceConfigHistoryPaginator.ts +++ b/clients/client-config-service/src/pagination/GetResourceConfigHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourceConfigHistoryCommand, diff --git a/clients/client-config-service/src/pagination/Interfaces.ts b/clients/client-config-service/src/pagination/Interfaces.ts index 8e0dc3b7e17f2..3fac86257c811 100644 --- a/clients/client-config-service/src/pagination/Interfaces.ts +++ b/clients/client-config-service/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ConfigServiceClient } from "../ConfigServiceClient"; diff --git a/clients/client-config-service/src/pagination/ListAggregateDiscoveredResourcesPaginator.ts b/clients/client-config-service/src/pagination/ListAggregateDiscoveredResourcesPaginator.ts index f1ecdee56f019..44b76ba56af12 100644 --- a/clients/client-config-service/src/pagination/ListAggregateDiscoveredResourcesPaginator.ts +++ b/clients/client-config-service/src/pagination/ListAggregateDiscoveredResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAggregateDiscoveredResourcesCommand, diff --git a/clients/client-config-service/src/pagination/ListConfigurationRecordersPaginator.ts b/clients/client-config-service/src/pagination/ListConfigurationRecordersPaginator.ts index 10f72d6138561..5aa2e90097532 100644 --- a/clients/client-config-service/src/pagination/ListConfigurationRecordersPaginator.ts +++ b/clients/client-config-service/src/pagination/ListConfigurationRecordersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationRecordersCommand, diff --git a/clients/client-config-service/src/pagination/ListConformancePackComplianceScoresPaginator.ts b/clients/client-config-service/src/pagination/ListConformancePackComplianceScoresPaginator.ts index ae4b2b212e476..0c1c3afed3335 100644 --- a/clients/client-config-service/src/pagination/ListConformancePackComplianceScoresPaginator.ts +++ b/clients/client-config-service/src/pagination/ListConformancePackComplianceScoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConformancePackComplianceScoresCommand, diff --git a/clients/client-config-service/src/pagination/ListDiscoveredResourcesPaginator.ts b/clients/client-config-service/src/pagination/ListDiscoveredResourcesPaginator.ts index e4138310eccb6..ce9077021e2de 100644 --- a/clients/client-config-service/src/pagination/ListDiscoveredResourcesPaginator.ts +++ b/clients/client-config-service/src/pagination/ListDiscoveredResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDiscoveredResourcesCommand, diff --git a/clients/client-config-service/src/pagination/ListResourceEvaluationsPaginator.ts b/clients/client-config-service/src/pagination/ListResourceEvaluationsPaginator.ts index dc38b18a05f7e..d22ef1f202ed5 100644 --- a/clients/client-config-service/src/pagination/ListResourceEvaluationsPaginator.ts +++ b/clients/client-config-service/src/pagination/ListResourceEvaluationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceEvaluationsCommand, diff --git a/clients/client-config-service/src/pagination/ListStoredQueriesPaginator.ts b/clients/client-config-service/src/pagination/ListStoredQueriesPaginator.ts index 4977cd845266a..8888235acd3e4 100644 --- a/clients/client-config-service/src/pagination/ListStoredQueriesPaginator.ts +++ b/clients/client-config-service/src/pagination/ListStoredQueriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStoredQueriesCommand, diff --git a/clients/client-config-service/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-config-service/src/pagination/ListTagsForResourcePaginator.ts index adca67fccde4f..dc2d7a9ba0cf7 100644 --- a/clients/client-config-service/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-config-service/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-config-service/src/pagination/SelectAggregateResourceConfigPaginator.ts b/clients/client-config-service/src/pagination/SelectAggregateResourceConfigPaginator.ts index 7fdc36c59b276..110bca13d97fd 100644 --- a/clients/client-config-service/src/pagination/SelectAggregateResourceConfigPaginator.ts +++ b/clients/client-config-service/src/pagination/SelectAggregateResourceConfigPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SelectAggregateResourceConfigCommand, diff --git a/clients/client-config-service/src/pagination/SelectResourceConfigPaginator.ts b/clients/client-config-service/src/pagination/SelectResourceConfigPaginator.ts index 56c642addc8a8..0201bbe53210c 100644 --- a/clients/client-config-service/src/pagination/SelectResourceConfigPaginator.ts +++ b/clients/client-config-service/src/pagination/SelectResourceConfigPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SelectResourceConfigCommand, diff --git a/clients/client-config-service/src/runtimeConfig.browser.ts b/clients/client-config-service/src/runtimeConfig.browser.ts index ac69ec3d7aab4..338f4bdd2841e 100644 --- a/clients/client-config-service/src/runtimeConfig.browser.ts +++ b/clients/client-config-service/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConfigServiceClientConfig } from "./ConfigServiceClient"; + +import type { ConfigServiceClientConfig } from "./ConfigServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-config-service/src/runtimeConfig.native.ts b/clients/client-config-service/src/runtimeConfig.native.ts index 0f5953d885c07..a23c84ffa5b0c 100644 --- a/clients/client-config-service/src/runtimeConfig.native.ts +++ b/clients/client-config-service/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ConfigServiceClientConfig } from "./ConfigServiceClient"; +import type { ConfigServiceClientConfig } from "./ConfigServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-config-service/src/runtimeConfig.shared.ts b/clients/client-config-service/src/runtimeConfig.shared.ts index 0539a70f66666..6b8cb0917a8fa 100644 --- a/clients/client-config-service/src/runtimeConfig.shared.ts +++ b/clients/client-config-service/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultConfigServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ConfigServiceClientConfig } from "./ConfigServiceClient"; +import type { ConfigServiceClientConfig } from "./ConfigServiceClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-config-service/src/runtimeConfig.ts b/clients/client-config-service/src/runtimeConfig.ts index b78c9491f27d6..f1a51a654516a 100644 --- a/clients/client-config-service/src/runtimeConfig.ts +++ b/clients/client-config-service/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConfigServiceClientConfig } from "./ConfigServiceClient"; + +import type { ConfigServiceClientConfig } from "./ConfigServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-config-service/src/runtimeExtensions.ts b/clients/client-config-service/src/runtimeExtensions.ts index 947d6a0f1b6a9..4353679a81471 100644 --- a/clients/client-config-service/src/runtimeExtensions.ts +++ b/clients/client-config-service/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ConfigServiceExtensionConfiguration } from "./extensionConfiguration"; +import type { ConfigServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-config-service/src/schemas/schemas_0.ts b/clients/client-config-service/src/schemas/schemas_0.ts index 054dc7ef63d23..a6db19f877ac9 100644 --- a/clients/client-config-service/src/schemas/schemas_0.ts +++ b/clients/client-config-service/src/schemas/schemas_0.ts @@ -791,7 +791,7 @@ const n0 = "com.amazonaws.configservice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-connect-contact-lens/package.json b/clients/client-connect-contact-lens/package.json index ac76518e66315..eed42e5a58b6c 100644 --- a/clients/client-connect-contact-lens/package.json +++ b/clients/client-connect-contact-lens/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-connect-contact-lens/src/ConnectContactLens.ts b/clients/client-connect-contact-lens/src/ConnectContactLens.ts index a65454c51365f..f004a11b98aa1 100644 --- a/clients/client-connect-contact-lens/src/ConnectContactLens.ts +++ b/clients/client-connect-contact-lens/src/ConnectContactLens.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ListRealtimeContactAnalysisSegmentsCommand, ListRealtimeContactAnalysisSegmentsCommandInput, ListRealtimeContactAnalysisSegmentsCommandOutput, } from "./commands/ListRealtimeContactAnalysisSegmentsCommand"; -import { ConnectContactLensClient, ConnectContactLensClientConfig } from "./ConnectContactLensClient"; +import { ConnectContactLensClient } from "./ConnectContactLensClient"; const commands = { ListRealtimeContactAnalysisSegmentsCommand, diff --git a/clients/client-connect-contact-lens/src/ConnectContactLensClient.ts b/clients/client-connect-contact-lens/src/ConnectContactLensClient.ts index 11fd46e7c958e..e34b62bf481fa 100644 --- a/clients/client-connect-contact-lens/src/ConnectContactLensClient.ts +++ b/clients/client-connect-contact-lens/src/ConnectContactLensClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultConnectContactLensHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -68,7 +77,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-connect-contact-lens/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-connect-contact-lens/src/auth/httpAuthExtensionConfiguration.ts index 6421019dac567..6d06cba05df0a 100644 --- a/clients/client-connect-contact-lens/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-connect-contact-lens/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ConnectContactLensHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ConnectContactLensHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-connect-contact-lens/src/auth/httpAuthSchemeProvider.ts b/clients/client-connect-contact-lens/src/auth/httpAuthSchemeProvider.ts index 3777f76233718..4a01d25fc10c3 100644 --- a/clients/client-connect-contact-lens/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-connect-contact-lens/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ConnectContactLensClientConfig, ConnectContactLensClientResolvedConfig } from "../ConnectContactLensClient"; +import { + type ConnectContactLensClientResolvedConfig, + ConnectContactLensClientConfig, +} from "../ConnectContactLensClient"; /** * @internal diff --git a/clients/client-connect-contact-lens/src/commands/ListRealtimeContactAnalysisSegmentsCommand.ts b/clients/client-connect-contact-lens/src/commands/ListRealtimeContactAnalysisSegmentsCommand.ts index acde50daee8c3..67d9b7d0fd9e4 100644 --- a/clients/client-connect-contact-lens/src/commands/ListRealtimeContactAnalysisSegmentsCommand.ts +++ b/clients/client-connect-contact-lens/src/commands/ListRealtimeContactAnalysisSegmentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectContactLensClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectContactLensClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListRealtimeContactAnalysisSegmentsRequest, ListRealtimeContactAnalysisSegmentsResponse, } from "../models/models_0"; diff --git a/clients/client-connect-contact-lens/src/endpoint/EndpointParameters.ts b/clients/client-connect-contact-lens/src/endpoint/EndpointParameters.ts index f168b8a58489c..f0960f62d5920 100644 --- a/clients/client-connect-contact-lens/src/endpoint/EndpointParameters.ts +++ b/clients/client-connect-contact-lens/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-connect-contact-lens/src/endpoint/endpointResolver.ts b/clients/client-connect-contact-lens/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-connect-contact-lens/src/endpoint/endpointResolver.ts +++ b/clients/client-connect-contact-lens/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-connect-contact-lens/src/extensionConfiguration.ts b/clients/client-connect-contact-lens/src/extensionConfiguration.ts index 10fcd53aba62e..f64ce47e7ec43 100644 --- a/clients/client-connect-contact-lens/src/extensionConfiguration.ts +++ b/clients/client-connect-contact-lens/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-connect-contact-lens/src/models/ConnectContactLensServiceException.ts b/clients/client-connect-contact-lens/src/models/ConnectContactLensServiceException.ts index cfcae869d2515..afe35b4e98717 100644 --- a/clients/client-connect-contact-lens/src/models/ConnectContactLensServiceException.ts +++ b/clients/client-connect-contact-lens/src/models/ConnectContactLensServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-connect-contact-lens/src/models/errors.ts b/clients/client-connect-contact-lens/src/models/errors.ts index cfb6b353057ff..c7c6ed5c01749 100644 --- a/clients/client-connect-contact-lens/src/models/errors.ts +++ b/clients/client-connect-contact-lens/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConnectContactLensServiceException as __BaseException } from "./ConnectContactLensServiceException"; diff --git a/clients/client-connect-contact-lens/src/pagination/Interfaces.ts b/clients/client-connect-contact-lens/src/pagination/Interfaces.ts index e688af0e29ffc..74ada8c34090a 100644 --- a/clients/client-connect-contact-lens/src/pagination/Interfaces.ts +++ b/clients/client-connect-contact-lens/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ConnectContactLensClient } from "../ConnectContactLensClient"; diff --git a/clients/client-connect-contact-lens/src/pagination/ListRealtimeContactAnalysisSegmentsPaginator.ts b/clients/client-connect-contact-lens/src/pagination/ListRealtimeContactAnalysisSegmentsPaginator.ts index f4d793c9e51cc..33794d6066262 100644 --- a/clients/client-connect-contact-lens/src/pagination/ListRealtimeContactAnalysisSegmentsPaginator.ts +++ b/clients/client-connect-contact-lens/src/pagination/ListRealtimeContactAnalysisSegmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRealtimeContactAnalysisSegmentsCommand, diff --git a/clients/client-connect-contact-lens/src/runtimeConfig.browser.ts b/clients/client-connect-contact-lens/src/runtimeConfig.browser.ts index 5bec22fb47425..32513f34c778c 100644 --- a/clients/client-connect-contact-lens/src/runtimeConfig.browser.ts +++ b/clients/client-connect-contact-lens/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectContactLensClientConfig } from "./ConnectContactLensClient"; + +import type { ConnectContactLensClientConfig } from "./ConnectContactLensClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-connect-contact-lens/src/runtimeConfig.native.ts b/clients/client-connect-contact-lens/src/runtimeConfig.native.ts index 2fd0125956b96..aa3ac7e8933dd 100644 --- a/clients/client-connect-contact-lens/src/runtimeConfig.native.ts +++ b/clients/client-connect-contact-lens/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ConnectContactLensClientConfig } from "./ConnectContactLensClient"; +import type { ConnectContactLensClientConfig } from "./ConnectContactLensClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-connect-contact-lens/src/runtimeConfig.shared.ts b/clients/client-connect-contact-lens/src/runtimeConfig.shared.ts index e37afce3029f5..8d46fe3c08913 100644 --- a/clients/client-connect-contact-lens/src/runtimeConfig.shared.ts +++ b/clients/client-connect-contact-lens/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultConnectContactLensHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ConnectContactLensClientConfig } from "./ConnectContactLensClient"; +import type { ConnectContactLensClientConfig } from "./ConnectContactLensClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-connect-contact-lens/src/runtimeConfig.ts b/clients/client-connect-contact-lens/src/runtimeConfig.ts index 6128029180c19..c9934c4d3e991 100644 --- a/clients/client-connect-contact-lens/src/runtimeConfig.ts +++ b/clients/client-connect-contact-lens/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectContactLensClientConfig } from "./ConnectContactLensClient"; + +import type { ConnectContactLensClientConfig } from "./ConnectContactLensClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-connect-contact-lens/src/runtimeExtensions.ts b/clients/client-connect-contact-lens/src/runtimeExtensions.ts index ccff1397deaf3..1120ea3de6b64 100644 --- a/clients/client-connect-contact-lens/src/runtimeExtensions.ts +++ b/clients/client-connect-contact-lens/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ConnectContactLensExtensionConfiguration } from "./extensionConfiguration"; +import type { ConnectContactLensExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-connect-contact-lens/src/schemas/schemas_0.ts b/clients/client-connect-contact-lens/src/schemas/schemas_0.ts index 2081a78324941..0feb4b0416f35 100644 --- a/clients/client-connect-contact-lens/src/schemas/schemas_0.ts +++ b/clients/client-connect-contact-lens/src/schemas/schemas_0.ts @@ -46,7 +46,7 @@ const n0 = "com.amazonaws.connectcontactlens"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-connect/package.json b/clients/client-connect/package.json index 796b6d9e5b822..97eff5fe246d4 100644 --- a/clients/client-connect/package.json +++ b/clients/client-connect/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-connect/src/Connect.ts b/clients/client-connect/src/Connect.ts index 510a2274f322b..15d6da9e63efd 100644 --- a/clients/client-connect/src/Connect.ts +++ b/clients/client-connect/src/Connect.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ActivateEvaluationFormCommand, @@ -1623,7 +1623,7 @@ import { UpdateWorkspaceVisibilityCommandInput, UpdateWorkspaceVisibilityCommandOutput, } from "./commands/UpdateWorkspaceVisibilityCommand"; -import { ConnectClient, ConnectClientConfig } from "./ConnectClient"; +import { ConnectClient } from "./ConnectClient"; const commands = { ActivateEvaluationFormCommand, diff --git a/clients/client-connect/src/ConnectClient.ts b/clients/client-connect/src/ConnectClient.ts index 7d5a922f9f480..d9506cb4be532 100644 --- a/clients/client-connect/src/ConnectClient.ts +++ b/clients/client-connect/src/ConnectClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultConnectHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -1059,7 +1068,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-connect/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-connect/src/auth/httpAuthExtensionConfiguration.ts index 4c7d160348bc9..09ea78702e01e 100644 --- a/clients/client-connect/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-connect/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-connect/src/auth/httpAuthSchemeProvider.ts b/clients/client-connect/src/auth/httpAuthSchemeProvider.ts index f42894f77be4f..91d5fa3942cbe 100644 --- a/clients/client-connect/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-connect/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ConnectClientConfig, ConnectClientResolvedConfig } from "../ConnectClient"; +import { type ConnectClientResolvedConfig, ConnectClientConfig } from "../ConnectClient"; /** * @internal diff --git a/clients/client-connect/src/commands/ActivateEvaluationFormCommand.ts b/clients/client-connect/src/commands/ActivateEvaluationFormCommand.ts index c8fff7c6410b2..a29c29f761720 100644 --- a/clients/client-connect/src/commands/ActivateEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/ActivateEvaluationFormCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateEvaluationFormRequest, ActivateEvaluationFormResponse } from "../models/models_0"; +import type { ActivateEvaluationFormRequest, ActivateEvaluationFormResponse } from "../models/models_0"; import { ActivateEvaluationForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateAnalyticsDataSetCommand.ts b/clients/client-connect/src/commands/AssociateAnalyticsDataSetCommand.ts index 1eacffb383a2d..ae0326fa38115 100644 --- a/clients/client-connect/src/commands/AssociateAnalyticsDataSetCommand.ts +++ b/clients/client-connect/src/commands/AssociateAnalyticsDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAnalyticsDataSetRequest, AssociateAnalyticsDataSetResponse } from "../models/models_0"; +import type { AssociateAnalyticsDataSetRequest, AssociateAnalyticsDataSetResponse } from "../models/models_0"; import { AssociateAnalyticsDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateApprovedOriginCommand.ts b/clients/client-connect/src/commands/AssociateApprovedOriginCommand.ts index 5dc5aa77b4023..0e380a9cb3683 100644 --- a/clients/client-connect/src/commands/AssociateApprovedOriginCommand.ts +++ b/clients/client-connect/src/commands/AssociateApprovedOriginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateApprovedOriginRequest } from "../models/models_0"; +import type { AssociateApprovedOriginRequest } from "../models/models_0"; import { AssociateApprovedOrigin } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateBotCommand.ts b/clients/client-connect/src/commands/AssociateBotCommand.ts index 626f718050e4b..9459d666d7c10 100644 --- a/clients/client-connect/src/commands/AssociateBotCommand.ts +++ b/clients/client-connect/src/commands/AssociateBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateBotRequest } from "../models/models_0"; +import type { AssociateBotRequest } from "../models/models_0"; import { AssociateBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateContactWithUserCommand.ts b/clients/client-connect/src/commands/AssociateContactWithUserCommand.ts index b13ca5ec988c0..596b606254dcc 100644 --- a/clients/client-connect/src/commands/AssociateContactWithUserCommand.ts +++ b/clients/client-connect/src/commands/AssociateContactWithUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateContactWithUserRequest, AssociateContactWithUserResponse } from "../models/models_0"; +import type { AssociateContactWithUserRequest, AssociateContactWithUserResponse } from "../models/models_0"; import { AssociateContactWithUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateDefaultVocabularyCommand.ts b/clients/client-connect/src/commands/AssociateDefaultVocabularyCommand.ts index 297d09501af7c..54557be6a5db9 100644 --- a/clients/client-connect/src/commands/AssociateDefaultVocabularyCommand.ts +++ b/clients/client-connect/src/commands/AssociateDefaultVocabularyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDefaultVocabularyRequest, AssociateDefaultVocabularyResponse } from "../models/models_0"; +import type { AssociateDefaultVocabularyRequest, AssociateDefaultVocabularyResponse } from "../models/models_0"; import { AssociateDefaultVocabulary } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateEmailAddressAliasCommand.ts b/clients/client-connect/src/commands/AssociateEmailAddressAliasCommand.ts index 082e1b5f5e088..79b54611ff2fd 100644 --- a/clients/client-connect/src/commands/AssociateEmailAddressAliasCommand.ts +++ b/clients/client-connect/src/commands/AssociateEmailAddressAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateEmailAddressAliasRequest, AssociateEmailAddressAliasResponse } from "../models/models_0"; +import type { AssociateEmailAddressAliasRequest, AssociateEmailAddressAliasResponse } from "../models/models_0"; import { AssociateEmailAddressAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateFlowCommand.ts b/clients/client-connect/src/commands/AssociateFlowCommand.ts index 3497c3fc6577a..e819819fe986f 100644 --- a/clients/client-connect/src/commands/AssociateFlowCommand.ts +++ b/clients/client-connect/src/commands/AssociateFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateFlowRequest, AssociateFlowResponse } from "../models/models_0"; +import type { AssociateFlowRequest, AssociateFlowResponse } from "../models/models_0"; import { AssociateFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateInstanceStorageConfigCommand.ts b/clients/client-connect/src/commands/AssociateInstanceStorageConfigCommand.ts index 077f126935cda..44e3c440cb453 100644 --- a/clients/client-connect/src/commands/AssociateInstanceStorageConfigCommand.ts +++ b/clients/client-connect/src/commands/AssociateInstanceStorageConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateInstanceStorageConfigRequest, AssociateInstanceStorageConfigResponse } from "../models/models_0"; +import type { AssociateInstanceStorageConfigRequest, AssociateInstanceStorageConfigResponse } from "../models/models_0"; import { AssociateInstanceStorageConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateLambdaFunctionCommand.ts b/clients/client-connect/src/commands/AssociateLambdaFunctionCommand.ts index 1b6ab30cbdd0a..61c6ecb7c8d98 100644 --- a/clients/client-connect/src/commands/AssociateLambdaFunctionCommand.ts +++ b/clients/client-connect/src/commands/AssociateLambdaFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateLambdaFunctionRequest } from "../models/models_0"; +import type { AssociateLambdaFunctionRequest } from "../models/models_0"; import { AssociateLambdaFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateLexBotCommand.ts b/clients/client-connect/src/commands/AssociateLexBotCommand.ts index bfc3f7cdfd70e..5af33fbfee47d 100644 --- a/clients/client-connect/src/commands/AssociateLexBotCommand.ts +++ b/clients/client-connect/src/commands/AssociateLexBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateLexBotRequest } from "../models/models_0"; +import type { AssociateLexBotRequest } from "../models/models_0"; import { AssociateLexBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociatePhoneNumberContactFlowCommand.ts b/clients/client-connect/src/commands/AssociatePhoneNumberContactFlowCommand.ts index ebf857fe2755e..f4736bf3ca49c 100644 --- a/clients/client-connect/src/commands/AssociatePhoneNumberContactFlowCommand.ts +++ b/clients/client-connect/src/commands/AssociatePhoneNumberContactFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociatePhoneNumberContactFlowRequest } from "../models/models_0"; +import type { AssociatePhoneNumberContactFlowRequest } from "../models/models_0"; import { AssociatePhoneNumberContactFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateQueueQuickConnectsCommand.ts b/clients/client-connect/src/commands/AssociateQueueQuickConnectsCommand.ts index 5ae3a8e554967..e7af1cd30bf4d 100644 --- a/clients/client-connect/src/commands/AssociateQueueQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/AssociateQueueQuickConnectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateQueueQuickConnectsRequest } from "../models/models_0"; +import type { AssociateQueueQuickConnectsRequest } from "../models/models_0"; import { AssociateQueueQuickConnects } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateRoutingProfileQueuesCommand.ts b/clients/client-connect/src/commands/AssociateRoutingProfileQueuesCommand.ts index e049ae89e3817..61d1f1de5229a 100644 --- a/clients/client-connect/src/commands/AssociateRoutingProfileQueuesCommand.ts +++ b/clients/client-connect/src/commands/AssociateRoutingProfileQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateRoutingProfileQueuesRequest } from "../models/models_0"; +import type { AssociateRoutingProfileQueuesRequest } from "../models/models_0"; import { AssociateRoutingProfileQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateSecurityKeyCommand.ts b/clients/client-connect/src/commands/AssociateSecurityKeyCommand.ts index 7ec299c01796f..074c1a155a3b8 100644 --- a/clients/client-connect/src/commands/AssociateSecurityKeyCommand.ts +++ b/clients/client-connect/src/commands/AssociateSecurityKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSecurityKeyRequest, AssociateSecurityKeyResponse } from "../models/models_0"; +import type { AssociateSecurityKeyRequest, AssociateSecurityKeyResponse } from "../models/models_0"; import { AssociateSecurityKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateSecurityProfilesCommand.ts b/clients/client-connect/src/commands/AssociateSecurityProfilesCommand.ts index 13be72f41dffd..d2db226262865 100644 --- a/clients/client-connect/src/commands/AssociateSecurityProfilesCommand.ts +++ b/clients/client-connect/src/commands/AssociateSecurityProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSecurityProfilesRequest } from "../models/models_0"; +import type { AssociateSecurityProfilesRequest } from "../models/models_0"; import { AssociateSecurityProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateTrafficDistributionGroupUserCommand.ts b/clients/client-connect/src/commands/AssociateTrafficDistributionGroupUserCommand.ts index 2ce9a920030e4..a2d6c7af63880 100644 --- a/clients/client-connect/src/commands/AssociateTrafficDistributionGroupUserCommand.ts +++ b/clients/client-connect/src/commands/AssociateTrafficDistributionGroupUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateTrafficDistributionGroupUserRequest, AssociateTrafficDistributionGroupUserResponse, } from "../models/models_0"; diff --git a/clients/client-connect/src/commands/AssociateUserProficienciesCommand.ts b/clients/client-connect/src/commands/AssociateUserProficienciesCommand.ts index 5b869166f6f9d..159b64876dbb4 100644 --- a/clients/client-connect/src/commands/AssociateUserProficienciesCommand.ts +++ b/clients/client-connect/src/commands/AssociateUserProficienciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateUserProficienciesRequest } from "../models/models_0"; +import type { AssociateUserProficienciesRequest } from "../models/models_0"; import { AssociateUserProficiencies } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/AssociateWorkspaceCommand.ts b/clients/client-connect/src/commands/AssociateWorkspaceCommand.ts index eec199bd2e92c..0b55117b0f610 100644 --- a/clients/client-connect/src/commands/AssociateWorkspaceCommand.ts +++ b/clients/client-connect/src/commands/AssociateWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateWorkspaceRequest, AssociateWorkspaceResponse } from "../models/models_0"; +import type { AssociateWorkspaceRequest, AssociateWorkspaceResponse } from "../models/models_0"; import { AssociateWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/BatchAssociateAnalyticsDataSetCommand.ts b/clients/client-connect/src/commands/BatchAssociateAnalyticsDataSetCommand.ts index 5c70959b27e1f..e9204af3a30cf 100644 --- a/clients/client-connect/src/commands/BatchAssociateAnalyticsDataSetCommand.ts +++ b/clients/client-connect/src/commands/BatchAssociateAnalyticsDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchAssociateAnalyticsDataSetRequest, BatchAssociateAnalyticsDataSetResponse } from "../models/models_0"; +import type { BatchAssociateAnalyticsDataSetRequest, BatchAssociateAnalyticsDataSetResponse } from "../models/models_0"; import { BatchAssociateAnalyticsDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/BatchCreateDataTableValueCommand.ts b/clients/client-connect/src/commands/BatchCreateDataTableValueCommand.ts index 7248dce5cc27f..9b43ff04510ca 100644 --- a/clients/client-connect/src/commands/BatchCreateDataTableValueCommand.ts +++ b/clients/client-connect/src/commands/BatchCreateDataTableValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateDataTableValueRequest, BatchCreateDataTableValueResponse } from "../models/models_0"; +import type { BatchCreateDataTableValueRequest, BatchCreateDataTableValueResponse } from "../models/models_0"; import { BatchCreateDataTableValue } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/BatchDeleteDataTableValueCommand.ts b/clients/client-connect/src/commands/BatchDeleteDataTableValueCommand.ts index 072b436a8baf4..f8810d967da33 100644 --- a/clients/client-connect/src/commands/BatchDeleteDataTableValueCommand.ts +++ b/clients/client-connect/src/commands/BatchDeleteDataTableValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteDataTableValueRequest, BatchDeleteDataTableValueResponse } from "../models/models_0"; +import type { BatchDeleteDataTableValueRequest, BatchDeleteDataTableValueResponse } from "../models/models_0"; import { BatchDeleteDataTableValue } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/BatchDescribeDataTableValueCommand.ts b/clients/client-connect/src/commands/BatchDescribeDataTableValueCommand.ts index a1509334b3307..9892281bc28a0 100644 --- a/clients/client-connect/src/commands/BatchDescribeDataTableValueCommand.ts +++ b/clients/client-connect/src/commands/BatchDescribeDataTableValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDescribeDataTableValueRequest, BatchDescribeDataTableValueResponse } from "../models/models_0"; +import type { BatchDescribeDataTableValueRequest, BatchDescribeDataTableValueResponse } from "../models/models_0"; import { BatchDescribeDataTableValue } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/BatchDisassociateAnalyticsDataSetCommand.ts b/clients/client-connect/src/commands/BatchDisassociateAnalyticsDataSetCommand.ts index f66b4abfd66f8..132132145cbff 100644 --- a/clients/client-connect/src/commands/BatchDisassociateAnalyticsDataSetCommand.ts +++ b/clients/client-connect/src/commands/BatchDisassociateAnalyticsDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchDisassociateAnalyticsDataSetRequest, BatchDisassociateAnalyticsDataSetResponse, } from "../models/models_0"; diff --git a/clients/client-connect/src/commands/BatchGetAttachedFileMetadataCommand.ts b/clients/client-connect/src/commands/BatchGetAttachedFileMetadataCommand.ts index fd7d8cdc6413b..37f03c0278f13 100644 --- a/clients/client-connect/src/commands/BatchGetAttachedFileMetadataCommand.ts +++ b/clients/client-connect/src/commands/BatchGetAttachedFileMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetAttachedFileMetadataRequest, BatchGetAttachedFileMetadataResponse } from "../models/models_0"; +import type { BatchGetAttachedFileMetadataRequest, BatchGetAttachedFileMetadataResponse } from "../models/models_0"; import { BatchGetAttachedFileMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/BatchGetFlowAssociationCommand.ts b/clients/client-connect/src/commands/BatchGetFlowAssociationCommand.ts index 8decbc19f1e57..603003e778975 100644 --- a/clients/client-connect/src/commands/BatchGetFlowAssociationCommand.ts +++ b/clients/client-connect/src/commands/BatchGetFlowAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetFlowAssociationRequest, BatchGetFlowAssociationResponse } from "../models/models_0"; +import type { BatchGetFlowAssociationRequest, BatchGetFlowAssociationResponse } from "../models/models_0"; import { BatchGetFlowAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/BatchPutContactCommand.ts b/clients/client-connect/src/commands/BatchPutContactCommand.ts index 7c080f2f11252..4026aef5cd655 100644 --- a/clients/client-connect/src/commands/BatchPutContactCommand.ts +++ b/clients/client-connect/src/commands/BatchPutContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchPutContactRequest, BatchPutContactResponse } from "../models/models_0"; +import type { BatchPutContactRequest, BatchPutContactResponse } from "../models/models_0"; import { BatchPutContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/BatchUpdateDataTableValueCommand.ts b/clients/client-connect/src/commands/BatchUpdateDataTableValueCommand.ts index 7babbeeead598..fa616445e9a37 100644 --- a/clients/client-connect/src/commands/BatchUpdateDataTableValueCommand.ts +++ b/clients/client-connect/src/commands/BatchUpdateDataTableValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateDataTableValueRequest, BatchUpdateDataTableValueResponse } from "../models/models_0"; +import type { BatchUpdateDataTableValueRequest, BatchUpdateDataTableValueResponse } from "../models/models_0"; import { BatchUpdateDataTableValue } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ClaimPhoneNumberCommand.ts b/clients/client-connect/src/commands/ClaimPhoneNumberCommand.ts index 9ba8371e9694f..664edc4ddc2d9 100644 --- a/clients/client-connect/src/commands/ClaimPhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/ClaimPhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClaimPhoneNumberRequest, ClaimPhoneNumberResponse } from "../models/models_0"; +import type { ClaimPhoneNumberRequest, ClaimPhoneNumberResponse } from "../models/models_0"; import { ClaimPhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CompleteAttachedFileUploadCommand.ts b/clients/client-connect/src/commands/CompleteAttachedFileUploadCommand.ts index 67649f03e1178..e830f4d622956 100644 --- a/clients/client-connect/src/commands/CompleteAttachedFileUploadCommand.ts +++ b/clients/client-connect/src/commands/CompleteAttachedFileUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteAttachedFileUploadRequest, CompleteAttachedFileUploadResponse } from "../models/models_0"; +import type { CompleteAttachedFileUploadRequest, CompleteAttachedFileUploadResponse } from "../models/models_0"; import { CompleteAttachedFileUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateAgentStatusCommand.ts b/clients/client-connect/src/commands/CreateAgentStatusCommand.ts index 3bc0d01980fa0..addd62ac089e8 100644 --- a/clients/client-connect/src/commands/CreateAgentStatusCommand.ts +++ b/clients/client-connect/src/commands/CreateAgentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAgentStatusRequest, CreateAgentStatusResponse } from "../models/models_0"; +import type { CreateAgentStatusRequest, CreateAgentStatusResponse } from "../models/models_0"; import { CreateAgentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateContactCommand.ts b/clients/client-connect/src/commands/CreateContactCommand.ts index 972add203f4f1..73fd158f01ce7 100644 --- a/clients/client-connect/src/commands/CreateContactCommand.ts +++ b/clients/client-connect/src/commands/CreateContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactResponse } from "../models/models_0"; -import { CreateContactRequest } from "../models/models_3"; +import type { CreateContactResponse } from "../models/models_0"; +import type { CreateContactRequest } from "../models/models_3"; import { CreateContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateContactFlowCommand.ts b/clients/client-connect/src/commands/CreateContactFlowCommand.ts index 8ba4ea9da938d..605e175042eef 100644 --- a/clients/client-connect/src/commands/CreateContactFlowCommand.ts +++ b/clients/client-connect/src/commands/CreateContactFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactFlowRequest, CreateContactFlowResponse } from "../models/models_0"; +import type { CreateContactFlowRequest, CreateContactFlowResponse } from "../models/models_0"; import { CreateContactFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateContactFlowModuleAliasCommand.ts b/clients/client-connect/src/commands/CreateContactFlowModuleAliasCommand.ts index 04a91c8ff1931..1183f74791464 100644 --- a/clients/client-connect/src/commands/CreateContactFlowModuleAliasCommand.ts +++ b/clients/client-connect/src/commands/CreateContactFlowModuleAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactFlowModuleAliasRequest, CreateContactFlowModuleAliasResponse } from "../models/models_0"; +import type { CreateContactFlowModuleAliasRequest, CreateContactFlowModuleAliasResponse } from "../models/models_0"; import { CreateContactFlowModuleAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateContactFlowModuleCommand.ts b/clients/client-connect/src/commands/CreateContactFlowModuleCommand.ts index cab1a4a59f5db..c6dac2032374f 100644 --- a/clients/client-connect/src/commands/CreateContactFlowModuleCommand.ts +++ b/clients/client-connect/src/commands/CreateContactFlowModuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactFlowModuleRequest, CreateContactFlowModuleResponse } from "../models/models_0"; +import type { CreateContactFlowModuleRequest, CreateContactFlowModuleResponse } from "../models/models_0"; import { CreateContactFlowModule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateContactFlowModuleVersionCommand.ts b/clients/client-connect/src/commands/CreateContactFlowModuleVersionCommand.ts index 6aa4868b7f560..46d1cb30d3a5c 100644 --- a/clients/client-connect/src/commands/CreateContactFlowModuleVersionCommand.ts +++ b/clients/client-connect/src/commands/CreateContactFlowModuleVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactFlowModuleVersionRequest, CreateContactFlowModuleVersionResponse } from "../models/models_0"; +import type { CreateContactFlowModuleVersionRequest, CreateContactFlowModuleVersionResponse } from "../models/models_0"; import { CreateContactFlowModuleVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateContactFlowVersionCommand.ts b/clients/client-connect/src/commands/CreateContactFlowVersionCommand.ts index b7499a9391944..36d89a2f420c7 100644 --- a/clients/client-connect/src/commands/CreateContactFlowVersionCommand.ts +++ b/clients/client-connect/src/commands/CreateContactFlowVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactFlowVersionRequest, CreateContactFlowVersionResponse } from "../models/models_0"; +import type { CreateContactFlowVersionRequest, CreateContactFlowVersionResponse } from "../models/models_0"; import { CreateContactFlowVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateDataTableAttributeCommand.ts b/clients/client-connect/src/commands/CreateDataTableAttributeCommand.ts index 15c9f56fdc528..cf557fdb5f93c 100644 --- a/clients/client-connect/src/commands/CreateDataTableAttributeCommand.ts +++ b/clients/client-connect/src/commands/CreateDataTableAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataTableAttributeRequest, CreateDataTableAttributeResponse } from "../models/models_0"; +import type { CreateDataTableAttributeRequest, CreateDataTableAttributeResponse } from "../models/models_0"; import { CreateDataTableAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateDataTableCommand.ts b/clients/client-connect/src/commands/CreateDataTableCommand.ts index 90138e54e89f7..da785740fce22 100644 --- a/clients/client-connect/src/commands/CreateDataTableCommand.ts +++ b/clients/client-connect/src/commands/CreateDataTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataTableRequest, CreateDataTableResponse } from "../models/models_0"; +import type { CreateDataTableRequest, CreateDataTableResponse } from "../models/models_0"; import { CreateDataTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateEmailAddressCommand.ts b/clients/client-connect/src/commands/CreateEmailAddressCommand.ts index f173548946b59..f93b0028b1673 100644 --- a/clients/client-connect/src/commands/CreateEmailAddressCommand.ts +++ b/clients/client-connect/src/commands/CreateEmailAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEmailAddressRequest, CreateEmailAddressResponse } from "../models/models_0"; +import type { CreateEmailAddressRequest, CreateEmailAddressResponse } from "../models/models_0"; import { CreateEmailAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateEvaluationFormCommand.ts b/clients/client-connect/src/commands/CreateEvaluationFormCommand.ts index 2ef100ec1b695..a2b3f86b7fd1f 100644 --- a/clients/client-connect/src/commands/CreateEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/CreateEvaluationFormCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEvaluationFormResponse } from "../models/models_0"; -import { CreateEvaluationFormRequest } from "../models/models_3"; +import type { CreateEvaluationFormResponse } from "../models/models_0"; +import type { CreateEvaluationFormRequest } from "../models/models_3"; import { CreateEvaluationForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateHoursOfOperationCommand.ts b/clients/client-connect/src/commands/CreateHoursOfOperationCommand.ts index fba951b27d48d..ef85c90ce5186 100644 --- a/clients/client-connect/src/commands/CreateHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/CreateHoursOfOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHoursOfOperationRequest, CreateHoursOfOperationResponse } from "../models/models_0"; +import type { CreateHoursOfOperationRequest, CreateHoursOfOperationResponse } from "../models/models_0"; import { CreateHoursOfOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateHoursOfOperationOverrideCommand.ts b/clients/client-connect/src/commands/CreateHoursOfOperationOverrideCommand.ts index daa6b687a19bb..608f59046386a 100644 --- a/clients/client-connect/src/commands/CreateHoursOfOperationOverrideCommand.ts +++ b/clients/client-connect/src/commands/CreateHoursOfOperationOverrideCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHoursOfOperationOverrideRequest, CreateHoursOfOperationOverrideResponse } from "../models/models_0"; +import type { CreateHoursOfOperationOverrideRequest, CreateHoursOfOperationOverrideResponse } from "../models/models_0"; import { CreateHoursOfOperationOverride } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateInstanceCommand.ts b/clients/client-connect/src/commands/CreateInstanceCommand.ts index 37d09c3543e06..0d13a5f6d790d 100644 --- a/clients/client-connect/src/commands/CreateInstanceCommand.ts +++ b/clients/client-connect/src/commands/CreateInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInstanceRequest, CreateInstanceResponse } from "../models/models_0"; +import type { CreateInstanceRequest, CreateInstanceResponse } from "../models/models_0"; import { CreateInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateIntegrationAssociationCommand.ts b/clients/client-connect/src/commands/CreateIntegrationAssociationCommand.ts index 3d7affc7692d0..214faf79e1e41 100644 --- a/clients/client-connect/src/commands/CreateIntegrationAssociationCommand.ts +++ b/clients/client-connect/src/commands/CreateIntegrationAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIntegrationAssociationRequest, CreateIntegrationAssociationResponse } from "../models/models_0"; +import type { CreateIntegrationAssociationRequest, CreateIntegrationAssociationResponse } from "../models/models_0"; import { CreateIntegrationAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateParticipantCommand.ts b/clients/client-connect/src/commands/CreateParticipantCommand.ts index 3dfe2d8fe15c7..8da3892bddda5 100644 --- a/clients/client-connect/src/commands/CreateParticipantCommand.ts +++ b/clients/client-connect/src/commands/CreateParticipantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateParticipantRequest, CreateParticipantResponse } from "../models/models_0"; +import type { CreateParticipantRequest, CreateParticipantResponse } from "../models/models_0"; import { CreateParticipant } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreatePersistentContactAssociationCommand.ts b/clients/client-connect/src/commands/CreatePersistentContactAssociationCommand.ts index 466a735412ce8..5656519480b94 100644 --- a/clients/client-connect/src/commands/CreatePersistentContactAssociationCommand.ts +++ b/clients/client-connect/src/commands/CreatePersistentContactAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreatePersistentContactAssociationRequest, CreatePersistentContactAssociationResponse, } from "../models/models_0"; diff --git a/clients/client-connect/src/commands/CreatePredefinedAttributeCommand.ts b/clients/client-connect/src/commands/CreatePredefinedAttributeCommand.ts index c7733571d7a1c..a8bf53c386c64 100644 --- a/clients/client-connect/src/commands/CreatePredefinedAttributeCommand.ts +++ b/clients/client-connect/src/commands/CreatePredefinedAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePredefinedAttributeRequest } from "../models/models_0"; +import type { CreatePredefinedAttributeRequest } from "../models/models_0"; import { CreatePredefinedAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreatePromptCommand.ts b/clients/client-connect/src/commands/CreatePromptCommand.ts index 97efb27de6b7f..547ac15fe6438 100644 --- a/clients/client-connect/src/commands/CreatePromptCommand.ts +++ b/clients/client-connect/src/commands/CreatePromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePromptRequest, CreatePromptResponse } from "../models/models_0"; +import type { CreatePromptRequest, CreatePromptResponse } from "../models/models_0"; import { CreatePrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreatePushNotificationRegistrationCommand.ts b/clients/client-connect/src/commands/CreatePushNotificationRegistrationCommand.ts index a23b3adf64e66..f5c71b94e302c 100644 --- a/clients/client-connect/src/commands/CreatePushNotificationRegistrationCommand.ts +++ b/clients/client-connect/src/commands/CreatePushNotificationRegistrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreatePushNotificationRegistrationRequest, CreatePushNotificationRegistrationResponse, } from "../models/models_0"; diff --git a/clients/client-connect/src/commands/CreateQueueCommand.ts b/clients/client-connect/src/commands/CreateQueueCommand.ts index ffc338b160d46..f6b876f4f1f29 100644 --- a/clients/client-connect/src/commands/CreateQueueCommand.ts +++ b/clients/client-connect/src/commands/CreateQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQueueRequest, CreateQueueResponse } from "../models/models_0"; +import type { CreateQueueRequest, CreateQueueResponse } from "../models/models_0"; import { CreateQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateQuickConnectCommand.ts b/clients/client-connect/src/commands/CreateQuickConnectCommand.ts index c33da0ec9a170..e9cc34304e2e9 100644 --- a/clients/client-connect/src/commands/CreateQuickConnectCommand.ts +++ b/clients/client-connect/src/commands/CreateQuickConnectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQuickConnectRequest, CreateQuickConnectResponse } from "../models/models_0"; +import type { CreateQuickConnectRequest, CreateQuickConnectResponse } from "../models/models_0"; import { CreateQuickConnect } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateRoutingProfileCommand.ts b/clients/client-connect/src/commands/CreateRoutingProfileCommand.ts index 93c79ba835dba..001d47c213186 100644 --- a/clients/client-connect/src/commands/CreateRoutingProfileCommand.ts +++ b/clients/client-connect/src/commands/CreateRoutingProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRoutingProfileRequest, CreateRoutingProfileResponse } from "../models/models_0"; +import type { CreateRoutingProfileRequest, CreateRoutingProfileResponse } from "../models/models_0"; import { CreateRoutingProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateRuleCommand.ts b/clients/client-connect/src/commands/CreateRuleCommand.ts index 6ebf126d90b12..b175842b488a1 100644 --- a/clients/client-connect/src/commands/CreateRuleCommand.ts +++ b/clients/client-connect/src/commands/CreateRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; +import type { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; import { CreateRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateSecurityProfileCommand.ts b/clients/client-connect/src/commands/CreateSecurityProfileCommand.ts index a3f3b6f7a81b1..72982f33a75ba 100644 --- a/clients/client-connect/src/commands/CreateSecurityProfileCommand.ts +++ b/clients/client-connect/src/commands/CreateSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSecurityProfileRequest, CreateSecurityProfileResponse } from "../models/models_0"; +import type { CreateSecurityProfileRequest, CreateSecurityProfileResponse } from "../models/models_0"; import { CreateSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateTaskTemplateCommand.ts b/clients/client-connect/src/commands/CreateTaskTemplateCommand.ts index 2525c4e0db43f..9e72429cdd239 100644 --- a/clients/client-connect/src/commands/CreateTaskTemplateCommand.ts +++ b/clients/client-connect/src/commands/CreateTaskTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTaskTemplateRequest, CreateTaskTemplateResponse } from "../models/models_0"; +import type { CreateTaskTemplateRequest, CreateTaskTemplateResponse } from "../models/models_0"; import { CreateTaskTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateTrafficDistributionGroupCommand.ts b/clients/client-connect/src/commands/CreateTrafficDistributionGroupCommand.ts index 27ab188340b30..7f7eb710cdca7 100644 --- a/clients/client-connect/src/commands/CreateTrafficDistributionGroupCommand.ts +++ b/clients/client-connect/src/commands/CreateTrafficDistributionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrafficDistributionGroupRequest, CreateTrafficDistributionGroupResponse } from "../models/models_0"; +import type { CreateTrafficDistributionGroupRequest, CreateTrafficDistributionGroupResponse } from "../models/models_0"; import { CreateTrafficDistributionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateUseCaseCommand.ts b/clients/client-connect/src/commands/CreateUseCaseCommand.ts index 33e44a5e19477..0448f9b41d5f9 100644 --- a/clients/client-connect/src/commands/CreateUseCaseCommand.ts +++ b/clients/client-connect/src/commands/CreateUseCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUseCaseRequest, CreateUseCaseResponse } from "../models/models_0"; +import type { CreateUseCaseRequest, CreateUseCaseResponse } from "../models/models_0"; import { CreateUseCase } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateUserCommand.ts b/clients/client-connect/src/commands/CreateUserCommand.ts index 65e04dbea1a32..3f36679a04fd0 100644 --- a/clients/client-connect/src/commands/CreateUserCommand.ts +++ b/clients/client-connect/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateUserHierarchyGroupCommand.ts b/clients/client-connect/src/commands/CreateUserHierarchyGroupCommand.ts index 79c2434568441..58b462b96c546 100644 --- a/clients/client-connect/src/commands/CreateUserHierarchyGroupCommand.ts +++ b/clients/client-connect/src/commands/CreateUserHierarchyGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserHierarchyGroupRequest, CreateUserHierarchyGroupResponse } from "../models/models_0"; +import type { CreateUserHierarchyGroupRequest, CreateUserHierarchyGroupResponse } from "../models/models_0"; import { CreateUserHierarchyGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateViewCommand.ts b/clients/client-connect/src/commands/CreateViewCommand.ts index e2b4ab2dbeace..4c927e8f25d16 100644 --- a/clients/client-connect/src/commands/CreateViewCommand.ts +++ b/clients/client-connect/src/commands/CreateViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateViewRequest, CreateViewResponse } from "../models/models_0"; +import type { CreateViewRequest, CreateViewResponse } from "../models/models_0"; import { CreateView } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateViewVersionCommand.ts b/clients/client-connect/src/commands/CreateViewVersionCommand.ts index 5fb64348f87ae..841b4813dc247 100644 --- a/clients/client-connect/src/commands/CreateViewVersionCommand.ts +++ b/clients/client-connect/src/commands/CreateViewVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateViewVersionRequest, CreateViewVersionResponse } from "../models/models_0"; +import type { CreateViewVersionRequest, CreateViewVersionResponse } from "../models/models_0"; import { CreateViewVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateVocabularyCommand.ts b/clients/client-connect/src/commands/CreateVocabularyCommand.ts index af56c04243a44..bacb4a59ff2c6 100644 --- a/clients/client-connect/src/commands/CreateVocabularyCommand.ts +++ b/clients/client-connect/src/commands/CreateVocabularyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVocabularyRequest, CreateVocabularyResponse } from "../models/models_0"; +import type { CreateVocabularyRequest, CreateVocabularyResponse } from "../models/models_0"; import { CreateVocabulary } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateWorkspaceCommand.ts b/clients/client-connect/src/commands/CreateWorkspaceCommand.ts index dfe7dcbdfe9ad..c72e835ebd1c9 100644 --- a/clients/client-connect/src/commands/CreateWorkspaceCommand.ts +++ b/clients/client-connect/src/commands/CreateWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0"; +import type { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0"; import { CreateWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/CreateWorkspacePageCommand.ts b/clients/client-connect/src/commands/CreateWorkspacePageCommand.ts index e952c4f00c748..e7986fa6ebbad 100644 --- a/clients/client-connect/src/commands/CreateWorkspacePageCommand.ts +++ b/clients/client-connect/src/commands/CreateWorkspacePageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkspacePageRequest, CreateWorkspacePageResponse } from "../models/models_0"; +import type { CreateWorkspacePageRequest, CreateWorkspacePageResponse } from "../models/models_0"; import { CreateWorkspacePage } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeactivateEvaluationFormCommand.ts b/clients/client-connect/src/commands/DeactivateEvaluationFormCommand.ts index 3ced3c0610f65..85ed69e1dfc11 100644 --- a/clients/client-connect/src/commands/DeactivateEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/DeactivateEvaluationFormCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeactivateEvaluationFormRequest, DeactivateEvaluationFormResponse } from "../models/models_0"; +import type { DeactivateEvaluationFormRequest, DeactivateEvaluationFormResponse } from "../models/models_0"; import { DeactivateEvaluationForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteAttachedFileCommand.ts b/clients/client-connect/src/commands/DeleteAttachedFileCommand.ts index 67114ffb73353..73260c86580cf 100644 --- a/clients/client-connect/src/commands/DeleteAttachedFileCommand.ts +++ b/clients/client-connect/src/commands/DeleteAttachedFileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAttachedFileRequest, DeleteAttachedFileResponse } from "../models/models_0"; +import type { DeleteAttachedFileRequest, DeleteAttachedFileResponse } from "../models/models_0"; import { DeleteAttachedFile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteContactEvaluationCommand.ts b/clients/client-connect/src/commands/DeleteContactEvaluationCommand.ts index 953cf1f9df0b5..ecab4a1d97f60 100644 --- a/clients/client-connect/src/commands/DeleteContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactEvaluationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactEvaluationRequest } from "../models/models_0"; +import type { DeleteContactEvaluationRequest } from "../models/models_0"; import { DeleteContactEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteContactFlowCommand.ts b/clients/client-connect/src/commands/DeleteContactFlowCommand.ts index 9a6132a9b75b2..50fb9bd652cc7 100644 --- a/clients/client-connect/src/commands/DeleteContactFlowCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactFlowRequest, DeleteContactFlowResponse } from "../models/models_0"; +import type { DeleteContactFlowRequest, DeleteContactFlowResponse } from "../models/models_0"; import { DeleteContactFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteContactFlowModuleAliasCommand.ts b/clients/client-connect/src/commands/DeleteContactFlowModuleAliasCommand.ts index 88a6e4953407d..3d29654086d9b 100644 --- a/clients/client-connect/src/commands/DeleteContactFlowModuleAliasCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactFlowModuleAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactFlowModuleAliasRequest, DeleteContactFlowModuleAliasResponse } from "../models/models_1"; +import type { DeleteContactFlowModuleAliasRequest, DeleteContactFlowModuleAliasResponse } from "../models/models_1"; import { DeleteContactFlowModuleAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteContactFlowModuleCommand.ts b/clients/client-connect/src/commands/DeleteContactFlowModuleCommand.ts index f8d0a07d84694..e609826333200 100644 --- a/clients/client-connect/src/commands/DeleteContactFlowModuleCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactFlowModuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactFlowModuleRequest, DeleteContactFlowModuleResponse } from "../models/models_0"; +import type { DeleteContactFlowModuleRequest, DeleteContactFlowModuleResponse } from "../models/models_0"; import { DeleteContactFlowModule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteContactFlowModuleVersionCommand.ts b/clients/client-connect/src/commands/DeleteContactFlowModuleVersionCommand.ts index f1fb7b5538643..a03e371ed37a6 100644 --- a/clients/client-connect/src/commands/DeleteContactFlowModuleVersionCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactFlowModuleVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactFlowModuleVersionRequest, DeleteContactFlowModuleVersionResponse } from "../models/models_1"; +import type { DeleteContactFlowModuleVersionRequest, DeleteContactFlowModuleVersionResponse } from "../models/models_1"; import { DeleteContactFlowModuleVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteContactFlowVersionCommand.ts b/clients/client-connect/src/commands/DeleteContactFlowVersionCommand.ts index 98bc28e1d72ea..5e846f7f86c2f 100644 --- a/clients/client-connect/src/commands/DeleteContactFlowVersionCommand.ts +++ b/clients/client-connect/src/commands/DeleteContactFlowVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactFlowVersionRequest, DeleteContactFlowVersionResponse } from "../models/models_1"; +import type { DeleteContactFlowVersionRequest, DeleteContactFlowVersionResponse } from "../models/models_1"; import { DeleteContactFlowVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteDataTableAttributeCommand.ts b/clients/client-connect/src/commands/DeleteDataTableAttributeCommand.ts index 96d0bcd125fdb..a69de24e5a9b9 100644 --- a/clients/client-connect/src/commands/DeleteDataTableAttributeCommand.ts +++ b/clients/client-connect/src/commands/DeleteDataTableAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataTableAttributeRequest, DeleteDataTableAttributeResponse } from "../models/models_1"; +import type { DeleteDataTableAttributeRequest, DeleteDataTableAttributeResponse } from "../models/models_1"; import { DeleteDataTableAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteDataTableCommand.ts b/clients/client-connect/src/commands/DeleteDataTableCommand.ts index b4bc12142abbd..eb85bb8497171 100644 --- a/clients/client-connect/src/commands/DeleteDataTableCommand.ts +++ b/clients/client-connect/src/commands/DeleteDataTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataTableRequest, DeleteDataTableResponse } from "../models/models_1"; +import type { DeleteDataTableRequest, DeleteDataTableResponse } from "../models/models_1"; import { DeleteDataTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteEmailAddressCommand.ts b/clients/client-connect/src/commands/DeleteEmailAddressCommand.ts index 0d8cca60c08a3..6aabf8aa142e5 100644 --- a/clients/client-connect/src/commands/DeleteEmailAddressCommand.ts +++ b/clients/client-connect/src/commands/DeleteEmailAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEmailAddressRequest, DeleteEmailAddressResponse } from "../models/models_1"; +import type { DeleteEmailAddressRequest, DeleteEmailAddressResponse } from "../models/models_1"; import { DeleteEmailAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteEvaluationFormCommand.ts b/clients/client-connect/src/commands/DeleteEvaluationFormCommand.ts index 447ba9d3ab015..d781fc2a03557 100644 --- a/clients/client-connect/src/commands/DeleteEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/DeleteEvaluationFormCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEvaluationFormRequest } from "../models/models_1"; +import type { DeleteEvaluationFormRequest } from "../models/models_1"; import { DeleteEvaluationForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteHoursOfOperationCommand.ts b/clients/client-connect/src/commands/DeleteHoursOfOperationCommand.ts index 1ba3aee7a265e..997ec6a01061c 100644 --- a/clients/client-connect/src/commands/DeleteHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/DeleteHoursOfOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHoursOfOperationRequest } from "../models/models_1"; +import type { DeleteHoursOfOperationRequest } from "../models/models_1"; import { DeleteHoursOfOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteHoursOfOperationOverrideCommand.ts b/clients/client-connect/src/commands/DeleteHoursOfOperationOverrideCommand.ts index ff7738b5c565f..c72a1f12fa89e 100644 --- a/clients/client-connect/src/commands/DeleteHoursOfOperationOverrideCommand.ts +++ b/clients/client-connect/src/commands/DeleteHoursOfOperationOverrideCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHoursOfOperationOverrideRequest } from "../models/models_1"; +import type { DeleteHoursOfOperationOverrideRequest } from "../models/models_1"; import { DeleteHoursOfOperationOverride } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteInstanceCommand.ts b/clients/client-connect/src/commands/DeleteInstanceCommand.ts index b50db18b83b6b..d3597d999707d 100644 --- a/clients/client-connect/src/commands/DeleteInstanceCommand.ts +++ b/clients/client-connect/src/commands/DeleteInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInstanceRequest } from "../models/models_1"; +import type { DeleteInstanceRequest } from "../models/models_1"; import { DeleteInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteIntegrationAssociationCommand.ts b/clients/client-connect/src/commands/DeleteIntegrationAssociationCommand.ts index fdb6aecf50df2..31f1caa7656a1 100644 --- a/clients/client-connect/src/commands/DeleteIntegrationAssociationCommand.ts +++ b/clients/client-connect/src/commands/DeleteIntegrationAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIntegrationAssociationRequest } from "../models/models_1"; +import type { DeleteIntegrationAssociationRequest } from "../models/models_1"; import { DeleteIntegrationAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeletePredefinedAttributeCommand.ts b/clients/client-connect/src/commands/DeletePredefinedAttributeCommand.ts index f6a4262d0cf4c..fe35013160aed 100644 --- a/clients/client-connect/src/commands/DeletePredefinedAttributeCommand.ts +++ b/clients/client-connect/src/commands/DeletePredefinedAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePredefinedAttributeRequest } from "../models/models_1"; +import type { DeletePredefinedAttributeRequest } from "../models/models_1"; import { DeletePredefinedAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeletePromptCommand.ts b/clients/client-connect/src/commands/DeletePromptCommand.ts index 40578d18a7576..862fb0b804fe0 100644 --- a/clients/client-connect/src/commands/DeletePromptCommand.ts +++ b/clients/client-connect/src/commands/DeletePromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePromptRequest } from "../models/models_1"; +import type { DeletePromptRequest } from "../models/models_1"; import { DeletePrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeletePushNotificationRegistrationCommand.ts b/clients/client-connect/src/commands/DeletePushNotificationRegistrationCommand.ts index af59f06aa418a..8db6cb9423d7f 100644 --- a/clients/client-connect/src/commands/DeletePushNotificationRegistrationCommand.ts +++ b/clients/client-connect/src/commands/DeletePushNotificationRegistrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeletePushNotificationRegistrationRequest, DeletePushNotificationRegistrationResponse, } from "../models/models_1"; diff --git a/clients/client-connect/src/commands/DeleteQueueCommand.ts b/clients/client-connect/src/commands/DeleteQueueCommand.ts index 737ce254e97e3..080d6be2276f7 100644 --- a/clients/client-connect/src/commands/DeleteQueueCommand.ts +++ b/clients/client-connect/src/commands/DeleteQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueueRequest } from "../models/models_1"; +import type { DeleteQueueRequest } from "../models/models_1"; import { DeleteQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteQuickConnectCommand.ts b/clients/client-connect/src/commands/DeleteQuickConnectCommand.ts index d25080aa13b6c..d88374de7b420 100644 --- a/clients/client-connect/src/commands/DeleteQuickConnectCommand.ts +++ b/clients/client-connect/src/commands/DeleteQuickConnectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQuickConnectRequest } from "../models/models_1"; +import type { DeleteQuickConnectRequest } from "../models/models_1"; import { DeleteQuickConnect } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteRoutingProfileCommand.ts b/clients/client-connect/src/commands/DeleteRoutingProfileCommand.ts index bb168a2a6f7ce..e376fc89d1dd6 100644 --- a/clients/client-connect/src/commands/DeleteRoutingProfileCommand.ts +++ b/clients/client-connect/src/commands/DeleteRoutingProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRoutingProfileRequest } from "../models/models_1"; +import type { DeleteRoutingProfileRequest } from "../models/models_1"; import { DeleteRoutingProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteRuleCommand.ts b/clients/client-connect/src/commands/DeleteRuleCommand.ts index a308e7c95255f..c31bcd52c65d0 100644 --- a/clients/client-connect/src/commands/DeleteRuleCommand.ts +++ b/clients/client-connect/src/commands/DeleteRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleRequest } from "../models/models_1"; +import type { DeleteRuleRequest } from "../models/models_1"; import { DeleteRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteSecurityProfileCommand.ts b/clients/client-connect/src/commands/DeleteSecurityProfileCommand.ts index 4eeb343a967c4..10c93f655338d 100644 --- a/clients/client-connect/src/commands/DeleteSecurityProfileCommand.ts +++ b/clients/client-connect/src/commands/DeleteSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSecurityProfileRequest } from "../models/models_1"; +import type { DeleteSecurityProfileRequest } from "../models/models_1"; import { DeleteSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteTaskTemplateCommand.ts b/clients/client-connect/src/commands/DeleteTaskTemplateCommand.ts index 26bcae9387f70..6bad8e11bd20d 100644 --- a/clients/client-connect/src/commands/DeleteTaskTemplateCommand.ts +++ b/clients/client-connect/src/commands/DeleteTaskTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTaskTemplateRequest, DeleteTaskTemplateResponse } from "../models/models_1"; +import type { DeleteTaskTemplateRequest, DeleteTaskTemplateResponse } from "../models/models_1"; import { DeleteTaskTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteTrafficDistributionGroupCommand.ts b/clients/client-connect/src/commands/DeleteTrafficDistributionGroupCommand.ts index 5b16122368457..f3c7e048b202f 100644 --- a/clients/client-connect/src/commands/DeleteTrafficDistributionGroupCommand.ts +++ b/clients/client-connect/src/commands/DeleteTrafficDistributionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrafficDistributionGroupRequest, DeleteTrafficDistributionGroupResponse } from "../models/models_1"; +import type { DeleteTrafficDistributionGroupRequest, DeleteTrafficDistributionGroupResponse } from "../models/models_1"; import { DeleteTrafficDistributionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteUseCaseCommand.ts b/clients/client-connect/src/commands/DeleteUseCaseCommand.ts index 104a9523e468a..fa7bcb29f2952 100644 --- a/clients/client-connect/src/commands/DeleteUseCaseCommand.ts +++ b/clients/client-connect/src/commands/DeleteUseCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUseCaseRequest } from "../models/models_1"; +import type { DeleteUseCaseRequest } from "../models/models_1"; import { DeleteUseCase } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteUserCommand.ts b/clients/client-connect/src/commands/DeleteUserCommand.ts index 01bede7a4ae9c..074990e8b11c1 100644 --- a/clients/client-connect/src/commands/DeleteUserCommand.ts +++ b/clients/client-connect/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest } from "../models/models_1"; +import type { DeleteUserRequest } from "../models/models_1"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteUserHierarchyGroupCommand.ts b/clients/client-connect/src/commands/DeleteUserHierarchyGroupCommand.ts index 92644b3c8438d..3a70570f75264 100644 --- a/clients/client-connect/src/commands/DeleteUserHierarchyGroupCommand.ts +++ b/clients/client-connect/src/commands/DeleteUserHierarchyGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserHierarchyGroupRequest } from "../models/models_1"; +import type { DeleteUserHierarchyGroupRequest } from "../models/models_1"; import { DeleteUserHierarchyGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteViewCommand.ts b/clients/client-connect/src/commands/DeleteViewCommand.ts index 444d8fcfd05fd..230389f221b9b 100644 --- a/clients/client-connect/src/commands/DeleteViewCommand.ts +++ b/clients/client-connect/src/commands/DeleteViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteViewRequest, DeleteViewResponse } from "../models/models_1"; +import type { DeleteViewRequest, DeleteViewResponse } from "../models/models_1"; import { DeleteView } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteViewVersionCommand.ts b/clients/client-connect/src/commands/DeleteViewVersionCommand.ts index 4c374d3825220..ad8a43487bbe3 100644 --- a/clients/client-connect/src/commands/DeleteViewVersionCommand.ts +++ b/clients/client-connect/src/commands/DeleteViewVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteViewVersionRequest, DeleteViewVersionResponse } from "../models/models_1"; +import type { DeleteViewVersionRequest, DeleteViewVersionResponse } from "../models/models_1"; import { DeleteViewVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteVocabularyCommand.ts b/clients/client-connect/src/commands/DeleteVocabularyCommand.ts index 3fe25658cbd1b..4e682f5f08322 100644 --- a/clients/client-connect/src/commands/DeleteVocabularyCommand.ts +++ b/clients/client-connect/src/commands/DeleteVocabularyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVocabularyRequest, DeleteVocabularyResponse } from "../models/models_1"; +import type { DeleteVocabularyRequest, DeleteVocabularyResponse } from "../models/models_1"; import { DeleteVocabulary } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteWorkspaceCommand.ts b/clients/client-connect/src/commands/DeleteWorkspaceCommand.ts index 2e78cd1c6a72e..09396950ab0b0 100644 --- a/clients/client-connect/src/commands/DeleteWorkspaceCommand.ts +++ b/clients/client-connect/src/commands/DeleteWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkspaceRequest, DeleteWorkspaceResponse } from "../models/models_1"; +import type { DeleteWorkspaceRequest, DeleteWorkspaceResponse } from "../models/models_1"; import { DeleteWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteWorkspaceMediaCommand.ts b/clients/client-connect/src/commands/DeleteWorkspaceMediaCommand.ts index 4fd66a9930983..2c2aec1b21b2c 100644 --- a/clients/client-connect/src/commands/DeleteWorkspaceMediaCommand.ts +++ b/clients/client-connect/src/commands/DeleteWorkspaceMediaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkspaceMediaRequest, DeleteWorkspaceMediaResponse } from "../models/models_1"; +import type { DeleteWorkspaceMediaRequest, DeleteWorkspaceMediaResponse } from "../models/models_1"; import { DeleteWorkspaceMedia } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DeleteWorkspacePageCommand.ts b/clients/client-connect/src/commands/DeleteWorkspacePageCommand.ts index eeb473a7489ab..1fd7f34fbb75e 100644 --- a/clients/client-connect/src/commands/DeleteWorkspacePageCommand.ts +++ b/clients/client-connect/src/commands/DeleteWorkspacePageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkspacePageRequest, DeleteWorkspacePageResponse } from "../models/models_1"; +import type { DeleteWorkspacePageRequest, DeleteWorkspacePageResponse } from "../models/models_1"; import { DeleteWorkspacePage } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeAgentStatusCommand.ts b/clients/client-connect/src/commands/DescribeAgentStatusCommand.ts index c3217b0d475a8..6e3cf4d2ee76b 100644 --- a/clients/client-connect/src/commands/DescribeAgentStatusCommand.ts +++ b/clients/client-connect/src/commands/DescribeAgentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAgentStatusRequest, DescribeAgentStatusResponse } from "../models/models_1"; +import type { DescribeAgentStatusRequest, DescribeAgentStatusResponse } from "../models/models_1"; import { DescribeAgentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeAuthenticationProfileCommand.ts b/clients/client-connect/src/commands/DescribeAuthenticationProfileCommand.ts index b6e9847a92a28..8195deb996da0 100644 --- a/clients/client-connect/src/commands/DescribeAuthenticationProfileCommand.ts +++ b/clients/client-connect/src/commands/DescribeAuthenticationProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAuthenticationProfileRequest, DescribeAuthenticationProfileResponse } from "../models/models_1"; +import type { DescribeAuthenticationProfileRequest, DescribeAuthenticationProfileResponse } from "../models/models_1"; import { DescribeAuthenticationProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeContactCommand.ts b/clients/client-connect/src/commands/DescribeContactCommand.ts index 80dc40674cb8e..c34dc8c79b4d0 100644 --- a/clients/client-connect/src/commands/DescribeContactCommand.ts +++ b/clients/client-connect/src/commands/DescribeContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContactRequest } from "../models/models_1"; -import { DescribeContactResponse } from "../models/models_3"; +import type { DescribeContactRequest } from "../models/models_1"; +import type { DescribeContactResponse } from "../models/models_3"; import { DescribeContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeContactEvaluationCommand.ts b/clients/client-connect/src/commands/DescribeContactEvaluationCommand.ts index 9430551728688..d8f18ae22747f 100644 --- a/clients/client-connect/src/commands/DescribeContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/DescribeContactEvaluationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContactEvaluationRequest } from "../models/models_1"; -import { DescribeContactEvaluationResponse } from "../models/models_3"; +import type { DescribeContactEvaluationRequest } from "../models/models_1"; +import type { DescribeContactEvaluationResponse } from "../models/models_3"; import { DescribeContactEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeContactFlowCommand.ts b/clients/client-connect/src/commands/DescribeContactFlowCommand.ts index 8f5a5391c5820..f488079b03a1c 100644 --- a/clients/client-connect/src/commands/DescribeContactFlowCommand.ts +++ b/clients/client-connect/src/commands/DescribeContactFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContactFlowRequest, DescribeContactFlowResponse } from "../models/models_1"; +import type { DescribeContactFlowRequest, DescribeContactFlowResponse } from "../models/models_1"; import { DescribeContactFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeContactFlowModuleAliasCommand.ts b/clients/client-connect/src/commands/DescribeContactFlowModuleAliasCommand.ts index 6ee50157d2024..7ca3d44fffb98 100644 --- a/clients/client-connect/src/commands/DescribeContactFlowModuleAliasCommand.ts +++ b/clients/client-connect/src/commands/DescribeContactFlowModuleAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContactFlowModuleAliasRequest, DescribeContactFlowModuleAliasResponse } from "../models/models_1"; +import type { DescribeContactFlowModuleAliasRequest, DescribeContactFlowModuleAliasResponse } from "../models/models_1"; import { DescribeContactFlowModuleAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeContactFlowModuleCommand.ts b/clients/client-connect/src/commands/DescribeContactFlowModuleCommand.ts index 0af6f86f4fe97..b0021d35a0c0c 100644 --- a/clients/client-connect/src/commands/DescribeContactFlowModuleCommand.ts +++ b/clients/client-connect/src/commands/DescribeContactFlowModuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContactFlowModuleRequest, DescribeContactFlowModuleResponse } from "../models/models_1"; +import type { DescribeContactFlowModuleRequest, DescribeContactFlowModuleResponse } from "../models/models_1"; import { DescribeContactFlowModule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeDataTableAttributeCommand.ts b/clients/client-connect/src/commands/DescribeDataTableAttributeCommand.ts index dc5b4c17d2bc1..6e2d646890779 100644 --- a/clients/client-connect/src/commands/DescribeDataTableAttributeCommand.ts +++ b/clients/client-connect/src/commands/DescribeDataTableAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataTableAttributeRequest, DescribeDataTableAttributeResponse } from "../models/models_1"; +import type { DescribeDataTableAttributeRequest, DescribeDataTableAttributeResponse } from "../models/models_1"; import { DescribeDataTableAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeDataTableCommand.ts b/clients/client-connect/src/commands/DescribeDataTableCommand.ts index f2f6fd705db91..6e61dd3e8f87b 100644 --- a/clients/client-connect/src/commands/DescribeDataTableCommand.ts +++ b/clients/client-connect/src/commands/DescribeDataTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataTableRequest, DescribeDataTableResponse } from "../models/models_1"; +import type { DescribeDataTableRequest, DescribeDataTableResponse } from "../models/models_1"; import { DescribeDataTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeEmailAddressCommand.ts b/clients/client-connect/src/commands/DescribeEmailAddressCommand.ts index 5fa78525a3f7b..775b331cfe98e 100644 --- a/clients/client-connect/src/commands/DescribeEmailAddressCommand.ts +++ b/clients/client-connect/src/commands/DescribeEmailAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEmailAddressRequest, DescribeEmailAddressResponse } from "../models/models_1"; +import type { DescribeEmailAddressRequest, DescribeEmailAddressResponse } from "../models/models_1"; import { DescribeEmailAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeEvaluationFormCommand.ts b/clients/client-connect/src/commands/DescribeEvaluationFormCommand.ts index cab7030f1f2d6..95bf27c8d82bc 100644 --- a/clients/client-connect/src/commands/DescribeEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/DescribeEvaluationFormCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEvaluationFormRequest } from "../models/models_1"; -import { DescribeEvaluationFormResponse } from "../models/models_3"; +import type { DescribeEvaluationFormRequest } from "../models/models_1"; +import type { DescribeEvaluationFormResponse } from "../models/models_3"; import { DescribeEvaluationForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeHoursOfOperationCommand.ts b/clients/client-connect/src/commands/DescribeHoursOfOperationCommand.ts index 2bf9ff0b15842..cd37b507624e5 100644 --- a/clients/client-connect/src/commands/DescribeHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/DescribeHoursOfOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHoursOfOperationRequest, DescribeHoursOfOperationResponse } from "../models/models_1"; +import type { DescribeHoursOfOperationRequest, DescribeHoursOfOperationResponse } from "../models/models_1"; import { DescribeHoursOfOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeHoursOfOperationOverrideCommand.ts b/clients/client-connect/src/commands/DescribeHoursOfOperationOverrideCommand.ts index 4daae2e26e46c..c0d3e2f474d4a 100644 --- a/clients/client-connect/src/commands/DescribeHoursOfOperationOverrideCommand.ts +++ b/clients/client-connect/src/commands/DescribeHoursOfOperationOverrideCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHoursOfOperationOverrideRequest, DescribeHoursOfOperationOverrideResponse } from "../models/models_1"; +import type { + DescribeHoursOfOperationOverrideRequest, + DescribeHoursOfOperationOverrideResponse, +} from "../models/models_1"; import { DescribeHoursOfOperationOverride } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeInstanceAttributeCommand.ts b/clients/client-connect/src/commands/DescribeInstanceAttributeCommand.ts index 7cd555763c822..a17cd233710ae 100644 --- a/clients/client-connect/src/commands/DescribeInstanceAttributeCommand.ts +++ b/clients/client-connect/src/commands/DescribeInstanceAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceAttributeRequest, DescribeInstanceAttributeResponse } from "../models/models_1"; +import type { DescribeInstanceAttributeRequest, DescribeInstanceAttributeResponse } from "../models/models_1"; import { DescribeInstanceAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeInstanceCommand.ts b/clients/client-connect/src/commands/DescribeInstanceCommand.ts index 9de089f246a60..b1611994bb958 100644 --- a/clients/client-connect/src/commands/DescribeInstanceCommand.ts +++ b/clients/client-connect/src/commands/DescribeInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceRequest, DescribeInstanceResponse } from "../models/models_1"; +import type { DescribeInstanceRequest, DescribeInstanceResponse } from "../models/models_1"; import { DescribeInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeInstanceStorageConfigCommand.ts b/clients/client-connect/src/commands/DescribeInstanceStorageConfigCommand.ts index 0708ec0a4c17b..99716682c88c2 100644 --- a/clients/client-connect/src/commands/DescribeInstanceStorageConfigCommand.ts +++ b/clients/client-connect/src/commands/DescribeInstanceStorageConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceStorageConfigRequest, DescribeInstanceStorageConfigResponse } from "../models/models_1"; +import type { DescribeInstanceStorageConfigRequest, DescribeInstanceStorageConfigResponse } from "../models/models_1"; import { DescribeInstanceStorageConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribePhoneNumberCommand.ts b/clients/client-connect/src/commands/DescribePhoneNumberCommand.ts index 9796cbac76a4e..d5b2cc167bad9 100644 --- a/clients/client-connect/src/commands/DescribePhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/DescribePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePhoneNumberRequest, DescribePhoneNumberResponse } from "../models/models_1"; +import type { DescribePhoneNumberRequest, DescribePhoneNumberResponse } from "../models/models_1"; import { DescribePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribePredefinedAttributeCommand.ts b/clients/client-connect/src/commands/DescribePredefinedAttributeCommand.ts index 32a73e624410a..ab9d8db1836a6 100644 --- a/clients/client-connect/src/commands/DescribePredefinedAttributeCommand.ts +++ b/clients/client-connect/src/commands/DescribePredefinedAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePredefinedAttributeRequest, DescribePredefinedAttributeResponse } from "../models/models_1"; +import type { DescribePredefinedAttributeRequest, DescribePredefinedAttributeResponse } from "../models/models_1"; import { DescribePredefinedAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribePromptCommand.ts b/clients/client-connect/src/commands/DescribePromptCommand.ts index 3c98d35761516..0e19f2e6c9549 100644 --- a/clients/client-connect/src/commands/DescribePromptCommand.ts +++ b/clients/client-connect/src/commands/DescribePromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePromptRequest, DescribePromptResponse } from "../models/models_1"; +import type { DescribePromptRequest, DescribePromptResponse } from "../models/models_1"; import { DescribePrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeQueueCommand.ts b/clients/client-connect/src/commands/DescribeQueueCommand.ts index bb4642bfcafbf..4155fe2d7523d 100644 --- a/clients/client-connect/src/commands/DescribeQueueCommand.ts +++ b/clients/client-connect/src/commands/DescribeQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeQueueRequest, DescribeQueueResponse } from "../models/models_1"; +import type { DescribeQueueRequest, DescribeQueueResponse } from "../models/models_1"; import { DescribeQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeQuickConnectCommand.ts b/clients/client-connect/src/commands/DescribeQuickConnectCommand.ts index 6ae85b0e1d3c6..a48b634614f96 100644 --- a/clients/client-connect/src/commands/DescribeQuickConnectCommand.ts +++ b/clients/client-connect/src/commands/DescribeQuickConnectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeQuickConnectRequest, DescribeQuickConnectResponse } from "../models/models_1"; +import type { DescribeQuickConnectRequest, DescribeQuickConnectResponse } from "../models/models_1"; import { DescribeQuickConnect } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts b/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts index b4235f86bdfad..f751c9e31950a 100644 --- a/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts +++ b/clients/client-connect/src/commands/DescribeRoutingProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRoutingProfileRequest, DescribeRoutingProfileResponse } from "../models/models_1"; +import type { DescribeRoutingProfileRequest, DescribeRoutingProfileResponse } from "../models/models_1"; import { DescribeRoutingProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeRuleCommand.ts b/clients/client-connect/src/commands/DescribeRuleCommand.ts index f319a83085e57..2e8f1d82555f6 100644 --- a/clients/client-connect/src/commands/DescribeRuleCommand.ts +++ b/clients/client-connect/src/commands/DescribeRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRuleRequest, DescribeRuleResponse } from "../models/models_1"; +import type { DescribeRuleRequest, DescribeRuleResponse } from "../models/models_1"; import { DescribeRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeSecurityProfileCommand.ts b/clients/client-connect/src/commands/DescribeSecurityProfileCommand.ts index b34b666577634..be5e29a301ea9 100644 --- a/clients/client-connect/src/commands/DescribeSecurityProfileCommand.ts +++ b/clients/client-connect/src/commands/DescribeSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSecurityProfileRequest, DescribeSecurityProfileResponse } from "../models/models_1"; +import type { DescribeSecurityProfileRequest, DescribeSecurityProfileResponse } from "../models/models_1"; import { DescribeSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeTrafficDistributionGroupCommand.ts b/clients/client-connect/src/commands/DescribeTrafficDistributionGroupCommand.ts index 752970e5196d1..9c13f6919b517 100644 --- a/clients/client-connect/src/commands/DescribeTrafficDistributionGroupCommand.ts +++ b/clients/client-connect/src/commands/DescribeTrafficDistributionGroupCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrafficDistributionGroupRequest, DescribeTrafficDistributionGroupResponse } from "../models/models_1"; +import type { + DescribeTrafficDistributionGroupRequest, + DescribeTrafficDistributionGroupResponse, +} from "../models/models_1"; import { DescribeTrafficDistributionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeUserCommand.ts b/clients/client-connect/src/commands/DescribeUserCommand.ts index b947335196272..2080bcc180673 100644 --- a/clients/client-connect/src/commands/DescribeUserCommand.ts +++ b/clients/client-connect/src/commands/DescribeUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserRequest, DescribeUserResponse } from "../models/models_1"; +import type { DescribeUserRequest, DescribeUserResponse } from "../models/models_1"; import { DescribeUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeUserHierarchyGroupCommand.ts b/clients/client-connect/src/commands/DescribeUserHierarchyGroupCommand.ts index 832a9754ad6a3..f2ca6eea6eb09 100644 --- a/clients/client-connect/src/commands/DescribeUserHierarchyGroupCommand.ts +++ b/clients/client-connect/src/commands/DescribeUserHierarchyGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserHierarchyGroupRequest, DescribeUserHierarchyGroupResponse } from "../models/models_1"; +import type { DescribeUserHierarchyGroupRequest, DescribeUserHierarchyGroupResponse } from "../models/models_1"; import { DescribeUserHierarchyGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeUserHierarchyStructureCommand.ts b/clients/client-connect/src/commands/DescribeUserHierarchyStructureCommand.ts index 4fb5c919e14d8..770ce168a54f1 100644 --- a/clients/client-connect/src/commands/DescribeUserHierarchyStructureCommand.ts +++ b/clients/client-connect/src/commands/DescribeUserHierarchyStructureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserHierarchyStructureRequest, DescribeUserHierarchyStructureResponse } from "../models/models_1"; +import type { DescribeUserHierarchyStructureRequest, DescribeUserHierarchyStructureResponse } from "../models/models_1"; import { DescribeUserHierarchyStructure } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeViewCommand.ts b/clients/client-connect/src/commands/DescribeViewCommand.ts index b7ffcbe84ef44..b603fa259a405 100644 --- a/clients/client-connect/src/commands/DescribeViewCommand.ts +++ b/clients/client-connect/src/commands/DescribeViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeViewRequest, DescribeViewResponse } from "../models/models_1"; +import type { DescribeViewRequest, DescribeViewResponse } from "../models/models_1"; import { DescribeView } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeVocabularyCommand.ts b/clients/client-connect/src/commands/DescribeVocabularyCommand.ts index 32d5199804333..18fe765f790ce 100644 --- a/clients/client-connect/src/commands/DescribeVocabularyCommand.ts +++ b/clients/client-connect/src/commands/DescribeVocabularyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVocabularyRequest, DescribeVocabularyResponse } from "../models/models_1"; +import type { DescribeVocabularyRequest, DescribeVocabularyResponse } from "../models/models_1"; import { DescribeVocabulary } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DescribeWorkspaceCommand.ts b/clients/client-connect/src/commands/DescribeWorkspaceCommand.ts index 9496c9c7d6a6f..591c5f5530b15 100644 --- a/clients/client-connect/src/commands/DescribeWorkspaceCommand.ts +++ b/clients/client-connect/src/commands/DescribeWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspaceRequest, DescribeWorkspaceResponse } from "../models/models_1"; +import type { DescribeWorkspaceRequest, DescribeWorkspaceResponse } from "../models/models_1"; import { DescribeWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateAnalyticsDataSetCommand.ts b/clients/client-connect/src/commands/DisassociateAnalyticsDataSetCommand.ts index 8ef6e11d0cde6..563489939a505 100644 --- a/clients/client-connect/src/commands/DisassociateAnalyticsDataSetCommand.ts +++ b/clients/client-connect/src/commands/DisassociateAnalyticsDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateAnalyticsDataSetRequest } from "../models/models_1"; +import type { DisassociateAnalyticsDataSetRequest } from "../models/models_1"; import { DisassociateAnalyticsDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateApprovedOriginCommand.ts b/clients/client-connect/src/commands/DisassociateApprovedOriginCommand.ts index 184d986f2f9a1..5ce1959bee801 100644 --- a/clients/client-connect/src/commands/DisassociateApprovedOriginCommand.ts +++ b/clients/client-connect/src/commands/DisassociateApprovedOriginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateApprovedOriginRequest } from "../models/models_1"; +import type { DisassociateApprovedOriginRequest } from "../models/models_1"; import { DisassociateApprovedOrigin } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateBotCommand.ts b/clients/client-connect/src/commands/DisassociateBotCommand.ts index f8b96c3718edb..06de3203a3839 100644 --- a/clients/client-connect/src/commands/DisassociateBotCommand.ts +++ b/clients/client-connect/src/commands/DisassociateBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateBotRequest } from "../models/models_1"; +import type { DisassociateBotRequest } from "../models/models_1"; import { DisassociateBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateEmailAddressAliasCommand.ts b/clients/client-connect/src/commands/DisassociateEmailAddressAliasCommand.ts index 6f3a84ad0d701..77819ae9a3ad8 100644 --- a/clients/client-connect/src/commands/DisassociateEmailAddressAliasCommand.ts +++ b/clients/client-connect/src/commands/DisassociateEmailAddressAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateEmailAddressAliasRequest, DisassociateEmailAddressAliasResponse } from "../models/models_1"; +import type { DisassociateEmailAddressAliasRequest, DisassociateEmailAddressAliasResponse } from "../models/models_1"; import { DisassociateEmailAddressAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateFlowCommand.ts b/clients/client-connect/src/commands/DisassociateFlowCommand.ts index adb3ca46184ae..a53726faea805 100644 --- a/clients/client-connect/src/commands/DisassociateFlowCommand.ts +++ b/clients/client-connect/src/commands/DisassociateFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateFlowRequest, DisassociateFlowResponse } from "../models/models_1"; +import type { DisassociateFlowRequest, DisassociateFlowResponse } from "../models/models_1"; import { DisassociateFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateInstanceStorageConfigCommand.ts b/clients/client-connect/src/commands/DisassociateInstanceStorageConfigCommand.ts index daa80fabca187..300a88417aa3e 100644 --- a/clients/client-connect/src/commands/DisassociateInstanceStorageConfigCommand.ts +++ b/clients/client-connect/src/commands/DisassociateInstanceStorageConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateInstanceStorageConfigRequest } from "../models/models_1"; +import type { DisassociateInstanceStorageConfigRequest } from "../models/models_1"; import { DisassociateInstanceStorageConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateLambdaFunctionCommand.ts b/clients/client-connect/src/commands/DisassociateLambdaFunctionCommand.ts index 8eb802e870a1a..eb0cbf250112a 100644 --- a/clients/client-connect/src/commands/DisassociateLambdaFunctionCommand.ts +++ b/clients/client-connect/src/commands/DisassociateLambdaFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateLambdaFunctionRequest } from "../models/models_1"; +import type { DisassociateLambdaFunctionRequest } from "../models/models_1"; import { DisassociateLambdaFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateLexBotCommand.ts b/clients/client-connect/src/commands/DisassociateLexBotCommand.ts index b4fa28e8b1cba..bf57062df4be2 100644 --- a/clients/client-connect/src/commands/DisassociateLexBotCommand.ts +++ b/clients/client-connect/src/commands/DisassociateLexBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateLexBotRequest } from "../models/models_1"; +import type { DisassociateLexBotRequest } from "../models/models_1"; import { DisassociateLexBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociatePhoneNumberContactFlowCommand.ts b/clients/client-connect/src/commands/DisassociatePhoneNumberContactFlowCommand.ts index e60db3f2f59bb..671e9d4783283 100644 --- a/clients/client-connect/src/commands/DisassociatePhoneNumberContactFlowCommand.ts +++ b/clients/client-connect/src/commands/DisassociatePhoneNumberContactFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociatePhoneNumberContactFlowRequest } from "../models/models_1"; +import type { DisassociatePhoneNumberContactFlowRequest } from "../models/models_1"; import { DisassociatePhoneNumberContactFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateQueueQuickConnectsCommand.ts b/clients/client-connect/src/commands/DisassociateQueueQuickConnectsCommand.ts index 3cb9a17b208d1..54bbc38358b13 100644 --- a/clients/client-connect/src/commands/DisassociateQueueQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/DisassociateQueueQuickConnectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateQueueQuickConnectsRequest } from "../models/models_1"; +import type { DisassociateQueueQuickConnectsRequest } from "../models/models_1"; import { DisassociateQueueQuickConnects } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateRoutingProfileQueuesCommand.ts b/clients/client-connect/src/commands/DisassociateRoutingProfileQueuesCommand.ts index 6d8f6b5b7f896..d629fbc2d0e96 100644 --- a/clients/client-connect/src/commands/DisassociateRoutingProfileQueuesCommand.ts +++ b/clients/client-connect/src/commands/DisassociateRoutingProfileQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateRoutingProfileQueuesRequest } from "../models/models_1"; +import type { DisassociateRoutingProfileQueuesRequest } from "../models/models_1"; import { DisassociateRoutingProfileQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateSecurityKeyCommand.ts b/clients/client-connect/src/commands/DisassociateSecurityKeyCommand.ts index d95b310d7171a..87d4d0975c0fe 100644 --- a/clients/client-connect/src/commands/DisassociateSecurityKeyCommand.ts +++ b/clients/client-connect/src/commands/DisassociateSecurityKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateSecurityKeyRequest } from "../models/models_1"; +import type { DisassociateSecurityKeyRequest } from "../models/models_1"; import { DisassociateSecurityKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateSecurityProfilesCommand.ts b/clients/client-connect/src/commands/DisassociateSecurityProfilesCommand.ts index f6fb1c5fb5a7d..b298c043465ea 100644 --- a/clients/client-connect/src/commands/DisassociateSecurityProfilesCommand.ts +++ b/clients/client-connect/src/commands/DisassociateSecurityProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateSecurityProfilesRequest } from "../models/models_1"; +import type { DisassociateSecurityProfilesRequest } from "../models/models_1"; import { DisassociateSecurityProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateTrafficDistributionGroupUserCommand.ts b/clients/client-connect/src/commands/DisassociateTrafficDistributionGroupUserCommand.ts index 4b3735ce296a3..1841b96d6c4ff 100644 --- a/clients/client-connect/src/commands/DisassociateTrafficDistributionGroupUserCommand.ts +++ b/clients/client-connect/src/commands/DisassociateTrafficDistributionGroupUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateTrafficDistributionGroupUserRequest, DisassociateTrafficDistributionGroupUserResponse, } from "../models/models_1"; diff --git a/clients/client-connect/src/commands/DisassociateUserProficienciesCommand.ts b/clients/client-connect/src/commands/DisassociateUserProficienciesCommand.ts index e536dd58ebc2d..8507f5b385a0c 100644 --- a/clients/client-connect/src/commands/DisassociateUserProficienciesCommand.ts +++ b/clients/client-connect/src/commands/DisassociateUserProficienciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateUserProficienciesRequest } from "../models/models_1"; +import type { DisassociateUserProficienciesRequest } from "../models/models_1"; import { DisassociateUserProficiencies } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DisassociateWorkspaceCommand.ts b/clients/client-connect/src/commands/DisassociateWorkspaceCommand.ts index 95474f6d85aac..9a1db8e597162 100644 --- a/clients/client-connect/src/commands/DisassociateWorkspaceCommand.ts +++ b/clients/client-connect/src/commands/DisassociateWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateWorkspaceRequest, DisassociateWorkspaceResponse } from "../models/models_1"; +import type { DisassociateWorkspaceRequest, DisassociateWorkspaceResponse } from "../models/models_1"; import { DisassociateWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/DismissUserContactCommand.ts b/clients/client-connect/src/commands/DismissUserContactCommand.ts index 0bff517a6121b..23c5dbf2dc7f2 100644 --- a/clients/client-connect/src/commands/DismissUserContactCommand.ts +++ b/clients/client-connect/src/commands/DismissUserContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DismissUserContactRequest, DismissUserContactResponse } from "../models/models_1"; +import type { DismissUserContactRequest, DismissUserContactResponse } from "../models/models_1"; import { DismissUserContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/EvaluateDataTableValuesCommand.ts b/clients/client-connect/src/commands/EvaluateDataTableValuesCommand.ts index e2beefd0d21f9..f1a4c13519f56 100644 --- a/clients/client-connect/src/commands/EvaluateDataTableValuesCommand.ts +++ b/clients/client-connect/src/commands/EvaluateDataTableValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvaluateDataTableValuesRequest, EvaluateDataTableValuesResponse } from "../models/models_1"; +import type { EvaluateDataTableValuesRequest, EvaluateDataTableValuesResponse } from "../models/models_1"; import { EvaluateDataTableValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetAttachedFileCommand.ts b/clients/client-connect/src/commands/GetAttachedFileCommand.ts index 51fbaabcfbca9..952c8143a45c0 100644 --- a/clients/client-connect/src/commands/GetAttachedFileCommand.ts +++ b/clients/client-connect/src/commands/GetAttachedFileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAttachedFileRequest, GetAttachedFileResponse } from "../models/models_1"; +import type { GetAttachedFileRequest, GetAttachedFileResponse } from "../models/models_1"; import { GetAttachedFile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetContactAttributesCommand.ts b/clients/client-connect/src/commands/GetContactAttributesCommand.ts index 4cd4d52abd323..6506bb94d79d4 100644 --- a/clients/client-connect/src/commands/GetContactAttributesCommand.ts +++ b/clients/client-connect/src/commands/GetContactAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContactAttributesRequest, GetContactAttributesResponse } from "../models/models_1"; +import type { GetContactAttributesRequest, GetContactAttributesResponse } from "../models/models_1"; import { GetContactAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetContactMetricsCommand.ts b/clients/client-connect/src/commands/GetContactMetricsCommand.ts index 502e471787748..8ff41a7156ecf 100644 --- a/clients/client-connect/src/commands/GetContactMetricsCommand.ts +++ b/clients/client-connect/src/commands/GetContactMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContactMetricsRequest, GetContactMetricsResponse } from "../models/models_1"; +import type { GetContactMetricsRequest, GetContactMetricsResponse } from "../models/models_1"; import { GetContactMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetCurrentMetricDataCommand.ts b/clients/client-connect/src/commands/GetCurrentMetricDataCommand.ts index dc9be4cf2185f..0c79c95fd60d0 100644 --- a/clients/client-connect/src/commands/GetCurrentMetricDataCommand.ts +++ b/clients/client-connect/src/commands/GetCurrentMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCurrentMetricDataRequest, GetCurrentMetricDataResponse } from "../models/models_1"; +import type { GetCurrentMetricDataRequest, GetCurrentMetricDataResponse } from "../models/models_1"; import { GetCurrentMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetCurrentUserDataCommand.ts b/clients/client-connect/src/commands/GetCurrentUserDataCommand.ts index 25c7066606b8d..f9a996390d6fd 100644 --- a/clients/client-connect/src/commands/GetCurrentUserDataCommand.ts +++ b/clients/client-connect/src/commands/GetCurrentUserDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCurrentUserDataRequest, GetCurrentUserDataResponse } from "../models/models_1"; +import type { GetCurrentUserDataRequest, GetCurrentUserDataResponse } from "../models/models_1"; import { GetCurrentUserData } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetEffectiveHoursOfOperationsCommand.ts b/clients/client-connect/src/commands/GetEffectiveHoursOfOperationsCommand.ts index f3cfcaca405de..7d58aa788ff17 100644 --- a/clients/client-connect/src/commands/GetEffectiveHoursOfOperationsCommand.ts +++ b/clients/client-connect/src/commands/GetEffectiveHoursOfOperationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEffectiveHoursOfOperationsRequest, GetEffectiveHoursOfOperationsResponse } from "../models/models_1"; +import type { GetEffectiveHoursOfOperationsRequest, GetEffectiveHoursOfOperationsResponse } from "../models/models_1"; import { GetEffectiveHoursOfOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetFederationTokenCommand.ts b/clients/client-connect/src/commands/GetFederationTokenCommand.ts index f85764ac60674..0123755158607 100644 --- a/clients/client-connect/src/commands/GetFederationTokenCommand.ts +++ b/clients/client-connect/src/commands/GetFederationTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFederationTokenRequest, GetFederationTokenResponse } from "../models/models_1"; +import type { GetFederationTokenRequest, GetFederationTokenResponse } from "../models/models_1"; import { GetFederationToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetFlowAssociationCommand.ts b/clients/client-connect/src/commands/GetFlowAssociationCommand.ts index 88022cd7eede5..78c2502f7b012 100644 --- a/clients/client-connect/src/commands/GetFlowAssociationCommand.ts +++ b/clients/client-connect/src/commands/GetFlowAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFlowAssociationRequest, GetFlowAssociationResponse } from "../models/models_1"; +import type { GetFlowAssociationRequest, GetFlowAssociationResponse } from "../models/models_1"; import { GetFlowAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetMetricDataCommand.ts b/clients/client-connect/src/commands/GetMetricDataCommand.ts index a4564dc0aa8fe..9e47964ab4808 100644 --- a/clients/client-connect/src/commands/GetMetricDataCommand.ts +++ b/clients/client-connect/src/commands/GetMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMetricDataRequest, GetMetricDataResponse } from "../models/models_1"; +import type { GetMetricDataRequest, GetMetricDataResponse } from "../models/models_1"; import { GetMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetMetricDataV2Command.ts b/clients/client-connect/src/commands/GetMetricDataV2Command.ts index f6fd9afcf68a4..fea8e9e6865b4 100644 --- a/clients/client-connect/src/commands/GetMetricDataV2Command.ts +++ b/clients/client-connect/src/commands/GetMetricDataV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMetricDataV2Request, GetMetricDataV2Response } from "../models/models_1"; +import type { GetMetricDataV2Request, GetMetricDataV2Response } from "../models/models_1"; import { GetMetricDataV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetPromptFileCommand.ts b/clients/client-connect/src/commands/GetPromptFileCommand.ts index e83ae6a363e87..87baca01f9d2c 100644 --- a/clients/client-connect/src/commands/GetPromptFileCommand.ts +++ b/clients/client-connect/src/commands/GetPromptFileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPromptFileRequest, GetPromptFileResponse } from "../models/models_1"; +import type { GetPromptFileRequest, GetPromptFileResponse } from "../models/models_1"; import { GetPromptFile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetTaskTemplateCommand.ts b/clients/client-connect/src/commands/GetTaskTemplateCommand.ts index f2be35922f3b0..c9abb02e2531c 100644 --- a/clients/client-connect/src/commands/GetTaskTemplateCommand.ts +++ b/clients/client-connect/src/commands/GetTaskTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTaskTemplateRequest, GetTaskTemplateResponse } from "../models/models_1"; +import type { GetTaskTemplateRequest, GetTaskTemplateResponse } from "../models/models_1"; import { GetTaskTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/GetTrafficDistributionCommand.ts b/clients/client-connect/src/commands/GetTrafficDistributionCommand.ts index 8474ef6350004..bb49f0aa32fab 100644 --- a/clients/client-connect/src/commands/GetTrafficDistributionCommand.ts +++ b/clients/client-connect/src/commands/GetTrafficDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrafficDistributionRequest, GetTrafficDistributionResponse } from "../models/models_1"; +import type { GetTrafficDistributionRequest, GetTrafficDistributionResponse } from "../models/models_1"; import { GetTrafficDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ImportPhoneNumberCommand.ts b/clients/client-connect/src/commands/ImportPhoneNumberCommand.ts index 395e29f01fa0d..3c600d5e5b59f 100644 --- a/clients/client-connect/src/commands/ImportPhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/ImportPhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportPhoneNumberRequest, ImportPhoneNumberResponse } from "../models/models_1"; +import type { ImportPhoneNumberRequest, ImportPhoneNumberResponse } from "../models/models_1"; import { ImportPhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ImportWorkspaceMediaCommand.ts b/clients/client-connect/src/commands/ImportWorkspaceMediaCommand.ts index e49a34566d77b..6dd683b74268f 100644 --- a/clients/client-connect/src/commands/ImportWorkspaceMediaCommand.ts +++ b/clients/client-connect/src/commands/ImportWorkspaceMediaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportWorkspaceMediaRequest, ImportWorkspaceMediaResponse } from "../models/models_1"; +import type { ImportWorkspaceMediaRequest, ImportWorkspaceMediaResponse } from "../models/models_1"; import { ImportWorkspaceMedia } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListAgentStatusesCommand.ts b/clients/client-connect/src/commands/ListAgentStatusesCommand.ts index 4dcd372521bad..35328313c3eca 100644 --- a/clients/client-connect/src/commands/ListAgentStatusesCommand.ts +++ b/clients/client-connect/src/commands/ListAgentStatusesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentStatusRequest, ListAgentStatusResponse } from "../models/models_1"; +import type { ListAgentStatusRequest, ListAgentStatusResponse } from "../models/models_1"; import { ListAgentStatuses } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListAnalyticsDataAssociationsCommand.ts b/clients/client-connect/src/commands/ListAnalyticsDataAssociationsCommand.ts index d32a53a1c2ca0..8e599539e69b9 100644 --- a/clients/client-connect/src/commands/ListAnalyticsDataAssociationsCommand.ts +++ b/clients/client-connect/src/commands/ListAnalyticsDataAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnalyticsDataAssociationsRequest, ListAnalyticsDataAssociationsResponse } from "../models/models_1"; +import type { ListAnalyticsDataAssociationsRequest, ListAnalyticsDataAssociationsResponse } from "../models/models_1"; import { ListAnalyticsDataAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListAnalyticsDataLakeDataSetsCommand.ts b/clients/client-connect/src/commands/ListAnalyticsDataLakeDataSetsCommand.ts index a9a63e19cb650..74e7479c10348 100644 --- a/clients/client-connect/src/commands/ListAnalyticsDataLakeDataSetsCommand.ts +++ b/clients/client-connect/src/commands/ListAnalyticsDataLakeDataSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnalyticsDataLakeDataSetsRequest, ListAnalyticsDataLakeDataSetsResponse } from "../models/models_1"; +import type { ListAnalyticsDataLakeDataSetsRequest, ListAnalyticsDataLakeDataSetsResponse } from "../models/models_1"; import { ListAnalyticsDataLakeDataSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListApprovedOriginsCommand.ts b/clients/client-connect/src/commands/ListApprovedOriginsCommand.ts index 04de6a83caeb3..03bbd13eab3be 100644 --- a/clients/client-connect/src/commands/ListApprovedOriginsCommand.ts +++ b/clients/client-connect/src/commands/ListApprovedOriginsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApprovedOriginsRequest, ListApprovedOriginsResponse } from "../models/models_1"; +import type { ListApprovedOriginsRequest, ListApprovedOriginsResponse } from "../models/models_1"; import { ListApprovedOrigins } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListAssociatedContactsCommand.ts b/clients/client-connect/src/commands/ListAssociatedContactsCommand.ts index 36a7f76391a4c..876496c1516ea 100644 --- a/clients/client-connect/src/commands/ListAssociatedContactsCommand.ts +++ b/clients/client-connect/src/commands/ListAssociatedContactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociatedContactsRequest, ListAssociatedContactsResponse } from "../models/models_1"; +import type { ListAssociatedContactsRequest, ListAssociatedContactsResponse } from "../models/models_1"; import { ListAssociatedContacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListAuthenticationProfilesCommand.ts b/clients/client-connect/src/commands/ListAuthenticationProfilesCommand.ts index 2b67c94d4c3be..c235a9373c75a 100644 --- a/clients/client-connect/src/commands/ListAuthenticationProfilesCommand.ts +++ b/clients/client-connect/src/commands/ListAuthenticationProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAuthenticationProfilesRequest, ListAuthenticationProfilesResponse } from "../models/models_1"; +import type { ListAuthenticationProfilesRequest, ListAuthenticationProfilesResponse } from "../models/models_1"; import { ListAuthenticationProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListBotsCommand.ts b/clients/client-connect/src/commands/ListBotsCommand.ts index 96d00c28b34f9..2da25d228d3f6 100644 --- a/clients/client-connect/src/commands/ListBotsCommand.ts +++ b/clients/client-connect/src/commands/ListBotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBotsRequest, ListBotsResponse } from "../models/models_1"; +import type { ListBotsRequest, ListBotsResponse } from "../models/models_1"; import { ListBots } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListContactEvaluationsCommand.ts b/clients/client-connect/src/commands/ListContactEvaluationsCommand.ts index 001c2fc7c3161..e7a3a9bbfb9bf 100644 --- a/clients/client-connect/src/commands/ListContactEvaluationsCommand.ts +++ b/clients/client-connect/src/commands/ListContactEvaluationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactEvaluationsRequest, ListContactEvaluationsResponse } from "../models/models_1"; +import type { ListContactEvaluationsRequest, ListContactEvaluationsResponse } from "../models/models_1"; import { ListContactEvaluations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListContactFlowModuleAliasesCommand.ts b/clients/client-connect/src/commands/ListContactFlowModuleAliasesCommand.ts index 64eaf5b0bbd4d..a94dcf00a1dec 100644 --- a/clients/client-connect/src/commands/ListContactFlowModuleAliasesCommand.ts +++ b/clients/client-connect/src/commands/ListContactFlowModuleAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactFlowModuleAliasesRequest, ListContactFlowModuleAliasesResponse } from "../models/models_1"; +import type { ListContactFlowModuleAliasesRequest, ListContactFlowModuleAliasesResponse } from "../models/models_1"; import { ListContactFlowModuleAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListContactFlowModuleVersionsCommand.ts b/clients/client-connect/src/commands/ListContactFlowModuleVersionsCommand.ts index 58ba003b916f3..73baf9d40d831 100644 --- a/clients/client-connect/src/commands/ListContactFlowModuleVersionsCommand.ts +++ b/clients/client-connect/src/commands/ListContactFlowModuleVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactFlowModuleVersionsRequest, ListContactFlowModuleVersionsResponse } from "../models/models_1"; +import type { ListContactFlowModuleVersionsRequest, ListContactFlowModuleVersionsResponse } from "../models/models_1"; import { ListContactFlowModuleVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListContactFlowModulesCommand.ts b/clients/client-connect/src/commands/ListContactFlowModulesCommand.ts index 7d952321ecf4a..89d0ddd221724 100644 --- a/clients/client-connect/src/commands/ListContactFlowModulesCommand.ts +++ b/clients/client-connect/src/commands/ListContactFlowModulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactFlowModulesRequest, ListContactFlowModulesResponse } from "../models/models_1"; +import type { ListContactFlowModulesRequest, ListContactFlowModulesResponse } from "../models/models_1"; import { ListContactFlowModules } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListContactFlowVersionsCommand.ts b/clients/client-connect/src/commands/ListContactFlowVersionsCommand.ts index 4c778c655c154..deb66ef3a20a5 100644 --- a/clients/client-connect/src/commands/ListContactFlowVersionsCommand.ts +++ b/clients/client-connect/src/commands/ListContactFlowVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactFlowVersionsRequest, ListContactFlowVersionsResponse } from "../models/models_2"; +import type { ListContactFlowVersionsRequest, ListContactFlowVersionsResponse } from "../models/models_2"; import { ListContactFlowVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListContactFlowsCommand.ts b/clients/client-connect/src/commands/ListContactFlowsCommand.ts index ceabe7d0cfcd2..4d69af258de09 100644 --- a/clients/client-connect/src/commands/ListContactFlowsCommand.ts +++ b/clients/client-connect/src/commands/ListContactFlowsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactFlowsRequest } from "../models/models_1"; -import { ListContactFlowsResponse } from "../models/models_2"; +import type { ListContactFlowsRequest } from "../models/models_1"; +import type { ListContactFlowsResponse } from "../models/models_2"; import { ListContactFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListContactReferencesCommand.ts b/clients/client-connect/src/commands/ListContactReferencesCommand.ts index 229545319cb94..8a4d194912f57 100644 --- a/clients/client-connect/src/commands/ListContactReferencesCommand.ts +++ b/clients/client-connect/src/commands/ListContactReferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactReferencesRequest, ListContactReferencesResponse } from "../models/models_2"; +import type { ListContactReferencesRequest, ListContactReferencesResponse } from "../models/models_2"; import { ListContactReferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListDataTableAttributesCommand.ts b/clients/client-connect/src/commands/ListDataTableAttributesCommand.ts index 1d3453332ed16..33b2fcbe1ff96 100644 --- a/clients/client-connect/src/commands/ListDataTableAttributesCommand.ts +++ b/clients/client-connect/src/commands/ListDataTableAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataTableAttributesRequest, ListDataTableAttributesResponse } from "../models/models_2"; +import type { ListDataTableAttributesRequest, ListDataTableAttributesResponse } from "../models/models_2"; import { ListDataTableAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListDataTablePrimaryValuesCommand.ts b/clients/client-connect/src/commands/ListDataTablePrimaryValuesCommand.ts index 40993f782fac8..469d2562d5264 100644 --- a/clients/client-connect/src/commands/ListDataTablePrimaryValuesCommand.ts +++ b/clients/client-connect/src/commands/ListDataTablePrimaryValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataTablePrimaryValuesRequest, ListDataTablePrimaryValuesResponse } from "../models/models_2"; +import type { ListDataTablePrimaryValuesRequest, ListDataTablePrimaryValuesResponse } from "../models/models_2"; import { ListDataTablePrimaryValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListDataTableValuesCommand.ts b/clients/client-connect/src/commands/ListDataTableValuesCommand.ts index 6459a4526c0a4..46f9d15f97c8a 100644 --- a/clients/client-connect/src/commands/ListDataTableValuesCommand.ts +++ b/clients/client-connect/src/commands/ListDataTableValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataTableValuesRequest, ListDataTableValuesResponse } from "../models/models_2"; +import type { ListDataTableValuesRequest, ListDataTableValuesResponse } from "../models/models_2"; import { ListDataTableValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListDataTablesCommand.ts b/clients/client-connect/src/commands/ListDataTablesCommand.ts index 251622731daad..85977a3a26435 100644 --- a/clients/client-connect/src/commands/ListDataTablesCommand.ts +++ b/clients/client-connect/src/commands/ListDataTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataTablesRequest, ListDataTablesResponse } from "../models/models_2"; +import type { ListDataTablesRequest, ListDataTablesResponse } from "../models/models_2"; import { ListDataTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListDefaultVocabulariesCommand.ts b/clients/client-connect/src/commands/ListDefaultVocabulariesCommand.ts index 6b5d78ac39bef..06d1820e68ecc 100644 --- a/clients/client-connect/src/commands/ListDefaultVocabulariesCommand.ts +++ b/clients/client-connect/src/commands/ListDefaultVocabulariesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDefaultVocabulariesRequest, ListDefaultVocabulariesResponse } from "../models/models_2"; +import type { ListDefaultVocabulariesRequest, ListDefaultVocabulariesResponse } from "../models/models_2"; import { ListDefaultVocabularies } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListEntitySecurityProfilesCommand.ts b/clients/client-connect/src/commands/ListEntitySecurityProfilesCommand.ts index 74b675913d29d..5c39517f987b0 100644 --- a/clients/client-connect/src/commands/ListEntitySecurityProfilesCommand.ts +++ b/clients/client-connect/src/commands/ListEntitySecurityProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEntitySecurityProfilesRequest, ListEntitySecurityProfilesResponse } from "../models/models_2"; +import type { ListEntitySecurityProfilesRequest, ListEntitySecurityProfilesResponse } from "../models/models_2"; import { ListEntitySecurityProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListEvaluationFormVersionsCommand.ts b/clients/client-connect/src/commands/ListEvaluationFormVersionsCommand.ts index 198d1080eb41a..f5d8decb2756d 100644 --- a/clients/client-connect/src/commands/ListEvaluationFormVersionsCommand.ts +++ b/clients/client-connect/src/commands/ListEvaluationFormVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEvaluationFormVersionsRequest, ListEvaluationFormVersionsResponse } from "../models/models_2"; +import type { ListEvaluationFormVersionsRequest, ListEvaluationFormVersionsResponse } from "../models/models_2"; import { ListEvaluationFormVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListEvaluationFormsCommand.ts b/clients/client-connect/src/commands/ListEvaluationFormsCommand.ts index 63c2fd1279b18..5a6c3abb3dda3 100644 --- a/clients/client-connect/src/commands/ListEvaluationFormsCommand.ts +++ b/clients/client-connect/src/commands/ListEvaluationFormsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEvaluationFormsRequest, ListEvaluationFormsResponse } from "../models/models_2"; +import type { ListEvaluationFormsRequest, ListEvaluationFormsResponse } from "../models/models_2"; import { ListEvaluationForms } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListFlowAssociationsCommand.ts b/clients/client-connect/src/commands/ListFlowAssociationsCommand.ts index 51dbdf2762b0a..bd7ca466f095b 100644 --- a/clients/client-connect/src/commands/ListFlowAssociationsCommand.ts +++ b/clients/client-connect/src/commands/ListFlowAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowAssociationsRequest, ListFlowAssociationsResponse } from "../models/models_2"; +import type { ListFlowAssociationsRequest, ListFlowAssociationsResponse } from "../models/models_2"; import { ListFlowAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListHoursOfOperationOverridesCommand.ts b/clients/client-connect/src/commands/ListHoursOfOperationOverridesCommand.ts index ecd9bcf232599..248065e9283f0 100644 --- a/clients/client-connect/src/commands/ListHoursOfOperationOverridesCommand.ts +++ b/clients/client-connect/src/commands/ListHoursOfOperationOverridesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHoursOfOperationOverridesRequest, ListHoursOfOperationOverridesResponse } from "../models/models_2"; +import type { ListHoursOfOperationOverridesRequest, ListHoursOfOperationOverridesResponse } from "../models/models_2"; import { ListHoursOfOperationOverrides } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListHoursOfOperationsCommand.ts b/clients/client-connect/src/commands/ListHoursOfOperationsCommand.ts index d76760dc867b3..430b9f5c51089 100644 --- a/clients/client-connect/src/commands/ListHoursOfOperationsCommand.ts +++ b/clients/client-connect/src/commands/ListHoursOfOperationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHoursOfOperationsRequest, ListHoursOfOperationsResponse } from "../models/models_2"; +import type { ListHoursOfOperationsRequest, ListHoursOfOperationsResponse } from "../models/models_2"; import { ListHoursOfOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListInstanceAttributesCommand.ts b/clients/client-connect/src/commands/ListInstanceAttributesCommand.ts index d2c48f990f622..60d473d843625 100644 --- a/clients/client-connect/src/commands/ListInstanceAttributesCommand.ts +++ b/clients/client-connect/src/commands/ListInstanceAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstanceAttributesRequest, ListInstanceAttributesResponse } from "../models/models_2"; +import type { ListInstanceAttributesRequest, ListInstanceAttributesResponse } from "../models/models_2"; import { ListInstanceAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListInstanceStorageConfigsCommand.ts b/clients/client-connect/src/commands/ListInstanceStorageConfigsCommand.ts index 855bdb6bb0398..f708c44514ff6 100644 --- a/clients/client-connect/src/commands/ListInstanceStorageConfigsCommand.ts +++ b/clients/client-connect/src/commands/ListInstanceStorageConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstanceStorageConfigsRequest, ListInstanceStorageConfigsResponse } from "../models/models_2"; +import type { ListInstanceStorageConfigsRequest, ListInstanceStorageConfigsResponse } from "../models/models_2"; import { ListInstanceStorageConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListInstancesCommand.ts b/clients/client-connect/src/commands/ListInstancesCommand.ts index 33ad3e4fcefaf..a1d37198f8c2f 100644 --- a/clients/client-connect/src/commands/ListInstancesCommand.ts +++ b/clients/client-connect/src/commands/ListInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstancesRequest, ListInstancesResponse } from "../models/models_2"; +import type { ListInstancesRequest, ListInstancesResponse } from "../models/models_2"; import { ListInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListIntegrationAssociationsCommand.ts b/clients/client-connect/src/commands/ListIntegrationAssociationsCommand.ts index 0f51fb1a6c384..bb6261fd711f7 100644 --- a/clients/client-connect/src/commands/ListIntegrationAssociationsCommand.ts +++ b/clients/client-connect/src/commands/ListIntegrationAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIntegrationAssociationsRequest, ListIntegrationAssociationsResponse } from "../models/models_2"; +import type { ListIntegrationAssociationsRequest, ListIntegrationAssociationsResponse } from "../models/models_2"; import { ListIntegrationAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListLambdaFunctionsCommand.ts b/clients/client-connect/src/commands/ListLambdaFunctionsCommand.ts index cb2d32850a331..3b71c7ac61b53 100644 --- a/clients/client-connect/src/commands/ListLambdaFunctionsCommand.ts +++ b/clients/client-connect/src/commands/ListLambdaFunctionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLambdaFunctionsRequest, ListLambdaFunctionsResponse } from "../models/models_2"; +import type { ListLambdaFunctionsRequest, ListLambdaFunctionsResponse } from "../models/models_2"; import { ListLambdaFunctions } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListLexBotsCommand.ts b/clients/client-connect/src/commands/ListLexBotsCommand.ts index 7fc2e67d4fb2f..e929a48c2f948 100644 --- a/clients/client-connect/src/commands/ListLexBotsCommand.ts +++ b/clients/client-connect/src/commands/ListLexBotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLexBotsRequest, ListLexBotsResponse } from "../models/models_2"; +import type { ListLexBotsRequest, ListLexBotsResponse } from "../models/models_2"; import { ListLexBots } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListPhoneNumbersCommand.ts b/clients/client-connect/src/commands/ListPhoneNumbersCommand.ts index 86c411a9fbbb0..b9b1534d6b49a 100644 --- a/clients/client-connect/src/commands/ListPhoneNumbersCommand.ts +++ b/clients/client-connect/src/commands/ListPhoneNumbersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPhoneNumbersRequest, ListPhoneNumbersResponse } from "../models/models_2"; +import type { ListPhoneNumbersRequest, ListPhoneNumbersResponse } from "../models/models_2"; import { ListPhoneNumbers } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListPhoneNumbersV2Command.ts b/clients/client-connect/src/commands/ListPhoneNumbersV2Command.ts index f4b0c664e36be..e2aba05be76e8 100644 --- a/clients/client-connect/src/commands/ListPhoneNumbersV2Command.ts +++ b/clients/client-connect/src/commands/ListPhoneNumbersV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPhoneNumbersV2Request, ListPhoneNumbersV2Response } from "../models/models_2"; +import type { ListPhoneNumbersV2Request, ListPhoneNumbersV2Response } from "../models/models_2"; import { ListPhoneNumbersV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListPredefinedAttributesCommand.ts b/clients/client-connect/src/commands/ListPredefinedAttributesCommand.ts index 100961fb0eb8b..147de5cbbf843 100644 --- a/clients/client-connect/src/commands/ListPredefinedAttributesCommand.ts +++ b/clients/client-connect/src/commands/ListPredefinedAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPredefinedAttributesRequest, ListPredefinedAttributesResponse } from "../models/models_2"; +import type { ListPredefinedAttributesRequest, ListPredefinedAttributesResponse } from "../models/models_2"; import { ListPredefinedAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListPromptsCommand.ts b/clients/client-connect/src/commands/ListPromptsCommand.ts index 138cadbbc683f..11ea62f143231 100644 --- a/clients/client-connect/src/commands/ListPromptsCommand.ts +++ b/clients/client-connect/src/commands/ListPromptsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPromptsRequest, ListPromptsResponse } from "../models/models_2"; +import type { ListPromptsRequest, ListPromptsResponse } from "../models/models_2"; import { ListPrompts } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListQueueQuickConnectsCommand.ts b/clients/client-connect/src/commands/ListQueueQuickConnectsCommand.ts index 0f7436a12bd0e..1eb8e6416a962 100644 --- a/clients/client-connect/src/commands/ListQueueQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/ListQueueQuickConnectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueueQuickConnectsRequest, ListQueueQuickConnectsResponse } from "../models/models_2"; +import type { ListQueueQuickConnectsRequest, ListQueueQuickConnectsResponse } from "../models/models_2"; import { ListQueueQuickConnects } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListQueuesCommand.ts b/clients/client-connect/src/commands/ListQueuesCommand.ts index c994dff5eeff3..3d992a5398702 100644 --- a/clients/client-connect/src/commands/ListQueuesCommand.ts +++ b/clients/client-connect/src/commands/ListQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueuesRequest, ListQueuesResponse } from "../models/models_2"; +import type { ListQueuesRequest, ListQueuesResponse } from "../models/models_2"; import { ListQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListQuickConnectsCommand.ts b/clients/client-connect/src/commands/ListQuickConnectsCommand.ts index 03bd673fe71bf..fc807f45d987c 100644 --- a/clients/client-connect/src/commands/ListQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/ListQuickConnectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQuickConnectsRequest, ListQuickConnectsResponse } from "../models/models_2"; +import type { ListQuickConnectsRequest, ListQuickConnectsResponse } from "../models/models_2"; import { ListQuickConnects } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListRealtimeContactAnalysisSegmentsV2Command.ts b/clients/client-connect/src/commands/ListRealtimeContactAnalysisSegmentsV2Command.ts index fcd23c8fe7774..a58eb3a927efe 100644 --- a/clients/client-connect/src/commands/ListRealtimeContactAnalysisSegmentsV2Command.ts +++ b/clients/client-connect/src/commands/ListRealtimeContactAnalysisSegmentsV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListRealtimeContactAnalysisSegmentsV2Request, ListRealtimeContactAnalysisSegmentsV2Response, } from "../models/models_2"; diff --git a/clients/client-connect/src/commands/ListRoutingProfileManualAssignmentQueuesCommand.ts b/clients/client-connect/src/commands/ListRoutingProfileManualAssignmentQueuesCommand.ts index 1042778a54c32..6c1b30f6ae346 100644 --- a/clients/client-connect/src/commands/ListRoutingProfileManualAssignmentQueuesCommand.ts +++ b/clients/client-connect/src/commands/ListRoutingProfileManualAssignmentQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListRoutingProfileManualAssignmentQueuesRequest, ListRoutingProfileManualAssignmentQueuesResponse, } from "../models/models_2"; diff --git a/clients/client-connect/src/commands/ListRoutingProfileQueuesCommand.ts b/clients/client-connect/src/commands/ListRoutingProfileQueuesCommand.ts index f006f6d40f9d3..2f0d15801ec13 100644 --- a/clients/client-connect/src/commands/ListRoutingProfileQueuesCommand.ts +++ b/clients/client-connect/src/commands/ListRoutingProfileQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoutingProfileQueuesRequest, ListRoutingProfileQueuesResponse } from "../models/models_2"; +import type { ListRoutingProfileQueuesRequest, ListRoutingProfileQueuesResponse } from "../models/models_2"; import { ListRoutingProfileQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListRoutingProfilesCommand.ts b/clients/client-connect/src/commands/ListRoutingProfilesCommand.ts index 2a63c16b66991..99c7d960d052d 100644 --- a/clients/client-connect/src/commands/ListRoutingProfilesCommand.ts +++ b/clients/client-connect/src/commands/ListRoutingProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoutingProfilesRequest, ListRoutingProfilesResponse } from "../models/models_2"; +import type { ListRoutingProfilesRequest, ListRoutingProfilesResponse } from "../models/models_2"; import { ListRoutingProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListRulesCommand.ts b/clients/client-connect/src/commands/ListRulesCommand.ts index 52aa283475e23..6bbb5cd44e2d4 100644 --- a/clients/client-connect/src/commands/ListRulesCommand.ts +++ b/clients/client-connect/src/commands/ListRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRulesRequest, ListRulesResponse } from "../models/models_2"; +import type { ListRulesRequest, ListRulesResponse } from "../models/models_2"; import { ListRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListSecurityKeysCommand.ts b/clients/client-connect/src/commands/ListSecurityKeysCommand.ts index 53c920a00b1d4..7078c4f03c6a2 100644 --- a/clients/client-connect/src/commands/ListSecurityKeysCommand.ts +++ b/clients/client-connect/src/commands/ListSecurityKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityKeysRequest, ListSecurityKeysResponse } from "../models/models_2"; +import type { ListSecurityKeysRequest, ListSecurityKeysResponse } from "../models/models_2"; import { ListSecurityKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListSecurityProfileApplicationsCommand.ts b/clients/client-connect/src/commands/ListSecurityProfileApplicationsCommand.ts index e0eeb48799b6a..16a1fc40f1535 100644 --- a/clients/client-connect/src/commands/ListSecurityProfileApplicationsCommand.ts +++ b/clients/client-connect/src/commands/ListSecurityProfileApplicationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityProfileApplicationsRequest, ListSecurityProfileApplicationsResponse } from "../models/models_2"; +import type { + ListSecurityProfileApplicationsRequest, + ListSecurityProfileApplicationsResponse, +} from "../models/models_2"; import { ListSecurityProfileApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListSecurityProfileFlowModulesCommand.ts b/clients/client-connect/src/commands/ListSecurityProfileFlowModulesCommand.ts index 333a41959f16c..2aaa865bd2bce 100644 --- a/clients/client-connect/src/commands/ListSecurityProfileFlowModulesCommand.ts +++ b/clients/client-connect/src/commands/ListSecurityProfileFlowModulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityProfileFlowModulesRequest, ListSecurityProfileFlowModulesResponse } from "../models/models_2"; +import type { ListSecurityProfileFlowModulesRequest, ListSecurityProfileFlowModulesResponse } from "../models/models_2"; import { ListSecurityProfileFlowModules } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListSecurityProfilePermissionsCommand.ts b/clients/client-connect/src/commands/ListSecurityProfilePermissionsCommand.ts index e57a3ad3d656d..7d6e8fa8aaeab 100644 --- a/clients/client-connect/src/commands/ListSecurityProfilePermissionsCommand.ts +++ b/clients/client-connect/src/commands/ListSecurityProfilePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityProfilePermissionsRequest, ListSecurityProfilePermissionsResponse } from "../models/models_2"; +import type { ListSecurityProfilePermissionsRequest, ListSecurityProfilePermissionsResponse } from "../models/models_2"; import { ListSecurityProfilePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListSecurityProfilesCommand.ts b/clients/client-connect/src/commands/ListSecurityProfilesCommand.ts index 11c5017de9f60..830a57e091fad 100644 --- a/clients/client-connect/src/commands/ListSecurityProfilesCommand.ts +++ b/clients/client-connect/src/commands/ListSecurityProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityProfilesRequest, ListSecurityProfilesResponse } from "../models/models_2"; +import type { ListSecurityProfilesRequest, ListSecurityProfilesResponse } from "../models/models_2"; import { ListSecurityProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListTagsForResourceCommand.ts b/clients/client-connect/src/commands/ListTagsForResourceCommand.ts index 7c6c160fd88da..1748dd961bc78 100644 --- a/clients/client-connect/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-connect/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_2"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_2"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListTaskTemplatesCommand.ts b/clients/client-connect/src/commands/ListTaskTemplatesCommand.ts index 5c14c1d434db7..6ecccfdf5846b 100644 --- a/clients/client-connect/src/commands/ListTaskTemplatesCommand.ts +++ b/clients/client-connect/src/commands/ListTaskTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTaskTemplatesRequest, ListTaskTemplatesResponse } from "../models/models_2"; +import type { ListTaskTemplatesRequest, ListTaskTemplatesResponse } from "../models/models_2"; import { ListTaskTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListTrafficDistributionGroupUsersCommand.ts b/clients/client-connect/src/commands/ListTrafficDistributionGroupUsersCommand.ts index 3111d1ae63194..f8c3cc9d9f18d 100644 --- a/clients/client-connect/src/commands/ListTrafficDistributionGroupUsersCommand.ts +++ b/clients/client-connect/src/commands/ListTrafficDistributionGroupUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListTrafficDistributionGroupUsersRequest, ListTrafficDistributionGroupUsersResponse, } from "../models/models_2"; diff --git a/clients/client-connect/src/commands/ListTrafficDistributionGroupsCommand.ts b/clients/client-connect/src/commands/ListTrafficDistributionGroupsCommand.ts index ee7ad55fb2c19..89a25d335eb44 100644 --- a/clients/client-connect/src/commands/ListTrafficDistributionGroupsCommand.ts +++ b/clients/client-connect/src/commands/ListTrafficDistributionGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrafficDistributionGroupsRequest, ListTrafficDistributionGroupsResponse } from "../models/models_2"; +import type { ListTrafficDistributionGroupsRequest, ListTrafficDistributionGroupsResponse } from "../models/models_2"; import { ListTrafficDistributionGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListUseCasesCommand.ts b/clients/client-connect/src/commands/ListUseCasesCommand.ts index 842f8f243c2bf..c57832054d221 100644 --- a/clients/client-connect/src/commands/ListUseCasesCommand.ts +++ b/clients/client-connect/src/commands/ListUseCasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUseCasesRequest, ListUseCasesResponse } from "../models/models_2"; +import type { ListUseCasesRequest, ListUseCasesResponse } from "../models/models_2"; import { ListUseCases } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListUserHierarchyGroupsCommand.ts b/clients/client-connect/src/commands/ListUserHierarchyGroupsCommand.ts index 0b069fe981909..4bbc155e8e251 100644 --- a/clients/client-connect/src/commands/ListUserHierarchyGroupsCommand.ts +++ b/clients/client-connect/src/commands/ListUserHierarchyGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUserHierarchyGroupsRequest, ListUserHierarchyGroupsResponse } from "../models/models_2"; +import type { ListUserHierarchyGroupsRequest, ListUserHierarchyGroupsResponse } from "../models/models_2"; import { ListUserHierarchyGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListUserProficienciesCommand.ts b/clients/client-connect/src/commands/ListUserProficienciesCommand.ts index 87b9a372cd713..22a39c3d01ea8 100644 --- a/clients/client-connect/src/commands/ListUserProficienciesCommand.ts +++ b/clients/client-connect/src/commands/ListUserProficienciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUserProficienciesRequest, ListUserProficienciesResponse } from "../models/models_2"; +import type { ListUserProficienciesRequest, ListUserProficienciesResponse } from "../models/models_2"; import { ListUserProficiencies } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListUsersCommand.ts b/clients/client-connect/src/commands/ListUsersCommand.ts index c96483b59f304..c13dc5c163145 100644 --- a/clients/client-connect/src/commands/ListUsersCommand.ts +++ b/clients/client-connect/src/commands/ListUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_2"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_2"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListViewVersionsCommand.ts b/clients/client-connect/src/commands/ListViewVersionsCommand.ts index dcfacdb487cbb..3c8487df113f6 100644 --- a/clients/client-connect/src/commands/ListViewVersionsCommand.ts +++ b/clients/client-connect/src/commands/ListViewVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListViewVersionsRequest, ListViewVersionsResponse } from "../models/models_2"; +import type { ListViewVersionsRequest, ListViewVersionsResponse } from "../models/models_2"; import { ListViewVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListViewsCommand.ts b/clients/client-connect/src/commands/ListViewsCommand.ts index abc173d329b4a..4bd9a2797f910 100644 --- a/clients/client-connect/src/commands/ListViewsCommand.ts +++ b/clients/client-connect/src/commands/ListViewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListViewsRequest, ListViewsResponse } from "../models/models_2"; +import type { ListViewsRequest, ListViewsResponse } from "../models/models_2"; import { ListViews } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListWorkspaceMediaCommand.ts b/clients/client-connect/src/commands/ListWorkspaceMediaCommand.ts index c3da5401afb72..ae66406f6a402 100644 --- a/clients/client-connect/src/commands/ListWorkspaceMediaCommand.ts +++ b/clients/client-connect/src/commands/ListWorkspaceMediaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkspaceMediaRequest, ListWorkspaceMediaResponse } from "../models/models_2"; +import type { ListWorkspaceMediaRequest, ListWorkspaceMediaResponse } from "../models/models_2"; import { ListWorkspaceMedia } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListWorkspacePagesCommand.ts b/clients/client-connect/src/commands/ListWorkspacePagesCommand.ts index f6d1263a12bab..828a0952ddfdc 100644 --- a/clients/client-connect/src/commands/ListWorkspacePagesCommand.ts +++ b/clients/client-connect/src/commands/ListWorkspacePagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkspacePagesRequest, ListWorkspacePagesResponse } from "../models/models_2"; +import type { ListWorkspacePagesRequest, ListWorkspacePagesResponse } from "../models/models_2"; import { ListWorkspacePages } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ListWorkspacesCommand.ts b/clients/client-connect/src/commands/ListWorkspacesCommand.ts index e9908ce1abdd7..bf3198f37a030 100644 --- a/clients/client-connect/src/commands/ListWorkspacesCommand.ts +++ b/clients/client-connect/src/commands/ListWorkspacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_2"; +import type { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_2"; import { ListWorkspaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/MonitorContactCommand.ts b/clients/client-connect/src/commands/MonitorContactCommand.ts index 4982e33b4b29b..5a6d348f0399e 100644 --- a/clients/client-connect/src/commands/MonitorContactCommand.ts +++ b/clients/client-connect/src/commands/MonitorContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MonitorContactRequest, MonitorContactResponse } from "../models/models_2"; +import type { MonitorContactRequest, MonitorContactResponse } from "../models/models_2"; import { MonitorContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/PauseContactCommand.ts b/clients/client-connect/src/commands/PauseContactCommand.ts index 06cfb47d8361d..deb751e86d6eb 100644 --- a/clients/client-connect/src/commands/PauseContactCommand.ts +++ b/clients/client-connect/src/commands/PauseContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PauseContactRequest, PauseContactResponse } from "../models/models_2"; +import type { PauseContactRequest, PauseContactResponse } from "../models/models_2"; import { PauseContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/PutUserStatusCommand.ts b/clients/client-connect/src/commands/PutUserStatusCommand.ts index b63b20c834c9c..7ab66a1fef32d 100644 --- a/clients/client-connect/src/commands/PutUserStatusCommand.ts +++ b/clients/client-connect/src/commands/PutUserStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutUserStatusRequest, PutUserStatusResponse } from "../models/models_2"; +import type { PutUserStatusRequest, PutUserStatusResponse } from "../models/models_2"; import { PutUserStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ReleasePhoneNumberCommand.ts b/clients/client-connect/src/commands/ReleasePhoneNumberCommand.ts index e952cb62b82a1..1afa1fb39c916 100644 --- a/clients/client-connect/src/commands/ReleasePhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/ReleasePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReleasePhoneNumberRequest } from "../models/models_2"; +import type { ReleasePhoneNumberRequest } from "../models/models_2"; import { ReleasePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ReplicateInstanceCommand.ts b/clients/client-connect/src/commands/ReplicateInstanceCommand.ts index 6cef9e10b9245..a7d013ada86b9 100644 --- a/clients/client-connect/src/commands/ReplicateInstanceCommand.ts +++ b/clients/client-connect/src/commands/ReplicateInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplicateInstanceRequest, ReplicateInstanceResponse } from "../models/models_2"; +import type { ReplicateInstanceRequest, ReplicateInstanceResponse } from "../models/models_2"; import { ReplicateInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ResumeContactCommand.ts b/clients/client-connect/src/commands/ResumeContactCommand.ts index 0f88048bb366f..22642208901ae 100644 --- a/clients/client-connect/src/commands/ResumeContactCommand.ts +++ b/clients/client-connect/src/commands/ResumeContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResumeContactRequest, ResumeContactResponse } from "../models/models_2"; +import type { ResumeContactRequest, ResumeContactResponse } from "../models/models_2"; import { ResumeContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/ResumeContactRecordingCommand.ts b/clients/client-connect/src/commands/ResumeContactRecordingCommand.ts index 07833cbb9b4be..4640e71427abb 100644 --- a/clients/client-connect/src/commands/ResumeContactRecordingCommand.ts +++ b/clients/client-connect/src/commands/ResumeContactRecordingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResumeContactRecordingRequest, ResumeContactRecordingResponse } from "../models/models_2"; +import type { ResumeContactRecordingRequest, ResumeContactRecordingResponse } from "../models/models_2"; import { ResumeContactRecording } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchAgentStatusesCommand.ts b/clients/client-connect/src/commands/SearchAgentStatusesCommand.ts index ab19f935b8ee5..35ec029167ed3 100644 --- a/clients/client-connect/src/commands/SearchAgentStatusesCommand.ts +++ b/clients/client-connect/src/commands/SearchAgentStatusesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchAgentStatusesResponse } from "../models/models_2"; -import { SearchAgentStatusesRequest } from "../models/models_3"; +import type { SearchAgentStatusesResponse } from "../models/models_2"; +import type { SearchAgentStatusesRequest } from "../models/models_3"; import { SearchAgentStatuses } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchAvailablePhoneNumbersCommand.ts b/clients/client-connect/src/commands/SearchAvailablePhoneNumbersCommand.ts index 7a34829ffbb54..fca082d1b7135 100644 --- a/clients/client-connect/src/commands/SearchAvailablePhoneNumbersCommand.ts +++ b/clients/client-connect/src/commands/SearchAvailablePhoneNumbersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchAvailablePhoneNumbersRequest, SearchAvailablePhoneNumbersResponse } from "../models/models_2"; +import type { SearchAvailablePhoneNumbersRequest, SearchAvailablePhoneNumbersResponse } from "../models/models_2"; import { SearchAvailablePhoneNumbers } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchContactEvaluationsCommand.ts b/clients/client-connect/src/commands/SearchContactEvaluationsCommand.ts index ced5e7591a142..8733470ff94a2 100644 --- a/clients/client-connect/src/commands/SearchContactEvaluationsCommand.ts +++ b/clients/client-connect/src/commands/SearchContactEvaluationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchContactEvaluationsResponse } from "../models/models_2"; -import { SearchContactEvaluationsRequest } from "../models/models_3"; +import type { SearchContactEvaluationsResponse } from "../models/models_2"; +import type { SearchContactEvaluationsRequest } from "../models/models_3"; import { SearchContactEvaluations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchContactFlowModulesCommand.ts b/clients/client-connect/src/commands/SearchContactFlowModulesCommand.ts index 317e75689a2ea..e9460061eedfa 100644 --- a/clients/client-connect/src/commands/SearchContactFlowModulesCommand.ts +++ b/clients/client-connect/src/commands/SearchContactFlowModulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchContactFlowModulesResponse } from "../models/models_2"; -import { SearchContactFlowModulesRequest } from "../models/models_3"; +import type { SearchContactFlowModulesResponse } from "../models/models_2"; +import type { SearchContactFlowModulesRequest } from "../models/models_3"; import { SearchContactFlowModules } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchContactFlowsCommand.ts b/clients/client-connect/src/commands/SearchContactFlowsCommand.ts index 0049db67610ab..2f7f4af4ba68a 100644 --- a/clients/client-connect/src/commands/SearchContactFlowsCommand.ts +++ b/clients/client-connect/src/commands/SearchContactFlowsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchContactFlowsResponse } from "../models/models_2"; -import { SearchContactFlowsRequest } from "../models/models_3"; +import type { SearchContactFlowsResponse } from "../models/models_2"; +import type { SearchContactFlowsRequest } from "../models/models_3"; import { SearchContactFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchContactsCommand.ts b/clients/client-connect/src/commands/SearchContactsCommand.ts index ea93ad871eb23..44ab1c08d514e 100644 --- a/clients/client-connect/src/commands/SearchContactsCommand.ts +++ b/clients/client-connect/src/commands/SearchContactsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchContactsRequest } from "../models/models_2"; -import { SearchContactsResponse } from "../models/models_3"; +import type { SearchContactsRequest } from "../models/models_2"; +import type { SearchContactsResponse } from "../models/models_3"; import { SearchContacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchDataTablesCommand.ts b/clients/client-connect/src/commands/SearchDataTablesCommand.ts index c205f73e717f3..46570c4919fd2 100644 --- a/clients/client-connect/src/commands/SearchDataTablesCommand.ts +++ b/clients/client-connect/src/commands/SearchDataTablesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchDataTablesResponse } from "../models/models_2"; -import { SearchDataTablesRequest } from "../models/models_3"; +import type { SearchDataTablesResponse } from "../models/models_2"; +import type { SearchDataTablesRequest } from "../models/models_3"; import { SearchDataTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchEmailAddressesCommand.ts b/clients/client-connect/src/commands/SearchEmailAddressesCommand.ts index 101560b782d4c..8aeb72c54ec30 100644 --- a/clients/client-connect/src/commands/SearchEmailAddressesCommand.ts +++ b/clients/client-connect/src/commands/SearchEmailAddressesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchEmailAddressesResponse } from "../models/models_2"; -import { SearchEmailAddressesRequest } from "../models/models_3"; +import type { SearchEmailAddressesResponse } from "../models/models_2"; +import type { SearchEmailAddressesRequest } from "../models/models_3"; import { SearchEmailAddresses } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchEvaluationFormsCommand.ts b/clients/client-connect/src/commands/SearchEvaluationFormsCommand.ts index d2ae2627690de..4f325dabc76b4 100644 --- a/clients/client-connect/src/commands/SearchEvaluationFormsCommand.ts +++ b/clients/client-connect/src/commands/SearchEvaluationFormsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchEvaluationFormsResponse } from "../models/models_2"; -import { SearchEvaluationFormsRequest } from "../models/models_3"; +import type { SearchEvaluationFormsResponse } from "../models/models_2"; +import type { SearchEvaluationFormsRequest } from "../models/models_3"; import { SearchEvaluationForms } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchHoursOfOperationOverridesCommand.ts b/clients/client-connect/src/commands/SearchHoursOfOperationOverridesCommand.ts index f72c9a6ef4571..6eaf5a01d681c 100644 --- a/clients/client-connect/src/commands/SearchHoursOfOperationOverridesCommand.ts +++ b/clients/client-connect/src/commands/SearchHoursOfOperationOverridesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchHoursOfOperationOverridesResponse } from "../models/models_2"; -import { SearchHoursOfOperationOverridesRequest } from "../models/models_3"; +import type { SearchHoursOfOperationOverridesResponse } from "../models/models_2"; +import type { SearchHoursOfOperationOverridesRequest } from "../models/models_3"; import { SearchHoursOfOperationOverrides } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchHoursOfOperationsCommand.ts b/clients/client-connect/src/commands/SearchHoursOfOperationsCommand.ts index d175616bde00c..8eaf34d582697 100644 --- a/clients/client-connect/src/commands/SearchHoursOfOperationsCommand.ts +++ b/clients/client-connect/src/commands/SearchHoursOfOperationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchHoursOfOperationsResponse } from "../models/models_2"; -import { SearchHoursOfOperationsRequest } from "../models/models_3"; +import type { SearchHoursOfOperationsResponse } from "../models/models_2"; +import type { SearchHoursOfOperationsRequest } from "../models/models_3"; import { SearchHoursOfOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchPredefinedAttributesCommand.ts b/clients/client-connect/src/commands/SearchPredefinedAttributesCommand.ts index 8517b76b6f298..856670058a722 100644 --- a/clients/client-connect/src/commands/SearchPredefinedAttributesCommand.ts +++ b/clients/client-connect/src/commands/SearchPredefinedAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchPredefinedAttributesResponse } from "../models/models_2"; -import { SearchPredefinedAttributesRequest } from "../models/models_3"; +import type { SearchPredefinedAttributesResponse } from "../models/models_2"; +import type { SearchPredefinedAttributesRequest } from "../models/models_3"; import { SearchPredefinedAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchPromptsCommand.ts b/clients/client-connect/src/commands/SearchPromptsCommand.ts index 3d63cb223271c..fc7698ead2a6d 100644 --- a/clients/client-connect/src/commands/SearchPromptsCommand.ts +++ b/clients/client-connect/src/commands/SearchPromptsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchPromptsResponse } from "../models/models_2"; -import { SearchPromptsRequest } from "../models/models_3"; +import type { SearchPromptsResponse } from "../models/models_2"; +import type { SearchPromptsRequest } from "../models/models_3"; import { SearchPrompts } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchQueuesCommand.ts b/clients/client-connect/src/commands/SearchQueuesCommand.ts index e354b791202fa..1c28325cb282c 100644 --- a/clients/client-connect/src/commands/SearchQueuesCommand.ts +++ b/clients/client-connect/src/commands/SearchQueuesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchQueuesResponse } from "../models/models_2"; -import { SearchQueuesRequest } from "../models/models_3"; +import type { SearchQueuesResponse } from "../models/models_2"; +import type { SearchQueuesRequest } from "../models/models_3"; import { SearchQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchQuickConnectsCommand.ts b/clients/client-connect/src/commands/SearchQuickConnectsCommand.ts index f683fbace65d2..9f457f67e713c 100644 --- a/clients/client-connect/src/commands/SearchQuickConnectsCommand.ts +++ b/clients/client-connect/src/commands/SearchQuickConnectsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchQuickConnectsResponse } from "../models/models_2"; -import { SearchQuickConnectsRequest } from "../models/models_3"; +import type { SearchQuickConnectsResponse } from "../models/models_2"; +import type { SearchQuickConnectsRequest } from "../models/models_3"; import { SearchQuickConnects } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchResourceTagsCommand.ts b/clients/client-connect/src/commands/SearchResourceTagsCommand.ts index 52246e91e396b..ce8a6a5b7c784 100644 --- a/clients/client-connect/src/commands/SearchResourceTagsCommand.ts +++ b/clients/client-connect/src/commands/SearchResourceTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchResourceTagsRequest, SearchResourceTagsResponse } from "../models/models_2"; +import type { SearchResourceTagsRequest, SearchResourceTagsResponse } from "../models/models_2"; import { SearchResourceTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts b/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts index 5cc0541133845..b459f3c48cc4a 100644 --- a/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts +++ b/clients/client-connect/src/commands/SearchRoutingProfilesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchRoutingProfilesResponse } from "../models/models_2"; -import { SearchRoutingProfilesRequest } from "../models/models_3"; +import type { SearchRoutingProfilesResponse } from "../models/models_2"; +import type { SearchRoutingProfilesRequest } from "../models/models_3"; import { SearchRoutingProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchSecurityProfilesCommand.ts b/clients/client-connect/src/commands/SearchSecurityProfilesCommand.ts index b312f2a2d27a3..a0ff3edabc29e 100644 --- a/clients/client-connect/src/commands/SearchSecurityProfilesCommand.ts +++ b/clients/client-connect/src/commands/SearchSecurityProfilesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchSecurityProfilesResponse } from "../models/models_2"; -import { SearchSecurityProfilesRequest } from "../models/models_3"; +import type { SearchSecurityProfilesResponse } from "../models/models_2"; +import type { SearchSecurityProfilesRequest } from "../models/models_3"; import { SearchSecurityProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchUserHierarchyGroupsCommand.ts b/clients/client-connect/src/commands/SearchUserHierarchyGroupsCommand.ts index b08c001118d9f..aa226033ee4d1 100644 --- a/clients/client-connect/src/commands/SearchUserHierarchyGroupsCommand.ts +++ b/clients/client-connect/src/commands/SearchUserHierarchyGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchUserHierarchyGroupsResponse } from "../models/models_2"; -import { SearchUserHierarchyGroupsRequest } from "../models/models_3"; +import type { SearchUserHierarchyGroupsResponse } from "../models/models_2"; +import type { SearchUserHierarchyGroupsRequest } from "../models/models_3"; import { SearchUserHierarchyGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchUsersCommand.ts b/clients/client-connect/src/commands/SearchUsersCommand.ts index 2628f2eb1b381..94df6478bb78b 100644 --- a/clients/client-connect/src/commands/SearchUsersCommand.ts +++ b/clients/client-connect/src/commands/SearchUsersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchUsersResponse } from "../models/models_2"; -import { SearchUsersRequest } from "../models/models_3"; +import type { SearchUsersResponse } from "../models/models_2"; +import type { SearchUsersRequest } from "../models/models_3"; import { SearchUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchViewsCommand.ts b/clients/client-connect/src/commands/SearchViewsCommand.ts index 4b012b268d660..cb4dd3810b25c 100644 --- a/clients/client-connect/src/commands/SearchViewsCommand.ts +++ b/clients/client-connect/src/commands/SearchViewsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchViewsResponse } from "../models/models_2"; -import { SearchViewsRequest } from "../models/models_3"; +import type { SearchViewsResponse } from "../models/models_2"; +import type { SearchViewsRequest } from "../models/models_3"; import { SearchViews } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchVocabulariesCommand.ts b/clients/client-connect/src/commands/SearchVocabulariesCommand.ts index e106dac5ad7f0..8cc7239311a0e 100644 --- a/clients/client-connect/src/commands/SearchVocabulariesCommand.ts +++ b/clients/client-connect/src/commands/SearchVocabulariesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchVocabulariesRequest, SearchVocabulariesResponse } from "../models/models_2"; +import type { SearchVocabulariesRequest, SearchVocabulariesResponse } from "../models/models_2"; import { SearchVocabularies } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchWorkspaceAssociationsCommand.ts b/clients/client-connect/src/commands/SearchWorkspaceAssociationsCommand.ts index 6190893398f15..a343442335f78 100644 --- a/clients/client-connect/src/commands/SearchWorkspaceAssociationsCommand.ts +++ b/clients/client-connect/src/commands/SearchWorkspaceAssociationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchWorkspaceAssociationsResponse } from "../models/models_2"; -import { SearchWorkspaceAssociationsRequest } from "../models/models_3"; +import type { SearchWorkspaceAssociationsResponse } from "../models/models_2"; +import type { SearchWorkspaceAssociationsRequest } from "../models/models_3"; import { SearchWorkspaceAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SearchWorkspacesCommand.ts b/clients/client-connect/src/commands/SearchWorkspacesCommand.ts index 4ef96c1a0466b..cbd8860185456 100644 --- a/clients/client-connect/src/commands/SearchWorkspacesCommand.ts +++ b/clients/client-connect/src/commands/SearchWorkspacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchWorkspacesResponse } from "../models/models_2"; -import { SearchWorkspacesRequest } from "../models/models_3"; +import type { SearchWorkspacesResponse } from "../models/models_2"; +import type { SearchWorkspacesRequest } from "../models/models_3"; import { SearchWorkspaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SendChatIntegrationEventCommand.ts b/clients/client-connect/src/commands/SendChatIntegrationEventCommand.ts index d0af38163f8cb..851fb790b986a 100644 --- a/clients/client-connect/src/commands/SendChatIntegrationEventCommand.ts +++ b/clients/client-connect/src/commands/SendChatIntegrationEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendChatIntegrationEventRequest, SendChatIntegrationEventResponse } from "../models/models_2"; +import type { SendChatIntegrationEventRequest, SendChatIntegrationEventResponse } from "../models/models_2"; import { SendChatIntegrationEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SendOutboundEmailCommand.ts b/clients/client-connect/src/commands/SendOutboundEmailCommand.ts index d21f53f62d7b1..669a0c4a96c64 100644 --- a/clients/client-connect/src/commands/SendOutboundEmailCommand.ts +++ b/clients/client-connect/src/commands/SendOutboundEmailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendOutboundEmailRequest, SendOutboundEmailResponse } from "../models/models_2"; +import type { SendOutboundEmailRequest, SendOutboundEmailResponse } from "../models/models_2"; import { SendOutboundEmail } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartAttachedFileUploadCommand.ts b/clients/client-connect/src/commands/StartAttachedFileUploadCommand.ts index 977cb174e0ce4..98f743b6bf1f9 100644 --- a/clients/client-connect/src/commands/StartAttachedFileUploadCommand.ts +++ b/clients/client-connect/src/commands/StartAttachedFileUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAttachedFileUploadRequest, StartAttachedFileUploadResponse } from "../models/models_2"; +import type { StartAttachedFileUploadRequest, StartAttachedFileUploadResponse } from "../models/models_2"; import { StartAttachedFileUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartChatContactCommand.ts b/clients/client-connect/src/commands/StartChatContactCommand.ts index 06ff968df0dd9..d1b2c7f6b4d4b 100644 --- a/clients/client-connect/src/commands/StartChatContactCommand.ts +++ b/clients/client-connect/src/commands/StartChatContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartChatContactResponse } from "../models/models_2"; -import { StartChatContactRequest } from "../models/models_3"; +import type { StartChatContactResponse } from "../models/models_2"; +import type { StartChatContactRequest } from "../models/models_3"; import { StartChatContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartContactEvaluationCommand.ts b/clients/client-connect/src/commands/StartContactEvaluationCommand.ts index 6de9bac8fae77..7d77f0b1ab6f7 100644 --- a/clients/client-connect/src/commands/StartContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/StartContactEvaluationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartContactEvaluationRequest, StartContactEvaluationResponse } from "../models/models_2"; +import type { StartContactEvaluationRequest, StartContactEvaluationResponse } from "../models/models_2"; import { StartContactEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartContactMediaProcessingCommand.ts b/clients/client-connect/src/commands/StartContactMediaProcessingCommand.ts index ff18ed7dda913..9ebd984e8763d 100644 --- a/clients/client-connect/src/commands/StartContactMediaProcessingCommand.ts +++ b/clients/client-connect/src/commands/StartContactMediaProcessingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartContactMediaProcessingRequest, StartContactMediaProcessingResponse } from "../models/models_2"; +import type { StartContactMediaProcessingRequest, StartContactMediaProcessingResponse } from "../models/models_2"; import { StartContactMediaProcessing } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartContactRecordingCommand.ts b/clients/client-connect/src/commands/StartContactRecordingCommand.ts index 697de35a0fcd1..291830273ba1f 100644 --- a/clients/client-connect/src/commands/StartContactRecordingCommand.ts +++ b/clients/client-connect/src/commands/StartContactRecordingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartContactRecordingRequest, StartContactRecordingResponse } from "../models/models_2"; +import type { StartContactRecordingRequest, StartContactRecordingResponse } from "../models/models_2"; import { StartContactRecording } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartContactStreamingCommand.ts b/clients/client-connect/src/commands/StartContactStreamingCommand.ts index c1405ed5abdde..20f60d6deb954 100644 --- a/clients/client-connect/src/commands/StartContactStreamingCommand.ts +++ b/clients/client-connect/src/commands/StartContactStreamingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartContactStreamingRequest, StartContactStreamingResponse } from "../models/models_2"; +import type { StartContactStreamingRequest, StartContactStreamingResponse } from "../models/models_2"; import { StartContactStreaming } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartEmailContactCommand.ts b/clients/client-connect/src/commands/StartEmailContactCommand.ts index 9249e4fdf224c..128f31075b72c 100644 --- a/clients/client-connect/src/commands/StartEmailContactCommand.ts +++ b/clients/client-connect/src/commands/StartEmailContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartEmailContactResponse } from "../models/models_2"; -import { StartEmailContactRequest } from "../models/models_3"; +import type { StartEmailContactResponse } from "../models/models_2"; +import type { StartEmailContactRequest } from "../models/models_3"; import { StartEmailContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartOutboundChatContactCommand.ts b/clients/client-connect/src/commands/StartOutboundChatContactCommand.ts index 85373f1cf5cb4..4d94b2e8e72a1 100644 --- a/clients/client-connect/src/commands/StartOutboundChatContactCommand.ts +++ b/clients/client-connect/src/commands/StartOutboundChatContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartOutboundChatContactResponse } from "../models/models_2"; -import { StartOutboundChatContactRequest } from "../models/models_3"; +import type { StartOutboundChatContactResponse } from "../models/models_2"; +import type { StartOutboundChatContactRequest } from "../models/models_3"; import { StartOutboundChatContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartOutboundEmailContactCommand.ts b/clients/client-connect/src/commands/StartOutboundEmailContactCommand.ts index b01e1119c034f..9119e5e9c4f04 100644 --- a/clients/client-connect/src/commands/StartOutboundEmailContactCommand.ts +++ b/clients/client-connect/src/commands/StartOutboundEmailContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartOutboundEmailContactRequest } from "../models/models_2"; -import { StartOutboundEmailContactResponse } from "../models/models_3"; +import type { StartOutboundEmailContactRequest } from "../models/models_2"; +import type { StartOutboundEmailContactResponse } from "../models/models_3"; import { StartOutboundEmailContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartOutboundVoiceContactCommand.ts b/clients/client-connect/src/commands/StartOutboundVoiceContactCommand.ts index 79dd2921c956d..4f49f590755a2 100644 --- a/clients/client-connect/src/commands/StartOutboundVoiceContactCommand.ts +++ b/clients/client-connect/src/commands/StartOutboundVoiceContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartOutboundVoiceContactRequest, StartOutboundVoiceContactResponse } from "../models/models_3"; +import type { StartOutboundVoiceContactRequest, StartOutboundVoiceContactResponse } from "../models/models_3"; import { StartOutboundVoiceContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartScreenSharingCommand.ts b/clients/client-connect/src/commands/StartScreenSharingCommand.ts index 6b6bba8cc6167..a38018e98d1a7 100644 --- a/clients/client-connect/src/commands/StartScreenSharingCommand.ts +++ b/clients/client-connect/src/commands/StartScreenSharingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartScreenSharingRequest, StartScreenSharingResponse } from "../models/models_3"; +import type { StartScreenSharingRequest, StartScreenSharingResponse } from "../models/models_3"; import { StartScreenSharing } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartTaskContactCommand.ts b/clients/client-connect/src/commands/StartTaskContactCommand.ts index e37569cf3c1cf..e86165fcc92f6 100644 --- a/clients/client-connect/src/commands/StartTaskContactCommand.ts +++ b/clients/client-connect/src/commands/StartTaskContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTaskContactRequest, StartTaskContactResponse } from "../models/models_3"; +import type { StartTaskContactRequest, StartTaskContactResponse } from "../models/models_3"; import { StartTaskContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StartWebRTCContactCommand.ts b/clients/client-connect/src/commands/StartWebRTCContactCommand.ts index 57d3ca3d47172..80923080c1cef 100644 --- a/clients/client-connect/src/commands/StartWebRTCContactCommand.ts +++ b/clients/client-connect/src/commands/StartWebRTCContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartWebRTCContactRequest, StartWebRTCContactResponse } from "../models/models_3"; +import type { StartWebRTCContactRequest, StartWebRTCContactResponse } from "../models/models_3"; import { StartWebRTCContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StopContactCommand.ts b/clients/client-connect/src/commands/StopContactCommand.ts index ba359991bf447..aeea0fc244abc 100644 --- a/clients/client-connect/src/commands/StopContactCommand.ts +++ b/clients/client-connect/src/commands/StopContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopContactRequest, StopContactResponse } from "../models/models_3"; +import type { StopContactRequest, StopContactResponse } from "../models/models_3"; import { StopContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StopContactMediaProcessingCommand.ts b/clients/client-connect/src/commands/StopContactMediaProcessingCommand.ts index 15a0f5c309cd0..99ca0250be7af 100644 --- a/clients/client-connect/src/commands/StopContactMediaProcessingCommand.ts +++ b/clients/client-connect/src/commands/StopContactMediaProcessingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopContactMediaProcessingRequest, StopContactMediaProcessingResponse } from "../models/models_3"; +import type { StopContactMediaProcessingRequest, StopContactMediaProcessingResponse } from "../models/models_3"; import { StopContactMediaProcessing } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StopContactRecordingCommand.ts b/clients/client-connect/src/commands/StopContactRecordingCommand.ts index 20d786bd88960..6df419875ba4f 100644 --- a/clients/client-connect/src/commands/StopContactRecordingCommand.ts +++ b/clients/client-connect/src/commands/StopContactRecordingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopContactRecordingRequest, StopContactRecordingResponse } from "../models/models_3"; +import type { StopContactRecordingRequest, StopContactRecordingResponse } from "../models/models_3"; import { StopContactRecording } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/StopContactStreamingCommand.ts b/clients/client-connect/src/commands/StopContactStreamingCommand.ts index 1515cb4a0df33..318ff91af1708 100644 --- a/clients/client-connect/src/commands/StopContactStreamingCommand.ts +++ b/clients/client-connect/src/commands/StopContactStreamingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopContactStreamingRequest, StopContactStreamingResponse } from "../models/models_3"; +import type { StopContactStreamingRequest, StopContactStreamingResponse } from "../models/models_3"; import { StopContactStreaming } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SubmitContactEvaluationCommand.ts b/clients/client-connect/src/commands/SubmitContactEvaluationCommand.ts index 7dfad1db2dc65..befdefc4a031d 100644 --- a/clients/client-connect/src/commands/SubmitContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/SubmitContactEvaluationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitContactEvaluationRequest, SubmitContactEvaluationResponse } from "../models/models_3"; +import type { SubmitContactEvaluationRequest, SubmitContactEvaluationResponse } from "../models/models_3"; import { SubmitContactEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/SuspendContactRecordingCommand.ts b/clients/client-connect/src/commands/SuspendContactRecordingCommand.ts index e725692d7f0f8..98f0bbe87020b 100644 --- a/clients/client-connect/src/commands/SuspendContactRecordingCommand.ts +++ b/clients/client-connect/src/commands/SuspendContactRecordingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SuspendContactRecordingRequest, SuspendContactRecordingResponse } from "../models/models_3"; +import type { SuspendContactRecordingRequest, SuspendContactRecordingResponse } from "../models/models_3"; import { SuspendContactRecording } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/TagContactCommand.ts b/clients/client-connect/src/commands/TagContactCommand.ts index a0fd72f3def00..085c7aabf5cae 100644 --- a/clients/client-connect/src/commands/TagContactCommand.ts +++ b/clients/client-connect/src/commands/TagContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagContactRequest, TagContactResponse } from "../models/models_3"; +import type { TagContactRequest, TagContactResponse } from "../models/models_3"; import { TagContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/TagResourceCommand.ts b/clients/client-connect/src/commands/TagResourceCommand.ts index 271ae5660d862..414cd92620a3c 100644 --- a/clients/client-connect/src/commands/TagResourceCommand.ts +++ b/clients/client-connect/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_3"; +import type { TagResourceRequest } from "../models/models_3"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/TransferContactCommand.ts b/clients/client-connect/src/commands/TransferContactCommand.ts index 5315e997930fd..73dcad8800b3d 100644 --- a/clients/client-connect/src/commands/TransferContactCommand.ts +++ b/clients/client-connect/src/commands/TransferContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TransferContactRequest, TransferContactResponse } from "../models/models_3"; +import type { TransferContactRequest, TransferContactResponse } from "../models/models_3"; import { TransferContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UntagContactCommand.ts b/clients/client-connect/src/commands/UntagContactCommand.ts index 1291cec34b124..e004c3f751452 100644 --- a/clients/client-connect/src/commands/UntagContactCommand.ts +++ b/clients/client-connect/src/commands/UntagContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagContactRequest, UntagContactResponse } from "../models/models_3"; +import type { UntagContactRequest, UntagContactResponse } from "../models/models_3"; import { UntagContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UntagResourceCommand.ts b/clients/client-connect/src/commands/UntagResourceCommand.ts index 79c986ce1526a..86dab8de656f9 100644 --- a/clients/client-connect/src/commands/UntagResourceCommand.ts +++ b/clients/client-connect/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_3"; +import type { UntagResourceRequest } from "../models/models_3"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateAgentStatusCommand.ts b/clients/client-connect/src/commands/UpdateAgentStatusCommand.ts index be81b1163f1a6..992e575c6b7f6 100644 --- a/clients/client-connect/src/commands/UpdateAgentStatusCommand.ts +++ b/clients/client-connect/src/commands/UpdateAgentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgentStatusRequest } from "../models/models_3"; +import type { UpdateAgentStatusRequest } from "../models/models_3"; import { UpdateAgentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateAuthenticationProfileCommand.ts b/clients/client-connect/src/commands/UpdateAuthenticationProfileCommand.ts index 5e64b0c8faa3d..ccf86c20be9a9 100644 --- a/clients/client-connect/src/commands/UpdateAuthenticationProfileCommand.ts +++ b/clients/client-connect/src/commands/UpdateAuthenticationProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAuthenticationProfileRequest } from "../models/models_3"; +import type { UpdateAuthenticationProfileRequest } from "../models/models_3"; import { UpdateAuthenticationProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactAttributesCommand.ts b/clients/client-connect/src/commands/UpdateContactAttributesCommand.ts index 55e8e386bc290..f5399e6fa8add 100644 --- a/clients/client-connect/src/commands/UpdateContactAttributesCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactAttributesRequest, UpdateContactAttributesResponse } from "../models/models_3"; +import type { UpdateContactAttributesRequest, UpdateContactAttributesResponse } from "../models/models_3"; import { UpdateContactAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactCommand.ts b/clients/client-connect/src/commands/UpdateContactCommand.ts index cc46355b8fb55..1573e0a9791d1 100644 --- a/clients/client-connect/src/commands/UpdateContactCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactRequest, UpdateContactResponse } from "../models/models_3"; +import type { UpdateContactRequest, UpdateContactResponse } from "../models/models_3"; import { UpdateContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactEvaluationCommand.ts b/clients/client-connect/src/commands/UpdateContactEvaluationCommand.ts index cdf77a90830ac..de6c8d3fbd60f 100644 --- a/clients/client-connect/src/commands/UpdateContactEvaluationCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactEvaluationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactEvaluationRequest, UpdateContactEvaluationResponse } from "../models/models_3"; +import type { UpdateContactEvaluationRequest, UpdateContactEvaluationResponse } from "../models/models_3"; import { UpdateContactEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactFlowContentCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowContentCommand.ts index 5e85494665b1c..7818bcdc572a6 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowContentCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactFlowContentRequest, UpdateContactFlowContentResponse } from "../models/models_3"; +import type { UpdateContactFlowContentRequest, UpdateContactFlowContentResponse } from "../models/models_3"; import { UpdateContactFlowContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactFlowMetadataCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowMetadataCommand.ts index e91f128b297bf..de5f719f71b50 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactFlowMetadataRequest, UpdateContactFlowMetadataResponse } from "../models/models_3"; +import type { UpdateContactFlowMetadataRequest, UpdateContactFlowMetadataResponse } from "../models/models_3"; import { UpdateContactFlowMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactFlowModuleAliasCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowModuleAliasCommand.ts index 7889589c2b463..c4e73e2c9bb46 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowModuleAliasCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowModuleAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactFlowModuleAliasRequest, UpdateContactFlowModuleAliasResponse } from "../models/models_3"; +import type { UpdateContactFlowModuleAliasRequest, UpdateContactFlowModuleAliasResponse } from "../models/models_3"; import { UpdateContactFlowModuleAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactFlowModuleContentCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowModuleContentCommand.ts index 2305ae3e99fc5..230f077597b18 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowModuleContentCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowModuleContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactFlowModuleContentRequest, UpdateContactFlowModuleContentResponse } from "../models/models_3"; +import type { UpdateContactFlowModuleContentRequest, UpdateContactFlowModuleContentResponse } from "../models/models_3"; import { UpdateContactFlowModuleContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactFlowModuleMetadataCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowModuleMetadataCommand.ts index 296bec34ed4b0..bfd700b4cbc2a 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowModuleMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowModuleMetadataCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactFlowModuleMetadataRequest, UpdateContactFlowModuleMetadataResponse } from "../models/models_3"; +import type { + UpdateContactFlowModuleMetadataRequest, + UpdateContactFlowModuleMetadataResponse, +} from "../models/models_3"; import { UpdateContactFlowModuleMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactFlowNameCommand.ts b/clients/client-connect/src/commands/UpdateContactFlowNameCommand.ts index 6a0b0837b578f..4b885ae3d13e5 100644 --- a/clients/client-connect/src/commands/UpdateContactFlowNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactFlowNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactFlowNameRequest, UpdateContactFlowNameResponse } from "../models/models_3"; +import type { UpdateContactFlowNameRequest, UpdateContactFlowNameResponse } from "../models/models_3"; import { UpdateContactFlowName } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactRoutingDataCommand.ts b/clients/client-connect/src/commands/UpdateContactRoutingDataCommand.ts index 90afd523bf517..3c9ba774dfc35 100644 --- a/clients/client-connect/src/commands/UpdateContactRoutingDataCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactRoutingDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactRoutingDataRequest, UpdateContactRoutingDataResponse } from "../models/models_3"; +import type { UpdateContactRoutingDataRequest, UpdateContactRoutingDataResponse } from "../models/models_3"; import { UpdateContactRoutingData } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateContactScheduleCommand.ts b/clients/client-connect/src/commands/UpdateContactScheduleCommand.ts index 6234ce0141a49..6085204712e09 100644 --- a/clients/client-connect/src/commands/UpdateContactScheduleCommand.ts +++ b/clients/client-connect/src/commands/UpdateContactScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactScheduleRequest, UpdateContactScheduleResponse } from "../models/models_3"; +import type { UpdateContactScheduleRequest, UpdateContactScheduleResponse } from "../models/models_3"; import { UpdateContactSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateDataTableAttributeCommand.ts b/clients/client-connect/src/commands/UpdateDataTableAttributeCommand.ts index 343d9f1877d11..54c8df610cc18 100644 --- a/clients/client-connect/src/commands/UpdateDataTableAttributeCommand.ts +++ b/clients/client-connect/src/commands/UpdateDataTableAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataTableAttributeRequest, UpdateDataTableAttributeResponse } from "../models/models_3"; +import type { UpdateDataTableAttributeRequest, UpdateDataTableAttributeResponse } from "../models/models_3"; import { UpdateDataTableAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateDataTableMetadataCommand.ts b/clients/client-connect/src/commands/UpdateDataTableMetadataCommand.ts index d61d350a86fa2..bb7c3a41de864 100644 --- a/clients/client-connect/src/commands/UpdateDataTableMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateDataTableMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataTableMetadataRequest, UpdateDataTableMetadataResponse } from "../models/models_3"; +import type { UpdateDataTableMetadataRequest, UpdateDataTableMetadataResponse } from "../models/models_3"; import { UpdateDataTableMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateDataTablePrimaryValuesCommand.ts b/clients/client-connect/src/commands/UpdateDataTablePrimaryValuesCommand.ts index c33aa0c40f694..ac5db082c788a 100644 --- a/clients/client-connect/src/commands/UpdateDataTablePrimaryValuesCommand.ts +++ b/clients/client-connect/src/commands/UpdateDataTablePrimaryValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataTablePrimaryValuesRequest, UpdateDataTablePrimaryValuesResponse } from "../models/models_3"; +import type { UpdateDataTablePrimaryValuesRequest, UpdateDataTablePrimaryValuesResponse } from "../models/models_3"; import { UpdateDataTablePrimaryValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateEmailAddressMetadataCommand.ts b/clients/client-connect/src/commands/UpdateEmailAddressMetadataCommand.ts index 31a454f4d9261..32b71b4e0925b 100644 --- a/clients/client-connect/src/commands/UpdateEmailAddressMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateEmailAddressMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEmailAddressMetadataRequest, UpdateEmailAddressMetadataResponse } from "../models/models_3"; +import type { UpdateEmailAddressMetadataRequest, UpdateEmailAddressMetadataResponse } from "../models/models_3"; import { UpdateEmailAddressMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateEvaluationFormCommand.ts b/clients/client-connect/src/commands/UpdateEvaluationFormCommand.ts index 26909b9fa13c6..b71c0fba2af25 100644 --- a/clients/client-connect/src/commands/UpdateEvaluationFormCommand.ts +++ b/clients/client-connect/src/commands/UpdateEvaluationFormCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEvaluationFormRequest, UpdateEvaluationFormResponse } from "../models/models_3"; +import type { UpdateEvaluationFormRequest, UpdateEvaluationFormResponse } from "../models/models_3"; import { UpdateEvaluationForm } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateHoursOfOperationCommand.ts b/clients/client-connect/src/commands/UpdateHoursOfOperationCommand.ts index 87dd4e480fa02..8b2af1f347bfa 100644 --- a/clients/client-connect/src/commands/UpdateHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/UpdateHoursOfOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHoursOfOperationRequest } from "../models/models_3"; +import type { UpdateHoursOfOperationRequest } from "../models/models_3"; import { UpdateHoursOfOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateHoursOfOperationOverrideCommand.ts b/clients/client-connect/src/commands/UpdateHoursOfOperationOverrideCommand.ts index 9569d594f58d8..4db565f1d4c50 100644 --- a/clients/client-connect/src/commands/UpdateHoursOfOperationOverrideCommand.ts +++ b/clients/client-connect/src/commands/UpdateHoursOfOperationOverrideCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHoursOfOperationOverrideRequest } from "../models/models_3"; +import type { UpdateHoursOfOperationOverrideRequest } from "../models/models_3"; import { UpdateHoursOfOperationOverride } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateInstanceAttributeCommand.ts b/clients/client-connect/src/commands/UpdateInstanceAttributeCommand.ts index 7a0ff4de8b85d..ac9a06150bfd2 100644 --- a/clients/client-connect/src/commands/UpdateInstanceAttributeCommand.ts +++ b/clients/client-connect/src/commands/UpdateInstanceAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInstanceAttributeRequest } from "../models/models_3"; +import type { UpdateInstanceAttributeRequest } from "../models/models_3"; import { UpdateInstanceAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateInstanceStorageConfigCommand.ts b/clients/client-connect/src/commands/UpdateInstanceStorageConfigCommand.ts index 5112f99203b9f..9e422c7307424 100644 --- a/clients/client-connect/src/commands/UpdateInstanceStorageConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateInstanceStorageConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInstanceStorageConfigRequest } from "../models/models_3"; +import type { UpdateInstanceStorageConfigRequest } from "../models/models_3"; import { UpdateInstanceStorageConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateParticipantAuthenticationCommand.ts b/clients/client-connect/src/commands/UpdateParticipantAuthenticationCommand.ts index 7b9a2cb75b3fa..8d540a2c8d877 100644 --- a/clients/client-connect/src/commands/UpdateParticipantAuthenticationCommand.ts +++ b/clients/client-connect/src/commands/UpdateParticipantAuthenticationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateParticipantAuthenticationRequest, UpdateParticipantAuthenticationResponse } from "../models/models_3"; +import type { + UpdateParticipantAuthenticationRequest, + UpdateParticipantAuthenticationResponse, +} from "../models/models_3"; import { UpdateParticipantAuthentication } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateParticipantRoleConfigCommand.ts b/clients/client-connect/src/commands/UpdateParticipantRoleConfigCommand.ts index 5921b8162680a..2af69abe6236c 100644 --- a/clients/client-connect/src/commands/UpdateParticipantRoleConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateParticipantRoleConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateParticipantRoleConfigRequest, UpdateParticipantRoleConfigResponse } from "../models/models_3"; +import type { UpdateParticipantRoleConfigRequest, UpdateParticipantRoleConfigResponse } from "../models/models_3"; import { UpdateParticipantRoleConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdatePhoneNumberCommand.ts b/clients/client-connect/src/commands/UpdatePhoneNumberCommand.ts index 0498f79b38c0a..c7a1da4c182a6 100644 --- a/clients/client-connect/src/commands/UpdatePhoneNumberCommand.ts +++ b/clients/client-connect/src/commands/UpdatePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePhoneNumberRequest, UpdatePhoneNumberResponse } from "../models/models_3"; +import type { UpdatePhoneNumberRequest, UpdatePhoneNumberResponse } from "../models/models_3"; import { UpdatePhoneNumber } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdatePhoneNumberMetadataCommand.ts b/clients/client-connect/src/commands/UpdatePhoneNumberMetadataCommand.ts index fcf4bf2282c67..7c7a265e9ae9c 100644 --- a/clients/client-connect/src/commands/UpdatePhoneNumberMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdatePhoneNumberMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePhoneNumberMetadataRequest } from "../models/models_3"; +import type { UpdatePhoneNumberMetadataRequest } from "../models/models_3"; import { UpdatePhoneNumberMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdatePredefinedAttributeCommand.ts b/clients/client-connect/src/commands/UpdatePredefinedAttributeCommand.ts index 04b674724f343..557e1f3709c26 100644 --- a/clients/client-connect/src/commands/UpdatePredefinedAttributeCommand.ts +++ b/clients/client-connect/src/commands/UpdatePredefinedAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePredefinedAttributeRequest } from "../models/models_3"; +import type { UpdatePredefinedAttributeRequest } from "../models/models_3"; import { UpdatePredefinedAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdatePromptCommand.ts b/clients/client-connect/src/commands/UpdatePromptCommand.ts index 913415178c98c..e8803085ab6d3 100644 --- a/clients/client-connect/src/commands/UpdatePromptCommand.ts +++ b/clients/client-connect/src/commands/UpdatePromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePromptRequest, UpdatePromptResponse } from "../models/models_3"; +import type { UpdatePromptRequest, UpdatePromptResponse } from "../models/models_3"; import { UpdatePrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateQueueHoursOfOperationCommand.ts b/clients/client-connect/src/commands/UpdateQueueHoursOfOperationCommand.ts index 0bfec8e1f3394..76c76c383a742 100644 --- a/clients/client-connect/src/commands/UpdateQueueHoursOfOperationCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueHoursOfOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueHoursOfOperationRequest } from "../models/models_3"; +import type { UpdateQueueHoursOfOperationRequest } from "../models/models_3"; import { UpdateQueueHoursOfOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateQueueMaxContactsCommand.ts b/clients/client-connect/src/commands/UpdateQueueMaxContactsCommand.ts index c133e6dcc5040..46bfb6c7afad4 100644 --- a/clients/client-connect/src/commands/UpdateQueueMaxContactsCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueMaxContactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueMaxContactsRequest } from "../models/models_3"; +import type { UpdateQueueMaxContactsRequest } from "../models/models_3"; import { UpdateQueueMaxContacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateQueueNameCommand.ts b/clients/client-connect/src/commands/UpdateQueueNameCommand.ts index df958b626cd26..be094e5fc2581 100644 --- a/clients/client-connect/src/commands/UpdateQueueNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueNameRequest } from "../models/models_3"; +import type { UpdateQueueNameRequest } from "../models/models_3"; import { UpdateQueueName } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateQueueOutboundCallerConfigCommand.ts b/clients/client-connect/src/commands/UpdateQueueOutboundCallerConfigCommand.ts index 0aedfac82f4f5..331494948a3cf 100644 --- a/clients/client-connect/src/commands/UpdateQueueOutboundCallerConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueOutboundCallerConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueOutboundCallerConfigRequest } from "../models/models_3"; +import type { UpdateQueueOutboundCallerConfigRequest } from "../models/models_3"; import { UpdateQueueOutboundCallerConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateQueueOutboundEmailConfigCommand.ts b/clients/client-connect/src/commands/UpdateQueueOutboundEmailConfigCommand.ts index bc2bba6cf450a..a03cd962e8b91 100644 --- a/clients/client-connect/src/commands/UpdateQueueOutboundEmailConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueOutboundEmailConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueOutboundEmailConfigRequest } from "../models/models_3"; +import type { UpdateQueueOutboundEmailConfigRequest } from "../models/models_3"; import { UpdateQueueOutboundEmailConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateQueueStatusCommand.ts b/clients/client-connect/src/commands/UpdateQueueStatusCommand.ts index 353c0cabdf44f..861561bc0a684 100644 --- a/clients/client-connect/src/commands/UpdateQueueStatusCommand.ts +++ b/clients/client-connect/src/commands/UpdateQueueStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueStatusRequest } from "../models/models_3"; +import type { UpdateQueueStatusRequest } from "../models/models_3"; import { UpdateQueueStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateQuickConnectConfigCommand.ts b/clients/client-connect/src/commands/UpdateQuickConnectConfigCommand.ts index 4e7d7cea384ac..04de12139eb96 100644 --- a/clients/client-connect/src/commands/UpdateQuickConnectConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateQuickConnectConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQuickConnectConfigRequest } from "../models/models_3"; +import type { UpdateQuickConnectConfigRequest } from "../models/models_3"; import { UpdateQuickConnectConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateQuickConnectNameCommand.ts b/clients/client-connect/src/commands/UpdateQuickConnectNameCommand.ts index 07eb1d707d140..08203c5f96f0d 100644 --- a/clients/client-connect/src/commands/UpdateQuickConnectNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateQuickConnectNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQuickConnectNameRequest } from "../models/models_3"; +import type { UpdateQuickConnectNameRequest } from "../models/models_3"; import { UpdateQuickConnectName } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.ts index 5b96d10c38d8c..bcdcc16ca24fa 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileAgentAvailabilityTimerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoutingProfileAgentAvailabilityTimerRequest } from "../models/models_3"; +import type { UpdateRoutingProfileAgentAvailabilityTimerRequest } from "../models/models_3"; import { UpdateRoutingProfileAgentAvailabilityTimer } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileConcurrencyCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileConcurrencyCommand.ts index 67102ba779573..4d4f26af1c6d2 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileConcurrencyCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileConcurrencyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoutingProfileConcurrencyRequest } from "../models/models_3"; +import type { UpdateRoutingProfileConcurrencyRequest } from "../models/models_3"; import { UpdateRoutingProfileConcurrency } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.ts index 78c719d82b166..ef805f2a9d9d7 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileDefaultOutboundQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoutingProfileDefaultOutboundQueueRequest } from "../models/models_3"; +import type { UpdateRoutingProfileDefaultOutboundQueueRequest } from "../models/models_3"; import { UpdateRoutingProfileDefaultOutboundQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileNameCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileNameCommand.ts index b852ab1cacf9c..81a347199190e 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoutingProfileNameRequest } from "../models/models_3"; +import type { UpdateRoutingProfileNameRequest } from "../models/models_3"; import { UpdateRoutingProfileName } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateRoutingProfileQueuesCommand.ts b/clients/client-connect/src/commands/UpdateRoutingProfileQueuesCommand.ts index 1f0b4ba3280dd..01092ddcefb1c 100644 --- a/clients/client-connect/src/commands/UpdateRoutingProfileQueuesCommand.ts +++ b/clients/client-connect/src/commands/UpdateRoutingProfileQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoutingProfileQueuesRequest } from "../models/models_3"; +import type { UpdateRoutingProfileQueuesRequest } from "../models/models_3"; import { UpdateRoutingProfileQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateRuleCommand.ts b/clients/client-connect/src/commands/UpdateRuleCommand.ts index a6cf58a0fd943..10d21262005a0 100644 --- a/clients/client-connect/src/commands/UpdateRuleCommand.ts +++ b/clients/client-connect/src/commands/UpdateRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleRequest } from "../models/models_3"; +import type { UpdateRuleRequest } from "../models/models_3"; import { UpdateRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateSecurityProfileCommand.ts b/clients/client-connect/src/commands/UpdateSecurityProfileCommand.ts index 04e82bf32da9b..01ffba453608f 100644 --- a/clients/client-connect/src/commands/UpdateSecurityProfileCommand.ts +++ b/clients/client-connect/src/commands/UpdateSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSecurityProfileRequest } from "../models/models_3"; +import type { UpdateSecurityProfileRequest } from "../models/models_3"; import { UpdateSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateTaskTemplateCommand.ts b/clients/client-connect/src/commands/UpdateTaskTemplateCommand.ts index 3bae3fb1837e0..1b75d00566600 100644 --- a/clients/client-connect/src/commands/UpdateTaskTemplateCommand.ts +++ b/clients/client-connect/src/commands/UpdateTaskTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTaskTemplateRequest, UpdateTaskTemplateResponse } from "../models/models_3"; +import type { UpdateTaskTemplateRequest, UpdateTaskTemplateResponse } from "../models/models_3"; import { UpdateTaskTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateTrafficDistributionCommand.ts b/clients/client-connect/src/commands/UpdateTrafficDistributionCommand.ts index a9cff213616f3..40ffed7482974 100644 --- a/clients/client-connect/src/commands/UpdateTrafficDistributionCommand.ts +++ b/clients/client-connect/src/commands/UpdateTrafficDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrafficDistributionRequest, UpdateTrafficDistributionResponse } from "../models/models_3"; +import type { UpdateTrafficDistributionRequest, UpdateTrafficDistributionResponse } from "../models/models_3"; import { UpdateTrafficDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateUserHierarchyCommand.ts b/clients/client-connect/src/commands/UpdateUserHierarchyCommand.ts index b1a0221587b0e..b6f294a2001b3 100644 --- a/clients/client-connect/src/commands/UpdateUserHierarchyCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserHierarchyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserHierarchyRequest } from "../models/models_3"; +import type { UpdateUserHierarchyRequest } from "../models/models_3"; import { UpdateUserHierarchy } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateUserHierarchyGroupNameCommand.ts b/clients/client-connect/src/commands/UpdateUserHierarchyGroupNameCommand.ts index 53fd5d9838047..70278b55eba20 100644 --- a/clients/client-connect/src/commands/UpdateUserHierarchyGroupNameCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserHierarchyGroupNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserHierarchyGroupNameRequest } from "../models/models_3"; +import type { UpdateUserHierarchyGroupNameRequest } from "../models/models_3"; import { UpdateUserHierarchyGroupName } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateUserHierarchyStructureCommand.ts b/clients/client-connect/src/commands/UpdateUserHierarchyStructureCommand.ts index abe88bb8320a5..866e1451b2d05 100644 --- a/clients/client-connect/src/commands/UpdateUserHierarchyStructureCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserHierarchyStructureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserHierarchyStructureRequest } from "../models/models_3"; +import type { UpdateUserHierarchyStructureRequest } from "../models/models_3"; import { UpdateUserHierarchyStructure } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateUserIdentityInfoCommand.ts b/clients/client-connect/src/commands/UpdateUserIdentityInfoCommand.ts index 516a20ddc74d5..a6da7e566211d 100644 --- a/clients/client-connect/src/commands/UpdateUserIdentityInfoCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserIdentityInfoCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserIdentityInfoRequest } from "../models/models_3"; +import type { UpdateUserIdentityInfoRequest } from "../models/models_3"; import { UpdateUserIdentityInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateUserPhoneConfigCommand.ts b/clients/client-connect/src/commands/UpdateUserPhoneConfigCommand.ts index b8532c1ec34c2..7ef295fa0a492 100644 --- a/clients/client-connect/src/commands/UpdateUserPhoneConfigCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserPhoneConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserPhoneConfigRequest } from "../models/models_3"; +import type { UpdateUserPhoneConfigRequest } from "../models/models_3"; import { UpdateUserPhoneConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateUserProficienciesCommand.ts b/clients/client-connect/src/commands/UpdateUserProficienciesCommand.ts index 7d01320856c94..d9f507a06cc77 100644 --- a/clients/client-connect/src/commands/UpdateUserProficienciesCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserProficienciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserProficienciesRequest } from "../models/models_3"; +import type { UpdateUserProficienciesRequest } from "../models/models_3"; import { UpdateUserProficiencies } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateUserRoutingProfileCommand.ts b/clients/client-connect/src/commands/UpdateUserRoutingProfileCommand.ts index dacd3e284c74d..e5497d86b9efd 100644 --- a/clients/client-connect/src/commands/UpdateUserRoutingProfileCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserRoutingProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserRoutingProfileRequest } from "../models/models_3"; +import type { UpdateUserRoutingProfileRequest } from "../models/models_3"; import { UpdateUserRoutingProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateUserSecurityProfilesCommand.ts b/clients/client-connect/src/commands/UpdateUserSecurityProfilesCommand.ts index 8ed741229679b..9f022db68c6ca 100644 --- a/clients/client-connect/src/commands/UpdateUserSecurityProfilesCommand.ts +++ b/clients/client-connect/src/commands/UpdateUserSecurityProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserSecurityProfilesRequest } from "../models/models_3"; +import type { UpdateUserSecurityProfilesRequest } from "../models/models_3"; import { UpdateUserSecurityProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateViewContentCommand.ts b/clients/client-connect/src/commands/UpdateViewContentCommand.ts index fc3a9812a51c6..b4ef5b16c96bd 100644 --- a/clients/client-connect/src/commands/UpdateViewContentCommand.ts +++ b/clients/client-connect/src/commands/UpdateViewContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateViewContentRequest, UpdateViewContentResponse } from "../models/models_3"; +import type { UpdateViewContentRequest, UpdateViewContentResponse } from "../models/models_3"; import { UpdateViewContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateViewMetadataCommand.ts b/clients/client-connect/src/commands/UpdateViewMetadataCommand.ts index ac0263286a719..c446e204f3921 100644 --- a/clients/client-connect/src/commands/UpdateViewMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateViewMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateViewMetadataRequest, UpdateViewMetadataResponse } from "../models/models_3"; +import type { UpdateViewMetadataRequest, UpdateViewMetadataResponse } from "../models/models_3"; import { UpdateViewMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateWorkspaceMetadataCommand.ts b/clients/client-connect/src/commands/UpdateWorkspaceMetadataCommand.ts index 5849d291096cc..6923319ab2a0e 100644 --- a/clients/client-connect/src/commands/UpdateWorkspaceMetadataCommand.ts +++ b/clients/client-connect/src/commands/UpdateWorkspaceMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkspaceMetadataRequest, UpdateWorkspaceMetadataResponse } from "../models/models_3"; +import type { UpdateWorkspaceMetadataRequest, UpdateWorkspaceMetadataResponse } from "../models/models_3"; import { UpdateWorkspaceMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateWorkspacePageCommand.ts b/clients/client-connect/src/commands/UpdateWorkspacePageCommand.ts index 48a9865b0eaca..d3ea374ddbb7d 100644 --- a/clients/client-connect/src/commands/UpdateWorkspacePageCommand.ts +++ b/clients/client-connect/src/commands/UpdateWorkspacePageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkspacePageRequest, UpdateWorkspacePageResponse } from "../models/models_3"; +import type { UpdateWorkspacePageRequest, UpdateWorkspacePageResponse } from "../models/models_3"; import { UpdateWorkspacePage } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateWorkspaceThemeCommand.ts b/clients/client-connect/src/commands/UpdateWorkspaceThemeCommand.ts index ea09e16851968..e69b7ae5dd9d6 100644 --- a/clients/client-connect/src/commands/UpdateWorkspaceThemeCommand.ts +++ b/clients/client-connect/src/commands/UpdateWorkspaceThemeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkspaceThemeRequest, UpdateWorkspaceThemeResponse } from "../models/models_3"; +import type { UpdateWorkspaceThemeRequest, UpdateWorkspaceThemeResponse } from "../models/models_3"; import { UpdateWorkspaceTheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/commands/UpdateWorkspaceVisibilityCommand.ts b/clients/client-connect/src/commands/UpdateWorkspaceVisibilityCommand.ts index a96f0963d29aa..34f3d29daec0e 100644 --- a/clients/client-connect/src/commands/UpdateWorkspaceVisibilityCommand.ts +++ b/clients/client-connect/src/commands/UpdateWorkspaceVisibilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; +import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkspaceVisibilityRequest, UpdateWorkspaceVisibilityResponse } from "../models/models_3"; +import type { UpdateWorkspaceVisibilityRequest, UpdateWorkspaceVisibilityResponse } from "../models/models_3"; import { UpdateWorkspaceVisibility } from "../schemas/schemas_0"; /** diff --git a/clients/client-connect/src/endpoint/EndpointParameters.ts b/clients/client-connect/src/endpoint/EndpointParameters.ts index f168b8a58489c..f0960f62d5920 100644 --- a/clients/client-connect/src/endpoint/EndpointParameters.ts +++ b/clients/client-connect/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-connect/src/endpoint/endpointResolver.ts b/clients/client-connect/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-connect/src/endpoint/endpointResolver.ts +++ b/clients/client-connect/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-connect/src/extensionConfiguration.ts b/clients/client-connect/src/extensionConfiguration.ts index a69d51588f454..d6b86d0737b35 100644 --- a/clients/client-connect/src/extensionConfiguration.ts +++ b/clients/client-connect/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-connect/src/models/ConnectServiceException.ts b/clients/client-connect/src/models/ConnectServiceException.ts index 1e459d0a87f8b..8112dbacf6b1f 100644 --- a/clients/client-connect/src/models/ConnectServiceException.ts +++ b/clients/client-connect/src/models/ConnectServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-connect/src/models/errors.ts b/clients/client-connect/src/models/errors.ts index 1f2a756eed214..46545aa9e25af 100644 --- a/clients/client-connect/src/models/errors.ts +++ b/clients/client-connect/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConnectServiceException as __BaseException } from "./ConnectServiceException"; import { ResourceType } from "./enums"; diff --git a/clients/client-connect/src/pagination/EvaluateDataTableValuesPaginator.ts b/clients/client-connect/src/pagination/EvaluateDataTableValuesPaginator.ts index f3235030ba9ec..b73b175721763 100644 --- a/clients/client-connect/src/pagination/EvaluateDataTableValuesPaginator.ts +++ b/clients/client-connect/src/pagination/EvaluateDataTableValuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { EvaluateDataTableValuesCommand, diff --git a/clients/client-connect/src/pagination/GetCurrentMetricDataPaginator.ts b/clients/client-connect/src/pagination/GetCurrentMetricDataPaginator.ts index be2db640540b7..de307204d86ff 100644 --- a/clients/client-connect/src/pagination/GetCurrentMetricDataPaginator.ts +++ b/clients/client-connect/src/pagination/GetCurrentMetricDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCurrentMetricDataCommand, diff --git a/clients/client-connect/src/pagination/GetCurrentUserDataPaginator.ts b/clients/client-connect/src/pagination/GetCurrentUserDataPaginator.ts index 13a87868d8a2e..e9beb5f44d987 100644 --- a/clients/client-connect/src/pagination/GetCurrentUserDataPaginator.ts +++ b/clients/client-connect/src/pagination/GetCurrentUserDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCurrentUserDataCommand, diff --git a/clients/client-connect/src/pagination/GetMetricDataPaginator.ts b/clients/client-connect/src/pagination/GetMetricDataPaginator.ts index 4f461085799b5..8c92ada445241 100644 --- a/clients/client-connect/src/pagination/GetMetricDataPaginator.ts +++ b/clients/client-connect/src/pagination/GetMetricDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetMetricDataCommand, diff --git a/clients/client-connect/src/pagination/GetMetricDataV2Paginator.ts b/clients/client-connect/src/pagination/GetMetricDataV2Paginator.ts index c67ce58574aa2..8b7a294befc80 100644 --- a/clients/client-connect/src/pagination/GetMetricDataV2Paginator.ts +++ b/clients/client-connect/src/pagination/GetMetricDataV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetMetricDataV2Command, diff --git a/clients/client-connect/src/pagination/Interfaces.ts b/clients/client-connect/src/pagination/Interfaces.ts index ab478a6cda010..e46eb9b806383 100644 --- a/clients/client-connect/src/pagination/Interfaces.ts +++ b/clients/client-connect/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/ListAgentStatusesPaginator.ts b/clients/client-connect/src/pagination/ListAgentStatusesPaginator.ts index 7b0cd8b25b59a..64b0ccd5f8082 100644 --- a/clients/client-connect/src/pagination/ListAgentStatusesPaginator.ts +++ b/clients/client-connect/src/pagination/ListAgentStatusesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAgentStatusesCommand, diff --git a/clients/client-connect/src/pagination/ListApprovedOriginsPaginator.ts b/clients/client-connect/src/pagination/ListApprovedOriginsPaginator.ts index 3e8c806d9e018..36ccec0fc9e6e 100644 --- a/clients/client-connect/src/pagination/ListApprovedOriginsPaginator.ts +++ b/clients/client-connect/src/pagination/ListApprovedOriginsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApprovedOriginsCommand, diff --git a/clients/client-connect/src/pagination/ListAuthenticationProfilesPaginator.ts b/clients/client-connect/src/pagination/ListAuthenticationProfilesPaginator.ts index b8d22c9dfaa94..66a335499e5ef 100644 --- a/clients/client-connect/src/pagination/ListAuthenticationProfilesPaginator.ts +++ b/clients/client-connect/src/pagination/ListAuthenticationProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAuthenticationProfilesCommand, diff --git a/clients/client-connect/src/pagination/ListBotsPaginator.ts b/clients/client-connect/src/pagination/ListBotsPaginator.ts index ed8e3efabdc18..8d17a1ed5716c 100644 --- a/clients/client-connect/src/pagination/ListBotsPaginator.ts +++ b/clients/client-connect/src/pagination/ListBotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBotsCommand, ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBotsCommand"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/ListContactEvaluationsPaginator.ts b/clients/client-connect/src/pagination/ListContactEvaluationsPaginator.ts index 48282bac88d15..31fb183d84577 100644 --- a/clients/client-connect/src/pagination/ListContactEvaluationsPaginator.ts +++ b/clients/client-connect/src/pagination/ListContactEvaluationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactEvaluationsCommand, diff --git a/clients/client-connect/src/pagination/ListContactFlowModuleAliasesPaginator.ts b/clients/client-connect/src/pagination/ListContactFlowModuleAliasesPaginator.ts index 02bbce8601f87..54ebf30c7fa7f 100644 --- a/clients/client-connect/src/pagination/ListContactFlowModuleAliasesPaginator.ts +++ b/clients/client-connect/src/pagination/ListContactFlowModuleAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactFlowModuleAliasesCommand, diff --git a/clients/client-connect/src/pagination/ListContactFlowModuleVersionsPaginator.ts b/clients/client-connect/src/pagination/ListContactFlowModuleVersionsPaginator.ts index 7da57b7f5d98e..269f5d9d32e2e 100644 --- a/clients/client-connect/src/pagination/ListContactFlowModuleVersionsPaginator.ts +++ b/clients/client-connect/src/pagination/ListContactFlowModuleVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactFlowModuleVersionsCommand, diff --git a/clients/client-connect/src/pagination/ListContactFlowModulesPaginator.ts b/clients/client-connect/src/pagination/ListContactFlowModulesPaginator.ts index 5b7a4d28d3510..061f4d6e7e119 100644 --- a/clients/client-connect/src/pagination/ListContactFlowModulesPaginator.ts +++ b/clients/client-connect/src/pagination/ListContactFlowModulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactFlowModulesCommand, diff --git a/clients/client-connect/src/pagination/ListContactFlowVersionsPaginator.ts b/clients/client-connect/src/pagination/ListContactFlowVersionsPaginator.ts index d0bcb428bee9a..b8faff0bf2055 100644 --- a/clients/client-connect/src/pagination/ListContactFlowVersionsPaginator.ts +++ b/clients/client-connect/src/pagination/ListContactFlowVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactFlowVersionsCommand, diff --git a/clients/client-connect/src/pagination/ListContactFlowsPaginator.ts b/clients/client-connect/src/pagination/ListContactFlowsPaginator.ts index 1dc786f833c9b..1c4460c5a520d 100644 --- a/clients/client-connect/src/pagination/ListContactFlowsPaginator.ts +++ b/clients/client-connect/src/pagination/ListContactFlowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactFlowsCommand, diff --git a/clients/client-connect/src/pagination/ListContactReferencesPaginator.ts b/clients/client-connect/src/pagination/ListContactReferencesPaginator.ts index 658c78a39f5f3..8a692b8ebe139 100644 --- a/clients/client-connect/src/pagination/ListContactReferencesPaginator.ts +++ b/clients/client-connect/src/pagination/ListContactReferencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactReferencesCommand, diff --git a/clients/client-connect/src/pagination/ListDataTableAttributesPaginator.ts b/clients/client-connect/src/pagination/ListDataTableAttributesPaginator.ts index 6ce68b17dc6ea..bcd1b608ff343 100644 --- a/clients/client-connect/src/pagination/ListDataTableAttributesPaginator.ts +++ b/clients/client-connect/src/pagination/ListDataTableAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataTableAttributesCommand, diff --git a/clients/client-connect/src/pagination/ListDataTablePrimaryValuesPaginator.ts b/clients/client-connect/src/pagination/ListDataTablePrimaryValuesPaginator.ts index 81772065895bb..24223ca932cae 100644 --- a/clients/client-connect/src/pagination/ListDataTablePrimaryValuesPaginator.ts +++ b/clients/client-connect/src/pagination/ListDataTablePrimaryValuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataTablePrimaryValuesCommand, diff --git a/clients/client-connect/src/pagination/ListDataTableValuesPaginator.ts b/clients/client-connect/src/pagination/ListDataTableValuesPaginator.ts index 30744eeea554f..41339e237c224 100644 --- a/clients/client-connect/src/pagination/ListDataTableValuesPaginator.ts +++ b/clients/client-connect/src/pagination/ListDataTableValuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataTableValuesCommand, diff --git a/clients/client-connect/src/pagination/ListDataTablesPaginator.ts b/clients/client-connect/src/pagination/ListDataTablesPaginator.ts index 59cce0206858b..accaa16455ac5 100644 --- a/clients/client-connect/src/pagination/ListDataTablesPaginator.ts +++ b/clients/client-connect/src/pagination/ListDataTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataTablesCommand, diff --git a/clients/client-connect/src/pagination/ListDefaultVocabulariesPaginator.ts b/clients/client-connect/src/pagination/ListDefaultVocabulariesPaginator.ts index 059b8ea2202e1..98c25fbef334f 100644 --- a/clients/client-connect/src/pagination/ListDefaultVocabulariesPaginator.ts +++ b/clients/client-connect/src/pagination/ListDefaultVocabulariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDefaultVocabulariesCommand, diff --git a/clients/client-connect/src/pagination/ListEvaluationFormVersionsPaginator.ts b/clients/client-connect/src/pagination/ListEvaluationFormVersionsPaginator.ts index 09b3b371e6484..28daf7fe94463 100644 --- a/clients/client-connect/src/pagination/ListEvaluationFormVersionsPaginator.ts +++ b/clients/client-connect/src/pagination/ListEvaluationFormVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEvaluationFormVersionsCommand, diff --git a/clients/client-connect/src/pagination/ListEvaluationFormsPaginator.ts b/clients/client-connect/src/pagination/ListEvaluationFormsPaginator.ts index 01be5231e01ef..ee1f97bed5ff1 100644 --- a/clients/client-connect/src/pagination/ListEvaluationFormsPaginator.ts +++ b/clients/client-connect/src/pagination/ListEvaluationFormsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEvaluationFormsCommand, diff --git a/clients/client-connect/src/pagination/ListFlowAssociationsPaginator.ts b/clients/client-connect/src/pagination/ListFlowAssociationsPaginator.ts index 76a7144c8d4fe..2d1185dcd22ed 100644 --- a/clients/client-connect/src/pagination/ListFlowAssociationsPaginator.ts +++ b/clients/client-connect/src/pagination/ListFlowAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFlowAssociationsCommand, diff --git a/clients/client-connect/src/pagination/ListHoursOfOperationOverridesPaginator.ts b/clients/client-connect/src/pagination/ListHoursOfOperationOverridesPaginator.ts index 2649403bddeb7..30b527f9d2884 100644 --- a/clients/client-connect/src/pagination/ListHoursOfOperationOverridesPaginator.ts +++ b/clients/client-connect/src/pagination/ListHoursOfOperationOverridesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHoursOfOperationOverridesCommand, diff --git a/clients/client-connect/src/pagination/ListHoursOfOperationsPaginator.ts b/clients/client-connect/src/pagination/ListHoursOfOperationsPaginator.ts index b600e1551f36b..02e75f831bcc3 100644 --- a/clients/client-connect/src/pagination/ListHoursOfOperationsPaginator.ts +++ b/clients/client-connect/src/pagination/ListHoursOfOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHoursOfOperationsCommand, diff --git a/clients/client-connect/src/pagination/ListInstanceAttributesPaginator.ts b/clients/client-connect/src/pagination/ListInstanceAttributesPaginator.ts index b601f22e4c75b..b3ca63600204c 100644 --- a/clients/client-connect/src/pagination/ListInstanceAttributesPaginator.ts +++ b/clients/client-connect/src/pagination/ListInstanceAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstanceAttributesCommand, diff --git a/clients/client-connect/src/pagination/ListInstanceStorageConfigsPaginator.ts b/clients/client-connect/src/pagination/ListInstanceStorageConfigsPaginator.ts index 7243ceb5be685..20a9ebf381d4a 100644 --- a/clients/client-connect/src/pagination/ListInstanceStorageConfigsPaginator.ts +++ b/clients/client-connect/src/pagination/ListInstanceStorageConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstanceStorageConfigsCommand, diff --git a/clients/client-connect/src/pagination/ListInstancesPaginator.ts b/clients/client-connect/src/pagination/ListInstancesPaginator.ts index 7f4f9d232f3f3..0493c6e5fc9c7 100644 --- a/clients/client-connect/src/pagination/ListInstancesPaginator.ts +++ b/clients/client-connect/src/pagination/ListInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstancesCommand, diff --git a/clients/client-connect/src/pagination/ListIntegrationAssociationsPaginator.ts b/clients/client-connect/src/pagination/ListIntegrationAssociationsPaginator.ts index b18703cc8bfe4..75a0e5e667b80 100644 --- a/clients/client-connect/src/pagination/ListIntegrationAssociationsPaginator.ts +++ b/clients/client-connect/src/pagination/ListIntegrationAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIntegrationAssociationsCommand, diff --git a/clients/client-connect/src/pagination/ListLambdaFunctionsPaginator.ts b/clients/client-connect/src/pagination/ListLambdaFunctionsPaginator.ts index dc6a288bb2ad6..a9542d94c605e 100644 --- a/clients/client-connect/src/pagination/ListLambdaFunctionsPaginator.ts +++ b/clients/client-connect/src/pagination/ListLambdaFunctionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLambdaFunctionsCommand, diff --git a/clients/client-connect/src/pagination/ListLexBotsPaginator.ts b/clients/client-connect/src/pagination/ListLexBotsPaginator.ts index c5715d9bec346..102b7117024cf 100644 --- a/clients/client-connect/src/pagination/ListLexBotsPaginator.ts +++ b/clients/client-connect/src/pagination/ListLexBotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLexBotsCommand, ListLexBotsCommandInput, ListLexBotsCommandOutput } from "../commands/ListLexBotsCommand"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/ListPhoneNumbersPaginator.ts b/clients/client-connect/src/pagination/ListPhoneNumbersPaginator.ts index 01514242d137a..8b5b11d25824e 100644 --- a/clients/client-connect/src/pagination/ListPhoneNumbersPaginator.ts +++ b/clients/client-connect/src/pagination/ListPhoneNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPhoneNumbersCommand, diff --git a/clients/client-connect/src/pagination/ListPhoneNumbersV2Paginator.ts b/clients/client-connect/src/pagination/ListPhoneNumbersV2Paginator.ts index ffbdb1b27ada9..329638f6dc78e 100644 --- a/clients/client-connect/src/pagination/ListPhoneNumbersV2Paginator.ts +++ b/clients/client-connect/src/pagination/ListPhoneNumbersV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPhoneNumbersV2Command, diff --git a/clients/client-connect/src/pagination/ListPredefinedAttributesPaginator.ts b/clients/client-connect/src/pagination/ListPredefinedAttributesPaginator.ts index acbb8c2f5e7c7..00b317ae6fc78 100644 --- a/clients/client-connect/src/pagination/ListPredefinedAttributesPaginator.ts +++ b/clients/client-connect/src/pagination/ListPredefinedAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPredefinedAttributesCommand, diff --git a/clients/client-connect/src/pagination/ListPromptsPaginator.ts b/clients/client-connect/src/pagination/ListPromptsPaginator.ts index 4d984a9651936..6a9acba74629d 100644 --- a/clients/client-connect/src/pagination/ListPromptsPaginator.ts +++ b/clients/client-connect/src/pagination/ListPromptsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPromptsCommand, ListPromptsCommandInput, ListPromptsCommandOutput } from "../commands/ListPromptsCommand"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/ListQueueQuickConnectsPaginator.ts b/clients/client-connect/src/pagination/ListQueueQuickConnectsPaginator.ts index 59b1ae5700371..d50a4f36d94fe 100644 --- a/clients/client-connect/src/pagination/ListQueueQuickConnectsPaginator.ts +++ b/clients/client-connect/src/pagination/ListQueueQuickConnectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueueQuickConnectsCommand, diff --git a/clients/client-connect/src/pagination/ListQueuesPaginator.ts b/clients/client-connect/src/pagination/ListQueuesPaginator.ts index dc79ad9bc2394..4f99c3cdadd25 100644 --- a/clients/client-connect/src/pagination/ListQueuesPaginator.ts +++ b/clients/client-connect/src/pagination/ListQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueuesCommand, ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/ListQuickConnectsPaginator.ts b/clients/client-connect/src/pagination/ListQuickConnectsPaginator.ts index 5d7102d7b670c..17e9d23e15184 100644 --- a/clients/client-connect/src/pagination/ListQuickConnectsPaginator.ts +++ b/clients/client-connect/src/pagination/ListQuickConnectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQuickConnectsCommand, diff --git a/clients/client-connect/src/pagination/ListRealtimeContactAnalysisSegmentsV2Paginator.ts b/clients/client-connect/src/pagination/ListRealtimeContactAnalysisSegmentsV2Paginator.ts index 7c8897bfac473..6ecdd8b0c1d8b 100644 --- a/clients/client-connect/src/pagination/ListRealtimeContactAnalysisSegmentsV2Paginator.ts +++ b/clients/client-connect/src/pagination/ListRealtimeContactAnalysisSegmentsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRealtimeContactAnalysisSegmentsV2Command, diff --git a/clients/client-connect/src/pagination/ListRoutingProfileManualAssignmentQueuesPaginator.ts b/clients/client-connect/src/pagination/ListRoutingProfileManualAssignmentQueuesPaginator.ts index 790f0845f5155..6b304884cdb71 100644 --- a/clients/client-connect/src/pagination/ListRoutingProfileManualAssignmentQueuesPaginator.ts +++ b/clients/client-connect/src/pagination/ListRoutingProfileManualAssignmentQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoutingProfileManualAssignmentQueuesCommand, diff --git a/clients/client-connect/src/pagination/ListRoutingProfileQueuesPaginator.ts b/clients/client-connect/src/pagination/ListRoutingProfileQueuesPaginator.ts index e5f39c2412e24..b3460c2817140 100644 --- a/clients/client-connect/src/pagination/ListRoutingProfileQueuesPaginator.ts +++ b/clients/client-connect/src/pagination/ListRoutingProfileQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoutingProfileQueuesCommand, diff --git a/clients/client-connect/src/pagination/ListRoutingProfilesPaginator.ts b/clients/client-connect/src/pagination/ListRoutingProfilesPaginator.ts index 31861caa17a54..cb069d91245b3 100644 --- a/clients/client-connect/src/pagination/ListRoutingProfilesPaginator.ts +++ b/clients/client-connect/src/pagination/ListRoutingProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoutingProfilesCommand, diff --git a/clients/client-connect/src/pagination/ListRulesPaginator.ts b/clients/client-connect/src/pagination/ListRulesPaginator.ts index aa7955d973bab..2cb495d6e3888 100644 --- a/clients/client-connect/src/pagination/ListRulesPaginator.ts +++ b/clients/client-connect/src/pagination/ListRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRulesCommand, ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/ListSecurityKeysPaginator.ts b/clients/client-connect/src/pagination/ListSecurityKeysPaginator.ts index d4e5c7f463ee7..344cbdcc51d54 100644 --- a/clients/client-connect/src/pagination/ListSecurityKeysPaginator.ts +++ b/clients/client-connect/src/pagination/ListSecurityKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityKeysCommand, diff --git a/clients/client-connect/src/pagination/ListSecurityProfileApplicationsPaginator.ts b/clients/client-connect/src/pagination/ListSecurityProfileApplicationsPaginator.ts index 52716191a78db..fab7dc09b9410 100644 --- a/clients/client-connect/src/pagination/ListSecurityProfileApplicationsPaginator.ts +++ b/clients/client-connect/src/pagination/ListSecurityProfileApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityProfileApplicationsCommand, diff --git a/clients/client-connect/src/pagination/ListSecurityProfilePermissionsPaginator.ts b/clients/client-connect/src/pagination/ListSecurityProfilePermissionsPaginator.ts index 2986c606f93b5..dedd72e10cb9c 100644 --- a/clients/client-connect/src/pagination/ListSecurityProfilePermissionsPaginator.ts +++ b/clients/client-connect/src/pagination/ListSecurityProfilePermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityProfilePermissionsCommand, diff --git a/clients/client-connect/src/pagination/ListSecurityProfilesPaginator.ts b/clients/client-connect/src/pagination/ListSecurityProfilesPaginator.ts index 46931f020f4be..fdb1a59d608ee 100644 --- a/clients/client-connect/src/pagination/ListSecurityProfilesPaginator.ts +++ b/clients/client-connect/src/pagination/ListSecurityProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityProfilesCommand, diff --git a/clients/client-connect/src/pagination/ListTaskTemplatesPaginator.ts b/clients/client-connect/src/pagination/ListTaskTemplatesPaginator.ts index d2e1a53f3cb0f..828f19600badd 100644 --- a/clients/client-connect/src/pagination/ListTaskTemplatesPaginator.ts +++ b/clients/client-connect/src/pagination/ListTaskTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTaskTemplatesCommand, diff --git a/clients/client-connect/src/pagination/ListTrafficDistributionGroupUsersPaginator.ts b/clients/client-connect/src/pagination/ListTrafficDistributionGroupUsersPaginator.ts index 6026bec8a8e31..0680172fec46d 100644 --- a/clients/client-connect/src/pagination/ListTrafficDistributionGroupUsersPaginator.ts +++ b/clients/client-connect/src/pagination/ListTrafficDistributionGroupUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrafficDistributionGroupUsersCommand, diff --git a/clients/client-connect/src/pagination/ListTrafficDistributionGroupsPaginator.ts b/clients/client-connect/src/pagination/ListTrafficDistributionGroupsPaginator.ts index 4f47486acb494..c9db07d630415 100644 --- a/clients/client-connect/src/pagination/ListTrafficDistributionGroupsPaginator.ts +++ b/clients/client-connect/src/pagination/ListTrafficDistributionGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrafficDistributionGroupsCommand, diff --git a/clients/client-connect/src/pagination/ListUseCasesPaginator.ts b/clients/client-connect/src/pagination/ListUseCasesPaginator.ts index 8b1bb43031451..4281a3521477d 100644 --- a/clients/client-connect/src/pagination/ListUseCasesPaginator.ts +++ b/clients/client-connect/src/pagination/ListUseCasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUseCasesCommand, diff --git a/clients/client-connect/src/pagination/ListUserHierarchyGroupsPaginator.ts b/clients/client-connect/src/pagination/ListUserHierarchyGroupsPaginator.ts index 139df139fd92e..fbb545dd764aa 100644 --- a/clients/client-connect/src/pagination/ListUserHierarchyGroupsPaginator.ts +++ b/clients/client-connect/src/pagination/ListUserHierarchyGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUserHierarchyGroupsCommand, diff --git a/clients/client-connect/src/pagination/ListUserProficienciesPaginator.ts b/clients/client-connect/src/pagination/ListUserProficienciesPaginator.ts index 93725c0b72f01..bba7088d39aa4 100644 --- a/clients/client-connect/src/pagination/ListUserProficienciesPaginator.ts +++ b/clients/client-connect/src/pagination/ListUserProficienciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUserProficienciesCommand, diff --git a/clients/client-connect/src/pagination/ListUsersPaginator.ts b/clients/client-connect/src/pagination/ListUsersPaginator.ts index 8c533265e7431..ff399e0fd2a31 100644 --- a/clients/client-connect/src/pagination/ListUsersPaginator.ts +++ b/clients/client-connect/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/ListViewVersionsPaginator.ts b/clients/client-connect/src/pagination/ListViewVersionsPaginator.ts index c04a7306665b5..c34cb8f4bf665 100644 --- a/clients/client-connect/src/pagination/ListViewVersionsPaginator.ts +++ b/clients/client-connect/src/pagination/ListViewVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListViewVersionsCommand, diff --git a/clients/client-connect/src/pagination/ListViewsPaginator.ts b/clients/client-connect/src/pagination/ListViewsPaginator.ts index 4b97a6940f6fc..c2f58bc74c5b6 100644 --- a/clients/client-connect/src/pagination/ListViewsPaginator.ts +++ b/clients/client-connect/src/pagination/ListViewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListViewsCommand, ListViewsCommandInput, ListViewsCommandOutput } from "../commands/ListViewsCommand"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/ListWorkspacePagesPaginator.ts b/clients/client-connect/src/pagination/ListWorkspacePagesPaginator.ts index 3fcb0d047a6af..312a49e5a4929 100644 --- a/clients/client-connect/src/pagination/ListWorkspacePagesPaginator.ts +++ b/clients/client-connect/src/pagination/ListWorkspacePagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkspacePagesCommand, diff --git a/clients/client-connect/src/pagination/ListWorkspacesPaginator.ts b/clients/client-connect/src/pagination/ListWorkspacesPaginator.ts index 5242e47ec4a74..0c5196e0ed71a 100644 --- a/clients/client-connect/src/pagination/ListWorkspacesPaginator.ts +++ b/clients/client-connect/src/pagination/ListWorkspacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkspacesCommand, diff --git a/clients/client-connect/src/pagination/SearchAgentStatusesPaginator.ts b/clients/client-connect/src/pagination/SearchAgentStatusesPaginator.ts index cc2f218a6ffb3..ad0c36baf5fba 100644 --- a/clients/client-connect/src/pagination/SearchAgentStatusesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchAgentStatusesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchAgentStatusesCommand, diff --git a/clients/client-connect/src/pagination/SearchAvailablePhoneNumbersPaginator.ts b/clients/client-connect/src/pagination/SearchAvailablePhoneNumbersPaginator.ts index 600e1e66ce9b1..049ee288cbd11 100644 --- a/clients/client-connect/src/pagination/SearchAvailablePhoneNumbersPaginator.ts +++ b/clients/client-connect/src/pagination/SearchAvailablePhoneNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchAvailablePhoneNumbersCommand, diff --git a/clients/client-connect/src/pagination/SearchContactFlowModulesPaginator.ts b/clients/client-connect/src/pagination/SearchContactFlowModulesPaginator.ts index 4ce47180e88a2..290d834d4b578 100644 --- a/clients/client-connect/src/pagination/SearchContactFlowModulesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchContactFlowModulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchContactFlowModulesCommand, diff --git a/clients/client-connect/src/pagination/SearchContactFlowsPaginator.ts b/clients/client-connect/src/pagination/SearchContactFlowsPaginator.ts index ffaa1f7ef6427..cff33b9a1b40f 100644 --- a/clients/client-connect/src/pagination/SearchContactFlowsPaginator.ts +++ b/clients/client-connect/src/pagination/SearchContactFlowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchContactFlowsCommand, diff --git a/clients/client-connect/src/pagination/SearchContactsPaginator.ts b/clients/client-connect/src/pagination/SearchContactsPaginator.ts index 6bf04017948c6..7e0d0397fd039 100644 --- a/clients/client-connect/src/pagination/SearchContactsPaginator.ts +++ b/clients/client-connect/src/pagination/SearchContactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchContactsCommand, diff --git a/clients/client-connect/src/pagination/SearchDataTablesPaginator.ts b/clients/client-connect/src/pagination/SearchDataTablesPaginator.ts index ff51a207277d8..817cd3fc7a722 100644 --- a/clients/client-connect/src/pagination/SearchDataTablesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchDataTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchDataTablesCommand, diff --git a/clients/client-connect/src/pagination/SearchHoursOfOperationOverridesPaginator.ts b/clients/client-connect/src/pagination/SearchHoursOfOperationOverridesPaginator.ts index 7c3fba8f5975a..aeabbfee39e1e 100644 --- a/clients/client-connect/src/pagination/SearchHoursOfOperationOverridesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchHoursOfOperationOverridesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchHoursOfOperationOverridesCommand, diff --git a/clients/client-connect/src/pagination/SearchHoursOfOperationsPaginator.ts b/clients/client-connect/src/pagination/SearchHoursOfOperationsPaginator.ts index 38b07466b752f..9d51b5cc4e3bf 100644 --- a/clients/client-connect/src/pagination/SearchHoursOfOperationsPaginator.ts +++ b/clients/client-connect/src/pagination/SearchHoursOfOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchHoursOfOperationsCommand, diff --git a/clients/client-connect/src/pagination/SearchPredefinedAttributesPaginator.ts b/clients/client-connect/src/pagination/SearchPredefinedAttributesPaginator.ts index bf8f0266ef23d..15e64e182ead1 100644 --- a/clients/client-connect/src/pagination/SearchPredefinedAttributesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchPredefinedAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchPredefinedAttributesCommand, diff --git a/clients/client-connect/src/pagination/SearchPromptsPaginator.ts b/clients/client-connect/src/pagination/SearchPromptsPaginator.ts index 8d00f1c79e003..fd1e5d62a1faf 100644 --- a/clients/client-connect/src/pagination/SearchPromptsPaginator.ts +++ b/clients/client-connect/src/pagination/SearchPromptsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchPromptsCommand, diff --git a/clients/client-connect/src/pagination/SearchQueuesPaginator.ts b/clients/client-connect/src/pagination/SearchQueuesPaginator.ts index 804499929c3a5..524ef3fd57610 100644 --- a/clients/client-connect/src/pagination/SearchQueuesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchQueuesCommand, diff --git a/clients/client-connect/src/pagination/SearchQuickConnectsPaginator.ts b/clients/client-connect/src/pagination/SearchQuickConnectsPaginator.ts index 12611bf21358d..74d193bea0965 100644 --- a/clients/client-connect/src/pagination/SearchQuickConnectsPaginator.ts +++ b/clients/client-connect/src/pagination/SearchQuickConnectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchQuickConnectsCommand, diff --git a/clients/client-connect/src/pagination/SearchResourceTagsPaginator.ts b/clients/client-connect/src/pagination/SearchResourceTagsPaginator.ts index 3671a0cd39871..c48b3d223134c 100644 --- a/clients/client-connect/src/pagination/SearchResourceTagsPaginator.ts +++ b/clients/client-connect/src/pagination/SearchResourceTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchResourceTagsCommand, diff --git a/clients/client-connect/src/pagination/SearchRoutingProfilesPaginator.ts b/clients/client-connect/src/pagination/SearchRoutingProfilesPaginator.ts index a115d39c10e0f..60f6f7af07bf2 100644 --- a/clients/client-connect/src/pagination/SearchRoutingProfilesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchRoutingProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchRoutingProfilesCommand, diff --git a/clients/client-connect/src/pagination/SearchSecurityProfilesPaginator.ts b/clients/client-connect/src/pagination/SearchSecurityProfilesPaginator.ts index 6a28440aa2d3b..4ee4b888c88f9 100644 --- a/clients/client-connect/src/pagination/SearchSecurityProfilesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchSecurityProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchSecurityProfilesCommand, diff --git a/clients/client-connect/src/pagination/SearchUserHierarchyGroupsPaginator.ts b/clients/client-connect/src/pagination/SearchUserHierarchyGroupsPaginator.ts index 0b852d22acad4..aae4b630c6f1f 100644 --- a/clients/client-connect/src/pagination/SearchUserHierarchyGroupsPaginator.ts +++ b/clients/client-connect/src/pagination/SearchUserHierarchyGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchUserHierarchyGroupsCommand, diff --git a/clients/client-connect/src/pagination/SearchUsersPaginator.ts b/clients/client-connect/src/pagination/SearchUsersPaginator.ts index cec81d8df4a4b..73cb8e322c692 100644 --- a/clients/client-connect/src/pagination/SearchUsersPaginator.ts +++ b/clients/client-connect/src/pagination/SearchUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchUsersCommand, SearchUsersCommandInput, SearchUsersCommandOutput } from "../commands/SearchUsersCommand"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/SearchViewsPaginator.ts b/clients/client-connect/src/pagination/SearchViewsPaginator.ts index b9c85432e6834..e8cda04dbfb63 100644 --- a/clients/client-connect/src/pagination/SearchViewsPaginator.ts +++ b/clients/client-connect/src/pagination/SearchViewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchViewsCommand, SearchViewsCommandInput, SearchViewsCommandOutput } from "../commands/SearchViewsCommand"; import { ConnectClient } from "../ConnectClient"; diff --git a/clients/client-connect/src/pagination/SearchVocabulariesPaginator.ts b/clients/client-connect/src/pagination/SearchVocabulariesPaginator.ts index c9022792a301c..a9fd250b990dc 100644 --- a/clients/client-connect/src/pagination/SearchVocabulariesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchVocabulariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchVocabulariesCommand, diff --git a/clients/client-connect/src/pagination/SearchWorkspaceAssociationsPaginator.ts b/clients/client-connect/src/pagination/SearchWorkspaceAssociationsPaginator.ts index 8e29af594587e..011f1d2845e9f 100644 --- a/clients/client-connect/src/pagination/SearchWorkspaceAssociationsPaginator.ts +++ b/clients/client-connect/src/pagination/SearchWorkspaceAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchWorkspaceAssociationsCommand, diff --git a/clients/client-connect/src/pagination/SearchWorkspacesPaginator.ts b/clients/client-connect/src/pagination/SearchWorkspacesPaginator.ts index 1a290cbe0968a..2f34adddf3b23 100644 --- a/clients/client-connect/src/pagination/SearchWorkspacesPaginator.ts +++ b/clients/client-connect/src/pagination/SearchWorkspacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchWorkspacesCommand, diff --git a/clients/client-connect/src/runtimeConfig.browser.ts b/clients/client-connect/src/runtimeConfig.browser.ts index 5a53848d072f4..a13901b32870c 100644 --- a/clients/client-connect/src/runtimeConfig.browser.ts +++ b/clients/client-connect/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectClientConfig } from "./ConnectClient"; + +import type { ConnectClientConfig } from "./ConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-connect/src/runtimeConfig.native.ts b/clients/client-connect/src/runtimeConfig.native.ts index 57d04bf075240..049e3ed41a58a 100644 --- a/clients/client-connect/src/runtimeConfig.native.ts +++ b/clients/client-connect/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ConnectClientConfig } from "./ConnectClient"; +import type { ConnectClientConfig } from "./ConnectClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-connect/src/runtimeConfig.shared.ts b/clients/client-connect/src/runtimeConfig.shared.ts index 2b3d84eef5f6f..d38e4ecc2b875 100644 --- a/clients/client-connect/src/runtimeConfig.shared.ts +++ b/clients/client-connect/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultConnectHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ConnectClientConfig } from "./ConnectClient"; +import type { ConnectClientConfig } from "./ConnectClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-connect/src/runtimeConfig.ts b/clients/client-connect/src/runtimeConfig.ts index 2411f70915275..db0dc70a85b16 100644 --- a/clients/client-connect/src/runtimeConfig.ts +++ b/clients/client-connect/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectClientConfig } from "./ConnectClient"; + +import type { ConnectClientConfig } from "./ConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-connect/src/runtimeExtensions.ts b/clients/client-connect/src/runtimeExtensions.ts index 955213a6c35f0..2d76fdf44dc4d 100644 --- a/clients/client-connect/src/runtimeExtensions.ts +++ b/clients/client-connect/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ConnectExtensionConfiguration } from "./extensionConfiguration"; +import type { ConnectExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-connect/src/schemas/schemas_0.ts b/clients/client-connect/src/schemas/schemas_0.ts index cf8fe883ca715..b7f6f914aaafa 100644 --- a/clients/client-connect/src/schemas/schemas_0.ts +++ b/clients/client-connect/src/schemas/schemas_0.ts @@ -2582,7 +2582,7 @@ const n0 = "com.amazonaws.connect"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-connectcampaigns/package.json b/clients/client-connectcampaigns/package.json index 81aaddcb04cbe..f7b55ec6001d0 100644 --- a/clients/client-connectcampaigns/package.json +++ b/clients/client-connectcampaigns/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-connectcampaigns/src/ConnectCampaigns.ts b/clients/client-connectcampaigns/src/ConnectCampaigns.ts index a34714be39dbc..dfe8c95af4f90 100644 --- a/clients/client-connectcampaigns/src/ConnectCampaigns.ts +++ b/clients/client-connectcampaigns/src/ConnectCampaigns.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateCampaignCommand, @@ -108,7 +108,7 @@ import { UpdateCampaignOutboundCallConfigCommandInput, UpdateCampaignOutboundCallConfigCommandOutput, } from "./commands/UpdateCampaignOutboundCallConfigCommand"; -import { ConnectCampaignsClient, ConnectCampaignsClientConfig } from "./ConnectCampaignsClient"; +import { ConnectCampaignsClient } from "./ConnectCampaignsClient"; const commands = { CreateCampaignCommand, diff --git a/clients/client-connectcampaigns/src/ConnectCampaignsClient.ts b/clients/client-connectcampaigns/src/ConnectCampaignsClient.ts index bd2ac06c4681e..8ee6f59d1bd2f 100644 --- a/clients/client-connectcampaigns/src/ConnectCampaignsClient.ts +++ b/clients/client-connectcampaigns/src/ConnectCampaignsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultConnectCampaignsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateCampaignCommandInput, CreateCampaignCommandOutput } from "./commands/CreateCampaignCommand"; @@ -116,7 +125,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-connectcampaigns/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-connectcampaigns/src/auth/httpAuthExtensionConfiguration.ts index 8ade320d98539..19faaf1b03c03 100644 --- a/clients/client-connectcampaigns/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-connectcampaigns/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ConnectCampaignsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ConnectCampaignsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-connectcampaigns/src/auth/httpAuthSchemeProvider.ts b/clients/client-connectcampaigns/src/auth/httpAuthSchemeProvider.ts index 6d29227fdd924..90c7cf3808064 100644 --- a/clients/client-connectcampaigns/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-connectcampaigns/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ConnectCampaignsClientConfig, ConnectCampaignsClientResolvedConfig } from "../ConnectCampaignsClient"; +import { type ConnectCampaignsClientResolvedConfig, ConnectCampaignsClientConfig } from "../ConnectCampaignsClient"; /** * @internal diff --git a/clients/client-connectcampaigns/src/commands/CreateCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/CreateCampaignCommand.ts index 951a74fbff184..a304c1377e3e0 100644 --- a/clients/client-connectcampaigns/src/commands/CreateCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/CreateCampaignCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; +import type { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; import { CreateCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/DeleteCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/DeleteCampaignCommand.ts index 90c06c4922633..2e042ea9f0308 100644 --- a/clients/client-connectcampaigns/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/DeleteCampaignCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCampaignRequest } from "../models/models_0"; +import type { DeleteCampaignRequest } from "../models/models_0"; import { DeleteCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/DeleteConnectInstanceConfigCommand.ts b/clients/client-connectcampaigns/src/commands/DeleteConnectInstanceConfigCommand.ts index 1baab811d0ed8..14e4d1d71fd77 100644 --- a/clients/client-connectcampaigns/src/commands/DeleteConnectInstanceConfigCommand.ts +++ b/clients/client-connectcampaigns/src/commands/DeleteConnectInstanceConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectInstanceConfigRequest } from "../models/models_0"; +import type { DeleteConnectInstanceConfigRequest } from "../models/models_0"; import { DeleteConnectInstanceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/DeleteInstanceOnboardingJobCommand.ts b/clients/client-connectcampaigns/src/commands/DeleteInstanceOnboardingJobCommand.ts index f541aca10082c..e0318198cbb99 100644 --- a/clients/client-connectcampaigns/src/commands/DeleteInstanceOnboardingJobCommand.ts +++ b/clients/client-connectcampaigns/src/commands/DeleteInstanceOnboardingJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInstanceOnboardingJobRequest } from "../models/models_0"; +import type { DeleteInstanceOnboardingJobRequest } from "../models/models_0"; import { DeleteInstanceOnboardingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/DescribeCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/DescribeCampaignCommand.ts index 9bf0c7e308c37..9c5ac99998f3e 100644 --- a/clients/client-connectcampaigns/src/commands/DescribeCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/DescribeCampaignCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCampaignRequest, DescribeCampaignResponse } from "../models/models_0"; +import type { DescribeCampaignRequest, DescribeCampaignResponse } from "../models/models_0"; import { DescribeCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/GetCampaignStateBatchCommand.ts b/clients/client-connectcampaigns/src/commands/GetCampaignStateBatchCommand.ts index 40d62f9a8e6c9..33b7510ccd36a 100644 --- a/clients/client-connectcampaigns/src/commands/GetCampaignStateBatchCommand.ts +++ b/clients/client-connectcampaigns/src/commands/GetCampaignStateBatchCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignStateBatchRequest, GetCampaignStateBatchResponse } from "../models/models_0"; +import type { GetCampaignStateBatchRequest, GetCampaignStateBatchResponse } from "../models/models_0"; import { GetCampaignStateBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/GetCampaignStateCommand.ts b/clients/client-connectcampaigns/src/commands/GetCampaignStateCommand.ts index 4a3084cfaf826..8f4d7fa3fc486 100644 --- a/clients/client-connectcampaigns/src/commands/GetCampaignStateCommand.ts +++ b/clients/client-connectcampaigns/src/commands/GetCampaignStateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignStateRequest, GetCampaignStateResponse } from "../models/models_0"; +import type { GetCampaignStateRequest, GetCampaignStateResponse } from "../models/models_0"; import { GetCampaignState } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/GetConnectInstanceConfigCommand.ts b/clients/client-connectcampaigns/src/commands/GetConnectInstanceConfigCommand.ts index e4af9ec84e2e1..b4a566bf10da4 100644 --- a/clients/client-connectcampaigns/src/commands/GetConnectInstanceConfigCommand.ts +++ b/clients/client-connectcampaigns/src/commands/GetConnectInstanceConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectInstanceConfigRequest, GetConnectInstanceConfigResponse } from "../models/models_0"; +import type { GetConnectInstanceConfigRequest, GetConnectInstanceConfigResponse } from "../models/models_0"; import { GetConnectInstanceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/GetInstanceOnboardingJobStatusCommand.ts b/clients/client-connectcampaigns/src/commands/GetInstanceOnboardingJobStatusCommand.ts index c00029d21275d..3848947b6ca2a 100644 --- a/clients/client-connectcampaigns/src/commands/GetInstanceOnboardingJobStatusCommand.ts +++ b/clients/client-connectcampaigns/src/commands/GetInstanceOnboardingJobStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstanceOnboardingJobStatusRequest, GetInstanceOnboardingJobStatusResponse } from "../models/models_0"; +import type { GetInstanceOnboardingJobStatusRequest, GetInstanceOnboardingJobStatusResponse } from "../models/models_0"; import { GetInstanceOnboardingJobStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/ListCampaignsCommand.ts b/clients/client-connectcampaigns/src/commands/ListCampaignsCommand.ts index 245919c8f4fa8..866ccb069092e 100644 --- a/clients/client-connectcampaigns/src/commands/ListCampaignsCommand.ts +++ b/clients/client-connectcampaigns/src/commands/ListCampaignsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0"; +import type { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0"; import { ListCampaigns } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/ListTagsForResourceCommand.ts b/clients/client-connectcampaigns/src/commands/ListTagsForResourceCommand.ts index 8372035091ede..5fb17a9d62392 100644 --- a/clients/client-connectcampaigns/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-connectcampaigns/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/PauseCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/PauseCampaignCommand.ts index a06b3425b5818..7a084feb50709 100644 --- a/clients/client-connectcampaigns/src/commands/PauseCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/PauseCampaignCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PauseCampaignRequest } from "../models/models_0"; +import type { PauseCampaignRequest } from "../models/models_0"; import { PauseCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/PutDialRequestBatchCommand.ts b/clients/client-connectcampaigns/src/commands/PutDialRequestBatchCommand.ts index cdb506a7ab9ae..edb1cb4887cbd 100644 --- a/clients/client-connectcampaigns/src/commands/PutDialRequestBatchCommand.ts +++ b/clients/client-connectcampaigns/src/commands/PutDialRequestBatchCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDialRequestBatchRequest, PutDialRequestBatchResponse } from "../models/models_0"; +import type { PutDialRequestBatchRequest, PutDialRequestBatchResponse } from "../models/models_0"; import { PutDialRequestBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/ResumeCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/ResumeCampaignCommand.ts index 3c2f81cbce2e5..3c8ed03e8319d 100644 --- a/clients/client-connectcampaigns/src/commands/ResumeCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/ResumeCampaignCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResumeCampaignRequest } from "../models/models_0"; +import type { ResumeCampaignRequest } from "../models/models_0"; import { ResumeCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/StartCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/StartCampaignCommand.ts index 01e6f8ab06255..9550efc047ed4 100644 --- a/clients/client-connectcampaigns/src/commands/StartCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/StartCampaignCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCampaignRequest } from "../models/models_0"; +import type { StartCampaignRequest } from "../models/models_0"; import { StartCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/StartInstanceOnboardingJobCommand.ts b/clients/client-connectcampaigns/src/commands/StartInstanceOnboardingJobCommand.ts index 79c8597417467..40556bf57637b 100644 --- a/clients/client-connectcampaigns/src/commands/StartInstanceOnboardingJobCommand.ts +++ b/clients/client-connectcampaigns/src/commands/StartInstanceOnboardingJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartInstanceOnboardingJobRequest, StartInstanceOnboardingJobResponse } from "../models/models_0"; +import type { StartInstanceOnboardingJobRequest, StartInstanceOnboardingJobResponse } from "../models/models_0"; import { StartInstanceOnboardingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/StopCampaignCommand.ts b/clients/client-connectcampaigns/src/commands/StopCampaignCommand.ts index c2b4fe94a122e..f0ac1bb6216ba 100644 --- a/clients/client-connectcampaigns/src/commands/StopCampaignCommand.ts +++ b/clients/client-connectcampaigns/src/commands/StopCampaignCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopCampaignRequest } from "../models/models_0"; +import type { StopCampaignRequest } from "../models/models_0"; import { StopCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/TagResourceCommand.ts b/clients/client-connectcampaigns/src/commands/TagResourceCommand.ts index e6b7dded3567e..ce28f78b43654 100644 --- a/clients/client-connectcampaigns/src/commands/TagResourceCommand.ts +++ b/clients/client-connectcampaigns/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/UntagResourceCommand.ts b/clients/client-connectcampaigns/src/commands/UntagResourceCommand.ts index 8393b6fe3ae63..3923d854c0bc8 100644 --- a/clients/client-connectcampaigns/src/commands/UntagResourceCommand.ts +++ b/clients/client-connectcampaigns/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/UpdateCampaignDialerConfigCommand.ts b/clients/client-connectcampaigns/src/commands/UpdateCampaignDialerConfigCommand.ts index e2e9fbf66e59a..5d2723f4bf624 100644 --- a/clients/client-connectcampaigns/src/commands/UpdateCampaignDialerConfigCommand.ts +++ b/clients/client-connectcampaigns/src/commands/UpdateCampaignDialerConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignDialerConfigRequest } from "../models/models_0"; +import type { UpdateCampaignDialerConfigRequest } from "../models/models_0"; import { UpdateCampaignDialerConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/UpdateCampaignNameCommand.ts b/clients/client-connectcampaigns/src/commands/UpdateCampaignNameCommand.ts index 74a58a37b7cea..c33ac534cccf4 100644 --- a/clients/client-connectcampaigns/src/commands/UpdateCampaignNameCommand.ts +++ b/clients/client-connectcampaigns/src/commands/UpdateCampaignNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignNameRequest } from "../models/models_0"; +import type { UpdateCampaignNameRequest } from "../models/models_0"; import { UpdateCampaignName } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/commands/UpdateCampaignOutboundCallConfigCommand.ts b/clients/client-connectcampaigns/src/commands/UpdateCampaignOutboundCallConfigCommand.ts index 2554b133c4232..d578bb4f5edb3 100644 --- a/clients/client-connectcampaigns/src/commands/UpdateCampaignOutboundCallConfigCommand.ts +++ b/clients/client-connectcampaigns/src/commands/UpdateCampaignOutboundCallConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCampaignsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCampaignsClient"; +import type { + ConnectCampaignsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ConnectCampaignsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignOutboundCallConfigRequest } from "../models/models_0"; +import type { UpdateCampaignOutboundCallConfigRequest } from "../models/models_0"; import { UpdateCampaignOutboundCallConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaigns/src/endpoint/EndpointParameters.ts b/clients/client-connectcampaigns/src/endpoint/EndpointParameters.ts index 0871537f1660b..4e98028d46b50 100644 --- a/clients/client-connectcampaigns/src/endpoint/EndpointParameters.ts +++ b/clients/client-connectcampaigns/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-connectcampaigns/src/endpoint/endpointResolver.ts b/clients/client-connectcampaigns/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-connectcampaigns/src/endpoint/endpointResolver.ts +++ b/clients/client-connectcampaigns/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-connectcampaigns/src/extensionConfiguration.ts b/clients/client-connectcampaigns/src/extensionConfiguration.ts index 98ad7af612e16..6b5c8487817c4 100644 --- a/clients/client-connectcampaigns/src/extensionConfiguration.ts +++ b/clients/client-connectcampaigns/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-connectcampaigns/src/models/ConnectCampaignsServiceException.ts b/clients/client-connectcampaigns/src/models/ConnectCampaignsServiceException.ts index 37f5b4d09aefa..dd773dcd3418a 100644 --- a/clients/client-connectcampaigns/src/models/ConnectCampaignsServiceException.ts +++ b/clients/client-connectcampaigns/src/models/ConnectCampaignsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-connectcampaigns/src/models/errors.ts b/clients/client-connectcampaigns/src/models/errors.ts index 27cb1cd5cdaad..57d23b1f7495d 100644 --- a/clients/client-connectcampaigns/src/models/errors.ts +++ b/clients/client-connectcampaigns/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConnectCampaignsServiceException as __BaseException } from "./ConnectCampaignsServiceException"; import { CampaignState } from "./enums"; diff --git a/clients/client-connectcampaigns/src/pagination/Interfaces.ts b/clients/client-connectcampaigns/src/pagination/Interfaces.ts index 8229aa8ce8196..9eea689e9ee1d 100644 --- a/clients/client-connectcampaigns/src/pagination/Interfaces.ts +++ b/clients/client-connectcampaigns/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ConnectCampaignsClient } from "../ConnectCampaignsClient"; diff --git a/clients/client-connectcampaigns/src/pagination/ListCampaignsPaginator.ts b/clients/client-connectcampaigns/src/pagination/ListCampaignsPaginator.ts index cf00dbcc3bae7..b6577151c774a 100644 --- a/clients/client-connectcampaigns/src/pagination/ListCampaignsPaginator.ts +++ b/clients/client-connectcampaigns/src/pagination/ListCampaignsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCampaignsCommand, diff --git a/clients/client-connectcampaigns/src/runtimeConfig.browser.ts b/clients/client-connectcampaigns/src/runtimeConfig.browser.ts index a8fe3de626e91..18c10d2153229 100644 --- a/clients/client-connectcampaigns/src/runtimeConfig.browser.ts +++ b/clients/client-connectcampaigns/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient"; + +import type { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-connectcampaigns/src/runtimeConfig.native.ts b/clients/client-connectcampaigns/src/runtimeConfig.native.ts index 45864673b5c20..6fe9ce047d9b5 100644 --- a/clients/client-connectcampaigns/src/runtimeConfig.native.ts +++ b/clients/client-connectcampaigns/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient"; +import type { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-connectcampaigns/src/runtimeConfig.shared.ts b/clients/client-connectcampaigns/src/runtimeConfig.shared.ts index 02b46c749922f..9282b824c00c0 100644 --- a/clients/client-connectcampaigns/src/runtimeConfig.shared.ts +++ b/clients/client-connectcampaigns/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultConnectCampaignsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient"; +import type { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-connectcampaigns/src/runtimeConfig.ts b/clients/client-connectcampaigns/src/runtimeConfig.ts index 799efe4c1f4f6..071fcf6e646ec 100644 --- a/clients/client-connectcampaigns/src/runtimeConfig.ts +++ b/clients/client-connectcampaigns/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient"; + +import type { ConnectCampaignsClientConfig } from "./ConnectCampaignsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-connectcampaigns/src/runtimeExtensions.ts b/clients/client-connectcampaigns/src/runtimeExtensions.ts index fe5556359917b..5048c6cb0eff9 100644 --- a/clients/client-connectcampaigns/src/runtimeExtensions.ts +++ b/clients/client-connectcampaigns/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ConnectCampaignsExtensionConfiguration } from "./extensionConfiguration"; +import type { ConnectCampaignsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-connectcampaigns/src/schemas/schemas_0.ts b/clients/client-connectcampaigns/src/schemas/schemas_0.ts index 2bf9e998ba29b..5a0f637ae5985 100644 --- a/clients/client-connectcampaigns/src/schemas/schemas_0.ts +++ b/clients/client-connectcampaigns/src/schemas/schemas_0.ts @@ -148,7 +148,7 @@ const n0 = "com.amazonaws.connectcampaigns"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-connectcampaignsv2/package.json b/clients/client-connectcampaignsv2/package.json index de03cf51abed7..90461261598cc 100644 --- a/clients/client-connectcampaignsv2/package.json +++ b/clients/client-connectcampaignsv2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-connectcampaignsv2/src/ConnectCampaignsV2.ts b/clients/client-connectcampaignsv2/src/ConnectCampaignsV2.ts index 4e9feba92e121..46867a7400382 100644 --- a/clients/client-connectcampaignsv2/src/ConnectCampaignsV2.ts +++ b/clients/client-connectcampaignsv2/src/ConnectCampaignsV2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateCampaignCommand, @@ -173,7 +173,7 @@ import { UpdateCampaignSourceCommandInput, UpdateCampaignSourceCommandOutput, } from "./commands/UpdateCampaignSourceCommand"; -import { ConnectCampaignsV2Client, ConnectCampaignsV2ClientConfig } from "./ConnectCampaignsV2Client"; +import { ConnectCampaignsV2Client } from "./ConnectCampaignsV2Client"; const commands = { CreateCampaignCommand, diff --git a/clients/client-connectcampaignsv2/src/ConnectCampaignsV2Client.ts b/clients/client-connectcampaignsv2/src/ConnectCampaignsV2Client.ts index a44e398c808c8..70b10476af7cc 100644 --- a/clients/client-connectcampaignsv2/src/ConnectCampaignsV2Client.ts +++ b/clients/client-connectcampaignsv2/src/ConnectCampaignsV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultConnectCampaignsV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateCampaignCommandInput, CreateCampaignCommandOutput } from "./commands/CreateCampaignCommand"; @@ -168,7 +177,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-connectcampaignsv2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-connectcampaignsv2/src/auth/httpAuthExtensionConfiguration.ts index 1013ccc557407..90c90b7b23ce3 100644 --- a/clients/client-connectcampaignsv2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-connectcampaignsv2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ConnectCampaignsV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ConnectCampaignsV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-connectcampaignsv2/src/auth/httpAuthSchemeProvider.ts b/clients/client-connectcampaignsv2/src/auth/httpAuthSchemeProvider.ts index ea62c3a060de8..5c8076c93fd04 100644 --- a/clients/client-connectcampaignsv2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-connectcampaignsv2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ConnectCampaignsV2ClientConfig, ConnectCampaignsV2ClientResolvedConfig } from "../ConnectCampaignsV2Client"; +import { + type ConnectCampaignsV2ClientResolvedConfig, + ConnectCampaignsV2ClientConfig, +} from "../ConnectCampaignsV2Client"; /** * @internal diff --git a/clients/client-connectcampaignsv2/src/commands/CreateCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/CreateCampaignCommand.ts index 61fe24ac38a88..63045fc6dad47 100644 --- a/clients/client-connectcampaignsv2/src/commands/CreateCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/CreateCampaignCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; +import type { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; import { CreateCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignChannelSubtypeConfigCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignChannelSubtypeConfigCommand.ts index c9d7e97833e55..80e6ee2f6374e 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignChannelSubtypeConfigCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignChannelSubtypeConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCampaignChannelSubtypeConfigRequest } from "../models/models_0"; +import type { DeleteCampaignChannelSubtypeConfigRequest } from "../models/models_0"; import { DeleteCampaignChannelSubtypeConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommand.ts index 98dd14e1119a6..4a7ac093198df 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCampaignRequest } from "../models/models_0"; +import type { DeleteCampaignRequest } from "../models/models_0"; import { DeleteCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationLimitsCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationLimitsCommand.ts index 637be310dd1de..c8265bb43c8e6 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationLimitsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationLimitsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCampaignCommunicationLimitsRequest } from "../models/models_0"; +import type { DeleteCampaignCommunicationLimitsRequest } from "../models/models_0"; import { DeleteCampaignCommunicationLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationTimeCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationTimeCommand.ts index 8b9e1ed948ecc..5d935f75853a5 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationTimeCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteCampaignCommunicationTimeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCampaignCommunicationTimeRequest } from "../models/models_0"; +import type { DeleteCampaignCommunicationTimeRequest } from "../models/models_0"; import { DeleteCampaignCommunicationTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceConfigCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceConfigCommand.ts index 9c0e5029f12ef..ef82d456bb624 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceConfigCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectInstanceConfigRequest } from "../models/models_0"; +import type { DeleteConnectInstanceConfigRequest } from "../models/models_0"; import { DeleteConnectInstanceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceIntegrationCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceIntegrationCommand.ts index 2aa1963363a50..eb0ae940c604b 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceIntegrationCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteConnectInstanceIntegrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectInstanceIntegrationRequest } from "../models/models_0"; +import type { DeleteConnectInstanceIntegrationRequest } from "../models/models_0"; import { DeleteConnectInstanceIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/DeleteInstanceOnboardingJobCommand.ts b/clients/client-connectcampaignsv2/src/commands/DeleteInstanceOnboardingJobCommand.ts index 92846cf8f5d19..ae9c763d9e8da 100644 --- a/clients/client-connectcampaignsv2/src/commands/DeleteInstanceOnboardingJobCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DeleteInstanceOnboardingJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInstanceOnboardingJobRequest } from "../models/models_0"; +import type { DeleteInstanceOnboardingJobRequest } from "../models/models_0"; import { DeleteInstanceOnboardingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/DescribeCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/DescribeCampaignCommand.ts index e81b9c2922ed3..0a2c1bcc97731 100644 --- a/clients/client-connectcampaignsv2/src/commands/DescribeCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/DescribeCampaignCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCampaignRequest, DescribeCampaignResponse } from "../models/models_0"; +import type { DescribeCampaignRequest, DescribeCampaignResponse } from "../models/models_0"; import { DescribeCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/GetCampaignStateBatchCommand.ts b/clients/client-connectcampaignsv2/src/commands/GetCampaignStateBatchCommand.ts index 6afc741695e61..ea73e003b8359 100644 --- a/clients/client-connectcampaignsv2/src/commands/GetCampaignStateBatchCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/GetCampaignStateBatchCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignStateBatchRequest, GetCampaignStateBatchResponse } from "../models/models_0"; +import type { GetCampaignStateBatchRequest, GetCampaignStateBatchResponse } from "../models/models_0"; import { GetCampaignStateBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/GetCampaignStateCommand.ts b/clients/client-connectcampaignsv2/src/commands/GetCampaignStateCommand.ts index 10c154c27f42d..6e6392e61077c 100644 --- a/clients/client-connectcampaignsv2/src/commands/GetCampaignStateCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/GetCampaignStateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignStateRequest, GetCampaignStateResponse } from "../models/models_0"; +import type { GetCampaignStateRequest, GetCampaignStateResponse } from "../models/models_0"; import { GetCampaignState } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/GetConnectInstanceConfigCommand.ts b/clients/client-connectcampaignsv2/src/commands/GetConnectInstanceConfigCommand.ts index 35ad517cb6d78..96f505d50262b 100644 --- a/clients/client-connectcampaignsv2/src/commands/GetConnectInstanceConfigCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/GetConnectInstanceConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectInstanceConfigRequest, GetConnectInstanceConfigResponse } from "../models/models_0"; +import type { GetConnectInstanceConfigRequest, GetConnectInstanceConfigResponse } from "../models/models_0"; import { GetConnectInstanceConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/GetInstanceCommunicationLimitsCommand.ts b/clients/client-connectcampaignsv2/src/commands/GetInstanceCommunicationLimitsCommand.ts index 113d3fda04767..6a51d05672d8e 100644 --- a/clients/client-connectcampaignsv2/src/commands/GetInstanceCommunicationLimitsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/GetInstanceCommunicationLimitsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstanceCommunicationLimitsRequest, GetInstanceCommunicationLimitsResponse } from "../models/models_0"; +import type { GetInstanceCommunicationLimitsRequest, GetInstanceCommunicationLimitsResponse } from "../models/models_0"; import { GetInstanceCommunicationLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/GetInstanceOnboardingJobStatusCommand.ts b/clients/client-connectcampaignsv2/src/commands/GetInstanceOnboardingJobStatusCommand.ts index 7adaae9e7ea7e..1785dcedab751 100644 --- a/clients/client-connectcampaignsv2/src/commands/GetInstanceOnboardingJobStatusCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/GetInstanceOnboardingJobStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstanceOnboardingJobStatusRequest, GetInstanceOnboardingJobStatusResponse } from "../models/models_0"; +import type { GetInstanceOnboardingJobStatusRequest, GetInstanceOnboardingJobStatusResponse } from "../models/models_0"; import { GetInstanceOnboardingJobStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/ListCampaignsCommand.ts b/clients/client-connectcampaignsv2/src/commands/ListCampaignsCommand.ts index 8f9e558a19250..b6aa4a36a45d4 100644 --- a/clients/client-connectcampaignsv2/src/commands/ListCampaignsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/ListCampaignsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0"; +import type { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0"; import { ListCampaigns } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/ListConnectInstanceIntegrationsCommand.ts b/clients/client-connectcampaignsv2/src/commands/ListConnectInstanceIntegrationsCommand.ts index b0305a7efdd5a..0cf95f31ae35e 100644 --- a/clients/client-connectcampaignsv2/src/commands/ListConnectInstanceIntegrationsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/ListConnectInstanceIntegrationsCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectInstanceIntegrationsRequest, ListConnectInstanceIntegrationsResponse } from "../models/models_0"; +import type { + ListConnectInstanceIntegrationsRequest, + ListConnectInstanceIntegrationsResponse, +} from "../models/models_0"; import { ListConnectInstanceIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/ListTagsForResourceCommand.ts b/clients/client-connectcampaignsv2/src/commands/ListTagsForResourceCommand.ts index a9de4184b0d2f..f0a00253c9aa9 100644 --- a/clients/client-connectcampaignsv2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/PauseCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/PauseCampaignCommand.ts index fd6422bdef39e..c9c0992c8efcb 100644 --- a/clients/client-connectcampaignsv2/src/commands/PauseCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/PauseCampaignCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PauseCampaignRequest } from "../models/models_0"; +import type { PauseCampaignRequest } from "../models/models_0"; import { PauseCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/PutConnectInstanceIntegrationCommand.ts b/clients/client-connectcampaignsv2/src/commands/PutConnectInstanceIntegrationCommand.ts index f9020f80a2420..0ddd85c63cddb 100644 --- a/clients/client-connectcampaignsv2/src/commands/PutConnectInstanceIntegrationCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/PutConnectInstanceIntegrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutConnectInstanceIntegrationRequest } from "../models/models_0"; +import type { PutConnectInstanceIntegrationRequest } from "../models/models_0"; import { PutConnectInstanceIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/PutInstanceCommunicationLimitsCommand.ts b/clients/client-connectcampaignsv2/src/commands/PutInstanceCommunicationLimitsCommand.ts index fbfca2c9cf227..1197d0df3b6af 100644 --- a/clients/client-connectcampaignsv2/src/commands/PutInstanceCommunicationLimitsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/PutInstanceCommunicationLimitsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutInstanceCommunicationLimitsRequest } from "../models/models_0"; +import type { PutInstanceCommunicationLimitsRequest } from "../models/models_0"; import { PutInstanceCommunicationLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/PutOutboundRequestBatchCommand.ts b/clients/client-connectcampaignsv2/src/commands/PutOutboundRequestBatchCommand.ts index b9f5b50378b79..fdba3908dd1d7 100644 --- a/clients/client-connectcampaignsv2/src/commands/PutOutboundRequestBatchCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/PutOutboundRequestBatchCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutOutboundRequestBatchRequest, PutOutboundRequestBatchResponse } from "../models/models_0"; +import type { PutOutboundRequestBatchRequest, PutOutboundRequestBatchResponse } from "../models/models_0"; import { PutOutboundRequestBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/PutProfileOutboundRequestBatchCommand.ts b/clients/client-connectcampaignsv2/src/commands/PutProfileOutboundRequestBatchCommand.ts index eeceb8c0dc93b..74a9c2274e7e6 100644 --- a/clients/client-connectcampaignsv2/src/commands/PutProfileOutboundRequestBatchCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/PutProfileOutboundRequestBatchCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutProfileOutboundRequestBatchRequest, PutProfileOutboundRequestBatchResponse } from "../models/models_0"; +import type { PutProfileOutboundRequestBatchRequest, PutProfileOutboundRequestBatchResponse } from "../models/models_0"; import { PutProfileOutboundRequestBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/ResumeCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/ResumeCampaignCommand.ts index 386f741c8d674..2197a5b2b59b6 100644 --- a/clients/client-connectcampaignsv2/src/commands/ResumeCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/ResumeCampaignCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResumeCampaignRequest } from "../models/models_0"; +import type { ResumeCampaignRequest } from "../models/models_0"; import { ResumeCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/StartCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/StartCampaignCommand.ts index e85d3c99cd4c5..349f6465a4276 100644 --- a/clients/client-connectcampaignsv2/src/commands/StartCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/StartCampaignCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCampaignRequest } from "../models/models_0"; +import type { StartCampaignRequest } from "../models/models_0"; import { StartCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/StartInstanceOnboardingJobCommand.ts b/clients/client-connectcampaignsv2/src/commands/StartInstanceOnboardingJobCommand.ts index 04a89f6d66775..ca05032a790b3 100644 --- a/clients/client-connectcampaignsv2/src/commands/StartInstanceOnboardingJobCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/StartInstanceOnboardingJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartInstanceOnboardingJobRequest, StartInstanceOnboardingJobResponse } from "../models/models_0"; +import type { StartInstanceOnboardingJobRequest, StartInstanceOnboardingJobResponse } from "../models/models_0"; import { StartInstanceOnboardingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/StopCampaignCommand.ts b/clients/client-connectcampaignsv2/src/commands/StopCampaignCommand.ts index f3b58550c55e2..16a2aa937881e 100644 --- a/clients/client-connectcampaignsv2/src/commands/StopCampaignCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/StopCampaignCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopCampaignRequest } from "../models/models_0"; +import type { StopCampaignRequest } from "../models/models_0"; import { StopCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/TagResourceCommand.ts b/clients/client-connectcampaignsv2/src/commands/TagResourceCommand.ts index 96ab151c118ad..72c9082d2f87f 100644 --- a/clients/client-connectcampaignsv2/src/commands/TagResourceCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/UntagResourceCommand.ts b/clients/client-connectcampaignsv2/src/commands/UntagResourceCommand.ts index eff8b30fd1354..4aaba38a4580c 100644 --- a/clients/client-connectcampaignsv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignChannelSubtypeConfigCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignChannelSubtypeConfigCommand.ts index 38d79085f8951..764ac32bd4312 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignChannelSubtypeConfigCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignChannelSubtypeConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignChannelSubtypeConfigRequest } from "../models/models_0"; +import type { UpdateCampaignChannelSubtypeConfigRequest } from "../models/models_0"; import { UpdateCampaignChannelSubtypeConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationLimitsCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationLimitsCommand.ts index b6f173e7969cc..7a2a4bb2d5a62 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationLimitsCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationLimitsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignCommunicationLimitsRequest } from "../models/models_0"; +import type { UpdateCampaignCommunicationLimitsRequest } from "../models/models_0"; import { UpdateCampaignCommunicationLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationTimeCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationTimeCommand.ts index 1d3009c067c99..9a4b6c50b66e2 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationTimeCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignCommunicationTimeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignCommunicationTimeRequest } from "../models/models_0"; +import type { UpdateCampaignCommunicationTimeRequest } from "../models/models_0"; import { UpdateCampaignCommunicationTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignFlowAssociationCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignFlowAssociationCommand.ts index b5cda3f54a4a7..9407a28fc9681 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignFlowAssociationCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignFlowAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignFlowAssociationRequest } from "../models/models_0"; +import type { UpdateCampaignFlowAssociationRequest } from "../models/models_0"; import { UpdateCampaignFlowAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignNameCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignNameCommand.ts index deff6d3fd420b..46add3eb3c54a 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignNameCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignNameCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignNameRequest } from "../models/models_0"; +import type { UpdateCampaignNameRequest } from "../models/models_0"; import { UpdateCampaignName } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignScheduleCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignScheduleCommand.ts index 2481484cd8d9f..2a7594f9d9908 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignScheduleCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignScheduleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignScheduleRequest } from "../models/models_0"; +import type { UpdateCampaignScheduleRequest } from "../models/models_0"; import { UpdateCampaignSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignSourceCommand.ts b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignSourceCommand.ts index c64f1a1bcb526..a39d15ae1c20a 100644 --- a/clients/client-connectcampaignsv2/src/commands/UpdateCampaignSourceCommand.ts +++ b/clients/client-connectcampaignsv2/src/commands/UpdateCampaignSourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectCampaignsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectCampaignsV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignSourceRequest } from "../models/models_0"; +import type { UpdateCampaignSourceRequest } from "../models/models_0"; import { UpdateCampaignSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcampaignsv2/src/endpoint/EndpointParameters.ts b/clients/client-connectcampaignsv2/src/endpoint/EndpointParameters.ts index 0871537f1660b..4e98028d46b50 100644 --- a/clients/client-connectcampaignsv2/src/endpoint/EndpointParameters.ts +++ b/clients/client-connectcampaignsv2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-connectcampaignsv2/src/endpoint/endpointResolver.ts b/clients/client-connectcampaignsv2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-connectcampaignsv2/src/endpoint/endpointResolver.ts +++ b/clients/client-connectcampaignsv2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-connectcampaignsv2/src/extensionConfiguration.ts b/clients/client-connectcampaignsv2/src/extensionConfiguration.ts index c6768d206f32c..a15e7568ae514 100644 --- a/clients/client-connectcampaignsv2/src/extensionConfiguration.ts +++ b/clients/client-connectcampaignsv2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-connectcampaignsv2/src/models/ConnectCampaignsV2ServiceException.ts b/clients/client-connectcampaignsv2/src/models/ConnectCampaignsV2ServiceException.ts index 94e353a4d9666..ed6ad232fc424 100644 --- a/clients/client-connectcampaignsv2/src/models/ConnectCampaignsV2ServiceException.ts +++ b/clients/client-connectcampaignsv2/src/models/ConnectCampaignsV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-connectcampaignsv2/src/models/errors.ts b/clients/client-connectcampaignsv2/src/models/errors.ts index e37e0cf07c8df..589a0c9261c70 100644 --- a/clients/client-connectcampaignsv2/src/models/errors.ts +++ b/clients/client-connectcampaignsv2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConnectCampaignsV2ServiceException as __BaseException } from "./ConnectCampaignsV2ServiceException"; import { CampaignState } from "./enums"; diff --git a/clients/client-connectcampaignsv2/src/pagination/Interfaces.ts b/clients/client-connectcampaignsv2/src/pagination/Interfaces.ts index 1d1eda734a1db..0a4b9e1d046d2 100644 --- a/clients/client-connectcampaignsv2/src/pagination/Interfaces.ts +++ b/clients/client-connectcampaignsv2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ConnectCampaignsV2Client } from "../ConnectCampaignsV2Client"; diff --git a/clients/client-connectcampaignsv2/src/pagination/ListCampaignsPaginator.ts b/clients/client-connectcampaignsv2/src/pagination/ListCampaignsPaginator.ts index a1fbbdae4b95d..6b4feec237bcc 100644 --- a/clients/client-connectcampaignsv2/src/pagination/ListCampaignsPaginator.ts +++ b/clients/client-connectcampaignsv2/src/pagination/ListCampaignsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCampaignsCommand, diff --git a/clients/client-connectcampaignsv2/src/pagination/ListConnectInstanceIntegrationsPaginator.ts b/clients/client-connectcampaignsv2/src/pagination/ListConnectInstanceIntegrationsPaginator.ts index 495167d525075..73ece8f285634 100644 --- a/clients/client-connectcampaignsv2/src/pagination/ListConnectInstanceIntegrationsPaginator.ts +++ b/clients/client-connectcampaignsv2/src/pagination/ListConnectInstanceIntegrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectInstanceIntegrationsCommand, diff --git a/clients/client-connectcampaignsv2/src/runtimeConfig.browser.ts b/clients/client-connectcampaignsv2/src/runtimeConfig.browser.ts index c22dc11442b48..c83265c9e3dda 100644 --- a/clients/client-connectcampaignsv2/src/runtimeConfig.browser.ts +++ b/clients/client-connectcampaignsv2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectCampaignsV2ClientConfig } from "./ConnectCampaignsV2Client"; + +import type { ConnectCampaignsV2ClientConfig } from "./ConnectCampaignsV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-connectcampaignsv2/src/runtimeConfig.native.ts b/clients/client-connectcampaignsv2/src/runtimeConfig.native.ts index 283655b7e9c03..34e0da78176a0 100644 --- a/clients/client-connectcampaignsv2/src/runtimeConfig.native.ts +++ b/clients/client-connectcampaignsv2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ConnectCampaignsV2ClientConfig } from "./ConnectCampaignsV2Client"; +import type { ConnectCampaignsV2ClientConfig } from "./ConnectCampaignsV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-connectcampaignsv2/src/runtimeConfig.shared.ts b/clients/client-connectcampaignsv2/src/runtimeConfig.shared.ts index 9dcc6381b0283..e67f9636766fc 100644 --- a/clients/client-connectcampaignsv2/src/runtimeConfig.shared.ts +++ b/clients/client-connectcampaignsv2/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultConnectCampaignsV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ConnectCampaignsV2ClientConfig } from "./ConnectCampaignsV2Client"; +import type { ConnectCampaignsV2ClientConfig } from "./ConnectCampaignsV2Client"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-connectcampaignsv2/src/runtimeConfig.ts b/clients/client-connectcampaignsv2/src/runtimeConfig.ts index a34e02090be7e..428470b68bd42 100644 --- a/clients/client-connectcampaignsv2/src/runtimeConfig.ts +++ b/clients/client-connectcampaignsv2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectCampaignsV2ClientConfig } from "./ConnectCampaignsV2Client"; + +import type { ConnectCampaignsV2ClientConfig } from "./ConnectCampaignsV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-connectcampaignsv2/src/runtimeExtensions.ts b/clients/client-connectcampaignsv2/src/runtimeExtensions.ts index 2e496cee4a7ee..2be2e32fcd569 100644 --- a/clients/client-connectcampaignsv2/src/runtimeExtensions.ts +++ b/clients/client-connectcampaignsv2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ConnectCampaignsV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { ConnectCampaignsV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-connectcampaignsv2/src/schemas/schemas_0.ts b/clients/client-connectcampaignsv2/src/schemas/schemas_0.ts index f71e310ae953d..b98781399f7c0 100644 --- a/clients/client-connectcampaignsv2/src/schemas/schemas_0.ts +++ b/clients/client-connectcampaignsv2/src/schemas/schemas_0.ts @@ -296,7 +296,7 @@ const n0 = "com.amazonaws.connectcampaignsv2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-connectcases/package.json b/clients/client-connectcases/package.json index 224e04f32e661..0cac4c20bb952 100644 --- a/clients/client-connectcases/package.json +++ b/clients/client-connectcases/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-connectcases/src/ConnectCases.ts b/clients/client-connectcases/src/ConnectCases.ts index dcfbc6cf928d5..85f723722b9db 100644 --- a/clients/client-connectcases/src/ConnectCases.ts +++ b/clients/client-connectcases/src/ConnectCases.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetCaseRuleCommand, @@ -152,7 +152,7 @@ import { UpdateTemplateCommandInput, UpdateTemplateCommandOutput, } from "./commands/UpdateTemplateCommand"; -import { ConnectCasesClient, ConnectCasesClientConfig } from "./ConnectCasesClient"; +import { ConnectCasesClient } from "./ConnectCasesClient"; const commands = { BatchGetCaseRuleCommand, diff --git a/clients/client-connectcases/src/ConnectCasesClient.ts b/clients/client-connectcases/src/ConnectCasesClient.ts index 53d7abbc9ed24..26125e5e5e163 100644 --- a/clients/client-connectcases/src/ConnectCasesClient.ts +++ b/clients/client-connectcases/src/ConnectCasesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultConnectCasesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetCaseRuleCommandInput, BatchGetCaseRuleCommandOutput } from "./commands/BatchGetCaseRuleCommand"; @@ -124,7 +133,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-connectcases/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-connectcases/src/auth/httpAuthExtensionConfiguration.ts index c14f635d1daa7..c219ef9ef6112 100644 --- a/clients/client-connectcases/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-connectcases/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ConnectCasesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ConnectCasesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-connectcases/src/auth/httpAuthSchemeProvider.ts b/clients/client-connectcases/src/auth/httpAuthSchemeProvider.ts index a0ce6559c4469..9285defa806a1 100644 --- a/clients/client-connectcases/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-connectcases/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ConnectCasesClientConfig, ConnectCasesClientResolvedConfig } from "../ConnectCasesClient"; +import { type ConnectCasesClientResolvedConfig, ConnectCasesClientConfig } from "../ConnectCasesClient"; /** * @internal diff --git a/clients/client-connectcases/src/commands/BatchGetCaseRuleCommand.ts b/clients/client-connectcases/src/commands/BatchGetCaseRuleCommand.ts index 1afd17c00787d..8eb2592010e6f 100644 --- a/clients/client-connectcases/src/commands/BatchGetCaseRuleCommand.ts +++ b/clients/client-connectcases/src/commands/BatchGetCaseRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetCaseRuleRequest, BatchGetCaseRuleResponse } from "../models/models_0"; +import type { BatchGetCaseRuleRequest, BatchGetCaseRuleResponse } from "../models/models_0"; import { BatchGetCaseRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/BatchGetFieldCommand.ts b/clients/client-connectcases/src/commands/BatchGetFieldCommand.ts index caf9e6b619da5..b685ca123cbdc 100644 --- a/clients/client-connectcases/src/commands/BatchGetFieldCommand.ts +++ b/clients/client-connectcases/src/commands/BatchGetFieldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetFieldRequest, BatchGetFieldResponse } from "../models/models_0"; +import type { BatchGetFieldRequest, BatchGetFieldResponse } from "../models/models_0"; import { BatchGetField } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/BatchPutFieldOptionsCommand.ts b/clients/client-connectcases/src/commands/BatchPutFieldOptionsCommand.ts index cb430600e04d0..f7c35c48aebf7 100644 --- a/clients/client-connectcases/src/commands/BatchPutFieldOptionsCommand.ts +++ b/clients/client-connectcases/src/commands/BatchPutFieldOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchPutFieldOptionsRequest, BatchPutFieldOptionsResponse } from "../models/models_0"; +import type { BatchPutFieldOptionsRequest, BatchPutFieldOptionsResponse } from "../models/models_0"; import { BatchPutFieldOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/CreateCaseCommand.ts b/clients/client-connectcases/src/commands/CreateCaseCommand.ts index cb9755a01f86a..a42440c459ff6 100644 --- a/clients/client-connectcases/src/commands/CreateCaseCommand.ts +++ b/clients/client-connectcases/src/commands/CreateCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCaseRequest, CreateCaseResponse } from "../models/models_0"; +import type { CreateCaseRequest, CreateCaseResponse } from "../models/models_0"; import { CreateCase } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/CreateCaseRuleCommand.ts b/clients/client-connectcases/src/commands/CreateCaseRuleCommand.ts index 940daf66200df..3a99b3217aec0 100644 --- a/clients/client-connectcases/src/commands/CreateCaseRuleCommand.ts +++ b/clients/client-connectcases/src/commands/CreateCaseRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCaseRuleRequest, CreateCaseRuleResponse } from "../models/models_0"; +import type { CreateCaseRuleRequest, CreateCaseRuleResponse } from "../models/models_0"; import { CreateCaseRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/CreateDomainCommand.ts b/clients/client-connectcases/src/commands/CreateDomainCommand.ts index dff23bea3ce04..43e56091bfed3 100644 --- a/clients/client-connectcases/src/commands/CreateDomainCommand.ts +++ b/clients/client-connectcases/src/commands/CreateDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; +import type { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; import { CreateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/CreateFieldCommand.ts b/clients/client-connectcases/src/commands/CreateFieldCommand.ts index 7cccd51755a14..e26b48a75bf2a 100644 --- a/clients/client-connectcases/src/commands/CreateFieldCommand.ts +++ b/clients/client-connectcases/src/commands/CreateFieldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFieldRequest, CreateFieldResponse } from "../models/models_0"; +import type { CreateFieldRequest, CreateFieldResponse } from "../models/models_0"; import { CreateField } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/CreateLayoutCommand.ts b/clients/client-connectcases/src/commands/CreateLayoutCommand.ts index 2ad7a3f584c97..e8bc00dbb8467 100644 --- a/clients/client-connectcases/src/commands/CreateLayoutCommand.ts +++ b/clients/client-connectcases/src/commands/CreateLayoutCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLayoutRequest, CreateLayoutResponse } from "../models/models_0"; +import type { CreateLayoutRequest, CreateLayoutResponse } from "../models/models_0"; import { CreateLayout } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/CreateRelatedItemCommand.ts b/clients/client-connectcases/src/commands/CreateRelatedItemCommand.ts index 7e591106799b5..82c8576a76af3 100644 --- a/clients/client-connectcases/src/commands/CreateRelatedItemCommand.ts +++ b/clients/client-connectcases/src/commands/CreateRelatedItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRelatedItemRequest, CreateRelatedItemResponse } from "../models/models_0"; +import type { CreateRelatedItemRequest, CreateRelatedItemResponse } from "../models/models_0"; import { CreateRelatedItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/CreateTemplateCommand.ts b/clients/client-connectcases/src/commands/CreateTemplateCommand.ts index 16ecc9a743da3..f5813e294aa54 100644 --- a/clients/client-connectcases/src/commands/CreateTemplateCommand.ts +++ b/clients/client-connectcases/src/commands/CreateTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_0"; +import type { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_0"; import { CreateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/DeleteCaseCommand.ts b/clients/client-connectcases/src/commands/DeleteCaseCommand.ts index db55229be9be6..c841986be8ae0 100644 --- a/clients/client-connectcases/src/commands/DeleteCaseCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCaseRequest, DeleteCaseResponse } from "../models/models_0"; +import type { DeleteCaseRequest, DeleteCaseResponse } from "../models/models_0"; import { DeleteCase } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/DeleteCaseRuleCommand.ts b/clients/client-connectcases/src/commands/DeleteCaseRuleCommand.ts index 5afb741839a42..9c7ae9657d2c3 100644 --- a/clients/client-connectcases/src/commands/DeleteCaseRuleCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteCaseRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCaseRuleRequest, DeleteCaseRuleResponse } from "../models/models_0"; +import type { DeleteCaseRuleRequest, DeleteCaseRuleResponse } from "../models/models_0"; import { DeleteCaseRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/DeleteDomainCommand.ts b/clients/client-connectcases/src/commands/DeleteDomainCommand.ts index 85c8a797a08a2..76906a13eb70a 100644 --- a/clients/client-connectcases/src/commands/DeleteDomainCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; +import type { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; import { DeleteDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/DeleteFieldCommand.ts b/clients/client-connectcases/src/commands/DeleteFieldCommand.ts index 7a9625f2d2a09..c79613f0cff8b 100644 --- a/clients/client-connectcases/src/commands/DeleteFieldCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteFieldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFieldRequest, DeleteFieldResponse } from "../models/models_0"; +import type { DeleteFieldRequest, DeleteFieldResponse } from "../models/models_0"; import { DeleteField } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/DeleteLayoutCommand.ts b/clients/client-connectcases/src/commands/DeleteLayoutCommand.ts index 278721d0ff256..4c6f54cb52245 100644 --- a/clients/client-connectcases/src/commands/DeleteLayoutCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteLayoutCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLayoutRequest, DeleteLayoutResponse } from "../models/models_0"; +import type { DeleteLayoutRequest, DeleteLayoutResponse } from "../models/models_0"; import { DeleteLayout } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/DeleteRelatedItemCommand.ts b/clients/client-connectcases/src/commands/DeleteRelatedItemCommand.ts index 9b1a0c9b45927..efca1a72e2d62 100644 --- a/clients/client-connectcases/src/commands/DeleteRelatedItemCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteRelatedItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRelatedItemRequest, DeleteRelatedItemResponse } from "../models/models_0"; +import type { DeleteRelatedItemRequest, DeleteRelatedItemResponse } from "../models/models_0"; import { DeleteRelatedItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/DeleteTemplateCommand.ts b/clients/client-connectcases/src/commands/DeleteTemplateCommand.ts index 7762c37d98271..c3dd00fc419e7 100644 --- a/clients/client-connectcases/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-connectcases/src/commands/DeleteTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTemplateRequest, DeleteTemplateResponse } from "../models/models_0"; +import type { DeleteTemplateRequest, DeleteTemplateResponse } from "../models/models_0"; import { DeleteTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/GetCaseAuditEventsCommand.ts b/clients/client-connectcases/src/commands/GetCaseAuditEventsCommand.ts index ed6776cb66c39..8d1b58e262958 100644 --- a/clients/client-connectcases/src/commands/GetCaseAuditEventsCommand.ts +++ b/clients/client-connectcases/src/commands/GetCaseAuditEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCaseAuditEventsRequest, GetCaseAuditEventsResponse } from "../models/models_0"; +import type { GetCaseAuditEventsRequest, GetCaseAuditEventsResponse } from "../models/models_0"; import { GetCaseAuditEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/GetCaseCommand.ts b/clients/client-connectcases/src/commands/GetCaseCommand.ts index 635921a692da9..7ea82ef9879c9 100644 --- a/clients/client-connectcases/src/commands/GetCaseCommand.ts +++ b/clients/client-connectcases/src/commands/GetCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCaseRequest, GetCaseResponse } from "../models/models_0"; +import type { GetCaseRequest, GetCaseResponse } from "../models/models_0"; import { GetCase } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/GetCaseEventConfigurationCommand.ts b/clients/client-connectcases/src/commands/GetCaseEventConfigurationCommand.ts index 38c340c0972e0..b8354923b705b 100644 --- a/clients/client-connectcases/src/commands/GetCaseEventConfigurationCommand.ts +++ b/clients/client-connectcases/src/commands/GetCaseEventConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCaseEventConfigurationRequest, GetCaseEventConfigurationResponse } from "../models/models_0"; +import type { GetCaseEventConfigurationRequest, GetCaseEventConfigurationResponse } from "../models/models_0"; import { GetCaseEventConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/GetDomainCommand.ts b/clients/client-connectcases/src/commands/GetDomainCommand.ts index e3d0987a23125..aee06c29f71cf 100644 --- a/clients/client-connectcases/src/commands/GetDomainCommand.ts +++ b/clients/client-connectcases/src/commands/GetDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainRequest, GetDomainResponse } from "../models/models_0"; +import type { GetDomainRequest, GetDomainResponse } from "../models/models_0"; import { GetDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/GetLayoutCommand.ts b/clients/client-connectcases/src/commands/GetLayoutCommand.ts index 46c6b00272433..516c626a52e4c 100644 --- a/clients/client-connectcases/src/commands/GetLayoutCommand.ts +++ b/clients/client-connectcases/src/commands/GetLayoutCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLayoutRequest, GetLayoutResponse } from "../models/models_0"; +import type { GetLayoutRequest, GetLayoutResponse } from "../models/models_0"; import { GetLayout } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/GetTemplateCommand.ts b/clients/client-connectcases/src/commands/GetTemplateCommand.ts index c30634cc7816a..e1acfab5308ec 100644 --- a/clients/client-connectcases/src/commands/GetTemplateCommand.ts +++ b/clients/client-connectcases/src/commands/GetTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTemplateRequest, GetTemplateResponse } from "../models/models_0"; +import type { GetTemplateRequest, GetTemplateResponse } from "../models/models_0"; import { GetTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/ListCaseRulesCommand.ts b/clients/client-connectcases/src/commands/ListCaseRulesCommand.ts index da74a964c9086..7990164bcacc7 100644 --- a/clients/client-connectcases/src/commands/ListCaseRulesCommand.ts +++ b/clients/client-connectcases/src/commands/ListCaseRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCaseRulesRequest, ListCaseRulesResponse } from "../models/models_0"; +import type { ListCaseRulesRequest, ListCaseRulesResponse } from "../models/models_0"; import { ListCaseRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/ListCasesForContactCommand.ts b/clients/client-connectcases/src/commands/ListCasesForContactCommand.ts index 254ff8737f99e..8dfe180ecaeba 100644 --- a/clients/client-connectcases/src/commands/ListCasesForContactCommand.ts +++ b/clients/client-connectcases/src/commands/ListCasesForContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCasesForContactRequest, ListCasesForContactResponse } from "../models/models_0"; +import type { ListCasesForContactRequest, ListCasesForContactResponse } from "../models/models_0"; import { ListCasesForContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/ListDomainsCommand.ts b/clients/client-connectcases/src/commands/ListDomainsCommand.ts index 585d7d8b90984..0cbf8e293c47e 100644 --- a/clients/client-connectcases/src/commands/ListDomainsCommand.ts +++ b/clients/client-connectcases/src/commands/ListDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; +import type { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; import { ListDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/ListFieldOptionsCommand.ts b/clients/client-connectcases/src/commands/ListFieldOptionsCommand.ts index 8aa52a9b10848..ba69ff807a8c3 100644 --- a/clients/client-connectcases/src/commands/ListFieldOptionsCommand.ts +++ b/clients/client-connectcases/src/commands/ListFieldOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFieldOptionsRequest, ListFieldOptionsResponse } from "../models/models_0"; +import type { ListFieldOptionsRequest, ListFieldOptionsResponse } from "../models/models_0"; import { ListFieldOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/ListFieldsCommand.ts b/clients/client-connectcases/src/commands/ListFieldsCommand.ts index 941a5f175ba6e..075fb2e81475b 100644 --- a/clients/client-connectcases/src/commands/ListFieldsCommand.ts +++ b/clients/client-connectcases/src/commands/ListFieldsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFieldsRequest, ListFieldsResponse } from "../models/models_0"; +import type { ListFieldsRequest, ListFieldsResponse } from "../models/models_0"; import { ListFields } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/ListLayoutsCommand.ts b/clients/client-connectcases/src/commands/ListLayoutsCommand.ts index 3088033f1008f..50241c835e3dc 100644 --- a/clients/client-connectcases/src/commands/ListLayoutsCommand.ts +++ b/clients/client-connectcases/src/commands/ListLayoutsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLayoutsRequest, ListLayoutsResponse } from "../models/models_0"; +import type { ListLayoutsRequest, ListLayoutsResponse } from "../models/models_0"; import { ListLayouts } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/ListTagsForResourceCommand.ts b/clients/client-connectcases/src/commands/ListTagsForResourceCommand.ts index e97418ac95911..f59f00fab41e3 100644 --- a/clients/client-connectcases/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-connectcases/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/ListTemplatesCommand.ts b/clients/client-connectcases/src/commands/ListTemplatesCommand.ts index 2b4a9278529cb..0045f4e9e9ad8 100644 --- a/clients/client-connectcases/src/commands/ListTemplatesCommand.ts +++ b/clients/client-connectcases/src/commands/ListTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_0"; +import type { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_0"; import { ListTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/PutCaseEventConfigurationCommand.ts b/clients/client-connectcases/src/commands/PutCaseEventConfigurationCommand.ts index 1888bc7366a1d..315b503f301c3 100644 --- a/clients/client-connectcases/src/commands/PutCaseEventConfigurationCommand.ts +++ b/clients/client-connectcases/src/commands/PutCaseEventConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutCaseEventConfigurationRequest, PutCaseEventConfigurationResponse } from "../models/models_0"; +import type { PutCaseEventConfigurationRequest, PutCaseEventConfigurationResponse } from "../models/models_0"; import { PutCaseEventConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/SearchAllRelatedItemsCommand.ts b/clients/client-connectcases/src/commands/SearchAllRelatedItemsCommand.ts index 7748dbc2b8821..be4630232a0e1 100644 --- a/clients/client-connectcases/src/commands/SearchAllRelatedItemsCommand.ts +++ b/clients/client-connectcases/src/commands/SearchAllRelatedItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchAllRelatedItemsRequest, SearchAllRelatedItemsResponse } from "../models/models_0"; +import type { SearchAllRelatedItemsRequest, SearchAllRelatedItemsResponse } from "../models/models_0"; import { SearchAllRelatedItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/SearchCasesCommand.ts b/clients/client-connectcases/src/commands/SearchCasesCommand.ts index da908273cfdd0..877e9b2544eed 100644 --- a/clients/client-connectcases/src/commands/SearchCasesCommand.ts +++ b/clients/client-connectcases/src/commands/SearchCasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchCasesRequest, SearchCasesResponse } from "../models/models_0"; +import type { SearchCasesRequest, SearchCasesResponse } from "../models/models_0"; import { SearchCases } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/SearchRelatedItemsCommand.ts b/clients/client-connectcases/src/commands/SearchRelatedItemsCommand.ts index 0ee80463aef9f..df8b948f1c458 100644 --- a/clients/client-connectcases/src/commands/SearchRelatedItemsCommand.ts +++ b/clients/client-connectcases/src/commands/SearchRelatedItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchRelatedItemsRequest, SearchRelatedItemsResponse } from "../models/models_0"; +import type { SearchRelatedItemsRequest, SearchRelatedItemsResponse } from "../models/models_0"; import { SearchRelatedItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/TagResourceCommand.ts b/clients/client-connectcases/src/commands/TagResourceCommand.ts index 4e07fdc208485..7c5dd6f1bef54 100644 --- a/clients/client-connectcases/src/commands/TagResourceCommand.ts +++ b/clients/client-connectcases/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/UntagResourceCommand.ts b/clients/client-connectcases/src/commands/UntagResourceCommand.ts index 378111528e1c7..6fbf0fd728f94 100644 --- a/clients/client-connectcases/src/commands/UntagResourceCommand.ts +++ b/clients/client-connectcases/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/UpdateCaseCommand.ts b/clients/client-connectcases/src/commands/UpdateCaseCommand.ts index 22d4d5f60a0bf..bcc0f7a7e0c64 100644 --- a/clients/client-connectcases/src/commands/UpdateCaseCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateCaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCaseRequest, UpdateCaseResponse } from "../models/models_0"; +import type { UpdateCaseRequest, UpdateCaseResponse } from "../models/models_0"; import { UpdateCase } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/UpdateCaseRuleCommand.ts b/clients/client-connectcases/src/commands/UpdateCaseRuleCommand.ts index bc1642f8d273b..eb038be17c045 100644 --- a/clients/client-connectcases/src/commands/UpdateCaseRuleCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateCaseRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCaseRuleRequest, UpdateCaseRuleResponse } from "../models/models_0"; +import type { UpdateCaseRuleRequest, UpdateCaseRuleResponse } from "../models/models_0"; import { UpdateCaseRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/UpdateFieldCommand.ts b/clients/client-connectcases/src/commands/UpdateFieldCommand.ts index b8d46f50fb122..e29b3a56f6526 100644 --- a/clients/client-connectcases/src/commands/UpdateFieldCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateFieldCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFieldRequest, UpdateFieldResponse } from "../models/models_0"; +import type { UpdateFieldRequest, UpdateFieldResponse } from "../models/models_0"; import { UpdateField } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/UpdateLayoutCommand.ts b/clients/client-connectcases/src/commands/UpdateLayoutCommand.ts index e02d3e8690513..1ee0775b39d0e 100644 --- a/clients/client-connectcases/src/commands/UpdateLayoutCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateLayoutCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLayoutRequest, UpdateLayoutResponse } from "../models/models_0"; +import type { UpdateLayoutRequest, UpdateLayoutResponse } from "../models/models_0"; import { UpdateLayout } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/commands/UpdateTemplateCommand.ts b/clients/client-connectcases/src/commands/UpdateTemplateCommand.ts index a1344d1ad11d6..314e3f17ce0a0 100644 --- a/clients/client-connectcases/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-connectcases/src/commands/UpdateTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; +import type { ConnectCasesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectCasesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_0"; +import type { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_0"; import { UpdateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectcases/src/endpoint/EndpointParameters.ts b/clients/client-connectcases/src/endpoint/EndpointParameters.ts index 0391be4ee0719..b2b6c408b2f8b 100644 --- a/clients/client-connectcases/src/endpoint/EndpointParameters.ts +++ b/clients/client-connectcases/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-connectcases/src/endpoint/endpointResolver.ts b/clients/client-connectcases/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-connectcases/src/endpoint/endpointResolver.ts +++ b/clients/client-connectcases/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-connectcases/src/extensionConfiguration.ts b/clients/client-connectcases/src/extensionConfiguration.ts index 53d4d4f208819..2ffaf432016c0 100644 --- a/clients/client-connectcases/src/extensionConfiguration.ts +++ b/clients/client-connectcases/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-connectcases/src/models/ConnectCasesServiceException.ts b/clients/client-connectcases/src/models/ConnectCasesServiceException.ts index 6a38ddd09457f..0bf66da986657 100644 --- a/clients/client-connectcases/src/models/ConnectCasesServiceException.ts +++ b/clients/client-connectcases/src/models/ConnectCasesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-connectcases/src/models/errors.ts b/clients/client-connectcases/src/models/errors.ts index bffebf6f1a49b..276c7a481aadf 100644 --- a/clients/client-connectcases/src/models/errors.ts +++ b/clients/client-connectcases/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConnectCasesServiceException as __BaseException } from "./ConnectCasesServiceException"; diff --git a/clients/client-connectcases/src/pagination/GetCaseAuditEventsPaginator.ts b/clients/client-connectcases/src/pagination/GetCaseAuditEventsPaginator.ts index 78425f07ccc6d..1d77faf7e8f2b 100644 --- a/clients/client-connectcases/src/pagination/GetCaseAuditEventsPaginator.ts +++ b/clients/client-connectcases/src/pagination/GetCaseAuditEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCaseAuditEventsCommand, diff --git a/clients/client-connectcases/src/pagination/GetCasePaginator.ts b/clients/client-connectcases/src/pagination/GetCasePaginator.ts index 78cda203d0555..10d2e331bd0d9 100644 --- a/clients/client-connectcases/src/pagination/GetCasePaginator.ts +++ b/clients/client-connectcases/src/pagination/GetCasePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCaseCommand, GetCaseCommandInput, GetCaseCommandOutput } from "../commands/GetCaseCommand"; import { ConnectCasesClient } from "../ConnectCasesClient"; diff --git a/clients/client-connectcases/src/pagination/Interfaces.ts b/clients/client-connectcases/src/pagination/Interfaces.ts index 53e524a682603..c9178656cf5c5 100644 --- a/clients/client-connectcases/src/pagination/Interfaces.ts +++ b/clients/client-connectcases/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ConnectCasesClient } from "../ConnectCasesClient"; diff --git a/clients/client-connectcases/src/pagination/ListCaseRulesPaginator.ts b/clients/client-connectcases/src/pagination/ListCaseRulesPaginator.ts index 9e0507601b270..f7311c89ae03a 100644 --- a/clients/client-connectcases/src/pagination/ListCaseRulesPaginator.ts +++ b/clients/client-connectcases/src/pagination/ListCaseRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCaseRulesCommand, diff --git a/clients/client-connectcases/src/pagination/ListCasesForContactPaginator.ts b/clients/client-connectcases/src/pagination/ListCasesForContactPaginator.ts index a7fcf056fb8bb..fcd7657eb2348 100644 --- a/clients/client-connectcases/src/pagination/ListCasesForContactPaginator.ts +++ b/clients/client-connectcases/src/pagination/ListCasesForContactPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCasesForContactCommand, diff --git a/clients/client-connectcases/src/pagination/ListDomainsPaginator.ts b/clients/client-connectcases/src/pagination/ListDomainsPaginator.ts index b80c31f43e5ca..ecaf4f00de783 100644 --- a/clients/client-connectcases/src/pagination/ListDomainsPaginator.ts +++ b/clients/client-connectcases/src/pagination/ListDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainsCommand, ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand"; import { ConnectCasesClient } from "../ConnectCasesClient"; diff --git a/clients/client-connectcases/src/pagination/ListFieldOptionsPaginator.ts b/clients/client-connectcases/src/pagination/ListFieldOptionsPaginator.ts index 5fe5713159766..da010f87ff395 100644 --- a/clients/client-connectcases/src/pagination/ListFieldOptionsPaginator.ts +++ b/clients/client-connectcases/src/pagination/ListFieldOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFieldOptionsCommand, diff --git a/clients/client-connectcases/src/pagination/ListFieldsPaginator.ts b/clients/client-connectcases/src/pagination/ListFieldsPaginator.ts index 1930eb7c202a0..bc506811d7593 100644 --- a/clients/client-connectcases/src/pagination/ListFieldsPaginator.ts +++ b/clients/client-connectcases/src/pagination/ListFieldsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFieldsCommand, ListFieldsCommandInput, ListFieldsCommandOutput } from "../commands/ListFieldsCommand"; import { ConnectCasesClient } from "../ConnectCasesClient"; diff --git a/clients/client-connectcases/src/pagination/ListLayoutsPaginator.ts b/clients/client-connectcases/src/pagination/ListLayoutsPaginator.ts index 0ebb07b59a883..2c4e258701860 100644 --- a/clients/client-connectcases/src/pagination/ListLayoutsPaginator.ts +++ b/clients/client-connectcases/src/pagination/ListLayoutsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLayoutsCommand, ListLayoutsCommandInput, ListLayoutsCommandOutput } from "../commands/ListLayoutsCommand"; import { ConnectCasesClient } from "../ConnectCasesClient"; diff --git a/clients/client-connectcases/src/pagination/ListTemplatesPaginator.ts b/clients/client-connectcases/src/pagination/ListTemplatesPaginator.ts index 35c6a36b5d9ac..5d252cf9ab4bb 100644 --- a/clients/client-connectcases/src/pagination/ListTemplatesPaginator.ts +++ b/clients/client-connectcases/src/pagination/ListTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplatesCommand, diff --git a/clients/client-connectcases/src/pagination/SearchAllRelatedItemsPaginator.ts b/clients/client-connectcases/src/pagination/SearchAllRelatedItemsPaginator.ts index 621d3eec4bea5..5c714e111fc0d 100644 --- a/clients/client-connectcases/src/pagination/SearchAllRelatedItemsPaginator.ts +++ b/clients/client-connectcases/src/pagination/SearchAllRelatedItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchAllRelatedItemsCommand, diff --git a/clients/client-connectcases/src/pagination/SearchCasesPaginator.ts b/clients/client-connectcases/src/pagination/SearchCasesPaginator.ts index 4f3ae0eeebf50..63d1f54bc25a9 100644 --- a/clients/client-connectcases/src/pagination/SearchCasesPaginator.ts +++ b/clients/client-connectcases/src/pagination/SearchCasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchCasesCommand, SearchCasesCommandInput, SearchCasesCommandOutput } from "../commands/SearchCasesCommand"; import { ConnectCasesClient } from "../ConnectCasesClient"; diff --git a/clients/client-connectcases/src/pagination/SearchRelatedItemsPaginator.ts b/clients/client-connectcases/src/pagination/SearchRelatedItemsPaginator.ts index 6a8a02553defc..05ff3ad0f138e 100644 --- a/clients/client-connectcases/src/pagination/SearchRelatedItemsPaginator.ts +++ b/clients/client-connectcases/src/pagination/SearchRelatedItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchRelatedItemsCommand, diff --git a/clients/client-connectcases/src/runtimeConfig.browser.ts b/clients/client-connectcases/src/runtimeConfig.browser.ts index 71bed26c2fcc7..bc31648206f67 100644 --- a/clients/client-connectcases/src/runtimeConfig.browser.ts +++ b/clients/client-connectcases/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectCasesClientConfig } from "./ConnectCasesClient"; + +import type { ConnectCasesClientConfig } from "./ConnectCasesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-connectcases/src/runtimeConfig.native.ts b/clients/client-connectcases/src/runtimeConfig.native.ts index 3cd7c746b12f9..b195cebd88891 100644 --- a/clients/client-connectcases/src/runtimeConfig.native.ts +++ b/clients/client-connectcases/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ConnectCasesClientConfig } from "./ConnectCasesClient"; +import type { ConnectCasesClientConfig } from "./ConnectCasesClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-connectcases/src/runtimeConfig.shared.ts b/clients/client-connectcases/src/runtimeConfig.shared.ts index 02bfe5bd17f45..c278d6776102a 100644 --- a/clients/client-connectcases/src/runtimeConfig.shared.ts +++ b/clients/client-connectcases/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultConnectCasesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ConnectCasesClientConfig } from "./ConnectCasesClient"; +import type { ConnectCasesClientConfig } from "./ConnectCasesClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-connectcases/src/runtimeConfig.ts b/clients/client-connectcases/src/runtimeConfig.ts index aa3d5272ac070..0085f509c2350 100644 --- a/clients/client-connectcases/src/runtimeConfig.ts +++ b/clients/client-connectcases/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectCasesClientConfig } from "./ConnectCasesClient"; + +import type { ConnectCasesClientConfig } from "./ConnectCasesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-connectcases/src/runtimeExtensions.ts b/clients/client-connectcases/src/runtimeExtensions.ts index 691c53271490c..da4e99435479f 100644 --- a/clients/client-connectcases/src/runtimeExtensions.ts +++ b/clients/client-connectcases/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ConnectCasesExtensionConfiguration } from "./extensionConfiguration"; +import type { ConnectCasesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-connectcases/src/schemas/schemas_0.ts b/clients/client-connectcases/src/schemas/schemas_0.ts index 45ea4489eecbe..94f8bd4671e01 100644 --- a/clients/client-connectcases/src/schemas/schemas_0.ts +++ b/clients/client-connectcases/src/schemas/schemas_0.ts @@ -385,7 +385,7 @@ const n0 = "com.amazonaws.connectcases"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-connectparticipant/package.json b/clients/client-connectparticipant/package.json index aee1431f4ac79..a8a7133c12cf9 100644 --- a/clients/client-connectparticipant/package.json +++ b/clients/client-connectparticipant/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-connectparticipant/src/ConnectParticipant.ts b/clients/client-connectparticipant/src/ConnectParticipant.ts index c66cd22aedab1..2bfacaceec142 100644 --- a/clients/client-connectparticipant/src/ConnectParticipant.ts +++ b/clients/client-connectparticipant/src/ConnectParticipant.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelParticipantAuthenticationCommand, @@ -49,7 +49,7 @@ import { StartAttachmentUploadCommandInput, StartAttachmentUploadCommandOutput, } from "./commands/StartAttachmentUploadCommand"; -import { ConnectParticipantClient, ConnectParticipantClientConfig } from "./ConnectParticipantClient"; +import { ConnectParticipantClient } from "./ConnectParticipantClient"; const commands = { CancelParticipantAuthenticationCommand, diff --git a/clients/client-connectparticipant/src/ConnectParticipantClient.ts b/clients/client-connectparticipant/src/ConnectParticipantClient.ts index d53d96e9b0db1..4d6bbaee3786f 100644 --- a/clients/client-connectparticipant/src/ConnectParticipantClient.ts +++ b/clients/client-connectparticipant/src/ConnectParticipantClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, getOmitRetryHeadersPlugin, getRetryPlugin, resolveRetryConfig, - RetryInputConfig, - RetryResolvedConfig, } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultConnectParticipantHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -99,7 +103,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-connectparticipant/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-connectparticipant/src/auth/httpAuthExtensionConfiguration.ts index 353a506a85f7e..102b4147e2d03 100644 --- a/clients/client-connectparticipant/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-connectparticipant/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ConnectParticipantHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ConnectParticipantHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-connectparticipant/src/auth/httpAuthSchemeProvider.ts b/clients/client-connectparticipant/src/auth/httpAuthSchemeProvider.ts index 431f1e16037f1..36df5af655d78 100644 --- a/clients/client-connectparticipant/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-connectparticipant/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ConnectParticipantClientConfig, ConnectParticipantClientResolvedConfig } from "../ConnectParticipantClient"; +import { + type ConnectParticipantClientResolvedConfig, + ConnectParticipantClientConfig, +} from "../ConnectParticipantClient"; /** * @internal diff --git a/clients/client-connectparticipant/src/commands/CancelParticipantAuthenticationCommand.ts b/clients/client-connectparticipant/src/commands/CancelParticipantAuthenticationCommand.ts index 3d4db66cd6c6f..7225260159a40 100644 --- a/clients/client-connectparticipant/src/commands/CancelParticipantAuthenticationCommand.ts +++ b/clients/client-connectparticipant/src/commands/CancelParticipantAuthenticationCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelParticipantAuthenticationRequest, CancelParticipantAuthenticationResponse } from "../models/models_0"; +import type { + CancelParticipantAuthenticationRequest, + CancelParticipantAuthenticationResponse, +} from "../models/models_0"; import { CancelParticipantAuthentication } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/CompleteAttachmentUploadCommand.ts b/clients/client-connectparticipant/src/commands/CompleteAttachmentUploadCommand.ts index a3781072b12ff..1545408907feb 100644 --- a/clients/client-connectparticipant/src/commands/CompleteAttachmentUploadCommand.ts +++ b/clients/client-connectparticipant/src/commands/CompleteAttachmentUploadCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteAttachmentUploadRequest, CompleteAttachmentUploadResponse } from "../models/models_0"; +import type { CompleteAttachmentUploadRequest, CompleteAttachmentUploadResponse } from "../models/models_0"; import { CompleteAttachmentUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/CreateParticipantConnectionCommand.ts b/clients/client-connectparticipant/src/commands/CreateParticipantConnectionCommand.ts index 560a095f585f9..da2856450f8aa 100644 --- a/clients/client-connectparticipant/src/commands/CreateParticipantConnectionCommand.ts +++ b/clients/client-connectparticipant/src/commands/CreateParticipantConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateParticipantConnectionRequest, CreateParticipantConnectionResponse } from "../models/models_0"; +import type { CreateParticipantConnectionRequest, CreateParticipantConnectionResponse } from "../models/models_0"; import { CreateParticipantConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/DescribeViewCommand.ts b/clients/client-connectparticipant/src/commands/DescribeViewCommand.ts index 6417ad233a6a8..fa3117a63595a 100644 --- a/clients/client-connectparticipant/src/commands/DescribeViewCommand.ts +++ b/clients/client-connectparticipant/src/commands/DescribeViewCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeViewRequest, DescribeViewResponse } from "../models/models_0"; +import type { DescribeViewRequest, DescribeViewResponse } from "../models/models_0"; import { DescribeView } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/DisconnectParticipantCommand.ts b/clients/client-connectparticipant/src/commands/DisconnectParticipantCommand.ts index 2711a3e7b51b3..9fdffc6caa683 100644 --- a/clients/client-connectparticipant/src/commands/DisconnectParticipantCommand.ts +++ b/clients/client-connectparticipant/src/commands/DisconnectParticipantCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisconnectParticipantRequest, DisconnectParticipantResponse } from "../models/models_0"; +import type { DisconnectParticipantRequest, DisconnectParticipantResponse } from "../models/models_0"; import { DisconnectParticipant } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/GetAttachmentCommand.ts b/clients/client-connectparticipant/src/commands/GetAttachmentCommand.ts index 693f2e1370315..73e9a9f556d2c 100644 --- a/clients/client-connectparticipant/src/commands/GetAttachmentCommand.ts +++ b/clients/client-connectparticipant/src/commands/GetAttachmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAttachmentRequest, GetAttachmentResponse } from "../models/models_0"; +import type { GetAttachmentRequest, GetAttachmentResponse } from "../models/models_0"; import { GetAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/GetAuthenticationUrlCommand.ts b/clients/client-connectparticipant/src/commands/GetAuthenticationUrlCommand.ts index 62e468fa30723..f6bc26c6c79fa 100644 --- a/clients/client-connectparticipant/src/commands/GetAuthenticationUrlCommand.ts +++ b/clients/client-connectparticipant/src/commands/GetAuthenticationUrlCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAuthenticationUrlRequest, GetAuthenticationUrlResponse } from "../models/models_0"; +import type { GetAuthenticationUrlRequest, GetAuthenticationUrlResponse } from "../models/models_0"; import { GetAuthenticationUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/GetTranscriptCommand.ts b/clients/client-connectparticipant/src/commands/GetTranscriptCommand.ts index 58bbf9303486e..7a7d78dbbcbcc 100644 --- a/clients/client-connectparticipant/src/commands/GetTranscriptCommand.ts +++ b/clients/client-connectparticipant/src/commands/GetTranscriptCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTranscriptRequest, GetTranscriptResponse } from "../models/models_0"; +import type { GetTranscriptRequest, GetTranscriptResponse } from "../models/models_0"; import { GetTranscript } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/SendEventCommand.ts b/clients/client-connectparticipant/src/commands/SendEventCommand.ts index 997ee7e998fa0..a88b10b3e0092 100644 --- a/clients/client-connectparticipant/src/commands/SendEventCommand.ts +++ b/clients/client-connectparticipant/src/commands/SendEventCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendEventRequest, SendEventResponse } from "../models/models_0"; +import type { SendEventRequest, SendEventResponse } from "../models/models_0"; import { SendEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/SendMessageCommand.ts b/clients/client-connectparticipant/src/commands/SendMessageCommand.ts index eeebe65d5cf96..b3d5bbe5ae14a 100644 --- a/clients/client-connectparticipant/src/commands/SendMessageCommand.ts +++ b/clients/client-connectparticipant/src/commands/SendMessageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendMessageRequest, SendMessageResponse } from "../models/models_0"; +import type { SendMessageRequest, SendMessageResponse } from "../models/models_0"; import { SendMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/commands/StartAttachmentUploadCommand.ts b/clients/client-connectparticipant/src/commands/StartAttachmentUploadCommand.ts index cce527cae53fc..5e59248026315 100644 --- a/clients/client-connectparticipant/src/commands/StartAttachmentUploadCommand.ts +++ b/clients/client-connectparticipant/src/commands/StartAttachmentUploadCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ConnectParticipantClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ConnectParticipantClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAttachmentUploadRequest, StartAttachmentUploadResponse } from "../models/models_0"; +import type { StartAttachmentUploadRequest, StartAttachmentUploadResponse } from "../models/models_0"; import { StartAttachmentUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-connectparticipant/src/endpoint/EndpointParameters.ts b/clients/client-connectparticipant/src/endpoint/EndpointParameters.ts index b996f1ffdb2da..bad94dac1dfb2 100644 --- a/clients/client-connectparticipant/src/endpoint/EndpointParameters.ts +++ b/clients/client-connectparticipant/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-connectparticipant/src/endpoint/endpointResolver.ts b/clients/client-connectparticipant/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-connectparticipant/src/endpoint/endpointResolver.ts +++ b/clients/client-connectparticipant/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-connectparticipant/src/extensionConfiguration.ts b/clients/client-connectparticipant/src/extensionConfiguration.ts index 1fa5718a163f4..98630b1d971cb 100644 --- a/clients/client-connectparticipant/src/extensionConfiguration.ts +++ b/clients/client-connectparticipant/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-connectparticipant/src/models/ConnectParticipantServiceException.ts b/clients/client-connectparticipant/src/models/ConnectParticipantServiceException.ts index 723ecb98688e9..20b49aef952cb 100644 --- a/clients/client-connectparticipant/src/models/ConnectParticipantServiceException.ts +++ b/clients/client-connectparticipant/src/models/ConnectParticipantServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-connectparticipant/src/models/errors.ts b/clients/client-connectparticipant/src/models/errors.ts index 5d2f4fdae4078..71a3df3cc4159 100644 --- a/clients/client-connectparticipant/src/models/errors.ts +++ b/clients/client-connectparticipant/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConnectParticipantServiceException as __BaseException } from "./ConnectParticipantServiceException"; import { ResourceType } from "./enums"; diff --git a/clients/client-connectparticipant/src/pagination/GetTranscriptPaginator.ts b/clients/client-connectparticipant/src/pagination/GetTranscriptPaginator.ts index ec7e9ed7b9848..602594c52ddda 100644 --- a/clients/client-connectparticipant/src/pagination/GetTranscriptPaginator.ts +++ b/clients/client-connectparticipant/src/pagination/GetTranscriptPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTranscriptCommand, diff --git a/clients/client-connectparticipant/src/pagination/Interfaces.ts b/clients/client-connectparticipant/src/pagination/Interfaces.ts index 2e2cae9c33276..a90c21f54d856 100644 --- a/clients/client-connectparticipant/src/pagination/Interfaces.ts +++ b/clients/client-connectparticipant/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ConnectParticipantClient } from "../ConnectParticipantClient"; diff --git a/clients/client-connectparticipant/src/runtimeConfig.browser.ts b/clients/client-connectparticipant/src/runtimeConfig.browser.ts index 0dfad41b4c62b..e069d30ef82e4 100644 --- a/clients/client-connectparticipant/src/runtimeConfig.browser.ts +++ b/clients/client-connectparticipant/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectParticipantClientConfig } from "./ConnectParticipantClient"; + +import type { ConnectParticipantClientConfig } from "./ConnectParticipantClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-connectparticipant/src/runtimeConfig.native.ts b/clients/client-connectparticipant/src/runtimeConfig.native.ts index a0fb1b96f492b..c520934e2c59d 100644 --- a/clients/client-connectparticipant/src/runtimeConfig.native.ts +++ b/clients/client-connectparticipant/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ConnectParticipantClientConfig } from "./ConnectParticipantClient"; +import type { ConnectParticipantClientConfig } from "./ConnectParticipantClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-connectparticipant/src/runtimeConfig.shared.ts b/clients/client-connectparticipant/src/runtimeConfig.shared.ts index 934dac9621b5e..bf0e4279c115e 100644 --- a/clients/client-connectparticipant/src/runtimeConfig.shared.ts +++ b/clients/client-connectparticipant/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultConnectParticipantHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ConnectParticipantClientConfig } from "./ConnectParticipantClient"; +import type { ConnectParticipantClientConfig } from "./ConnectParticipantClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-connectparticipant/src/runtimeConfig.ts b/clients/client-connectparticipant/src/runtimeConfig.ts index f0e5e3e13f1e4..4be99b24b8175 100644 --- a/clients/client-connectparticipant/src/runtimeConfig.ts +++ b/clients/client-connectparticipant/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ConnectParticipantClientConfig } from "./ConnectParticipantClient"; + +import type { ConnectParticipantClientConfig } from "./ConnectParticipantClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-connectparticipant/src/runtimeExtensions.ts b/clients/client-connectparticipant/src/runtimeExtensions.ts index d6c417be30985..273a1555509af 100644 --- a/clients/client-connectparticipant/src/runtimeExtensions.ts +++ b/clients/client-connectparticipant/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ConnectParticipantExtensionConfiguration } from "./extensionConfiguration"; +import type { ConnectParticipantExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-connectparticipant/src/schemas/schemas_0.ts b/clients/client-connectparticipant/src/schemas/schemas_0.ts index 3d1a7014c6f15..74755b5f77a51 100644 --- a/clients/client-connectparticipant/src/schemas/schemas_0.ts +++ b/clients/client-connectparticipant/src/schemas/schemas_0.ts @@ -136,7 +136,7 @@ const n0 = "com.amazonaws.connectparticipant"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-controlcatalog/package.json b/clients/client-controlcatalog/package.json index d79a47f9b87b8..a216bbd4fd1d3 100644 --- a/clients/client-controlcatalog/package.json +++ b/clients/client-controlcatalog/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-controlcatalog/src/ControlCatalog.ts b/clients/client-controlcatalog/src/ControlCatalog.ts index 5632640c20de0..2476374e33714 100644 --- a/clients/client-controlcatalog/src/ControlCatalog.ts +++ b/clients/client-controlcatalog/src/ControlCatalog.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetControlCommand, GetControlCommandInput, GetControlCommandOutput } from "./commands/GetControlCommand"; import { @@ -24,7 +24,7 @@ import { ListObjectivesCommandInput, ListObjectivesCommandOutput, } from "./commands/ListObjectivesCommand"; -import { ControlCatalogClient, ControlCatalogClientConfig } from "./ControlCatalogClient"; +import { ControlCatalogClient } from "./ControlCatalogClient"; const commands = { GetControlCommand, diff --git a/clients/client-controlcatalog/src/ControlCatalogClient.ts b/clients/client-controlcatalog/src/ControlCatalogClient.ts index a87423eea44f7..d1e515baecc20 100644 --- a/clients/client-controlcatalog/src/ControlCatalogClient.ts +++ b/clients/client-controlcatalog/src/ControlCatalogClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultControlCatalogHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetControlCommandInput, GetControlCommandOutput } from "./commands/GetControlCommand"; @@ -73,7 +82,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-controlcatalog/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-controlcatalog/src/auth/httpAuthExtensionConfiguration.ts index 41d86c2ae68d5..a83f95099c5ea 100644 --- a/clients/client-controlcatalog/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-controlcatalog/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ControlCatalogHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ControlCatalogHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-controlcatalog/src/auth/httpAuthSchemeProvider.ts b/clients/client-controlcatalog/src/auth/httpAuthSchemeProvider.ts index c6619d81865be..8ee828599fde5 100644 --- a/clients/client-controlcatalog/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-controlcatalog/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ControlCatalogClientConfig, ControlCatalogClientResolvedConfig } from "../ControlCatalogClient"; +import { type ControlCatalogClientResolvedConfig, ControlCatalogClientConfig } from "../ControlCatalogClient"; /** * @internal diff --git a/clients/client-controlcatalog/src/commands/GetControlCommand.ts b/clients/client-controlcatalog/src/commands/GetControlCommand.ts index 07448a2a90cf4..1151f131f5ebc 100644 --- a/clients/client-controlcatalog/src/commands/GetControlCommand.ts +++ b/clients/client-controlcatalog/src/commands/GetControlCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient"; +import type { + ControlCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ControlCatalogClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetControlRequest, GetControlResponse } from "../models/models_0"; +import type { GetControlRequest, GetControlResponse } from "../models/models_0"; import { GetControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-controlcatalog/src/commands/ListCommonControlsCommand.ts b/clients/client-controlcatalog/src/commands/ListCommonControlsCommand.ts index 0a9ad1d1885fe..1655712196ce2 100644 --- a/clients/client-controlcatalog/src/commands/ListCommonControlsCommand.ts +++ b/clients/client-controlcatalog/src/commands/ListCommonControlsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient"; +import type { + ControlCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ControlCatalogClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCommonControlsRequest, ListCommonControlsResponse } from "../models/models_0"; +import type { ListCommonControlsRequest, ListCommonControlsResponse } from "../models/models_0"; import { ListCommonControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-controlcatalog/src/commands/ListControlMappingsCommand.ts b/clients/client-controlcatalog/src/commands/ListControlMappingsCommand.ts index 509d51f0e1205..4958f26251d63 100644 --- a/clients/client-controlcatalog/src/commands/ListControlMappingsCommand.ts +++ b/clients/client-controlcatalog/src/commands/ListControlMappingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient"; +import type { + ControlCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ControlCatalogClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListControlMappingsRequest, ListControlMappingsResponse } from "../models/models_0"; +import type { ListControlMappingsRequest, ListControlMappingsResponse } from "../models/models_0"; import { ListControlMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-controlcatalog/src/commands/ListControlsCommand.ts b/clients/client-controlcatalog/src/commands/ListControlsCommand.ts index 09aedc4f5ea24..b7ffcc5cbeac9 100644 --- a/clients/client-controlcatalog/src/commands/ListControlsCommand.ts +++ b/clients/client-controlcatalog/src/commands/ListControlsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient"; +import type { + ControlCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ControlCatalogClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListControlsRequest, ListControlsResponse } from "../models/models_0"; +import type { ListControlsRequest, ListControlsResponse } from "../models/models_0"; import { ListControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-controlcatalog/src/commands/ListDomainsCommand.ts b/clients/client-controlcatalog/src/commands/ListDomainsCommand.ts index 5f7022ed30fe9..8df849d22f9b8 100644 --- a/clients/client-controlcatalog/src/commands/ListDomainsCommand.ts +++ b/clients/client-controlcatalog/src/commands/ListDomainsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient"; +import type { + ControlCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ControlCatalogClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; +import type { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; import { ListDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-controlcatalog/src/commands/ListObjectivesCommand.ts b/clients/client-controlcatalog/src/commands/ListObjectivesCommand.ts index febe2e4beb750..b8405561d2bfd 100644 --- a/clients/client-controlcatalog/src/commands/ListObjectivesCommand.ts +++ b/clients/client-controlcatalog/src/commands/ListObjectivesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlCatalogClient"; +import type { + ControlCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ControlCatalogClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectivesRequest, ListObjectivesResponse } from "../models/models_0"; +import type { ListObjectivesRequest, ListObjectivesResponse } from "../models/models_0"; import { ListObjectives } from "../schemas/schemas_0"; /** diff --git a/clients/client-controlcatalog/src/endpoint/EndpointParameters.ts b/clients/client-controlcatalog/src/endpoint/EndpointParameters.ts index db35594dfb9ee..bb8a2379e83de 100644 --- a/clients/client-controlcatalog/src/endpoint/EndpointParameters.ts +++ b/clients/client-controlcatalog/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-controlcatalog/src/endpoint/endpointResolver.ts b/clients/client-controlcatalog/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-controlcatalog/src/endpoint/endpointResolver.ts +++ b/clients/client-controlcatalog/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-controlcatalog/src/extensionConfiguration.ts b/clients/client-controlcatalog/src/extensionConfiguration.ts index afc3e2a63e3e1..abbdabf0dff16 100644 --- a/clients/client-controlcatalog/src/extensionConfiguration.ts +++ b/clients/client-controlcatalog/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-controlcatalog/src/models/ControlCatalogServiceException.ts b/clients/client-controlcatalog/src/models/ControlCatalogServiceException.ts index ab563ad844b2e..d04fb1f2cc163 100644 --- a/clients/client-controlcatalog/src/models/ControlCatalogServiceException.ts +++ b/clients/client-controlcatalog/src/models/ControlCatalogServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-controlcatalog/src/models/errors.ts b/clients/client-controlcatalog/src/models/errors.ts index cf411d1c636cc..febe7e134441e 100644 --- a/clients/client-controlcatalog/src/models/errors.ts +++ b/clients/client-controlcatalog/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ControlCatalogServiceException as __BaseException } from "./ControlCatalogServiceException"; diff --git a/clients/client-controlcatalog/src/pagination/Interfaces.ts b/clients/client-controlcatalog/src/pagination/Interfaces.ts index 9a1c095d769cc..db56c0c006169 100644 --- a/clients/client-controlcatalog/src/pagination/Interfaces.ts +++ b/clients/client-controlcatalog/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ControlCatalogClient } from "../ControlCatalogClient"; diff --git a/clients/client-controlcatalog/src/pagination/ListCommonControlsPaginator.ts b/clients/client-controlcatalog/src/pagination/ListCommonControlsPaginator.ts index a7632a4d6dbd1..65825c63d684f 100644 --- a/clients/client-controlcatalog/src/pagination/ListCommonControlsPaginator.ts +++ b/clients/client-controlcatalog/src/pagination/ListCommonControlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCommonControlsCommand, diff --git a/clients/client-controlcatalog/src/pagination/ListControlMappingsPaginator.ts b/clients/client-controlcatalog/src/pagination/ListControlMappingsPaginator.ts index 6cb1f442380da..55922ced01074 100644 --- a/clients/client-controlcatalog/src/pagination/ListControlMappingsPaginator.ts +++ b/clients/client-controlcatalog/src/pagination/ListControlMappingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListControlMappingsCommand, diff --git a/clients/client-controlcatalog/src/pagination/ListControlsPaginator.ts b/clients/client-controlcatalog/src/pagination/ListControlsPaginator.ts index edd7e26c9c8d1..aed9a2c1dd89e 100644 --- a/clients/client-controlcatalog/src/pagination/ListControlsPaginator.ts +++ b/clients/client-controlcatalog/src/pagination/ListControlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListControlsCommand, diff --git a/clients/client-controlcatalog/src/pagination/ListDomainsPaginator.ts b/clients/client-controlcatalog/src/pagination/ListDomainsPaginator.ts index dd6979c363742..0a55000cd9764 100644 --- a/clients/client-controlcatalog/src/pagination/ListDomainsPaginator.ts +++ b/clients/client-controlcatalog/src/pagination/ListDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainsCommand, ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand"; import { ControlCatalogClient } from "../ControlCatalogClient"; diff --git a/clients/client-controlcatalog/src/pagination/ListObjectivesPaginator.ts b/clients/client-controlcatalog/src/pagination/ListObjectivesPaginator.ts index 6cb706c8e5293..02cc8eafcb6ec 100644 --- a/clients/client-controlcatalog/src/pagination/ListObjectivesPaginator.ts +++ b/clients/client-controlcatalog/src/pagination/ListObjectivesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListObjectivesCommand, diff --git a/clients/client-controlcatalog/src/runtimeConfig.browser.ts b/clients/client-controlcatalog/src/runtimeConfig.browser.ts index 3bd4d9b248b8d..d5d4d433ddf2d 100644 --- a/clients/client-controlcatalog/src/runtimeConfig.browser.ts +++ b/clients/client-controlcatalog/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ControlCatalogClientConfig } from "./ControlCatalogClient"; + +import type { ControlCatalogClientConfig } from "./ControlCatalogClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-controlcatalog/src/runtimeConfig.native.ts b/clients/client-controlcatalog/src/runtimeConfig.native.ts index 62ec985f57d0f..ba5f2c17f503f 100644 --- a/clients/client-controlcatalog/src/runtimeConfig.native.ts +++ b/clients/client-controlcatalog/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ControlCatalogClientConfig } from "./ControlCatalogClient"; +import type { ControlCatalogClientConfig } from "./ControlCatalogClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-controlcatalog/src/runtimeConfig.shared.ts b/clients/client-controlcatalog/src/runtimeConfig.shared.ts index f495a15fc0fee..75464640c4478 100644 --- a/clients/client-controlcatalog/src/runtimeConfig.shared.ts +++ b/clients/client-controlcatalog/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultControlCatalogHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ControlCatalogClientConfig } from "./ControlCatalogClient"; +import type { ControlCatalogClientConfig } from "./ControlCatalogClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-controlcatalog/src/runtimeConfig.ts b/clients/client-controlcatalog/src/runtimeConfig.ts index 0573469d5a455..45db7359c0e8b 100644 --- a/clients/client-controlcatalog/src/runtimeConfig.ts +++ b/clients/client-controlcatalog/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ControlCatalogClientConfig } from "./ControlCatalogClient"; + +import type { ControlCatalogClientConfig } from "./ControlCatalogClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-controlcatalog/src/runtimeExtensions.ts b/clients/client-controlcatalog/src/runtimeExtensions.ts index bbe0fd5a4f392..f7f2cea0e07df 100644 --- a/clients/client-controlcatalog/src/runtimeExtensions.ts +++ b/clients/client-controlcatalog/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ControlCatalogExtensionConfiguration } from "./extensionConfiguration"; +import type { ControlCatalogExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-controlcatalog/src/schemas/schemas_0.ts b/clients/client-controlcatalog/src/schemas/schemas_0.ts index e5175197ff8ea..3386841feac5f 100644 --- a/clients/client-controlcatalog/src/schemas/schemas_0.ts +++ b/clients/client-controlcatalog/src/schemas/schemas_0.ts @@ -102,7 +102,7 @@ const n0 = "com.amazonaws.controlcatalog"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ControlCatalogServiceException as __ControlCatalogServiceException } from "../models/ControlCatalogServiceException"; import { diff --git a/clients/client-controltower/package.json b/clients/client-controltower/package.json index b363efe803e0d..ee7ddf7288768 100644 --- a/clients/client-controltower/package.json +++ b/clients/client-controltower/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-controltower/src/ControlTower.ts b/clients/client-controltower/src/ControlTower.ts index c933fc961f376..f14546a8f8e1e 100644 --- a/clients/client-controltower/src/ControlTower.ts +++ b/clients/client-controltower/src/ControlTower.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateLandingZoneCommand, @@ -134,7 +134,7 @@ import { UpdateLandingZoneCommandInput, UpdateLandingZoneCommandOutput, } from "./commands/UpdateLandingZoneCommand"; -import { ControlTowerClient, ControlTowerClientConfig } from "./ControlTowerClient"; +import { ControlTowerClient } from "./ControlTowerClient"; const commands = { CreateLandingZoneCommand, diff --git a/clients/client-controltower/src/ControlTowerClient.ts b/clients/client-controltower/src/ControlTowerClient.ts index a83603a4037bd..da9db27097e36 100644 --- a/clients/client-controltower/src/ControlTowerClient.ts +++ b/clients/client-controltower/src/ControlTowerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultControlTowerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateLandingZoneCommandInput, CreateLandingZoneCommandOutput } from "./commands/CreateLandingZoneCommand"; @@ -128,7 +137,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-controltower/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-controltower/src/auth/httpAuthExtensionConfiguration.ts index b33bce860f363..9e40f33747c36 100644 --- a/clients/client-controltower/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-controltower/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ControlTowerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ControlTowerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-controltower/src/auth/httpAuthSchemeProvider.ts b/clients/client-controltower/src/auth/httpAuthSchemeProvider.ts index 42d0e381d665c..602dba0dfda09 100644 --- a/clients/client-controltower/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-controltower/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ControlTowerClientConfig, ControlTowerClientResolvedConfig } from "../ControlTowerClient"; +import { type ControlTowerClientResolvedConfig, ControlTowerClientConfig } from "../ControlTowerClient"; /** * @internal diff --git a/clients/client-controltower/src/commands/CreateLandingZoneCommand.ts b/clients/client-controltower/src/commands/CreateLandingZoneCommand.ts index 215d9b6b168b5..0fc21402de21a 100644 --- a/clients/client-controltower/src/commands/CreateLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/CreateLandingZoneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLandingZoneInput, CreateLandingZoneOutput } from "../models/models_0"; +import type { CreateLandingZoneInput, CreateLandingZoneOutput } from "../models/models_0"; import { CreateLandingZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/DeleteLandingZoneCommand.ts b/clients/client-controltower/src/commands/DeleteLandingZoneCommand.ts index 2b98cde10f42c..7c806bc57dcc4 100644 --- a/clients/client-controltower/src/commands/DeleteLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/DeleteLandingZoneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLandingZoneInput, DeleteLandingZoneOutput } from "../models/models_0"; +import type { DeleteLandingZoneInput, DeleteLandingZoneOutput } from "../models/models_0"; import { DeleteLandingZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/DisableBaselineCommand.ts b/clients/client-controltower/src/commands/DisableBaselineCommand.ts index 62e475635c6bc..2e073a66ce6a3 100644 --- a/clients/client-controltower/src/commands/DisableBaselineCommand.ts +++ b/clients/client-controltower/src/commands/DisableBaselineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableBaselineInput, DisableBaselineOutput } from "../models/models_0"; +import type { DisableBaselineInput, DisableBaselineOutput } from "../models/models_0"; import { DisableBaseline } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/DisableControlCommand.ts b/clients/client-controltower/src/commands/DisableControlCommand.ts index 6ae67f1f54190..808f9a9d95321 100644 --- a/clients/client-controltower/src/commands/DisableControlCommand.ts +++ b/clients/client-controltower/src/commands/DisableControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableControlInput, DisableControlOutput } from "../models/models_0"; +import type { DisableControlInput, DisableControlOutput } from "../models/models_0"; import { DisableControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/EnableBaselineCommand.ts b/clients/client-controltower/src/commands/EnableBaselineCommand.ts index 31d0f149a9cb3..d06f29b4e54a5 100644 --- a/clients/client-controltower/src/commands/EnableBaselineCommand.ts +++ b/clients/client-controltower/src/commands/EnableBaselineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableBaselineInput, EnableBaselineOutput } from "../models/models_0"; +import type { EnableBaselineInput, EnableBaselineOutput } from "../models/models_0"; import { EnableBaseline } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/EnableControlCommand.ts b/clients/client-controltower/src/commands/EnableControlCommand.ts index cd5ea36adfc14..f03ac58ce1893 100644 --- a/clients/client-controltower/src/commands/EnableControlCommand.ts +++ b/clients/client-controltower/src/commands/EnableControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableControlInput, EnableControlOutput } from "../models/models_0"; +import type { EnableControlInput, EnableControlOutput } from "../models/models_0"; import { EnableControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/GetBaselineCommand.ts b/clients/client-controltower/src/commands/GetBaselineCommand.ts index 5e9f78bc5f73a..4b9140ecae516 100644 --- a/clients/client-controltower/src/commands/GetBaselineCommand.ts +++ b/clients/client-controltower/src/commands/GetBaselineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBaselineInput, GetBaselineOutput } from "../models/models_0"; +import type { GetBaselineInput, GetBaselineOutput } from "../models/models_0"; import { GetBaseline } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/GetBaselineOperationCommand.ts b/clients/client-controltower/src/commands/GetBaselineOperationCommand.ts index 005818a19c2bf..156aa2a7f5f78 100644 --- a/clients/client-controltower/src/commands/GetBaselineOperationCommand.ts +++ b/clients/client-controltower/src/commands/GetBaselineOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBaselineOperationInput, GetBaselineOperationOutput } from "../models/models_0"; +import type { GetBaselineOperationInput, GetBaselineOperationOutput } from "../models/models_0"; import { GetBaselineOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/GetControlOperationCommand.ts b/clients/client-controltower/src/commands/GetControlOperationCommand.ts index 296e1eabf4f90..734cd872ee0f6 100644 --- a/clients/client-controltower/src/commands/GetControlOperationCommand.ts +++ b/clients/client-controltower/src/commands/GetControlOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetControlOperationInput, GetControlOperationOutput } from "../models/models_0"; +import type { GetControlOperationInput, GetControlOperationOutput } from "../models/models_0"; import { GetControlOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/GetEnabledBaselineCommand.ts b/clients/client-controltower/src/commands/GetEnabledBaselineCommand.ts index 3715b3ccd1cec..08336fadffff3 100644 --- a/clients/client-controltower/src/commands/GetEnabledBaselineCommand.ts +++ b/clients/client-controltower/src/commands/GetEnabledBaselineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnabledBaselineInput, GetEnabledBaselineOutput } from "../models/models_0"; +import type { GetEnabledBaselineInput, GetEnabledBaselineOutput } from "../models/models_0"; import { GetEnabledBaseline } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/GetEnabledControlCommand.ts b/clients/client-controltower/src/commands/GetEnabledControlCommand.ts index a9c6bc8ee7dc7..e7b1dc84a1aed 100644 --- a/clients/client-controltower/src/commands/GetEnabledControlCommand.ts +++ b/clients/client-controltower/src/commands/GetEnabledControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnabledControlInput, GetEnabledControlOutput } from "../models/models_0"; +import type { GetEnabledControlInput, GetEnabledControlOutput } from "../models/models_0"; import { GetEnabledControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/GetLandingZoneCommand.ts b/clients/client-controltower/src/commands/GetLandingZoneCommand.ts index 9477c7ff93d03..4a7eb6b3b40b3 100644 --- a/clients/client-controltower/src/commands/GetLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/GetLandingZoneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLandingZoneInput, GetLandingZoneOutput } from "../models/models_0"; +import type { GetLandingZoneInput, GetLandingZoneOutput } from "../models/models_0"; import { GetLandingZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/GetLandingZoneOperationCommand.ts b/clients/client-controltower/src/commands/GetLandingZoneOperationCommand.ts index cf6e4d8cb26b6..8a64e7b680d7f 100644 --- a/clients/client-controltower/src/commands/GetLandingZoneOperationCommand.ts +++ b/clients/client-controltower/src/commands/GetLandingZoneOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLandingZoneOperationInput, GetLandingZoneOperationOutput } from "../models/models_0"; +import type { GetLandingZoneOperationInput, GetLandingZoneOperationOutput } from "../models/models_0"; import { GetLandingZoneOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ListBaselinesCommand.ts b/clients/client-controltower/src/commands/ListBaselinesCommand.ts index 6fcf89921dafd..954135e1486aa 100644 --- a/clients/client-controltower/src/commands/ListBaselinesCommand.ts +++ b/clients/client-controltower/src/commands/ListBaselinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBaselinesInput, ListBaselinesOutput } from "../models/models_0"; +import type { ListBaselinesInput, ListBaselinesOutput } from "../models/models_0"; import { ListBaselines } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ListControlOperationsCommand.ts b/clients/client-controltower/src/commands/ListControlOperationsCommand.ts index b5507062890e8..dbee97e890416 100644 --- a/clients/client-controltower/src/commands/ListControlOperationsCommand.ts +++ b/clients/client-controltower/src/commands/ListControlOperationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListControlOperationsInput, ListControlOperationsOutput } from "../models/models_0"; +import type { ListControlOperationsInput, ListControlOperationsOutput } from "../models/models_0"; import { ListControlOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ListEnabledBaselinesCommand.ts b/clients/client-controltower/src/commands/ListEnabledBaselinesCommand.ts index 763bf17b5bf11..4b505d1b2b804 100644 --- a/clients/client-controltower/src/commands/ListEnabledBaselinesCommand.ts +++ b/clients/client-controltower/src/commands/ListEnabledBaselinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnabledBaselinesInput, ListEnabledBaselinesOutput } from "../models/models_0"; +import type { ListEnabledBaselinesInput, ListEnabledBaselinesOutput } from "../models/models_0"; import { ListEnabledBaselines } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts b/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts index 59b50f876fc39..d6bad2784b0cc 100644 --- a/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts +++ b/clients/client-controltower/src/commands/ListEnabledControlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnabledControlsInput, ListEnabledControlsOutput } from "../models/models_0"; +import type { ListEnabledControlsInput, ListEnabledControlsOutput } from "../models/models_0"; import { ListEnabledControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ListLandingZoneOperationsCommand.ts b/clients/client-controltower/src/commands/ListLandingZoneOperationsCommand.ts index ab5b03b5740aa..0f92efe5e2b6f 100644 --- a/clients/client-controltower/src/commands/ListLandingZoneOperationsCommand.ts +++ b/clients/client-controltower/src/commands/ListLandingZoneOperationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLandingZoneOperationsInput, ListLandingZoneOperationsOutput } from "../models/models_0"; +import type { ListLandingZoneOperationsInput, ListLandingZoneOperationsOutput } from "../models/models_0"; import { ListLandingZoneOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ListLandingZonesCommand.ts b/clients/client-controltower/src/commands/ListLandingZonesCommand.ts index 55466cfa51add..d1883ee811295 100644 --- a/clients/client-controltower/src/commands/ListLandingZonesCommand.ts +++ b/clients/client-controltower/src/commands/ListLandingZonesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLandingZonesInput, ListLandingZonesOutput } from "../models/models_0"; +import type { ListLandingZonesInput, ListLandingZonesOutput } from "../models/models_0"; import { ListLandingZones } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ListTagsForResourceCommand.ts b/clients/client-controltower/src/commands/ListTagsForResourceCommand.ts index 47ce6a3d2c3f2..4131dc2d6699e 100644 --- a/clients/client-controltower/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-controltower/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ResetEnabledBaselineCommand.ts b/clients/client-controltower/src/commands/ResetEnabledBaselineCommand.ts index 9afd49caaca1d..f92f5e66c9092 100644 --- a/clients/client-controltower/src/commands/ResetEnabledBaselineCommand.ts +++ b/clients/client-controltower/src/commands/ResetEnabledBaselineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetEnabledBaselineInput, ResetEnabledBaselineOutput } from "../models/models_0"; +import type { ResetEnabledBaselineInput, ResetEnabledBaselineOutput } from "../models/models_0"; import { ResetEnabledBaseline } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ResetEnabledControlCommand.ts b/clients/client-controltower/src/commands/ResetEnabledControlCommand.ts index 83427a904d63b..e22a7ee5f6698 100644 --- a/clients/client-controltower/src/commands/ResetEnabledControlCommand.ts +++ b/clients/client-controltower/src/commands/ResetEnabledControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetEnabledControlInput, ResetEnabledControlOutput } from "../models/models_0"; +import type { ResetEnabledControlInput, ResetEnabledControlOutput } from "../models/models_0"; import { ResetEnabledControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/ResetLandingZoneCommand.ts b/clients/client-controltower/src/commands/ResetLandingZoneCommand.ts index cff366976e7d5..8d59786a232c5 100644 --- a/clients/client-controltower/src/commands/ResetLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/ResetLandingZoneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetLandingZoneInput, ResetLandingZoneOutput } from "../models/models_0"; +import type { ResetLandingZoneInput, ResetLandingZoneOutput } from "../models/models_0"; import { ResetLandingZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/TagResourceCommand.ts b/clients/client-controltower/src/commands/TagResourceCommand.ts index bf76912a9efc9..815d5846062ca 100644 --- a/clients/client-controltower/src/commands/TagResourceCommand.ts +++ b/clients/client-controltower/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/UntagResourceCommand.ts b/clients/client-controltower/src/commands/UntagResourceCommand.ts index 8e74a34a89fc5..d6d9b6a90c143 100644 --- a/clients/client-controltower/src/commands/UntagResourceCommand.ts +++ b/clients/client-controltower/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/UpdateEnabledBaselineCommand.ts b/clients/client-controltower/src/commands/UpdateEnabledBaselineCommand.ts index 99259d73d0624..a8158c317f0af 100644 --- a/clients/client-controltower/src/commands/UpdateEnabledBaselineCommand.ts +++ b/clients/client-controltower/src/commands/UpdateEnabledBaselineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnabledBaselineInput, UpdateEnabledBaselineOutput } from "../models/models_0"; +import type { UpdateEnabledBaselineInput, UpdateEnabledBaselineOutput } from "../models/models_0"; import { UpdateEnabledBaseline } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/UpdateEnabledControlCommand.ts b/clients/client-controltower/src/commands/UpdateEnabledControlCommand.ts index 754dfe3bde2ed..bd1dea63d5cac 100644 --- a/clients/client-controltower/src/commands/UpdateEnabledControlCommand.ts +++ b/clients/client-controltower/src/commands/UpdateEnabledControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnabledControlInput, UpdateEnabledControlOutput } from "../models/models_0"; +import type { UpdateEnabledControlInput, UpdateEnabledControlOutput } from "../models/models_0"; import { UpdateEnabledControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/commands/UpdateLandingZoneCommand.ts b/clients/client-controltower/src/commands/UpdateLandingZoneCommand.ts index 70bfb60c49e5a..5c09e9e0d5113 100644 --- a/clients/client-controltower/src/commands/UpdateLandingZoneCommand.ts +++ b/clients/client-controltower/src/commands/UpdateLandingZoneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; +import type { ControlTowerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ControlTowerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLandingZoneInput, UpdateLandingZoneOutput } from "../models/models_0"; +import type { UpdateLandingZoneInput, UpdateLandingZoneOutput } from "../models/models_0"; import { UpdateLandingZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-controltower/src/endpoint/EndpointParameters.ts b/clients/client-controltower/src/endpoint/EndpointParameters.ts index 31b2c308b9cc7..b98760bf9bcb3 100644 --- a/clients/client-controltower/src/endpoint/EndpointParameters.ts +++ b/clients/client-controltower/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-controltower/src/endpoint/endpointResolver.ts b/clients/client-controltower/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-controltower/src/endpoint/endpointResolver.ts +++ b/clients/client-controltower/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-controltower/src/extensionConfiguration.ts b/clients/client-controltower/src/extensionConfiguration.ts index 6c2a77f4588fe..11cacd7adc283 100644 --- a/clients/client-controltower/src/extensionConfiguration.ts +++ b/clients/client-controltower/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-controltower/src/models/ControlTowerServiceException.ts b/clients/client-controltower/src/models/ControlTowerServiceException.ts index 4e21a416f4945..bb7127abcc837 100644 --- a/clients/client-controltower/src/models/ControlTowerServiceException.ts +++ b/clients/client-controltower/src/models/ControlTowerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-controltower/src/models/errors.ts b/clients/client-controltower/src/models/errors.ts index c1a37c85bcec4..d14375fd988b3 100644 --- a/clients/client-controltower/src/models/errors.ts +++ b/clients/client-controltower/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ControlTowerServiceException as __BaseException } from "./ControlTowerServiceException"; diff --git a/clients/client-controltower/src/pagination/Interfaces.ts b/clients/client-controltower/src/pagination/Interfaces.ts index 18c0b9f01ec7a..75dca66f0e89a 100644 --- a/clients/client-controltower/src/pagination/Interfaces.ts +++ b/clients/client-controltower/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ControlTowerClient } from "../ControlTowerClient"; diff --git a/clients/client-controltower/src/pagination/ListBaselinesPaginator.ts b/clients/client-controltower/src/pagination/ListBaselinesPaginator.ts index 8a47fd7259829..ab9bf9cc88b91 100644 --- a/clients/client-controltower/src/pagination/ListBaselinesPaginator.ts +++ b/clients/client-controltower/src/pagination/ListBaselinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBaselinesCommand, diff --git a/clients/client-controltower/src/pagination/ListControlOperationsPaginator.ts b/clients/client-controltower/src/pagination/ListControlOperationsPaginator.ts index 23de1713d1bed..229507f6c2698 100644 --- a/clients/client-controltower/src/pagination/ListControlOperationsPaginator.ts +++ b/clients/client-controltower/src/pagination/ListControlOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListControlOperationsCommand, diff --git a/clients/client-controltower/src/pagination/ListEnabledBaselinesPaginator.ts b/clients/client-controltower/src/pagination/ListEnabledBaselinesPaginator.ts index 6efa2105b22eb..15750bd8f0044 100644 --- a/clients/client-controltower/src/pagination/ListEnabledBaselinesPaginator.ts +++ b/clients/client-controltower/src/pagination/ListEnabledBaselinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnabledBaselinesCommand, diff --git a/clients/client-controltower/src/pagination/ListEnabledControlsPaginator.ts b/clients/client-controltower/src/pagination/ListEnabledControlsPaginator.ts index b39beab2c1580..60318a8041f1a 100644 --- a/clients/client-controltower/src/pagination/ListEnabledControlsPaginator.ts +++ b/clients/client-controltower/src/pagination/ListEnabledControlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnabledControlsCommand, diff --git a/clients/client-controltower/src/pagination/ListLandingZoneOperationsPaginator.ts b/clients/client-controltower/src/pagination/ListLandingZoneOperationsPaginator.ts index 3afa44dde3884..c45a2a3cc8e4f 100644 --- a/clients/client-controltower/src/pagination/ListLandingZoneOperationsPaginator.ts +++ b/clients/client-controltower/src/pagination/ListLandingZoneOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLandingZoneOperationsCommand, diff --git a/clients/client-controltower/src/pagination/ListLandingZonesPaginator.ts b/clients/client-controltower/src/pagination/ListLandingZonesPaginator.ts index 56235dff1e771..1bec24d0ad57e 100644 --- a/clients/client-controltower/src/pagination/ListLandingZonesPaginator.ts +++ b/clients/client-controltower/src/pagination/ListLandingZonesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLandingZonesCommand, diff --git a/clients/client-controltower/src/runtimeConfig.browser.ts b/clients/client-controltower/src/runtimeConfig.browser.ts index 6278e4502e9cf..692a9718cd08c 100644 --- a/clients/client-controltower/src/runtimeConfig.browser.ts +++ b/clients/client-controltower/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ControlTowerClientConfig } from "./ControlTowerClient"; + +import type { ControlTowerClientConfig } from "./ControlTowerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-controltower/src/runtimeConfig.native.ts b/clients/client-controltower/src/runtimeConfig.native.ts index e7c68dcfba422..baef7655a1688 100644 --- a/clients/client-controltower/src/runtimeConfig.native.ts +++ b/clients/client-controltower/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ControlTowerClientConfig } from "./ControlTowerClient"; +import type { ControlTowerClientConfig } from "./ControlTowerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-controltower/src/runtimeConfig.shared.ts b/clients/client-controltower/src/runtimeConfig.shared.ts index 371459eec2661..d9327c75ddda2 100644 --- a/clients/client-controltower/src/runtimeConfig.shared.ts +++ b/clients/client-controltower/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultControlTowerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ControlTowerClientConfig } from "./ControlTowerClient"; +import type { ControlTowerClientConfig } from "./ControlTowerClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-controltower/src/runtimeConfig.ts b/clients/client-controltower/src/runtimeConfig.ts index 92214b9aa4ed6..aa745d4b3b6fd 100644 --- a/clients/client-controltower/src/runtimeConfig.ts +++ b/clients/client-controltower/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ControlTowerClientConfig } from "./ControlTowerClient"; + +import type { ControlTowerClientConfig } from "./ControlTowerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-controltower/src/runtimeExtensions.ts b/clients/client-controltower/src/runtimeExtensions.ts index 956b80b0b9003..d9aecf1777c6f 100644 --- a/clients/client-controltower/src/runtimeExtensions.ts +++ b/clients/client-controltower/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ControlTowerExtensionConfiguration } from "./extensionConfiguration"; +import type { ControlTowerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-controltower/src/schemas/schemas_0.ts b/clients/client-controltower/src/schemas/schemas_0.ts index 95162d1632851..54b3ec310046d 100644 --- a/clients/client-controltower/src/schemas/schemas_0.ts +++ b/clients/client-controltower/src/schemas/schemas_0.ts @@ -208,7 +208,7 @@ const n0 = "com.amazonaws.controltower"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cost-and-usage-report-service/package.json b/clients/client-cost-and-usage-report-service/package.json index 65df91776b5ac..6ccbe1bc828f0 100644 --- a/clients/client-cost-and-usage-report-service/package.json +++ b/clients/client-cost-and-usage-report-service/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cost-and-usage-report-service/src/CostAndUsageReportService.ts b/clients/client-cost-and-usage-report-service/src/CostAndUsageReportService.ts index fcce2978f795b..350ab0b55fc23 100644 --- a/clients/client-cost-and-usage-report-service/src/CostAndUsageReportService.ts +++ b/clients/client-cost-and-usage-report-service/src/CostAndUsageReportService.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteReportDefinitionCommand, @@ -33,10 +33,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { - CostAndUsageReportServiceClient, - CostAndUsageReportServiceClientConfig, -} from "./CostAndUsageReportServiceClient"; +import { CostAndUsageReportServiceClient } from "./CostAndUsageReportServiceClient"; const commands = { DeleteReportDefinitionCommand, diff --git a/clients/client-cost-and-usage-report-service/src/CostAndUsageReportServiceClient.ts b/clients/client-cost-and-usage-report-service/src/CostAndUsageReportServiceClient.ts index 9f6bdddaa8a6a..c573f1906633a 100644 --- a/clients/client-cost-and-usage-report-service/src/CostAndUsageReportServiceClient.ts +++ b/clients/client-cost-and-usage-report-service/src/CostAndUsageReportServiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCostAndUsageReportServiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -86,7 +95,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cost-and-usage-report-service/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cost-and-usage-report-service/src/auth/httpAuthExtensionConfiguration.ts index 3f4d39b9dc89f..5fccbf70f5934 100644 --- a/clients/client-cost-and-usage-report-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cost-and-usage-report-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CostAndUsageReportServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CostAndUsageReportServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cost-and-usage-report-service/src/auth/httpAuthSchemeProvider.ts b/clients/client-cost-and-usage-report-service/src/auth/httpAuthSchemeProvider.ts index c3f884f357c73..f1cee1d39de4f 100644 --- a/clients/client-cost-and-usage-report-service/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cost-and-usage-report-service/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type CostAndUsageReportServiceClientResolvedConfig, CostAndUsageReportServiceClientConfig, - CostAndUsageReportServiceClientResolvedConfig, } from "../CostAndUsageReportServiceClient"; /** diff --git a/clients/client-cost-and-usage-report-service/src/commands/DeleteReportDefinitionCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/DeleteReportDefinitionCommand.ts index c6e2ac3c232bd..ef5150ca22918 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/DeleteReportDefinitionCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/DeleteReportDefinitionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostAndUsageReportServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReportDefinitionRequest, DeleteReportDefinitionResponse } from "../models/models_0"; +import type { DeleteReportDefinitionRequest, DeleteReportDefinitionResponse } from "../models/models_0"; import { DeleteReportDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-and-usage-report-service/src/commands/DescribeReportDefinitionsCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/DescribeReportDefinitionsCommand.ts index 553feb13ca52c..ec136cb32b77d 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/DescribeReportDefinitionsCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/DescribeReportDefinitionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostAndUsageReportServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReportDefinitionsRequest, DescribeReportDefinitionsResponse } from "../models/models_0"; +import type { DescribeReportDefinitionsRequest, DescribeReportDefinitionsResponse } from "../models/models_0"; import { DescribeReportDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-and-usage-report-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/ListTagsForResourceCommand.ts index f1abe9feadd83..15eaed5d45c03 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostAndUsageReportServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-and-usage-report-service/src/commands/ModifyReportDefinitionCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/ModifyReportDefinitionCommand.ts index 185ce6b18558d..f953c04964fee 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/ModifyReportDefinitionCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/ModifyReportDefinitionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostAndUsageReportServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyReportDefinitionRequest, ModifyReportDefinitionResponse } from "../models/models_0"; +import type { ModifyReportDefinitionRequest, ModifyReportDefinitionResponse } from "../models/models_0"; import { ModifyReportDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-and-usage-report-service/src/commands/PutReportDefinitionCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/PutReportDefinitionCommand.ts index 0398bcbc0e58f..c45eaa4d33756 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/PutReportDefinitionCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/PutReportDefinitionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostAndUsageReportServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutReportDefinitionRequest, PutReportDefinitionResponse } from "../models/models_0"; +import type { PutReportDefinitionRequest, PutReportDefinitionResponse } from "../models/models_0"; import { PutReportDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-and-usage-report-service/src/commands/TagResourceCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/TagResourceCommand.ts index 41cb6a1575f89..14a56d1ad613a 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/TagResourceCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostAndUsageReportServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-and-usage-report-service/src/commands/UntagResourceCommand.ts b/clients/client-cost-and-usage-report-service/src/commands/UntagResourceCommand.ts index 015759898e9af..172435e2d60d0 100644 --- a/clients/client-cost-and-usage-report-service/src/commands/UntagResourceCommand.ts +++ b/clients/client-cost-and-usage-report-service/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostAndUsageReportServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostAndUsageReportServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-and-usage-report-service/src/endpoint/EndpointParameters.ts b/clients/client-cost-and-usage-report-service/src/endpoint/EndpointParameters.ts index 9fa7c2d716ad7..ac0f89f910688 100644 --- a/clients/client-cost-and-usage-report-service/src/endpoint/EndpointParameters.ts +++ b/clients/client-cost-and-usage-report-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cost-and-usage-report-service/src/endpoint/endpointResolver.ts b/clients/client-cost-and-usage-report-service/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cost-and-usage-report-service/src/endpoint/endpointResolver.ts +++ b/clients/client-cost-and-usage-report-service/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cost-and-usage-report-service/src/extensionConfiguration.ts b/clients/client-cost-and-usage-report-service/src/extensionConfiguration.ts index eb98897b1bcda..a27885a2b9f81 100644 --- a/clients/client-cost-and-usage-report-service/src/extensionConfiguration.ts +++ b/clients/client-cost-and-usage-report-service/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cost-and-usage-report-service/src/models/CostAndUsageReportServiceServiceException.ts b/clients/client-cost-and-usage-report-service/src/models/CostAndUsageReportServiceServiceException.ts index 7004832830ec0..9b196e0a197dc 100644 --- a/clients/client-cost-and-usage-report-service/src/models/CostAndUsageReportServiceServiceException.ts +++ b/clients/client-cost-and-usage-report-service/src/models/CostAndUsageReportServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cost-and-usage-report-service/src/models/errors.ts b/clients/client-cost-and-usage-report-service/src/models/errors.ts index a9b9d7197fc47..610b3d69ea2b4 100644 --- a/clients/client-cost-and-usage-report-service/src/models/errors.ts +++ b/clients/client-cost-and-usage-report-service/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CostAndUsageReportServiceServiceException as __BaseException } from "./CostAndUsageReportServiceServiceException"; diff --git a/clients/client-cost-and-usage-report-service/src/pagination/DescribeReportDefinitionsPaginator.ts b/clients/client-cost-and-usage-report-service/src/pagination/DescribeReportDefinitionsPaginator.ts index 377d350b7adca..08755808cbcdb 100644 --- a/clients/client-cost-and-usage-report-service/src/pagination/DescribeReportDefinitionsPaginator.ts +++ b/clients/client-cost-and-usage-report-service/src/pagination/DescribeReportDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReportDefinitionsCommand, diff --git a/clients/client-cost-and-usage-report-service/src/pagination/Interfaces.ts b/clients/client-cost-and-usage-report-service/src/pagination/Interfaces.ts index f0f6eaf4f566a..433fbc2aecd11 100644 --- a/clients/client-cost-and-usage-report-service/src/pagination/Interfaces.ts +++ b/clients/client-cost-and-usage-report-service/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CostAndUsageReportServiceClient } from "../CostAndUsageReportServiceClient"; diff --git a/clients/client-cost-and-usage-report-service/src/runtimeConfig.browser.ts b/clients/client-cost-and-usage-report-service/src/runtimeConfig.browser.ts index 3342995998a97..b7561716bf629 100644 --- a/clients/client-cost-and-usage-report-service/src/runtimeConfig.browser.ts +++ b/clients/client-cost-and-usage-report-service/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CostAndUsageReportServiceClientConfig } from "./CostAndUsageReportServiceClient"; + +import type { CostAndUsageReportServiceClientConfig } from "./CostAndUsageReportServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cost-and-usage-report-service/src/runtimeConfig.native.ts b/clients/client-cost-and-usage-report-service/src/runtimeConfig.native.ts index 7d8b9a060e766..02f83936a8746 100644 --- a/clients/client-cost-and-usage-report-service/src/runtimeConfig.native.ts +++ b/clients/client-cost-and-usage-report-service/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CostAndUsageReportServiceClientConfig } from "./CostAndUsageReportServiceClient"; +import type { CostAndUsageReportServiceClientConfig } from "./CostAndUsageReportServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cost-and-usage-report-service/src/runtimeConfig.shared.ts b/clients/client-cost-and-usage-report-service/src/runtimeConfig.shared.ts index efa8045d7e4ed..c427d836ac307 100644 --- a/clients/client-cost-and-usage-report-service/src/runtimeConfig.shared.ts +++ b/clients/client-cost-and-usage-report-service/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCostAndUsageReportServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CostAndUsageReportServiceClientConfig } from "./CostAndUsageReportServiceClient"; +import type { CostAndUsageReportServiceClientConfig } from "./CostAndUsageReportServiceClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cost-and-usage-report-service/src/runtimeConfig.ts b/clients/client-cost-and-usage-report-service/src/runtimeConfig.ts index 81ca15ad7a428..bdf1e694924ee 100644 --- a/clients/client-cost-and-usage-report-service/src/runtimeConfig.ts +++ b/clients/client-cost-and-usage-report-service/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CostAndUsageReportServiceClientConfig } from "./CostAndUsageReportServiceClient"; + +import type { CostAndUsageReportServiceClientConfig } from "./CostAndUsageReportServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cost-and-usage-report-service/src/runtimeExtensions.ts b/clients/client-cost-and-usage-report-service/src/runtimeExtensions.ts index 7d0cb2e4eb211..7389d301af3a7 100644 --- a/clients/client-cost-and-usage-report-service/src/runtimeExtensions.ts +++ b/clients/client-cost-and-usage-report-service/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CostAndUsageReportServiceExtensionConfiguration } from "./extensionConfiguration"; +import type { CostAndUsageReportServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cost-and-usage-report-service/src/schemas/schemas_0.ts b/clients/client-cost-and-usage-report-service/src/schemas/schemas_0.ts index 63592af1b3b65..e356179c6f14b 100644 --- a/clients/client-cost-and-usage-report-service/src/schemas/schemas_0.ts +++ b/clients/client-cost-and-usage-report-service/src/schemas/schemas_0.ts @@ -60,7 +60,7 @@ const n0 = "com.amazonaws.costandusagereportservice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { CostAndUsageReportServiceServiceException as __CostAndUsageReportServiceServiceException } from "../models/CostAndUsageReportServiceServiceException"; import { diff --git a/clients/client-cost-explorer/package.json b/clients/client-cost-explorer/package.json index bcf66be283885..b594c3a2f504a 100644 --- a/clients/client-cost-explorer/package.json +++ b/clients/client-cost-explorer/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cost-explorer/src/CostExplorer.ts b/clients/client-cost-explorer/src/CostExplorer.ts index f80eec46eafa0..aebd54c3497da 100644 --- a/clients/client-cost-explorer/src/CostExplorer.ts +++ b/clients/client-cost-explorer/src/CostExplorer.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAnomalyMonitorCommand, @@ -224,7 +224,7 @@ import { UpdateCostCategoryDefinitionCommandInput, UpdateCostCategoryDefinitionCommandOutput, } from "./commands/UpdateCostCategoryDefinitionCommand"; -import { CostExplorerClient, CostExplorerClientConfig } from "./CostExplorerClient"; +import { CostExplorerClient } from "./CostExplorerClient"; const commands = { CreateAnomalyMonitorCommand, diff --git a/clients/client-cost-explorer/src/CostExplorerClient.ts b/clients/client-cost-explorer/src/CostExplorerClient.ts index 1f1b17f6c244f..c4aa7704ba8aa 100644 --- a/clients/client-cost-explorer/src/CostExplorerClient.ts +++ b/clients/client-cost-explorer/src/CostExplorerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCostExplorerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -218,7 +227,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cost-explorer/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cost-explorer/src/auth/httpAuthExtensionConfiguration.ts index e787e8548456d..cf5ebf583d630 100644 --- a/clients/client-cost-explorer/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cost-explorer/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CostExplorerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CostExplorerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cost-explorer/src/auth/httpAuthSchemeProvider.ts b/clients/client-cost-explorer/src/auth/httpAuthSchemeProvider.ts index 4ae07eb0bf12e..b1693809cd4a1 100644 --- a/clients/client-cost-explorer/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cost-explorer/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CostExplorerClientConfig, CostExplorerClientResolvedConfig } from "../CostExplorerClient"; +import { type CostExplorerClientResolvedConfig, CostExplorerClientConfig } from "../CostExplorerClient"; /** * @internal diff --git a/clients/client-cost-explorer/src/commands/CreateAnomalyMonitorCommand.ts b/clients/client-cost-explorer/src/commands/CreateAnomalyMonitorCommand.ts index 3b1bb3a69c776..b4430759fda87 100644 --- a/clients/client-cost-explorer/src/commands/CreateAnomalyMonitorCommand.ts +++ b/clients/client-cost-explorer/src/commands/CreateAnomalyMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnomalyMonitorRequest, CreateAnomalyMonitorResponse } from "../models/models_0"; +import type { CreateAnomalyMonitorRequest, CreateAnomalyMonitorResponse } from "../models/models_0"; import { CreateAnomalyMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/CreateAnomalySubscriptionCommand.ts b/clients/client-cost-explorer/src/commands/CreateAnomalySubscriptionCommand.ts index cb020c92477ab..26cfd123625d2 100644 --- a/clients/client-cost-explorer/src/commands/CreateAnomalySubscriptionCommand.ts +++ b/clients/client-cost-explorer/src/commands/CreateAnomalySubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnomalySubscriptionRequest, CreateAnomalySubscriptionResponse } from "../models/models_0"; +import type { CreateAnomalySubscriptionRequest, CreateAnomalySubscriptionResponse } from "../models/models_0"; import { CreateAnomalySubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/CreateCostCategoryDefinitionCommand.ts b/clients/client-cost-explorer/src/commands/CreateCostCategoryDefinitionCommand.ts index 5897cb8627a78..e99a561f5ec7c 100644 --- a/clients/client-cost-explorer/src/commands/CreateCostCategoryDefinitionCommand.ts +++ b/clients/client-cost-explorer/src/commands/CreateCostCategoryDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCostCategoryDefinitionRequest, CreateCostCategoryDefinitionResponse } from "../models/models_0"; +import type { CreateCostCategoryDefinitionRequest, CreateCostCategoryDefinitionResponse } from "../models/models_0"; import { CreateCostCategoryDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/DeleteAnomalyMonitorCommand.ts b/clients/client-cost-explorer/src/commands/DeleteAnomalyMonitorCommand.ts index 40956e29dbaf9..b8edaae850f5d 100644 --- a/clients/client-cost-explorer/src/commands/DeleteAnomalyMonitorCommand.ts +++ b/clients/client-cost-explorer/src/commands/DeleteAnomalyMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnomalyMonitorRequest, DeleteAnomalyMonitorResponse } from "../models/models_0"; +import type { DeleteAnomalyMonitorRequest, DeleteAnomalyMonitorResponse } from "../models/models_0"; import { DeleteAnomalyMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/DeleteAnomalySubscriptionCommand.ts b/clients/client-cost-explorer/src/commands/DeleteAnomalySubscriptionCommand.ts index b1e692a474aa7..60b8ad47f8921 100644 --- a/clients/client-cost-explorer/src/commands/DeleteAnomalySubscriptionCommand.ts +++ b/clients/client-cost-explorer/src/commands/DeleteAnomalySubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnomalySubscriptionRequest, DeleteAnomalySubscriptionResponse } from "../models/models_0"; +import type { DeleteAnomalySubscriptionRequest, DeleteAnomalySubscriptionResponse } from "../models/models_0"; import { DeleteAnomalySubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/DeleteCostCategoryDefinitionCommand.ts b/clients/client-cost-explorer/src/commands/DeleteCostCategoryDefinitionCommand.ts index 8994630da385d..fb09a44429f4b 100644 --- a/clients/client-cost-explorer/src/commands/DeleteCostCategoryDefinitionCommand.ts +++ b/clients/client-cost-explorer/src/commands/DeleteCostCategoryDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCostCategoryDefinitionRequest, DeleteCostCategoryDefinitionResponse } from "../models/models_0"; +import type { DeleteCostCategoryDefinitionRequest, DeleteCostCategoryDefinitionResponse } from "../models/models_0"; import { DeleteCostCategoryDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/DescribeCostCategoryDefinitionCommand.ts b/clients/client-cost-explorer/src/commands/DescribeCostCategoryDefinitionCommand.ts index 5e69be005646b..2e1989f4581ea 100644 --- a/clients/client-cost-explorer/src/commands/DescribeCostCategoryDefinitionCommand.ts +++ b/clients/client-cost-explorer/src/commands/DescribeCostCategoryDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCostCategoryDefinitionRequest, DescribeCostCategoryDefinitionResponse } from "../models/models_0"; +import type { DescribeCostCategoryDefinitionRequest, DescribeCostCategoryDefinitionResponse } from "../models/models_0"; import { DescribeCostCategoryDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetAnomaliesCommand.ts b/clients/client-cost-explorer/src/commands/GetAnomaliesCommand.ts index 407becbf18d46..a64f2a4f8b026 100644 --- a/clients/client-cost-explorer/src/commands/GetAnomaliesCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetAnomaliesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnomaliesRequest, GetAnomaliesResponse } from "../models/models_0"; +import type { GetAnomaliesRequest, GetAnomaliesResponse } from "../models/models_0"; import { GetAnomalies } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetAnomalyMonitorsCommand.ts b/clients/client-cost-explorer/src/commands/GetAnomalyMonitorsCommand.ts index f28c23b8f0305..6f69466b02806 100644 --- a/clients/client-cost-explorer/src/commands/GetAnomalyMonitorsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetAnomalyMonitorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnomalyMonitorsRequest, GetAnomalyMonitorsResponse } from "../models/models_0"; +import type { GetAnomalyMonitorsRequest, GetAnomalyMonitorsResponse } from "../models/models_0"; import { GetAnomalyMonitors } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetAnomalySubscriptionsCommand.ts b/clients/client-cost-explorer/src/commands/GetAnomalySubscriptionsCommand.ts index ae9d0014ff0b9..1d56442702424 100644 --- a/clients/client-cost-explorer/src/commands/GetAnomalySubscriptionsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetAnomalySubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnomalySubscriptionsRequest, GetAnomalySubscriptionsResponse } from "../models/models_0"; +import type { GetAnomalySubscriptionsRequest, GetAnomalySubscriptionsResponse } from "../models/models_0"; import { GetAnomalySubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetApproximateUsageRecordsCommand.ts b/clients/client-cost-explorer/src/commands/GetApproximateUsageRecordsCommand.ts index dd38f38f27c18..269c588ce8ffb 100644 --- a/clients/client-cost-explorer/src/commands/GetApproximateUsageRecordsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetApproximateUsageRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApproximateUsageRecordsRequest, GetApproximateUsageRecordsResponse } from "../models/models_0"; +import type { GetApproximateUsageRecordsRequest, GetApproximateUsageRecordsResponse } from "../models/models_0"; import { GetApproximateUsageRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetCommitmentPurchaseAnalysisCommand.ts b/clients/client-cost-explorer/src/commands/GetCommitmentPurchaseAnalysisCommand.ts index e321b5f2de9ee..96a130e51f807 100644 --- a/clients/client-cost-explorer/src/commands/GetCommitmentPurchaseAnalysisCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCommitmentPurchaseAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCommitmentPurchaseAnalysisRequest, GetCommitmentPurchaseAnalysisResponse } from "../models/models_0"; +import type { GetCommitmentPurchaseAnalysisRequest, GetCommitmentPurchaseAnalysisResponse } from "../models/models_0"; import { GetCommitmentPurchaseAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetCostAndUsageCommand.ts b/clients/client-cost-explorer/src/commands/GetCostAndUsageCommand.ts index 88e37431ca79a..8a707365e0637 100644 --- a/clients/client-cost-explorer/src/commands/GetCostAndUsageCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostAndUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCostAndUsageRequest, GetCostAndUsageResponse } from "../models/models_0"; +import type { GetCostAndUsageRequest, GetCostAndUsageResponse } from "../models/models_0"; import { GetCostAndUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetCostAndUsageComparisonsCommand.ts b/clients/client-cost-explorer/src/commands/GetCostAndUsageComparisonsCommand.ts index 5fd3b126a98d4..df429edd99922 100644 --- a/clients/client-cost-explorer/src/commands/GetCostAndUsageComparisonsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostAndUsageComparisonsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCostAndUsageComparisonsRequest, GetCostAndUsageComparisonsResponse } from "../models/models_0"; +import type { GetCostAndUsageComparisonsRequest, GetCostAndUsageComparisonsResponse } from "../models/models_0"; import { GetCostAndUsageComparisons } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetCostAndUsageWithResourcesCommand.ts b/clients/client-cost-explorer/src/commands/GetCostAndUsageWithResourcesCommand.ts index 823719635acba..efa3a6f4ed692 100644 --- a/clients/client-cost-explorer/src/commands/GetCostAndUsageWithResourcesCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostAndUsageWithResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCostAndUsageWithResourcesRequest, GetCostAndUsageWithResourcesResponse } from "../models/models_0"; +import type { GetCostAndUsageWithResourcesRequest, GetCostAndUsageWithResourcesResponse } from "../models/models_0"; import { GetCostAndUsageWithResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetCostCategoriesCommand.ts b/clients/client-cost-explorer/src/commands/GetCostCategoriesCommand.ts index 0d78b8d55796e..2477d9585ecc8 100644 --- a/clients/client-cost-explorer/src/commands/GetCostCategoriesCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostCategoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCostCategoriesRequest, GetCostCategoriesResponse } from "../models/models_0"; +import type { GetCostCategoriesRequest, GetCostCategoriesResponse } from "../models/models_0"; import { GetCostCategories } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetCostComparisonDriversCommand.ts b/clients/client-cost-explorer/src/commands/GetCostComparisonDriversCommand.ts index 4c16b0dc019df..5e55c22cfe373 100644 --- a/clients/client-cost-explorer/src/commands/GetCostComparisonDriversCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostComparisonDriversCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCostComparisonDriversRequest, GetCostComparisonDriversResponse } from "../models/models_0"; +import type { GetCostComparisonDriversRequest, GetCostComparisonDriversResponse } from "../models/models_0"; import { GetCostComparisonDrivers } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetCostForecastCommand.ts b/clients/client-cost-explorer/src/commands/GetCostForecastCommand.ts index d24932e955f2e..84f0825f10dbb 100644 --- a/clients/client-cost-explorer/src/commands/GetCostForecastCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetCostForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCostForecastRequest, GetCostForecastResponse } from "../models/models_0"; +import type { GetCostForecastRequest, GetCostForecastResponse } from "../models/models_0"; import { GetCostForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetDimensionValuesCommand.ts b/clients/client-cost-explorer/src/commands/GetDimensionValuesCommand.ts index 23d892358a8aa..a51cb293b0d61 100644 --- a/clients/client-cost-explorer/src/commands/GetDimensionValuesCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetDimensionValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDimensionValuesRequest, GetDimensionValuesResponse } from "../models/models_0"; +import type { GetDimensionValuesRequest, GetDimensionValuesResponse } from "../models/models_0"; import { GetDimensionValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetReservationCoverageCommand.ts b/clients/client-cost-explorer/src/commands/GetReservationCoverageCommand.ts index 9bbda656701ce..356111a4c7ea7 100644 --- a/clients/client-cost-explorer/src/commands/GetReservationCoverageCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetReservationCoverageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReservationCoverageRequest, GetReservationCoverageResponse } from "../models/models_0"; +import type { GetReservationCoverageRequest, GetReservationCoverageResponse } from "../models/models_0"; import { GetReservationCoverage } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetReservationPurchaseRecommendationCommand.ts b/clients/client-cost-explorer/src/commands/GetReservationPurchaseRecommendationCommand.ts index 6cb529df4159c..20db9bbba14c6 100644 --- a/clients/client-cost-explorer/src/commands/GetReservationPurchaseRecommendationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetReservationPurchaseRecommendationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetReservationPurchaseRecommendationRequest, GetReservationPurchaseRecommendationResponse, } from "../models/models_0"; diff --git a/clients/client-cost-explorer/src/commands/GetReservationUtilizationCommand.ts b/clients/client-cost-explorer/src/commands/GetReservationUtilizationCommand.ts index 72ae3ad3437d4..2489531b6c16d 100644 --- a/clients/client-cost-explorer/src/commands/GetReservationUtilizationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetReservationUtilizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReservationUtilizationRequest, GetReservationUtilizationResponse } from "../models/models_0"; +import type { GetReservationUtilizationRequest, GetReservationUtilizationResponse } from "../models/models_0"; import { GetReservationUtilization } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetRightsizingRecommendationCommand.ts b/clients/client-cost-explorer/src/commands/GetRightsizingRecommendationCommand.ts index 3511a49fa0221..16a3db6f5936b 100644 --- a/clients/client-cost-explorer/src/commands/GetRightsizingRecommendationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetRightsizingRecommendationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRightsizingRecommendationRequest, GetRightsizingRecommendationResponse } from "../models/models_0"; +import type { GetRightsizingRecommendationRequest, GetRightsizingRecommendationResponse } from "../models/models_0"; import { GetRightsizingRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlanPurchaseRecommendationDetailsCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlanPurchaseRecommendationDetailsCommand.ts index 31b7a4f523b71..125a9807a4635 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlanPurchaseRecommendationDetailsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlanPurchaseRecommendationDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetSavingsPlanPurchaseRecommendationDetailsRequest, GetSavingsPlanPurchaseRecommendationDetailsResponse, } from "../models/models_0"; diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlansCoverageCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlansCoverageCommand.ts index 17c73a2094959..6bf64fe394a60 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlansCoverageCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlansCoverageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSavingsPlansCoverageRequest, GetSavingsPlansCoverageResponse } from "../models/models_0"; +import type { GetSavingsPlansCoverageRequest, GetSavingsPlansCoverageResponse } from "../models/models_0"; import { GetSavingsPlansCoverage } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlansPurchaseRecommendationCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlansPurchaseRecommendationCommand.ts index d02ee2a42e238..fb9b6e1b9812f 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlansPurchaseRecommendationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlansPurchaseRecommendationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetSavingsPlansPurchaseRecommendationRequest, GetSavingsPlansPurchaseRecommendationResponse, } from "../models/models_0"; diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationCommand.ts index aa0e4f1bfd2a3..f3982bac2d77c 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSavingsPlansUtilizationRequest, GetSavingsPlansUtilizationResponse } from "../models/models_0"; +import type { GetSavingsPlansUtilizationRequest, GetSavingsPlansUtilizationResponse } from "../models/models_0"; import { GetSavingsPlansUtilization } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationDetailsCommand.ts b/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationDetailsCommand.ts index 54769fdf298d1..75ef4e4fc0fa0 100644 --- a/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationDetailsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetSavingsPlansUtilizationDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetSavingsPlansUtilizationDetailsRequest, GetSavingsPlansUtilizationDetailsResponse, } from "../models/models_0"; diff --git a/clients/client-cost-explorer/src/commands/GetTagsCommand.ts b/clients/client-cost-explorer/src/commands/GetTagsCommand.ts index 4ee0b5884c2d2..c0cf0dc045a02 100644 --- a/clients/client-cost-explorer/src/commands/GetTagsCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTagsRequest, GetTagsResponse } from "../models/models_0"; +import type { GetTagsRequest, GetTagsResponse } from "../models/models_0"; import { GetTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/GetUsageForecastCommand.ts b/clients/client-cost-explorer/src/commands/GetUsageForecastCommand.ts index 2768588e1e4a4..f3195ade28d0d 100644 --- a/clients/client-cost-explorer/src/commands/GetUsageForecastCommand.ts +++ b/clients/client-cost-explorer/src/commands/GetUsageForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUsageForecastRequest, GetUsageForecastResponse } from "../models/models_0"; +import type { GetUsageForecastRequest, GetUsageForecastResponse } from "../models/models_0"; import { GetUsageForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/ListCommitmentPurchaseAnalysesCommand.ts b/clients/client-cost-explorer/src/commands/ListCommitmentPurchaseAnalysesCommand.ts index 8c5bd033330e1..7369cf0347516 100644 --- a/clients/client-cost-explorer/src/commands/ListCommitmentPurchaseAnalysesCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListCommitmentPurchaseAnalysesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCommitmentPurchaseAnalysesRequest, ListCommitmentPurchaseAnalysesResponse } from "../models/models_0"; +import type { ListCommitmentPurchaseAnalysesRequest, ListCommitmentPurchaseAnalysesResponse } from "../models/models_0"; import { ListCommitmentPurchaseAnalyses } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/ListCostAllocationTagBackfillHistoryCommand.ts b/clients/client-cost-explorer/src/commands/ListCostAllocationTagBackfillHistoryCommand.ts index ce18d5d6e8d1e..23513d0029929 100644 --- a/clients/client-cost-explorer/src/commands/ListCostAllocationTagBackfillHistoryCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListCostAllocationTagBackfillHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCostAllocationTagBackfillHistoryRequest, ListCostAllocationTagBackfillHistoryResponse, } from "../models/models_0"; diff --git a/clients/client-cost-explorer/src/commands/ListCostAllocationTagsCommand.ts b/clients/client-cost-explorer/src/commands/ListCostAllocationTagsCommand.ts index 0c7fa45d56ed0..110777ff0df03 100644 --- a/clients/client-cost-explorer/src/commands/ListCostAllocationTagsCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListCostAllocationTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCostAllocationTagsRequest, ListCostAllocationTagsResponse } from "../models/models_0"; +import type { ListCostAllocationTagsRequest, ListCostAllocationTagsResponse } from "../models/models_0"; import { ListCostAllocationTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/ListCostCategoryDefinitionsCommand.ts b/clients/client-cost-explorer/src/commands/ListCostCategoryDefinitionsCommand.ts index 17c1cf794a7ac..86638b4a41d8e 100644 --- a/clients/client-cost-explorer/src/commands/ListCostCategoryDefinitionsCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListCostCategoryDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCostCategoryDefinitionsRequest, ListCostCategoryDefinitionsResponse } from "../models/models_0"; +import type { ListCostCategoryDefinitionsRequest, ListCostCategoryDefinitionsResponse } from "../models/models_0"; import { ListCostCategoryDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.ts b/clients/client-cost-explorer/src/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.ts index c7630cf080d0e..f2a70b6412df1 100644 --- a/clients/client-cost-explorer/src/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListSavingsPlansPurchaseRecommendationGenerationRequest, ListSavingsPlansPurchaseRecommendationGenerationResponse, } from "../models/models_0"; diff --git a/clients/client-cost-explorer/src/commands/ListTagsForResourceCommand.ts b/clients/client-cost-explorer/src/commands/ListTagsForResourceCommand.ts index b1edfcdfc4b5f..f19c4924e10cd 100644 --- a/clients/client-cost-explorer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-cost-explorer/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/ProvideAnomalyFeedbackCommand.ts b/clients/client-cost-explorer/src/commands/ProvideAnomalyFeedbackCommand.ts index 7f99308ec08aa..dfe579355d052 100644 --- a/clients/client-cost-explorer/src/commands/ProvideAnomalyFeedbackCommand.ts +++ b/clients/client-cost-explorer/src/commands/ProvideAnomalyFeedbackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProvideAnomalyFeedbackRequest, ProvideAnomalyFeedbackResponse } from "../models/models_0"; +import type { ProvideAnomalyFeedbackRequest, ProvideAnomalyFeedbackResponse } from "../models/models_0"; import { ProvideAnomalyFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/StartCommitmentPurchaseAnalysisCommand.ts b/clients/client-cost-explorer/src/commands/StartCommitmentPurchaseAnalysisCommand.ts index abd0310ec4714..4117c54f2b7ea 100644 --- a/clients/client-cost-explorer/src/commands/StartCommitmentPurchaseAnalysisCommand.ts +++ b/clients/client-cost-explorer/src/commands/StartCommitmentPurchaseAnalysisCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCommitmentPurchaseAnalysisRequest, StartCommitmentPurchaseAnalysisResponse } from "../models/models_0"; +import type { + StartCommitmentPurchaseAnalysisRequest, + StartCommitmentPurchaseAnalysisResponse, +} from "../models/models_0"; import { StartCommitmentPurchaseAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/StartCostAllocationTagBackfillCommand.ts b/clients/client-cost-explorer/src/commands/StartCostAllocationTagBackfillCommand.ts index 9a4286300a484..c5f992ff19ca4 100644 --- a/clients/client-cost-explorer/src/commands/StartCostAllocationTagBackfillCommand.ts +++ b/clients/client-cost-explorer/src/commands/StartCostAllocationTagBackfillCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCostAllocationTagBackfillRequest, StartCostAllocationTagBackfillResponse } from "../models/models_0"; +import type { StartCostAllocationTagBackfillRequest, StartCostAllocationTagBackfillResponse } from "../models/models_0"; import { StartCostAllocationTagBackfill } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.ts b/clients/client-cost-explorer/src/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.ts index 9cb241f6c5ef7..9f612c3639ab0 100644 --- a/clients/client-cost-explorer/src/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.ts +++ b/clients/client-cost-explorer/src/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartSavingsPlansPurchaseRecommendationGenerationRequest, StartSavingsPlansPurchaseRecommendationGenerationResponse, } from "../models/models_0"; diff --git a/clients/client-cost-explorer/src/commands/TagResourceCommand.ts b/clients/client-cost-explorer/src/commands/TagResourceCommand.ts index 0bf609d93f961..c3838ea5870b0 100644 --- a/clients/client-cost-explorer/src/commands/TagResourceCommand.ts +++ b/clients/client-cost-explorer/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/UntagResourceCommand.ts b/clients/client-cost-explorer/src/commands/UntagResourceCommand.ts index 088cb0f7d20f0..e02a5529842e2 100644 --- a/clients/client-cost-explorer/src/commands/UntagResourceCommand.ts +++ b/clients/client-cost-explorer/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/UpdateAnomalyMonitorCommand.ts b/clients/client-cost-explorer/src/commands/UpdateAnomalyMonitorCommand.ts index 217371dfe7528..aa874fa3a45f6 100644 --- a/clients/client-cost-explorer/src/commands/UpdateAnomalyMonitorCommand.ts +++ b/clients/client-cost-explorer/src/commands/UpdateAnomalyMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnomalyMonitorRequest, UpdateAnomalyMonitorResponse } from "../models/models_0"; +import type { UpdateAnomalyMonitorRequest, UpdateAnomalyMonitorResponse } from "../models/models_0"; import { UpdateAnomalyMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/UpdateAnomalySubscriptionCommand.ts b/clients/client-cost-explorer/src/commands/UpdateAnomalySubscriptionCommand.ts index dc14e0f9d2ddd..ebd45ff188e21 100644 --- a/clients/client-cost-explorer/src/commands/UpdateAnomalySubscriptionCommand.ts +++ b/clients/client-cost-explorer/src/commands/UpdateAnomalySubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnomalySubscriptionRequest, UpdateAnomalySubscriptionResponse } from "../models/models_0"; +import type { UpdateAnomalySubscriptionRequest, UpdateAnomalySubscriptionResponse } from "../models/models_0"; import { UpdateAnomalySubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/UpdateCostAllocationTagsStatusCommand.ts b/clients/client-cost-explorer/src/commands/UpdateCostAllocationTagsStatusCommand.ts index b844f07cdaea9..70df9c000f729 100644 --- a/clients/client-cost-explorer/src/commands/UpdateCostAllocationTagsStatusCommand.ts +++ b/clients/client-cost-explorer/src/commands/UpdateCostAllocationTagsStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCostAllocationTagsStatusRequest, UpdateCostAllocationTagsStatusResponse } from "../models/models_0"; +import type { UpdateCostAllocationTagsStatusRequest, UpdateCostAllocationTagsStatusResponse } from "../models/models_0"; import { UpdateCostAllocationTagsStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/commands/UpdateCostCategoryDefinitionCommand.ts b/clients/client-cost-explorer/src/commands/UpdateCostCategoryDefinitionCommand.ts index 564fec29f3de8..92960d3a6245e 100644 --- a/clients/client-cost-explorer/src/commands/UpdateCostCategoryDefinitionCommand.ts +++ b/clients/client-cost-explorer/src/commands/UpdateCostCategoryDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; +import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCostCategoryDefinitionRequest, UpdateCostCategoryDefinitionResponse } from "../models/models_0"; +import type { UpdateCostCategoryDefinitionRequest, UpdateCostCategoryDefinitionResponse } from "../models/models_0"; import { UpdateCostCategoryDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-explorer/src/endpoint/EndpointParameters.ts b/clients/client-cost-explorer/src/endpoint/EndpointParameters.ts index 50d00d9acd514..4edcc6f82c3e8 100644 --- a/clients/client-cost-explorer/src/endpoint/EndpointParameters.ts +++ b/clients/client-cost-explorer/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cost-explorer/src/endpoint/endpointResolver.ts b/clients/client-cost-explorer/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cost-explorer/src/endpoint/endpointResolver.ts +++ b/clients/client-cost-explorer/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cost-explorer/src/extensionConfiguration.ts b/clients/client-cost-explorer/src/extensionConfiguration.ts index 7b76d4d65c28c..3e070a8df0439 100644 --- a/clients/client-cost-explorer/src/extensionConfiguration.ts +++ b/clients/client-cost-explorer/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cost-explorer/src/models/CostExplorerServiceException.ts b/clients/client-cost-explorer/src/models/CostExplorerServiceException.ts index 2c8c749e53e4f..35a89315c17b7 100644 --- a/clients/client-cost-explorer/src/models/CostExplorerServiceException.ts +++ b/clients/client-cost-explorer/src/models/CostExplorerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cost-explorer/src/models/errors.ts b/clients/client-cost-explorer/src/models/errors.ts index 1057315ddcd1a..a151ec9267e38 100644 --- a/clients/client-cost-explorer/src/models/errors.ts +++ b/clients/client-cost-explorer/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CostExplorerServiceException as __BaseException } from "./CostExplorerServiceException"; diff --git a/clients/client-cost-explorer/src/pagination/GetAnomaliesPaginator.ts b/clients/client-cost-explorer/src/pagination/GetAnomaliesPaginator.ts index 8dd70d238fbea..cc541f44fed02 100644 --- a/clients/client-cost-explorer/src/pagination/GetAnomaliesPaginator.ts +++ b/clients/client-cost-explorer/src/pagination/GetAnomaliesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAnomaliesCommand, diff --git a/clients/client-cost-explorer/src/pagination/GetAnomalyMonitorsPaginator.ts b/clients/client-cost-explorer/src/pagination/GetAnomalyMonitorsPaginator.ts index 7b1894b60dae7..942a0849b1104 100644 --- a/clients/client-cost-explorer/src/pagination/GetAnomalyMonitorsPaginator.ts +++ b/clients/client-cost-explorer/src/pagination/GetAnomalyMonitorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAnomalyMonitorsCommand, diff --git a/clients/client-cost-explorer/src/pagination/GetAnomalySubscriptionsPaginator.ts b/clients/client-cost-explorer/src/pagination/GetAnomalySubscriptionsPaginator.ts index 851478a2b9f4b..a2d868d33b676 100644 --- a/clients/client-cost-explorer/src/pagination/GetAnomalySubscriptionsPaginator.ts +++ b/clients/client-cost-explorer/src/pagination/GetAnomalySubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAnomalySubscriptionsCommand, diff --git a/clients/client-cost-explorer/src/pagination/GetCostAndUsageComparisonsPaginator.ts b/clients/client-cost-explorer/src/pagination/GetCostAndUsageComparisonsPaginator.ts index aaa27bc67b530..8e0b59c1b1f18 100644 --- a/clients/client-cost-explorer/src/pagination/GetCostAndUsageComparisonsPaginator.ts +++ b/clients/client-cost-explorer/src/pagination/GetCostAndUsageComparisonsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCostAndUsageComparisonsCommand, diff --git a/clients/client-cost-explorer/src/pagination/GetCostComparisonDriversPaginator.ts b/clients/client-cost-explorer/src/pagination/GetCostComparisonDriversPaginator.ts index 89cc851d32a2f..b6de9fcc72249 100644 --- a/clients/client-cost-explorer/src/pagination/GetCostComparisonDriversPaginator.ts +++ b/clients/client-cost-explorer/src/pagination/GetCostComparisonDriversPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCostComparisonDriversCommand, diff --git a/clients/client-cost-explorer/src/pagination/GetSavingsPlansCoveragePaginator.ts b/clients/client-cost-explorer/src/pagination/GetSavingsPlansCoveragePaginator.ts index b2853e3bfb1f4..ad8438147ea73 100644 --- a/clients/client-cost-explorer/src/pagination/GetSavingsPlansCoveragePaginator.ts +++ b/clients/client-cost-explorer/src/pagination/GetSavingsPlansCoveragePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSavingsPlansCoverageCommand, diff --git a/clients/client-cost-explorer/src/pagination/GetSavingsPlansUtilizationDetailsPaginator.ts b/clients/client-cost-explorer/src/pagination/GetSavingsPlansUtilizationDetailsPaginator.ts index e7ff5e3eeebb2..0f0cc4dde85cf 100644 --- a/clients/client-cost-explorer/src/pagination/GetSavingsPlansUtilizationDetailsPaginator.ts +++ b/clients/client-cost-explorer/src/pagination/GetSavingsPlansUtilizationDetailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSavingsPlansUtilizationDetailsCommand, diff --git a/clients/client-cost-explorer/src/pagination/Interfaces.ts b/clients/client-cost-explorer/src/pagination/Interfaces.ts index 6cc4190785e3f..f3343998ab424 100644 --- a/clients/client-cost-explorer/src/pagination/Interfaces.ts +++ b/clients/client-cost-explorer/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CostExplorerClient } from "../CostExplorerClient"; diff --git a/clients/client-cost-explorer/src/pagination/ListCostAllocationTagBackfillHistoryPaginator.ts b/clients/client-cost-explorer/src/pagination/ListCostAllocationTagBackfillHistoryPaginator.ts index 706a7a459f5f7..faeb0dd27db89 100644 --- a/clients/client-cost-explorer/src/pagination/ListCostAllocationTagBackfillHistoryPaginator.ts +++ b/clients/client-cost-explorer/src/pagination/ListCostAllocationTagBackfillHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCostAllocationTagBackfillHistoryCommand, diff --git a/clients/client-cost-explorer/src/pagination/ListCostAllocationTagsPaginator.ts b/clients/client-cost-explorer/src/pagination/ListCostAllocationTagsPaginator.ts index 4ab6e7e014b57..6bd9709cc72b8 100644 --- a/clients/client-cost-explorer/src/pagination/ListCostAllocationTagsPaginator.ts +++ b/clients/client-cost-explorer/src/pagination/ListCostAllocationTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCostAllocationTagsCommand, diff --git a/clients/client-cost-explorer/src/pagination/ListCostCategoryDefinitionsPaginator.ts b/clients/client-cost-explorer/src/pagination/ListCostCategoryDefinitionsPaginator.ts index a528c93e81433..e877764d7a409 100644 --- a/clients/client-cost-explorer/src/pagination/ListCostCategoryDefinitionsPaginator.ts +++ b/clients/client-cost-explorer/src/pagination/ListCostCategoryDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCostCategoryDefinitionsCommand, diff --git a/clients/client-cost-explorer/src/runtimeConfig.browser.ts b/clients/client-cost-explorer/src/runtimeConfig.browser.ts index f3335f894f403..21c9a49bd3a25 100644 --- a/clients/client-cost-explorer/src/runtimeConfig.browser.ts +++ b/clients/client-cost-explorer/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CostExplorerClientConfig } from "./CostExplorerClient"; + +import type { CostExplorerClientConfig } from "./CostExplorerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cost-explorer/src/runtimeConfig.native.ts b/clients/client-cost-explorer/src/runtimeConfig.native.ts index 40fd67d1da3c3..704f23a97de78 100644 --- a/clients/client-cost-explorer/src/runtimeConfig.native.ts +++ b/clients/client-cost-explorer/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CostExplorerClientConfig } from "./CostExplorerClient"; +import type { CostExplorerClientConfig } from "./CostExplorerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cost-explorer/src/runtimeConfig.shared.ts b/clients/client-cost-explorer/src/runtimeConfig.shared.ts index 16adbadf365ee..f919ac235292d 100644 --- a/clients/client-cost-explorer/src/runtimeConfig.shared.ts +++ b/clients/client-cost-explorer/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCostExplorerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CostExplorerClientConfig } from "./CostExplorerClient"; +import type { CostExplorerClientConfig } from "./CostExplorerClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cost-explorer/src/runtimeConfig.ts b/clients/client-cost-explorer/src/runtimeConfig.ts index 7026597d7342c..4cdfbcbb1bc34 100644 --- a/clients/client-cost-explorer/src/runtimeConfig.ts +++ b/clients/client-cost-explorer/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CostExplorerClientConfig } from "./CostExplorerClient"; + +import type { CostExplorerClientConfig } from "./CostExplorerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cost-explorer/src/runtimeExtensions.ts b/clients/client-cost-explorer/src/runtimeExtensions.ts index 59bd61decb377..d90840677efd0 100644 --- a/clients/client-cost-explorer/src/runtimeExtensions.ts +++ b/clients/client-cost-explorer/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CostExplorerExtensionConfiguration } from "./extensionConfiguration"; +import type { CostExplorerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cost-explorer/src/schemas/schemas_0.ts b/clients/client-cost-explorer/src/schemas/schemas_0.ts index fc2cc927532b9..2fbf38ccfd244 100644 --- a/clients/client-cost-explorer/src/schemas/schemas_0.ts +++ b/clients/client-cost-explorer/src/schemas/schemas_0.ts @@ -622,7 +622,7 @@ const n0 = "com.amazonaws.costexplorer"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-cost-optimization-hub/package.json b/clients/client-cost-optimization-hub/package.json index c3e9644a90387..009cb4cd1b010 100644 --- a/clients/client-cost-optimization-hub/package.json +++ b/clients/client-cost-optimization-hub/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-cost-optimization-hub/src/CostOptimizationHub.ts b/clients/client-cost-optimization-hub/src/CostOptimizationHub.ts index 6c5e46338e302..60af81afb2833 100644 --- a/clients/client-cost-optimization-hub/src/CostOptimizationHub.ts +++ b/clients/client-cost-optimization-hub/src/CostOptimizationHub.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetPreferencesCommand, @@ -42,7 +42,7 @@ import { UpdatePreferencesCommandInput, UpdatePreferencesCommandOutput, } from "./commands/UpdatePreferencesCommand"; -import { CostOptimizationHubClient, CostOptimizationHubClientConfig } from "./CostOptimizationHubClient"; +import { CostOptimizationHubClient } from "./CostOptimizationHubClient"; const commands = { GetPreferencesCommand, diff --git a/clients/client-cost-optimization-hub/src/CostOptimizationHubClient.ts b/clients/client-cost-optimization-hub/src/CostOptimizationHubClient.ts index 79ab3d3f08764..44f9b8a6633ad 100644 --- a/clients/client-cost-optimization-hub/src/CostOptimizationHubClient.ts +++ b/clients/client-cost-optimization-hub/src/CostOptimizationHubClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCostOptimizationHubHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetPreferencesCommandInput, GetPreferencesCommandOutput } from "./commands/GetPreferencesCommand"; @@ -87,7 +96,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-cost-optimization-hub/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-cost-optimization-hub/src/auth/httpAuthExtensionConfiguration.ts index 60656b4f1ca42..9a54c416b178b 100644 --- a/clients/client-cost-optimization-hub/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-cost-optimization-hub/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CostOptimizationHubHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CostOptimizationHubHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-cost-optimization-hub/src/auth/httpAuthSchemeProvider.ts b/clients/client-cost-optimization-hub/src/auth/httpAuthSchemeProvider.ts index 5686b5ff06a40..298370c23c962 100644 --- a/clients/client-cost-optimization-hub/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-cost-optimization-hub/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CostOptimizationHubClientConfig, CostOptimizationHubClientResolvedConfig } from "../CostOptimizationHubClient"; +import { + type CostOptimizationHubClientResolvedConfig, + CostOptimizationHubClientConfig, +} from "../CostOptimizationHubClient"; /** * @internal diff --git a/clients/client-cost-optimization-hub/src/commands/GetPreferencesCommand.ts b/clients/client-cost-optimization-hub/src/commands/GetPreferencesCommand.ts index 43644dea85ebe..f38c2be5633a9 100644 --- a/clients/client-cost-optimization-hub/src/commands/GetPreferencesCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/GetPreferencesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostOptimizationHubClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPreferencesRequest, GetPreferencesResponse } from "../models/models_0"; +import type { GetPreferencesRequest, GetPreferencesResponse } from "../models/models_0"; import { GetPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-optimization-hub/src/commands/GetRecommendationCommand.ts b/clients/client-cost-optimization-hub/src/commands/GetRecommendationCommand.ts index 05d859214e20b..d78c4733723d1 100644 --- a/clients/client-cost-optimization-hub/src/commands/GetRecommendationCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/GetRecommendationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostOptimizationHubClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommendationRequest, GetRecommendationResponse } from "../models/models_0"; +import type { GetRecommendationRequest, GetRecommendationResponse } from "../models/models_0"; import { GetRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-optimization-hub/src/commands/ListEfficiencyMetricsCommand.ts b/clients/client-cost-optimization-hub/src/commands/ListEfficiencyMetricsCommand.ts index 837ab3c9a50d8..2f5254ee52e7f 100644 --- a/clients/client-cost-optimization-hub/src/commands/ListEfficiencyMetricsCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/ListEfficiencyMetricsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostOptimizationHubClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEfficiencyMetricsRequest, ListEfficiencyMetricsResponse } from "../models/models_0"; +import type { ListEfficiencyMetricsRequest, ListEfficiencyMetricsResponse } from "../models/models_0"; import { ListEfficiencyMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-optimization-hub/src/commands/ListEnrollmentStatusesCommand.ts b/clients/client-cost-optimization-hub/src/commands/ListEnrollmentStatusesCommand.ts index 795c4473b2237..7dae63585b02c 100644 --- a/clients/client-cost-optimization-hub/src/commands/ListEnrollmentStatusesCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/ListEnrollmentStatusesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostOptimizationHubClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnrollmentStatusesRequest, ListEnrollmentStatusesResponse } from "../models/models_0"; +import type { ListEnrollmentStatusesRequest, ListEnrollmentStatusesResponse } from "../models/models_0"; import { ListEnrollmentStatuses } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-optimization-hub/src/commands/ListRecommendationSummariesCommand.ts b/clients/client-cost-optimization-hub/src/commands/ListRecommendationSummariesCommand.ts index 74aca64a2d75d..8bf125e99c4aa 100644 --- a/clients/client-cost-optimization-hub/src/commands/ListRecommendationSummariesCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/ListRecommendationSummariesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostOptimizationHubClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationSummariesRequest, ListRecommendationSummariesResponse } from "../models/models_0"; +import type { ListRecommendationSummariesRequest, ListRecommendationSummariesResponse } from "../models/models_0"; import { ListRecommendationSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-optimization-hub/src/commands/ListRecommendationsCommand.ts b/clients/client-cost-optimization-hub/src/commands/ListRecommendationsCommand.ts index b82c80dc64285..f814dc4172d26 100644 --- a/clients/client-cost-optimization-hub/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/ListRecommendationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostOptimizationHubClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; +import type { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; import { ListRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-optimization-hub/src/commands/UpdateEnrollmentStatusCommand.ts b/clients/client-cost-optimization-hub/src/commands/UpdateEnrollmentStatusCommand.ts index 6768298a28251..eb52ece892765 100644 --- a/clients/client-cost-optimization-hub/src/commands/UpdateEnrollmentStatusCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/UpdateEnrollmentStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostOptimizationHubClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnrollmentStatusRequest, UpdateEnrollmentStatusResponse } from "../models/models_0"; +import type { UpdateEnrollmentStatusRequest, UpdateEnrollmentStatusResponse } from "../models/models_0"; import { UpdateEnrollmentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-optimization-hub/src/commands/UpdatePreferencesCommand.ts b/clients/client-cost-optimization-hub/src/commands/UpdatePreferencesCommand.ts index 7965c9f0f2a07..aef4d196b5482 100644 --- a/clients/client-cost-optimization-hub/src/commands/UpdatePreferencesCommand.ts +++ b/clients/client-cost-optimization-hub/src/commands/UpdatePreferencesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { CostOptimizationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../CostOptimizationHubClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePreferencesRequest, UpdatePreferencesResponse } from "../models/models_0"; +import type { UpdatePreferencesRequest, UpdatePreferencesResponse } from "../models/models_0"; import { UpdatePreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-cost-optimization-hub/src/endpoint/EndpointParameters.ts b/clients/client-cost-optimization-hub/src/endpoint/EndpointParameters.ts index 0840bea1b81cc..d27f7b1979d14 100644 --- a/clients/client-cost-optimization-hub/src/endpoint/EndpointParameters.ts +++ b/clients/client-cost-optimization-hub/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-cost-optimization-hub/src/endpoint/endpointResolver.ts b/clients/client-cost-optimization-hub/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-cost-optimization-hub/src/endpoint/endpointResolver.ts +++ b/clients/client-cost-optimization-hub/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-cost-optimization-hub/src/extensionConfiguration.ts b/clients/client-cost-optimization-hub/src/extensionConfiguration.ts index e8113a08a8460..1465e169c14a5 100644 --- a/clients/client-cost-optimization-hub/src/extensionConfiguration.ts +++ b/clients/client-cost-optimization-hub/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-cost-optimization-hub/src/models/CostOptimizationHubServiceException.ts b/clients/client-cost-optimization-hub/src/models/CostOptimizationHubServiceException.ts index 7d019fd56ef0e..ab0cf540eb228 100644 --- a/clients/client-cost-optimization-hub/src/models/CostOptimizationHubServiceException.ts +++ b/clients/client-cost-optimization-hub/src/models/CostOptimizationHubServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-cost-optimization-hub/src/models/errors.ts b/clients/client-cost-optimization-hub/src/models/errors.ts index 5d0ad54477853..efb4e0744436a 100644 --- a/clients/client-cost-optimization-hub/src/models/errors.ts +++ b/clients/client-cost-optimization-hub/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CostOptimizationHubServiceException as __BaseException } from "./CostOptimizationHubServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-cost-optimization-hub/src/pagination/Interfaces.ts b/clients/client-cost-optimization-hub/src/pagination/Interfaces.ts index 38fbd54655b9e..0a29dcee93bbb 100644 --- a/clients/client-cost-optimization-hub/src/pagination/Interfaces.ts +++ b/clients/client-cost-optimization-hub/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CostOptimizationHubClient } from "../CostOptimizationHubClient"; diff --git a/clients/client-cost-optimization-hub/src/pagination/ListEfficiencyMetricsPaginator.ts b/clients/client-cost-optimization-hub/src/pagination/ListEfficiencyMetricsPaginator.ts index 5a1d315b31b88..15d3c5e9b5cf6 100644 --- a/clients/client-cost-optimization-hub/src/pagination/ListEfficiencyMetricsPaginator.ts +++ b/clients/client-cost-optimization-hub/src/pagination/ListEfficiencyMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEfficiencyMetricsCommand, diff --git a/clients/client-cost-optimization-hub/src/pagination/ListEnrollmentStatusesPaginator.ts b/clients/client-cost-optimization-hub/src/pagination/ListEnrollmentStatusesPaginator.ts index 288487f2469b7..1a25472d70a04 100644 --- a/clients/client-cost-optimization-hub/src/pagination/ListEnrollmentStatusesPaginator.ts +++ b/clients/client-cost-optimization-hub/src/pagination/ListEnrollmentStatusesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnrollmentStatusesCommand, diff --git a/clients/client-cost-optimization-hub/src/pagination/ListRecommendationSummariesPaginator.ts b/clients/client-cost-optimization-hub/src/pagination/ListRecommendationSummariesPaginator.ts index 6b8632ea79432..cdf8d8ef15d6b 100644 --- a/clients/client-cost-optimization-hub/src/pagination/ListRecommendationSummariesPaginator.ts +++ b/clients/client-cost-optimization-hub/src/pagination/ListRecommendationSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendationSummariesCommand, diff --git a/clients/client-cost-optimization-hub/src/pagination/ListRecommendationsPaginator.ts b/clients/client-cost-optimization-hub/src/pagination/ListRecommendationsPaginator.ts index 5582f3d8eab20..14f18df6c3972 100644 --- a/clients/client-cost-optimization-hub/src/pagination/ListRecommendationsPaginator.ts +++ b/clients/client-cost-optimization-hub/src/pagination/ListRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendationsCommand, diff --git a/clients/client-cost-optimization-hub/src/runtimeConfig.browser.ts b/clients/client-cost-optimization-hub/src/runtimeConfig.browser.ts index 9598b5d7194b9..e98b4aee90eab 100644 --- a/clients/client-cost-optimization-hub/src/runtimeConfig.browser.ts +++ b/clients/client-cost-optimization-hub/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CostOptimizationHubClientConfig } from "./CostOptimizationHubClient"; + +import type { CostOptimizationHubClientConfig } from "./CostOptimizationHubClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-cost-optimization-hub/src/runtimeConfig.native.ts b/clients/client-cost-optimization-hub/src/runtimeConfig.native.ts index 595de907d31ec..8a9d91621ab31 100644 --- a/clients/client-cost-optimization-hub/src/runtimeConfig.native.ts +++ b/clients/client-cost-optimization-hub/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CostOptimizationHubClientConfig } from "./CostOptimizationHubClient"; +import type { CostOptimizationHubClientConfig } from "./CostOptimizationHubClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-cost-optimization-hub/src/runtimeConfig.shared.ts b/clients/client-cost-optimization-hub/src/runtimeConfig.shared.ts index 5682c13585f93..7e0862147e060 100644 --- a/clients/client-cost-optimization-hub/src/runtimeConfig.shared.ts +++ b/clients/client-cost-optimization-hub/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCostOptimizationHubHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CostOptimizationHubClientConfig } from "./CostOptimizationHubClient"; +import type { CostOptimizationHubClientConfig } from "./CostOptimizationHubClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-cost-optimization-hub/src/runtimeConfig.ts b/clients/client-cost-optimization-hub/src/runtimeConfig.ts index 633576c26c9f3..10d7459432989 100644 --- a/clients/client-cost-optimization-hub/src/runtimeConfig.ts +++ b/clients/client-cost-optimization-hub/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CostOptimizationHubClientConfig } from "./CostOptimizationHubClient"; + +import type { CostOptimizationHubClientConfig } from "./CostOptimizationHubClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-cost-optimization-hub/src/runtimeExtensions.ts b/clients/client-cost-optimization-hub/src/runtimeExtensions.ts index 11210088f7649..5ca0a03d84b3a 100644 --- a/clients/client-cost-optimization-hub/src/runtimeExtensions.ts +++ b/clients/client-cost-optimization-hub/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CostOptimizationHubExtensionConfiguration } from "./extensionConfiguration"; +import type { CostOptimizationHubExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-cost-optimization-hub/src/schemas/schemas_0.ts b/clients/client-cost-optimization-hub/src/schemas/schemas_0.ts index 7f8dfa73e9b8b..e7fa8e6415165 100644 --- a/clients/client-cost-optimization-hub/src/schemas/schemas_0.ts +++ b/clients/client-cost-optimization-hub/src/schemas/schemas_0.ts @@ -266,7 +266,7 @@ const n0 = "com.amazonaws.costoptimizationhub"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { CostOptimizationHubServiceException as __CostOptimizationHubServiceException } from "../models/CostOptimizationHubServiceException"; import { diff --git a/clients/client-customer-profiles/package.json b/clients/client-customer-profiles/package.json index 38a43993e09f5..31eb5951dc719 100644 --- a/clients/client-customer-profiles/package.json +++ b/clients/client-customer-profiles/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-customer-profiles/src/CustomerProfiles.ts b/clients/client-customer-profiles/src/CustomerProfiles.ts index 70c32e0d6f010..b95843bc161b3 100644 --- a/clients/client-customer-profiles/src/CustomerProfiles.ts +++ b/clients/client-customer-profiles/src/CustomerProfiles.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddProfileKeyCommand, @@ -472,7 +472,7 @@ import { UpdateRecommenderCommandInput, UpdateRecommenderCommandOutput, } from "./commands/UpdateRecommenderCommand"; -import { CustomerProfilesClient, CustomerProfilesClientConfig } from "./CustomerProfilesClient"; +import { CustomerProfilesClient } from "./CustomerProfilesClient"; const commands = { AddProfileKeyCommand, diff --git a/clients/client-customer-profiles/src/CustomerProfilesClient.ts b/clients/client-customer-profiles/src/CustomerProfilesClient.ts index 9c33c81aa1740..636d0d8339449 100644 --- a/clients/client-customer-profiles/src/CustomerProfilesClient.ts +++ b/clients/client-customer-profiles/src/CustomerProfilesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultCustomerProfilesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddProfileKeyCommandInput, AddProfileKeyCommandOutput } from "./commands/AddProfileKeyCommand"; @@ -288,7 +297,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-customer-profiles/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-customer-profiles/src/auth/httpAuthExtensionConfiguration.ts index 463d7ee5320cc..5e8dca2f899d4 100644 --- a/clients/client-customer-profiles/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-customer-profiles/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { CustomerProfilesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { CustomerProfilesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-customer-profiles/src/auth/httpAuthSchemeProvider.ts b/clients/client-customer-profiles/src/auth/httpAuthSchemeProvider.ts index e09dbd0225000..e649ac6e4727e 100644 --- a/clients/client-customer-profiles/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-customer-profiles/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { CustomerProfilesClientConfig, CustomerProfilesClientResolvedConfig } from "../CustomerProfilesClient"; +import { type CustomerProfilesClientResolvedConfig, CustomerProfilesClientConfig } from "../CustomerProfilesClient"; /** * @internal diff --git a/clients/client-customer-profiles/src/commands/AddProfileKeyCommand.ts b/clients/client-customer-profiles/src/commands/AddProfileKeyCommand.ts index ac05235de1fc9..d1c22481643df 100644 --- a/clients/client-customer-profiles/src/commands/AddProfileKeyCommand.ts +++ b/clients/client-customer-profiles/src/commands/AddProfileKeyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddProfileKeyRequest, AddProfileKeyResponse } from "../models/models_0"; +import type { AddProfileKeyRequest, AddProfileKeyResponse } from "../models/models_0"; import { AddProfileKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/BatchGetCalculatedAttributeForProfileCommand.ts b/clients/client-customer-profiles/src/commands/BatchGetCalculatedAttributeForProfileCommand.ts index 2e5fbe44c6010..e1d66e7afe94f 100644 --- a/clients/client-customer-profiles/src/commands/BatchGetCalculatedAttributeForProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/BatchGetCalculatedAttributeForProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchGetCalculatedAttributeForProfileRequest, BatchGetCalculatedAttributeForProfileResponse, } from "../models/models_0"; diff --git a/clients/client-customer-profiles/src/commands/BatchGetProfileCommand.ts b/clients/client-customer-profiles/src/commands/BatchGetProfileCommand.ts index 492d6f0cdfe1f..31114501659ec 100644 --- a/clients/client-customer-profiles/src/commands/BatchGetProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/BatchGetProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetProfileRequest, BatchGetProfileResponse } from "../models/models_0"; +import type { BatchGetProfileRequest, BatchGetProfileResponse } from "../models/models_0"; import { BatchGetProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateCalculatedAttributeDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/CreateCalculatedAttributeDefinitionCommand.ts index f77b72fa03d1e..77670159b1f94 100644 --- a/clients/client-customer-profiles/src/commands/CreateCalculatedAttributeDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateCalculatedAttributeDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateCalculatedAttributeDefinitionRequest, CreateCalculatedAttributeDefinitionResponse, } from "../models/models_0"; diff --git a/clients/client-customer-profiles/src/commands/CreateDomainCommand.ts b/clients/client-customer-profiles/src/commands/CreateDomainCommand.ts index 4e3952223834c..3185ee71083e7 100644 --- a/clients/client-customer-profiles/src/commands/CreateDomainCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; +import type { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; import { CreateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateDomainLayoutCommand.ts b/clients/client-customer-profiles/src/commands/CreateDomainLayoutCommand.ts index 79662d94e692a..ab4fc525d450a 100644 --- a/clients/client-customer-profiles/src/commands/CreateDomainLayoutCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateDomainLayoutCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainLayoutRequest, CreateDomainLayoutResponse } from "../models/models_0"; +import type { CreateDomainLayoutRequest, CreateDomainLayoutResponse } from "../models/models_0"; import { CreateDomainLayout } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateEventStreamCommand.ts b/clients/client-customer-profiles/src/commands/CreateEventStreamCommand.ts index 5c7d5a735fcd0..5e5ce8ad69d69 100644 --- a/clients/client-customer-profiles/src/commands/CreateEventStreamCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateEventStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventStreamRequest, CreateEventStreamResponse } from "../models/models_0"; +import type { CreateEventStreamRequest, CreateEventStreamResponse } from "../models/models_0"; import { CreateEventStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateEventTriggerCommand.ts b/clients/client-customer-profiles/src/commands/CreateEventTriggerCommand.ts index 9a6a34a268b3f..4205522d369bc 100644 --- a/clients/client-customer-profiles/src/commands/CreateEventTriggerCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateEventTriggerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventTriggerRequest, CreateEventTriggerResponse } from "../models/models_0"; +import type { CreateEventTriggerRequest, CreateEventTriggerResponse } from "../models/models_0"; import { CreateEventTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateIntegrationWorkflowCommand.ts b/clients/client-customer-profiles/src/commands/CreateIntegrationWorkflowCommand.ts index 6e34579074a3d..d180c23067a72 100644 --- a/clients/client-customer-profiles/src/commands/CreateIntegrationWorkflowCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateIntegrationWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIntegrationWorkflowRequest, CreateIntegrationWorkflowResponse } from "../models/models_0"; +import type { CreateIntegrationWorkflowRequest, CreateIntegrationWorkflowResponse } from "../models/models_0"; import { CreateIntegrationWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateProfileCommand.ts b/clients/client-customer-profiles/src/commands/CreateProfileCommand.ts index d06f0cb3df7d7..fc3e815700f2e 100644 --- a/clients/client-customer-profiles/src/commands/CreateProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProfileRequest, CreateProfileResponse } from "../models/models_0"; +import type { CreateProfileRequest, CreateProfileResponse } from "../models/models_0"; import { CreateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateRecommenderCommand.ts b/clients/client-customer-profiles/src/commands/CreateRecommenderCommand.ts index c4436ad7119fb..5165778788ad5 100644 --- a/clients/client-customer-profiles/src/commands/CreateRecommenderCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateRecommenderCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRecommenderRequest, CreateRecommenderResponse } from "../models/models_0"; +import type { CreateRecommenderRequest, CreateRecommenderResponse } from "../models/models_0"; import { CreateRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateSegmentDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/CreateSegmentDefinitionCommand.ts index 5507bb8ff8fbf..d4e58997e4215 100644 --- a/clients/client-customer-profiles/src/commands/CreateSegmentDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateSegmentDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSegmentDefinitionRequest, CreateSegmentDefinitionResponse } from "../models/models_0"; +import type { CreateSegmentDefinitionRequest, CreateSegmentDefinitionResponse } from "../models/models_0"; import { CreateSegmentDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateSegmentEstimateCommand.ts b/clients/client-customer-profiles/src/commands/CreateSegmentEstimateCommand.ts index 924530c0089f8..24931c82a5215 100644 --- a/clients/client-customer-profiles/src/commands/CreateSegmentEstimateCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateSegmentEstimateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSegmentEstimateRequest, CreateSegmentEstimateResponse } from "../models/models_0"; +import type { CreateSegmentEstimateRequest, CreateSegmentEstimateResponse } from "../models/models_0"; import { CreateSegmentEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateSegmentSnapshotCommand.ts b/clients/client-customer-profiles/src/commands/CreateSegmentSnapshotCommand.ts index 21cb74ac98f87..d9b53314c331a 100644 --- a/clients/client-customer-profiles/src/commands/CreateSegmentSnapshotCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateSegmentSnapshotCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSegmentSnapshotRequest, CreateSegmentSnapshotResponse } from "../models/models_0"; +import type { CreateSegmentSnapshotRequest, CreateSegmentSnapshotResponse } from "../models/models_0"; import { CreateSegmentSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/CreateUploadJobCommand.ts b/clients/client-customer-profiles/src/commands/CreateUploadJobCommand.ts index 8ecf6b8f49ddb..66ac49859abeb 100644 --- a/clients/client-customer-profiles/src/commands/CreateUploadJobCommand.ts +++ b/clients/client-customer-profiles/src/commands/CreateUploadJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUploadJobRequest, CreateUploadJobResponse } from "../models/models_0"; +import type { CreateUploadJobRequest, CreateUploadJobResponse } from "../models/models_0"; import { CreateUploadJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteCalculatedAttributeDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/DeleteCalculatedAttributeDefinitionCommand.ts index 6a6e4b1d7fb8f..8742d38d2aa6f 100644 --- a/clients/client-customer-profiles/src/commands/DeleteCalculatedAttributeDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteCalculatedAttributeDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteCalculatedAttributeDefinitionRequest, DeleteCalculatedAttributeDefinitionResponse, } from "../models/models_0"; diff --git a/clients/client-customer-profiles/src/commands/DeleteDomainCommand.ts b/clients/client-customer-profiles/src/commands/DeleteDomainCommand.ts index e030eb1eea5fe..61b929df5893f 100644 --- a/clients/client-customer-profiles/src/commands/DeleteDomainCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; +import type { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; import { DeleteDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteDomainLayoutCommand.ts b/clients/client-customer-profiles/src/commands/DeleteDomainLayoutCommand.ts index 71f4ad7d00e1b..e546248dfb087 100644 --- a/clients/client-customer-profiles/src/commands/DeleteDomainLayoutCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteDomainLayoutCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainLayoutRequest, DeleteDomainLayoutResponse } from "../models/models_0"; +import type { DeleteDomainLayoutRequest, DeleteDomainLayoutResponse } from "../models/models_0"; import { DeleteDomainLayout } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteDomainObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/DeleteDomainObjectTypeCommand.ts index 9d7e034b1497f..c1094310ccb6d 100644 --- a/clients/client-customer-profiles/src/commands/DeleteDomainObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteDomainObjectTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainObjectTypeRequest, DeleteDomainObjectTypeResponse } from "../models/models_0"; +import type { DeleteDomainObjectTypeRequest, DeleteDomainObjectTypeResponse } from "../models/models_0"; import { DeleteDomainObjectType } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteEventStreamCommand.ts b/clients/client-customer-profiles/src/commands/DeleteEventStreamCommand.ts index 849d92863e0e0..a28a2e76a8ba4 100644 --- a/clients/client-customer-profiles/src/commands/DeleteEventStreamCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteEventStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventStreamRequest, DeleteEventStreamResponse } from "../models/models_0"; +import type { DeleteEventStreamRequest, DeleteEventStreamResponse } from "../models/models_0"; import { DeleteEventStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteEventTriggerCommand.ts b/clients/client-customer-profiles/src/commands/DeleteEventTriggerCommand.ts index 96c478747e4d1..122d44fd40117 100644 --- a/clients/client-customer-profiles/src/commands/DeleteEventTriggerCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteEventTriggerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventTriggerRequest, DeleteEventTriggerResponse } from "../models/models_0"; +import type { DeleteEventTriggerRequest, DeleteEventTriggerResponse } from "../models/models_0"; import { DeleteEventTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteIntegrationCommand.ts b/clients/client-customer-profiles/src/commands/DeleteIntegrationCommand.ts index 456138ceb03db..02506ccca977b 100644 --- a/clients/client-customer-profiles/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIntegrationRequest, DeleteIntegrationResponse } from "../models/models_0"; +import type { DeleteIntegrationRequest, DeleteIntegrationResponse } from "../models/models_0"; import { DeleteIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteProfileCommand.ts b/clients/client-customer-profiles/src/commands/DeleteProfileCommand.ts index 6439ca1507ac4..0b4d8030bfff4 100644 --- a/clients/client-customer-profiles/src/commands/DeleteProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfileRequest, DeleteProfileResponse } from "../models/models_0"; +import type { DeleteProfileRequest, DeleteProfileResponse } from "../models/models_0"; import { DeleteProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteProfileKeyCommand.ts b/clients/client-customer-profiles/src/commands/DeleteProfileKeyCommand.ts index 5c10a71754df1..8636881b85f55 100644 --- a/clients/client-customer-profiles/src/commands/DeleteProfileKeyCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteProfileKeyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfileKeyRequest, DeleteProfileKeyResponse } from "../models/models_0"; +import type { DeleteProfileKeyRequest, DeleteProfileKeyResponse } from "../models/models_0"; import { DeleteProfileKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteProfileObjectCommand.ts b/clients/client-customer-profiles/src/commands/DeleteProfileObjectCommand.ts index 7bdb18f27a2d8..f389f6ef83be6 100644 --- a/clients/client-customer-profiles/src/commands/DeleteProfileObjectCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteProfileObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfileObjectRequest, DeleteProfileObjectResponse } from "../models/models_0"; +import type { DeleteProfileObjectRequest, DeleteProfileObjectResponse } from "../models/models_0"; import { DeleteProfileObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteProfileObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/DeleteProfileObjectTypeCommand.ts index c4e774a5bb03b..05611c88ba198 100644 --- a/clients/client-customer-profiles/src/commands/DeleteProfileObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteProfileObjectTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfileObjectTypeRequest, DeleteProfileObjectTypeResponse } from "../models/models_0"; +import type { DeleteProfileObjectTypeRequest, DeleteProfileObjectTypeResponse } from "../models/models_0"; import { DeleteProfileObjectType } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteRecommenderCommand.ts b/clients/client-customer-profiles/src/commands/DeleteRecommenderCommand.ts index 569512acbcd99..8a28600582048 100644 --- a/clients/client-customer-profiles/src/commands/DeleteRecommenderCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteRecommenderCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecommenderRequest, DeleteRecommenderResponse } from "../models/models_0"; +import type { DeleteRecommenderRequest, DeleteRecommenderResponse } from "../models/models_0"; import { DeleteRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteSegmentDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/DeleteSegmentDefinitionCommand.ts index ef2251d206447..19cd4c6d59d16 100644 --- a/clients/client-customer-profiles/src/commands/DeleteSegmentDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteSegmentDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSegmentDefinitionRequest, DeleteSegmentDefinitionResponse } from "../models/models_0"; +import type { DeleteSegmentDefinitionRequest, DeleteSegmentDefinitionResponse } from "../models/models_0"; import { DeleteSegmentDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DeleteWorkflowCommand.ts b/clients/client-customer-profiles/src/commands/DeleteWorkflowCommand.ts index f9583e7cf6b5c..14c74e878ad2a 100644 --- a/clients/client-customer-profiles/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-customer-profiles/src/commands/DeleteWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_0"; +import type { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_0"; import { DeleteWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/DetectProfileObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/DetectProfileObjectTypeCommand.ts index 1f2c2d2683a80..33d04aa279fbe 100644 --- a/clients/client-customer-profiles/src/commands/DetectProfileObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/DetectProfileObjectTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectProfileObjectTypeRequest, DetectProfileObjectTypeResponse } from "../models/models_0"; +import type { DetectProfileObjectTypeRequest, DetectProfileObjectTypeResponse } from "../models/models_0"; import { DetectProfileObjectType } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetAutoMergingPreviewCommand.ts b/clients/client-customer-profiles/src/commands/GetAutoMergingPreviewCommand.ts index e8700ed28b862..e6fc604d2bcc1 100644 --- a/clients/client-customer-profiles/src/commands/GetAutoMergingPreviewCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetAutoMergingPreviewCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAutoMergingPreviewRequest, GetAutoMergingPreviewResponse } from "../models/models_0"; +import type { GetAutoMergingPreviewRequest, GetAutoMergingPreviewResponse } from "../models/models_0"; import { GetAutoMergingPreview } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetCalculatedAttributeDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/GetCalculatedAttributeDefinitionCommand.ts index 358831c729252..bf2bf37c0d0c3 100644 --- a/clients/client-customer-profiles/src/commands/GetCalculatedAttributeDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetCalculatedAttributeDefinitionCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCalculatedAttributeDefinitionRequest, GetCalculatedAttributeDefinitionResponse } from "../models/models_0"; +import type { + GetCalculatedAttributeDefinitionRequest, + GetCalculatedAttributeDefinitionResponse, +} from "../models/models_0"; import { GetCalculatedAttributeDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetCalculatedAttributeForProfileCommand.ts b/clients/client-customer-profiles/src/commands/GetCalculatedAttributeForProfileCommand.ts index b5b9c11582f88..0b70d25dc52e8 100644 --- a/clients/client-customer-profiles/src/commands/GetCalculatedAttributeForProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetCalculatedAttributeForProfileCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCalculatedAttributeForProfileRequest, GetCalculatedAttributeForProfileResponse } from "../models/models_0"; +import type { + GetCalculatedAttributeForProfileRequest, + GetCalculatedAttributeForProfileResponse, +} from "../models/models_0"; import { GetCalculatedAttributeForProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetDomainCommand.ts b/clients/client-customer-profiles/src/commands/GetDomainCommand.ts index 5781f754f8a5f..4e37597c82c65 100644 --- a/clients/client-customer-profiles/src/commands/GetDomainCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainRequest, GetDomainResponse } from "../models/models_0"; +import type { GetDomainRequest, GetDomainResponse } from "../models/models_0"; import { GetDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetDomainLayoutCommand.ts b/clients/client-customer-profiles/src/commands/GetDomainLayoutCommand.ts index fef348c6279b9..d3b18d2096674 100644 --- a/clients/client-customer-profiles/src/commands/GetDomainLayoutCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetDomainLayoutCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainLayoutRequest, GetDomainLayoutResponse } from "../models/models_0"; +import type { GetDomainLayoutRequest, GetDomainLayoutResponse } from "../models/models_0"; import { GetDomainLayout } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetDomainObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/GetDomainObjectTypeCommand.ts index 873ddcc508379..83990fe0d876a 100644 --- a/clients/client-customer-profiles/src/commands/GetDomainObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetDomainObjectTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainObjectTypeRequest, GetDomainObjectTypeResponse } from "../models/models_0"; +import type { GetDomainObjectTypeRequest, GetDomainObjectTypeResponse } from "../models/models_0"; import { GetDomainObjectType } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetEventStreamCommand.ts b/clients/client-customer-profiles/src/commands/GetEventStreamCommand.ts index 321db72f28598..633701214f0f6 100644 --- a/clients/client-customer-profiles/src/commands/GetEventStreamCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetEventStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventStreamRequest, GetEventStreamResponse } from "../models/models_0"; +import type { GetEventStreamRequest, GetEventStreamResponse } from "../models/models_0"; import { GetEventStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetEventTriggerCommand.ts b/clients/client-customer-profiles/src/commands/GetEventTriggerCommand.ts index 21a4b71743a3f..864b56e296f68 100644 --- a/clients/client-customer-profiles/src/commands/GetEventTriggerCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetEventTriggerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventTriggerRequest, GetEventTriggerResponse } from "../models/models_0"; +import type { GetEventTriggerRequest, GetEventTriggerResponse } from "../models/models_0"; import { GetEventTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetIdentityResolutionJobCommand.ts b/clients/client-customer-profiles/src/commands/GetIdentityResolutionJobCommand.ts index d9746852dbf90..a08a45560b314 100644 --- a/clients/client-customer-profiles/src/commands/GetIdentityResolutionJobCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetIdentityResolutionJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentityResolutionJobRequest, GetIdentityResolutionJobResponse } from "../models/models_0"; +import type { GetIdentityResolutionJobRequest, GetIdentityResolutionJobResponse } from "../models/models_0"; import { GetIdentityResolutionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetIntegrationCommand.ts b/clients/client-customer-profiles/src/commands/GetIntegrationCommand.ts index 8f6840b9b3a04..87149f4fd79d2 100644 --- a/clients/client-customer-profiles/src/commands/GetIntegrationCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIntegrationRequest, GetIntegrationResponse } from "../models/models_0"; +import type { GetIntegrationRequest, GetIntegrationResponse } from "../models/models_0"; import { GetIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetMatchesCommand.ts b/clients/client-customer-profiles/src/commands/GetMatchesCommand.ts index cd90df8e1076e..833ef9d1a226c 100644 --- a/clients/client-customer-profiles/src/commands/GetMatchesCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetMatchesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMatchesRequest, GetMatchesResponse } from "../models/models_0"; +import type { GetMatchesRequest, GetMatchesResponse } from "../models/models_0"; import { GetMatches } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetObjectTypeAttributeStatisticsCommand.ts b/clients/client-customer-profiles/src/commands/GetObjectTypeAttributeStatisticsCommand.ts index c10e4b18deb86..85567ae41bba5 100644 --- a/clients/client-customer-profiles/src/commands/GetObjectTypeAttributeStatisticsCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetObjectTypeAttributeStatisticsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectTypeAttributeStatisticsRequest, GetObjectTypeAttributeStatisticsResponse } from "../models/models_0"; +import type { + GetObjectTypeAttributeStatisticsRequest, + GetObjectTypeAttributeStatisticsResponse, +} from "../models/models_0"; import { GetObjectTypeAttributeStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetProfileHistoryRecordCommand.ts b/clients/client-customer-profiles/src/commands/GetProfileHistoryRecordCommand.ts index d29501befb79c..e17f6cdb167be 100644 --- a/clients/client-customer-profiles/src/commands/GetProfileHistoryRecordCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetProfileHistoryRecordCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileHistoryRecordRequest, GetProfileHistoryRecordResponse } from "../models/models_0"; +import type { GetProfileHistoryRecordRequest, GetProfileHistoryRecordResponse } from "../models/models_0"; import { GetProfileHistoryRecord } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetProfileObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/GetProfileObjectTypeCommand.ts index 7a54fd3b86db1..77fd3e52807b1 100644 --- a/clients/client-customer-profiles/src/commands/GetProfileObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetProfileObjectTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileObjectTypeRequest, GetProfileObjectTypeResponse } from "../models/models_0"; +import type { GetProfileObjectTypeRequest, GetProfileObjectTypeResponse } from "../models/models_0"; import { GetProfileObjectType } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetProfileObjectTypeTemplateCommand.ts b/clients/client-customer-profiles/src/commands/GetProfileObjectTypeTemplateCommand.ts index 487d95ea8a9a4..4ebed3802d372 100644 --- a/clients/client-customer-profiles/src/commands/GetProfileObjectTypeTemplateCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetProfileObjectTypeTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileObjectTypeTemplateRequest, GetProfileObjectTypeTemplateResponse } from "../models/models_0"; +import type { GetProfileObjectTypeTemplateRequest, GetProfileObjectTypeTemplateResponse } from "../models/models_0"; import { GetProfileObjectTypeTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetProfileRecommendationsCommand.ts b/clients/client-customer-profiles/src/commands/GetProfileRecommendationsCommand.ts index dc37ff766136c..543da37006773 100644 --- a/clients/client-customer-profiles/src/commands/GetProfileRecommendationsCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetProfileRecommendationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileRecommendationsRequest, GetProfileRecommendationsResponse } from "../models/models_0"; +import type { GetProfileRecommendationsRequest, GetProfileRecommendationsResponse } from "../models/models_0"; import { GetProfileRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetRecommenderCommand.ts b/clients/client-customer-profiles/src/commands/GetRecommenderCommand.ts index 41201c4c6e78d..4084dbea8d164 100644 --- a/clients/client-customer-profiles/src/commands/GetRecommenderCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetRecommenderCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommenderRequest, GetRecommenderResponse } from "../models/models_0"; +import type { GetRecommenderRequest, GetRecommenderResponse } from "../models/models_0"; import { GetRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetSegmentDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/GetSegmentDefinitionCommand.ts index bdc2c7f9a39ba..7b61bc940cb76 100644 --- a/clients/client-customer-profiles/src/commands/GetSegmentDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSegmentDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentDefinitionRequest, GetSegmentDefinitionResponse } from "../models/models_0"; +import type { GetSegmentDefinitionRequest, GetSegmentDefinitionResponse } from "../models/models_0"; import { GetSegmentDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetSegmentEstimateCommand.ts b/clients/client-customer-profiles/src/commands/GetSegmentEstimateCommand.ts index 95d77aa0508fb..9109b4926ec55 100644 --- a/clients/client-customer-profiles/src/commands/GetSegmentEstimateCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSegmentEstimateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentEstimateRequest, GetSegmentEstimateResponse } from "../models/models_0"; +import type { GetSegmentEstimateRequest, GetSegmentEstimateResponse } from "../models/models_0"; import { GetSegmentEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetSegmentMembershipCommand.ts b/clients/client-customer-profiles/src/commands/GetSegmentMembershipCommand.ts index b97dd011527e8..914a1049a76e1 100644 --- a/clients/client-customer-profiles/src/commands/GetSegmentMembershipCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSegmentMembershipCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentMembershipRequest, GetSegmentMembershipResponse } from "../models/models_0"; +import type { GetSegmentMembershipRequest, GetSegmentMembershipResponse } from "../models/models_0"; import { GetSegmentMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetSegmentSnapshotCommand.ts b/clients/client-customer-profiles/src/commands/GetSegmentSnapshotCommand.ts index 66868812335ad..56824f77d509d 100644 --- a/clients/client-customer-profiles/src/commands/GetSegmentSnapshotCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSegmentSnapshotCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentSnapshotRequest, GetSegmentSnapshotResponse } from "../models/models_0"; +import type { GetSegmentSnapshotRequest, GetSegmentSnapshotResponse } from "../models/models_0"; import { GetSegmentSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetSimilarProfilesCommand.ts b/clients/client-customer-profiles/src/commands/GetSimilarProfilesCommand.ts index c0fb3157df071..e10b7606d66e7 100644 --- a/clients/client-customer-profiles/src/commands/GetSimilarProfilesCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetSimilarProfilesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSimilarProfilesRequest, GetSimilarProfilesResponse } from "../models/models_0"; +import type { GetSimilarProfilesRequest, GetSimilarProfilesResponse } from "../models/models_0"; import { GetSimilarProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetUploadJobCommand.ts b/clients/client-customer-profiles/src/commands/GetUploadJobCommand.ts index 98dd1380ae73a..185b7118556c4 100644 --- a/clients/client-customer-profiles/src/commands/GetUploadJobCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetUploadJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUploadJobRequest, GetUploadJobResponse } from "../models/models_0"; +import type { GetUploadJobRequest, GetUploadJobResponse } from "../models/models_0"; import { GetUploadJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetUploadJobPathCommand.ts b/clients/client-customer-profiles/src/commands/GetUploadJobPathCommand.ts index 5585f91005fba..23883ecdc9f34 100644 --- a/clients/client-customer-profiles/src/commands/GetUploadJobPathCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetUploadJobPathCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUploadJobPathRequest, GetUploadJobPathResponse } from "../models/models_0"; +import type { GetUploadJobPathRequest, GetUploadJobPathResponse } from "../models/models_0"; import { GetUploadJobPath } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetWorkflowCommand.ts b/clients/client-customer-profiles/src/commands/GetWorkflowCommand.ts index 8ab823fbb6b08..03da3eeb4d591 100644 --- a/clients/client-customer-profiles/src/commands/GetWorkflowCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; +import type { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; import { GetWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/GetWorkflowStepsCommand.ts b/clients/client-customer-profiles/src/commands/GetWorkflowStepsCommand.ts index 1474b030b2ce6..f8c8102dc694f 100644 --- a/clients/client-customer-profiles/src/commands/GetWorkflowStepsCommand.ts +++ b/clients/client-customer-profiles/src/commands/GetWorkflowStepsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkflowStepsRequest, GetWorkflowStepsResponse } from "../models/models_0"; +import type { GetWorkflowStepsRequest, GetWorkflowStepsResponse } from "../models/models_0"; import { GetWorkflowSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListAccountIntegrationsCommand.ts b/clients/client-customer-profiles/src/commands/ListAccountIntegrationsCommand.ts index f790df3b9d615..3b90906df8e59 100644 --- a/clients/client-customer-profiles/src/commands/ListAccountIntegrationsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListAccountIntegrationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountIntegrationsRequest, ListAccountIntegrationsResponse } from "../models/models_0"; +import type { ListAccountIntegrationsRequest, ListAccountIntegrationsResponse } from "../models/models_0"; import { ListAccountIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts b/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts index f50109f38d1cb..689b9b0560892 100644 --- a/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListCalculatedAttributeDefinitionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCalculatedAttributeDefinitionsRequest, ListCalculatedAttributeDefinitionsResponse, } from "../models/models_0"; diff --git a/clients/client-customer-profiles/src/commands/ListCalculatedAttributesForProfileCommand.ts b/clients/client-customer-profiles/src/commands/ListCalculatedAttributesForProfileCommand.ts index 3e3f908dd89e9..f3b8f53b779d2 100644 --- a/clients/client-customer-profiles/src/commands/ListCalculatedAttributesForProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListCalculatedAttributesForProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCalculatedAttributesForProfileRequest, ListCalculatedAttributesForProfileResponse, } from "../models/models_0"; diff --git a/clients/client-customer-profiles/src/commands/ListDomainLayoutsCommand.ts b/clients/client-customer-profiles/src/commands/ListDomainLayoutsCommand.ts index 322c48c12aad3..8cbfff4d6d115 100644 --- a/clients/client-customer-profiles/src/commands/ListDomainLayoutsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListDomainLayoutsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainLayoutsRequest, ListDomainLayoutsResponse } from "../models/models_0"; +import type { ListDomainLayoutsRequest, ListDomainLayoutsResponse } from "../models/models_0"; import { ListDomainLayouts } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListDomainObjectTypesCommand.ts b/clients/client-customer-profiles/src/commands/ListDomainObjectTypesCommand.ts index c4493373038a7..890a9fbcc9223 100644 --- a/clients/client-customer-profiles/src/commands/ListDomainObjectTypesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListDomainObjectTypesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainObjectTypesRequest, ListDomainObjectTypesResponse } from "../models/models_0"; +import type { ListDomainObjectTypesRequest, ListDomainObjectTypesResponse } from "../models/models_0"; import { ListDomainObjectTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListDomainsCommand.ts b/clients/client-customer-profiles/src/commands/ListDomainsCommand.ts index 2749104cea022..daa30f704bf83 100644 --- a/clients/client-customer-profiles/src/commands/ListDomainsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListDomainsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; +import type { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; import { ListDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListEventStreamsCommand.ts b/clients/client-customer-profiles/src/commands/ListEventStreamsCommand.ts index 3cb67f27e11ac..2dee2aa809ea1 100644 --- a/clients/client-customer-profiles/src/commands/ListEventStreamsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListEventStreamsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventStreamsRequest, ListEventStreamsResponse } from "../models/models_0"; +import type { ListEventStreamsRequest, ListEventStreamsResponse } from "../models/models_0"; import { ListEventStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListEventTriggersCommand.ts b/clients/client-customer-profiles/src/commands/ListEventTriggersCommand.ts index 4d4e52915bb54..10963ff6f04e4 100644 --- a/clients/client-customer-profiles/src/commands/ListEventTriggersCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListEventTriggersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventTriggersRequest, ListEventTriggersResponse } from "../models/models_0"; +import type { ListEventTriggersRequest, ListEventTriggersResponse } from "../models/models_0"; import { ListEventTriggers } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListIdentityResolutionJobsCommand.ts b/clients/client-customer-profiles/src/commands/ListIdentityResolutionJobsCommand.ts index ba42a8b878426..461271db74e39 100644 --- a/clients/client-customer-profiles/src/commands/ListIdentityResolutionJobsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListIdentityResolutionJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentityResolutionJobsRequest, ListIdentityResolutionJobsResponse } from "../models/models_0"; +import type { ListIdentityResolutionJobsRequest, ListIdentityResolutionJobsResponse } from "../models/models_0"; import { ListIdentityResolutionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListIntegrationsCommand.ts b/clients/client-customer-profiles/src/commands/ListIntegrationsCommand.ts index aecec42cdbde3..ed7f1e3de47bc 100644 --- a/clients/client-customer-profiles/src/commands/ListIntegrationsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListIntegrationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIntegrationsRequest, ListIntegrationsResponse } from "../models/models_0"; +import type { ListIntegrationsRequest, ListIntegrationsResponse } from "../models/models_0"; import { ListIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListObjectTypeAttributeValuesCommand.ts b/clients/client-customer-profiles/src/commands/ListObjectTypeAttributeValuesCommand.ts index 189a8cd861a63..8937c12eb2986 100644 --- a/clients/client-customer-profiles/src/commands/ListObjectTypeAttributeValuesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListObjectTypeAttributeValuesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectTypeAttributeValuesRequest, ListObjectTypeAttributeValuesResponse } from "../models/models_0"; +import type { ListObjectTypeAttributeValuesRequest, ListObjectTypeAttributeValuesResponse } from "../models/models_0"; import { ListObjectTypeAttributeValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListObjectTypeAttributesCommand.ts b/clients/client-customer-profiles/src/commands/ListObjectTypeAttributesCommand.ts index f3243cc439d14..de764b2710c81 100644 --- a/clients/client-customer-profiles/src/commands/ListObjectTypeAttributesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListObjectTypeAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectTypeAttributesRequest, ListObjectTypeAttributesResponse } from "../models/models_0"; +import type { ListObjectTypeAttributesRequest, ListObjectTypeAttributesResponse } from "../models/models_0"; import { ListObjectTypeAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListProfileAttributeValuesCommand.ts b/clients/client-customer-profiles/src/commands/ListProfileAttributeValuesCommand.ts index f84b1d11d5077..5d636b0d6a20e 100644 --- a/clients/client-customer-profiles/src/commands/ListProfileAttributeValuesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListProfileAttributeValuesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProfileAttributeValuesRequest, ProfileAttributeValuesResponse } from "../models/models_0"; +import type { ProfileAttributeValuesRequest, ProfileAttributeValuesResponse } from "../models/models_0"; import { ListProfileAttributeValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListProfileHistoryRecordsCommand.ts b/clients/client-customer-profiles/src/commands/ListProfileHistoryRecordsCommand.ts index 241ebd3b6afdd..b9284c8cc2da0 100644 --- a/clients/client-customer-profiles/src/commands/ListProfileHistoryRecordsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListProfileHistoryRecordsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfileHistoryRecordsRequest, ListProfileHistoryRecordsResponse } from "../models/models_0"; +import type { ListProfileHistoryRecordsRequest, ListProfileHistoryRecordsResponse } from "../models/models_0"; import { ListProfileHistoryRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListProfileObjectTypeTemplatesCommand.ts b/clients/client-customer-profiles/src/commands/ListProfileObjectTypeTemplatesCommand.ts index f23e7b136f341..002523b5ecb65 100644 --- a/clients/client-customer-profiles/src/commands/ListProfileObjectTypeTemplatesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListProfileObjectTypeTemplatesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfileObjectTypeTemplatesRequest, ListProfileObjectTypeTemplatesResponse } from "../models/models_0"; +import type { ListProfileObjectTypeTemplatesRequest, ListProfileObjectTypeTemplatesResponse } from "../models/models_0"; import { ListProfileObjectTypeTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListProfileObjectTypesCommand.ts b/clients/client-customer-profiles/src/commands/ListProfileObjectTypesCommand.ts index 34148d42e2ed9..9037d688bf547 100644 --- a/clients/client-customer-profiles/src/commands/ListProfileObjectTypesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListProfileObjectTypesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfileObjectTypesRequest, ListProfileObjectTypesResponse } from "../models/models_0"; +import type { ListProfileObjectTypesRequest, ListProfileObjectTypesResponse } from "../models/models_0"; import { ListProfileObjectTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListProfileObjectsCommand.ts b/clients/client-customer-profiles/src/commands/ListProfileObjectsCommand.ts index 613724202455e..f7b38bf613eb8 100644 --- a/clients/client-customer-profiles/src/commands/ListProfileObjectsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListProfileObjectsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfileObjectsRequest, ListProfileObjectsResponse } from "../models/models_0"; +import type { ListProfileObjectsRequest, ListProfileObjectsResponse } from "../models/models_0"; import { ListProfileObjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListRecommenderRecipesCommand.ts b/clients/client-customer-profiles/src/commands/ListRecommenderRecipesCommand.ts index 29af3a0828d13..1d04b2a01d052 100644 --- a/clients/client-customer-profiles/src/commands/ListRecommenderRecipesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListRecommenderRecipesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommenderRecipesRequest, ListRecommenderRecipesResponse } from "../models/models_0"; +import type { ListRecommenderRecipesRequest, ListRecommenderRecipesResponse } from "../models/models_0"; import { ListRecommenderRecipes } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListRecommendersCommand.ts b/clients/client-customer-profiles/src/commands/ListRecommendersCommand.ts index 467b5eff57c30..572a1f4f97e3e 100644 --- a/clients/client-customer-profiles/src/commands/ListRecommendersCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListRecommendersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendersRequest, ListRecommendersResponse } from "../models/models_0"; +import type { ListRecommendersRequest, ListRecommendersResponse } from "../models/models_0"; import { ListRecommenders } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListRuleBasedMatchesCommand.ts b/clients/client-customer-profiles/src/commands/ListRuleBasedMatchesCommand.ts index 5fc2cec305b02..114c1d0d1279a 100644 --- a/clients/client-customer-profiles/src/commands/ListRuleBasedMatchesCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListRuleBasedMatchesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRuleBasedMatchesRequest, ListRuleBasedMatchesResponse } from "../models/models_0"; +import type { ListRuleBasedMatchesRequest, ListRuleBasedMatchesResponse } from "../models/models_0"; import { ListRuleBasedMatches } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListSegmentDefinitionsCommand.ts b/clients/client-customer-profiles/src/commands/ListSegmentDefinitionsCommand.ts index 2803e11a025f9..8f087d63decf7 100644 --- a/clients/client-customer-profiles/src/commands/ListSegmentDefinitionsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListSegmentDefinitionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSegmentDefinitionsRequest, ListSegmentDefinitionsResponse } from "../models/models_0"; +import type { ListSegmentDefinitionsRequest, ListSegmentDefinitionsResponse } from "../models/models_0"; import { ListSegmentDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListTagsForResourceCommand.ts b/clients/client-customer-profiles/src/commands/ListTagsForResourceCommand.ts index 715e6014c06f4..85311f92cf5d8 100644 --- a/clients/client-customer-profiles/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListUploadJobsCommand.ts b/clients/client-customer-profiles/src/commands/ListUploadJobsCommand.ts index 81f12e6a1cfb8..a572c54024e09 100644 --- a/clients/client-customer-profiles/src/commands/ListUploadJobsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListUploadJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUploadJobsRequest, ListUploadJobsResponse } from "../models/models_0"; +import type { ListUploadJobsRequest, ListUploadJobsResponse } from "../models/models_0"; import { ListUploadJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/ListWorkflowsCommand.ts b/clients/client-customer-profiles/src/commands/ListWorkflowsCommand.ts index 7398e009cbd6e..6b64a9485a96b 100644 --- a/clients/client-customer-profiles/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-customer-profiles/src/commands/ListWorkflowsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; +import type { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; import { ListWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/MergeProfilesCommand.ts b/clients/client-customer-profiles/src/commands/MergeProfilesCommand.ts index 49b372440d135..7d4ffa503f0ac 100644 --- a/clients/client-customer-profiles/src/commands/MergeProfilesCommand.ts +++ b/clients/client-customer-profiles/src/commands/MergeProfilesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MergeProfilesRequest, MergeProfilesResponse } from "../models/models_0"; +import type { MergeProfilesRequest, MergeProfilesResponse } from "../models/models_0"; import { MergeProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/PutDomainObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/PutDomainObjectTypeCommand.ts index 02dbca05ce51a..ace62e445d482 100644 --- a/clients/client-customer-profiles/src/commands/PutDomainObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/PutDomainObjectTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDomainObjectTypeRequest, PutDomainObjectTypeResponse } from "../models/models_0"; +import type { PutDomainObjectTypeRequest, PutDomainObjectTypeResponse } from "../models/models_0"; import { PutDomainObjectType } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/PutIntegrationCommand.ts b/clients/client-customer-profiles/src/commands/PutIntegrationCommand.ts index 88db0fccf0389..aa24aee18ec77 100644 --- a/clients/client-customer-profiles/src/commands/PutIntegrationCommand.ts +++ b/clients/client-customer-profiles/src/commands/PutIntegrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutIntegrationRequest, PutIntegrationResponse } from "../models/models_0"; +import type { PutIntegrationRequest, PutIntegrationResponse } from "../models/models_0"; import { PutIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/PutProfileObjectCommand.ts b/clients/client-customer-profiles/src/commands/PutProfileObjectCommand.ts index da6e0755dcf2e..2ade842d41a0b 100644 --- a/clients/client-customer-profiles/src/commands/PutProfileObjectCommand.ts +++ b/clients/client-customer-profiles/src/commands/PutProfileObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutProfileObjectRequest, PutProfileObjectResponse } from "../models/models_0"; +import type { PutProfileObjectRequest, PutProfileObjectResponse } from "../models/models_0"; import { PutProfileObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/PutProfileObjectTypeCommand.ts b/clients/client-customer-profiles/src/commands/PutProfileObjectTypeCommand.ts index 95edbe0c8256c..fc3fd4897665f 100644 --- a/clients/client-customer-profiles/src/commands/PutProfileObjectTypeCommand.ts +++ b/clients/client-customer-profiles/src/commands/PutProfileObjectTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutProfileObjectTypeRequest, PutProfileObjectTypeResponse } from "../models/models_0"; +import type { PutProfileObjectTypeRequest, PutProfileObjectTypeResponse } from "../models/models_0"; import { PutProfileObjectType } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/SearchProfilesCommand.ts b/clients/client-customer-profiles/src/commands/SearchProfilesCommand.ts index c61c21b5ba8ad..68cad03735573 100644 --- a/clients/client-customer-profiles/src/commands/SearchProfilesCommand.ts +++ b/clients/client-customer-profiles/src/commands/SearchProfilesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchProfilesRequest, SearchProfilesResponse } from "../models/models_0"; +import type { SearchProfilesRequest, SearchProfilesResponse } from "../models/models_0"; import { SearchProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/StartRecommenderCommand.ts b/clients/client-customer-profiles/src/commands/StartRecommenderCommand.ts index 4dc81a7bccff1..2f6a04dc25d72 100644 --- a/clients/client-customer-profiles/src/commands/StartRecommenderCommand.ts +++ b/clients/client-customer-profiles/src/commands/StartRecommenderCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRecommenderRequest, StartRecommenderResponse } from "../models/models_0"; +import type { StartRecommenderRequest, StartRecommenderResponse } from "../models/models_0"; import { StartRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/StartUploadJobCommand.ts b/clients/client-customer-profiles/src/commands/StartUploadJobCommand.ts index 8041fb68dd84c..da6b12489ffac 100644 --- a/clients/client-customer-profiles/src/commands/StartUploadJobCommand.ts +++ b/clients/client-customer-profiles/src/commands/StartUploadJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartUploadJobRequest, StartUploadJobResponse } from "../models/models_0"; +import type { StartUploadJobRequest, StartUploadJobResponse } from "../models/models_0"; import { StartUploadJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/StopRecommenderCommand.ts b/clients/client-customer-profiles/src/commands/StopRecommenderCommand.ts index 7daa4fcec8705..b8d1d87435b76 100644 --- a/clients/client-customer-profiles/src/commands/StopRecommenderCommand.ts +++ b/clients/client-customer-profiles/src/commands/StopRecommenderCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopRecommenderRequest } from "../models/models_0"; -import { StopRecommenderResponse } from "../models/models_1"; +import type { StopRecommenderRequest } from "../models/models_0"; +import type { StopRecommenderResponse } from "../models/models_1"; import { StopRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/StopUploadJobCommand.ts b/clients/client-customer-profiles/src/commands/StopUploadJobCommand.ts index a58eb4020fd21..93a8d672abc80 100644 --- a/clients/client-customer-profiles/src/commands/StopUploadJobCommand.ts +++ b/clients/client-customer-profiles/src/commands/StopUploadJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopUploadJobRequest, StopUploadJobResponse } from "../models/models_1"; +import type { StopUploadJobRequest, StopUploadJobResponse } from "../models/models_1"; import { StopUploadJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/TagResourceCommand.ts b/clients/client-customer-profiles/src/commands/TagResourceCommand.ts index bcad4a0513829..6d4d60bfe93ce 100644 --- a/clients/client-customer-profiles/src/commands/TagResourceCommand.ts +++ b/clients/client-customer-profiles/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/UntagResourceCommand.ts b/clients/client-customer-profiles/src/commands/UntagResourceCommand.ts index a0606e580885c..e78fd9e7a1c4e 100644 --- a/clients/client-customer-profiles/src/commands/UntagResourceCommand.ts +++ b/clients/client-customer-profiles/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/UpdateCalculatedAttributeDefinitionCommand.ts b/clients/client-customer-profiles/src/commands/UpdateCalculatedAttributeDefinitionCommand.ts index 43bd810b96a6e..83378accffe7c 100644 --- a/clients/client-customer-profiles/src/commands/UpdateCalculatedAttributeDefinitionCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateCalculatedAttributeDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateCalculatedAttributeDefinitionRequest, UpdateCalculatedAttributeDefinitionResponse, } from "../models/models_1"; diff --git a/clients/client-customer-profiles/src/commands/UpdateDomainCommand.ts b/clients/client-customer-profiles/src/commands/UpdateDomainCommand.ts index 4d057ad817689..d12a24bcdd23b 100644 --- a/clients/client-customer-profiles/src/commands/UpdateDomainCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_1"; +import type { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_1"; import { UpdateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/UpdateDomainLayoutCommand.ts b/clients/client-customer-profiles/src/commands/UpdateDomainLayoutCommand.ts index 2f440764e0887..584769d6216c7 100644 --- a/clients/client-customer-profiles/src/commands/UpdateDomainLayoutCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateDomainLayoutCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainLayoutRequest, UpdateDomainLayoutResponse } from "../models/models_1"; +import type { UpdateDomainLayoutRequest, UpdateDomainLayoutResponse } from "../models/models_1"; import { UpdateDomainLayout } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/UpdateEventTriggerCommand.ts b/clients/client-customer-profiles/src/commands/UpdateEventTriggerCommand.ts index 8f5034bebf8fe..c1d5fc1370d82 100644 --- a/clients/client-customer-profiles/src/commands/UpdateEventTriggerCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateEventTriggerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEventTriggerRequest, UpdateEventTriggerResponse } from "../models/models_1"; +import type { UpdateEventTriggerRequest, UpdateEventTriggerResponse } from "../models/models_1"; import { UpdateEventTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/UpdateProfileCommand.ts b/clients/client-customer-profiles/src/commands/UpdateProfileCommand.ts index a5e178636c672..52fc54abd3d00 100644 --- a/clients/client-customer-profiles/src/commands/UpdateProfileCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProfileRequest, UpdateProfileResponse } from "../models/models_1"; +import type { UpdateProfileRequest, UpdateProfileResponse } from "../models/models_1"; import { UpdateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/commands/UpdateRecommenderCommand.ts b/clients/client-customer-profiles/src/commands/UpdateRecommenderCommand.ts index 692f7bfea7777..f19f95ccbdf0d 100644 --- a/clients/client-customer-profiles/src/commands/UpdateRecommenderCommand.ts +++ b/clients/client-customer-profiles/src/commands/UpdateRecommenderCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient"; +import type { + CustomerProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../CustomerProfilesClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecommenderRequest, UpdateRecommenderResponse } from "../models/models_1"; +import type { UpdateRecommenderRequest, UpdateRecommenderResponse } from "../models/models_1"; import { UpdateRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-customer-profiles/src/endpoint/EndpointParameters.ts b/clients/client-customer-profiles/src/endpoint/EndpointParameters.ts index 8cba343b970bb..6ba5525ddd149 100644 --- a/clients/client-customer-profiles/src/endpoint/EndpointParameters.ts +++ b/clients/client-customer-profiles/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-customer-profiles/src/endpoint/endpointResolver.ts b/clients/client-customer-profiles/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-customer-profiles/src/endpoint/endpointResolver.ts +++ b/clients/client-customer-profiles/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-customer-profiles/src/extensionConfiguration.ts b/clients/client-customer-profiles/src/extensionConfiguration.ts index 0725c2c744eeb..20c597181dd22 100644 --- a/clients/client-customer-profiles/src/extensionConfiguration.ts +++ b/clients/client-customer-profiles/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-customer-profiles/src/models/CustomerProfilesServiceException.ts b/clients/client-customer-profiles/src/models/CustomerProfilesServiceException.ts index 3bbb7bc8778a9..46472d81a4992 100644 --- a/clients/client-customer-profiles/src/models/CustomerProfilesServiceException.ts +++ b/clients/client-customer-profiles/src/models/CustomerProfilesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-customer-profiles/src/models/errors.ts b/clients/client-customer-profiles/src/models/errors.ts index bda153dc8f3d6..68725cb277ff5 100644 --- a/clients/client-customer-profiles/src/models/errors.ts +++ b/clients/client-customer-profiles/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { CustomerProfilesServiceException as __BaseException } from "./CustomerProfilesServiceException"; diff --git a/clients/client-customer-profiles/src/pagination/GetSimilarProfilesPaginator.ts b/clients/client-customer-profiles/src/pagination/GetSimilarProfilesPaginator.ts index f3101502703bd..c9a32982a1c5e 100644 --- a/clients/client-customer-profiles/src/pagination/GetSimilarProfilesPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/GetSimilarProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSimilarProfilesCommand, diff --git a/clients/client-customer-profiles/src/pagination/Interfaces.ts b/clients/client-customer-profiles/src/pagination/Interfaces.ts index 1665bc8061382..9e4fe63e5e3a7 100644 --- a/clients/client-customer-profiles/src/pagination/Interfaces.ts +++ b/clients/client-customer-profiles/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { CustomerProfilesClient } from "../CustomerProfilesClient"; diff --git a/clients/client-customer-profiles/src/pagination/ListDomainLayoutsPaginator.ts b/clients/client-customer-profiles/src/pagination/ListDomainLayoutsPaginator.ts index d00a08309168a..9bb9e47f25186 100644 --- a/clients/client-customer-profiles/src/pagination/ListDomainLayoutsPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListDomainLayoutsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainLayoutsCommand, diff --git a/clients/client-customer-profiles/src/pagination/ListDomainObjectTypesPaginator.ts b/clients/client-customer-profiles/src/pagination/ListDomainObjectTypesPaginator.ts index 1eb99bb9e4c68..52df12278bde4 100644 --- a/clients/client-customer-profiles/src/pagination/ListDomainObjectTypesPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListDomainObjectTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainObjectTypesCommand, diff --git a/clients/client-customer-profiles/src/pagination/ListEventStreamsPaginator.ts b/clients/client-customer-profiles/src/pagination/ListEventStreamsPaginator.ts index 8f8811468ed55..f0961cfbd30be 100644 --- a/clients/client-customer-profiles/src/pagination/ListEventStreamsPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListEventStreamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventStreamsCommand, diff --git a/clients/client-customer-profiles/src/pagination/ListEventTriggersPaginator.ts b/clients/client-customer-profiles/src/pagination/ListEventTriggersPaginator.ts index 7de48ccb77f9a..0822276c0fe64 100644 --- a/clients/client-customer-profiles/src/pagination/ListEventTriggersPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListEventTriggersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventTriggersCommand, diff --git a/clients/client-customer-profiles/src/pagination/ListObjectTypeAttributesPaginator.ts b/clients/client-customer-profiles/src/pagination/ListObjectTypeAttributesPaginator.ts index 98cd7bdf26278..ef4d00679139f 100644 --- a/clients/client-customer-profiles/src/pagination/ListObjectTypeAttributesPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListObjectTypeAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListObjectTypeAttributesCommand, diff --git a/clients/client-customer-profiles/src/pagination/ListRecommenderRecipesPaginator.ts b/clients/client-customer-profiles/src/pagination/ListRecommenderRecipesPaginator.ts index 0bf8fd2e680b2..634bb9e720f70 100644 --- a/clients/client-customer-profiles/src/pagination/ListRecommenderRecipesPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListRecommenderRecipesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommenderRecipesCommand, diff --git a/clients/client-customer-profiles/src/pagination/ListRecommendersPaginator.ts b/clients/client-customer-profiles/src/pagination/ListRecommendersPaginator.ts index d4336c888b288..5351e604916c2 100644 --- a/clients/client-customer-profiles/src/pagination/ListRecommendersPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListRecommendersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendersCommand, diff --git a/clients/client-customer-profiles/src/pagination/ListRuleBasedMatchesPaginator.ts b/clients/client-customer-profiles/src/pagination/ListRuleBasedMatchesPaginator.ts index 141a4935f736e..33f088bd9920d 100644 --- a/clients/client-customer-profiles/src/pagination/ListRuleBasedMatchesPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListRuleBasedMatchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRuleBasedMatchesCommand, diff --git a/clients/client-customer-profiles/src/pagination/ListSegmentDefinitionsPaginator.ts b/clients/client-customer-profiles/src/pagination/ListSegmentDefinitionsPaginator.ts index aa56e6465561a..187af9d957219 100644 --- a/clients/client-customer-profiles/src/pagination/ListSegmentDefinitionsPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListSegmentDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSegmentDefinitionsCommand, diff --git a/clients/client-customer-profiles/src/pagination/ListUploadJobsPaginator.ts b/clients/client-customer-profiles/src/pagination/ListUploadJobsPaginator.ts index 842dac4d7c9b3..49eb145664ddf 100644 --- a/clients/client-customer-profiles/src/pagination/ListUploadJobsPaginator.ts +++ b/clients/client-customer-profiles/src/pagination/ListUploadJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUploadJobsCommand, diff --git a/clients/client-customer-profiles/src/runtimeConfig.browser.ts b/clients/client-customer-profiles/src/runtimeConfig.browser.ts index d48578aaa61a1..51d328746dfd4 100644 --- a/clients/client-customer-profiles/src/runtimeConfig.browser.ts +++ b/clients/client-customer-profiles/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CustomerProfilesClientConfig } from "./CustomerProfilesClient"; + +import type { CustomerProfilesClientConfig } from "./CustomerProfilesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-customer-profiles/src/runtimeConfig.native.ts b/clients/client-customer-profiles/src/runtimeConfig.native.ts index 51ee30298d8d7..552d1f0e79966 100644 --- a/clients/client-customer-profiles/src/runtimeConfig.native.ts +++ b/clients/client-customer-profiles/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { CustomerProfilesClientConfig } from "./CustomerProfilesClient"; +import type { CustomerProfilesClientConfig } from "./CustomerProfilesClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-customer-profiles/src/runtimeConfig.shared.ts b/clients/client-customer-profiles/src/runtimeConfig.shared.ts index 26c591ac12eb5..c6bd01916d661 100644 --- a/clients/client-customer-profiles/src/runtimeConfig.shared.ts +++ b/clients/client-customer-profiles/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultCustomerProfilesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { CustomerProfilesClientConfig } from "./CustomerProfilesClient"; +import type { CustomerProfilesClientConfig } from "./CustomerProfilesClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-customer-profiles/src/runtimeConfig.ts b/clients/client-customer-profiles/src/runtimeConfig.ts index d669bd6d4ebe0..cc8429e3adfd1 100644 --- a/clients/client-customer-profiles/src/runtimeConfig.ts +++ b/clients/client-customer-profiles/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { CustomerProfilesClientConfig } from "./CustomerProfilesClient"; + +import type { CustomerProfilesClientConfig } from "./CustomerProfilesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-customer-profiles/src/runtimeExtensions.ts b/clients/client-customer-profiles/src/runtimeExtensions.ts index eb60d25dc7823..c844648983080 100644 --- a/clients/client-customer-profiles/src/runtimeExtensions.ts +++ b/clients/client-customer-profiles/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { CustomerProfilesExtensionConfiguration } from "./extensionConfiguration"; +import type { CustomerProfilesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-customer-profiles/src/schemas/schemas_0.ts b/clients/client-customer-profiles/src/schemas/schemas_0.ts index d22dd0bf26d56..285dd7e514eb5 100644 --- a/clients/client-customer-profiles/src/schemas/schemas_0.ts +++ b/clients/client-customer-profiles/src/schemas/schemas_0.ts @@ -789,7 +789,7 @@ const n0 = "com.amazonaws.customerprofiles"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-data-pipeline/package.json b/clients/client-data-pipeline/package.json index 91f219c245cbb..3e42f0bf0e558 100644 --- a/clients/client-data-pipeline/package.json +++ b/clients/client-data-pipeline/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-data-pipeline/src/DataPipeline.ts b/clients/client-data-pipeline/src/DataPipeline.ts index d6026a3519f08..95b8fb1ea5c60 100644 --- a/clients/client-data-pipeline/src/DataPipeline.ts +++ b/clients/client-data-pipeline/src/DataPipeline.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ActivatePipelineCommand, @@ -81,7 +81,7 @@ import { ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput, } from "./commands/ValidatePipelineDefinitionCommand"; -import { DataPipelineClient, DataPipelineClientConfig } from "./DataPipelineClient"; +import { DataPipelineClient } from "./DataPipelineClient"; const commands = { ActivatePipelineCommand, diff --git a/clients/client-data-pipeline/src/DataPipelineClient.ts b/clients/client-data-pipeline/src/DataPipelineClient.ts index d5e72c273a333..179f95037e562 100644 --- a/clients/client-data-pipeline/src/DataPipelineClient.ts +++ b/clients/client-data-pipeline/src/DataPipelineClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDataPipelineHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { ActivatePipelineCommandInput, ActivatePipelineCommandOutput } from "./commands/ActivatePipelineCommand"; @@ -95,7 +104,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-data-pipeline/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-data-pipeline/src/auth/httpAuthExtensionConfiguration.ts index cc6d2f0b3386f..c5cff5cc871e2 100644 --- a/clients/client-data-pipeline/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-data-pipeline/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DataPipelineHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DataPipelineHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-data-pipeline/src/auth/httpAuthSchemeProvider.ts b/clients/client-data-pipeline/src/auth/httpAuthSchemeProvider.ts index 33ff4cc2307e1..bcb190a3b40d4 100644 --- a/clients/client-data-pipeline/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-data-pipeline/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DataPipelineClientConfig, DataPipelineClientResolvedConfig } from "../DataPipelineClient"; +import { type DataPipelineClientResolvedConfig, DataPipelineClientConfig } from "../DataPipelineClient"; /** * @internal diff --git a/clients/client-data-pipeline/src/commands/ActivatePipelineCommand.ts b/clients/client-data-pipeline/src/commands/ActivatePipelineCommand.ts index 5b631bd612ce4..5840be905051f 100644 --- a/clients/client-data-pipeline/src/commands/ActivatePipelineCommand.ts +++ b/clients/client-data-pipeline/src/commands/ActivatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivatePipelineInput, ActivatePipelineOutput } from "../models/models_0"; +import type { ActivatePipelineInput, ActivatePipelineOutput } from "../models/models_0"; import { ActivatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/AddTagsCommand.ts b/clients/client-data-pipeline/src/commands/AddTagsCommand.ts index 35f53a8582112..e0c211d74000a 100644 --- a/clients/client-data-pipeline/src/commands/AddTagsCommand.ts +++ b/clients/client-data-pipeline/src/commands/AddTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsInput, AddTagsOutput } from "../models/models_0"; +import type { AddTagsInput, AddTagsOutput } from "../models/models_0"; import { AddTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/CreatePipelineCommand.ts b/clients/client-data-pipeline/src/commands/CreatePipelineCommand.ts index 785480be8fb04..8e4905981b0a6 100644 --- a/clients/client-data-pipeline/src/commands/CreatePipelineCommand.ts +++ b/clients/client-data-pipeline/src/commands/CreatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePipelineInput, CreatePipelineOutput } from "../models/models_0"; +import type { CreatePipelineInput, CreatePipelineOutput } from "../models/models_0"; import { CreatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/DeactivatePipelineCommand.ts b/clients/client-data-pipeline/src/commands/DeactivatePipelineCommand.ts index 29697a2e1837d..881ab4345f676 100644 --- a/clients/client-data-pipeline/src/commands/DeactivatePipelineCommand.ts +++ b/clients/client-data-pipeline/src/commands/DeactivatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeactivatePipelineInput, DeactivatePipelineOutput } from "../models/models_0"; +import type { DeactivatePipelineInput, DeactivatePipelineOutput } from "../models/models_0"; import { DeactivatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/DeletePipelineCommand.ts b/clients/client-data-pipeline/src/commands/DeletePipelineCommand.ts index d510225df9438..5b3685995dcc5 100644 --- a/clients/client-data-pipeline/src/commands/DeletePipelineCommand.ts +++ b/clients/client-data-pipeline/src/commands/DeletePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePipelineInput } from "../models/models_0"; +import type { DeletePipelineInput } from "../models/models_0"; import { DeletePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/DescribeObjectsCommand.ts b/clients/client-data-pipeline/src/commands/DescribeObjectsCommand.ts index cdab9df5e38a2..1171100dc43fa 100644 --- a/clients/client-data-pipeline/src/commands/DescribeObjectsCommand.ts +++ b/clients/client-data-pipeline/src/commands/DescribeObjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeObjectsInput, DescribeObjectsOutput } from "../models/models_0"; +import type { DescribeObjectsInput, DescribeObjectsOutput } from "../models/models_0"; import { DescribeObjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/DescribePipelinesCommand.ts b/clients/client-data-pipeline/src/commands/DescribePipelinesCommand.ts index a5f60ca4ea2d6..5201ff93e5bdb 100644 --- a/clients/client-data-pipeline/src/commands/DescribePipelinesCommand.ts +++ b/clients/client-data-pipeline/src/commands/DescribePipelinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePipelinesInput, DescribePipelinesOutput } from "../models/models_0"; +import type { DescribePipelinesInput, DescribePipelinesOutput } from "../models/models_0"; import { DescribePipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/EvaluateExpressionCommand.ts b/clients/client-data-pipeline/src/commands/EvaluateExpressionCommand.ts index 37d21fc602095..7b6dc0a5770c3 100644 --- a/clients/client-data-pipeline/src/commands/EvaluateExpressionCommand.ts +++ b/clients/client-data-pipeline/src/commands/EvaluateExpressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvaluateExpressionInput, EvaluateExpressionOutput } from "../models/models_0"; +import type { EvaluateExpressionInput, EvaluateExpressionOutput } from "../models/models_0"; import { EvaluateExpression } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/GetPipelineDefinitionCommand.ts b/clients/client-data-pipeline/src/commands/GetPipelineDefinitionCommand.ts index 26a8cf86f25a0..4808aff2bbede 100644 --- a/clients/client-data-pipeline/src/commands/GetPipelineDefinitionCommand.ts +++ b/clients/client-data-pipeline/src/commands/GetPipelineDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPipelineDefinitionInput, GetPipelineDefinitionOutput } from "../models/models_0"; +import type { GetPipelineDefinitionInput, GetPipelineDefinitionOutput } from "../models/models_0"; import { GetPipelineDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/ListPipelinesCommand.ts b/clients/client-data-pipeline/src/commands/ListPipelinesCommand.ts index b1d8f4b5eccb5..5a321e6bf5136 100644 --- a/clients/client-data-pipeline/src/commands/ListPipelinesCommand.ts +++ b/clients/client-data-pipeline/src/commands/ListPipelinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0"; +import type { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0"; import { ListPipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/PollForTaskCommand.ts b/clients/client-data-pipeline/src/commands/PollForTaskCommand.ts index 9457033296cb1..5b3e2d930707c 100644 --- a/clients/client-data-pipeline/src/commands/PollForTaskCommand.ts +++ b/clients/client-data-pipeline/src/commands/PollForTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PollForTaskInput, PollForTaskOutput } from "../models/models_0"; +import type { PollForTaskInput, PollForTaskOutput } from "../models/models_0"; import { PollForTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/PutPipelineDefinitionCommand.ts b/clients/client-data-pipeline/src/commands/PutPipelineDefinitionCommand.ts index a2baf5929c99d..5fa9f7151cffc 100644 --- a/clients/client-data-pipeline/src/commands/PutPipelineDefinitionCommand.ts +++ b/clients/client-data-pipeline/src/commands/PutPipelineDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPipelineDefinitionInput, PutPipelineDefinitionOutput } from "../models/models_0"; +import type { PutPipelineDefinitionInput, PutPipelineDefinitionOutput } from "../models/models_0"; import { PutPipelineDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/QueryObjectsCommand.ts b/clients/client-data-pipeline/src/commands/QueryObjectsCommand.ts index 44f0cddb26539..0c8030e522907 100644 --- a/clients/client-data-pipeline/src/commands/QueryObjectsCommand.ts +++ b/clients/client-data-pipeline/src/commands/QueryObjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryObjectsInput, QueryObjectsOutput } from "../models/models_0"; +import type { QueryObjectsInput, QueryObjectsOutput } from "../models/models_0"; import { QueryObjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/RemoveTagsCommand.ts b/clients/client-data-pipeline/src/commands/RemoveTagsCommand.ts index 3c66a9b92989c..c5498e4549c04 100644 --- a/clients/client-data-pipeline/src/commands/RemoveTagsCommand.ts +++ b/clients/client-data-pipeline/src/commands/RemoveTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0"; +import type { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0"; import { RemoveTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/ReportTaskProgressCommand.ts b/clients/client-data-pipeline/src/commands/ReportTaskProgressCommand.ts index f7462ab0cb7e2..ad48f9b488622 100644 --- a/clients/client-data-pipeline/src/commands/ReportTaskProgressCommand.ts +++ b/clients/client-data-pipeline/src/commands/ReportTaskProgressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReportTaskProgressInput, ReportTaskProgressOutput } from "../models/models_0"; +import type { ReportTaskProgressInput, ReportTaskProgressOutput } from "../models/models_0"; import { ReportTaskProgress } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/ReportTaskRunnerHeartbeatCommand.ts b/clients/client-data-pipeline/src/commands/ReportTaskRunnerHeartbeatCommand.ts index 839fa39586ad4..e8d4b06a594c5 100644 --- a/clients/client-data-pipeline/src/commands/ReportTaskRunnerHeartbeatCommand.ts +++ b/clients/client-data-pipeline/src/commands/ReportTaskRunnerHeartbeatCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReportTaskRunnerHeartbeatInput, ReportTaskRunnerHeartbeatOutput } from "../models/models_0"; +import type { ReportTaskRunnerHeartbeatInput, ReportTaskRunnerHeartbeatOutput } from "../models/models_0"; import { ReportTaskRunnerHeartbeat } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/SetStatusCommand.ts b/clients/client-data-pipeline/src/commands/SetStatusCommand.ts index fc57c7ce090f0..dc09b8e822245 100644 --- a/clients/client-data-pipeline/src/commands/SetStatusCommand.ts +++ b/clients/client-data-pipeline/src/commands/SetStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetStatusInput } from "../models/models_0"; +import type { SetStatusInput } from "../models/models_0"; import { SetStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/SetTaskStatusCommand.ts b/clients/client-data-pipeline/src/commands/SetTaskStatusCommand.ts index 0b2a9ee6d5871..7b34fec2de639 100644 --- a/clients/client-data-pipeline/src/commands/SetTaskStatusCommand.ts +++ b/clients/client-data-pipeline/src/commands/SetTaskStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetTaskStatusInput, SetTaskStatusOutput } from "../models/models_0"; +import type { SetTaskStatusInput, SetTaskStatusOutput } from "../models/models_0"; import { SetTaskStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/commands/ValidatePipelineDefinitionCommand.ts b/clients/client-data-pipeline/src/commands/ValidatePipelineDefinitionCommand.ts index b59a00b2475e6..3c2d8f84c6e0c 100644 --- a/clients/client-data-pipeline/src/commands/ValidatePipelineDefinitionCommand.ts +++ b/clients/client-data-pipeline/src/commands/ValidatePipelineDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; +import type { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidatePipelineDefinitionInput, ValidatePipelineDefinitionOutput } from "../models/models_0"; +import type { ValidatePipelineDefinitionInput, ValidatePipelineDefinitionOutput } from "../models/models_0"; import { ValidatePipelineDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-data-pipeline/src/endpoint/EndpointParameters.ts b/clients/client-data-pipeline/src/endpoint/EndpointParameters.ts index abd8ba6e46b5f..9b17aa0b3d556 100644 --- a/clients/client-data-pipeline/src/endpoint/EndpointParameters.ts +++ b/clients/client-data-pipeline/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-data-pipeline/src/endpoint/endpointResolver.ts b/clients/client-data-pipeline/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-data-pipeline/src/endpoint/endpointResolver.ts +++ b/clients/client-data-pipeline/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-data-pipeline/src/extensionConfiguration.ts b/clients/client-data-pipeline/src/extensionConfiguration.ts index 535a17b8d9fd3..97acfbfd152e0 100644 --- a/clients/client-data-pipeline/src/extensionConfiguration.ts +++ b/clients/client-data-pipeline/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-data-pipeline/src/models/DataPipelineServiceException.ts b/clients/client-data-pipeline/src/models/DataPipelineServiceException.ts index 5442e6aa39dde..47e27d4ff9d4c 100644 --- a/clients/client-data-pipeline/src/models/DataPipelineServiceException.ts +++ b/clients/client-data-pipeline/src/models/DataPipelineServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-data-pipeline/src/models/errors.ts b/clients/client-data-pipeline/src/models/errors.ts index dfd0142985b19..c9e9c950dff75 100644 --- a/clients/client-data-pipeline/src/models/errors.ts +++ b/clients/client-data-pipeline/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DataPipelineServiceException as __BaseException } from "./DataPipelineServiceException"; diff --git a/clients/client-data-pipeline/src/pagination/DescribeObjectsPaginator.ts b/clients/client-data-pipeline/src/pagination/DescribeObjectsPaginator.ts index 0c5f8a7d8127d..071eb72c2f8b1 100644 --- a/clients/client-data-pipeline/src/pagination/DescribeObjectsPaginator.ts +++ b/clients/client-data-pipeline/src/pagination/DescribeObjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeObjectsCommand, diff --git a/clients/client-data-pipeline/src/pagination/Interfaces.ts b/clients/client-data-pipeline/src/pagination/Interfaces.ts index 2b082465b4401..7870375d86808 100644 --- a/clients/client-data-pipeline/src/pagination/Interfaces.ts +++ b/clients/client-data-pipeline/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DataPipelineClient } from "../DataPipelineClient"; diff --git a/clients/client-data-pipeline/src/pagination/ListPipelinesPaginator.ts b/clients/client-data-pipeline/src/pagination/ListPipelinesPaginator.ts index df178d47b28cf..bea3490ba3132 100644 --- a/clients/client-data-pipeline/src/pagination/ListPipelinesPaginator.ts +++ b/clients/client-data-pipeline/src/pagination/ListPipelinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelinesCommand, diff --git a/clients/client-data-pipeline/src/pagination/QueryObjectsPaginator.ts b/clients/client-data-pipeline/src/pagination/QueryObjectsPaginator.ts index 98d8629f5c5ff..db63e26f57532 100644 --- a/clients/client-data-pipeline/src/pagination/QueryObjectsPaginator.ts +++ b/clients/client-data-pipeline/src/pagination/QueryObjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { QueryObjectsCommand, diff --git a/clients/client-data-pipeline/src/runtimeConfig.browser.ts b/clients/client-data-pipeline/src/runtimeConfig.browser.ts index 2469abd596956..909a111698b2c 100644 --- a/clients/client-data-pipeline/src/runtimeConfig.browser.ts +++ b/clients/client-data-pipeline/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataPipelineClientConfig } from "./DataPipelineClient"; + +import type { DataPipelineClientConfig } from "./DataPipelineClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-data-pipeline/src/runtimeConfig.native.ts b/clients/client-data-pipeline/src/runtimeConfig.native.ts index 60454168057f8..07bb04f2e08c7 100644 --- a/clients/client-data-pipeline/src/runtimeConfig.native.ts +++ b/clients/client-data-pipeline/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DataPipelineClientConfig } from "./DataPipelineClient"; +import type { DataPipelineClientConfig } from "./DataPipelineClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-data-pipeline/src/runtimeConfig.shared.ts b/clients/client-data-pipeline/src/runtimeConfig.shared.ts index 0135432035be4..eb6819785bc5a 100644 --- a/clients/client-data-pipeline/src/runtimeConfig.shared.ts +++ b/clients/client-data-pipeline/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDataPipelineHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DataPipelineClientConfig } from "./DataPipelineClient"; +import type { DataPipelineClientConfig } from "./DataPipelineClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-data-pipeline/src/runtimeConfig.ts b/clients/client-data-pipeline/src/runtimeConfig.ts index b58688eac73b8..11649d5c4fe42 100644 --- a/clients/client-data-pipeline/src/runtimeConfig.ts +++ b/clients/client-data-pipeline/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataPipelineClientConfig } from "./DataPipelineClient"; + +import type { DataPipelineClientConfig } from "./DataPipelineClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-data-pipeline/src/runtimeExtensions.ts b/clients/client-data-pipeline/src/runtimeExtensions.ts index d01081dd5f733..027f909542dda 100644 --- a/clients/client-data-pipeline/src/runtimeExtensions.ts +++ b/clients/client-data-pipeline/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DataPipelineExtensionConfiguration } from "./extensionConfiguration"; +import type { DataPipelineExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-data-pipeline/src/schemas/schemas_0.ts b/clients/client-data-pipeline/src/schemas/schemas_0.ts index 663162b5ee77b..e9ba4f51437c9 100644 --- a/clients/client-data-pipeline/src/schemas/schemas_0.ts +++ b/clients/client-data-pipeline/src/schemas/schemas_0.ts @@ -154,7 +154,7 @@ const n0 = "com.amazonaws.datapipeline"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-database-migration-service/package.json b/clients/client-database-migration-service/package.json index dcceab03df6de..4f12791608d3a 100644 --- a/clients/client-database-migration-service/package.json +++ b/clients/client-database-migration-service/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-database-migration-service/src/DatabaseMigrationService.ts b/clients/client-database-migration-service/src/DatabaseMigrationService.ts index 13d7fa77d4b07..d37a86dcdb592 100644 --- a/clients/client-database-migration-service/src/DatabaseMigrationService.ts +++ b/clients/client-database-migration-service/src/DatabaseMigrationService.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddTagsToResourceCommand, @@ -597,7 +597,7 @@ import { UpdateSubscriptionsToEventBridgeCommandInput, UpdateSubscriptionsToEventBridgeCommandOutput, } from "./commands/UpdateSubscriptionsToEventBridgeCommand"; -import { DatabaseMigrationServiceClient, DatabaseMigrationServiceClientConfig } from "./DatabaseMigrationServiceClient"; +import { DatabaseMigrationServiceClient } from "./DatabaseMigrationServiceClient"; const commands = { AddTagsToResourceCommand, diff --git a/clients/client-database-migration-service/src/DatabaseMigrationServiceClient.ts b/clients/client-database-migration-service/src/DatabaseMigrationServiceClient.ts index 8cd5b88f711b8..a4e5a3c575ece 100644 --- a/clients/client-database-migration-service/src/DatabaseMigrationServiceClient.ts +++ b/clients/client-database-migration-service/src/DatabaseMigrationServiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDatabaseMigrationServiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput } from "./commands/AddTagsToResourceCommand"; @@ -480,7 +489,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-database-migration-service/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-database-migration-service/src/auth/httpAuthExtensionConfiguration.ts index 0af9717a455b2..3baea7abaea21 100644 --- a/clients/client-database-migration-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-database-migration-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DatabaseMigrationServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DatabaseMigrationServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-database-migration-service/src/auth/httpAuthSchemeProvider.ts b/clients/client-database-migration-service/src/auth/httpAuthSchemeProvider.ts index c07ab2eec4e1e..143b77f80a6fb 100644 --- a/clients/client-database-migration-service/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-database-migration-service/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type DatabaseMigrationServiceClientResolvedConfig, DatabaseMigrationServiceClientConfig, - DatabaseMigrationServiceClientResolvedConfig, } from "../DatabaseMigrationServiceClient"; /** diff --git a/clients/client-database-migration-service/src/commands/AddTagsToResourceCommand.ts b/clients/client-database-migration-service/src/commands/AddTagsToResourceCommand.ts index 3039885befb83..be57a22e7a635 100644 --- a/clients/client-database-migration-service/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-database-migration-service/src/commands/AddTagsToResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToResourceMessage, AddTagsToResourceResponse } from "../models/models_0"; +import type { AddTagsToResourceMessage, AddTagsToResourceResponse } from "../models/models_0"; import { AddTagsToResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-database-migration-service/src/commands/ApplyPendingMaintenanceActionCommand.ts index cc1f188b8a05c..fbb2b9d557b1d 100644 --- a/clients/client-database-migration-service/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-database-migration-service/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplyPendingMaintenanceActionMessage, ApplyPendingMaintenanceActionResponse } from "../models/models_0"; +import type { ApplyPendingMaintenanceActionMessage, ApplyPendingMaintenanceActionResponse } from "../models/models_0"; import { ApplyPendingMaintenanceAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/BatchStartRecommendationsCommand.ts b/clients/client-database-migration-service/src/commands/BatchStartRecommendationsCommand.ts index a59228698cb04..24dabe31411ba 100644 --- a/clients/client-database-migration-service/src/commands/BatchStartRecommendationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/BatchStartRecommendationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchStartRecommendationsRequest, BatchStartRecommendationsResponse } from "../models/models_0"; +import type { BatchStartRecommendationsRequest, BatchStartRecommendationsResponse } from "../models/models_0"; import { BatchStartRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CancelMetadataModelConversionCommand.ts b/clients/client-database-migration-service/src/commands/CancelMetadataModelConversionCommand.ts index 843b7b8b7a48c..5aa17db6eb863 100644 --- a/clients/client-database-migration-service/src/commands/CancelMetadataModelConversionCommand.ts +++ b/clients/client-database-migration-service/src/commands/CancelMetadataModelConversionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMetadataModelConversionMessage, CancelMetadataModelConversionResponse } from "../models/models_0"; +import type { CancelMetadataModelConversionMessage, CancelMetadataModelConversionResponse } from "../models/models_0"; import { CancelMetadataModelConversion } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CancelMetadataModelCreationCommand.ts b/clients/client-database-migration-service/src/commands/CancelMetadataModelCreationCommand.ts index 33cc5f5425288..3faa2d6e630b0 100644 --- a/clients/client-database-migration-service/src/commands/CancelMetadataModelCreationCommand.ts +++ b/clients/client-database-migration-service/src/commands/CancelMetadataModelCreationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMetadataModelCreationMessage, CancelMetadataModelCreationResponse } from "../models/models_0"; +import type { CancelMetadataModelCreationMessage, CancelMetadataModelCreationResponse } from "../models/models_0"; import { CancelMetadataModelCreation } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CancelReplicationTaskAssessmentRunCommand.ts b/clients/client-database-migration-service/src/commands/CancelReplicationTaskAssessmentRunCommand.ts index 77f4f93017240..eab5b211a8fba 100644 --- a/clients/client-database-migration-service/src/commands/CancelReplicationTaskAssessmentRunCommand.ts +++ b/clients/client-database-migration-service/src/commands/CancelReplicationTaskAssessmentRunCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CancelReplicationTaskAssessmentRunMessage, CancelReplicationTaskAssessmentRunResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/CreateDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/CreateDataMigrationCommand.ts index dd9dff6b76afc..09485196a6d44 100644 --- a/clients/client-database-migration-service/src/commands/CreateDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateDataMigrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataMigrationMessage, CreateDataMigrationResponse } from "../models/models_0"; +import type { CreateDataMigrationMessage, CreateDataMigrationResponse } from "../models/models_0"; import { CreateDataMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateDataProviderCommand.ts b/clients/client-database-migration-service/src/commands/CreateDataProviderCommand.ts index ba2837207b066..86d9ef47a8bf8 100644 --- a/clients/client-database-migration-service/src/commands/CreateDataProviderCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateDataProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataProviderMessage, CreateDataProviderResponse } from "../models/models_0"; +import type { CreateDataProviderMessage, CreateDataProviderResponse } from "../models/models_0"; import { CreateDataProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateEndpointCommand.ts b/clients/client-database-migration-service/src/commands/CreateEndpointCommand.ts index aedd912af5249..02cdae1138487 100644 --- a/clients/client-database-migration-service/src/commands/CreateEndpointCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEndpointMessage, CreateEndpointResponse } from "../models/models_0"; +import type { CreateEndpointMessage, CreateEndpointResponse } from "../models/models_0"; import { CreateEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-database-migration-service/src/commands/CreateEventSubscriptionCommand.ts index 2874d430197bf..63fbddd0ee342 100644 --- a/clients/client-database-migration-service/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateEventSubscriptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventSubscriptionMessage, CreateEventSubscriptionResponse } from "../models/models_0"; +import type { CreateEventSubscriptionMessage, CreateEventSubscriptionResponse } from "../models/models_0"; import { CreateEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateFleetAdvisorCollectorCommand.ts b/clients/client-database-migration-service/src/commands/CreateFleetAdvisorCollectorCommand.ts index 6bb07648173a5..e6796461402f2 100644 --- a/clients/client-database-migration-service/src/commands/CreateFleetAdvisorCollectorCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateFleetAdvisorCollectorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFleetAdvisorCollectorRequest, CreateFleetAdvisorCollectorResponse } from "../models/models_0"; +import type { CreateFleetAdvisorCollectorRequest, CreateFleetAdvisorCollectorResponse } from "../models/models_0"; import { CreateFleetAdvisorCollector } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateInstanceProfileCommand.ts b/clients/client-database-migration-service/src/commands/CreateInstanceProfileCommand.ts index a674c8592614a..5edcf3e5b7e65 100644 --- a/clients/client-database-migration-service/src/commands/CreateInstanceProfileCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateInstanceProfileCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInstanceProfileMessage, CreateInstanceProfileResponse } from "../models/models_0"; +import type { CreateInstanceProfileMessage, CreateInstanceProfileResponse } from "../models/models_0"; import { CreateInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateMigrationProjectCommand.ts b/clients/client-database-migration-service/src/commands/CreateMigrationProjectCommand.ts index 22d3238251d42..8566c3a8392fa 100644 --- a/clients/client-database-migration-service/src/commands/CreateMigrationProjectCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateMigrationProjectCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMigrationProjectMessage, CreateMigrationProjectResponse } from "../models/models_0"; +import type { CreateMigrationProjectMessage, CreateMigrationProjectResponse } from "../models/models_0"; import { CreateMigrationProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateReplicationConfigCommand.ts b/clients/client-database-migration-service/src/commands/CreateReplicationConfigCommand.ts index 3fe6351b1719f..519fae6098bc9 100644 --- a/clients/client-database-migration-service/src/commands/CreateReplicationConfigCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateReplicationConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReplicationConfigMessage, CreateReplicationConfigResponse } from "../models/models_0"; +import type { CreateReplicationConfigMessage, CreateReplicationConfigResponse } from "../models/models_0"; import { CreateReplicationConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateReplicationInstanceCommand.ts b/clients/client-database-migration-service/src/commands/CreateReplicationInstanceCommand.ts index bc55856dacb3c..1d13c5e4252ba 100644 --- a/clients/client-database-migration-service/src/commands/CreateReplicationInstanceCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateReplicationInstanceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReplicationInstanceMessage, CreateReplicationInstanceResponse } from "../models/models_0"; +import type { CreateReplicationInstanceMessage, CreateReplicationInstanceResponse } from "../models/models_0"; import { CreateReplicationInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateReplicationSubnetGroupCommand.ts b/clients/client-database-migration-service/src/commands/CreateReplicationSubnetGroupCommand.ts index c90a886fa0137..f7a9f5e56fb7e 100644 --- a/clients/client-database-migration-service/src/commands/CreateReplicationSubnetGroupCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateReplicationSubnetGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReplicationSubnetGroupMessage, CreateReplicationSubnetGroupResponse } from "../models/models_0"; +import type { CreateReplicationSubnetGroupMessage, CreateReplicationSubnetGroupResponse } from "../models/models_0"; import { CreateReplicationSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/CreateReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/CreateReplicationTaskCommand.ts index 7a00696079562..4477f912e4b1a 100644 --- a/clients/client-database-migration-service/src/commands/CreateReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/CreateReplicationTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReplicationTaskMessage, CreateReplicationTaskResponse } from "../models/models_0"; +import type { CreateReplicationTaskMessage, CreateReplicationTaskResponse } from "../models/models_0"; import { CreateReplicationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteCertificateCommand.ts b/clients/client-database-migration-service/src/commands/DeleteCertificateCommand.ts index 02388686826e9..2d8dd7cfcc20c 100644 --- a/clients/client-database-migration-service/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteCertificateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCertificateMessage, DeleteCertificateResponse } from "../models/models_0"; +import type { DeleteCertificateMessage, DeleteCertificateResponse } from "../models/models_0"; import { DeleteCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteConnectionCommand.ts b/clients/client-database-migration-service/src/commands/DeleteConnectionCommand.ts index bea188fccaa7c..2c375f9121e89 100644 --- a/clients/client-database-migration-service/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionMessage, DeleteConnectionResponse } from "../models/models_0"; +import type { DeleteConnectionMessage, DeleteConnectionResponse } from "../models/models_0"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/DeleteDataMigrationCommand.ts index 6feae769b5c28..be923e6db049b 100644 --- a/clients/client-database-migration-service/src/commands/DeleteDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteDataMigrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataMigrationMessage, DeleteDataMigrationResponse } from "../models/models_0"; +import type { DeleteDataMigrationMessage, DeleteDataMigrationResponse } from "../models/models_0"; import { DeleteDataMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteDataProviderCommand.ts b/clients/client-database-migration-service/src/commands/DeleteDataProviderCommand.ts index b0d3b1a560c49..e2449e069a0fe 100644 --- a/clients/client-database-migration-service/src/commands/DeleteDataProviderCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteDataProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataProviderMessage, DeleteDataProviderResponse } from "../models/models_0"; +import type { DeleteDataProviderMessage, DeleteDataProviderResponse } from "../models/models_0"; import { DeleteDataProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteEndpointCommand.ts b/clients/client-database-migration-service/src/commands/DeleteEndpointCommand.ts index aca30e755ae0c..87da38f446cf5 100644 --- a/clients/client-database-migration-service/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEndpointMessage, DeleteEndpointResponse } from "../models/models_0"; +import type { DeleteEndpointMessage, DeleteEndpointResponse } from "../models/models_0"; import { DeleteEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-database-migration-service/src/commands/DeleteEventSubscriptionCommand.ts index 3c1f1b6470f9d..0663d2c103814 100644 --- a/clients/client-database-migration-service/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteEventSubscriptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventSubscriptionMessage, DeleteEventSubscriptionResponse } from "../models/models_0"; +import type { DeleteEventSubscriptionMessage, DeleteEventSubscriptionResponse } from "../models/models_0"; import { DeleteEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorCollectorCommand.ts b/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorCollectorCommand.ts index 5dc51c6f6d786..05cc6745fcafc 100644 --- a/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorCollectorCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorCollectorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCollectorRequest } from "../models/models_0"; +import type { DeleteCollectorRequest } from "../models/models_0"; import { DeleteFleetAdvisorCollector } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorDatabasesCommand.ts b/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorDatabasesCommand.ts index d92fb1b195008..7e267c1c9dd09 100644 --- a/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorDatabasesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteFleetAdvisorDatabasesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFleetAdvisorDatabasesRequest, DeleteFleetAdvisorDatabasesResponse } from "../models/models_0"; +import type { DeleteFleetAdvisorDatabasesRequest, DeleteFleetAdvisorDatabasesResponse } from "../models/models_0"; import { DeleteFleetAdvisorDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteInstanceProfileCommand.ts b/clients/client-database-migration-service/src/commands/DeleteInstanceProfileCommand.ts index 67ce2617e70ea..76bd742589f0d 100644 --- a/clients/client-database-migration-service/src/commands/DeleteInstanceProfileCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteInstanceProfileCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInstanceProfileMessage, DeleteInstanceProfileResponse } from "../models/models_0"; +import type { DeleteInstanceProfileMessage, DeleteInstanceProfileResponse } from "../models/models_0"; import { DeleteInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteMigrationProjectCommand.ts b/clients/client-database-migration-service/src/commands/DeleteMigrationProjectCommand.ts index 8f3fbcb7d6f63..20527d1c5a541 100644 --- a/clients/client-database-migration-service/src/commands/DeleteMigrationProjectCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteMigrationProjectCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMigrationProjectMessage, DeleteMigrationProjectResponse } from "../models/models_0"; +import type { DeleteMigrationProjectMessage, DeleteMigrationProjectResponse } from "../models/models_0"; import { DeleteMigrationProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationConfigCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationConfigCommand.ts index 4690296f9f93e..0e251ce284f9e 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationConfigCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReplicationConfigMessage, DeleteReplicationConfigResponse } from "../models/models_0"; +import type { DeleteReplicationConfigMessage, DeleteReplicationConfigResponse } from "../models/models_0"; import { DeleteReplicationConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationInstanceCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationInstanceCommand.ts index b78ee6f1c2c18..4f0a231c68dc6 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationInstanceCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationInstanceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReplicationInstanceMessage, DeleteReplicationInstanceResponse } from "../models/models_0"; +import type { DeleteReplicationInstanceMessage, DeleteReplicationInstanceResponse } from "../models/models_0"; import { DeleteReplicationInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationSubnetGroupCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationSubnetGroupCommand.ts index a065e615e37d4..0c4e238758e34 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationSubnetGroupCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationSubnetGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReplicationSubnetGroupMessage, DeleteReplicationSubnetGroupResponse } from "../models/models_0"; +import type { DeleteReplicationSubnetGroupMessage, DeleteReplicationSubnetGroupResponse } from "../models/models_0"; import { DeleteReplicationSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationTaskAssessmentRunCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationTaskAssessmentRunCommand.ts index 59d4617890d2e..d5ab764f35dd8 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationTaskAssessmentRunCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationTaskAssessmentRunCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteReplicationTaskAssessmentRunMessage, DeleteReplicationTaskAssessmentRunResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DeleteReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/DeleteReplicationTaskCommand.ts index 7cf91782a87e2..322d786558914 100644 --- a/clients/client-database-migration-service/src/commands/DeleteReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/DeleteReplicationTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReplicationTaskMessage, DeleteReplicationTaskResponse } from "../models/models_0"; +import type { DeleteReplicationTaskMessage, DeleteReplicationTaskResponse } from "../models/models_0"; import { DeleteReplicationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeAccountAttributesCommand.ts index a2b997b9d42cd..a5b15d7e00145 100644 --- a/clients/client-database-migration-service/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeAccountAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountAttributesMessage, DescribeAccountAttributesResponse } from "../models/models_0"; +import type { DescribeAccountAttributesMessage, DescribeAccountAttributesResponse } from "../models/models_0"; import { DescribeAccountAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeApplicableIndividualAssessmentsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeApplicableIndividualAssessmentsCommand.ts index bc09efec5c744..a85f36cbcfa6d 100644 --- a/clients/client-database-migration-service/src/commands/DescribeApplicableIndividualAssessmentsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeApplicableIndividualAssessmentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeApplicableIndividualAssessmentsMessage, DescribeApplicableIndividualAssessmentsResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeCertificatesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeCertificatesCommand.ts index 3af7b64863287..d040b5a13d338 100644 --- a/clients/client-database-migration-service/src/commands/DescribeCertificatesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeCertificatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCertificatesMessage, DescribeCertificatesResponse } from "../models/models_0"; +import type { DescribeCertificatesMessage, DescribeCertificatesResponse } from "../models/models_0"; import { DescribeCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeConnectionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeConnectionsCommand.ts index 26a7d4eec54a6..ba5c6bdc287db 100644 --- a/clients/client-database-migration-service/src/commands/DescribeConnectionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeConnectionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectionsMessage, DescribeConnectionsResponse } from "../models/models_0"; +import type { DescribeConnectionsMessage, DescribeConnectionsResponse } from "../models/models_0"; import { DescribeConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeConversionConfigurationCommand.ts b/clients/client-database-migration-service/src/commands/DescribeConversionConfigurationCommand.ts index da458676c8723..ee5157745abe6 100644 --- a/clients/client-database-migration-service/src/commands/DescribeConversionConfigurationCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeConversionConfigurationCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConversionConfigurationMessage, DescribeConversionConfigurationResponse } from "../models/models_0"; +import type { + DescribeConversionConfigurationMessage, + DescribeConversionConfigurationResponse, +} from "../models/models_0"; import { DescribeConversionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeDataMigrationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeDataMigrationsCommand.ts index 84a757b46c0d3..544c3de010aca 100644 --- a/clients/client-database-migration-service/src/commands/DescribeDataMigrationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeDataMigrationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataMigrationsMessage, DescribeDataMigrationsResponse } from "../models/models_0"; +import type { DescribeDataMigrationsMessage, DescribeDataMigrationsResponse } from "../models/models_0"; import { DescribeDataMigrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeDataProvidersCommand.ts b/clients/client-database-migration-service/src/commands/DescribeDataProvidersCommand.ts index 6e640f3a346e5..83b7b31f6c5c0 100644 --- a/clients/client-database-migration-service/src/commands/DescribeDataProvidersCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeDataProvidersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataProvidersMessage, DescribeDataProvidersResponse } from "../models/models_0"; +import type { DescribeDataProvidersMessage, DescribeDataProvidersResponse } from "../models/models_0"; import { DescribeDataProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeEndpointSettingsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEndpointSettingsCommand.ts index c0457aae7e6e2..40af2dd74f383 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEndpointSettingsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEndpointSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointSettingsMessage, DescribeEndpointSettingsResponse } from "../models/models_0"; +import type { DescribeEndpointSettingsMessage, DescribeEndpointSettingsResponse } from "../models/models_0"; import { DescribeEndpointSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeEndpointTypesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEndpointTypesCommand.ts index e82ce74383dec..01e226f1a9547 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEndpointTypesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEndpointTypesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointTypesMessage, DescribeEndpointTypesResponse } from "../models/models_0"; +import type { DescribeEndpointTypesMessage, DescribeEndpointTypesResponse } from "../models/models_0"; import { DescribeEndpointTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeEndpointsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEndpointsCommand.ts index 7abd182bad442..07da0ec722ea4 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEndpointsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointsMessage, DescribeEndpointsResponse } from "../models/models_0"; +import type { DescribeEndpointsMessage, DescribeEndpointsResponse } from "../models/models_0"; import { DescribeEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeEngineVersionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEngineVersionsCommand.ts index c42642de8c979..f19e9a2e05533 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEngineVersionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEngineVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEngineVersionsMessage, DescribeEngineVersionsResponse } from "../models/models_0"; +import type { DescribeEngineVersionsMessage, DescribeEngineVersionsResponse } from "../models/models_0"; import { DescribeEngineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEventCategoriesCommand.ts index 152949c614659..ab5a9c38489cd 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEventCategoriesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventCategoriesMessage, DescribeEventCategoriesResponse } from "../models/models_0"; +import type { DescribeEventCategoriesMessage, DescribeEventCategoriesResponse } from "../models/models_0"; import { DescribeEventCategories } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEventSubscriptionsCommand.ts index dd1887f90590f..21c852e2c4d61 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEventSubscriptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventSubscriptionsMessage, DescribeEventSubscriptionsResponse } from "../models/models_0"; +import type { DescribeEventSubscriptionsMessage, DescribeEventSubscriptionsResponse } from "../models/models_0"; import { DescribeEventSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeEventsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeEventsCommand.ts index e0caf816588ca..7361f5ffbbcd3 100644 --- a/clients/client-database-migration-service/src/commands/DescribeEventsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeEventsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsMessage, DescribeEventsResponse } from "../models/models_0"; +import type { DescribeEventsMessage, DescribeEventsResponse } from "../models/models_0"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeExtensionPackAssociationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeExtensionPackAssociationsCommand.ts index 4e4696a1620d3..ae6403a114b60 100644 --- a/clients/client-database-migration-service/src/commands/DescribeExtensionPackAssociationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeExtensionPackAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeExtensionPackAssociationsMessage, DescribeExtensionPackAssociationsResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorCollectorsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorCollectorsCommand.ts index ef53d22a600af..335ec054af5f8 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorCollectorsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorCollectorsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFleetAdvisorCollectorsRequest, DescribeFleetAdvisorCollectorsResponse } from "../models/models_0"; +import type { DescribeFleetAdvisorCollectorsRequest, DescribeFleetAdvisorCollectorsResponse } from "../models/models_0"; import { DescribeFleetAdvisorCollectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorDatabasesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorDatabasesCommand.ts index 404d43ae66daa..d5646ee7298e2 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorDatabasesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorDatabasesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFleetAdvisorDatabasesRequest, DescribeFleetAdvisorDatabasesResponse } from "../models/models_0"; +import type { DescribeFleetAdvisorDatabasesRequest, DescribeFleetAdvisorDatabasesResponse } from "../models/models_0"; import { DescribeFleetAdvisorDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorLsaAnalysisCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorLsaAnalysisCommand.ts index 825bcb72cdd6d..4e6ef7fc1d8dd 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorLsaAnalysisCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorLsaAnalysisCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFleetAdvisorLsaAnalysisRequest, DescribeFleetAdvisorLsaAnalysisResponse } from "../models/models_0"; +import type { + DescribeFleetAdvisorLsaAnalysisRequest, + DescribeFleetAdvisorLsaAnalysisResponse, +} from "../models/models_0"; import { DescribeFleetAdvisorLsaAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemaObjectSummaryCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemaObjectSummaryCommand.ts index b8247704051d8..f98394fad1c87 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemaObjectSummaryCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemaObjectSummaryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeFleetAdvisorSchemaObjectSummaryRequest, DescribeFleetAdvisorSchemaObjectSummaryResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemasCommand.ts b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemasCommand.ts index 1757779ee86a8..787a1c22362c5 100644 --- a/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemasCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeFleetAdvisorSchemasCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFleetAdvisorSchemasRequest, DescribeFleetAdvisorSchemasResponse } from "../models/models_0"; +import type { DescribeFleetAdvisorSchemasRequest, DescribeFleetAdvisorSchemasResponse } from "../models/models_0"; import { DescribeFleetAdvisorSchemas } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeInstanceProfilesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeInstanceProfilesCommand.ts index d794fc260457f..e5a7276510b53 100644 --- a/clients/client-database-migration-service/src/commands/DescribeInstanceProfilesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeInstanceProfilesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceProfilesMessage, DescribeInstanceProfilesResponse } from "../models/models_0"; +import type { DescribeInstanceProfilesMessage, DescribeInstanceProfilesResponse } from "../models/models_0"; import { DescribeInstanceProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelAssessmentsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelAssessmentsCommand.ts index 4d7f4e6b396c5..3d32c827ec0d5 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelAssessmentsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelAssessmentsCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetadataModelAssessmentsMessage, DescribeMetadataModelAssessmentsResponse } from "../models/models_0"; +import type { + DescribeMetadataModelAssessmentsMessage, + DescribeMetadataModelAssessmentsResponse, +} from "../models/models_0"; import { DescribeMetadataModelAssessments } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelChildrenCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelChildrenCommand.ts index a547782d870e5..dc13203fb3828 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelChildrenCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelChildrenCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetadataModelChildrenMessage, DescribeMetadataModelChildrenResponse } from "../models/models_0"; +import type { DescribeMetadataModelChildrenMessage, DescribeMetadataModelChildrenResponse } from "../models/models_0"; import { DescribeMetadataModelChildren } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelCommand.ts index 1072f467e3d2a..cce8468f84eff 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetadataModelMessage, DescribeMetadataModelResponse } from "../models/models_0"; +import type { DescribeMetadataModelMessage, DescribeMetadataModelResponse } from "../models/models_0"; import { DescribeMetadataModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelConversionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelConversionsCommand.ts index fee0bc323c1b3..bb1ed204da46b 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelConversionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelConversionsCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetadataModelConversionsMessage, DescribeMetadataModelConversionsResponse } from "../models/models_0"; +import type { + DescribeMetadataModelConversionsMessage, + DescribeMetadataModelConversionsResponse, +} from "../models/models_0"; import { DescribeMetadataModelConversions } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelCreationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelCreationsCommand.ts index 03e67cfa85ef6..60b3466aecfdb 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelCreationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelCreationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetadataModelCreationsMessage, DescribeMetadataModelCreationsResponse } from "../models/models_0"; +import type { DescribeMetadataModelCreationsMessage, DescribeMetadataModelCreationsResponse } from "../models/models_0"; import { DescribeMetadataModelCreations } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsAsScriptCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsAsScriptCommand.ts index 4f2233737dbbd..4376c72d4b930 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsAsScriptCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsAsScriptCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeMetadataModelExportsAsScriptMessage, DescribeMetadataModelExportsAsScriptResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsToTargetCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsToTargetCommand.ts index 4264c9d55af5e..7989c0e67e460 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsToTargetCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelExportsToTargetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeMetadataModelExportsToTargetMessage, DescribeMetadataModelExportsToTargetResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeMetadataModelImportsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMetadataModelImportsCommand.ts index bad1b5acf1096..2323d0d83a9ee 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMetadataModelImportsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMetadataModelImportsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetadataModelImportsMessage, DescribeMetadataModelImportsResponse } from "../models/models_0"; +import type { DescribeMetadataModelImportsMessage, DescribeMetadataModelImportsResponse } from "../models/models_0"; import { DescribeMetadataModelImports } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeMigrationProjectsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeMigrationProjectsCommand.ts index 49ae9e8c5a627..3db604a6b3c96 100644 --- a/clients/client-database-migration-service/src/commands/DescribeMigrationProjectsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeMigrationProjectsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMigrationProjectsMessage, DescribeMigrationProjectsResponse } from "../models/models_0"; +import type { DescribeMigrationProjectsMessage, DescribeMigrationProjectsResponse } from "../models/models_0"; import { DescribeMigrationProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeOrderableReplicationInstancesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeOrderableReplicationInstancesCommand.ts index f3b3f77726ef7..deb06be07161a 100644 --- a/clients/client-database-migration-service/src/commands/DescribeOrderableReplicationInstancesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeOrderableReplicationInstancesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeOrderableReplicationInstancesMessage, DescribeOrderableReplicationInstancesResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribePendingMaintenanceActionsCommand.ts b/clients/client-database-migration-service/src/commands/DescribePendingMaintenanceActionsCommand.ts index 8b94f692b1830..eafe580daee96 100644 --- a/clients/client-database-migration-service/src/commands/DescribePendingMaintenanceActionsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribePendingMaintenanceActionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribePendingMaintenanceActionsMessage, DescribePendingMaintenanceActionsResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeRecommendationLimitationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeRecommendationLimitationsCommand.ts index 29a1e107a7fc5..3fa20f5e1e8aa 100644 --- a/clients/client-database-migration-service/src/commands/DescribeRecommendationLimitationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeRecommendationLimitationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeRecommendationLimitationsRequest, DescribeRecommendationLimitationsResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeRecommendationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeRecommendationsCommand.ts index 8b0710269be25..27f6d1eb66dca 100644 --- a/clients/client-database-migration-service/src/commands/DescribeRecommendationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeRecommendationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecommendationsRequest, DescribeRecommendationsResponse } from "../models/models_0"; +import type { DescribeRecommendationsRequest, DescribeRecommendationsResponse } from "../models/models_0"; import { DescribeRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeRefreshSchemasStatusCommand.ts b/clients/client-database-migration-service/src/commands/DescribeRefreshSchemasStatusCommand.ts index 59fe382081403..8dd6440e09c8b 100644 --- a/clients/client-database-migration-service/src/commands/DescribeRefreshSchemasStatusCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeRefreshSchemasStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRefreshSchemasStatusMessage, DescribeRefreshSchemasStatusResponse } from "../models/models_0"; +import type { DescribeRefreshSchemasStatusMessage, DescribeRefreshSchemasStatusResponse } from "../models/models_0"; import { DescribeRefreshSchemasStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationConfigsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationConfigsCommand.ts index 5aa21cf9cb477..81eebedddabd7 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationConfigsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationConfigsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReplicationConfigsMessage, DescribeReplicationConfigsResponse } from "../models/models_0"; +import type { DescribeReplicationConfigsMessage, DescribeReplicationConfigsResponse } from "../models/models_0"; import { DescribeReplicationConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationInstanceTaskLogsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationInstanceTaskLogsCommand.ts index 287f05a4ccb5e..4db1a10d65524 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationInstanceTaskLogsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationInstanceTaskLogsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReplicationInstanceTaskLogsMessage, DescribeReplicationInstanceTaskLogsResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationInstancesCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationInstancesCommand.ts index 3e6712f3be790..eb05e35c6b1da 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationInstancesCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationInstancesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReplicationInstancesMessage, DescribeReplicationInstancesResponse } from "../models/models_0"; +import type { DescribeReplicationInstancesMessage, DescribeReplicationInstancesResponse } from "../models/models_0"; import { DescribeReplicationInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationSubnetGroupsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationSubnetGroupsCommand.ts index 050d7f10e8701..1ff8879eb8563 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationSubnetGroupsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationSubnetGroupsCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReplicationSubnetGroupsMessage, DescribeReplicationSubnetGroupsResponse } from "../models/models_0"; +import type { + DescribeReplicationSubnetGroupsMessage, + DescribeReplicationSubnetGroupsResponse, +} from "../models/models_0"; import { DescribeReplicationSubnetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTableStatisticsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTableStatisticsCommand.ts index 62e92b70dcb04..4d796db440954 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTableStatisticsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTableStatisticsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReplicationTableStatisticsMessage, DescribeReplicationTableStatisticsResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentResultsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentResultsCommand.ts index e2dfe9bb903f0..f11c76375393f 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentResultsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentResultsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReplicationTaskAssessmentResultsMessage, DescribeReplicationTaskAssessmentResultsResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentRunsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentRunsCommand.ts index 65ac0157f8b5b..3c7e45b68e8a6 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentRunsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskAssessmentRunsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReplicationTaskAssessmentRunsMessage, DescribeReplicationTaskAssessmentRunsResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskIndividualAssessmentsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskIndividualAssessmentsCommand.ts index b631a069b92ba..83ab8acd18816 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTaskIndividualAssessmentsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTaskIndividualAssessmentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReplicationTaskIndividualAssessmentsMessage, DescribeReplicationTaskIndividualAssessmentsResponse, } from "../models/models_0"; diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationTasksCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationTasksCommand.ts index 39adb5024214d..4e7e4d7053b95 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationTasksCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationTasksCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReplicationTasksMessage, DescribeReplicationTasksResponse } from "../models/models_0"; +import type { DescribeReplicationTasksMessage, DescribeReplicationTasksResponse } from "../models/models_0"; import { DescribeReplicationTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeReplicationsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeReplicationsCommand.ts index ca36eed6cfe80..246e1f0d04dc0 100644 --- a/clients/client-database-migration-service/src/commands/DescribeReplicationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeReplicationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReplicationsMessage, DescribeReplicationsResponse } from "../models/models_0"; +import type { DescribeReplicationsMessage, DescribeReplicationsResponse } from "../models/models_0"; import { DescribeReplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeSchemasCommand.ts b/clients/client-database-migration-service/src/commands/DescribeSchemasCommand.ts index 6a52ab2826007..432a631e677cc 100644 --- a/clients/client-database-migration-service/src/commands/DescribeSchemasCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeSchemasCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSchemasMessage, DescribeSchemasResponse } from "../models/models_0"; +import type { DescribeSchemasMessage, DescribeSchemasResponse } from "../models/models_0"; import { DescribeSchemas } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/DescribeTableStatisticsCommand.ts b/clients/client-database-migration-service/src/commands/DescribeTableStatisticsCommand.ts index dce5e83c80c5f..7d13ae218fb29 100644 --- a/clients/client-database-migration-service/src/commands/DescribeTableStatisticsCommand.ts +++ b/clients/client-database-migration-service/src/commands/DescribeTableStatisticsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTableStatisticsMessage, DescribeTableStatisticsResponse } from "../models/models_0"; +import type { DescribeTableStatisticsMessage, DescribeTableStatisticsResponse } from "../models/models_0"; import { DescribeTableStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ExportMetadataModelAssessmentCommand.ts b/clients/client-database-migration-service/src/commands/ExportMetadataModelAssessmentCommand.ts index 9c48a29172fb6..e30a2b464b580 100644 --- a/clients/client-database-migration-service/src/commands/ExportMetadataModelAssessmentCommand.ts +++ b/clients/client-database-migration-service/src/commands/ExportMetadataModelAssessmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportMetadataModelAssessmentMessage, ExportMetadataModelAssessmentResponse } from "../models/models_0"; +import type { ExportMetadataModelAssessmentMessage, ExportMetadataModelAssessmentResponse } from "../models/models_0"; import { ExportMetadataModelAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/GetTargetSelectionRulesCommand.ts b/clients/client-database-migration-service/src/commands/GetTargetSelectionRulesCommand.ts index cd6beedf2c01a..d02dcfe852e51 100644 --- a/clients/client-database-migration-service/src/commands/GetTargetSelectionRulesCommand.ts +++ b/clients/client-database-migration-service/src/commands/GetTargetSelectionRulesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTargetSelectionRulesMessage, GetTargetSelectionRulesResponse } from "../models/models_0"; +import type { GetTargetSelectionRulesMessage, GetTargetSelectionRulesResponse } from "../models/models_0"; import { GetTargetSelectionRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ImportCertificateCommand.ts b/clients/client-database-migration-service/src/commands/ImportCertificateCommand.ts index 0394f19227df0..6a23f9c758157 100644 --- a/clients/client-database-migration-service/src/commands/ImportCertificateCommand.ts +++ b/clients/client-database-migration-service/src/commands/ImportCertificateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportCertificateMessage, ImportCertificateResponse } from "../models/models_0"; +import type { ImportCertificateMessage, ImportCertificateResponse } from "../models/models_0"; import { ImportCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-database-migration-service/src/commands/ListTagsForResourceCommand.ts index 00cc32c2616ad..c68e8f1b7e21e 100644 --- a/clients/client-database-migration-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-database-migration-service/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceMessage, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceMessage, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyConversionConfigurationCommand.ts b/clients/client-database-migration-service/src/commands/ModifyConversionConfigurationCommand.ts index bb79dcd7041ce..eaa7e27585d82 100644 --- a/clients/client-database-migration-service/src/commands/ModifyConversionConfigurationCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyConversionConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyConversionConfigurationMessage, ModifyConversionConfigurationResponse } from "../models/models_0"; +import type { ModifyConversionConfigurationMessage, ModifyConversionConfigurationResponse } from "../models/models_0"; import { ModifyConversionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/ModifyDataMigrationCommand.ts index ddf595fc547d6..5aaeaf33005ca 100644 --- a/clients/client-database-migration-service/src/commands/ModifyDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyDataMigrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDataMigrationMessage, ModifyDataMigrationResponse } from "../models/models_0"; +import type { ModifyDataMigrationMessage, ModifyDataMigrationResponse } from "../models/models_0"; import { ModifyDataMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyDataProviderCommand.ts b/clients/client-database-migration-service/src/commands/ModifyDataProviderCommand.ts index 0ea9cd24f6591..5e69a63756409 100644 --- a/clients/client-database-migration-service/src/commands/ModifyDataProviderCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyDataProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDataProviderMessage, ModifyDataProviderResponse } from "../models/models_0"; +import type { ModifyDataProviderMessage, ModifyDataProviderResponse } from "../models/models_0"; import { ModifyDataProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyEndpointCommand.ts b/clients/client-database-migration-service/src/commands/ModifyEndpointCommand.ts index 65bc6f3db6d20..5efc763a54084 100644 --- a/clients/client-database-migration-service/src/commands/ModifyEndpointCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyEndpointMessage, ModifyEndpointResponse } from "../models/models_0"; +import type { ModifyEndpointMessage, ModifyEndpointResponse } from "../models/models_0"; import { ModifyEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-database-migration-service/src/commands/ModifyEventSubscriptionCommand.ts index e41003069a518..edd0ff5dd5447 100644 --- a/clients/client-database-migration-service/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyEventSubscriptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResponse } from "../models/models_0"; +import type { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResponse } from "../models/models_0"; import { ModifyEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyInstanceProfileCommand.ts b/clients/client-database-migration-service/src/commands/ModifyInstanceProfileCommand.ts index 35d291cc6795c..e5430417e7f3d 100644 --- a/clients/client-database-migration-service/src/commands/ModifyInstanceProfileCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyInstanceProfileCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceProfileMessage, ModifyInstanceProfileResponse } from "../models/models_0"; +import type { ModifyInstanceProfileMessage, ModifyInstanceProfileResponse } from "../models/models_0"; import { ModifyInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyMigrationProjectCommand.ts b/clients/client-database-migration-service/src/commands/ModifyMigrationProjectCommand.ts index 5a76608c925f6..37f27e345e252 100644 --- a/clients/client-database-migration-service/src/commands/ModifyMigrationProjectCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyMigrationProjectCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyMigrationProjectMessage, ModifyMigrationProjectResponse } from "../models/models_0"; +import type { ModifyMigrationProjectMessage, ModifyMigrationProjectResponse } from "../models/models_0"; import { ModifyMigrationProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyReplicationConfigCommand.ts b/clients/client-database-migration-service/src/commands/ModifyReplicationConfigCommand.ts index b54d4ab87594b..270447f3706e3 100644 --- a/clients/client-database-migration-service/src/commands/ModifyReplicationConfigCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyReplicationConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyReplicationConfigMessage, ModifyReplicationConfigResponse } from "../models/models_0"; +import type { ModifyReplicationConfigMessage, ModifyReplicationConfigResponse } from "../models/models_0"; import { ModifyReplicationConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyReplicationInstanceCommand.ts b/clients/client-database-migration-service/src/commands/ModifyReplicationInstanceCommand.ts index d33070e71209d..9aa30216f88c8 100644 --- a/clients/client-database-migration-service/src/commands/ModifyReplicationInstanceCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyReplicationInstanceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyReplicationInstanceMessage, ModifyReplicationInstanceResponse } from "../models/models_0"; +import type { ModifyReplicationInstanceMessage, ModifyReplicationInstanceResponse } from "../models/models_0"; import { ModifyReplicationInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyReplicationSubnetGroupCommand.ts b/clients/client-database-migration-service/src/commands/ModifyReplicationSubnetGroupCommand.ts index d40de341044d2..01ac50d59dc0b 100644 --- a/clients/client-database-migration-service/src/commands/ModifyReplicationSubnetGroupCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyReplicationSubnetGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyReplicationSubnetGroupMessage, ModifyReplicationSubnetGroupResponse } from "../models/models_0"; +import type { ModifyReplicationSubnetGroupMessage, ModifyReplicationSubnetGroupResponse } from "../models/models_0"; import { ModifyReplicationSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ModifyReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/ModifyReplicationTaskCommand.ts index 8c837cb76849d..7c0d3a053d325 100644 --- a/clients/client-database-migration-service/src/commands/ModifyReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/ModifyReplicationTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyReplicationTaskMessage, ModifyReplicationTaskResponse } from "../models/models_0"; +import type { ModifyReplicationTaskMessage, ModifyReplicationTaskResponse } from "../models/models_0"; import { ModifyReplicationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/MoveReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/MoveReplicationTaskCommand.ts index 414501076550b..cbfb700413df0 100644 --- a/clients/client-database-migration-service/src/commands/MoveReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/MoveReplicationTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MoveReplicationTaskMessage, MoveReplicationTaskResponse } from "../models/models_0"; +import type { MoveReplicationTaskMessage, MoveReplicationTaskResponse } from "../models/models_0"; import { MoveReplicationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/RebootReplicationInstanceCommand.ts b/clients/client-database-migration-service/src/commands/RebootReplicationInstanceCommand.ts index 78515b4adb9bd..7197d64ca1ef5 100644 --- a/clients/client-database-migration-service/src/commands/RebootReplicationInstanceCommand.ts +++ b/clients/client-database-migration-service/src/commands/RebootReplicationInstanceCommand.ts @@ -1,16 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootReplicationInstanceMessage } from "../models/models_0"; -import { RebootReplicationInstanceResponse } from "../models/models_1"; +import type { RebootReplicationInstanceMessage } from "../models/models_0"; +import type { RebootReplicationInstanceResponse } from "../models/models_1"; import { RebootReplicationInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/RefreshSchemasCommand.ts b/clients/client-database-migration-service/src/commands/RefreshSchemasCommand.ts index 34c5f773e78be..fe5d265565fc3 100644 --- a/clients/client-database-migration-service/src/commands/RefreshSchemasCommand.ts +++ b/clients/client-database-migration-service/src/commands/RefreshSchemasCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RefreshSchemasMessage, RefreshSchemasResponse } from "../models/models_1"; +import type { RefreshSchemasMessage, RefreshSchemasResponse } from "../models/models_1"; import { RefreshSchemas } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ReloadReplicationTablesCommand.ts b/clients/client-database-migration-service/src/commands/ReloadReplicationTablesCommand.ts index 50471289dfae9..aee39b2576ea7 100644 --- a/clients/client-database-migration-service/src/commands/ReloadReplicationTablesCommand.ts +++ b/clients/client-database-migration-service/src/commands/ReloadReplicationTablesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReloadReplicationTablesMessage, ReloadReplicationTablesResponse } from "../models/models_1"; +import type { ReloadReplicationTablesMessage, ReloadReplicationTablesResponse } from "../models/models_1"; import { ReloadReplicationTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/ReloadTablesCommand.ts b/clients/client-database-migration-service/src/commands/ReloadTablesCommand.ts index eff2236e1463f..3613c78295dfd 100644 --- a/clients/client-database-migration-service/src/commands/ReloadTablesCommand.ts +++ b/clients/client-database-migration-service/src/commands/ReloadTablesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReloadTablesMessage, ReloadTablesResponse } from "../models/models_1"; +import type { ReloadTablesMessage, ReloadTablesResponse } from "../models/models_1"; import { ReloadTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-database-migration-service/src/commands/RemoveTagsFromResourceCommand.ts index 9075d27a0056d..3c9cf0e3eadd5 100644 --- a/clients/client-database-migration-service/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-database-migration-service/src/commands/RemoveTagsFromResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromResourceMessage, RemoveTagsFromResourceResponse } from "../models/models_1"; +import type { RemoveTagsFromResourceMessage, RemoveTagsFromResourceResponse } from "../models/models_1"; import { RemoveTagsFromResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/RunFleetAdvisorLsaAnalysisCommand.ts b/clients/client-database-migration-service/src/commands/RunFleetAdvisorLsaAnalysisCommand.ts index 40ac5f238e4bb..8cb682371e21f 100644 --- a/clients/client-database-migration-service/src/commands/RunFleetAdvisorLsaAnalysisCommand.ts +++ b/clients/client-database-migration-service/src/commands/RunFleetAdvisorLsaAnalysisCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RunFleetAdvisorLsaAnalysisResponse } from "../models/models_1"; +import type { RunFleetAdvisorLsaAnalysisResponse } from "../models/models_1"; import { RunFleetAdvisorLsaAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/StartDataMigrationCommand.ts index cf9368d852938..4fbe30dfe5615 100644 --- a/clients/client-database-migration-service/src/commands/StartDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartDataMigrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDataMigrationMessage, StartDataMigrationResponse } from "../models/models_1"; +import type { StartDataMigrationMessage, StartDataMigrationResponse } from "../models/models_1"; import { StartDataMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartExtensionPackAssociationCommand.ts b/clients/client-database-migration-service/src/commands/StartExtensionPackAssociationCommand.ts index 06af9ced62b00..db33adb896029 100644 --- a/clients/client-database-migration-service/src/commands/StartExtensionPackAssociationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartExtensionPackAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartExtensionPackAssociationMessage, StartExtensionPackAssociationResponse } from "../models/models_1"; +import type { StartExtensionPackAssociationMessage, StartExtensionPackAssociationResponse } from "../models/models_1"; import { StartExtensionPackAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelAssessmentCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelAssessmentCommand.ts index 51ddaad4d77dc..428a6a9c48b24 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelAssessmentCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelAssessmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMetadataModelAssessmentMessage, StartMetadataModelAssessmentResponse } from "../models/models_1"; +import type { StartMetadataModelAssessmentMessage, StartMetadataModelAssessmentResponse } from "../models/models_1"; import { StartMetadataModelAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelConversionCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelConversionCommand.ts index 723bf62c2ea0b..13b2c6f57906d 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelConversionCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelConversionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMetadataModelConversionMessage, StartMetadataModelConversionResponse } from "../models/models_1"; +import type { StartMetadataModelConversionMessage, StartMetadataModelConversionResponse } from "../models/models_1"; import { StartMetadataModelConversion } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelCreationCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelCreationCommand.ts index 5c47a1fce50bd..1802be36cb3f2 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelCreationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelCreationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMetadataModelCreationMessage, StartMetadataModelCreationResponse } from "../models/models_1"; +import type { StartMetadataModelCreationMessage, StartMetadataModelCreationResponse } from "../models/models_1"; import { StartMetadataModelCreation } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelExportAsScriptCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelExportAsScriptCommand.ts index 4925b62524111..7b3b52063be99 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelExportAsScriptCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelExportAsScriptCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMetadataModelExportAsScriptMessage, StartMetadataModelExportAsScriptResponse } from "../models/models_1"; +import type { + StartMetadataModelExportAsScriptMessage, + StartMetadataModelExportAsScriptResponse, +} from "../models/models_1"; import { StartMetadataModelExportAsScript } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelExportToTargetCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelExportToTargetCommand.ts index b6317561c7930..58f45ad397421 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelExportToTargetCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelExportToTargetCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMetadataModelExportToTargetMessage, StartMetadataModelExportToTargetResponse } from "../models/models_1"; +import type { + StartMetadataModelExportToTargetMessage, + StartMetadataModelExportToTargetResponse, +} from "../models/models_1"; import { StartMetadataModelExportToTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartMetadataModelImportCommand.ts b/clients/client-database-migration-service/src/commands/StartMetadataModelImportCommand.ts index 1f47f0b8e61d6..50e7a9e50cf91 100644 --- a/clients/client-database-migration-service/src/commands/StartMetadataModelImportCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartMetadataModelImportCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMetadataModelImportMessage, StartMetadataModelImportResponse } from "../models/models_1"; +import type { StartMetadataModelImportMessage, StartMetadataModelImportResponse } from "../models/models_1"; import { StartMetadataModelImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartRecommendationsCommand.ts b/clients/client-database-migration-service/src/commands/StartRecommendationsCommand.ts index 3a7485c3b80eb..932063e51b620 100644 --- a/clients/client-database-migration-service/src/commands/StartRecommendationsCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartRecommendationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRecommendationsRequest } from "../models/models_1"; +import type { StartRecommendationsRequest } from "../models/models_1"; import { StartRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartReplicationCommand.ts b/clients/client-database-migration-service/src/commands/StartReplicationCommand.ts index ea2a8cf05c1b9..825365f635108 100644 --- a/clients/client-database-migration-service/src/commands/StartReplicationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartReplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReplicationMessage, StartReplicationResponse } from "../models/models_1"; +import type { StartReplicationMessage, StartReplicationResponse } from "../models/models_1"; import { StartReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentCommand.ts b/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentCommand.ts index 33595f63ec580..441b070383984 100644 --- a/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReplicationTaskAssessmentMessage, StartReplicationTaskAssessmentResponse } from "../models/models_1"; +import type { StartReplicationTaskAssessmentMessage, StartReplicationTaskAssessmentResponse } from "../models/models_1"; import { StartReplicationTaskAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentRunCommand.ts b/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentRunCommand.ts index af1324aed2d4c..365a49a3c6f43 100644 --- a/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentRunCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartReplicationTaskAssessmentRunCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartReplicationTaskAssessmentRunMessage, StartReplicationTaskAssessmentRunResponse, } from "../models/models_1"; diff --git a/clients/client-database-migration-service/src/commands/StartReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/StartReplicationTaskCommand.ts index 3b650da045cae..d3be94a46a7c4 100644 --- a/clients/client-database-migration-service/src/commands/StartReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/StartReplicationTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReplicationTaskMessage, StartReplicationTaskResponse } from "../models/models_1"; +import type { StartReplicationTaskMessage, StartReplicationTaskResponse } from "../models/models_1"; import { StartReplicationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StopDataMigrationCommand.ts b/clients/client-database-migration-service/src/commands/StopDataMigrationCommand.ts index b20937187f432..e2dbcd1c61e21 100644 --- a/clients/client-database-migration-service/src/commands/StopDataMigrationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StopDataMigrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDataMigrationMessage, StopDataMigrationResponse } from "../models/models_1"; +import type { StopDataMigrationMessage, StopDataMigrationResponse } from "../models/models_1"; import { StopDataMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StopReplicationCommand.ts b/clients/client-database-migration-service/src/commands/StopReplicationCommand.ts index f55a552c4a56c..af8d1d4ee5820 100644 --- a/clients/client-database-migration-service/src/commands/StopReplicationCommand.ts +++ b/clients/client-database-migration-service/src/commands/StopReplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopReplicationMessage, StopReplicationResponse } from "../models/models_1"; +import type { StopReplicationMessage, StopReplicationResponse } from "../models/models_1"; import { StopReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/StopReplicationTaskCommand.ts b/clients/client-database-migration-service/src/commands/StopReplicationTaskCommand.ts index 2b7d35b364a00..39273e76949a7 100644 --- a/clients/client-database-migration-service/src/commands/StopReplicationTaskCommand.ts +++ b/clients/client-database-migration-service/src/commands/StopReplicationTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopReplicationTaskMessage, StopReplicationTaskResponse } from "../models/models_1"; +import type { StopReplicationTaskMessage, StopReplicationTaskResponse } from "../models/models_1"; import { StopReplicationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/TestConnectionCommand.ts b/clients/client-database-migration-service/src/commands/TestConnectionCommand.ts index f46cd729f46ae..7cf25a6fa1886 100644 --- a/clients/client-database-migration-service/src/commands/TestConnectionCommand.ts +++ b/clients/client-database-migration-service/src/commands/TestConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestConnectionMessage, TestConnectionResponse } from "../models/models_1"; +import type { TestConnectionMessage, TestConnectionResponse } from "../models/models_1"; import { TestConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/commands/UpdateSubscriptionsToEventBridgeCommand.ts b/clients/client-database-migration-service/src/commands/UpdateSubscriptionsToEventBridgeCommand.ts index 98b92157647b1..b021f396a0bcd 100644 --- a/clients/client-database-migration-service/src/commands/UpdateSubscriptionsToEventBridgeCommand.ts +++ b/clients/client-database-migration-service/src/commands/UpdateSubscriptionsToEventBridgeCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DatabaseMigrationServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubscriptionsToEventBridgeMessage, UpdateSubscriptionsToEventBridgeResponse } from "../models/models_1"; +import type { + UpdateSubscriptionsToEventBridgeMessage, + UpdateSubscriptionsToEventBridgeResponse, +} from "../models/models_1"; import { UpdateSubscriptionsToEventBridge } from "../schemas/schemas_0"; /** diff --git a/clients/client-database-migration-service/src/endpoint/EndpointParameters.ts b/clients/client-database-migration-service/src/endpoint/EndpointParameters.ts index 464861a53f761..247d0014e2c36 100644 --- a/clients/client-database-migration-service/src/endpoint/EndpointParameters.ts +++ b/clients/client-database-migration-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-database-migration-service/src/endpoint/endpointResolver.ts b/clients/client-database-migration-service/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-database-migration-service/src/endpoint/endpointResolver.ts +++ b/clients/client-database-migration-service/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-database-migration-service/src/extensionConfiguration.ts b/clients/client-database-migration-service/src/extensionConfiguration.ts index 9eddcdf8dd3b2..d23adc7e2459e 100644 --- a/clients/client-database-migration-service/src/extensionConfiguration.ts +++ b/clients/client-database-migration-service/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-database-migration-service/src/models/DatabaseMigrationServiceServiceException.ts b/clients/client-database-migration-service/src/models/DatabaseMigrationServiceServiceException.ts index c166a873abf7f..89a5b090263bc 100644 --- a/clients/client-database-migration-service/src/models/DatabaseMigrationServiceServiceException.ts +++ b/clients/client-database-migration-service/src/models/DatabaseMigrationServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-database-migration-service/src/models/errors.ts b/clients/client-database-migration-service/src/models/errors.ts index 00b66a3d3d974..c22ffe0c8d89a 100644 --- a/clients/client-database-migration-service/src/models/errors.ts +++ b/clients/client-database-migration-service/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DatabaseMigrationServiceServiceException as __BaseException } from "./DatabaseMigrationServiceServiceException"; diff --git a/clients/client-database-migration-service/src/pagination/DescribeApplicableIndividualAssessmentsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeApplicableIndividualAssessmentsPaginator.ts index 730eec9ae0938..dec826f53f0e5 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeApplicableIndividualAssessmentsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeApplicableIndividualAssessmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeApplicableIndividualAssessmentsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeCertificatesPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeCertificatesPaginator.ts index b41f75b2ea688..d2d1914926fd0 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeCertificatesPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCertificatesCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeConnectionsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeConnectionsPaginator.ts index 1131146d33c70..88857289e0e33 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeConnectionsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeConnectionsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeDataMigrationsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeDataMigrationsPaginator.ts index 630769b6b5723..b9b01e8db3f23 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeDataMigrationsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeDataMigrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDataMigrationsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeDataProvidersPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeDataProvidersPaginator.ts index a24802027f78e..43c649eda1546 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeDataProvidersPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeDataProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDataProvidersCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeEndpointSettingsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeEndpointSettingsPaginator.ts index 488cabc16fd11..5bd6bf6ef51f1 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeEndpointSettingsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeEndpointSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEndpointSettingsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeEndpointTypesPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeEndpointTypesPaginator.ts index 52dbbb2df216c..4ded9e58859d6 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeEndpointTypesPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeEndpointTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEndpointTypesCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeEndpointsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeEndpointsPaginator.ts index 5f3b347a20fdb..a0189c16f2391 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeEndpointsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEndpointsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeEngineVersionsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeEngineVersionsPaginator.ts index ddff4faf5c7db..896a916d1679a 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeEngineVersionsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeEngineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEngineVersionsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeEventSubscriptionsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeEventSubscriptionsPaginator.ts index 9e3104b9c54d1..32c3688e6edd5 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeEventSubscriptionsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeEventSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventSubscriptionsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeEventsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeEventsPaginator.ts index 36b87895f9bd5..0fbfd293d3f33 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeExtensionPackAssociationsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeExtensionPackAssociationsPaginator.ts index 6ddae12aca7fe..fb7f1917cc68d 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeExtensionPackAssociationsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeExtensionPackAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeExtensionPackAssociationsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorCollectorsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorCollectorsPaginator.ts index 83b2a067d244a..9a1d2cdbefd98 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorCollectorsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorCollectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetAdvisorCollectorsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorDatabasesPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorDatabasesPaginator.ts index ce53d8d9d4b73..303482a0c7c86 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorDatabasesPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorDatabasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetAdvisorDatabasesCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorLsaAnalysisPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorLsaAnalysisPaginator.ts index 7c4c2ccf6232b..3edeb4e533611 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorLsaAnalysisPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorLsaAnalysisPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetAdvisorLsaAnalysisCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorSchemaObjectSummaryPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorSchemaObjectSummaryPaginator.ts index d0c2723e6c997..d91280ce8f279 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorSchemaObjectSummaryPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorSchemaObjectSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetAdvisorSchemaObjectSummaryCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorSchemasPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorSchemasPaginator.ts index ea899cd97bd86..a837db620b996 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorSchemasPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeFleetAdvisorSchemasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetAdvisorSchemasCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeInstanceProfilesPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeInstanceProfilesPaginator.ts index 78265b46c96d9..63545eaf2492d 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeInstanceProfilesPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeInstanceProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceProfilesCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelAssessmentsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelAssessmentsPaginator.ts index 37f433c9b03fb..4f7fc16b94561 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelAssessmentsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelAssessmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMetadataModelAssessmentsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelChildrenPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelChildrenPaginator.ts index 9b81c6fc928ab..c4fe62205ec61 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelChildrenPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelChildrenPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMetadataModelChildrenCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelConversionsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelConversionsPaginator.ts index 358729166642a..acbd0223f2d8a 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelConversionsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelConversionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMetadataModelConversionsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelCreationsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelCreationsPaginator.ts index 9ee1a433b5d0b..a4e30493bc60c 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelCreationsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelCreationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMetadataModelCreationsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelExportsAsScriptPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelExportsAsScriptPaginator.ts index 3f5278ee2eeb8..43d3555a07b91 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelExportsAsScriptPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelExportsAsScriptPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMetadataModelExportsAsScriptCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelExportsToTargetPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelExportsToTargetPaginator.ts index de31a91336b68..0229212d5f870 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelExportsToTargetPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelExportsToTargetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMetadataModelExportsToTargetCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelImportsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelImportsPaginator.ts index 70a84040c21ff..831906d22ba21 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeMetadataModelImportsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeMetadataModelImportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMetadataModelImportsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeMigrationProjectsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeMigrationProjectsPaginator.ts index 929b5b98301b1..23d49a33b5e34 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeMigrationProjectsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeMigrationProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMigrationProjectsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeOrderableReplicationInstancesPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeOrderableReplicationInstancesPaginator.ts index 353c263a4091d..5a7e2d9b4cb3b 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeOrderableReplicationInstancesPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeOrderableReplicationInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrderableReplicationInstancesCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribePendingMaintenanceActionsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribePendingMaintenanceActionsPaginator.ts index 06144a2fcf73b..50ece12894ed9 100644 --- a/clients/client-database-migration-service/src/pagination/DescribePendingMaintenanceActionsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribePendingMaintenanceActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePendingMaintenanceActionsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeRecommendationLimitationsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeRecommendationLimitationsPaginator.ts index 32699e5da3d50..0037d0a750550 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeRecommendationLimitationsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeRecommendationLimitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRecommendationLimitationsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeRecommendationsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeRecommendationsPaginator.ts index 3bb1d216449a9..41c321ca71060 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeRecommendationsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRecommendationsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationConfigsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationConfigsPaginator.ts index 0c1d3f5607d75..c39e4fada9090 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationConfigsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationConfigsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationInstanceTaskLogsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationInstanceTaskLogsPaginator.ts index c598743e90f6a..3d43bb09c27f6 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationInstanceTaskLogsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationInstanceTaskLogsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationInstanceTaskLogsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationInstancesPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationInstancesPaginator.ts index 532e7deef16c4..2df0c952e191f 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationInstancesPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationInstancesCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationSubnetGroupsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationSubnetGroupsPaginator.ts index 9486579089070..64f9164026f64 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationSubnetGroupsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationSubnetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationSubnetGroupsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationTableStatisticsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationTableStatisticsPaginator.ts index 0628cd5d062fb..09516c27005c6 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationTableStatisticsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationTableStatisticsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationTableStatisticsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskAssessmentResultsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskAssessmentResultsPaginator.ts index 825d4534fb9a5..0015852fc4b5c 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskAssessmentResultsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskAssessmentResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationTaskAssessmentResultsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskAssessmentRunsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskAssessmentRunsPaginator.ts index 23772c2198945..37c8d82ef5732 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskAssessmentRunsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskAssessmentRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationTaskAssessmentRunsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskIndividualAssessmentsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskIndividualAssessmentsPaginator.ts index 258dadc601244..8410f7720b702 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskIndividualAssessmentsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationTaskIndividualAssessmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationTaskIndividualAssessmentsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationTasksPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationTasksPaginator.ts index 91d76870c86e5..09ab719a83419 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationTasksPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationTasksCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeReplicationsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeReplicationsPaginator.ts index 7215faeec72d2..f58a3f518346a 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeReplicationsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeReplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationsCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeSchemasPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeSchemasPaginator.ts index 29356eb8e09f2..021f5bbffe8aa 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeSchemasPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeSchemasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSchemasCommand, diff --git a/clients/client-database-migration-service/src/pagination/DescribeTableStatisticsPaginator.ts b/clients/client-database-migration-service/src/pagination/DescribeTableStatisticsPaginator.ts index 03c03d73dd7aa..8e4a0054bfa56 100644 --- a/clients/client-database-migration-service/src/pagination/DescribeTableStatisticsPaginator.ts +++ b/clients/client-database-migration-service/src/pagination/DescribeTableStatisticsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTableStatisticsCommand, diff --git a/clients/client-database-migration-service/src/pagination/Interfaces.ts b/clients/client-database-migration-service/src/pagination/Interfaces.ts index 4ddfbb3c6058f..de985f464f3b9 100644 --- a/clients/client-database-migration-service/src/pagination/Interfaces.ts +++ b/clients/client-database-migration-service/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DatabaseMigrationServiceClient } from "../DatabaseMigrationServiceClient"; diff --git a/clients/client-database-migration-service/src/runtimeConfig.browser.ts b/clients/client-database-migration-service/src/runtimeConfig.browser.ts index 3ced356af3fb9..37683e28732a7 100644 --- a/clients/client-database-migration-service/src/runtimeConfig.browser.ts +++ b/clients/client-database-migration-service/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DatabaseMigrationServiceClientConfig } from "./DatabaseMigrationServiceClient"; + +import type { DatabaseMigrationServiceClientConfig } from "./DatabaseMigrationServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-database-migration-service/src/runtimeConfig.native.ts b/clients/client-database-migration-service/src/runtimeConfig.native.ts index 84965d109f4e1..b680d25420bfa 100644 --- a/clients/client-database-migration-service/src/runtimeConfig.native.ts +++ b/clients/client-database-migration-service/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DatabaseMigrationServiceClientConfig } from "./DatabaseMigrationServiceClient"; +import type { DatabaseMigrationServiceClientConfig } from "./DatabaseMigrationServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-database-migration-service/src/runtimeConfig.shared.ts b/clients/client-database-migration-service/src/runtimeConfig.shared.ts index 754cc6d0fc6f5..8f204965be290 100644 --- a/clients/client-database-migration-service/src/runtimeConfig.shared.ts +++ b/clients/client-database-migration-service/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDatabaseMigrationServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DatabaseMigrationServiceClientConfig } from "./DatabaseMigrationServiceClient"; +import type { DatabaseMigrationServiceClientConfig } from "./DatabaseMigrationServiceClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-database-migration-service/src/runtimeConfig.ts b/clients/client-database-migration-service/src/runtimeConfig.ts index ea3bdd321e46d..60ac9da99ef13 100644 --- a/clients/client-database-migration-service/src/runtimeConfig.ts +++ b/clients/client-database-migration-service/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DatabaseMigrationServiceClientConfig } from "./DatabaseMigrationServiceClient"; + +import type { DatabaseMigrationServiceClientConfig } from "./DatabaseMigrationServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-database-migration-service/src/runtimeExtensions.ts b/clients/client-database-migration-service/src/runtimeExtensions.ts index efd97c5d62090..84295f7b3683e 100644 --- a/clients/client-database-migration-service/src/runtimeExtensions.ts +++ b/clients/client-database-migration-service/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DatabaseMigrationServiceExtensionConfiguration } from "./extensionConfiguration"; +import type { DatabaseMigrationServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-database-migration-service/src/schemas/schemas_0.ts b/clients/client-database-migration-service/src/schemas/schemas_0.ts index c314ba77d7f1d..5d5bf3fc86ad0 100644 --- a/clients/client-database-migration-service/src/schemas/schemas_0.ts +++ b/clients/client-database-migration-service/src/schemas/schemas_0.ts @@ -1153,7 +1153,7 @@ const n0 = "com.amazonaws.databasemigrationservice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-databrew/package.json b/clients/client-databrew/package.json index 0d49a36e4a56a..07809ee40755b 100644 --- a/clients/client-databrew/package.json +++ b/clients/client-databrew/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-databrew/src/DataBrew.ts b/clients/client-databrew/src/DataBrew.ts index d26afdb2d4a12..cbbc4f8c22e9b 100644 --- a/clients/client-databrew/src/DataBrew.ts +++ b/clients/client-databrew/src/DataBrew.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchDeleteRecipeVersionCommand, @@ -190,7 +190,7 @@ import { UpdateScheduleCommandInput, UpdateScheduleCommandOutput, } from "./commands/UpdateScheduleCommand"; -import { DataBrewClient, DataBrewClientConfig } from "./DataBrewClient"; +import { DataBrewClient } from "./DataBrewClient"; const commands = { BatchDeleteRecipeVersionCommand, diff --git a/clients/client-databrew/src/DataBrewClient.ts b/clients/client-databrew/src/DataBrewClient.ts index a2765f89ba8fb..f649323eac2f4 100644 --- a/clients/client-databrew/src/DataBrewClient.ts +++ b/clients/client-databrew/src/DataBrewClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, getOmitRetryHeadersPlugin, getRetryPlugin, resolveRetryConfig, - RetryInputConfig, - RetryResolvedConfig, } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDataBrewHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -129,7 +133,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-databrew/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-databrew/src/auth/httpAuthExtensionConfiguration.ts index 1d40b37c0d0c8..269ba583e7fd9 100644 --- a/clients/client-databrew/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-databrew/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DataBrewHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DataBrewHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-databrew/src/auth/httpAuthSchemeProvider.ts b/clients/client-databrew/src/auth/httpAuthSchemeProvider.ts index 8ae53412f5bfd..4d3ce1ee7704c 100644 --- a/clients/client-databrew/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-databrew/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DataBrewClientConfig, DataBrewClientResolvedConfig } from "../DataBrewClient"; +import { type DataBrewClientResolvedConfig, DataBrewClientConfig } from "../DataBrewClient"; /** * @internal diff --git a/clients/client-databrew/src/commands/BatchDeleteRecipeVersionCommand.ts b/clients/client-databrew/src/commands/BatchDeleteRecipeVersionCommand.ts index 365d3f39442df..f2a05151437d6 100644 --- a/clients/client-databrew/src/commands/BatchDeleteRecipeVersionCommand.ts +++ b/clients/client-databrew/src/commands/BatchDeleteRecipeVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteRecipeVersionRequest, BatchDeleteRecipeVersionResponse } from "../models/models_0"; +import type { BatchDeleteRecipeVersionRequest, BatchDeleteRecipeVersionResponse } from "../models/models_0"; import { BatchDeleteRecipeVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/CreateDatasetCommand.ts b/clients/client-databrew/src/commands/CreateDatasetCommand.ts index a719607dddf10..6b805a5941b27 100644 --- a/clients/client-databrew/src/commands/CreateDatasetCommand.ts +++ b/clients/client-databrew/src/commands/CreateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; +import type { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; import { CreateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/CreateProfileJobCommand.ts b/clients/client-databrew/src/commands/CreateProfileJobCommand.ts index d887f53cc2495..0b23e57e83c52 100644 --- a/clients/client-databrew/src/commands/CreateProfileJobCommand.ts +++ b/clients/client-databrew/src/commands/CreateProfileJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProfileJobRequest, CreateProfileJobResponse } from "../models/models_0"; +import type { CreateProfileJobRequest, CreateProfileJobResponse } from "../models/models_0"; import { CreateProfileJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/CreateProjectCommand.ts b/clients/client-databrew/src/commands/CreateProjectCommand.ts index e4dc35c2b8aac..6fff6ae4cbdfb 100644 --- a/clients/client-databrew/src/commands/CreateProjectCommand.ts +++ b/clients/client-databrew/src/commands/CreateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; +import type { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; import { CreateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/CreateRecipeCommand.ts b/clients/client-databrew/src/commands/CreateRecipeCommand.ts index c3d72406b2306..b2f1e10f0b406 100644 --- a/clients/client-databrew/src/commands/CreateRecipeCommand.ts +++ b/clients/client-databrew/src/commands/CreateRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRecipeRequest, CreateRecipeResponse } from "../models/models_0"; +import type { CreateRecipeRequest, CreateRecipeResponse } from "../models/models_0"; import { CreateRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/CreateRecipeJobCommand.ts b/clients/client-databrew/src/commands/CreateRecipeJobCommand.ts index e6543dde02e93..0878cc7c2233d 100644 --- a/clients/client-databrew/src/commands/CreateRecipeJobCommand.ts +++ b/clients/client-databrew/src/commands/CreateRecipeJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRecipeJobRequest, CreateRecipeJobResponse } from "../models/models_0"; +import type { CreateRecipeJobRequest, CreateRecipeJobResponse } from "../models/models_0"; import { CreateRecipeJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/CreateRulesetCommand.ts b/clients/client-databrew/src/commands/CreateRulesetCommand.ts index 247c81fc33c38..79648dc6ef0c6 100644 --- a/clients/client-databrew/src/commands/CreateRulesetCommand.ts +++ b/clients/client-databrew/src/commands/CreateRulesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRulesetRequest, CreateRulesetResponse } from "../models/models_0"; +import type { CreateRulesetRequest, CreateRulesetResponse } from "../models/models_0"; import { CreateRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/CreateScheduleCommand.ts b/clients/client-databrew/src/commands/CreateScheduleCommand.ts index bd830965a1e01..52adc57c51788 100644 --- a/clients/client-databrew/src/commands/CreateScheduleCommand.ts +++ b/clients/client-databrew/src/commands/CreateScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScheduleRequest, CreateScheduleResponse } from "../models/models_0"; +import type { CreateScheduleRequest, CreateScheduleResponse } from "../models/models_0"; import { CreateSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DeleteDatasetCommand.ts b/clients/client-databrew/src/commands/DeleteDatasetCommand.ts index a57cdd89b2df9..29125b75fdec1 100644 --- a/clients/client-databrew/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-databrew/src/commands/DeleteDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; +import type { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; import { DeleteDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DeleteJobCommand.ts b/clients/client-databrew/src/commands/DeleteJobCommand.ts index 9de7694a34b07..6b1b546d4f12c 100644 --- a/clients/client-databrew/src/commands/DeleteJobCommand.ts +++ b/clients/client-databrew/src/commands/DeleteJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteJobRequest, DeleteJobResponse } from "../models/models_0"; +import type { DeleteJobRequest, DeleteJobResponse } from "../models/models_0"; import { DeleteJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DeleteProjectCommand.ts b/clients/client-databrew/src/commands/DeleteProjectCommand.ts index 196a79dc2c059..6cec5d3be26c0 100644 --- a/clients/client-databrew/src/commands/DeleteProjectCommand.ts +++ b/clients/client-databrew/src/commands/DeleteProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; +import type { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; import { DeleteProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DeleteRecipeVersionCommand.ts b/clients/client-databrew/src/commands/DeleteRecipeVersionCommand.ts index ca03eab2ac3d5..bb9f69c0cca47 100644 --- a/clients/client-databrew/src/commands/DeleteRecipeVersionCommand.ts +++ b/clients/client-databrew/src/commands/DeleteRecipeVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecipeVersionRequest, DeleteRecipeVersionResponse } from "../models/models_0"; +import type { DeleteRecipeVersionRequest, DeleteRecipeVersionResponse } from "../models/models_0"; import { DeleteRecipeVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DeleteRulesetCommand.ts b/clients/client-databrew/src/commands/DeleteRulesetCommand.ts index 33965e8ab1562..df61ef001492b 100644 --- a/clients/client-databrew/src/commands/DeleteRulesetCommand.ts +++ b/clients/client-databrew/src/commands/DeleteRulesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRulesetRequest, DeleteRulesetResponse } from "../models/models_0"; +import type { DeleteRulesetRequest, DeleteRulesetResponse } from "../models/models_0"; import { DeleteRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DeleteScheduleCommand.ts b/clients/client-databrew/src/commands/DeleteScheduleCommand.ts index 1727b68b0e34c..191f8e12dba53 100644 --- a/clients/client-databrew/src/commands/DeleteScheduleCommand.ts +++ b/clients/client-databrew/src/commands/DeleteScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScheduleRequest, DeleteScheduleResponse } from "../models/models_0"; +import type { DeleteScheduleRequest, DeleteScheduleResponse } from "../models/models_0"; import { DeleteSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DescribeDatasetCommand.ts b/clients/client-databrew/src/commands/DescribeDatasetCommand.ts index f289387744a62..824d8843e2fa8 100644 --- a/clients/client-databrew/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-databrew/src/commands/DescribeDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; +import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; import { DescribeDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DescribeJobCommand.ts b/clients/client-databrew/src/commands/DescribeJobCommand.ts index a9b501e23bcd6..2297907fab72a 100644 --- a/clients/client-databrew/src/commands/DescribeJobCommand.ts +++ b/clients/client-databrew/src/commands/DescribeJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobRequest, DescribeJobResponse } from "../models/models_0"; +import type { DescribeJobRequest, DescribeJobResponse } from "../models/models_0"; import { DescribeJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DescribeJobRunCommand.ts b/clients/client-databrew/src/commands/DescribeJobRunCommand.ts index f604be0f200db..6e9bb694d79a5 100644 --- a/clients/client-databrew/src/commands/DescribeJobRunCommand.ts +++ b/clients/client-databrew/src/commands/DescribeJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobRunRequest, DescribeJobRunResponse } from "../models/models_0"; +import type { DescribeJobRunRequest, DescribeJobRunResponse } from "../models/models_0"; import { DescribeJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DescribeProjectCommand.ts b/clients/client-databrew/src/commands/DescribeProjectCommand.ts index 2ec989872568d..35866c99bbcf1 100644 --- a/clients/client-databrew/src/commands/DescribeProjectCommand.ts +++ b/clients/client-databrew/src/commands/DescribeProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProjectRequest, DescribeProjectResponse } from "../models/models_0"; +import type { DescribeProjectRequest, DescribeProjectResponse } from "../models/models_0"; import { DescribeProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DescribeRecipeCommand.ts b/clients/client-databrew/src/commands/DescribeRecipeCommand.ts index 720876e4b53ce..774eced33f11a 100644 --- a/clients/client-databrew/src/commands/DescribeRecipeCommand.ts +++ b/clients/client-databrew/src/commands/DescribeRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecipeRequest, DescribeRecipeResponse } from "../models/models_0"; +import type { DescribeRecipeRequest, DescribeRecipeResponse } from "../models/models_0"; import { DescribeRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DescribeRulesetCommand.ts b/clients/client-databrew/src/commands/DescribeRulesetCommand.ts index 99bf47023ab64..ea9555c38c909 100644 --- a/clients/client-databrew/src/commands/DescribeRulesetCommand.ts +++ b/clients/client-databrew/src/commands/DescribeRulesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRulesetRequest, DescribeRulesetResponse } from "../models/models_0"; +import type { DescribeRulesetRequest, DescribeRulesetResponse } from "../models/models_0"; import { DescribeRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/DescribeScheduleCommand.ts b/clients/client-databrew/src/commands/DescribeScheduleCommand.ts index 9ef3f05c7dfec..0c4a18d03266c 100644 --- a/clients/client-databrew/src/commands/DescribeScheduleCommand.ts +++ b/clients/client-databrew/src/commands/DescribeScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScheduleRequest, DescribeScheduleResponse } from "../models/models_0"; +import type { DescribeScheduleRequest, DescribeScheduleResponse } from "../models/models_0"; import { DescribeSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/ListDatasetsCommand.ts b/clients/client-databrew/src/commands/ListDatasetsCommand.ts index 58893099137f3..30ec87e43a30d 100644 --- a/clients/client-databrew/src/commands/ListDatasetsCommand.ts +++ b/clients/client-databrew/src/commands/ListDatasetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; +import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; import { ListDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/ListJobRunsCommand.ts b/clients/client-databrew/src/commands/ListJobRunsCommand.ts index a741b39ca9c56..e2fd1ff970cf0 100644 --- a/clients/client-databrew/src/commands/ListJobRunsCommand.ts +++ b/clients/client-databrew/src/commands/ListJobRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0"; +import type { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0"; import { ListJobRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/ListJobsCommand.ts b/clients/client-databrew/src/commands/ListJobsCommand.ts index 686d5a3edc44f..e664b3c7f664a 100644 --- a/clients/client-databrew/src/commands/ListJobsCommand.ts +++ b/clients/client-databrew/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsRequest, ListJobsResponse } from "../models/models_0"; +import type { ListJobsRequest, ListJobsResponse } from "../models/models_0"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/ListProjectsCommand.ts b/clients/client-databrew/src/commands/ListProjectsCommand.ts index 59a134d1374aa..1c5036a43f7f7 100644 --- a/clients/client-databrew/src/commands/ListProjectsCommand.ts +++ b/clients/client-databrew/src/commands/ListProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProjectsRequest, ListProjectsResponse } from "../models/models_0"; +import type { ListProjectsRequest, ListProjectsResponse } from "../models/models_0"; import { ListProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/ListRecipeVersionsCommand.ts b/clients/client-databrew/src/commands/ListRecipeVersionsCommand.ts index 280579b735801..b662bb76a0fe0 100644 --- a/clients/client-databrew/src/commands/ListRecipeVersionsCommand.ts +++ b/clients/client-databrew/src/commands/ListRecipeVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecipeVersionsRequest, ListRecipeVersionsResponse } from "../models/models_0"; +import type { ListRecipeVersionsRequest, ListRecipeVersionsResponse } from "../models/models_0"; import { ListRecipeVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/ListRecipesCommand.ts b/clients/client-databrew/src/commands/ListRecipesCommand.ts index b48e01ac2782f..c4afd52d057a9 100644 --- a/clients/client-databrew/src/commands/ListRecipesCommand.ts +++ b/clients/client-databrew/src/commands/ListRecipesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecipesRequest, ListRecipesResponse } from "../models/models_0"; +import type { ListRecipesRequest, ListRecipesResponse } from "../models/models_0"; import { ListRecipes } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/ListRulesetsCommand.ts b/clients/client-databrew/src/commands/ListRulesetsCommand.ts index 566064f375a48..9638f6c7ae5f3 100644 --- a/clients/client-databrew/src/commands/ListRulesetsCommand.ts +++ b/clients/client-databrew/src/commands/ListRulesetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRulesetsRequest, ListRulesetsResponse } from "../models/models_0"; +import type { ListRulesetsRequest, ListRulesetsResponse } from "../models/models_0"; import { ListRulesets } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/ListSchedulesCommand.ts b/clients/client-databrew/src/commands/ListSchedulesCommand.ts index 5a6f9fd097928..2b268348211fe 100644 --- a/clients/client-databrew/src/commands/ListSchedulesCommand.ts +++ b/clients/client-databrew/src/commands/ListSchedulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSchedulesRequest, ListSchedulesResponse } from "../models/models_0"; +import type { ListSchedulesRequest, ListSchedulesResponse } from "../models/models_0"; import { ListSchedules } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/ListTagsForResourceCommand.ts b/clients/client-databrew/src/commands/ListTagsForResourceCommand.ts index 2fae7fba87c24..fb4e0b2f21702 100644 --- a/clients/client-databrew/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-databrew/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/PublishRecipeCommand.ts b/clients/client-databrew/src/commands/PublishRecipeCommand.ts index 50af3918d4db0..9f776f2d24f37 100644 --- a/clients/client-databrew/src/commands/PublishRecipeCommand.ts +++ b/clients/client-databrew/src/commands/PublishRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishRecipeRequest, PublishRecipeResponse } from "../models/models_0"; +import type { PublishRecipeRequest, PublishRecipeResponse } from "../models/models_0"; import { PublishRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/SendProjectSessionActionCommand.ts b/clients/client-databrew/src/commands/SendProjectSessionActionCommand.ts index 4e6680a71053e..dc66430e2461b 100644 --- a/clients/client-databrew/src/commands/SendProjectSessionActionCommand.ts +++ b/clients/client-databrew/src/commands/SendProjectSessionActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendProjectSessionActionRequest, SendProjectSessionActionResponse } from "../models/models_0"; +import type { SendProjectSessionActionRequest, SendProjectSessionActionResponse } from "../models/models_0"; import { SendProjectSessionAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/StartJobRunCommand.ts b/clients/client-databrew/src/commands/StartJobRunCommand.ts index bf5546b1441c5..8d13dad21d520 100644 --- a/clients/client-databrew/src/commands/StartJobRunCommand.ts +++ b/clients/client-databrew/src/commands/StartJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartJobRunRequest, StartJobRunResponse } from "../models/models_0"; +import type { StartJobRunRequest, StartJobRunResponse } from "../models/models_0"; import { StartJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/StartProjectSessionCommand.ts b/clients/client-databrew/src/commands/StartProjectSessionCommand.ts index 8e311c871baf9..67e6f1ee364e4 100644 --- a/clients/client-databrew/src/commands/StartProjectSessionCommand.ts +++ b/clients/client-databrew/src/commands/StartProjectSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartProjectSessionRequest, StartProjectSessionResponse } from "../models/models_0"; +import type { StartProjectSessionRequest, StartProjectSessionResponse } from "../models/models_0"; import { StartProjectSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/StopJobRunCommand.ts b/clients/client-databrew/src/commands/StopJobRunCommand.ts index 0270a180d0a60..e13a458f523e7 100644 --- a/clients/client-databrew/src/commands/StopJobRunCommand.ts +++ b/clients/client-databrew/src/commands/StopJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopJobRunRequest, StopJobRunResponse } from "../models/models_0"; +import type { StopJobRunRequest, StopJobRunResponse } from "../models/models_0"; import { StopJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/TagResourceCommand.ts b/clients/client-databrew/src/commands/TagResourceCommand.ts index 6d1e9d628790e..0919ea48e44b7 100644 --- a/clients/client-databrew/src/commands/TagResourceCommand.ts +++ b/clients/client-databrew/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/UntagResourceCommand.ts b/clients/client-databrew/src/commands/UntagResourceCommand.ts index f7dd81d532915..3132e8fcce07a 100644 --- a/clients/client-databrew/src/commands/UntagResourceCommand.ts +++ b/clients/client-databrew/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/UpdateDatasetCommand.ts b/clients/client-databrew/src/commands/UpdateDatasetCommand.ts index 6214d42f53959..39ab08e182925 100644 --- a/clients/client-databrew/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-databrew/src/commands/UpdateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_0"; +import type { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_0"; import { UpdateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/UpdateProfileJobCommand.ts b/clients/client-databrew/src/commands/UpdateProfileJobCommand.ts index fc68251ed76c0..91f701d13c1cc 100644 --- a/clients/client-databrew/src/commands/UpdateProfileJobCommand.ts +++ b/clients/client-databrew/src/commands/UpdateProfileJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProfileJobRequest, UpdateProfileJobResponse } from "../models/models_0"; +import type { UpdateProfileJobRequest, UpdateProfileJobResponse } from "../models/models_0"; import { UpdateProfileJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/UpdateProjectCommand.ts b/clients/client-databrew/src/commands/UpdateProjectCommand.ts index d1041b8805098..92f6c54810575 100644 --- a/clients/client-databrew/src/commands/UpdateProjectCommand.ts +++ b/clients/client-databrew/src/commands/UpdateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_0"; +import type { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_0"; import { UpdateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/UpdateRecipeCommand.ts b/clients/client-databrew/src/commands/UpdateRecipeCommand.ts index d6b259bb59983..98e17b24cf102 100644 --- a/clients/client-databrew/src/commands/UpdateRecipeCommand.ts +++ b/clients/client-databrew/src/commands/UpdateRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecipeRequest, UpdateRecipeResponse } from "../models/models_0"; +import type { UpdateRecipeRequest, UpdateRecipeResponse } from "../models/models_0"; import { UpdateRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/UpdateRecipeJobCommand.ts b/clients/client-databrew/src/commands/UpdateRecipeJobCommand.ts index 5327b874111bf..72c2e684318cf 100644 --- a/clients/client-databrew/src/commands/UpdateRecipeJobCommand.ts +++ b/clients/client-databrew/src/commands/UpdateRecipeJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecipeJobRequest, UpdateRecipeJobResponse } from "../models/models_0"; +import type { UpdateRecipeJobRequest, UpdateRecipeJobResponse } from "../models/models_0"; import { UpdateRecipeJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/UpdateRulesetCommand.ts b/clients/client-databrew/src/commands/UpdateRulesetCommand.ts index f28fd95c3a78c..6b25e3ea30a40 100644 --- a/clients/client-databrew/src/commands/UpdateRulesetCommand.ts +++ b/clients/client-databrew/src/commands/UpdateRulesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRulesetRequest, UpdateRulesetResponse } from "../models/models_0"; +import type { UpdateRulesetRequest, UpdateRulesetResponse } from "../models/models_0"; import { UpdateRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/commands/UpdateScheduleCommand.ts b/clients/client-databrew/src/commands/UpdateScheduleCommand.ts index 6f2bc389691b7..02b5ef4463481 100644 --- a/clients/client-databrew/src/commands/UpdateScheduleCommand.ts +++ b/clients/client-databrew/src/commands/UpdateScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; +import type { DataBrewClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataBrewClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScheduleRequest, UpdateScheduleResponse } from "../models/models_0"; +import type { UpdateScheduleRequest, UpdateScheduleResponse } from "../models/models_0"; import { UpdateSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-databrew/src/endpoint/EndpointParameters.ts b/clients/client-databrew/src/endpoint/EndpointParameters.ts index f60bcdf58cee9..59c0cd1fd5fea 100644 --- a/clients/client-databrew/src/endpoint/EndpointParameters.ts +++ b/clients/client-databrew/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-databrew/src/endpoint/endpointResolver.ts b/clients/client-databrew/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-databrew/src/endpoint/endpointResolver.ts +++ b/clients/client-databrew/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-databrew/src/extensionConfiguration.ts b/clients/client-databrew/src/extensionConfiguration.ts index 2382fd9dd4a91..f30284845284e 100644 --- a/clients/client-databrew/src/extensionConfiguration.ts +++ b/clients/client-databrew/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-databrew/src/models/DataBrewServiceException.ts b/clients/client-databrew/src/models/DataBrewServiceException.ts index 74b9f3ed58187..a21ec1b4bed0d 100644 --- a/clients/client-databrew/src/models/DataBrewServiceException.ts +++ b/clients/client-databrew/src/models/DataBrewServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-databrew/src/models/errors.ts b/clients/client-databrew/src/models/errors.ts index 0fd19e4131dbf..9d502e104b0fc 100644 --- a/clients/client-databrew/src/models/errors.ts +++ b/clients/client-databrew/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DataBrewServiceException as __BaseException } from "./DataBrewServiceException"; diff --git a/clients/client-databrew/src/pagination/Interfaces.ts b/clients/client-databrew/src/pagination/Interfaces.ts index 4f927776998c2..1e47753a811ed 100644 --- a/clients/client-databrew/src/pagination/Interfaces.ts +++ b/clients/client-databrew/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DataBrewClient } from "../DataBrewClient"; diff --git a/clients/client-databrew/src/pagination/ListDatasetsPaginator.ts b/clients/client-databrew/src/pagination/ListDatasetsPaginator.ts index 8316c68c1eea4..b74550157c14d 100644 --- a/clients/client-databrew/src/pagination/ListDatasetsPaginator.ts +++ b/clients/client-databrew/src/pagination/ListDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetsCommand, diff --git a/clients/client-databrew/src/pagination/ListJobRunsPaginator.ts b/clients/client-databrew/src/pagination/ListJobRunsPaginator.ts index a7bca39b56ad4..937e14a98a30a 100644 --- a/clients/client-databrew/src/pagination/ListJobRunsPaginator.ts +++ b/clients/client-databrew/src/pagination/ListJobRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobRunsCommand, ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand"; import { DataBrewClient } from "../DataBrewClient"; diff --git a/clients/client-databrew/src/pagination/ListJobsPaginator.ts b/clients/client-databrew/src/pagination/ListJobsPaginator.ts index 199517baec29c..04d4964789da2 100644 --- a/clients/client-databrew/src/pagination/ListJobsPaginator.ts +++ b/clients/client-databrew/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { DataBrewClient } from "../DataBrewClient"; diff --git a/clients/client-databrew/src/pagination/ListProjectsPaginator.ts b/clients/client-databrew/src/pagination/ListProjectsPaginator.ts index 78c9ece56e05a..44b06d4b075c2 100644 --- a/clients/client-databrew/src/pagination/ListProjectsPaginator.ts +++ b/clients/client-databrew/src/pagination/ListProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectsCommand, diff --git a/clients/client-databrew/src/pagination/ListRecipeVersionsPaginator.ts b/clients/client-databrew/src/pagination/ListRecipeVersionsPaginator.ts index 94903b50a2de2..b95bf14209b65 100644 --- a/clients/client-databrew/src/pagination/ListRecipeVersionsPaginator.ts +++ b/clients/client-databrew/src/pagination/ListRecipeVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecipeVersionsCommand, diff --git a/clients/client-databrew/src/pagination/ListRecipesPaginator.ts b/clients/client-databrew/src/pagination/ListRecipesPaginator.ts index eab5614d9722c..d411e745ff89c 100644 --- a/clients/client-databrew/src/pagination/ListRecipesPaginator.ts +++ b/clients/client-databrew/src/pagination/ListRecipesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecipesCommand, ListRecipesCommandInput, ListRecipesCommandOutput } from "../commands/ListRecipesCommand"; import { DataBrewClient } from "../DataBrewClient"; diff --git a/clients/client-databrew/src/pagination/ListRulesetsPaginator.ts b/clients/client-databrew/src/pagination/ListRulesetsPaginator.ts index 5469e7a9de794..b04c4499cd786 100644 --- a/clients/client-databrew/src/pagination/ListRulesetsPaginator.ts +++ b/clients/client-databrew/src/pagination/ListRulesetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRulesetsCommand, diff --git a/clients/client-databrew/src/pagination/ListSchedulesPaginator.ts b/clients/client-databrew/src/pagination/ListSchedulesPaginator.ts index c52689a0a4e14..06a124d67c7a0 100644 --- a/clients/client-databrew/src/pagination/ListSchedulesPaginator.ts +++ b/clients/client-databrew/src/pagination/ListSchedulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchedulesCommand, diff --git a/clients/client-databrew/src/runtimeConfig.browser.ts b/clients/client-databrew/src/runtimeConfig.browser.ts index 212f61cb054de..422e16903dcab 100644 --- a/clients/client-databrew/src/runtimeConfig.browser.ts +++ b/clients/client-databrew/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataBrewClientConfig } from "./DataBrewClient"; + +import type { DataBrewClientConfig } from "./DataBrewClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-databrew/src/runtimeConfig.native.ts b/clients/client-databrew/src/runtimeConfig.native.ts index 87f78654801aa..b657f3ede497c 100644 --- a/clients/client-databrew/src/runtimeConfig.native.ts +++ b/clients/client-databrew/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DataBrewClientConfig } from "./DataBrewClient"; +import type { DataBrewClientConfig } from "./DataBrewClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-databrew/src/runtimeConfig.shared.ts b/clients/client-databrew/src/runtimeConfig.shared.ts index 7be52fe4c0cb6..51da20966279a 100644 --- a/clients/client-databrew/src/runtimeConfig.shared.ts +++ b/clients/client-databrew/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDataBrewHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DataBrewClientConfig } from "./DataBrewClient"; +import type { DataBrewClientConfig } from "./DataBrewClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-databrew/src/runtimeConfig.ts b/clients/client-databrew/src/runtimeConfig.ts index 8e19f5885a986..097fe2cafaad3 100644 --- a/clients/client-databrew/src/runtimeConfig.ts +++ b/clients/client-databrew/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataBrewClientConfig } from "./DataBrewClient"; + +import type { DataBrewClientConfig } from "./DataBrewClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-databrew/src/runtimeExtensions.ts b/clients/client-databrew/src/runtimeExtensions.ts index f68ad4e8c8a5d..75f67b765fe41 100644 --- a/clients/client-databrew/src/runtimeExtensions.ts +++ b/clients/client-databrew/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DataBrewExtensionConfiguration } from "./extensionConfiguration"; +import type { DataBrewExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-databrew/src/schemas/schemas_0.ts b/clients/client-databrew/src/schemas/schemas_0.ts index 99a6da3ffee18..98a3e9649d803 100644 --- a/clients/client-databrew/src/schemas/schemas_0.ts +++ b/clients/client-databrew/src/schemas/schemas_0.ts @@ -362,7 +362,7 @@ const n0 = "com.amazonaws.databrew"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-dataexchange/package.json b/clients/client-dataexchange/package.json index 940192e09205d..76152220672b5 100644 --- a/clients/client-dataexchange/package.json +++ b/clients/client-dataexchange/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-dataexchange/src/DataExchange.ts b/clients/client-dataexchange/src/DataExchange.ts index d7233083d05bd..221373d9db70f 100644 --- a/clients/client-dataexchange/src/DataExchange.ts +++ b/clients/client-dataexchange/src/DataExchange.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptDataGrantCommand, @@ -143,7 +143,7 @@ import { UpdateRevisionCommandInput, UpdateRevisionCommandOutput, } from "./commands/UpdateRevisionCommand"; -import { DataExchangeClient, DataExchangeClientConfig } from "./DataExchangeClient"; +import { DataExchangeClient } from "./DataExchangeClient"; const commands = { AcceptDataGrantCommand, diff --git a/clients/client-dataexchange/src/DataExchangeClient.ts b/clients/client-dataexchange/src/DataExchangeClient.ts index 86fadf9e8ac5c..68cd8c041b571 100644 --- a/clients/client-dataexchange/src/DataExchangeClient.ts +++ b/clients/client-dataexchange/src/DataExchangeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDataExchangeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptDataGrantCommandInput, AcceptDataGrantCommandOutput } from "./commands/AcceptDataGrantCommand"; @@ -116,7 +125,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-dataexchange/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-dataexchange/src/auth/httpAuthExtensionConfiguration.ts index f5eb1476f4909..27a04d658bbe2 100644 --- a/clients/client-dataexchange/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-dataexchange/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DataExchangeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DataExchangeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-dataexchange/src/auth/httpAuthSchemeProvider.ts b/clients/client-dataexchange/src/auth/httpAuthSchemeProvider.ts index 64ccfa0a32454..fab488f4345c3 100644 --- a/clients/client-dataexchange/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-dataexchange/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DataExchangeClientConfig, DataExchangeClientResolvedConfig } from "../DataExchangeClient"; +import { type DataExchangeClientResolvedConfig, DataExchangeClientConfig } from "../DataExchangeClient"; /** * @internal diff --git a/clients/client-dataexchange/src/commands/AcceptDataGrantCommand.ts b/clients/client-dataexchange/src/commands/AcceptDataGrantCommand.ts index fba6dcc1d60c6..a8ddfda5124b9 100644 --- a/clients/client-dataexchange/src/commands/AcceptDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/AcceptDataGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptDataGrantRequest, AcceptDataGrantResponse } from "../models/models_0"; +import type { AcceptDataGrantRequest, AcceptDataGrantResponse } from "../models/models_0"; import { AcceptDataGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/CancelJobCommand.ts b/clients/client-dataexchange/src/commands/CancelJobCommand.ts index d3891d2155ba0..ee6db4f66c91a 100644 --- a/clients/client-dataexchange/src/commands/CancelJobCommand.ts +++ b/clients/client-dataexchange/src/commands/CancelJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelJobRequest } from "../models/models_0"; +import type { CancelJobRequest } from "../models/models_0"; import { CancelJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/CreateDataGrantCommand.ts b/clients/client-dataexchange/src/commands/CreateDataGrantCommand.ts index 6496e24a8dba8..0b42d4e515319 100644 --- a/clients/client-dataexchange/src/commands/CreateDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateDataGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataGrantRequest, CreateDataGrantResponse } from "../models/models_0"; +import type { CreateDataGrantRequest, CreateDataGrantResponse } from "../models/models_0"; import { CreateDataGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/CreateDataSetCommand.ts b/clients/client-dataexchange/src/commands/CreateDataSetCommand.ts index d76eb2269d3d3..575e6df3aa786 100644 --- a/clients/client-dataexchange/src/commands/CreateDataSetCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataSetRequest, CreateDataSetResponse } from "../models/models_0"; +import type { CreateDataSetRequest, CreateDataSetResponse } from "../models/models_0"; import { CreateDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/CreateEventActionCommand.ts b/clients/client-dataexchange/src/commands/CreateEventActionCommand.ts index 20ad02e4ec024..aafad23bf06dc 100644 --- a/clients/client-dataexchange/src/commands/CreateEventActionCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateEventActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventActionRequest, CreateEventActionResponse } from "../models/models_0"; +import type { CreateEventActionRequest, CreateEventActionResponse } from "../models/models_0"; import { CreateEventAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/CreateJobCommand.ts b/clients/client-dataexchange/src/commands/CreateJobCommand.ts index b8093c581e8a3..918296c70010d 100644 --- a/clients/client-dataexchange/src/commands/CreateJobCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJobRequest, CreateJobResponse } from "../models/models_0"; +import type { CreateJobRequest, CreateJobResponse } from "../models/models_0"; import { CreateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/CreateRevisionCommand.ts b/clients/client-dataexchange/src/commands/CreateRevisionCommand.ts index 82a1bc03b6d13..a3b5d0603a2c9 100644 --- a/clients/client-dataexchange/src/commands/CreateRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/CreateRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRevisionRequest, CreateRevisionResponse } from "../models/models_0"; +import type { CreateRevisionRequest, CreateRevisionResponse } from "../models/models_0"; import { CreateRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/DeleteAssetCommand.ts b/clients/client-dataexchange/src/commands/DeleteAssetCommand.ts index 092625fbeac45..706d4b3d3609d 100644 --- a/clients/client-dataexchange/src/commands/DeleteAssetCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssetRequest } from "../models/models_0"; +import type { DeleteAssetRequest } from "../models/models_0"; import { DeleteAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/DeleteDataGrantCommand.ts b/clients/client-dataexchange/src/commands/DeleteDataGrantCommand.ts index e28fb9e66c11e..1c127abbc50fa 100644 --- a/clients/client-dataexchange/src/commands/DeleteDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteDataGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataGrantRequest } from "../models/models_0"; +import type { DeleteDataGrantRequest } from "../models/models_0"; import { DeleteDataGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/DeleteDataSetCommand.ts b/clients/client-dataexchange/src/commands/DeleteDataSetCommand.ts index 6121be79db925..e4360a9134e74 100644 --- a/clients/client-dataexchange/src/commands/DeleteDataSetCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataSetRequest } from "../models/models_0"; +import type { DeleteDataSetRequest } from "../models/models_0"; import { DeleteDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/DeleteEventActionCommand.ts b/clients/client-dataexchange/src/commands/DeleteEventActionCommand.ts index 560f3a731599b..0ab7460abfc07 100644 --- a/clients/client-dataexchange/src/commands/DeleteEventActionCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteEventActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventActionRequest } from "../models/models_0"; +import type { DeleteEventActionRequest } from "../models/models_0"; import { DeleteEventAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/DeleteRevisionCommand.ts b/clients/client-dataexchange/src/commands/DeleteRevisionCommand.ts index 48f88b8f109db..bd8de114bf5e2 100644 --- a/clients/client-dataexchange/src/commands/DeleteRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/DeleteRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRevisionRequest } from "../models/models_0"; +import type { DeleteRevisionRequest } from "../models/models_0"; import { DeleteRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/GetAssetCommand.ts b/clients/client-dataexchange/src/commands/GetAssetCommand.ts index 6cdfc2061bb8d..428294c0ac9e6 100644 --- a/clients/client-dataexchange/src/commands/GetAssetCommand.ts +++ b/clients/client-dataexchange/src/commands/GetAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssetRequest, GetAssetResponse } from "../models/models_0"; +import type { GetAssetRequest, GetAssetResponse } from "../models/models_0"; import { GetAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/GetDataGrantCommand.ts b/clients/client-dataexchange/src/commands/GetDataGrantCommand.ts index e02b5cb845855..847b775c7099d 100644 --- a/clients/client-dataexchange/src/commands/GetDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/GetDataGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataGrantRequest, GetDataGrantResponse } from "../models/models_0"; +import type { GetDataGrantRequest, GetDataGrantResponse } from "../models/models_0"; import { GetDataGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/GetDataSetCommand.ts b/clients/client-dataexchange/src/commands/GetDataSetCommand.ts index 15aa303b6c29c..b2e6ab73f9e01 100644 --- a/clients/client-dataexchange/src/commands/GetDataSetCommand.ts +++ b/clients/client-dataexchange/src/commands/GetDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataSetRequest, GetDataSetResponse } from "../models/models_0"; +import type { GetDataSetRequest, GetDataSetResponse } from "../models/models_0"; import { GetDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/GetEventActionCommand.ts b/clients/client-dataexchange/src/commands/GetEventActionCommand.ts index 998ce2b7cd2b0..dfcf1c5b2cade 100644 --- a/clients/client-dataexchange/src/commands/GetEventActionCommand.ts +++ b/clients/client-dataexchange/src/commands/GetEventActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventActionRequest, GetEventActionResponse } from "../models/models_0"; +import type { GetEventActionRequest, GetEventActionResponse } from "../models/models_0"; import { GetEventAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/GetJobCommand.ts b/clients/client-dataexchange/src/commands/GetJobCommand.ts index aceb88274d948..2ab90961d4ef6 100644 --- a/clients/client-dataexchange/src/commands/GetJobCommand.ts +++ b/clients/client-dataexchange/src/commands/GetJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobRequest, GetJobResponse } from "../models/models_0"; +import type { GetJobRequest, GetJobResponse } from "../models/models_0"; import { GetJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/GetReceivedDataGrantCommand.ts b/clients/client-dataexchange/src/commands/GetReceivedDataGrantCommand.ts index df3332d81168e..daa4601b54297 100644 --- a/clients/client-dataexchange/src/commands/GetReceivedDataGrantCommand.ts +++ b/clients/client-dataexchange/src/commands/GetReceivedDataGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReceivedDataGrantRequest, GetReceivedDataGrantResponse } from "../models/models_0"; +import type { GetReceivedDataGrantRequest, GetReceivedDataGrantResponse } from "../models/models_0"; import { GetReceivedDataGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/GetRevisionCommand.ts b/clients/client-dataexchange/src/commands/GetRevisionCommand.ts index 46b9cd983c51d..ced58dbb1ce40 100644 --- a/clients/client-dataexchange/src/commands/GetRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/GetRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRevisionRequest, GetRevisionResponse } from "../models/models_0"; +import type { GetRevisionRequest, GetRevisionResponse } from "../models/models_0"; import { GetRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/ListDataGrantsCommand.ts b/clients/client-dataexchange/src/commands/ListDataGrantsCommand.ts index b2ba07a1d8179..29c529258aa08 100644 --- a/clients/client-dataexchange/src/commands/ListDataGrantsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListDataGrantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataGrantsRequest, ListDataGrantsResponse } from "../models/models_0"; +import type { ListDataGrantsRequest, ListDataGrantsResponse } from "../models/models_0"; import { ListDataGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/ListDataSetRevisionsCommand.ts b/clients/client-dataexchange/src/commands/ListDataSetRevisionsCommand.ts index 35571980462be..2a45baf023bad 100644 --- a/clients/client-dataexchange/src/commands/ListDataSetRevisionsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListDataSetRevisionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSetRevisionsRequest, ListDataSetRevisionsResponse } from "../models/models_0"; +import type { ListDataSetRevisionsRequest, ListDataSetRevisionsResponse } from "../models/models_0"; import { ListDataSetRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/ListDataSetsCommand.ts b/clients/client-dataexchange/src/commands/ListDataSetsCommand.ts index 0bbad8a442d1e..9185d8378cb36 100644 --- a/clients/client-dataexchange/src/commands/ListDataSetsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListDataSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_0"; +import type { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_0"; import { ListDataSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/ListEventActionsCommand.ts b/clients/client-dataexchange/src/commands/ListEventActionsCommand.ts index af709e0956b13..a3d2551cb57f6 100644 --- a/clients/client-dataexchange/src/commands/ListEventActionsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListEventActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventActionsRequest, ListEventActionsResponse } from "../models/models_0"; +import type { ListEventActionsRequest, ListEventActionsResponse } from "../models/models_0"; import { ListEventActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/ListJobsCommand.ts b/clients/client-dataexchange/src/commands/ListJobsCommand.ts index 15a41303eb5ca..2968385c0b5f2 100644 --- a/clients/client-dataexchange/src/commands/ListJobsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsRequest, ListJobsResponse } from "../models/models_0"; +import type { ListJobsRequest, ListJobsResponse } from "../models/models_0"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/ListReceivedDataGrantsCommand.ts b/clients/client-dataexchange/src/commands/ListReceivedDataGrantsCommand.ts index d8df1a6f34b1c..4b63fb7cfa112 100644 --- a/clients/client-dataexchange/src/commands/ListReceivedDataGrantsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListReceivedDataGrantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReceivedDataGrantsRequest, ListReceivedDataGrantsResponse } from "../models/models_0"; +import type { ListReceivedDataGrantsRequest, ListReceivedDataGrantsResponse } from "../models/models_0"; import { ListReceivedDataGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/ListRevisionAssetsCommand.ts b/clients/client-dataexchange/src/commands/ListRevisionAssetsCommand.ts index 20763af91dd1a..06d85a873c49b 100644 --- a/clients/client-dataexchange/src/commands/ListRevisionAssetsCommand.ts +++ b/clients/client-dataexchange/src/commands/ListRevisionAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRevisionAssetsRequest, ListRevisionAssetsResponse } from "../models/models_0"; +import type { ListRevisionAssetsRequest, ListRevisionAssetsResponse } from "../models/models_0"; import { ListRevisionAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/ListTagsForResourceCommand.ts b/clients/client-dataexchange/src/commands/ListTagsForResourceCommand.ts index a74b0553e5bd0..5dbf4fee7f1d0 100644 --- a/clients/client-dataexchange/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-dataexchange/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/RevokeRevisionCommand.ts b/clients/client-dataexchange/src/commands/RevokeRevisionCommand.ts index c0f47747c7f20..07a44f2f84b28 100644 --- a/clients/client-dataexchange/src/commands/RevokeRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/RevokeRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeRevisionRequest, RevokeRevisionResponse } from "../models/models_0"; +import type { RevokeRevisionRequest, RevokeRevisionResponse } from "../models/models_0"; import { RevokeRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/SendApiAssetCommand.ts b/clients/client-dataexchange/src/commands/SendApiAssetCommand.ts index cbc4043e171dd..d1df1eff32d79 100644 --- a/clients/client-dataexchange/src/commands/SendApiAssetCommand.ts +++ b/clients/client-dataexchange/src/commands/SendApiAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendApiAssetRequest, SendApiAssetResponse } from "../models/models_0"; +import type { SendApiAssetRequest, SendApiAssetResponse } from "../models/models_0"; import { SendApiAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/SendDataSetNotificationCommand.ts b/clients/client-dataexchange/src/commands/SendDataSetNotificationCommand.ts index 3570cd4c26c4c..64916e7859e13 100644 --- a/clients/client-dataexchange/src/commands/SendDataSetNotificationCommand.ts +++ b/clients/client-dataexchange/src/commands/SendDataSetNotificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendDataSetNotificationRequest, SendDataSetNotificationResponse } from "../models/models_0"; +import type { SendDataSetNotificationRequest, SendDataSetNotificationResponse } from "../models/models_0"; import { SendDataSetNotification } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/StartJobCommand.ts b/clients/client-dataexchange/src/commands/StartJobCommand.ts index f9533c1d322ff..935bc86f785dc 100644 --- a/clients/client-dataexchange/src/commands/StartJobCommand.ts +++ b/clients/client-dataexchange/src/commands/StartJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartJobRequest, StartJobResponse } from "../models/models_0"; +import type { StartJobRequest, StartJobResponse } from "../models/models_0"; import { StartJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/TagResourceCommand.ts b/clients/client-dataexchange/src/commands/TagResourceCommand.ts index 1b9bf31ee2f64..65b8a58bc0dd0 100644 --- a/clients/client-dataexchange/src/commands/TagResourceCommand.ts +++ b/clients/client-dataexchange/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/UntagResourceCommand.ts b/clients/client-dataexchange/src/commands/UntagResourceCommand.ts index 5fcde3c4ffb1d..2f1a987f087e0 100644 --- a/clients/client-dataexchange/src/commands/UntagResourceCommand.ts +++ b/clients/client-dataexchange/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/UpdateAssetCommand.ts b/clients/client-dataexchange/src/commands/UpdateAssetCommand.ts index 423a5ac9fa2fc..426e371598a04 100644 --- a/clients/client-dataexchange/src/commands/UpdateAssetCommand.ts +++ b/clients/client-dataexchange/src/commands/UpdateAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssetRequest, UpdateAssetResponse } from "../models/models_0"; +import type { UpdateAssetRequest, UpdateAssetResponse } from "../models/models_0"; import { UpdateAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/UpdateDataSetCommand.ts b/clients/client-dataexchange/src/commands/UpdateDataSetCommand.ts index 3992a243f5195..7cc5b1220fbf4 100644 --- a/clients/client-dataexchange/src/commands/UpdateDataSetCommand.ts +++ b/clients/client-dataexchange/src/commands/UpdateDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSetRequest, UpdateDataSetResponse } from "../models/models_0"; +import type { UpdateDataSetRequest, UpdateDataSetResponse } from "../models/models_0"; import { UpdateDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/UpdateEventActionCommand.ts b/clients/client-dataexchange/src/commands/UpdateEventActionCommand.ts index f3251f57fd571..5b14168675373 100644 --- a/clients/client-dataexchange/src/commands/UpdateEventActionCommand.ts +++ b/clients/client-dataexchange/src/commands/UpdateEventActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEventActionRequest, UpdateEventActionResponse } from "../models/models_0"; +import type { UpdateEventActionRequest, UpdateEventActionResponse } from "../models/models_0"; import { UpdateEventAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/commands/UpdateRevisionCommand.ts b/clients/client-dataexchange/src/commands/UpdateRevisionCommand.ts index be86d1a499ffc..c9d4baa4b62e4 100644 --- a/clients/client-dataexchange/src/commands/UpdateRevisionCommand.ts +++ b/clients/client-dataexchange/src/commands/UpdateRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; +import type { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRevisionRequest, UpdateRevisionResponse } from "../models/models_0"; +import type { UpdateRevisionRequest, UpdateRevisionResponse } from "../models/models_0"; import { UpdateRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-dataexchange/src/endpoint/EndpointParameters.ts b/clients/client-dataexchange/src/endpoint/EndpointParameters.ts index bc8a72ed01c9b..161f29d7849ab 100644 --- a/clients/client-dataexchange/src/endpoint/EndpointParameters.ts +++ b/clients/client-dataexchange/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-dataexchange/src/endpoint/endpointResolver.ts b/clients/client-dataexchange/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-dataexchange/src/endpoint/endpointResolver.ts +++ b/clients/client-dataexchange/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-dataexchange/src/extensionConfiguration.ts b/clients/client-dataexchange/src/extensionConfiguration.ts index 42901b0779b1a..5823e152f5d7a 100644 --- a/clients/client-dataexchange/src/extensionConfiguration.ts +++ b/clients/client-dataexchange/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-dataexchange/src/models/DataExchangeServiceException.ts b/clients/client-dataexchange/src/models/DataExchangeServiceException.ts index 2a848a82cf517..8a9efdbb95c27 100644 --- a/clients/client-dataexchange/src/models/DataExchangeServiceException.ts +++ b/clients/client-dataexchange/src/models/DataExchangeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-dataexchange/src/models/errors.ts b/clients/client-dataexchange/src/models/errors.ts index a520ee878a184..fddb0c353a215 100644 --- a/clients/client-dataexchange/src/models/errors.ts +++ b/clients/client-dataexchange/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DataExchangeServiceException as __BaseException } from "./DataExchangeServiceException"; import { ExceptionCause, LimitName, ResourceType } from "./enums"; diff --git a/clients/client-dataexchange/src/pagination/Interfaces.ts b/clients/client-dataexchange/src/pagination/Interfaces.ts index 6d6a379c10f1e..41474733f8544 100644 --- a/clients/client-dataexchange/src/pagination/Interfaces.ts +++ b/clients/client-dataexchange/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DataExchangeClient } from "../DataExchangeClient"; diff --git a/clients/client-dataexchange/src/pagination/ListDataGrantsPaginator.ts b/clients/client-dataexchange/src/pagination/ListDataGrantsPaginator.ts index 19c2bd5c19066..1b360c0cfd047 100644 --- a/clients/client-dataexchange/src/pagination/ListDataGrantsPaginator.ts +++ b/clients/client-dataexchange/src/pagination/ListDataGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataGrantsCommand, diff --git a/clients/client-dataexchange/src/pagination/ListDataSetRevisionsPaginator.ts b/clients/client-dataexchange/src/pagination/ListDataSetRevisionsPaginator.ts index 100f1d7c562dd..d80f58eca8479 100644 --- a/clients/client-dataexchange/src/pagination/ListDataSetRevisionsPaginator.ts +++ b/clients/client-dataexchange/src/pagination/ListDataSetRevisionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSetRevisionsCommand, diff --git a/clients/client-dataexchange/src/pagination/ListDataSetsPaginator.ts b/clients/client-dataexchange/src/pagination/ListDataSetsPaginator.ts index f1a9333771e1e..d0529435882a6 100644 --- a/clients/client-dataexchange/src/pagination/ListDataSetsPaginator.ts +++ b/clients/client-dataexchange/src/pagination/ListDataSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSetsCommand, diff --git a/clients/client-dataexchange/src/pagination/ListEventActionsPaginator.ts b/clients/client-dataexchange/src/pagination/ListEventActionsPaginator.ts index fe76e181e76ba..57fcd2995168f 100644 --- a/clients/client-dataexchange/src/pagination/ListEventActionsPaginator.ts +++ b/clients/client-dataexchange/src/pagination/ListEventActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventActionsCommand, diff --git a/clients/client-dataexchange/src/pagination/ListJobsPaginator.ts b/clients/client-dataexchange/src/pagination/ListJobsPaginator.ts index 9ce1744f64701..9d4fde142710f 100644 --- a/clients/client-dataexchange/src/pagination/ListJobsPaginator.ts +++ b/clients/client-dataexchange/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { DataExchangeClient } from "../DataExchangeClient"; diff --git a/clients/client-dataexchange/src/pagination/ListReceivedDataGrantsPaginator.ts b/clients/client-dataexchange/src/pagination/ListReceivedDataGrantsPaginator.ts index e2e6ab7ee3a4c..7be61ba2c0276 100644 --- a/clients/client-dataexchange/src/pagination/ListReceivedDataGrantsPaginator.ts +++ b/clients/client-dataexchange/src/pagination/ListReceivedDataGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReceivedDataGrantsCommand, diff --git a/clients/client-dataexchange/src/pagination/ListRevisionAssetsPaginator.ts b/clients/client-dataexchange/src/pagination/ListRevisionAssetsPaginator.ts index 33197590e0410..daaa5f2243edd 100644 --- a/clients/client-dataexchange/src/pagination/ListRevisionAssetsPaginator.ts +++ b/clients/client-dataexchange/src/pagination/ListRevisionAssetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRevisionAssetsCommand, diff --git a/clients/client-dataexchange/src/runtimeConfig.browser.ts b/clients/client-dataexchange/src/runtimeConfig.browser.ts index 3a3f85140ecea..fcbf1fca99880 100644 --- a/clients/client-dataexchange/src/runtimeConfig.browser.ts +++ b/clients/client-dataexchange/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataExchangeClientConfig } from "./DataExchangeClient"; + +import type { DataExchangeClientConfig } from "./DataExchangeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-dataexchange/src/runtimeConfig.native.ts b/clients/client-dataexchange/src/runtimeConfig.native.ts index abacffe751ae0..caf85a78d5928 100644 --- a/clients/client-dataexchange/src/runtimeConfig.native.ts +++ b/clients/client-dataexchange/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DataExchangeClientConfig } from "./DataExchangeClient"; +import type { DataExchangeClientConfig } from "./DataExchangeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-dataexchange/src/runtimeConfig.shared.ts b/clients/client-dataexchange/src/runtimeConfig.shared.ts index ace7cb5449074..f687b82e9902c 100644 --- a/clients/client-dataexchange/src/runtimeConfig.shared.ts +++ b/clients/client-dataexchange/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDataExchangeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DataExchangeClientConfig } from "./DataExchangeClient"; +import type { DataExchangeClientConfig } from "./DataExchangeClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-dataexchange/src/runtimeConfig.ts b/clients/client-dataexchange/src/runtimeConfig.ts index 55667f9c24fde..6ab368bf00baf 100644 --- a/clients/client-dataexchange/src/runtimeConfig.ts +++ b/clients/client-dataexchange/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataExchangeClientConfig } from "./DataExchangeClient"; + +import type { DataExchangeClientConfig } from "./DataExchangeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-dataexchange/src/runtimeExtensions.ts b/clients/client-dataexchange/src/runtimeExtensions.ts index 5751deaeac5b0..b81358841d2fa 100644 --- a/clients/client-dataexchange/src/runtimeExtensions.ts +++ b/clients/client-dataexchange/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DataExchangeExtensionConfiguration } from "./extensionConfiguration"; +import type { DataExchangeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-dataexchange/src/schemas/schemas_0.ts b/clients/client-dataexchange/src/schemas/schemas_0.ts index cd49591f44033..a11f5b6f34872 100644 --- a/clients/client-dataexchange/src/schemas/schemas_0.ts +++ b/clients/client-dataexchange/src/schemas/schemas_0.ts @@ -351,7 +351,7 @@ const n0 = "com.amazonaws.dataexchange"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-datasync/package.json b/clients/client-datasync/package.json index bd91d26bd2e00..54b6013eb49bf 100644 --- a/clients/client-datasync/package.json +++ b/clients/client-datasync/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-datasync/src/DataSync.ts b/clients/client-datasync/src/DataSync.ts index 552860fc84f9a..5602dae3b83ef 100644 --- a/clients/client-datasync/src/DataSync.ts +++ b/clients/client-datasync/src/DataSync.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelTaskExecutionCommand, @@ -231,7 +231,7 @@ import { UpdateTaskExecutionCommandInput, UpdateTaskExecutionCommandOutput, } from "./commands/UpdateTaskExecutionCommand"; -import { DataSyncClient, DataSyncClientConfig } from "./DataSyncClient"; +import { DataSyncClient } from "./DataSyncClient"; const commands = { CancelTaskExecutionCommand, diff --git a/clients/client-datasync/src/DataSyncClient.ts b/clients/client-datasync/src/DataSyncClient.ts index 060d5e8311240..d272cd741abf4 100644 --- a/clients/client-datasync/src/DataSyncClient.ts +++ b/clients/client-datasync/src/DataSyncClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDataSyncHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -195,7 +204,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-datasync/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-datasync/src/auth/httpAuthExtensionConfiguration.ts index 75456bdb5ea45..db76226fbaff1 100644 --- a/clients/client-datasync/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-datasync/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DataSyncHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DataSyncHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-datasync/src/auth/httpAuthSchemeProvider.ts b/clients/client-datasync/src/auth/httpAuthSchemeProvider.ts index 6e4167229a573..e64a1393153f5 100644 --- a/clients/client-datasync/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-datasync/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DataSyncClientConfig, DataSyncClientResolvedConfig } from "../DataSyncClient"; +import { type DataSyncClientResolvedConfig, DataSyncClientConfig } from "../DataSyncClient"; /** * @internal diff --git a/clients/client-datasync/src/commands/CancelTaskExecutionCommand.ts b/clients/client-datasync/src/commands/CancelTaskExecutionCommand.ts index 6e8443469d8a2..700b7fa24ead9 100644 --- a/clients/client-datasync/src/commands/CancelTaskExecutionCommand.ts +++ b/clients/client-datasync/src/commands/CancelTaskExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelTaskExecutionRequest, CancelTaskExecutionResponse } from "../models/models_0"; +import type { CancelTaskExecutionRequest, CancelTaskExecutionResponse } from "../models/models_0"; import { CancelTaskExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateAgentCommand.ts b/clients/client-datasync/src/commands/CreateAgentCommand.ts index 830512acd6a1c..761ab4145df6f 100644 --- a/clients/client-datasync/src/commands/CreateAgentCommand.ts +++ b/clients/client-datasync/src/commands/CreateAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAgentRequest, CreateAgentResponse } from "../models/models_0"; +import type { CreateAgentRequest, CreateAgentResponse } from "../models/models_0"; import { CreateAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationAzureBlobCommand.ts b/clients/client-datasync/src/commands/CreateLocationAzureBlobCommand.ts index 0452c4282eb2e..1cd2bcf2c8b9e 100644 --- a/clients/client-datasync/src/commands/CreateLocationAzureBlobCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationAzureBlobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationAzureBlobRequest, CreateLocationAzureBlobResponse } from "../models/models_0"; +import type { CreateLocationAzureBlobRequest, CreateLocationAzureBlobResponse } from "../models/models_0"; import { CreateLocationAzureBlob } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationEfsCommand.ts b/clients/client-datasync/src/commands/CreateLocationEfsCommand.ts index abc480f31a088..ba45f9af51245 100644 --- a/clients/client-datasync/src/commands/CreateLocationEfsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationEfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationEfsRequest, CreateLocationEfsResponse } from "../models/models_0"; +import type { CreateLocationEfsRequest, CreateLocationEfsResponse } from "../models/models_0"; import { CreateLocationEfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationFsxLustreCommand.ts b/clients/client-datasync/src/commands/CreateLocationFsxLustreCommand.ts index 4dc632637f53c..64b78f062a259 100644 --- a/clients/client-datasync/src/commands/CreateLocationFsxLustreCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationFsxLustreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationFsxLustreRequest, CreateLocationFsxLustreResponse } from "../models/models_0"; +import type { CreateLocationFsxLustreRequest, CreateLocationFsxLustreResponse } from "../models/models_0"; import { CreateLocationFsxLustre } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationFsxOntapCommand.ts b/clients/client-datasync/src/commands/CreateLocationFsxOntapCommand.ts index 825207ca3876d..bb54128798718 100644 --- a/clients/client-datasync/src/commands/CreateLocationFsxOntapCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationFsxOntapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationFsxOntapRequest, CreateLocationFsxOntapResponse } from "../models/models_0"; +import type { CreateLocationFsxOntapRequest, CreateLocationFsxOntapResponse } from "../models/models_0"; import { CreateLocationFsxOntap } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationFsxOpenZfsCommand.ts b/clients/client-datasync/src/commands/CreateLocationFsxOpenZfsCommand.ts index 06eba46245080..10237e9ba4ecc 100644 --- a/clients/client-datasync/src/commands/CreateLocationFsxOpenZfsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationFsxOpenZfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationFsxOpenZfsRequest, CreateLocationFsxOpenZfsResponse } from "../models/models_0"; +import type { CreateLocationFsxOpenZfsRequest, CreateLocationFsxOpenZfsResponse } from "../models/models_0"; import { CreateLocationFsxOpenZfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationFsxWindowsCommand.ts b/clients/client-datasync/src/commands/CreateLocationFsxWindowsCommand.ts index 98d3ff0480f79..83a79c03e8cb9 100644 --- a/clients/client-datasync/src/commands/CreateLocationFsxWindowsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationFsxWindowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationFsxWindowsRequest, CreateLocationFsxWindowsResponse } from "../models/models_0"; +import type { CreateLocationFsxWindowsRequest, CreateLocationFsxWindowsResponse } from "../models/models_0"; import { CreateLocationFsxWindows } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationHdfsCommand.ts b/clients/client-datasync/src/commands/CreateLocationHdfsCommand.ts index 9b0571f55846e..048d37ff7074b 100644 --- a/clients/client-datasync/src/commands/CreateLocationHdfsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationHdfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationHdfsRequest, CreateLocationHdfsResponse } from "../models/models_0"; +import type { CreateLocationHdfsRequest, CreateLocationHdfsResponse } from "../models/models_0"; import { CreateLocationHdfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationNfsCommand.ts b/clients/client-datasync/src/commands/CreateLocationNfsCommand.ts index 94e7df374e25d..c81ea7bc87f35 100644 --- a/clients/client-datasync/src/commands/CreateLocationNfsCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationNfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationNfsRequest, CreateLocationNfsResponse } from "../models/models_0"; +import type { CreateLocationNfsRequest, CreateLocationNfsResponse } from "../models/models_0"; import { CreateLocationNfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationObjectStorageCommand.ts b/clients/client-datasync/src/commands/CreateLocationObjectStorageCommand.ts index 9578f05707405..07a3c8ca2997a 100644 --- a/clients/client-datasync/src/commands/CreateLocationObjectStorageCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationObjectStorageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationObjectStorageRequest, CreateLocationObjectStorageResponse } from "../models/models_0"; +import type { CreateLocationObjectStorageRequest, CreateLocationObjectStorageResponse } from "../models/models_0"; import { CreateLocationObjectStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationS3Command.ts b/clients/client-datasync/src/commands/CreateLocationS3Command.ts index 18a6c4c2a3f6a..3c7c14d8ce111 100644 --- a/clients/client-datasync/src/commands/CreateLocationS3Command.ts +++ b/clients/client-datasync/src/commands/CreateLocationS3Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationS3Request, CreateLocationS3Response } from "../models/models_0"; +import type { CreateLocationS3Request, CreateLocationS3Response } from "../models/models_0"; import { CreateLocationS3 } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateLocationSmbCommand.ts b/clients/client-datasync/src/commands/CreateLocationSmbCommand.ts index 57c199dbf9567..ab881e469541d 100644 --- a/clients/client-datasync/src/commands/CreateLocationSmbCommand.ts +++ b/clients/client-datasync/src/commands/CreateLocationSmbCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocationSmbRequest, CreateLocationSmbResponse } from "../models/models_0"; +import type { CreateLocationSmbRequest, CreateLocationSmbResponse } from "../models/models_0"; import { CreateLocationSmb } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/CreateTaskCommand.ts b/clients/client-datasync/src/commands/CreateTaskCommand.ts index 9481e16f10df4..ac99d2850952a 100644 --- a/clients/client-datasync/src/commands/CreateTaskCommand.ts +++ b/clients/client-datasync/src/commands/CreateTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTaskRequest, CreateTaskResponse } from "../models/models_0"; +import type { CreateTaskRequest, CreateTaskResponse } from "../models/models_0"; import { CreateTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DeleteAgentCommand.ts b/clients/client-datasync/src/commands/DeleteAgentCommand.ts index 78ec0115ec621..bace2819b62a4 100644 --- a/clients/client-datasync/src/commands/DeleteAgentCommand.ts +++ b/clients/client-datasync/src/commands/DeleteAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAgentRequest, DeleteAgentResponse } from "../models/models_0"; +import type { DeleteAgentRequest, DeleteAgentResponse } from "../models/models_0"; import { DeleteAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DeleteLocationCommand.ts b/clients/client-datasync/src/commands/DeleteLocationCommand.ts index 7b70143385347..811941863296c 100644 --- a/clients/client-datasync/src/commands/DeleteLocationCommand.ts +++ b/clients/client-datasync/src/commands/DeleteLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLocationRequest, DeleteLocationResponse } from "../models/models_0"; +import type { DeleteLocationRequest, DeleteLocationResponse } from "../models/models_0"; import { DeleteLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DeleteTaskCommand.ts b/clients/client-datasync/src/commands/DeleteTaskCommand.ts index c7596157f1291..5345738b583c1 100644 --- a/clients/client-datasync/src/commands/DeleteTaskCommand.ts +++ b/clients/client-datasync/src/commands/DeleteTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTaskRequest, DeleteTaskResponse } from "../models/models_0"; +import type { DeleteTaskRequest, DeleteTaskResponse } from "../models/models_0"; import { DeleteTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeAgentCommand.ts b/clients/client-datasync/src/commands/DescribeAgentCommand.ts index 399ef009ef119..9900fba1d3ae7 100644 --- a/clients/client-datasync/src/commands/DescribeAgentCommand.ts +++ b/clients/client-datasync/src/commands/DescribeAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAgentRequest, DescribeAgentResponse } from "../models/models_0"; +import type { DescribeAgentRequest, DescribeAgentResponse } from "../models/models_0"; import { DescribeAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationAzureBlobCommand.ts b/clients/client-datasync/src/commands/DescribeLocationAzureBlobCommand.ts index 1ca5335461f2e..ecbb8d20f90e4 100644 --- a/clients/client-datasync/src/commands/DescribeLocationAzureBlobCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationAzureBlobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationAzureBlobRequest, DescribeLocationAzureBlobResponse } from "../models/models_0"; +import type { DescribeLocationAzureBlobRequest, DescribeLocationAzureBlobResponse } from "../models/models_0"; import { DescribeLocationAzureBlob } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationEfsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationEfsCommand.ts index 17f80ebc75c5e..a73e18b457ba4 100644 --- a/clients/client-datasync/src/commands/DescribeLocationEfsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationEfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationEfsRequest, DescribeLocationEfsResponse } from "../models/models_0"; +import type { DescribeLocationEfsRequest, DescribeLocationEfsResponse } from "../models/models_0"; import { DescribeLocationEfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationFsxLustreCommand.ts b/clients/client-datasync/src/commands/DescribeLocationFsxLustreCommand.ts index 0337886b29fe3..9c9d92431d2a0 100644 --- a/clients/client-datasync/src/commands/DescribeLocationFsxLustreCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationFsxLustreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationFsxLustreRequest, DescribeLocationFsxLustreResponse } from "../models/models_0"; +import type { DescribeLocationFsxLustreRequest, DescribeLocationFsxLustreResponse } from "../models/models_0"; import { DescribeLocationFsxLustre } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationFsxOntapCommand.ts b/clients/client-datasync/src/commands/DescribeLocationFsxOntapCommand.ts index 6ea2963b2dd94..45ee9ac4862ce 100644 --- a/clients/client-datasync/src/commands/DescribeLocationFsxOntapCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationFsxOntapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationFsxOntapRequest, DescribeLocationFsxOntapResponse } from "../models/models_0"; +import type { DescribeLocationFsxOntapRequest, DescribeLocationFsxOntapResponse } from "../models/models_0"; import { DescribeLocationFsxOntap } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationFsxOpenZfsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationFsxOpenZfsCommand.ts index 033fd70ba19cc..da358ede4e56a 100644 --- a/clients/client-datasync/src/commands/DescribeLocationFsxOpenZfsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationFsxOpenZfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationFsxOpenZfsRequest, DescribeLocationFsxOpenZfsResponse } from "../models/models_0"; +import type { DescribeLocationFsxOpenZfsRequest, DescribeLocationFsxOpenZfsResponse } from "../models/models_0"; import { DescribeLocationFsxOpenZfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationFsxWindowsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationFsxWindowsCommand.ts index 6bc47adbf600a..2053eb6bc8dc8 100644 --- a/clients/client-datasync/src/commands/DescribeLocationFsxWindowsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationFsxWindowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationFsxWindowsRequest, DescribeLocationFsxWindowsResponse } from "../models/models_0"; +import type { DescribeLocationFsxWindowsRequest, DescribeLocationFsxWindowsResponse } from "../models/models_0"; import { DescribeLocationFsxWindows } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationHdfsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationHdfsCommand.ts index ed74f03ba839f..a23e399475363 100644 --- a/clients/client-datasync/src/commands/DescribeLocationHdfsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationHdfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationHdfsRequest, DescribeLocationHdfsResponse } from "../models/models_0"; +import type { DescribeLocationHdfsRequest, DescribeLocationHdfsResponse } from "../models/models_0"; import { DescribeLocationHdfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationNfsCommand.ts b/clients/client-datasync/src/commands/DescribeLocationNfsCommand.ts index 4cd98c6eec8db..e7ab249984831 100644 --- a/clients/client-datasync/src/commands/DescribeLocationNfsCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationNfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationNfsRequest, DescribeLocationNfsResponse } from "../models/models_0"; +import type { DescribeLocationNfsRequest, DescribeLocationNfsResponse } from "../models/models_0"; import { DescribeLocationNfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationObjectStorageCommand.ts b/clients/client-datasync/src/commands/DescribeLocationObjectStorageCommand.ts index 522947b7e284f..e42309f4cfcaa 100644 --- a/clients/client-datasync/src/commands/DescribeLocationObjectStorageCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationObjectStorageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationObjectStorageRequest, DescribeLocationObjectStorageResponse } from "../models/models_0"; +import type { DescribeLocationObjectStorageRequest, DescribeLocationObjectStorageResponse } from "../models/models_0"; import { DescribeLocationObjectStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationS3Command.ts b/clients/client-datasync/src/commands/DescribeLocationS3Command.ts index bc113296e55b9..2832498580a79 100644 --- a/clients/client-datasync/src/commands/DescribeLocationS3Command.ts +++ b/clients/client-datasync/src/commands/DescribeLocationS3Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationS3Request, DescribeLocationS3Response } from "../models/models_0"; +import type { DescribeLocationS3Request, DescribeLocationS3Response } from "../models/models_0"; import { DescribeLocationS3 } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeLocationSmbCommand.ts b/clients/client-datasync/src/commands/DescribeLocationSmbCommand.ts index 7a62df738a95b..b1627eeaf9531 100644 --- a/clients/client-datasync/src/commands/DescribeLocationSmbCommand.ts +++ b/clients/client-datasync/src/commands/DescribeLocationSmbCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocationSmbRequest, DescribeLocationSmbResponse } from "../models/models_0"; +import type { DescribeLocationSmbRequest, DescribeLocationSmbResponse } from "../models/models_0"; import { DescribeLocationSmb } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeTaskCommand.ts b/clients/client-datasync/src/commands/DescribeTaskCommand.ts index cd89f00f8323f..23a85ff52c038 100644 --- a/clients/client-datasync/src/commands/DescribeTaskCommand.ts +++ b/clients/client-datasync/src/commands/DescribeTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTaskRequest, DescribeTaskResponse } from "../models/models_0"; +import type { DescribeTaskRequest, DescribeTaskResponse } from "../models/models_0"; import { DescribeTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/DescribeTaskExecutionCommand.ts b/clients/client-datasync/src/commands/DescribeTaskExecutionCommand.ts index 58d872036c47b..e37deeb76a3c6 100644 --- a/clients/client-datasync/src/commands/DescribeTaskExecutionCommand.ts +++ b/clients/client-datasync/src/commands/DescribeTaskExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTaskExecutionRequest, DescribeTaskExecutionResponse } from "../models/models_0"; +import type { DescribeTaskExecutionRequest, DescribeTaskExecutionResponse } from "../models/models_0"; import { DescribeTaskExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/ListAgentsCommand.ts b/clients/client-datasync/src/commands/ListAgentsCommand.ts index dd4a461306438..29db90f1c4216 100644 --- a/clients/client-datasync/src/commands/ListAgentsCommand.ts +++ b/clients/client-datasync/src/commands/ListAgentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgentsRequest, ListAgentsResponse } from "../models/models_0"; +import type { ListAgentsRequest, ListAgentsResponse } from "../models/models_0"; import { ListAgents } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/ListLocationsCommand.ts b/clients/client-datasync/src/commands/ListLocationsCommand.ts index 9aa60a23a829e..f0c8641ac44d1 100644 --- a/clients/client-datasync/src/commands/ListLocationsCommand.ts +++ b/clients/client-datasync/src/commands/ListLocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLocationsRequest, ListLocationsResponse } from "../models/models_0"; +import type { ListLocationsRequest, ListLocationsResponse } from "../models/models_0"; import { ListLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/ListTagsForResourceCommand.ts b/clients/client-datasync/src/commands/ListTagsForResourceCommand.ts index 54dfee928f395..4a6f86c51015d 100644 --- a/clients/client-datasync/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-datasync/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/ListTaskExecutionsCommand.ts b/clients/client-datasync/src/commands/ListTaskExecutionsCommand.ts index 7248d2130b168..f90fc148f81a3 100644 --- a/clients/client-datasync/src/commands/ListTaskExecutionsCommand.ts +++ b/clients/client-datasync/src/commands/ListTaskExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTaskExecutionsRequest, ListTaskExecutionsResponse } from "../models/models_0"; +import type { ListTaskExecutionsRequest, ListTaskExecutionsResponse } from "../models/models_0"; import { ListTaskExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/ListTasksCommand.ts b/clients/client-datasync/src/commands/ListTasksCommand.ts index b5b93a2bcc7e9..4b6f81285a274 100644 --- a/clients/client-datasync/src/commands/ListTasksCommand.ts +++ b/clients/client-datasync/src/commands/ListTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTasksRequest, ListTasksResponse } from "../models/models_0"; +import type { ListTasksRequest, ListTasksResponse } from "../models/models_0"; import { ListTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/StartTaskExecutionCommand.ts b/clients/client-datasync/src/commands/StartTaskExecutionCommand.ts index 4df1c65743a86..11d8e7187d2d3 100644 --- a/clients/client-datasync/src/commands/StartTaskExecutionCommand.ts +++ b/clients/client-datasync/src/commands/StartTaskExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTaskExecutionRequest, StartTaskExecutionResponse } from "../models/models_0"; +import type { StartTaskExecutionRequest, StartTaskExecutionResponse } from "../models/models_0"; import { StartTaskExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/TagResourceCommand.ts b/clients/client-datasync/src/commands/TagResourceCommand.ts index 46a54f80b823a..33156ed853f98 100644 --- a/clients/client-datasync/src/commands/TagResourceCommand.ts +++ b/clients/client-datasync/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UntagResourceCommand.ts b/clients/client-datasync/src/commands/UntagResourceCommand.ts index f03bda1392227..d8d47056a2542 100644 --- a/clients/client-datasync/src/commands/UntagResourceCommand.ts +++ b/clients/client-datasync/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateAgentCommand.ts b/clients/client-datasync/src/commands/UpdateAgentCommand.ts index f5ed4ff8ad465..2d6f838c611b5 100644 --- a/clients/client-datasync/src/commands/UpdateAgentCommand.ts +++ b/clients/client-datasync/src/commands/UpdateAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgentRequest, UpdateAgentResponse } from "../models/models_0"; +import type { UpdateAgentRequest, UpdateAgentResponse } from "../models/models_0"; import { UpdateAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationAzureBlobCommand.ts b/clients/client-datasync/src/commands/UpdateLocationAzureBlobCommand.ts index 55aeab16f5db7..ef4c4a1442450 100644 --- a/clients/client-datasync/src/commands/UpdateLocationAzureBlobCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationAzureBlobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationAzureBlobRequest, UpdateLocationAzureBlobResponse } from "../models/models_0"; +import type { UpdateLocationAzureBlobRequest, UpdateLocationAzureBlobResponse } from "../models/models_0"; import { UpdateLocationAzureBlob } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationEfsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationEfsCommand.ts index 967ba59656b93..f7e6a4dd43316 100644 --- a/clients/client-datasync/src/commands/UpdateLocationEfsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationEfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationEfsRequest, UpdateLocationEfsResponse } from "../models/models_0"; +import type { UpdateLocationEfsRequest, UpdateLocationEfsResponse } from "../models/models_0"; import { UpdateLocationEfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationFsxLustreCommand.ts b/clients/client-datasync/src/commands/UpdateLocationFsxLustreCommand.ts index 55b897b0315f0..82fd4b6d82214 100644 --- a/clients/client-datasync/src/commands/UpdateLocationFsxLustreCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationFsxLustreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationFsxLustreRequest, UpdateLocationFsxLustreResponse } from "../models/models_0"; +import type { UpdateLocationFsxLustreRequest, UpdateLocationFsxLustreResponse } from "../models/models_0"; import { UpdateLocationFsxLustre } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationFsxOntapCommand.ts b/clients/client-datasync/src/commands/UpdateLocationFsxOntapCommand.ts index 2e0e76c3f3bfb..6ee9e3cf85899 100644 --- a/clients/client-datasync/src/commands/UpdateLocationFsxOntapCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationFsxOntapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationFsxOntapRequest, UpdateLocationFsxOntapResponse } from "../models/models_0"; +import type { UpdateLocationFsxOntapRequest, UpdateLocationFsxOntapResponse } from "../models/models_0"; import { UpdateLocationFsxOntap } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationFsxOpenZfsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationFsxOpenZfsCommand.ts index e2dbbaae9e6e2..b52ec9ad36ae2 100644 --- a/clients/client-datasync/src/commands/UpdateLocationFsxOpenZfsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationFsxOpenZfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationFsxOpenZfsRequest, UpdateLocationFsxOpenZfsResponse } from "../models/models_0"; +import type { UpdateLocationFsxOpenZfsRequest, UpdateLocationFsxOpenZfsResponse } from "../models/models_0"; import { UpdateLocationFsxOpenZfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationFsxWindowsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationFsxWindowsCommand.ts index 00cbc400eddf2..3cfba45c9ee50 100644 --- a/clients/client-datasync/src/commands/UpdateLocationFsxWindowsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationFsxWindowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationFsxWindowsRequest, UpdateLocationFsxWindowsResponse } from "../models/models_0"; +import type { UpdateLocationFsxWindowsRequest, UpdateLocationFsxWindowsResponse } from "../models/models_0"; import { UpdateLocationFsxWindows } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationHdfsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationHdfsCommand.ts index 2c75329b09066..821e59a471cc3 100644 --- a/clients/client-datasync/src/commands/UpdateLocationHdfsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationHdfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationHdfsRequest, UpdateLocationHdfsResponse } from "../models/models_0"; +import type { UpdateLocationHdfsRequest, UpdateLocationHdfsResponse } from "../models/models_0"; import { UpdateLocationHdfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationNfsCommand.ts b/clients/client-datasync/src/commands/UpdateLocationNfsCommand.ts index b2e8eaf238956..6b075bab1f457 100644 --- a/clients/client-datasync/src/commands/UpdateLocationNfsCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationNfsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationNfsRequest, UpdateLocationNfsResponse } from "../models/models_0"; +import type { UpdateLocationNfsRequest, UpdateLocationNfsResponse } from "../models/models_0"; import { UpdateLocationNfs } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationObjectStorageCommand.ts b/clients/client-datasync/src/commands/UpdateLocationObjectStorageCommand.ts index cce501c639b57..6daeca34dc4b2 100644 --- a/clients/client-datasync/src/commands/UpdateLocationObjectStorageCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationObjectStorageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationObjectStorageRequest, UpdateLocationObjectStorageResponse } from "../models/models_0"; +import type { UpdateLocationObjectStorageRequest, UpdateLocationObjectStorageResponse } from "../models/models_0"; import { UpdateLocationObjectStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationS3Command.ts b/clients/client-datasync/src/commands/UpdateLocationS3Command.ts index a926361afbdd1..fae47ba9993e0 100644 --- a/clients/client-datasync/src/commands/UpdateLocationS3Command.ts +++ b/clients/client-datasync/src/commands/UpdateLocationS3Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationS3Request, UpdateLocationS3Response } from "../models/models_0"; +import type { UpdateLocationS3Request, UpdateLocationS3Response } from "../models/models_0"; import { UpdateLocationS3 } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateLocationSmbCommand.ts b/clients/client-datasync/src/commands/UpdateLocationSmbCommand.ts index b83a7c5ade96c..5a90a414865a4 100644 --- a/clients/client-datasync/src/commands/UpdateLocationSmbCommand.ts +++ b/clients/client-datasync/src/commands/UpdateLocationSmbCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLocationSmbRequest, UpdateLocationSmbResponse } from "../models/models_0"; +import type { UpdateLocationSmbRequest, UpdateLocationSmbResponse } from "../models/models_0"; import { UpdateLocationSmb } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateTaskCommand.ts b/clients/client-datasync/src/commands/UpdateTaskCommand.ts index 6508b86508676..6d708a619ac5b 100644 --- a/clients/client-datasync/src/commands/UpdateTaskCommand.ts +++ b/clients/client-datasync/src/commands/UpdateTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTaskRequest, UpdateTaskResponse } from "../models/models_0"; +import type { UpdateTaskRequest, UpdateTaskResponse } from "../models/models_0"; import { UpdateTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/commands/UpdateTaskExecutionCommand.ts b/clients/client-datasync/src/commands/UpdateTaskExecutionCommand.ts index bb411c58e58a1..f098f98a1a808 100644 --- a/clients/client-datasync/src/commands/UpdateTaskExecutionCommand.ts +++ b/clients/client-datasync/src/commands/UpdateTaskExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; +import type { DataSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataSyncClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTaskExecutionRequest, UpdateTaskExecutionResponse } from "../models/models_0"; +import type { UpdateTaskExecutionRequest, UpdateTaskExecutionResponse } from "../models/models_0"; import { UpdateTaskExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-datasync/src/endpoint/EndpointParameters.ts b/clients/client-datasync/src/endpoint/EndpointParameters.ts index 50d37239ecc48..6cf110fe8e282 100644 --- a/clients/client-datasync/src/endpoint/EndpointParameters.ts +++ b/clients/client-datasync/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-datasync/src/endpoint/endpointResolver.ts b/clients/client-datasync/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-datasync/src/endpoint/endpointResolver.ts +++ b/clients/client-datasync/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-datasync/src/extensionConfiguration.ts b/clients/client-datasync/src/extensionConfiguration.ts index e9014cc688a34..a25516bfc3057 100644 --- a/clients/client-datasync/src/extensionConfiguration.ts +++ b/clients/client-datasync/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-datasync/src/models/DataSyncServiceException.ts b/clients/client-datasync/src/models/DataSyncServiceException.ts index 3fca035386f99..d58935e37d7df 100644 --- a/clients/client-datasync/src/models/DataSyncServiceException.ts +++ b/clients/client-datasync/src/models/DataSyncServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-datasync/src/models/errors.ts b/clients/client-datasync/src/models/errors.ts index cc04fa7f180fb..e855d529edbfb 100644 --- a/clients/client-datasync/src/models/errors.ts +++ b/clients/client-datasync/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DataSyncServiceException as __BaseException } from "./DataSyncServiceException"; diff --git a/clients/client-datasync/src/pagination/Interfaces.ts b/clients/client-datasync/src/pagination/Interfaces.ts index 22ef7bac5a532..43cac4c143f47 100644 --- a/clients/client-datasync/src/pagination/Interfaces.ts +++ b/clients/client-datasync/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DataSyncClient } from "../DataSyncClient"; diff --git a/clients/client-datasync/src/pagination/ListAgentsPaginator.ts b/clients/client-datasync/src/pagination/ListAgentsPaginator.ts index 2347fa8f6af2c..d297e14c18f04 100644 --- a/clients/client-datasync/src/pagination/ListAgentsPaginator.ts +++ b/clients/client-datasync/src/pagination/ListAgentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAgentsCommand, ListAgentsCommandInput, ListAgentsCommandOutput } from "../commands/ListAgentsCommand"; import { DataSyncClient } from "../DataSyncClient"; diff --git a/clients/client-datasync/src/pagination/ListLocationsPaginator.ts b/clients/client-datasync/src/pagination/ListLocationsPaginator.ts index f5d95cb3cfe54..010e799821dc4 100644 --- a/clients/client-datasync/src/pagination/ListLocationsPaginator.ts +++ b/clients/client-datasync/src/pagination/ListLocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLocationsCommand, diff --git a/clients/client-datasync/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-datasync/src/pagination/ListTagsForResourcePaginator.ts index fb2174a451109..ee522c8432cdd 100644 --- a/clients/client-datasync/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-datasync/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-datasync/src/pagination/ListTaskExecutionsPaginator.ts b/clients/client-datasync/src/pagination/ListTaskExecutionsPaginator.ts index c91adaaedc5e2..a7cef15f27376 100644 --- a/clients/client-datasync/src/pagination/ListTaskExecutionsPaginator.ts +++ b/clients/client-datasync/src/pagination/ListTaskExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTaskExecutionsCommand, diff --git a/clients/client-datasync/src/pagination/ListTasksPaginator.ts b/clients/client-datasync/src/pagination/ListTasksPaginator.ts index 74138e292bf64..6bb7531efafa5 100644 --- a/clients/client-datasync/src/pagination/ListTasksPaginator.ts +++ b/clients/client-datasync/src/pagination/ListTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTasksCommand, ListTasksCommandInput, ListTasksCommandOutput } from "../commands/ListTasksCommand"; import { DataSyncClient } from "../DataSyncClient"; diff --git a/clients/client-datasync/src/runtimeConfig.browser.ts b/clients/client-datasync/src/runtimeConfig.browser.ts index c8a9783a02174..64f652f6b922c 100644 --- a/clients/client-datasync/src/runtimeConfig.browser.ts +++ b/clients/client-datasync/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataSyncClientConfig } from "./DataSyncClient"; + +import type { DataSyncClientConfig } from "./DataSyncClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-datasync/src/runtimeConfig.native.ts b/clients/client-datasync/src/runtimeConfig.native.ts index 002376347a3f3..bfb9e73c0e3b9 100644 --- a/clients/client-datasync/src/runtimeConfig.native.ts +++ b/clients/client-datasync/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DataSyncClientConfig } from "./DataSyncClient"; +import type { DataSyncClientConfig } from "./DataSyncClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-datasync/src/runtimeConfig.shared.ts b/clients/client-datasync/src/runtimeConfig.shared.ts index 1c2ad7135dd70..7a80f12b62b7b 100644 --- a/clients/client-datasync/src/runtimeConfig.shared.ts +++ b/clients/client-datasync/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDataSyncHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DataSyncClientConfig } from "./DataSyncClient"; +import type { DataSyncClientConfig } from "./DataSyncClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-datasync/src/runtimeConfig.ts b/clients/client-datasync/src/runtimeConfig.ts index 8ed6337d51bce..61fcc98f57669 100644 --- a/clients/client-datasync/src/runtimeConfig.ts +++ b/clients/client-datasync/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataSyncClientConfig } from "./DataSyncClient"; + +import type { DataSyncClientConfig } from "./DataSyncClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-datasync/src/runtimeExtensions.ts b/clients/client-datasync/src/runtimeExtensions.ts index 4144e40a624a9..6b640ce04d559 100644 --- a/clients/client-datasync/src/runtimeExtensions.ts +++ b/clients/client-datasync/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DataSyncExtensionConfiguration } from "./extensionConfiguration"; +import type { DataSyncExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-datasync/src/schemas/schemas_0.ts b/clients/client-datasync/src/schemas/schemas_0.ts index d63a213848dd8..a8a0347b191d6 100644 --- a/clients/client-datasync/src/schemas/schemas_0.ts +++ b/clients/client-datasync/src/schemas/schemas_0.ts @@ -382,7 +382,7 @@ const n0 = "com.amazonaws.datasync"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-datazone/package.json b/clients/client-datazone/package.json index fb87ffb0f3ee2..2b99a6986ca20 100644 --- a/clients/client-datazone/package.json +++ b/clients/client-datazone/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-datazone/src/DataZone.ts b/clients/client-datazone/src/DataZone.ts index a5b7724d7e565..506c8822846ac 100644 --- a/clients/client-datazone/src/DataZone.ts +++ b/clients/client-datazone/src/DataZone.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptPredictionsCommand, @@ -786,7 +786,7 @@ import { UpdateUserProfileCommandInput, UpdateUserProfileCommandOutput, } from "./commands/UpdateUserProfileCommand"; -import { DataZoneClient, DataZoneClientConfig } from "./DataZoneClient"; +import { DataZoneClient } from "./DataZoneClient"; const commands = { AcceptPredictionsCommand, diff --git a/clients/client-datazone/src/DataZoneClient.ts b/clients/client-datazone/src/DataZoneClient.ts index e736c13952fc2..2347de84c2a1f 100644 --- a/clients/client-datazone/src/DataZoneClient.ts +++ b/clients/client-datazone/src/DataZoneClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDataZoneHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptPredictionsCommandInput, AcceptPredictionsCommandOutput } from "./commands/AcceptPredictionsCommand"; @@ -446,7 +455,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-datazone/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-datazone/src/auth/httpAuthExtensionConfiguration.ts index 18cc2198f1cb5..f63a570ec3cde 100644 --- a/clients/client-datazone/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-datazone/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DataZoneHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DataZoneHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-datazone/src/auth/httpAuthSchemeProvider.ts b/clients/client-datazone/src/auth/httpAuthSchemeProvider.ts index 2f14d0f1f4254..935c5590c673c 100644 --- a/clients/client-datazone/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-datazone/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DataZoneClientConfig, DataZoneClientResolvedConfig } from "../DataZoneClient"; +import { type DataZoneClientResolvedConfig, DataZoneClientConfig } from "../DataZoneClient"; /** * @internal diff --git a/clients/client-datazone/src/commands/AcceptPredictionsCommand.ts b/clients/client-datazone/src/commands/AcceptPredictionsCommand.ts index 92fbc610cd279..7a33184c7449d 100644 --- a/clients/client-datazone/src/commands/AcceptPredictionsCommand.ts +++ b/clients/client-datazone/src/commands/AcceptPredictionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptPredictionsInput, AcceptPredictionsOutput } from "../models/models_0"; +import type { AcceptPredictionsInput, AcceptPredictionsOutput } from "../models/models_0"; import { AcceptPredictions } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/AcceptSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/AcceptSubscriptionRequestCommand.ts index 1716495022710..1c037452db6a5 100644 --- a/clients/client-datazone/src/commands/AcceptSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/AcceptSubscriptionRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptSubscriptionRequestInput, AcceptSubscriptionRequestOutput } from "../models/models_0"; +import type { AcceptSubscriptionRequestInput, AcceptSubscriptionRequestOutput } from "../models/models_0"; import { AcceptSubscriptionRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/AddEntityOwnerCommand.ts b/clients/client-datazone/src/commands/AddEntityOwnerCommand.ts index fd4c0f1e644bd..9c28be71bd098 100644 --- a/clients/client-datazone/src/commands/AddEntityOwnerCommand.ts +++ b/clients/client-datazone/src/commands/AddEntityOwnerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddEntityOwnerInput, AddEntityOwnerOutput } from "../models/models_0"; +import type { AddEntityOwnerInput, AddEntityOwnerOutput } from "../models/models_0"; import { AddEntityOwner } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/AddPolicyGrantCommand.ts b/clients/client-datazone/src/commands/AddPolicyGrantCommand.ts index 3ceeab3d5398a..8e9d06fa455c9 100644 --- a/clients/client-datazone/src/commands/AddPolicyGrantCommand.ts +++ b/clients/client-datazone/src/commands/AddPolicyGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddPolicyGrantInput, AddPolicyGrantOutput } from "../models/models_0"; +import type { AddPolicyGrantInput, AddPolicyGrantOutput } from "../models/models_0"; import { AddPolicyGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/AssociateEnvironmentRoleCommand.ts b/clients/client-datazone/src/commands/AssociateEnvironmentRoleCommand.ts index 882cfcb8fce68..4facde3c4fb6f 100644 --- a/clients/client-datazone/src/commands/AssociateEnvironmentRoleCommand.ts +++ b/clients/client-datazone/src/commands/AssociateEnvironmentRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateEnvironmentRoleInput, AssociateEnvironmentRoleOutput } from "../models/models_0"; +import type { AssociateEnvironmentRoleInput, AssociateEnvironmentRoleOutput } from "../models/models_0"; import { AssociateEnvironmentRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/AssociateGovernedTermsCommand.ts b/clients/client-datazone/src/commands/AssociateGovernedTermsCommand.ts index 1ca4e19a38502..4e829b5db7c24 100644 --- a/clients/client-datazone/src/commands/AssociateGovernedTermsCommand.ts +++ b/clients/client-datazone/src/commands/AssociateGovernedTermsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateGovernedTermsInput, AssociateGovernedTermsOutput } from "../models/models_0"; +import type { AssociateGovernedTermsInput, AssociateGovernedTermsOutput } from "../models/models_0"; import { AssociateGovernedTerms } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/BatchGetAttributesMetadataCommand.ts b/clients/client-datazone/src/commands/BatchGetAttributesMetadataCommand.ts index fcb68a19f3616..b5ee955868c0d 100644 --- a/clients/client-datazone/src/commands/BatchGetAttributesMetadataCommand.ts +++ b/clients/client-datazone/src/commands/BatchGetAttributesMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetAttributesMetadataInput, BatchGetAttributesMetadataOutput } from "../models/models_0"; +import type { BatchGetAttributesMetadataInput, BatchGetAttributesMetadataOutput } from "../models/models_0"; import { BatchGetAttributesMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/BatchPutAttributesMetadataCommand.ts b/clients/client-datazone/src/commands/BatchPutAttributesMetadataCommand.ts index 805bf7f9c5bbc..9b6e0513486a6 100644 --- a/clients/client-datazone/src/commands/BatchPutAttributesMetadataCommand.ts +++ b/clients/client-datazone/src/commands/BatchPutAttributesMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchPutAttributesMetadataInput, BatchPutAttributesMetadataOutput } from "../models/models_0"; +import type { BatchPutAttributesMetadataInput, BatchPutAttributesMetadataOutput } from "../models/models_0"; import { BatchPutAttributesMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CancelMetadataGenerationRunCommand.ts b/clients/client-datazone/src/commands/CancelMetadataGenerationRunCommand.ts index 57df0c58f3709..700ad06e8c457 100644 --- a/clients/client-datazone/src/commands/CancelMetadataGenerationRunCommand.ts +++ b/clients/client-datazone/src/commands/CancelMetadataGenerationRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMetadataGenerationRunInput, CancelMetadataGenerationRunOutput } from "../models/models_0"; +import type { CancelMetadataGenerationRunInput, CancelMetadataGenerationRunOutput } from "../models/models_0"; import { CancelMetadataGenerationRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CancelSubscriptionCommand.ts b/clients/client-datazone/src/commands/CancelSubscriptionCommand.ts index 4f9506bfaa50c..367942ab0a264 100644 --- a/clients/client-datazone/src/commands/CancelSubscriptionCommand.ts +++ b/clients/client-datazone/src/commands/CancelSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelSubscriptionInput, CancelSubscriptionOutput } from "../models/models_0"; +import type { CancelSubscriptionInput, CancelSubscriptionOutput } from "../models/models_0"; import { CancelSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateAccountPoolCommand.ts b/clients/client-datazone/src/commands/CreateAccountPoolCommand.ts index 0070f64071476..1d2a82cb11ec9 100644 --- a/clients/client-datazone/src/commands/CreateAccountPoolCommand.ts +++ b/clients/client-datazone/src/commands/CreateAccountPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccountPoolInput, CreateAccountPoolOutput } from "../models/models_0"; +import type { CreateAccountPoolInput, CreateAccountPoolOutput } from "../models/models_0"; import { CreateAccountPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateAssetCommand.ts b/clients/client-datazone/src/commands/CreateAssetCommand.ts index fd6c84bc527e4..fd52188bb2f1d 100644 --- a/clients/client-datazone/src/commands/CreateAssetCommand.ts +++ b/clients/client-datazone/src/commands/CreateAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssetInput, CreateAssetOutput } from "../models/models_0"; +import type { CreateAssetInput, CreateAssetOutput } from "../models/models_0"; import { CreateAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateAssetFilterCommand.ts b/clients/client-datazone/src/commands/CreateAssetFilterCommand.ts index e235909a63344..d2a222fa2aa2c 100644 --- a/clients/client-datazone/src/commands/CreateAssetFilterCommand.ts +++ b/clients/client-datazone/src/commands/CreateAssetFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssetFilterInput, CreateAssetFilterOutput } from "../models/models_2"; +import type { CreateAssetFilterInput, CreateAssetFilterOutput } from "../models/models_2"; import { CreateAssetFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateAssetRevisionCommand.ts b/clients/client-datazone/src/commands/CreateAssetRevisionCommand.ts index fa61f0bc4ac4c..46ee8e9ad5705 100644 --- a/clients/client-datazone/src/commands/CreateAssetRevisionCommand.ts +++ b/clients/client-datazone/src/commands/CreateAssetRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssetRevisionInput, CreateAssetRevisionOutput } from "../models/models_0"; +import type { CreateAssetRevisionInput, CreateAssetRevisionOutput } from "../models/models_0"; import { CreateAssetRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateAssetTypeCommand.ts b/clients/client-datazone/src/commands/CreateAssetTypeCommand.ts index 0bbc7ed77afde..b87afa7571552 100644 --- a/clients/client-datazone/src/commands/CreateAssetTypeCommand.ts +++ b/clients/client-datazone/src/commands/CreateAssetTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssetTypeInput, CreateAssetTypeOutput } from "../models/models_0"; +import type { CreateAssetTypeInput, CreateAssetTypeOutput } from "../models/models_0"; import { CreateAssetType } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateConnectionCommand.ts b/clients/client-datazone/src/commands/CreateConnectionCommand.ts index cd79ad7cc0822..335155665db7e 100644 --- a/clients/client-datazone/src/commands/CreateConnectionCommand.ts +++ b/clients/client-datazone/src/commands/CreateConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionInput, CreateConnectionOutput } from "../models/models_0"; +import type { CreateConnectionInput, CreateConnectionOutput } from "../models/models_0"; import { CreateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateDataProductCommand.ts b/clients/client-datazone/src/commands/CreateDataProductCommand.ts index b77eb4cd6a596..74199b0489f28 100644 --- a/clients/client-datazone/src/commands/CreateDataProductCommand.ts +++ b/clients/client-datazone/src/commands/CreateDataProductCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataProductInput, CreateDataProductOutput } from "../models/models_0"; +import type { CreateDataProductInput, CreateDataProductOutput } from "../models/models_0"; import { CreateDataProduct } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateDataProductRevisionCommand.ts b/clients/client-datazone/src/commands/CreateDataProductRevisionCommand.ts index 4d894ed3715b3..75cf9c7cfecd8 100644 --- a/clients/client-datazone/src/commands/CreateDataProductRevisionCommand.ts +++ b/clients/client-datazone/src/commands/CreateDataProductRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataProductRevisionInput, CreateDataProductRevisionOutput } from "../models/models_0"; +import type { CreateDataProductRevisionInput, CreateDataProductRevisionOutput } from "../models/models_0"; import { CreateDataProductRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateDataSourceCommand.ts b/clients/client-datazone/src/commands/CreateDataSourceCommand.ts index 90dd80029e759..a8a557f5f4928 100644 --- a/clients/client-datazone/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-datazone/src/commands/CreateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataSourceInput, CreateDataSourceOutput } from "../models/models_0"; +import type { CreateDataSourceInput, CreateDataSourceOutput } from "../models/models_0"; import { CreateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateDomainCommand.ts b/clients/client-datazone/src/commands/CreateDomainCommand.ts index 6f8ebf05ef702..f270c8bcc085a 100644 --- a/clients/client-datazone/src/commands/CreateDomainCommand.ts +++ b/clients/client-datazone/src/commands/CreateDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainInput, CreateDomainOutput } from "../models/models_0"; +import type { CreateDomainInput, CreateDomainOutput } from "../models/models_0"; import { CreateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateDomainUnitCommand.ts b/clients/client-datazone/src/commands/CreateDomainUnitCommand.ts index 02be55d03ca81..8f4e5ad9a0bb5 100644 --- a/clients/client-datazone/src/commands/CreateDomainUnitCommand.ts +++ b/clients/client-datazone/src/commands/CreateDomainUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainUnitInput, CreateDomainUnitOutput } from "../models/models_0"; +import type { CreateDomainUnitInput, CreateDomainUnitOutput } from "../models/models_0"; import { CreateDomainUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateEnvironmentActionCommand.ts b/clients/client-datazone/src/commands/CreateEnvironmentActionCommand.ts index d8696c9b3f094..35f13d18f56b8 100644 --- a/clients/client-datazone/src/commands/CreateEnvironmentActionCommand.ts +++ b/clients/client-datazone/src/commands/CreateEnvironmentActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentActionInput, CreateEnvironmentActionOutput } from "../models/models_0"; +import type { CreateEnvironmentActionInput, CreateEnvironmentActionOutput } from "../models/models_0"; import { CreateEnvironmentAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateEnvironmentBlueprintCommand.ts b/clients/client-datazone/src/commands/CreateEnvironmentBlueprintCommand.ts index cbd3a901f8a42..24149831a9f6f 100644 --- a/clients/client-datazone/src/commands/CreateEnvironmentBlueprintCommand.ts +++ b/clients/client-datazone/src/commands/CreateEnvironmentBlueprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentBlueprintInput, CreateEnvironmentBlueprintOutput } from "../models/models_0"; +import type { CreateEnvironmentBlueprintInput, CreateEnvironmentBlueprintOutput } from "../models/models_0"; import { CreateEnvironmentBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateEnvironmentCommand.ts b/clients/client-datazone/src/commands/CreateEnvironmentCommand.ts index 36a7244ce55b1..892ffe39d83b0 100644 --- a/clients/client-datazone/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-datazone/src/commands/CreateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentInput, CreateEnvironmentOutput } from "../models/models_0"; +import type { CreateEnvironmentInput, CreateEnvironmentOutput } from "../models/models_0"; import { CreateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateEnvironmentProfileCommand.ts b/clients/client-datazone/src/commands/CreateEnvironmentProfileCommand.ts index 6bd35041e5b66..2bcbebc272c09 100644 --- a/clients/client-datazone/src/commands/CreateEnvironmentProfileCommand.ts +++ b/clients/client-datazone/src/commands/CreateEnvironmentProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentProfileInput, CreateEnvironmentProfileOutput } from "../models/models_0"; +import type { CreateEnvironmentProfileInput, CreateEnvironmentProfileOutput } from "../models/models_0"; import { CreateEnvironmentProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateFormTypeCommand.ts b/clients/client-datazone/src/commands/CreateFormTypeCommand.ts index fda7badd404dc..3b914a8e7c280 100644 --- a/clients/client-datazone/src/commands/CreateFormTypeCommand.ts +++ b/clients/client-datazone/src/commands/CreateFormTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFormTypeInput, CreateFormTypeOutput } from "../models/models_0"; +import type { CreateFormTypeInput, CreateFormTypeOutput } from "../models/models_0"; import { CreateFormType } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateGlossaryCommand.ts b/clients/client-datazone/src/commands/CreateGlossaryCommand.ts index 5950f505aaee6..cd56c2ce90ba0 100644 --- a/clients/client-datazone/src/commands/CreateGlossaryCommand.ts +++ b/clients/client-datazone/src/commands/CreateGlossaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGlossaryInput, CreateGlossaryOutput } from "../models/models_0"; +import type { CreateGlossaryInput, CreateGlossaryOutput } from "../models/models_0"; import { CreateGlossary } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateGlossaryTermCommand.ts b/clients/client-datazone/src/commands/CreateGlossaryTermCommand.ts index 220d998cf0200..fb12689e45744 100644 --- a/clients/client-datazone/src/commands/CreateGlossaryTermCommand.ts +++ b/clients/client-datazone/src/commands/CreateGlossaryTermCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGlossaryTermInput, CreateGlossaryTermOutput } from "../models/models_0"; +import type { CreateGlossaryTermInput, CreateGlossaryTermOutput } from "../models/models_0"; import { CreateGlossaryTerm } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateGroupProfileCommand.ts b/clients/client-datazone/src/commands/CreateGroupProfileCommand.ts index 7bf26179acb6d..ed21d1fd4ee04 100644 --- a/clients/client-datazone/src/commands/CreateGroupProfileCommand.ts +++ b/clients/client-datazone/src/commands/CreateGroupProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGroupProfileInput, CreateGroupProfileOutput } from "../models/models_0"; +import type { CreateGroupProfileInput, CreateGroupProfileOutput } from "../models/models_0"; import { CreateGroupProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateListingChangeSetCommand.ts b/clients/client-datazone/src/commands/CreateListingChangeSetCommand.ts index 3c212e1869dd4..73278b80852fe 100644 --- a/clients/client-datazone/src/commands/CreateListingChangeSetCommand.ts +++ b/clients/client-datazone/src/commands/CreateListingChangeSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateListingChangeSetInput, CreateListingChangeSetOutput } from "../models/models_0"; +import type { CreateListingChangeSetInput, CreateListingChangeSetOutput } from "../models/models_0"; import { CreateListingChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateProjectCommand.ts b/clients/client-datazone/src/commands/CreateProjectCommand.ts index 13c179c31af1c..49c113c0fdb7d 100644 --- a/clients/client-datazone/src/commands/CreateProjectCommand.ts +++ b/clients/client-datazone/src/commands/CreateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectInput, CreateProjectOutput } from "../models/models_0"; +import type { CreateProjectInput, CreateProjectOutput } from "../models/models_0"; import { CreateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateProjectMembershipCommand.ts b/clients/client-datazone/src/commands/CreateProjectMembershipCommand.ts index 5252f8ee172ad..79f0b6ac21167 100644 --- a/clients/client-datazone/src/commands/CreateProjectMembershipCommand.ts +++ b/clients/client-datazone/src/commands/CreateProjectMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectMembershipInput, CreateProjectMembershipOutput } from "../models/models_0"; +import type { CreateProjectMembershipInput, CreateProjectMembershipOutput } from "../models/models_0"; import { CreateProjectMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateProjectProfileCommand.ts b/clients/client-datazone/src/commands/CreateProjectProfileCommand.ts index 24581d54192e7..2533018a39a08 100644 --- a/clients/client-datazone/src/commands/CreateProjectProfileCommand.ts +++ b/clients/client-datazone/src/commands/CreateProjectProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectProfileInput, CreateProjectProfileOutput } from "../models/models_0"; +import type { CreateProjectProfileInput, CreateProjectProfileOutput } from "../models/models_0"; import { CreateProjectProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateRuleCommand.ts b/clients/client-datazone/src/commands/CreateRuleCommand.ts index 87fa87f7ba3e4..81f3a68791b93 100644 --- a/clients/client-datazone/src/commands/CreateRuleCommand.ts +++ b/clients/client-datazone/src/commands/CreateRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleInput, CreateRuleOutput } from "../models/models_0"; +import type { CreateRuleInput, CreateRuleOutput } from "../models/models_0"; import { CreateRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateSubscriptionGrantCommand.ts b/clients/client-datazone/src/commands/CreateSubscriptionGrantCommand.ts index c247a2e88a31f..223d68a369883 100644 --- a/clients/client-datazone/src/commands/CreateSubscriptionGrantCommand.ts +++ b/clients/client-datazone/src/commands/CreateSubscriptionGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubscriptionGrantInput, CreateSubscriptionGrantOutput } from "../models/models_0"; +import type { CreateSubscriptionGrantInput, CreateSubscriptionGrantOutput } from "../models/models_0"; import { CreateSubscriptionGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/CreateSubscriptionRequestCommand.ts index 3c85786ccf681..da616dce17f0e 100644 --- a/clients/client-datazone/src/commands/CreateSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/CreateSubscriptionRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubscriptionRequestInput, CreateSubscriptionRequestOutput } from "../models/models_0"; +import type { CreateSubscriptionRequestInput, CreateSubscriptionRequestOutput } from "../models/models_0"; import { CreateSubscriptionRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateSubscriptionTargetCommand.ts b/clients/client-datazone/src/commands/CreateSubscriptionTargetCommand.ts index 5d879359d7fc9..ca4657e80e96a 100644 --- a/clients/client-datazone/src/commands/CreateSubscriptionTargetCommand.ts +++ b/clients/client-datazone/src/commands/CreateSubscriptionTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubscriptionTargetInput, CreateSubscriptionTargetOutput } from "../models/models_0"; +import type { CreateSubscriptionTargetInput, CreateSubscriptionTargetOutput } from "../models/models_0"; import { CreateSubscriptionTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/CreateUserProfileCommand.ts b/clients/client-datazone/src/commands/CreateUserProfileCommand.ts index 3a8063a5058ba..e379928dcd6e8 100644 --- a/clients/client-datazone/src/commands/CreateUserProfileCommand.ts +++ b/clients/client-datazone/src/commands/CreateUserProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserProfileInput, CreateUserProfileOutput } from "../models/models_0"; +import type { CreateUserProfileInput, CreateUserProfileOutput } from "../models/models_0"; import { CreateUserProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteAccountPoolCommand.ts b/clients/client-datazone/src/commands/DeleteAccountPoolCommand.ts index 07db122111636..f93fde42a9bfe 100644 --- a/clients/client-datazone/src/commands/DeleteAccountPoolCommand.ts +++ b/clients/client-datazone/src/commands/DeleteAccountPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountPoolInput, DeleteAccountPoolOutput } from "../models/models_1"; +import type { DeleteAccountPoolInput, DeleteAccountPoolOutput } from "../models/models_1"; import { DeleteAccountPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteAssetCommand.ts b/clients/client-datazone/src/commands/DeleteAssetCommand.ts index 50f827c7c65cf..69c780574978e 100644 --- a/clients/client-datazone/src/commands/DeleteAssetCommand.ts +++ b/clients/client-datazone/src/commands/DeleteAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssetInput, DeleteAssetOutput } from "../models/models_0"; +import type { DeleteAssetInput, DeleteAssetOutput } from "../models/models_0"; import { DeleteAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteAssetFilterCommand.ts b/clients/client-datazone/src/commands/DeleteAssetFilterCommand.ts index 990b93e22f0f7..e50cb69b03e7d 100644 --- a/clients/client-datazone/src/commands/DeleteAssetFilterCommand.ts +++ b/clients/client-datazone/src/commands/DeleteAssetFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssetFilterInput } from "../models/models_1"; +import type { DeleteAssetFilterInput } from "../models/models_1"; import { DeleteAssetFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteAssetTypeCommand.ts b/clients/client-datazone/src/commands/DeleteAssetTypeCommand.ts index 13245e058e8d4..510d0bc56e2ea 100644 --- a/clients/client-datazone/src/commands/DeleteAssetTypeCommand.ts +++ b/clients/client-datazone/src/commands/DeleteAssetTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssetTypeInput, DeleteAssetTypeOutput } from "../models/models_0"; +import type { DeleteAssetTypeInput, DeleteAssetTypeOutput } from "../models/models_0"; import { DeleteAssetType } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteConnectionCommand.ts b/clients/client-datazone/src/commands/DeleteConnectionCommand.ts index ba260c79d5bb0..e44d89439429c 100644 --- a/clients/client-datazone/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-datazone/src/commands/DeleteConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionInput, DeleteConnectionOutput } from "../models/models_1"; +import type { DeleteConnectionInput, DeleteConnectionOutput } from "../models/models_1"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteDataProductCommand.ts b/clients/client-datazone/src/commands/DeleteDataProductCommand.ts index fbc21d8d091e0..2c37a80d29afa 100644 --- a/clients/client-datazone/src/commands/DeleteDataProductCommand.ts +++ b/clients/client-datazone/src/commands/DeleteDataProductCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataProductInput, DeleteDataProductOutput } from "../models/models_0"; +import type { DeleteDataProductInput, DeleteDataProductOutput } from "../models/models_0"; import { DeleteDataProduct } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteDataSourceCommand.ts b/clients/client-datazone/src/commands/DeleteDataSourceCommand.ts index dbab9ef8c8f16..042f877b204c6 100644 --- a/clients/client-datazone/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-datazone/src/commands/DeleteDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataSourceInput, DeleteDataSourceOutput } from "../models/models_1"; +import type { DeleteDataSourceInput, DeleteDataSourceOutput } from "../models/models_1"; import { DeleteDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteDomainCommand.ts b/clients/client-datazone/src/commands/DeleteDomainCommand.ts index a04beb138aa55..f7ef18df47e7e 100644 --- a/clients/client-datazone/src/commands/DeleteDomainCommand.ts +++ b/clients/client-datazone/src/commands/DeleteDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainInput, DeleteDomainOutput } from "../models/models_1"; +import type { DeleteDomainInput, DeleteDomainOutput } from "../models/models_1"; import { DeleteDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteDomainUnitCommand.ts b/clients/client-datazone/src/commands/DeleteDomainUnitCommand.ts index 7854cdc5d5e97..eb1b497eda7a3 100644 --- a/clients/client-datazone/src/commands/DeleteDomainUnitCommand.ts +++ b/clients/client-datazone/src/commands/DeleteDomainUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainUnitInput, DeleteDomainUnitOutput } from "../models/models_1"; +import type { DeleteDomainUnitInput, DeleteDomainUnitOutput } from "../models/models_1"; import { DeleteDomainUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteEnvironmentActionCommand.ts b/clients/client-datazone/src/commands/DeleteEnvironmentActionCommand.ts index b7daeaa4f2b2c..62e7e0b9a54ef 100644 --- a/clients/client-datazone/src/commands/DeleteEnvironmentActionCommand.ts +++ b/clients/client-datazone/src/commands/DeleteEnvironmentActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentActionInput } from "../models/models_1"; +import type { DeleteEnvironmentActionInput } from "../models/models_1"; import { DeleteEnvironmentAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintCommand.ts b/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintCommand.ts index 32ef246f3c54e..5b1f889724db4 100644 --- a/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintCommand.ts +++ b/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentBlueprintInput } from "../models/models_1"; +import type { DeleteEnvironmentBlueprintInput } from "../models/models_1"; import { DeleteEnvironmentBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintConfigurationCommand.ts b/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintConfigurationCommand.ts index e3cea6e7ec8b4..8c01c3f70b4bf 100644 --- a/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintConfigurationCommand.ts +++ b/clients/client-datazone/src/commands/DeleteEnvironmentBlueprintConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteEnvironmentBlueprintConfigurationInput, DeleteEnvironmentBlueprintConfigurationOutput, } from "../models/models_1"; diff --git a/clients/client-datazone/src/commands/DeleteEnvironmentCommand.ts b/clients/client-datazone/src/commands/DeleteEnvironmentCommand.ts index 92da42558f65d..4dcffd93622a9 100644 --- a/clients/client-datazone/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-datazone/src/commands/DeleteEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentInput } from "../models/models_1"; +import type { DeleteEnvironmentInput } from "../models/models_1"; import { DeleteEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteEnvironmentProfileCommand.ts b/clients/client-datazone/src/commands/DeleteEnvironmentProfileCommand.ts index 4bc2d897773b0..0af70e009addf 100644 --- a/clients/client-datazone/src/commands/DeleteEnvironmentProfileCommand.ts +++ b/clients/client-datazone/src/commands/DeleteEnvironmentProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentProfileInput } from "../models/models_1"; +import type { DeleteEnvironmentProfileInput } from "../models/models_1"; import { DeleteEnvironmentProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteFormTypeCommand.ts b/clients/client-datazone/src/commands/DeleteFormTypeCommand.ts index 37f5c55281dc1..284f457c31073 100644 --- a/clients/client-datazone/src/commands/DeleteFormTypeCommand.ts +++ b/clients/client-datazone/src/commands/DeleteFormTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFormTypeInput, DeleteFormTypeOutput } from "../models/models_1"; +import type { DeleteFormTypeInput, DeleteFormTypeOutput } from "../models/models_1"; import { DeleteFormType } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteGlossaryCommand.ts b/clients/client-datazone/src/commands/DeleteGlossaryCommand.ts index 838841cfed64b..1be97c3e9a5e2 100644 --- a/clients/client-datazone/src/commands/DeleteGlossaryCommand.ts +++ b/clients/client-datazone/src/commands/DeleteGlossaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGlossaryInput, DeleteGlossaryOutput } from "../models/models_1"; +import type { DeleteGlossaryInput, DeleteGlossaryOutput } from "../models/models_1"; import { DeleteGlossary } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteGlossaryTermCommand.ts b/clients/client-datazone/src/commands/DeleteGlossaryTermCommand.ts index ea02e827c9b0a..d8955574ed91f 100644 --- a/clients/client-datazone/src/commands/DeleteGlossaryTermCommand.ts +++ b/clients/client-datazone/src/commands/DeleteGlossaryTermCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGlossaryTermInput, DeleteGlossaryTermOutput } from "../models/models_1"; +import type { DeleteGlossaryTermInput, DeleteGlossaryTermOutput } from "../models/models_1"; import { DeleteGlossaryTerm } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteListingCommand.ts b/clients/client-datazone/src/commands/DeleteListingCommand.ts index 3d6da79413bc9..1b7d73f776bd1 100644 --- a/clients/client-datazone/src/commands/DeleteListingCommand.ts +++ b/clients/client-datazone/src/commands/DeleteListingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteListingInput, DeleteListingOutput } from "../models/models_1"; +import type { DeleteListingInput, DeleteListingOutput } from "../models/models_1"; import { DeleteListing } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteProjectCommand.ts b/clients/client-datazone/src/commands/DeleteProjectCommand.ts index 6e2ef7780a84a..536402335da4b 100644 --- a/clients/client-datazone/src/commands/DeleteProjectCommand.ts +++ b/clients/client-datazone/src/commands/DeleteProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectInput, DeleteProjectOutput } from "../models/models_1"; +import type { DeleteProjectInput, DeleteProjectOutput } from "../models/models_1"; import { DeleteProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteProjectMembershipCommand.ts b/clients/client-datazone/src/commands/DeleteProjectMembershipCommand.ts index 54c5532202f18..8b49641b640fd 100644 --- a/clients/client-datazone/src/commands/DeleteProjectMembershipCommand.ts +++ b/clients/client-datazone/src/commands/DeleteProjectMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectMembershipInput, DeleteProjectMembershipOutput } from "../models/models_1"; +import type { DeleteProjectMembershipInput, DeleteProjectMembershipOutput } from "../models/models_1"; import { DeleteProjectMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteProjectProfileCommand.ts b/clients/client-datazone/src/commands/DeleteProjectProfileCommand.ts index 86e2b14cc4090..935615f34734d 100644 --- a/clients/client-datazone/src/commands/DeleteProjectProfileCommand.ts +++ b/clients/client-datazone/src/commands/DeleteProjectProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectProfileInput, DeleteProjectProfileOutput } from "../models/models_1"; +import type { DeleteProjectProfileInput, DeleteProjectProfileOutput } from "../models/models_1"; import { DeleteProjectProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteRuleCommand.ts b/clients/client-datazone/src/commands/DeleteRuleCommand.ts index d87971576a3d3..c9838a54baeca 100644 --- a/clients/client-datazone/src/commands/DeleteRuleCommand.ts +++ b/clients/client-datazone/src/commands/DeleteRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleInput, DeleteRuleOutput } from "../models/models_1"; +import type { DeleteRuleInput, DeleteRuleOutput } from "../models/models_1"; import { DeleteRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteSubscriptionGrantCommand.ts b/clients/client-datazone/src/commands/DeleteSubscriptionGrantCommand.ts index 81b6c36e743c6..7b3bba3cb1134 100644 --- a/clients/client-datazone/src/commands/DeleteSubscriptionGrantCommand.ts +++ b/clients/client-datazone/src/commands/DeleteSubscriptionGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubscriptionGrantInput, DeleteSubscriptionGrantOutput } from "../models/models_1"; +import type { DeleteSubscriptionGrantInput, DeleteSubscriptionGrantOutput } from "../models/models_1"; import { DeleteSubscriptionGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/DeleteSubscriptionRequestCommand.ts index bd9673a3cc609..3af1a25a43094 100644 --- a/clients/client-datazone/src/commands/DeleteSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/DeleteSubscriptionRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubscriptionRequestInput } from "../models/models_1"; +import type { DeleteSubscriptionRequestInput } from "../models/models_1"; import { DeleteSubscriptionRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteSubscriptionTargetCommand.ts b/clients/client-datazone/src/commands/DeleteSubscriptionTargetCommand.ts index 0904e736fdc7a..d9cc4e20fb2cd 100644 --- a/clients/client-datazone/src/commands/DeleteSubscriptionTargetCommand.ts +++ b/clients/client-datazone/src/commands/DeleteSubscriptionTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubscriptionTargetInput } from "../models/models_1"; +import type { DeleteSubscriptionTargetInput } from "../models/models_1"; import { DeleteSubscriptionTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DeleteTimeSeriesDataPointsCommand.ts b/clients/client-datazone/src/commands/DeleteTimeSeriesDataPointsCommand.ts index 42367dce3a157..716d12534e2cc 100644 --- a/clients/client-datazone/src/commands/DeleteTimeSeriesDataPointsCommand.ts +++ b/clients/client-datazone/src/commands/DeleteTimeSeriesDataPointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTimeSeriesDataPointsInput, DeleteTimeSeriesDataPointsOutput } from "../models/models_1"; +import type { DeleteTimeSeriesDataPointsInput, DeleteTimeSeriesDataPointsOutput } from "../models/models_1"; import { DeleteTimeSeriesDataPoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DisassociateEnvironmentRoleCommand.ts b/clients/client-datazone/src/commands/DisassociateEnvironmentRoleCommand.ts index 4fee20fe34e46..85af93414dfe1 100644 --- a/clients/client-datazone/src/commands/DisassociateEnvironmentRoleCommand.ts +++ b/clients/client-datazone/src/commands/DisassociateEnvironmentRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateEnvironmentRoleInput, DisassociateEnvironmentRoleOutput } from "../models/models_1"; +import type { DisassociateEnvironmentRoleInput, DisassociateEnvironmentRoleOutput } from "../models/models_1"; import { DisassociateEnvironmentRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/DisassociateGovernedTermsCommand.ts b/clients/client-datazone/src/commands/DisassociateGovernedTermsCommand.ts index fd59c732d0a5e..b672ff393904b 100644 --- a/clients/client-datazone/src/commands/DisassociateGovernedTermsCommand.ts +++ b/clients/client-datazone/src/commands/DisassociateGovernedTermsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateGovernedTermsInput, DisassociateGovernedTermsOutput } from "../models/models_1"; +import type { DisassociateGovernedTermsInput, DisassociateGovernedTermsOutput } from "../models/models_1"; import { DisassociateGovernedTerms } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetAccountPoolCommand.ts b/clients/client-datazone/src/commands/GetAccountPoolCommand.ts index e718c2cfeae92..ea0822b3aab2e 100644 --- a/clients/client-datazone/src/commands/GetAccountPoolCommand.ts +++ b/clients/client-datazone/src/commands/GetAccountPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountPoolInput, GetAccountPoolOutput } from "../models/models_1"; +import type { GetAccountPoolInput, GetAccountPoolOutput } from "../models/models_1"; import { GetAccountPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetAssetCommand.ts b/clients/client-datazone/src/commands/GetAssetCommand.ts index 27fb33fbb944b..a16ac19b5ad3d 100644 --- a/clients/client-datazone/src/commands/GetAssetCommand.ts +++ b/clients/client-datazone/src/commands/GetAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssetInput, GetAssetOutput } from "../models/models_0"; +import type { GetAssetInput, GetAssetOutput } from "../models/models_0"; import { GetAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetAssetFilterCommand.ts b/clients/client-datazone/src/commands/GetAssetFilterCommand.ts index 2a5e4ba846bc6..1c23d207b793e 100644 --- a/clients/client-datazone/src/commands/GetAssetFilterCommand.ts +++ b/clients/client-datazone/src/commands/GetAssetFilterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssetFilterInput } from "../models/models_1"; -import { GetAssetFilterOutput } from "../models/models_2"; +import type { GetAssetFilterInput } from "../models/models_1"; +import type { GetAssetFilterOutput } from "../models/models_2"; import { GetAssetFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetAssetTypeCommand.ts b/clients/client-datazone/src/commands/GetAssetTypeCommand.ts index 0e00f62af7c48..bf45106f9c38b 100644 --- a/clients/client-datazone/src/commands/GetAssetTypeCommand.ts +++ b/clients/client-datazone/src/commands/GetAssetTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssetTypeInput, GetAssetTypeOutput } from "../models/models_0"; +import type { GetAssetTypeInput, GetAssetTypeOutput } from "../models/models_0"; import { GetAssetType } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetConnectionCommand.ts b/clients/client-datazone/src/commands/GetConnectionCommand.ts index b848996d7181a..703770d77899a 100644 --- a/clients/client-datazone/src/commands/GetConnectionCommand.ts +++ b/clients/client-datazone/src/commands/GetConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionInput, GetConnectionOutput } from "../models/models_1"; +import type { GetConnectionInput, GetConnectionOutput } from "../models/models_1"; import { GetConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetDataProductCommand.ts b/clients/client-datazone/src/commands/GetDataProductCommand.ts index c5b6176124f8d..0b60fde8a7fd7 100644 --- a/clients/client-datazone/src/commands/GetDataProductCommand.ts +++ b/clients/client-datazone/src/commands/GetDataProductCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataProductInput, GetDataProductOutput } from "../models/models_0"; +import type { GetDataProductInput, GetDataProductOutput } from "../models/models_0"; import { GetDataProduct } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetDataSourceCommand.ts b/clients/client-datazone/src/commands/GetDataSourceCommand.ts index 222e3c65ccf99..64d01727fe8d2 100644 --- a/clients/client-datazone/src/commands/GetDataSourceCommand.ts +++ b/clients/client-datazone/src/commands/GetDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataSourceInput, GetDataSourceOutput } from "../models/models_1"; +import type { GetDataSourceInput, GetDataSourceOutput } from "../models/models_1"; import { GetDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetDataSourceRunCommand.ts b/clients/client-datazone/src/commands/GetDataSourceRunCommand.ts index 47dde2bd86f05..a2f605d710447 100644 --- a/clients/client-datazone/src/commands/GetDataSourceRunCommand.ts +++ b/clients/client-datazone/src/commands/GetDataSourceRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataSourceRunInput, GetDataSourceRunOutput } from "../models/models_1"; +import type { GetDataSourceRunInput, GetDataSourceRunOutput } from "../models/models_1"; import { GetDataSourceRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetDomainCommand.ts b/clients/client-datazone/src/commands/GetDomainCommand.ts index 09694d3a16c3b..08dfae0c3e569 100644 --- a/clients/client-datazone/src/commands/GetDomainCommand.ts +++ b/clients/client-datazone/src/commands/GetDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainInput, GetDomainOutput } from "../models/models_1"; +import type { GetDomainInput, GetDomainOutput } from "../models/models_1"; import { GetDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetDomainUnitCommand.ts b/clients/client-datazone/src/commands/GetDomainUnitCommand.ts index 63fe6c6e4279e..5be3f18bd9d88 100644 --- a/clients/client-datazone/src/commands/GetDomainUnitCommand.ts +++ b/clients/client-datazone/src/commands/GetDomainUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainUnitInput, GetDomainUnitOutput } from "../models/models_1"; +import type { GetDomainUnitInput, GetDomainUnitOutput } from "../models/models_1"; import { GetDomainUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetEnvironmentActionCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentActionCommand.ts index 54ee7ee95cd35..7d88f86f752f1 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentActionCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentActionInput, GetEnvironmentActionOutput } from "../models/models_1"; +import type { GetEnvironmentActionInput, GetEnvironmentActionOutput } from "../models/models_1"; import { GetEnvironmentAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetEnvironmentBlueprintCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentBlueprintCommand.ts index ddc0dec4eb9cd..0a1a930bed6af 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentBlueprintCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentBlueprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentBlueprintInput, GetEnvironmentBlueprintOutput } from "../models/models_1"; +import type { GetEnvironmentBlueprintInput, GetEnvironmentBlueprintOutput } from "../models/models_1"; import { GetEnvironmentBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetEnvironmentBlueprintConfigurationCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentBlueprintConfigurationCommand.ts index 79b4603e45584..b74b2e2ecb260 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentBlueprintConfigurationCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentBlueprintConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetEnvironmentBlueprintConfigurationInput, GetEnvironmentBlueprintConfigurationOutput, } from "../models/models_1"; diff --git a/clients/client-datazone/src/commands/GetEnvironmentCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentCommand.ts index fa44b6986bb46..7945eed5c6225 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentInput, GetEnvironmentOutput } from "../models/models_1"; +import type { GetEnvironmentInput, GetEnvironmentOutput } from "../models/models_1"; import { GetEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetEnvironmentCredentialsCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentCredentialsCommand.ts index 1a107a8db04ee..5a7abac21d4a3 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentCredentialsCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentCredentialsInput, GetEnvironmentCredentialsOutput } from "../models/models_1"; +import type { GetEnvironmentCredentialsInput, GetEnvironmentCredentialsOutput } from "../models/models_1"; import { GetEnvironmentCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetEnvironmentProfileCommand.ts b/clients/client-datazone/src/commands/GetEnvironmentProfileCommand.ts index e66000d48b05c..32495b1f73875 100644 --- a/clients/client-datazone/src/commands/GetEnvironmentProfileCommand.ts +++ b/clients/client-datazone/src/commands/GetEnvironmentProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentProfileInput, GetEnvironmentProfileOutput } from "../models/models_1"; +import type { GetEnvironmentProfileInput, GetEnvironmentProfileOutput } from "../models/models_1"; import { GetEnvironmentProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetFormTypeCommand.ts b/clients/client-datazone/src/commands/GetFormTypeCommand.ts index ea503d1881fa4..b148a6cb9fd75 100644 --- a/clients/client-datazone/src/commands/GetFormTypeCommand.ts +++ b/clients/client-datazone/src/commands/GetFormTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFormTypeInput, GetFormTypeOutput } from "../models/models_1"; +import type { GetFormTypeInput, GetFormTypeOutput } from "../models/models_1"; import { GetFormType } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetGlossaryCommand.ts b/clients/client-datazone/src/commands/GetGlossaryCommand.ts index d878c7884fceb..0e9705758400f 100644 --- a/clients/client-datazone/src/commands/GetGlossaryCommand.ts +++ b/clients/client-datazone/src/commands/GetGlossaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGlossaryInput, GetGlossaryOutput } from "../models/models_1"; +import type { GetGlossaryInput, GetGlossaryOutput } from "../models/models_1"; import { GetGlossary } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetGlossaryTermCommand.ts b/clients/client-datazone/src/commands/GetGlossaryTermCommand.ts index fdb88f1ae8173..7c89d698e9bb9 100644 --- a/clients/client-datazone/src/commands/GetGlossaryTermCommand.ts +++ b/clients/client-datazone/src/commands/GetGlossaryTermCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGlossaryTermInput, GetGlossaryTermOutput } from "../models/models_1"; +import type { GetGlossaryTermInput, GetGlossaryTermOutput } from "../models/models_1"; import { GetGlossaryTerm } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetGroupProfileCommand.ts b/clients/client-datazone/src/commands/GetGroupProfileCommand.ts index 18351f82f25da..4bd6bb2f3e7a2 100644 --- a/clients/client-datazone/src/commands/GetGroupProfileCommand.ts +++ b/clients/client-datazone/src/commands/GetGroupProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupProfileInput, GetGroupProfileOutput } from "../models/models_1"; +import type { GetGroupProfileInput, GetGroupProfileOutput } from "../models/models_1"; import { GetGroupProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetIamPortalLoginUrlCommand.ts b/clients/client-datazone/src/commands/GetIamPortalLoginUrlCommand.ts index 5c8751ca96cde..94ce53e9a08c0 100644 --- a/clients/client-datazone/src/commands/GetIamPortalLoginUrlCommand.ts +++ b/clients/client-datazone/src/commands/GetIamPortalLoginUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIamPortalLoginUrlInput, GetIamPortalLoginUrlOutput } from "../models/models_1"; +import type { GetIamPortalLoginUrlInput, GetIamPortalLoginUrlOutput } from "../models/models_1"; import { GetIamPortalLoginUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetJobRunCommand.ts b/clients/client-datazone/src/commands/GetJobRunCommand.ts index 0570089bf2d10..65f956bbb9478 100644 --- a/clients/client-datazone/src/commands/GetJobRunCommand.ts +++ b/clients/client-datazone/src/commands/GetJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobRunInput, GetJobRunOutput } from "../models/models_1"; +import type { GetJobRunInput, GetJobRunOutput } from "../models/models_1"; import { GetJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetLineageEventCommand.ts b/clients/client-datazone/src/commands/GetLineageEventCommand.ts index 15584c983419e..65a163d83ac90 100644 --- a/clients/client-datazone/src/commands/GetLineageEventCommand.ts +++ b/clients/client-datazone/src/commands/GetLineageEventCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLineageEventInput, GetLineageEventOutput } from "../models/models_1"; +import { type GetLineageEventInput, GetLineageEventOutput } from "../models/models_1"; import { GetLineageEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetLineageNodeCommand.ts b/clients/client-datazone/src/commands/GetLineageNodeCommand.ts index 7898e1c96f6a0..ebdf5142beab2 100644 --- a/clients/client-datazone/src/commands/GetLineageNodeCommand.ts +++ b/clients/client-datazone/src/commands/GetLineageNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLineageNodeInput, GetLineageNodeOutput } from "../models/models_1"; +import type { GetLineageNodeInput, GetLineageNodeOutput } from "../models/models_1"; import { GetLineageNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetListingCommand.ts b/clients/client-datazone/src/commands/GetListingCommand.ts index 502f9942137b6..99326ccb1e710 100644 --- a/clients/client-datazone/src/commands/GetListingCommand.ts +++ b/clients/client-datazone/src/commands/GetListingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetListingInput, GetListingOutput } from "../models/models_1"; +import type { GetListingInput, GetListingOutput } from "../models/models_1"; import { GetListing } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetMetadataGenerationRunCommand.ts b/clients/client-datazone/src/commands/GetMetadataGenerationRunCommand.ts index 9d788e1516df5..e736ee0f18c14 100644 --- a/clients/client-datazone/src/commands/GetMetadataGenerationRunCommand.ts +++ b/clients/client-datazone/src/commands/GetMetadataGenerationRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMetadataGenerationRunInput, GetMetadataGenerationRunOutput } from "../models/models_1"; +import type { GetMetadataGenerationRunInput, GetMetadataGenerationRunOutput } from "../models/models_1"; import { GetMetadataGenerationRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetProjectCommand.ts b/clients/client-datazone/src/commands/GetProjectCommand.ts index 4a41c9727d827..31ac367be1400 100644 --- a/clients/client-datazone/src/commands/GetProjectCommand.ts +++ b/clients/client-datazone/src/commands/GetProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProjectInput, GetProjectOutput } from "../models/models_1"; +import type { GetProjectInput, GetProjectOutput } from "../models/models_1"; import { GetProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetProjectProfileCommand.ts b/clients/client-datazone/src/commands/GetProjectProfileCommand.ts index e376d1f27a7da..8e8b1bb2fcb20 100644 --- a/clients/client-datazone/src/commands/GetProjectProfileCommand.ts +++ b/clients/client-datazone/src/commands/GetProjectProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProjectProfileInput, GetProjectProfileOutput } from "../models/models_1"; +import type { GetProjectProfileInput, GetProjectProfileOutput } from "../models/models_1"; import { GetProjectProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetRuleCommand.ts b/clients/client-datazone/src/commands/GetRuleCommand.ts index 78cd5cef6a53e..533a389912d08 100644 --- a/clients/client-datazone/src/commands/GetRuleCommand.ts +++ b/clients/client-datazone/src/commands/GetRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRuleInput, GetRuleOutput } from "../models/models_1"; +import type { GetRuleInput, GetRuleOutput } from "../models/models_1"; import { GetRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetSubscriptionCommand.ts b/clients/client-datazone/src/commands/GetSubscriptionCommand.ts index 04d53bc9da4c6..eca8968e24be0 100644 --- a/clients/client-datazone/src/commands/GetSubscriptionCommand.ts +++ b/clients/client-datazone/src/commands/GetSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSubscriptionInput, GetSubscriptionOutput } from "../models/models_1"; +import type { GetSubscriptionInput, GetSubscriptionOutput } from "../models/models_1"; import { GetSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetSubscriptionGrantCommand.ts b/clients/client-datazone/src/commands/GetSubscriptionGrantCommand.ts index f4dc55e5a05d0..dd4b2ddc8ac79 100644 --- a/clients/client-datazone/src/commands/GetSubscriptionGrantCommand.ts +++ b/clients/client-datazone/src/commands/GetSubscriptionGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSubscriptionGrantInput, GetSubscriptionGrantOutput } from "../models/models_1"; +import type { GetSubscriptionGrantInput, GetSubscriptionGrantOutput } from "../models/models_1"; import { GetSubscriptionGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetSubscriptionRequestDetailsCommand.ts b/clients/client-datazone/src/commands/GetSubscriptionRequestDetailsCommand.ts index 3d9db5eb8c523..9c21dda01c5cb 100644 --- a/clients/client-datazone/src/commands/GetSubscriptionRequestDetailsCommand.ts +++ b/clients/client-datazone/src/commands/GetSubscriptionRequestDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSubscriptionRequestDetailsInput, GetSubscriptionRequestDetailsOutput } from "../models/models_1"; +import type { GetSubscriptionRequestDetailsInput, GetSubscriptionRequestDetailsOutput } from "../models/models_1"; import { GetSubscriptionRequestDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetSubscriptionTargetCommand.ts b/clients/client-datazone/src/commands/GetSubscriptionTargetCommand.ts index cb905d2e8b52f..78a3f95714ca8 100644 --- a/clients/client-datazone/src/commands/GetSubscriptionTargetCommand.ts +++ b/clients/client-datazone/src/commands/GetSubscriptionTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSubscriptionTargetInput, GetSubscriptionTargetOutput } from "../models/models_1"; +import type { GetSubscriptionTargetInput, GetSubscriptionTargetOutput } from "../models/models_1"; import { GetSubscriptionTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetTimeSeriesDataPointCommand.ts b/clients/client-datazone/src/commands/GetTimeSeriesDataPointCommand.ts index 8f14b2b7e9d13..c47ffb83ee8cc 100644 --- a/clients/client-datazone/src/commands/GetTimeSeriesDataPointCommand.ts +++ b/clients/client-datazone/src/commands/GetTimeSeriesDataPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTimeSeriesDataPointInput, GetTimeSeriesDataPointOutput } from "../models/models_1"; +import type { GetTimeSeriesDataPointInput, GetTimeSeriesDataPointOutput } from "../models/models_1"; import { GetTimeSeriesDataPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/GetUserProfileCommand.ts b/clients/client-datazone/src/commands/GetUserProfileCommand.ts index 40074ffc3d08d..9dfee702ffe76 100644 --- a/clients/client-datazone/src/commands/GetUserProfileCommand.ts +++ b/clients/client-datazone/src/commands/GetUserProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserProfileInput, GetUserProfileOutput } from "../models/models_1"; +import type { GetUserProfileInput, GetUserProfileOutput } from "../models/models_1"; import { GetUserProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListAccountPoolsCommand.ts b/clients/client-datazone/src/commands/ListAccountPoolsCommand.ts index 192ba28c45e46..a8b659421bdba 100644 --- a/clients/client-datazone/src/commands/ListAccountPoolsCommand.ts +++ b/clients/client-datazone/src/commands/ListAccountPoolsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountPoolsInput, ListAccountPoolsOutput } from "../models/models_1"; +import type { ListAccountPoolsInput, ListAccountPoolsOutput } from "../models/models_1"; import { ListAccountPools } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListAccountsInAccountPoolCommand.ts b/clients/client-datazone/src/commands/ListAccountsInAccountPoolCommand.ts index 8448516828f21..0b53d5428db5a 100644 --- a/clients/client-datazone/src/commands/ListAccountsInAccountPoolCommand.ts +++ b/clients/client-datazone/src/commands/ListAccountsInAccountPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountsInAccountPoolInput, ListAccountsInAccountPoolOutput } from "../models/models_1"; +import type { ListAccountsInAccountPoolInput, ListAccountsInAccountPoolOutput } from "../models/models_1"; import { ListAccountsInAccountPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListAssetFiltersCommand.ts b/clients/client-datazone/src/commands/ListAssetFiltersCommand.ts index a159ee68c4cae..0a7ca05785eca 100644 --- a/clients/client-datazone/src/commands/ListAssetFiltersCommand.ts +++ b/clients/client-datazone/src/commands/ListAssetFiltersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssetFiltersInput, ListAssetFiltersOutput } from "../models/models_1"; +import type { ListAssetFiltersInput, ListAssetFiltersOutput } from "../models/models_1"; import { ListAssetFilters } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListAssetRevisionsCommand.ts b/clients/client-datazone/src/commands/ListAssetRevisionsCommand.ts index 75c842d770a67..6be7ab6da96e6 100644 --- a/clients/client-datazone/src/commands/ListAssetRevisionsCommand.ts +++ b/clients/client-datazone/src/commands/ListAssetRevisionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssetRevisionsInput, ListAssetRevisionsOutput } from "../models/models_1"; +import type { ListAssetRevisionsInput, ListAssetRevisionsOutput } from "../models/models_1"; import { ListAssetRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListConnectionsCommand.ts b/clients/client-datazone/src/commands/ListConnectionsCommand.ts index aa8a408cad1f4..b9676b78b2da6 100644 --- a/clients/client-datazone/src/commands/ListConnectionsCommand.ts +++ b/clients/client-datazone/src/commands/ListConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectionsInput, ListConnectionsOutput } from "../models/models_1"; +import type { ListConnectionsInput, ListConnectionsOutput } from "../models/models_1"; import { ListConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListDataProductRevisionsCommand.ts b/clients/client-datazone/src/commands/ListDataProductRevisionsCommand.ts index e178aa4846c82..c4cb53d8d263f 100644 --- a/clients/client-datazone/src/commands/ListDataProductRevisionsCommand.ts +++ b/clients/client-datazone/src/commands/ListDataProductRevisionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataProductRevisionsInput, ListDataProductRevisionsOutput } from "../models/models_1"; +import type { ListDataProductRevisionsInput, ListDataProductRevisionsOutput } from "../models/models_1"; import { ListDataProductRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListDataSourceRunActivitiesCommand.ts b/clients/client-datazone/src/commands/ListDataSourceRunActivitiesCommand.ts index b84a945b14b7e..dad265557c896 100644 --- a/clients/client-datazone/src/commands/ListDataSourceRunActivitiesCommand.ts +++ b/clients/client-datazone/src/commands/ListDataSourceRunActivitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSourceRunActivitiesInput, ListDataSourceRunActivitiesOutput } from "../models/models_1"; +import type { ListDataSourceRunActivitiesInput, ListDataSourceRunActivitiesOutput } from "../models/models_1"; import { ListDataSourceRunActivities } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListDataSourceRunsCommand.ts b/clients/client-datazone/src/commands/ListDataSourceRunsCommand.ts index b0d15152a7203..6de263e0ab47b 100644 --- a/clients/client-datazone/src/commands/ListDataSourceRunsCommand.ts +++ b/clients/client-datazone/src/commands/ListDataSourceRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSourceRunsInput, ListDataSourceRunsOutput } from "../models/models_1"; +import type { ListDataSourceRunsInput, ListDataSourceRunsOutput } from "../models/models_1"; import { ListDataSourceRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListDataSourcesCommand.ts b/clients/client-datazone/src/commands/ListDataSourcesCommand.ts index ceaaf412b6bfb..67ccc84572154 100644 --- a/clients/client-datazone/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-datazone/src/commands/ListDataSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSourcesInput, ListDataSourcesOutput } from "../models/models_1"; +import type { ListDataSourcesInput, ListDataSourcesOutput } from "../models/models_1"; import { ListDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListDomainUnitsForParentCommand.ts b/clients/client-datazone/src/commands/ListDomainUnitsForParentCommand.ts index a5cf0ab6803cb..47e87494e77bb 100644 --- a/clients/client-datazone/src/commands/ListDomainUnitsForParentCommand.ts +++ b/clients/client-datazone/src/commands/ListDomainUnitsForParentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainUnitsForParentInput, ListDomainUnitsForParentOutput } from "../models/models_1"; +import type { ListDomainUnitsForParentInput, ListDomainUnitsForParentOutput } from "../models/models_1"; import { ListDomainUnitsForParent } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListDomainsCommand.ts b/clients/client-datazone/src/commands/ListDomainsCommand.ts index ee933920ab097..256b0da251c61 100644 --- a/clients/client-datazone/src/commands/ListDomainsCommand.ts +++ b/clients/client-datazone/src/commands/ListDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsInput, ListDomainsOutput } from "../models/models_1"; +import type { ListDomainsInput, ListDomainsOutput } from "../models/models_1"; import { ListDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListEntityOwnersCommand.ts b/clients/client-datazone/src/commands/ListEntityOwnersCommand.ts index 6ce5dfefe9a12..6920c1a1aecd7 100644 --- a/clients/client-datazone/src/commands/ListEntityOwnersCommand.ts +++ b/clients/client-datazone/src/commands/ListEntityOwnersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEntityOwnersInput, ListEntityOwnersOutput } from "../models/models_1"; +import type { ListEntityOwnersInput, ListEntityOwnersOutput } from "../models/models_1"; import { ListEntityOwners } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListEnvironmentActionsCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentActionsCommand.ts index 50ca6dcef881e..31a7452dd85d3 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentActionsCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentActionsInput, ListEnvironmentActionsOutput } from "../models/models_1"; +import type { ListEnvironmentActionsInput, ListEnvironmentActionsOutput } from "../models/models_1"; import { ListEnvironmentActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListEnvironmentBlueprintConfigurationsCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentBlueprintConfigurationsCommand.ts index 87dc26d1badaf..83a24a04070b0 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentBlueprintConfigurationsCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentBlueprintConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListEnvironmentBlueprintConfigurationsInput, ListEnvironmentBlueprintConfigurationsOutput, } from "../models/models_1"; diff --git a/clients/client-datazone/src/commands/ListEnvironmentBlueprintsCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentBlueprintsCommand.ts index f007e1170b515..96e40e5706f0b 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentBlueprintsCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentBlueprintsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentBlueprintsInput, ListEnvironmentBlueprintsOutput } from "../models/models_1"; +import type { ListEnvironmentBlueprintsInput, ListEnvironmentBlueprintsOutput } from "../models/models_1"; import { ListEnvironmentBlueprints } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListEnvironmentProfilesCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentProfilesCommand.ts index 5f82e2b417040..01e94bfd72b3e 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentProfilesCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentProfilesInput, ListEnvironmentProfilesOutput } from "../models/models_1"; +import type { ListEnvironmentProfilesInput, ListEnvironmentProfilesOutput } from "../models/models_1"; import { ListEnvironmentProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListEnvironmentsCommand.ts b/clients/client-datazone/src/commands/ListEnvironmentsCommand.ts index ea8a861f19fd2..f6a8279423a1f 100644 --- a/clients/client-datazone/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-datazone/src/commands/ListEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentsInput, ListEnvironmentsOutput } from "../models/models_1"; +import type { ListEnvironmentsInput, ListEnvironmentsOutput } from "../models/models_1"; import { ListEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListJobRunsCommand.ts b/clients/client-datazone/src/commands/ListJobRunsCommand.ts index ba0aa23bc7bc6..93d7b0abe80e7 100644 --- a/clients/client-datazone/src/commands/ListJobRunsCommand.ts +++ b/clients/client-datazone/src/commands/ListJobRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobRunsInput, ListJobRunsOutput } from "../models/models_1"; +import type { ListJobRunsInput, ListJobRunsOutput } from "../models/models_1"; import { ListJobRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListLineageEventsCommand.ts b/clients/client-datazone/src/commands/ListLineageEventsCommand.ts index e7da9cd9dc743..fecbd98e9492e 100644 --- a/clients/client-datazone/src/commands/ListLineageEventsCommand.ts +++ b/clients/client-datazone/src/commands/ListLineageEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLineageEventsInput, ListLineageEventsOutput } from "../models/models_1"; +import type { ListLineageEventsInput, ListLineageEventsOutput } from "../models/models_1"; import { ListLineageEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListLineageNodeHistoryCommand.ts b/clients/client-datazone/src/commands/ListLineageNodeHistoryCommand.ts index 28d69d03429bb..b44d3669edf7b 100644 --- a/clients/client-datazone/src/commands/ListLineageNodeHistoryCommand.ts +++ b/clients/client-datazone/src/commands/ListLineageNodeHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLineageNodeHistoryInput, ListLineageNodeHistoryOutput } from "../models/models_1"; +import type { ListLineageNodeHistoryInput, ListLineageNodeHistoryOutput } from "../models/models_1"; import { ListLineageNodeHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListMetadataGenerationRunsCommand.ts b/clients/client-datazone/src/commands/ListMetadataGenerationRunsCommand.ts index 1c663111e2fac..cb60675f008a6 100644 --- a/clients/client-datazone/src/commands/ListMetadataGenerationRunsCommand.ts +++ b/clients/client-datazone/src/commands/ListMetadataGenerationRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMetadataGenerationRunsInput, ListMetadataGenerationRunsOutput } from "../models/models_1"; +import type { ListMetadataGenerationRunsInput, ListMetadataGenerationRunsOutput } from "../models/models_1"; import { ListMetadataGenerationRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListNotificationsCommand.ts b/clients/client-datazone/src/commands/ListNotificationsCommand.ts index e28e345b3fdd2..c607a42cdbe55 100644 --- a/clients/client-datazone/src/commands/ListNotificationsCommand.ts +++ b/clients/client-datazone/src/commands/ListNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotificationsInput, ListNotificationsOutput } from "../models/models_1"; +import type { ListNotificationsInput, ListNotificationsOutput } from "../models/models_1"; import { ListNotifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListPolicyGrantsCommand.ts b/clients/client-datazone/src/commands/ListPolicyGrantsCommand.ts index bfd0e80d71aee..0a7359034fca0 100644 --- a/clients/client-datazone/src/commands/ListPolicyGrantsCommand.ts +++ b/clients/client-datazone/src/commands/ListPolicyGrantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPolicyGrantsInput, ListPolicyGrantsOutput } from "../models/models_1"; +import type { ListPolicyGrantsInput, ListPolicyGrantsOutput } from "../models/models_1"; import { ListPolicyGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListProjectMembershipsCommand.ts b/clients/client-datazone/src/commands/ListProjectMembershipsCommand.ts index 3f8457feaaaf9..098c7a1bf49d1 100644 --- a/clients/client-datazone/src/commands/ListProjectMembershipsCommand.ts +++ b/clients/client-datazone/src/commands/ListProjectMembershipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProjectMembershipsInput, ListProjectMembershipsOutput } from "../models/models_1"; +import type { ListProjectMembershipsInput, ListProjectMembershipsOutput } from "../models/models_1"; import { ListProjectMemberships } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListProjectProfilesCommand.ts b/clients/client-datazone/src/commands/ListProjectProfilesCommand.ts index dacf15d2c155c..60cebc7f8ee1c 100644 --- a/clients/client-datazone/src/commands/ListProjectProfilesCommand.ts +++ b/clients/client-datazone/src/commands/ListProjectProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProjectProfilesInput, ListProjectProfilesOutput } from "../models/models_1"; +import type { ListProjectProfilesInput, ListProjectProfilesOutput } from "../models/models_1"; import { ListProjectProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListProjectsCommand.ts b/clients/client-datazone/src/commands/ListProjectsCommand.ts index 921476b6c9c94..25cf0452d0030 100644 --- a/clients/client-datazone/src/commands/ListProjectsCommand.ts +++ b/clients/client-datazone/src/commands/ListProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProjectsInput, ListProjectsOutput } from "../models/models_1"; +import type { ListProjectsInput, ListProjectsOutput } from "../models/models_1"; import { ListProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListRulesCommand.ts b/clients/client-datazone/src/commands/ListRulesCommand.ts index 35e8179cb501b..e84165b76e979 100644 --- a/clients/client-datazone/src/commands/ListRulesCommand.ts +++ b/clients/client-datazone/src/commands/ListRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRulesInput, ListRulesOutput } from "../models/models_1"; +import type { ListRulesInput, ListRulesOutput } from "../models/models_1"; import { ListRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListSubscriptionGrantsCommand.ts b/clients/client-datazone/src/commands/ListSubscriptionGrantsCommand.ts index 987bcf8b1c7fa..44afac20e9b2d 100644 --- a/clients/client-datazone/src/commands/ListSubscriptionGrantsCommand.ts +++ b/clients/client-datazone/src/commands/ListSubscriptionGrantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscriptionGrantsInput, ListSubscriptionGrantsOutput } from "../models/models_1"; +import type { ListSubscriptionGrantsInput, ListSubscriptionGrantsOutput } from "../models/models_1"; import { ListSubscriptionGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListSubscriptionRequestsCommand.ts b/clients/client-datazone/src/commands/ListSubscriptionRequestsCommand.ts index 068c427f92d38..624b3d4d99794 100644 --- a/clients/client-datazone/src/commands/ListSubscriptionRequestsCommand.ts +++ b/clients/client-datazone/src/commands/ListSubscriptionRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscriptionRequestsInput, ListSubscriptionRequestsOutput } from "../models/models_1"; +import type { ListSubscriptionRequestsInput, ListSubscriptionRequestsOutput } from "../models/models_1"; import { ListSubscriptionRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListSubscriptionTargetsCommand.ts b/clients/client-datazone/src/commands/ListSubscriptionTargetsCommand.ts index b4fa059fed0d2..70b6a6e876608 100644 --- a/clients/client-datazone/src/commands/ListSubscriptionTargetsCommand.ts +++ b/clients/client-datazone/src/commands/ListSubscriptionTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscriptionTargetsInput, ListSubscriptionTargetsOutput } from "../models/models_1"; +import type { ListSubscriptionTargetsInput, ListSubscriptionTargetsOutput } from "../models/models_1"; import { ListSubscriptionTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListSubscriptionsCommand.ts b/clients/client-datazone/src/commands/ListSubscriptionsCommand.ts index 5b75a9ebe2aa5..85b620481478f 100644 --- a/clients/client-datazone/src/commands/ListSubscriptionsCommand.ts +++ b/clients/client-datazone/src/commands/ListSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscriptionsInput, ListSubscriptionsOutput } from "../models/models_1"; +import type { ListSubscriptionsInput, ListSubscriptionsOutput } from "../models/models_1"; import { ListSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListTagsForResourceCommand.ts b/clients/client-datazone/src/commands/ListTagsForResourceCommand.ts index 7427286a6fc82..e6e1af0249165 100644 --- a/clients/client-datazone/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-datazone/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/ListTimeSeriesDataPointsCommand.ts b/clients/client-datazone/src/commands/ListTimeSeriesDataPointsCommand.ts index cb83034eb298a..ed174eed62d48 100644 --- a/clients/client-datazone/src/commands/ListTimeSeriesDataPointsCommand.ts +++ b/clients/client-datazone/src/commands/ListTimeSeriesDataPointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTimeSeriesDataPointsInput, ListTimeSeriesDataPointsOutput } from "../models/models_1"; +import type { ListTimeSeriesDataPointsInput, ListTimeSeriesDataPointsOutput } from "../models/models_1"; import { ListTimeSeriesDataPoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/PostLineageEventCommand.ts b/clients/client-datazone/src/commands/PostLineageEventCommand.ts index fe6b15dc9c480..3dbfd169238c0 100644 --- a/clients/client-datazone/src/commands/PostLineageEventCommand.ts +++ b/clients/client-datazone/src/commands/PostLineageEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostLineageEventInput, PostLineageEventOutput } from "../models/models_1"; +import { type PostLineageEventOutput, PostLineageEventInput } from "../models/models_1"; import { PostLineageEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/PostTimeSeriesDataPointsCommand.ts b/clients/client-datazone/src/commands/PostTimeSeriesDataPointsCommand.ts index f322c678d19f1..474655beb860e 100644 --- a/clients/client-datazone/src/commands/PostTimeSeriesDataPointsCommand.ts +++ b/clients/client-datazone/src/commands/PostTimeSeriesDataPointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostTimeSeriesDataPointsInput, PostTimeSeriesDataPointsOutput } from "../models/models_1"; +import type { PostTimeSeriesDataPointsInput, PostTimeSeriesDataPointsOutput } from "../models/models_1"; import { PostTimeSeriesDataPoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/PutEnvironmentBlueprintConfigurationCommand.ts b/clients/client-datazone/src/commands/PutEnvironmentBlueprintConfigurationCommand.ts index 4e2b398fd8993..fcef64a33bda1 100644 --- a/clients/client-datazone/src/commands/PutEnvironmentBlueprintConfigurationCommand.ts +++ b/clients/client-datazone/src/commands/PutEnvironmentBlueprintConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutEnvironmentBlueprintConfigurationInput, PutEnvironmentBlueprintConfigurationOutput, } from "../models/models_1"; diff --git a/clients/client-datazone/src/commands/RejectPredictionsCommand.ts b/clients/client-datazone/src/commands/RejectPredictionsCommand.ts index 7073a12d939d5..abf2399b0f5bb 100644 --- a/clients/client-datazone/src/commands/RejectPredictionsCommand.ts +++ b/clients/client-datazone/src/commands/RejectPredictionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectPredictionsInput, RejectPredictionsOutput } from "../models/models_1"; +import type { RejectPredictionsInput, RejectPredictionsOutput } from "../models/models_1"; import { RejectPredictions } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/RejectSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/RejectSubscriptionRequestCommand.ts index c724ea22b78e1..f4369b8766b84 100644 --- a/clients/client-datazone/src/commands/RejectSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/RejectSubscriptionRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectSubscriptionRequestInput, RejectSubscriptionRequestOutput } from "../models/models_1"; +import type { RejectSubscriptionRequestInput, RejectSubscriptionRequestOutput } from "../models/models_1"; import { RejectSubscriptionRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/RemoveEntityOwnerCommand.ts b/clients/client-datazone/src/commands/RemoveEntityOwnerCommand.ts index 9e12cdcda06be..1f94e8e26a29f 100644 --- a/clients/client-datazone/src/commands/RemoveEntityOwnerCommand.ts +++ b/clients/client-datazone/src/commands/RemoveEntityOwnerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveEntityOwnerInput, RemoveEntityOwnerOutput } from "../models/models_1"; +import type { RemoveEntityOwnerInput, RemoveEntityOwnerOutput } from "../models/models_1"; import { RemoveEntityOwner } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/RemovePolicyGrantCommand.ts b/clients/client-datazone/src/commands/RemovePolicyGrantCommand.ts index 7070e9da30eea..e90e7cf2b90f9 100644 --- a/clients/client-datazone/src/commands/RemovePolicyGrantCommand.ts +++ b/clients/client-datazone/src/commands/RemovePolicyGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemovePolicyGrantInput, RemovePolicyGrantOutput } from "../models/models_1"; +import type { RemovePolicyGrantInput, RemovePolicyGrantOutput } from "../models/models_1"; import { RemovePolicyGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/RevokeSubscriptionCommand.ts b/clients/client-datazone/src/commands/RevokeSubscriptionCommand.ts index 10dede3280d8f..cea9183efd8a0 100644 --- a/clients/client-datazone/src/commands/RevokeSubscriptionCommand.ts +++ b/clients/client-datazone/src/commands/RevokeSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeSubscriptionInput, RevokeSubscriptionOutput } from "../models/models_1"; +import type { RevokeSubscriptionInput, RevokeSubscriptionOutput } from "../models/models_1"; import { RevokeSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/SearchCommand.ts b/clients/client-datazone/src/commands/SearchCommand.ts index 6582be9bc27b4..c2ab4fa402b80 100644 --- a/clients/client-datazone/src/commands/SearchCommand.ts +++ b/clients/client-datazone/src/commands/SearchCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchOutput } from "../models/models_1"; -import { SearchInput } from "../models/models_2"; +import type { SearchOutput } from "../models/models_1"; +import type { SearchInput } from "../models/models_2"; import { Search } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/SearchGroupProfilesCommand.ts b/clients/client-datazone/src/commands/SearchGroupProfilesCommand.ts index b065d4fb86a1c..0d613417b0caf 100644 --- a/clients/client-datazone/src/commands/SearchGroupProfilesCommand.ts +++ b/clients/client-datazone/src/commands/SearchGroupProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchGroupProfilesInput, SearchGroupProfilesOutput } from "../models/models_1"; +import type { SearchGroupProfilesInput, SearchGroupProfilesOutput } from "../models/models_1"; import { SearchGroupProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/SearchListingsCommand.ts b/clients/client-datazone/src/commands/SearchListingsCommand.ts index 7c79403234d98..2dd13ca879f09 100644 --- a/clients/client-datazone/src/commands/SearchListingsCommand.ts +++ b/clients/client-datazone/src/commands/SearchListingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchListingsOutput } from "../models/models_1"; -import { SearchListingsInput } from "../models/models_2"; +import type { SearchListingsOutput } from "../models/models_1"; +import type { SearchListingsInput } from "../models/models_2"; import { SearchListings } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/SearchTypesCommand.ts b/clients/client-datazone/src/commands/SearchTypesCommand.ts index 44476f6482b9a..5df8c55f20024 100644 --- a/clients/client-datazone/src/commands/SearchTypesCommand.ts +++ b/clients/client-datazone/src/commands/SearchTypesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchTypesOutput } from "../models/models_1"; -import { SearchTypesInput } from "../models/models_2"; +import type { SearchTypesOutput } from "../models/models_1"; +import type { SearchTypesInput } from "../models/models_2"; import { SearchTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/SearchUserProfilesCommand.ts b/clients/client-datazone/src/commands/SearchUserProfilesCommand.ts index ae2d5d32efb1e..0bb48d3e7c2a8 100644 --- a/clients/client-datazone/src/commands/SearchUserProfilesCommand.ts +++ b/clients/client-datazone/src/commands/SearchUserProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchUserProfilesInput, SearchUserProfilesOutput } from "../models/models_1"; +import type { SearchUserProfilesInput, SearchUserProfilesOutput } from "../models/models_1"; import { SearchUserProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/StartDataSourceRunCommand.ts b/clients/client-datazone/src/commands/StartDataSourceRunCommand.ts index 8e2d45fec9227..9cacef20e94d1 100644 --- a/clients/client-datazone/src/commands/StartDataSourceRunCommand.ts +++ b/clients/client-datazone/src/commands/StartDataSourceRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDataSourceRunInput, StartDataSourceRunOutput } from "../models/models_1"; +import type { StartDataSourceRunInput, StartDataSourceRunOutput } from "../models/models_1"; import { StartDataSourceRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/StartMetadataGenerationRunCommand.ts b/clients/client-datazone/src/commands/StartMetadataGenerationRunCommand.ts index 030f6cb8dd30f..f4d3316063548 100644 --- a/clients/client-datazone/src/commands/StartMetadataGenerationRunCommand.ts +++ b/clients/client-datazone/src/commands/StartMetadataGenerationRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMetadataGenerationRunInput, StartMetadataGenerationRunOutput } from "../models/models_1"; +import type { StartMetadataGenerationRunInput, StartMetadataGenerationRunOutput } from "../models/models_1"; import { StartMetadataGenerationRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/TagResourceCommand.ts b/clients/client-datazone/src/commands/TagResourceCommand.ts index 1777233898711..49ab980d40977 100644 --- a/clients/client-datazone/src/commands/TagResourceCommand.ts +++ b/clients/client-datazone/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UntagResourceCommand.ts b/clients/client-datazone/src/commands/UntagResourceCommand.ts index a402c2f5333db..af2830d45021a 100644 --- a/clients/client-datazone/src/commands/UntagResourceCommand.ts +++ b/clients/client-datazone/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateAccountPoolCommand.ts b/clients/client-datazone/src/commands/UpdateAccountPoolCommand.ts index ad8bcb1e1f87d..7d0155cf5627d 100644 --- a/clients/client-datazone/src/commands/UpdateAccountPoolCommand.ts +++ b/clients/client-datazone/src/commands/UpdateAccountPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountPoolInput, UpdateAccountPoolOutput } from "../models/models_1"; +import type { UpdateAccountPoolInput, UpdateAccountPoolOutput } from "../models/models_1"; import { UpdateAccountPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateAssetFilterCommand.ts b/clients/client-datazone/src/commands/UpdateAssetFilterCommand.ts index ac784f3f0454d..584f148f6438a 100644 --- a/clients/client-datazone/src/commands/UpdateAssetFilterCommand.ts +++ b/clients/client-datazone/src/commands/UpdateAssetFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssetFilterInput, UpdateAssetFilterOutput } from "../models/models_2"; +import type { UpdateAssetFilterInput, UpdateAssetFilterOutput } from "../models/models_2"; import { UpdateAssetFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateConnectionCommand.ts b/clients/client-datazone/src/commands/UpdateConnectionCommand.ts index 7f19d1383550b..c865661763bd4 100644 --- a/clients/client-datazone/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-datazone/src/commands/UpdateConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectionInput, UpdateConnectionOutput } from "../models/models_1"; +import type { UpdateConnectionInput, UpdateConnectionOutput } from "../models/models_1"; import { UpdateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateDataSourceCommand.ts b/clients/client-datazone/src/commands/UpdateDataSourceCommand.ts index 48db4f7ef4d5e..8fe4021ecd351 100644 --- a/clients/client-datazone/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-datazone/src/commands/UpdateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSourceInput, UpdateDataSourceOutput } from "../models/models_1"; +import type { UpdateDataSourceInput, UpdateDataSourceOutput } from "../models/models_1"; import { UpdateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateDomainCommand.ts b/clients/client-datazone/src/commands/UpdateDomainCommand.ts index 951f9362b7426..452f242f91f47 100644 --- a/clients/client-datazone/src/commands/UpdateDomainCommand.ts +++ b/clients/client-datazone/src/commands/UpdateDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainInput, UpdateDomainOutput } from "../models/models_1"; +import type { UpdateDomainInput, UpdateDomainOutput } from "../models/models_1"; import { UpdateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateDomainUnitCommand.ts b/clients/client-datazone/src/commands/UpdateDomainUnitCommand.ts index 417988de83400..3679d8b5fd1cf 100644 --- a/clients/client-datazone/src/commands/UpdateDomainUnitCommand.ts +++ b/clients/client-datazone/src/commands/UpdateDomainUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainUnitInput, UpdateDomainUnitOutput } from "../models/models_1"; +import type { UpdateDomainUnitInput, UpdateDomainUnitOutput } from "../models/models_1"; import { UpdateDomainUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateEnvironmentActionCommand.ts b/clients/client-datazone/src/commands/UpdateEnvironmentActionCommand.ts index b74914495cec5..d91eea82d30c3 100644 --- a/clients/client-datazone/src/commands/UpdateEnvironmentActionCommand.ts +++ b/clients/client-datazone/src/commands/UpdateEnvironmentActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentActionInput, UpdateEnvironmentActionOutput } from "../models/models_2"; +import type { UpdateEnvironmentActionInput, UpdateEnvironmentActionOutput } from "../models/models_2"; import { UpdateEnvironmentAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateEnvironmentBlueprintCommand.ts b/clients/client-datazone/src/commands/UpdateEnvironmentBlueprintCommand.ts index 42a6b47e42209..495d7b4a0e493 100644 --- a/clients/client-datazone/src/commands/UpdateEnvironmentBlueprintCommand.ts +++ b/clients/client-datazone/src/commands/UpdateEnvironmentBlueprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentBlueprintInput, UpdateEnvironmentBlueprintOutput } from "../models/models_2"; +import type { UpdateEnvironmentBlueprintInput, UpdateEnvironmentBlueprintOutput } from "../models/models_2"; import { UpdateEnvironmentBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateEnvironmentCommand.ts b/clients/client-datazone/src/commands/UpdateEnvironmentCommand.ts index b2613f40bcdba..96acb5f02329a 100644 --- a/clients/client-datazone/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-datazone/src/commands/UpdateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentInput, UpdateEnvironmentOutput } from "../models/models_1"; +import type { UpdateEnvironmentInput, UpdateEnvironmentOutput } from "../models/models_1"; import { UpdateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateEnvironmentProfileCommand.ts b/clients/client-datazone/src/commands/UpdateEnvironmentProfileCommand.ts index c137664df11a3..844c964b04ea1 100644 --- a/clients/client-datazone/src/commands/UpdateEnvironmentProfileCommand.ts +++ b/clients/client-datazone/src/commands/UpdateEnvironmentProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentProfileInput, UpdateEnvironmentProfileOutput } from "../models/models_2"; +import type { UpdateEnvironmentProfileInput, UpdateEnvironmentProfileOutput } from "../models/models_2"; import { UpdateEnvironmentProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateGlossaryCommand.ts b/clients/client-datazone/src/commands/UpdateGlossaryCommand.ts index bde426f01a4e7..621b289fafda0 100644 --- a/clients/client-datazone/src/commands/UpdateGlossaryCommand.ts +++ b/clients/client-datazone/src/commands/UpdateGlossaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlossaryInput, UpdateGlossaryOutput } from "../models/models_1"; +import type { UpdateGlossaryInput, UpdateGlossaryOutput } from "../models/models_1"; import { UpdateGlossary } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateGlossaryTermCommand.ts b/clients/client-datazone/src/commands/UpdateGlossaryTermCommand.ts index b21f6d0ccc498..4f5211ee43949 100644 --- a/clients/client-datazone/src/commands/UpdateGlossaryTermCommand.ts +++ b/clients/client-datazone/src/commands/UpdateGlossaryTermCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlossaryTermInput, UpdateGlossaryTermOutput } from "../models/models_1"; +import type { UpdateGlossaryTermInput, UpdateGlossaryTermOutput } from "../models/models_1"; import { UpdateGlossaryTerm } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateGroupProfileCommand.ts b/clients/client-datazone/src/commands/UpdateGroupProfileCommand.ts index fc45773f5c8f2..533e35cb6a928 100644 --- a/clients/client-datazone/src/commands/UpdateGroupProfileCommand.ts +++ b/clients/client-datazone/src/commands/UpdateGroupProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGroupProfileInput, UpdateGroupProfileOutput } from "../models/models_2"; +import type { UpdateGroupProfileInput, UpdateGroupProfileOutput } from "../models/models_2"; import { UpdateGroupProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateProjectCommand.ts b/clients/client-datazone/src/commands/UpdateProjectCommand.ts index bab110aa3414f..da076e2a04b39 100644 --- a/clients/client-datazone/src/commands/UpdateProjectCommand.ts +++ b/clients/client-datazone/src/commands/UpdateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProjectInput, UpdateProjectOutput } from "../models/models_2"; +import type { UpdateProjectInput, UpdateProjectOutput } from "../models/models_2"; import { UpdateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateProjectProfileCommand.ts b/clients/client-datazone/src/commands/UpdateProjectProfileCommand.ts index 72d90ec11b18d..1b70346ac3f30 100644 --- a/clients/client-datazone/src/commands/UpdateProjectProfileCommand.ts +++ b/clients/client-datazone/src/commands/UpdateProjectProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProjectProfileInput, UpdateProjectProfileOutput } from "../models/models_2"; +import type { UpdateProjectProfileInput, UpdateProjectProfileOutput } from "../models/models_2"; import { UpdateProjectProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateRootDomainUnitOwnerCommand.ts b/clients/client-datazone/src/commands/UpdateRootDomainUnitOwnerCommand.ts index f06999d3ba1ed..b5e92e8d0b321 100644 --- a/clients/client-datazone/src/commands/UpdateRootDomainUnitOwnerCommand.ts +++ b/clients/client-datazone/src/commands/UpdateRootDomainUnitOwnerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRootDomainUnitOwnerInput, UpdateRootDomainUnitOwnerOutput } from "../models/models_2"; +import type { UpdateRootDomainUnitOwnerInput, UpdateRootDomainUnitOwnerOutput } from "../models/models_2"; import { UpdateRootDomainUnitOwner } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateRuleCommand.ts b/clients/client-datazone/src/commands/UpdateRuleCommand.ts index 717f822f5be21..0a893fc25d5bc 100644 --- a/clients/client-datazone/src/commands/UpdateRuleCommand.ts +++ b/clients/client-datazone/src/commands/UpdateRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleInput, UpdateRuleOutput } from "../models/models_1"; +import type { UpdateRuleInput, UpdateRuleOutput } from "../models/models_1"; import { UpdateRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateSubscriptionGrantStatusCommand.ts b/clients/client-datazone/src/commands/UpdateSubscriptionGrantStatusCommand.ts index 2d5a06ae18e5c..5e628058e128c 100644 --- a/clients/client-datazone/src/commands/UpdateSubscriptionGrantStatusCommand.ts +++ b/clients/client-datazone/src/commands/UpdateSubscriptionGrantStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubscriptionGrantStatusInput, UpdateSubscriptionGrantStatusOutput } from "../models/models_2"; +import type { UpdateSubscriptionGrantStatusInput, UpdateSubscriptionGrantStatusOutput } from "../models/models_2"; import { UpdateSubscriptionGrantStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateSubscriptionRequestCommand.ts b/clients/client-datazone/src/commands/UpdateSubscriptionRequestCommand.ts index aefb462ed0cbc..cd3d1eef1c0a2 100644 --- a/clients/client-datazone/src/commands/UpdateSubscriptionRequestCommand.ts +++ b/clients/client-datazone/src/commands/UpdateSubscriptionRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubscriptionRequestInput, UpdateSubscriptionRequestOutput } from "../models/models_2"; +import type { UpdateSubscriptionRequestInput, UpdateSubscriptionRequestOutput } from "../models/models_2"; import { UpdateSubscriptionRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateSubscriptionTargetCommand.ts b/clients/client-datazone/src/commands/UpdateSubscriptionTargetCommand.ts index a270c83b1adc7..e9cef36a8823b 100644 --- a/clients/client-datazone/src/commands/UpdateSubscriptionTargetCommand.ts +++ b/clients/client-datazone/src/commands/UpdateSubscriptionTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubscriptionTargetInput, UpdateSubscriptionTargetOutput } from "../models/models_2"; +import type { UpdateSubscriptionTargetInput, UpdateSubscriptionTargetOutput } from "../models/models_2"; import { UpdateSubscriptionTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/commands/UpdateUserProfileCommand.ts b/clients/client-datazone/src/commands/UpdateUserProfileCommand.ts index cd95f483bb73d..fff419efc9eae 100644 --- a/clients/client-datazone/src/commands/UpdateUserProfileCommand.ts +++ b/clients/client-datazone/src/commands/UpdateUserProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; +import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserProfileInput, UpdateUserProfileOutput } from "../models/models_2"; +import type { UpdateUserProfileInput, UpdateUserProfileOutput } from "../models/models_2"; import { UpdateUserProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-datazone/src/endpoint/EndpointParameters.ts b/clients/client-datazone/src/endpoint/EndpointParameters.ts index 8ad66f51d8ae6..785bd33121bfe 100644 --- a/clients/client-datazone/src/endpoint/EndpointParameters.ts +++ b/clients/client-datazone/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-datazone/src/endpoint/endpointResolver.ts b/clients/client-datazone/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-datazone/src/endpoint/endpointResolver.ts +++ b/clients/client-datazone/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-datazone/src/extensionConfiguration.ts b/clients/client-datazone/src/extensionConfiguration.ts index 9afadc7ddfe20..5be94718544eb 100644 --- a/clients/client-datazone/src/extensionConfiguration.ts +++ b/clients/client-datazone/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-datazone/src/models/DataZoneServiceException.ts b/clients/client-datazone/src/models/DataZoneServiceException.ts index 4caeead4bf07f..d67b4665d2e55 100644 --- a/clients/client-datazone/src/models/DataZoneServiceException.ts +++ b/clients/client-datazone/src/models/DataZoneServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-datazone/src/models/errors.ts b/clients/client-datazone/src/models/errors.ts index 7ff94c60904f1..b51b346cf1013 100644 --- a/clients/client-datazone/src/models/errors.ts +++ b/clients/client-datazone/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DataZoneServiceException as __BaseException } from "./DataZoneServiceException"; diff --git a/clients/client-datazone/src/pagination/Interfaces.ts b/clients/client-datazone/src/pagination/Interfaces.ts index c113c3591932a..32c643f302a43 100644 --- a/clients/client-datazone/src/pagination/Interfaces.ts +++ b/clients/client-datazone/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DataZoneClient } from "../DataZoneClient"; diff --git a/clients/client-datazone/src/pagination/ListAccountPoolsPaginator.ts b/clients/client-datazone/src/pagination/ListAccountPoolsPaginator.ts index cbb1d7dbcbb99..ff039ebe7d008 100644 --- a/clients/client-datazone/src/pagination/ListAccountPoolsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListAccountPoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountPoolsCommand, diff --git a/clients/client-datazone/src/pagination/ListAccountsInAccountPoolPaginator.ts b/clients/client-datazone/src/pagination/ListAccountsInAccountPoolPaginator.ts index 8b7a8262bec0c..8f5abb56572a4 100644 --- a/clients/client-datazone/src/pagination/ListAccountsInAccountPoolPaginator.ts +++ b/clients/client-datazone/src/pagination/ListAccountsInAccountPoolPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountsInAccountPoolCommand, diff --git a/clients/client-datazone/src/pagination/ListAssetFiltersPaginator.ts b/clients/client-datazone/src/pagination/ListAssetFiltersPaginator.ts index ed4b12240484d..513a0b8d4058e 100644 --- a/clients/client-datazone/src/pagination/ListAssetFiltersPaginator.ts +++ b/clients/client-datazone/src/pagination/ListAssetFiltersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetFiltersCommand, diff --git a/clients/client-datazone/src/pagination/ListAssetRevisionsPaginator.ts b/clients/client-datazone/src/pagination/ListAssetRevisionsPaginator.ts index b0ae30fac0522..59e47db959f17 100644 --- a/clients/client-datazone/src/pagination/ListAssetRevisionsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListAssetRevisionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetRevisionsCommand, diff --git a/clients/client-datazone/src/pagination/ListConnectionsPaginator.ts b/clients/client-datazone/src/pagination/ListConnectionsPaginator.ts index c82252b1ab405..f80db6972e74c 100644 --- a/clients/client-datazone/src/pagination/ListConnectionsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectionsCommand, diff --git a/clients/client-datazone/src/pagination/ListDataProductRevisionsPaginator.ts b/clients/client-datazone/src/pagination/ListDataProductRevisionsPaginator.ts index 21ebe69c0c8e0..4df089950387d 100644 --- a/clients/client-datazone/src/pagination/ListDataProductRevisionsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListDataProductRevisionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataProductRevisionsCommand, diff --git a/clients/client-datazone/src/pagination/ListDataSourceRunActivitiesPaginator.ts b/clients/client-datazone/src/pagination/ListDataSourceRunActivitiesPaginator.ts index c8469b418b4c0..dba39aaa762d8 100644 --- a/clients/client-datazone/src/pagination/ListDataSourceRunActivitiesPaginator.ts +++ b/clients/client-datazone/src/pagination/ListDataSourceRunActivitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSourceRunActivitiesCommand, diff --git a/clients/client-datazone/src/pagination/ListDataSourceRunsPaginator.ts b/clients/client-datazone/src/pagination/ListDataSourceRunsPaginator.ts index 354084aa38766..a735de14566f4 100644 --- a/clients/client-datazone/src/pagination/ListDataSourceRunsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListDataSourceRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSourceRunsCommand, diff --git a/clients/client-datazone/src/pagination/ListDataSourcesPaginator.ts b/clients/client-datazone/src/pagination/ListDataSourcesPaginator.ts index 071777b25d61d..f3c66272aac98 100644 --- a/clients/client-datazone/src/pagination/ListDataSourcesPaginator.ts +++ b/clients/client-datazone/src/pagination/ListDataSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSourcesCommand, diff --git a/clients/client-datazone/src/pagination/ListDomainUnitsForParentPaginator.ts b/clients/client-datazone/src/pagination/ListDomainUnitsForParentPaginator.ts index bfd896d1c26b4..7aaf5761a83a0 100644 --- a/clients/client-datazone/src/pagination/ListDomainUnitsForParentPaginator.ts +++ b/clients/client-datazone/src/pagination/ListDomainUnitsForParentPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainUnitsForParentCommand, diff --git a/clients/client-datazone/src/pagination/ListDomainsPaginator.ts b/clients/client-datazone/src/pagination/ListDomainsPaginator.ts index ffc973bf2b700..28a7135a1019f 100644 --- a/clients/client-datazone/src/pagination/ListDomainsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainsCommand, ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand"; import { DataZoneClient } from "../DataZoneClient"; diff --git a/clients/client-datazone/src/pagination/ListEntityOwnersPaginator.ts b/clients/client-datazone/src/pagination/ListEntityOwnersPaginator.ts index d2a025d46e37d..8dc38580de96f 100644 --- a/clients/client-datazone/src/pagination/ListEntityOwnersPaginator.ts +++ b/clients/client-datazone/src/pagination/ListEntityOwnersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntityOwnersCommand, diff --git a/clients/client-datazone/src/pagination/ListEnvironmentActionsPaginator.ts b/clients/client-datazone/src/pagination/ListEnvironmentActionsPaginator.ts index d7c3f70a6e521..5451960e85986 100644 --- a/clients/client-datazone/src/pagination/ListEnvironmentActionsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListEnvironmentActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentActionsCommand, diff --git a/clients/client-datazone/src/pagination/ListEnvironmentBlueprintConfigurationsPaginator.ts b/clients/client-datazone/src/pagination/ListEnvironmentBlueprintConfigurationsPaginator.ts index 56062938d6eee..aac684811c75a 100644 --- a/clients/client-datazone/src/pagination/ListEnvironmentBlueprintConfigurationsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListEnvironmentBlueprintConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentBlueprintConfigurationsCommand, diff --git a/clients/client-datazone/src/pagination/ListEnvironmentBlueprintsPaginator.ts b/clients/client-datazone/src/pagination/ListEnvironmentBlueprintsPaginator.ts index 487b7399fba72..4b4c807bd0250 100644 --- a/clients/client-datazone/src/pagination/ListEnvironmentBlueprintsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListEnvironmentBlueprintsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentBlueprintsCommand, diff --git a/clients/client-datazone/src/pagination/ListEnvironmentProfilesPaginator.ts b/clients/client-datazone/src/pagination/ListEnvironmentProfilesPaginator.ts index df17696ce799c..ab5aac96e97b1 100644 --- a/clients/client-datazone/src/pagination/ListEnvironmentProfilesPaginator.ts +++ b/clients/client-datazone/src/pagination/ListEnvironmentProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentProfilesCommand, diff --git a/clients/client-datazone/src/pagination/ListEnvironmentsPaginator.ts b/clients/client-datazone/src/pagination/ListEnvironmentsPaginator.ts index 6fa4944b7dde6..3b0b0ca94b5fd 100644 --- a/clients/client-datazone/src/pagination/ListEnvironmentsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentsCommand, diff --git a/clients/client-datazone/src/pagination/ListJobRunsPaginator.ts b/clients/client-datazone/src/pagination/ListJobRunsPaginator.ts index df3ebf1d9c407..e6809bd652af6 100644 --- a/clients/client-datazone/src/pagination/ListJobRunsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListJobRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobRunsCommand, ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand"; import { DataZoneClient } from "../DataZoneClient"; diff --git a/clients/client-datazone/src/pagination/ListLineageEventsPaginator.ts b/clients/client-datazone/src/pagination/ListLineageEventsPaginator.ts index 2f216784bce34..9f9eac1208ab8 100644 --- a/clients/client-datazone/src/pagination/ListLineageEventsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListLineageEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLineageEventsCommand, diff --git a/clients/client-datazone/src/pagination/ListLineageNodeHistoryPaginator.ts b/clients/client-datazone/src/pagination/ListLineageNodeHistoryPaginator.ts index 46588723253ed..3f2ed61b78add 100644 --- a/clients/client-datazone/src/pagination/ListLineageNodeHistoryPaginator.ts +++ b/clients/client-datazone/src/pagination/ListLineageNodeHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLineageNodeHistoryCommand, diff --git a/clients/client-datazone/src/pagination/ListMetadataGenerationRunsPaginator.ts b/clients/client-datazone/src/pagination/ListMetadataGenerationRunsPaginator.ts index 2f0a44d7eb68c..74a8d976648cc 100644 --- a/clients/client-datazone/src/pagination/ListMetadataGenerationRunsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListMetadataGenerationRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMetadataGenerationRunsCommand, diff --git a/clients/client-datazone/src/pagination/ListNotificationsPaginator.ts b/clients/client-datazone/src/pagination/ListNotificationsPaginator.ts index 6e8aafcbb3d1a..6b2f63535f69e 100644 --- a/clients/client-datazone/src/pagination/ListNotificationsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListNotificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotificationsCommand, diff --git a/clients/client-datazone/src/pagination/ListPolicyGrantsPaginator.ts b/clients/client-datazone/src/pagination/ListPolicyGrantsPaginator.ts index adff6ddfae6df..131e591977105 100644 --- a/clients/client-datazone/src/pagination/ListPolicyGrantsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListPolicyGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPolicyGrantsCommand, diff --git a/clients/client-datazone/src/pagination/ListProjectMembershipsPaginator.ts b/clients/client-datazone/src/pagination/ListProjectMembershipsPaginator.ts index 6fd56930cbb9d..9b40be6f64ab3 100644 --- a/clients/client-datazone/src/pagination/ListProjectMembershipsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListProjectMembershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectMembershipsCommand, diff --git a/clients/client-datazone/src/pagination/ListProjectProfilesPaginator.ts b/clients/client-datazone/src/pagination/ListProjectProfilesPaginator.ts index 4b6e1e879e90b..b3577acca971a 100644 --- a/clients/client-datazone/src/pagination/ListProjectProfilesPaginator.ts +++ b/clients/client-datazone/src/pagination/ListProjectProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectProfilesCommand, diff --git a/clients/client-datazone/src/pagination/ListProjectsPaginator.ts b/clients/client-datazone/src/pagination/ListProjectsPaginator.ts index f8dab2cfe9cdf..ebd28fb0fe292 100644 --- a/clients/client-datazone/src/pagination/ListProjectsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectsCommand, diff --git a/clients/client-datazone/src/pagination/ListRulesPaginator.ts b/clients/client-datazone/src/pagination/ListRulesPaginator.ts index d3b0d75d3d208..64e5a653cae72 100644 --- a/clients/client-datazone/src/pagination/ListRulesPaginator.ts +++ b/clients/client-datazone/src/pagination/ListRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRulesCommand, ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand"; import { DataZoneClient } from "../DataZoneClient"; diff --git a/clients/client-datazone/src/pagination/ListSubscriptionGrantsPaginator.ts b/clients/client-datazone/src/pagination/ListSubscriptionGrantsPaginator.ts index dfc050c2d45ec..98b7661163dfe 100644 --- a/clients/client-datazone/src/pagination/ListSubscriptionGrantsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListSubscriptionGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubscriptionGrantsCommand, diff --git a/clients/client-datazone/src/pagination/ListSubscriptionRequestsPaginator.ts b/clients/client-datazone/src/pagination/ListSubscriptionRequestsPaginator.ts index 2646ebd01b1b7..9ab62bfd8c1bc 100644 --- a/clients/client-datazone/src/pagination/ListSubscriptionRequestsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListSubscriptionRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubscriptionRequestsCommand, diff --git a/clients/client-datazone/src/pagination/ListSubscriptionTargetsPaginator.ts b/clients/client-datazone/src/pagination/ListSubscriptionTargetsPaginator.ts index b671c2e5e9aef..5771cb9658cdb 100644 --- a/clients/client-datazone/src/pagination/ListSubscriptionTargetsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListSubscriptionTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubscriptionTargetsCommand, diff --git a/clients/client-datazone/src/pagination/ListSubscriptionsPaginator.ts b/clients/client-datazone/src/pagination/ListSubscriptionsPaginator.ts index d44eb2e8e18ac..f5a1d05185041 100644 --- a/clients/client-datazone/src/pagination/ListSubscriptionsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubscriptionsCommand, diff --git a/clients/client-datazone/src/pagination/ListTimeSeriesDataPointsPaginator.ts b/clients/client-datazone/src/pagination/ListTimeSeriesDataPointsPaginator.ts index 88564ac6b1ca6..20da4182570b7 100644 --- a/clients/client-datazone/src/pagination/ListTimeSeriesDataPointsPaginator.ts +++ b/clients/client-datazone/src/pagination/ListTimeSeriesDataPointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTimeSeriesDataPointsCommand, diff --git a/clients/client-datazone/src/pagination/SearchGroupProfilesPaginator.ts b/clients/client-datazone/src/pagination/SearchGroupProfilesPaginator.ts index b402dac6a2691..a7cb84f5c040a 100644 --- a/clients/client-datazone/src/pagination/SearchGroupProfilesPaginator.ts +++ b/clients/client-datazone/src/pagination/SearchGroupProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchGroupProfilesCommand, diff --git a/clients/client-datazone/src/pagination/SearchListingsPaginator.ts b/clients/client-datazone/src/pagination/SearchListingsPaginator.ts index e2b5b4d31b4bf..382a6f04b0af1 100644 --- a/clients/client-datazone/src/pagination/SearchListingsPaginator.ts +++ b/clients/client-datazone/src/pagination/SearchListingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchListingsCommand, diff --git a/clients/client-datazone/src/pagination/SearchPaginator.ts b/clients/client-datazone/src/pagination/SearchPaginator.ts index dba98c7dd7077..bc06bbf13dba9 100644 --- a/clients/client-datazone/src/pagination/SearchPaginator.ts +++ b/clients/client-datazone/src/pagination/SearchPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchCommand, SearchCommandInput, SearchCommandOutput } from "../commands/SearchCommand"; import { DataZoneClient } from "../DataZoneClient"; diff --git a/clients/client-datazone/src/pagination/SearchTypesPaginator.ts b/clients/client-datazone/src/pagination/SearchTypesPaginator.ts index 8568a8622bbe7..efc671e84d3c8 100644 --- a/clients/client-datazone/src/pagination/SearchTypesPaginator.ts +++ b/clients/client-datazone/src/pagination/SearchTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchTypesCommand, SearchTypesCommandInput, SearchTypesCommandOutput } from "../commands/SearchTypesCommand"; import { DataZoneClient } from "../DataZoneClient"; diff --git a/clients/client-datazone/src/pagination/SearchUserProfilesPaginator.ts b/clients/client-datazone/src/pagination/SearchUserProfilesPaginator.ts index 9e207298ccd7c..f70584187c310 100644 --- a/clients/client-datazone/src/pagination/SearchUserProfilesPaginator.ts +++ b/clients/client-datazone/src/pagination/SearchUserProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchUserProfilesCommand, diff --git a/clients/client-datazone/src/runtimeConfig.browser.ts b/clients/client-datazone/src/runtimeConfig.browser.ts index de02bae1d4f29..068ddecff75cf 100644 --- a/clients/client-datazone/src/runtimeConfig.browser.ts +++ b/clients/client-datazone/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataZoneClientConfig } from "./DataZoneClient"; + +import type { DataZoneClientConfig } from "./DataZoneClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-datazone/src/runtimeConfig.native.ts b/clients/client-datazone/src/runtimeConfig.native.ts index e519bb30cdbbb..fcba9ee6735b9 100644 --- a/clients/client-datazone/src/runtimeConfig.native.ts +++ b/clients/client-datazone/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DataZoneClientConfig } from "./DataZoneClient"; +import type { DataZoneClientConfig } from "./DataZoneClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-datazone/src/runtimeConfig.shared.ts b/clients/client-datazone/src/runtimeConfig.shared.ts index ac97b931a3ffe..1e9e90072967b 100644 --- a/clients/client-datazone/src/runtimeConfig.shared.ts +++ b/clients/client-datazone/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDataZoneHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DataZoneClientConfig } from "./DataZoneClient"; +import type { DataZoneClientConfig } from "./DataZoneClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-datazone/src/runtimeConfig.ts b/clients/client-datazone/src/runtimeConfig.ts index 88691d683814f..f62143fda1e3e 100644 --- a/clients/client-datazone/src/runtimeConfig.ts +++ b/clients/client-datazone/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DataZoneClientConfig } from "./DataZoneClient"; + +import type { DataZoneClientConfig } from "./DataZoneClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-datazone/src/runtimeExtensions.ts b/clients/client-datazone/src/runtimeExtensions.ts index d7640752f61fd..acf1c5991e7cf 100644 --- a/clients/client-datazone/src/runtimeExtensions.ts +++ b/clients/client-datazone/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DataZoneExtensionConfiguration } from "./extensionConfiguration"; +import type { DataZoneExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-datazone/src/schemas/schemas_0.ts b/clients/client-datazone/src/schemas/schemas_0.ts index 3ace144701b2e..b26b6d24a1271 100644 --- a/clients/client-datazone/src/schemas/schemas_0.ts +++ b/clients/client-datazone/src/schemas/schemas_0.ts @@ -1574,7 +1574,7 @@ const n0 = "com.amazonaws.datazone"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-dax/package.json b/clients/client-dax/package.json index e4ee87d8f1d15..34ebe816991b4 100644 --- a/clients/client-dax/package.json +++ b/clients/client-dax/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-dax/src/DAX.ts b/clients/client-dax/src/DAX.ts index 0642a5e909e5a..bf0ef9eee581d 100644 --- a/clients/client-dax/src/DAX.ts +++ b/clients/client-dax/src/DAX.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateClusterCommand, @@ -95,7 +95,7 @@ import { UpdateSubnetGroupCommandInput, UpdateSubnetGroupCommandOutput, } from "./commands/UpdateSubnetGroupCommand"; -import { DAXClient, DAXClientConfig } from "./DAXClient"; +import { DAXClient } from "./DAXClient"; const commands = { CreateClusterCommand, diff --git a/clients/client-dax/src/DAXClient.ts b/clients/client-dax/src/DAXClient.ts index 862281d0070c6..7c29bde87ef4d 100644 --- a/clients/client-dax/src/DAXClient.ts +++ b/clients/client-dax/src/DAXClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDAXHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand"; @@ -109,7 +118,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-dax/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-dax/src/auth/httpAuthExtensionConfiguration.ts index 3a637e0899aeb..8e64cb5da49d9 100644 --- a/clients/client-dax/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-dax/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DAXHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DAXHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-dax/src/auth/httpAuthSchemeProvider.ts b/clients/client-dax/src/auth/httpAuthSchemeProvider.ts index 6422012e97675..b6ffb62905de1 100644 --- a/clients/client-dax/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-dax/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DAXClientConfig, DAXClientResolvedConfig } from "../DAXClient"; +import { type DAXClientResolvedConfig, DAXClientConfig } from "../DAXClient"; /** * @internal diff --git a/clients/client-dax/src/commands/CreateClusterCommand.ts b/clients/client-dax/src/commands/CreateClusterCommand.ts index ffc7513663b71..6642776031c92 100644 --- a/clients/client-dax/src/commands/CreateClusterCommand.ts +++ b/clients/client-dax/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/CreateParameterGroupCommand.ts b/clients/client-dax/src/commands/CreateParameterGroupCommand.ts index 050eb69f7f560..2f04c84b31653 100644 --- a/clients/client-dax/src/commands/CreateParameterGroupCommand.ts +++ b/clients/client-dax/src/commands/CreateParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateParameterGroupRequest, CreateParameterGroupResponse } from "../models/models_0"; +import type { CreateParameterGroupRequest, CreateParameterGroupResponse } from "../models/models_0"; import { CreateParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/CreateSubnetGroupCommand.ts b/clients/client-dax/src/commands/CreateSubnetGroupCommand.ts index 972e3e6eeedbc..860ebff58f478 100644 --- a/clients/client-dax/src/commands/CreateSubnetGroupCommand.ts +++ b/clients/client-dax/src/commands/CreateSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubnetGroupRequest, CreateSubnetGroupResponse } from "../models/models_0"; +import type { CreateSubnetGroupRequest, CreateSubnetGroupResponse } from "../models/models_0"; import { CreateSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DecreaseReplicationFactorCommand.ts b/clients/client-dax/src/commands/DecreaseReplicationFactorCommand.ts index 5aa9a8d9eb9b9..d92f72780e8f7 100644 --- a/clients/client-dax/src/commands/DecreaseReplicationFactorCommand.ts +++ b/clients/client-dax/src/commands/DecreaseReplicationFactorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DecreaseReplicationFactorRequest, DecreaseReplicationFactorResponse } from "../models/models_0"; +import type { DecreaseReplicationFactorRequest, DecreaseReplicationFactorResponse } from "../models/models_0"; import { DecreaseReplicationFactor } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DeleteClusterCommand.ts b/clients/client-dax/src/commands/DeleteClusterCommand.ts index 4fd503fd7f0af..035a721ff8617 100644 --- a/clients/client-dax/src/commands/DeleteClusterCommand.ts +++ b/clients/client-dax/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DeleteParameterGroupCommand.ts b/clients/client-dax/src/commands/DeleteParameterGroupCommand.ts index f4afe7ceb58b2..547c092029d13 100644 --- a/clients/client-dax/src/commands/DeleteParameterGroupCommand.ts +++ b/clients/client-dax/src/commands/DeleteParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteParameterGroupRequest, DeleteParameterGroupResponse } from "../models/models_0"; +import type { DeleteParameterGroupRequest, DeleteParameterGroupResponse } from "../models/models_0"; import { DeleteParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DeleteSubnetGroupCommand.ts b/clients/client-dax/src/commands/DeleteSubnetGroupCommand.ts index 1c43c4d4b86dc..536267d9ff93c 100644 --- a/clients/client-dax/src/commands/DeleteSubnetGroupCommand.ts +++ b/clients/client-dax/src/commands/DeleteSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubnetGroupRequest, DeleteSubnetGroupResponse } from "../models/models_0"; +import type { DeleteSubnetGroupRequest, DeleteSubnetGroupResponse } from "../models/models_0"; import { DeleteSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DescribeClustersCommand.ts b/clients/client-dax/src/commands/DescribeClustersCommand.ts index d51488afba0c8..97a4d23e42ae9 100644 --- a/clients/client-dax/src/commands/DescribeClustersCommand.ts +++ b/clients/client-dax/src/commands/DescribeClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0"; +import type { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0"; import { DescribeClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DescribeDefaultParametersCommand.ts b/clients/client-dax/src/commands/DescribeDefaultParametersCommand.ts index f91987d77194f..96607178d4903 100644 --- a/clients/client-dax/src/commands/DescribeDefaultParametersCommand.ts +++ b/clients/client-dax/src/commands/DescribeDefaultParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDefaultParametersRequest, DescribeDefaultParametersResponse } from "../models/models_0"; +import type { DescribeDefaultParametersRequest, DescribeDefaultParametersResponse } from "../models/models_0"; import { DescribeDefaultParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DescribeEventsCommand.ts b/clients/client-dax/src/commands/DescribeEventsCommand.ts index 05de440f47116..00aed6a9c25fb 100644 --- a/clients/client-dax/src/commands/DescribeEventsCommand.ts +++ b/clients/client-dax/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsRequest, DescribeEventsResponse } from "../models/models_0"; +import type { DescribeEventsRequest, DescribeEventsResponse } from "../models/models_0"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DescribeParameterGroupsCommand.ts b/clients/client-dax/src/commands/DescribeParameterGroupsCommand.ts index afda76520306a..03b88fd4fef0e 100644 --- a/clients/client-dax/src/commands/DescribeParameterGroupsCommand.ts +++ b/clients/client-dax/src/commands/DescribeParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeParameterGroupsRequest, DescribeParameterGroupsResponse } from "../models/models_0"; +import type { DescribeParameterGroupsRequest, DescribeParameterGroupsResponse } from "../models/models_0"; import { DescribeParameterGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DescribeParametersCommand.ts b/clients/client-dax/src/commands/DescribeParametersCommand.ts index 57a12aa409e48..c709ae2f66d62 100644 --- a/clients/client-dax/src/commands/DescribeParametersCommand.ts +++ b/clients/client-dax/src/commands/DescribeParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeParametersRequest, DescribeParametersResponse } from "../models/models_0"; +import type { DescribeParametersRequest, DescribeParametersResponse } from "../models/models_0"; import { DescribeParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/DescribeSubnetGroupsCommand.ts b/clients/client-dax/src/commands/DescribeSubnetGroupsCommand.ts index e723e35ed1d88..5a55215b1088c 100644 --- a/clients/client-dax/src/commands/DescribeSubnetGroupsCommand.ts +++ b/clients/client-dax/src/commands/DescribeSubnetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSubnetGroupsRequest, DescribeSubnetGroupsResponse } from "../models/models_0"; +import type { DescribeSubnetGroupsRequest, DescribeSubnetGroupsResponse } from "../models/models_0"; import { DescribeSubnetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/IncreaseReplicationFactorCommand.ts b/clients/client-dax/src/commands/IncreaseReplicationFactorCommand.ts index 820e9f9bd49ba..a163b3ddd3cab 100644 --- a/clients/client-dax/src/commands/IncreaseReplicationFactorCommand.ts +++ b/clients/client-dax/src/commands/IncreaseReplicationFactorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IncreaseReplicationFactorRequest, IncreaseReplicationFactorResponse } from "../models/models_0"; +import type { IncreaseReplicationFactorRequest, IncreaseReplicationFactorResponse } from "../models/models_0"; import { IncreaseReplicationFactor } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/ListTagsCommand.ts b/clients/client-dax/src/commands/ListTagsCommand.ts index 1b88c9cad6fca..bbae821b122e4 100644 --- a/clients/client-dax/src/commands/ListTagsCommand.ts +++ b/clients/client-dax/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsRequest, ListTagsResponse } from "../models/models_0"; +import type { ListTagsRequest, ListTagsResponse } from "../models/models_0"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/RebootNodeCommand.ts b/clients/client-dax/src/commands/RebootNodeCommand.ts index ee9b9abad157c..9085edead08fc 100644 --- a/clients/client-dax/src/commands/RebootNodeCommand.ts +++ b/clients/client-dax/src/commands/RebootNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootNodeRequest, RebootNodeResponse } from "../models/models_0"; +import type { RebootNodeRequest, RebootNodeResponse } from "../models/models_0"; import { RebootNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/TagResourceCommand.ts b/clients/client-dax/src/commands/TagResourceCommand.ts index 283ceaed803f3..903a955a91946 100644 --- a/clients/client-dax/src/commands/TagResourceCommand.ts +++ b/clients/client-dax/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/UntagResourceCommand.ts b/clients/client-dax/src/commands/UntagResourceCommand.ts index efa1ced2b4053..9e534ce053753 100644 --- a/clients/client-dax/src/commands/UntagResourceCommand.ts +++ b/clients/client-dax/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/UpdateClusterCommand.ts b/clients/client-dax/src/commands/UpdateClusterCommand.ts index 3815b8c0cf188..3345a35bd9d1f 100644 --- a/clients/client-dax/src/commands/UpdateClusterCommand.ts +++ b/clients/client-dax/src/commands/UpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; +import type { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; import { UpdateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/UpdateParameterGroupCommand.ts b/clients/client-dax/src/commands/UpdateParameterGroupCommand.ts index be008c12a47a8..bdb9f7a84ff16 100644 --- a/clients/client-dax/src/commands/UpdateParameterGroupCommand.ts +++ b/clients/client-dax/src/commands/UpdateParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateParameterGroupRequest, UpdateParameterGroupResponse } from "../models/models_0"; +import type { UpdateParameterGroupRequest, UpdateParameterGroupResponse } from "../models/models_0"; import { UpdateParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/commands/UpdateSubnetGroupCommand.ts b/clients/client-dax/src/commands/UpdateSubnetGroupCommand.ts index 5250b827fba86..d2f08ac3c5210 100644 --- a/clients/client-dax/src/commands/UpdateSubnetGroupCommand.ts +++ b/clients/client-dax/src/commands/UpdateSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; +import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubnetGroupRequest, UpdateSubnetGroupResponse } from "../models/models_0"; +import type { UpdateSubnetGroupRequest, UpdateSubnetGroupResponse } from "../models/models_0"; import { UpdateSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dax/src/endpoint/EndpointParameters.ts b/clients/client-dax/src/endpoint/EndpointParameters.ts index 7f85cf39a978d..84576de6d03d6 100644 --- a/clients/client-dax/src/endpoint/EndpointParameters.ts +++ b/clients/client-dax/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-dax/src/endpoint/endpointResolver.ts b/clients/client-dax/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-dax/src/endpoint/endpointResolver.ts +++ b/clients/client-dax/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-dax/src/extensionConfiguration.ts b/clients/client-dax/src/extensionConfiguration.ts index ec4430e67ae08..221146780cda3 100644 --- a/clients/client-dax/src/extensionConfiguration.ts +++ b/clients/client-dax/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-dax/src/models/DAXServiceException.ts b/clients/client-dax/src/models/DAXServiceException.ts index 1c7b7096891f9..5c52ad81aeee5 100644 --- a/clients/client-dax/src/models/DAXServiceException.ts +++ b/clients/client-dax/src/models/DAXServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-dax/src/models/errors.ts b/clients/client-dax/src/models/errors.ts index 45fa86aa05657..156cab639d480 100644 --- a/clients/client-dax/src/models/errors.ts +++ b/clients/client-dax/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DAXServiceException as __BaseException } from "./DAXServiceException"; diff --git a/clients/client-dax/src/runtimeConfig.browser.ts b/clients/client-dax/src/runtimeConfig.browser.ts index 772b17b98805e..aedd0f6a3e214 100644 --- a/clients/client-dax/src/runtimeConfig.browser.ts +++ b/clients/client-dax/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DAXClientConfig } from "./DAXClient"; + +import type { DAXClientConfig } from "./DAXClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-dax/src/runtimeConfig.native.ts b/clients/client-dax/src/runtimeConfig.native.ts index 9825bae7a0ff6..6dfcf75916bf8 100644 --- a/clients/client-dax/src/runtimeConfig.native.ts +++ b/clients/client-dax/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DAXClientConfig } from "./DAXClient"; +import type { DAXClientConfig } from "./DAXClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-dax/src/runtimeConfig.shared.ts b/clients/client-dax/src/runtimeConfig.shared.ts index 1d2edbbe69ed0..1eb63f746b6a0 100644 --- a/clients/client-dax/src/runtimeConfig.shared.ts +++ b/clients/client-dax/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDAXHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DAXClientConfig } from "./DAXClient"; +import type { DAXClientConfig } from "./DAXClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-dax/src/runtimeConfig.ts b/clients/client-dax/src/runtimeConfig.ts index 0ea5c5860fe0e..d56213ca07d46 100644 --- a/clients/client-dax/src/runtimeConfig.ts +++ b/clients/client-dax/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DAXClientConfig } from "./DAXClient"; + +import type { DAXClientConfig } from "./DAXClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-dax/src/runtimeExtensions.ts b/clients/client-dax/src/runtimeExtensions.ts index fe93a734029a7..3dd7ce04847e3 100644 --- a/clients/client-dax/src/runtimeExtensions.ts +++ b/clients/client-dax/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DAXExtensionConfiguration } from "./extensionConfiguration"; +import type { DAXExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-dax/src/schemas/schemas_0.ts b/clients/client-dax/src/schemas/schemas_0.ts index 168c0b60c4eb6..742da34baff3b 100644 --- a/clients/client-dax/src/schemas/schemas_0.ts +++ b/clients/client-dax/src/schemas/schemas_0.ts @@ -201,7 +201,7 @@ const n0 = "com.amazonaws.dax"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { DAXServiceException as __DAXServiceException } from "../models/DAXServiceException"; import { diff --git a/clients/client-deadline/package.json b/clients/client-deadline/package.json index 710e4f8e0d679..5d6787b93e160 100644 --- a/clients/client-deadline/package.json +++ b/clients/client-deadline/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-deadline/src/Deadline.ts b/clients/client-deadline/src/Deadline.ts index 50f6eb176122a..8e6c225b2a8f2 100644 --- a/clients/client-deadline/src/Deadline.ts +++ b/clients/client-deadline/src/Deadline.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateMemberToFarmCommand, @@ -407,7 +407,7 @@ import { UpdateWorkerScheduleCommandInput, UpdateWorkerScheduleCommandOutput, } from "./commands/UpdateWorkerScheduleCommand"; -import { DeadlineClient, DeadlineClientConfig } from "./DeadlineClient"; +import { DeadlineClient } from "./DeadlineClient"; const commands = { AssociateMemberToFarmCommand, diff --git a/clients/client-deadline/src/DeadlineClient.ts b/clients/client-deadline/src/DeadlineClient.ts index f4dc51d23337b..f6bc174a06f1a 100644 --- a/clients/client-deadline/src/DeadlineClient.ts +++ b/clients/client-deadline/src/DeadlineClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDeadlineHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -318,7 +327,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-deadline/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-deadline/src/auth/httpAuthExtensionConfiguration.ts index ff96e802d9a27..88b5ebf422b2e 100644 --- a/clients/client-deadline/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-deadline/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DeadlineHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DeadlineHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-deadline/src/auth/httpAuthSchemeProvider.ts b/clients/client-deadline/src/auth/httpAuthSchemeProvider.ts index 8fffe5d402a9e..2dac1b529a430 100644 --- a/clients/client-deadline/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-deadline/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DeadlineClientConfig, DeadlineClientResolvedConfig } from "../DeadlineClient"; +import { type DeadlineClientResolvedConfig, DeadlineClientConfig } from "../DeadlineClient"; /** * @internal diff --git a/clients/client-deadline/src/commands/AssociateMemberToFarmCommand.ts b/clients/client-deadline/src/commands/AssociateMemberToFarmCommand.ts index 791125afe17cb..cb62dd0672b3c 100644 --- a/clients/client-deadline/src/commands/AssociateMemberToFarmCommand.ts +++ b/clients/client-deadline/src/commands/AssociateMemberToFarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateMemberToFarmRequest, AssociateMemberToFarmResponse } from "../models/models_0"; +import type { AssociateMemberToFarmRequest, AssociateMemberToFarmResponse } from "../models/models_0"; import { AssociateMemberToFarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/AssociateMemberToFleetCommand.ts b/clients/client-deadline/src/commands/AssociateMemberToFleetCommand.ts index e4048e2da5022..7ab72b6360253 100644 --- a/clients/client-deadline/src/commands/AssociateMemberToFleetCommand.ts +++ b/clients/client-deadline/src/commands/AssociateMemberToFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateMemberToFleetRequest, AssociateMemberToFleetResponse } from "../models/models_0"; +import type { AssociateMemberToFleetRequest, AssociateMemberToFleetResponse } from "../models/models_0"; import { AssociateMemberToFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/AssociateMemberToJobCommand.ts b/clients/client-deadline/src/commands/AssociateMemberToJobCommand.ts index eb1906ee40c8f..55bceadddf036 100644 --- a/clients/client-deadline/src/commands/AssociateMemberToJobCommand.ts +++ b/clients/client-deadline/src/commands/AssociateMemberToJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateMemberToJobRequest, AssociateMemberToJobResponse } from "../models/models_0"; +import type { AssociateMemberToJobRequest, AssociateMemberToJobResponse } from "../models/models_0"; import { AssociateMemberToJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/AssociateMemberToQueueCommand.ts b/clients/client-deadline/src/commands/AssociateMemberToQueueCommand.ts index a5fec65b71d11..56b13159130ce 100644 --- a/clients/client-deadline/src/commands/AssociateMemberToQueueCommand.ts +++ b/clients/client-deadline/src/commands/AssociateMemberToQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateMemberToQueueRequest, AssociateMemberToQueueResponse } from "../models/models_0"; +import type { AssociateMemberToQueueRequest, AssociateMemberToQueueResponse } from "../models/models_0"; import { AssociateMemberToQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/AssumeFleetRoleForReadCommand.ts b/clients/client-deadline/src/commands/AssumeFleetRoleForReadCommand.ts index 2985d929259e1..5257030f5b21a 100644 --- a/clients/client-deadline/src/commands/AssumeFleetRoleForReadCommand.ts +++ b/clients/client-deadline/src/commands/AssumeFleetRoleForReadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeFleetRoleForReadRequest, AssumeFleetRoleForReadResponse } from "../models/models_0"; +import type { AssumeFleetRoleForReadRequest, AssumeFleetRoleForReadResponse } from "../models/models_0"; import { AssumeFleetRoleForRead } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/AssumeFleetRoleForWorkerCommand.ts b/clients/client-deadline/src/commands/AssumeFleetRoleForWorkerCommand.ts index c1b3f5d28b348..34ab8e05ccc5b 100644 --- a/clients/client-deadline/src/commands/AssumeFleetRoleForWorkerCommand.ts +++ b/clients/client-deadline/src/commands/AssumeFleetRoleForWorkerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeFleetRoleForWorkerRequest, AssumeFleetRoleForWorkerResponse } from "../models/models_0"; +import type { AssumeFleetRoleForWorkerRequest, AssumeFleetRoleForWorkerResponse } from "../models/models_0"; import { AssumeFleetRoleForWorker } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/AssumeQueueRoleForReadCommand.ts b/clients/client-deadline/src/commands/AssumeQueueRoleForReadCommand.ts index 0fa3f133ef497..926a8560d21a7 100644 --- a/clients/client-deadline/src/commands/AssumeQueueRoleForReadCommand.ts +++ b/clients/client-deadline/src/commands/AssumeQueueRoleForReadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeQueueRoleForReadRequest, AssumeQueueRoleForReadResponse } from "../models/models_0"; +import type { AssumeQueueRoleForReadRequest, AssumeQueueRoleForReadResponse } from "../models/models_0"; import { AssumeQueueRoleForRead } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/AssumeQueueRoleForUserCommand.ts b/clients/client-deadline/src/commands/AssumeQueueRoleForUserCommand.ts index 1776818df6d67..6cf8bc7b8dc38 100644 --- a/clients/client-deadline/src/commands/AssumeQueueRoleForUserCommand.ts +++ b/clients/client-deadline/src/commands/AssumeQueueRoleForUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeQueueRoleForUserRequest, AssumeQueueRoleForUserResponse } from "../models/models_0"; +import type { AssumeQueueRoleForUserRequest, AssumeQueueRoleForUserResponse } from "../models/models_0"; import { AssumeQueueRoleForUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/AssumeQueueRoleForWorkerCommand.ts b/clients/client-deadline/src/commands/AssumeQueueRoleForWorkerCommand.ts index e7225cc52c394..36223dc4dcbe6 100644 --- a/clients/client-deadline/src/commands/AssumeQueueRoleForWorkerCommand.ts +++ b/clients/client-deadline/src/commands/AssumeQueueRoleForWorkerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeQueueRoleForWorkerRequest, AssumeQueueRoleForWorkerResponse } from "../models/models_0"; +import type { AssumeQueueRoleForWorkerRequest, AssumeQueueRoleForWorkerResponse } from "../models/models_0"; import { AssumeQueueRoleForWorker } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/BatchGetJobEntityCommand.ts b/clients/client-deadline/src/commands/BatchGetJobEntityCommand.ts index bcfa01358ed81..b57f7841feb00 100644 --- a/clients/client-deadline/src/commands/BatchGetJobEntityCommand.ts +++ b/clients/client-deadline/src/commands/BatchGetJobEntityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetJobEntityRequest, BatchGetJobEntityResponse } from "../models/models_0"; +import type { BatchGetJobEntityRequest, BatchGetJobEntityResponse } from "../models/models_0"; import { BatchGetJobEntity } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CopyJobTemplateCommand.ts b/clients/client-deadline/src/commands/CopyJobTemplateCommand.ts index 074123f2debdd..dc47409beab86 100644 --- a/clients/client-deadline/src/commands/CopyJobTemplateCommand.ts +++ b/clients/client-deadline/src/commands/CopyJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyJobTemplateRequest, CopyJobTemplateResponse } from "../models/models_0"; +import type { CopyJobTemplateRequest, CopyJobTemplateResponse } from "../models/models_0"; import { CopyJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateBudgetCommand.ts b/clients/client-deadline/src/commands/CreateBudgetCommand.ts index 362146559ddb0..2d8dc14289fb5 100644 --- a/clients/client-deadline/src/commands/CreateBudgetCommand.ts +++ b/clients/client-deadline/src/commands/CreateBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBudgetRequest, CreateBudgetResponse } from "../models/models_0"; +import type { CreateBudgetRequest, CreateBudgetResponse } from "../models/models_0"; import { CreateBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateFarmCommand.ts b/clients/client-deadline/src/commands/CreateFarmCommand.ts index 453026b0a2440..c2f4b9254d92d 100644 --- a/clients/client-deadline/src/commands/CreateFarmCommand.ts +++ b/clients/client-deadline/src/commands/CreateFarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFarmRequest, CreateFarmResponse } from "../models/models_0"; +import type { CreateFarmRequest, CreateFarmResponse } from "../models/models_0"; import { CreateFarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateFleetCommand.ts b/clients/client-deadline/src/commands/CreateFleetCommand.ts index e457a18743294..2724e441542ed 100644 --- a/clients/client-deadline/src/commands/CreateFleetCommand.ts +++ b/clients/client-deadline/src/commands/CreateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFleetRequest, CreateFleetResponse } from "../models/models_0"; +import type { CreateFleetRequest, CreateFleetResponse } from "../models/models_0"; import { CreateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateJobCommand.ts b/clients/client-deadline/src/commands/CreateJobCommand.ts index c8dede85cb360..c611b772dd62a 100644 --- a/clients/client-deadline/src/commands/CreateJobCommand.ts +++ b/clients/client-deadline/src/commands/CreateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJobRequest, CreateJobResponse } from "../models/models_0"; +import type { CreateJobRequest, CreateJobResponse } from "../models/models_0"; import { CreateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateLicenseEndpointCommand.ts b/clients/client-deadline/src/commands/CreateLicenseEndpointCommand.ts index acb4bb0f0e2b9..80a59c4056b9d 100644 --- a/clients/client-deadline/src/commands/CreateLicenseEndpointCommand.ts +++ b/clients/client-deadline/src/commands/CreateLicenseEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLicenseEndpointRequest, CreateLicenseEndpointResponse } from "../models/models_0"; +import type { CreateLicenseEndpointRequest, CreateLicenseEndpointResponse } from "../models/models_0"; import { CreateLicenseEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateLimitCommand.ts b/clients/client-deadline/src/commands/CreateLimitCommand.ts index 2f60be8bd5c07..52aacf8150019 100644 --- a/clients/client-deadline/src/commands/CreateLimitCommand.ts +++ b/clients/client-deadline/src/commands/CreateLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLimitRequest, CreateLimitResponse } from "../models/models_0"; +import type { CreateLimitRequest, CreateLimitResponse } from "../models/models_0"; import { CreateLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateMonitorCommand.ts b/clients/client-deadline/src/commands/CreateMonitorCommand.ts index 83db4cb8da054..472e23c183ca1 100644 --- a/clients/client-deadline/src/commands/CreateMonitorCommand.ts +++ b/clients/client-deadline/src/commands/CreateMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMonitorRequest, CreateMonitorResponse } from "../models/models_0"; +import type { CreateMonitorRequest, CreateMonitorResponse } from "../models/models_0"; import { CreateMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateQueueCommand.ts b/clients/client-deadline/src/commands/CreateQueueCommand.ts index e33b2282b637b..d2a9d80f1f49e 100644 --- a/clients/client-deadline/src/commands/CreateQueueCommand.ts +++ b/clients/client-deadline/src/commands/CreateQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQueueRequest, CreateQueueResponse } from "../models/models_0"; +import type { CreateQueueRequest, CreateQueueResponse } from "../models/models_0"; import { CreateQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateQueueEnvironmentCommand.ts b/clients/client-deadline/src/commands/CreateQueueEnvironmentCommand.ts index b0c3307aa6211..7bd0bad566f8f 100644 --- a/clients/client-deadline/src/commands/CreateQueueEnvironmentCommand.ts +++ b/clients/client-deadline/src/commands/CreateQueueEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQueueEnvironmentRequest, CreateQueueEnvironmentResponse } from "../models/models_0"; +import type { CreateQueueEnvironmentRequest, CreateQueueEnvironmentResponse } from "../models/models_0"; import { CreateQueueEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateQueueFleetAssociationCommand.ts b/clients/client-deadline/src/commands/CreateQueueFleetAssociationCommand.ts index e9b8e50dfd5c8..dcab6ffa9edc6 100644 --- a/clients/client-deadline/src/commands/CreateQueueFleetAssociationCommand.ts +++ b/clients/client-deadline/src/commands/CreateQueueFleetAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQueueFleetAssociationRequest, CreateQueueFleetAssociationResponse } from "../models/models_0"; +import type { CreateQueueFleetAssociationRequest, CreateQueueFleetAssociationResponse } from "../models/models_0"; import { CreateQueueFleetAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateQueueLimitAssociationCommand.ts b/clients/client-deadline/src/commands/CreateQueueLimitAssociationCommand.ts index 8795dbd64b6f5..2e8d344109f5f 100644 --- a/clients/client-deadline/src/commands/CreateQueueLimitAssociationCommand.ts +++ b/clients/client-deadline/src/commands/CreateQueueLimitAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQueueLimitAssociationRequest, CreateQueueLimitAssociationResponse } from "../models/models_0"; +import type { CreateQueueLimitAssociationRequest, CreateQueueLimitAssociationResponse } from "../models/models_0"; import { CreateQueueLimitAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateStorageProfileCommand.ts b/clients/client-deadline/src/commands/CreateStorageProfileCommand.ts index d5c2ff6f4e38b..e0f27196e60e4 100644 --- a/clients/client-deadline/src/commands/CreateStorageProfileCommand.ts +++ b/clients/client-deadline/src/commands/CreateStorageProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStorageProfileRequest, CreateStorageProfileResponse } from "../models/models_0"; +import type { CreateStorageProfileRequest, CreateStorageProfileResponse } from "../models/models_0"; import { CreateStorageProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/CreateWorkerCommand.ts b/clients/client-deadline/src/commands/CreateWorkerCommand.ts index 70b02bafc06b8..1bf0099392928 100644 --- a/clients/client-deadline/src/commands/CreateWorkerCommand.ts +++ b/clients/client-deadline/src/commands/CreateWorkerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkerRequest, CreateWorkerResponse } from "../models/models_0"; +import type { CreateWorkerRequest, CreateWorkerResponse } from "../models/models_0"; import { CreateWorker } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteBudgetCommand.ts b/clients/client-deadline/src/commands/DeleteBudgetCommand.ts index 8ddb4d0725b1f..1d02b48644421 100644 --- a/clients/client-deadline/src/commands/DeleteBudgetCommand.ts +++ b/clients/client-deadline/src/commands/DeleteBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBudgetRequest, DeleteBudgetResponse } from "../models/models_0"; +import type { DeleteBudgetRequest, DeleteBudgetResponse } from "../models/models_0"; import { DeleteBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteFarmCommand.ts b/clients/client-deadline/src/commands/DeleteFarmCommand.ts index a6f45cafb7b00..d9da61348e879 100644 --- a/clients/client-deadline/src/commands/DeleteFarmCommand.ts +++ b/clients/client-deadline/src/commands/DeleteFarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFarmRequest, DeleteFarmResponse } from "../models/models_0"; +import type { DeleteFarmRequest, DeleteFarmResponse } from "../models/models_0"; import { DeleteFarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteFleetCommand.ts b/clients/client-deadline/src/commands/DeleteFleetCommand.ts index 3cf986fc8f58d..06de002ae35d3 100644 --- a/clients/client-deadline/src/commands/DeleteFleetCommand.ts +++ b/clients/client-deadline/src/commands/DeleteFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFleetRequest, DeleteFleetResponse } from "../models/models_0"; +import type { DeleteFleetRequest, DeleteFleetResponse } from "../models/models_0"; import { DeleteFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteLicenseEndpointCommand.ts b/clients/client-deadline/src/commands/DeleteLicenseEndpointCommand.ts index 12c0b6f3a9cbc..c55cbec6008a2 100644 --- a/clients/client-deadline/src/commands/DeleteLicenseEndpointCommand.ts +++ b/clients/client-deadline/src/commands/DeleteLicenseEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLicenseEndpointRequest, DeleteLicenseEndpointResponse } from "../models/models_0"; +import type { DeleteLicenseEndpointRequest, DeleteLicenseEndpointResponse } from "../models/models_0"; import { DeleteLicenseEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteLimitCommand.ts b/clients/client-deadline/src/commands/DeleteLimitCommand.ts index 93f473aae9eee..a8da529599b15 100644 --- a/clients/client-deadline/src/commands/DeleteLimitCommand.ts +++ b/clients/client-deadline/src/commands/DeleteLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLimitRequest, DeleteLimitResponse } from "../models/models_0"; +import type { DeleteLimitRequest, DeleteLimitResponse } from "../models/models_0"; import { DeleteLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteMeteredProductCommand.ts b/clients/client-deadline/src/commands/DeleteMeteredProductCommand.ts index dd5dfb93746d5..ec1478450fa6f 100644 --- a/clients/client-deadline/src/commands/DeleteMeteredProductCommand.ts +++ b/clients/client-deadline/src/commands/DeleteMeteredProductCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMeteredProductRequest, DeleteMeteredProductResponse } from "../models/models_0"; +import type { DeleteMeteredProductRequest, DeleteMeteredProductResponse } from "../models/models_0"; import { DeleteMeteredProduct } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteMonitorCommand.ts b/clients/client-deadline/src/commands/DeleteMonitorCommand.ts index dffef2602007f..f633f807eff94 100644 --- a/clients/client-deadline/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-deadline/src/commands/DeleteMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMonitorRequest, DeleteMonitorResponse } from "../models/models_1"; +import type { DeleteMonitorRequest, DeleteMonitorResponse } from "../models/models_1"; import { DeleteMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteQueueCommand.ts b/clients/client-deadline/src/commands/DeleteQueueCommand.ts index ef12a29ff23ad..a6a34992b8bfd 100644 --- a/clients/client-deadline/src/commands/DeleteQueueCommand.ts +++ b/clients/client-deadline/src/commands/DeleteQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_0"; +import type { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_0"; import { DeleteQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteQueueEnvironmentCommand.ts b/clients/client-deadline/src/commands/DeleteQueueEnvironmentCommand.ts index 030d16d6724ba..7e374ac5e1a4c 100644 --- a/clients/client-deadline/src/commands/DeleteQueueEnvironmentCommand.ts +++ b/clients/client-deadline/src/commands/DeleteQueueEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueueEnvironmentRequest, DeleteQueueEnvironmentResponse } from "../models/models_0"; +import type { DeleteQueueEnvironmentRequest, DeleteQueueEnvironmentResponse } from "../models/models_0"; import { DeleteQueueEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteQueueFleetAssociationCommand.ts b/clients/client-deadline/src/commands/DeleteQueueFleetAssociationCommand.ts index c497f04aea63c..e5a730c7a3aae 100644 --- a/clients/client-deadline/src/commands/DeleteQueueFleetAssociationCommand.ts +++ b/clients/client-deadline/src/commands/DeleteQueueFleetAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueueFleetAssociationRequest, DeleteQueueFleetAssociationResponse } from "../models/models_0"; +import type { DeleteQueueFleetAssociationRequest, DeleteQueueFleetAssociationResponse } from "../models/models_0"; import { DeleteQueueFleetAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteQueueLimitAssociationCommand.ts b/clients/client-deadline/src/commands/DeleteQueueLimitAssociationCommand.ts index b532f9a95d6fc..4a59e9b542ad3 100644 --- a/clients/client-deadline/src/commands/DeleteQueueLimitAssociationCommand.ts +++ b/clients/client-deadline/src/commands/DeleteQueueLimitAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueueLimitAssociationRequest, DeleteQueueLimitAssociationResponse } from "../models/models_0"; +import type { DeleteQueueLimitAssociationRequest, DeleteQueueLimitAssociationResponse } from "../models/models_0"; import { DeleteQueueLimitAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteStorageProfileCommand.ts b/clients/client-deadline/src/commands/DeleteStorageProfileCommand.ts index c8e1f42f7c203..76d2f23415978 100644 --- a/clients/client-deadline/src/commands/DeleteStorageProfileCommand.ts +++ b/clients/client-deadline/src/commands/DeleteStorageProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStorageProfileRequest, DeleteStorageProfileResponse } from "../models/models_0"; +import type { DeleteStorageProfileRequest, DeleteStorageProfileResponse } from "../models/models_0"; import { DeleteStorageProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DeleteWorkerCommand.ts b/clients/client-deadline/src/commands/DeleteWorkerCommand.ts index 13f2de176f7af..258aa997be2b3 100644 --- a/clients/client-deadline/src/commands/DeleteWorkerCommand.ts +++ b/clients/client-deadline/src/commands/DeleteWorkerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkerRequest, DeleteWorkerResponse } from "../models/models_0"; +import type { DeleteWorkerRequest, DeleteWorkerResponse } from "../models/models_0"; import { DeleteWorker } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DisassociateMemberFromFarmCommand.ts b/clients/client-deadline/src/commands/DisassociateMemberFromFarmCommand.ts index 1c69f838626f2..9b166b68e4c4a 100644 --- a/clients/client-deadline/src/commands/DisassociateMemberFromFarmCommand.ts +++ b/clients/client-deadline/src/commands/DisassociateMemberFromFarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateMemberFromFarmRequest, DisassociateMemberFromFarmResponse } from "../models/models_0"; +import type { DisassociateMemberFromFarmRequest, DisassociateMemberFromFarmResponse } from "../models/models_0"; import { DisassociateMemberFromFarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DisassociateMemberFromFleetCommand.ts b/clients/client-deadline/src/commands/DisassociateMemberFromFleetCommand.ts index 59b3a38da24fc..eb90fa7beb195 100644 --- a/clients/client-deadline/src/commands/DisassociateMemberFromFleetCommand.ts +++ b/clients/client-deadline/src/commands/DisassociateMemberFromFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateMemberFromFleetRequest, DisassociateMemberFromFleetResponse } from "../models/models_0"; +import type { DisassociateMemberFromFleetRequest, DisassociateMemberFromFleetResponse } from "../models/models_0"; import { DisassociateMemberFromFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DisassociateMemberFromJobCommand.ts b/clients/client-deadline/src/commands/DisassociateMemberFromJobCommand.ts index 202b1c88fe5d3..1d44bc85d8d26 100644 --- a/clients/client-deadline/src/commands/DisassociateMemberFromJobCommand.ts +++ b/clients/client-deadline/src/commands/DisassociateMemberFromJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateMemberFromJobRequest, DisassociateMemberFromJobResponse } from "../models/models_0"; +import type { DisassociateMemberFromJobRequest, DisassociateMemberFromJobResponse } from "../models/models_0"; import { DisassociateMemberFromJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/DisassociateMemberFromQueueCommand.ts b/clients/client-deadline/src/commands/DisassociateMemberFromQueueCommand.ts index d2de92bb4efa4..f7fce0283147c 100644 --- a/clients/client-deadline/src/commands/DisassociateMemberFromQueueCommand.ts +++ b/clients/client-deadline/src/commands/DisassociateMemberFromQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateMemberFromQueueRequest, DisassociateMemberFromQueueResponse } from "../models/models_0"; +import type { DisassociateMemberFromQueueRequest, DisassociateMemberFromQueueResponse } from "../models/models_0"; import { DisassociateMemberFromQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetBudgetCommand.ts b/clients/client-deadline/src/commands/GetBudgetCommand.ts index 57567bc57b144..225e91737888b 100644 --- a/clients/client-deadline/src/commands/GetBudgetCommand.ts +++ b/clients/client-deadline/src/commands/GetBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBudgetRequest, GetBudgetResponse } from "../models/models_0"; +import type { GetBudgetRequest, GetBudgetResponse } from "../models/models_0"; import { GetBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetFarmCommand.ts b/clients/client-deadline/src/commands/GetFarmCommand.ts index 39b1d97a71636..157a1c1cdc655 100644 --- a/clients/client-deadline/src/commands/GetFarmCommand.ts +++ b/clients/client-deadline/src/commands/GetFarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFarmRequest, GetFarmResponse } from "../models/models_0"; +import type { GetFarmRequest, GetFarmResponse } from "../models/models_0"; import { GetFarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetFleetCommand.ts b/clients/client-deadline/src/commands/GetFleetCommand.ts index a4f98755fd4f5..037309f352e25 100644 --- a/clients/client-deadline/src/commands/GetFleetCommand.ts +++ b/clients/client-deadline/src/commands/GetFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFleetRequest, GetFleetResponse } from "../models/models_0"; +import type { GetFleetRequest, GetFleetResponse } from "../models/models_0"; import { GetFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetJobCommand.ts b/clients/client-deadline/src/commands/GetJobCommand.ts index ee9f62bf76294..2a8f5f9978da7 100644 --- a/clients/client-deadline/src/commands/GetJobCommand.ts +++ b/clients/client-deadline/src/commands/GetJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobRequest, GetJobResponse } from "../models/models_0"; +import type { GetJobRequest, GetJobResponse } from "../models/models_0"; import { GetJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetLicenseEndpointCommand.ts b/clients/client-deadline/src/commands/GetLicenseEndpointCommand.ts index 5217c42629623..2c13dcefa91e7 100644 --- a/clients/client-deadline/src/commands/GetLicenseEndpointCommand.ts +++ b/clients/client-deadline/src/commands/GetLicenseEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLicenseEndpointRequest, GetLicenseEndpointResponse } from "../models/models_0"; +import type { GetLicenseEndpointRequest, GetLicenseEndpointResponse } from "../models/models_0"; import { GetLicenseEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetLimitCommand.ts b/clients/client-deadline/src/commands/GetLimitCommand.ts index cd903a3078300..c9ff32e9cd4ad 100644 --- a/clients/client-deadline/src/commands/GetLimitCommand.ts +++ b/clients/client-deadline/src/commands/GetLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLimitRequest, GetLimitResponse } from "../models/models_0"; +import type { GetLimitRequest, GetLimitResponse } from "../models/models_0"; import { GetLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetMonitorCommand.ts b/clients/client-deadline/src/commands/GetMonitorCommand.ts index ed5c4b44459ba..ac712820186fb 100644 --- a/clients/client-deadline/src/commands/GetMonitorCommand.ts +++ b/clients/client-deadline/src/commands/GetMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMonitorRequest, GetMonitorResponse } from "../models/models_1"; +import type { GetMonitorRequest, GetMonitorResponse } from "../models/models_1"; import { GetMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetQueueCommand.ts b/clients/client-deadline/src/commands/GetQueueCommand.ts index 0b3d302b876aa..23a3bf8fd7aef 100644 --- a/clients/client-deadline/src/commands/GetQueueCommand.ts +++ b/clients/client-deadline/src/commands/GetQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueueRequest, GetQueueResponse } from "../models/models_0"; +import type { GetQueueRequest, GetQueueResponse } from "../models/models_0"; import { GetQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetQueueEnvironmentCommand.ts b/clients/client-deadline/src/commands/GetQueueEnvironmentCommand.ts index 2b5af23733073..629beafec561f 100644 --- a/clients/client-deadline/src/commands/GetQueueEnvironmentCommand.ts +++ b/clients/client-deadline/src/commands/GetQueueEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueueEnvironmentRequest, GetQueueEnvironmentResponse } from "../models/models_0"; +import type { GetQueueEnvironmentRequest, GetQueueEnvironmentResponse } from "../models/models_0"; import { GetQueueEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetQueueFleetAssociationCommand.ts b/clients/client-deadline/src/commands/GetQueueFleetAssociationCommand.ts index 31d2f3be4653e..0a0d574ae3616 100644 --- a/clients/client-deadline/src/commands/GetQueueFleetAssociationCommand.ts +++ b/clients/client-deadline/src/commands/GetQueueFleetAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueueFleetAssociationRequest, GetQueueFleetAssociationResponse } from "../models/models_0"; +import type { GetQueueFleetAssociationRequest, GetQueueFleetAssociationResponse } from "../models/models_0"; import { GetQueueFleetAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetQueueLimitAssociationCommand.ts b/clients/client-deadline/src/commands/GetQueueLimitAssociationCommand.ts index ae69ee39970b7..ec4801479f5e0 100644 --- a/clients/client-deadline/src/commands/GetQueueLimitAssociationCommand.ts +++ b/clients/client-deadline/src/commands/GetQueueLimitAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueueLimitAssociationRequest, GetQueueLimitAssociationResponse } from "../models/models_0"; +import type { GetQueueLimitAssociationRequest, GetQueueLimitAssociationResponse } from "../models/models_0"; import { GetQueueLimitAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetSessionActionCommand.ts b/clients/client-deadline/src/commands/GetSessionActionCommand.ts index 0f38e0487a849..0040f5f405174 100644 --- a/clients/client-deadline/src/commands/GetSessionActionCommand.ts +++ b/clients/client-deadline/src/commands/GetSessionActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionActionRequest, GetSessionActionResponse } from "../models/models_0"; +import type { GetSessionActionRequest, GetSessionActionResponse } from "../models/models_0"; import { GetSessionAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetSessionCommand.ts b/clients/client-deadline/src/commands/GetSessionCommand.ts index 3157d228cb9fa..183398b4a066a 100644 --- a/clients/client-deadline/src/commands/GetSessionCommand.ts +++ b/clients/client-deadline/src/commands/GetSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_0"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_0"; import { GetSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetSessionsStatisticsAggregationCommand.ts b/clients/client-deadline/src/commands/GetSessionsStatisticsAggregationCommand.ts index df39bddabf094..920d8cba6c8b1 100644 --- a/clients/client-deadline/src/commands/GetSessionsStatisticsAggregationCommand.ts +++ b/clients/client-deadline/src/commands/GetSessionsStatisticsAggregationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionsStatisticsAggregationRequest, GetSessionsStatisticsAggregationResponse } from "../models/models_0"; +import type { + GetSessionsStatisticsAggregationRequest, + GetSessionsStatisticsAggregationResponse, +} from "../models/models_0"; import { GetSessionsStatisticsAggregation } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetStepCommand.ts b/clients/client-deadline/src/commands/GetStepCommand.ts index 0789b5e206f80..5ec578393102c 100644 --- a/clients/client-deadline/src/commands/GetStepCommand.ts +++ b/clients/client-deadline/src/commands/GetStepCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStepRequest, GetStepResponse } from "../models/models_0"; +import type { GetStepRequest, GetStepResponse } from "../models/models_0"; import { GetStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetStorageProfileCommand.ts b/clients/client-deadline/src/commands/GetStorageProfileCommand.ts index 9b3772a2d76e0..742bb70aca29c 100644 --- a/clients/client-deadline/src/commands/GetStorageProfileCommand.ts +++ b/clients/client-deadline/src/commands/GetStorageProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStorageProfileRequest, GetStorageProfileResponse } from "../models/models_0"; +import type { GetStorageProfileRequest, GetStorageProfileResponse } from "../models/models_0"; import { GetStorageProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetStorageProfileForQueueCommand.ts b/clients/client-deadline/src/commands/GetStorageProfileForQueueCommand.ts index d13979fb15305..e547df13be75d 100644 --- a/clients/client-deadline/src/commands/GetStorageProfileForQueueCommand.ts +++ b/clients/client-deadline/src/commands/GetStorageProfileForQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStorageProfileForQueueRequest, GetStorageProfileForQueueResponse } from "../models/models_0"; +import type { GetStorageProfileForQueueRequest, GetStorageProfileForQueueResponse } from "../models/models_0"; import { GetStorageProfileForQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetTaskCommand.ts b/clients/client-deadline/src/commands/GetTaskCommand.ts index e79afb18688d7..fd6ac6c0b3591 100644 --- a/clients/client-deadline/src/commands/GetTaskCommand.ts +++ b/clients/client-deadline/src/commands/GetTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTaskRequest, GetTaskResponse } from "../models/models_0"; +import type { GetTaskRequest, GetTaskResponse } from "../models/models_0"; import { GetTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/GetWorkerCommand.ts b/clients/client-deadline/src/commands/GetWorkerCommand.ts index 8260557d90571..a26faf4a4df15 100644 --- a/clients/client-deadline/src/commands/GetWorkerCommand.ts +++ b/clients/client-deadline/src/commands/GetWorkerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkerRequest, GetWorkerResponse } from "../models/models_0"; +import type { GetWorkerRequest, GetWorkerResponse } from "../models/models_0"; import { GetWorker } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListAvailableMeteredProductsCommand.ts b/clients/client-deadline/src/commands/ListAvailableMeteredProductsCommand.ts index b95185a778188..4f2361350720d 100644 --- a/clients/client-deadline/src/commands/ListAvailableMeteredProductsCommand.ts +++ b/clients/client-deadline/src/commands/ListAvailableMeteredProductsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAvailableMeteredProductsRequest, ListAvailableMeteredProductsResponse } from "../models/models_1"; +import type { ListAvailableMeteredProductsRequest, ListAvailableMeteredProductsResponse } from "../models/models_1"; import { ListAvailableMeteredProducts } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListBudgetsCommand.ts b/clients/client-deadline/src/commands/ListBudgetsCommand.ts index db89db1079654..6b7082cf6da1f 100644 --- a/clients/client-deadline/src/commands/ListBudgetsCommand.ts +++ b/clients/client-deadline/src/commands/ListBudgetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBudgetsRequest, ListBudgetsResponse } from "../models/models_0"; +import type { ListBudgetsRequest, ListBudgetsResponse } from "../models/models_0"; import { ListBudgets } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListFarmMembersCommand.ts b/clients/client-deadline/src/commands/ListFarmMembersCommand.ts index a27005bdabac3..318f8cb15733b 100644 --- a/clients/client-deadline/src/commands/ListFarmMembersCommand.ts +++ b/clients/client-deadline/src/commands/ListFarmMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFarmMembersRequest, ListFarmMembersResponse } from "../models/models_0"; +import type { ListFarmMembersRequest, ListFarmMembersResponse } from "../models/models_0"; import { ListFarmMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListFarmsCommand.ts b/clients/client-deadline/src/commands/ListFarmsCommand.ts index 4998780365155..987f1824df911 100644 --- a/clients/client-deadline/src/commands/ListFarmsCommand.ts +++ b/clients/client-deadline/src/commands/ListFarmsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFarmsRequest, ListFarmsResponse } from "../models/models_0"; +import type { ListFarmsRequest, ListFarmsResponse } from "../models/models_0"; import { ListFarms } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListFleetMembersCommand.ts b/clients/client-deadline/src/commands/ListFleetMembersCommand.ts index ffe5bf73d74d4..bcfd3a0ecf3ce 100644 --- a/clients/client-deadline/src/commands/ListFleetMembersCommand.ts +++ b/clients/client-deadline/src/commands/ListFleetMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFleetMembersRequest, ListFleetMembersResponse } from "../models/models_0"; +import type { ListFleetMembersRequest, ListFleetMembersResponse } from "../models/models_0"; import { ListFleetMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListFleetsCommand.ts b/clients/client-deadline/src/commands/ListFleetsCommand.ts index b9c555f8156d2..6ed1a42eda478 100644 --- a/clients/client-deadline/src/commands/ListFleetsCommand.ts +++ b/clients/client-deadline/src/commands/ListFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFleetsRequest, ListFleetsResponse } from "../models/models_0"; +import type { ListFleetsRequest, ListFleetsResponse } from "../models/models_0"; import { ListFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListJobMembersCommand.ts b/clients/client-deadline/src/commands/ListJobMembersCommand.ts index aee1868831f1b..4c9e76fc60c76 100644 --- a/clients/client-deadline/src/commands/ListJobMembersCommand.ts +++ b/clients/client-deadline/src/commands/ListJobMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobMembersRequest, ListJobMembersResponse } from "../models/models_0"; +import type { ListJobMembersRequest, ListJobMembersResponse } from "../models/models_0"; import { ListJobMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListJobParameterDefinitionsCommand.ts b/clients/client-deadline/src/commands/ListJobParameterDefinitionsCommand.ts index e6a4a99b24a98..c59261e157e74 100644 --- a/clients/client-deadline/src/commands/ListJobParameterDefinitionsCommand.ts +++ b/clients/client-deadline/src/commands/ListJobParameterDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobParameterDefinitionsRequest, ListJobParameterDefinitionsResponse } from "../models/models_0"; +import type { ListJobParameterDefinitionsRequest, ListJobParameterDefinitionsResponse } from "../models/models_0"; import { ListJobParameterDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListJobsCommand.ts b/clients/client-deadline/src/commands/ListJobsCommand.ts index 97abec7416e1d..dea8d22b0f169 100644 --- a/clients/client-deadline/src/commands/ListJobsCommand.ts +++ b/clients/client-deadline/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsRequest, ListJobsResponse } from "../models/models_0"; +import type { ListJobsRequest, ListJobsResponse } from "../models/models_0"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListLicenseEndpointsCommand.ts b/clients/client-deadline/src/commands/ListLicenseEndpointsCommand.ts index 0e444aab6244f..ebdd9419d9946 100644 --- a/clients/client-deadline/src/commands/ListLicenseEndpointsCommand.ts +++ b/clients/client-deadline/src/commands/ListLicenseEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLicenseEndpointsRequest, ListLicenseEndpointsResponse } from "../models/models_0"; +import type { ListLicenseEndpointsRequest, ListLicenseEndpointsResponse } from "../models/models_0"; import { ListLicenseEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListLimitsCommand.ts b/clients/client-deadline/src/commands/ListLimitsCommand.ts index 058c9f2c01174..ee9ca847aceb6 100644 --- a/clients/client-deadline/src/commands/ListLimitsCommand.ts +++ b/clients/client-deadline/src/commands/ListLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLimitsRequest, ListLimitsResponse } from "../models/models_0"; +import type { ListLimitsRequest, ListLimitsResponse } from "../models/models_0"; import { ListLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListMeteredProductsCommand.ts b/clients/client-deadline/src/commands/ListMeteredProductsCommand.ts index f569eab6c25e5..2c16bd90be876 100644 --- a/clients/client-deadline/src/commands/ListMeteredProductsCommand.ts +++ b/clients/client-deadline/src/commands/ListMeteredProductsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMeteredProductsRequest } from "../models/models_0"; -import { ListMeteredProductsResponse } from "../models/models_1"; +import type { ListMeteredProductsRequest } from "../models/models_0"; +import type { ListMeteredProductsResponse } from "../models/models_1"; import { ListMeteredProducts } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListMonitorsCommand.ts b/clients/client-deadline/src/commands/ListMonitorsCommand.ts index 556c7f774ea8f..af006f48d0d91 100644 --- a/clients/client-deadline/src/commands/ListMonitorsCommand.ts +++ b/clients/client-deadline/src/commands/ListMonitorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMonitorsRequest, ListMonitorsResponse } from "../models/models_1"; +import type { ListMonitorsRequest, ListMonitorsResponse } from "../models/models_1"; import { ListMonitors } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListQueueEnvironmentsCommand.ts b/clients/client-deadline/src/commands/ListQueueEnvironmentsCommand.ts index c3eb763f878de..6314f66a7bb29 100644 --- a/clients/client-deadline/src/commands/ListQueueEnvironmentsCommand.ts +++ b/clients/client-deadline/src/commands/ListQueueEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueueEnvironmentsRequest, ListQueueEnvironmentsResponse } from "../models/models_0"; +import type { ListQueueEnvironmentsRequest, ListQueueEnvironmentsResponse } from "../models/models_0"; import { ListQueueEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListQueueFleetAssociationsCommand.ts b/clients/client-deadline/src/commands/ListQueueFleetAssociationsCommand.ts index 75d367f5fd80e..82140a586e4b9 100644 --- a/clients/client-deadline/src/commands/ListQueueFleetAssociationsCommand.ts +++ b/clients/client-deadline/src/commands/ListQueueFleetAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueueFleetAssociationsRequest, ListQueueFleetAssociationsResponse } from "../models/models_1"; +import type { ListQueueFleetAssociationsRequest, ListQueueFleetAssociationsResponse } from "../models/models_1"; import { ListQueueFleetAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListQueueLimitAssociationsCommand.ts b/clients/client-deadline/src/commands/ListQueueLimitAssociationsCommand.ts index 8e171694142b1..3d38b02e43547 100644 --- a/clients/client-deadline/src/commands/ListQueueLimitAssociationsCommand.ts +++ b/clients/client-deadline/src/commands/ListQueueLimitAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueueLimitAssociationsRequest, ListQueueLimitAssociationsResponse } from "../models/models_1"; +import type { ListQueueLimitAssociationsRequest, ListQueueLimitAssociationsResponse } from "../models/models_1"; import { ListQueueLimitAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListQueueMembersCommand.ts b/clients/client-deadline/src/commands/ListQueueMembersCommand.ts index 3255bbcb4b920..2927d853d59e2 100644 --- a/clients/client-deadline/src/commands/ListQueueMembersCommand.ts +++ b/clients/client-deadline/src/commands/ListQueueMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueueMembersRequest, ListQueueMembersResponse } from "../models/models_0"; +import type { ListQueueMembersRequest, ListQueueMembersResponse } from "../models/models_0"; import { ListQueueMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListQueuesCommand.ts b/clients/client-deadline/src/commands/ListQueuesCommand.ts index 86721c24dd0bc..898a3566ef5a2 100644 --- a/clients/client-deadline/src/commands/ListQueuesCommand.ts +++ b/clients/client-deadline/src/commands/ListQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueuesRequest, ListQueuesResponse } from "../models/models_0"; +import type { ListQueuesRequest, ListQueuesResponse } from "../models/models_0"; import { ListQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListSessionActionsCommand.ts b/clients/client-deadline/src/commands/ListSessionActionsCommand.ts index 6c9e7e6c2f87f..ee2397184a001 100644 --- a/clients/client-deadline/src/commands/ListSessionActionsCommand.ts +++ b/clients/client-deadline/src/commands/ListSessionActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSessionActionsRequest, ListSessionActionsResponse } from "../models/models_0"; +import type { ListSessionActionsRequest, ListSessionActionsResponse } from "../models/models_0"; import { ListSessionActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListSessionsCommand.ts b/clients/client-deadline/src/commands/ListSessionsCommand.ts index a2069cc91f914..f6b84f7b43680 100644 --- a/clients/client-deadline/src/commands/ListSessionsCommand.ts +++ b/clients/client-deadline/src/commands/ListSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; +import type { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; import { ListSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListSessionsForWorkerCommand.ts b/clients/client-deadline/src/commands/ListSessionsForWorkerCommand.ts index 9a41de96a331f..c1f9cbcf4b529 100644 --- a/clients/client-deadline/src/commands/ListSessionsForWorkerCommand.ts +++ b/clients/client-deadline/src/commands/ListSessionsForWorkerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSessionsForWorkerRequest, ListSessionsForWorkerResponse } from "../models/models_0"; +import type { ListSessionsForWorkerRequest, ListSessionsForWorkerResponse } from "../models/models_0"; import { ListSessionsForWorker } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListStepConsumersCommand.ts b/clients/client-deadline/src/commands/ListStepConsumersCommand.ts index fd6ea1d683a2b..f1439825e2c3b 100644 --- a/clients/client-deadline/src/commands/ListStepConsumersCommand.ts +++ b/clients/client-deadline/src/commands/ListStepConsumersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStepConsumersRequest, ListStepConsumersResponse } from "../models/models_0"; +import type { ListStepConsumersRequest, ListStepConsumersResponse } from "../models/models_0"; import { ListStepConsumers } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListStepDependenciesCommand.ts b/clients/client-deadline/src/commands/ListStepDependenciesCommand.ts index 30b49ccd79ffd..684fc6f2b38fd 100644 --- a/clients/client-deadline/src/commands/ListStepDependenciesCommand.ts +++ b/clients/client-deadline/src/commands/ListStepDependenciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStepDependenciesRequest, ListStepDependenciesResponse } from "../models/models_0"; +import type { ListStepDependenciesRequest, ListStepDependenciesResponse } from "../models/models_0"; import { ListStepDependencies } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListStepsCommand.ts b/clients/client-deadline/src/commands/ListStepsCommand.ts index a4f16cff98a2f..0d90945ded869 100644 --- a/clients/client-deadline/src/commands/ListStepsCommand.ts +++ b/clients/client-deadline/src/commands/ListStepsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStepsRequest, ListStepsResponse } from "../models/models_0"; +import type { ListStepsRequest, ListStepsResponse } from "../models/models_0"; import { ListSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListStorageProfilesCommand.ts b/clients/client-deadline/src/commands/ListStorageProfilesCommand.ts index c0303cc7d0fab..d33509ea7e767 100644 --- a/clients/client-deadline/src/commands/ListStorageProfilesCommand.ts +++ b/clients/client-deadline/src/commands/ListStorageProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStorageProfilesRequest, ListStorageProfilesResponse } from "../models/models_0"; +import type { ListStorageProfilesRequest, ListStorageProfilesResponse } from "../models/models_0"; import { ListStorageProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListStorageProfilesForQueueCommand.ts b/clients/client-deadline/src/commands/ListStorageProfilesForQueueCommand.ts index 4faf61ff3e926..6f65cb1360745 100644 --- a/clients/client-deadline/src/commands/ListStorageProfilesForQueueCommand.ts +++ b/clients/client-deadline/src/commands/ListStorageProfilesForQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStorageProfilesForQueueRequest, ListStorageProfilesForQueueResponse } from "../models/models_0"; +import type { ListStorageProfilesForQueueRequest, ListStorageProfilesForQueueResponse } from "../models/models_0"; import { ListStorageProfilesForQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListTagsForResourceCommand.ts b/clients/client-deadline/src/commands/ListTagsForResourceCommand.ts index ff8619109d018..f3dce4a3a0fe4 100644 --- a/clients/client-deadline/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-deadline/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListTasksCommand.ts b/clients/client-deadline/src/commands/ListTasksCommand.ts index 0b9bf0156fbce..f31ecad37c8aa 100644 --- a/clients/client-deadline/src/commands/ListTasksCommand.ts +++ b/clients/client-deadline/src/commands/ListTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTasksRequest, ListTasksResponse } from "../models/models_0"; +import type { ListTasksRequest, ListTasksResponse } from "../models/models_0"; import { ListTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/ListWorkersCommand.ts b/clients/client-deadline/src/commands/ListWorkersCommand.ts index 27cb9a500cbbc..0b0573336a6bf 100644 --- a/clients/client-deadline/src/commands/ListWorkersCommand.ts +++ b/clients/client-deadline/src/commands/ListWorkersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkersRequest, ListWorkersResponse } from "../models/models_0"; +import type { ListWorkersRequest, ListWorkersResponse } from "../models/models_0"; import { ListWorkers } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/PutMeteredProductCommand.ts b/clients/client-deadline/src/commands/PutMeteredProductCommand.ts index 4d7d39553fe95..b9d7698508b64 100644 --- a/clients/client-deadline/src/commands/PutMeteredProductCommand.ts +++ b/clients/client-deadline/src/commands/PutMeteredProductCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMeteredProductRequest, PutMeteredProductResponse } from "../models/models_1"; +import type { PutMeteredProductRequest, PutMeteredProductResponse } from "../models/models_1"; import { PutMeteredProduct } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/SearchJobsCommand.ts b/clients/client-deadline/src/commands/SearchJobsCommand.ts index 0b51415398125..4049d4142e659 100644 --- a/clients/client-deadline/src/commands/SearchJobsCommand.ts +++ b/clients/client-deadline/src/commands/SearchJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchJobsRequest, SearchJobsResponse } from "../models/models_1"; +import type { SearchJobsRequest, SearchJobsResponse } from "../models/models_1"; import { SearchJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/SearchStepsCommand.ts b/clients/client-deadline/src/commands/SearchStepsCommand.ts index cb1e337d02750..07d717d361213 100644 --- a/clients/client-deadline/src/commands/SearchStepsCommand.ts +++ b/clients/client-deadline/src/commands/SearchStepsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchStepsRequest, SearchStepsResponse } from "../models/models_1"; +import type { SearchStepsRequest, SearchStepsResponse } from "../models/models_1"; import { SearchSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/SearchTasksCommand.ts b/clients/client-deadline/src/commands/SearchTasksCommand.ts index 02516841b9f83..d856d6a956d38 100644 --- a/clients/client-deadline/src/commands/SearchTasksCommand.ts +++ b/clients/client-deadline/src/commands/SearchTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchTasksRequest, SearchTasksResponse } from "../models/models_1"; +import type { SearchTasksRequest, SearchTasksResponse } from "../models/models_1"; import { SearchTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/SearchWorkersCommand.ts b/clients/client-deadline/src/commands/SearchWorkersCommand.ts index 895b5ddcce2d3..ac53e04dae5d9 100644 --- a/clients/client-deadline/src/commands/SearchWorkersCommand.ts +++ b/clients/client-deadline/src/commands/SearchWorkersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchWorkersRequest, SearchWorkersResponse } from "../models/models_1"; +import type { SearchWorkersRequest, SearchWorkersResponse } from "../models/models_1"; import { SearchWorkers } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/StartSessionsStatisticsAggregationCommand.ts b/clients/client-deadline/src/commands/StartSessionsStatisticsAggregationCommand.ts index 5f23c6146b57f..8eb0032d3b020 100644 --- a/clients/client-deadline/src/commands/StartSessionsStatisticsAggregationCommand.ts +++ b/clients/client-deadline/src/commands/StartSessionsStatisticsAggregationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartSessionsStatisticsAggregationRequest, StartSessionsStatisticsAggregationResponse, } from "../models/models_1"; diff --git a/clients/client-deadline/src/commands/TagResourceCommand.ts b/clients/client-deadline/src/commands/TagResourceCommand.ts index 888fb597830ec..3f47957266e29 100644 --- a/clients/client-deadline/src/commands/TagResourceCommand.ts +++ b/clients/client-deadline/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UntagResourceCommand.ts b/clients/client-deadline/src/commands/UntagResourceCommand.ts index 8e5bf4a068148..f6eca9253fcfb 100644 --- a/clients/client-deadline/src/commands/UntagResourceCommand.ts +++ b/clients/client-deadline/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateBudgetCommand.ts b/clients/client-deadline/src/commands/UpdateBudgetCommand.ts index a241b31477713..1642f5f4fe1eb 100644 --- a/clients/client-deadline/src/commands/UpdateBudgetCommand.ts +++ b/clients/client-deadline/src/commands/UpdateBudgetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBudgetRequest, UpdateBudgetResponse } from "../models/models_0"; +import type { UpdateBudgetRequest, UpdateBudgetResponse } from "../models/models_0"; import { UpdateBudget } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateFarmCommand.ts b/clients/client-deadline/src/commands/UpdateFarmCommand.ts index 56fe1946600a3..92ed2987a729d 100644 --- a/clients/client-deadline/src/commands/UpdateFarmCommand.ts +++ b/clients/client-deadline/src/commands/UpdateFarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFarmRequest, UpdateFarmResponse } from "../models/models_0"; +import type { UpdateFarmRequest, UpdateFarmResponse } from "../models/models_0"; import { UpdateFarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateFleetCommand.ts b/clients/client-deadline/src/commands/UpdateFleetCommand.ts index d60b06030950c..e4c210d18d32b 100644 --- a/clients/client-deadline/src/commands/UpdateFleetCommand.ts +++ b/clients/client-deadline/src/commands/UpdateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFleetRequest, UpdateFleetResponse } from "../models/models_0"; +import type { UpdateFleetRequest, UpdateFleetResponse } from "../models/models_0"; import { UpdateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateJobCommand.ts b/clients/client-deadline/src/commands/UpdateJobCommand.ts index 3be7f3c0a83e3..ba61bab6a3bfd 100644 --- a/clients/client-deadline/src/commands/UpdateJobCommand.ts +++ b/clients/client-deadline/src/commands/UpdateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateJobRequest, UpdateJobResponse } from "../models/models_0"; +import type { UpdateJobRequest, UpdateJobResponse } from "../models/models_0"; import { UpdateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateLimitCommand.ts b/clients/client-deadline/src/commands/UpdateLimitCommand.ts index 96c7e912d174d..6ba4bb09d1aa4 100644 --- a/clients/client-deadline/src/commands/UpdateLimitCommand.ts +++ b/clients/client-deadline/src/commands/UpdateLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLimitRequest, UpdateLimitResponse } from "../models/models_0"; +import type { UpdateLimitRequest, UpdateLimitResponse } from "../models/models_0"; import { UpdateLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateMonitorCommand.ts b/clients/client-deadline/src/commands/UpdateMonitorCommand.ts index c7c7b2398d138..146e0ef4c2b36 100644 --- a/clients/client-deadline/src/commands/UpdateMonitorCommand.ts +++ b/clients/client-deadline/src/commands/UpdateMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMonitorRequest, UpdateMonitorResponse } from "../models/models_1"; +import type { UpdateMonitorRequest, UpdateMonitorResponse } from "../models/models_1"; import { UpdateMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateQueueCommand.ts b/clients/client-deadline/src/commands/UpdateQueueCommand.ts index 76fb2eb0b83b9..69a906cff50d7 100644 --- a/clients/client-deadline/src/commands/UpdateQueueCommand.ts +++ b/clients/client-deadline/src/commands/UpdateQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_0"; +import type { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_0"; import { UpdateQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateQueueEnvironmentCommand.ts b/clients/client-deadline/src/commands/UpdateQueueEnvironmentCommand.ts index 16596a31db385..7fa3f7f353e4c 100644 --- a/clients/client-deadline/src/commands/UpdateQueueEnvironmentCommand.ts +++ b/clients/client-deadline/src/commands/UpdateQueueEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueEnvironmentRequest, UpdateQueueEnvironmentResponse } from "../models/models_0"; +import type { UpdateQueueEnvironmentRequest, UpdateQueueEnvironmentResponse } from "../models/models_0"; import { UpdateQueueEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateQueueFleetAssociationCommand.ts b/clients/client-deadline/src/commands/UpdateQueueFleetAssociationCommand.ts index ea4ff69930f17..225b959032c85 100644 --- a/clients/client-deadline/src/commands/UpdateQueueFleetAssociationCommand.ts +++ b/clients/client-deadline/src/commands/UpdateQueueFleetAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueFleetAssociationRequest, UpdateQueueFleetAssociationResponse } from "../models/models_1"; +import type { UpdateQueueFleetAssociationRequest, UpdateQueueFleetAssociationResponse } from "../models/models_1"; import { UpdateQueueFleetAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateQueueLimitAssociationCommand.ts b/clients/client-deadline/src/commands/UpdateQueueLimitAssociationCommand.ts index 66122ecafde1b..675f752159d5e 100644 --- a/clients/client-deadline/src/commands/UpdateQueueLimitAssociationCommand.ts +++ b/clients/client-deadline/src/commands/UpdateQueueLimitAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueLimitAssociationRequest, UpdateQueueLimitAssociationResponse } from "../models/models_1"; +import type { UpdateQueueLimitAssociationRequest, UpdateQueueLimitAssociationResponse } from "../models/models_1"; import { UpdateQueueLimitAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateSessionCommand.ts b/clients/client-deadline/src/commands/UpdateSessionCommand.ts index 6977a3dcc050a..8f66968a3f22a 100644 --- a/clients/client-deadline/src/commands/UpdateSessionCommand.ts +++ b/clients/client-deadline/src/commands/UpdateSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSessionRequest, UpdateSessionResponse } from "../models/models_0"; +import type { UpdateSessionRequest, UpdateSessionResponse } from "../models/models_0"; import { UpdateSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateStepCommand.ts b/clients/client-deadline/src/commands/UpdateStepCommand.ts index 61f9683d8ed68..f31f9173249a2 100644 --- a/clients/client-deadline/src/commands/UpdateStepCommand.ts +++ b/clients/client-deadline/src/commands/UpdateStepCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStepRequest, UpdateStepResponse } from "../models/models_0"; +import type { UpdateStepRequest, UpdateStepResponse } from "../models/models_0"; import { UpdateStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateStorageProfileCommand.ts b/clients/client-deadline/src/commands/UpdateStorageProfileCommand.ts index e3ace4ab82dc8..ef91b6bb59c52 100644 --- a/clients/client-deadline/src/commands/UpdateStorageProfileCommand.ts +++ b/clients/client-deadline/src/commands/UpdateStorageProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStorageProfileRequest, UpdateStorageProfileResponse } from "../models/models_0"; +import type { UpdateStorageProfileRequest, UpdateStorageProfileResponse } from "../models/models_0"; import { UpdateStorageProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateTaskCommand.ts b/clients/client-deadline/src/commands/UpdateTaskCommand.ts index 2f3ed957566aa..7884c69e05776 100644 --- a/clients/client-deadline/src/commands/UpdateTaskCommand.ts +++ b/clients/client-deadline/src/commands/UpdateTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTaskRequest, UpdateTaskResponse } from "../models/models_0"; +import type { UpdateTaskRequest, UpdateTaskResponse } from "../models/models_0"; import { UpdateTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateWorkerCommand.ts b/clients/client-deadline/src/commands/UpdateWorkerCommand.ts index 0014b061c9ec9..bca11b44419ee 100644 --- a/clients/client-deadline/src/commands/UpdateWorkerCommand.ts +++ b/clients/client-deadline/src/commands/UpdateWorkerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkerRequest, UpdateWorkerResponse } from "../models/models_0"; +import type { UpdateWorkerRequest, UpdateWorkerResponse } from "../models/models_0"; import { UpdateWorker } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/commands/UpdateWorkerScheduleCommand.ts b/clients/client-deadline/src/commands/UpdateWorkerScheduleCommand.ts index d72b8519bc4c2..f0eb4581ea85f 100644 --- a/clients/client-deadline/src/commands/UpdateWorkerScheduleCommand.ts +++ b/clients/client-deadline/src/commands/UpdateWorkerScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; +import type { DeadlineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeadlineClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkerScheduleRequest, UpdateWorkerScheduleResponse } from "../models/models_0"; +import type { UpdateWorkerScheduleRequest, UpdateWorkerScheduleResponse } from "../models/models_0"; import { UpdateWorkerSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-deadline/src/endpoint/EndpointParameters.ts b/clients/client-deadline/src/endpoint/EndpointParameters.ts index 087613a3564a3..e88674d91c577 100644 --- a/clients/client-deadline/src/endpoint/EndpointParameters.ts +++ b/clients/client-deadline/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-deadline/src/endpoint/endpointResolver.ts b/clients/client-deadline/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-deadline/src/endpoint/endpointResolver.ts +++ b/clients/client-deadline/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-deadline/src/extensionConfiguration.ts b/clients/client-deadline/src/extensionConfiguration.ts index 8e620932e0074..5fa0cc8369602 100644 --- a/clients/client-deadline/src/extensionConfiguration.ts +++ b/clients/client-deadline/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-deadline/src/models/DeadlineServiceException.ts b/clients/client-deadline/src/models/DeadlineServiceException.ts index af1773e24cb43..b093c992bfcd0 100644 --- a/clients/client-deadline/src/models/DeadlineServiceException.ts +++ b/clients/client-deadline/src/models/DeadlineServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-deadline/src/models/errors.ts b/clients/client-deadline/src/models/errors.ts index 5e2e67341173f..f140c787f279b 100644 --- a/clients/client-deadline/src/models/errors.ts +++ b/clients/client-deadline/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DeadlineServiceException as __BaseException } from "./DeadlineServiceException"; import { ConflictExceptionReason, ServiceQuotaExceededExceptionReason, ValidationExceptionReason } from "./enums"; diff --git a/clients/client-deadline/src/pagination/GetSessionsStatisticsAggregationPaginator.ts b/clients/client-deadline/src/pagination/GetSessionsStatisticsAggregationPaginator.ts index 8827a7a2300cd..0c0c012a34a48 100644 --- a/clients/client-deadline/src/pagination/GetSessionsStatisticsAggregationPaginator.ts +++ b/clients/client-deadline/src/pagination/GetSessionsStatisticsAggregationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSessionsStatisticsAggregationCommand, diff --git a/clients/client-deadline/src/pagination/Interfaces.ts b/clients/client-deadline/src/pagination/Interfaces.ts index 8bd6f14514050..eb530d071d874 100644 --- a/clients/client-deadline/src/pagination/Interfaces.ts +++ b/clients/client-deadline/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/pagination/ListAvailableMeteredProductsPaginator.ts b/clients/client-deadline/src/pagination/ListAvailableMeteredProductsPaginator.ts index a7f375ce46f25..5184fdf859528 100644 --- a/clients/client-deadline/src/pagination/ListAvailableMeteredProductsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListAvailableMeteredProductsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAvailableMeteredProductsCommand, diff --git a/clients/client-deadline/src/pagination/ListBudgetsPaginator.ts b/clients/client-deadline/src/pagination/ListBudgetsPaginator.ts index 7d31b30b8af62..184b083a06349 100644 --- a/clients/client-deadline/src/pagination/ListBudgetsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListBudgetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBudgetsCommand, ListBudgetsCommandInput, ListBudgetsCommandOutput } from "../commands/ListBudgetsCommand"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/pagination/ListFarmMembersPaginator.ts b/clients/client-deadline/src/pagination/ListFarmMembersPaginator.ts index e2a71a66069b2..8faf1d6938161 100644 --- a/clients/client-deadline/src/pagination/ListFarmMembersPaginator.ts +++ b/clients/client-deadline/src/pagination/ListFarmMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFarmMembersCommand, diff --git a/clients/client-deadline/src/pagination/ListFarmsPaginator.ts b/clients/client-deadline/src/pagination/ListFarmsPaginator.ts index 272e638cb07b1..6894774ca85f9 100644 --- a/clients/client-deadline/src/pagination/ListFarmsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListFarmsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFarmsCommand, ListFarmsCommandInput, ListFarmsCommandOutput } from "../commands/ListFarmsCommand"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/pagination/ListFleetMembersPaginator.ts b/clients/client-deadline/src/pagination/ListFleetMembersPaginator.ts index fc2ba112b368c..501600902d4fc 100644 --- a/clients/client-deadline/src/pagination/ListFleetMembersPaginator.ts +++ b/clients/client-deadline/src/pagination/ListFleetMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFleetMembersCommand, diff --git a/clients/client-deadline/src/pagination/ListFleetsPaginator.ts b/clients/client-deadline/src/pagination/ListFleetsPaginator.ts index b4844e42ee1c0..beab040922071 100644 --- a/clients/client-deadline/src/pagination/ListFleetsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListFleetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFleetsCommand, ListFleetsCommandInput, ListFleetsCommandOutput } from "../commands/ListFleetsCommand"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/pagination/ListJobMembersPaginator.ts b/clients/client-deadline/src/pagination/ListJobMembersPaginator.ts index 71f94a5960c2b..5f82733602e26 100644 --- a/clients/client-deadline/src/pagination/ListJobMembersPaginator.ts +++ b/clients/client-deadline/src/pagination/ListJobMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobMembersCommand, diff --git a/clients/client-deadline/src/pagination/ListJobParameterDefinitionsPaginator.ts b/clients/client-deadline/src/pagination/ListJobParameterDefinitionsPaginator.ts index 0c337562bbb09..83478614da002 100644 --- a/clients/client-deadline/src/pagination/ListJobParameterDefinitionsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListJobParameterDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobParameterDefinitionsCommand, diff --git a/clients/client-deadline/src/pagination/ListJobsPaginator.ts b/clients/client-deadline/src/pagination/ListJobsPaginator.ts index 9dbfc1fc178f2..4c630315eb613 100644 --- a/clients/client-deadline/src/pagination/ListJobsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/pagination/ListLicenseEndpointsPaginator.ts b/clients/client-deadline/src/pagination/ListLicenseEndpointsPaginator.ts index afedf5ed2e9eb..d9562d56fc3c6 100644 --- a/clients/client-deadline/src/pagination/ListLicenseEndpointsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListLicenseEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLicenseEndpointsCommand, diff --git a/clients/client-deadline/src/pagination/ListLimitsPaginator.ts b/clients/client-deadline/src/pagination/ListLimitsPaginator.ts index 4705927258fa8..6393b733e3891 100644 --- a/clients/client-deadline/src/pagination/ListLimitsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListLimitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLimitsCommand, ListLimitsCommandInput, ListLimitsCommandOutput } from "../commands/ListLimitsCommand"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/pagination/ListMeteredProductsPaginator.ts b/clients/client-deadline/src/pagination/ListMeteredProductsPaginator.ts index a654a66c9f4d0..009f58b950ef8 100644 --- a/clients/client-deadline/src/pagination/ListMeteredProductsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListMeteredProductsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMeteredProductsCommand, diff --git a/clients/client-deadline/src/pagination/ListMonitorsPaginator.ts b/clients/client-deadline/src/pagination/ListMonitorsPaginator.ts index 4cf48ae166d76..765941b6f09f6 100644 --- a/clients/client-deadline/src/pagination/ListMonitorsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListMonitorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitorsCommand, diff --git a/clients/client-deadline/src/pagination/ListQueueEnvironmentsPaginator.ts b/clients/client-deadline/src/pagination/ListQueueEnvironmentsPaginator.ts index 88e4f0cfa0773..133c78d6a0ee0 100644 --- a/clients/client-deadline/src/pagination/ListQueueEnvironmentsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListQueueEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueueEnvironmentsCommand, diff --git a/clients/client-deadline/src/pagination/ListQueueFleetAssociationsPaginator.ts b/clients/client-deadline/src/pagination/ListQueueFleetAssociationsPaginator.ts index 208afb555317d..9ae59c887955a 100644 --- a/clients/client-deadline/src/pagination/ListQueueFleetAssociationsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListQueueFleetAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueueFleetAssociationsCommand, diff --git a/clients/client-deadline/src/pagination/ListQueueLimitAssociationsPaginator.ts b/clients/client-deadline/src/pagination/ListQueueLimitAssociationsPaginator.ts index 2dcc1eb8f7d0f..95330eecd4456 100644 --- a/clients/client-deadline/src/pagination/ListQueueLimitAssociationsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListQueueLimitAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueueLimitAssociationsCommand, diff --git a/clients/client-deadline/src/pagination/ListQueueMembersPaginator.ts b/clients/client-deadline/src/pagination/ListQueueMembersPaginator.ts index 50e204ee06a78..864a27fbede40 100644 --- a/clients/client-deadline/src/pagination/ListQueueMembersPaginator.ts +++ b/clients/client-deadline/src/pagination/ListQueueMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueueMembersCommand, diff --git a/clients/client-deadline/src/pagination/ListQueuesPaginator.ts b/clients/client-deadline/src/pagination/ListQueuesPaginator.ts index ae4f74d3b7ee3..495a4d3faffe5 100644 --- a/clients/client-deadline/src/pagination/ListQueuesPaginator.ts +++ b/clients/client-deadline/src/pagination/ListQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueuesCommand, ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/pagination/ListSessionActionsPaginator.ts b/clients/client-deadline/src/pagination/ListSessionActionsPaginator.ts index 855d71d293164..aca6daf960d17 100644 --- a/clients/client-deadline/src/pagination/ListSessionActionsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListSessionActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSessionActionsCommand, diff --git a/clients/client-deadline/src/pagination/ListSessionsForWorkerPaginator.ts b/clients/client-deadline/src/pagination/ListSessionsForWorkerPaginator.ts index de52b8a20c19e..76cdd1cd4c89f 100644 --- a/clients/client-deadline/src/pagination/ListSessionsForWorkerPaginator.ts +++ b/clients/client-deadline/src/pagination/ListSessionsForWorkerPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSessionsForWorkerCommand, diff --git a/clients/client-deadline/src/pagination/ListSessionsPaginator.ts b/clients/client-deadline/src/pagination/ListSessionsPaginator.ts index 7bc2777a19917..79ae17c84606e 100644 --- a/clients/client-deadline/src/pagination/ListSessionsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSessionsCommand, diff --git a/clients/client-deadline/src/pagination/ListStepConsumersPaginator.ts b/clients/client-deadline/src/pagination/ListStepConsumersPaginator.ts index b594a6a1b7b15..3f69652477b56 100644 --- a/clients/client-deadline/src/pagination/ListStepConsumersPaginator.ts +++ b/clients/client-deadline/src/pagination/ListStepConsumersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStepConsumersCommand, diff --git a/clients/client-deadline/src/pagination/ListStepDependenciesPaginator.ts b/clients/client-deadline/src/pagination/ListStepDependenciesPaginator.ts index 1422226214131..f627606002b36 100644 --- a/clients/client-deadline/src/pagination/ListStepDependenciesPaginator.ts +++ b/clients/client-deadline/src/pagination/ListStepDependenciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStepDependenciesCommand, diff --git a/clients/client-deadline/src/pagination/ListStepsPaginator.ts b/clients/client-deadline/src/pagination/ListStepsPaginator.ts index 33e21989f6099..63f993787326d 100644 --- a/clients/client-deadline/src/pagination/ListStepsPaginator.ts +++ b/clients/client-deadline/src/pagination/ListStepsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStepsCommand, ListStepsCommandInput, ListStepsCommandOutput } from "../commands/ListStepsCommand"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/pagination/ListStorageProfilesForQueuePaginator.ts b/clients/client-deadline/src/pagination/ListStorageProfilesForQueuePaginator.ts index 6ffbfd1b2df5b..9da7d1844f4ba 100644 --- a/clients/client-deadline/src/pagination/ListStorageProfilesForQueuePaginator.ts +++ b/clients/client-deadline/src/pagination/ListStorageProfilesForQueuePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStorageProfilesForQueueCommand, diff --git a/clients/client-deadline/src/pagination/ListStorageProfilesPaginator.ts b/clients/client-deadline/src/pagination/ListStorageProfilesPaginator.ts index d158e0f344901..9a9f1b91969c8 100644 --- a/clients/client-deadline/src/pagination/ListStorageProfilesPaginator.ts +++ b/clients/client-deadline/src/pagination/ListStorageProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStorageProfilesCommand, diff --git a/clients/client-deadline/src/pagination/ListTasksPaginator.ts b/clients/client-deadline/src/pagination/ListTasksPaginator.ts index 4a80d2cbf564e..78f0eee68f1d6 100644 --- a/clients/client-deadline/src/pagination/ListTasksPaginator.ts +++ b/clients/client-deadline/src/pagination/ListTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTasksCommand, ListTasksCommandInput, ListTasksCommandOutput } from "../commands/ListTasksCommand"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/pagination/ListWorkersPaginator.ts b/clients/client-deadline/src/pagination/ListWorkersPaginator.ts index d554447c6bef3..750c772943d41 100644 --- a/clients/client-deadline/src/pagination/ListWorkersPaginator.ts +++ b/clients/client-deadline/src/pagination/ListWorkersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkersCommand, ListWorkersCommandInput, ListWorkersCommandOutput } from "../commands/ListWorkersCommand"; import { DeadlineClient } from "../DeadlineClient"; diff --git a/clients/client-deadline/src/runtimeConfig.browser.ts b/clients/client-deadline/src/runtimeConfig.browser.ts index a7909aebf772f..c943dc829d0e3 100644 --- a/clients/client-deadline/src/runtimeConfig.browser.ts +++ b/clients/client-deadline/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DeadlineClientConfig } from "./DeadlineClient"; + +import type { DeadlineClientConfig } from "./DeadlineClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-deadline/src/runtimeConfig.native.ts b/clients/client-deadline/src/runtimeConfig.native.ts index 679cbf8441f42..67c5721504037 100644 --- a/clients/client-deadline/src/runtimeConfig.native.ts +++ b/clients/client-deadline/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DeadlineClientConfig } from "./DeadlineClient"; +import type { DeadlineClientConfig } from "./DeadlineClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-deadline/src/runtimeConfig.shared.ts b/clients/client-deadline/src/runtimeConfig.shared.ts index d565722022866..25d46cf7f2c66 100644 --- a/clients/client-deadline/src/runtimeConfig.shared.ts +++ b/clients/client-deadline/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDeadlineHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DeadlineClientConfig } from "./DeadlineClient"; +import type { DeadlineClientConfig } from "./DeadlineClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-deadline/src/runtimeConfig.ts b/clients/client-deadline/src/runtimeConfig.ts index edbd91c61709f..cdf502e7dd03f 100644 --- a/clients/client-deadline/src/runtimeConfig.ts +++ b/clients/client-deadline/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DeadlineClientConfig } from "./DeadlineClient"; + +import type { DeadlineClientConfig } from "./DeadlineClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-deadline/src/runtimeExtensions.ts b/clients/client-deadline/src/runtimeExtensions.ts index 231d7d54494fb..4c9fc413c8ac1 100644 --- a/clients/client-deadline/src/runtimeExtensions.ts +++ b/clients/client-deadline/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DeadlineExtensionConfiguration } from "./extensionConfiguration"; +import type { DeadlineExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-deadline/src/schemas/schemas_0.ts b/clients/client-deadline/src/schemas/schemas_0.ts index 43424ac99cf0b..4c7d0bb8336e0 100644 --- a/clients/client-deadline/src/schemas/schemas_0.ts +++ b/clients/client-deadline/src/schemas/schemas_0.ts @@ -861,7 +861,7 @@ const n0 = "com.amazonaws.deadline"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-detective/package.json b/clients/client-detective/package.json index 002d925fd7c5e..89fb4845d5b16 100644 --- a/clients/client-detective/package.json +++ b/clients/client-detective/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-detective/src/Detective.ts b/clients/client-detective/src/Detective.ts index 52cddedc56dd4..154f5cd6d03e1 100644 --- a/clients/client-detective/src/Detective.ts +++ b/clients/client-detective/src/Detective.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptInvitationCommand, @@ -123,7 +123,7 @@ import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput, } from "./commands/UpdateOrganizationConfigurationCommand"; -import { DetectiveClient, DetectiveClientConfig } from "./DetectiveClient"; +import { DetectiveClient } from "./DetectiveClient"; const commands = { AcceptInvitationCommand, diff --git a/clients/client-detective/src/DetectiveClient.ts b/clients/client-detective/src/DetectiveClient.ts index 11b61a09a515f..4f81b32ba6476 100644 --- a/clients/client-detective/src/DetectiveClient.ts +++ b/clients/client-detective/src/DetectiveClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDetectiveHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptInvitationCommandInput, AcceptInvitationCommandOutput } from "./commands/AcceptInvitationCommand"; @@ -132,7 +141,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-detective/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-detective/src/auth/httpAuthExtensionConfiguration.ts index 7ea7d76ce0c8f..c6e09598f084a 100644 --- a/clients/client-detective/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-detective/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DetectiveHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DetectiveHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-detective/src/auth/httpAuthSchemeProvider.ts b/clients/client-detective/src/auth/httpAuthSchemeProvider.ts index de29da61b5775..299e84d4344e6 100644 --- a/clients/client-detective/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-detective/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DetectiveClientConfig, DetectiveClientResolvedConfig } from "../DetectiveClient"; +import { type DetectiveClientResolvedConfig, DetectiveClientConfig } from "../DetectiveClient"; /** * @internal diff --git a/clients/client-detective/src/commands/AcceptInvitationCommand.ts b/clients/client-detective/src/commands/AcceptInvitationCommand.ts index 43d551e63f86f..54ce723d0e1ff 100644 --- a/clients/client-detective/src/commands/AcceptInvitationCommand.ts +++ b/clients/client-detective/src/commands/AcceptInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptInvitationRequest } from "../models/models_0"; +import type { AcceptInvitationRequest } from "../models/models_0"; import { AcceptInvitation } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/BatchGetGraphMemberDatasourcesCommand.ts b/clients/client-detective/src/commands/BatchGetGraphMemberDatasourcesCommand.ts index a56237837eac3..b96ac5210c4a2 100644 --- a/clients/client-detective/src/commands/BatchGetGraphMemberDatasourcesCommand.ts +++ b/clients/client-detective/src/commands/BatchGetGraphMemberDatasourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetGraphMemberDatasourcesRequest, BatchGetGraphMemberDatasourcesResponse } from "../models/models_0"; +import type { BatchGetGraphMemberDatasourcesRequest, BatchGetGraphMemberDatasourcesResponse } from "../models/models_0"; import { BatchGetGraphMemberDatasources } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/BatchGetMembershipDatasourcesCommand.ts b/clients/client-detective/src/commands/BatchGetMembershipDatasourcesCommand.ts index e2c8da5ff1aca..08e785cd62ed5 100644 --- a/clients/client-detective/src/commands/BatchGetMembershipDatasourcesCommand.ts +++ b/clients/client-detective/src/commands/BatchGetMembershipDatasourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetMembershipDatasourcesRequest, BatchGetMembershipDatasourcesResponse } from "../models/models_0"; +import type { BatchGetMembershipDatasourcesRequest, BatchGetMembershipDatasourcesResponse } from "../models/models_0"; import { BatchGetMembershipDatasources } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/CreateGraphCommand.ts b/clients/client-detective/src/commands/CreateGraphCommand.ts index 31ecd3f935826..677601bc26f2f 100644 --- a/clients/client-detective/src/commands/CreateGraphCommand.ts +++ b/clients/client-detective/src/commands/CreateGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGraphRequest, CreateGraphResponse } from "../models/models_0"; +import type { CreateGraphRequest, CreateGraphResponse } from "../models/models_0"; import { CreateGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/CreateMembersCommand.ts b/clients/client-detective/src/commands/CreateMembersCommand.ts index 9583bf4ea14ea..7a93564f7bdac 100644 --- a/clients/client-detective/src/commands/CreateMembersCommand.ts +++ b/clients/client-detective/src/commands/CreateMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMembersRequest, CreateMembersResponse } from "../models/models_0"; +import type { CreateMembersRequest, CreateMembersResponse } from "../models/models_0"; import { CreateMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/DeleteGraphCommand.ts b/clients/client-detective/src/commands/DeleteGraphCommand.ts index b74910a1fc6df..d3832f355dd97 100644 --- a/clients/client-detective/src/commands/DeleteGraphCommand.ts +++ b/clients/client-detective/src/commands/DeleteGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGraphRequest } from "../models/models_0"; +import type { DeleteGraphRequest } from "../models/models_0"; import { DeleteGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/DeleteMembersCommand.ts b/clients/client-detective/src/commands/DeleteMembersCommand.ts index ede68d2942dc9..a97ea115cc24a 100644 --- a/clients/client-detective/src/commands/DeleteMembersCommand.ts +++ b/clients/client-detective/src/commands/DeleteMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMembersRequest, DeleteMembersResponse } from "../models/models_0"; +import type { DeleteMembersRequest, DeleteMembersResponse } from "../models/models_0"; import { DeleteMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-detective/src/commands/DescribeOrganizationConfigurationCommand.ts index c60bc61575793..00d10b689b008 100644 --- a/clients/client-detective/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-detective/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeOrganizationConfigurationRequest, DescribeOrganizationConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-detective/src/commands/DisableOrganizationAdminAccountCommand.ts b/clients/client-detective/src/commands/DisableOrganizationAdminAccountCommand.ts index 6860a798426cd..755b6467250df 100644 --- a/clients/client-detective/src/commands/DisableOrganizationAdminAccountCommand.ts +++ b/clients/client-detective/src/commands/DisableOrganizationAdminAccountCommand.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; import { DisableOrganizationAdminAccount } from "../schemas/schemas_0"; diff --git a/clients/client-detective/src/commands/DisassociateMembershipCommand.ts b/clients/client-detective/src/commands/DisassociateMembershipCommand.ts index 2d743ef0c4ffd..5613e4f193ab0 100644 --- a/clients/client-detective/src/commands/DisassociateMembershipCommand.ts +++ b/clients/client-detective/src/commands/DisassociateMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateMembershipRequest } from "../models/models_0"; +import type { DisassociateMembershipRequest } from "../models/models_0"; import { DisassociateMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/EnableOrganizationAdminAccountCommand.ts b/clients/client-detective/src/commands/EnableOrganizationAdminAccountCommand.ts index 2a9b141bfac82..038248bec89ba 100644 --- a/clients/client-detective/src/commands/EnableOrganizationAdminAccountCommand.ts +++ b/clients/client-detective/src/commands/EnableOrganizationAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableOrganizationAdminAccountRequest } from "../models/models_0"; +import type { EnableOrganizationAdminAccountRequest } from "../models/models_0"; import { EnableOrganizationAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/GetInvestigationCommand.ts b/clients/client-detective/src/commands/GetInvestigationCommand.ts index 953652b7d93c0..1be705ec488ce 100644 --- a/clients/client-detective/src/commands/GetInvestigationCommand.ts +++ b/clients/client-detective/src/commands/GetInvestigationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInvestigationRequest, GetInvestigationResponse } from "../models/models_0"; +import type { GetInvestigationRequest, GetInvestigationResponse } from "../models/models_0"; import { GetInvestigation } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/GetMembersCommand.ts b/clients/client-detective/src/commands/GetMembersCommand.ts index 8c8e458be3059..01053c97eb13e 100644 --- a/clients/client-detective/src/commands/GetMembersCommand.ts +++ b/clients/client-detective/src/commands/GetMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMembersRequest, GetMembersResponse } from "../models/models_0"; +import type { GetMembersRequest, GetMembersResponse } from "../models/models_0"; import { GetMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/ListDatasourcePackagesCommand.ts b/clients/client-detective/src/commands/ListDatasourcePackagesCommand.ts index 0947015e53f6a..0cb6806bf1b46 100644 --- a/clients/client-detective/src/commands/ListDatasourcePackagesCommand.ts +++ b/clients/client-detective/src/commands/ListDatasourcePackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasourcePackagesRequest, ListDatasourcePackagesResponse } from "../models/models_0"; +import type { ListDatasourcePackagesRequest, ListDatasourcePackagesResponse } from "../models/models_0"; import { ListDatasourcePackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/ListGraphsCommand.ts b/clients/client-detective/src/commands/ListGraphsCommand.ts index cacbabae38e8d..d7e17d00db602 100644 --- a/clients/client-detective/src/commands/ListGraphsCommand.ts +++ b/clients/client-detective/src/commands/ListGraphsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGraphsRequest, ListGraphsResponse } from "../models/models_0"; +import type { ListGraphsRequest, ListGraphsResponse } from "../models/models_0"; import { ListGraphs } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/ListIndicatorsCommand.ts b/clients/client-detective/src/commands/ListIndicatorsCommand.ts index 91bf76527ff8c..7713f76c7b109 100644 --- a/clients/client-detective/src/commands/ListIndicatorsCommand.ts +++ b/clients/client-detective/src/commands/ListIndicatorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIndicatorsRequest, ListIndicatorsResponse } from "../models/models_0"; +import type { ListIndicatorsRequest, ListIndicatorsResponse } from "../models/models_0"; import { ListIndicators } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/ListInvestigationsCommand.ts b/clients/client-detective/src/commands/ListInvestigationsCommand.ts index 723619d4feef2..918374b65a5a5 100644 --- a/clients/client-detective/src/commands/ListInvestigationsCommand.ts +++ b/clients/client-detective/src/commands/ListInvestigationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInvestigationsRequest, ListInvestigationsResponse } from "../models/models_0"; +import type { ListInvestigationsRequest, ListInvestigationsResponse } from "../models/models_0"; import { ListInvestigations } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/ListInvitationsCommand.ts b/clients/client-detective/src/commands/ListInvitationsCommand.ts index 01af4cd486f0a..b7a05e50c5721 100644 --- a/clients/client-detective/src/commands/ListInvitationsCommand.ts +++ b/clients/client-detective/src/commands/ListInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_0"; +import type { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_0"; import { ListInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/ListMembersCommand.ts b/clients/client-detective/src/commands/ListMembersCommand.ts index 34a0047a2e745..e4418652c7e85 100644 --- a/clients/client-detective/src/commands/ListMembersCommand.ts +++ b/clients/client-detective/src/commands/ListMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMembersRequest, ListMembersResponse } from "../models/models_0"; +import type { ListMembersRequest, ListMembersResponse } from "../models/models_0"; import { ListMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/ListOrganizationAdminAccountsCommand.ts b/clients/client-detective/src/commands/ListOrganizationAdminAccountsCommand.ts index 6db2dcc51aff4..50f8d351b62d0 100644 --- a/clients/client-detective/src/commands/ListOrganizationAdminAccountsCommand.ts +++ b/clients/client-detective/src/commands/ListOrganizationAdminAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_0"; +import type { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_0"; import { ListOrganizationAdminAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/ListTagsForResourceCommand.ts b/clients/client-detective/src/commands/ListTagsForResourceCommand.ts index 8e3090337f030..cfa0db6432ac8 100644 --- a/clients/client-detective/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-detective/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/RejectInvitationCommand.ts b/clients/client-detective/src/commands/RejectInvitationCommand.ts index c2f3068d5ebd7..d2ee0b4c0336f 100644 --- a/clients/client-detective/src/commands/RejectInvitationCommand.ts +++ b/clients/client-detective/src/commands/RejectInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectInvitationRequest } from "../models/models_0"; +import type { RejectInvitationRequest } from "../models/models_0"; import { RejectInvitation } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/StartInvestigationCommand.ts b/clients/client-detective/src/commands/StartInvestigationCommand.ts index f666225bca22b..4441b82991aa3 100644 --- a/clients/client-detective/src/commands/StartInvestigationCommand.ts +++ b/clients/client-detective/src/commands/StartInvestigationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartInvestigationRequest, StartInvestigationResponse } from "../models/models_0"; +import type { StartInvestigationRequest, StartInvestigationResponse } from "../models/models_0"; import { StartInvestigation } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/StartMonitoringMemberCommand.ts b/clients/client-detective/src/commands/StartMonitoringMemberCommand.ts index 8bfbc4ed45fb5..575f93fe621de 100644 --- a/clients/client-detective/src/commands/StartMonitoringMemberCommand.ts +++ b/clients/client-detective/src/commands/StartMonitoringMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMonitoringMemberRequest } from "../models/models_0"; +import type { StartMonitoringMemberRequest } from "../models/models_0"; import { StartMonitoringMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/TagResourceCommand.ts b/clients/client-detective/src/commands/TagResourceCommand.ts index 8501136f5463b..7b2f48fa3cb09 100644 --- a/clients/client-detective/src/commands/TagResourceCommand.ts +++ b/clients/client-detective/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/UntagResourceCommand.ts b/clients/client-detective/src/commands/UntagResourceCommand.ts index c1dd671b5798c..8a30d0a02190a 100644 --- a/clients/client-detective/src/commands/UntagResourceCommand.ts +++ b/clients/client-detective/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/UpdateDatasourcePackagesCommand.ts b/clients/client-detective/src/commands/UpdateDatasourcePackagesCommand.ts index cc2ec9b92646e..3d5402f5c10f5 100644 --- a/clients/client-detective/src/commands/UpdateDatasourcePackagesCommand.ts +++ b/clients/client-detective/src/commands/UpdateDatasourcePackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDatasourcePackagesRequest } from "../models/models_0"; +import type { UpdateDatasourcePackagesRequest } from "../models/models_0"; import { UpdateDatasourcePackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/UpdateInvestigationStateCommand.ts b/clients/client-detective/src/commands/UpdateInvestigationStateCommand.ts index a3228d55803bc..71339cbc22503 100644 --- a/clients/client-detective/src/commands/UpdateInvestigationStateCommand.ts +++ b/clients/client-detective/src/commands/UpdateInvestigationStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInvestigationStateRequest } from "../models/models_0"; +import type { UpdateInvestigationStateRequest } from "../models/models_0"; import { UpdateInvestigationState } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-detective/src/commands/UpdateOrganizationConfigurationCommand.ts index 3a662ffde26af..9186227cdfa65 100644 --- a/clients/client-detective/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-detective/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; +import type { DetectiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DetectiveClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOrganizationConfigurationRequest } from "../models/models_0"; +import type { UpdateOrganizationConfigurationRequest } from "../models/models_0"; import { UpdateOrganizationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-detective/src/endpoint/EndpointParameters.ts b/clients/client-detective/src/endpoint/EndpointParameters.ts index e47c6755223cd..a10fc4c81f193 100644 --- a/clients/client-detective/src/endpoint/EndpointParameters.ts +++ b/clients/client-detective/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-detective/src/endpoint/endpointResolver.ts b/clients/client-detective/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-detective/src/endpoint/endpointResolver.ts +++ b/clients/client-detective/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-detective/src/extensionConfiguration.ts b/clients/client-detective/src/extensionConfiguration.ts index 2d7138244ee91..9784f90bfea23 100644 --- a/clients/client-detective/src/extensionConfiguration.ts +++ b/clients/client-detective/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-detective/src/models/DetectiveServiceException.ts b/clients/client-detective/src/models/DetectiveServiceException.ts index e428bac27bd72..4f50b1bbdb5ee 100644 --- a/clients/client-detective/src/models/DetectiveServiceException.ts +++ b/clients/client-detective/src/models/DetectiveServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-detective/src/models/errors.ts b/clients/client-detective/src/models/errors.ts index 2ca5411f25583..05df7066442ae 100644 --- a/clients/client-detective/src/models/errors.ts +++ b/clients/client-detective/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DetectiveServiceException as __BaseException } from "./DetectiveServiceException"; import { ErrorCode } from "./enums"; diff --git a/clients/client-detective/src/pagination/Interfaces.ts b/clients/client-detective/src/pagination/Interfaces.ts index efc33e84ca550..29d034ad2410f 100644 --- a/clients/client-detective/src/pagination/Interfaces.ts +++ b/clients/client-detective/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DetectiveClient } from "../DetectiveClient"; diff --git a/clients/client-detective/src/pagination/ListDatasourcePackagesPaginator.ts b/clients/client-detective/src/pagination/ListDatasourcePackagesPaginator.ts index b09da4312e082..72e240d806b44 100644 --- a/clients/client-detective/src/pagination/ListDatasourcePackagesPaginator.ts +++ b/clients/client-detective/src/pagination/ListDatasourcePackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasourcePackagesCommand, diff --git a/clients/client-detective/src/pagination/ListGraphsPaginator.ts b/clients/client-detective/src/pagination/ListGraphsPaginator.ts index 648a76de7d193..279954ffea39e 100644 --- a/clients/client-detective/src/pagination/ListGraphsPaginator.ts +++ b/clients/client-detective/src/pagination/ListGraphsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGraphsCommand, ListGraphsCommandInput, ListGraphsCommandOutput } from "../commands/ListGraphsCommand"; import { DetectiveClient } from "../DetectiveClient"; diff --git a/clients/client-detective/src/pagination/ListInvitationsPaginator.ts b/clients/client-detective/src/pagination/ListInvitationsPaginator.ts index 0baf675bf80f4..9d14997ec4fed 100644 --- a/clients/client-detective/src/pagination/ListInvitationsPaginator.ts +++ b/clients/client-detective/src/pagination/ListInvitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInvitationsCommand, diff --git a/clients/client-detective/src/pagination/ListMembersPaginator.ts b/clients/client-detective/src/pagination/ListMembersPaginator.ts index f576228dd9f72..0c3c40d42e2b5 100644 --- a/clients/client-detective/src/pagination/ListMembersPaginator.ts +++ b/clients/client-detective/src/pagination/ListMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMembersCommand, ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand"; import { DetectiveClient } from "../DetectiveClient"; diff --git a/clients/client-detective/src/pagination/ListOrganizationAdminAccountsPaginator.ts b/clients/client-detective/src/pagination/ListOrganizationAdminAccountsPaginator.ts index eeab6da94b181..625e4447cee7f 100644 --- a/clients/client-detective/src/pagination/ListOrganizationAdminAccountsPaginator.ts +++ b/clients/client-detective/src/pagination/ListOrganizationAdminAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationAdminAccountsCommand, diff --git a/clients/client-detective/src/runtimeConfig.browser.ts b/clients/client-detective/src/runtimeConfig.browser.ts index 9afb1ee3fe9a8..bae6e476f5d66 100644 --- a/clients/client-detective/src/runtimeConfig.browser.ts +++ b/clients/client-detective/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DetectiveClientConfig } from "./DetectiveClient"; + +import type { DetectiveClientConfig } from "./DetectiveClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-detective/src/runtimeConfig.native.ts b/clients/client-detective/src/runtimeConfig.native.ts index ee2613cbd6115..bff4e5c57b9c8 100644 --- a/clients/client-detective/src/runtimeConfig.native.ts +++ b/clients/client-detective/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DetectiveClientConfig } from "./DetectiveClient"; +import type { DetectiveClientConfig } from "./DetectiveClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-detective/src/runtimeConfig.shared.ts b/clients/client-detective/src/runtimeConfig.shared.ts index 89f75572c43a2..f3ecd515c6818 100644 --- a/clients/client-detective/src/runtimeConfig.shared.ts +++ b/clients/client-detective/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDetectiveHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DetectiveClientConfig } from "./DetectiveClient"; +import type { DetectiveClientConfig } from "./DetectiveClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-detective/src/runtimeConfig.ts b/clients/client-detective/src/runtimeConfig.ts index 34044f323d3a1..cf2db91a9230e 100644 --- a/clients/client-detective/src/runtimeConfig.ts +++ b/clients/client-detective/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DetectiveClientConfig } from "./DetectiveClient"; + +import type { DetectiveClientConfig } from "./DetectiveClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-detective/src/runtimeExtensions.ts b/clients/client-detective/src/runtimeExtensions.ts index b6b7a8b4be051..7f8195f69d093 100644 --- a/clients/client-detective/src/runtimeExtensions.ts +++ b/clients/client-detective/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DetectiveExtensionConfiguration } from "./extensionConfiguration"; +import type { DetectiveExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-detective/src/schemas/schemas_0.ts b/clients/client-detective/src/schemas/schemas_0.ts index 4a54958f9feb9..87f95ec0bf268 100644 --- a/clients/client-detective/src/schemas/schemas_0.ts +++ b/clients/client-detective/src/schemas/schemas_0.ts @@ -210,7 +210,7 @@ const n0 = "com.amazonaws.detective"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-device-farm/package.json b/clients/client-device-farm/package.json index 98dae518b5416..64a100ddcd049 100644 --- a/clients/client-device-farm/package.json +++ b/clients/client-device-farm/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-device-farm/src/DeviceFarm.ts b/clients/client-device-farm/src/DeviceFarm.ts index 981c0527f1215..1e46ef656f29c 100644 --- a/clients/client-device-farm/src/DeviceFarm.ts +++ b/clients/client-device-farm/src/DeviceFarm.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateDevicePoolCommand, @@ -311,7 +311,7 @@ import { UpdateVPCEConfigurationCommandInput, UpdateVPCEConfigurationCommandOutput, } from "./commands/UpdateVPCEConfigurationCommand"; -import { DeviceFarmClient, DeviceFarmClientConfig } from "./DeviceFarmClient"; +import { DeviceFarmClient } from "./DeviceFarmClient"; const commands = { CreateDevicePoolCommand, diff --git a/clients/client-device-farm/src/DeviceFarmClient.ts b/clients/client-device-farm/src/DeviceFarmClient.ts index 25c7364bfcbe0..3f533126262a2 100644 --- a/clients/client-device-farm/src/DeviceFarmClient.ts +++ b/clients/client-device-farm/src/DeviceFarmClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDeviceFarmHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateDevicePoolCommandInput, CreateDevicePoolCommandOutput } from "./commands/CreateDevicePoolCommand"; @@ -237,7 +246,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-device-farm/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-device-farm/src/auth/httpAuthExtensionConfiguration.ts index 5cc2b868a2ac5..bcad40bd8c4e9 100644 --- a/clients/client-device-farm/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-device-farm/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DeviceFarmHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DeviceFarmHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-device-farm/src/auth/httpAuthSchemeProvider.ts b/clients/client-device-farm/src/auth/httpAuthSchemeProvider.ts index ba341f38abe03..c477fc5f960c7 100644 --- a/clients/client-device-farm/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-device-farm/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DeviceFarmClientConfig, DeviceFarmClientResolvedConfig } from "../DeviceFarmClient"; +import { type DeviceFarmClientResolvedConfig, DeviceFarmClientConfig } from "../DeviceFarmClient"; /** * @internal diff --git a/clients/client-device-farm/src/commands/CreateDevicePoolCommand.ts b/clients/client-device-farm/src/commands/CreateDevicePoolCommand.ts index 016a770efeaa5..67512c1d5903c 100644 --- a/clients/client-device-farm/src/commands/CreateDevicePoolCommand.ts +++ b/clients/client-device-farm/src/commands/CreateDevicePoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDevicePoolRequest, CreateDevicePoolResult } from "../models/models_0"; +import type { CreateDevicePoolRequest, CreateDevicePoolResult } from "../models/models_0"; import { CreateDevicePool } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/CreateInstanceProfileCommand.ts b/clients/client-device-farm/src/commands/CreateInstanceProfileCommand.ts index 826d53a2a0025..5aac704a6cb8f 100644 --- a/clients/client-device-farm/src/commands/CreateInstanceProfileCommand.ts +++ b/clients/client-device-farm/src/commands/CreateInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInstanceProfileRequest, CreateInstanceProfileResult } from "../models/models_0"; +import type { CreateInstanceProfileRequest, CreateInstanceProfileResult } from "../models/models_0"; import { CreateInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/CreateNetworkProfileCommand.ts b/clients/client-device-farm/src/commands/CreateNetworkProfileCommand.ts index e4b7a300e1e0c..ed6485fd94119 100644 --- a/clients/client-device-farm/src/commands/CreateNetworkProfileCommand.ts +++ b/clients/client-device-farm/src/commands/CreateNetworkProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNetworkProfileRequest, CreateNetworkProfileResult } from "../models/models_0"; +import type { CreateNetworkProfileRequest, CreateNetworkProfileResult } from "../models/models_0"; import { CreateNetworkProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/CreateProjectCommand.ts b/clients/client-device-farm/src/commands/CreateProjectCommand.ts index a4c4f6543b854..e3ebc98baf546 100644 --- a/clients/client-device-farm/src/commands/CreateProjectCommand.ts +++ b/clients/client-device-farm/src/commands/CreateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectRequest, CreateProjectResult } from "../models/models_0"; +import type { CreateProjectRequest, CreateProjectResult } from "../models/models_0"; import { CreateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/CreateRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/CreateRemoteAccessSessionCommand.ts index 1230af7b0e6f6..332b12d422b11 100644 --- a/clients/client-device-farm/src/commands/CreateRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/CreateRemoteAccessSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRemoteAccessSessionRequest, CreateRemoteAccessSessionResult } from "../models/models_0"; +import type { CreateRemoteAccessSessionRequest, CreateRemoteAccessSessionResult } from "../models/models_0"; import { CreateRemoteAccessSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/CreateTestGridProjectCommand.ts b/clients/client-device-farm/src/commands/CreateTestGridProjectCommand.ts index a5e8872d3bf66..05db89a55023c 100644 --- a/clients/client-device-farm/src/commands/CreateTestGridProjectCommand.ts +++ b/clients/client-device-farm/src/commands/CreateTestGridProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTestGridProjectRequest, CreateTestGridProjectResult } from "../models/models_0"; +import type { CreateTestGridProjectRequest, CreateTestGridProjectResult } from "../models/models_0"; import { CreateTestGridProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/CreateTestGridUrlCommand.ts b/clients/client-device-farm/src/commands/CreateTestGridUrlCommand.ts index 1665ed2dd455d..b30756e50132f 100644 --- a/clients/client-device-farm/src/commands/CreateTestGridUrlCommand.ts +++ b/clients/client-device-farm/src/commands/CreateTestGridUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTestGridUrlRequest, CreateTestGridUrlResult } from "../models/models_0"; +import type { CreateTestGridUrlRequest, CreateTestGridUrlResult } from "../models/models_0"; import { CreateTestGridUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/CreateUploadCommand.ts b/clients/client-device-farm/src/commands/CreateUploadCommand.ts index 4813b7d5fcf1b..f18174919c5f9 100644 --- a/clients/client-device-farm/src/commands/CreateUploadCommand.ts +++ b/clients/client-device-farm/src/commands/CreateUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUploadRequest, CreateUploadResult } from "../models/models_0"; +import type { CreateUploadRequest, CreateUploadResult } from "../models/models_0"; import { CreateUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/CreateVPCEConfigurationCommand.ts b/clients/client-device-farm/src/commands/CreateVPCEConfigurationCommand.ts index 46a741a6e1321..c8a37fb24a191 100644 --- a/clients/client-device-farm/src/commands/CreateVPCEConfigurationCommand.ts +++ b/clients/client-device-farm/src/commands/CreateVPCEConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVPCEConfigurationRequest, CreateVPCEConfigurationResult } from "../models/models_0"; +import type { CreateVPCEConfigurationRequest, CreateVPCEConfigurationResult } from "../models/models_0"; import { CreateVPCEConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/DeleteDevicePoolCommand.ts b/clients/client-device-farm/src/commands/DeleteDevicePoolCommand.ts index ebc77fe33d4e8..d170d25cdb179 100644 --- a/clients/client-device-farm/src/commands/DeleteDevicePoolCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteDevicePoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDevicePoolRequest, DeleteDevicePoolResult } from "../models/models_0"; +import type { DeleteDevicePoolRequest, DeleteDevicePoolResult } from "../models/models_0"; import { DeleteDevicePool } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/DeleteInstanceProfileCommand.ts b/clients/client-device-farm/src/commands/DeleteInstanceProfileCommand.ts index 7201b493d97a5..1f1578323442f 100644 --- a/clients/client-device-farm/src/commands/DeleteInstanceProfileCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInstanceProfileRequest, DeleteInstanceProfileResult } from "../models/models_0"; +import type { DeleteInstanceProfileRequest, DeleteInstanceProfileResult } from "../models/models_0"; import { DeleteInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/DeleteNetworkProfileCommand.ts b/clients/client-device-farm/src/commands/DeleteNetworkProfileCommand.ts index 1763e85d39657..245f9969fb173 100644 --- a/clients/client-device-farm/src/commands/DeleteNetworkProfileCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteNetworkProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNetworkProfileRequest, DeleteNetworkProfileResult } from "../models/models_0"; +import type { DeleteNetworkProfileRequest, DeleteNetworkProfileResult } from "../models/models_0"; import { DeleteNetworkProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/DeleteProjectCommand.ts b/clients/client-device-farm/src/commands/DeleteProjectCommand.ts index c4d08101a9b10..b35ed643ef0d2 100644 --- a/clients/client-device-farm/src/commands/DeleteProjectCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectRequest, DeleteProjectResult } from "../models/models_0"; +import type { DeleteProjectRequest, DeleteProjectResult } from "../models/models_0"; import { DeleteProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/DeleteRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/DeleteRemoteAccessSessionCommand.ts index 11ceb9b8e4bd1..620847020ee40 100644 --- a/clients/client-device-farm/src/commands/DeleteRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteRemoteAccessSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRemoteAccessSessionRequest, DeleteRemoteAccessSessionResult } from "../models/models_0"; +import type { DeleteRemoteAccessSessionRequest, DeleteRemoteAccessSessionResult } from "../models/models_0"; import { DeleteRemoteAccessSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/DeleteRunCommand.ts b/clients/client-device-farm/src/commands/DeleteRunCommand.ts index a4a4ce9be10d8..3a8361cca8ed4 100644 --- a/clients/client-device-farm/src/commands/DeleteRunCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRunRequest, DeleteRunResult } from "../models/models_0"; +import type { DeleteRunRequest, DeleteRunResult } from "../models/models_0"; import { DeleteRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/DeleteTestGridProjectCommand.ts b/clients/client-device-farm/src/commands/DeleteTestGridProjectCommand.ts index d3cc6b5f3625a..c580c1b6779b1 100644 --- a/clients/client-device-farm/src/commands/DeleteTestGridProjectCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteTestGridProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTestGridProjectRequest, DeleteTestGridProjectResult } from "../models/models_0"; +import type { DeleteTestGridProjectRequest, DeleteTestGridProjectResult } from "../models/models_0"; import { DeleteTestGridProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/DeleteUploadCommand.ts b/clients/client-device-farm/src/commands/DeleteUploadCommand.ts index fbbc167333c60..503c090e4a1c3 100644 --- a/clients/client-device-farm/src/commands/DeleteUploadCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUploadRequest, DeleteUploadResult } from "../models/models_0"; +import type { DeleteUploadRequest, DeleteUploadResult } from "../models/models_0"; import { DeleteUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/DeleteVPCEConfigurationCommand.ts b/clients/client-device-farm/src/commands/DeleteVPCEConfigurationCommand.ts index ecffe47fe57ea..24076ed359e37 100644 --- a/clients/client-device-farm/src/commands/DeleteVPCEConfigurationCommand.ts +++ b/clients/client-device-farm/src/commands/DeleteVPCEConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVPCEConfigurationRequest, DeleteVPCEConfigurationResult } from "../models/models_0"; +import type { DeleteVPCEConfigurationRequest, DeleteVPCEConfigurationResult } from "../models/models_0"; import { DeleteVPCEConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetAccountSettingsCommand.ts b/clients/client-device-farm/src/commands/GetAccountSettingsCommand.ts index d3ee8f443c2d5..19d6189c2aaf9 100644 --- a/clients/client-device-farm/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-device-farm/src/commands/GetAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountSettingsRequest, GetAccountSettingsResult } from "../models/models_0"; +import type { GetAccountSettingsRequest, GetAccountSettingsResult } from "../models/models_0"; import { GetAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetDeviceCommand.ts b/clients/client-device-farm/src/commands/GetDeviceCommand.ts index 886a7700f4ee4..ae6e394418879 100644 --- a/clients/client-device-farm/src/commands/GetDeviceCommand.ts +++ b/clients/client-device-farm/src/commands/GetDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeviceRequest, GetDeviceResult } from "../models/models_0"; +import type { GetDeviceRequest, GetDeviceResult } from "../models/models_0"; import { GetDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetDeviceInstanceCommand.ts b/clients/client-device-farm/src/commands/GetDeviceInstanceCommand.ts index be4d5b1e8a81e..de6a5f06d04d8 100644 --- a/clients/client-device-farm/src/commands/GetDeviceInstanceCommand.ts +++ b/clients/client-device-farm/src/commands/GetDeviceInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeviceInstanceRequest, GetDeviceInstanceResult } from "../models/models_0"; +import type { GetDeviceInstanceRequest, GetDeviceInstanceResult } from "../models/models_0"; import { GetDeviceInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetDevicePoolCommand.ts b/clients/client-device-farm/src/commands/GetDevicePoolCommand.ts index 61f108abe303d..1fd30dd076491 100644 --- a/clients/client-device-farm/src/commands/GetDevicePoolCommand.ts +++ b/clients/client-device-farm/src/commands/GetDevicePoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDevicePoolRequest, GetDevicePoolResult } from "../models/models_0"; +import type { GetDevicePoolRequest, GetDevicePoolResult } from "../models/models_0"; import { GetDevicePool } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetDevicePoolCompatibilityCommand.ts b/clients/client-device-farm/src/commands/GetDevicePoolCompatibilityCommand.ts index 3d55497d70564..c13b3c3b43070 100644 --- a/clients/client-device-farm/src/commands/GetDevicePoolCompatibilityCommand.ts +++ b/clients/client-device-farm/src/commands/GetDevicePoolCompatibilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDevicePoolCompatibilityRequest, GetDevicePoolCompatibilityResult } from "../models/models_0"; +import type { GetDevicePoolCompatibilityRequest, GetDevicePoolCompatibilityResult } from "../models/models_0"; import { GetDevicePoolCompatibility } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetInstanceProfileCommand.ts b/clients/client-device-farm/src/commands/GetInstanceProfileCommand.ts index fa11a96b10350..0b40e36f58911 100644 --- a/clients/client-device-farm/src/commands/GetInstanceProfileCommand.ts +++ b/clients/client-device-farm/src/commands/GetInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstanceProfileRequest, GetInstanceProfileResult } from "../models/models_0"; +import type { GetInstanceProfileRequest, GetInstanceProfileResult } from "../models/models_0"; import { GetInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetJobCommand.ts b/clients/client-device-farm/src/commands/GetJobCommand.ts index 2c9e41d8a802a..15fcc6c466206 100644 --- a/clients/client-device-farm/src/commands/GetJobCommand.ts +++ b/clients/client-device-farm/src/commands/GetJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobRequest, GetJobResult } from "../models/models_0"; +import type { GetJobRequest, GetJobResult } from "../models/models_0"; import { GetJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetNetworkProfileCommand.ts b/clients/client-device-farm/src/commands/GetNetworkProfileCommand.ts index b1f83e5598626..649223d6dffdf 100644 --- a/clients/client-device-farm/src/commands/GetNetworkProfileCommand.ts +++ b/clients/client-device-farm/src/commands/GetNetworkProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNetworkProfileRequest, GetNetworkProfileResult } from "../models/models_0"; +import type { GetNetworkProfileRequest, GetNetworkProfileResult } from "../models/models_0"; import { GetNetworkProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetOfferingStatusCommand.ts b/clients/client-device-farm/src/commands/GetOfferingStatusCommand.ts index 2907e276e1f8f..9f5a6fda3af83 100644 --- a/clients/client-device-farm/src/commands/GetOfferingStatusCommand.ts +++ b/clients/client-device-farm/src/commands/GetOfferingStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOfferingStatusRequest, GetOfferingStatusResult } from "../models/models_0"; +import type { GetOfferingStatusRequest, GetOfferingStatusResult } from "../models/models_0"; import { GetOfferingStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetProjectCommand.ts b/clients/client-device-farm/src/commands/GetProjectCommand.ts index 3addd4fc60501..fa21bf679f106 100644 --- a/clients/client-device-farm/src/commands/GetProjectCommand.ts +++ b/clients/client-device-farm/src/commands/GetProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProjectRequest, GetProjectResult } from "../models/models_0"; +import type { GetProjectRequest, GetProjectResult } from "../models/models_0"; import { GetProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/GetRemoteAccessSessionCommand.ts index 36d7bc2ce2911..8a13f92bed4e3 100644 --- a/clients/client-device-farm/src/commands/GetRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/GetRemoteAccessSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRemoteAccessSessionRequest, GetRemoteAccessSessionResult } from "../models/models_0"; +import type { GetRemoteAccessSessionRequest, GetRemoteAccessSessionResult } from "../models/models_0"; import { GetRemoteAccessSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetRunCommand.ts b/clients/client-device-farm/src/commands/GetRunCommand.ts index fc0e038cafeab..ffac95b068ca0 100644 --- a/clients/client-device-farm/src/commands/GetRunCommand.ts +++ b/clients/client-device-farm/src/commands/GetRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRunRequest, GetRunResult } from "../models/models_0"; +import type { GetRunRequest, GetRunResult } from "../models/models_0"; import { GetRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetSuiteCommand.ts b/clients/client-device-farm/src/commands/GetSuiteCommand.ts index cbd1fd8b89153..2007af21ebb60 100644 --- a/clients/client-device-farm/src/commands/GetSuiteCommand.ts +++ b/clients/client-device-farm/src/commands/GetSuiteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSuiteRequest, GetSuiteResult } from "../models/models_0"; +import type { GetSuiteRequest, GetSuiteResult } from "../models/models_0"; import { GetSuite } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetTestCommand.ts b/clients/client-device-farm/src/commands/GetTestCommand.ts index c0545b4caf167..c54dd68a39f96 100644 --- a/clients/client-device-farm/src/commands/GetTestCommand.ts +++ b/clients/client-device-farm/src/commands/GetTestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTestRequest, GetTestResult } from "../models/models_0"; +import type { GetTestRequest, GetTestResult } from "../models/models_0"; import { GetTest } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetTestGridProjectCommand.ts b/clients/client-device-farm/src/commands/GetTestGridProjectCommand.ts index 9d0cc39fd9ad8..742e87d907e94 100644 --- a/clients/client-device-farm/src/commands/GetTestGridProjectCommand.ts +++ b/clients/client-device-farm/src/commands/GetTestGridProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTestGridProjectRequest, GetTestGridProjectResult } from "../models/models_0"; +import type { GetTestGridProjectRequest, GetTestGridProjectResult } from "../models/models_0"; import { GetTestGridProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetTestGridSessionCommand.ts b/clients/client-device-farm/src/commands/GetTestGridSessionCommand.ts index 1ee5ba5db0e6a..7165d79df25d7 100644 --- a/clients/client-device-farm/src/commands/GetTestGridSessionCommand.ts +++ b/clients/client-device-farm/src/commands/GetTestGridSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTestGridSessionRequest, GetTestGridSessionResult } from "../models/models_0"; +import type { GetTestGridSessionRequest, GetTestGridSessionResult } from "../models/models_0"; import { GetTestGridSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetUploadCommand.ts b/clients/client-device-farm/src/commands/GetUploadCommand.ts index 93d66e09269dc..2226734d234f3 100644 --- a/clients/client-device-farm/src/commands/GetUploadCommand.ts +++ b/clients/client-device-farm/src/commands/GetUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUploadRequest, GetUploadResult } from "../models/models_0"; +import type { GetUploadRequest, GetUploadResult } from "../models/models_0"; import { GetUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/GetVPCEConfigurationCommand.ts b/clients/client-device-farm/src/commands/GetVPCEConfigurationCommand.ts index b0849b9e7d674..9b81d7e2addf0 100644 --- a/clients/client-device-farm/src/commands/GetVPCEConfigurationCommand.ts +++ b/clients/client-device-farm/src/commands/GetVPCEConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVPCEConfigurationRequest, GetVPCEConfigurationResult } from "../models/models_0"; +import type { GetVPCEConfigurationRequest, GetVPCEConfigurationResult } from "../models/models_0"; import { GetVPCEConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/InstallToRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/InstallToRemoteAccessSessionCommand.ts index 2dac3ef813299..a43d1df0b2b99 100644 --- a/clients/client-device-farm/src/commands/InstallToRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/InstallToRemoteAccessSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InstallToRemoteAccessSessionRequest, InstallToRemoteAccessSessionResult } from "../models/models_0"; +import type { InstallToRemoteAccessSessionRequest, InstallToRemoteAccessSessionResult } from "../models/models_0"; import { InstallToRemoteAccessSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListArtifactsCommand.ts b/clients/client-device-farm/src/commands/ListArtifactsCommand.ts index b48299e4dad08..f8967519272fb 100644 --- a/clients/client-device-farm/src/commands/ListArtifactsCommand.ts +++ b/clients/client-device-farm/src/commands/ListArtifactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListArtifactsRequest, ListArtifactsResult } from "../models/models_0"; +import type { ListArtifactsRequest, ListArtifactsResult } from "../models/models_0"; import { ListArtifacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListDeviceInstancesCommand.ts b/clients/client-device-farm/src/commands/ListDeviceInstancesCommand.ts index 8dbbdae3630ac..c0a64c8fad522 100644 --- a/clients/client-device-farm/src/commands/ListDeviceInstancesCommand.ts +++ b/clients/client-device-farm/src/commands/ListDeviceInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeviceInstancesRequest, ListDeviceInstancesResult } from "../models/models_0"; +import type { ListDeviceInstancesRequest, ListDeviceInstancesResult } from "../models/models_0"; import { ListDeviceInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListDevicePoolsCommand.ts b/clients/client-device-farm/src/commands/ListDevicePoolsCommand.ts index 158eeb6580b15..b9850163281fb 100644 --- a/clients/client-device-farm/src/commands/ListDevicePoolsCommand.ts +++ b/clients/client-device-farm/src/commands/ListDevicePoolsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevicePoolsRequest, ListDevicePoolsResult } from "../models/models_0"; +import type { ListDevicePoolsRequest, ListDevicePoolsResult } from "../models/models_0"; import { ListDevicePools } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListDevicesCommand.ts b/clients/client-device-farm/src/commands/ListDevicesCommand.ts index 875546074ddf8..6e8a4431e5d52 100644 --- a/clients/client-device-farm/src/commands/ListDevicesCommand.ts +++ b/clients/client-device-farm/src/commands/ListDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevicesRequest, ListDevicesResult } from "../models/models_0"; +import type { ListDevicesRequest, ListDevicesResult } from "../models/models_0"; import { ListDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListInstanceProfilesCommand.ts b/clients/client-device-farm/src/commands/ListInstanceProfilesCommand.ts index d33173567a1b7..49f8486720218 100644 --- a/clients/client-device-farm/src/commands/ListInstanceProfilesCommand.ts +++ b/clients/client-device-farm/src/commands/ListInstanceProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstanceProfilesRequest, ListInstanceProfilesResult } from "../models/models_0"; +import type { ListInstanceProfilesRequest, ListInstanceProfilesResult } from "../models/models_0"; import { ListInstanceProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListJobsCommand.ts b/clients/client-device-farm/src/commands/ListJobsCommand.ts index 87d7ee7c1a8aa..476f32672b122 100644 --- a/clients/client-device-farm/src/commands/ListJobsCommand.ts +++ b/clients/client-device-farm/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsRequest, ListJobsResult } from "../models/models_0"; +import type { ListJobsRequest, ListJobsResult } from "../models/models_0"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListNetworkProfilesCommand.ts b/clients/client-device-farm/src/commands/ListNetworkProfilesCommand.ts index 880bcc85dddaa..56e839ea8ee37 100644 --- a/clients/client-device-farm/src/commands/ListNetworkProfilesCommand.ts +++ b/clients/client-device-farm/src/commands/ListNetworkProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNetworkProfilesRequest, ListNetworkProfilesResult } from "../models/models_0"; +import type { ListNetworkProfilesRequest, ListNetworkProfilesResult } from "../models/models_0"; import { ListNetworkProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListOfferingPromotionsCommand.ts b/clients/client-device-farm/src/commands/ListOfferingPromotionsCommand.ts index 8b11072b5262f..dec66662870ea 100644 --- a/clients/client-device-farm/src/commands/ListOfferingPromotionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListOfferingPromotionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOfferingPromotionsRequest, ListOfferingPromotionsResult } from "../models/models_0"; +import type { ListOfferingPromotionsRequest, ListOfferingPromotionsResult } from "../models/models_0"; import { ListOfferingPromotions } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListOfferingTransactionsCommand.ts b/clients/client-device-farm/src/commands/ListOfferingTransactionsCommand.ts index bf0f65959d64c..177e9d0d7e7c7 100644 --- a/clients/client-device-farm/src/commands/ListOfferingTransactionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListOfferingTransactionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOfferingTransactionsRequest, ListOfferingTransactionsResult } from "../models/models_0"; +import type { ListOfferingTransactionsRequest, ListOfferingTransactionsResult } from "../models/models_0"; import { ListOfferingTransactions } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListOfferingsCommand.ts b/clients/client-device-farm/src/commands/ListOfferingsCommand.ts index 26be67bf4143f..d0151ed8dd889 100644 --- a/clients/client-device-farm/src/commands/ListOfferingsCommand.ts +++ b/clients/client-device-farm/src/commands/ListOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOfferingsRequest, ListOfferingsResult } from "../models/models_0"; +import type { ListOfferingsRequest, ListOfferingsResult } from "../models/models_0"; import { ListOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListProjectsCommand.ts b/clients/client-device-farm/src/commands/ListProjectsCommand.ts index 599e2f5ad6f52..c804facef5177 100644 --- a/clients/client-device-farm/src/commands/ListProjectsCommand.ts +++ b/clients/client-device-farm/src/commands/ListProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProjectsRequest, ListProjectsResult } from "../models/models_0"; +import type { ListProjectsRequest, ListProjectsResult } from "../models/models_0"; import { ListProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListRemoteAccessSessionsCommand.ts b/clients/client-device-farm/src/commands/ListRemoteAccessSessionsCommand.ts index 9c7d2ff7bee21..1eb5bec49fb24 100644 --- a/clients/client-device-farm/src/commands/ListRemoteAccessSessionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListRemoteAccessSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRemoteAccessSessionsRequest, ListRemoteAccessSessionsResult } from "../models/models_0"; +import type { ListRemoteAccessSessionsRequest, ListRemoteAccessSessionsResult } from "../models/models_0"; import { ListRemoteAccessSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListRunsCommand.ts b/clients/client-device-farm/src/commands/ListRunsCommand.ts index 5418962bcda1e..f6fff6d1019e1 100644 --- a/clients/client-device-farm/src/commands/ListRunsCommand.ts +++ b/clients/client-device-farm/src/commands/ListRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRunsRequest, ListRunsResult } from "../models/models_0"; +import type { ListRunsRequest, ListRunsResult } from "../models/models_0"; import { ListRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListSamplesCommand.ts b/clients/client-device-farm/src/commands/ListSamplesCommand.ts index 5edbcfa14158f..3c3e40fbe02c3 100644 --- a/clients/client-device-farm/src/commands/ListSamplesCommand.ts +++ b/clients/client-device-farm/src/commands/ListSamplesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSamplesRequest, ListSamplesResult } from "../models/models_0"; +import type { ListSamplesRequest, ListSamplesResult } from "../models/models_0"; import { ListSamples } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListSuitesCommand.ts b/clients/client-device-farm/src/commands/ListSuitesCommand.ts index e5bffa26357d9..e90b0d6a25fbf 100644 --- a/clients/client-device-farm/src/commands/ListSuitesCommand.ts +++ b/clients/client-device-farm/src/commands/ListSuitesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSuitesRequest, ListSuitesResult } from "../models/models_0"; +import type { ListSuitesRequest, ListSuitesResult } from "../models/models_0"; import { ListSuites } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListTagsForResourceCommand.ts b/clients/client-device-farm/src/commands/ListTagsForResourceCommand.ts index bace1f5c0b57d..03108469a3df7 100644 --- a/clients/client-device-farm/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-device-farm/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListTestGridProjectsCommand.ts b/clients/client-device-farm/src/commands/ListTestGridProjectsCommand.ts index 1c6fd180c2b77..2d7f54c52d333 100644 --- a/clients/client-device-farm/src/commands/ListTestGridProjectsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestGridProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTestGridProjectsRequest, ListTestGridProjectsResult } from "../models/models_0"; +import type { ListTestGridProjectsRequest, ListTestGridProjectsResult } from "../models/models_0"; import { ListTestGridProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListTestGridSessionActionsCommand.ts b/clients/client-device-farm/src/commands/ListTestGridSessionActionsCommand.ts index 745b5e92684c4..f604f194d09ec 100644 --- a/clients/client-device-farm/src/commands/ListTestGridSessionActionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestGridSessionActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTestGridSessionActionsRequest, ListTestGridSessionActionsResult } from "../models/models_0"; +import type { ListTestGridSessionActionsRequest, ListTestGridSessionActionsResult } from "../models/models_0"; import { ListTestGridSessionActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListTestGridSessionArtifactsCommand.ts b/clients/client-device-farm/src/commands/ListTestGridSessionArtifactsCommand.ts index 60d4cd666323f..9af6ae19fd29d 100644 --- a/clients/client-device-farm/src/commands/ListTestGridSessionArtifactsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestGridSessionArtifactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTestGridSessionArtifactsRequest, ListTestGridSessionArtifactsResult } from "../models/models_0"; +import type { ListTestGridSessionArtifactsRequest, ListTestGridSessionArtifactsResult } from "../models/models_0"; import { ListTestGridSessionArtifacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListTestGridSessionsCommand.ts b/clients/client-device-farm/src/commands/ListTestGridSessionsCommand.ts index c36f60792311e..e59094e8183f1 100644 --- a/clients/client-device-farm/src/commands/ListTestGridSessionsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestGridSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTestGridSessionsRequest, ListTestGridSessionsResult } from "../models/models_0"; +import type { ListTestGridSessionsRequest, ListTestGridSessionsResult } from "../models/models_0"; import { ListTestGridSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListTestsCommand.ts b/clients/client-device-farm/src/commands/ListTestsCommand.ts index 26d072a01a169..396a3f060036c 100644 --- a/clients/client-device-farm/src/commands/ListTestsCommand.ts +++ b/clients/client-device-farm/src/commands/ListTestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTestsRequest, ListTestsResult } from "../models/models_0"; +import type { ListTestsRequest, ListTestsResult } from "../models/models_0"; import { ListTests } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListUniqueProblemsCommand.ts b/clients/client-device-farm/src/commands/ListUniqueProblemsCommand.ts index d8b64666b7cc7..ff705f5f47725 100644 --- a/clients/client-device-farm/src/commands/ListUniqueProblemsCommand.ts +++ b/clients/client-device-farm/src/commands/ListUniqueProblemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUniqueProblemsRequest, ListUniqueProblemsResult } from "../models/models_0"; +import type { ListUniqueProblemsRequest, ListUniqueProblemsResult } from "../models/models_0"; import { ListUniqueProblems } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListUploadsCommand.ts b/clients/client-device-farm/src/commands/ListUploadsCommand.ts index a9d6f1e10e3e9..22958630958bf 100644 --- a/clients/client-device-farm/src/commands/ListUploadsCommand.ts +++ b/clients/client-device-farm/src/commands/ListUploadsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUploadsRequest, ListUploadsResult } from "../models/models_0"; +import type { ListUploadsRequest, ListUploadsResult } from "../models/models_0"; import { ListUploads } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ListVPCEConfigurationsCommand.ts b/clients/client-device-farm/src/commands/ListVPCEConfigurationsCommand.ts index ffe4a53e8b537..ec815dc8984ef 100644 --- a/clients/client-device-farm/src/commands/ListVPCEConfigurationsCommand.ts +++ b/clients/client-device-farm/src/commands/ListVPCEConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVPCEConfigurationsRequest, ListVPCEConfigurationsResult } from "../models/models_0"; +import type { ListVPCEConfigurationsRequest, ListVPCEConfigurationsResult } from "../models/models_0"; import { ListVPCEConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/PurchaseOfferingCommand.ts b/clients/client-device-farm/src/commands/PurchaseOfferingCommand.ts index e1a177eb7c7da..3c84c55506ed3 100644 --- a/clients/client-device-farm/src/commands/PurchaseOfferingCommand.ts +++ b/clients/client-device-farm/src/commands/PurchaseOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PurchaseOfferingRequest, PurchaseOfferingResult } from "../models/models_0"; +import type { PurchaseOfferingRequest, PurchaseOfferingResult } from "../models/models_0"; import { PurchaseOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/RenewOfferingCommand.ts b/clients/client-device-farm/src/commands/RenewOfferingCommand.ts index 68ba210870f56..20ddac1fa1e21 100644 --- a/clients/client-device-farm/src/commands/RenewOfferingCommand.ts +++ b/clients/client-device-farm/src/commands/RenewOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RenewOfferingRequest, RenewOfferingResult } from "../models/models_0"; +import type { RenewOfferingRequest, RenewOfferingResult } from "../models/models_0"; import { RenewOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/ScheduleRunCommand.ts b/clients/client-device-farm/src/commands/ScheduleRunCommand.ts index 85aff4972c30c..2297645c48f81 100644 --- a/clients/client-device-farm/src/commands/ScheduleRunCommand.ts +++ b/clients/client-device-farm/src/commands/ScheduleRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScheduleRunRequest, ScheduleRunResult } from "../models/models_0"; +import type { ScheduleRunRequest, ScheduleRunResult } from "../models/models_0"; import { ScheduleRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/StopJobCommand.ts b/clients/client-device-farm/src/commands/StopJobCommand.ts index 12b8dc0ebef50..d97896604dfe2 100644 --- a/clients/client-device-farm/src/commands/StopJobCommand.ts +++ b/clients/client-device-farm/src/commands/StopJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopJobRequest, StopJobResult } from "../models/models_0"; +import type { StopJobRequest, StopJobResult } from "../models/models_0"; import { StopJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/StopRemoteAccessSessionCommand.ts b/clients/client-device-farm/src/commands/StopRemoteAccessSessionCommand.ts index 7479bf1a0edd7..ff029421a58d2 100644 --- a/clients/client-device-farm/src/commands/StopRemoteAccessSessionCommand.ts +++ b/clients/client-device-farm/src/commands/StopRemoteAccessSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopRemoteAccessSessionRequest, StopRemoteAccessSessionResult } from "../models/models_0"; +import type { StopRemoteAccessSessionRequest, StopRemoteAccessSessionResult } from "../models/models_0"; import { StopRemoteAccessSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/StopRunCommand.ts b/clients/client-device-farm/src/commands/StopRunCommand.ts index f2cbb25264fea..adc0a7027bb22 100644 --- a/clients/client-device-farm/src/commands/StopRunCommand.ts +++ b/clients/client-device-farm/src/commands/StopRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopRunRequest, StopRunResult } from "../models/models_0"; +import type { StopRunRequest, StopRunResult } from "../models/models_0"; import { StopRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/TagResourceCommand.ts b/clients/client-device-farm/src/commands/TagResourceCommand.ts index 86ee60305617b..436fb81a46889 100644 --- a/clients/client-device-farm/src/commands/TagResourceCommand.ts +++ b/clients/client-device-farm/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/UntagResourceCommand.ts b/clients/client-device-farm/src/commands/UntagResourceCommand.ts index c052636b14d5f..1f0cabf17230c 100644 --- a/clients/client-device-farm/src/commands/UntagResourceCommand.ts +++ b/clients/client-device-farm/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/UpdateDeviceInstanceCommand.ts b/clients/client-device-farm/src/commands/UpdateDeviceInstanceCommand.ts index 13481ea7f8b33..f35151bf618f2 100644 --- a/clients/client-device-farm/src/commands/UpdateDeviceInstanceCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateDeviceInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeviceInstanceRequest, UpdateDeviceInstanceResult } from "../models/models_0"; +import type { UpdateDeviceInstanceRequest, UpdateDeviceInstanceResult } from "../models/models_0"; import { UpdateDeviceInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/UpdateDevicePoolCommand.ts b/clients/client-device-farm/src/commands/UpdateDevicePoolCommand.ts index 8a72b41b52a9e..f43ba69f71169 100644 --- a/clients/client-device-farm/src/commands/UpdateDevicePoolCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateDevicePoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDevicePoolRequest, UpdateDevicePoolResult } from "../models/models_0"; +import type { UpdateDevicePoolRequest, UpdateDevicePoolResult } from "../models/models_0"; import { UpdateDevicePool } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/UpdateInstanceProfileCommand.ts b/clients/client-device-farm/src/commands/UpdateInstanceProfileCommand.ts index 4970d651cb8f9..5f704f9859cf0 100644 --- a/clients/client-device-farm/src/commands/UpdateInstanceProfileCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInstanceProfileRequest, UpdateInstanceProfileResult } from "../models/models_0"; +import type { UpdateInstanceProfileRequest, UpdateInstanceProfileResult } from "../models/models_0"; import { UpdateInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/UpdateNetworkProfileCommand.ts b/clients/client-device-farm/src/commands/UpdateNetworkProfileCommand.ts index b7e3f9d05aea2..4f9093a3c5dfb 100644 --- a/clients/client-device-farm/src/commands/UpdateNetworkProfileCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateNetworkProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNetworkProfileRequest, UpdateNetworkProfileResult } from "../models/models_0"; +import type { UpdateNetworkProfileRequest, UpdateNetworkProfileResult } from "../models/models_0"; import { UpdateNetworkProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/UpdateProjectCommand.ts b/clients/client-device-farm/src/commands/UpdateProjectCommand.ts index 49b3c3dfece32..15249e9519d53 100644 --- a/clients/client-device-farm/src/commands/UpdateProjectCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProjectRequest, UpdateProjectResult } from "../models/models_0"; +import type { UpdateProjectRequest, UpdateProjectResult } from "../models/models_0"; import { UpdateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/UpdateTestGridProjectCommand.ts b/clients/client-device-farm/src/commands/UpdateTestGridProjectCommand.ts index b5f7a4d390197..a3b60819b9e57 100644 --- a/clients/client-device-farm/src/commands/UpdateTestGridProjectCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateTestGridProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTestGridProjectRequest, UpdateTestGridProjectResult } from "../models/models_0"; +import type { UpdateTestGridProjectRequest, UpdateTestGridProjectResult } from "../models/models_0"; import { UpdateTestGridProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/UpdateUploadCommand.ts b/clients/client-device-farm/src/commands/UpdateUploadCommand.ts index 7e23e54ab85eb..93c5042688ba4 100644 --- a/clients/client-device-farm/src/commands/UpdateUploadCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUploadRequest, UpdateUploadResult } from "../models/models_0"; +import type { UpdateUploadRequest, UpdateUploadResult } from "../models/models_0"; import { UpdateUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/commands/UpdateVPCEConfigurationCommand.ts b/clients/client-device-farm/src/commands/UpdateVPCEConfigurationCommand.ts index fb1c7971e03b7..a9c9f5387a241 100644 --- a/clients/client-device-farm/src/commands/UpdateVPCEConfigurationCommand.ts +++ b/clients/client-device-farm/src/commands/UpdateVPCEConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; +import type { DeviceFarmClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DeviceFarmClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVPCEConfigurationRequest, UpdateVPCEConfigurationResult } from "../models/models_0"; +import type { UpdateVPCEConfigurationRequest, UpdateVPCEConfigurationResult } from "../models/models_0"; import { UpdateVPCEConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-device-farm/src/endpoint/EndpointParameters.ts b/clients/client-device-farm/src/endpoint/EndpointParameters.ts index 567339dc4ddf2..3d54575a81818 100644 --- a/clients/client-device-farm/src/endpoint/EndpointParameters.ts +++ b/clients/client-device-farm/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-device-farm/src/endpoint/endpointResolver.ts b/clients/client-device-farm/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-device-farm/src/endpoint/endpointResolver.ts +++ b/clients/client-device-farm/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-device-farm/src/extensionConfiguration.ts b/clients/client-device-farm/src/extensionConfiguration.ts index 021a5ffa5feea..64c8e38788635 100644 --- a/clients/client-device-farm/src/extensionConfiguration.ts +++ b/clients/client-device-farm/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-device-farm/src/models/DeviceFarmServiceException.ts b/clients/client-device-farm/src/models/DeviceFarmServiceException.ts index 2f38f0afd3b3e..13c6a09acb9f8 100644 --- a/clients/client-device-farm/src/models/DeviceFarmServiceException.ts +++ b/clients/client-device-farm/src/models/DeviceFarmServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-device-farm/src/models/errors.ts b/clients/client-device-farm/src/models/errors.ts index 0e27c284ac0bd..c3b77dc747d10 100644 --- a/clients/client-device-farm/src/models/errors.ts +++ b/clients/client-device-farm/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DeviceFarmServiceException as __BaseException } from "./DeviceFarmServiceException"; diff --git a/clients/client-device-farm/src/pagination/GetOfferingStatusPaginator.ts b/clients/client-device-farm/src/pagination/GetOfferingStatusPaginator.ts index 24bd642cf4260..e943349b35b88 100644 --- a/clients/client-device-farm/src/pagination/GetOfferingStatusPaginator.ts +++ b/clients/client-device-farm/src/pagination/GetOfferingStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetOfferingStatusCommand, diff --git a/clients/client-device-farm/src/pagination/Interfaces.ts b/clients/client-device-farm/src/pagination/Interfaces.ts index 16515b4df4e3d..bc896bd2ceef7 100644 --- a/clients/client-device-farm/src/pagination/Interfaces.ts +++ b/clients/client-device-farm/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DeviceFarmClient } from "../DeviceFarmClient"; diff --git a/clients/client-device-farm/src/pagination/ListArtifactsPaginator.ts b/clients/client-device-farm/src/pagination/ListArtifactsPaginator.ts index 550ae317b5a9d..e40d8d0034fed 100644 --- a/clients/client-device-farm/src/pagination/ListArtifactsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListArtifactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListArtifactsCommand, diff --git a/clients/client-device-farm/src/pagination/ListDevicePoolsPaginator.ts b/clients/client-device-farm/src/pagination/ListDevicePoolsPaginator.ts index a359b29bf881d..2cc9bbd0c8f7b 100644 --- a/clients/client-device-farm/src/pagination/ListDevicePoolsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListDevicePoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDevicePoolsCommand, diff --git a/clients/client-device-farm/src/pagination/ListDevicesPaginator.ts b/clients/client-device-farm/src/pagination/ListDevicesPaginator.ts index fddf658052105..26ce6d75a9be4 100644 --- a/clients/client-device-farm/src/pagination/ListDevicesPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDevicesCommand, ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand"; import { DeviceFarmClient } from "../DeviceFarmClient"; diff --git a/clients/client-device-farm/src/pagination/ListJobsPaginator.ts b/clients/client-device-farm/src/pagination/ListJobsPaginator.ts index b406dbdd7ddb4..5bdf7401346b8 100644 --- a/clients/client-device-farm/src/pagination/ListJobsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { DeviceFarmClient } from "../DeviceFarmClient"; diff --git a/clients/client-device-farm/src/pagination/ListOfferingTransactionsPaginator.ts b/clients/client-device-farm/src/pagination/ListOfferingTransactionsPaginator.ts index 1914e7a52986e..ea8eed24c34f7 100644 --- a/clients/client-device-farm/src/pagination/ListOfferingTransactionsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListOfferingTransactionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOfferingTransactionsCommand, diff --git a/clients/client-device-farm/src/pagination/ListOfferingsPaginator.ts b/clients/client-device-farm/src/pagination/ListOfferingsPaginator.ts index d0c1b2dff448a..25b0c0b675c85 100644 --- a/clients/client-device-farm/src/pagination/ListOfferingsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOfferingsCommand, diff --git a/clients/client-device-farm/src/pagination/ListProjectsPaginator.ts b/clients/client-device-farm/src/pagination/ListProjectsPaginator.ts index f904ffd997ef5..7f5777d37ca45 100644 --- a/clients/client-device-farm/src/pagination/ListProjectsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectsCommand, diff --git a/clients/client-device-farm/src/pagination/ListRunsPaginator.ts b/clients/client-device-farm/src/pagination/ListRunsPaginator.ts index 750cb823b0b68..32a4c1af5ee45 100644 --- a/clients/client-device-farm/src/pagination/ListRunsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRunsCommand, ListRunsCommandInput, ListRunsCommandOutput } from "../commands/ListRunsCommand"; import { DeviceFarmClient } from "../DeviceFarmClient"; diff --git a/clients/client-device-farm/src/pagination/ListSamplesPaginator.ts b/clients/client-device-farm/src/pagination/ListSamplesPaginator.ts index e9562fc5a72ba..7338eeedaae69 100644 --- a/clients/client-device-farm/src/pagination/ListSamplesPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListSamplesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSamplesCommand, ListSamplesCommandInput, ListSamplesCommandOutput } from "../commands/ListSamplesCommand"; import { DeviceFarmClient } from "../DeviceFarmClient"; diff --git a/clients/client-device-farm/src/pagination/ListSuitesPaginator.ts b/clients/client-device-farm/src/pagination/ListSuitesPaginator.ts index 9d3e7cd85f158..8c942506d46e8 100644 --- a/clients/client-device-farm/src/pagination/ListSuitesPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListSuitesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSuitesCommand, ListSuitesCommandInput, ListSuitesCommandOutput } from "../commands/ListSuitesCommand"; import { DeviceFarmClient } from "../DeviceFarmClient"; diff --git a/clients/client-device-farm/src/pagination/ListTestGridProjectsPaginator.ts b/clients/client-device-farm/src/pagination/ListTestGridProjectsPaginator.ts index d8a91f4200049..3a505c64ef599 100644 --- a/clients/client-device-farm/src/pagination/ListTestGridProjectsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListTestGridProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestGridProjectsCommand, diff --git a/clients/client-device-farm/src/pagination/ListTestGridSessionActionsPaginator.ts b/clients/client-device-farm/src/pagination/ListTestGridSessionActionsPaginator.ts index 6876a65c365b3..de01c6c026120 100644 --- a/clients/client-device-farm/src/pagination/ListTestGridSessionActionsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListTestGridSessionActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestGridSessionActionsCommand, diff --git a/clients/client-device-farm/src/pagination/ListTestGridSessionArtifactsPaginator.ts b/clients/client-device-farm/src/pagination/ListTestGridSessionArtifactsPaginator.ts index a58e3f3cafa4a..fa992d8d2c2ba 100644 --- a/clients/client-device-farm/src/pagination/ListTestGridSessionArtifactsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListTestGridSessionArtifactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestGridSessionArtifactsCommand, diff --git a/clients/client-device-farm/src/pagination/ListTestGridSessionsPaginator.ts b/clients/client-device-farm/src/pagination/ListTestGridSessionsPaginator.ts index 96fd775428a76..95607e7d813bf 100644 --- a/clients/client-device-farm/src/pagination/ListTestGridSessionsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListTestGridSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestGridSessionsCommand, diff --git a/clients/client-device-farm/src/pagination/ListTestsPaginator.ts b/clients/client-device-farm/src/pagination/ListTestsPaginator.ts index e4e8720c7ab9c..ac9ea56544bce 100644 --- a/clients/client-device-farm/src/pagination/ListTestsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListTestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestsCommand, ListTestsCommandInput, ListTestsCommandOutput } from "../commands/ListTestsCommand"; import { DeviceFarmClient } from "../DeviceFarmClient"; diff --git a/clients/client-device-farm/src/pagination/ListUniqueProblemsPaginator.ts b/clients/client-device-farm/src/pagination/ListUniqueProblemsPaginator.ts index 7ae0d24e536c1..2d8d9071555cb 100644 --- a/clients/client-device-farm/src/pagination/ListUniqueProblemsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListUniqueProblemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUniqueProblemsCommand, diff --git a/clients/client-device-farm/src/pagination/ListUploadsPaginator.ts b/clients/client-device-farm/src/pagination/ListUploadsPaginator.ts index 87478ac636f80..edef80a9b50b0 100644 --- a/clients/client-device-farm/src/pagination/ListUploadsPaginator.ts +++ b/clients/client-device-farm/src/pagination/ListUploadsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUploadsCommand, ListUploadsCommandInput, ListUploadsCommandOutput } from "../commands/ListUploadsCommand"; import { DeviceFarmClient } from "../DeviceFarmClient"; diff --git a/clients/client-device-farm/src/runtimeConfig.browser.ts b/clients/client-device-farm/src/runtimeConfig.browser.ts index d878f51af0270..e5cdd3771740e 100644 --- a/clients/client-device-farm/src/runtimeConfig.browser.ts +++ b/clients/client-device-farm/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DeviceFarmClientConfig } from "./DeviceFarmClient"; + +import type { DeviceFarmClientConfig } from "./DeviceFarmClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-device-farm/src/runtimeConfig.native.ts b/clients/client-device-farm/src/runtimeConfig.native.ts index 64a5c9507de17..22b870eafd95c 100644 --- a/clients/client-device-farm/src/runtimeConfig.native.ts +++ b/clients/client-device-farm/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DeviceFarmClientConfig } from "./DeviceFarmClient"; +import type { DeviceFarmClientConfig } from "./DeviceFarmClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-device-farm/src/runtimeConfig.shared.ts b/clients/client-device-farm/src/runtimeConfig.shared.ts index 71f95e7021299..e997192a0001e 100644 --- a/clients/client-device-farm/src/runtimeConfig.shared.ts +++ b/clients/client-device-farm/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDeviceFarmHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DeviceFarmClientConfig } from "./DeviceFarmClient"; +import type { DeviceFarmClientConfig } from "./DeviceFarmClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-device-farm/src/runtimeConfig.ts b/clients/client-device-farm/src/runtimeConfig.ts index eb991b2c8a9fc..4974c379d10c6 100644 --- a/clients/client-device-farm/src/runtimeConfig.ts +++ b/clients/client-device-farm/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DeviceFarmClientConfig } from "./DeviceFarmClient"; + +import type { DeviceFarmClientConfig } from "./DeviceFarmClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-device-farm/src/runtimeExtensions.ts b/clients/client-device-farm/src/runtimeExtensions.ts index 7ebeaa0eb0013..aa9de1f0848ce 100644 --- a/clients/client-device-farm/src/runtimeExtensions.ts +++ b/clients/client-device-farm/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DeviceFarmExtensionConfiguration } from "./extensionConfiguration"; +import type { DeviceFarmExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-device-farm/src/schemas/schemas_0.ts b/clients/client-device-farm/src/schemas/schemas_0.ts index 873a18dc5d2ea..3db4fdf3cbcf7 100644 --- a/clients/client-device-farm/src/schemas/schemas_0.ts +++ b/clients/client-device-farm/src/schemas/schemas_0.ts @@ -569,7 +569,7 @@ const n0 = "com.amazonaws.devicefarm"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-devops-guru/package.json b/clients/client-devops-guru/package.json index 915fbe205366b..05c49e0983e55 100644 --- a/clients/client-devops-guru/package.json +++ b/clients/client-devops-guru/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-devops-guru/src/DevOpsGuru.ts b/clients/client-devops-guru/src/DevOpsGuru.ts index c3e93b7ccd2dd..fbe4f12110fbd 100644 --- a/clients/client-devops-guru/src/DevOpsGuru.ts +++ b/clients/client-devops-guru/src/DevOpsGuru.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddNotificationChannelCommand, @@ -149,7 +149,7 @@ import { UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput, } from "./commands/UpdateServiceIntegrationCommand"; -import { DevOpsGuruClient, DevOpsGuruClientConfig } from "./DevOpsGuruClient"; +import { DevOpsGuruClient } from "./DevOpsGuruClient"; const commands = { AddNotificationChannelCommand, diff --git a/clients/client-devops-guru/src/DevOpsGuruClient.ts b/clients/client-devops-guru/src/DevOpsGuruClient.ts index 0e1139e7344d1..0dbe1f417efce 100644 --- a/clients/client-devops-guru/src/DevOpsGuruClient.ts +++ b/clients/client-devops-guru/src/DevOpsGuruClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDevOpsGuruHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -161,7 +170,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-devops-guru/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-devops-guru/src/auth/httpAuthExtensionConfiguration.ts index 2c5199bf85324..567faeab1826c 100644 --- a/clients/client-devops-guru/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-devops-guru/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DevOpsGuruHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DevOpsGuruHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-devops-guru/src/auth/httpAuthSchemeProvider.ts b/clients/client-devops-guru/src/auth/httpAuthSchemeProvider.ts index 595f345a2e63c..95874805ab872 100644 --- a/clients/client-devops-guru/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-devops-guru/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DevOpsGuruClientConfig, DevOpsGuruClientResolvedConfig } from "../DevOpsGuruClient"; +import { type DevOpsGuruClientResolvedConfig, DevOpsGuruClientConfig } from "../DevOpsGuruClient"; /** * @internal diff --git a/clients/client-devops-guru/src/commands/AddNotificationChannelCommand.ts b/clients/client-devops-guru/src/commands/AddNotificationChannelCommand.ts index 29dd0eb6171e8..ee40906cb3226 100644 --- a/clients/client-devops-guru/src/commands/AddNotificationChannelCommand.ts +++ b/clients/client-devops-guru/src/commands/AddNotificationChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddNotificationChannelRequest, AddNotificationChannelResponse } from "../models/models_0"; +import type { AddNotificationChannelRequest, AddNotificationChannelResponse } from "../models/models_0"; import { AddNotificationChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DeleteInsightCommand.ts b/clients/client-devops-guru/src/commands/DeleteInsightCommand.ts index 2ecaeefb368ab..0df84fa1ecf82 100644 --- a/clients/client-devops-guru/src/commands/DeleteInsightCommand.ts +++ b/clients/client-devops-guru/src/commands/DeleteInsightCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInsightRequest, DeleteInsightResponse } from "../models/models_0"; +import type { DeleteInsightRequest, DeleteInsightResponse } from "../models/models_0"; import { DeleteInsight } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeAccountHealthCommand.ts b/clients/client-devops-guru/src/commands/DescribeAccountHealthCommand.ts index 4d562c74543ef..35c77e73b0160 100644 --- a/clients/client-devops-guru/src/commands/DescribeAccountHealthCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeAccountHealthCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountHealthRequest, DescribeAccountHealthResponse } from "../models/models_0"; +import type { DescribeAccountHealthRequest, DescribeAccountHealthResponse } from "../models/models_0"; import { DescribeAccountHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeAccountOverviewCommand.ts b/clients/client-devops-guru/src/commands/DescribeAccountOverviewCommand.ts index 0b72fb7549418..a856b90e56929 100644 --- a/clients/client-devops-guru/src/commands/DescribeAccountOverviewCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeAccountOverviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountOverviewRequest, DescribeAccountOverviewResponse } from "../models/models_0"; +import type { DescribeAccountOverviewRequest, DescribeAccountOverviewResponse } from "../models/models_0"; import { DescribeAccountOverview } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeAnomalyCommand.ts b/clients/client-devops-guru/src/commands/DescribeAnomalyCommand.ts index 05b6d7e1c1f5a..577a39114ec52 100644 --- a/clients/client-devops-guru/src/commands/DescribeAnomalyCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeAnomalyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAnomalyRequest, DescribeAnomalyResponse } from "../models/models_0"; +import type { DescribeAnomalyRequest, DescribeAnomalyResponse } from "../models/models_0"; import { DescribeAnomaly } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeEventSourcesConfigCommand.ts b/clients/client-devops-guru/src/commands/DescribeEventSourcesConfigCommand.ts index 9bf7625f1d372..de1926e6ccd60 100644 --- a/clients/client-devops-guru/src/commands/DescribeEventSourcesConfigCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeEventSourcesConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventSourcesConfigRequest, DescribeEventSourcesConfigResponse } from "../models/models_0"; +import type { DescribeEventSourcesConfigRequest, DescribeEventSourcesConfigResponse } from "../models/models_0"; import { DescribeEventSourcesConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeFeedbackCommand.ts b/clients/client-devops-guru/src/commands/DescribeFeedbackCommand.ts index faef83aebd813..2fafc827ba655 100644 --- a/clients/client-devops-guru/src/commands/DescribeFeedbackCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeFeedbackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFeedbackRequest, DescribeFeedbackResponse } from "../models/models_0"; +import type { DescribeFeedbackRequest, DescribeFeedbackResponse } from "../models/models_0"; import { DescribeFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeInsightCommand.ts b/clients/client-devops-guru/src/commands/DescribeInsightCommand.ts index e600038fdb630..60413728115a6 100644 --- a/clients/client-devops-guru/src/commands/DescribeInsightCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeInsightCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInsightRequest, DescribeInsightResponse } from "../models/models_0"; +import type { DescribeInsightRequest, DescribeInsightResponse } from "../models/models_0"; import { DescribeInsight } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeOrganizationHealthCommand.ts b/clients/client-devops-guru/src/commands/DescribeOrganizationHealthCommand.ts index 2210d15fcc2b1..15db3636da8d4 100644 --- a/clients/client-devops-guru/src/commands/DescribeOrganizationHealthCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeOrganizationHealthCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrganizationHealthRequest, DescribeOrganizationHealthResponse } from "../models/models_0"; +import type { DescribeOrganizationHealthRequest, DescribeOrganizationHealthResponse } from "../models/models_0"; import { DescribeOrganizationHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeOrganizationOverviewCommand.ts b/clients/client-devops-guru/src/commands/DescribeOrganizationOverviewCommand.ts index 89379deef2b4b..6825064488768 100644 --- a/clients/client-devops-guru/src/commands/DescribeOrganizationOverviewCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeOrganizationOverviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrganizationOverviewRequest, DescribeOrganizationOverviewResponse } from "../models/models_0"; +import type { DescribeOrganizationOverviewRequest, DescribeOrganizationOverviewResponse } from "../models/models_0"; import { DescribeOrganizationOverview } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeOrganizationResourceCollectionHealthCommand.ts b/clients/client-devops-guru/src/commands/DescribeOrganizationResourceCollectionHealthCommand.ts index 23d062a978def..7db936256c823 100644 --- a/clients/client-devops-guru/src/commands/DescribeOrganizationResourceCollectionHealthCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeOrganizationResourceCollectionHealthCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeOrganizationResourceCollectionHealthRequest, DescribeOrganizationResourceCollectionHealthResponse, } from "../models/models_0"; diff --git a/clients/client-devops-guru/src/commands/DescribeResourceCollectionHealthCommand.ts b/clients/client-devops-guru/src/commands/DescribeResourceCollectionHealthCommand.ts index 481efb930b2f6..14f7824427f8f 100644 --- a/clients/client-devops-guru/src/commands/DescribeResourceCollectionHealthCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeResourceCollectionHealthCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourceCollectionHealthRequest, DescribeResourceCollectionHealthResponse } from "../models/models_0"; +import type { + DescribeResourceCollectionHealthRequest, + DescribeResourceCollectionHealthResponse, +} from "../models/models_0"; import { DescribeResourceCollectionHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/DescribeServiceIntegrationCommand.ts b/clients/client-devops-guru/src/commands/DescribeServiceIntegrationCommand.ts index dfc3113ee3fe1..5dff8bfeec58e 100644 --- a/clients/client-devops-guru/src/commands/DescribeServiceIntegrationCommand.ts +++ b/clients/client-devops-guru/src/commands/DescribeServiceIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServiceIntegrationRequest, DescribeServiceIntegrationResponse } from "../models/models_0"; +import type { DescribeServiceIntegrationRequest, DescribeServiceIntegrationResponse } from "../models/models_0"; import { DescribeServiceIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/GetCostEstimationCommand.ts b/clients/client-devops-guru/src/commands/GetCostEstimationCommand.ts index 0f4836d5bab2a..47890c6c1baa2 100644 --- a/clients/client-devops-guru/src/commands/GetCostEstimationCommand.ts +++ b/clients/client-devops-guru/src/commands/GetCostEstimationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCostEstimationRequest, GetCostEstimationResponse } from "../models/models_0"; +import type { GetCostEstimationRequest, GetCostEstimationResponse } from "../models/models_0"; import { GetCostEstimation } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/GetResourceCollectionCommand.ts b/clients/client-devops-guru/src/commands/GetResourceCollectionCommand.ts index 00594ed683a9b..1e85a7978c50f 100644 --- a/clients/client-devops-guru/src/commands/GetResourceCollectionCommand.ts +++ b/clients/client-devops-guru/src/commands/GetResourceCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceCollectionRequest, GetResourceCollectionResponse } from "../models/models_0"; +import type { GetResourceCollectionRequest, GetResourceCollectionResponse } from "../models/models_0"; import { GetResourceCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/ListAnomaliesForInsightCommand.ts b/clients/client-devops-guru/src/commands/ListAnomaliesForInsightCommand.ts index 022cd2a98b8c4..b209bca1371a0 100644 --- a/clients/client-devops-guru/src/commands/ListAnomaliesForInsightCommand.ts +++ b/clients/client-devops-guru/src/commands/ListAnomaliesForInsightCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnomaliesForInsightRequest, ListAnomaliesForInsightResponse } from "../models/models_0"; +import type { ListAnomaliesForInsightRequest, ListAnomaliesForInsightResponse } from "../models/models_0"; import { ListAnomaliesForInsight } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/ListAnomalousLogGroupsCommand.ts b/clients/client-devops-guru/src/commands/ListAnomalousLogGroupsCommand.ts index bf86852e8b27e..22c46098c0c11 100644 --- a/clients/client-devops-guru/src/commands/ListAnomalousLogGroupsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListAnomalousLogGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnomalousLogGroupsRequest, ListAnomalousLogGroupsResponse } from "../models/models_0"; +import type { ListAnomalousLogGroupsRequest, ListAnomalousLogGroupsResponse } from "../models/models_0"; import { ListAnomalousLogGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/ListEventsCommand.ts b/clients/client-devops-guru/src/commands/ListEventsCommand.ts index 9d45db953cf79..9a017179a0264 100644 --- a/clients/client-devops-guru/src/commands/ListEventsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventsRequest, ListEventsResponse } from "../models/models_0"; +import type { ListEventsRequest, ListEventsResponse } from "../models/models_0"; import { ListEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/ListInsightsCommand.ts b/clients/client-devops-guru/src/commands/ListInsightsCommand.ts index 0742bc796bd14..0d2746101c023 100644 --- a/clients/client-devops-guru/src/commands/ListInsightsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInsightsRequest, ListInsightsResponse } from "../models/models_0"; +import type { ListInsightsRequest, ListInsightsResponse } from "../models/models_0"; import { ListInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/ListMonitoredResourcesCommand.ts b/clients/client-devops-guru/src/commands/ListMonitoredResourcesCommand.ts index 1bcd708dbce42..cb4cfc17baf69 100644 --- a/clients/client-devops-guru/src/commands/ListMonitoredResourcesCommand.ts +++ b/clients/client-devops-guru/src/commands/ListMonitoredResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMonitoredResourcesRequest, ListMonitoredResourcesResponse } from "../models/models_0"; +import type { ListMonitoredResourcesRequest, ListMonitoredResourcesResponse } from "../models/models_0"; import { ListMonitoredResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/ListNotificationChannelsCommand.ts b/clients/client-devops-guru/src/commands/ListNotificationChannelsCommand.ts index ac14ad7bf170d..a01264586da11 100644 --- a/clients/client-devops-guru/src/commands/ListNotificationChannelsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListNotificationChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotificationChannelsRequest, ListNotificationChannelsResponse } from "../models/models_0"; +import type { ListNotificationChannelsRequest, ListNotificationChannelsResponse } from "../models/models_0"; import { ListNotificationChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/ListOrganizationInsightsCommand.ts b/clients/client-devops-guru/src/commands/ListOrganizationInsightsCommand.ts index d8b1e873cb47f..e3ca82b110f3e 100644 --- a/clients/client-devops-guru/src/commands/ListOrganizationInsightsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListOrganizationInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOrganizationInsightsRequest, ListOrganizationInsightsResponse } from "../models/models_0"; +import type { ListOrganizationInsightsRequest, ListOrganizationInsightsResponse } from "../models/models_0"; import { ListOrganizationInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/ListRecommendationsCommand.ts b/clients/client-devops-guru/src/commands/ListRecommendationsCommand.ts index 09f1f2485f350..c591707f1d3bf 100644 --- a/clients/client-devops-guru/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-devops-guru/src/commands/ListRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; +import type { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; import { ListRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/PutFeedbackCommand.ts b/clients/client-devops-guru/src/commands/PutFeedbackCommand.ts index aa6f23845f2f1..512fa44d8f7da 100644 --- a/clients/client-devops-guru/src/commands/PutFeedbackCommand.ts +++ b/clients/client-devops-guru/src/commands/PutFeedbackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutFeedbackRequest, PutFeedbackResponse } from "../models/models_0"; +import type { PutFeedbackRequest, PutFeedbackResponse } from "../models/models_0"; import { PutFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/RemoveNotificationChannelCommand.ts b/clients/client-devops-guru/src/commands/RemoveNotificationChannelCommand.ts index aa9fba505933e..134cbecfc6235 100644 --- a/clients/client-devops-guru/src/commands/RemoveNotificationChannelCommand.ts +++ b/clients/client-devops-guru/src/commands/RemoveNotificationChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveNotificationChannelRequest, RemoveNotificationChannelResponse } from "../models/models_0"; +import type { RemoveNotificationChannelRequest, RemoveNotificationChannelResponse } from "../models/models_0"; import { RemoveNotificationChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/SearchInsightsCommand.ts b/clients/client-devops-guru/src/commands/SearchInsightsCommand.ts index 4c3a5139c3a9a..9a9daa8701953 100644 --- a/clients/client-devops-guru/src/commands/SearchInsightsCommand.ts +++ b/clients/client-devops-guru/src/commands/SearchInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchInsightsRequest, SearchInsightsResponse } from "../models/models_0"; +import type { SearchInsightsRequest, SearchInsightsResponse } from "../models/models_0"; import { SearchInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/SearchOrganizationInsightsCommand.ts b/clients/client-devops-guru/src/commands/SearchOrganizationInsightsCommand.ts index 487017a1c04da..2fdc3576072a2 100644 --- a/clients/client-devops-guru/src/commands/SearchOrganizationInsightsCommand.ts +++ b/clients/client-devops-guru/src/commands/SearchOrganizationInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchOrganizationInsightsRequest, SearchOrganizationInsightsResponse } from "../models/models_0"; +import type { SearchOrganizationInsightsRequest, SearchOrganizationInsightsResponse } from "../models/models_0"; import { SearchOrganizationInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/StartCostEstimationCommand.ts b/clients/client-devops-guru/src/commands/StartCostEstimationCommand.ts index 65966860d653a..b19c34c53bb2b 100644 --- a/clients/client-devops-guru/src/commands/StartCostEstimationCommand.ts +++ b/clients/client-devops-guru/src/commands/StartCostEstimationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCostEstimationRequest, StartCostEstimationResponse } from "../models/models_0"; +import type { StartCostEstimationRequest, StartCostEstimationResponse } from "../models/models_0"; import { StartCostEstimation } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/UpdateEventSourcesConfigCommand.ts b/clients/client-devops-guru/src/commands/UpdateEventSourcesConfigCommand.ts index 2a91e46dec9e3..db04599c3a537 100644 --- a/clients/client-devops-guru/src/commands/UpdateEventSourcesConfigCommand.ts +++ b/clients/client-devops-guru/src/commands/UpdateEventSourcesConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEventSourcesConfigRequest, UpdateEventSourcesConfigResponse } from "../models/models_0"; +import type { UpdateEventSourcesConfigRequest, UpdateEventSourcesConfigResponse } from "../models/models_0"; import { UpdateEventSourcesConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/UpdateResourceCollectionCommand.ts b/clients/client-devops-guru/src/commands/UpdateResourceCollectionCommand.ts index 017eb30b63695..a3f916a3e2837 100644 --- a/clients/client-devops-guru/src/commands/UpdateResourceCollectionCommand.ts +++ b/clients/client-devops-guru/src/commands/UpdateResourceCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResourceCollectionRequest, UpdateResourceCollectionResponse } from "../models/models_0"; +import type { UpdateResourceCollectionRequest, UpdateResourceCollectionResponse } from "../models/models_0"; import { UpdateResourceCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/commands/UpdateServiceIntegrationCommand.ts b/clients/client-devops-guru/src/commands/UpdateServiceIntegrationCommand.ts index e6c6d465e2a3b..e82b654afc813 100644 --- a/clients/client-devops-guru/src/commands/UpdateServiceIntegrationCommand.ts +++ b/clients/client-devops-guru/src/commands/UpdateServiceIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; +import type { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceIntegrationRequest, UpdateServiceIntegrationResponse } from "../models/models_0"; +import type { UpdateServiceIntegrationRequest, UpdateServiceIntegrationResponse } from "../models/models_0"; import { UpdateServiceIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-devops-guru/src/endpoint/EndpointParameters.ts b/clients/client-devops-guru/src/endpoint/EndpointParameters.ts index 694514acb516b..79a0be22a505a 100644 --- a/clients/client-devops-guru/src/endpoint/EndpointParameters.ts +++ b/clients/client-devops-guru/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-devops-guru/src/endpoint/endpointResolver.ts b/clients/client-devops-guru/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-devops-guru/src/endpoint/endpointResolver.ts +++ b/clients/client-devops-guru/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-devops-guru/src/extensionConfiguration.ts b/clients/client-devops-guru/src/extensionConfiguration.ts index d6143c191e086..15712530d78fd 100644 --- a/clients/client-devops-guru/src/extensionConfiguration.ts +++ b/clients/client-devops-guru/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-devops-guru/src/models/DevOpsGuruServiceException.ts b/clients/client-devops-guru/src/models/DevOpsGuruServiceException.ts index f1b5706d9eb2a..ae4838cfc438f 100644 --- a/clients/client-devops-guru/src/models/DevOpsGuruServiceException.ts +++ b/clients/client-devops-guru/src/models/DevOpsGuruServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-devops-guru/src/models/errors.ts b/clients/client-devops-guru/src/models/errors.ts index ea4024c8d7177..e6825f7d51413 100644 --- a/clients/client-devops-guru/src/models/errors.ts +++ b/clients/client-devops-guru/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DevOpsGuruServiceException as __BaseException } from "./DevOpsGuruServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-devops-guru/src/pagination/DescribeOrganizationResourceCollectionHealthPaginator.ts b/clients/client-devops-guru/src/pagination/DescribeOrganizationResourceCollectionHealthPaginator.ts index 8fb5323f08365..655af43c6b3bc 100644 --- a/clients/client-devops-guru/src/pagination/DescribeOrganizationResourceCollectionHealthPaginator.ts +++ b/clients/client-devops-guru/src/pagination/DescribeOrganizationResourceCollectionHealthPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrganizationResourceCollectionHealthCommand, diff --git a/clients/client-devops-guru/src/pagination/DescribeResourceCollectionHealthPaginator.ts b/clients/client-devops-guru/src/pagination/DescribeResourceCollectionHealthPaginator.ts index 334e473220bd5..a234c3da25e06 100644 --- a/clients/client-devops-guru/src/pagination/DescribeResourceCollectionHealthPaginator.ts +++ b/clients/client-devops-guru/src/pagination/DescribeResourceCollectionHealthPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeResourceCollectionHealthCommand, diff --git a/clients/client-devops-guru/src/pagination/GetCostEstimationPaginator.ts b/clients/client-devops-guru/src/pagination/GetCostEstimationPaginator.ts index 3b464ea2e0cb4..a0a7c11b02d8b 100644 --- a/clients/client-devops-guru/src/pagination/GetCostEstimationPaginator.ts +++ b/clients/client-devops-guru/src/pagination/GetCostEstimationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCostEstimationCommand, diff --git a/clients/client-devops-guru/src/pagination/GetResourceCollectionPaginator.ts b/clients/client-devops-guru/src/pagination/GetResourceCollectionPaginator.ts index 4cd2563c557f5..cdbb1facb7ca9 100644 --- a/clients/client-devops-guru/src/pagination/GetResourceCollectionPaginator.ts +++ b/clients/client-devops-guru/src/pagination/GetResourceCollectionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourceCollectionCommand, diff --git a/clients/client-devops-guru/src/pagination/Interfaces.ts b/clients/client-devops-guru/src/pagination/Interfaces.ts index fe42ddce9a0d0..6f48432394673 100644 --- a/clients/client-devops-guru/src/pagination/Interfaces.ts +++ b/clients/client-devops-guru/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DevOpsGuruClient } from "../DevOpsGuruClient"; diff --git a/clients/client-devops-guru/src/pagination/ListAnomaliesForInsightPaginator.ts b/clients/client-devops-guru/src/pagination/ListAnomaliesForInsightPaginator.ts index 82e1f908f443e..dcfca0170218a 100644 --- a/clients/client-devops-guru/src/pagination/ListAnomaliesForInsightPaginator.ts +++ b/clients/client-devops-guru/src/pagination/ListAnomaliesForInsightPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAnomaliesForInsightCommand, diff --git a/clients/client-devops-guru/src/pagination/ListAnomalousLogGroupsPaginator.ts b/clients/client-devops-guru/src/pagination/ListAnomalousLogGroupsPaginator.ts index 277891a5abc43..1fc05a231b2d2 100644 --- a/clients/client-devops-guru/src/pagination/ListAnomalousLogGroupsPaginator.ts +++ b/clients/client-devops-guru/src/pagination/ListAnomalousLogGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAnomalousLogGroupsCommand, diff --git a/clients/client-devops-guru/src/pagination/ListEventsPaginator.ts b/clients/client-devops-guru/src/pagination/ListEventsPaginator.ts index 73449ebca75fd..7e379b78a1e78 100644 --- a/clients/client-devops-guru/src/pagination/ListEventsPaginator.ts +++ b/clients/client-devops-guru/src/pagination/ListEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventsCommand, ListEventsCommandInput, ListEventsCommandOutput } from "../commands/ListEventsCommand"; import { DevOpsGuruClient } from "../DevOpsGuruClient"; diff --git a/clients/client-devops-guru/src/pagination/ListInsightsPaginator.ts b/clients/client-devops-guru/src/pagination/ListInsightsPaginator.ts index f9c25627d0351..fca893101e50b 100644 --- a/clients/client-devops-guru/src/pagination/ListInsightsPaginator.ts +++ b/clients/client-devops-guru/src/pagination/ListInsightsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInsightsCommand, diff --git a/clients/client-devops-guru/src/pagination/ListMonitoredResourcesPaginator.ts b/clients/client-devops-guru/src/pagination/ListMonitoredResourcesPaginator.ts index ccaa512d3ff16..537b8abc59c52 100644 --- a/clients/client-devops-guru/src/pagination/ListMonitoredResourcesPaginator.ts +++ b/clients/client-devops-guru/src/pagination/ListMonitoredResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitoredResourcesCommand, diff --git a/clients/client-devops-guru/src/pagination/ListNotificationChannelsPaginator.ts b/clients/client-devops-guru/src/pagination/ListNotificationChannelsPaginator.ts index 785309294c922..301426fa338e2 100644 --- a/clients/client-devops-guru/src/pagination/ListNotificationChannelsPaginator.ts +++ b/clients/client-devops-guru/src/pagination/ListNotificationChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotificationChannelsCommand, diff --git a/clients/client-devops-guru/src/pagination/ListOrganizationInsightsPaginator.ts b/clients/client-devops-guru/src/pagination/ListOrganizationInsightsPaginator.ts index 1d626e365518c..520c340576435 100644 --- a/clients/client-devops-guru/src/pagination/ListOrganizationInsightsPaginator.ts +++ b/clients/client-devops-guru/src/pagination/ListOrganizationInsightsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationInsightsCommand, diff --git a/clients/client-devops-guru/src/pagination/ListRecommendationsPaginator.ts b/clients/client-devops-guru/src/pagination/ListRecommendationsPaginator.ts index b8d0fa50369f3..f45bae7ebcf3a 100644 --- a/clients/client-devops-guru/src/pagination/ListRecommendationsPaginator.ts +++ b/clients/client-devops-guru/src/pagination/ListRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendationsCommand, diff --git a/clients/client-devops-guru/src/pagination/SearchInsightsPaginator.ts b/clients/client-devops-guru/src/pagination/SearchInsightsPaginator.ts index ef4ef7c7dd974..d252fb7eb6fde 100644 --- a/clients/client-devops-guru/src/pagination/SearchInsightsPaginator.ts +++ b/clients/client-devops-guru/src/pagination/SearchInsightsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchInsightsCommand, diff --git a/clients/client-devops-guru/src/pagination/SearchOrganizationInsightsPaginator.ts b/clients/client-devops-guru/src/pagination/SearchOrganizationInsightsPaginator.ts index 8f059e75423bf..72b7cd477764c 100644 --- a/clients/client-devops-guru/src/pagination/SearchOrganizationInsightsPaginator.ts +++ b/clients/client-devops-guru/src/pagination/SearchOrganizationInsightsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchOrganizationInsightsCommand, diff --git a/clients/client-devops-guru/src/runtimeConfig.browser.ts b/clients/client-devops-guru/src/runtimeConfig.browser.ts index e19b4e5f297b8..3df0e3aafe120 100644 --- a/clients/client-devops-guru/src/runtimeConfig.browser.ts +++ b/clients/client-devops-guru/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DevOpsGuruClientConfig } from "./DevOpsGuruClient"; + +import type { DevOpsGuruClientConfig } from "./DevOpsGuruClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-devops-guru/src/runtimeConfig.native.ts b/clients/client-devops-guru/src/runtimeConfig.native.ts index d66cf77f841a1..aa358553dc8b6 100644 --- a/clients/client-devops-guru/src/runtimeConfig.native.ts +++ b/clients/client-devops-guru/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DevOpsGuruClientConfig } from "./DevOpsGuruClient"; +import type { DevOpsGuruClientConfig } from "./DevOpsGuruClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-devops-guru/src/runtimeConfig.shared.ts b/clients/client-devops-guru/src/runtimeConfig.shared.ts index 0ba4ce56b3082..0f3d8253a36f4 100644 --- a/clients/client-devops-guru/src/runtimeConfig.shared.ts +++ b/clients/client-devops-guru/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDevOpsGuruHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DevOpsGuruClientConfig } from "./DevOpsGuruClient"; +import type { DevOpsGuruClientConfig } from "./DevOpsGuruClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-devops-guru/src/runtimeConfig.ts b/clients/client-devops-guru/src/runtimeConfig.ts index 5e1ef75e1c372..34c288428a1c3 100644 --- a/clients/client-devops-guru/src/runtimeConfig.ts +++ b/clients/client-devops-guru/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DevOpsGuruClientConfig } from "./DevOpsGuruClient"; + +import type { DevOpsGuruClientConfig } from "./DevOpsGuruClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-devops-guru/src/runtimeExtensions.ts b/clients/client-devops-guru/src/runtimeExtensions.ts index 842bd7a3c14ec..9fd3d806c51d5 100644 --- a/clients/client-devops-guru/src/runtimeExtensions.ts +++ b/clients/client-devops-guru/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DevOpsGuruExtensionConfiguration } from "./extensionConfiguration"; +import type { DevOpsGuruExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-devops-guru/src/schemas/schemas_0.ts b/clients/client-devops-guru/src/schemas/schemas_0.ts index 0af605afd620f..4225a56f0a8ae 100644 --- a/clients/client-devops-guru/src/schemas/schemas_0.ts +++ b/clients/client-devops-guru/src/schemas/schemas_0.ts @@ -379,7 +379,7 @@ const n0 = "com.amazonaws.devopsguru"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-direct-connect/package.json b/clients/client-direct-connect/package.json index 93cc838bad3be..cd967eb57c77f 100644 --- a/clients/client-direct-connect/package.json +++ b/clients/client-direct-connect/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-direct-connect/src/DirectConnect.ts b/clients/client-direct-connect/src/DirectConnect.ts index aef8e5dfa264a..d0873347de214 100644 --- a/clients/client-direct-connect/src/DirectConnect.ts +++ b/clients/client-direct-connect/src/DirectConnect.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptDirectConnectGatewayAssociationProposalCommand, @@ -297,7 +297,7 @@ import { UpdateVirtualInterfaceAttributesCommandInput, UpdateVirtualInterfaceAttributesCommandOutput, } from "./commands/UpdateVirtualInterfaceAttributesCommand"; -import { DirectConnectClient, DirectConnectClientConfig } from "./DirectConnectClient"; +import { DirectConnectClient } from "./DirectConnectClient"; const commands = { AcceptDirectConnectGatewayAssociationProposalCommand, diff --git a/clients/client-direct-connect/src/DirectConnectClient.ts b/clients/client-direct-connect/src/DirectConnectClient.ts index 197666b839d82..fcaab18f651b3 100644 --- a/clients/client-direct-connect/src/DirectConnectClient.ts +++ b/clients/client-direct-connect/src/DirectConnectClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDirectConnectHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -262,7 +271,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-direct-connect/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-direct-connect/src/auth/httpAuthExtensionConfiguration.ts index e138fd3df52e3..3e958b0dfa773 100644 --- a/clients/client-direct-connect/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-direct-connect/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DirectConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DirectConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-direct-connect/src/auth/httpAuthSchemeProvider.ts b/clients/client-direct-connect/src/auth/httpAuthSchemeProvider.ts index b52253475e527..ace95d4a4c669 100644 --- a/clients/client-direct-connect/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-direct-connect/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DirectConnectClientConfig, DirectConnectClientResolvedConfig } from "../DirectConnectClient"; +import { type DirectConnectClientResolvedConfig, DirectConnectClientConfig } from "../DirectConnectClient"; /** * @internal diff --git a/clients/client-direct-connect/src/commands/AcceptDirectConnectGatewayAssociationProposalCommand.ts b/clients/client-direct-connect/src/commands/AcceptDirectConnectGatewayAssociationProposalCommand.ts index dc3023a349137..90fe3ff872ea8 100644 --- a/clients/client-direct-connect/src/commands/AcceptDirectConnectGatewayAssociationProposalCommand.ts +++ b/clients/client-direct-connect/src/commands/AcceptDirectConnectGatewayAssociationProposalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AcceptDirectConnectGatewayAssociationProposalRequest, AcceptDirectConnectGatewayAssociationProposalResult, } from "../models/models_0"; diff --git a/clients/client-direct-connect/src/commands/AllocateConnectionOnInterconnectCommand.ts b/clients/client-direct-connect/src/commands/AllocateConnectionOnInterconnectCommand.ts index 34f2af38611b3..14678077764a8 100644 --- a/clients/client-direct-connect/src/commands/AllocateConnectionOnInterconnectCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocateConnectionOnInterconnectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllocateConnectionOnInterconnectRequest, Connection } from "../models/models_0"; +import type { AllocateConnectionOnInterconnectRequest, Connection } from "../models/models_0"; import { AllocateConnectionOnInterconnect } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/AllocateHostedConnectionCommand.ts b/clients/client-direct-connect/src/commands/AllocateHostedConnectionCommand.ts index 09f5ddc9b5088..ed423f628b60a 100644 --- a/clients/client-direct-connect/src/commands/AllocateHostedConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocateHostedConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllocateHostedConnectionRequest, Connection } from "../models/models_0"; +import type { AllocateHostedConnectionRequest, Connection } from "../models/models_0"; import { AllocateHostedConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/AllocatePrivateVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/AllocatePrivateVirtualInterfaceCommand.ts index e5a02bb204dc9..2c20aa5676096 100644 --- a/clients/client-direct-connect/src/commands/AllocatePrivateVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocatePrivateVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllocatePrivateVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; +import type { AllocatePrivateVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; import { AllocatePrivateVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/AllocatePublicVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/AllocatePublicVirtualInterfaceCommand.ts index d6841b3ab0113..9d4a953d86693 100644 --- a/clients/client-direct-connect/src/commands/AllocatePublicVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocatePublicVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllocatePublicVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; +import type { AllocatePublicVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; import { AllocatePublicVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/AllocateTransitVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/AllocateTransitVirtualInterfaceCommand.ts index 23c6cfb3254e0..204a9c40b8266 100644 --- a/clients/client-direct-connect/src/commands/AllocateTransitVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/AllocateTransitVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllocateTransitVirtualInterfaceRequest, AllocateTransitVirtualInterfaceResult } from "../models/models_0"; +import type { AllocateTransitVirtualInterfaceRequest, AllocateTransitVirtualInterfaceResult } from "../models/models_0"; import { AllocateTransitVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/AssociateConnectionWithLagCommand.ts b/clients/client-direct-connect/src/commands/AssociateConnectionWithLagCommand.ts index e69e7fa0c6862..04f4b1e93304b 100644 --- a/clients/client-direct-connect/src/commands/AssociateConnectionWithLagCommand.ts +++ b/clients/client-direct-connect/src/commands/AssociateConnectionWithLagCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateConnectionWithLagRequest, Connection } from "../models/models_0"; +import type { AssociateConnectionWithLagRequest, Connection } from "../models/models_0"; import { AssociateConnectionWithLag } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/AssociateHostedConnectionCommand.ts b/clients/client-direct-connect/src/commands/AssociateHostedConnectionCommand.ts index 7bdc154faec72..39f15fe99a709 100644 --- a/clients/client-direct-connect/src/commands/AssociateHostedConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/AssociateHostedConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateHostedConnectionRequest, Connection } from "../models/models_0"; +import type { AssociateHostedConnectionRequest, Connection } from "../models/models_0"; import { AssociateHostedConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/AssociateMacSecKeyCommand.ts b/clients/client-direct-connect/src/commands/AssociateMacSecKeyCommand.ts index 078a77ca7565e..56b6aec9daaec 100644 --- a/clients/client-direct-connect/src/commands/AssociateMacSecKeyCommand.ts +++ b/clients/client-direct-connect/src/commands/AssociateMacSecKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateMacSecKeyRequest, AssociateMacSecKeyResponse } from "../models/models_0"; +import type { AssociateMacSecKeyRequest, AssociateMacSecKeyResponse } from "../models/models_0"; import { AssociateMacSecKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/AssociateVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/AssociateVirtualInterfaceCommand.ts index 84dd222416348..efd51f000c346 100644 --- a/clients/client-direct-connect/src/commands/AssociateVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/AssociateVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; +import type { AssociateVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; import { AssociateVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/ConfirmConnectionCommand.ts b/clients/client-direct-connect/src/commands/ConfirmConnectionCommand.ts index 6911c0dca93ea..80f949de24da5 100644 --- a/clients/client-direct-connect/src/commands/ConfirmConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmConnectionRequest, ConfirmConnectionResponse } from "../models/models_0"; +import type { ConfirmConnectionRequest, ConfirmConnectionResponse } from "../models/models_0"; import { ConfirmConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/ConfirmCustomerAgreementCommand.ts b/clients/client-direct-connect/src/commands/ConfirmCustomerAgreementCommand.ts index 12b1dc93928ec..9ae01a9e5a924 100644 --- a/clients/client-direct-connect/src/commands/ConfirmCustomerAgreementCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmCustomerAgreementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmCustomerAgreementRequest, ConfirmCustomerAgreementResponse } from "../models/models_0"; +import type { ConfirmCustomerAgreementRequest, ConfirmCustomerAgreementResponse } from "../models/models_0"; import { ConfirmCustomerAgreement } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/ConfirmPrivateVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/ConfirmPrivateVirtualInterfaceCommand.ts index 71147dd213a7a..37f1e920db132 100644 --- a/clients/client-direct-connect/src/commands/ConfirmPrivateVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmPrivateVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmPrivateVirtualInterfaceRequest, ConfirmPrivateVirtualInterfaceResponse } from "../models/models_0"; +import type { ConfirmPrivateVirtualInterfaceRequest, ConfirmPrivateVirtualInterfaceResponse } from "../models/models_0"; import { ConfirmPrivateVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/ConfirmPublicVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/ConfirmPublicVirtualInterfaceCommand.ts index 1901ce6f99ccb..caec2916b3031 100644 --- a/clients/client-direct-connect/src/commands/ConfirmPublicVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmPublicVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmPublicVirtualInterfaceRequest, ConfirmPublicVirtualInterfaceResponse } from "../models/models_0"; +import type { ConfirmPublicVirtualInterfaceRequest, ConfirmPublicVirtualInterfaceResponse } from "../models/models_0"; import { ConfirmPublicVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/ConfirmTransitVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/ConfirmTransitVirtualInterfaceCommand.ts index 41d19379308bb..b9bc4c352c24d 100644 --- a/clients/client-direct-connect/src/commands/ConfirmTransitVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/ConfirmTransitVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmTransitVirtualInterfaceRequest, ConfirmTransitVirtualInterfaceResponse } from "../models/models_0"; +import type { ConfirmTransitVirtualInterfaceRequest, ConfirmTransitVirtualInterfaceResponse } from "../models/models_0"; import { ConfirmTransitVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/CreateBGPPeerCommand.ts b/clients/client-direct-connect/src/commands/CreateBGPPeerCommand.ts index 78e30621e11bb..2b45005bbd7a9 100644 --- a/clients/client-direct-connect/src/commands/CreateBGPPeerCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateBGPPeerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBGPPeerRequest, CreateBGPPeerResponse } from "../models/models_0"; +import type { CreateBGPPeerRequest, CreateBGPPeerResponse } from "../models/models_0"; import { CreateBGPPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/CreateConnectionCommand.ts b/clients/client-direct-connect/src/commands/CreateConnectionCommand.ts index 6efbf557a2089..6629661a3e994 100644 --- a/clients/client-direct-connect/src/commands/CreateConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Connection, CreateConnectionRequest } from "../models/models_0"; +import type { Connection, CreateConnectionRequest } from "../models/models_0"; import { CreateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationCommand.ts b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationCommand.ts index 5e44a4d83083c..297f63167b663 100644 --- a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateDirectConnectGatewayAssociationRequest, CreateDirectConnectGatewayAssociationResult, } from "../models/models_0"; diff --git a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationProposalCommand.ts b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationProposalCommand.ts index d35c8d8bc5fff..0b7096dea495b 100644 --- a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationProposalCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayAssociationProposalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateDirectConnectGatewayAssociationProposalRequest, CreateDirectConnectGatewayAssociationProposalResult, } from "../models/models_0"; diff --git a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayCommand.ts b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayCommand.ts index b985e3e5fe58d..725260259f27b 100644 --- a/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateDirectConnectGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDirectConnectGatewayRequest, CreateDirectConnectGatewayResult } from "../models/models_0"; +import type { CreateDirectConnectGatewayRequest, CreateDirectConnectGatewayResult } from "../models/models_0"; import { CreateDirectConnectGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/CreateInterconnectCommand.ts b/clients/client-direct-connect/src/commands/CreateInterconnectCommand.ts index 5299868086adb..7dee906c45987 100644 --- a/clients/client-direct-connect/src/commands/CreateInterconnectCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateInterconnectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInterconnectRequest, Interconnect } from "../models/models_0"; +import type { CreateInterconnectRequest, Interconnect } from "../models/models_0"; import { CreateInterconnect } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/CreateLagCommand.ts b/clients/client-direct-connect/src/commands/CreateLagCommand.ts index 06ad29be78e57..1caf448bfa24d 100644 --- a/clients/client-direct-connect/src/commands/CreateLagCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateLagCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLagRequest, Lag } from "../models/models_0"; +import type { CreateLagRequest, Lag } from "../models/models_0"; import { CreateLag } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/CreatePrivateVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/CreatePrivateVirtualInterfaceCommand.ts index f2722bc2917da..6259d9282a722 100644 --- a/clients/client-direct-connect/src/commands/CreatePrivateVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/CreatePrivateVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePrivateVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; +import type { CreatePrivateVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; import { CreatePrivateVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/CreatePublicVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/CreatePublicVirtualInterfaceCommand.ts index f747d8c903ac1..fe7aaad9b44e7 100644 --- a/clients/client-direct-connect/src/commands/CreatePublicVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/CreatePublicVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePublicVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; +import type { CreatePublicVirtualInterfaceRequest, VirtualInterface } from "../models/models_0"; import { CreatePublicVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/CreateTransitVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/CreateTransitVirtualInterfaceCommand.ts index de1c9b31c320e..5347e57f6b978 100644 --- a/clients/client-direct-connect/src/commands/CreateTransitVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/CreateTransitVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransitVirtualInterfaceRequest, CreateTransitVirtualInterfaceResult } from "../models/models_0"; +import type { CreateTransitVirtualInterfaceRequest, CreateTransitVirtualInterfaceResult } from "../models/models_0"; import { CreateTransitVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DeleteBGPPeerCommand.ts b/clients/client-direct-connect/src/commands/DeleteBGPPeerCommand.ts index 00a7c9195024a..a2bd33c3124d7 100644 --- a/clients/client-direct-connect/src/commands/DeleteBGPPeerCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteBGPPeerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBGPPeerRequest, DeleteBGPPeerResponse } from "../models/models_0"; +import type { DeleteBGPPeerRequest, DeleteBGPPeerResponse } from "../models/models_0"; import { DeleteBGPPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DeleteConnectionCommand.ts b/clients/client-direct-connect/src/commands/DeleteConnectionCommand.ts index e3e4eb16bd01f..89569792ec848 100644 --- a/clients/client-direct-connect/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Connection, DeleteConnectionRequest } from "../models/models_0"; +import type { Connection, DeleteConnectionRequest } from "../models/models_0"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationCommand.ts b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationCommand.ts index d195de7bda169..a120acf2e6c81 100644 --- a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteDirectConnectGatewayAssociationRequest, DeleteDirectConnectGatewayAssociationResult, } from "../models/models_0"; diff --git a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationProposalCommand.ts b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationProposalCommand.ts index 305932a2e803d..df454b8576dce 100644 --- a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationProposalCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayAssociationProposalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteDirectConnectGatewayAssociationProposalRequest, DeleteDirectConnectGatewayAssociationProposalResult, } from "../models/models_0"; diff --git a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayCommand.ts b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayCommand.ts index f8d20d82624f8..a521a94c54217 100644 --- a/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteDirectConnectGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDirectConnectGatewayRequest, DeleteDirectConnectGatewayResult } from "../models/models_0"; +import type { DeleteDirectConnectGatewayRequest, DeleteDirectConnectGatewayResult } from "../models/models_0"; import { DeleteDirectConnectGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DeleteInterconnectCommand.ts b/clients/client-direct-connect/src/commands/DeleteInterconnectCommand.ts index 53299cda143d8..a8c2258a227f4 100644 --- a/clients/client-direct-connect/src/commands/DeleteInterconnectCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteInterconnectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInterconnectRequest, DeleteInterconnectResponse } from "../models/models_0"; +import type { DeleteInterconnectRequest, DeleteInterconnectResponse } from "../models/models_0"; import { DeleteInterconnect } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DeleteLagCommand.ts b/clients/client-direct-connect/src/commands/DeleteLagCommand.ts index 125a387e05016..648a8b16338dd 100644 --- a/clients/client-direct-connect/src/commands/DeleteLagCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteLagCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLagRequest, Lag } from "../models/models_0"; +import type { DeleteLagRequest, Lag } from "../models/models_0"; import { DeleteLag } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DeleteVirtualInterfaceCommand.ts b/clients/client-direct-connect/src/commands/DeleteVirtualInterfaceCommand.ts index 506bb7da2d674..338b709e80b99 100644 --- a/clients/client-direct-connect/src/commands/DeleteVirtualInterfaceCommand.ts +++ b/clients/client-direct-connect/src/commands/DeleteVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVirtualInterfaceRequest, DeleteVirtualInterfaceResponse } from "../models/models_0"; +import type { DeleteVirtualInterfaceRequest, DeleteVirtualInterfaceResponse } from "../models/models_0"; import { DeleteVirtualInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeConnectionLoaCommand.ts b/clients/client-direct-connect/src/commands/DescribeConnectionLoaCommand.ts index aa27b621ef441..215445ce273ee 100644 --- a/clients/client-direct-connect/src/commands/DescribeConnectionLoaCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeConnectionLoaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectionLoaRequest, DescribeConnectionLoaResponse } from "../models/models_0"; +import type { DescribeConnectionLoaRequest, DescribeConnectionLoaResponse } from "../models/models_0"; import { DescribeConnectionLoa } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeConnectionsCommand.ts b/clients/client-direct-connect/src/commands/DescribeConnectionsCommand.ts index bf78c174b5d6b..1c4daaa8c1cfb 100644 --- a/clients/client-direct-connect/src/commands/DescribeConnectionsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Connections, DescribeConnectionsRequest } from "../models/models_0"; +import type { Connections, DescribeConnectionsRequest } from "../models/models_0"; import { DescribeConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeConnectionsOnInterconnectCommand.ts b/clients/client-direct-connect/src/commands/DescribeConnectionsOnInterconnectCommand.ts index 2966a98e28ef1..f9cef6ebc2341 100644 --- a/clients/client-direct-connect/src/commands/DescribeConnectionsOnInterconnectCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeConnectionsOnInterconnectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Connections, DescribeConnectionsOnInterconnectRequest } from "../models/models_0"; +import type { Connections, DescribeConnectionsOnInterconnectRequest } from "../models/models_0"; import { DescribeConnectionsOnInterconnect } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeCustomerMetadataCommand.ts b/clients/client-direct-connect/src/commands/DescribeCustomerMetadataCommand.ts index ea1612473696e..d6f4c31cd3d0d 100644 --- a/clients/client-direct-connect/src/commands/DescribeCustomerMetadataCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeCustomerMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCustomerMetadataResponse } from "../models/models_0"; +import type { DescribeCustomerMetadataResponse } from "../models/models_0"; import { DescribeCustomerMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationProposalsCommand.ts b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationProposalsCommand.ts index 85c9933cbfcfe..70b3126b6b4ce 100644 --- a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationProposalsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationProposalsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDirectConnectGatewayAssociationProposalsRequest, DescribeDirectConnectGatewayAssociationProposalsResult, } from "../models/models_0"; diff --git a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationsCommand.ts b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationsCommand.ts index b17cffc7147f8..59566a92687e6 100644 --- a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDirectConnectGatewayAssociationsRequest, DescribeDirectConnectGatewayAssociationsResult, } from "../models/models_0"; diff --git a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAttachmentsCommand.ts b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAttachmentsCommand.ts index 2a25f7a638c82..8973727426635 100644 --- a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAttachmentsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewayAttachmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDirectConnectGatewayAttachmentsRequest, DescribeDirectConnectGatewayAttachmentsResult, } from "../models/models_0"; diff --git a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewaysCommand.ts b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewaysCommand.ts index a01cbc41c90e0..a7465334a419a 100644 --- a/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewaysCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeDirectConnectGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDirectConnectGatewaysRequest, DescribeDirectConnectGatewaysResult } from "../models/models_0"; +import type { DescribeDirectConnectGatewaysRequest, DescribeDirectConnectGatewaysResult } from "../models/models_0"; import { DescribeDirectConnectGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeHostedConnectionsCommand.ts b/clients/client-direct-connect/src/commands/DescribeHostedConnectionsCommand.ts index 31e1a8f15e508..f656596605c6d 100644 --- a/clients/client-direct-connect/src/commands/DescribeHostedConnectionsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeHostedConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Connections, DescribeHostedConnectionsRequest } from "../models/models_0"; +import type { Connections, DescribeHostedConnectionsRequest } from "../models/models_0"; import { DescribeHostedConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeInterconnectLoaCommand.ts b/clients/client-direct-connect/src/commands/DescribeInterconnectLoaCommand.ts index ab1c62dd74161..b7447950fc622 100644 --- a/clients/client-direct-connect/src/commands/DescribeInterconnectLoaCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeInterconnectLoaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInterconnectLoaRequest, DescribeInterconnectLoaResponse } from "../models/models_0"; +import type { DescribeInterconnectLoaRequest, DescribeInterconnectLoaResponse } from "../models/models_0"; import { DescribeInterconnectLoa } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeInterconnectsCommand.ts b/clients/client-direct-connect/src/commands/DescribeInterconnectsCommand.ts index ec8dd9aad88ae..fdf5e0c83bcad 100644 --- a/clients/client-direct-connect/src/commands/DescribeInterconnectsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeInterconnectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInterconnectsRequest, Interconnects } from "../models/models_0"; +import type { DescribeInterconnectsRequest, Interconnects } from "../models/models_0"; import { DescribeInterconnects } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeLagsCommand.ts b/clients/client-direct-connect/src/commands/DescribeLagsCommand.ts index d270e50438a05..65422e12daca6 100644 --- a/clients/client-direct-connect/src/commands/DescribeLagsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeLagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLagsRequest, Lags } from "../models/models_0"; +import type { DescribeLagsRequest, Lags } from "../models/models_0"; import { DescribeLags } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeLoaCommand.ts b/clients/client-direct-connect/src/commands/DescribeLoaCommand.ts index 9d852cc421f29..fa68e9fd2ce65 100644 --- a/clients/client-direct-connect/src/commands/DescribeLoaCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeLoaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoaRequest, Loa } from "../models/models_0"; +import type { DescribeLoaRequest, Loa } from "../models/models_0"; import { DescribeLoa } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeLocationsCommand.ts b/clients/client-direct-connect/src/commands/DescribeLocationsCommand.ts index ae97907a7c48f..905731fa48889 100644 --- a/clients/client-direct-connect/src/commands/DescribeLocationsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeLocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Locations } from "../models/models_0"; +import type { Locations } from "../models/models_0"; import { DescribeLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeRouterConfigurationCommand.ts b/clients/client-direct-connect/src/commands/DescribeRouterConfigurationCommand.ts index df22c9ec81f6b..381a3efb10091 100644 --- a/clients/client-direct-connect/src/commands/DescribeRouterConfigurationCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeRouterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRouterConfigurationRequest, DescribeRouterConfigurationResponse } from "../models/models_0"; +import type { DescribeRouterConfigurationRequest, DescribeRouterConfigurationResponse } from "../models/models_0"; import { DescribeRouterConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeTagsCommand.ts b/clients/client-direct-connect/src/commands/DescribeTagsCommand.ts index e9b00989e434d..2663af709c880 100644 --- a/clients/client-direct-connect/src/commands/DescribeTagsCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0"; +import type { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0"; import { DescribeTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeVirtualGatewaysCommand.ts b/clients/client-direct-connect/src/commands/DescribeVirtualGatewaysCommand.ts index c2587023f807b..603aaa522d5d1 100644 --- a/clients/client-direct-connect/src/commands/DescribeVirtualGatewaysCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeVirtualGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VirtualGateways } from "../models/models_0"; +import type { VirtualGateways } from "../models/models_0"; import { DescribeVirtualGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DescribeVirtualInterfacesCommand.ts b/clients/client-direct-connect/src/commands/DescribeVirtualInterfacesCommand.ts index 1f2f7c8b93f54..63dfe22e18ce7 100644 --- a/clients/client-direct-connect/src/commands/DescribeVirtualInterfacesCommand.ts +++ b/clients/client-direct-connect/src/commands/DescribeVirtualInterfacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVirtualInterfacesRequest, VirtualInterfaces } from "../models/models_0"; +import type { DescribeVirtualInterfacesRequest, VirtualInterfaces } from "../models/models_0"; import { DescribeVirtualInterfaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DisassociateConnectionFromLagCommand.ts b/clients/client-direct-connect/src/commands/DisassociateConnectionFromLagCommand.ts index a16b397eceba0..3081db5588303 100644 --- a/clients/client-direct-connect/src/commands/DisassociateConnectionFromLagCommand.ts +++ b/clients/client-direct-connect/src/commands/DisassociateConnectionFromLagCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Connection, DisassociateConnectionFromLagRequest } from "../models/models_0"; +import type { Connection, DisassociateConnectionFromLagRequest } from "../models/models_0"; import { DisassociateConnectionFromLag } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/DisassociateMacSecKeyCommand.ts b/clients/client-direct-connect/src/commands/DisassociateMacSecKeyCommand.ts index c0d34083092c5..cfda412c7125e 100644 --- a/clients/client-direct-connect/src/commands/DisassociateMacSecKeyCommand.ts +++ b/clients/client-direct-connect/src/commands/DisassociateMacSecKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateMacSecKeyRequest, DisassociateMacSecKeyResponse } from "../models/models_0"; +import type { DisassociateMacSecKeyRequest, DisassociateMacSecKeyResponse } from "../models/models_0"; import { DisassociateMacSecKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/ListVirtualInterfaceTestHistoryCommand.ts b/clients/client-direct-connect/src/commands/ListVirtualInterfaceTestHistoryCommand.ts index d60770a863b49..f125aeb385a95 100644 --- a/clients/client-direct-connect/src/commands/ListVirtualInterfaceTestHistoryCommand.ts +++ b/clients/client-direct-connect/src/commands/ListVirtualInterfaceTestHistoryCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVirtualInterfaceTestHistoryRequest, ListVirtualInterfaceTestHistoryResponse } from "../models/models_0"; +import type { + ListVirtualInterfaceTestHistoryRequest, + ListVirtualInterfaceTestHistoryResponse, +} from "../models/models_0"; import { ListVirtualInterfaceTestHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/StartBgpFailoverTestCommand.ts b/clients/client-direct-connect/src/commands/StartBgpFailoverTestCommand.ts index d787337c04338..1148499266bbb 100644 --- a/clients/client-direct-connect/src/commands/StartBgpFailoverTestCommand.ts +++ b/clients/client-direct-connect/src/commands/StartBgpFailoverTestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartBgpFailoverTestRequest, StartBgpFailoverTestResponse } from "../models/models_0"; +import type { StartBgpFailoverTestRequest, StartBgpFailoverTestResponse } from "../models/models_0"; import { StartBgpFailoverTest } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/StopBgpFailoverTestCommand.ts b/clients/client-direct-connect/src/commands/StopBgpFailoverTestCommand.ts index a3a78006b5156..026291ed6fecb 100644 --- a/clients/client-direct-connect/src/commands/StopBgpFailoverTestCommand.ts +++ b/clients/client-direct-connect/src/commands/StopBgpFailoverTestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopBgpFailoverTestRequest, StopBgpFailoverTestResponse } from "../models/models_0"; +import type { StopBgpFailoverTestRequest, StopBgpFailoverTestResponse } from "../models/models_0"; import { StopBgpFailoverTest } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/TagResourceCommand.ts b/clients/client-direct-connect/src/commands/TagResourceCommand.ts index 6a46b9f3e0f20..1f98555c5410c 100644 --- a/clients/client-direct-connect/src/commands/TagResourceCommand.ts +++ b/clients/client-direct-connect/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/UntagResourceCommand.ts b/clients/client-direct-connect/src/commands/UntagResourceCommand.ts index 1b4f74ec64ad5..a4fe2aec03763 100644 --- a/clients/client-direct-connect/src/commands/UntagResourceCommand.ts +++ b/clients/client-direct-connect/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/UpdateConnectionCommand.ts b/clients/client-direct-connect/src/commands/UpdateConnectionCommand.ts index cdd8b24b216e7..4df1ce410e185 100644 --- a/clients/client-direct-connect/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Connection, UpdateConnectionRequest } from "../models/models_0"; +import type { Connection, UpdateConnectionRequest } from "../models/models_0"; import { UpdateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayAssociationCommand.ts b/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayAssociationCommand.ts index 2da3163cd7313..b9e848f6316d4 100644 --- a/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayAssociationCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateDirectConnectGatewayAssociationRequest, UpdateDirectConnectGatewayAssociationResult, } from "../models/models_0"; diff --git a/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayCommand.ts b/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayCommand.ts index ad2a04ae53720..4025753524964 100644 --- a/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateDirectConnectGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDirectConnectGatewayRequest, UpdateDirectConnectGatewayResponse } from "../models/models_0"; +import type { UpdateDirectConnectGatewayRequest, UpdateDirectConnectGatewayResponse } from "../models/models_0"; import { UpdateDirectConnectGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/UpdateLagCommand.ts b/clients/client-direct-connect/src/commands/UpdateLagCommand.ts index 5db669cf7679a..5416c4f8c018f 100644 --- a/clients/client-direct-connect/src/commands/UpdateLagCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateLagCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Lag, UpdateLagRequest } from "../models/models_0"; +import type { Lag, UpdateLagRequest } from "../models/models_0"; import { UpdateLag } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/commands/UpdateVirtualInterfaceAttributesCommand.ts b/clients/client-direct-connect/src/commands/UpdateVirtualInterfaceAttributesCommand.ts index 78b642a7d8a40..68382f20e7326 100644 --- a/clients/client-direct-connect/src/commands/UpdateVirtualInterfaceAttributesCommand.ts +++ b/clients/client-direct-connect/src/commands/UpdateVirtualInterfaceAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; +import type { DirectConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVirtualInterfaceAttributesRequest, VirtualInterface } from "../models/models_0"; +import type { UpdateVirtualInterfaceAttributesRequest, VirtualInterface } from "../models/models_0"; import { UpdateVirtualInterfaceAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-direct-connect/src/endpoint/EndpointParameters.ts b/clients/client-direct-connect/src/endpoint/EndpointParameters.ts index ad8fa29dd7a09..e93a626408a7c 100644 --- a/clients/client-direct-connect/src/endpoint/EndpointParameters.ts +++ b/clients/client-direct-connect/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-direct-connect/src/endpoint/endpointResolver.ts b/clients/client-direct-connect/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-direct-connect/src/endpoint/endpointResolver.ts +++ b/clients/client-direct-connect/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-direct-connect/src/extensionConfiguration.ts b/clients/client-direct-connect/src/extensionConfiguration.ts index 6c705920cbcc6..27382dd2f607c 100644 --- a/clients/client-direct-connect/src/extensionConfiguration.ts +++ b/clients/client-direct-connect/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-direct-connect/src/models/DirectConnectServiceException.ts b/clients/client-direct-connect/src/models/DirectConnectServiceException.ts index 2746fe733cd7a..f1c4c7eeecf8c 100644 --- a/clients/client-direct-connect/src/models/DirectConnectServiceException.ts +++ b/clients/client-direct-connect/src/models/DirectConnectServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-direct-connect/src/models/errors.ts b/clients/client-direct-connect/src/models/errors.ts index 3b22ba0101c73..cebaf84a09edb 100644 --- a/clients/client-direct-connect/src/models/errors.ts +++ b/clients/client-direct-connect/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DirectConnectServiceException as __BaseException } from "./DirectConnectServiceException"; diff --git a/clients/client-direct-connect/src/runtimeConfig.browser.ts b/clients/client-direct-connect/src/runtimeConfig.browser.ts index aeaef1f3a7a4b..f7f89b2b23906 100644 --- a/clients/client-direct-connect/src/runtimeConfig.browser.ts +++ b/clients/client-direct-connect/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DirectConnectClientConfig } from "./DirectConnectClient"; + +import type { DirectConnectClientConfig } from "./DirectConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-direct-connect/src/runtimeConfig.native.ts b/clients/client-direct-connect/src/runtimeConfig.native.ts index dceb10f92977c..2c34c91b4ef6c 100644 --- a/clients/client-direct-connect/src/runtimeConfig.native.ts +++ b/clients/client-direct-connect/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DirectConnectClientConfig } from "./DirectConnectClient"; +import type { DirectConnectClientConfig } from "./DirectConnectClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-direct-connect/src/runtimeConfig.shared.ts b/clients/client-direct-connect/src/runtimeConfig.shared.ts index a26b4b5806b47..8df89c7652306 100644 --- a/clients/client-direct-connect/src/runtimeConfig.shared.ts +++ b/clients/client-direct-connect/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDirectConnectHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DirectConnectClientConfig } from "./DirectConnectClient"; +import type { DirectConnectClientConfig } from "./DirectConnectClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-direct-connect/src/runtimeConfig.ts b/clients/client-direct-connect/src/runtimeConfig.ts index 9085ffc6af66f..709e064cb856d 100644 --- a/clients/client-direct-connect/src/runtimeConfig.ts +++ b/clients/client-direct-connect/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DirectConnectClientConfig } from "./DirectConnectClient"; + +import type { DirectConnectClientConfig } from "./DirectConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-direct-connect/src/runtimeExtensions.ts b/clients/client-direct-connect/src/runtimeExtensions.ts index 632d4e7287539..8889c663230f0 100644 --- a/clients/client-direct-connect/src/runtimeExtensions.ts +++ b/clients/client-direct-connect/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DirectConnectExtensionConfiguration } from "./extensionConfiguration"; +import type { DirectConnectExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-direct-connect/src/schemas/schemas_0.ts b/clients/client-direct-connect/src/schemas/schemas_0.ts index c835e433759d2..27ea75d2151d7 100644 --- a/clients/client-direct-connect/src/schemas/schemas_0.ts +++ b/clients/client-direct-connect/src/schemas/schemas_0.ts @@ -369,7 +369,7 @@ const n0 = "com.amazonaws.directconnect"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { DirectConnectServiceException as __DirectConnectServiceException } from "../models/DirectConnectServiceException"; import { diff --git a/clients/client-directory-service-data/package.json b/clients/client-directory-service-data/package.json index 5dc1a1e44b1b0..6d717cf4e275d 100644 --- a/clients/client-directory-service-data/package.json +++ b/clients/client-directory-service-data/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-directory-service-data/src/DirectoryServiceData.ts b/clients/client-directory-service-data/src/DirectoryServiceData.ts index 633220911bbde..8f3c7cc23d0e5 100644 --- a/clients/client-directory-service-data/src/DirectoryServiceData.ts +++ b/clients/client-directory-service-data/src/DirectoryServiceData.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddGroupMemberCommand, @@ -47,7 +47,7 @@ import { import { SearchUsersCommand, SearchUsersCommandInput, SearchUsersCommandOutput } from "./commands/SearchUsersCommand"; import { UpdateGroupCommand, UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand"; import { UpdateUserCommand, UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand"; -import { DirectoryServiceDataClient, DirectoryServiceDataClientConfig } from "./DirectoryServiceDataClient"; +import { DirectoryServiceDataClient } from "./DirectoryServiceDataClient"; const commands = { AddGroupMemberCommand, diff --git a/clients/client-directory-service-data/src/DirectoryServiceDataClient.ts b/clients/client-directory-service-data/src/DirectoryServiceDataClient.ts index 798699f2514be..92d6007b34688 100644 --- a/clients/client-directory-service-data/src/DirectoryServiceDataClient.ts +++ b/clients/client-directory-service-data/src/DirectoryServiceDataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDirectoryServiceDataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddGroupMemberCommandInput, AddGroupMemberCommandOutput } from "./commands/AddGroupMemberCommand"; @@ -84,7 +93,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-directory-service-data/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-directory-service-data/src/auth/httpAuthExtensionConfiguration.ts index c9c0f4b7c0ef9..5807f5cf82aee 100644 --- a/clients/client-directory-service-data/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-directory-service-data/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DirectoryServiceDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DirectoryServiceDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-directory-service-data/src/auth/httpAuthSchemeProvider.ts b/clients/client-directory-service-data/src/auth/httpAuthSchemeProvider.ts index 164163806c133..038bb2926d6cd 100644 --- a/clients/client-directory-service-data/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-directory-service-data/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type DirectoryServiceDataClientResolvedConfig, DirectoryServiceDataClientConfig, - DirectoryServiceDataClientResolvedConfig, } from "../DirectoryServiceDataClient"; /** diff --git a/clients/client-directory-service-data/src/commands/AddGroupMemberCommand.ts b/clients/client-directory-service-data/src/commands/AddGroupMemberCommand.ts index 8244f90fe34af..113fdf8d12495 100644 --- a/clients/client-directory-service-data/src/commands/AddGroupMemberCommand.ts +++ b/clients/client-directory-service-data/src/commands/AddGroupMemberCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddGroupMemberRequest, AddGroupMemberResult } from "../models/models_0"; +import type { AddGroupMemberRequest, AddGroupMemberResult } from "../models/models_0"; import { AddGroupMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/CreateGroupCommand.ts b/clients/client-directory-service-data/src/commands/CreateGroupCommand.ts index 3d8f137b609c2..e8371708f4d0c 100644 --- a/clients/client-directory-service-data/src/commands/CreateGroupCommand.ts +++ b/clients/client-directory-service-data/src/commands/CreateGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGroupRequest, CreateGroupResult } from "../models/models_0"; +import type { CreateGroupRequest, CreateGroupResult } from "../models/models_0"; import { CreateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/CreateUserCommand.ts b/clients/client-directory-service-data/src/commands/CreateUserCommand.ts index 9491694db9bc0..2112b9d243494 100644 --- a/clients/client-directory-service-data/src/commands/CreateUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/CreateUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResult } from "../models/models_0"; +import type { CreateUserRequest, CreateUserResult } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/DeleteGroupCommand.ts b/clients/client-directory-service-data/src/commands/DeleteGroupCommand.ts index 1aed10b9cde37..bb9dd08b816b7 100644 --- a/clients/client-directory-service-data/src/commands/DeleteGroupCommand.ts +++ b/clients/client-directory-service-data/src/commands/DeleteGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupRequest, DeleteGroupResult } from "../models/models_0"; +import type { DeleteGroupRequest, DeleteGroupResult } from "../models/models_0"; import { DeleteGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/DeleteUserCommand.ts b/clients/client-directory-service-data/src/commands/DeleteUserCommand.ts index 06067f56cfc34..2a98aec2109c6 100644 --- a/clients/client-directory-service-data/src/commands/DeleteUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/DeleteUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest, DeleteUserResult } from "../models/models_0"; +import type { DeleteUserRequest, DeleteUserResult } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/DescribeGroupCommand.ts b/clients/client-directory-service-data/src/commands/DescribeGroupCommand.ts index fc9e5d7fa8d26..caca6916803ae 100644 --- a/clients/client-directory-service-data/src/commands/DescribeGroupCommand.ts +++ b/clients/client-directory-service-data/src/commands/DescribeGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGroupRequest, DescribeGroupResult } from "../models/models_0"; +import type { DescribeGroupRequest, DescribeGroupResult } from "../models/models_0"; import { DescribeGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/DescribeUserCommand.ts b/clients/client-directory-service-data/src/commands/DescribeUserCommand.ts index 691f728ca6f9b..cdad37b223e92 100644 --- a/clients/client-directory-service-data/src/commands/DescribeUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/DescribeUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserRequest, DescribeUserResult } from "../models/models_0"; +import type { DescribeUserRequest, DescribeUserResult } from "../models/models_0"; import { DescribeUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/DisableUserCommand.ts b/clients/client-directory-service-data/src/commands/DisableUserCommand.ts index 65be89146215b..67bf9e5adca34 100644 --- a/clients/client-directory-service-data/src/commands/DisableUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/DisableUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableUserRequest, DisableUserResult } from "../models/models_0"; +import type { DisableUserRequest, DisableUserResult } from "../models/models_0"; import { DisableUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/ListGroupMembersCommand.ts b/clients/client-directory-service-data/src/commands/ListGroupMembersCommand.ts index bf97b7ecad5b3..91446d9730d32 100644 --- a/clients/client-directory-service-data/src/commands/ListGroupMembersCommand.ts +++ b/clients/client-directory-service-data/src/commands/ListGroupMembersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupMembersRequest, ListGroupMembersResult } from "../models/models_0"; +import type { ListGroupMembersRequest, ListGroupMembersResult } from "../models/models_0"; import { ListGroupMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/ListGroupsCommand.ts b/clients/client-directory-service-data/src/commands/ListGroupsCommand.ts index 8df8c85c36492..aaee3e4470825 100644 --- a/clients/client-directory-service-data/src/commands/ListGroupsCommand.ts +++ b/clients/client-directory-service-data/src/commands/ListGroupsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupsRequest, ListGroupsResult } from "../models/models_0"; +import type { ListGroupsRequest, ListGroupsResult } from "../models/models_0"; import { ListGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/ListGroupsForMemberCommand.ts b/clients/client-directory-service-data/src/commands/ListGroupsForMemberCommand.ts index 6f51afbdfaf60..19ff0e89783bd 100644 --- a/clients/client-directory-service-data/src/commands/ListGroupsForMemberCommand.ts +++ b/clients/client-directory-service-data/src/commands/ListGroupsForMemberCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupsForMemberRequest, ListGroupsForMemberResult } from "../models/models_0"; +import type { ListGroupsForMemberRequest, ListGroupsForMemberResult } from "../models/models_0"; import { ListGroupsForMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/ListUsersCommand.ts b/clients/client-directory-service-data/src/commands/ListUsersCommand.ts index 312be6897a73f..e13e5daaf4d83 100644 --- a/clients/client-directory-service-data/src/commands/ListUsersCommand.ts +++ b/clients/client-directory-service-data/src/commands/ListUsersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersRequest, ListUsersResult } from "../models/models_0"; +import type { ListUsersRequest, ListUsersResult } from "../models/models_0"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/RemoveGroupMemberCommand.ts b/clients/client-directory-service-data/src/commands/RemoveGroupMemberCommand.ts index e6f205053cd6e..05be6cf5d2aff 100644 --- a/clients/client-directory-service-data/src/commands/RemoveGroupMemberCommand.ts +++ b/clients/client-directory-service-data/src/commands/RemoveGroupMemberCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveGroupMemberRequest, RemoveGroupMemberResult } from "../models/models_0"; +import type { RemoveGroupMemberRequest, RemoveGroupMemberResult } from "../models/models_0"; import { RemoveGroupMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/SearchGroupsCommand.ts b/clients/client-directory-service-data/src/commands/SearchGroupsCommand.ts index 3ce9e36fbe999..bfc7478af539d 100644 --- a/clients/client-directory-service-data/src/commands/SearchGroupsCommand.ts +++ b/clients/client-directory-service-data/src/commands/SearchGroupsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchGroupsRequest, SearchGroupsResult } from "../models/models_0"; +import type { SearchGroupsRequest, SearchGroupsResult } from "../models/models_0"; import { SearchGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/SearchUsersCommand.ts b/clients/client-directory-service-data/src/commands/SearchUsersCommand.ts index 05baa2e4677f6..9159bccb158d3 100644 --- a/clients/client-directory-service-data/src/commands/SearchUsersCommand.ts +++ b/clients/client-directory-service-data/src/commands/SearchUsersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchUsersRequest, SearchUsersResult } from "../models/models_0"; +import type { SearchUsersRequest, SearchUsersResult } from "../models/models_0"; import { SearchUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/UpdateGroupCommand.ts b/clients/client-directory-service-data/src/commands/UpdateGroupCommand.ts index a8e25c97ff4dd..9c9f6ef25ad6f 100644 --- a/clients/client-directory-service-data/src/commands/UpdateGroupCommand.ts +++ b/clients/client-directory-service-data/src/commands/UpdateGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGroupRequest, UpdateGroupResult } from "../models/models_0"; +import type { UpdateGroupRequest, UpdateGroupResult } from "../models/models_0"; import { UpdateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/commands/UpdateUserCommand.ts b/clients/client-directory-service-data/src/commands/UpdateUserCommand.ts index 2a52730623057..94ea3f4780ae4 100644 --- a/clients/client-directory-service-data/src/commands/UpdateUserCommand.ts +++ b/clients/client-directory-service-data/src/commands/UpdateUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { DirectoryServiceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../DirectoryServiceDataClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserRequest, UpdateUserResult } from "../models/models_0"; +import type { UpdateUserRequest, UpdateUserResult } from "../models/models_0"; import { UpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service-data/src/endpoint/EndpointParameters.ts b/clients/client-directory-service-data/src/endpoint/EndpointParameters.ts index c0ddfd7163c17..a160c718e849e 100644 --- a/clients/client-directory-service-data/src/endpoint/EndpointParameters.ts +++ b/clients/client-directory-service-data/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-directory-service-data/src/endpoint/endpointResolver.ts b/clients/client-directory-service-data/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-directory-service-data/src/endpoint/endpointResolver.ts +++ b/clients/client-directory-service-data/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-directory-service-data/src/extensionConfiguration.ts b/clients/client-directory-service-data/src/extensionConfiguration.ts index e91940dc16fd9..9547eb580df17 100644 --- a/clients/client-directory-service-data/src/extensionConfiguration.ts +++ b/clients/client-directory-service-data/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-directory-service-data/src/models/DirectoryServiceDataServiceException.ts b/clients/client-directory-service-data/src/models/DirectoryServiceDataServiceException.ts index 3acfae7749b22..77570570a4df6 100644 --- a/clients/client-directory-service-data/src/models/DirectoryServiceDataServiceException.ts +++ b/clients/client-directory-service-data/src/models/DirectoryServiceDataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-directory-service-data/src/models/errors.ts b/clients/client-directory-service-data/src/models/errors.ts index e4c722777c6a0..e2cfd0410793a 100644 --- a/clients/client-directory-service-data/src/models/errors.ts +++ b/clients/client-directory-service-data/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DirectoryServiceDataServiceException as __BaseException } from "./DirectoryServiceDataServiceException"; import { AccessDeniedReason, DirectoryUnavailableReason, ValidationExceptionReason } from "./enums"; diff --git a/clients/client-directory-service-data/src/pagination/Interfaces.ts b/clients/client-directory-service-data/src/pagination/Interfaces.ts index cbc76dc38bcf7..23cf742da55ab 100644 --- a/clients/client-directory-service-data/src/pagination/Interfaces.ts +++ b/clients/client-directory-service-data/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DirectoryServiceDataClient } from "../DirectoryServiceDataClient"; diff --git a/clients/client-directory-service-data/src/pagination/ListGroupMembersPaginator.ts b/clients/client-directory-service-data/src/pagination/ListGroupMembersPaginator.ts index 71613bea1f9e6..788b95981c93f 100644 --- a/clients/client-directory-service-data/src/pagination/ListGroupMembersPaginator.ts +++ b/clients/client-directory-service-data/src/pagination/ListGroupMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupMembersCommand, diff --git a/clients/client-directory-service-data/src/pagination/ListGroupsForMemberPaginator.ts b/clients/client-directory-service-data/src/pagination/ListGroupsForMemberPaginator.ts index 6b10d63c1aa17..d258a914c6ac6 100644 --- a/clients/client-directory-service-data/src/pagination/ListGroupsForMemberPaginator.ts +++ b/clients/client-directory-service-data/src/pagination/ListGroupsForMemberPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsForMemberCommand, diff --git a/clients/client-directory-service-data/src/pagination/ListGroupsPaginator.ts b/clients/client-directory-service-data/src/pagination/ListGroupsPaginator.ts index 464d3cf6b497d..596e052ee2114 100644 --- a/clients/client-directory-service-data/src/pagination/ListGroupsPaginator.ts +++ b/clients/client-directory-service-data/src/pagination/ListGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand"; import { DirectoryServiceDataClient } from "../DirectoryServiceDataClient"; diff --git a/clients/client-directory-service-data/src/pagination/ListUsersPaginator.ts b/clients/client-directory-service-data/src/pagination/ListUsersPaginator.ts index c6ccd75c2c49c..56e5211698f98 100644 --- a/clients/client-directory-service-data/src/pagination/ListUsersPaginator.ts +++ b/clients/client-directory-service-data/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; import { DirectoryServiceDataClient } from "../DirectoryServiceDataClient"; diff --git a/clients/client-directory-service-data/src/pagination/SearchGroupsPaginator.ts b/clients/client-directory-service-data/src/pagination/SearchGroupsPaginator.ts index 9846f0cd165a9..7872e3864e7ae 100644 --- a/clients/client-directory-service-data/src/pagination/SearchGroupsPaginator.ts +++ b/clients/client-directory-service-data/src/pagination/SearchGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchGroupsCommand, diff --git a/clients/client-directory-service-data/src/pagination/SearchUsersPaginator.ts b/clients/client-directory-service-data/src/pagination/SearchUsersPaginator.ts index 8c770c6123240..bfe9ab964661e 100644 --- a/clients/client-directory-service-data/src/pagination/SearchUsersPaginator.ts +++ b/clients/client-directory-service-data/src/pagination/SearchUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchUsersCommand, SearchUsersCommandInput, SearchUsersCommandOutput } from "../commands/SearchUsersCommand"; import { DirectoryServiceDataClient } from "../DirectoryServiceDataClient"; diff --git a/clients/client-directory-service-data/src/runtimeConfig.browser.ts b/clients/client-directory-service-data/src/runtimeConfig.browser.ts index 0e58b102c324f..82a8a50010ddf 100644 --- a/clients/client-directory-service-data/src/runtimeConfig.browser.ts +++ b/clients/client-directory-service-data/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DirectoryServiceDataClientConfig } from "./DirectoryServiceDataClient"; + +import type { DirectoryServiceDataClientConfig } from "./DirectoryServiceDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-directory-service-data/src/runtimeConfig.native.ts b/clients/client-directory-service-data/src/runtimeConfig.native.ts index 2291e84ab4e96..23b3b1e089578 100644 --- a/clients/client-directory-service-data/src/runtimeConfig.native.ts +++ b/clients/client-directory-service-data/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DirectoryServiceDataClientConfig } from "./DirectoryServiceDataClient"; +import type { DirectoryServiceDataClientConfig } from "./DirectoryServiceDataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-directory-service-data/src/runtimeConfig.shared.ts b/clients/client-directory-service-data/src/runtimeConfig.shared.ts index 33dac5cc60c19..18e280e787f51 100644 --- a/clients/client-directory-service-data/src/runtimeConfig.shared.ts +++ b/clients/client-directory-service-data/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDirectoryServiceDataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DirectoryServiceDataClientConfig } from "./DirectoryServiceDataClient"; +import type { DirectoryServiceDataClientConfig } from "./DirectoryServiceDataClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-directory-service-data/src/runtimeConfig.ts b/clients/client-directory-service-data/src/runtimeConfig.ts index 375c846fc8542..f959c959945fc 100644 --- a/clients/client-directory-service-data/src/runtimeConfig.ts +++ b/clients/client-directory-service-data/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DirectoryServiceDataClientConfig } from "./DirectoryServiceDataClient"; + +import type { DirectoryServiceDataClientConfig } from "./DirectoryServiceDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-directory-service-data/src/runtimeExtensions.ts b/clients/client-directory-service-data/src/runtimeExtensions.ts index 66337255b130a..2caee05d82576 100644 --- a/clients/client-directory-service-data/src/runtimeExtensions.ts +++ b/clients/client-directory-service-data/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DirectoryServiceDataExtensionConfiguration } from "./extensionConfiguration"; +import type { DirectoryServiceDataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-directory-service-data/src/schemas/schemas_0.ts b/clients/client-directory-service-data/src/schemas/schemas_0.ts index b6cefb1a9e7de..f2b6077fa4def 100644 --- a/clients/client-directory-service-data/src/schemas/schemas_0.ts +++ b/clients/client-directory-service-data/src/schemas/schemas_0.ts @@ -118,7 +118,7 @@ const n0 = "com.amazonaws.directoryservicedata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-directory-service/package.json b/clients/client-directory-service/package.json index c11c9b3550301..9e832754939c4 100644 --- a/clients/client-directory-service/package.json +++ b/clients/client-directory-service/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-directory-service/src/DirectoryService.ts b/clients/client-directory-service/src/DirectoryService.ts index 9437e9ff7d3dd..378f79f0feae7 100644 --- a/clients/client-directory-service/src/DirectoryService.ts +++ b/clients/client-directory-service/src/DirectoryService.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptSharedDirectoryCommand, @@ -362,7 +362,7 @@ import { } from "./commands/UpdateSettingsCommand"; import { UpdateTrustCommand, UpdateTrustCommandInput, UpdateTrustCommandOutput } from "./commands/UpdateTrustCommand"; import { VerifyTrustCommand, VerifyTrustCommandInput, VerifyTrustCommandOutput } from "./commands/VerifyTrustCommand"; -import { DirectoryServiceClient, DirectoryServiceClientConfig } from "./DirectoryServiceClient"; +import { DirectoryServiceClient } from "./DirectoryServiceClient"; const commands = { AcceptSharedDirectoryCommand, diff --git a/clients/client-directory-service/src/DirectoryServiceClient.ts b/clients/client-directory-service/src/DirectoryServiceClient.ts index 1e9727543d2d0..c5799f830f610 100644 --- a/clients/client-directory-service/src/DirectoryServiceClient.ts +++ b/clients/client-directory-service/src/DirectoryServiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDirectoryServiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -258,7 +267,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-directory-service/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-directory-service/src/auth/httpAuthExtensionConfiguration.ts index 829939c96c9b5..6e71736df6254 100644 --- a/clients/client-directory-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-directory-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DirectoryServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DirectoryServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-directory-service/src/auth/httpAuthSchemeProvider.ts b/clients/client-directory-service/src/auth/httpAuthSchemeProvider.ts index 39cd728f96371..72459ddee74d4 100644 --- a/clients/client-directory-service/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-directory-service/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DirectoryServiceClientConfig, DirectoryServiceClientResolvedConfig } from "../DirectoryServiceClient"; +import { type DirectoryServiceClientResolvedConfig, DirectoryServiceClientConfig } from "../DirectoryServiceClient"; /** * @internal diff --git a/clients/client-directory-service/src/commands/AcceptSharedDirectoryCommand.ts b/clients/client-directory-service/src/commands/AcceptSharedDirectoryCommand.ts index bb2dfe8a5f72e..cdedf85f21f54 100644 --- a/clients/client-directory-service/src/commands/AcceptSharedDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/AcceptSharedDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptSharedDirectoryRequest, AcceptSharedDirectoryResult } from "../models/models_0"; +import type { AcceptSharedDirectoryRequest, AcceptSharedDirectoryResult } from "../models/models_0"; import { AcceptSharedDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/AddIpRoutesCommand.ts b/clients/client-directory-service/src/commands/AddIpRoutesCommand.ts index 70cd8c94b9783..c9fa9a6ad3589 100644 --- a/clients/client-directory-service/src/commands/AddIpRoutesCommand.ts +++ b/clients/client-directory-service/src/commands/AddIpRoutesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddIpRoutesRequest, AddIpRoutesResult } from "../models/models_0"; +import type { AddIpRoutesRequest, AddIpRoutesResult } from "../models/models_0"; import { AddIpRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/AddRegionCommand.ts b/clients/client-directory-service/src/commands/AddRegionCommand.ts index 4573107ec0c92..09a3660070ccd 100644 --- a/clients/client-directory-service/src/commands/AddRegionCommand.ts +++ b/clients/client-directory-service/src/commands/AddRegionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddRegionRequest, AddRegionResult } from "../models/models_0"; +import type { AddRegionRequest, AddRegionResult } from "../models/models_0"; import { AddRegion } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/AddTagsToResourceCommand.ts b/clients/client-directory-service/src/commands/AddTagsToResourceCommand.ts index a7865fe9f3649..b73000abb4892 100644 --- a/clients/client-directory-service/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-directory-service/src/commands/AddTagsToResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToResourceRequest, AddTagsToResourceResult } from "../models/models_0"; +import type { AddTagsToResourceRequest, AddTagsToResourceResult } from "../models/models_0"; import { AddTagsToResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CancelSchemaExtensionCommand.ts b/clients/client-directory-service/src/commands/CancelSchemaExtensionCommand.ts index d82f27a753bc4..f704821551de1 100644 --- a/clients/client-directory-service/src/commands/CancelSchemaExtensionCommand.ts +++ b/clients/client-directory-service/src/commands/CancelSchemaExtensionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelSchemaExtensionRequest, CancelSchemaExtensionResult } from "../models/models_0"; +import type { CancelSchemaExtensionRequest, CancelSchemaExtensionResult } from "../models/models_0"; import { CancelSchemaExtension } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/ConnectDirectoryCommand.ts b/clients/client-directory-service/src/commands/ConnectDirectoryCommand.ts index 82ed232542ebe..e3d9e26c8f373 100644 --- a/clients/client-directory-service/src/commands/ConnectDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/ConnectDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConnectDirectoryRequest, ConnectDirectoryResult } from "../models/models_0"; +import type { ConnectDirectoryRequest, ConnectDirectoryResult } from "../models/models_0"; import { ConnectDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CreateAliasCommand.ts b/clients/client-directory-service/src/commands/CreateAliasCommand.ts index 21d7dc56a94f6..f489970a398c6 100644 --- a/clients/client-directory-service/src/commands/CreateAliasCommand.ts +++ b/clients/client-directory-service/src/commands/CreateAliasCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAliasRequest, CreateAliasResult } from "../models/models_0"; +import type { CreateAliasRequest, CreateAliasResult } from "../models/models_0"; import { CreateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CreateComputerCommand.ts b/clients/client-directory-service/src/commands/CreateComputerCommand.ts index bbfa511541962..9bf276bc31c52 100644 --- a/clients/client-directory-service/src/commands/CreateComputerCommand.ts +++ b/clients/client-directory-service/src/commands/CreateComputerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateComputerRequest, CreateComputerResult } from "../models/models_0"; +import type { CreateComputerRequest, CreateComputerResult } from "../models/models_0"; import { CreateComputer } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CreateConditionalForwarderCommand.ts b/clients/client-directory-service/src/commands/CreateConditionalForwarderCommand.ts index 77eb984d68fe6..930336d845244 100644 --- a/clients/client-directory-service/src/commands/CreateConditionalForwarderCommand.ts +++ b/clients/client-directory-service/src/commands/CreateConditionalForwarderCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConditionalForwarderRequest, CreateConditionalForwarderResult } from "../models/models_0"; +import type { CreateConditionalForwarderRequest, CreateConditionalForwarderResult } from "../models/models_0"; import { CreateConditionalForwarder } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CreateDirectoryCommand.ts b/clients/client-directory-service/src/commands/CreateDirectoryCommand.ts index eb4eebe23bef2..d9e9c6e8aeccf 100644 --- a/clients/client-directory-service/src/commands/CreateDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/CreateDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDirectoryRequest, CreateDirectoryResult } from "../models/models_0"; +import type { CreateDirectoryRequest, CreateDirectoryResult } from "../models/models_0"; import { CreateDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CreateHybridADCommand.ts b/clients/client-directory-service/src/commands/CreateHybridADCommand.ts index ba34d1c63e2f5..ec7635a4b7068 100644 --- a/clients/client-directory-service/src/commands/CreateHybridADCommand.ts +++ b/clients/client-directory-service/src/commands/CreateHybridADCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHybridADRequest, CreateHybridADResult } from "../models/models_0"; +import type { CreateHybridADRequest, CreateHybridADResult } from "../models/models_0"; import { CreateHybridAD } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CreateLogSubscriptionCommand.ts b/clients/client-directory-service/src/commands/CreateLogSubscriptionCommand.ts index d50268e192047..fe7b5684ec0e0 100644 --- a/clients/client-directory-service/src/commands/CreateLogSubscriptionCommand.ts +++ b/clients/client-directory-service/src/commands/CreateLogSubscriptionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLogSubscriptionRequest, CreateLogSubscriptionResult } from "../models/models_0"; +import type { CreateLogSubscriptionRequest, CreateLogSubscriptionResult } from "../models/models_0"; import { CreateLogSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CreateMicrosoftADCommand.ts b/clients/client-directory-service/src/commands/CreateMicrosoftADCommand.ts index 12eda5194774d..aab0043a148dd 100644 --- a/clients/client-directory-service/src/commands/CreateMicrosoftADCommand.ts +++ b/clients/client-directory-service/src/commands/CreateMicrosoftADCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMicrosoftADRequest, CreateMicrosoftADResult } from "../models/models_0"; +import type { CreateMicrosoftADRequest, CreateMicrosoftADResult } from "../models/models_0"; import { CreateMicrosoftAD } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CreateSnapshotCommand.ts b/clients/client-directory-service/src/commands/CreateSnapshotCommand.ts index 7d9fe49ac4ebc..af7ca6c3858e0 100644 --- a/clients/client-directory-service/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-directory-service/src/commands/CreateSnapshotCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotRequest, CreateSnapshotResult } from "../models/models_0"; +import type { CreateSnapshotRequest, CreateSnapshotResult } from "../models/models_0"; import { CreateSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/CreateTrustCommand.ts b/clients/client-directory-service/src/commands/CreateTrustCommand.ts index 34c3ead6392ae..173e882e7c1fa 100644 --- a/clients/client-directory-service/src/commands/CreateTrustCommand.ts +++ b/clients/client-directory-service/src/commands/CreateTrustCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrustRequest, CreateTrustResult } from "../models/models_0"; +import type { CreateTrustRequest, CreateTrustResult } from "../models/models_0"; import { CreateTrust } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DeleteADAssessmentCommand.ts b/clients/client-directory-service/src/commands/DeleteADAssessmentCommand.ts index 90ed8c7f685a8..502b3bd32bc84 100644 --- a/clients/client-directory-service/src/commands/DeleteADAssessmentCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteADAssessmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteADAssessmentRequest, DeleteADAssessmentResult } from "../models/models_0"; +import type { DeleteADAssessmentRequest, DeleteADAssessmentResult } from "../models/models_0"; import { DeleteADAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DeleteConditionalForwarderCommand.ts b/clients/client-directory-service/src/commands/DeleteConditionalForwarderCommand.ts index fe5254fb66fb4..544c498bed9ed 100644 --- a/clients/client-directory-service/src/commands/DeleteConditionalForwarderCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteConditionalForwarderCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConditionalForwarderRequest, DeleteConditionalForwarderResult } from "../models/models_0"; +import type { DeleteConditionalForwarderRequest, DeleteConditionalForwarderResult } from "../models/models_0"; import { DeleteConditionalForwarder } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DeleteDirectoryCommand.ts b/clients/client-directory-service/src/commands/DeleteDirectoryCommand.ts index 2331d9a4ad840..85b367e307e15 100644 --- a/clients/client-directory-service/src/commands/DeleteDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDirectoryRequest, DeleteDirectoryResult } from "../models/models_0"; +import type { DeleteDirectoryRequest, DeleteDirectoryResult } from "../models/models_0"; import { DeleteDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DeleteLogSubscriptionCommand.ts b/clients/client-directory-service/src/commands/DeleteLogSubscriptionCommand.ts index 258e412705dc7..db2099c38912f 100644 --- a/clients/client-directory-service/src/commands/DeleteLogSubscriptionCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteLogSubscriptionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLogSubscriptionRequest, DeleteLogSubscriptionResult } from "../models/models_0"; +import type { DeleteLogSubscriptionRequest, DeleteLogSubscriptionResult } from "../models/models_0"; import { DeleteLogSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DeleteSnapshotCommand.ts b/clients/client-directory-service/src/commands/DeleteSnapshotCommand.ts index c499c575581f6..318bc8071deb3 100644 --- a/clients/client-directory-service/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteSnapshotCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSnapshotRequest, DeleteSnapshotResult } from "../models/models_0"; +import type { DeleteSnapshotRequest, DeleteSnapshotResult } from "../models/models_0"; import { DeleteSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DeleteTrustCommand.ts b/clients/client-directory-service/src/commands/DeleteTrustCommand.ts index cb52acf4099e9..f9bf9e620891e 100644 --- a/clients/client-directory-service/src/commands/DeleteTrustCommand.ts +++ b/clients/client-directory-service/src/commands/DeleteTrustCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrustRequest, DeleteTrustResult } from "../models/models_0"; +import type { DeleteTrustRequest, DeleteTrustResult } from "../models/models_0"; import { DeleteTrust } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DeregisterCertificateCommand.ts b/clients/client-directory-service/src/commands/DeregisterCertificateCommand.ts index 71e6a26069918..7045bf1679bd4 100644 --- a/clients/client-directory-service/src/commands/DeregisterCertificateCommand.ts +++ b/clients/client-directory-service/src/commands/DeregisterCertificateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterCertificateRequest, DeregisterCertificateResult } from "../models/models_0"; +import type { DeregisterCertificateRequest, DeregisterCertificateResult } from "../models/models_0"; import { DeregisterCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DeregisterEventTopicCommand.ts b/clients/client-directory-service/src/commands/DeregisterEventTopicCommand.ts index a480cc40b71d8..7e8d2d79047dd 100644 --- a/clients/client-directory-service/src/commands/DeregisterEventTopicCommand.ts +++ b/clients/client-directory-service/src/commands/DeregisterEventTopicCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterEventTopicRequest, DeregisterEventTopicResult } from "../models/models_0"; +import type { DeregisterEventTopicRequest, DeregisterEventTopicResult } from "../models/models_0"; import { DeregisterEventTopic } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeADAssessmentCommand.ts b/clients/client-directory-service/src/commands/DescribeADAssessmentCommand.ts index 0f61ba1c8e1f8..441dca259307f 100644 --- a/clients/client-directory-service/src/commands/DescribeADAssessmentCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeADAssessmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeADAssessmentRequest, DescribeADAssessmentResult } from "../models/models_0"; +import type { DescribeADAssessmentRequest, DescribeADAssessmentResult } from "../models/models_0"; import { DescribeADAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeCAEnrollmentPolicyCommand.ts b/clients/client-directory-service/src/commands/DescribeCAEnrollmentPolicyCommand.ts index 4a05ebbb445a6..99dd823e7caba 100644 --- a/clients/client-directory-service/src/commands/DescribeCAEnrollmentPolicyCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeCAEnrollmentPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCAEnrollmentPolicyRequest, DescribeCAEnrollmentPolicyResult } from "../models/models_0"; +import type { DescribeCAEnrollmentPolicyRequest, DescribeCAEnrollmentPolicyResult } from "../models/models_0"; import { DescribeCAEnrollmentPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeCertificateCommand.ts b/clients/client-directory-service/src/commands/DescribeCertificateCommand.ts index 0d3ec2341affd..4ad946b0f004d 100644 --- a/clients/client-directory-service/src/commands/DescribeCertificateCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeCertificateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCertificateRequest, DescribeCertificateResult } from "../models/models_0"; +import type { DescribeCertificateRequest, DescribeCertificateResult } from "../models/models_0"; import { DescribeCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeClientAuthenticationSettingsCommand.ts b/clients/client-directory-service/src/commands/DescribeClientAuthenticationSettingsCommand.ts index 2b1bcd150e387..ddcaccbbf8576 100644 --- a/clients/client-directory-service/src/commands/DescribeClientAuthenticationSettingsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeClientAuthenticationSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeClientAuthenticationSettingsRequest, DescribeClientAuthenticationSettingsResult, } from "../models/models_0"; diff --git a/clients/client-directory-service/src/commands/DescribeConditionalForwardersCommand.ts b/clients/client-directory-service/src/commands/DescribeConditionalForwardersCommand.ts index 21145fb6ababb..e99bab1bfdbac 100644 --- a/clients/client-directory-service/src/commands/DescribeConditionalForwardersCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeConditionalForwardersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConditionalForwardersRequest, DescribeConditionalForwardersResult } from "../models/models_0"; +import type { DescribeConditionalForwardersRequest, DescribeConditionalForwardersResult } from "../models/models_0"; import { DescribeConditionalForwarders } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeDirectoriesCommand.ts b/clients/client-directory-service/src/commands/DescribeDirectoriesCommand.ts index 3814d8292bfd8..f844cec3d4827 100644 --- a/clients/client-directory-service/src/commands/DescribeDirectoriesCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeDirectoriesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDirectoriesRequest, DescribeDirectoriesResult } from "../models/models_0"; +import type { DescribeDirectoriesRequest, DescribeDirectoriesResult } from "../models/models_0"; import { DescribeDirectories } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeDirectoryDataAccessCommand.ts b/clients/client-directory-service/src/commands/DescribeDirectoryDataAccessCommand.ts index 9af04913a7339..b2d2a09191be7 100644 --- a/clients/client-directory-service/src/commands/DescribeDirectoryDataAccessCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeDirectoryDataAccessCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDirectoryDataAccessRequest, DescribeDirectoryDataAccessResult } from "../models/models_0"; +import type { DescribeDirectoryDataAccessRequest, DescribeDirectoryDataAccessResult } from "../models/models_0"; import { DescribeDirectoryDataAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeDomainControllersCommand.ts b/clients/client-directory-service/src/commands/DescribeDomainControllersCommand.ts index f161b6697786c..d31502e475cc9 100644 --- a/clients/client-directory-service/src/commands/DescribeDomainControllersCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeDomainControllersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainControllersRequest, DescribeDomainControllersResult } from "../models/models_0"; +import type { DescribeDomainControllersRequest, DescribeDomainControllersResult } from "../models/models_0"; import { DescribeDomainControllers } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeEventTopicsCommand.ts b/clients/client-directory-service/src/commands/DescribeEventTopicsCommand.ts index 11645f8f4e405..258ff4f76ecb3 100644 --- a/clients/client-directory-service/src/commands/DescribeEventTopicsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeEventTopicsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventTopicsRequest, DescribeEventTopicsResult } from "../models/models_0"; +import type { DescribeEventTopicsRequest, DescribeEventTopicsResult } from "../models/models_0"; import { DescribeEventTopics } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeHybridADUpdateCommand.ts b/clients/client-directory-service/src/commands/DescribeHybridADUpdateCommand.ts index e09aaee3dab56..3c1fa6e1922c6 100644 --- a/clients/client-directory-service/src/commands/DescribeHybridADUpdateCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeHybridADUpdateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHybridADUpdateRequest, DescribeHybridADUpdateResult } from "../models/models_0"; +import type { DescribeHybridADUpdateRequest, DescribeHybridADUpdateResult } from "../models/models_0"; import { DescribeHybridADUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeLDAPSSettingsCommand.ts b/clients/client-directory-service/src/commands/DescribeLDAPSSettingsCommand.ts index 3d828dd334eb4..6206c9b85542e 100644 --- a/clients/client-directory-service/src/commands/DescribeLDAPSSettingsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeLDAPSSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLDAPSSettingsRequest, DescribeLDAPSSettingsResult } from "../models/models_0"; +import type { DescribeLDAPSSettingsRequest, DescribeLDAPSSettingsResult } from "../models/models_0"; import { DescribeLDAPSSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeRegionsCommand.ts b/clients/client-directory-service/src/commands/DescribeRegionsCommand.ts index f1ee015b78487..a7abbfaa903d5 100644 --- a/clients/client-directory-service/src/commands/DescribeRegionsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeRegionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegionsRequest, DescribeRegionsResult } from "../models/models_0"; +import type { DescribeRegionsRequest, DescribeRegionsResult } from "../models/models_0"; import { DescribeRegions } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeSettingsCommand.ts b/clients/client-directory-service/src/commands/DescribeSettingsCommand.ts index 76a36ccdafec1..24dc8bedf1c74 100644 --- a/clients/client-directory-service/src/commands/DescribeSettingsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSettingsRequest, DescribeSettingsResult } from "../models/models_0"; +import type { DescribeSettingsRequest, DescribeSettingsResult } from "../models/models_0"; import { DescribeSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeSharedDirectoriesCommand.ts b/clients/client-directory-service/src/commands/DescribeSharedDirectoriesCommand.ts index 2423df6a8d352..1360caafd7b41 100644 --- a/clients/client-directory-service/src/commands/DescribeSharedDirectoriesCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeSharedDirectoriesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSharedDirectoriesRequest, DescribeSharedDirectoriesResult } from "../models/models_0"; +import type { DescribeSharedDirectoriesRequest, DescribeSharedDirectoriesResult } from "../models/models_0"; import { DescribeSharedDirectories } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeSnapshotsCommand.ts b/clients/client-directory-service/src/commands/DescribeSnapshotsCommand.ts index 9bc0162c12ab7..008ab547f9090 100644 --- a/clients/client-directory-service/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeSnapshotsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSnapshotsRequest, DescribeSnapshotsResult } from "../models/models_0"; +import type { DescribeSnapshotsRequest, DescribeSnapshotsResult } from "../models/models_0"; import { DescribeSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeTrustsCommand.ts b/clients/client-directory-service/src/commands/DescribeTrustsCommand.ts index f2b2c8a1fd92a..21b0ecb8dd75c 100644 --- a/clients/client-directory-service/src/commands/DescribeTrustsCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeTrustsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrustsRequest, DescribeTrustsResult } from "../models/models_0"; +import type { DescribeTrustsRequest, DescribeTrustsResult } from "../models/models_0"; import { DescribeTrusts } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DescribeUpdateDirectoryCommand.ts b/clients/client-directory-service/src/commands/DescribeUpdateDirectoryCommand.ts index d51c72d1d93f9..2d9a282e0f9e0 100644 --- a/clients/client-directory-service/src/commands/DescribeUpdateDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/DescribeUpdateDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUpdateDirectoryRequest, DescribeUpdateDirectoryResult } from "../models/models_0"; +import type { DescribeUpdateDirectoryRequest, DescribeUpdateDirectoryResult } from "../models/models_0"; import { DescribeUpdateDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DisableCAEnrollmentPolicyCommand.ts b/clients/client-directory-service/src/commands/DisableCAEnrollmentPolicyCommand.ts index 5b75494d9557f..895457a5b636e 100644 --- a/clients/client-directory-service/src/commands/DisableCAEnrollmentPolicyCommand.ts +++ b/clients/client-directory-service/src/commands/DisableCAEnrollmentPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableCAEnrollmentPolicyRequest, DisableCAEnrollmentPolicyResult } from "../models/models_0"; +import type { DisableCAEnrollmentPolicyRequest, DisableCAEnrollmentPolicyResult } from "../models/models_0"; import { DisableCAEnrollmentPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DisableClientAuthenticationCommand.ts b/clients/client-directory-service/src/commands/DisableClientAuthenticationCommand.ts index 737d2f9527818..d6d0f714c5951 100644 --- a/clients/client-directory-service/src/commands/DisableClientAuthenticationCommand.ts +++ b/clients/client-directory-service/src/commands/DisableClientAuthenticationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableClientAuthenticationRequest, DisableClientAuthenticationResult } from "../models/models_0"; +import type { DisableClientAuthenticationRequest, DisableClientAuthenticationResult } from "../models/models_0"; import { DisableClientAuthentication } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DisableDirectoryDataAccessCommand.ts b/clients/client-directory-service/src/commands/DisableDirectoryDataAccessCommand.ts index 4146a6c78b996..9bd353f2565e4 100644 --- a/clients/client-directory-service/src/commands/DisableDirectoryDataAccessCommand.ts +++ b/clients/client-directory-service/src/commands/DisableDirectoryDataAccessCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableDirectoryDataAccessRequest, DisableDirectoryDataAccessResult } from "../models/models_0"; +import type { DisableDirectoryDataAccessRequest, DisableDirectoryDataAccessResult } from "../models/models_0"; import { DisableDirectoryDataAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DisableLDAPSCommand.ts b/clients/client-directory-service/src/commands/DisableLDAPSCommand.ts index ce5e913466576..9f6886e14043f 100644 --- a/clients/client-directory-service/src/commands/DisableLDAPSCommand.ts +++ b/clients/client-directory-service/src/commands/DisableLDAPSCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableLDAPSRequest, DisableLDAPSResult } from "../models/models_0"; +import type { DisableLDAPSRequest, DisableLDAPSResult } from "../models/models_0"; import { DisableLDAPS } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DisableRadiusCommand.ts b/clients/client-directory-service/src/commands/DisableRadiusCommand.ts index 2df99e84dea09..aea01e96cecc1 100644 --- a/clients/client-directory-service/src/commands/DisableRadiusCommand.ts +++ b/clients/client-directory-service/src/commands/DisableRadiusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableRadiusRequest, DisableRadiusResult } from "../models/models_0"; +import type { DisableRadiusRequest, DisableRadiusResult } from "../models/models_0"; import { DisableRadius } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/DisableSsoCommand.ts b/clients/client-directory-service/src/commands/DisableSsoCommand.ts index d1f76760e950a..d59063b346111 100644 --- a/clients/client-directory-service/src/commands/DisableSsoCommand.ts +++ b/clients/client-directory-service/src/commands/DisableSsoCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableSsoRequest, DisableSsoResult } from "../models/models_0"; +import type { DisableSsoRequest, DisableSsoResult } from "../models/models_0"; import { DisableSso } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/EnableCAEnrollmentPolicyCommand.ts b/clients/client-directory-service/src/commands/EnableCAEnrollmentPolicyCommand.ts index c8b8e24756d26..ce54c4a7e46b8 100644 --- a/clients/client-directory-service/src/commands/EnableCAEnrollmentPolicyCommand.ts +++ b/clients/client-directory-service/src/commands/EnableCAEnrollmentPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableCAEnrollmentPolicyRequest, EnableCAEnrollmentPolicyResult } from "../models/models_0"; +import type { EnableCAEnrollmentPolicyRequest, EnableCAEnrollmentPolicyResult } from "../models/models_0"; import { EnableCAEnrollmentPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/EnableClientAuthenticationCommand.ts b/clients/client-directory-service/src/commands/EnableClientAuthenticationCommand.ts index 4f9c4bfa2cb60..85dd143720972 100644 --- a/clients/client-directory-service/src/commands/EnableClientAuthenticationCommand.ts +++ b/clients/client-directory-service/src/commands/EnableClientAuthenticationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableClientAuthenticationRequest, EnableClientAuthenticationResult } from "../models/models_0"; +import type { EnableClientAuthenticationRequest, EnableClientAuthenticationResult } from "../models/models_0"; import { EnableClientAuthentication } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/EnableDirectoryDataAccessCommand.ts b/clients/client-directory-service/src/commands/EnableDirectoryDataAccessCommand.ts index 1bf37e7e97b16..c201c375f36c9 100644 --- a/clients/client-directory-service/src/commands/EnableDirectoryDataAccessCommand.ts +++ b/clients/client-directory-service/src/commands/EnableDirectoryDataAccessCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableDirectoryDataAccessRequest, EnableDirectoryDataAccessResult } from "../models/models_0"; +import type { EnableDirectoryDataAccessRequest, EnableDirectoryDataAccessResult } from "../models/models_0"; import { EnableDirectoryDataAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/EnableLDAPSCommand.ts b/clients/client-directory-service/src/commands/EnableLDAPSCommand.ts index 148137d1583e7..03f2d5b264502 100644 --- a/clients/client-directory-service/src/commands/EnableLDAPSCommand.ts +++ b/clients/client-directory-service/src/commands/EnableLDAPSCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableLDAPSRequest, EnableLDAPSResult } from "../models/models_0"; +import type { EnableLDAPSRequest, EnableLDAPSResult } from "../models/models_0"; import { EnableLDAPS } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/EnableRadiusCommand.ts b/clients/client-directory-service/src/commands/EnableRadiusCommand.ts index fc49d8c3cbffb..fa3832b3a99ae 100644 --- a/clients/client-directory-service/src/commands/EnableRadiusCommand.ts +++ b/clients/client-directory-service/src/commands/EnableRadiusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableRadiusRequest, EnableRadiusResult } from "../models/models_0"; +import type { EnableRadiusRequest, EnableRadiusResult } from "../models/models_0"; import { EnableRadius } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/EnableSsoCommand.ts b/clients/client-directory-service/src/commands/EnableSsoCommand.ts index 8ae323c9ab389..94ff603cb160d 100644 --- a/clients/client-directory-service/src/commands/EnableSsoCommand.ts +++ b/clients/client-directory-service/src/commands/EnableSsoCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableSsoRequest, EnableSsoResult } from "../models/models_0"; +import type { EnableSsoRequest, EnableSsoResult } from "../models/models_0"; import { EnableSso } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/GetDirectoryLimitsCommand.ts b/clients/client-directory-service/src/commands/GetDirectoryLimitsCommand.ts index ccdda6ee035d7..e95e347de281c 100644 --- a/clients/client-directory-service/src/commands/GetDirectoryLimitsCommand.ts +++ b/clients/client-directory-service/src/commands/GetDirectoryLimitsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDirectoryLimitsRequest, GetDirectoryLimitsResult } from "../models/models_0"; +import type { GetDirectoryLimitsRequest, GetDirectoryLimitsResult } from "../models/models_0"; import { GetDirectoryLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/GetSnapshotLimitsCommand.ts b/clients/client-directory-service/src/commands/GetSnapshotLimitsCommand.ts index 93405576931bc..52a224ebaedf8 100644 --- a/clients/client-directory-service/src/commands/GetSnapshotLimitsCommand.ts +++ b/clients/client-directory-service/src/commands/GetSnapshotLimitsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSnapshotLimitsRequest, GetSnapshotLimitsResult } from "../models/models_0"; +import type { GetSnapshotLimitsRequest, GetSnapshotLimitsResult } from "../models/models_0"; import { GetSnapshotLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/ListADAssessmentsCommand.ts b/clients/client-directory-service/src/commands/ListADAssessmentsCommand.ts index e9abc97297d44..f043147e513f7 100644 --- a/clients/client-directory-service/src/commands/ListADAssessmentsCommand.ts +++ b/clients/client-directory-service/src/commands/ListADAssessmentsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListADAssessmentsRequest, ListADAssessmentsResult } from "../models/models_0"; +import type { ListADAssessmentsRequest, ListADAssessmentsResult } from "../models/models_0"; import { ListADAssessments } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/ListCertificatesCommand.ts b/clients/client-directory-service/src/commands/ListCertificatesCommand.ts index c446433fec682..1bf89be16fc71 100644 --- a/clients/client-directory-service/src/commands/ListCertificatesCommand.ts +++ b/clients/client-directory-service/src/commands/ListCertificatesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCertificatesRequest, ListCertificatesResult } from "../models/models_0"; +import type { ListCertificatesRequest, ListCertificatesResult } from "../models/models_0"; import { ListCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/ListIpRoutesCommand.ts b/clients/client-directory-service/src/commands/ListIpRoutesCommand.ts index 2969640b2ba74..e2efbe7db1d0a 100644 --- a/clients/client-directory-service/src/commands/ListIpRoutesCommand.ts +++ b/clients/client-directory-service/src/commands/ListIpRoutesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIpRoutesRequest, ListIpRoutesResult } from "../models/models_0"; +import type { ListIpRoutesRequest, ListIpRoutesResult } from "../models/models_0"; import { ListIpRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/ListLogSubscriptionsCommand.ts b/clients/client-directory-service/src/commands/ListLogSubscriptionsCommand.ts index bb9c7ee71522a..d69f53946313b 100644 --- a/clients/client-directory-service/src/commands/ListLogSubscriptionsCommand.ts +++ b/clients/client-directory-service/src/commands/ListLogSubscriptionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLogSubscriptionsRequest, ListLogSubscriptionsResult } from "../models/models_0"; +import type { ListLogSubscriptionsRequest, ListLogSubscriptionsResult } from "../models/models_0"; import { ListLogSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/ListSchemaExtensionsCommand.ts b/clients/client-directory-service/src/commands/ListSchemaExtensionsCommand.ts index e5e55607f6806..5f3addbd8bf83 100644 --- a/clients/client-directory-service/src/commands/ListSchemaExtensionsCommand.ts +++ b/clients/client-directory-service/src/commands/ListSchemaExtensionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSchemaExtensionsRequest, ListSchemaExtensionsResult } from "../models/models_0"; +import type { ListSchemaExtensionsRequest, ListSchemaExtensionsResult } from "../models/models_0"; import { ListSchemaExtensions } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-directory-service/src/commands/ListTagsForResourceCommand.ts index ab8759fe95010..9b14d0fc9c068 100644 --- a/clients/client-directory-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-directory-service/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/RegisterCertificateCommand.ts b/clients/client-directory-service/src/commands/RegisterCertificateCommand.ts index 77ecb2d749fa2..8da02b76fe870 100644 --- a/clients/client-directory-service/src/commands/RegisterCertificateCommand.ts +++ b/clients/client-directory-service/src/commands/RegisterCertificateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterCertificateRequest, RegisterCertificateResult } from "../models/models_0"; +import type { RegisterCertificateRequest, RegisterCertificateResult } from "../models/models_0"; import { RegisterCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/RegisterEventTopicCommand.ts b/clients/client-directory-service/src/commands/RegisterEventTopicCommand.ts index 39da08c0a10fe..98da61870c18e 100644 --- a/clients/client-directory-service/src/commands/RegisterEventTopicCommand.ts +++ b/clients/client-directory-service/src/commands/RegisterEventTopicCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterEventTopicRequest, RegisterEventTopicResult } from "../models/models_0"; +import type { RegisterEventTopicRequest, RegisterEventTopicResult } from "../models/models_0"; import { RegisterEventTopic } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/RejectSharedDirectoryCommand.ts b/clients/client-directory-service/src/commands/RejectSharedDirectoryCommand.ts index 5594c5ce94b26..eb692d7784d64 100644 --- a/clients/client-directory-service/src/commands/RejectSharedDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/RejectSharedDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectSharedDirectoryRequest, RejectSharedDirectoryResult } from "../models/models_0"; +import type { RejectSharedDirectoryRequest, RejectSharedDirectoryResult } from "../models/models_0"; import { RejectSharedDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/RemoveIpRoutesCommand.ts b/clients/client-directory-service/src/commands/RemoveIpRoutesCommand.ts index 1545b2afbf6c9..3c90ba09808a2 100644 --- a/clients/client-directory-service/src/commands/RemoveIpRoutesCommand.ts +++ b/clients/client-directory-service/src/commands/RemoveIpRoutesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveIpRoutesRequest, RemoveIpRoutesResult } from "../models/models_0"; +import type { RemoveIpRoutesRequest, RemoveIpRoutesResult } from "../models/models_0"; import { RemoveIpRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/RemoveRegionCommand.ts b/clients/client-directory-service/src/commands/RemoveRegionCommand.ts index 3a8ec04f0aa45..67d040bf54951 100644 --- a/clients/client-directory-service/src/commands/RemoveRegionCommand.ts +++ b/clients/client-directory-service/src/commands/RemoveRegionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveRegionRequest, RemoveRegionResult } from "../models/models_0"; +import type { RemoveRegionRequest, RemoveRegionResult } from "../models/models_0"; import { RemoveRegion } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-directory-service/src/commands/RemoveTagsFromResourceCommand.ts index 79d3ae5c0ff51..ee6bf47e71409 100644 --- a/clients/client-directory-service/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-directory-service/src/commands/RemoveTagsFromResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromResourceRequest, RemoveTagsFromResourceResult } from "../models/models_0"; +import type { RemoveTagsFromResourceRequest, RemoveTagsFromResourceResult } from "../models/models_0"; import { RemoveTagsFromResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/ResetUserPasswordCommand.ts b/clients/client-directory-service/src/commands/ResetUserPasswordCommand.ts index 959830c7c419f..e469856b1da68 100644 --- a/clients/client-directory-service/src/commands/ResetUserPasswordCommand.ts +++ b/clients/client-directory-service/src/commands/ResetUserPasswordCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetUserPasswordRequest, ResetUserPasswordResult } from "../models/models_0"; +import type { ResetUserPasswordRequest, ResetUserPasswordResult } from "../models/models_0"; import { ResetUserPassword } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/RestoreFromSnapshotCommand.ts b/clients/client-directory-service/src/commands/RestoreFromSnapshotCommand.ts index 492bf46c9af93..c1de08fc29734 100644 --- a/clients/client-directory-service/src/commands/RestoreFromSnapshotCommand.ts +++ b/clients/client-directory-service/src/commands/RestoreFromSnapshotCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreFromSnapshotRequest, RestoreFromSnapshotResult } from "../models/models_0"; +import type { RestoreFromSnapshotRequest, RestoreFromSnapshotResult } from "../models/models_0"; import { RestoreFromSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/ShareDirectoryCommand.ts b/clients/client-directory-service/src/commands/ShareDirectoryCommand.ts index 884fdc6a95840..afd329a278c96 100644 --- a/clients/client-directory-service/src/commands/ShareDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/ShareDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ShareDirectoryRequest, ShareDirectoryResult } from "../models/models_0"; +import type { ShareDirectoryRequest, ShareDirectoryResult } from "../models/models_0"; import { ShareDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/StartADAssessmentCommand.ts b/clients/client-directory-service/src/commands/StartADAssessmentCommand.ts index 628f0f2fefeb0..ff3a6880da3d1 100644 --- a/clients/client-directory-service/src/commands/StartADAssessmentCommand.ts +++ b/clients/client-directory-service/src/commands/StartADAssessmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartADAssessmentRequest, StartADAssessmentResult } from "../models/models_0"; +import type { StartADAssessmentRequest, StartADAssessmentResult } from "../models/models_0"; import { StartADAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/StartSchemaExtensionCommand.ts b/clients/client-directory-service/src/commands/StartSchemaExtensionCommand.ts index e1f6a08a0944c..e1732b48a4ffd 100644 --- a/clients/client-directory-service/src/commands/StartSchemaExtensionCommand.ts +++ b/clients/client-directory-service/src/commands/StartSchemaExtensionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSchemaExtensionRequest, StartSchemaExtensionResult } from "../models/models_0"; +import type { StartSchemaExtensionRequest, StartSchemaExtensionResult } from "../models/models_0"; import { StartSchemaExtension } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/UnshareDirectoryCommand.ts b/clients/client-directory-service/src/commands/UnshareDirectoryCommand.ts index 4421393b29337..f8ab13c04f8c9 100644 --- a/clients/client-directory-service/src/commands/UnshareDirectoryCommand.ts +++ b/clients/client-directory-service/src/commands/UnshareDirectoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnshareDirectoryRequest, UnshareDirectoryResult } from "../models/models_0"; +import type { UnshareDirectoryRequest, UnshareDirectoryResult } from "../models/models_0"; import { UnshareDirectory } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/UpdateConditionalForwarderCommand.ts b/clients/client-directory-service/src/commands/UpdateConditionalForwarderCommand.ts index 778acfb2dba67..6c7cff1f07f7a 100644 --- a/clients/client-directory-service/src/commands/UpdateConditionalForwarderCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateConditionalForwarderCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConditionalForwarderRequest, UpdateConditionalForwarderResult } from "../models/models_0"; +import type { UpdateConditionalForwarderRequest, UpdateConditionalForwarderResult } from "../models/models_0"; import { UpdateConditionalForwarder } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/UpdateDirectorySetupCommand.ts b/clients/client-directory-service/src/commands/UpdateDirectorySetupCommand.ts index a727471f0aac5..d416c383b48c3 100644 --- a/clients/client-directory-service/src/commands/UpdateDirectorySetupCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateDirectorySetupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDirectorySetupRequest, UpdateDirectorySetupResult } from "../models/models_0"; +import type { UpdateDirectorySetupRequest, UpdateDirectorySetupResult } from "../models/models_0"; import { UpdateDirectorySetup } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/UpdateHybridADCommand.ts b/clients/client-directory-service/src/commands/UpdateHybridADCommand.ts index 15dcadad7d9ed..edb7a27be04f8 100644 --- a/clients/client-directory-service/src/commands/UpdateHybridADCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateHybridADCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHybridADRequest, UpdateHybridADResult } from "../models/models_0"; +import type { UpdateHybridADRequest, UpdateHybridADResult } from "../models/models_0"; import { UpdateHybridAD } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/UpdateNumberOfDomainControllersCommand.ts b/clients/client-directory-service/src/commands/UpdateNumberOfDomainControllersCommand.ts index f16fd97bc7148..6ecc28fd9403e 100644 --- a/clients/client-directory-service/src/commands/UpdateNumberOfDomainControllersCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateNumberOfDomainControllersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNumberOfDomainControllersRequest, UpdateNumberOfDomainControllersResult } from "../models/models_0"; +import type { UpdateNumberOfDomainControllersRequest, UpdateNumberOfDomainControllersResult } from "../models/models_0"; import { UpdateNumberOfDomainControllers } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/UpdateRadiusCommand.ts b/clients/client-directory-service/src/commands/UpdateRadiusCommand.ts index 2e791c65bd7bb..d2a41e78fc826 100644 --- a/clients/client-directory-service/src/commands/UpdateRadiusCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateRadiusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRadiusRequest, UpdateRadiusResult } from "../models/models_0"; +import type { UpdateRadiusRequest, UpdateRadiusResult } from "../models/models_0"; import { UpdateRadius } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/UpdateSettingsCommand.ts b/clients/client-directory-service/src/commands/UpdateSettingsCommand.ts index 9d35dbddc4c1a..7b7028bf3c29f 100644 --- a/clients/client-directory-service/src/commands/UpdateSettingsCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSettingsRequest, UpdateSettingsResult } from "../models/models_0"; +import type { UpdateSettingsRequest, UpdateSettingsResult } from "../models/models_0"; import { UpdateSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/UpdateTrustCommand.ts b/clients/client-directory-service/src/commands/UpdateTrustCommand.ts index 23390417bb85b..ba1196963b5fe 100644 --- a/clients/client-directory-service/src/commands/UpdateTrustCommand.ts +++ b/clients/client-directory-service/src/commands/UpdateTrustCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrustRequest, UpdateTrustResult } from "../models/models_0"; +import type { UpdateTrustRequest, UpdateTrustResult } from "../models/models_0"; import { UpdateTrust } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/commands/VerifyTrustCommand.ts b/clients/client-directory-service/src/commands/VerifyTrustCommand.ts index 624de9b3d78eb..78707f7f6a72f 100644 --- a/clients/client-directory-service/src/commands/VerifyTrustCommand.ts +++ b/clients/client-directory-service/src/commands/VerifyTrustCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient"; +import type { + DirectoryServiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DirectoryServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyTrustRequest, VerifyTrustResult } from "../models/models_0"; +import type { VerifyTrustRequest, VerifyTrustResult } from "../models/models_0"; import { VerifyTrust } from "../schemas/schemas_0"; /** diff --git a/clients/client-directory-service/src/endpoint/EndpointParameters.ts b/clients/client-directory-service/src/endpoint/EndpointParameters.ts index 721073a6797eb..4eea91b1aed09 100644 --- a/clients/client-directory-service/src/endpoint/EndpointParameters.ts +++ b/clients/client-directory-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-directory-service/src/endpoint/endpointResolver.ts b/clients/client-directory-service/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-directory-service/src/endpoint/endpointResolver.ts +++ b/clients/client-directory-service/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-directory-service/src/extensionConfiguration.ts b/clients/client-directory-service/src/extensionConfiguration.ts index b1e3e5962e2a4..3bbb7ed37246a 100644 --- a/clients/client-directory-service/src/extensionConfiguration.ts +++ b/clients/client-directory-service/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-directory-service/src/models/DirectoryServiceServiceException.ts b/clients/client-directory-service/src/models/DirectoryServiceServiceException.ts index 43f5f828b29f7..d4af5c45e8509 100644 --- a/clients/client-directory-service/src/models/DirectoryServiceServiceException.ts +++ b/clients/client-directory-service/src/models/DirectoryServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-directory-service/src/models/errors.ts b/clients/client-directory-service/src/models/errors.ts index 2e1739d4f7344..5ae5c83cee043 100644 --- a/clients/client-directory-service/src/models/errors.ts +++ b/clients/client-directory-service/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DirectoryServiceServiceException as __BaseException } from "./DirectoryServiceServiceException"; diff --git a/clients/client-directory-service/src/pagination/DescribeClientAuthenticationSettingsPaginator.ts b/clients/client-directory-service/src/pagination/DescribeClientAuthenticationSettingsPaginator.ts index 5b4343daa7f80..fd787987297c9 100644 --- a/clients/client-directory-service/src/pagination/DescribeClientAuthenticationSettingsPaginator.ts +++ b/clients/client-directory-service/src/pagination/DescribeClientAuthenticationSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClientAuthenticationSettingsCommand, diff --git a/clients/client-directory-service/src/pagination/DescribeDirectoriesPaginator.ts b/clients/client-directory-service/src/pagination/DescribeDirectoriesPaginator.ts index 2ef14975c15fa..aded64db2ac7d 100644 --- a/clients/client-directory-service/src/pagination/DescribeDirectoriesPaginator.ts +++ b/clients/client-directory-service/src/pagination/DescribeDirectoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDirectoriesCommand, diff --git a/clients/client-directory-service/src/pagination/DescribeDomainControllersPaginator.ts b/clients/client-directory-service/src/pagination/DescribeDomainControllersPaginator.ts index 870c4d3bafd52..1e16e94f2f45b 100644 --- a/clients/client-directory-service/src/pagination/DescribeDomainControllersPaginator.ts +++ b/clients/client-directory-service/src/pagination/DescribeDomainControllersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDomainControllersCommand, diff --git a/clients/client-directory-service/src/pagination/DescribeLDAPSSettingsPaginator.ts b/clients/client-directory-service/src/pagination/DescribeLDAPSSettingsPaginator.ts index fb8c6143daeac..9459cb77ba47b 100644 --- a/clients/client-directory-service/src/pagination/DescribeLDAPSSettingsPaginator.ts +++ b/clients/client-directory-service/src/pagination/DescribeLDAPSSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLDAPSSettingsCommand, diff --git a/clients/client-directory-service/src/pagination/DescribeRegionsPaginator.ts b/clients/client-directory-service/src/pagination/DescribeRegionsPaginator.ts index 4198d3e030d53..8feb0540bb1e3 100644 --- a/clients/client-directory-service/src/pagination/DescribeRegionsPaginator.ts +++ b/clients/client-directory-service/src/pagination/DescribeRegionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRegionsCommand, diff --git a/clients/client-directory-service/src/pagination/DescribeSharedDirectoriesPaginator.ts b/clients/client-directory-service/src/pagination/DescribeSharedDirectoriesPaginator.ts index aa870d892109f..90b95b8ad7a9f 100644 --- a/clients/client-directory-service/src/pagination/DescribeSharedDirectoriesPaginator.ts +++ b/clients/client-directory-service/src/pagination/DescribeSharedDirectoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSharedDirectoriesCommand, diff --git a/clients/client-directory-service/src/pagination/DescribeSnapshotsPaginator.ts b/clients/client-directory-service/src/pagination/DescribeSnapshotsPaginator.ts index 87347858394b5..1a9de2a8136ca 100644 --- a/clients/client-directory-service/src/pagination/DescribeSnapshotsPaginator.ts +++ b/clients/client-directory-service/src/pagination/DescribeSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSnapshotsCommand, diff --git a/clients/client-directory-service/src/pagination/DescribeTrustsPaginator.ts b/clients/client-directory-service/src/pagination/DescribeTrustsPaginator.ts index e7c0a34397e42..c1224574962f5 100644 --- a/clients/client-directory-service/src/pagination/DescribeTrustsPaginator.ts +++ b/clients/client-directory-service/src/pagination/DescribeTrustsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTrustsCommand, diff --git a/clients/client-directory-service/src/pagination/DescribeUpdateDirectoryPaginator.ts b/clients/client-directory-service/src/pagination/DescribeUpdateDirectoryPaginator.ts index eea32b9a53b24..6f7baad9ae846 100644 --- a/clients/client-directory-service/src/pagination/DescribeUpdateDirectoryPaginator.ts +++ b/clients/client-directory-service/src/pagination/DescribeUpdateDirectoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeUpdateDirectoryCommand, diff --git a/clients/client-directory-service/src/pagination/Interfaces.ts b/clients/client-directory-service/src/pagination/Interfaces.ts index a1d071f5ef279..b2fda41f54bcd 100644 --- a/clients/client-directory-service/src/pagination/Interfaces.ts +++ b/clients/client-directory-service/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DirectoryServiceClient } from "../DirectoryServiceClient"; diff --git a/clients/client-directory-service/src/pagination/ListADAssessmentsPaginator.ts b/clients/client-directory-service/src/pagination/ListADAssessmentsPaginator.ts index 6a6ac6052f4b6..e066687404b44 100644 --- a/clients/client-directory-service/src/pagination/ListADAssessmentsPaginator.ts +++ b/clients/client-directory-service/src/pagination/ListADAssessmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListADAssessmentsCommand, diff --git a/clients/client-directory-service/src/pagination/ListCertificatesPaginator.ts b/clients/client-directory-service/src/pagination/ListCertificatesPaginator.ts index 55d7a6c285e94..26ef94b4c86d3 100644 --- a/clients/client-directory-service/src/pagination/ListCertificatesPaginator.ts +++ b/clients/client-directory-service/src/pagination/ListCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCertificatesCommand, diff --git a/clients/client-directory-service/src/pagination/ListIpRoutesPaginator.ts b/clients/client-directory-service/src/pagination/ListIpRoutesPaginator.ts index b6bdd6404a837..ad11f92739884 100644 --- a/clients/client-directory-service/src/pagination/ListIpRoutesPaginator.ts +++ b/clients/client-directory-service/src/pagination/ListIpRoutesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIpRoutesCommand, diff --git a/clients/client-directory-service/src/pagination/ListLogSubscriptionsPaginator.ts b/clients/client-directory-service/src/pagination/ListLogSubscriptionsPaginator.ts index 7c7b492cd8f30..2555de0fa9c6b 100644 --- a/clients/client-directory-service/src/pagination/ListLogSubscriptionsPaginator.ts +++ b/clients/client-directory-service/src/pagination/ListLogSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLogSubscriptionsCommand, diff --git a/clients/client-directory-service/src/pagination/ListSchemaExtensionsPaginator.ts b/clients/client-directory-service/src/pagination/ListSchemaExtensionsPaginator.ts index ef739fa5265a7..5e9f79eb8c8de 100644 --- a/clients/client-directory-service/src/pagination/ListSchemaExtensionsPaginator.ts +++ b/clients/client-directory-service/src/pagination/ListSchemaExtensionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchemaExtensionsCommand, diff --git a/clients/client-directory-service/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-directory-service/src/pagination/ListTagsForResourcePaginator.ts index 05ca2ebd2ff69..0abb8ac7c1261 100644 --- a/clients/client-directory-service/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-directory-service/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-directory-service/src/runtimeConfig.browser.ts b/clients/client-directory-service/src/runtimeConfig.browser.ts index 2e36e03d164fc..aaf3c9b79d043 100644 --- a/clients/client-directory-service/src/runtimeConfig.browser.ts +++ b/clients/client-directory-service/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DirectoryServiceClientConfig } from "./DirectoryServiceClient"; + +import type { DirectoryServiceClientConfig } from "./DirectoryServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-directory-service/src/runtimeConfig.native.ts b/clients/client-directory-service/src/runtimeConfig.native.ts index 4eb9a8baac324..fbce0b362437b 100644 --- a/clients/client-directory-service/src/runtimeConfig.native.ts +++ b/clients/client-directory-service/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DirectoryServiceClientConfig } from "./DirectoryServiceClient"; +import type { DirectoryServiceClientConfig } from "./DirectoryServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-directory-service/src/runtimeConfig.shared.ts b/clients/client-directory-service/src/runtimeConfig.shared.ts index a9074935e61ee..22bad6374b308 100644 --- a/clients/client-directory-service/src/runtimeConfig.shared.ts +++ b/clients/client-directory-service/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDirectoryServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DirectoryServiceClientConfig } from "./DirectoryServiceClient"; +import type { DirectoryServiceClientConfig } from "./DirectoryServiceClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-directory-service/src/runtimeConfig.ts b/clients/client-directory-service/src/runtimeConfig.ts index 3a819ecd8cc96..8e675344cef2e 100644 --- a/clients/client-directory-service/src/runtimeConfig.ts +++ b/clients/client-directory-service/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DirectoryServiceClientConfig } from "./DirectoryServiceClient"; + +import type { DirectoryServiceClientConfig } from "./DirectoryServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-directory-service/src/runtimeExtensions.ts b/clients/client-directory-service/src/runtimeExtensions.ts index 23d00d291b4e8..4a7287af7a4bc 100644 --- a/clients/client-directory-service/src/runtimeExtensions.ts +++ b/clients/client-directory-service/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DirectoryServiceExtensionConfiguration } from "./extensionConfiguration"; +import type { DirectoryServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-directory-service/src/schemas/schemas_0.ts b/clients/client-directory-service/src/schemas/schemas_0.ts index 795f3aee9fafa..d282617667663 100644 --- a/clients/client-directory-service/src/schemas/schemas_0.ts +++ b/clients/client-directory-service/src/schemas/schemas_0.ts @@ -546,7 +546,7 @@ const n0 = "com.amazonaws.directoryservice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-dlm/package.json b/clients/client-dlm/package.json index a5540a5839d4b..d871d5c8c342f 100644 --- a/clients/client-dlm/package.json +++ b/clients/client-dlm/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-dlm/src/DLM.ts b/clients/client-dlm/src/DLM.ts index 4980a92d650ce..50bc17f500bcc 100644 --- a/clients/client-dlm/src/DLM.ts +++ b/clients/client-dlm/src/DLM.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateLifecyclePolicyCommand, @@ -38,7 +38,7 @@ import { UpdateLifecyclePolicyCommandInput, UpdateLifecyclePolicyCommandOutput, } from "./commands/UpdateLifecyclePolicyCommand"; -import { DLMClient, DLMClientConfig } from "./DLMClient"; +import { DLMClient } from "./DLMClient"; const commands = { CreateLifecyclePolicyCommand, diff --git a/clients/client-dlm/src/DLMClient.ts b/clients/client-dlm/src/DLMClient.ts index 95219ce50a3f4..40e7899cfee8a 100644 --- a/clients/client-dlm/src/DLMClient.ts +++ b/clients/client-dlm/src/DLMClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDLMHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -87,7 +96,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-dlm/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-dlm/src/auth/httpAuthExtensionConfiguration.ts index 894c76854b53a..e9cfde1eccbae 100644 --- a/clients/client-dlm/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-dlm/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DLMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DLMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-dlm/src/auth/httpAuthSchemeProvider.ts b/clients/client-dlm/src/auth/httpAuthSchemeProvider.ts index 4f162052b401a..b3b9ac49f0d27 100644 --- a/clients/client-dlm/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-dlm/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DLMClientConfig, DLMClientResolvedConfig } from "../DLMClient"; +import { type DLMClientResolvedConfig, DLMClientConfig } from "../DLMClient"; /** * @internal diff --git a/clients/client-dlm/src/commands/CreateLifecyclePolicyCommand.ts b/clients/client-dlm/src/commands/CreateLifecyclePolicyCommand.ts index cd768afdca051..50aa72d904ef6 100644 --- a/clients/client-dlm/src/commands/CreateLifecyclePolicyCommand.ts +++ b/clients/client-dlm/src/commands/CreateLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; +import type { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLifecyclePolicyRequest, CreateLifecyclePolicyResponse } from "../models/models_0"; +import type { CreateLifecyclePolicyRequest, CreateLifecyclePolicyResponse } from "../models/models_0"; import { CreateLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dlm/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-dlm/src/commands/DeleteLifecyclePolicyCommand.ts index 8b7bb340238bc..d164587eab0b2 100644 --- a/clients/client-dlm/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-dlm/src/commands/DeleteLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; +import type { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0"; +import type { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0"; import { DeleteLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dlm/src/commands/GetLifecyclePoliciesCommand.ts b/clients/client-dlm/src/commands/GetLifecyclePoliciesCommand.ts index 3c0caf3b9750a..9491f3cacce60 100644 --- a/clients/client-dlm/src/commands/GetLifecyclePoliciesCommand.ts +++ b/clients/client-dlm/src/commands/GetLifecyclePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; +import type { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLifecyclePoliciesRequest, GetLifecyclePoliciesResponse } from "../models/models_0"; +import type { GetLifecyclePoliciesRequest, GetLifecyclePoliciesResponse } from "../models/models_0"; import { GetLifecyclePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-dlm/src/commands/GetLifecyclePolicyCommand.ts b/clients/client-dlm/src/commands/GetLifecyclePolicyCommand.ts index c075e53bf33e4..20edf5b62cc10 100644 --- a/clients/client-dlm/src/commands/GetLifecyclePolicyCommand.ts +++ b/clients/client-dlm/src/commands/GetLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; +import type { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLifecyclePolicyRequest, GetLifecyclePolicyResponse } from "../models/models_0"; +import type { GetLifecyclePolicyRequest, GetLifecyclePolicyResponse } from "../models/models_0"; import { GetLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dlm/src/commands/ListTagsForResourceCommand.ts b/clients/client-dlm/src/commands/ListTagsForResourceCommand.ts index ac8a9d5d800c9..1bce09338af6c 100644 --- a/clients/client-dlm/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-dlm/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; +import type { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dlm/src/commands/TagResourceCommand.ts b/clients/client-dlm/src/commands/TagResourceCommand.ts index 0cd04aa6ee27a..86d341b0c62de 100644 --- a/clients/client-dlm/src/commands/TagResourceCommand.ts +++ b/clients/client-dlm/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; +import type { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dlm/src/commands/UntagResourceCommand.ts b/clients/client-dlm/src/commands/UntagResourceCommand.ts index da950524b1de8..277caff0cbab1 100644 --- a/clients/client-dlm/src/commands/UntagResourceCommand.ts +++ b/clients/client-dlm/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; +import type { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dlm/src/commands/UpdateLifecyclePolicyCommand.ts b/clients/client-dlm/src/commands/UpdateLifecyclePolicyCommand.ts index 69c8cee93e327..7237011e16c86 100644 --- a/clients/client-dlm/src/commands/UpdateLifecyclePolicyCommand.ts +++ b/clients/client-dlm/src/commands/UpdateLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; +import type { DLMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DLMClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLifecyclePolicyRequest, UpdateLifecyclePolicyResponse } from "../models/models_0"; +import type { UpdateLifecyclePolicyRequest, UpdateLifecyclePolicyResponse } from "../models/models_0"; import { UpdateLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dlm/src/endpoint/EndpointParameters.ts b/clients/client-dlm/src/endpoint/EndpointParameters.ts index 54e34bfe6ef68..4a058a6847b85 100644 --- a/clients/client-dlm/src/endpoint/EndpointParameters.ts +++ b/clients/client-dlm/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-dlm/src/endpoint/endpointResolver.ts b/clients/client-dlm/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-dlm/src/endpoint/endpointResolver.ts +++ b/clients/client-dlm/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-dlm/src/extensionConfiguration.ts b/clients/client-dlm/src/extensionConfiguration.ts index 4cc38671c6e9b..d8c621bf1f02e 100644 --- a/clients/client-dlm/src/extensionConfiguration.ts +++ b/clients/client-dlm/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-dlm/src/models/DLMServiceException.ts b/clients/client-dlm/src/models/DLMServiceException.ts index 648962358f002..904b302828dbc 100644 --- a/clients/client-dlm/src/models/DLMServiceException.ts +++ b/clients/client-dlm/src/models/DLMServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-dlm/src/models/errors.ts b/clients/client-dlm/src/models/errors.ts index 2f54c3f9d925b..7c1e3e09380d6 100644 --- a/clients/client-dlm/src/models/errors.ts +++ b/clients/client-dlm/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DLMServiceException as __BaseException } from "./DLMServiceException"; diff --git a/clients/client-dlm/src/runtimeConfig.browser.ts b/clients/client-dlm/src/runtimeConfig.browser.ts index 6abe6e744f184..7ebb436ebe396 100644 --- a/clients/client-dlm/src/runtimeConfig.browser.ts +++ b/clients/client-dlm/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DLMClientConfig } from "./DLMClient"; + +import type { DLMClientConfig } from "./DLMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-dlm/src/runtimeConfig.native.ts b/clients/client-dlm/src/runtimeConfig.native.ts index a231c41db21be..0351e26d3f6bd 100644 --- a/clients/client-dlm/src/runtimeConfig.native.ts +++ b/clients/client-dlm/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DLMClientConfig } from "./DLMClient"; +import type { DLMClientConfig } from "./DLMClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-dlm/src/runtimeConfig.shared.ts b/clients/client-dlm/src/runtimeConfig.shared.ts index f58d2063e3ed8..3c593e9638296 100644 --- a/clients/client-dlm/src/runtimeConfig.shared.ts +++ b/clients/client-dlm/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDLMHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DLMClientConfig } from "./DLMClient"; +import type { DLMClientConfig } from "./DLMClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-dlm/src/runtimeConfig.ts b/clients/client-dlm/src/runtimeConfig.ts index 52980f746adba..0217968787844 100644 --- a/clients/client-dlm/src/runtimeConfig.ts +++ b/clients/client-dlm/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DLMClientConfig } from "./DLMClient"; + +import type { DLMClientConfig } from "./DLMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-dlm/src/runtimeExtensions.ts b/clients/client-dlm/src/runtimeExtensions.ts index 3fdf924fa4654..42dc980d743a5 100644 --- a/clients/client-dlm/src/runtimeExtensions.ts +++ b/clients/client-dlm/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DLMExtensionConfiguration } from "./extensionConfiguration"; +import type { DLMExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-dlm/src/schemas/schemas_0.ts b/clients/client-dlm/src/schemas/schemas_0.ts index dd1ae4d636873..660a93086b355 100644 --- a/clients/client-dlm/src/schemas/schemas_0.ts +++ b/clients/client-dlm/src/schemas/schemas_0.ts @@ -153,7 +153,7 @@ const n0 = "com.amazonaws.dlm"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-docdb-elastic/package.json b/clients/client-docdb-elastic/package.json index 830cc31c722a3..fbc5842983ee0 100644 --- a/clients/client-docdb-elastic/package.json +++ b/clients/client-docdb-elastic/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-docdb-elastic/src/DocDBElastic.ts b/clients/client-docdb-elastic/src/DocDBElastic.ts index ecf45b2e23f2e..12e9cc3638f40 100644 --- a/clients/client-docdb-elastic/src/DocDBElastic.ts +++ b/clients/client-docdb-elastic/src/DocDBElastic.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ApplyPendingMaintenanceActionCommand, @@ -85,7 +85,7 @@ import { UpdateClusterCommandInput, UpdateClusterCommandOutput, } from "./commands/UpdateClusterCommand"; -import { DocDBElasticClient, DocDBElasticClientConfig } from "./DocDBElasticClient"; +import { DocDBElasticClient } from "./DocDBElasticClient"; const commands = { ApplyPendingMaintenanceActionCommand, diff --git a/clients/client-docdb-elastic/src/DocDBElasticClient.ts b/clients/client-docdb-elastic/src/DocDBElasticClient.ts index bf74c730131d8..027a9b966fe93 100644 --- a/clients/client-docdb-elastic/src/DocDBElasticClient.ts +++ b/clients/client-docdb-elastic/src/DocDBElasticClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDocDBElasticHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -110,7 +119,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-docdb-elastic/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-docdb-elastic/src/auth/httpAuthExtensionConfiguration.ts index 57a7cd28c6d9e..d0e28a4170c43 100644 --- a/clients/client-docdb-elastic/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-docdb-elastic/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DocDBElasticHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DocDBElasticHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-docdb-elastic/src/auth/httpAuthSchemeProvider.ts b/clients/client-docdb-elastic/src/auth/httpAuthSchemeProvider.ts index b9ddeab14aec2..87cd240d22143 100644 --- a/clients/client-docdb-elastic/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-docdb-elastic/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DocDBElasticClientConfig, DocDBElasticClientResolvedConfig } from "../DocDBElasticClient"; +import { type DocDBElasticClientResolvedConfig, DocDBElasticClientConfig } from "../DocDBElasticClient"; /** * @internal diff --git a/clients/client-docdb-elastic/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-docdb-elastic/src/commands/ApplyPendingMaintenanceActionCommand.ts index 600438815f886..dc57a896ba498 100644 --- a/clients/client-docdb-elastic/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplyPendingMaintenanceActionInput, ApplyPendingMaintenanceActionOutput } from "../models/models_0"; +import type { ApplyPendingMaintenanceActionInput, ApplyPendingMaintenanceActionOutput } from "../models/models_0"; import { ApplyPendingMaintenanceAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/CopyClusterSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/CopyClusterSnapshotCommand.ts index 704635af94de9..8a399c79a8d98 100644 --- a/clients/client-docdb-elastic/src/commands/CopyClusterSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/CopyClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyClusterSnapshotInput, CopyClusterSnapshotOutput } from "../models/models_0"; +import type { CopyClusterSnapshotInput, CopyClusterSnapshotOutput } from "../models/models_0"; import { CopyClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/CreateClusterCommand.ts b/clients/client-docdb-elastic/src/commands/CreateClusterCommand.ts index f086455f28ac6..52257a0633f35 100644 --- a/clients/client-docdb-elastic/src/commands/CreateClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterInput, CreateClusterOutput } from "../models/models_0"; +import type { CreateClusterInput, CreateClusterOutput } from "../models/models_0"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/CreateClusterSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/CreateClusterSnapshotCommand.ts index 18c12b732d7f8..976a33737fae1 100644 --- a/clients/client-docdb-elastic/src/commands/CreateClusterSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/CreateClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterSnapshotInput, CreateClusterSnapshotOutput } from "../models/models_0"; +import type { CreateClusterSnapshotInput, CreateClusterSnapshotOutput } from "../models/models_0"; import { CreateClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/DeleteClusterCommand.ts b/clients/client-docdb-elastic/src/commands/DeleteClusterCommand.ts index e16c884cd7f48..776146d4a8d29 100644 --- a/clients/client-docdb-elastic/src/commands/DeleteClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterInput, DeleteClusterOutput } from "../models/models_0"; +import type { DeleteClusterInput, DeleteClusterOutput } from "../models/models_0"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/DeleteClusterSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/DeleteClusterSnapshotCommand.ts index 8e56218276e32..7ca60871a0d2f 100644 --- a/clients/client-docdb-elastic/src/commands/DeleteClusterSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/DeleteClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterSnapshotInput, DeleteClusterSnapshotOutput } from "../models/models_0"; +import type { DeleteClusterSnapshotInput, DeleteClusterSnapshotOutput } from "../models/models_0"; import { DeleteClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/GetClusterCommand.ts b/clients/client-docdb-elastic/src/commands/GetClusterCommand.ts index c00b1deed9471..b751032e8592a 100644 --- a/clients/client-docdb-elastic/src/commands/GetClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/GetClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetClusterInput, GetClusterOutput } from "../models/models_0"; +import type { GetClusterInput, GetClusterOutput } from "../models/models_0"; import { GetCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/GetClusterSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/GetClusterSnapshotCommand.ts index ea43224ad7bbd..56c342dcd81a9 100644 --- a/clients/client-docdb-elastic/src/commands/GetClusterSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/GetClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetClusterSnapshotInput, GetClusterSnapshotOutput } from "../models/models_0"; +import type { GetClusterSnapshotInput, GetClusterSnapshotOutput } from "../models/models_0"; import { GetClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/GetPendingMaintenanceActionCommand.ts b/clients/client-docdb-elastic/src/commands/GetPendingMaintenanceActionCommand.ts index 03695e00c159e..88b20d71bb260 100644 --- a/clients/client-docdb-elastic/src/commands/GetPendingMaintenanceActionCommand.ts +++ b/clients/client-docdb-elastic/src/commands/GetPendingMaintenanceActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPendingMaintenanceActionInput, GetPendingMaintenanceActionOutput } from "../models/models_0"; +import type { GetPendingMaintenanceActionInput, GetPendingMaintenanceActionOutput } from "../models/models_0"; import { GetPendingMaintenanceAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/ListClusterSnapshotsCommand.ts b/clients/client-docdb-elastic/src/commands/ListClusterSnapshotsCommand.ts index 88f033bbb9c14..8b052f7b68197 100644 --- a/clients/client-docdb-elastic/src/commands/ListClusterSnapshotsCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ListClusterSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClusterSnapshotsInput, ListClusterSnapshotsOutput } from "../models/models_0"; +import type { ListClusterSnapshotsInput, ListClusterSnapshotsOutput } from "../models/models_0"; import { ListClusterSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/ListClustersCommand.ts b/clients/client-docdb-elastic/src/commands/ListClustersCommand.ts index 1731009322d79..f123d2f257447 100644 --- a/clients/client-docdb-elastic/src/commands/ListClustersCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClustersInput, ListClustersOutput } from "../models/models_0"; +import type { ListClustersInput, ListClustersOutput } from "../models/models_0"; import { ListClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/ListPendingMaintenanceActionsCommand.ts b/clients/client-docdb-elastic/src/commands/ListPendingMaintenanceActionsCommand.ts index febd2f9350ad4..97c180ec78583 100644 --- a/clients/client-docdb-elastic/src/commands/ListPendingMaintenanceActionsCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ListPendingMaintenanceActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPendingMaintenanceActionsInput, ListPendingMaintenanceActionsOutput } from "../models/models_0"; +import type { ListPendingMaintenanceActionsInput, ListPendingMaintenanceActionsOutput } from "../models/models_0"; import { ListPendingMaintenanceActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/ListTagsForResourceCommand.ts b/clients/client-docdb-elastic/src/commands/ListTagsForResourceCommand.ts index 0ed8eea8803d5..f2a39c72ed655 100644 --- a/clients/client-docdb-elastic/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-docdb-elastic/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/RestoreClusterFromSnapshotCommand.ts b/clients/client-docdb-elastic/src/commands/RestoreClusterFromSnapshotCommand.ts index 683ed2564d303..b2783c7f889cc 100644 --- a/clients/client-docdb-elastic/src/commands/RestoreClusterFromSnapshotCommand.ts +++ b/clients/client-docdb-elastic/src/commands/RestoreClusterFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreClusterFromSnapshotInput, RestoreClusterFromSnapshotOutput } from "../models/models_0"; +import type { RestoreClusterFromSnapshotInput, RestoreClusterFromSnapshotOutput } from "../models/models_0"; import { RestoreClusterFromSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/StartClusterCommand.ts b/clients/client-docdb-elastic/src/commands/StartClusterCommand.ts index d5bc7544df474..999352b64a03a 100644 --- a/clients/client-docdb-elastic/src/commands/StartClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/StartClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartClusterInput, StartClusterOutput } from "../models/models_0"; +import type { StartClusterInput, StartClusterOutput } from "../models/models_0"; import { StartCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/StopClusterCommand.ts b/clients/client-docdb-elastic/src/commands/StopClusterCommand.ts index bac8434b39323..3def784d715b7 100644 --- a/clients/client-docdb-elastic/src/commands/StopClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/StopClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopClusterInput, StopClusterOutput } from "../models/models_0"; +import type { StopClusterInput, StopClusterOutput } from "../models/models_0"; import { StopCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/TagResourceCommand.ts b/clients/client-docdb-elastic/src/commands/TagResourceCommand.ts index 9c5fe40fed3d2..8f1c139d0c210 100644 --- a/clients/client-docdb-elastic/src/commands/TagResourceCommand.ts +++ b/clients/client-docdb-elastic/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/UntagResourceCommand.ts b/clients/client-docdb-elastic/src/commands/UntagResourceCommand.ts index ee4345030359c..ff8209df6b770 100644 --- a/clients/client-docdb-elastic/src/commands/UntagResourceCommand.ts +++ b/clients/client-docdb-elastic/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/commands/UpdateClusterCommand.ts b/clients/client-docdb-elastic/src/commands/UpdateClusterCommand.ts index 8329bbafd2177..ecd5c43a30753 100644 --- a/clients/client-docdb-elastic/src/commands/UpdateClusterCommand.ts +++ b/clients/client-docdb-elastic/src/commands/UpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; +import type { DocDBElasticClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBElasticClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterInput, UpdateClusterOutput } from "../models/models_0"; +import type { UpdateClusterInput, UpdateClusterOutput } from "../models/models_0"; import { UpdateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb-elastic/src/endpoint/EndpointParameters.ts b/clients/client-docdb-elastic/src/endpoint/EndpointParameters.ts index 4f45b5e0ec1e6..5f5b00d25df45 100644 --- a/clients/client-docdb-elastic/src/endpoint/EndpointParameters.ts +++ b/clients/client-docdb-elastic/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-docdb-elastic/src/endpoint/endpointResolver.ts b/clients/client-docdb-elastic/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-docdb-elastic/src/endpoint/endpointResolver.ts +++ b/clients/client-docdb-elastic/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-docdb-elastic/src/extensionConfiguration.ts b/clients/client-docdb-elastic/src/extensionConfiguration.ts index 5ef54b8f6be25..aee6b527bda50 100644 --- a/clients/client-docdb-elastic/src/extensionConfiguration.ts +++ b/clients/client-docdb-elastic/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-docdb-elastic/src/models/DocDBElasticServiceException.ts b/clients/client-docdb-elastic/src/models/DocDBElasticServiceException.ts index 675a39b163a4b..3a74e8dd8901b 100644 --- a/clients/client-docdb-elastic/src/models/DocDBElasticServiceException.ts +++ b/clients/client-docdb-elastic/src/models/DocDBElasticServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-docdb-elastic/src/models/errors.ts b/clients/client-docdb-elastic/src/models/errors.ts index c6c9be351bdb2..dc211dcd2c5d2 100644 --- a/clients/client-docdb-elastic/src/models/errors.ts +++ b/clients/client-docdb-elastic/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DocDBElasticServiceException as __BaseException } from "./DocDBElasticServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-docdb-elastic/src/pagination/Interfaces.ts b/clients/client-docdb-elastic/src/pagination/Interfaces.ts index ab0f923e2a495..aa8f173eeda39 100644 --- a/clients/client-docdb-elastic/src/pagination/Interfaces.ts +++ b/clients/client-docdb-elastic/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DocDBElasticClient } from "../DocDBElasticClient"; diff --git a/clients/client-docdb-elastic/src/pagination/ListClusterSnapshotsPaginator.ts b/clients/client-docdb-elastic/src/pagination/ListClusterSnapshotsPaginator.ts index ad28ce48fa463..af07043d918e9 100644 --- a/clients/client-docdb-elastic/src/pagination/ListClusterSnapshotsPaginator.ts +++ b/clients/client-docdb-elastic/src/pagination/ListClusterSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClusterSnapshotsCommand, diff --git a/clients/client-docdb-elastic/src/pagination/ListClustersPaginator.ts b/clients/client-docdb-elastic/src/pagination/ListClustersPaginator.ts index b9575dd306415..f1cff29507be3 100644 --- a/clients/client-docdb-elastic/src/pagination/ListClustersPaginator.ts +++ b/clients/client-docdb-elastic/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-docdb-elastic/src/pagination/ListPendingMaintenanceActionsPaginator.ts b/clients/client-docdb-elastic/src/pagination/ListPendingMaintenanceActionsPaginator.ts index 0f54aa01c8c30..03a1625f5fcd3 100644 --- a/clients/client-docdb-elastic/src/pagination/ListPendingMaintenanceActionsPaginator.ts +++ b/clients/client-docdb-elastic/src/pagination/ListPendingMaintenanceActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPendingMaintenanceActionsCommand, diff --git a/clients/client-docdb-elastic/src/runtimeConfig.browser.ts b/clients/client-docdb-elastic/src/runtimeConfig.browser.ts index 52e1a2d07a31b..d449df84eb4cc 100644 --- a/clients/client-docdb-elastic/src/runtimeConfig.browser.ts +++ b/clients/client-docdb-elastic/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DocDBElasticClientConfig } from "./DocDBElasticClient"; + +import type { DocDBElasticClientConfig } from "./DocDBElasticClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-docdb-elastic/src/runtimeConfig.native.ts b/clients/client-docdb-elastic/src/runtimeConfig.native.ts index ab911c6de09a2..4e5f0fbd236e0 100644 --- a/clients/client-docdb-elastic/src/runtimeConfig.native.ts +++ b/clients/client-docdb-elastic/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DocDBElasticClientConfig } from "./DocDBElasticClient"; +import type { DocDBElasticClientConfig } from "./DocDBElasticClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-docdb-elastic/src/runtimeConfig.shared.ts b/clients/client-docdb-elastic/src/runtimeConfig.shared.ts index 5a798698c7ad6..303a66feda748 100644 --- a/clients/client-docdb-elastic/src/runtimeConfig.shared.ts +++ b/clients/client-docdb-elastic/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDocDBElasticHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DocDBElasticClientConfig } from "./DocDBElasticClient"; +import type { DocDBElasticClientConfig } from "./DocDBElasticClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-docdb-elastic/src/runtimeConfig.ts b/clients/client-docdb-elastic/src/runtimeConfig.ts index 766d61fcf521b..f1c45352ad208 100644 --- a/clients/client-docdb-elastic/src/runtimeConfig.ts +++ b/clients/client-docdb-elastic/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DocDBElasticClientConfig } from "./DocDBElasticClient"; + +import type { DocDBElasticClientConfig } from "./DocDBElasticClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-docdb-elastic/src/runtimeExtensions.ts b/clients/client-docdb-elastic/src/runtimeExtensions.ts index 32ca57ddcd23f..d295ad2803bcb 100644 --- a/clients/client-docdb-elastic/src/runtimeExtensions.ts +++ b/clients/client-docdb-elastic/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DocDBElasticExtensionConfiguration } from "./extensionConfiguration"; +import type { DocDBElasticExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-docdb-elastic/src/schemas/schemas_0.ts b/clients/client-docdb-elastic/src/schemas/schemas_0.ts index 9e08f782d6e46..1a8cecb2c9578 100644 --- a/clients/client-docdb-elastic/src/schemas/schemas_0.ts +++ b/clients/client-docdb-elastic/src/schemas/schemas_0.ts @@ -145,7 +145,7 @@ const n0 = "com.amazonaws.docdbelastic"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-docdb/package.json b/clients/client-docdb/package.json index a49b4dde0cf09..cfbd7eb950a18 100644 --- a/clients/client-docdb/package.json +++ b/clients/client-docdb/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-docdb/src/DocDB.ts b/clients/client-docdb/src/DocDB.ts index 2e96c298ff380..c04245ddb74d1 100644 --- a/clients/client-docdb/src/DocDB.ts +++ b/clients/client-docdb/src/DocDB.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddSourceIdentifierToSubscriptionCommand, @@ -277,7 +277,7 @@ import { SwitchoverGlobalClusterCommandInput, SwitchoverGlobalClusterCommandOutput, } from "./commands/SwitchoverGlobalClusterCommand"; -import { DocDBClient, DocDBClientConfig } from "./DocDBClient"; +import { DocDBClient } from "./DocDBClient"; const commands = { AddSourceIdentifierToSubscriptionCommand, diff --git a/clients/client-docdb/src/DocDBClient.ts b/clients/client-docdb/src/DocDBClient.ts index a40ce8d833a5c..299b2dda7d88b 100644 --- a/clients/client-docdb/src/DocDBClient.ts +++ b/clients/client-docdb/src/DocDBClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDocDBHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -245,7 +254,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-docdb/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-docdb/src/auth/httpAuthExtensionConfiguration.ts index 5ec6c5dcc5bc6..49714253dcf63 100644 --- a/clients/client-docdb/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-docdb/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DocDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DocDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-docdb/src/auth/httpAuthSchemeProvider.ts b/clients/client-docdb/src/auth/httpAuthSchemeProvider.ts index 1ebfb8ae3d4ba..91f7ecc09a4eb 100644 --- a/clients/client-docdb/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-docdb/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DocDBClientConfig, DocDBClientResolvedConfig } from "../DocDBClient"; +import { type DocDBClientResolvedConfig, DocDBClientConfig } from "../DocDBClient"; /** * @internal diff --git a/clients/client-docdb/src/commands/AddSourceIdentifierToSubscriptionCommand.ts b/clients/client-docdb/src/commands/AddSourceIdentifierToSubscriptionCommand.ts index 13c7c43dc03dc..47556c24cf16f 100644 --- a/clients/client-docdb/src/commands/AddSourceIdentifierToSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/AddSourceIdentifierToSubscriptionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddSourceIdentifierToSubscriptionMessage, AddSourceIdentifierToSubscriptionResult } from "../models/models_0"; +import type { + AddSourceIdentifierToSubscriptionMessage, + AddSourceIdentifierToSubscriptionResult, +} from "../models/models_0"; import { AddSourceIdentifierToSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/AddTagsToResourceCommand.ts b/clients/client-docdb/src/commands/AddTagsToResourceCommand.ts index c4c8557b5ee1f..5d75f5dc771c0 100644 --- a/clients/client-docdb/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-docdb/src/commands/AddTagsToResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToResourceMessage } from "../models/models_0"; +import type { AddTagsToResourceMessage } from "../models/models_0"; import { AddTagsToResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-docdb/src/commands/ApplyPendingMaintenanceActionCommand.ts index ec2737f7b1b8e..78528b572448c 100644 --- a/clients/client-docdb/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-docdb/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplyPendingMaintenanceActionMessage, ApplyPendingMaintenanceActionResult } from "../models/models_0"; +import type { ApplyPendingMaintenanceActionMessage, ApplyPendingMaintenanceActionResult } from "../models/models_0"; import { ApplyPendingMaintenanceAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/CopyDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/CopyDBClusterParameterGroupCommand.ts index 23b584044c90f..99360cce715ed 100644 --- a/clients/client-docdb/src/commands/CopyDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/CopyDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDBClusterParameterGroupMessage, CopyDBClusterParameterGroupResult } from "../models/models_0"; +import type { CopyDBClusterParameterGroupMessage, CopyDBClusterParameterGroupResult } from "../models/models_0"; import { CopyDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/CopyDBClusterSnapshotCommand.ts b/clients/client-docdb/src/commands/CopyDBClusterSnapshotCommand.ts index 63044a9ff2c56..a0f5c54e80c14 100644 --- a/clients/client-docdb/src/commands/CopyDBClusterSnapshotCommand.ts +++ b/clients/client-docdb/src/commands/CopyDBClusterSnapshotCommand.ts @@ -2,11 +2,11 @@ import { getCrossRegionPresignedUrlPlugin } from "@aws-sdk/middleware-sdk-rds"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDBClusterSnapshotMessage, CopyDBClusterSnapshotResult } from "../models/models_0"; +import type { CopyDBClusterSnapshotMessage, CopyDBClusterSnapshotResult } from "../models/models_0"; import { CopyDBClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/CreateDBClusterCommand.ts b/clients/client-docdb/src/commands/CreateDBClusterCommand.ts index 9144528103856..d0bf2c0ad79b6 100644 --- a/clients/client-docdb/src/commands/CreateDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterMessage, CreateDBClusterResult } from "../models/models_0"; +import type { CreateDBClusterMessage, CreateDBClusterResult } from "../models/models_0"; import { CreateDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/CreateDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/CreateDBClusterParameterGroupCommand.ts index 3ba902cb94525..fa9f09da91ad3 100644 --- a/clients/client-docdb/src/commands/CreateDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterParameterGroupMessage, CreateDBClusterParameterGroupResult } from "../models/models_0"; +import type { CreateDBClusterParameterGroupMessage, CreateDBClusterParameterGroupResult } from "../models/models_0"; import { CreateDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/CreateDBClusterSnapshotCommand.ts b/clients/client-docdb/src/commands/CreateDBClusterSnapshotCommand.ts index 82455e3f810b0..92ea8c87ef069 100644 --- a/clients/client-docdb/src/commands/CreateDBClusterSnapshotCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterSnapshotMessage, CreateDBClusterSnapshotResult } from "../models/models_0"; +import type { CreateDBClusterSnapshotMessage, CreateDBClusterSnapshotResult } from "../models/models_0"; import { CreateDBClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/CreateDBInstanceCommand.ts b/clients/client-docdb/src/commands/CreateDBInstanceCommand.ts index a8e4b13d313de..6ac092e478f80 100644 --- a/clients/client-docdb/src/commands/CreateDBInstanceCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBInstanceMessage, CreateDBInstanceResult } from "../models/models_0"; +import type { CreateDBInstanceMessage, CreateDBInstanceResult } from "../models/models_0"; import { CreateDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/CreateDBSubnetGroupCommand.ts b/clients/client-docdb/src/commands/CreateDBSubnetGroupCommand.ts index 4d7005fc55463..befe237ff00da 100644 --- a/clients/client-docdb/src/commands/CreateDBSubnetGroupCommand.ts +++ b/clients/client-docdb/src/commands/CreateDBSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBSubnetGroupMessage, CreateDBSubnetGroupResult } from "../models/models_0"; +import type { CreateDBSubnetGroupMessage, CreateDBSubnetGroupResult } from "../models/models_0"; import { CreateDBSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-docdb/src/commands/CreateEventSubscriptionCommand.ts index 1906a0b2dafe0..374d264be8479 100644 --- a/clients/client-docdb/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/CreateEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventSubscriptionMessage, CreateEventSubscriptionResult } from "../models/models_0"; +import type { CreateEventSubscriptionMessage, CreateEventSubscriptionResult } from "../models/models_0"; import { CreateEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/CreateGlobalClusterCommand.ts b/clients/client-docdb/src/commands/CreateGlobalClusterCommand.ts index 0769893018217..d7be70297acfa 100644 --- a/clients/client-docdb/src/commands/CreateGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/CreateGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGlobalClusterMessage, CreateGlobalClusterResult } from "../models/models_0"; +import type { CreateGlobalClusterMessage, CreateGlobalClusterResult } from "../models/models_0"; import { CreateGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DeleteDBClusterCommand.ts b/clients/client-docdb/src/commands/DeleteDBClusterCommand.ts index ceef0a8fc7696..70a3fd9c382c1 100644 --- a/clients/client-docdb/src/commands/DeleteDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterMessage, DeleteDBClusterResult } from "../models/models_0"; +import type { DeleteDBClusterMessage, DeleteDBClusterResult } from "../models/models_0"; import { DeleteDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DeleteDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/DeleteDBClusterParameterGroupCommand.ts index 443e77357c575..90e8ea5cc1be3 100644 --- a/clients/client-docdb/src/commands/DeleteDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterParameterGroupMessage } from "../models/models_0"; +import type { DeleteDBClusterParameterGroupMessage } from "../models/models_0"; import { DeleteDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DeleteDBClusterSnapshotCommand.ts b/clients/client-docdb/src/commands/DeleteDBClusterSnapshotCommand.ts index 6d06b15bc991b..a8389bab730f4 100644 --- a/clients/client-docdb/src/commands/DeleteDBClusterSnapshotCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterSnapshotMessage, DeleteDBClusterSnapshotResult } from "../models/models_0"; +import type { DeleteDBClusterSnapshotMessage, DeleteDBClusterSnapshotResult } from "../models/models_0"; import { DeleteDBClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DeleteDBInstanceCommand.ts b/clients/client-docdb/src/commands/DeleteDBInstanceCommand.ts index b462c15dc1ae2..2c5bd556112d8 100644 --- a/clients/client-docdb/src/commands/DeleteDBInstanceCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBInstanceMessage, DeleteDBInstanceResult } from "../models/models_0"; +import type { DeleteDBInstanceMessage, DeleteDBInstanceResult } from "../models/models_0"; import { DeleteDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DeleteDBSubnetGroupCommand.ts b/clients/client-docdb/src/commands/DeleteDBSubnetGroupCommand.ts index 76922c526993b..bb56decc41f07 100644 --- a/clients/client-docdb/src/commands/DeleteDBSubnetGroupCommand.ts +++ b/clients/client-docdb/src/commands/DeleteDBSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBSubnetGroupMessage } from "../models/models_0"; +import type { DeleteDBSubnetGroupMessage } from "../models/models_0"; import { DeleteDBSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-docdb/src/commands/DeleteEventSubscriptionCommand.ts index e8e762efc4708..14c22e08e4cb1 100644 --- a/clients/client-docdb/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/DeleteEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventSubscriptionMessage, DeleteEventSubscriptionResult } from "../models/models_0"; +import type { DeleteEventSubscriptionMessage, DeleteEventSubscriptionResult } from "../models/models_0"; import { DeleteEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DeleteGlobalClusterCommand.ts b/clients/client-docdb/src/commands/DeleteGlobalClusterCommand.ts index 6f45f3c42b3fa..78824ba55e7b7 100644 --- a/clients/client-docdb/src/commands/DeleteGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/DeleteGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGlobalClusterMessage, DeleteGlobalClusterResult } from "../models/models_0"; +import type { DeleteGlobalClusterMessage, DeleteGlobalClusterResult } from "../models/models_0"; import { DeleteGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeCertificatesCommand.ts b/clients/client-docdb/src/commands/DescribeCertificatesCommand.ts index 1ce4c2c243977..8556a8d28b9ac 100644 --- a/clients/client-docdb/src/commands/DescribeCertificatesCommand.ts +++ b/clients/client-docdb/src/commands/DescribeCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CertificateMessage, DescribeCertificatesMessage } from "../models/models_0"; +import type { CertificateMessage, DescribeCertificatesMessage } from "../models/models_0"; import { DescribeCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeDBClusterParameterGroupsCommand.ts b/clients/client-docdb/src/commands/DescribeDBClusterParameterGroupsCommand.ts index b98ef6cf349c7..50a52c610a3b4 100644 --- a/clients/client-docdb/src/commands/DescribeDBClusterParameterGroupsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClusterParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupsMessage, DescribeDBClusterParameterGroupsMessage } from "../models/models_0"; +import type { DBClusterParameterGroupsMessage, DescribeDBClusterParameterGroupsMessage } from "../models/models_0"; import { DescribeDBClusterParameterGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeDBClusterParametersCommand.ts b/clients/client-docdb/src/commands/DescribeDBClusterParametersCommand.ts index a3466225506cd..93a6877f31090 100644 --- a/clients/client-docdb/src/commands/DescribeDBClusterParametersCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClusterParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupDetails, DescribeDBClusterParametersMessage } from "../models/models_0"; +import type { DBClusterParameterGroupDetails, DescribeDBClusterParametersMessage } from "../models/models_0"; import { DescribeDBClusterParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts b/clients/client-docdb/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts index 2f19e6aeb32ab..1695bd3bfe1b0 100644 --- a/clients/client-docdb/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDBClusterSnapshotAttributesMessage, DescribeDBClusterSnapshotAttributesResult, } from "../models/models_0"; diff --git a/clients/client-docdb/src/commands/DescribeDBClusterSnapshotsCommand.ts b/clients/client-docdb/src/commands/DescribeDBClusterSnapshotsCommand.ts index ac216b084a49c..a6fb55a95943a 100644 --- a/clients/client-docdb/src/commands/DescribeDBClusterSnapshotsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClusterSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/models_0"; +import type { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/models_0"; import { DescribeDBClusterSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeDBClustersCommand.ts b/clients/client-docdb/src/commands/DescribeDBClustersCommand.ts index 7552d4b9886dd..2c30eb6e3a0ea 100644 --- a/clients/client-docdb/src/commands/DescribeDBClustersCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterMessage, DescribeDBClustersMessage } from "../models/models_0"; +import type { DBClusterMessage, DescribeDBClustersMessage } from "../models/models_0"; import { DescribeDBClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeDBEngineVersionsCommand.ts b/clients/client-docdb/src/commands/DescribeDBEngineVersionsCommand.ts index 51ed3029396ed..08db8e0927fb2 100644 --- a/clients/client-docdb/src/commands/DescribeDBEngineVersionsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBEngineVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBEngineVersionMessage, DescribeDBEngineVersionsMessage } from "../models/models_0"; +import type { DBEngineVersionMessage, DescribeDBEngineVersionsMessage } from "../models/models_0"; import { DescribeDBEngineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeDBInstancesCommand.ts b/clients/client-docdb/src/commands/DescribeDBInstancesCommand.ts index 98683ca53bb05..ef80b04781508 100644 --- a/clients/client-docdb/src/commands/DescribeDBInstancesCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBInstanceMessage, DescribeDBInstancesMessage } from "../models/models_0"; +import type { DBInstanceMessage, DescribeDBInstancesMessage } from "../models/models_0"; import { DescribeDBInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeDBSubnetGroupsCommand.ts b/clients/client-docdb/src/commands/DescribeDBSubnetGroupsCommand.ts index b1f72ecf6e3ea..8bf6fff6bf60e 100644 --- a/clients/client-docdb/src/commands/DescribeDBSubnetGroupsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeDBSubnetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBSubnetGroupMessage, DescribeDBSubnetGroupsMessage } from "../models/models_0"; +import type { DBSubnetGroupMessage, DescribeDBSubnetGroupsMessage } from "../models/models_0"; import { DescribeDBSubnetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeEngineDefaultClusterParametersCommand.ts b/clients/client-docdb/src/commands/DescribeEngineDefaultClusterParametersCommand.ts index 2018a8adc2268..fbbcd695b2f1a 100644 --- a/clients/client-docdb/src/commands/DescribeEngineDefaultClusterParametersCommand.ts +++ b/clients/client-docdb/src/commands/DescribeEngineDefaultClusterParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeEngineDefaultClusterParametersMessage, DescribeEngineDefaultClusterParametersResult, } from "../models/models_0"; diff --git a/clients/client-docdb/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-docdb/src/commands/DescribeEventCategoriesCommand.ts index 0aab19f11bdb5..c0190991cc5ca 100644 --- a/clients/client-docdb/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-docdb/src/commands/DescribeEventCategoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_0"; +import type { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_0"; import { DescribeEventCategories } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-docdb/src/commands/DescribeEventSubscriptionsCommand.ts index 5a6005295cd5c..51a664a472e18 100644 --- a/clients/client-docdb/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeEventSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventSubscriptionsMessage, EventSubscriptionsMessage } from "../models/models_0"; +import type { DescribeEventSubscriptionsMessage, EventSubscriptionsMessage } from "../models/models_0"; import { DescribeEventSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeEventsCommand.ts b/clients/client-docdb/src/commands/DescribeEventsCommand.ts index acc96b5fcb057..9bb74c30a2de3 100644 --- a/clients/client-docdb/src/commands/DescribeEventsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsMessage, EventsMessage } from "../models/models_0"; +import type { DescribeEventsMessage, EventsMessage } from "../models/models_0"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeGlobalClustersCommand.ts b/clients/client-docdb/src/commands/DescribeGlobalClustersCommand.ts index 2d9c6b53bfdfc..4d2f3f8504673 100644 --- a/clients/client-docdb/src/commands/DescribeGlobalClustersCommand.ts +++ b/clients/client-docdb/src/commands/DescribeGlobalClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGlobalClustersMessage, GlobalClustersMessage } from "../models/models_0"; +import type { DescribeGlobalClustersMessage, GlobalClustersMessage } from "../models/models_0"; import { DescribeGlobalClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts b/clients/client-docdb/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts index 1307efaa0ae75..b7da7b0759b54 100644 --- a/clients/client-docdb/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts +++ b/clients/client-docdb/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrderableDBInstanceOptionsMessage, OrderableDBInstanceOptionsMessage } from "../models/models_0"; +import type { DescribeOrderableDBInstanceOptionsMessage, OrderableDBInstanceOptionsMessage } from "../models/models_0"; import { DescribeOrderableDBInstanceOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/DescribePendingMaintenanceActionsCommand.ts b/clients/client-docdb/src/commands/DescribePendingMaintenanceActionsCommand.ts index badfeb5207ee7..878ed4b9ebc3f 100644 --- a/clients/client-docdb/src/commands/DescribePendingMaintenanceActionsCommand.ts +++ b/clients/client-docdb/src/commands/DescribePendingMaintenanceActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePendingMaintenanceActionsMessage, PendingMaintenanceActionsMessage } from "../models/models_0"; +import type { DescribePendingMaintenanceActionsMessage, PendingMaintenanceActionsMessage } from "../models/models_0"; import { DescribePendingMaintenanceActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/FailoverDBClusterCommand.ts b/clients/client-docdb/src/commands/FailoverDBClusterCommand.ts index ed0d5df26b22a..1b53229c9a27e 100644 --- a/clients/client-docdb/src/commands/FailoverDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/FailoverDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FailoverDBClusterMessage, FailoverDBClusterResult } from "../models/models_0"; +import type { FailoverDBClusterMessage, FailoverDBClusterResult } from "../models/models_0"; import { FailoverDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts b/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts index acbc9a3a3fe24..9bcc0928b2dc1 100644 --- a/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/FailoverGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FailoverGlobalClusterMessage, FailoverGlobalClusterResult } from "../models/models_0"; +import type { FailoverGlobalClusterMessage, FailoverGlobalClusterResult } from "../models/models_0"; import { FailoverGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ListTagsForResourceCommand.ts b/clients/client-docdb/src/commands/ListTagsForResourceCommand.ts index 5b1a28908e1f1..fbd1d4f7c538a 100644 --- a/clients/client-docdb/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-docdb/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceMessage, TagListMessage } from "../models/models_0"; +import type { ListTagsForResourceMessage, TagListMessage } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ModifyDBClusterCommand.ts b/clients/client-docdb/src/commands/ModifyDBClusterCommand.ts index 759a1ff456bfd..d4ed9664a5386 100644 --- a/clients/client-docdb/src/commands/ModifyDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBClusterMessage, ModifyDBClusterResult } from "../models/models_0"; +import type { ModifyDBClusterMessage, ModifyDBClusterResult } from "../models/models_0"; import { ModifyDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ModifyDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/ModifyDBClusterParameterGroupCommand.ts index e693d692ca9f0..2c854404c319d 100644 --- a/clients/client-docdb/src/commands/ModifyDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupNameMessage, ModifyDBClusterParameterGroupMessage } from "../models/models_0"; +import type { DBClusterParameterGroupNameMessage, ModifyDBClusterParameterGroupMessage } from "../models/models_0"; import { ModifyDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts b/clients/client-docdb/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts index 3d5ec17c0d9d7..4a17b02dbc74b 100644 --- a/clients/client-docdb/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBClusterSnapshotAttributeMessage, ModifyDBClusterSnapshotAttributeResult } from "../models/models_0"; +import type { + ModifyDBClusterSnapshotAttributeMessage, + ModifyDBClusterSnapshotAttributeResult, +} from "../models/models_0"; import { ModifyDBClusterSnapshotAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ModifyDBInstanceCommand.ts b/clients/client-docdb/src/commands/ModifyDBInstanceCommand.ts index bb26f905f9031..f5d9afcc46547 100644 --- a/clients/client-docdb/src/commands/ModifyDBInstanceCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBInstanceMessage, ModifyDBInstanceResult } from "../models/models_0"; +import type { ModifyDBInstanceMessage, ModifyDBInstanceResult } from "../models/models_0"; import { ModifyDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ModifyDBSubnetGroupCommand.ts b/clients/client-docdb/src/commands/ModifyDBSubnetGroupCommand.ts index 51c8899bf46e6..172e8bf09bb48 100644 --- a/clients/client-docdb/src/commands/ModifyDBSubnetGroupCommand.ts +++ b/clients/client-docdb/src/commands/ModifyDBSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBSubnetGroupMessage, ModifyDBSubnetGroupResult } from "../models/models_0"; +import type { ModifyDBSubnetGroupMessage, ModifyDBSubnetGroupResult } from "../models/models_0"; import { ModifyDBSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-docdb/src/commands/ModifyEventSubscriptionCommand.ts index 727bfc7b928db..866d2d57886b1 100644 --- a/clients/client-docdb/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/ModifyEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_0"; +import type { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_0"; import { ModifyEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ModifyGlobalClusterCommand.ts b/clients/client-docdb/src/commands/ModifyGlobalClusterCommand.ts index be5410e30367f..448ff101a4d15 100644 --- a/clients/client-docdb/src/commands/ModifyGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/ModifyGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyGlobalClusterMessage, ModifyGlobalClusterResult } from "../models/models_0"; +import type { ModifyGlobalClusterMessage, ModifyGlobalClusterResult } from "../models/models_0"; import { ModifyGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/RebootDBInstanceCommand.ts b/clients/client-docdb/src/commands/RebootDBInstanceCommand.ts index f9dba419932ac..7c1c9e213d146 100644 --- a/clients/client-docdb/src/commands/RebootDBInstanceCommand.ts +++ b/clients/client-docdb/src/commands/RebootDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootDBInstanceMessage, RebootDBInstanceResult } from "../models/models_0"; +import type { RebootDBInstanceMessage, RebootDBInstanceResult } from "../models/models_0"; import { RebootDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/RemoveFromGlobalClusterCommand.ts b/clients/client-docdb/src/commands/RemoveFromGlobalClusterCommand.ts index ad5ba4b45afa1..9dd9beda8e7e9 100644 --- a/clients/client-docdb/src/commands/RemoveFromGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/RemoveFromGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveFromGlobalClusterMessage, RemoveFromGlobalClusterResult } from "../models/models_0"; +import type { RemoveFromGlobalClusterMessage, RemoveFromGlobalClusterResult } from "../models/models_0"; import { RemoveFromGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts b/clients/client-docdb/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts index 66706de860a7d..4b9c8a726b1fe 100644 --- a/clients/client-docdb/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts +++ b/clients/client-docdb/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RemoveSourceIdentifierFromSubscriptionMessage, RemoveSourceIdentifierFromSubscriptionResult, } from "../models/models_0"; diff --git a/clients/client-docdb/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-docdb/src/commands/RemoveTagsFromResourceCommand.ts index 5895aecaa632a..3147211b2027b 100644 --- a/clients/client-docdb/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-docdb/src/commands/RemoveTagsFromResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromResourceMessage } from "../models/models_0"; +import type { RemoveTagsFromResourceMessage } from "../models/models_0"; import { RemoveTagsFromResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/ResetDBClusterParameterGroupCommand.ts b/clients/client-docdb/src/commands/ResetDBClusterParameterGroupCommand.ts index 1d8ed89139ff6..9cf71979f7985 100644 --- a/clients/client-docdb/src/commands/ResetDBClusterParameterGroupCommand.ts +++ b/clients/client-docdb/src/commands/ResetDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupNameMessage, ResetDBClusterParameterGroupMessage } from "../models/models_0"; +import type { DBClusterParameterGroupNameMessage, ResetDBClusterParameterGroupMessage } from "../models/models_0"; import { ResetDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/RestoreDBClusterFromSnapshotCommand.ts b/clients/client-docdb/src/commands/RestoreDBClusterFromSnapshotCommand.ts index 7bf7561428789..ad09d59fd7fc7 100644 --- a/clients/client-docdb/src/commands/RestoreDBClusterFromSnapshotCommand.ts +++ b/clients/client-docdb/src/commands/RestoreDBClusterFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBClusterFromSnapshotMessage, RestoreDBClusterFromSnapshotResult } from "../models/models_0"; +import type { RestoreDBClusterFromSnapshotMessage, RestoreDBClusterFromSnapshotResult } from "../models/models_0"; import { RestoreDBClusterFromSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/RestoreDBClusterToPointInTimeCommand.ts b/clients/client-docdb/src/commands/RestoreDBClusterToPointInTimeCommand.ts index 35d6a0a4599f5..d42071e0dc130 100644 --- a/clients/client-docdb/src/commands/RestoreDBClusterToPointInTimeCommand.ts +++ b/clients/client-docdb/src/commands/RestoreDBClusterToPointInTimeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBClusterToPointInTimeMessage, RestoreDBClusterToPointInTimeResult } from "../models/models_0"; +import type { RestoreDBClusterToPointInTimeMessage, RestoreDBClusterToPointInTimeResult } from "../models/models_0"; import { RestoreDBClusterToPointInTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/StartDBClusterCommand.ts b/clients/client-docdb/src/commands/StartDBClusterCommand.ts index 946903663cfdb..9fb637e569eca 100644 --- a/clients/client-docdb/src/commands/StartDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/StartDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDBClusterMessage, StartDBClusterResult } from "../models/models_0"; +import type { StartDBClusterMessage, StartDBClusterResult } from "../models/models_0"; import { StartDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/StopDBClusterCommand.ts b/clients/client-docdb/src/commands/StopDBClusterCommand.ts index 180466c451c97..ffd6dd6001177 100644 --- a/clients/client-docdb/src/commands/StopDBClusterCommand.ts +++ b/clients/client-docdb/src/commands/StopDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDBClusterMessage, StopDBClusterResult } from "../models/models_0"; +import type { StopDBClusterMessage, StopDBClusterResult } from "../models/models_0"; import { StopDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/commands/SwitchoverGlobalClusterCommand.ts b/clients/client-docdb/src/commands/SwitchoverGlobalClusterCommand.ts index 409b47bc99773..7e28d40b89798 100644 --- a/clients/client-docdb/src/commands/SwitchoverGlobalClusterCommand.ts +++ b/clients/client-docdb/src/commands/SwitchoverGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; +import type { DocDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DocDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SwitchoverGlobalClusterMessage, SwitchoverGlobalClusterResult } from "../models/models_0"; +import type { SwitchoverGlobalClusterMessage, SwitchoverGlobalClusterResult } from "../models/models_0"; import { SwitchoverGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-docdb/src/endpoint/EndpointParameters.ts b/clients/client-docdb/src/endpoint/EndpointParameters.ts index 1dc6b89669c6b..1e9774efc5621 100644 --- a/clients/client-docdb/src/endpoint/EndpointParameters.ts +++ b/clients/client-docdb/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-docdb/src/endpoint/endpointResolver.ts b/clients/client-docdb/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-docdb/src/endpoint/endpointResolver.ts +++ b/clients/client-docdb/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-docdb/src/extensionConfiguration.ts b/clients/client-docdb/src/extensionConfiguration.ts index 0c223e45bc405..e22a562965e74 100644 --- a/clients/client-docdb/src/extensionConfiguration.ts +++ b/clients/client-docdb/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-docdb/src/models/DocDBServiceException.ts b/clients/client-docdb/src/models/DocDBServiceException.ts index 8aca94ae56cf8..445e06436814c 100644 --- a/clients/client-docdb/src/models/DocDBServiceException.ts +++ b/clients/client-docdb/src/models/DocDBServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-docdb/src/models/errors.ts b/clients/client-docdb/src/models/errors.ts index ac9ffcd41423c..37747e4d141e8 100644 --- a/clients/client-docdb/src/models/errors.ts +++ b/clients/client-docdb/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DocDBServiceException as __BaseException } from "./DocDBServiceException"; diff --git a/clients/client-docdb/src/pagination/DescribeCertificatesPaginator.ts b/clients/client-docdb/src/pagination/DescribeCertificatesPaginator.ts index db27584eb8872..80d954cf4f34d 100644 --- a/clients/client-docdb/src/pagination/DescribeCertificatesPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCertificatesCommand, diff --git a/clients/client-docdb/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts b/clients/client-docdb/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts index 82eabf7e9037e..81e5e7e8b2f3d 100644 --- a/clients/client-docdb/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterParameterGroupsCommand, diff --git a/clients/client-docdb/src/pagination/DescribeDBClusterParametersPaginator.ts b/clients/client-docdb/src/pagination/DescribeDBClusterParametersPaginator.ts index 5f0712c242da6..6892b02936a9d 100644 --- a/clients/client-docdb/src/pagination/DescribeDBClusterParametersPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeDBClusterParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterParametersCommand, diff --git a/clients/client-docdb/src/pagination/DescribeDBClusterSnapshotsPaginator.ts b/clients/client-docdb/src/pagination/DescribeDBClusterSnapshotsPaginator.ts index 7741ccbc2bb9a..c0f5c7c046bfb 100644 --- a/clients/client-docdb/src/pagination/DescribeDBClusterSnapshotsPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeDBClusterSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterSnapshotsCommand, diff --git a/clients/client-docdb/src/pagination/DescribeDBClustersPaginator.ts b/clients/client-docdb/src/pagination/DescribeDBClustersPaginator.ts index df3fa09cfc732..ab77c11e8db32 100644 --- a/clients/client-docdb/src/pagination/DescribeDBClustersPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeDBClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClustersCommand, diff --git a/clients/client-docdb/src/pagination/DescribeDBEngineVersionsPaginator.ts b/clients/client-docdb/src/pagination/DescribeDBEngineVersionsPaginator.ts index 70a4237a2b0f9..0a0a088ad60de 100644 --- a/clients/client-docdb/src/pagination/DescribeDBEngineVersionsPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeDBEngineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBEngineVersionsCommand, diff --git a/clients/client-docdb/src/pagination/DescribeDBInstancesPaginator.ts b/clients/client-docdb/src/pagination/DescribeDBInstancesPaginator.ts index 5448c47ae8533..d28c8009dfc12 100644 --- a/clients/client-docdb/src/pagination/DescribeDBInstancesPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeDBInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBInstancesCommand, diff --git a/clients/client-docdb/src/pagination/DescribeDBSubnetGroupsPaginator.ts b/clients/client-docdb/src/pagination/DescribeDBSubnetGroupsPaginator.ts index 4b80cc0479fec..6a23ba2302194 100644 --- a/clients/client-docdb/src/pagination/DescribeDBSubnetGroupsPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeDBSubnetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBSubnetGroupsCommand, diff --git a/clients/client-docdb/src/pagination/DescribeEventSubscriptionsPaginator.ts b/clients/client-docdb/src/pagination/DescribeEventSubscriptionsPaginator.ts index a797d44dbeefc..5d40674e4ea06 100644 --- a/clients/client-docdb/src/pagination/DescribeEventSubscriptionsPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeEventSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventSubscriptionsCommand, diff --git a/clients/client-docdb/src/pagination/DescribeEventsPaginator.ts b/clients/client-docdb/src/pagination/DescribeEventsPaginator.ts index 4d2dbcf31de54..a42a33989176b 100644 --- a/clients/client-docdb/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsCommand, diff --git a/clients/client-docdb/src/pagination/DescribeGlobalClustersPaginator.ts b/clients/client-docdb/src/pagination/DescribeGlobalClustersPaginator.ts index 54c1cc50cc8bd..69e7bd632fea8 100644 --- a/clients/client-docdb/src/pagination/DescribeGlobalClustersPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeGlobalClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGlobalClustersCommand, diff --git a/clients/client-docdb/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts b/clients/client-docdb/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts index ffd55a40b6439..7f409d03a79a7 100644 --- a/clients/client-docdb/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrderableDBInstanceOptionsCommand, diff --git a/clients/client-docdb/src/pagination/DescribePendingMaintenanceActionsPaginator.ts b/clients/client-docdb/src/pagination/DescribePendingMaintenanceActionsPaginator.ts index d203ed76751f3..24a6d129835e6 100644 --- a/clients/client-docdb/src/pagination/DescribePendingMaintenanceActionsPaginator.ts +++ b/clients/client-docdb/src/pagination/DescribePendingMaintenanceActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePendingMaintenanceActionsCommand, diff --git a/clients/client-docdb/src/pagination/Interfaces.ts b/clients/client-docdb/src/pagination/Interfaces.ts index 4964283239a85..75ebf50a8d2da 100644 --- a/clients/client-docdb/src/pagination/Interfaces.ts +++ b/clients/client-docdb/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DocDBClient } from "../DocDBClient"; diff --git a/clients/client-docdb/src/runtimeConfig.browser.ts b/clients/client-docdb/src/runtimeConfig.browser.ts index 37ade6a0675b9..727102c9afe43 100644 --- a/clients/client-docdb/src/runtimeConfig.browser.ts +++ b/clients/client-docdb/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DocDBClientConfig } from "./DocDBClient"; + +import type { DocDBClientConfig } from "./DocDBClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-docdb/src/runtimeConfig.native.ts b/clients/client-docdb/src/runtimeConfig.native.ts index e895d5d02fe4d..ee2e5f49ec59f 100644 --- a/clients/client-docdb/src/runtimeConfig.native.ts +++ b/clients/client-docdb/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DocDBClientConfig } from "./DocDBClient"; +import type { DocDBClientConfig } from "./DocDBClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-docdb/src/runtimeConfig.shared.ts b/clients/client-docdb/src/runtimeConfig.shared.ts index 0be3d4438df90..4642ebc20eefa 100644 --- a/clients/client-docdb/src/runtimeConfig.shared.ts +++ b/clients/client-docdb/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDocDBHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DocDBClientConfig } from "./DocDBClient"; +import type { DocDBClientConfig } from "./DocDBClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-docdb/src/runtimeConfig.ts b/clients/client-docdb/src/runtimeConfig.ts index 7ceaab2ef19bb..84bc913401084 100644 --- a/clients/client-docdb/src/runtimeConfig.ts +++ b/clients/client-docdb/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DocDBClientConfig } from "./DocDBClient"; + +import type { DocDBClientConfig } from "./DocDBClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-docdb/src/runtimeExtensions.ts b/clients/client-docdb/src/runtimeExtensions.ts index 00560dca4c3a2..709d38ca492da 100644 --- a/clients/client-docdb/src/runtimeExtensions.ts +++ b/clients/client-docdb/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DocDBExtensionConfiguration } from "./extensionConfiguration"; +import type { DocDBExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-docdb/src/schemas/schemas_0.ts b/clients/client-docdb/src/schemas/schemas_0.ts index d995ff54b082e..43b46e943b495 100644 --- a/clients/client-docdb/src/schemas/schemas_0.ts +++ b/clients/client-docdb/src/schemas/schemas_0.ts @@ -513,7 +513,7 @@ const n0 = "com.amazonaws.docdb"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { DocDBServiceException as __DocDBServiceException } from "../models/DocDBServiceException"; import { diff --git a/clients/client-drs/package.json b/clients/client-drs/package.json index 1174fc3d4a625..510e9ec8eac81 100644 --- a/clients/client-drs/package.json +++ b/clients/client-drs/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-drs/src/Drs.ts b/clients/client-drs/src/Drs.ts index 4925db0361fdb..889fcf07bcb30 100644 --- a/clients/client-drs/src/Drs.ts +++ b/clients/client-drs/src/Drs.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateSourceNetworkStackCommand, @@ -244,7 +244,7 @@ import { UpdateReplicationConfigurationTemplateCommandInput, UpdateReplicationConfigurationTemplateCommandOutput, } from "./commands/UpdateReplicationConfigurationTemplateCommand"; -import { DrsClient, DrsClientConfig } from "./DrsClient"; +import { DrsClient } from "./DrsClient"; const commands = { AssociateSourceNetworkStackCommand, diff --git a/clients/client-drs/src/DrsClient.ts b/clients/client-drs/src/DrsClient.ts index 2ede9db35c91d..99b3776ceb2ff 100644 --- a/clients/client-drs/src/DrsClient.ts +++ b/clients/client-drs/src/DrsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDrsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -222,7 +231,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-drs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-drs/src/auth/httpAuthExtensionConfiguration.ts index 972f6f8aeeda3..f7d2c73a55b2d 100644 --- a/clients/client-drs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-drs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DrsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DrsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-drs/src/auth/httpAuthSchemeProvider.ts b/clients/client-drs/src/auth/httpAuthSchemeProvider.ts index 534926b8ce602..09b02d0ee8e43 100644 --- a/clients/client-drs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-drs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DrsClientConfig, DrsClientResolvedConfig } from "../DrsClient"; +import { type DrsClientResolvedConfig, DrsClientConfig } from "../DrsClient"; /** * @internal diff --git a/clients/client-drs/src/commands/AssociateSourceNetworkStackCommand.ts b/clients/client-drs/src/commands/AssociateSourceNetworkStackCommand.ts index 9c52471ddfed4..75bbe53786070 100644 --- a/clients/client-drs/src/commands/AssociateSourceNetworkStackCommand.ts +++ b/clients/client-drs/src/commands/AssociateSourceNetworkStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSourceNetworkStackRequest, AssociateSourceNetworkStackResponse } from "../models/models_0"; +import type { AssociateSourceNetworkStackRequest, AssociateSourceNetworkStackResponse } from "../models/models_0"; import { AssociateSourceNetworkStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/CreateExtendedSourceServerCommand.ts b/clients/client-drs/src/commands/CreateExtendedSourceServerCommand.ts index 9aea33a3ed540..b53076c9adfc7 100644 --- a/clients/client-drs/src/commands/CreateExtendedSourceServerCommand.ts +++ b/clients/client-drs/src/commands/CreateExtendedSourceServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExtendedSourceServerRequest, CreateExtendedSourceServerResponse } from "../models/models_0"; +import type { CreateExtendedSourceServerRequest, CreateExtendedSourceServerResponse } from "../models/models_0"; import { CreateExtendedSourceServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/CreateLaunchConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/CreateLaunchConfigurationTemplateCommand.ts index ba16cee8a4e3b..b19e9d5c3a8be 100644 --- a/clients/client-drs/src/commands/CreateLaunchConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/CreateLaunchConfigurationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateLaunchConfigurationTemplateRequest, CreateLaunchConfigurationTemplateResponse, } from "../models/models_0"; diff --git a/clients/client-drs/src/commands/CreateReplicationConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/CreateReplicationConfigurationTemplateCommand.ts index a440718c505b8..111eeeba945d6 100644 --- a/clients/client-drs/src/commands/CreateReplicationConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/CreateReplicationConfigurationTemplateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReplicationConfigurationTemplateRequest, ReplicationConfigurationTemplate } from "../models/models_0"; +import type { + CreateReplicationConfigurationTemplateRequest, + ReplicationConfigurationTemplate, +} from "../models/models_0"; import { CreateReplicationConfigurationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/CreateSourceNetworkCommand.ts b/clients/client-drs/src/commands/CreateSourceNetworkCommand.ts index 746d68a944afd..b0c1c082705b2 100644 --- a/clients/client-drs/src/commands/CreateSourceNetworkCommand.ts +++ b/clients/client-drs/src/commands/CreateSourceNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSourceNetworkRequest, CreateSourceNetworkResponse } from "../models/models_0"; +import type { CreateSourceNetworkRequest, CreateSourceNetworkResponse } from "../models/models_0"; import { CreateSourceNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DeleteJobCommand.ts b/clients/client-drs/src/commands/DeleteJobCommand.ts index 84dd714672f54..4541a1e0ae282 100644 --- a/clients/client-drs/src/commands/DeleteJobCommand.ts +++ b/clients/client-drs/src/commands/DeleteJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteJobRequest, DeleteJobResponse } from "../models/models_0"; +import type { DeleteJobRequest, DeleteJobResponse } from "../models/models_0"; import { DeleteJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DeleteLaunchActionCommand.ts b/clients/client-drs/src/commands/DeleteLaunchActionCommand.ts index 5abb72a8612d7..5c3dc66c7c783 100644 --- a/clients/client-drs/src/commands/DeleteLaunchActionCommand.ts +++ b/clients/client-drs/src/commands/DeleteLaunchActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLaunchActionRequest, DeleteLaunchActionResponse } from "../models/models_0"; +import type { DeleteLaunchActionRequest, DeleteLaunchActionResponse } from "../models/models_0"; import { DeleteLaunchAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DeleteLaunchConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/DeleteLaunchConfigurationTemplateCommand.ts index fa22b66718374..d37da63195546 100644 --- a/clients/client-drs/src/commands/DeleteLaunchConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/DeleteLaunchConfigurationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteLaunchConfigurationTemplateRequest, DeleteLaunchConfigurationTemplateResponse, } from "../models/models_0"; diff --git a/clients/client-drs/src/commands/DeleteRecoveryInstanceCommand.ts b/clients/client-drs/src/commands/DeleteRecoveryInstanceCommand.ts index 20b63084b666f..0aef73871a94a 100644 --- a/clients/client-drs/src/commands/DeleteRecoveryInstanceCommand.ts +++ b/clients/client-drs/src/commands/DeleteRecoveryInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecoveryInstanceRequest } from "../models/models_0"; +import type { DeleteRecoveryInstanceRequest } from "../models/models_0"; import { DeleteRecoveryInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DeleteReplicationConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/DeleteReplicationConfigurationTemplateCommand.ts index 16111f7c8c83d..916d301815246 100644 --- a/clients/client-drs/src/commands/DeleteReplicationConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/DeleteReplicationConfigurationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteReplicationConfigurationTemplateRequest, DeleteReplicationConfigurationTemplateResponse, } from "../models/models_0"; diff --git a/clients/client-drs/src/commands/DeleteSourceNetworkCommand.ts b/clients/client-drs/src/commands/DeleteSourceNetworkCommand.ts index 7ebb97b0c71c2..d02c0ed0acd22 100644 --- a/clients/client-drs/src/commands/DeleteSourceNetworkCommand.ts +++ b/clients/client-drs/src/commands/DeleteSourceNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSourceNetworkRequest, DeleteSourceNetworkResponse } from "../models/models_0"; +import type { DeleteSourceNetworkRequest, DeleteSourceNetworkResponse } from "../models/models_0"; import { DeleteSourceNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DeleteSourceServerCommand.ts b/clients/client-drs/src/commands/DeleteSourceServerCommand.ts index 6b5d0da0e1734..c643fb2bcaebd 100644 --- a/clients/client-drs/src/commands/DeleteSourceServerCommand.ts +++ b/clients/client-drs/src/commands/DeleteSourceServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSourceServerRequest, DeleteSourceServerResponse } from "../models/models_0"; +import type { DeleteSourceServerRequest, DeleteSourceServerResponse } from "../models/models_0"; import { DeleteSourceServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DescribeJobLogItemsCommand.ts b/clients/client-drs/src/commands/DescribeJobLogItemsCommand.ts index 4c3e3deabd132..eeb91a62dde06 100644 --- a/clients/client-drs/src/commands/DescribeJobLogItemsCommand.ts +++ b/clients/client-drs/src/commands/DescribeJobLogItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobLogItemsRequest, DescribeJobLogItemsResponse } from "../models/models_0"; +import type { DescribeJobLogItemsRequest, DescribeJobLogItemsResponse } from "../models/models_0"; import { DescribeJobLogItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DescribeJobsCommand.ts b/clients/client-drs/src/commands/DescribeJobsCommand.ts index 5ca7dbb7ca9e7..082e8974b0943 100644 --- a/clients/client-drs/src/commands/DescribeJobsCommand.ts +++ b/clients/client-drs/src/commands/DescribeJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0"; +import type { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0"; import { DescribeJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts b/clients/client-drs/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts index 6acbd114091fb..bb3f8eb90db22 100644 --- a/clients/client-drs/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts +++ b/clients/client-drs/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeLaunchConfigurationTemplatesRequest, DescribeLaunchConfigurationTemplatesResponse, } from "../models/models_0"; diff --git a/clients/client-drs/src/commands/DescribeRecoveryInstancesCommand.ts b/clients/client-drs/src/commands/DescribeRecoveryInstancesCommand.ts index 3f65411f8d23c..b036e6d729992 100644 --- a/clients/client-drs/src/commands/DescribeRecoveryInstancesCommand.ts +++ b/clients/client-drs/src/commands/DescribeRecoveryInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecoveryInstancesRequest, DescribeRecoveryInstancesResponse } from "../models/models_0"; +import type { DescribeRecoveryInstancesRequest, DescribeRecoveryInstancesResponse } from "../models/models_0"; import { DescribeRecoveryInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DescribeRecoverySnapshotsCommand.ts b/clients/client-drs/src/commands/DescribeRecoverySnapshotsCommand.ts index 808d7109ee791..7d0e888876155 100644 --- a/clients/client-drs/src/commands/DescribeRecoverySnapshotsCommand.ts +++ b/clients/client-drs/src/commands/DescribeRecoverySnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecoverySnapshotsRequest, DescribeRecoverySnapshotsResponse } from "../models/models_0"; +import type { DescribeRecoverySnapshotsRequest, DescribeRecoverySnapshotsResponse } from "../models/models_0"; import { DescribeRecoverySnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts b/clients/client-drs/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts index a9004f2621bd8..948e647709548 100644 --- a/clients/client-drs/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts +++ b/clients/client-drs/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReplicationConfigurationTemplatesRequest, DescribeReplicationConfigurationTemplatesResponse, } from "../models/models_0"; diff --git a/clients/client-drs/src/commands/DescribeSourceNetworksCommand.ts b/clients/client-drs/src/commands/DescribeSourceNetworksCommand.ts index 850fef5db2c54..d34447818b2be 100644 --- a/clients/client-drs/src/commands/DescribeSourceNetworksCommand.ts +++ b/clients/client-drs/src/commands/DescribeSourceNetworksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSourceNetworksRequest, DescribeSourceNetworksResponse } from "../models/models_0"; +import type { DescribeSourceNetworksRequest, DescribeSourceNetworksResponse } from "../models/models_0"; import { DescribeSourceNetworks } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DescribeSourceServersCommand.ts b/clients/client-drs/src/commands/DescribeSourceServersCommand.ts index 0ac96b2c8be7f..f52846d01c0aa 100644 --- a/clients/client-drs/src/commands/DescribeSourceServersCommand.ts +++ b/clients/client-drs/src/commands/DescribeSourceServersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSourceServersRequest, DescribeSourceServersResponse } from "../models/models_0"; +import type { DescribeSourceServersRequest, DescribeSourceServersResponse } from "../models/models_0"; import { DescribeSourceServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DisconnectRecoveryInstanceCommand.ts b/clients/client-drs/src/commands/DisconnectRecoveryInstanceCommand.ts index 6b435188834c5..9f5b98a8de211 100644 --- a/clients/client-drs/src/commands/DisconnectRecoveryInstanceCommand.ts +++ b/clients/client-drs/src/commands/DisconnectRecoveryInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisconnectRecoveryInstanceRequest } from "../models/models_0"; +import type { DisconnectRecoveryInstanceRequest } from "../models/models_0"; import { DisconnectRecoveryInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/DisconnectSourceServerCommand.ts b/clients/client-drs/src/commands/DisconnectSourceServerCommand.ts index 76f81cafdd950..9c2bf886a4709 100644 --- a/clients/client-drs/src/commands/DisconnectSourceServerCommand.ts +++ b/clients/client-drs/src/commands/DisconnectSourceServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisconnectSourceServerRequest, SourceServer } from "../models/models_0"; +import type { DisconnectSourceServerRequest, SourceServer } from "../models/models_0"; import { DisconnectSourceServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/ExportSourceNetworkCfnTemplateCommand.ts b/clients/client-drs/src/commands/ExportSourceNetworkCfnTemplateCommand.ts index 51b17fc2880d1..71c8d21a6483b 100644 --- a/clients/client-drs/src/commands/ExportSourceNetworkCfnTemplateCommand.ts +++ b/clients/client-drs/src/commands/ExportSourceNetworkCfnTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportSourceNetworkCfnTemplateRequest, ExportSourceNetworkCfnTemplateResponse } from "../models/models_0"; +import type { ExportSourceNetworkCfnTemplateRequest, ExportSourceNetworkCfnTemplateResponse } from "../models/models_0"; import { ExportSourceNetworkCfnTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/GetFailbackReplicationConfigurationCommand.ts b/clients/client-drs/src/commands/GetFailbackReplicationConfigurationCommand.ts index 8b6fbb7b06395..9e04f2a63a4aa 100644 --- a/clients/client-drs/src/commands/GetFailbackReplicationConfigurationCommand.ts +++ b/clients/client-drs/src/commands/GetFailbackReplicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetFailbackReplicationConfigurationRequest, GetFailbackReplicationConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-drs/src/commands/GetLaunchConfigurationCommand.ts b/clients/client-drs/src/commands/GetLaunchConfigurationCommand.ts index 7f38100c7e38a..0bb268513d112 100644 --- a/clients/client-drs/src/commands/GetLaunchConfigurationCommand.ts +++ b/clients/client-drs/src/commands/GetLaunchConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLaunchConfigurationRequest, LaunchConfiguration } from "../models/models_0"; +import type { GetLaunchConfigurationRequest, LaunchConfiguration } from "../models/models_0"; import { GetLaunchConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/GetReplicationConfigurationCommand.ts b/clients/client-drs/src/commands/GetReplicationConfigurationCommand.ts index b65286ef0bf59..8f84fab75b04b 100644 --- a/clients/client-drs/src/commands/GetReplicationConfigurationCommand.ts +++ b/clients/client-drs/src/commands/GetReplicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReplicationConfigurationRequest, ReplicationConfiguration } from "../models/models_0"; +import type { GetReplicationConfigurationRequest, ReplicationConfiguration } from "../models/models_0"; import { GetReplicationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/InitializeServiceCommand.ts b/clients/client-drs/src/commands/InitializeServiceCommand.ts index dde57e284c291..3ef959fb8a71f 100644 --- a/clients/client-drs/src/commands/InitializeServiceCommand.ts +++ b/clients/client-drs/src/commands/InitializeServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InitializeServiceRequest, InitializeServiceResponse } from "../models/models_0"; +import type { InitializeServiceRequest, InitializeServiceResponse } from "../models/models_0"; import { InitializeService } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/ListExtensibleSourceServersCommand.ts b/clients/client-drs/src/commands/ListExtensibleSourceServersCommand.ts index b711cd9e55e99..53c1c127cc8c8 100644 --- a/clients/client-drs/src/commands/ListExtensibleSourceServersCommand.ts +++ b/clients/client-drs/src/commands/ListExtensibleSourceServersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExtensibleSourceServersRequest, ListExtensibleSourceServersResponse } from "../models/models_0"; +import type { ListExtensibleSourceServersRequest, ListExtensibleSourceServersResponse } from "../models/models_0"; import { ListExtensibleSourceServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/ListLaunchActionsCommand.ts b/clients/client-drs/src/commands/ListLaunchActionsCommand.ts index b137fdf34f637..8abd87ad57dbd 100644 --- a/clients/client-drs/src/commands/ListLaunchActionsCommand.ts +++ b/clients/client-drs/src/commands/ListLaunchActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLaunchActionsRequest, ListLaunchActionsResponse } from "../models/models_0"; +import type { ListLaunchActionsRequest, ListLaunchActionsResponse } from "../models/models_0"; import { ListLaunchActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/ListStagingAccountsCommand.ts b/clients/client-drs/src/commands/ListStagingAccountsCommand.ts index 715c89b18d2c9..1c8b40793d6d9 100644 --- a/clients/client-drs/src/commands/ListStagingAccountsCommand.ts +++ b/clients/client-drs/src/commands/ListStagingAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStagingAccountsRequest, ListStagingAccountsResponse } from "../models/models_0"; +import type { ListStagingAccountsRequest, ListStagingAccountsResponse } from "../models/models_0"; import { ListStagingAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/ListTagsForResourceCommand.ts b/clients/client-drs/src/commands/ListTagsForResourceCommand.ts index 6571914154cad..6116577eba116 100644 --- a/clients/client-drs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-drs/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/PutLaunchActionCommand.ts b/clients/client-drs/src/commands/PutLaunchActionCommand.ts index 5e8513d047b17..e865d2fd11ff5 100644 --- a/clients/client-drs/src/commands/PutLaunchActionCommand.ts +++ b/clients/client-drs/src/commands/PutLaunchActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutLaunchActionRequest, PutLaunchActionResponse } from "../models/models_0"; +import type { PutLaunchActionRequest, PutLaunchActionResponse } from "../models/models_0"; import { PutLaunchAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/RetryDataReplicationCommand.ts b/clients/client-drs/src/commands/RetryDataReplicationCommand.ts index a6dc11e1ff58d..8759fae6f3996 100644 --- a/clients/client-drs/src/commands/RetryDataReplicationCommand.ts +++ b/clients/client-drs/src/commands/RetryDataReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetryDataReplicationRequest, SourceServer } from "../models/models_0"; +import type { RetryDataReplicationRequest, SourceServer } from "../models/models_0"; import { RetryDataReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/ReverseReplicationCommand.ts b/clients/client-drs/src/commands/ReverseReplicationCommand.ts index 8766c81696344..e7df8221f24b6 100644 --- a/clients/client-drs/src/commands/ReverseReplicationCommand.ts +++ b/clients/client-drs/src/commands/ReverseReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReverseReplicationRequest, ReverseReplicationResponse } from "../models/models_0"; +import type { ReverseReplicationRequest, ReverseReplicationResponse } from "../models/models_0"; import { ReverseReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/StartFailbackLaunchCommand.ts b/clients/client-drs/src/commands/StartFailbackLaunchCommand.ts index 3cc75dd47012a..33faca410e511 100644 --- a/clients/client-drs/src/commands/StartFailbackLaunchCommand.ts +++ b/clients/client-drs/src/commands/StartFailbackLaunchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFailbackLaunchRequest, StartFailbackLaunchResponse } from "../models/models_0"; +import type { StartFailbackLaunchRequest, StartFailbackLaunchResponse } from "../models/models_0"; import { StartFailbackLaunch } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/StartRecoveryCommand.ts b/clients/client-drs/src/commands/StartRecoveryCommand.ts index 86355381641ea..e948ea8ca8eb6 100644 --- a/clients/client-drs/src/commands/StartRecoveryCommand.ts +++ b/clients/client-drs/src/commands/StartRecoveryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRecoveryRequest, StartRecoveryResponse } from "../models/models_0"; +import type { StartRecoveryRequest, StartRecoveryResponse } from "../models/models_0"; import { StartRecovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/StartReplicationCommand.ts b/clients/client-drs/src/commands/StartReplicationCommand.ts index 4bf50c3e3d282..fd16f55e79de0 100644 --- a/clients/client-drs/src/commands/StartReplicationCommand.ts +++ b/clients/client-drs/src/commands/StartReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReplicationRequest, StartReplicationResponse } from "../models/models_0"; +import type { StartReplicationRequest, StartReplicationResponse } from "../models/models_0"; import { StartReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/StartSourceNetworkRecoveryCommand.ts b/clients/client-drs/src/commands/StartSourceNetworkRecoveryCommand.ts index da1a912ebbb46..8076faab07e8c 100644 --- a/clients/client-drs/src/commands/StartSourceNetworkRecoveryCommand.ts +++ b/clients/client-drs/src/commands/StartSourceNetworkRecoveryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSourceNetworkRecoveryRequest, StartSourceNetworkRecoveryResponse } from "../models/models_0"; +import type { StartSourceNetworkRecoveryRequest, StartSourceNetworkRecoveryResponse } from "../models/models_0"; import { StartSourceNetworkRecovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/StartSourceNetworkReplicationCommand.ts b/clients/client-drs/src/commands/StartSourceNetworkReplicationCommand.ts index ba941424f85e3..a1240b7ecb06a 100644 --- a/clients/client-drs/src/commands/StartSourceNetworkReplicationCommand.ts +++ b/clients/client-drs/src/commands/StartSourceNetworkReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSourceNetworkReplicationRequest, StartSourceNetworkReplicationResponse } from "../models/models_0"; +import type { StartSourceNetworkReplicationRequest, StartSourceNetworkReplicationResponse } from "../models/models_0"; import { StartSourceNetworkReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/StopFailbackCommand.ts b/clients/client-drs/src/commands/StopFailbackCommand.ts index 08b10039ba1df..67618bfb2e88b 100644 --- a/clients/client-drs/src/commands/StopFailbackCommand.ts +++ b/clients/client-drs/src/commands/StopFailbackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopFailbackRequest } from "../models/models_0"; +import type { StopFailbackRequest } from "../models/models_0"; import { StopFailback } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/StopReplicationCommand.ts b/clients/client-drs/src/commands/StopReplicationCommand.ts index f35694224e11c..9700f793e26ee 100644 --- a/clients/client-drs/src/commands/StopReplicationCommand.ts +++ b/clients/client-drs/src/commands/StopReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopReplicationRequest, StopReplicationResponse } from "../models/models_0"; +import type { StopReplicationRequest, StopReplicationResponse } from "../models/models_0"; import { StopReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/StopSourceNetworkReplicationCommand.ts b/clients/client-drs/src/commands/StopSourceNetworkReplicationCommand.ts index 0a2b8570ae988..5e2d5764fd89a 100644 --- a/clients/client-drs/src/commands/StopSourceNetworkReplicationCommand.ts +++ b/clients/client-drs/src/commands/StopSourceNetworkReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopSourceNetworkReplicationRequest, StopSourceNetworkReplicationResponse } from "../models/models_0"; +import type { StopSourceNetworkReplicationRequest, StopSourceNetworkReplicationResponse } from "../models/models_0"; import { StopSourceNetworkReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/TagResourceCommand.ts b/clients/client-drs/src/commands/TagResourceCommand.ts index 5356f9388164a..e65621b220319 100644 --- a/clients/client-drs/src/commands/TagResourceCommand.ts +++ b/clients/client-drs/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/TerminateRecoveryInstancesCommand.ts b/clients/client-drs/src/commands/TerminateRecoveryInstancesCommand.ts index 0f4ec37181211..a81471411d590 100644 --- a/clients/client-drs/src/commands/TerminateRecoveryInstancesCommand.ts +++ b/clients/client-drs/src/commands/TerminateRecoveryInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateRecoveryInstancesRequest, TerminateRecoveryInstancesResponse } from "../models/models_0"; +import type { TerminateRecoveryInstancesRequest, TerminateRecoveryInstancesResponse } from "../models/models_0"; import { TerminateRecoveryInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/UntagResourceCommand.ts b/clients/client-drs/src/commands/UntagResourceCommand.ts index 800566a4437c1..66717dec64e20 100644 --- a/clients/client-drs/src/commands/UntagResourceCommand.ts +++ b/clients/client-drs/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/UpdateFailbackReplicationConfigurationCommand.ts b/clients/client-drs/src/commands/UpdateFailbackReplicationConfigurationCommand.ts index dfa4d2ffe39ba..5a308baa74772 100644 --- a/clients/client-drs/src/commands/UpdateFailbackReplicationConfigurationCommand.ts +++ b/clients/client-drs/src/commands/UpdateFailbackReplicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFailbackReplicationConfigurationRequest } from "../models/models_0"; +import type { UpdateFailbackReplicationConfigurationRequest } from "../models/models_0"; import { UpdateFailbackReplicationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/UpdateLaunchConfigurationCommand.ts b/clients/client-drs/src/commands/UpdateLaunchConfigurationCommand.ts index d4fe8df6b228e..837d4fa99eae0 100644 --- a/clients/client-drs/src/commands/UpdateLaunchConfigurationCommand.ts +++ b/clients/client-drs/src/commands/UpdateLaunchConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchConfiguration, UpdateLaunchConfigurationRequest } from "../models/models_0"; +import type { LaunchConfiguration, UpdateLaunchConfigurationRequest } from "../models/models_0"; import { UpdateLaunchConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/UpdateLaunchConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/UpdateLaunchConfigurationTemplateCommand.ts index b908b3d1bb842..aa922b5397ecd 100644 --- a/clients/client-drs/src/commands/UpdateLaunchConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/UpdateLaunchConfigurationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateLaunchConfigurationTemplateRequest, UpdateLaunchConfigurationTemplateResponse, } from "../models/models_0"; diff --git a/clients/client-drs/src/commands/UpdateReplicationConfigurationCommand.ts b/clients/client-drs/src/commands/UpdateReplicationConfigurationCommand.ts index e00e5182e027c..de8facfcfdbd0 100644 --- a/clients/client-drs/src/commands/UpdateReplicationConfigurationCommand.ts +++ b/clients/client-drs/src/commands/UpdateReplicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplicationConfiguration, UpdateReplicationConfigurationRequest } from "../models/models_0"; +import type { ReplicationConfiguration, UpdateReplicationConfigurationRequest } from "../models/models_0"; import { UpdateReplicationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/commands/UpdateReplicationConfigurationTemplateCommand.ts b/clients/client-drs/src/commands/UpdateReplicationConfigurationTemplateCommand.ts index 677c2ac40c72d..411182957f315 100644 --- a/clients/client-drs/src/commands/UpdateReplicationConfigurationTemplateCommand.ts +++ b/clients/client-drs/src/commands/UpdateReplicationConfigurationTemplateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; +import type { DrsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DrsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplicationConfigurationTemplate, UpdateReplicationConfigurationTemplateRequest } from "../models/models_0"; +import type { + ReplicationConfigurationTemplate, + UpdateReplicationConfigurationTemplateRequest, +} from "../models/models_0"; import { UpdateReplicationConfigurationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-drs/src/endpoint/EndpointParameters.ts b/clients/client-drs/src/endpoint/EndpointParameters.ts index c0693dc8e05b5..cc35205805417 100644 --- a/clients/client-drs/src/endpoint/EndpointParameters.ts +++ b/clients/client-drs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-drs/src/endpoint/endpointResolver.ts b/clients/client-drs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-drs/src/endpoint/endpointResolver.ts +++ b/clients/client-drs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-drs/src/extensionConfiguration.ts b/clients/client-drs/src/extensionConfiguration.ts index 0b56f05d73cb7..eea81550ec7f7 100644 --- a/clients/client-drs/src/extensionConfiguration.ts +++ b/clients/client-drs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-drs/src/models/DrsServiceException.ts b/clients/client-drs/src/models/DrsServiceException.ts index 7006cdd494188..b3e8500fc0dae 100644 --- a/clients/client-drs/src/models/DrsServiceException.ts +++ b/clients/client-drs/src/models/DrsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-drs/src/models/errors.ts b/clients/client-drs/src/models/errors.ts index a9da97b01d4ce..5e900acb70105 100644 --- a/clients/client-drs/src/models/errors.ts +++ b/clients/client-drs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DrsServiceException as __BaseException } from "./DrsServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-drs/src/pagination/DescribeJobLogItemsPaginator.ts b/clients/client-drs/src/pagination/DescribeJobLogItemsPaginator.ts index 50adbb9d56e16..16f14c73a3379 100644 --- a/clients/client-drs/src/pagination/DescribeJobLogItemsPaginator.ts +++ b/clients/client-drs/src/pagination/DescribeJobLogItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeJobLogItemsCommand, diff --git a/clients/client-drs/src/pagination/DescribeJobsPaginator.ts b/clients/client-drs/src/pagination/DescribeJobsPaginator.ts index cb989b618fbe7..d2e1541af7dd6 100644 --- a/clients/client-drs/src/pagination/DescribeJobsPaginator.ts +++ b/clients/client-drs/src/pagination/DescribeJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeJobsCommand, diff --git a/clients/client-drs/src/pagination/DescribeLaunchConfigurationTemplatesPaginator.ts b/clients/client-drs/src/pagination/DescribeLaunchConfigurationTemplatesPaginator.ts index ee5e91e01941e..b432da57e654d 100644 --- a/clients/client-drs/src/pagination/DescribeLaunchConfigurationTemplatesPaginator.ts +++ b/clients/client-drs/src/pagination/DescribeLaunchConfigurationTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLaunchConfigurationTemplatesCommand, diff --git a/clients/client-drs/src/pagination/DescribeRecoveryInstancesPaginator.ts b/clients/client-drs/src/pagination/DescribeRecoveryInstancesPaginator.ts index 909c2d92bcfb2..f4269a38c1494 100644 --- a/clients/client-drs/src/pagination/DescribeRecoveryInstancesPaginator.ts +++ b/clients/client-drs/src/pagination/DescribeRecoveryInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRecoveryInstancesCommand, diff --git a/clients/client-drs/src/pagination/DescribeRecoverySnapshotsPaginator.ts b/clients/client-drs/src/pagination/DescribeRecoverySnapshotsPaginator.ts index c8e6a99a6e09e..81485b856c563 100644 --- a/clients/client-drs/src/pagination/DescribeRecoverySnapshotsPaginator.ts +++ b/clients/client-drs/src/pagination/DescribeRecoverySnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRecoverySnapshotsCommand, diff --git a/clients/client-drs/src/pagination/DescribeReplicationConfigurationTemplatesPaginator.ts b/clients/client-drs/src/pagination/DescribeReplicationConfigurationTemplatesPaginator.ts index 541a2c31899b6..ccb2b05e66240 100644 --- a/clients/client-drs/src/pagination/DescribeReplicationConfigurationTemplatesPaginator.ts +++ b/clients/client-drs/src/pagination/DescribeReplicationConfigurationTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationConfigurationTemplatesCommand, diff --git a/clients/client-drs/src/pagination/DescribeSourceNetworksPaginator.ts b/clients/client-drs/src/pagination/DescribeSourceNetworksPaginator.ts index 81441e77869e8..53990256c1fc5 100644 --- a/clients/client-drs/src/pagination/DescribeSourceNetworksPaginator.ts +++ b/clients/client-drs/src/pagination/DescribeSourceNetworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSourceNetworksCommand, diff --git a/clients/client-drs/src/pagination/DescribeSourceServersPaginator.ts b/clients/client-drs/src/pagination/DescribeSourceServersPaginator.ts index 04495be5e5708..983a8f747f422 100644 --- a/clients/client-drs/src/pagination/DescribeSourceServersPaginator.ts +++ b/clients/client-drs/src/pagination/DescribeSourceServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSourceServersCommand, diff --git a/clients/client-drs/src/pagination/Interfaces.ts b/clients/client-drs/src/pagination/Interfaces.ts index 8fb106d10a9cf..4e2074450eadb 100644 --- a/clients/client-drs/src/pagination/Interfaces.ts +++ b/clients/client-drs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DrsClient } from "../DrsClient"; diff --git a/clients/client-drs/src/pagination/ListExtensibleSourceServersPaginator.ts b/clients/client-drs/src/pagination/ListExtensibleSourceServersPaginator.ts index ccc04b86dcbde..2cfe9eadad24d 100644 --- a/clients/client-drs/src/pagination/ListExtensibleSourceServersPaginator.ts +++ b/clients/client-drs/src/pagination/ListExtensibleSourceServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExtensibleSourceServersCommand, diff --git a/clients/client-drs/src/pagination/ListLaunchActionsPaginator.ts b/clients/client-drs/src/pagination/ListLaunchActionsPaginator.ts index c810295c70083..f70ed429a386d 100644 --- a/clients/client-drs/src/pagination/ListLaunchActionsPaginator.ts +++ b/clients/client-drs/src/pagination/ListLaunchActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLaunchActionsCommand, diff --git a/clients/client-drs/src/pagination/ListStagingAccountsPaginator.ts b/clients/client-drs/src/pagination/ListStagingAccountsPaginator.ts index b4094ae6e49fa..42df04d68d015 100644 --- a/clients/client-drs/src/pagination/ListStagingAccountsPaginator.ts +++ b/clients/client-drs/src/pagination/ListStagingAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStagingAccountsCommand, diff --git a/clients/client-drs/src/runtimeConfig.browser.ts b/clients/client-drs/src/runtimeConfig.browser.ts index 9863d87e7299d..707d5253db164 100644 --- a/clients/client-drs/src/runtimeConfig.browser.ts +++ b/clients/client-drs/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DrsClientConfig } from "./DrsClient"; + +import type { DrsClientConfig } from "./DrsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-drs/src/runtimeConfig.native.ts b/clients/client-drs/src/runtimeConfig.native.ts index e3611707ca938..4ebfdc84cc119 100644 --- a/clients/client-drs/src/runtimeConfig.native.ts +++ b/clients/client-drs/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DrsClientConfig } from "./DrsClient"; +import type { DrsClientConfig } from "./DrsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-drs/src/runtimeConfig.shared.ts b/clients/client-drs/src/runtimeConfig.shared.ts index 7a273af6575b3..08f4f9d3c3256 100644 --- a/clients/client-drs/src/runtimeConfig.shared.ts +++ b/clients/client-drs/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDrsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DrsClientConfig } from "./DrsClient"; +import type { DrsClientConfig } from "./DrsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-drs/src/runtimeConfig.ts b/clients/client-drs/src/runtimeConfig.ts index b990f11b6e54f..745f1a3260308 100644 --- a/clients/client-drs/src/runtimeConfig.ts +++ b/clients/client-drs/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DrsClientConfig } from "./DrsClient"; + +import type { DrsClientConfig } from "./DrsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-drs/src/runtimeExtensions.ts b/clients/client-drs/src/runtimeExtensions.ts index 68b22f7541ca8..4f749d90dfe7c 100644 --- a/clients/client-drs/src/runtimeExtensions.ts +++ b/clients/client-drs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DrsExtensionConfiguration } from "./extensionConfiguration"; +import type { DrsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-drs/src/schemas/schemas_0.ts b/clients/client-drs/src/schemas/schemas_0.ts index da762cea1cd12..13c2fa827de9f 100644 --- a/clients/client-drs/src/schemas/schemas_0.ts +++ b/clients/client-drs/src/schemas/schemas_0.ts @@ -475,7 +475,7 @@ const n0 = "com.amazonaws.drs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-dsql/package.json b/clients/client-dsql/package.json index dc34c525a3122..b0d88cfd50fdd 100644 --- a/clients/client-dsql/package.json +++ b/clients/client-dsql/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-dsql/src/DSQL.ts b/clients/client-dsql/src/DSQL.ts index 36b563fe3961e..5685587b9a3e7 100644 --- a/clients/client-dsql/src/DSQL.ts +++ b/clients/client-dsql/src/DSQL.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateClusterCommand, @@ -54,7 +54,7 @@ import { UpdateClusterCommandInput, UpdateClusterCommandOutput, } from "./commands/UpdateClusterCommand"; -import { DSQLClient, DSQLClientConfig } from "./DSQLClient"; +import { DSQLClient } from "./DSQLClient"; const commands = { CreateClusterCommand, diff --git a/clients/client-dsql/src/DSQLClient.ts b/clients/client-dsql/src/DSQLClient.ts index 3db13ffef5b7b..70aa60ffb10b7 100644 --- a/clients/client-dsql/src/DSQLClient.ts +++ b/clients/client-dsql/src/DSQLClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDSQLHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand"; @@ -85,7 +94,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-dsql/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-dsql/src/auth/httpAuthExtensionConfiguration.ts index 76b39f3390976..d960df902073d 100644 --- a/clients/client-dsql/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-dsql/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DSQLHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DSQLHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-dsql/src/auth/httpAuthSchemeProvider.ts b/clients/client-dsql/src/auth/httpAuthSchemeProvider.ts index 921801bfe7def..e2ccaafad9d97 100644 --- a/clients/client-dsql/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-dsql/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DSQLClientConfig, DSQLClientResolvedConfig } from "../DSQLClient"; +import { type DSQLClientResolvedConfig, DSQLClientConfig } from "../DSQLClient"; /** * @internal diff --git a/clients/client-dsql/src/commands/CreateClusterCommand.ts b/clients/client-dsql/src/commands/CreateClusterCommand.ts index 9db6f0b024dfb..915868f0feff4 100644 --- a/clients/client-dsql/src/commands/CreateClusterCommand.ts +++ b/clients/client-dsql/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterInput, CreateClusterOutput } from "../models/models_0"; +import type { CreateClusterInput, CreateClusterOutput } from "../models/models_0"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/DeleteClusterCommand.ts b/clients/client-dsql/src/commands/DeleteClusterCommand.ts index 2b81251ad3fc3..596884a5bf73d 100644 --- a/clients/client-dsql/src/commands/DeleteClusterCommand.ts +++ b/clients/client-dsql/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterInput, DeleteClusterOutput } from "../models/models_0"; +import type { DeleteClusterInput, DeleteClusterOutput } from "../models/models_0"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/DeleteClusterPolicyCommand.ts b/clients/client-dsql/src/commands/DeleteClusterPolicyCommand.ts index cb3b18cb50500..b4bfa2be8d2d7 100644 --- a/clients/client-dsql/src/commands/DeleteClusterPolicyCommand.ts +++ b/clients/client-dsql/src/commands/DeleteClusterPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterPolicyInput, DeleteClusterPolicyOutput } from "../models/models_0"; +import type { DeleteClusterPolicyInput, DeleteClusterPolicyOutput } from "../models/models_0"; import { DeleteClusterPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/GetClusterCommand.ts b/clients/client-dsql/src/commands/GetClusterCommand.ts index 512fc67e3217c..7ee47bb42f25a 100644 --- a/clients/client-dsql/src/commands/GetClusterCommand.ts +++ b/clients/client-dsql/src/commands/GetClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetClusterInput, GetClusterOutput } from "../models/models_0"; +import type { GetClusterInput, GetClusterOutput } from "../models/models_0"; import { GetCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/GetClusterPolicyCommand.ts b/clients/client-dsql/src/commands/GetClusterPolicyCommand.ts index 7b13b01025cac..85d912a6879a5 100644 --- a/clients/client-dsql/src/commands/GetClusterPolicyCommand.ts +++ b/clients/client-dsql/src/commands/GetClusterPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetClusterPolicyInput, GetClusterPolicyOutput } from "../models/models_0"; +import type { GetClusterPolicyInput, GetClusterPolicyOutput } from "../models/models_0"; import { GetClusterPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/GetVpcEndpointServiceNameCommand.ts b/clients/client-dsql/src/commands/GetVpcEndpointServiceNameCommand.ts index 9a07a2a93807b..6df419eb5c763 100644 --- a/clients/client-dsql/src/commands/GetVpcEndpointServiceNameCommand.ts +++ b/clients/client-dsql/src/commands/GetVpcEndpointServiceNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVpcEndpointServiceNameInput, GetVpcEndpointServiceNameOutput } from "../models/models_0"; +import type { GetVpcEndpointServiceNameInput, GetVpcEndpointServiceNameOutput } from "../models/models_0"; import { GetVpcEndpointServiceName } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/ListClustersCommand.ts b/clients/client-dsql/src/commands/ListClustersCommand.ts index cdf320e99d805..2f95a4acbef34 100644 --- a/clients/client-dsql/src/commands/ListClustersCommand.ts +++ b/clients/client-dsql/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClustersInput, ListClustersOutput } from "../models/models_0"; +import type { ListClustersInput, ListClustersOutput } from "../models/models_0"; import { ListClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/ListTagsForResourceCommand.ts b/clients/client-dsql/src/commands/ListTagsForResourceCommand.ts index 65ea05f226c67..61c4d9eacc0ee 100644 --- a/clients/client-dsql/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-dsql/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/PutClusterPolicyCommand.ts b/clients/client-dsql/src/commands/PutClusterPolicyCommand.ts index 86998c2e4b5d0..2e85bb0cbe950 100644 --- a/clients/client-dsql/src/commands/PutClusterPolicyCommand.ts +++ b/clients/client-dsql/src/commands/PutClusterPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutClusterPolicyInput, PutClusterPolicyOutput } from "../models/models_0"; +import type { PutClusterPolicyInput, PutClusterPolicyOutput } from "../models/models_0"; import { PutClusterPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/TagResourceCommand.ts b/clients/client-dsql/src/commands/TagResourceCommand.ts index 11ffc58007e52..a550bf4872b93 100644 --- a/clients/client-dsql/src/commands/TagResourceCommand.ts +++ b/clients/client-dsql/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput } from "../models/models_0"; +import type { TagResourceInput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/UntagResourceCommand.ts b/clients/client-dsql/src/commands/UntagResourceCommand.ts index 741f515181652..7f39c65a0e7c5 100644 --- a/clients/client-dsql/src/commands/UntagResourceCommand.ts +++ b/clients/client-dsql/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput } from "../models/models_0"; +import type { UntagResourceInput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/commands/UpdateClusterCommand.ts b/clients/client-dsql/src/commands/UpdateClusterCommand.ts index dd2d79734d512..5b59c979bbd5e 100644 --- a/clients/client-dsql/src/commands/UpdateClusterCommand.ts +++ b/clients/client-dsql/src/commands/UpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; +import type { DSQLClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DSQLClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterInput, UpdateClusterOutput } from "../models/models_0"; +import type { UpdateClusterInput, UpdateClusterOutput } from "../models/models_0"; import { UpdateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-dsql/src/endpoint/EndpointParameters.ts b/clients/client-dsql/src/endpoint/EndpointParameters.ts index ad52b83043064..ceb1a9accfb1c 100644 --- a/clients/client-dsql/src/endpoint/EndpointParameters.ts +++ b/clients/client-dsql/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-dsql/src/endpoint/endpointResolver.ts b/clients/client-dsql/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-dsql/src/endpoint/endpointResolver.ts +++ b/clients/client-dsql/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-dsql/src/extensionConfiguration.ts b/clients/client-dsql/src/extensionConfiguration.ts index b9998f0208810..68948369fc235 100644 --- a/clients/client-dsql/src/extensionConfiguration.ts +++ b/clients/client-dsql/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-dsql/src/models/DSQLServiceException.ts b/clients/client-dsql/src/models/DSQLServiceException.ts index 03f7ccc1ac6e4..9d43827e2987a 100644 --- a/clients/client-dsql/src/models/DSQLServiceException.ts +++ b/clients/client-dsql/src/models/DSQLServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-dsql/src/models/errors.ts b/clients/client-dsql/src/models/errors.ts index 31f4bf963380e..25dae6be6e5fd 100644 --- a/clients/client-dsql/src/models/errors.ts +++ b/clients/client-dsql/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DSQLServiceException as __BaseException } from "./DSQLServiceException"; import { ValidationExceptionReason } from "./enums"; diff --git a/clients/client-dsql/src/pagination/Interfaces.ts b/clients/client-dsql/src/pagination/Interfaces.ts index d0c625bfc3db2..6c8b9ba24ca0f 100644 --- a/clients/client-dsql/src/pagination/Interfaces.ts +++ b/clients/client-dsql/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DSQLClient } from "../DSQLClient"; diff --git a/clients/client-dsql/src/pagination/ListClustersPaginator.ts b/clients/client-dsql/src/pagination/ListClustersPaginator.ts index e755feedf02f4..11a0f7f598ad1 100644 --- a/clients/client-dsql/src/pagination/ListClustersPaginator.ts +++ b/clients/client-dsql/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-dsql/src/runtimeConfig.browser.ts b/clients/client-dsql/src/runtimeConfig.browser.ts index a85d066d25a86..e362a4954407c 100644 --- a/clients/client-dsql/src/runtimeConfig.browser.ts +++ b/clients/client-dsql/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DSQLClientConfig } from "./DSQLClient"; + +import type { DSQLClientConfig } from "./DSQLClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-dsql/src/runtimeConfig.native.ts b/clients/client-dsql/src/runtimeConfig.native.ts index 52bea30ecac20..75e269f53f311 100644 --- a/clients/client-dsql/src/runtimeConfig.native.ts +++ b/clients/client-dsql/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DSQLClientConfig } from "./DSQLClient"; +import type { DSQLClientConfig } from "./DSQLClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-dsql/src/runtimeConfig.shared.ts b/clients/client-dsql/src/runtimeConfig.shared.ts index 57e9403e13877..09f287cc97988 100644 --- a/clients/client-dsql/src/runtimeConfig.shared.ts +++ b/clients/client-dsql/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDSQLHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DSQLClientConfig } from "./DSQLClient"; +import type { DSQLClientConfig } from "./DSQLClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-dsql/src/runtimeConfig.ts b/clients/client-dsql/src/runtimeConfig.ts index 29b151211fbe9..874a3ee400cf2 100644 --- a/clients/client-dsql/src/runtimeConfig.ts +++ b/clients/client-dsql/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DSQLClientConfig } from "./DSQLClient"; + +import type { DSQLClientConfig } from "./DSQLClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-dsql/src/runtimeExtensions.ts b/clients/client-dsql/src/runtimeExtensions.ts index 3f2dffa7d5c38..d9861ad7c7aa5 100644 --- a/clients/client-dsql/src/runtimeExtensions.ts +++ b/clients/client-dsql/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DSQLExtensionConfiguration } from "./extensionConfiguration"; +import type { DSQLExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-dsql/src/schemas/schemas_0.ts b/clients/client-dsql/src/schemas/schemas_0.ts index 9c9bef8024a0b..612e80005a7a2 100644 --- a/clients/client-dsql/src/schemas/schemas_0.ts +++ b/clients/client-dsql/src/schemas/schemas_0.ts @@ -98,7 +98,7 @@ const n0 = "com.amazonaws.dsql"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-dynamodb-streams/package.json b/clients/client-dynamodb-streams/package.json index 7cb5c4020564b..b9914a19bdb7e 100644 --- a/clients/client-dynamodb-streams/package.json +++ b/clients/client-dynamodb-streams/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-dynamodb-streams/src/DynamoDBStreams.ts b/clients/client-dynamodb-streams/src/DynamoDBStreams.ts index 7f5a4e287b0bc..80c4f283b7c2d 100644 --- a/clients/client-dynamodb-streams/src/DynamoDBStreams.ts +++ b/clients/client-dynamodb-streams/src/DynamoDBStreams.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DescribeStreamCommand, @@ -14,7 +14,7 @@ import { GetShardIteratorCommandOutput, } from "./commands/GetShardIteratorCommand"; import { ListStreamsCommand, ListStreamsCommandInput, ListStreamsCommandOutput } from "./commands/ListStreamsCommand"; -import { DynamoDBStreamsClient, DynamoDBStreamsClientConfig } from "./DynamoDBStreamsClient"; +import { DynamoDBStreamsClient } from "./DynamoDBStreamsClient"; const commands = { DescribeStreamCommand, diff --git a/clients/client-dynamodb-streams/src/DynamoDBStreamsClient.ts b/clients/client-dynamodb-streams/src/DynamoDBStreamsClient.ts index 5643cbc0ebf7e..55413e8994f05 100644 --- a/clients/client-dynamodb-streams/src/DynamoDBStreamsClient.ts +++ b/clients/client-dynamodb-streams/src/DynamoDBStreamsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDynamoDBStreamsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DescribeStreamCommandInput, DescribeStreamCommandOutput } from "./commands/DescribeStreamCommand"; @@ -68,7 +77,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-dynamodb-streams/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-dynamodb-streams/src/auth/httpAuthExtensionConfiguration.ts index 7924652b052a4..236a7f6695ed4 100644 --- a/clients/client-dynamodb-streams/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-dynamodb-streams/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DynamoDBStreamsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DynamoDBStreamsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-dynamodb-streams/src/auth/httpAuthSchemeProvider.ts b/clients/client-dynamodb-streams/src/auth/httpAuthSchemeProvider.ts index bc8280dce4e9c..1b8f26ba83733 100644 --- a/clients/client-dynamodb-streams/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-dynamodb-streams/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DynamoDBStreamsClientConfig, DynamoDBStreamsClientResolvedConfig } from "../DynamoDBStreamsClient"; +import { type DynamoDBStreamsClientResolvedConfig, DynamoDBStreamsClientConfig } from "../DynamoDBStreamsClient"; /** * @internal diff --git a/clients/client-dynamodb-streams/src/commands/DescribeStreamCommand.ts b/clients/client-dynamodb-streams/src/commands/DescribeStreamCommand.ts index ae4c8731eac1c..b294ea0f76e1f 100644 --- a/clients/client-dynamodb-streams/src/commands/DescribeStreamCommand.ts +++ b/clients/client-dynamodb-streams/src/commands/DescribeStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBStreamsClient"; +import type { + DynamoDBStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DynamoDBStreamsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0"; +import type { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0"; import { DescribeStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb-streams/src/commands/GetRecordsCommand.ts b/clients/client-dynamodb-streams/src/commands/GetRecordsCommand.ts index b52cc8945ea8c..3b4e4c7e5ceda 100644 --- a/clients/client-dynamodb-streams/src/commands/GetRecordsCommand.ts +++ b/clients/client-dynamodb-streams/src/commands/GetRecordsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBStreamsClient"; +import type { + DynamoDBStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DynamoDBStreamsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecordsInput, GetRecordsOutput } from "../models/models_0"; +import type { GetRecordsInput, GetRecordsOutput } from "../models/models_0"; import { GetRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb-streams/src/commands/GetShardIteratorCommand.ts b/clients/client-dynamodb-streams/src/commands/GetShardIteratorCommand.ts index d65511a935721..0f84182719ee1 100644 --- a/clients/client-dynamodb-streams/src/commands/GetShardIteratorCommand.ts +++ b/clients/client-dynamodb-streams/src/commands/GetShardIteratorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBStreamsClient"; +import type { + DynamoDBStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DynamoDBStreamsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetShardIteratorInput, GetShardIteratorOutput } from "../models/models_0"; +import type { GetShardIteratorInput, GetShardIteratorOutput } from "../models/models_0"; import { GetShardIterator } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb-streams/src/commands/ListStreamsCommand.ts b/clients/client-dynamodb-streams/src/commands/ListStreamsCommand.ts index f67e88b804adc..49f0c3ab3bf2b 100644 --- a/clients/client-dynamodb-streams/src/commands/ListStreamsCommand.ts +++ b/clients/client-dynamodb-streams/src/commands/ListStreamsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBStreamsClient"; +import type { + DynamoDBStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../DynamoDBStreamsClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStreamsInput, ListStreamsOutput } from "../models/models_0"; +import type { ListStreamsInput, ListStreamsOutput } from "../models/models_0"; import { ListStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb-streams/src/endpoint/EndpointParameters.ts b/clients/client-dynamodb-streams/src/endpoint/EndpointParameters.ts index 25bd73b4ff2a1..10fe9a71f08b4 100644 --- a/clients/client-dynamodb-streams/src/endpoint/EndpointParameters.ts +++ b/clients/client-dynamodb-streams/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-dynamodb-streams/src/endpoint/endpointResolver.ts b/clients/client-dynamodb-streams/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-dynamodb-streams/src/endpoint/endpointResolver.ts +++ b/clients/client-dynamodb-streams/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-dynamodb-streams/src/extensionConfiguration.ts b/clients/client-dynamodb-streams/src/extensionConfiguration.ts index fef589dc68a0d..0ef8a799ef1ba 100644 --- a/clients/client-dynamodb-streams/src/extensionConfiguration.ts +++ b/clients/client-dynamodb-streams/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-dynamodb-streams/src/models/DynamoDBStreamsServiceException.ts b/clients/client-dynamodb-streams/src/models/DynamoDBStreamsServiceException.ts index 534247994adf1..2587b80e5bd93 100644 --- a/clients/client-dynamodb-streams/src/models/DynamoDBStreamsServiceException.ts +++ b/clients/client-dynamodb-streams/src/models/DynamoDBStreamsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-dynamodb-streams/src/models/errors.ts b/clients/client-dynamodb-streams/src/models/errors.ts index afd3a0b02fece..a67063c0d1723 100644 --- a/clients/client-dynamodb-streams/src/models/errors.ts +++ b/clients/client-dynamodb-streams/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DynamoDBStreamsServiceException as __BaseException } from "./DynamoDBStreamsServiceException"; diff --git a/clients/client-dynamodb-streams/src/runtimeConfig.browser.ts b/clients/client-dynamodb-streams/src/runtimeConfig.browser.ts index 893b4e72289f2..cb2f718870270 100644 --- a/clients/client-dynamodb-streams/src/runtimeConfig.browser.ts +++ b/clients/client-dynamodb-streams/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DynamoDBStreamsClientConfig } from "./DynamoDBStreamsClient"; + +import type { DynamoDBStreamsClientConfig } from "./DynamoDBStreamsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-dynamodb-streams/src/runtimeConfig.native.ts b/clients/client-dynamodb-streams/src/runtimeConfig.native.ts index 34efff959bbb8..082c0cdbf32f3 100644 --- a/clients/client-dynamodb-streams/src/runtimeConfig.native.ts +++ b/clients/client-dynamodb-streams/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DynamoDBStreamsClientConfig } from "./DynamoDBStreamsClient"; +import type { DynamoDBStreamsClientConfig } from "./DynamoDBStreamsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-dynamodb-streams/src/runtimeConfig.shared.ts b/clients/client-dynamodb-streams/src/runtimeConfig.shared.ts index 087aecc5b903a..a42cfe33dddeb 100644 --- a/clients/client-dynamodb-streams/src/runtimeConfig.shared.ts +++ b/clients/client-dynamodb-streams/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDynamoDBStreamsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DynamoDBStreamsClientConfig } from "./DynamoDBStreamsClient"; +import type { DynamoDBStreamsClientConfig } from "./DynamoDBStreamsClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-dynamodb-streams/src/runtimeConfig.ts b/clients/client-dynamodb-streams/src/runtimeConfig.ts index 38935b87f8f68..cc6ea9fc2c3f6 100644 --- a/clients/client-dynamodb-streams/src/runtimeConfig.ts +++ b/clients/client-dynamodb-streams/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DynamoDBStreamsClientConfig } from "./DynamoDBStreamsClient"; + +import type { DynamoDBStreamsClientConfig } from "./DynamoDBStreamsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-dynamodb-streams/src/runtimeExtensions.ts b/clients/client-dynamodb-streams/src/runtimeExtensions.ts index 6af63bc963f78..36674e36fa491 100644 --- a/clients/client-dynamodb-streams/src/runtimeExtensions.ts +++ b/clients/client-dynamodb-streams/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DynamoDBStreamsExtensionConfiguration } from "./extensionConfiguration"; +import type { DynamoDBStreamsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-dynamodb-streams/src/schemas/schemas_0.ts b/clients/client-dynamodb-streams/src/schemas/schemas_0.ts index b9763a567a0ac..edbb6aa673981 100644 --- a/clients/client-dynamodb-streams/src/schemas/schemas_0.ts +++ b/clients/client-dynamodb-streams/src/schemas/schemas_0.ts @@ -89,7 +89,7 @@ const n0 = "com.amazonaws.dynamodbstreams"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-dynamodb/package.json b/clients/client-dynamodb/package.json index 8c5f753ff2942..2a44b6b3ac983 100644 --- a/clients/client-dynamodb/package.json +++ b/clients/client-dynamodb/package.json @@ -35,26 +35,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-dynamodb/src/DynamoDB.ts b/clients/client-dynamodb/src/DynamoDB.ts index 7ed0be73bc8de..a56229335ae67 100644 --- a/clients/client-dynamodb/src/DynamoDB.ts +++ b/clients/client-dynamodb/src/DynamoDB.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchExecuteStatementCommand, @@ -227,7 +227,7 @@ import { UpdateTimeToLiveCommandInput, UpdateTimeToLiveCommandOutput, } from "./commands/UpdateTimeToLiveCommand"; -import { DynamoDBClient, DynamoDBClientConfig } from "./DynamoDBClient"; +import { DynamoDBClient } from "./DynamoDBClient"; const commands = { BatchExecuteStatementCommand, diff --git a/clients/client-dynamodb/src/DynamoDBClient.ts b/clients/client-dynamodb/src/DynamoDBClient.ts index ddef85e88ad6b..dcb8a016a9a26 100644 --- a/clients/client-dynamodb/src/DynamoDBClient.ts +++ b/clients/client-dynamodb/src/DynamoDBClient.ts @@ -6,25 +6,25 @@ import { resolveAccountIdEndpointModeConfig, } from "@aws-sdk/core/account-id-endpoint"; import { - EndpointDiscoveryInputConfig, - EndpointDiscoveryResolvedConfig, + type EndpointDiscoveryInputConfig, + type EndpointDiscoveryResolvedConfig, resolveEndpointDiscoveryConfig, } from "@aws-sdk/middleware-endpoint-discovery"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -32,40 +32,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultDynamoDBHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -193,7 +202,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-dynamodb/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-dynamodb/src/auth/httpAuthExtensionConfiguration.ts index f60b6472b850c..b20b8bbbce64d 100644 --- a/clients/client-dynamodb/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-dynamodb/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { DynamoDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { DynamoDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-dynamodb/src/auth/httpAuthSchemeProvider.ts b/clients/client-dynamodb/src/auth/httpAuthSchemeProvider.ts index 21e4157fa54ff..3609257f978d6 100644 --- a/clients/client-dynamodb/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-dynamodb/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { DynamoDBClientConfig, DynamoDBClientResolvedConfig } from "../DynamoDBClient"; +import { type DynamoDBClientResolvedConfig, DynamoDBClientConfig } from "../DynamoDBClient"; /** * @internal diff --git a/clients/client-dynamodb/src/commands/BatchExecuteStatementCommand.ts b/clients/client-dynamodb/src/commands/BatchExecuteStatementCommand.ts index f34a41fc9b24c..0cc4304360181 100644 --- a/clients/client-dynamodb/src/commands/BatchExecuteStatementCommand.ts +++ b/clients/client-dynamodb/src/commands/BatchExecuteStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchExecuteStatementInput, BatchExecuteStatementOutput } from "../models/models_0"; +import type { BatchExecuteStatementInput, BatchExecuteStatementOutput } from "../models/models_0"; import { BatchExecuteStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/BatchGetItemCommand.ts b/clients/client-dynamodb/src/commands/BatchGetItemCommand.ts index 7564a791ccc4a..e6eea3009d61a 100644 --- a/clients/client-dynamodb/src/commands/BatchGetItemCommand.ts +++ b/clients/client-dynamodb/src/commands/BatchGetItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetItemInput, BatchGetItemOutput } from "../models/models_0"; +import type { BatchGetItemInput, BatchGetItemOutput } from "../models/models_0"; import { BatchGetItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/BatchWriteItemCommand.ts b/clients/client-dynamodb/src/commands/BatchWriteItemCommand.ts index f4c7eeca84f9c..a9dd0a69345bc 100644 --- a/clients/client-dynamodb/src/commands/BatchWriteItemCommand.ts +++ b/clients/client-dynamodb/src/commands/BatchWriteItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchWriteItemInput, BatchWriteItemOutput } from "../models/models_0"; +import type { BatchWriteItemInput, BatchWriteItemOutput } from "../models/models_0"; import { BatchWriteItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/CreateBackupCommand.ts b/clients/client-dynamodb/src/commands/CreateBackupCommand.ts index 2fd1ebb94ab3d..8e3043160d40d 100644 --- a/clients/client-dynamodb/src/commands/CreateBackupCommand.ts +++ b/clients/client-dynamodb/src/commands/CreateBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBackupInput, CreateBackupOutput } from "../models/models_0"; +import type { CreateBackupInput, CreateBackupOutput } from "../models/models_0"; import { CreateBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/CreateGlobalTableCommand.ts b/clients/client-dynamodb/src/commands/CreateGlobalTableCommand.ts index b76a79fb2866c..6f88cdd8da92d 100644 --- a/clients/client-dynamodb/src/commands/CreateGlobalTableCommand.ts +++ b/clients/client-dynamodb/src/commands/CreateGlobalTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGlobalTableInput, CreateGlobalTableOutput } from "../models/models_0"; +import type { CreateGlobalTableInput, CreateGlobalTableOutput } from "../models/models_0"; import { CreateGlobalTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/CreateTableCommand.ts b/clients/client-dynamodb/src/commands/CreateTableCommand.ts index 2a0e0160d8409..00252b29bcc61 100644 --- a/clients/client-dynamodb/src/commands/CreateTableCommand.ts +++ b/clients/client-dynamodb/src/commands/CreateTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTableInput, CreateTableOutput } from "../models/models_0"; +import type { CreateTableInput, CreateTableOutput } from "../models/models_0"; import { CreateTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DeleteBackupCommand.ts b/clients/client-dynamodb/src/commands/DeleteBackupCommand.ts index 7282f97fbd985..aec2b886364c5 100644 --- a/clients/client-dynamodb/src/commands/DeleteBackupCommand.ts +++ b/clients/client-dynamodb/src/commands/DeleteBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBackupInput, DeleteBackupOutput } from "../models/models_0"; +import type { DeleteBackupInput, DeleteBackupOutput } from "../models/models_0"; import { DeleteBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DeleteItemCommand.ts b/clients/client-dynamodb/src/commands/DeleteItemCommand.ts index 934b30035ea8b..04cc9771aa72f 100644 --- a/clients/client-dynamodb/src/commands/DeleteItemCommand.ts +++ b/clients/client-dynamodb/src/commands/DeleteItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteItemInput, DeleteItemOutput } from "../models/models_0"; +import type { DeleteItemInput, DeleteItemOutput } from "../models/models_0"; import { DeleteItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-dynamodb/src/commands/DeleteResourcePolicyCommand.ts index 1a8b325ff9b10..b031df19bc307 100644 --- a/clients/client-dynamodb/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-dynamodb/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyInput, DeleteResourcePolicyOutput } from "../models/models_0"; +import type { DeleteResourcePolicyInput, DeleteResourcePolicyOutput } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DeleteTableCommand.ts b/clients/client-dynamodb/src/commands/DeleteTableCommand.ts index 5679c160f2acb..7077cb9c77992 100644 --- a/clients/client-dynamodb/src/commands/DeleteTableCommand.ts +++ b/clients/client-dynamodb/src/commands/DeleteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTableInput, DeleteTableOutput } from "../models/models_0"; +import type { DeleteTableInput, DeleteTableOutput } from "../models/models_0"; import { DeleteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeBackupCommand.ts b/clients/client-dynamodb/src/commands/DescribeBackupCommand.ts index c3be5961e1635..db519f013378c 100644 --- a/clients/client-dynamodb/src/commands/DescribeBackupCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBackupInput, DescribeBackupOutput } from "../models/models_0"; +import type { DescribeBackupInput, DescribeBackupOutput } from "../models/models_0"; import { DescribeBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeContinuousBackupsCommand.ts b/clients/client-dynamodb/src/commands/DescribeContinuousBackupsCommand.ts index 0630329d563f6..f7c6c286defc0 100644 --- a/clients/client-dynamodb/src/commands/DescribeContinuousBackupsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeContinuousBackupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContinuousBackupsInput, DescribeContinuousBackupsOutput } from "../models/models_0"; +import type { DescribeContinuousBackupsInput, DescribeContinuousBackupsOutput } from "../models/models_0"; import { DescribeContinuousBackups } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeContributorInsightsCommand.ts b/clients/client-dynamodb/src/commands/DescribeContributorInsightsCommand.ts index 777f0774592fe..f6d9b3f250bc6 100644 --- a/clients/client-dynamodb/src/commands/DescribeContributorInsightsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeContributorInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContributorInsightsInput, DescribeContributorInsightsOutput } from "../models/models_0"; +import type { DescribeContributorInsightsInput, DescribeContributorInsightsOutput } from "../models/models_0"; import { DescribeContributorInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeEndpointsCommand.ts b/clients/client-dynamodb/src/commands/DescribeEndpointsCommand.ts index 46da826dd9676..fe913597828df 100644 --- a/clients/client-dynamodb/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0"; +import type { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0"; import { DescribeEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeExportCommand.ts b/clients/client-dynamodb/src/commands/DescribeExportCommand.ts index 15ee0aa1fbce9..e5f50c63e76fe 100644 --- a/clients/client-dynamodb/src/commands/DescribeExportCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExportInput, DescribeExportOutput } from "../models/models_0"; +import type { DescribeExportInput, DescribeExportOutput } from "../models/models_0"; import { DescribeExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeGlobalTableCommand.ts b/clients/client-dynamodb/src/commands/DescribeGlobalTableCommand.ts index 31e7bc8af4805..d79395b106a37 100644 --- a/clients/client-dynamodb/src/commands/DescribeGlobalTableCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeGlobalTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGlobalTableInput, DescribeGlobalTableOutput } from "../models/models_0"; +import type { DescribeGlobalTableInput, DescribeGlobalTableOutput } from "../models/models_0"; import { DescribeGlobalTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeGlobalTableSettingsCommand.ts b/clients/client-dynamodb/src/commands/DescribeGlobalTableSettingsCommand.ts index 8ae09877eb5a8..509bd129229e5 100644 --- a/clients/client-dynamodb/src/commands/DescribeGlobalTableSettingsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeGlobalTableSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGlobalTableSettingsInput, DescribeGlobalTableSettingsOutput } from "../models/models_0"; +import type { DescribeGlobalTableSettingsInput, DescribeGlobalTableSettingsOutput } from "../models/models_0"; import { DescribeGlobalTableSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeImportCommand.ts b/clients/client-dynamodb/src/commands/DescribeImportCommand.ts index 1bcafa6bfb492..4c7216636470e 100644 --- a/clients/client-dynamodb/src/commands/DescribeImportCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImportInput, DescribeImportOutput } from "../models/models_0"; +import type { DescribeImportInput, DescribeImportOutput } from "../models/models_0"; import { DescribeImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeKinesisStreamingDestinationCommand.ts b/clients/client-dynamodb/src/commands/DescribeKinesisStreamingDestinationCommand.ts index 53d3956502360..678259ce7ad18 100644 --- a/clients/client-dynamodb/src/commands/DescribeKinesisStreamingDestinationCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeKinesisStreamingDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeKinesisStreamingDestinationInput, DescribeKinesisStreamingDestinationOutput, } from "../models/models_0"; diff --git a/clients/client-dynamodb/src/commands/DescribeLimitsCommand.ts b/clients/client-dynamodb/src/commands/DescribeLimitsCommand.ts index 6db64da405a28..be26e8f3b6fb6 100644 --- a/clients/client-dynamodb/src/commands/DescribeLimitsCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLimitsInput, DescribeLimitsOutput } from "../models/models_0"; +import type { DescribeLimitsInput, DescribeLimitsOutput } from "../models/models_0"; import { DescribeLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeTableCommand.ts b/clients/client-dynamodb/src/commands/DescribeTableCommand.ts index c3a0ae1a52128..493a9ae9dbe94 100644 --- a/clients/client-dynamodb/src/commands/DescribeTableCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTableInput, DescribeTableOutput } from "../models/models_0"; +import type { DescribeTableInput, DescribeTableOutput } from "../models/models_0"; import { DescribeTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeTableReplicaAutoScalingCommand.ts b/clients/client-dynamodb/src/commands/DescribeTableReplicaAutoScalingCommand.ts index d03091a43e03c..388cae1f6d2db 100644 --- a/clients/client-dynamodb/src/commands/DescribeTableReplicaAutoScalingCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeTableReplicaAutoScalingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTableReplicaAutoScalingInput, DescribeTableReplicaAutoScalingOutput } from "../models/models_0"; +import type { DescribeTableReplicaAutoScalingInput, DescribeTableReplicaAutoScalingOutput } from "../models/models_0"; import { DescribeTableReplicaAutoScaling } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DescribeTimeToLiveCommand.ts b/clients/client-dynamodb/src/commands/DescribeTimeToLiveCommand.ts index d21eba9b1355b..69b845de8afc0 100644 --- a/clients/client-dynamodb/src/commands/DescribeTimeToLiveCommand.ts +++ b/clients/client-dynamodb/src/commands/DescribeTimeToLiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTimeToLiveInput, DescribeTimeToLiveOutput } from "../models/models_0"; +import type { DescribeTimeToLiveInput, DescribeTimeToLiveOutput } from "../models/models_0"; import { DescribeTimeToLive } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/DisableKinesisStreamingDestinationCommand.ts b/clients/client-dynamodb/src/commands/DisableKinesisStreamingDestinationCommand.ts index 4223b235f679f..47ca36d249aa6 100644 --- a/clients/client-dynamodb/src/commands/DisableKinesisStreamingDestinationCommand.ts +++ b/clients/client-dynamodb/src/commands/DisableKinesisStreamingDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisStreamingDestinationInput, KinesisStreamingDestinationOutput } from "../models/models_0"; +import type { KinesisStreamingDestinationInput, KinesisStreamingDestinationOutput } from "../models/models_0"; import { DisableKinesisStreamingDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/EnableKinesisStreamingDestinationCommand.ts b/clients/client-dynamodb/src/commands/EnableKinesisStreamingDestinationCommand.ts index 1a8bc73ea0054..be6e905fc2743 100644 --- a/clients/client-dynamodb/src/commands/EnableKinesisStreamingDestinationCommand.ts +++ b/clients/client-dynamodb/src/commands/EnableKinesisStreamingDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisStreamingDestinationInput, KinesisStreamingDestinationOutput } from "../models/models_0"; +import type { KinesisStreamingDestinationInput, KinesisStreamingDestinationOutput } from "../models/models_0"; import { EnableKinesisStreamingDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ExecuteStatementCommand.ts b/clients/client-dynamodb/src/commands/ExecuteStatementCommand.ts index 338303547c190..9f46c052e3a0e 100644 --- a/clients/client-dynamodb/src/commands/ExecuteStatementCommand.ts +++ b/clients/client-dynamodb/src/commands/ExecuteStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteStatementInput, ExecuteStatementOutput } from "../models/models_0"; +import type { ExecuteStatementInput, ExecuteStatementOutput } from "../models/models_0"; import { ExecuteStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ExecuteTransactionCommand.ts b/clients/client-dynamodb/src/commands/ExecuteTransactionCommand.ts index a204b3b8a2ee4..3cbb7915a6f26 100644 --- a/clients/client-dynamodb/src/commands/ExecuteTransactionCommand.ts +++ b/clients/client-dynamodb/src/commands/ExecuteTransactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteTransactionInput, ExecuteTransactionOutput } from "../models/models_0"; +import type { ExecuteTransactionInput, ExecuteTransactionOutput } from "../models/models_0"; import { ExecuteTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ExportTableToPointInTimeCommand.ts b/clients/client-dynamodb/src/commands/ExportTableToPointInTimeCommand.ts index 5651c36bcbcaa..a11afb7e796a7 100644 --- a/clients/client-dynamodb/src/commands/ExportTableToPointInTimeCommand.ts +++ b/clients/client-dynamodb/src/commands/ExportTableToPointInTimeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportTableToPointInTimeInput, ExportTableToPointInTimeOutput } from "../models/models_0"; +import type { ExportTableToPointInTimeInput, ExportTableToPointInTimeOutput } from "../models/models_0"; import { ExportTableToPointInTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/GetItemCommand.ts b/clients/client-dynamodb/src/commands/GetItemCommand.ts index 0e9bf18b7a305..e6ecfb7acb8e8 100644 --- a/clients/client-dynamodb/src/commands/GetItemCommand.ts +++ b/clients/client-dynamodb/src/commands/GetItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetItemInput, GetItemOutput } from "../models/models_0"; +import type { GetItemInput, GetItemOutput } from "../models/models_0"; import { GetItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/GetResourcePolicyCommand.ts b/clients/client-dynamodb/src/commands/GetResourcePolicyCommand.ts index 73dd2f963e01c..901906c2e6d9d 100644 --- a/clients/client-dynamodb/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-dynamodb/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyInput, GetResourcePolicyOutput } from "../models/models_0"; +import type { GetResourcePolicyInput, GetResourcePolicyOutput } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ImportTableCommand.ts b/clients/client-dynamodb/src/commands/ImportTableCommand.ts index dfbde9a172cd6..915b65573970b 100644 --- a/clients/client-dynamodb/src/commands/ImportTableCommand.ts +++ b/clients/client-dynamodb/src/commands/ImportTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportTableInput, ImportTableOutput } from "../models/models_0"; +import type { ImportTableInput, ImportTableOutput } from "../models/models_0"; import { ImportTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ListBackupsCommand.ts b/clients/client-dynamodb/src/commands/ListBackupsCommand.ts index 312296b1ec68d..d38652bb42f5d 100644 --- a/clients/client-dynamodb/src/commands/ListBackupsCommand.ts +++ b/clients/client-dynamodb/src/commands/ListBackupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBackupsInput, ListBackupsOutput } from "../models/models_0"; +import type { ListBackupsInput, ListBackupsOutput } from "../models/models_0"; import { ListBackups } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ListContributorInsightsCommand.ts b/clients/client-dynamodb/src/commands/ListContributorInsightsCommand.ts index 591a80e0984a4..1cf3d26d9011d 100644 --- a/clients/client-dynamodb/src/commands/ListContributorInsightsCommand.ts +++ b/clients/client-dynamodb/src/commands/ListContributorInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContributorInsightsInput, ListContributorInsightsOutput } from "../models/models_0"; +import type { ListContributorInsightsInput, ListContributorInsightsOutput } from "../models/models_0"; import { ListContributorInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ListExportsCommand.ts b/clients/client-dynamodb/src/commands/ListExportsCommand.ts index c83f23d994435..17926490c1748 100644 --- a/clients/client-dynamodb/src/commands/ListExportsCommand.ts +++ b/clients/client-dynamodb/src/commands/ListExportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExportsInput, ListExportsOutput } from "../models/models_0"; +import type { ListExportsInput, ListExportsOutput } from "../models/models_0"; import { ListExports } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ListGlobalTablesCommand.ts b/clients/client-dynamodb/src/commands/ListGlobalTablesCommand.ts index 8e322cfd1db7f..420c99742bdab 100644 --- a/clients/client-dynamodb/src/commands/ListGlobalTablesCommand.ts +++ b/clients/client-dynamodb/src/commands/ListGlobalTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGlobalTablesInput, ListGlobalTablesOutput } from "../models/models_0"; +import type { ListGlobalTablesInput, ListGlobalTablesOutput } from "../models/models_0"; import { ListGlobalTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ListImportsCommand.ts b/clients/client-dynamodb/src/commands/ListImportsCommand.ts index b072409c00a45..c37c69be54ffc 100644 --- a/clients/client-dynamodb/src/commands/ListImportsCommand.ts +++ b/clients/client-dynamodb/src/commands/ListImportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImportsInput, ListImportsOutput } from "../models/models_0"; +import type { ListImportsInput, ListImportsOutput } from "../models/models_0"; import { ListImports } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ListTablesCommand.ts b/clients/client-dynamodb/src/commands/ListTablesCommand.ts index 0e1999a9f0f69..58bac3cce6c68 100644 --- a/clients/client-dynamodb/src/commands/ListTablesCommand.ts +++ b/clients/client-dynamodb/src/commands/ListTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTablesInput, ListTablesOutput } from "../models/models_0"; +import type { ListTablesInput, ListTablesOutput } from "../models/models_0"; import { ListTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ListTagsOfResourceCommand.ts b/clients/client-dynamodb/src/commands/ListTagsOfResourceCommand.ts index 06e8a9331617a..bdabe95422478 100644 --- a/clients/client-dynamodb/src/commands/ListTagsOfResourceCommand.ts +++ b/clients/client-dynamodb/src/commands/ListTagsOfResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsOfResourceInput, ListTagsOfResourceOutput } from "../models/models_0"; +import type { ListTagsOfResourceInput, ListTagsOfResourceOutput } from "../models/models_0"; import { ListTagsOfResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/PutItemCommand.ts b/clients/client-dynamodb/src/commands/PutItemCommand.ts index e113c3a92a368..7c574d5443a27 100644 --- a/clients/client-dynamodb/src/commands/PutItemCommand.ts +++ b/clients/client-dynamodb/src/commands/PutItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutItemInput, PutItemOutput } from "../models/models_0"; +import type { PutItemInput, PutItemOutput } from "../models/models_0"; import { PutItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/PutResourcePolicyCommand.ts b/clients/client-dynamodb/src/commands/PutResourcePolicyCommand.ts index 2a8d9e9e3274a..816a7a1ed7bc7 100644 --- a/clients/client-dynamodb/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-dynamodb/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0"; +import type { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/QueryCommand.ts b/clients/client-dynamodb/src/commands/QueryCommand.ts index f75eac5021584..33f476a194c27 100644 --- a/clients/client-dynamodb/src/commands/QueryCommand.ts +++ b/clients/client-dynamodb/src/commands/QueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryInput, QueryOutput } from "../models/models_0"; +import type { QueryInput, QueryOutput } from "../models/models_0"; import { Query } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts b/clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts index 43ab764784ac7..e7ffef0a3f676 100644 --- a/clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts +++ b/clients/client-dynamodb/src/commands/RestoreTableFromBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreTableFromBackupInput, RestoreTableFromBackupOutput } from "../models/models_0"; +import type { RestoreTableFromBackupInput, RestoreTableFromBackupOutput } from "../models/models_0"; import { RestoreTableFromBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/RestoreTableToPointInTimeCommand.ts b/clients/client-dynamodb/src/commands/RestoreTableToPointInTimeCommand.ts index b873869deb1be..48f7b067519bc 100644 --- a/clients/client-dynamodb/src/commands/RestoreTableToPointInTimeCommand.ts +++ b/clients/client-dynamodb/src/commands/RestoreTableToPointInTimeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreTableToPointInTimeInput, RestoreTableToPointInTimeOutput } from "../models/models_0"; +import type { RestoreTableToPointInTimeInput, RestoreTableToPointInTimeOutput } from "../models/models_0"; import { RestoreTableToPointInTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/ScanCommand.ts b/clients/client-dynamodb/src/commands/ScanCommand.ts index 6e8f105d89690..966ebf2e8510a 100644 --- a/clients/client-dynamodb/src/commands/ScanCommand.ts +++ b/clients/client-dynamodb/src/commands/ScanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScanInput, ScanOutput } from "../models/models_0"; +import type { ScanInput, ScanOutput } from "../models/models_0"; import { Scan } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/TagResourceCommand.ts b/clients/client-dynamodb/src/commands/TagResourceCommand.ts index 2cab0d4786304..5b4936fa86293 100644 --- a/clients/client-dynamodb/src/commands/TagResourceCommand.ts +++ b/clients/client-dynamodb/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput } from "../models/models_0"; +import type { TagResourceInput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/TransactGetItemsCommand.ts b/clients/client-dynamodb/src/commands/TransactGetItemsCommand.ts index 1ed5fbc350f99..a382d0cb8c1f3 100644 --- a/clients/client-dynamodb/src/commands/TransactGetItemsCommand.ts +++ b/clients/client-dynamodb/src/commands/TransactGetItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TransactGetItemsInput, TransactGetItemsOutput } from "../models/models_0"; +import type { TransactGetItemsInput, TransactGetItemsOutput } from "../models/models_0"; import { TransactGetItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/TransactWriteItemsCommand.ts b/clients/client-dynamodb/src/commands/TransactWriteItemsCommand.ts index 63a3d9ee52e1f..2f42115aa7e94 100644 --- a/clients/client-dynamodb/src/commands/TransactWriteItemsCommand.ts +++ b/clients/client-dynamodb/src/commands/TransactWriteItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TransactWriteItemsInput, TransactWriteItemsOutput } from "../models/models_0"; +import type { TransactWriteItemsInput, TransactWriteItemsOutput } from "../models/models_0"; import { TransactWriteItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UntagResourceCommand.ts b/clients/client-dynamodb/src/commands/UntagResourceCommand.ts index 3807eb5229424..d61eb22e851a5 100644 --- a/clients/client-dynamodb/src/commands/UntagResourceCommand.ts +++ b/clients/client-dynamodb/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput } from "../models/models_0"; +import type { UntagResourceInput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UpdateContinuousBackupsCommand.ts b/clients/client-dynamodb/src/commands/UpdateContinuousBackupsCommand.ts index cb4d17332057e..048b7851e2dcc 100644 --- a/clients/client-dynamodb/src/commands/UpdateContinuousBackupsCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateContinuousBackupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContinuousBackupsInput, UpdateContinuousBackupsOutput } from "../models/models_0"; +import type { UpdateContinuousBackupsInput, UpdateContinuousBackupsOutput } from "../models/models_0"; import { UpdateContinuousBackups } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UpdateContributorInsightsCommand.ts b/clients/client-dynamodb/src/commands/UpdateContributorInsightsCommand.ts index 2e1df980cb18e..56293e65a4496 100644 --- a/clients/client-dynamodb/src/commands/UpdateContributorInsightsCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateContributorInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContributorInsightsInput, UpdateContributorInsightsOutput } from "../models/models_0"; +import type { UpdateContributorInsightsInput, UpdateContributorInsightsOutput } from "../models/models_0"; import { UpdateContributorInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UpdateGlobalTableCommand.ts b/clients/client-dynamodb/src/commands/UpdateGlobalTableCommand.ts index bfc9c4bc8a8ad..9e6955bc320b8 100644 --- a/clients/client-dynamodb/src/commands/UpdateGlobalTableCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateGlobalTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlobalTableInput, UpdateGlobalTableOutput } from "../models/models_0"; +import type { UpdateGlobalTableInput, UpdateGlobalTableOutput } from "../models/models_0"; import { UpdateGlobalTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UpdateGlobalTableSettingsCommand.ts b/clients/client-dynamodb/src/commands/UpdateGlobalTableSettingsCommand.ts index 0ff0d173383d2..29208e5162c30 100644 --- a/clients/client-dynamodb/src/commands/UpdateGlobalTableSettingsCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateGlobalTableSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlobalTableSettingsInput, UpdateGlobalTableSettingsOutput } from "../models/models_0"; +import type { UpdateGlobalTableSettingsInput, UpdateGlobalTableSettingsOutput } from "../models/models_0"; import { UpdateGlobalTableSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UpdateItemCommand.ts b/clients/client-dynamodb/src/commands/UpdateItemCommand.ts index bc6a7d3c44ec1..7e2d50db4ab76 100644 --- a/clients/client-dynamodb/src/commands/UpdateItemCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateItemInput, UpdateItemOutput } from "../models/models_0"; +import type { UpdateItemInput, UpdateItemOutput } from "../models/models_0"; import { UpdateItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UpdateKinesisStreamingDestinationCommand.ts b/clients/client-dynamodb/src/commands/UpdateKinesisStreamingDestinationCommand.ts index 00709a1a1048a..c2a848e11f669 100644 --- a/clients/client-dynamodb/src/commands/UpdateKinesisStreamingDestinationCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateKinesisStreamingDestinationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateKinesisStreamingDestinationInput, UpdateKinesisStreamingDestinationOutput } from "../models/models_0"; +import type { + UpdateKinesisStreamingDestinationInput, + UpdateKinesisStreamingDestinationOutput, +} from "../models/models_0"; import { UpdateKinesisStreamingDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UpdateTableCommand.ts b/clients/client-dynamodb/src/commands/UpdateTableCommand.ts index d15b5e5fb33ad..d174a32669ee2 100644 --- a/clients/client-dynamodb/src/commands/UpdateTableCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTableInput, UpdateTableOutput } from "../models/models_0"; +import type { UpdateTableInput, UpdateTableOutput } from "../models/models_0"; import { UpdateTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UpdateTableReplicaAutoScalingCommand.ts b/clients/client-dynamodb/src/commands/UpdateTableReplicaAutoScalingCommand.ts index a78c75a562fa8..0c6ef961a9e95 100644 --- a/clients/client-dynamodb/src/commands/UpdateTableReplicaAutoScalingCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateTableReplicaAutoScalingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTableReplicaAutoScalingInput, UpdateTableReplicaAutoScalingOutput } from "../models/models_0"; +import type { UpdateTableReplicaAutoScalingInput, UpdateTableReplicaAutoScalingOutput } from "../models/models_0"; import { UpdateTableReplicaAutoScaling } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/commands/UpdateTimeToLiveCommand.ts b/clients/client-dynamodb/src/commands/UpdateTimeToLiveCommand.ts index e300cc28c7779..91f03d1a7b067 100644 --- a/clients/client-dynamodb/src/commands/UpdateTimeToLiveCommand.ts +++ b/clients/client-dynamodb/src/commands/UpdateTimeToLiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; +import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTimeToLiveInput, UpdateTimeToLiveOutput } from "../models/models_0"; +import type { UpdateTimeToLiveInput, UpdateTimeToLiveOutput } from "../models/models_0"; import { UpdateTimeToLive } from "../schemas/schemas_0"; /** diff --git a/clients/client-dynamodb/src/endpoint/EndpointParameters.ts b/clients/client-dynamodb/src/endpoint/EndpointParameters.ts index 669ad44d616f3..52ee9e5efd900 100644 --- a/clients/client-dynamodb/src/endpoint/EndpointParameters.ts +++ b/clients/client-dynamodb/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-dynamodb/src/endpoint/endpointResolver.ts b/clients/client-dynamodb/src/endpoint/endpointResolver.ts index 18e70e7651f2f..e94729ab92916 100644 --- a/clients/client-dynamodb/src/endpoint/endpointResolver.ts +++ b/clients/client-dynamodb/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-dynamodb/src/extensionConfiguration.ts b/clients/client-dynamodb/src/extensionConfiguration.ts index ad01832f2916d..0fdb95087ca89 100644 --- a/clients/client-dynamodb/src/extensionConfiguration.ts +++ b/clients/client-dynamodb/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-dynamodb/src/models/DynamoDBServiceException.ts b/clients/client-dynamodb/src/models/DynamoDBServiceException.ts index ae6ff749e94b5..bfc4ae29c2888 100644 --- a/clients/client-dynamodb/src/models/DynamoDBServiceException.ts +++ b/clients/client-dynamodb/src/models/DynamoDBServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-dynamodb/src/models/errors.ts b/clients/client-dynamodb/src/models/errors.ts index a3047910542b7..d8c88f9340818 100644 --- a/clients/client-dynamodb/src/models/errors.ts +++ b/clients/client-dynamodb/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DynamoDBServiceException as __BaseException } from "./DynamoDBServiceException"; import { AttributeValue, CancellationReason, ThrottlingReason } from "./models_0"; diff --git a/clients/client-dynamodb/src/pagination/Interfaces.ts b/clients/client-dynamodb/src/pagination/Interfaces.ts index 0a6b130cd4a3c..a16bccd3cb850 100644 --- a/clients/client-dynamodb/src/pagination/Interfaces.ts +++ b/clients/client-dynamodb/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { DynamoDBClient } from "../DynamoDBClient"; diff --git a/clients/client-dynamodb/src/pagination/ListContributorInsightsPaginator.ts b/clients/client-dynamodb/src/pagination/ListContributorInsightsPaginator.ts index a7ee6b7a5c871..cfe0b20136471 100644 --- a/clients/client-dynamodb/src/pagination/ListContributorInsightsPaginator.ts +++ b/clients/client-dynamodb/src/pagination/ListContributorInsightsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContributorInsightsCommand, diff --git a/clients/client-dynamodb/src/pagination/ListExportsPaginator.ts b/clients/client-dynamodb/src/pagination/ListExportsPaginator.ts index 9021ea58aacc3..9a5495f5e5ce5 100644 --- a/clients/client-dynamodb/src/pagination/ListExportsPaginator.ts +++ b/clients/client-dynamodb/src/pagination/ListExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExportsCommand, ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand"; import { DynamoDBClient } from "../DynamoDBClient"; diff --git a/clients/client-dynamodb/src/pagination/ListImportsPaginator.ts b/clients/client-dynamodb/src/pagination/ListImportsPaginator.ts index 7044edda3f554..9d0f527895f10 100644 --- a/clients/client-dynamodb/src/pagination/ListImportsPaginator.ts +++ b/clients/client-dynamodb/src/pagination/ListImportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImportsCommand, ListImportsCommandInput, ListImportsCommandOutput } from "../commands/ListImportsCommand"; import { DynamoDBClient } from "../DynamoDBClient"; diff --git a/clients/client-dynamodb/src/pagination/ListTablesPaginator.ts b/clients/client-dynamodb/src/pagination/ListTablesPaginator.ts index bcf6bdb13703a..a70ebb111f4f3 100644 --- a/clients/client-dynamodb/src/pagination/ListTablesPaginator.ts +++ b/clients/client-dynamodb/src/pagination/ListTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTablesCommand, ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand"; import { DynamoDBClient } from "../DynamoDBClient"; diff --git a/clients/client-dynamodb/src/pagination/QueryPaginator.ts b/clients/client-dynamodb/src/pagination/QueryPaginator.ts index da685a5d70df5..f99256d7cb643 100644 --- a/clients/client-dynamodb/src/pagination/QueryPaginator.ts +++ b/clients/client-dynamodb/src/pagination/QueryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { QueryCommand, QueryCommandInput, QueryCommandOutput } from "../commands/QueryCommand"; import { DynamoDBClient } from "../DynamoDBClient"; diff --git a/clients/client-dynamodb/src/pagination/ScanPaginator.ts b/clients/client-dynamodb/src/pagination/ScanPaginator.ts index 7f578fab3aeb2..68e93c746f10a 100644 --- a/clients/client-dynamodb/src/pagination/ScanPaginator.ts +++ b/clients/client-dynamodb/src/pagination/ScanPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ScanCommand, ScanCommandInput, ScanCommandOutput } from "../commands/ScanCommand"; import { DynamoDBClient } from "../DynamoDBClient"; diff --git a/clients/client-dynamodb/src/runtimeConfig.browser.ts b/clients/client-dynamodb/src/runtimeConfig.browser.ts index b0a24e543be27..23174e11c8bb5 100644 --- a/clients/client-dynamodb/src/runtimeConfig.browser.ts +++ b/clients/client-dynamodb/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DynamoDBClientConfig } from "./DynamoDBClient"; + +import type { DynamoDBClientConfig } from "./DynamoDBClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-dynamodb/src/runtimeConfig.native.ts b/clients/client-dynamodb/src/runtimeConfig.native.ts index cca5b1a8253c3..c1d886b5d327f 100644 --- a/clients/client-dynamodb/src/runtimeConfig.native.ts +++ b/clients/client-dynamodb/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { DynamoDBClientConfig } from "./DynamoDBClient"; +import type { DynamoDBClientConfig } from "./DynamoDBClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-dynamodb/src/runtimeConfig.shared.ts b/clients/client-dynamodb/src/runtimeConfig.shared.ts index b3b475c823992..ad310f20b6022 100644 --- a/clients/client-dynamodb/src/runtimeConfig.shared.ts +++ b/clients/client-dynamodb/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultDynamoDBHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { DynamoDBClientConfig } from "./DynamoDBClient"; +import type { DynamoDBClientConfig } from "./DynamoDBClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-dynamodb/src/runtimeConfig.ts b/clients/client-dynamodb/src/runtimeConfig.ts index 6ed1155ca5235..9f706327509fa 100644 --- a/clients/client-dynamodb/src/runtimeConfig.ts +++ b/clients/client-dynamodb/src/runtimeConfig.ts @@ -17,13 +17,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { DynamoDBClientConfig } from "./DynamoDBClient"; + +import type { DynamoDBClientConfig } from "./DynamoDBClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-dynamodb/src/runtimeExtensions.ts b/clients/client-dynamodb/src/runtimeExtensions.ts index a19369b4f898c..28d35a5877936 100644 --- a/clients/client-dynamodb/src/runtimeExtensions.ts +++ b/clients/client-dynamodb/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { DynamoDBExtensionConfiguration } from "./extensionConfiguration"; +import type { DynamoDBExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-dynamodb/src/schemas/schemas_0.ts b/clients/client-dynamodb/src/schemas/schemas_0.ts index 237b40dfde326..0d034676f6d1e 100644 --- a/clients/client-dynamodb/src/schemas/schemas_0.ts +++ b/clients/client-dynamodb/src/schemas/schemas_0.ts @@ -655,7 +655,7 @@ const n0 = "com.amazonaws.dynamodb"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ebs/package.json b/clients/client-ebs/package.json index 9af629c988ee1..cdd06edc4ae8b 100644 --- a/clients/client-ebs/package.json +++ b/clients/client-ebs/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ebs/src/EBS.ts b/clients/client-ebs/src/EBS.ts index 80cbc90e75bd4..6f34a29daa415 100644 --- a/clients/client-ebs/src/EBS.ts +++ b/clients/client-ebs/src/EBS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CompleteSnapshotCommand, @@ -32,7 +32,7 @@ import { StartSnapshotCommandInput, StartSnapshotCommandOutput, } from "./commands/StartSnapshotCommand"; -import { EBSClient, EBSClientConfig } from "./EBSClient"; +import { EBSClient } from "./EBSClient"; const commands = { CompleteSnapshotCommand, diff --git a/clients/client-ebs/src/EBSClient.ts b/clients/client-ebs/src/EBSClient.ts index 05b5ee5dfb676..0576d49be1d47 100644 --- a/clients/client-ebs/src/EBSClient.ts +++ b/clients/client-ebs/src/EBSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEBSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput } from "./commands/CompleteSnapshotCommand"; @@ -71,7 +80,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ebs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ebs/src/auth/httpAuthExtensionConfiguration.ts index 50b0e741cb087..7384709da3c6a 100644 --- a/clients/client-ebs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ebs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EBSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EBSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ebs/src/auth/httpAuthSchemeProvider.ts b/clients/client-ebs/src/auth/httpAuthSchemeProvider.ts index d0e1076ae835d..b5a240284ad8f 100644 --- a/clients/client-ebs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ebs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EBSClientConfig, EBSClientResolvedConfig } from "../EBSClient"; +import { type EBSClientResolvedConfig, EBSClientConfig } from "../EBSClient"; /** * @internal diff --git a/clients/client-ebs/src/commands/CompleteSnapshotCommand.ts b/clients/client-ebs/src/commands/CompleteSnapshotCommand.ts index a4ba67f0b6a89..c032734c5da03 100644 --- a/clients/client-ebs/src/commands/CompleteSnapshotCommand.ts +++ b/clients/client-ebs/src/commands/CompleteSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; +import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteSnapshotRequest, CompleteSnapshotResponse } from "../models/models_0"; +import type { CompleteSnapshotRequest, CompleteSnapshotResponse } from "../models/models_0"; import { CompleteSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-ebs/src/commands/GetSnapshotBlockCommand.ts b/clients/client-ebs/src/commands/GetSnapshotBlockCommand.ts index 343551fd17eb9..7416c2d710064 100644 --- a/clients/client-ebs/src/commands/GetSnapshotBlockCommand.ts +++ b/clients/client-ebs/src/commands/GetSnapshotBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; -import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; +import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSnapshotBlockRequest, GetSnapshotBlockResponse } from "../models/models_0"; +import { type GetSnapshotBlockRequest, GetSnapshotBlockResponse } from "../models/models_0"; import { GetSnapshotBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-ebs/src/commands/ListChangedBlocksCommand.ts b/clients/client-ebs/src/commands/ListChangedBlocksCommand.ts index eec8bbd26100d..b2c4911fa3426 100644 --- a/clients/client-ebs/src/commands/ListChangedBlocksCommand.ts +++ b/clients/client-ebs/src/commands/ListChangedBlocksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; +import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChangedBlocksRequest, ListChangedBlocksResponse } from "../models/models_0"; +import type { ListChangedBlocksRequest, ListChangedBlocksResponse } from "../models/models_0"; import { ListChangedBlocks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ebs/src/commands/ListSnapshotBlocksCommand.ts b/clients/client-ebs/src/commands/ListSnapshotBlocksCommand.ts index 34394540a6431..ec735fb882e70 100644 --- a/clients/client-ebs/src/commands/ListSnapshotBlocksCommand.ts +++ b/clients/client-ebs/src/commands/ListSnapshotBlocksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; +import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSnapshotBlocksRequest, ListSnapshotBlocksResponse } from "../models/models_0"; +import type { ListSnapshotBlocksRequest, ListSnapshotBlocksResponse } from "../models/models_0"; import { ListSnapshotBlocks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ebs/src/commands/PutSnapshotBlockCommand.ts b/clients/client-ebs/src/commands/PutSnapshotBlockCommand.ts index 4dc25c34cf1b1..768423aab9ff3 100644 --- a/clients/client-ebs/src/commands/PutSnapshotBlockCommand.ts +++ b/clients/client-ebs/src/commands/PutSnapshotBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; -import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; +import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSnapshotBlockRequest, PutSnapshotBlockResponse } from "../models/models_0"; +import { type PutSnapshotBlockResponse, PutSnapshotBlockRequest } from "../models/models_0"; import { PutSnapshotBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-ebs/src/commands/StartSnapshotCommand.ts b/clients/client-ebs/src/commands/StartSnapshotCommand.ts index 3007c0b222d60..4294e7821ed46 100644 --- a/clients/client-ebs/src/commands/StartSnapshotCommand.ts +++ b/clients/client-ebs/src/commands/StartSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; +import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSnapshotRequest, StartSnapshotResponse } from "../models/models_0"; +import type { StartSnapshotRequest, StartSnapshotResponse } from "../models/models_0"; import { StartSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-ebs/src/endpoint/EndpointParameters.ts b/clients/client-ebs/src/endpoint/EndpointParameters.ts index 1b64112a5b4d2..21607f9d53b82 100644 --- a/clients/client-ebs/src/endpoint/EndpointParameters.ts +++ b/clients/client-ebs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ebs/src/endpoint/endpointResolver.ts b/clients/client-ebs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ebs/src/endpoint/endpointResolver.ts +++ b/clients/client-ebs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ebs/src/extensionConfiguration.ts b/clients/client-ebs/src/extensionConfiguration.ts index c4bb7f3668f92..4f53c53e8e4d9 100644 --- a/clients/client-ebs/src/extensionConfiguration.ts +++ b/clients/client-ebs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ebs/src/models/EBSServiceException.ts b/clients/client-ebs/src/models/EBSServiceException.ts index 34330dd1c1eea..994d55e13f137 100644 --- a/clients/client-ebs/src/models/EBSServiceException.ts +++ b/clients/client-ebs/src/models/EBSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ebs/src/models/errors.ts b/clients/client-ebs/src/models/errors.ts index 77b3553499552..cf0fc92016f18 100644 --- a/clients/client-ebs/src/models/errors.ts +++ b/clients/client-ebs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EBSServiceException as __BaseException } from "./EBSServiceException"; import { diff --git a/clients/client-ebs/src/pagination/Interfaces.ts b/clients/client-ebs/src/pagination/Interfaces.ts index 52873f6535b27..5fdf95e75fc5b 100644 --- a/clients/client-ebs/src/pagination/Interfaces.ts +++ b/clients/client-ebs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EBSClient } from "../EBSClient"; diff --git a/clients/client-ebs/src/pagination/ListChangedBlocksPaginator.ts b/clients/client-ebs/src/pagination/ListChangedBlocksPaginator.ts index b92ea307326af..31ddbbd806753 100644 --- a/clients/client-ebs/src/pagination/ListChangedBlocksPaginator.ts +++ b/clients/client-ebs/src/pagination/ListChangedBlocksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChangedBlocksCommand, diff --git a/clients/client-ebs/src/pagination/ListSnapshotBlocksPaginator.ts b/clients/client-ebs/src/pagination/ListSnapshotBlocksPaginator.ts index 969c19abf3c70..4b5a48809bd77 100644 --- a/clients/client-ebs/src/pagination/ListSnapshotBlocksPaginator.ts +++ b/clients/client-ebs/src/pagination/ListSnapshotBlocksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSnapshotBlocksCommand, diff --git a/clients/client-ebs/src/runtimeConfig.browser.ts b/clients/client-ebs/src/runtimeConfig.browser.ts index 3819936c0ba2d..3ea75c22cd395 100644 --- a/clients/client-ebs/src/runtimeConfig.browser.ts +++ b/clients/client-ebs/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EBSClientConfig } from "./EBSClient"; + +import type { EBSClientConfig } from "./EBSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ebs/src/runtimeConfig.native.ts b/clients/client-ebs/src/runtimeConfig.native.ts index 1f31d27c6ae7c..0465c4d848504 100644 --- a/clients/client-ebs/src/runtimeConfig.native.ts +++ b/clients/client-ebs/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EBSClientConfig } from "./EBSClient"; +import type { EBSClientConfig } from "./EBSClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ebs/src/runtimeConfig.shared.ts b/clients/client-ebs/src/runtimeConfig.shared.ts index 73991bbd5033d..6e32bd26518ac 100644 --- a/clients/client-ebs/src/runtimeConfig.shared.ts +++ b/clients/client-ebs/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEBSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EBSClientConfig } from "./EBSClient"; +import type { EBSClientConfig } from "./EBSClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-ebs/src/runtimeConfig.ts b/clients/client-ebs/src/runtimeConfig.ts index bcb78fba12a53..9f1189a5f7a7d 100644 --- a/clients/client-ebs/src/runtimeConfig.ts +++ b/clients/client-ebs/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EBSClientConfig } from "./EBSClient"; + +import type { EBSClientConfig } from "./EBSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ebs/src/runtimeExtensions.ts b/clients/client-ebs/src/runtimeExtensions.ts index 1f2f13c9a61ed..0553b8f3c3ab4 100644 --- a/clients/client-ebs/src/runtimeExtensions.ts +++ b/clients/client-ebs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EBSExtensionConfiguration } from "./extensionConfiguration"; +import type { EBSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ebs/src/schemas/schemas_0.ts b/clients/client-ebs/src/schemas/schemas_0.ts index 1b5497d73c1c3..95fe6b4c1dc0c 100644 --- a/clients/client-ebs/src/schemas/schemas_0.ts +++ b/clients/client-ebs/src/schemas/schemas_0.ts @@ -89,7 +89,7 @@ const n0 = "com.amazonaws.ebs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-ec2-instance-connect/package.json b/clients/client-ec2-instance-connect/package.json index 198c318f7f8de..677a645767df6 100644 --- a/clients/client-ec2-instance-connect/package.json +++ b/clients/client-ec2-instance-connect/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ec2-instance-connect/src/EC2InstanceConnect.ts b/clients/client-ec2-instance-connect/src/EC2InstanceConnect.ts index 00bbb6302f4ce..5b09fcf052b24 100644 --- a/clients/client-ec2-instance-connect/src/EC2InstanceConnect.ts +++ b/clients/client-ec2-instance-connect/src/EC2InstanceConnect.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { SendSerialConsoleSSHPublicKeyCommand, @@ -12,7 +12,7 @@ import { SendSSHPublicKeyCommandInput, SendSSHPublicKeyCommandOutput, } from "./commands/SendSSHPublicKeyCommand"; -import { EC2InstanceConnectClient, EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient"; +import { EC2InstanceConnectClient } from "./EC2InstanceConnectClient"; const commands = { SendSerialConsoleSSHPublicKeyCommand, diff --git a/clients/client-ec2-instance-connect/src/EC2InstanceConnectClient.ts b/clients/client-ec2-instance-connect/src/EC2InstanceConnectClient.ts index aa0f608434121..a8f30006d4e1c 100644 --- a/clients/client-ec2-instance-connect/src/EC2InstanceConnectClient.ts +++ b/clients/client-ec2-instance-connect/src/EC2InstanceConnectClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEC2InstanceConnectHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -69,7 +78,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ec2-instance-connect/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ec2-instance-connect/src/auth/httpAuthExtensionConfiguration.ts index 466bc9ba99c3e..5e0e81f6fccb0 100644 --- a/clients/client-ec2-instance-connect/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ec2-instance-connect/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EC2InstanceConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EC2InstanceConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ec2-instance-connect/src/auth/httpAuthSchemeProvider.ts b/clients/client-ec2-instance-connect/src/auth/httpAuthSchemeProvider.ts index f58f0f7f80ae7..cb61a4d60e61d 100644 --- a/clients/client-ec2-instance-connect/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ec2-instance-connect/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EC2InstanceConnectClientConfig, EC2InstanceConnectClientResolvedConfig } from "../EC2InstanceConnectClient"; +import { + type EC2InstanceConnectClientResolvedConfig, + EC2InstanceConnectClientConfig, +} from "../EC2InstanceConnectClient"; /** * @internal diff --git a/clients/client-ec2-instance-connect/src/commands/SendSSHPublicKeyCommand.ts b/clients/client-ec2-instance-connect/src/commands/SendSSHPublicKeyCommand.ts index 2c14a49d437ef..6bcc1b7eac3d6 100644 --- a/clients/client-ec2-instance-connect/src/commands/SendSSHPublicKeyCommand.ts +++ b/clients/client-ec2-instance-connect/src/commands/SendSSHPublicKeyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { EC2InstanceConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../EC2InstanceConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendSSHPublicKeyRequest, SendSSHPublicKeyResponse } from "../models/models_0"; +import type { SendSSHPublicKeyRequest, SendSSHPublicKeyResponse } from "../models/models_0"; import { SendSSHPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2-instance-connect/src/commands/SendSerialConsoleSSHPublicKeyCommand.ts b/clients/client-ec2-instance-connect/src/commands/SendSerialConsoleSSHPublicKeyCommand.ts index 7d4db57541a69..ef17bb63c2a9e 100644 --- a/clients/client-ec2-instance-connect/src/commands/SendSerialConsoleSSHPublicKeyCommand.ts +++ b/clients/client-ec2-instance-connect/src/commands/SendSerialConsoleSSHPublicKeyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { EC2InstanceConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../EC2InstanceConnectClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendSerialConsoleSSHPublicKeyRequest, SendSerialConsoleSSHPublicKeyResponse } from "../models/models_0"; +import type { SendSerialConsoleSSHPublicKeyRequest, SendSerialConsoleSSHPublicKeyResponse } from "../models/models_0"; import { SendSerialConsoleSSHPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2-instance-connect/src/endpoint/EndpointParameters.ts b/clients/client-ec2-instance-connect/src/endpoint/EndpointParameters.ts index e792b60e45103..f72957f0fb7d1 100644 --- a/clients/client-ec2-instance-connect/src/endpoint/EndpointParameters.ts +++ b/clients/client-ec2-instance-connect/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ec2-instance-connect/src/endpoint/endpointResolver.ts b/clients/client-ec2-instance-connect/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ec2-instance-connect/src/endpoint/endpointResolver.ts +++ b/clients/client-ec2-instance-connect/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ec2-instance-connect/src/extensionConfiguration.ts b/clients/client-ec2-instance-connect/src/extensionConfiguration.ts index e965b1277a471..c5b953366ecca 100644 --- a/clients/client-ec2-instance-connect/src/extensionConfiguration.ts +++ b/clients/client-ec2-instance-connect/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ec2-instance-connect/src/models/EC2InstanceConnectServiceException.ts b/clients/client-ec2-instance-connect/src/models/EC2InstanceConnectServiceException.ts index 87d630847b327..d024f5305e26f 100644 --- a/clients/client-ec2-instance-connect/src/models/EC2InstanceConnectServiceException.ts +++ b/clients/client-ec2-instance-connect/src/models/EC2InstanceConnectServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ec2-instance-connect/src/models/errors.ts b/clients/client-ec2-instance-connect/src/models/errors.ts index cbcba79d1b81e..1b1f57203f3ca 100644 --- a/clients/client-ec2-instance-connect/src/models/errors.ts +++ b/clients/client-ec2-instance-connect/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EC2InstanceConnectServiceException as __BaseException } from "./EC2InstanceConnectServiceException"; diff --git a/clients/client-ec2-instance-connect/src/runtimeConfig.browser.ts b/clients/client-ec2-instance-connect/src/runtimeConfig.browser.ts index f25ac7c3c044b..750399191dd7b 100644 --- a/clients/client-ec2-instance-connect/src/runtimeConfig.browser.ts +++ b/clients/client-ec2-instance-connect/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient"; + +import type { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ec2-instance-connect/src/runtimeConfig.native.ts b/clients/client-ec2-instance-connect/src/runtimeConfig.native.ts index 9b55a291a17fd..b469f71d69758 100644 --- a/clients/client-ec2-instance-connect/src/runtimeConfig.native.ts +++ b/clients/client-ec2-instance-connect/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient"; +import type { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ec2-instance-connect/src/runtimeConfig.shared.ts b/clients/client-ec2-instance-connect/src/runtimeConfig.shared.ts index c322e7e2b8ea0..6f607e5c97b8f 100644 --- a/clients/client-ec2-instance-connect/src/runtimeConfig.shared.ts +++ b/clients/client-ec2-instance-connect/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEC2InstanceConnectHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient"; +import type { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-ec2-instance-connect/src/runtimeConfig.ts b/clients/client-ec2-instance-connect/src/runtimeConfig.ts index 3fe094edc5954..8df767b8b9b89 100644 --- a/clients/client-ec2-instance-connect/src/runtimeConfig.ts +++ b/clients/client-ec2-instance-connect/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient"; + +import type { EC2InstanceConnectClientConfig } from "./EC2InstanceConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ec2-instance-connect/src/runtimeExtensions.ts b/clients/client-ec2-instance-connect/src/runtimeExtensions.ts index 6bb6ed543845f..cf601cf48e83c 100644 --- a/clients/client-ec2-instance-connect/src/runtimeExtensions.ts +++ b/clients/client-ec2-instance-connect/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EC2InstanceConnectExtensionConfiguration } from "./extensionConfiguration"; +import type { EC2InstanceConnectExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ec2-instance-connect/src/schemas/schemas_0.ts b/clients/client-ec2-instance-connect/src/schemas/schemas_0.ts index f5f6b05382e33..37446b298fdb8 100644 --- a/clients/client-ec2-instance-connect/src/schemas/schemas_0.ts +++ b/clients/client-ec2-instance-connect/src/schemas/schemas_0.ts @@ -34,7 +34,7 @@ const n0 = "com.amazonaws.ec2instanceconnect"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { EC2InstanceConnectServiceException as __EC2InstanceConnectServiceException } from "../models/EC2InstanceConnectServiceException"; import { diff --git a/clients/client-ec2/package.json b/clients/client-ec2/package.json index ea63912c317e9..d475fc0c52805 100644 --- a/clients/client-ec2/package.json +++ b/clients/client-ec2/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ec2/src/EC2.ts b/clients/client-ec2/src/EC2.ts index eab8ea216f8c3..4713a73b26f85 100644 --- a/clients/client-ec2/src/EC2.ts +++ b/clients/client-ec2/src/EC2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptAddressTransferCommand, @@ -3675,7 +3675,7 @@ import { WithdrawByoipCidrCommandInput, WithdrawByoipCidrCommandOutput, } from "./commands/WithdrawByoipCidrCommand"; -import { EC2Client, EC2ClientConfig } from "./EC2Client"; +import { EC2Client } from "./EC2Client"; const commands = { AcceptAddressTransferCommand, diff --git a/clients/client-ec2/src/EC2Client.ts b/clients/client-ec2/src/EC2Client.ts index 8b3fa09b4e731..9843a27be0dac 100644 --- a/clients/client-ec2/src/EC2Client.ts +++ b/clients/client-ec2/src/EC2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEC2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -2649,7 +2658,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ec2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ec2/src/auth/httpAuthExtensionConfiguration.ts index 4c42675f0d878..80af89b904091 100644 --- a/clients/client-ec2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ec2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EC2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EC2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ec2/src/auth/httpAuthSchemeProvider.ts b/clients/client-ec2/src/auth/httpAuthSchemeProvider.ts index 8bc700c80ecd5..52b00a759049f 100644 --- a/clients/client-ec2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ec2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EC2ClientConfig, EC2ClientResolvedConfig } from "../EC2Client"; +import { type EC2ClientResolvedConfig, EC2ClientConfig } from "../EC2Client"; /** * @internal diff --git a/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts b/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts index e108978ae3cbb..d575801692e97 100644 --- a/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts +++ b/clients/client-ec2/src/commands/AcceptAddressTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptAddressTransferRequest, AcceptAddressTransferResult } from "../models/models_0"; +import type { AcceptAddressTransferRequest, AcceptAddressTransferResult } from "../models/models_0"; import { AcceptAddressTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AcceptCapacityReservationBillingOwnershipCommand.ts b/clients/client-ec2/src/commands/AcceptCapacityReservationBillingOwnershipCommand.ts index 563740b253398..ff72abbfd8110 100644 --- a/clients/client-ec2/src/commands/AcceptCapacityReservationBillingOwnershipCommand.ts +++ b/clients/client-ec2/src/commands/AcceptCapacityReservationBillingOwnershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AcceptCapacityReservationBillingOwnershipRequest, AcceptCapacityReservationBillingOwnershipResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts b/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts index 40b53a3698d74..737565d171f13 100644 --- a/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts +++ b/clients/client-ec2/src/commands/AcceptReservedInstancesExchangeQuoteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AcceptReservedInstancesExchangeQuoteRequest, AcceptReservedInstancesExchangeQuoteResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts b/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts index 06907b381228d..500b818e00cf5 100644 --- a/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AcceptTransitGatewayMulticastDomainAssociationsRequest, AcceptTransitGatewayMulticastDomainAssociationsResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts index dc61ca3930f4a..510a1351fc408 100644 --- a/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/AcceptTransitGatewayPeeringAttachmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AcceptTransitGatewayPeeringAttachmentRequest, AcceptTransitGatewayPeeringAttachmentResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts index 5c996e8c0f44a..1b7771a51f0ef 100644 --- a/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/AcceptTransitGatewayVpcAttachmentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptTransitGatewayVpcAttachmentRequest, AcceptTransitGatewayVpcAttachmentResult } from "../models/models_0"; +import type { + AcceptTransitGatewayVpcAttachmentRequest, + AcceptTransitGatewayVpcAttachmentResult, +} from "../models/models_0"; import { AcceptTransitGatewayVpcAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts b/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts index 9c15181c5de14..78e4d218d949b 100644 --- a/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/AcceptVpcEndpointConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptVpcEndpointConnectionsRequest, AcceptVpcEndpointConnectionsResult } from "../models/models_0"; +import type { AcceptVpcEndpointConnectionsRequest, AcceptVpcEndpointConnectionsResult } from "../models/models_0"; import { AcceptVpcEndpointConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts index c8caa220cd085..51e6c10005bac 100644 --- a/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/AcceptVpcPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptVpcPeeringConnectionRequest, AcceptVpcPeeringConnectionResult } from "../models/models_0"; +import type { AcceptVpcPeeringConnectionRequest, AcceptVpcPeeringConnectionResult } from "../models/models_0"; import { AcceptVpcPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts b/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts index d93d158186e4b..fa0c04607cb2d 100644 --- a/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/AdvertiseByoipCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AdvertiseByoipCidrRequest, AdvertiseByoipCidrResult } from "../models/models_0"; +import type { AdvertiseByoipCidrRequest, AdvertiseByoipCidrResult } from "../models/models_0"; import { AdvertiseByoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AllocateAddressCommand.ts b/clients/client-ec2/src/commands/AllocateAddressCommand.ts index 8fe29b6f2d7c5..a4df087ed6462 100644 --- a/clients/client-ec2/src/commands/AllocateAddressCommand.ts +++ b/clients/client-ec2/src/commands/AllocateAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllocateAddressRequest, AllocateAddressResult } from "../models/models_0"; +import type { AllocateAddressRequest, AllocateAddressResult } from "../models/models_0"; import { AllocateAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AllocateHostsCommand.ts b/clients/client-ec2/src/commands/AllocateHostsCommand.ts index 015940f54ef83..37fef6a272737 100644 --- a/clients/client-ec2/src/commands/AllocateHostsCommand.ts +++ b/clients/client-ec2/src/commands/AllocateHostsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllocateHostsRequest, AllocateHostsResult } from "../models/models_0"; +import type { AllocateHostsRequest, AllocateHostsResult } from "../models/models_0"; import { AllocateHosts } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts b/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts index 7af688113f4f9..756b868422b3d 100644 --- a/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/AllocateIpamPoolCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllocateIpamPoolCidrRequest, AllocateIpamPoolCidrResult } from "../models/models_0"; +import type { AllocateIpamPoolCidrRequest, AllocateIpamPoolCidrResult } from "../models/models_0"; import { AllocateIpamPoolCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts b/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts index 6931f2bc66d34..7e8f02350d8d8 100644 --- a/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts +++ b/clients/client-ec2/src/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ApplySecurityGroupsToClientVpnTargetNetworkRequest, ApplySecurityGroupsToClientVpnTargetNetworkResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts b/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts index b7e645c1ec8f8..14a2d9ab97342 100644 --- a/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts +++ b/clients/client-ec2/src/commands/AssignIpv6AddressesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssignIpv6AddressesRequest, AssignIpv6AddressesResult } from "../models/models_0"; +import type { AssignIpv6AddressesRequest, AssignIpv6AddressesResult } from "../models/models_0"; import { AssignIpv6Addresses } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts b/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts index 1bb38efad452f..6361b47756f42 100644 --- a/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts +++ b/clients/client-ec2/src/commands/AssignPrivateIpAddressesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssignPrivateIpAddressesRequest, AssignPrivateIpAddressesResult } from "../models/models_0"; +import type { AssignPrivateIpAddressesRequest, AssignPrivateIpAddressesResult } from "../models/models_0"; import { AssignPrivateIpAddresses } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts index 6c3a479b8168a..bcac6edf646d8 100644 --- a/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/AssignPrivateNatGatewayAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssignPrivateNatGatewayAddressRequest, AssignPrivateNatGatewayAddressResult } from "../models/models_0"; +import type { AssignPrivateNatGatewayAddressRequest, AssignPrivateNatGatewayAddressResult } from "../models/models_0"; import { AssignPrivateNatGatewayAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateAddressCommand.ts b/clients/client-ec2/src/commands/AssociateAddressCommand.ts index b9c449f90903c..7de1cec986bef 100644 --- a/clients/client-ec2/src/commands/AssociateAddressCommand.ts +++ b/clients/client-ec2/src/commands/AssociateAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAddressRequest, AssociateAddressResult } from "../models/models_0"; +import type { AssociateAddressRequest, AssociateAddressResult } from "../models/models_0"; import { AssociateAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateCapacityReservationBillingOwnerCommand.ts b/clients/client-ec2/src/commands/AssociateCapacityReservationBillingOwnerCommand.ts index 5eac1f198be24..d041e45471b71 100644 --- a/clients/client-ec2/src/commands/AssociateCapacityReservationBillingOwnerCommand.ts +++ b/clients/client-ec2/src/commands/AssociateCapacityReservationBillingOwnerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateCapacityReservationBillingOwnerRequest, AssociateCapacityReservationBillingOwnerResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts b/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts index 80fb8619af2d0..0f6d8fe0db86a 100644 --- a/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts +++ b/clients/client-ec2/src/commands/AssociateClientVpnTargetNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateClientVpnTargetNetworkRequest, AssociateClientVpnTargetNetworkResult } from "../models/models_0"; +import type { AssociateClientVpnTargetNetworkRequest, AssociateClientVpnTargetNetworkResult } from "../models/models_0"; import { AssociateClientVpnTargetNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts index ff675fa9f25b3..e5184bf3d4206 100644 --- a/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/AssociateDhcpOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDhcpOptionsRequest } from "../models/models_0"; +import type { AssociateDhcpOptionsRequest } from "../models/models_0"; import { AssociateDhcpOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts b/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts index 8d37abe5644f4..bf0186a59e043 100644 --- a/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts +++ b/clients/client-ec2/src/commands/AssociateEnclaveCertificateIamRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateEnclaveCertificateIamRoleRequest, AssociateEnclaveCertificateIamRoleResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts b/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts index e899e0b996bf9..65f09505d749e 100644 --- a/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts +++ b/clients/client-ec2/src/commands/AssociateIamInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateIamInstanceProfileRequest, AssociateIamInstanceProfileResult } from "../models/models_0"; +import type { AssociateIamInstanceProfileRequest, AssociateIamInstanceProfileResult } from "../models/models_0"; import { AssociateIamInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts index 032d230aab2ea..fccee762cf3c1 100644 --- a/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/AssociateInstanceEventWindowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateInstanceEventWindowRequest, AssociateInstanceEventWindowResult } from "../models/models_0"; +import type { AssociateInstanceEventWindowRequest, AssociateInstanceEventWindowResult } from "../models/models_0"; import { AssociateInstanceEventWindow } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts b/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts index c8ea25d59e962..408318a6ad88c 100644 --- a/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/AssociateIpamByoasnCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateIpamByoasnRequest, AssociateIpamByoasnResult } from "../models/models_0"; +import type { AssociateIpamByoasnRequest, AssociateIpamByoasnResult } from "../models/models_0"; import { AssociateIpamByoasn } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts index 19b73ac8107e4..058aba17f03e7 100644 --- a/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/AssociateIpamResourceDiscoveryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateIpamResourceDiscoveryRequest, AssociateIpamResourceDiscoveryResult } from "../models/models_0"; +import type { AssociateIpamResourceDiscoveryRequest, AssociateIpamResourceDiscoveryResult } from "../models/models_0"; import { AssociateIpamResourceDiscovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts index ea8268fd241b1..24c2f020bdec5 100644 --- a/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/AssociateNatGatewayAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateNatGatewayAddressRequest, AssociateNatGatewayAddressResult } from "../models/models_0"; +import type { AssociateNatGatewayAddressRequest, AssociateNatGatewayAddressResult } from "../models/models_0"; import { AssociateNatGatewayAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateRouteServerCommand.ts b/clients/client-ec2/src/commands/AssociateRouteServerCommand.ts index 1431c098da1a6..672e15dd09f8f 100644 --- a/clients/client-ec2/src/commands/AssociateRouteServerCommand.ts +++ b/clients/client-ec2/src/commands/AssociateRouteServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateRouteServerRequest, AssociateRouteServerResult } from "../models/models_0"; +import type { AssociateRouteServerRequest, AssociateRouteServerResult } from "../models/models_0"; import { AssociateRouteServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts b/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts index 1bbc1c7615669..6d0d9bfb6a507 100644 --- a/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/AssociateRouteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateRouteTableRequest, AssociateRouteTableResult } from "../models/models_0"; +import type { AssociateRouteTableRequest, AssociateRouteTableResult } from "../models/models_0"; import { AssociateRouteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateSecurityGroupVpcCommand.ts b/clients/client-ec2/src/commands/AssociateSecurityGroupVpcCommand.ts index e219679f5a400..4f5d6ed877aec 100644 --- a/clients/client-ec2/src/commands/AssociateSecurityGroupVpcCommand.ts +++ b/clients/client-ec2/src/commands/AssociateSecurityGroupVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSecurityGroupVpcRequest, AssociateSecurityGroupVpcResult } from "../models/models_0"; +import type { AssociateSecurityGroupVpcRequest, AssociateSecurityGroupVpcResult } from "../models/models_0"; import { AssociateSecurityGroupVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts b/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts index 69171fa046c39..f8a023d0ad2e5 100644 --- a/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/AssociateSubnetCidrBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSubnetCidrBlockRequest, AssociateSubnetCidrBlockResult } from "../models/models_0"; +import type { AssociateSubnetCidrBlockRequest, AssociateSubnetCidrBlockResult } from "../models/models_0"; import { AssociateSubnetCidrBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts index 63a3de805f9aa..dc523981b7b94 100644 --- a/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTransitGatewayMulticastDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateTransitGatewayMulticastDomainRequest, AssociateTransitGatewayMulticastDomainResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts index 148d2050c1fab..8355db0bfd2d2 100644 --- a/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTransitGatewayPolicyTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateTransitGatewayPolicyTableRequest, AssociateTransitGatewayPolicyTableResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts index 827cfcf69b7b6..c01f05ade9110 100644 --- a/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTransitGatewayRouteTableCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateTransitGatewayRouteTableRequest, AssociateTransitGatewayRouteTableResult } from "../models/models_0"; +import type { + AssociateTransitGatewayRouteTableRequest, + AssociateTransitGatewayRouteTableResult, +} from "../models/models_0"; import { AssociateTransitGatewayRouteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts b/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts index cd2d885a22831..89ce0532a9476 100644 --- a/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/AssociateTrunkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateTrunkInterfaceRequest, AssociateTrunkInterfaceResult } from "../models/models_0"; +import type { AssociateTrunkInterfaceRequest, AssociateTrunkInterfaceResult } from "../models/models_0"; import { AssociateTrunkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts b/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts index 15dc187e1bff2..97727e30b7256 100644 --- a/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/AssociateVpcCidrBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateVpcCidrBlockRequest, AssociateVpcCidrBlockResult } from "../models/models_0"; +import type { AssociateVpcCidrBlockRequest, AssociateVpcCidrBlockResult } from "../models/models_0"; import { AssociateVpcCidrBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts b/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts index 25a2134844833..5769722ef802f 100644 --- a/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts +++ b/clients/client-ec2/src/commands/AttachClassicLinkVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachClassicLinkVpcRequest, AttachClassicLinkVpcResult } from "../models/models_0"; +import type { AttachClassicLinkVpcRequest, AttachClassicLinkVpcResult } from "../models/models_0"; import { AttachClassicLinkVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts b/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts index 695b28c1ac269..9d358ace4e963 100644 --- a/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/AttachInternetGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachInternetGatewayRequest } from "../models/models_0"; +import type { AttachInternetGatewayRequest } from "../models/models_0"; import { AttachInternetGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts index 3c0b4621cecbb..7747142e433f2 100644 --- a/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/AttachNetworkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachNetworkInterfaceRequest, AttachNetworkInterfaceResult } from "../models/models_0"; +import type { AttachNetworkInterfaceRequest, AttachNetworkInterfaceResult } from "../models/models_0"; import { AttachNetworkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts index 0a6bd8c1479e1..cfda496876352 100644 --- a/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/AttachVerifiedAccessTrustProviderCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachVerifiedAccessTrustProviderRequest, AttachVerifiedAccessTrustProviderResult } from "../models/models_0"; +import type { + AttachVerifiedAccessTrustProviderRequest, + AttachVerifiedAccessTrustProviderResult, +} from "../models/models_0"; import { AttachVerifiedAccessTrustProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AttachVolumeCommand.ts b/clients/client-ec2/src/commands/AttachVolumeCommand.ts index 81917c5f6972a..6c84eec4ffe53 100644 --- a/clients/client-ec2/src/commands/AttachVolumeCommand.ts +++ b/clients/client-ec2/src/commands/AttachVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachVolumeRequest, VolumeAttachment } from "../models/models_0"; +import type { AttachVolumeRequest, VolumeAttachment } from "../models/models_0"; import { AttachVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts b/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts index de20a1b4d7892..ce045227ef485 100644 --- a/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/AttachVpnGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachVpnGatewayRequest, AttachVpnGatewayResult } from "../models/models_0"; +import type { AttachVpnGatewayRequest, AttachVpnGatewayResult } from "../models/models_0"; import { AttachVpnGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts b/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts index 489c315594633..5bdd703584d76 100644 --- a/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts +++ b/clients/client-ec2/src/commands/AuthorizeClientVpnIngressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeClientVpnIngressRequest, AuthorizeClientVpnIngressResult } from "../models/models_0"; +import type { AuthorizeClientVpnIngressRequest, AuthorizeClientVpnIngressResult } from "../models/models_0"; import { AuthorizeClientVpnIngress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts b/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts index 50b56d4270410..ace55ea98d13a 100644 --- a/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts +++ b/clients/client-ec2/src/commands/AuthorizeSecurityGroupEgressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeSecurityGroupEgressRequest, AuthorizeSecurityGroupEgressResult } from "../models/models_0"; +import type { AuthorizeSecurityGroupEgressRequest, AuthorizeSecurityGroupEgressResult } from "../models/models_0"; import { AuthorizeSecurityGroupEgress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts b/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts index d03c194a2f900..cfb3fa94a90ab 100644 --- a/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts +++ b/clients/client-ec2/src/commands/AuthorizeSecurityGroupIngressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeSecurityGroupIngressRequest, AuthorizeSecurityGroupIngressResult } from "../models/models_0"; +import type { AuthorizeSecurityGroupIngressRequest, AuthorizeSecurityGroupIngressResult } from "../models/models_0"; import { AuthorizeSecurityGroupIngress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/BundleInstanceCommand.ts b/clients/client-ec2/src/commands/BundleInstanceCommand.ts index f6a73c2a17a61..9ec31187d1df5 100644 --- a/clients/client-ec2/src/commands/BundleInstanceCommand.ts +++ b/clients/client-ec2/src/commands/BundleInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BundleInstanceRequest, BundleInstanceResult } from "../models/models_0"; +import type { BundleInstanceRequest, BundleInstanceResult } from "../models/models_0"; import { BundleInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts b/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts index 27e1c6a52ff92..962e0ccfb4454 100644 --- a/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelBundleTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelBundleTaskRequest, CancelBundleTaskResult } from "../models/models_0"; +import type { CancelBundleTaskRequest, CancelBundleTaskResult } from "../models/models_0"; import { CancelBundleTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts b/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts index abbe76f449109..c7a969bba62c5 100644 --- a/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/CancelCapacityReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelCapacityReservationRequest, CancelCapacityReservationResult } from "../models/models_0"; +import type { CancelCapacityReservationRequest, CancelCapacityReservationResult } from "../models/models_0"; import { CancelCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts b/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts index 652789dd0570c..25adf71cff7cd 100644 --- a/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts +++ b/clients/client-ec2/src/commands/CancelCapacityReservationFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelCapacityReservationFleetsRequest, CancelCapacityReservationFleetsResult } from "../models/models_0"; +import type { CancelCapacityReservationFleetsRequest, CancelCapacityReservationFleetsResult } from "../models/models_0"; import { CancelCapacityReservationFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts b/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts index 7292e21b633b1..e9c79b7946656 100644 --- a/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelConversionTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelConversionRequest } from "../models/models_0"; +import type { CancelConversionRequest } from "../models/models_0"; import { CancelConversionTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelDeclarativePoliciesReportCommand.ts b/clients/client-ec2/src/commands/CancelDeclarativePoliciesReportCommand.ts index ffd7bfe08fbfe..4254b7f17c363 100644 --- a/clients/client-ec2/src/commands/CancelDeclarativePoliciesReportCommand.ts +++ b/clients/client-ec2/src/commands/CancelDeclarativePoliciesReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelDeclarativePoliciesReportRequest, CancelDeclarativePoliciesReportResult } from "../models/models_0"; +import type { CancelDeclarativePoliciesReportRequest, CancelDeclarativePoliciesReportResult } from "../models/models_0"; import { CancelDeclarativePoliciesReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelExportTaskCommand.ts b/clients/client-ec2/src/commands/CancelExportTaskCommand.ts index 9888cea215f39..f3ce1b3d1f5cb 100644 --- a/clients/client-ec2/src/commands/CancelExportTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelExportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelExportTaskRequest } from "../models/models_0"; +import type { CancelExportTaskRequest } from "../models/models_0"; import { CancelExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts b/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts index 6596915330521..87a263034cbf5 100644 --- a/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts +++ b/clients/client-ec2/src/commands/CancelImageLaunchPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelImageLaunchPermissionRequest, CancelImageLaunchPermissionResult } from "../models/models_0"; +import type { CancelImageLaunchPermissionRequest, CancelImageLaunchPermissionResult } from "../models/models_0"; import { CancelImageLaunchPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelImportTaskCommand.ts b/clients/client-ec2/src/commands/CancelImportTaskCommand.ts index 331db63c099d3..6c5f4c53e4f99 100644 --- a/clients/client-ec2/src/commands/CancelImportTaskCommand.ts +++ b/clients/client-ec2/src/commands/CancelImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelImportTaskRequest, CancelImportTaskResult } from "../models/models_0"; +import type { CancelImportTaskRequest, CancelImportTaskResult } from "../models/models_0"; import { CancelImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts b/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts index 42a168fdb39b6..e43bd4017b63e 100644 --- a/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts +++ b/clients/client-ec2/src/commands/CancelReservedInstancesListingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelReservedInstancesListingRequest, CancelReservedInstancesListingResult } from "../models/models_0"; +import type { CancelReservedInstancesListingRequest, CancelReservedInstancesListingResult } from "../models/models_0"; import { CancelReservedInstancesListing } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts b/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts index 707e2e0b07947..da002e2fb9943 100644 --- a/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts +++ b/clients/client-ec2/src/commands/CancelSpotFleetRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelSpotFleetRequestsRequest, CancelSpotFleetRequestsResponse } from "../models/models_0"; +import type { CancelSpotFleetRequestsRequest, CancelSpotFleetRequestsResponse } from "../models/models_0"; import { CancelSpotFleetRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts b/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts index d97ebc96fb878..3a4fb6b05920c 100644 --- a/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts +++ b/clients/client-ec2/src/commands/CancelSpotInstanceRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelSpotInstanceRequestsRequest, CancelSpotInstanceRequestsResult } from "../models/models_0"; +import type { CancelSpotInstanceRequestsRequest, CancelSpotInstanceRequestsResult } from "../models/models_0"; import { CancelSpotInstanceRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts b/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts index f6a72a1916d06..28c25299d7827 100644 --- a/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts +++ b/clients/client-ec2/src/commands/ConfirmProductInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmProductInstanceRequest, ConfirmProductInstanceResult } from "../models/models_0"; +import type { ConfirmProductInstanceRequest, ConfirmProductInstanceResult } from "../models/models_0"; import { ConfirmProductInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts b/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts index d92dfda764ddc..4dd1f2b77e8da 100644 --- a/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts +++ b/clients/client-ec2/src/commands/CopyFpgaImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyFpgaImageRequest, CopyFpgaImageResult } from "../models/models_0"; +import type { CopyFpgaImageRequest, CopyFpgaImageResult } from "../models/models_0"; import { CopyFpgaImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CopyImageCommand.ts b/clients/client-ec2/src/commands/CopyImageCommand.ts index c7071e0ca6eb5..c8aa5b2f28d1f 100644 --- a/clients/client-ec2/src/commands/CopyImageCommand.ts +++ b/clients/client-ec2/src/commands/CopyImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyImageRequest, CopyImageResult } from "../models/models_0"; +import type { CopyImageRequest, CopyImageResult } from "../models/models_0"; import { CopyImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CopySnapshotCommand.ts b/clients/client-ec2/src/commands/CopySnapshotCommand.ts index 8f429fec9d93b..95d434982ce49 100644 --- a/clients/client-ec2/src/commands/CopySnapshotCommand.ts +++ b/clients/client-ec2/src/commands/CopySnapshotCommand.ts @@ -2,11 +2,11 @@ import { getCopySnapshotPresignedUrlPlugin } from "@aws-sdk/middleware-sdk-ec2"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopySnapshotRequest, CopySnapshotResult } from "../models/models_0"; +import type { CopySnapshotRequest, CopySnapshotResult } from "../models/models_0"; import { CopySnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CopyVolumesCommand.ts b/clients/client-ec2/src/commands/CopyVolumesCommand.ts index bd9184c9588bb..0728349a032be 100644 --- a/clients/client-ec2/src/commands/CopyVolumesCommand.ts +++ b/clients/client-ec2/src/commands/CopyVolumesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyVolumesRequest, CopyVolumesResult } from "../models/models_0"; +import type { CopyVolumesRequest, CopyVolumesResult } from "../models/models_0"; import { CopyVolumes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateCapacityManagerDataExportCommand.ts b/clients/client-ec2/src/commands/CreateCapacityManagerDataExportCommand.ts index 8bdd35678edda..93bb6f1bce18f 100644 --- a/clients/client-ec2/src/commands/CreateCapacityManagerDataExportCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityManagerDataExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCapacityManagerDataExportRequest, CreateCapacityManagerDataExportResult } from "../models/models_0"; +import type { CreateCapacityManagerDataExportRequest, CreateCapacityManagerDataExportResult } from "../models/models_0"; import { CreateCapacityManagerDataExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts index 03dda4d8fd880..80b83bcf18aee 100644 --- a/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityReservationBySplittingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateCapacityReservationBySplittingRequest, CreateCapacityReservationBySplittingResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts index bed199487c13b..0e7ba5b28a956 100644 --- a/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCapacityReservationRequest, CreateCapacityReservationResult } from "../models/models_0"; +import type { CreateCapacityReservationRequest, CreateCapacityReservationResult } from "../models/models_0"; import { CreateCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts b/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts index 6f3bb595dc169..ecd09f93ea8bb 100644 --- a/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts +++ b/clients/client-ec2/src/commands/CreateCapacityReservationFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCapacityReservationFleetRequest, CreateCapacityReservationFleetResult } from "../models/models_0"; +import type { CreateCapacityReservationFleetRequest, CreateCapacityReservationFleetResult } from "../models/models_0"; import { CreateCapacityReservationFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts b/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts index 8643186ca4087..34d8abf882f11 100644 --- a/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateCarrierGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCarrierGatewayRequest, CreateCarrierGatewayResult } from "../models/models_0"; +import type { CreateCarrierGatewayRequest, CreateCarrierGatewayResult } from "../models/models_0"; import { CreateCarrierGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts b/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts index 00045def7a2b1..5599ae56c45e8 100644 --- a/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateClientVpnEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClientVpnEndpointRequest, CreateClientVpnEndpointResult } from "../models/models_0"; +import type { CreateClientVpnEndpointRequest, CreateClientVpnEndpointResult } from "../models/models_0"; import { CreateClientVpnEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts b/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts index 082296acfce9a..8ce3afdd6699f 100644 --- a/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateClientVpnRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClientVpnRouteRequest, CreateClientVpnRouteResult } from "../models/models_0"; +import type { CreateClientVpnRouteRequest, CreateClientVpnRouteResult } from "../models/models_0"; import { CreateClientVpnRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts b/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts index ced9ec1521c4c..f7af20e6e1b46 100644 --- a/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/CreateCoipCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCoipCidrRequest, CreateCoipCidrResult } from "../models/models_0"; +import type { CreateCoipCidrRequest, CreateCoipCidrResult } from "../models/models_0"; import { CreateCoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts b/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts index 9b7ed3686ea01..9c83c39dd387e 100644 --- a/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts +++ b/clients/client-ec2/src/commands/CreateCoipPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCoipPoolRequest, CreateCoipPoolResult } from "../models/models_0"; +import type { CreateCoipPoolRequest, CreateCoipPoolResult } from "../models/models_0"; import { CreateCoipPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts b/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts index febe2c993dfa2..5e76ae2cc3467 100644 --- a/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateCustomerGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomerGatewayRequest, CreateCustomerGatewayResult } from "../models/models_0"; +import type { CreateCustomerGatewayRequest, CreateCustomerGatewayResult } from "../models/models_0"; import { CreateCustomerGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts b/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts index 2171f1b1014be..a5172beed4ee1 100644 --- a/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts +++ b/clients/client-ec2/src/commands/CreateDefaultSubnetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDefaultSubnetRequest, CreateDefaultSubnetResult } from "../models/models_0"; +import type { CreateDefaultSubnetRequest, CreateDefaultSubnetResult } from "../models/models_0"; import { CreateDefaultSubnet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts b/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts index 78dcec458aa63..8accf6a7c7237 100644 --- a/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts +++ b/clients/client-ec2/src/commands/CreateDefaultVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDefaultVpcRequest, CreateDefaultVpcResult } from "../models/models_0"; +import type { CreateDefaultVpcRequest, CreateDefaultVpcResult } from "../models/models_0"; import { CreateDefaultVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateDelegateMacVolumeOwnershipTaskCommand.ts b/clients/client-ec2/src/commands/CreateDelegateMacVolumeOwnershipTaskCommand.ts index 1ac10d8929c2f..b3bbb20f61ad0 100644 --- a/clients/client-ec2/src/commands/CreateDelegateMacVolumeOwnershipTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateDelegateMacVolumeOwnershipTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateDelegateMacVolumeOwnershipTaskRequest, CreateDelegateMacVolumeOwnershipTaskResult, } from "../models/models_0"; diff --git a/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts index 55b22b7ef8639..599c9790c6cf4 100644 --- a/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/CreateDhcpOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDhcpOptionsRequest, CreateDhcpOptionsResult } from "../models/models_1"; +import type { CreateDhcpOptionsRequest, CreateDhcpOptionsResult } from "../models/models_1"; import { CreateDhcpOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts b/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts index 992104b96fe38..6cdf3b935ba2c 100644 --- a/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateEgressOnlyInternetGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEgressOnlyInternetGatewayRequest, CreateEgressOnlyInternetGatewayResult } from "../models/models_1"; +import type { CreateEgressOnlyInternetGatewayRequest, CreateEgressOnlyInternetGatewayResult } from "../models/models_1"; import { CreateEgressOnlyInternetGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateFleetCommand.ts b/clients/client-ec2/src/commands/CreateFleetCommand.ts index a4668717de4af..576af9bf7bbf8 100644 --- a/clients/client-ec2/src/commands/CreateFleetCommand.ts +++ b/clients/client-ec2/src/commands/CreateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFleetRequest, CreateFleetResult } from "../models/models_1"; +import type { CreateFleetRequest, CreateFleetResult } from "../models/models_1"; import { CreateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts b/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts index 0b4918af03fe5..01810940fbba0 100644 --- a/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts +++ b/clients/client-ec2/src/commands/CreateFlowLogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFlowLogsRequest, CreateFlowLogsResult } from "../models/models_1"; +import type { CreateFlowLogsRequest, CreateFlowLogsResult } from "../models/models_1"; import { CreateFlowLogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts b/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts index 30a60d589afc9..8f1c043c869d1 100644 --- a/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts +++ b/clients/client-ec2/src/commands/CreateFpgaImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFpgaImageRequest, CreateFpgaImageResult } from "../models/models_1"; +import type { CreateFpgaImageRequest, CreateFpgaImageResult } from "../models/models_1"; import { CreateFpgaImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateImageCommand.ts b/clients/client-ec2/src/commands/CreateImageCommand.ts index 63f5eeea8399c..06e235a4a35c9 100644 --- a/clients/client-ec2/src/commands/CreateImageCommand.ts +++ b/clients/client-ec2/src/commands/CreateImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImageRequest, CreateImageResult } from "../models/models_1"; +import type { CreateImageRequest, CreateImageResult } from "../models/models_1"; import { CreateImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateImageUsageReportCommand.ts b/clients/client-ec2/src/commands/CreateImageUsageReportCommand.ts index 6feb7b9dfd2e3..a736d84a3fb90 100644 --- a/clients/client-ec2/src/commands/CreateImageUsageReportCommand.ts +++ b/clients/client-ec2/src/commands/CreateImageUsageReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImageUsageReportRequest, CreateImageUsageReportResult } from "../models/models_1"; +import type { CreateImageUsageReportRequest, CreateImageUsageReportResult } from "../models/models_1"; import { CreateImageUsageReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts b/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts index c6724232d243e..3d87b37bb7f4b 100644 --- a/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInstanceConnectEndpointRequest, CreateInstanceConnectEndpointResult } from "../models/models_1"; +import type { CreateInstanceConnectEndpointRequest, CreateInstanceConnectEndpointResult } from "../models/models_1"; import { CreateInstanceConnectEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts index ffbf35e0fcd51..a6064c9955119 100644 --- a/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/CreateInstanceEventWindowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInstanceEventWindowRequest, CreateInstanceEventWindowResult } from "../models/models_1"; +import type { CreateInstanceEventWindowRequest, CreateInstanceEventWindowResult } from "../models/models_1"; import { CreateInstanceEventWindow } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts b/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts index fd6269df9e8e1..e8c108a6b52cb 100644 --- a/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateInstanceExportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInstanceExportTaskRequest, CreateInstanceExportTaskResult } from "../models/models_1"; +import type { CreateInstanceExportTaskRequest, CreateInstanceExportTaskResult } from "../models/models_1"; import { CreateInstanceExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts b/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts index b91b2a3945658..8da2c2bbbf3eb 100644 --- a/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateInternetGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInternetGatewayRequest, CreateInternetGatewayResult } from "../models/models_1"; +import type { CreateInternetGatewayRequest, CreateInternetGatewayResult } from "../models/models_1"; import { CreateInternetGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateInterruptibleCapacityReservationAllocationCommand.ts b/clients/client-ec2/src/commands/CreateInterruptibleCapacityReservationAllocationCommand.ts index c73b143f135a5..35b2b664f4e89 100644 --- a/clients/client-ec2/src/commands/CreateInterruptibleCapacityReservationAllocationCommand.ts +++ b/clients/client-ec2/src/commands/CreateInterruptibleCapacityReservationAllocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateInterruptibleCapacityReservationAllocationRequest, CreateInterruptibleCapacityReservationAllocationResult, } from "../models/models_1"; diff --git a/clients/client-ec2/src/commands/CreateIpamCommand.ts b/clients/client-ec2/src/commands/CreateIpamCommand.ts index afadd3b00f998..f11b55607b971 100644 --- a/clients/client-ec2/src/commands/CreateIpamCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIpamRequest, CreateIpamResult } from "../models/models_1"; +import type { CreateIpamRequest, CreateIpamResult } from "../models/models_1"; import { CreateIpam } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts b/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts index a89047d57e8ae..092f803db7d84 100644 --- a/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamExternalResourceVerificationTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateIpamExternalResourceVerificationTokenRequest, CreateIpamExternalResourceVerificationTokenResult, } from "../models/models_1"; diff --git a/clients/client-ec2/src/commands/CreateIpamPolicyCommand.ts b/clients/client-ec2/src/commands/CreateIpamPolicyCommand.ts index 278b6bb99ac6b..f336f9dd6d17d 100644 --- a/clients/client-ec2/src/commands/CreateIpamPolicyCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIpamPolicyRequest, CreateIpamPolicyResult } from "../models/models_1"; +import type { CreateIpamPolicyRequest, CreateIpamPolicyResult } from "../models/models_1"; import { CreateIpamPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts b/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts index f80661960f364..87d837373fec7 100644 --- a/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIpamPoolRequest, CreateIpamPoolResult } from "../models/models_1"; +import type { CreateIpamPoolRequest, CreateIpamPoolResult } from "../models/models_1"; import { CreateIpamPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateIpamPrefixListResolverCommand.ts b/clients/client-ec2/src/commands/CreateIpamPrefixListResolverCommand.ts index 82e1a32aabb69..cdb494090ef98 100644 --- a/clients/client-ec2/src/commands/CreateIpamPrefixListResolverCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamPrefixListResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIpamPrefixListResolverRequest, CreateIpamPrefixListResolverResult } from "../models/models_1"; +import type { CreateIpamPrefixListResolverRequest, CreateIpamPrefixListResolverResult } from "../models/models_1"; import { CreateIpamPrefixListResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateIpamPrefixListResolverTargetCommand.ts b/clients/client-ec2/src/commands/CreateIpamPrefixListResolverTargetCommand.ts index 66a0bdbf8e010..bbf7fbc91900a 100644 --- a/clients/client-ec2/src/commands/CreateIpamPrefixListResolverTargetCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamPrefixListResolverTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateIpamPrefixListResolverTargetRequest, CreateIpamPrefixListResolverTargetResult, } from "../models/models_1"; diff --git a/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts index 4246e11ee5973..a2d80165e8002 100644 --- a/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamResourceDiscoveryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIpamResourceDiscoveryRequest, CreateIpamResourceDiscoveryResult } from "../models/models_1"; +import type { CreateIpamResourceDiscoveryRequest, CreateIpamResourceDiscoveryResult } from "../models/models_1"; import { CreateIpamResourceDiscovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts b/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts index aabbb055ed697..1c0f762cf5179 100644 --- a/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts +++ b/clients/client-ec2/src/commands/CreateIpamScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIpamScopeRequest, CreateIpamScopeResult } from "../models/models_1"; +import type { CreateIpamScopeRequest, CreateIpamScopeResult } from "../models/models_1"; import { CreateIpamScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateKeyPairCommand.ts b/clients/client-ec2/src/commands/CreateKeyPairCommand.ts index 140c67074ce33..be632ad676f61 100644 --- a/clients/client-ec2/src/commands/CreateKeyPairCommand.ts +++ b/clients/client-ec2/src/commands/CreateKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateKeyPairRequest, KeyPair } from "../models/models_1"; +import type { CreateKeyPairRequest, KeyPair } from "../models/models_1"; import { CreateKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts b/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts index 98535890167a9..edefc1888c3da 100644 --- a/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts +++ b/clients/client-ec2/src/commands/CreateLaunchTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLaunchTemplateRequest, CreateLaunchTemplateResult } from "../models/models_1"; +import type { CreateLaunchTemplateRequest, CreateLaunchTemplateResult } from "../models/models_1"; import { CreateLaunchTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts b/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts index 00938b8dc27a4..1657da9fdd115 100644 --- a/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts +++ b/clients/client-ec2/src/commands/CreateLaunchTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLaunchTemplateVersionRequest, CreateLaunchTemplateVersionResult } from "../models/models_1"; +import type { CreateLaunchTemplateVersionRequest, CreateLaunchTemplateVersionResult } from "../models/models_1"; import { CreateLaunchTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts index eb8870c7c0a1e..45d5e9a0a7f75 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocalGatewayRouteRequest, CreateLocalGatewayRouteResult } from "../models/models_1"; +import type { CreateLocalGatewayRouteRequest, CreateLocalGatewayRouteResult } from "../models/models_1"; import { CreateLocalGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts index 3cb19f7e85b1a..d58002062184d 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLocalGatewayRouteTableRequest, CreateLocalGatewayRouteTableResult } from "../models/models_1"; +import type { CreateLocalGatewayRouteTableRequest, CreateLocalGatewayRouteTableResult } from "../models/models_1"; import { CreateLocalGatewayRouteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts index e8245c17cb176..ef3d43dd4d312 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest, CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, } from "../models/models_1"; diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts index 4f795f13d5c07..198f7ee9447fd 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateLocalGatewayRouteTableVpcAssociationRequest, CreateLocalGatewayRouteTableVpcAssociationResult, } from "../models/models_1"; diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayVirtualInterfaceCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayVirtualInterfaceCommand.ts index 3ab88021e8af8..a863a6c8143e2 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayVirtualInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateLocalGatewayVirtualInterfaceRequest, CreateLocalGatewayVirtualInterfaceResult, } from "../models/models_1"; diff --git a/clients/client-ec2/src/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.ts b/clients/client-ec2/src/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.ts index c45849f85d303..301cf0a2ea88d 100644 --- a/clients/client-ec2/src/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateLocalGatewayVirtualInterfaceGroupRequest, CreateLocalGatewayVirtualInterfaceGroupResult, } from "../models/models_1"; diff --git a/clients/client-ec2/src/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.ts b/clients/client-ec2/src/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.ts index 165136f91e7c3..e1c11dd69c3c1 100644 --- a/clients/client-ec2/src/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateMacSystemIntegrityProtectionModificationTaskRequest, CreateMacSystemIntegrityProtectionModificationTaskResult, } from "../models/models_1"; diff --git a/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts b/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts index d94710b29801a..fc422fd7b2115 100644 --- a/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts +++ b/clients/client-ec2/src/commands/CreateManagedPrefixListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateManagedPrefixListRequest, CreateManagedPrefixListResult } from "../models/models_1"; +import type { CreateManagedPrefixListRequest, CreateManagedPrefixListResult } from "../models/models_1"; import { CreateManagedPrefixList } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts b/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts index 02159e0fac972..a8ae0ed48a330 100644 --- a/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateNatGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNatGatewayRequest, CreateNatGatewayResult } from "../models/models_1"; +import type { CreateNatGatewayRequest, CreateNatGatewayResult } from "../models/models_1"; import { CreateNatGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts b/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts index 0575e57761dd4..9ec205f5ef594 100644 --- a/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkAclCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNetworkAclRequest, CreateNetworkAclResult } from "../models/models_1"; +import type { CreateNetworkAclRequest, CreateNetworkAclResult } from "../models/models_1"; import { CreateNetworkAcl } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts b/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts index 0f8a696c1d355..b8fd68f519052 100644 --- a/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkAclEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNetworkAclEntryRequest } from "../models/models_1"; +import type { CreateNetworkAclEntryRequest } from "../models/models_1"; import { CreateNetworkAclEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts index 7b6738776e1b1..3b1dd6acd4857 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInsightsAccessScopeCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNetworkInsightsAccessScopeRequest, CreateNetworkInsightsAccessScopeResult } from "../models/models_1"; +import type { + CreateNetworkInsightsAccessScopeRequest, + CreateNetworkInsightsAccessScopeResult, +} from "../models/models_1"; import { CreateNetworkInsightsAccessScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts index f24565f070566..8a09b6790dae5 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInsightsPathCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNetworkInsightsPathRequest, CreateNetworkInsightsPathResult } from "../models/models_1"; +import type { CreateNetworkInsightsPathRequest, CreateNetworkInsightsPathResult } from "../models/models_1"; import { CreateNetworkInsightsPath } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts index 7b789e1ae4a6d..a4b441b2cf0aa 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNetworkInterfaceRequest, CreateNetworkInterfaceResult } from "../models/models_1"; +import type { CreateNetworkInterfaceRequest, CreateNetworkInterfaceResult } from "../models/models_1"; import { CreateNetworkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts b/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts index 74562b3d01ecb..c6b840a9cf436 100644 --- a/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts +++ b/clients/client-ec2/src/commands/CreateNetworkInterfacePermissionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNetworkInterfacePermissionRequest, CreateNetworkInterfacePermissionResult } from "../models/models_1"; +import type { + CreateNetworkInterfacePermissionRequest, + CreateNetworkInterfacePermissionResult, +} from "../models/models_1"; import { CreateNetworkInterfacePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts b/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts index 12c8c0fed33d1..bdb68f16b1322 100644 --- a/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreatePlacementGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePlacementGroupRequest, CreatePlacementGroupResult } from "../models/models_1"; +import type { CreatePlacementGroupRequest, CreatePlacementGroupResult } from "../models/models_1"; import { CreatePlacementGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts b/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts index da3d2db68c2f2..91b02b38432bf 100644 --- a/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts +++ b/clients/client-ec2/src/commands/CreatePublicIpv4PoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePublicIpv4PoolRequest, CreatePublicIpv4PoolResult } from "../models/models_1"; +import type { CreatePublicIpv4PoolRequest, CreatePublicIpv4PoolResult } from "../models/models_1"; import { CreatePublicIpv4Pool } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts b/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts index 2bb05ece13885..f156d894f2b0f 100644 --- a/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateReplaceRootVolumeTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReplaceRootVolumeTaskRequest, CreateReplaceRootVolumeTaskResult } from "../models/models_1"; +import type { CreateReplaceRootVolumeTaskRequest, CreateReplaceRootVolumeTaskResult } from "../models/models_1"; import { CreateReplaceRootVolumeTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts b/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts index 59ed47e917eaa..0d776edd53a05 100644 --- a/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts +++ b/clients/client-ec2/src/commands/CreateReservedInstancesListingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReservedInstancesListingRequest, CreateReservedInstancesListingResult } from "../models/models_1"; +import type { CreateReservedInstancesListingRequest, CreateReservedInstancesListingResult } from "../models/models_1"; import { CreateReservedInstancesListing } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts b/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts index d790ff4873f23..c37f7aa55cf69 100644 --- a/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateRestoreImageTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRestoreImageTaskRequest, CreateRestoreImageTaskResult } from "../models/models_1"; +import type { CreateRestoreImageTaskRequest, CreateRestoreImageTaskResult } from "../models/models_1"; import { CreateRestoreImageTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateRouteCommand.ts b/clients/client-ec2/src/commands/CreateRouteCommand.ts index 425745e0a2cf6..790882536280c 100644 --- a/clients/client-ec2/src/commands/CreateRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRouteRequest, CreateRouteResult } from "../models/models_1"; +import type { CreateRouteRequest, CreateRouteResult } from "../models/models_1"; import { CreateRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateRouteServerCommand.ts b/clients/client-ec2/src/commands/CreateRouteServerCommand.ts index 6caec8dcc7c91..b2722e7aec0ff 100644 --- a/clients/client-ec2/src/commands/CreateRouteServerCommand.ts +++ b/clients/client-ec2/src/commands/CreateRouteServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRouteServerRequest, CreateRouteServerResult } from "../models/models_1"; +import type { CreateRouteServerRequest, CreateRouteServerResult } from "../models/models_1"; import { CreateRouteServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateRouteServerEndpointCommand.ts b/clients/client-ec2/src/commands/CreateRouteServerEndpointCommand.ts index 09c5a4ca22c0a..9b76fcd08b1da 100644 --- a/clients/client-ec2/src/commands/CreateRouteServerEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateRouteServerEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRouteServerEndpointRequest, CreateRouteServerEndpointResult } from "../models/models_1"; +import type { CreateRouteServerEndpointRequest, CreateRouteServerEndpointResult } from "../models/models_1"; import { CreateRouteServerEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateRouteServerPeerCommand.ts b/clients/client-ec2/src/commands/CreateRouteServerPeerCommand.ts index 4c678fb86af9d..4ff5b00a53f81 100644 --- a/clients/client-ec2/src/commands/CreateRouteServerPeerCommand.ts +++ b/clients/client-ec2/src/commands/CreateRouteServerPeerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRouteServerPeerRequest, CreateRouteServerPeerResult } from "../models/models_1"; +import type { CreateRouteServerPeerRequest, CreateRouteServerPeerResult } from "../models/models_1"; import { CreateRouteServerPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateRouteTableCommand.ts b/clients/client-ec2/src/commands/CreateRouteTableCommand.ts index ceea690841208..93d019ce6b527 100644 --- a/clients/client-ec2/src/commands/CreateRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateRouteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRouteTableRequest, CreateRouteTableResult } from "../models/models_1"; +import type { CreateRouteTableRequest, CreateRouteTableResult } from "../models/models_1"; import { CreateRouteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts b/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts index 893786af423dd..c4b40e7bcb039 100644 --- a/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreateSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSecurityGroupRequest, CreateSecurityGroupResult } from "../models/models_1"; +import type { CreateSecurityGroupRequest, CreateSecurityGroupResult } from "../models/models_1"; import { CreateSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateSnapshotCommand.ts b/clients/client-ec2/src/commands/CreateSnapshotCommand.ts index 7953180bf607a..36923475b7b9b 100644 --- a/clients/client-ec2/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/CreateSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotRequest, Snapshot } from "../models/models_1"; +import type { CreateSnapshotRequest, Snapshot } from "../models/models_1"; import { CreateSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts b/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts index 1a1a8175abbcd..830968773ea97 100644 --- a/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts +++ b/clients/client-ec2/src/commands/CreateSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotsRequest, CreateSnapshotsResult } from "../models/models_1"; +import type { CreateSnapshotsRequest, CreateSnapshotsResult } from "../models/models_1"; import { CreateSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts b/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts index c666305576243..8a4ed1708fad9 100644 --- a/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/CreateSpotDatafeedSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSpotDatafeedSubscriptionRequest } from "../models/models_1"; -import { CreateSpotDatafeedSubscriptionResult } from "../models/models_2"; +import type { CreateSpotDatafeedSubscriptionRequest } from "../models/models_1"; +import type { CreateSpotDatafeedSubscriptionResult } from "../models/models_2"; import { CreateSpotDatafeedSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts b/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts index 17aa8920966e9..1bd209f00f542 100644 --- a/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts +++ b/clients/client-ec2/src/commands/CreateStoreImageTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStoreImageTaskRequest, CreateStoreImageTaskResult } from "../models/models_2"; +import type { CreateStoreImageTaskRequest, CreateStoreImageTaskResult } from "../models/models_2"; import { CreateStoreImageTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts b/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts index 779a6c9426e3f..1dcd79bd93ec2 100644 --- a/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts +++ b/clients/client-ec2/src/commands/CreateSubnetCidrReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubnetCidrReservationRequest, CreateSubnetCidrReservationResult } from "../models/models_2"; +import type { CreateSubnetCidrReservationRequest, CreateSubnetCidrReservationResult } from "../models/models_2"; import { CreateSubnetCidrReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateSubnetCommand.ts b/clients/client-ec2/src/commands/CreateSubnetCommand.ts index 82e3a74ea2c3d..fa44241c95e9e 100644 --- a/clients/client-ec2/src/commands/CreateSubnetCommand.ts +++ b/clients/client-ec2/src/commands/CreateSubnetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubnetRequest, CreateSubnetResult } from "../models/models_2"; +import type { CreateSubnetRequest, CreateSubnetResult } from "../models/models_2"; import { CreateSubnet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTagsCommand.ts b/clients/client-ec2/src/commands/CreateTagsCommand.ts index aa1f1f1db34de..bef451346c028 100644 --- a/clients/client-ec2/src/commands/CreateTagsCommand.ts +++ b/clients/client-ec2/src/commands/CreateTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTagsRequest } from "../models/models_2"; +import type { CreateTagsRequest } from "../models/models_2"; import { CreateTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts index cd822356b119a..b2e9153229a51 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrafficMirrorFilterRequest, CreateTrafficMirrorFilterResult } from "../models/models_2"; +import type { CreateTrafficMirrorFilterRequest, CreateTrafficMirrorFilterResult } from "../models/models_2"; import { CreateTrafficMirrorFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts index 88bd656f63292..951bd2c9e8ea9 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorFilterRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrafficMirrorFilterRuleRequest, CreateTrafficMirrorFilterRuleResult } from "../models/models_2"; +import type { CreateTrafficMirrorFilterRuleRequest, CreateTrafficMirrorFilterRuleResult } from "../models/models_2"; import { CreateTrafficMirrorFilterRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts index 966a39b942197..8745a0ab16294 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrafficMirrorSessionRequest, CreateTrafficMirrorSessionResult } from "../models/models_2"; +import type { CreateTrafficMirrorSessionRequest, CreateTrafficMirrorSessionResult } from "../models/models_2"; import { CreateTrafficMirrorSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts b/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts index 09662ded3e49f..bc29750d2ea58 100644 --- a/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts +++ b/clients/client-ec2/src/commands/CreateTrafficMirrorTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrafficMirrorTargetRequest, CreateTrafficMirrorTargetResult } from "../models/models_2"; +import type { CreateTrafficMirrorTargetRequest, CreateTrafficMirrorTargetResult } from "../models/models_2"; import { CreateTrafficMirrorTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts index 54f3e3074b1b9..8e32c6fb17692 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransitGatewayRequest, CreateTransitGatewayResult } from "../models/models_2"; +import type { CreateTransitGatewayRequest, CreateTransitGatewayResult } from "../models/models_2"; import { CreateTransitGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts index 5b7febe8d38a8..38c60c6958e21 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayConnectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransitGatewayConnectRequest, CreateTransitGatewayConnectResult } from "../models/models_2"; +import type { CreateTransitGatewayConnectRequest, CreateTransitGatewayConnectResult } from "../models/models_2"; import { CreateTransitGatewayConnect } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts index e2339dbc6b364..ca87faabbb4c0 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayConnectPeerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransitGatewayConnectPeerRequest, CreateTransitGatewayConnectPeerResult } from "../models/models_2"; +import type { CreateTransitGatewayConnectPeerRequest, CreateTransitGatewayConnectPeerResult } from "../models/models_2"; import { CreateTransitGatewayConnectPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayMeteringPolicyCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayMeteringPolicyCommand.ts index 6e2d8789d8c2b..84237463e3e2e 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayMeteringPolicyCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayMeteringPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateTransitGatewayMeteringPolicyRequest, CreateTransitGatewayMeteringPolicyResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayMeteringPolicyEntryCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayMeteringPolicyEntryCommand.ts index 1c641162a9313..b171e90cc2017 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayMeteringPolicyEntryCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayMeteringPolicyEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateTransitGatewayMeteringPolicyEntryRequest, CreateTransitGatewayMeteringPolicyEntryResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts index be7abb00efd84..4ceeb9fc4072e 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayMulticastDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateTransitGatewayMulticastDomainRequest, CreateTransitGatewayMulticastDomainResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts index 12fc9efdd4289..e693f49aa8d6f 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayPeeringAttachmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateTransitGatewayPeeringAttachmentRequest, CreateTransitGatewayPeeringAttachmentResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts index cbb0103bdb6b7..72485f813eae1 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayPolicyTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransitGatewayPolicyTableRequest, CreateTransitGatewayPolicyTableResult } from "../models/models_2"; +import type { CreateTransitGatewayPolicyTableRequest, CreateTransitGatewayPolicyTableResult } from "../models/models_2"; import { CreateTransitGatewayPolicyTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts index 1a57fb9bd4296..95ca47072744f 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayPrefixListReferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateTransitGatewayPrefixListReferenceRequest, CreateTransitGatewayPrefixListReferenceResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts index 744695af82dc4..d003508fa29d4 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransitGatewayRouteRequest, CreateTransitGatewayRouteResult } from "../models/models_2"; +import type { CreateTransitGatewayRouteRequest, CreateTransitGatewayRouteResult } from "../models/models_2"; import { CreateTransitGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts index 38dcbcbb1b893..0e2b34d3184b1 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableAnnouncementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateTransitGatewayRouteTableAnnouncementRequest, CreateTransitGatewayRouteTableAnnouncementResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts index 69eb688bb86a4..c6c6db70bd7ea 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayRouteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransitGatewayRouteTableRequest, CreateTransitGatewayRouteTableResult } from "../models/models_2"; +import type { CreateTransitGatewayRouteTableRequest, CreateTransitGatewayRouteTableResult } from "../models/models_2"; import { CreateTransitGatewayRouteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts index deca966959650..816817fa6559f 100644 --- a/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/CreateTransitGatewayVpcAttachmentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransitGatewayVpcAttachmentRequest, CreateTransitGatewayVpcAttachmentResult } from "../models/models_2"; +import type { + CreateTransitGatewayVpcAttachmentRequest, + CreateTransitGatewayVpcAttachmentResult, +} from "../models/models_2"; import { CreateTransitGatewayVpcAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts index 1cbd73aaafcc4..07e1c37d04ef0 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVerifiedAccessEndpointRequest, CreateVerifiedAccessEndpointResult } from "../models/models_2"; +import type { CreateVerifiedAccessEndpointRequest, CreateVerifiedAccessEndpointResult } from "../models/models_2"; import { CreateVerifiedAccessEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts index fef5c47912922..51e7584593298 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVerifiedAccessGroupRequest, CreateVerifiedAccessGroupResult } from "../models/models_2"; +import type { CreateVerifiedAccessGroupRequest, CreateVerifiedAccessGroupResult } from "../models/models_2"; import { CreateVerifiedAccessGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts index 5cae138833898..af26ce423150a 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVerifiedAccessInstanceRequest, CreateVerifiedAccessInstanceResult } from "../models/models_2"; +import type { CreateVerifiedAccessInstanceRequest, CreateVerifiedAccessInstanceResult } from "../models/models_2"; import { CreateVerifiedAccessInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts index 01b0b39e6bfc5..f4d70c5348aa9 100644 --- a/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/CreateVerifiedAccessTrustProviderCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVerifiedAccessTrustProviderRequest, CreateVerifiedAccessTrustProviderResult } from "../models/models_2"; +import type { + CreateVerifiedAccessTrustProviderRequest, + CreateVerifiedAccessTrustProviderResult, +} from "../models/models_2"; import { CreateVerifiedAccessTrustProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVolumeCommand.ts b/clients/client-ec2/src/commands/CreateVolumeCommand.ts index 371326d68e4f6..196df3f58c942 100644 --- a/clients/client-ec2/src/commands/CreateVolumeCommand.ts +++ b/clients/client-ec2/src/commands/CreateVolumeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Volume } from "../models/models_0"; -import { CreateVolumeRequest } from "../models/models_2"; +import type { Volume } from "../models/models_0"; +import type { CreateVolumeRequest } from "../models/models_2"; import { CreateVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVpcBlockPublicAccessExclusionCommand.ts b/clients/client-ec2/src/commands/CreateVpcBlockPublicAccessExclusionCommand.ts index d8523345bfba6..3f88c8be87995 100644 --- a/clients/client-ec2/src/commands/CreateVpcBlockPublicAccessExclusionCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcBlockPublicAccessExclusionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateVpcBlockPublicAccessExclusionRequest, CreateVpcBlockPublicAccessExclusionResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/CreateVpcCommand.ts b/clients/client-ec2/src/commands/CreateVpcCommand.ts index 742bde32fb4c1..3b5abfc72bbb6 100644 --- a/clients/client-ec2/src/commands/CreateVpcCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcRequest, CreateVpcResult } from "../models/models_2"; +import type { CreateVpcRequest, CreateVpcResult } from "../models/models_2"; import { CreateVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVpcEncryptionControlCommand.ts b/clients/client-ec2/src/commands/CreateVpcEncryptionControlCommand.ts index e89cd5623097f..54dbac18c6423 100644 --- a/clients/client-ec2/src/commands/CreateVpcEncryptionControlCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEncryptionControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcEncryptionControlRequest, CreateVpcEncryptionControlResult } from "../models/models_2"; +import type { CreateVpcEncryptionControlRequest, CreateVpcEncryptionControlResult } from "../models/models_2"; import { CreateVpcEncryptionControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts b/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts index 2a028abcaf976..0d3aa831eaf84 100644 --- a/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcEndpointRequest, CreateVpcEndpointResult } from "../models/models_2"; +import type { CreateVpcEndpointRequest, CreateVpcEndpointResult } from "../models/models_2"; import { CreateVpcEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts b/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts index c6c28ed6eba89..3cd5aa8f8a9c0 100644 --- a/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEndpointConnectionNotificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateVpcEndpointConnectionNotificationRequest, CreateVpcEndpointConnectionNotificationResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts b/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts index 203b37db86cc9..574a736ae0cc8 100644 --- a/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcEndpointServiceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateVpcEndpointServiceConfigurationRequest, CreateVpcEndpointServiceConfigurationResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts index 03346ca31ac01..a16fd0cb9fceb 100644 --- a/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpcPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcPeeringConnectionRequest, CreateVpcPeeringConnectionResult } from "../models/models_2"; +import type { CreateVpcPeeringConnectionRequest, CreateVpcPeeringConnectionResult } from "../models/models_2"; import { CreateVpcPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVpnConcentratorCommand.ts b/clients/client-ec2/src/commands/CreateVpnConcentratorCommand.ts index e1e926f44c015..fe9f6ae0f036f 100644 --- a/clients/client-ec2/src/commands/CreateVpnConcentratorCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnConcentratorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpnConcentratorRequest, CreateVpnConcentratorResult } from "../models/models_2"; +import type { CreateVpnConcentratorRequest, CreateVpnConcentratorResult } from "../models/models_2"; import { CreateVpnConcentrator } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts b/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts index 0df163e4c12e8..56f111c47e2ec 100644 --- a/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpnConnectionRequest, CreateVpnConnectionResult } from "../models/models_2"; +import type { CreateVpnConnectionRequest, CreateVpnConnectionResult } from "../models/models_2"; import { CreateVpnConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts b/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts index 6f7865f7c0ece..2071cc6468fb9 100644 --- a/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnConnectionRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpnConnectionRouteRequest } from "../models/models_2"; +import type { CreateVpnConnectionRouteRequest } from "../models/models_2"; import { CreateVpnConnectionRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts b/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts index 3e9229c543ade..58acbc33caa86 100644 --- a/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/CreateVpnGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpnGatewayRequest, CreateVpnGatewayResult } from "../models/models_2"; +import type { CreateVpnGatewayRequest, CreateVpnGatewayResult } from "../models/models_2"; import { CreateVpnGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteCapacityManagerDataExportCommand.ts b/clients/client-ec2/src/commands/DeleteCapacityManagerDataExportCommand.ts index bb3a8e66e956a..7575a41cff0b4 100644 --- a/clients/client-ec2/src/commands/DeleteCapacityManagerDataExportCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCapacityManagerDataExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCapacityManagerDataExportRequest, DeleteCapacityManagerDataExportResult } from "../models/models_2"; +import type { DeleteCapacityManagerDataExportRequest, DeleteCapacityManagerDataExportResult } from "../models/models_2"; import { DeleteCapacityManagerDataExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts index b128a97c1cee8..d61453ad15773 100644 --- a/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCarrierGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCarrierGatewayRequest, DeleteCarrierGatewayResult } from "../models/models_2"; +import type { DeleteCarrierGatewayRequest, DeleteCarrierGatewayResult } from "../models/models_2"; import { DeleteCarrierGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts index abec83d302ed7..78bb2da9ec4a4 100644 --- a/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteClientVpnEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClientVpnEndpointRequest, DeleteClientVpnEndpointResult } from "../models/models_2"; +import type { DeleteClientVpnEndpointRequest, DeleteClientVpnEndpointResult } from "../models/models_2"; import { DeleteClientVpnEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts b/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts index 644ba0fd7ba80..a86558d5b21f0 100644 --- a/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteClientVpnRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClientVpnRouteRequest, DeleteClientVpnRouteResult } from "../models/models_2"; +import type { DeleteClientVpnRouteRequest, DeleteClientVpnRouteResult } from "../models/models_2"; import { DeleteClientVpnRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts b/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts index b187ef6777d3d..65708a75f74ce 100644 --- a/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCoipCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCoipCidrRequest, DeleteCoipCidrResult } from "../models/models_2"; +import type { DeleteCoipCidrRequest, DeleteCoipCidrResult } from "../models/models_2"; import { DeleteCoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts b/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts index f8ef04b2ad0d4..0492b4a134c89 100644 --- a/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCoipPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCoipPoolRequest, DeleteCoipPoolResult } from "../models/models_2"; +import type { DeleteCoipPoolRequest, DeleteCoipPoolResult } from "../models/models_2"; import { DeleteCoipPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts index 0fd35a526feef..893a654e166c0 100644 --- a/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteCustomerGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomerGatewayRequest } from "../models/models_2"; +import type { DeleteCustomerGatewayRequest } from "../models/models_2"; import { DeleteCustomerGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts index 528fa153dbe1d..f2c69b80cad83 100644 --- a/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteDhcpOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDhcpOptionsRequest } from "../models/models_2"; +import type { DeleteDhcpOptionsRequest } from "../models/models_2"; import { DeleteDhcpOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts index f2aef39cd1b79..7b530b2466dae 100644 --- a/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteEgressOnlyInternetGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEgressOnlyInternetGatewayRequest, DeleteEgressOnlyInternetGatewayResult } from "../models/models_2"; +import type { DeleteEgressOnlyInternetGatewayRequest, DeleteEgressOnlyInternetGatewayResult } from "../models/models_2"; import { DeleteEgressOnlyInternetGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteFleetsCommand.ts b/clients/client-ec2/src/commands/DeleteFleetsCommand.ts index 59943f06d1ebc..dc929ba3bab45 100644 --- a/clients/client-ec2/src/commands/DeleteFleetsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFleetsRequest, DeleteFleetsResult } from "../models/models_2"; +import type { DeleteFleetsRequest, DeleteFleetsResult } from "../models/models_2"; import { DeleteFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts b/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts index 42b644618c98d..6858c0dcfece8 100644 --- a/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteFlowLogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFlowLogsRequest, DeleteFlowLogsResult } from "../models/models_2"; +import type { DeleteFlowLogsRequest, DeleteFlowLogsResult } from "../models/models_2"; import { DeleteFlowLogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts b/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts index 5e1a9f4f0b4cd..f0fc01521416f 100644 --- a/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts +++ b/clients/client-ec2/src/commands/DeleteFpgaImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFpgaImageRequest, DeleteFpgaImageResult } from "../models/models_2"; +import type { DeleteFpgaImageRequest, DeleteFpgaImageResult } from "../models/models_2"; import { DeleteFpgaImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteImageUsageReportCommand.ts b/clients/client-ec2/src/commands/DeleteImageUsageReportCommand.ts index 34803584a6c93..de7549aab5fce 100644 --- a/clients/client-ec2/src/commands/DeleteImageUsageReportCommand.ts +++ b/clients/client-ec2/src/commands/DeleteImageUsageReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImageUsageReportRequest, DeleteImageUsageReportResult } from "../models/models_2"; +import type { DeleteImageUsageReportRequest, DeleteImageUsageReportResult } from "../models/models_2"; import { DeleteImageUsageReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts index e0e153dd54acc..2d2f2a6943c8f 100644 --- a/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInstanceConnectEndpointRequest, DeleteInstanceConnectEndpointResult } from "../models/models_2"; +import type { DeleteInstanceConnectEndpointRequest, DeleteInstanceConnectEndpointResult } from "../models/models_2"; import { DeleteInstanceConnectEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts index 07183dece962f..554d30d7e084e 100644 --- a/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/DeleteInstanceEventWindowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInstanceEventWindowRequest, DeleteInstanceEventWindowResult } from "../models/models_2"; +import type { DeleteInstanceEventWindowRequest, DeleteInstanceEventWindowResult } from "../models/models_2"; import { DeleteInstanceEventWindow } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts index f623f81064de6..eb013c81d58a5 100644 --- a/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteInternetGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInternetGatewayRequest } from "../models/models_2"; +import type { DeleteInternetGatewayRequest } from "../models/models_2"; import { DeleteInternetGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteIpamCommand.ts b/clients/client-ec2/src/commands/DeleteIpamCommand.ts index 888bc2da2f4a5..2c9db61c807e7 100644 --- a/clients/client-ec2/src/commands/DeleteIpamCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIpamRequest, DeleteIpamResult } from "../models/models_2"; +import type { DeleteIpamRequest, DeleteIpamResult } from "../models/models_2"; import { DeleteIpam } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts b/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts index 03df990b702ad..5a40dd410392e 100644 --- a/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamExternalResourceVerificationTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteIpamExternalResourceVerificationTokenRequest, DeleteIpamExternalResourceVerificationTokenResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteIpamPolicyCommand.ts b/clients/client-ec2/src/commands/DeleteIpamPolicyCommand.ts index 92d0d1411c3e4..b0c7ea2545ee7 100644 --- a/clients/client-ec2/src/commands/DeleteIpamPolicyCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIpamPolicyRequest, DeleteIpamPolicyResult } from "../models/models_2"; +import type { DeleteIpamPolicyRequest, DeleteIpamPolicyResult } from "../models/models_2"; import { DeleteIpamPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts b/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts index 4e81971517b4f..9c04becab3386 100644 --- a/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIpamPoolRequest, DeleteIpamPoolResult } from "../models/models_2"; +import type { DeleteIpamPoolRequest, DeleteIpamPoolResult } from "../models/models_2"; import { DeleteIpamPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteIpamPrefixListResolverCommand.ts b/clients/client-ec2/src/commands/DeleteIpamPrefixListResolverCommand.ts index a59cd778ccaf6..d241576b4ccc9 100644 --- a/clients/client-ec2/src/commands/DeleteIpamPrefixListResolverCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamPrefixListResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIpamPrefixListResolverRequest, DeleteIpamPrefixListResolverResult } from "../models/models_2"; +import type { DeleteIpamPrefixListResolverRequest, DeleteIpamPrefixListResolverResult } from "../models/models_2"; import { DeleteIpamPrefixListResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteIpamPrefixListResolverTargetCommand.ts b/clients/client-ec2/src/commands/DeleteIpamPrefixListResolverTargetCommand.ts index 4f0f603543adb..6bc96fb361991 100644 --- a/clients/client-ec2/src/commands/DeleteIpamPrefixListResolverTargetCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamPrefixListResolverTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteIpamPrefixListResolverTargetRequest, DeleteIpamPrefixListResolverTargetResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts index 550d57bc95f6e..33527eb9424d5 100644 --- a/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamResourceDiscoveryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIpamResourceDiscoveryRequest, DeleteIpamResourceDiscoveryResult } from "../models/models_2"; +import type { DeleteIpamResourceDiscoveryRequest, DeleteIpamResourceDiscoveryResult } from "../models/models_2"; import { DeleteIpamResourceDiscovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts b/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts index 71fd556bdcece..17a02b7811fa9 100644 --- a/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts +++ b/clients/client-ec2/src/commands/DeleteIpamScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIpamScopeRequest, DeleteIpamScopeResult } from "../models/models_2"; +import type { DeleteIpamScopeRequest, DeleteIpamScopeResult } from "../models/models_2"; import { DeleteIpamScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts b/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts index 4823dd0de7694..52a70fb8c1c42 100644 --- a/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts +++ b/clients/client-ec2/src/commands/DeleteKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKeyPairRequest, DeleteKeyPairResult } from "../models/models_2"; +import type { DeleteKeyPairRequest, DeleteKeyPairResult } from "../models/models_2"; import { DeleteKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts b/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts index 35fd83a5673ee..aa849dc9ff2e8 100644 --- a/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLaunchTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLaunchTemplateRequest, DeleteLaunchTemplateResult } from "../models/models_2"; +import type { DeleteLaunchTemplateRequest, DeleteLaunchTemplateResult } from "../models/models_2"; import { DeleteLaunchTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts b/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts index fbd36949f6152..1516b2a8a5d67 100644 --- a/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLaunchTemplateVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLaunchTemplateVersionsRequest, DeleteLaunchTemplateVersionsResult } from "../models/models_2"; +import type { DeleteLaunchTemplateVersionsRequest, DeleteLaunchTemplateVersionsResult } from "../models/models_2"; import { DeleteLaunchTemplateVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts index 62b758313c8ef..b311566f5db00 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLocalGatewayRouteRequest, DeleteLocalGatewayRouteResult } from "../models/models_2"; +import type { DeleteLocalGatewayRouteRequest, DeleteLocalGatewayRouteResult } from "../models/models_2"; import { DeleteLocalGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts index 590193957beae..935092a7555c2 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLocalGatewayRouteTableRequest, DeleteLocalGatewayRouteTableResult } from "../models/models_2"; +import type { DeleteLocalGatewayRouteTableRequest, DeleteLocalGatewayRouteTableResult } from "../models/models_2"; import { DeleteLocalGatewayRouteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts index e6370d944273b..64a3c42db1cab 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest, DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts index b5a0636ddb9eb..4fb746145eb5c 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteLocalGatewayRouteTableVpcAssociationRequest, DeleteLocalGatewayRouteTableVpcAssociationResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayVirtualInterfaceCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayVirtualInterfaceCommand.ts index 35c6674d09804..45a4511bce507 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayVirtualInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayVirtualInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteLocalGatewayVirtualInterfaceRequest, DeleteLocalGatewayVirtualInterfaceResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.ts b/clients/client-ec2/src/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.ts index b862f9c67e88a..7d7327bfe966b 100644 --- a/clients/client-ec2/src/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteLocalGatewayVirtualInterfaceGroupRequest, DeleteLocalGatewayVirtualInterfaceGroupResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts b/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts index 09264e932b2b1..962b816244f29 100644 --- a/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts +++ b/clients/client-ec2/src/commands/DeleteManagedPrefixListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteManagedPrefixListRequest, DeleteManagedPrefixListResult } from "../models/models_2"; +import type { DeleteManagedPrefixListRequest, DeleteManagedPrefixListResult } from "../models/models_2"; import { DeleteManagedPrefixList } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts index 042a9659dde0e..46c43a6bd402b 100644 --- a/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNatGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNatGatewayRequest, DeleteNatGatewayResult } from "../models/models_2"; +import type { DeleteNatGatewayRequest, DeleteNatGatewayResult } from "../models/models_2"; import { DeleteNatGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts index 3e701cc5716b7..2b50b9b5673e5 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkAclCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNetworkAclRequest } from "../models/models_2"; +import type { DeleteNetworkAclRequest } from "../models/models_2"; import { DeleteNetworkAcl } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts index 4ac8d6f6701d1..234d2db735d63 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkAclEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNetworkAclEntryRequest } from "../models/models_2"; +import type { DeleteNetworkAclEntryRequest } from "../models/models_2"; import { DeleteNetworkAclEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts index 3fbf0b02ee3f6..d4e986954eb2a 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteNetworkInsightsAccessScopeAnalysisRequest, DeleteNetworkInsightsAccessScopeAnalysisResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts index 22eee5767d931..a2c446cdf6822 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsAccessScopeCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNetworkInsightsAccessScopeRequest, DeleteNetworkInsightsAccessScopeResult } from "../models/models_2"; +import type { + DeleteNetworkInsightsAccessScopeRequest, + DeleteNetworkInsightsAccessScopeResult, +} from "../models/models_2"; import { DeleteNetworkInsightsAccessScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts index 418314b607e3b..4955d568f70f1 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNetworkInsightsAnalysisRequest, DeleteNetworkInsightsAnalysisResult } from "../models/models_2"; +import type { DeleteNetworkInsightsAnalysisRequest, DeleteNetworkInsightsAnalysisResult } from "../models/models_2"; import { DeleteNetworkInsightsAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts index 21f6fa3ca445f..631768f7f5cb5 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInsightsPathCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNetworkInsightsPathRequest, DeleteNetworkInsightsPathResult } from "../models/models_2"; +import type { DeleteNetworkInsightsPathRequest, DeleteNetworkInsightsPathResult } from "../models/models_2"; import { DeleteNetworkInsightsPath } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts index f1fd26b8c985b..3864d6ec9e222 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNetworkInterfaceRequest } from "../models/models_2"; +import type { DeleteNetworkInterfaceRequest } from "../models/models_2"; import { DeleteNetworkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts b/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts index 1480fb8f318eb..05abaaf3e8fec 100644 --- a/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteNetworkInterfacePermissionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNetworkInterfacePermissionRequest, DeleteNetworkInterfacePermissionResult } from "../models/models_2"; +import type { + DeleteNetworkInterfacePermissionRequest, + DeleteNetworkInterfacePermissionResult, +} from "../models/models_2"; import { DeleteNetworkInterfacePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts b/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts index 6e7006c7185ac..fe55eb40f815d 100644 --- a/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeletePlacementGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePlacementGroupRequest } from "../models/models_2"; +import type { DeletePlacementGroupRequest } from "../models/models_2"; import { DeletePlacementGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts b/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts index 7af038f80206e..a12199e973b31 100644 --- a/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts +++ b/clients/client-ec2/src/commands/DeletePublicIpv4PoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePublicIpv4PoolRequest, DeletePublicIpv4PoolResult } from "../models/models_2"; +import type { DeletePublicIpv4PoolRequest, DeletePublicIpv4PoolResult } from "../models/models_2"; import { DeletePublicIpv4Pool } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts b/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts index d0849c624e754..950c6a2d22c01 100644 --- a/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DeleteQueuedReservedInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueuedReservedInstancesRequest, DeleteQueuedReservedInstancesResult } from "../models/models_2"; +import type { DeleteQueuedReservedInstancesRequest, DeleteQueuedReservedInstancesResult } from "../models/models_2"; import { DeleteQueuedReservedInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteRouteCommand.ts b/clients/client-ec2/src/commands/DeleteRouteCommand.ts index f577f5a502cd8..6f87786d0283a 100644 --- a/clients/client-ec2/src/commands/DeleteRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteRequest } from "../models/models_2"; +import type { DeleteRouteRequest } from "../models/models_2"; import { DeleteRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteRouteServerCommand.ts b/clients/client-ec2/src/commands/DeleteRouteServerCommand.ts index 2f18ecf3ac0b7..4c14fea1d85c3 100644 --- a/clients/client-ec2/src/commands/DeleteRouteServerCommand.ts +++ b/clients/client-ec2/src/commands/DeleteRouteServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteServerRequest, DeleteRouteServerResult } from "../models/models_2"; +import type { DeleteRouteServerRequest, DeleteRouteServerResult } from "../models/models_2"; import { DeleteRouteServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteRouteServerEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteRouteServerEndpointCommand.ts index d597cd8235267..3fc02d31c13dc 100644 --- a/clients/client-ec2/src/commands/DeleteRouteServerEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteRouteServerEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteServerEndpointRequest, DeleteRouteServerEndpointResult } from "../models/models_2"; +import type { DeleteRouteServerEndpointRequest, DeleteRouteServerEndpointResult } from "../models/models_2"; import { DeleteRouteServerEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteRouteServerPeerCommand.ts b/clients/client-ec2/src/commands/DeleteRouteServerPeerCommand.ts index cc76abda68a31..a211e04aee5c0 100644 --- a/clients/client-ec2/src/commands/DeleteRouteServerPeerCommand.ts +++ b/clients/client-ec2/src/commands/DeleteRouteServerPeerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteServerPeerRequest, DeleteRouteServerPeerResult } from "../models/models_2"; +import type { DeleteRouteServerPeerRequest, DeleteRouteServerPeerResult } from "../models/models_2"; import { DeleteRouteServerPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts b/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts index fd69c57f37e45..768dd19c1613c 100644 --- a/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteRouteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRouteTableRequest } from "../models/models_2"; +import type { DeleteRouteTableRequest } from "../models/models_2"; import { DeleteRouteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts b/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts index 4566975c104ac..27dea5cba7aef 100644 --- a/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSecurityGroupRequest, DeleteSecurityGroupResult } from "../models/models_2"; +import type { DeleteSecurityGroupRequest, DeleteSecurityGroupResult } from "../models/models_2"; import { DeleteSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts b/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts index f2ee9a69a4331..41746b3ff7cd8 100644 --- a/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSnapshotRequest } from "../models/models_2"; +import type { DeleteSnapshotRequest } from "../models/models_2"; import { DeleteSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts b/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts index 5583428b8f2dd..6eea95f849f3a 100644 --- a/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSpotDatafeedSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSpotDatafeedSubscriptionRequest } from "../models/models_2"; +import type { DeleteSpotDatafeedSubscriptionRequest } from "../models/models_2"; import { DeleteSpotDatafeedSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts b/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts index 87ba57f61e988..dbe524d042cf0 100644 --- a/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSubnetCidrReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubnetCidrReservationRequest, DeleteSubnetCidrReservationResult } from "../models/models_2"; +import type { DeleteSubnetCidrReservationRequest, DeleteSubnetCidrReservationResult } from "../models/models_2"; import { DeleteSubnetCidrReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteSubnetCommand.ts b/clients/client-ec2/src/commands/DeleteSubnetCommand.ts index 1525a13c7f4b5..6858edb846f69 100644 --- a/clients/client-ec2/src/commands/DeleteSubnetCommand.ts +++ b/clients/client-ec2/src/commands/DeleteSubnetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubnetRequest } from "../models/models_2"; +import type { DeleteSubnetRequest } from "../models/models_2"; import { DeleteSubnet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTagsCommand.ts b/clients/client-ec2/src/commands/DeleteTagsCommand.ts index e573ae801d3ac..41e7d54262194 100644 --- a/clients/client-ec2/src/commands/DeleteTagsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagsRequest } from "../models/models_2"; +import type { DeleteTagsRequest } from "../models/models_2"; import { DeleteTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts index fcf40a623f52e..fda8da876556d 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrafficMirrorFilterRequest, DeleteTrafficMirrorFilterResult } from "../models/models_2"; +import type { DeleteTrafficMirrorFilterRequest, DeleteTrafficMirrorFilterResult } from "../models/models_2"; import { DeleteTrafficMirrorFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts index 75657127c804c..f38c720145ae8 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorFilterRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrafficMirrorFilterRuleRequest, DeleteTrafficMirrorFilterRuleResult } from "../models/models_2"; +import type { DeleteTrafficMirrorFilterRuleRequest, DeleteTrafficMirrorFilterRuleResult } from "../models/models_2"; import { DeleteTrafficMirrorFilterRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts index 3c9be932e18b5..09952343253f5 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrafficMirrorSessionRequest, DeleteTrafficMirrorSessionResult } from "../models/models_2"; +import type { DeleteTrafficMirrorSessionRequest, DeleteTrafficMirrorSessionResult } from "../models/models_2"; import { DeleteTrafficMirrorSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts b/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts index a1f2010e64620..cf02070a8a787 100644 --- a/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTrafficMirrorTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrafficMirrorTargetRequest, DeleteTrafficMirrorTargetResult } from "../models/models_2"; +import type { DeleteTrafficMirrorTargetRequest, DeleteTrafficMirrorTargetResult } from "../models/models_2"; import { DeleteTrafficMirrorTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts index fc0f76159da4d..0926c443a8592 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTransitGatewayRequest, DeleteTransitGatewayResult } from "../models/models_2"; +import type { DeleteTransitGatewayRequest, DeleteTransitGatewayResult } from "../models/models_2"; import { DeleteTransitGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts index 7d8de47e842cd..cc0c2add8ee3a 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTransitGatewayConnectRequest, DeleteTransitGatewayConnectResult } from "../models/models_2"; +import type { DeleteTransitGatewayConnectRequest, DeleteTransitGatewayConnectResult } from "../models/models_2"; import { DeleteTransitGatewayConnect } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts index 6474e00e6ba33..81ba10e4596be 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayConnectPeerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTransitGatewayConnectPeerRequest, DeleteTransitGatewayConnectPeerResult } from "../models/models_2"; +import type { DeleteTransitGatewayConnectPeerRequest, DeleteTransitGatewayConnectPeerResult } from "../models/models_2"; import { DeleteTransitGatewayConnectPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayMeteringPolicyCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayMeteringPolicyCommand.ts index 18246c08c937f..f3d693851e019 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayMeteringPolicyCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayMeteringPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteTransitGatewayMeteringPolicyRequest, DeleteTransitGatewayMeteringPolicyResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.ts index 1a2a50b2b0a7e..a46658bd103f7 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteTransitGatewayMeteringPolicyEntryRequest, DeleteTransitGatewayMeteringPolicyEntryResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts index 5b7874d7d9030..1d53c6eece7fd 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayMulticastDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteTransitGatewayMulticastDomainRequest, DeleteTransitGatewayMulticastDomainResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts index 2c9f2a2ce3dd8..3edc00176f05b 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayPeeringAttachmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteTransitGatewayPeeringAttachmentRequest, DeleteTransitGatewayPeeringAttachmentResult, } from "../models/models_2"; diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts index 0051a178a823d..b28ff3090b3ef 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayPolicyTableCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTransitGatewayPolicyTableRequest } from "../models/models_2"; -import { DeleteTransitGatewayPolicyTableResult } from "../models/models_3"; +import type { DeleteTransitGatewayPolicyTableRequest } from "../models/models_2"; +import type { DeleteTransitGatewayPolicyTableResult } from "../models/models_3"; import { DeleteTransitGatewayPolicyTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts index 78c71866776b6..4cece0d31f8c0 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayPrefixListReferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteTransitGatewayPrefixListReferenceRequest, DeleteTransitGatewayPrefixListReferenceResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts index b15e0b635f187..4429b9a2f2bce 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTransitGatewayRouteRequest, DeleteTransitGatewayRouteResult } from "../models/models_3"; +import type { DeleteTransitGatewayRouteRequest, DeleteTransitGatewayRouteResult } from "../models/models_3"; import { DeleteTransitGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts index 09fabfb140ab2..8d9c91ba34be0 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteTransitGatewayRouteTableAnnouncementRequest, DeleteTransitGatewayRouteTableAnnouncementResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts index 98eaa4f8b301e..8908ee232646e 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayRouteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTransitGatewayRouteTableRequest, DeleteTransitGatewayRouteTableResult } from "../models/models_3"; +import type { DeleteTransitGatewayRouteTableRequest, DeleteTransitGatewayRouteTableResult } from "../models/models_3"; import { DeleteTransitGatewayRouteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts index 808140d56b582..15a10703a56d9 100644 --- a/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/DeleteTransitGatewayVpcAttachmentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTransitGatewayVpcAttachmentRequest, DeleteTransitGatewayVpcAttachmentResult } from "../models/models_3"; +import type { + DeleteTransitGatewayVpcAttachmentRequest, + DeleteTransitGatewayVpcAttachmentResult, +} from "../models/models_3"; import { DeleteTransitGatewayVpcAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts index cd05402a2a632..d3207bd659dcc 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVerifiedAccessEndpointRequest, DeleteVerifiedAccessEndpointResult } from "../models/models_3"; +import type { DeleteVerifiedAccessEndpointRequest, DeleteVerifiedAccessEndpointResult } from "../models/models_3"; import { DeleteVerifiedAccessEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts index e8ec616d91ec7..576f56a5c34b8 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVerifiedAccessGroupRequest, DeleteVerifiedAccessGroupResult } from "../models/models_3"; +import type { DeleteVerifiedAccessGroupRequest, DeleteVerifiedAccessGroupResult } from "../models/models_3"; import { DeleteVerifiedAccessGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts index 1310e336db84a..c2be0fa51e2b5 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVerifiedAccessInstanceRequest, DeleteVerifiedAccessInstanceResult } from "../models/models_3"; +import type { DeleteVerifiedAccessInstanceRequest, DeleteVerifiedAccessInstanceResult } from "../models/models_3"; import { DeleteVerifiedAccessInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts index b46cca2176f2c..10181cb37612c 100644 --- a/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVerifiedAccessTrustProviderCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVerifiedAccessTrustProviderRequest, DeleteVerifiedAccessTrustProviderResult } from "../models/models_3"; +import type { + DeleteVerifiedAccessTrustProviderRequest, + DeleteVerifiedAccessTrustProviderResult, +} from "../models/models_3"; import { DeleteVerifiedAccessTrustProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVolumeCommand.ts b/clients/client-ec2/src/commands/DeleteVolumeCommand.ts index da614c3c82b27..c54c06f954c8e 100644 --- a/clients/client-ec2/src/commands/DeleteVolumeCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVolumeRequest } from "../models/models_3"; +import type { DeleteVolumeRequest } from "../models/models_3"; import { DeleteVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVpcBlockPublicAccessExclusionCommand.ts b/clients/client-ec2/src/commands/DeleteVpcBlockPublicAccessExclusionCommand.ts index da5bd1e1837eb..f9c81a2405c46 100644 --- a/clients/client-ec2/src/commands/DeleteVpcBlockPublicAccessExclusionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcBlockPublicAccessExclusionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteVpcBlockPublicAccessExclusionRequest, DeleteVpcBlockPublicAccessExclusionResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DeleteVpcCommand.ts b/clients/client-ec2/src/commands/DeleteVpcCommand.ts index 1ab43b1f73394..82d61245b7202 100644 --- a/clients/client-ec2/src/commands/DeleteVpcCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcRequest } from "../models/models_3"; +import type { DeleteVpcRequest } from "../models/models_3"; import { DeleteVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVpcEncryptionControlCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEncryptionControlCommand.ts index 2574e802c5690..6717cd8cf7024 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEncryptionControlCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEncryptionControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcEncryptionControlRequest, DeleteVpcEncryptionControlResult } from "../models/models_3"; +import type { DeleteVpcEncryptionControlRequest, DeleteVpcEncryptionControlResult } from "../models/models_3"; import { DeleteVpcEncryptionControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts index 8923173f1a235..c6ed753e34793 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEndpointConnectionNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteVpcEndpointConnectionNotificationsRequest, DeleteVpcEndpointConnectionNotificationsResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts index 1ad3b3e6161c3..12f7f8a3467af 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEndpointServiceConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteVpcEndpointServiceConfigurationsRequest, DeleteVpcEndpointServiceConfigurationsResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts b/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts index 6495512a76e25..e25c5a6599719 100644 --- a/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcEndpointsRequest, DeleteVpcEndpointsResult } from "../models/models_3"; +import type { DeleteVpcEndpointsRequest, DeleteVpcEndpointsResult } from "../models/models_3"; import { DeleteVpcEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts index b82e276af18e0..db492803eb4d9 100644 --- a/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpcPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcPeeringConnectionRequest, DeleteVpcPeeringConnectionResult } from "../models/models_3"; +import type { DeleteVpcPeeringConnectionRequest, DeleteVpcPeeringConnectionResult } from "../models/models_3"; import { DeleteVpcPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVpnConcentratorCommand.ts b/clients/client-ec2/src/commands/DeleteVpnConcentratorCommand.ts index 5c538fa5c70c2..67edd56cc76c8 100644 --- a/clients/client-ec2/src/commands/DeleteVpnConcentratorCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnConcentratorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpnConcentratorRequest, DeleteVpnConcentratorResult } from "../models/models_3"; +import type { DeleteVpnConcentratorRequest, DeleteVpnConcentratorResult } from "../models/models_3"; import { DeleteVpnConcentrator } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts b/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts index 9248e64941921..aef8beae2b6f7 100644 --- a/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpnConnectionRequest } from "../models/models_3"; +import type { DeleteVpnConnectionRequest } from "../models/models_3"; import { DeleteVpnConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts b/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts index fc1399d9b9e12..4b58058591244 100644 --- a/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnConnectionRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpnConnectionRouteRequest } from "../models/models_3"; +import type { DeleteVpnConnectionRouteRequest } from "../models/models_3"; import { DeleteVpnConnectionRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts b/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts index c67536e1f2c19..4a3e79db1473e 100644 --- a/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DeleteVpnGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpnGatewayRequest } from "../models/models_3"; +import type { DeleteVpnGatewayRequest } from "../models/models_3"; import { DeleteVpnGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts b/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts index f27730cc0736d..30da5464cb915 100644 --- a/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionByoipCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeprovisionByoipCidrRequest, DeprovisionByoipCidrResult } from "../models/models_3"; +import type { DeprovisionByoipCidrRequest, DeprovisionByoipCidrResult } from "../models/models_3"; import { DeprovisionByoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts b/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts index 4917d24c1d559..9c4e9a0fd8b8d 100644 --- a/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionIpamByoasnCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeprovisionIpamByoasnRequest, DeprovisionIpamByoasnResult } from "../models/models_3"; +import type { DeprovisionIpamByoasnRequest, DeprovisionIpamByoasnResult } from "../models/models_3"; import { DeprovisionIpamByoasn } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts b/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts index 7115c0472076a..88eccf54d5f10 100644 --- a/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionIpamPoolCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeprovisionIpamPoolCidrRequest, DeprovisionIpamPoolCidrResult } from "../models/models_3"; +import type { DeprovisionIpamPoolCidrRequest, DeprovisionIpamPoolCidrResult } from "../models/models_3"; import { DeprovisionIpamPoolCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts b/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts index c0139fcb50b83..1f8f622c4deb9 100644 --- a/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/DeprovisionPublicIpv4PoolCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeprovisionPublicIpv4PoolCidrRequest, DeprovisionPublicIpv4PoolCidrResult } from "../models/models_3"; +import type { DeprovisionPublicIpv4PoolCidrRequest, DeprovisionPublicIpv4PoolCidrResult } from "../models/models_3"; import { DeprovisionPublicIpv4PoolCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeregisterImageCommand.ts b/clients/client-ec2/src/commands/DeregisterImageCommand.ts index ad75222da93a5..6d5efa91ff942 100644 --- a/clients/client-ec2/src/commands/DeregisterImageCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterImageRequest, DeregisterImageResult } from "../models/models_3"; +import type { DeregisterImageRequest, DeregisterImageResult } from "../models/models_3"; import { DeregisterImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts b/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts index 21058ce0e900c..45deb88d9a335 100644 --- a/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterInstanceEventNotificationAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterInstanceEventNotificationAttributesRequest, DeregisterInstanceEventNotificationAttributesResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts index 30d8b0f0fbb4d..1157c5080afea 100644 --- a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterTransitGatewayMulticastGroupMembersRequest, DeregisterTransitGatewayMulticastGroupMembersResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts index e22e451df89ac..4179873c07e21 100644 --- a/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts +++ b/clients/client-ec2/src/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterTransitGatewayMulticastGroupSourcesRequest, DeregisterTransitGatewayMulticastGroupSourcesResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts index cd84beeb93b2d..d3ddbbc4bc463 100644 --- a/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAccountAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountAttributesRequest, DescribeAccountAttributesResult } from "../models/models_3"; +import type { DescribeAccountAttributesRequest, DescribeAccountAttributesResult } from "../models/models_3"; import { DescribeAccountAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts b/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts index 185f14e8c10e3..f511316329ec3 100644 --- a/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAddressTransfersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAddressTransfersRequest, DescribeAddressTransfersResult } from "../models/models_3"; +import type { DescribeAddressTransfersRequest, DescribeAddressTransfersResult } from "../models/models_3"; import { DescribeAddressTransfers } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts index 70872dd5a324c..86679bdd28855 100644 --- a/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAddressesAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAddressesAttributeRequest, DescribeAddressesAttributeResult } from "../models/models_3"; +import type { DescribeAddressesAttributeRequest, DescribeAddressesAttributeResult } from "../models/models_3"; import { DescribeAddressesAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeAddressesCommand.ts b/clients/client-ec2/src/commands/DescribeAddressesCommand.ts index 0826c1065cf0f..66d671526a0d4 100644 --- a/clients/client-ec2/src/commands/DescribeAddressesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAddressesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAddressesRequest, DescribeAddressesResult } from "../models/models_3"; +import type { DescribeAddressesRequest, DescribeAddressesResult } from "../models/models_3"; import { DescribeAddresses } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts index 671a81afff06b..2176c2ed253d2 100644 --- a/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAggregateIdFormatCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAggregateIdFormatRequest, DescribeAggregateIdFormatResult } from "../models/models_3"; +import type { DescribeAggregateIdFormatRequest, DescribeAggregateIdFormatResult } from "../models/models_3"; import { DescribeAggregateIdFormat } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts b/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts index aac2bdf9f8515..30f0a3bec3aaf 100644 --- a/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAvailabilityZonesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAvailabilityZonesRequest, DescribeAvailabilityZonesResult } from "../models/models_3"; +import type { DescribeAvailabilityZonesRequest, DescribeAvailabilityZonesResult } from "../models/models_3"; import { DescribeAvailabilityZones } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts b/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts index 86dd9a2a8f71e..50c0840d31300 100644 --- a/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeAwsNetworkPerformanceMetricSubscriptionsRequest, DescribeAwsNetworkPerformanceMetricSubscriptionsResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts b/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts index 447fcddbb76d7..ad02a1d93ae96 100644 --- a/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeBundleTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBundleTasksRequest, DescribeBundleTasksResult } from "../models/models_3"; +import type { DescribeBundleTasksRequest, DescribeBundleTasksResult } from "../models/models_3"; import { DescribeBundleTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts b/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts index 091682e4a43b1..3c1bd73d66b53 100644 --- a/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeByoipCidrsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeByoipCidrsRequest, DescribeByoipCidrsResult } from "../models/models_3"; +import type { DescribeByoipCidrsRequest, DescribeByoipCidrsResult } from "../models/models_3"; import { DescribeByoipCidrs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionHistoryCommand.ts index 44fa890f28ab8..9a64dc23193ad 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeCapacityBlockExtensionHistoryRequest, DescribeCapacityBlockExtensionHistoryResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionOfferingsCommand.ts index dc2fabf5dd052..0d8d6e106b729 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityBlockExtensionOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeCapacityBlockExtensionOfferingsRequest, DescribeCapacityBlockExtensionOfferingsResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts index 3b7cdef011881..0b7accb23cbe2 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityBlockOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCapacityBlockOfferingsRequest, DescribeCapacityBlockOfferingsResult } from "../models/models_3"; +import type { DescribeCapacityBlockOfferingsRequest, DescribeCapacityBlockOfferingsResult } from "../models/models_3"; import { DescribeCapacityBlockOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeCapacityBlockStatusCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityBlockStatusCommand.ts index a0bc8c935fe95..a74ce2cb683d5 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityBlockStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityBlockStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCapacityBlockStatusRequest, DescribeCapacityBlockStatusResult } from "../models/models_3"; +import type { DescribeCapacityBlockStatusRequest, DescribeCapacityBlockStatusResult } from "../models/models_3"; import { DescribeCapacityBlockStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeCapacityBlocksCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityBlocksCommand.ts index 18ede1efa6d05..559523dab63e3 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityBlocksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityBlocksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCapacityBlocksRequest, DescribeCapacityBlocksResult } from "../models/models_3"; +import type { DescribeCapacityBlocksRequest, DescribeCapacityBlocksResult } from "../models/models_3"; import { DescribeCapacityBlocks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeCapacityManagerDataExportsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityManagerDataExportsCommand.ts index f22ad403de66e..7e021cc7f6718 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityManagerDataExportsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityManagerDataExportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeCapacityManagerDataExportsRequest, DescribeCapacityManagerDataExportsResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationBillingRequestsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationBillingRequestsCommand.ts index 6216b2b235f64..ac78d73dea573 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityReservationBillingRequestsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityReservationBillingRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeCapacityReservationBillingRequestsRequest, DescribeCapacityReservationBillingRequestsResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts index ef0d5d5cb7707..c25c14d284df9 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityReservationFleetsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCapacityReservationFleetsRequest, DescribeCapacityReservationFleetsResult } from "../models/models_3"; +import type { + DescribeCapacityReservationFleetsRequest, + DescribeCapacityReservationFleetsResult, +} from "../models/models_3"; import { DescribeCapacityReservationFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationTopologyCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationTopologyCommand.ts index 467ba2c41bd4f..dc686597eb3fc 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityReservationTopologyCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityReservationTopologyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeCapacityReservationTopologyRequest, DescribeCapacityReservationTopologyResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts b/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts index 7d87ed18ed355..459fc5909fb71 100644 --- a/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCapacityReservationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCapacityReservationsRequest, DescribeCapacityReservationsResult } from "../models/models_3"; +import type { DescribeCapacityReservationsRequest, DescribeCapacityReservationsResult } from "../models/models_3"; import { DescribeCapacityReservations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts index 287f5885e6c9e..a2b92286a0516 100644 --- a/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCarrierGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCarrierGatewaysRequest, DescribeCarrierGatewaysResult } from "../models/models_3"; +import type { DescribeCarrierGatewaysRequest, DescribeCarrierGatewaysResult } from "../models/models_3"; import { DescribeCarrierGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts index 649166e78d83c..55cc6a82d30fe 100644 --- a/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClassicLinkInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClassicLinkInstancesRequest, DescribeClassicLinkInstancesResult } from "../models/models_3"; +import type { DescribeClassicLinkInstancesRequest, DescribeClassicLinkInstancesResult } from "../models/models_3"; import { DescribeClassicLinkInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts index e53f52d2e5430..dba6ae4f5abc0 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnAuthorizationRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeClientVpnAuthorizationRulesRequest, DescribeClientVpnAuthorizationRulesResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts index 3463e415ce60c..03d785849afaa 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClientVpnConnectionsRequest, DescribeClientVpnConnectionsResult } from "../models/models_3"; +import type { DescribeClientVpnConnectionsRequest, DescribeClientVpnConnectionsResult } from "../models/models_3"; import { DescribeClientVpnConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts index c72ae5cef0c8c..b3c27d86459f4 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClientVpnEndpointsRequest, DescribeClientVpnEndpointsResult } from "../models/models_3"; +import type { DescribeClientVpnEndpointsRequest, DescribeClientVpnEndpointsResult } from "../models/models_3"; import { DescribeClientVpnEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts index 09497196fa893..527a5213e62f1 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnRoutesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClientVpnRoutesRequest, DescribeClientVpnRoutesResult } from "../models/models_3"; +import type { DescribeClientVpnRoutesRequest, DescribeClientVpnRoutesResult } from "../models/models_3"; import { DescribeClientVpnRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts b/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts index 3a64ab31c3a7e..22ed52a986ef7 100644 --- a/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeClientVpnTargetNetworksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClientVpnTargetNetworksRequest, DescribeClientVpnTargetNetworksResult } from "../models/models_3"; +import type { DescribeClientVpnTargetNetworksRequest, DescribeClientVpnTargetNetworksResult } from "../models/models_3"; import { DescribeClientVpnTargetNetworks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts b/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts index 24c6e26465010..85043fa6ac137 100644 --- a/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCoipPoolsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCoipPoolsRequest, DescribeCoipPoolsResult } from "../models/models_3"; +import type { DescribeCoipPoolsRequest, DescribeCoipPoolsResult } from "../models/models_3"; import { DescribeCoipPools } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts b/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts index 906863e0d364b..1ea2cfdd80805 100644 --- a/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeConversionTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConversionTasksRequest, DescribeConversionTasksResult } from "../models/models_3"; +import type { DescribeConversionTasksRequest, DescribeConversionTasksResult } from "../models/models_3"; import { DescribeConversionTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts index 7ddc077c2f7be..296536d4bba28 100644 --- a/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeCustomerGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCustomerGatewaysRequest, DescribeCustomerGatewaysResult } from "../models/models_3"; +import type { DescribeCustomerGatewaysRequest, DescribeCustomerGatewaysResult } from "../models/models_3"; import { DescribeCustomerGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeDeclarativePoliciesReportsCommand.ts b/clients/client-ec2/src/commands/DescribeDeclarativePoliciesReportsCommand.ts index de96540c3ec16..2bb0baf5d0f48 100644 --- a/clients/client-ec2/src/commands/DescribeDeclarativePoliciesReportsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeDeclarativePoliciesReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDeclarativePoliciesReportsRequest, DescribeDeclarativePoliciesReportsResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts b/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts index 73dd202a73c5e..11720f47dee33 100644 --- a/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeDhcpOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDhcpOptionsRequest, DescribeDhcpOptionsResult } from "../models/models_3"; +import type { DescribeDhcpOptionsRequest, DescribeDhcpOptionsResult } from "../models/models_3"; import { DescribeDhcpOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts index 0e92454cd6d58..bb2d79a9c9d6a 100644 --- a/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeEgressOnlyInternetGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeEgressOnlyInternetGatewaysRequest, DescribeEgressOnlyInternetGatewaysResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts b/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts index 8db5ed014ceca..eda8203216bfe 100644 --- a/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeElasticGpusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeElasticGpusRequest, DescribeElasticGpusResult } from "../models/models_3"; +import type { DescribeElasticGpusRequest, DescribeElasticGpusResult } from "../models/models_3"; import { DescribeElasticGpus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts b/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts index 898750da8e72d..867f7ba3b938b 100644 --- a/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeExportImageTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExportImageTasksRequest, DescribeExportImageTasksResult } from "../models/models_3"; +import type { DescribeExportImageTasksRequest, DescribeExportImageTasksResult } from "../models/models_3"; import { DescribeExportImageTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts b/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts index ae3a2f82a36dd..19242c3497b7d 100644 --- a/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeExportTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExportTasksRequest, DescribeExportTasksResult } from "../models/models_3"; +import type { DescribeExportTasksRequest, DescribeExportTasksResult } from "../models/models_3"; import { DescribeExportTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts b/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts index 7eecd3885d7cb..964d4308e24a3 100644 --- a/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFastLaunchImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFastLaunchImagesRequest, DescribeFastLaunchImagesResult } from "../models/models_3"; +import type { DescribeFastLaunchImagesRequest, DescribeFastLaunchImagesResult } from "../models/models_3"; import { DescribeFastLaunchImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts b/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts index f6e740ecb3082..2046003b8a073 100644 --- a/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFastSnapshotRestoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFastSnapshotRestoresRequest, DescribeFastSnapshotRestoresResult } from "../models/models_3"; +import type { DescribeFastSnapshotRestoresRequest, DescribeFastSnapshotRestoresResult } from "../models/models_3"; import { DescribeFastSnapshotRestores } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts index 44f5c20094234..ac3a12f679ccd 100644 --- a/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFleetHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFleetHistoryRequest, DescribeFleetHistoryResult } from "../models/models_3"; +import type { DescribeFleetHistoryRequest, DescribeFleetHistoryResult } from "../models/models_3"; import { DescribeFleetHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts index ff87bc1862869..8ac284b033cc1 100644 --- a/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFleetInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFleetInstancesRequest, DescribeFleetInstancesResult } from "../models/models_3"; +import type { DescribeFleetInstancesRequest, DescribeFleetInstancesResult } from "../models/models_3"; import { DescribeFleetInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeFleetsCommand.ts b/clients/client-ec2/src/commands/DescribeFleetsCommand.ts index c335c595a872b..2d92e3210982a 100644 --- a/clients/client-ec2/src/commands/DescribeFleetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFleetsRequest, DescribeFleetsResult } from "../models/models_3"; +import type { DescribeFleetsRequest, DescribeFleetsResult } from "../models/models_3"; import { DescribeFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts b/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts index b55dece26cecf..f4f55e4344bac 100644 --- a/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFlowLogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFlowLogsRequest, DescribeFlowLogsResult } from "../models/models_3"; +import type { DescribeFlowLogsRequest, DescribeFlowLogsResult } from "../models/models_3"; import { DescribeFlowLogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts index 3e02832de69de..84b5a18d4529c 100644 --- a/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFpgaImageAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFpgaImageAttributeRequest, DescribeFpgaImageAttributeResult } from "../models/models_3"; +import type { DescribeFpgaImageAttributeRequest, DescribeFpgaImageAttributeResult } from "../models/models_3"; import { DescribeFpgaImageAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts b/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts index 91a5f3de3729e..fde8fdda630ff 100644 --- a/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeFpgaImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFpgaImagesRequest, DescribeFpgaImagesResult } from "../models/models_3"; +import type { DescribeFpgaImagesRequest, DescribeFpgaImagesResult } from "../models/models_3"; import { DescribeFpgaImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts index 3739d0186b9b1..8d8dfb61725f4 100644 --- a/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeHostReservationOfferingsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHostReservationOfferingsRequest, DescribeHostReservationOfferingsResult } from "../models/models_3"; +import type { + DescribeHostReservationOfferingsRequest, + DescribeHostReservationOfferingsResult, +} from "../models/models_3"; import { DescribeHostReservationOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts b/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts index 5f71a0b9fc346..205f90471a277 100644 --- a/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeHostReservationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHostReservationsRequest, DescribeHostReservationsResult } from "../models/models_3"; +import type { DescribeHostReservationsRequest, DescribeHostReservationsResult } from "../models/models_3"; import { DescribeHostReservations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeHostsCommand.ts b/clients/client-ec2/src/commands/DescribeHostsCommand.ts index 0c6540578176f..a6b27b08ef30e 100644 --- a/clients/client-ec2/src/commands/DescribeHostsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeHostsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHostsRequest, DescribeHostsResult } from "../models/models_3"; +import type { DescribeHostsRequest, DescribeHostsResult } from "../models/models_3"; import { DescribeHosts } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts index 1528e532040b9..1485c33fd1c82 100644 --- a/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIamInstanceProfileAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeIamInstanceProfileAssociationsRequest, DescribeIamInstanceProfileAssociationsResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts index 1396fa61db4c1..a655625de3ddd 100644 --- a/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIdFormatCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIdFormatRequest, DescribeIdFormatResult } from "../models/models_3"; +import type { DescribeIdFormatRequest, DescribeIdFormatResult } from "../models/models_3"; import { DescribeIdFormat } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts index f4d476d713936..3fd28df9dc84a 100644 --- a/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIdentityIdFormatCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIdentityIdFormatRequest, DescribeIdentityIdFormatResult } from "../models/models_3"; +import type { DescribeIdentityIdFormatRequest, DescribeIdentityIdFormatResult } from "../models/models_3"; import { DescribeIdentityIdFormat } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts index fc2fee0aaaf7a..c3ada6912e8d6 100644 --- a/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImageAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageAttributeRequest, ImageAttribute } from "../models/models_3"; +import type { DescribeImageAttributeRequest, ImageAttribute } from "../models/models_3"; import { DescribeImageAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeImageReferencesCommand.ts b/clients/client-ec2/src/commands/DescribeImageReferencesCommand.ts index 75088dc184447..9c2306869a88c 100644 --- a/clients/client-ec2/src/commands/DescribeImageReferencesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImageReferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageReferencesRequest, DescribeImageReferencesResult } from "../models/models_3"; +import type { DescribeImageReferencesRequest, DescribeImageReferencesResult } from "../models/models_3"; import { DescribeImageReferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeImageUsageReportEntriesCommand.ts b/clients/client-ec2/src/commands/DescribeImageUsageReportEntriesCommand.ts index 042f099b4b24e..727e18c15d47e 100644 --- a/clients/client-ec2/src/commands/DescribeImageUsageReportEntriesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImageUsageReportEntriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageUsageReportEntriesRequest, DescribeImageUsageReportEntriesResult } from "../models/models_3"; +import type { DescribeImageUsageReportEntriesRequest, DescribeImageUsageReportEntriesResult } from "../models/models_3"; import { DescribeImageUsageReportEntries } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeImageUsageReportsCommand.ts b/clients/client-ec2/src/commands/DescribeImageUsageReportsCommand.ts index 367a737a899b7..1a12e202d32e8 100644 --- a/clients/client-ec2/src/commands/DescribeImageUsageReportsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImageUsageReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageUsageReportsRequest, DescribeImageUsageReportsResult } from "../models/models_3"; +import type { DescribeImageUsageReportsRequest, DescribeImageUsageReportsResult } from "../models/models_3"; import { DescribeImageUsageReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeImagesCommand.ts b/clients/client-ec2/src/commands/DescribeImagesCommand.ts index 4c0653e99d2cb..3966d81ee8c3f 100644 --- a/clients/client-ec2/src/commands/DescribeImagesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImagesRequest, DescribeImagesResult } from "../models/models_3"; +import type { DescribeImagesRequest, DescribeImagesResult } from "../models/models_3"; import { DescribeImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts b/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts index 3b1f67f0fc55b..f272b2dc94e22 100644 --- a/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImportImageTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImportImageTasksRequest, DescribeImportImageTasksResult } from "../models/models_3"; +import type { DescribeImportImageTasksRequest, DescribeImportImageTasksResult } from "../models/models_3"; import { DescribeImportImageTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts b/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts index c73520ba5282b..06b489d3d24fe 100644 --- a/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeImportSnapshotTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImportSnapshotTasksRequest, DescribeImportSnapshotTasksResult } from "../models/models_3"; +import type { DescribeImportSnapshotTasksRequest, DescribeImportSnapshotTasksResult } from "../models/models_3"; import { DescribeImportSnapshotTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts index 0c903e67bfb0e..9d27d54284d71 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceAttributeRequest, InstanceAttribute } from "../models/models_3"; +import type { DescribeInstanceAttributeRequest, InstanceAttribute } from "../models/models_3"; import { DescribeInstanceAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts index e63769e825306..9b101bef089ab 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceConnectEndpointsRequest, DescribeInstanceConnectEndpointsResult } from "../models/models_3"; +import type { + DescribeInstanceConnectEndpointsRequest, + DescribeInstanceConnectEndpointsResult, +} from "../models/models_3"; import { DescribeInstanceConnectEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts index 942bea36523a9..d42ddc8e4f56e 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceCreditSpecificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeInstanceCreditSpecificationsRequest, DescribeInstanceCreditSpecificationsResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts index 034d6cc96382c..4c121e1f83336 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceEventNotificationAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeInstanceEventNotificationAttributesRequest, DescribeInstanceEventNotificationAttributesResult, } from "../models/models_3"; diff --git a/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts index bf202fc5c162a..ef0e6527e4542 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceEventWindowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceEventWindowsRequest, DescribeInstanceEventWindowsResult } from "../models/models_3"; +import type { DescribeInstanceEventWindowsRequest, DescribeInstanceEventWindowsResult } from "../models/models_3"; import { DescribeInstanceEventWindows } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstanceImageMetadataCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceImageMetadataCommand.ts index 6c06a2b70c7dd..959988403ebd6 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceImageMetadataCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceImageMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceImageMetadataRequest, DescribeInstanceImageMetadataResult } from "../models/models_3"; +import type { DescribeInstanceImageMetadataRequest, DescribeInstanceImageMetadataResult } from "../models/models_3"; import { DescribeInstanceImageMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstanceSqlHaHistoryStatesCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceSqlHaHistoryStatesCommand.ts index 93d24f9aee0c2..4a954b7989e9b 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceSqlHaHistoryStatesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceSqlHaHistoryStatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeInstanceSqlHaHistoryStatesRequest, DescribeInstanceSqlHaHistoryStatesResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeInstanceSqlHaStatesCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceSqlHaStatesCommand.ts index 01b914f686784..469154bf9155f 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceSqlHaStatesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceSqlHaStatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceSqlHaStatesRequest, DescribeInstanceSqlHaStatesResult } from "../models/models_4"; +import type { DescribeInstanceSqlHaStatesRequest, DescribeInstanceSqlHaStatesResult } from "../models/models_4"; import { DescribeInstanceSqlHaStates } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts index 0aa44e8977333..82417e59daa63 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceStatusRequest, DescribeInstanceStatusResult } from "../models/models_4"; +import type { DescribeInstanceStatusRequest, DescribeInstanceStatusResult } from "../models/models_4"; import { DescribeInstanceStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts index fe09332d8202e..4030228765f51 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceTopologyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceTopologyRequest, DescribeInstanceTopologyResult } from "../models/models_4"; +import type { DescribeInstanceTopologyRequest, DescribeInstanceTopologyResult } from "../models/models_4"; import { DescribeInstanceTopology } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts index d6ee2e7fbf80a..cb5b2ebf2066b 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceTypeOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceTypeOfferingsRequest, DescribeInstanceTypeOfferingsResult } from "../models/models_4"; +import type { DescribeInstanceTypeOfferingsRequest, DescribeInstanceTypeOfferingsResult } from "../models/models_4"; import { DescribeInstanceTypeOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts b/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts index 129719e5bcee7..bd29cd2501e6f 100644 --- a/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstanceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceTypesRequest, DescribeInstanceTypesResult } from "../models/models_4"; +import type { DescribeInstanceTypesRequest, DescribeInstanceTypesResult } from "../models/models_4"; import { DescribeInstanceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeInstancesCommand.ts index ec3702e226d99..acab24557109b 100644 --- a/clients/client-ec2/src/commands/DescribeInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInstancesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstancesRequest } from "../models/models_3"; -import { DescribeInstancesResult } from "../models/models_4"; +import type { DescribeInstancesRequest } from "../models/models_3"; +import type { DescribeInstancesResult } from "../models/models_4"; import { DescribeInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts index 43f5b916f3f1b..861c0cc2dcec5 100644 --- a/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeInternetGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInternetGatewaysRequest, DescribeInternetGatewaysResult } from "../models/models_4"; +import type { DescribeInternetGatewaysRequest, DescribeInternetGatewaysResult } from "../models/models_4"; import { DescribeInternetGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts b/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts index b71b10edb973b..9acfe2ac5f18b 100644 --- a/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamByoasnCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpamByoasnRequest, DescribeIpamByoasnResult } from "../models/models_4"; +import type { DescribeIpamByoasnRequest, DescribeIpamByoasnResult } from "../models/models_4"; import { DescribeIpamByoasn } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts b/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts index 01c2dfbb600bc..fd04c06c2785e 100644 --- a/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamExternalResourceVerificationTokensCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeIpamExternalResourceVerificationTokensRequest, DescribeIpamExternalResourceVerificationTokensResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeIpamPoliciesCommand.ts b/clients/client-ec2/src/commands/DescribeIpamPoliciesCommand.ts index 5bb57c24a057c..cdb9da1f3ea4b 100644 --- a/clients/client-ec2/src/commands/DescribeIpamPoliciesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpamPoliciesRequest, DescribeIpamPoliciesResult } from "../models/models_4"; +import type { DescribeIpamPoliciesRequest, DescribeIpamPoliciesResult } from "../models/models_4"; import { DescribeIpamPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts index 5869d604e9606..a82c35df4c97c 100644 --- a/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamPoolsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpamPoolsRequest, DescribeIpamPoolsResult } from "../models/models_4"; +import type { DescribeIpamPoolsRequest, DescribeIpamPoolsResult } from "../models/models_4"; import { DescribeIpamPools } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIpamPrefixListResolverTargetsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamPrefixListResolverTargetsCommand.ts index c2b07f801eff2..bd06800d28bb9 100644 --- a/clients/client-ec2/src/commands/DescribeIpamPrefixListResolverTargetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamPrefixListResolverTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeIpamPrefixListResolverTargetsRequest, DescribeIpamPrefixListResolverTargetsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeIpamPrefixListResolversCommand.ts b/clients/client-ec2/src/commands/DescribeIpamPrefixListResolversCommand.ts index 8fd80f4adf455..f43c8251f4655 100644 --- a/clients/client-ec2/src/commands/DescribeIpamPrefixListResolversCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamPrefixListResolversCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpamPrefixListResolversRequest, DescribeIpamPrefixListResolversResult } from "../models/models_4"; +import type { DescribeIpamPrefixListResolversRequest, DescribeIpamPrefixListResolversResult } from "../models/models_4"; import { DescribeIpamPrefixListResolvers } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts index 1f8aeb4228e7f..880a3735628ba 100644 --- a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpamResourceDiscoveriesRequest, DescribeIpamResourceDiscoveriesResult } from "../models/models_4"; +import type { DescribeIpamResourceDiscoveriesRequest, DescribeIpamResourceDiscoveriesResult } from "../models/models_4"; import { DescribeIpamResourceDiscoveries } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts index 2741803ceba6f..13cd096bc0b93 100644 --- a/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamResourceDiscoveryAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeIpamResourceDiscoveryAssociationsRequest, DescribeIpamResourceDiscoveryAssociationsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts b/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts index 03ce5f323f5bf..f9af40219a9d1 100644 --- a/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamScopesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpamScopesRequest, DescribeIpamScopesResult } from "../models/models_4"; +import type { DescribeIpamScopesRequest, DescribeIpamScopesResult } from "../models/models_4"; import { DescribeIpamScopes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIpamsCommand.ts b/clients/client-ec2/src/commands/DescribeIpamsCommand.ts index c91065875d027..0fede7f9abe7f 100644 --- a/clients/client-ec2/src/commands/DescribeIpamsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpamsRequest, DescribeIpamsResult } from "../models/models_4"; +import type { DescribeIpamsRequest, DescribeIpamsResult } from "../models/models_4"; import { DescribeIpams } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts b/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts index c39bbfa66d8f5..e832e63242c77 100644 --- a/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeIpv6PoolsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpv6PoolsRequest, DescribeIpv6PoolsResult } from "../models/models_4"; +import type { DescribeIpv6PoolsRequest, DescribeIpv6PoolsResult } from "../models/models_4"; import { DescribeIpv6Pools } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts b/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts index 9b4ef1a487b1c..e8910f841045a 100644 --- a/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeKeyPairsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeKeyPairsRequest, DescribeKeyPairsResult } from "../models/models_4"; +import type { DescribeKeyPairsRequest, DescribeKeyPairsResult } from "../models/models_4"; import { DescribeKeyPairs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts b/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts index a2f0da23f74b7..a1a578eb94a79 100644 --- a/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLaunchTemplateVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLaunchTemplateVersionsRequest, DescribeLaunchTemplateVersionsResult } from "../models/models_4"; +import type { DescribeLaunchTemplateVersionsRequest, DescribeLaunchTemplateVersionsResult } from "../models/models_4"; import { DescribeLaunchTemplateVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts b/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts index b2e059980f37b..63d8b599ec5e1 100644 --- a/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLaunchTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLaunchTemplatesRequest, DescribeLaunchTemplatesResult } from "../models/models_4"; +import type { DescribeLaunchTemplatesRequest, DescribeLaunchTemplatesResult } from "../models/models_4"; import { DescribeLaunchTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts index cac94e86a6f82..11dcc11997000 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsRequest, DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts index 4fcc7073f4e65..49577cc0c5ded 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeLocalGatewayRouteTableVpcAssociationsRequest, DescribeLocalGatewayRouteTableVpcAssociationsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts index 4d49f68a63c0d..c4ae1e4c182ef 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayRouteTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocalGatewayRouteTablesRequest, DescribeLocalGatewayRouteTablesResult } from "../models/models_4"; +import type { DescribeLocalGatewayRouteTablesRequest, DescribeLocalGatewayRouteTablesResult } from "../models/models_4"; import { DescribeLocalGatewayRouteTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts index b7f039f0aa529..35584d62b1075 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeLocalGatewayVirtualInterfaceGroupsRequest, DescribeLocalGatewayVirtualInterfaceGroupsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts index 750ff45fda183..401dd565db203 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewayVirtualInterfacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeLocalGatewayVirtualInterfacesRequest, DescribeLocalGatewayVirtualInterfacesResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts index a520bdf5911ad..a55b7d6c3b36f 100644 --- a/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLocalGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLocalGatewaysRequest, DescribeLocalGatewaysResult } from "../models/models_4"; +import type { DescribeLocalGatewaysRequest, DescribeLocalGatewaysResult } from "../models/models_4"; import { DescribeLocalGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts b/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts index c8ee70f381afe..68d7c35f66fa4 100644 --- a/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeLockedSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLockedSnapshotsRequest, DescribeLockedSnapshotsResult } from "../models/models_4"; +import type { DescribeLockedSnapshotsRequest, DescribeLockedSnapshotsResult } from "../models/models_4"; import { DescribeLockedSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts b/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts index d0a10ceaa868a..563bb6e6d9383 100644 --- a/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeMacHostsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMacHostsRequest, DescribeMacHostsResult } from "../models/models_4"; +import type { DescribeMacHostsRequest, DescribeMacHostsResult } from "../models/models_4"; import { DescribeMacHosts } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeMacModificationTasksCommand.ts b/clients/client-ec2/src/commands/DescribeMacModificationTasksCommand.ts index b75c7ccd636dc..92215200fab6c 100644 --- a/clients/client-ec2/src/commands/DescribeMacModificationTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeMacModificationTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMacModificationTasksRequest, DescribeMacModificationTasksResult } from "../models/models_4"; +import type { DescribeMacModificationTasksRequest, DescribeMacModificationTasksResult } from "../models/models_4"; import { DescribeMacModificationTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts b/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts index 10ca8e570a9fc..bde8e1b3df552 100644 --- a/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeManagedPrefixListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeManagedPrefixListsRequest, DescribeManagedPrefixListsResult } from "../models/models_4"; +import type { DescribeManagedPrefixListsRequest, DescribeManagedPrefixListsResult } from "../models/models_4"; import { DescribeManagedPrefixLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts b/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts index 95fdb673e352d..ddaac322e1db7 100644 --- a/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeMovingAddressesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMovingAddressesRequest, DescribeMovingAddressesResult } from "../models/models_4"; +import type { DescribeMovingAddressesRequest, DescribeMovingAddressesResult } from "../models/models_4"; import { DescribeMovingAddresses } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts index 955200bfbaea6..40afb67644fc7 100644 --- a/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNatGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNatGatewaysRequest, DescribeNatGatewaysResult } from "../models/models_4"; +import type { DescribeNatGatewaysRequest, DescribeNatGatewaysResult } from "../models/models_4"; import { DescribeNatGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts index c020bb3c27902..8d4d03f81c59d 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkAclsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNetworkAclsRequest, DescribeNetworkAclsResult } from "../models/models_4"; +import type { DescribeNetworkAclsRequest, DescribeNetworkAclsResult } from "../models/models_4"; import { DescribeNetworkAcls } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts index 8b744a1d745a7..f6699a332ed6f 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeNetworkInsightsAccessScopeAnalysesRequest, DescribeNetworkInsightsAccessScopeAnalysesResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts index f7367152924bb..c649debe04f2d 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsAccessScopesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeNetworkInsightsAccessScopesRequest, DescribeNetworkInsightsAccessScopesResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts index 09be50fbfd36a..4b045891ed405 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsAnalysesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNetworkInsightsAnalysesRequest, DescribeNetworkInsightsAnalysesResult } from "../models/models_4"; +import type { DescribeNetworkInsightsAnalysesRequest, DescribeNetworkInsightsAnalysesResult } from "../models/models_4"; import { DescribeNetworkInsightsAnalyses } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts index 10f66faf64231..ec025ce8d5063 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInsightsPathsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNetworkInsightsPathsRequest, DescribeNetworkInsightsPathsResult } from "../models/models_4"; +import type { DescribeNetworkInsightsPathsRequest, DescribeNetworkInsightsPathsResult } from "../models/models_4"; import { DescribeNetworkInsightsPaths } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts index 8f1640d2fb7b3..0e1257e544d4d 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInterfaceAttributeCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNetworkInterfaceAttributeRequest, DescribeNetworkInterfaceAttributeResult } from "../models/models_4"; +import type { + DescribeNetworkInterfaceAttributeRequest, + DescribeNetworkInterfaceAttributeResult, +} from "../models/models_4"; import { DescribeNetworkInterfaceAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts index a0ee3f299c412..e2f07f3a9fb94 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInterfacePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeNetworkInterfacePermissionsRequest, DescribeNetworkInterfacePermissionsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts b/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts index 14a2e6c77e38a..49e746503b0fa 100644 --- a/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeNetworkInterfacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNetworkInterfacesRequest, DescribeNetworkInterfacesResult } from "../models/models_4"; +import type { DescribeNetworkInterfacesRequest, DescribeNetworkInterfacesResult } from "../models/models_4"; import { DescribeNetworkInterfaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeOutpostLagsCommand.ts b/clients/client-ec2/src/commands/DescribeOutpostLagsCommand.ts index 8f63373867c28..a50c31f136c7b 100644 --- a/clients/client-ec2/src/commands/DescribeOutpostLagsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeOutpostLagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOutpostLagsRequest, DescribeOutpostLagsResult } from "../models/models_4"; +import type { DescribeOutpostLagsRequest, DescribeOutpostLagsResult } from "../models/models_4"; import { DescribeOutpostLags } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts b/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts index 00598251d8669..683374fd4b0f1 100644 --- a/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribePlacementGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePlacementGroupsRequest, DescribePlacementGroupsResult } from "../models/models_4"; +import type { DescribePlacementGroupsRequest, DescribePlacementGroupsResult } from "../models/models_4"; import { DescribePlacementGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts b/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts index b4a8895fbd12b..11bedc8b30315 100644 --- a/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts +++ b/clients/client-ec2/src/commands/DescribePrefixListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePrefixListsRequest, DescribePrefixListsResult } from "../models/models_4"; +import type { DescribePrefixListsRequest, DescribePrefixListsResult } from "../models/models_4"; import { DescribePrefixLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts b/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts index 23265dfbc4027..9083f5b55cd5a 100644 --- a/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/DescribePrincipalIdFormatCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePrincipalIdFormatRequest, DescribePrincipalIdFormatResult } from "../models/models_4"; +import type { DescribePrincipalIdFormatRequest, DescribePrincipalIdFormatResult } from "../models/models_4"; import { DescribePrincipalIdFormat } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts b/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts index c61509a528cb7..719f17149e9d2 100644 --- a/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts +++ b/clients/client-ec2/src/commands/DescribePublicIpv4PoolsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePublicIpv4PoolsRequest, DescribePublicIpv4PoolsResult } from "../models/models_4"; +import type { DescribePublicIpv4PoolsRequest, DescribePublicIpv4PoolsResult } from "../models/models_4"; import { DescribePublicIpv4Pools } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeRegionsCommand.ts b/clients/client-ec2/src/commands/DescribeRegionsCommand.ts index 8358b9bdb2d81..3eb13c97d2b97 100644 --- a/clients/client-ec2/src/commands/DescribeRegionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeRegionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegionsRequest, DescribeRegionsResult } from "../models/models_4"; +import type { DescribeRegionsRequest, DescribeRegionsResult } from "../models/models_4"; import { DescribeRegions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts b/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts index 7a06b4dd0ad23..71bbe87dfc851 100644 --- a/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReplaceRootVolumeTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReplaceRootVolumeTasksRequest, DescribeReplaceRootVolumeTasksResult } from "../models/models_4"; +import type { DescribeReplaceRootVolumeTasksRequest, DescribeReplaceRootVolumeTasksResult } from "../models/models_4"; import { DescribeReplaceRootVolumeTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts index b0357334e60c0..01b15dbc9a632 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedInstancesRequest, DescribeReservedInstancesResult } from "../models/models_4"; +import type { DescribeReservedInstancesRequest, DescribeReservedInstancesResult } from "../models/models_4"; import { DescribeReservedInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts index 094cec0cb5067..a9c8b1ab61910 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesListingsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedInstancesListingsRequest, DescribeReservedInstancesListingsResult } from "../models/models_4"; +import type { + DescribeReservedInstancesListingsRequest, + DescribeReservedInstancesListingsResult, +} from "../models/models_4"; import { DescribeReservedInstancesListings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts index 40ee12d602540..c1fd598dbf637 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesModificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReservedInstancesModificationsRequest, DescribeReservedInstancesModificationsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts b/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts index 0e096cc64b0dc..32b6d079c09a3 100644 --- a/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeReservedInstancesOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReservedInstancesOfferingsRequest, DescribeReservedInstancesOfferingsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeRouteServerEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeRouteServerEndpointsCommand.ts index 6eb1d4f5ed226..8003e3a16f3b3 100644 --- a/clients/client-ec2/src/commands/DescribeRouteServerEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeRouteServerEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRouteServerEndpointsRequest, DescribeRouteServerEndpointsResult } from "../models/models_4"; +import type { DescribeRouteServerEndpointsRequest, DescribeRouteServerEndpointsResult } from "../models/models_4"; import { DescribeRouteServerEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeRouteServerPeersCommand.ts b/clients/client-ec2/src/commands/DescribeRouteServerPeersCommand.ts index a27049ede450a..1e7e9e48e1e37 100644 --- a/clients/client-ec2/src/commands/DescribeRouteServerPeersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeRouteServerPeersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRouteServerPeersRequest, DescribeRouteServerPeersResult } from "../models/models_4"; +import type { DescribeRouteServerPeersRequest, DescribeRouteServerPeersResult } from "../models/models_4"; import { DescribeRouteServerPeers } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeRouteServersCommand.ts b/clients/client-ec2/src/commands/DescribeRouteServersCommand.ts index dd56dd57e87ce..aff7f7419fc69 100644 --- a/clients/client-ec2/src/commands/DescribeRouteServersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeRouteServersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRouteServersRequest, DescribeRouteServersResult } from "../models/models_4"; +import type { DescribeRouteServersRequest, DescribeRouteServersResult } from "../models/models_4"; import { DescribeRouteServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts b/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts index f115f071c5735..72af78a20d16b 100644 --- a/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeRouteTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRouteTablesRequest, DescribeRouteTablesResult } from "../models/models_4"; +import type { DescribeRouteTablesRequest, DescribeRouteTablesResult } from "../models/models_4"; import { DescribeRouteTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts b/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts index ccf4066f780ac..ac507a7386518 100644 --- a/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts +++ b/clients/client-ec2/src/commands/DescribeScheduledInstanceAvailabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeScheduledInstanceAvailabilityRequest, DescribeScheduledInstanceAvailabilityResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts index 375097a638926..6afe7b9a52828 100644 --- a/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeScheduledInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScheduledInstancesRequest, DescribeScheduledInstancesResult } from "../models/models_4"; +import type { DescribeScheduledInstancesRequest, DescribeScheduledInstancesResult } from "../models/models_4"; import { DescribeScheduledInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts index 8f0b04456a36f..1d55f3889a00b 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupReferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSecurityGroupReferencesRequest, DescribeSecurityGroupReferencesResult } from "../models/models_4"; +import type { DescribeSecurityGroupReferencesRequest, DescribeSecurityGroupReferencesResult } from "../models/models_4"; import { DescribeSecurityGroupReferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts index 473416cb7982a..64ecdcdcad137 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSecurityGroupRulesRequest, DescribeSecurityGroupRulesResult } from "../models/models_4"; +import type { DescribeSecurityGroupRulesRequest, DescribeSecurityGroupRulesResult } from "../models/models_4"; import { DescribeSecurityGroupRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupVpcAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupVpcAssociationsCommand.ts index df4be6c277dc7..769265e5dcc1e 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupVpcAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupVpcAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeSecurityGroupVpcAssociationsRequest, DescribeSecurityGroupVpcAssociationsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts index 06a37d95ff3ee..27bbbb04bb7f5 100644 --- a/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSecurityGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSecurityGroupsRequest, DescribeSecurityGroupsResult } from "../models/models_4"; +import type { DescribeSecurityGroupsRequest, DescribeSecurityGroupsResult } from "../models/models_4"; import { DescribeSecurityGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeServiceLinkVirtualInterfacesCommand.ts b/clients/client-ec2/src/commands/DescribeServiceLinkVirtualInterfacesCommand.ts index 0852a6895564e..40e87115325ad 100644 --- a/clients/client-ec2/src/commands/DescribeServiceLinkVirtualInterfacesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeServiceLinkVirtualInterfacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeServiceLinkVirtualInterfacesRequest, DescribeServiceLinkVirtualInterfacesResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts index 156983b4f7ee3..bb441c2b64b5f 100644 --- a/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSnapshotAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSnapshotAttributeRequest, DescribeSnapshotAttributeResult } from "../models/models_4"; +import type { DescribeSnapshotAttributeRequest, DescribeSnapshotAttributeResult } from "../models/models_4"; import { DescribeSnapshotAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts b/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts index cf676d72e8d2f..5664833bdcc82 100644 --- a/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSnapshotTierStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSnapshotTierStatusRequest, DescribeSnapshotTierStatusResult } from "../models/models_4"; +import type { DescribeSnapshotTierStatusRequest, DescribeSnapshotTierStatusResult } from "../models/models_4"; import { DescribeSnapshotTierStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts b/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts index a0150f3f0f38c..981f8e54824fe 100644 --- a/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSnapshotsRequest, DescribeSnapshotsResult } from "../models/models_4"; +import type { DescribeSnapshotsRequest, DescribeSnapshotsResult } from "../models/models_4"; import { DescribeSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts b/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts index db1ac7a6646f2..efff283f1876b 100644 --- a/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotDatafeedSubscriptionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpotDatafeedSubscriptionRequest, DescribeSpotDatafeedSubscriptionResult } from "../models/models_4"; +import type { + DescribeSpotDatafeedSubscriptionRequest, + DescribeSpotDatafeedSubscriptionResult, +} from "../models/models_4"; import { DescribeSpotDatafeedSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts index 037693af5812e..46ab416c22854 100644 --- a/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotFleetInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpotFleetInstancesRequest, DescribeSpotFleetInstancesResponse } from "../models/models_4"; +import type { DescribeSpotFleetInstancesRequest, DescribeSpotFleetInstancesResponse } from "../models/models_4"; import { DescribeSpotFleetInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts index c07ca807923da..1c5bc9569a66b 100644 --- a/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotFleetRequestHistoryCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpotFleetRequestHistoryRequest, DescribeSpotFleetRequestHistoryResponse } from "../models/models_4"; +import type { + DescribeSpotFleetRequestHistoryRequest, + DescribeSpotFleetRequestHistoryResponse, +} from "../models/models_4"; import { DescribeSpotFleetRequestHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts b/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts index f1bfda97d5bfe..b34303f0d5524 100644 --- a/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotFleetRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpotFleetRequestsRequest, DescribeSpotFleetRequestsResponse } from "../models/models_4"; +import type { DescribeSpotFleetRequestsRequest, DescribeSpotFleetRequestsResponse } from "../models/models_4"; import { DescribeSpotFleetRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts b/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts index 7ece85c636a0c..5ea04bc25b534 100644 --- a/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotInstanceRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpotInstanceRequestsRequest, DescribeSpotInstanceRequestsResult } from "../models/models_4"; +import type { DescribeSpotInstanceRequestsRequest, DescribeSpotInstanceRequestsResult } from "../models/models_4"; import { DescribeSpotInstanceRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts b/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts index 7e56b31f87347..b18db2ad3f7b8 100644 --- a/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSpotPriceHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpotPriceHistoryRequest, DescribeSpotPriceHistoryResult } from "../models/models_4"; +import type { DescribeSpotPriceHistoryRequest, DescribeSpotPriceHistoryResult } from "../models/models_4"; import { DescribeSpotPriceHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts index 1cb0f165c9d40..c4246d96f4bce 100644 --- a/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeStaleSecurityGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStaleSecurityGroupsRequest, DescribeStaleSecurityGroupsResult } from "../models/models_4"; +import type { DescribeStaleSecurityGroupsRequest, DescribeStaleSecurityGroupsResult } from "../models/models_4"; import { DescribeStaleSecurityGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts b/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts index a7f812b4fbbe4..8446fd2723b1e 100644 --- a/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts +++ b/clients/client-ec2/src/commands/DescribeStoreImageTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStoreImageTasksRequest, DescribeStoreImageTasksResult } from "../models/models_4"; +import type { DescribeStoreImageTasksRequest, DescribeStoreImageTasksResult } from "../models/models_4"; import { DescribeStoreImageTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts b/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts index 1ed484ef66161..069933389c4d9 100644 --- a/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeSubnetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSubnetsRequest, DescribeSubnetsResult } from "../models/models_4"; +import type { DescribeSubnetsRequest, DescribeSubnetsResult } from "../models/models_4"; import { DescribeSubnets } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTagsCommand.ts b/clients/client-ec2/src/commands/DescribeTagsCommand.ts index eb5b6cc3685e6..3b4c94581b8d8 100644 --- a/clients/client-ec2/src/commands/DescribeTagsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagsRequest, DescribeTagsResult } from "../models/models_4"; +import type { DescribeTagsRequest, DescribeTagsResult } from "../models/models_4"; import { DescribeTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts index 3b3b38fda209b..c21a8b5a5a816 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorFilterRulesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrafficMirrorFilterRulesRequest, DescribeTrafficMirrorFilterRulesResult } from "../models/models_4"; +import type { + DescribeTrafficMirrorFilterRulesRequest, + DescribeTrafficMirrorFilterRulesResult, +} from "../models/models_4"; import { DescribeTrafficMirrorFilterRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts index 1c2fd94b298ba..dcdf3151d66a7 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorFiltersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrafficMirrorFiltersRequest, DescribeTrafficMirrorFiltersResult } from "../models/models_4"; +import type { DescribeTrafficMirrorFiltersRequest, DescribeTrafficMirrorFiltersResult } from "../models/models_4"; import { DescribeTrafficMirrorFilters } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts index 8af2678e47435..523f6a0749df5 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrafficMirrorSessionsRequest, DescribeTrafficMirrorSessionsResult } from "../models/models_4"; +import type { DescribeTrafficMirrorSessionsRequest, DescribeTrafficMirrorSessionsResult } from "../models/models_4"; import { DescribeTrafficMirrorSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts b/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts index eb4fb2fb8ced8..1b4d0cf21c6c7 100644 --- a/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrafficMirrorTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrafficMirrorTargetsRequest, DescribeTrafficMirrorTargetsResult } from "../models/models_4"; +import type { DescribeTrafficMirrorTargetsRequest, DescribeTrafficMirrorTargetsResult } from "../models/models_4"; import { DescribeTrafficMirrorTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts index d7d7697f7870a..15f8b3b220362 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayAttachmentsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTransitGatewayAttachmentsRequest, DescribeTransitGatewayAttachmentsResult } from "../models/models_4"; +import type { + DescribeTransitGatewayAttachmentsRequest, + DescribeTransitGatewayAttachmentsResult, +} from "../models/models_4"; import { DescribeTransitGatewayAttachments } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts index 9c41aec48cdb9..5a90731b5c651 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectPeersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTransitGatewayConnectPeersRequest, DescribeTransitGatewayConnectPeersResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts index 93c4196383c2a..68a76143f8d96 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayConnectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTransitGatewayConnectsRequest, DescribeTransitGatewayConnectsResult } from "../models/models_4"; +import type { DescribeTransitGatewayConnectsRequest, DescribeTransitGatewayConnectsResult } from "../models/models_4"; import { DescribeTransitGatewayConnects } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayMeteringPoliciesCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayMeteringPoliciesCommand.ts index 1f0b66849a24b..252766be6cddd 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayMeteringPoliciesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayMeteringPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTransitGatewayMeteringPoliciesRequest, DescribeTransitGatewayMeteringPoliciesResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts index f945cfe24827a..1ea756ebf4137 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayMulticastDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTransitGatewayMulticastDomainsRequest, DescribeTransitGatewayMulticastDomainsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts index da1696c28443c..6fb492eb61638 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayPeeringAttachmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTransitGatewayPeeringAttachmentsRequest, DescribeTransitGatewayPeeringAttachmentsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts index 9880b060345a5..716930115cfbc 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayPolicyTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTransitGatewayPolicyTablesRequest, DescribeTransitGatewayPolicyTablesResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts index 1da2cf0754cd6..75249e0990170 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTransitGatewayRouteTableAnnouncementsRequest, DescribeTransitGatewayRouteTableAnnouncementsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts index 5f5c5dc845fb7..cf8edea32f1b0 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayRouteTablesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTransitGatewayRouteTablesRequest, DescribeTransitGatewayRouteTablesResult } from "../models/models_4"; +import type { + DescribeTransitGatewayRouteTablesRequest, + DescribeTransitGatewayRouteTablesResult, +} from "../models/models_4"; import { DescribeTransitGatewayRouteTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts index 78fea108bddc8..7300dc2b653b4 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewayVpcAttachmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTransitGatewayVpcAttachmentsRequest, DescribeTransitGatewayVpcAttachmentsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts index 3158bf0e026cb..6fec32f49f1ac 100644 --- a/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTransitGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTransitGatewaysRequest, DescribeTransitGatewaysResult } from "../models/models_4"; +import type { DescribeTransitGatewaysRequest, DescribeTransitGatewaysResult } from "../models/models_4"; import { DescribeTransitGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts index 3b65afc8d873d..60f8ee33858ec 100644 --- a/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeTrunkInterfaceAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTrunkInterfaceAssociationsRequest, DescribeTrunkInterfaceAssociationsResult, } from "../models/models_4"; diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts index a8d2dfde95457..7633a493adc93 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVerifiedAccessEndpointsRequest, DescribeVerifiedAccessEndpointsResult } from "../models/models_4"; +import type { DescribeVerifiedAccessEndpointsRequest, DescribeVerifiedAccessEndpointsResult } from "../models/models_4"; import { DescribeVerifiedAccessEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts index b7c72d02e0a0a..4bc6fddec4caa 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVerifiedAccessGroupsRequest, DescribeVerifiedAccessGroupsResult } from "../models/models_4"; +import type { DescribeVerifiedAccessGroupsRequest, DescribeVerifiedAccessGroupsResult } from "../models/models_4"; import { DescribeVerifiedAccessGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts index 24daa395146ce..64cb2a7821c63 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVerifiedAccessInstanceLoggingConfigurationsRequest } from "../models/models_4"; -import { DescribeVerifiedAccessInstanceLoggingConfigurationsResult } from "../models/models_5"; +import type { DescribeVerifiedAccessInstanceLoggingConfigurationsRequest } from "../models/models_4"; +import type { DescribeVerifiedAccessInstanceLoggingConfigurationsResult } from "../models/models_5"; import { DescribeVerifiedAccessInstanceLoggingConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts index 5dca5d7f3ab9c..0b72aa2498811 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVerifiedAccessInstancesRequest, DescribeVerifiedAccessInstancesResult } from "../models/models_5"; +import type { DescribeVerifiedAccessInstancesRequest, DescribeVerifiedAccessInstancesResult } from "../models/models_5"; import { DescribeVerifiedAccessInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts b/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts index 68607af9fde78..112eb20508a67 100644 --- a/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVerifiedAccessTrustProvidersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeVerifiedAccessTrustProvidersRequest, DescribeVerifiedAccessTrustProvidersResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts index e026fe3e81f96..27eecfa99acef 100644 --- a/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumeAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVolumeAttributeRequest, DescribeVolumeAttributeResult } from "../models/models_5"; +import type { DescribeVolumeAttributeRequest, DescribeVolumeAttributeResult } from "../models/models_5"; import { DescribeVolumeAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts b/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts index 3af939e7f87ff..ef5cd58c12319 100644 --- a/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumeStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVolumeStatusRequest, DescribeVolumeStatusResult } from "../models/models_5"; +import type { DescribeVolumeStatusRequest, DescribeVolumeStatusResult } from "../models/models_5"; import { DescribeVolumeStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVolumesCommand.ts b/clients/client-ec2/src/commands/DescribeVolumesCommand.ts index 65cff0d2e3ee7..496c7dde18dcb 100644 --- a/clients/client-ec2/src/commands/DescribeVolumesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVolumesRequest, DescribeVolumesResult } from "../models/models_5"; +import type { DescribeVolumesRequest, DescribeVolumesResult } from "../models/models_5"; import { DescribeVolumes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts b/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts index f15642927238c..f7f0a0c430716 100644 --- a/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVolumesModificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVolumesModificationsRequest, DescribeVolumesModificationsResult } from "../models/models_5"; +import type { DescribeVolumesModificationsRequest, DescribeVolumesModificationsResult } from "../models/models_5"; import { DescribeVolumesModifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts b/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts index 284cac941c55f..42df24dfd58b8 100644 --- a/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcAttributeRequest, DescribeVpcAttributeResult } from "../models/models_5"; +import type { DescribeVpcAttributeRequest, DescribeVpcAttributeResult } from "../models/models_5"; import { DescribeVpcAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessExclusionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessExclusionsCommand.ts index 82abd767ad67d..0cb2a5175ecd2 100644 --- a/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessExclusionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessExclusionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeVpcBlockPublicAccessExclusionsRequest, DescribeVpcBlockPublicAccessExclusionsResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessOptionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessOptionsCommand.ts index 0c5db735e0274..e17668c262cbd 100644 --- a/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessOptionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcBlockPublicAccessOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeVpcBlockPublicAccessOptionsRequest, DescribeVpcBlockPublicAccessOptionsResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts b/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts index 05eb3b580576d..2e9b9844f41fc 100644 --- a/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcClassicLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcClassicLinkRequest, DescribeVpcClassicLinkResult } from "../models/models_5"; +import type { DescribeVpcClassicLinkRequest, DescribeVpcClassicLinkResult } from "../models/models_5"; import { DescribeVpcClassicLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts b/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts index aefd2e46ea8e3..e32857f50e669 100644 --- a/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcClassicLinkDnsSupportCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcClassicLinkDnsSupportRequest, DescribeVpcClassicLinkDnsSupportResult } from "../models/models_5"; +import type { + DescribeVpcClassicLinkDnsSupportRequest, + DescribeVpcClassicLinkDnsSupportResult, +} from "../models/models_5"; import { DescribeVpcClassicLinkDnsSupport } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcEncryptionControlsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEncryptionControlsCommand.ts index 45464f1330f04..917c42abe1db1 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEncryptionControlsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEncryptionControlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcEncryptionControlsRequest, DescribeVpcEncryptionControlsResult } from "../models/models_5"; +import type { DescribeVpcEncryptionControlsRequest, DescribeVpcEncryptionControlsResult } from "../models/models_5"; import { DescribeVpcEncryptionControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointAssociationsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointAssociationsCommand.ts index edd1982b79c7c..364f65d136d37 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcEndpointAssociationsRequest, DescribeVpcEndpointAssociationsResult } from "../models/models_5"; +import type { DescribeVpcEndpointAssociationsRequest, DescribeVpcEndpointAssociationsResult } from "../models/models_5"; import { DescribeVpcEndpointAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts index d2b1ad224ff27..9bf9bac291bbb 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeVpcEndpointConnectionNotificationsRequest, DescribeVpcEndpointConnectionNotificationsResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts index b8c900a951e82..18a99793d8869 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcEndpointConnectionsRequest, DescribeVpcEndpointConnectionsResult } from "../models/models_5"; +import type { DescribeVpcEndpointConnectionsRequest, DescribeVpcEndpointConnectionsResult } from "../models/models_5"; import { DescribeVpcEndpointConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts index 6382bdc01fb0a..c8df2e8aea98e 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointServiceConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeVpcEndpointServiceConfigurationsRequest, DescribeVpcEndpointServiceConfigurationsResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts index 516a1b76787f6..7543b84f2898b 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointServicePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeVpcEndpointServicePermissionsRequest, DescribeVpcEndpointServicePermissionsResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts index 4e45689954da8..d0ee1d66bc7a3 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcEndpointServicesRequest, DescribeVpcEndpointServicesResult } from "../models/models_5"; +import type { DescribeVpcEndpointServicesRequest, DescribeVpcEndpointServicesResult } from "../models/models_5"; import { DescribeVpcEndpointServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts index 967b6fccd6779..e1b4e034f9ae0 100644 --- a/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcEndpointsRequest, DescribeVpcEndpointsResult } from "../models/models_5"; +import type { DescribeVpcEndpointsRequest, DescribeVpcEndpointsResult } from "../models/models_5"; import { DescribeVpcEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts index d7466a38d68fc..9abd7e2e3aea0 100644 --- a/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcPeeringConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcPeeringConnectionsRequest, DescribeVpcPeeringConnectionsResult } from "../models/models_5"; +import type { DescribeVpcPeeringConnectionsRequest, DescribeVpcPeeringConnectionsResult } from "../models/models_5"; import { DescribeVpcPeeringConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpcsCommand.ts b/clients/client-ec2/src/commands/DescribeVpcsCommand.ts index 05719f5595993..9a0b8b43e9caa 100644 --- a/clients/client-ec2/src/commands/DescribeVpcsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpcsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcsRequest, DescribeVpcsResult } from "../models/models_5"; +import type { DescribeVpcsRequest, DescribeVpcsResult } from "../models/models_5"; import { DescribeVpcs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpnConcentratorsCommand.ts b/clients/client-ec2/src/commands/DescribeVpnConcentratorsCommand.ts index 53ce87ceb4590..820d57f609a42 100644 --- a/clients/client-ec2/src/commands/DescribeVpnConcentratorsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpnConcentratorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpnConcentratorsRequest, DescribeVpnConcentratorsResult } from "../models/models_5"; +import type { DescribeVpnConcentratorsRequest, DescribeVpnConcentratorsResult } from "../models/models_5"; import { DescribeVpnConcentrators } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts b/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts index 7dd7167f86b91..46d7d516b7a95 100644 --- a/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpnConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpnConnectionsRequest, DescribeVpnConnectionsResult } from "../models/models_5"; +import type { DescribeVpnConnectionsRequest, DescribeVpnConnectionsResult } from "../models/models_5"; import { DescribeVpnConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts b/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts index 263ce642421fa..af67476ce4562 100644 --- a/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts +++ b/clients/client-ec2/src/commands/DescribeVpnGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpnGatewaysRequest, DescribeVpnGatewaysResult } from "../models/models_5"; +import type { DescribeVpnGatewaysRequest, DescribeVpnGatewaysResult } from "../models/models_5"; import { DescribeVpnGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts b/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts index 076754baacd28..6dae3a90a6be6 100644 --- a/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts +++ b/clients/client-ec2/src/commands/DetachClassicLinkVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachClassicLinkVpcRequest, DetachClassicLinkVpcResult } from "../models/models_5"; +import type { DetachClassicLinkVpcRequest, DetachClassicLinkVpcResult } from "../models/models_5"; import { DetachClassicLinkVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts b/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts index 39702114e52be..f855ef34152ce 100644 --- a/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DetachInternetGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachInternetGatewayRequest } from "../models/models_5"; +import type { DetachInternetGatewayRequest } from "../models/models_5"; import { DetachInternetGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts b/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts index a46c35e0c280e..6a100475d376a 100644 --- a/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DetachNetworkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachNetworkInterfaceRequest } from "../models/models_5"; +import type { DetachNetworkInterfaceRequest } from "../models/models_5"; import { DetachNetworkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts index 97fd4c4aca041..5c56770d37151 100644 --- a/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/DetachVerifiedAccessTrustProviderCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachVerifiedAccessTrustProviderRequest, DetachVerifiedAccessTrustProviderResult } from "../models/models_5"; +import type { + DetachVerifiedAccessTrustProviderRequest, + DetachVerifiedAccessTrustProviderResult, +} from "../models/models_5"; import { DetachVerifiedAccessTrustProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DetachVolumeCommand.ts b/clients/client-ec2/src/commands/DetachVolumeCommand.ts index 64c6eaf1ab193..720df4bbc86ee 100644 --- a/clients/client-ec2/src/commands/DetachVolumeCommand.ts +++ b/clients/client-ec2/src/commands/DetachVolumeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VolumeAttachment } from "../models/models_0"; -import { DetachVolumeRequest } from "../models/models_5"; +import type { VolumeAttachment } from "../models/models_0"; +import type { DetachVolumeRequest } from "../models/models_5"; import { DetachVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts b/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts index 960d9567c7fd8..06f04079750f3 100644 --- a/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts +++ b/clients/client-ec2/src/commands/DetachVpnGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachVpnGatewayRequest } from "../models/models_5"; +import type { DetachVpnGatewayRequest } from "../models/models_5"; import { DetachVpnGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts b/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts index 6459ef2e7a2a9..84815cde432ec 100644 --- a/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts +++ b/clients/client-ec2/src/commands/DisableAddressTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableAddressTransferRequest, DisableAddressTransferResult } from "../models/models_5"; +import type { DisableAddressTransferRequest, DisableAddressTransferResult } from "../models/models_5"; import { DisableAddressTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableAllowedImagesSettingsCommand.ts b/clients/client-ec2/src/commands/DisableAllowedImagesSettingsCommand.ts index 5f7dc5abd96b0..d513d940c479d 100644 --- a/clients/client-ec2/src/commands/DisableAllowedImagesSettingsCommand.ts +++ b/clients/client-ec2/src/commands/DisableAllowedImagesSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableAllowedImagesSettingsRequest, DisableAllowedImagesSettingsResult } from "../models/models_5"; +import type { DisableAllowedImagesSettingsRequest, DisableAllowedImagesSettingsResult } from "../models/models_5"; import { DisableAllowedImagesSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts b/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts index 84596775f1574..47d4cdd3982f0 100644 --- a/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisableAwsNetworkPerformanceMetricSubscriptionRequest, DisableAwsNetworkPerformanceMetricSubscriptionResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisableCapacityManagerCommand.ts b/clients/client-ec2/src/commands/DisableCapacityManagerCommand.ts index 23ca26b8939dd..8cfb21eada574 100644 --- a/clients/client-ec2/src/commands/DisableCapacityManagerCommand.ts +++ b/clients/client-ec2/src/commands/DisableCapacityManagerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableCapacityManagerRequest, DisableCapacityManagerResult } from "../models/models_5"; +import type { DisableCapacityManagerRequest, DisableCapacityManagerResult } from "../models/models_5"; import { DisableCapacityManager } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts b/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts index 4e5d3834a7739..abd68dcf5e1b4 100644 --- a/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts +++ b/clients/client-ec2/src/commands/DisableEbsEncryptionByDefaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableEbsEncryptionByDefaultRequest, DisableEbsEncryptionByDefaultResult } from "../models/models_5"; +import type { DisableEbsEncryptionByDefaultRequest, DisableEbsEncryptionByDefaultResult } from "../models/models_5"; import { DisableEbsEncryptionByDefault } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts b/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts index 08a8c4b1b75dc..4b75bce7c10e3 100644 --- a/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts +++ b/clients/client-ec2/src/commands/DisableFastLaunchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableFastLaunchRequest, DisableFastLaunchResult } from "../models/models_5"; +import type { DisableFastLaunchRequest, DisableFastLaunchResult } from "../models/models_5"; import { DisableFastLaunch } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts b/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts index 284392f56944a..c87ba353d3f93 100644 --- a/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts +++ b/clients/client-ec2/src/commands/DisableFastSnapshotRestoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableFastSnapshotRestoresRequest, DisableFastSnapshotRestoresResult } from "../models/models_5"; +import type { DisableFastSnapshotRestoresRequest, DisableFastSnapshotRestoresResult } from "../models/models_5"; import { DisableFastSnapshotRestores } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts index 4a921ed563405..38f3d648e8d55 100644 --- a/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageBlockPublicAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableImageBlockPublicAccessRequest, DisableImageBlockPublicAccessResult } from "../models/models_5"; +import type { DisableImageBlockPublicAccessRequest, DisableImageBlockPublicAccessResult } from "../models/models_5"; import { DisableImageBlockPublicAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableImageCommand.ts b/clients/client-ec2/src/commands/DisableImageCommand.ts index ee72dfddc1fc9..eb7348dbb7efc 100644 --- a/clients/client-ec2/src/commands/DisableImageCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableImageRequest, DisableImageResult } from "../models/models_5"; +import type { DisableImageRequest, DisableImageResult } from "../models/models_5"; import { DisableImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts b/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts index 22ea630f9ac11..d256d41988d6c 100644 --- a/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageDeprecationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableImageDeprecationRequest, DisableImageDeprecationResult } from "../models/models_5"; +import type { DisableImageDeprecationRequest, DisableImageDeprecationResult } from "../models/models_5"; import { DisableImageDeprecation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts b/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts index 5f5984581d9e1..1adc7936f461b 100644 --- a/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts +++ b/clients/client-ec2/src/commands/DisableImageDeregistrationProtectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisableImageDeregistrationProtectionRequest, DisableImageDeregistrationProtectionResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisableInstanceSqlHaStandbyDetectionsCommand.ts b/clients/client-ec2/src/commands/DisableInstanceSqlHaStandbyDetectionsCommand.ts index 84d92745a54b0..06a536c619c87 100644 --- a/clients/client-ec2/src/commands/DisableInstanceSqlHaStandbyDetectionsCommand.ts +++ b/clients/client-ec2/src/commands/DisableInstanceSqlHaStandbyDetectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisableInstanceSqlHaStandbyDetectionsRequest, DisableInstanceSqlHaStandbyDetectionsResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts b/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts index 78e4efcba8747..7437fd1053b8b 100644 --- a/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts +++ b/clients/client-ec2/src/commands/DisableIpamOrganizationAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisableIpamOrganizationAdminAccountRequest, DisableIpamOrganizationAdminAccountResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisableIpamPolicyCommand.ts b/clients/client-ec2/src/commands/DisableIpamPolicyCommand.ts index e8715459c3b0c..8367d2959b56b 100644 --- a/clients/client-ec2/src/commands/DisableIpamPolicyCommand.ts +++ b/clients/client-ec2/src/commands/DisableIpamPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableIpamPolicyRequest, DisableIpamPolicyResult } from "../models/models_5"; +import type { DisableIpamPolicyRequest, DisableIpamPolicyResult } from "../models/models_5"; import { DisableIpamPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableRouteServerPropagationCommand.ts b/clients/client-ec2/src/commands/DisableRouteServerPropagationCommand.ts index a31c7aff16c65..cf5528ba6e0fd 100644 --- a/clients/client-ec2/src/commands/DisableRouteServerPropagationCommand.ts +++ b/clients/client-ec2/src/commands/DisableRouteServerPropagationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableRouteServerPropagationRequest, DisableRouteServerPropagationResult } from "../models/models_5"; +import type { DisableRouteServerPropagationRequest, DisableRouteServerPropagationResult } from "../models/models_5"; import { DisableRouteServerPropagation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts b/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts index e30fa1f7c6a6e..7efb0a5bf8502 100644 --- a/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts +++ b/clients/client-ec2/src/commands/DisableSerialConsoleAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableSerialConsoleAccessRequest, DisableSerialConsoleAccessResult } from "../models/models_5"; +import type { DisableSerialConsoleAccessRequest, DisableSerialConsoleAccessResult } from "../models/models_5"; import { DisableSerialConsoleAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts index 776cb9b95b26d..1368f88fafd26 100644 --- a/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/DisableSnapshotBlockPublicAccessCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableSnapshotBlockPublicAccessRequest, DisableSnapshotBlockPublicAccessResult } from "../models/models_5"; +import type { + DisableSnapshotBlockPublicAccessRequest, + DisableSnapshotBlockPublicAccessResult, +} from "../models/models_5"; import { DisableSnapshotBlockPublicAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts b/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts index fb5da20e6dcaa..552f136dc193e 100644 --- a/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts +++ b/clients/client-ec2/src/commands/DisableTransitGatewayRouteTablePropagationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisableTransitGatewayRouteTablePropagationRequest, DisableTransitGatewayRouteTablePropagationResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts b/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts index 29aedc711e7d2..c8863572228fe 100644 --- a/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts +++ b/clients/client-ec2/src/commands/DisableVgwRoutePropagationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableVgwRoutePropagationRequest } from "../models/models_5"; +import type { DisableVgwRoutePropagationRequest } from "../models/models_5"; import { DisableVgwRoutePropagation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts b/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts index 0d662f58f0e8c..ac5fbb7bb3b81 100644 --- a/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts +++ b/clients/client-ec2/src/commands/DisableVpcClassicLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableVpcClassicLinkRequest, DisableVpcClassicLinkResult } from "../models/models_5"; +import type { DisableVpcClassicLinkRequest, DisableVpcClassicLinkResult } from "../models/models_5"; import { DisableVpcClassicLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts b/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts index 318703e2c552b..b2ec23929b65b 100644 --- a/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts +++ b/clients/client-ec2/src/commands/DisableVpcClassicLinkDnsSupportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableVpcClassicLinkDnsSupportRequest, DisableVpcClassicLinkDnsSupportResult } from "../models/models_5"; +import type { DisableVpcClassicLinkDnsSupportRequest, DisableVpcClassicLinkDnsSupportResult } from "../models/models_5"; import { DisableVpcClassicLinkDnsSupport } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateAddressCommand.ts b/clients/client-ec2/src/commands/DisassociateAddressCommand.ts index 9981aa19c93a7..b692c1178991c 100644 --- a/clients/client-ec2/src/commands/DisassociateAddressCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateAddressRequest } from "../models/models_5"; +import type { DisassociateAddressRequest } from "../models/models_5"; import { DisassociateAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateCapacityReservationBillingOwnerCommand.ts b/clients/client-ec2/src/commands/DisassociateCapacityReservationBillingOwnerCommand.ts index 4ebc367aa0449..7d0a5eb176cc0 100644 --- a/clients/client-ec2/src/commands/DisassociateCapacityReservationBillingOwnerCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateCapacityReservationBillingOwnerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateCapacityReservationBillingOwnerRequest, DisassociateCapacityReservationBillingOwnerResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts b/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts index 822c0281dd25d..5fc6c3e505a69 100644 --- a/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateClientVpnTargetNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateClientVpnTargetNetworkRequest, DisassociateClientVpnTargetNetworkResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts b/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts index 5859c763d7682..6f74e81f13027 100644 --- a/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateEnclaveCertificateIamRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateEnclaveCertificateIamRoleRequest, DisassociateEnclaveCertificateIamRoleResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts b/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts index 9faa1e3035d89..55a114a242277 100644 --- a/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateIamInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateIamInstanceProfileRequest, DisassociateIamInstanceProfileResult } from "../models/models_5"; +import type { DisassociateIamInstanceProfileRequest, DisassociateIamInstanceProfileResult } from "../models/models_5"; import { DisassociateIamInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts index 72cc6e9d9a8b9..06bac7d311e0b 100644 --- a/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateInstanceEventWindowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateInstanceEventWindowRequest, DisassociateInstanceEventWindowResult } from "../models/models_5"; +import type { DisassociateInstanceEventWindowRequest, DisassociateInstanceEventWindowResult } from "../models/models_5"; import { DisassociateInstanceEventWindow } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts b/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts index 593fc157474b4..8dcdb36ab122e 100644 --- a/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateIpamByoasnCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateIpamByoasnRequest, DisassociateIpamByoasnResult } from "../models/models_5"; +import type { DisassociateIpamByoasnRequest, DisassociateIpamByoasnResult } from "../models/models_5"; import { DisassociateIpamByoasn } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts index 184280dc20ed8..a9bf7de4f05c1 100644 --- a/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateIpamResourceDiscoveryCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateIpamResourceDiscoveryRequest, DisassociateIpamResourceDiscoveryResult } from "../models/models_5"; +import type { + DisassociateIpamResourceDiscoveryRequest, + DisassociateIpamResourceDiscoveryResult, +} from "../models/models_5"; import { DisassociateIpamResourceDiscovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts index b02d1fab1f3ba..8b93ddf6a2714 100644 --- a/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateNatGatewayAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateNatGatewayAddressRequest, DisassociateNatGatewayAddressResult } from "../models/models_5"; +import type { DisassociateNatGatewayAddressRequest, DisassociateNatGatewayAddressResult } from "../models/models_5"; import { DisassociateNatGatewayAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateRouteServerCommand.ts b/clients/client-ec2/src/commands/DisassociateRouteServerCommand.ts index 65d560ec7fc64..e3abc3893ef75 100644 --- a/clients/client-ec2/src/commands/DisassociateRouteServerCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateRouteServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateRouteServerRequest, DisassociateRouteServerResult } from "../models/models_5"; +import type { DisassociateRouteServerRequest, DisassociateRouteServerResult } from "../models/models_5"; import { DisassociateRouteServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts b/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts index bf299105aa0b8..0551b8c50f1bd 100644 --- a/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateRouteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateRouteTableRequest } from "../models/models_5"; +import type { DisassociateRouteTableRequest } from "../models/models_5"; import { DisassociateRouteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateSecurityGroupVpcCommand.ts b/clients/client-ec2/src/commands/DisassociateSecurityGroupVpcCommand.ts index 344038bf8ab07..4cb5c2133159a 100644 --- a/clients/client-ec2/src/commands/DisassociateSecurityGroupVpcCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateSecurityGroupVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateSecurityGroupVpcRequest, DisassociateSecurityGroupVpcResult } from "../models/models_5"; +import type { DisassociateSecurityGroupVpcRequest, DisassociateSecurityGroupVpcResult } from "../models/models_5"; import { DisassociateSecurityGroupVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts b/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts index 1688494b5fbb7..66fac8cb87581 100644 --- a/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateSubnetCidrBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateSubnetCidrBlockRequest, DisassociateSubnetCidrBlockResult } from "../models/models_5"; +import type { DisassociateSubnetCidrBlockRequest, DisassociateSubnetCidrBlockResult } from "../models/models_5"; import { DisassociateSubnetCidrBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts b/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts index 0a15039bcddcd..bd22f5c313a15 100644 --- a/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTransitGatewayMulticastDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateTransitGatewayMulticastDomainRequest, DisassociateTransitGatewayMulticastDomainResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts b/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts index a2e2ca0770814..f9fb0f1d05b54 100644 --- a/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTransitGatewayPolicyTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateTransitGatewayPolicyTableRequest, DisassociateTransitGatewayPolicyTableResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts b/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts index 34d2f19572f44..bc8409e67dded 100644 --- a/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTransitGatewayRouteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateTransitGatewayRouteTableRequest, DisassociateTransitGatewayRouteTableResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts b/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts index 9cd9bf321892a..f5ec15e7ede47 100644 --- a/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateTrunkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateTrunkInterfaceRequest, DisassociateTrunkInterfaceResult } from "../models/models_5"; +import type { DisassociateTrunkInterfaceRequest, DisassociateTrunkInterfaceResult } from "../models/models_5"; import { DisassociateTrunkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts b/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts index bb9de68ee0f31..3fd97dac27079 100644 --- a/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts +++ b/clients/client-ec2/src/commands/DisassociateVpcCidrBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateVpcCidrBlockRequest, DisassociateVpcCidrBlockResult } from "../models/models_5"; +import type { DisassociateVpcCidrBlockRequest, DisassociateVpcCidrBlockResult } from "../models/models_5"; import { DisassociateVpcCidrBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts b/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts index 966392ad3c128..f0af999288ab0 100644 --- a/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts +++ b/clients/client-ec2/src/commands/EnableAddressTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableAddressTransferRequest, EnableAddressTransferResult } from "../models/models_5"; +import type { EnableAddressTransferRequest, EnableAddressTransferResult } from "../models/models_5"; import { EnableAddressTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableAllowedImagesSettingsCommand.ts b/clients/client-ec2/src/commands/EnableAllowedImagesSettingsCommand.ts index bda3d34c6d87a..676192c3d77cd 100644 --- a/clients/client-ec2/src/commands/EnableAllowedImagesSettingsCommand.ts +++ b/clients/client-ec2/src/commands/EnableAllowedImagesSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableAllowedImagesSettingsRequest, EnableAllowedImagesSettingsResult } from "../models/models_5"; +import type { EnableAllowedImagesSettingsRequest, EnableAllowedImagesSettingsResult } from "../models/models_5"; import { EnableAllowedImagesSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts b/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts index a15e2d9839bfd..19842d8fdaf2b 100644 --- a/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts +++ b/clients/client-ec2/src/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { EnableAwsNetworkPerformanceMetricSubscriptionRequest, EnableAwsNetworkPerformanceMetricSubscriptionResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/EnableCapacityManagerCommand.ts b/clients/client-ec2/src/commands/EnableCapacityManagerCommand.ts index 044ac9963fc05..ff354de6d11e6 100644 --- a/clients/client-ec2/src/commands/EnableCapacityManagerCommand.ts +++ b/clients/client-ec2/src/commands/EnableCapacityManagerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableCapacityManagerRequest, EnableCapacityManagerResult } from "../models/models_5"; +import type { EnableCapacityManagerRequest, EnableCapacityManagerResult } from "../models/models_5"; import { EnableCapacityManager } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts b/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts index ca6431ac1e6fa..69c28bd833294 100644 --- a/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts +++ b/clients/client-ec2/src/commands/EnableEbsEncryptionByDefaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableEbsEncryptionByDefaultRequest, EnableEbsEncryptionByDefaultResult } from "../models/models_5"; +import type { EnableEbsEncryptionByDefaultRequest, EnableEbsEncryptionByDefaultResult } from "../models/models_5"; import { EnableEbsEncryptionByDefault } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts b/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts index c04799c047bd3..6c81f9dda3361 100644 --- a/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts +++ b/clients/client-ec2/src/commands/EnableFastLaunchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableFastLaunchRequest, EnableFastLaunchResult } from "../models/models_5"; +import type { EnableFastLaunchRequest, EnableFastLaunchResult } from "../models/models_5"; import { EnableFastLaunch } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts b/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts index 474679a4d0c76..518f97057305b 100644 --- a/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts +++ b/clients/client-ec2/src/commands/EnableFastSnapshotRestoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableFastSnapshotRestoresRequest, EnableFastSnapshotRestoresResult } from "../models/models_5"; +import type { EnableFastSnapshotRestoresRequest, EnableFastSnapshotRestoresResult } from "../models/models_5"; import { EnableFastSnapshotRestores } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts index ef65ad99a6495..ca737dce715ef 100644 --- a/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageBlockPublicAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableImageBlockPublicAccessRequest, EnableImageBlockPublicAccessResult } from "../models/models_5"; +import type { EnableImageBlockPublicAccessRequest, EnableImageBlockPublicAccessResult } from "../models/models_5"; import { EnableImageBlockPublicAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableImageCommand.ts b/clients/client-ec2/src/commands/EnableImageCommand.ts index a5e1392a2eeeb..17ddf02057e2a 100644 --- a/clients/client-ec2/src/commands/EnableImageCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableImageRequest, EnableImageResult } from "../models/models_5"; +import type { EnableImageRequest, EnableImageResult } from "../models/models_5"; import { EnableImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts b/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts index bd4eb2f706003..cce1e8cc8bd45 100644 --- a/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageDeprecationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableImageDeprecationRequest, EnableImageDeprecationResult } from "../models/models_5"; +import type { EnableImageDeprecationRequest, EnableImageDeprecationResult } from "../models/models_5"; import { EnableImageDeprecation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts b/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts index 5f9f6105996f0..02c7bade33d4b 100644 --- a/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts +++ b/clients/client-ec2/src/commands/EnableImageDeregistrationProtectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { EnableImageDeregistrationProtectionRequest, EnableImageDeregistrationProtectionResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/EnableInstanceSqlHaStandbyDetectionsCommand.ts b/clients/client-ec2/src/commands/EnableInstanceSqlHaStandbyDetectionsCommand.ts index bac5dda39d17e..ecf253bbeec51 100644 --- a/clients/client-ec2/src/commands/EnableInstanceSqlHaStandbyDetectionsCommand.ts +++ b/clients/client-ec2/src/commands/EnableInstanceSqlHaStandbyDetectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { EnableInstanceSqlHaStandbyDetectionsRequest, EnableInstanceSqlHaStandbyDetectionsResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts b/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts index c153dae486210..c12771343b1b8 100644 --- a/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts +++ b/clients/client-ec2/src/commands/EnableIpamOrganizationAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { EnableIpamOrganizationAdminAccountRequest, EnableIpamOrganizationAdminAccountResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/EnableIpamPolicyCommand.ts b/clients/client-ec2/src/commands/EnableIpamPolicyCommand.ts index d4a127b5cc5cc..e049c9ceed924 100644 --- a/clients/client-ec2/src/commands/EnableIpamPolicyCommand.ts +++ b/clients/client-ec2/src/commands/EnableIpamPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableIpamPolicyRequest, EnableIpamPolicyResult } from "../models/models_5"; +import type { EnableIpamPolicyRequest, EnableIpamPolicyResult } from "../models/models_5"; import { EnableIpamPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts b/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts index d9f4ae3811e3d..efb656483aad5 100644 --- a/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts +++ b/clients/client-ec2/src/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { EnableReachabilityAnalyzerOrganizationSharingRequest, EnableReachabilityAnalyzerOrganizationSharingResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/EnableRouteServerPropagationCommand.ts b/clients/client-ec2/src/commands/EnableRouteServerPropagationCommand.ts index 810854a4f2f1a..8b62536691e19 100644 --- a/clients/client-ec2/src/commands/EnableRouteServerPropagationCommand.ts +++ b/clients/client-ec2/src/commands/EnableRouteServerPropagationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableRouteServerPropagationRequest, EnableRouteServerPropagationResult } from "../models/models_5"; +import type { EnableRouteServerPropagationRequest, EnableRouteServerPropagationResult } from "../models/models_5"; import { EnableRouteServerPropagation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts b/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts index 7e3dd60ac721e..88c07c808fcb8 100644 --- a/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts +++ b/clients/client-ec2/src/commands/EnableSerialConsoleAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableSerialConsoleAccessRequest, EnableSerialConsoleAccessResult } from "../models/models_5"; +import type { EnableSerialConsoleAccessRequest, EnableSerialConsoleAccessResult } from "../models/models_5"; import { EnableSerialConsoleAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts b/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts index 625f7f0b38073..e02f339c8f30c 100644 --- a/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts +++ b/clients/client-ec2/src/commands/EnableSnapshotBlockPublicAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableSnapshotBlockPublicAccessRequest, EnableSnapshotBlockPublicAccessResult } from "../models/models_5"; +import type { EnableSnapshotBlockPublicAccessRequest, EnableSnapshotBlockPublicAccessResult } from "../models/models_5"; import { EnableSnapshotBlockPublicAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts b/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts index 68f50b75d55e7..a93602c39f7ed 100644 --- a/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts +++ b/clients/client-ec2/src/commands/EnableTransitGatewayRouteTablePropagationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { EnableTransitGatewayRouteTablePropagationRequest, EnableTransitGatewayRouteTablePropagationResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts b/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts index f6e7f0135fde9..f3c089938c06d 100644 --- a/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts +++ b/clients/client-ec2/src/commands/EnableVgwRoutePropagationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableVgwRoutePropagationRequest } from "../models/models_5"; +import type { EnableVgwRoutePropagationRequest } from "../models/models_5"; import { EnableVgwRoutePropagation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts b/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts index 8af56af3812e0..d9f7f3c93b733 100644 --- a/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts +++ b/clients/client-ec2/src/commands/EnableVolumeIOCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableVolumeIORequest } from "../models/models_5"; +import type { EnableVolumeIORequest } from "../models/models_5"; import { EnableVolumeIO } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts b/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts index 456fdf8dd8343..3a951723ffaa5 100644 --- a/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts +++ b/clients/client-ec2/src/commands/EnableVpcClassicLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableVpcClassicLinkRequest, EnableVpcClassicLinkResult } from "../models/models_5"; +import type { EnableVpcClassicLinkRequest, EnableVpcClassicLinkResult } from "../models/models_5"; import { EnableVpcClassicLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts b/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts index 1b6d0726f510e..5db47649559f2 100644 --- a/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts +++ b/clients/client-ec2/src/commands/EnableVpcClassicLinkDnsSupportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableVpcClassicLinkDnsSupportRequest, EnableVpcClassicLinkDnsSupportResult } from "../models/models_5"; +import type { EnableVpcClassicLinkDnsSupportRequest, EnableVpcClassicLinkDnsSupportResult } from "../models/models_5"; import { EnableVpcClassicLinkDnsSupport } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts b/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts index 6332b0866eed3..163dd9d8a28de 100644 --- a/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts +++ b/clients/client-ec2/src/commands/ExportClientVpnClientCertificateRevocationListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ExportClientVpnClientCertificateRevocationListRequest, ExportClientVpnClientCertificateRevocationListResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts b/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts index 7d6c3ea401e2c..2cb8c08bcc235 100644 --- a/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ExportClientVpnClientConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ExportClientVpnClientConfigurationRequest, ExportClientVpnClientConfigurationResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/ExportImageCommand.ts b/clients/client-ec2/src/commands/ExportImageCommand.ts index 7da894e1c29a6..b520bec065dce 100644 --- a/clients/client-ec2/src/commands/ExportImageCommand.ts +++ b/clients/client-ec2/src/commands/ExportImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportImageRequest, ExportImageResult } from "../models/models_5"; +import type { ExportImageRequest, ExportImageResult } from "../models/models_5"; import { ExportImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts b/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts index bdee36085cb60..e256368f3f12d 100644 --- a/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts +++ b/clients/client-ec2/src/commands/ExportTransitGatewayRoutesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportTransitGatewayRoutesRequest, ExportTransitGatewayRoutesResult } from "../models/models_5"; +import type { ExportTransitGatewayRoutesRequest, ExportTransitGatewayRoutesResult } from "../models/models_5"; import { ExportTransitGatewayRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.ts b/clients/client-ec2/src/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.ts index 70a2e648d9962..8e702b3a5b38a 100644 --- a/clients/client-ec2/src/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ExportVerifiedAccessInstanceClientConfigurationRequest, ExportVerifiedAccessInstanceClientConfigurationResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/GetActiveVpnTunnelStatusCommand.ts b/clients/client-ec2/src/commands/GetActiveVpnTunnelStatusCommand.ts index 37a7474dd8844..6766087886abf 100644 --- a/clients/client-ec2/src/commands/GetActiveVpnTunnelStatusCommand.ts +++ b/clients/client-ec2/src/commands/GetActiveVpnTunnelStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetActiveVpnTunnelStatusRequest, GetActiveVpnTunnelStatusResult } from "../models/models_5"; +import type { GetActiveVpnTunnelStatusRequest, GetActiveVpnTunnelStatusResult } from "../models/models_5"; import { GetActiveVpnTunnelStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetAllowedImagesSettingsCommand.ts b/clients/client-ec2/src/commands/GetAllowedImagesSettingsCommand.ts index b7f4802144055..9b1504ebfdae6 100644 --- a/clients/client-ec2/src/commands/GetAllowedImagesSettingsCommand.ts +++ b/clients/client-ec2/src/commands/GetAllowedImagesSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAllowedImagesSettingsRequest, GetAllowedImagesSettingsResult } from "../models/models_5"; +import type { GetAllowedImagesSettingsRequest, GetAllowedImagesSettingsResult } from "../models/models_5"; import { GetAllowedImagesSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts b/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts index 189681d9b7558..99b3eb6cc1fd3 100644 --- a/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts +++ b/clients/client-ec2/src/commands/GetAssociatedEnclaveCertificateIamRolesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAssociatedEnclaveCertificateIamRolesRequest, GetAssociatedEnclaveCertificateIamRolesResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts b/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts index 15c484390787b..a6bf8a50cbad8 100644 --- a/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetAssociatedIpv6PoolCidrsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssociatedIpv6PoolCidrsRequest, GetAssociatedIpv6PoolCidrsResult } from "../models/models_5"; +import type { GetAssociatedIpv6PoolCidrsRequest, GetAssociatedIpv6PoolCidrsResult } from "../models/models_5"; import { GetAssociatedIpv6PoolCidrs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts b/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts index 17fad5f7785e1..5ecd10d9adad2 100644 --- a/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts +++ b/clients/client-ec2/src/commands/GetAwsNetworkPerformanceDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAwsNetworkPerformanceDataRequest, GetAwsNetworkPerformanceDataResult } from "../models/models_5"; +import type { GetAwsNetworkPerformanceDataRequest, GetAwsNetworkPerformanceDataResult } from "../models/models_5"; import { GetAwsNetworkPerformanceData } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetCapacityManagerAttributesCommand.ts b/clients/client-ec2/src/commands/GetCapacityManagerAttributesCommand.ts index d614a62b5a770..65b575ff0ea9d 100644 --- a/clients/client-ec2/src/commands/GetCapacityManagerAttributesCommand.ts +++ b/clients/client-ec2/src/commands/GetCapacityManagerAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCapacityManagerAttributesRequest, GetCapacityManagerAttributesResult } from "../models/models_5"; +import type { GetCapacityManagerAttributesRequest, GetCapacityManagerAttributesResult } from "../models/models_5"; import { GetCapacityManagerAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetCapacityManagerMetricDataCommand.ts b/clients/client-ec2/src/commands/GetCapacityManagerMetricDataCommand.ts index 71c51312022ec..bb974debde4a7 100644 --- a/clients/client-ec2/src/commands/GetCapacityManagerMetricDataCommand.ts +++ b/clients/client-ec2/src/commands/GetCapacityManagerMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCapacityManagerMetricDataRequest, GetCapacityManagerMetricDataResult } from "../models/models_5"; +import type { GetCapacityManagerMetricDataRequest, GetCapacityManagerMetricDataResult } from "../models/models_5"; import { GetCapacityManagerMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetCapacityManagerMetricDimensionsCommand.ts b/clients/client-ec2/src/commands/GetCapacityManagerMetricDimensionsCommand.ts index f3839c23415ff..13b9f73f8004c 100644 --- a/clients/client-ec2/src/commands/GetCapacityManagerMetricDimensionsCommand.ts +++ b/clients/client-ec2/src/commands/GetCapacityManagerMetricDimensionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCapacityManagerMetricDimensionsRequest, GetCapacityManagerMetricDimensionsResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts b/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts index 7dcd5852b0fc1..8abb5c5429500 100644 --- a/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts +++ b/clients/client-ec2/src/commands/GetCapacityReservationUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCapacityReservationUsageRequest, GetCapacityReservationUsageResult } from "../models/models_5"; +import type { GetCapacityReservationUsageRequest, GetCapacityReservationUsageResult } from "../models/models_5"; import { GetCapacityReservationUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts b/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts index 3c37ba9ec487d..597886715db2d 100644 --- a/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts +++ b/clients/client-ec2/src/commands/GetCoipPoolUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCoipPoolUsageRequest, GetCoipPoolUsageResult } from "../models/models_5"; +import type { GetCoipPoolUsageRequest, GetCoipPoolUsageResult } from "../models/models_5"; import { GetCoipPoolUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts b/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts index 609327d9c294d..050d414227b67 100644 --- a/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts +++ b/clients/client-ec2/src/commands/GetConsoleOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConsoleOutputRequest, GetConsoleOutputResult } from "../models/models_5"; +import type { GetConsoleOutputRequest, GetConsoleOutputResult } from "../models/models_5"; import { GetConsoleOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts b/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts index 669361dcc31bd..4ada46f6414b0 100644 --- a/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts +++ b/clients/client-ec2/src/commands/GetConsoleScreenshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConsoleScreenshotRequest, GetConsoleScreenshotResult } from "../models/models_5"; +import type { GetConsoleScreenshotRequest, GetConsoleScreenshotResult } from "../models/models_5"; import { GetConsoleScreenshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetDeclarativePoliciesReportSummaryCommand.ts b/clients/client-ec2/src/commands/GetDeclarativePoliciesReportSummaryCommand.ts index 6cb47d71a37e7..e62ad8649d3e0 100644 --- a/clients/client-ec2/src/commands/GetDeclarativePoliciesReportSummaryCommand.ts +++ b/clients/client-ec2/src/commands/GetDeclarativePoliciesReportSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetDeclarativePoliciesReportSummaryRequest, GetDeclarativePoliciesReportSummaryResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts b/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts index 2c55c7c4fad4f..c2cfd40ec8811 100644 --- a/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts +++ b/clients/client-ec2/src/commands/GetDefaultCreditSpecificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDefaultCreditSpecificationRequest, GetDefaultCreditSpecificationResult } from "../models/models_5"; +import type { GetDefaultCreditSpecificationRequest, GetDefaultCreditSpecificationResult } from "../models/models_5"; import { GetDefaultCreditSpecification } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts b/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts index c7423a8568ea3..35b9c90e714ab 100644 --- a/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts +++ b/clients/client-ec2/src/commands/GetEbsDefaultKmsKeyIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEbsDefaultKmsKeyIdRequest, GetEbsDefaultKmsKeyIdResult } from "../models/models_5"; +import type { GetEbsDefaultKmsKeyIdRequest, GetEbsDefaultKmsKeyIdResult } from "../models/models_5"; import { GetEbsDefaultKmsKeyId } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts b/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts index feeeaccd5bbd3..d0cd8813c119b 100644 --- a/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts +++ b/clients/client-ec2/src/commands/GetEbsEncryptionByDefaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEbsEncryptionByDefaultRequest, GetEbsEncryptionByDefaultResult } from "../models/models_5"; +import type { GetEbsEncryptionByDefaultRequest, GetEbsEncryptionByDefaultResult } from "../models/models_5"; import { GetEbsEncryptionByDefault } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetEnabledIpamPolicyCommand.ts b/clients/client-ec2/src/commands/GetEnabledIpamPolicyCommand.ts index f535901f477cf..7416205887af4 100644 --- a/clients/client-ec2/src/commands/GetEnabledIpamPolicyCommand.ts +++ b/clients/client-ec2/src/commands/GetEnabledIpamPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnabledIpamPolicyRequest, GetEnabledIpamPolicyResult } from "../models/models_5"; +import type { GetEnabledIpamPolicyRequest, GetEnabledIpamPolicyResult } from "../models/models_5"; import { GetEnabledIpamPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts b/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts index 3319563382031..638677cd2e173 100644 --- a/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts +++ b/clients/client-ec2/src/commands/GetFlowLogsIntegrationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFlowLogsIntegrationTemplateRequest, GetFlowLogsIntegrationTemplateResult } from "../models/models_5"; +import type { GetFlowLogsIntegrationTemplateRequest, GetFlowLogsIntegrationTemplateResult } from "../models/models_5"; import { GetFlowLogsIntegrationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts b/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts index 809a87a9f187f..2197b448616a3 100644 --- a/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/GetGroupsForCapacityReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupsForCapacityReservationRequest, GetGroupsForCapacityReservationResult } from "../models/models_5"; +import type { GetGroupsForCapacityReservationRequest, GetGroupsForCapacityReservationResult } from "../models/models_5"; import { GetGroupsForCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts b/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts index f5d90824e2e1d..eb1a808180adb 100644 --- a/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts +++ b/clients/client-ec2/src/commands/GetHostReservationPurchasePreviewCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHostReservationPurchasePreviewRequest, GetHostReservationPurchasePreviewResult } from "../models/models_5"; +import type { + GetHostReservationPurchasePreviewRequest, + GetHostReservationPurchasePreviewResult, +} from "../models/models_5"; import { GetHostReservationPurchasePreview } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetImageAncestryCommand.ts b/clients/client-ec2/src/commands/GetImageAncestryCommand.ts index e271f088a9609..433cf909f3d6d 100644 --- a/clients/client-ec2/src/commands/GetImageAncestryCommand.ts +++ b/clients/client-ec2/src/commands/GetImageAncestryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImageAncestryRequest, GetImageAncestryResult } from "../models/models_5"; +import type { GetImageAncestryRequest, GetImageAncestryResult } from "../models/models_5"; import { GetImageAncestry } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts b/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts index 9da10493d84ec..33238f9213110 100644 --- a/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts +++ b/clients/client-ec2/src/commands/GetImageBlockPublicAccessStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImageBlockPublicAccessStateRequest, GetImageBlockPublicAccessStateResult } from "../models/models_5"; +import type { GetImageBlockPublicAccessStateRequest, GetImageBlockPublicAccessStateResult } from "../models/models_5"; import { GetImageBlockPublicAccessState } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts b/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts index d3551bea7a92a..4fb65d998dbd4 100644 --- a/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceMetadataDefaultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstanceMetadataDefaultsRequest, GetInstanceMetadataDefaultsResult } from "../models/models_5"; +import type { GetInstanceMetadataDefaultsRequest, GetInstanceMetadataDefaultsResult } from "../models/models_5"; import { GetInstanceMetadataDefaults } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts b/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts index b44c6e3bd2b9a..ab29f5b9efbba 100644 --- a/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceTpmEkPubCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstanceTpmEkPubRequest, GetInstanceTpmEkPubResult } from "../models/models_5"; +import type { GetInstanceTpmEkPubRequest, GetInstanceTpmEkPubResult } from "../models/models_5"; import { GetInstanceTpmEkPub } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts b/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts index e577faaf824c1..dec9bc0100c94 100644 --- a/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceTypesFromInstanceRequirementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetInstanceTypesFromInstanceRequirementsRequest, GetInstanceTypesFromInstanceRequirementsResult, } from "../models/models_5"; diff --git a/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts b/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts index cdc8876a98517..4a556505a11a1 100644 --- a/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts +++ b/clients/client-ec2/src/commands/GetInstanceUefiDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstanceUefiDataRequest, GetInstanceUefiDataResult } from "../models/models_5"; +import type { GetInstanceUefiDataRequest, GetInstanceUefiDataResult } from "../models/models_5"; import { GetInstanceUefiData } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts b/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts index b51cb6e3d4569..e25855d510bd2 100644 --- a/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamAddressHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamAddressHistoryRequest, GetIpamAddressHistoryResult } from "../models/models_6"; +import type { GetIpamAddressHistoryRequest, GetIpamAddressHistoryResult } from "../models/models_6"; import { GetIpamAddressHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts b/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts index 4f35ab40d55f9..ee3aae1789d3e 100644 --- a/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamDiscoveredAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamDiscoveredAccountsRequest, GetIpamDiscoveredAccountsResult } from "../models/models_6"; +import type { GetIpamDiscoveredAccountsRequest, GetIpamDiscoveredAccountsResult } from "../models/models_6"; import { GetIpamDiscoveredAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts b/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts index 26f624e84d718..29e77d0dc12cc 100644 --- a/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamDiscoveredPublicAddressesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamDiscoveredPublicAddressesRequest, GetIpamDiscoveredPublicAddressesResult } from "../models/models_6"; +import type { + GetIpamDiscoveredPublicAddressesRequest, + GetIpamDiscoveredPublicAddressesResult, +} from "../models/models_6"; import { GetIpamDiscoveredPublicAddresses } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts b/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts index dbc8a5f824816..a78b110a740ac 100644 --- a/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamDiscoveredResourceCidrsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamDiscoveredResourceCidrsRequest, GetIpamDiscoveredResourceCidrsResult } from "../models/models_6"; +import type { GetIpamDiscoveredResourceCidrsRequest, GetIpamDiscoveredResourceCidrsResult } from "../models/models_6"; import { GetIpamDiscoveredResourceCidrs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamPolicyAllocationRulesCommand.ts b/clients/client-ec2/src/commands/GetIpamPolicyAllocationRulesCommand.ts index ff1d10657ad31..653412d69a8a6 100644 --- a/clients/client-ec2/src/commands/GetIpamPolicyAllocationRulesCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPolicyAllocationRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamPolicyAllocationRulesRequest, GetIpamPolicyAllocationRulesResult } from "../models/models_6"; +import type { GetIpamPolicyAllocationRulesRequest, GetIpamPolicyAllocationRulesResult } from "../models/models_6"; import { GetIpamPolicyAllocationRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamPolicyOrganizationTargetsCommand.ts b/clients/client-ec2/src/commands/GetIpamPolicyOrganizationTargetsCommand.ts index 87afd07d6c881..3c1c22ee79562 100644 --- a/clients/client-ec2/src/commands/GetIpamPolicyOrganizationTargetsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPolicyOrganizationTargetsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamPolicyOrganizationTargetsRequest, GetIpamPolicyOrganizationTargetsResult } from "../models/models_6"; +import type { + GetIpamPolicyOrganizationTargetsRequest, + GetIpamPolicyOrganizationTargetsResult, +} from "../models/models_6"; import { GetIpamPolicyOrganizationTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts b/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts index 1fbee3a1b13a1..10b81624fe3f2 100644 --- a/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPoolAllocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamPoolAllocationsRequest, GetIpamPoolAllocationsResult } from "../models/models_6"; +import type { GetIpamPoolAllocationsRequest, GetIpamPoolAllocationsResult } from "../models/models_6"; import { GetIpamPoolAllocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts b/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts index e1bb8a2fe848b..6a6e16b737e96 100644 --- a/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPoolCidrsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamPoolCidrsRequest, GetIpamPoolCidrsResult } from "../models/models_6"; +import type { GetIpamPoolCidrsRequest, GetIpamPoolCidrsResult } from "../models/models_6"; import { GetIpamPoolCidrs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamPrefixListResolverRulesCommand.ts b/clients/client-ec2/src/commands/GetIpamPrefixListResolverRulesCommand.ts index aa5f3475cbad6..b6252f80012ad 100644 --- a/clients/client-ec2/src/commands/GetIpamPrefixListResolverRulesCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPrefixListResolverRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamPrefixListResolverRulesRequest, GetIpamPrefixListResolverRulesResult } from "../models/models_6"; +import type { GetIpamPrefixListResolverRulesRequest, GetIpamPrefixListResolverRulesResult } from "../models/models_6"; import { GetIpamPrefixListResolverRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamPrefixListResolverVersionEntriesCommand.ts b/clients/client-ec2/src/commands/GetIpamPrefixListResolverVersionEntriesCommand.ts index c9d09acd8c82f..22ff5c9e65d02 100644 --- a/clients/client-ec2/src/commands/GetIpamPrefixListResolverVersionEntriesCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPrefixListResolverVersionEntriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetIpamPrefixListResolverVersionEntriesRequest, GetIpamPrefixListResolverVersionEntriesResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetIpamPrefixListResolverVersionsCommand.ts b/clients/client-ec2/src/commands/GetIpamPrefixListResolverVersionsCommand.ts index 43151bb381e9f..b8c386afb9b02 100644 --- a/clients/client-ec2/src/commands/GetIpamPrefixListResolverVersionsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamPrefixListResolverVersionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamPrefixListResolverVersionsRequest, GetIpamPrefixListResolverVersionsResult } from "../models/models_6"; +import type { + GetIpamPrefixListResolverVersionsRequest, + GetIpamPrefixListResolverVersionsResult, +} from "../models/models_6"; import { GetIpamPrefixListResolverVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts b/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts index 3d220dbee5d79..0355e24284d96 100644 --- a/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts +++ b/clients/client-ec2/src/commands/GetIpamResourceCidrsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpamResourceCidrsRequest, GetIpamResourceCidrsResult } from "../models/models_6"; +import type { GetIpamResourceCidrsRequest, GetIpamResourceCidrsResult } from "../models/models_6"; import { GetIpamResourceCidrs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts b/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts index ae2cc685787b9..3294cfe015d70 100644 --- a/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts +++ b/clients/client-ec2/src/commands/GetLaunchTemplateDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLaunchTemplateDataRequest, GetLaunchTemplateDataResult } from "../models/models_6"; +import type { GetLaunchTemplateDataRequest, GetLaunchTemplateDataResult } from "../models/models_6"; import { GetLaunchTemplateData } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts b/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts index 27876ffe8c7ce..ec2d05dbdc078 100644 --- a/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetManagedPrefixListAssociationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedPrefixListAssociationsRequest, GetManagedPrefixListAssociationsResult } from "../models/models_6"; +import type { + GetManagedPrefixListAssociationsRequest, + GetManagedPrefixListAssociationsResult, +} from "../models/models_6"; import { GetManagedPrefixListAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts b/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts index 6e316ae442aa9..1b1fc2f297ddb 100644 --- a/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts +++ b/clients/client-ec2/src/commands/GetManagedPrefixListEntriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedPrefixListEntriesRequest, GetManagedPrefixListEntriesResult } from "../models/models_6"; +import type { GetManagedPrefixListEntriesRequest, GetManagedPrefixListEntriesResult } from "../models/models_6"; import { GetManagedPrefixListEntries } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts index d388075e27330..9d60438db0d32 100644 --- a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts +++ b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetNetworkInsightsAccessScopeAnalysisFindingsRequest, GetNetworkInsightsAccessScopeAnalysisFindingsResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts index e4c30da9e5c38..4777b755e6bf4 100644 --- a/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts +++ b/clients/client-ec2/src/commands/GetNetworkInsightsAccessScopeContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetNetworkInsightsAccessScopeContentRequest, GetNetworkInsightsAccessScopeContentResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetPasswordDataCommand.ts b/clients/client-ec2/src/commands/GetPasswordDataCommand.ts index d20dddd7aa25e..bc8d02daad16f 100644 --- a/clients/client-ec2/src/commands/GetPasswordDataCommand.ts +++ b/clients/client-ec2/src/commands/GetPasswordDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPasswordDataRequest, GetPasswordDataResult } from "../models/models_6"; +import type { GetPasswordDataRequest, GetPasswordDataResult } from "../models/models_6"; import { GetPasswordData } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts b/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts index f6e3cc62659d2..00c83b45db39d 100644 --- a/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts +++ b/clients/client-ec2/src/commands/GetReservedInstancesExchangeQuoteCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReservedInstancesExchangeQuoteRequest, GetReservedInstancesExchangeQuoteResult } from "../models/models_6"; +import type { + GetReservedInstancesExchangeQuoteRequest, + GetReservedInstancesExchangeQuoteResult, +} from "../models/models_6"; import { GetReservedInstancesExchangeQuote } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetRouteServerAssociationsCommand.ts b/clients/client-ec2/src/commands/GetRouteServerAssociationsCommand.ts index bb56499e54b3c..05b2b8d208b95 100644 --- a/clients/client-ec2/src/commands/GetRouteServerAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetRouteServerAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRouteServerAssociationsRequest, GetRouteServerAssociationsResult } from "../models/models_6"; +import type { GetRouteServerAssociationsRequest, GetRouteServerAssociationsResult } from "../models/models_6"; import { GetRouteServerAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetRouteServerPropagationsCommand.ts b/clients/client-ec2/src/commands/GetRouteServerPropagationsCommand.ts index 36f991025c493..8e70d8d632a46 100644 --- a/clients/client-ec2/src/commands/GetRouteServerPropagationsCommand.ts +++ b/clients/client-ec2/src/commands/GetRouteServerPropagationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRouteServerPropagationsRequest, GetRouteServerPropagationsResult } from "../models/models_6"; +import type { GetRouteServerPropagationsRequest, GetRouteServerPropagationsResult } from "../models/models_6"; import { GetRouteServerPropagations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetRouteServerRoutingDatabaseCommand.ts b/clients/client-ec2/src/commands/GetRouteServerRoutingDatabaseCommand.ts index fcac15a00f1be..cea8c501cd7e1 100644 --- a/clients/client-ec2/src/commands/GetRouteServerRoutingDatabaseCommand.ts +++ b/clients/client-ec2/src/commands/GetRouteServerRoutingDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRouteServerRoutingDatabaseRequest, GetRouteServerRoutingDatabaseResult } from "../models/models_6"; +import type { GetRouteServerRoutingDatabaseRequest, GetRouteServerRoutingDatabaseResult } from "../models/models_6"; import { GetRouteServerRoutingDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts b/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts index f110abb3092e5..632e1accc1d66 100644 --- a/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts +++ b/clients/client-ec2/src/commands/GetSecurityGroupsForVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSecurityGroupsForVpcRequest, GetSecurityGroupsForVpcResult } from "../models/models_6"; +import type { GetSecurityGroupsForVpcRequest, GetSecurityGroupsForVpcResult } from "../models/models_6"; import { GetSecurityGroupsForVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts b/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts index acb2a8f885395..64b71d94ff224 100644 --- a/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts +++ b/clients/client-ec2/src/commands/GetSerialConsoleAccessStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSerialConsoleAccessStatusRequest, GetSerialConsoleAccessStatusResult } from "../models/models_6"; +import type { GetSerialConsoleAccessStatusRequest, GetSerialConsoleAccessStatusResult } from "../models/models_6"; import { GetSerialConsoleAccessStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts b/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts index 1031699273f2d..9580accb23f4e 100644 --- a/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts +++ b/clients/client-ec2/src/commands/GetSnapshotBlockPublicAccessStateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSnapshotBlockPublicAccessStateRequest, GetSnapshotBlockPublicAccessStateResult } from "../models/models_6"; +import type { + GetSnapshotBlockPublicAccessStateRequest, + GetSnapshotBlockPublicAccessStateResult, +} from "../models/models_6"; import { GetSnapshotBlockPublicAccessState } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts b/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts index 31c921b69858a..4f127339e7075 100644 --- a/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts +++ b/clients/client-ec2/src/commands/GetSpotPlacementScoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSpotPlacementScoresRequest, GetSpotPlacementScoresResult } from "../models/models_6"; +import type { GetSpotPlacementScoresRequest, GetSpotPlacementScoresResult } from "../models/models_6"; import { GetSpotPlacementScores } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts b/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts index 7a714d30bdcdf..fa76185ddcbda 100644 --- a/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts +++ b/clients/client-ec2/src/commands/GetSubnetCidrReservationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSubnetCidrReservationsRequest, GetSubnetCidrReservationsResult } from "../models/models_6"; +import type { GetSubnetCidrReservationsRequest, GetSubnetCidrReservationsResult } from "../models/models_6"; import { GetSubnetCidrReservations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts index af4c991d1f8be..ca5a23d7af204 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayAttachmentPropagationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayAttachmentPropagationsRequest, GetTransitGatewayAttachmentPropagationsResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetTransitGatewayMeteringPolicyEntriesCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayMeteringPolicyEntriesCommand.ts index 7303444601ff5..b113f2337c46b 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayMeteringPolicyEntriesCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayMeteringPolicyEntriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayMeteringPolicyEntriesRequest, GetTransitGatewayMeteringPolicyEntriesResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts index 230498750388e..d240881457b18 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayMulticastDomainAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayMulticastDomainAssociationsRequest, GetTransitGatewayMulticastDomainAssociationsResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts index d764759a6a449..4ebb8c03a5bce 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayPolicyTableAssociationsRequest, GetTransitGatewayPolicyTableAssociationsResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts index 3f28e4fdb4c73..27a5d6a4134f4 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayPolicyTableEntriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayPolicyTableEntriesRequest, GetTransitGatewayPolicyTableEntriesResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts index 27429ac6eb2bf..280f93b12117e 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayPrefixListReferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayPrefixListReferencesRequest, GetTransitGatewayPrefixListReferencesResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts index 0e8e839b4cd29..5bf9cfb13140e 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayRouteTableAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayRouteTableAssociationsRequest, GetTransitGatewayRouteTableAssociationsResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts b/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts index 8e27af0d62096..8c9949bd1f9e1 100644 --- a/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts +++ b/clients/client-ec2/src/commands/GetTransitGatewayRouteTablePropagationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayRouteTablePropagationsRequest, GetTransitGatewayRouteTablePropagationsResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts index 261f74f750780..8da5a1b37bc2e 100644 --- a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts +++ b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVerifiedAccessEndpointPolicyRequest, GetVerifiedAccessEndpointPolicyResult } from "../models/models_6"; +import type { GetVerifiedAccessEndpointPolicyRequest, GetVerifiedAccessEndpointPolicyResult } from "../models/models_6"; import { GetVerifiedAccessEndpointPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointTargetsCommand.ts b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointTargetsCommand.ts index f2f29e04bf81e..81f8484cdc436 100644 --- a/clients/client-ec2/src/commands/GetVerifiedAccessEndpointTargetsCommand.ts +++ b/clients/client-ec2/src/commands/GetVerifiedAccessEndpointTargetsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVerifiedAccessEndpointTargetsRequest, GetVerifiedAccessEndpointTargetsResult } from "../models/models_6"; +import type { + GetVerifiedAccessEndpointTargetsRequest, + GetVerifiedAccessEndpointTargetsResult, +} from "../models/models_6"; import { GetVerifiedAccessEndpointTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts b/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts index 163122a97b8d2..c941fabc89ae3 100644 --- a/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts +++ b/clients/client-ec2/src/commands/GetVerifiedAccessGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVerifiedAccessGroupPolicyRequest, GetVerifiedAccessGroupPolicyResult } from "../models/models_6"; +import type { GetVerifiedAccessGroupPolicyRequest, GetVerifiedAccessGroupPolicyResult } from "../models/models_6"; import { GetVerifiedAccessGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.ts b/clients/client-ec2/src/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.ts index 4d5eb494c331d..81b8f1cab4ca3 100644 --- a/clients/client-ec2/src/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.ts +++ b/clients/client-ec2/src/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetVpcResourcesBlockingEncryptionEnforcementRequest, GetVpcResourcesBlockingEncryptionEnforcementResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts b/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts index 86223af4bfdc4..b0720986427f6 100644 --- a/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/GetVpnConnectionDeviceSampleConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetVpnConnectionDeviceSampleConfigurationRequest, GetVpnConnectionDeviceSampleConfigurationResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts b/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts index 1ebaa859d610d..aa4e87f37c4ca 100644 --- a/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts +++ b/clients/client-ec2/src/commands/GetVpnConnectionDeviceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVpnConnectionDeviceTypesRequest, GetVpnConnectionDeviceTypesResult } from "../models/models_6"; +import type { GetVpnConnectionDeviceTypesRequest, GetVpnConnectionDeviceTypesResult } from "../models/models_6"; import { GetVpnConnectionDeviceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts b/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts index 0885c834e904d..5c784fd1f593c 100644 --- a/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts +++ b/clients/client-ec2/src/commands/GetVpnTunnelReplacementStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVpnTunnelReplacementStatusRequest, GetVpnTunnelReplacementStatusResult } from "../models/models_6"; +import type { GetVpnTunnelReplacementStatusRequest, GetVpnTunnelReplacementStatusResult } from "../models/models_6"; import { GetVpnTunnelReplacementStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts b/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts index 8fd6e693cf947..ba91812d38ec6 100644 --- a/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts +++ b/clients/client-ec2/src/commands/ImportClientVpnClientCertificateRevocationListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ImportClientVpnClientCertificateRevocationListRequest, ImportClientVpnClientCertificateRevocationListResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/ImportImageCommand.ts b/clients/client-ec2/src/commands/ImportImageCommand.ts index 45b2e524c1437..7b97787cac01e 100644 --- a/clients/client-ec2/src/commands/ImportImageCommand.ts +++ b/clients/client-ec2/src/commands/ImportImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportImageRequest, ImportImageResult } from "../models/models_6"; +import type { ImportImageRequest, ImportImageResult } from "../models/models_6"; import { ImportImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ImportInstanceCommand.ts b/clients/client-ec2/src/commands/ImportInstanceCommand.ts index 8187ac8d64d12..370c3e88c130e 100644 --- a/clients/client-ec2/src/commands/ImportInstanceCommand.ts +++ b/clients/client-ec2/src/commands/ImportInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportInstanceRequest, ImportInstanceResult } from "../models/models_6"; +import type { ImportInstanceRequest, ImportInstanceResult } from "../models/models_6"; import { ImportInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ImportKeyPairCommand.ts b/clients/client-ec2/src/commands/ImportKeyPairCommand.ts index 73b788cfa9ef0..9dfb224373ea9 100644 --- a/clients/client-ec2/src/commands/ImportKeyPairCommand.ts +++ b/clients/client-ec2/src/commands/ImportKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportKeyPairRequest, ImportKeyPairResult } from "../models/models_6"; +import type { ImportKeyPairRequest, ImportKeyPairResult } from "../models/models_6"; import { ImportKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ImportSnapshotCommand.ts b/clients/client-ec2/src/commands/ImportSnapshotCommand.ts index b3ee9749d96d3..499ccee2a290a 100644 --- a/clients/client-ec2/src/commands/ImportSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/ImportSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportSnapshotRequest, ImportSnapshotResult } from "../models/models_6"; +import type { ImportSnapshotRequest, ImportSnapshotResult } from "../models/models_6"; import { ImportSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ImportVolumeCommand.ts b/clients/client-ec2/src/commands/ImportVolumeCommand.ts index 22e83fd22b245..df59b203f28b2 100644 --- a/clients/client-ec2/src/commands/ImportVolumeCommand.ts +++ b/clients/client-ec2/src/commands/ImportVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportVolumeRequest, ImportVolumeResult } from "../models/models_6"; +import type { ImportVolumeRequest, ImportVolumeResult } from "../models/models_6"; import { ImportVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts b/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts index df2243800bcc1..d9c96dd29ad04 100644 --- a/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/ListImagesInRecycleBinCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImagesInRecycleBinRequest, ListImagesInRecycleBinResult } from "../models/models_6"; +import type { ListImagesInRecycleBinRequest, ListImagesInRecycleBinResult } from "../models/models_6"; import { ListImagesInRecycleBin } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts b/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts index 0adeef06d7ba8..867098bb77b31 100644 --- a/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/ListSnapshotsInRecycleBinCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSnapshotsInRecycleBinRequest, ListSnapshotsInRecycleBinResult } from "../models/models_6"; +import type { ListSnapshotsInRecycleBinRequest, ListSnapshotsInRecycleBinResult } from "../models/models_6"; import { ListSnapshotsInRecycleBin } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ListVolumesInRecycleBinCommand.ts b/clients/client-ec2/src/commands/ListVolumesInRecycleBinCommand.ts index 62d4577862b56..547de2f74e31b 100644 --- a/clients/client-ec2/src/commands/ListVolumesInRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/ListVolumesInRecycleBinCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVolumesInRecycleBinRequest, ListVolumesInRecycleBinResult } from "../models/models_6"; +import type { ListVolumesInRecycleBinRequest, ListVolumesInRecycleBinResult } from "../models/models_6"; import { ListVolumesInRecycleBin } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/LockSnapshotCommand.ts b/clients/client-ec2/src/commands/LockSnapshotCommand.ts index b4de43a414adb..73a02a485f075 100644 --- a/clients/client-ec2/src/commands/LockSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/LockSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LockSnapshotRequest, LockSnapshotResult } from "../models/models_6"; +import type { LockSnapshotRequest, LockSnapshotResult } from "../models/models_6"; import { LockSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts index ed762c2f6aa40..dfaba20cf79ac 100644 --- a/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyAddressAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyAddressAttributeRequest, ModifyAddressAttributeResult } from "../models/models_6"; +import type { ModifyAddressAttributeRequest, ModifyAddressAttributeResult } from "../models/models_6"; import { ModifyAddressAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts b/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts index 8b2d04e90775e..23a91b566f88b 100644 --- a/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts +++ b/clients/client-ec2/src/commands/ModifyAvailabilityZoneGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyAvailabilityZoneGroupRequest, ModifyAvailabilityZoneGroupResult } from "../models/models_6"; +import type { ModifyAvailabilityZoneGroupRequest, ModifyAvailabilityZoneGroupResult } from "../models/models_6"; import { ModifyAvailabilityZoneGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts b/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts index ebadc29e489fb..beda019096aea 100644 --- a/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyCapacityReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyCapacityReservationRequest, ModifyCapacityReservationResult } from "../models/models_6"; +import type { ModifyCapacityReservationRequest, ModifyCapacityReservationResult } from "../models/models_6"; import { ModifyCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts b/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts index 33ec1ff7f04d1..6cd556f578a9d 100644 --- a/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts +++ b/clients/client-ec2/src/commands/ModifyCapacityReservationFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyCapacityReservationFleetRequest, ModifyCapacityReservationFleetResult } from "../models/models_6"; +import type { ModifyCapacityReservationFleetRequest, ModifyCapacityReservationFleetResult } from "../models/models_6"; import { ModifyCapacityReservationFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts index 5f845fb0a650e..6bf9fa82d6cff 100644 --- a/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyClientVpnEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClientVpnEndpointRequest, ModifyClientVpnEndpointResult } from "../models/models_6"; +import type { ModifyClientVpnEndpointRequest, ModifyClientVpnEndpointResult } from "../models/models_6"; import { ModifyClientVpnEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts b/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts index c62956f604710..d7b3ff905d2ed 100644 --- a/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyDefaultCreditSpecificationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDefaultCreditSpecificationRequest, ModifyDefaultCreditSpecificationResult } from "../models/models_6"; +import type { + ModifyDefaultCreditSpecificationRequest, + ModifyDefaultCreditSpecificationResult, +} from "../models/models_6"; import { ModifyDefaultCreditSpecification } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts b/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts index 02cfc42671146..5f49fe54f3e7c 100644 --- a/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts +++ b/clients/client-ec2/src/commands/ModifyEbsDefaultKmsKeyIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyEbsDefaultKmsKeyIdRequest, ModifyEbsDefaultKmsKeyIdResult } from "../models/models_6"; +import type { ModifyEbsDefaultKmsKeyIdRequest, ModifyEbsDefaultKmsKeyIdResult } from "../models/models_6"; import { ModifyEbsDefaultKmsKeyId } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyFleetCommand.ts b/clients/client-ec2/src/commands/ModifyFleetCommand.ts index 400bc548b2d6e..63c390f1a7d2a 100644 --- a/clients/client-ec2/src/commands/ModifyFleetCommand.ts +++ b/clients/client-ec2/src/commands/ModifyFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyFleetRequest, ModifyFleetResult } from "../models/models_6"; +import type { ModifyFleetRequest, ModifyFleetResult } from "../models/models_6"; import { ModifyFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts index bc35033be7f52..eb106930a5e39 100644 --- a/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyFpgaImageAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyFpgaImageAttributeRequest, ModifyFpgaImageAttributeResult } from "../models/models_6"; +import type { ModifyFpgaImageAttributeRequest, ModifyFpgaImageAttributeResult } from "../models/models_6"; import { ModifyFpgaImageAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyHostsCommand.ts b/clients/client-ec2/src/commands/ModifyHostsCommand.ts index 943355ee8302d..b1d8c48b89b05 100644 --- a/clients/client-ec2/src/commands/ModifyHostsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyHostsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyHostsRequest, ModifyHostsResult } from "../models/models_6"; +import type { ModifyHostsRequest, ModifyHostsResult } from "../models/models_6"; import { ModifyHosts } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts b/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts index df7c3ffbeb8c4..9306dfd462619 100644 --- a/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIdFormatCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIdFormatRequest } from "../models/models_6"; +import type { ModifyIdFormatRequest } from "../models/models_6"; import { ModifyIdFormat } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts b/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts index 5abd7f37cf99e..7f8168c8f12e2 100644 --- a/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIdentityIdFormatCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIdentityIdFormatRequest } from "../models/models_6"; +import type { ModifyIdentityIdFormatRequest } from "../models/models_6"; import { ModifyIdentityIdFormat } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts index d07850e55e988..319072449306f 100644 --- a/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyImageAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyImageAttributeRequest } from "../models/models_6"; +import type { ModifyImageAttributeRequest } from "../models/models_6"; import { ModifyImageAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts index 93222a04a9ed3..0263a92debe33 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceAttributeRequest } from "../models/models_6"; +import type { ModifyInstanceAttributeRequest } from "../models/models_6"; import { ModifyInstanceAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts index fc61ada3bc7a3..29d66e76158b4 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceCapacityReservationAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyInstanceCapacityReservationAttributesRequest, ModifyInstanceCapacityReservationAttributesResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/ModifyInstanceConnectEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceConnectEndpointCommand.ts index cb805a3ae4f02..8d7b65e719b2f 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceConnectEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceConnectEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceConnectEndpointRequest, ModifyInstanceConnectEndpointResult } from "../models/models_6"; +import type { ModifyInstanceConnectEndpointRequest, ModifyInstanceConnectEndpointResult } from "../models/models_6"; import { ModifyInstanceConnectEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceCpuOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceCpuOptionsCommand.ts index f42e47623f0c3..22039b662f3ac 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceCpuOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceCpuOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceCpuOptionsRequest, ModifyInstanceCpuOptionsResult } from "../models/models_6"; +import type { ModifyInstanceCpuOptionsRequest, ModifyInstanceCpuOptionsResult } from "../models/models_6"; import { ModifyInstanceCpuOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts index 2e38f7f91a1ef..fa17b780796b6 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceCreditSpecificationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceCreditSpecificationRequest, ModifyInstanceCreditSpecificationResult } from "../models/models_6"; +import type { + ModifyInstanceCreditSpecificationRequest, + ModifyInstanceCreditSpecificationResult, +} from "../models/models_6"; import { ModifyInstanceCreditSpecification } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts index 0c96423442cd8..d6c6b53815ded 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceEventStartTimeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceEventStartTimeRequest, ModifyInstanceEventStartTimeResult } from "../models/models_6"; +import type { ModifyInstanceEventStartTimeRequest, ModifyInstanceEventStartTimeResult } from "../models/models_6"; import { ModifyInstanceEventStartTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts index 5eb29468bf5ee..c2955c772b78b 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceEventWindowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceEventWindowRequest, ModifyInstanceEventWindowResult } from "../models/models_6"; +import type { ModifyInstanceEventWindowRequest, ModifyInstanceEventWindowResult } from "../models/models_6"; import { ModifyInstanceEventWindow } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts index c102faf2a6b0b..4bda3c07ac18d 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceMaintenanceOptionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceMaintenanceOptionsRequest, ModifyInstanceMaintenanceOptionsResult } from "../models/models_6"; +import type { + ModifyInstanceMaintenanceOptionsRequest, + ModifyInstanceMaintenanceOptionsResult, +} from "../models/models_6"; import { ModifyInstanceMaintenanceOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts index d91f410da1e89..2dc49034435e4 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceMetadataDefaultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceMetadataDefaultsRequest, ModifyInstanceMetadataDefaultsResult } from "../models/models_6"; +import type { ModifyInstanceMetadataDefaultsRequest, ModifyInstanceMetadataDefaultsResult } from "../models/models_6"; import { ModifyInstanceMetadataDefaults } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts index d24978dc6d862..2482303599661 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceMetadataOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceMetadataOptionsRequest, ModifyInstanceMetadataOptionsResult } from "../models/models_6"; +import type { ModifyInstanceMetadataOptionsRequest, ModifyInstanceMetadataOptionsResult } from "../models/models_6"; import { ModifyInstanceMetadataOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstanceNetworkPerformanceOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyInstanceNetworkPerformanceOptionsCommand.ts index 1f5160473aa80..dba4356e681d8 100644 --- a/clients/client-ec2/src/commands/ModifyInstanceNetworkPerformanceOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstanceNetworkPerformanceOptionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceNetworkPerformanceRequest, ModifyInstanceNetworkPerformanceResult } from "../models/models_6"; +import type { + ModifyInstanceNetworkPerformanceRequest, + ModifyInstanceNetworkPerformanceResult, +} from "../models/models_6"; import { ModifyInstanceNetworkPerformanceOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts b/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts index 3aac5981294a8..4322f495c79dd 100644 --- a/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts +++ b/clients/client-ec2/src/commands/ModifyInstancePlacementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstancePlacementRequest, ModifyInstancePlacementResult } from "../models/models_6"; +import type { ModifyInstancePlacementRequest, ModifyInstancePlacementResult } from "../models/models_6"; import { ModifyInstancePlacement } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyIpamCommand.ts b/clients/client-ec2/src/commands/ModifyIpamCommand.ts index ac4739bd26f87..b05f41b95cd11 100644 --- a/clients/client-ec2/src/commands/ModifyIpamCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIpamRequest, ModifyIpamResult } from "../models/models_6"; +import type { ModifyIpamRequest, ModifyIpamResult } from "../models/models_6"; import { ModifyIpam } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyIpamPolicyAllocationRulesCommand.ts b/clients/client-ec2/src/commands/ModifyIpamPolicyAllocationRulesCommand.ts index 3ec15eb4892b1..2a777754518d3 100644 --- a/clients/client-ec2/src/commands/ModifyIpamPolicyAllocationRulesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamPolicyAllocationRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIpamPolicyAllocationRulesRequest, ModifyIpamPolicyAllocationRulesResult } from "../models/models_6"; +import type { ModifyIpamPolicyAllocationRulesRequest, ModifyIpamPolicyAllocationRulesResult } from "../models/models_6"; import { ModifyIpamPolicyAllocationRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts b/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts index 2bdccbd9e51b5..c435ac20ccebf 100644 --- a/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIpamPoolRequest, ModifyIpamPoolResult } from "../models/models_6"; +import type { ModifyIpamPoolRequest, ModifyIpamPoolResult } from "../models/models_6"; import { ModifyIpamPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyIpamPrefixListResolverCommand.ts b/clients/client-ec2/src/commands/ModifyIpamPrefixListResolverCommand.ts index 1ce34f7b2f183..b809128958c2d 100644 --- a/clients/client-ec2/src/commands/ModifyIpamPrefixListResolverCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamPrefixListResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIpamPrefixListResolverRequest, ModifyIpamPrefixListResolverResult } from "../models/models_6"; +import type { ModifyIpamPrefixListResolverRequest, ModifyIpamPrefixListResolverResult } from "../models/models_6"; import { ModifyIpamPrefixListResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyIpamPrefixListResolverTargetCommand.ts b/clients/client-ec2/src/commands/ModifyIpamPrefixListResolverTargetCommand.ts index c9469582f3290..b9989bc710342 100644 --- a/clients/client-ec2/src/commands/ModifyIpamPrefixListResolverTargetCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamPrefixListResolverTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyIpamPrefixListResolverTargetRequest, ModifyIpamPrefixListResolverTargetResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts b/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts index 0df5785141705..045a46a655389 100644 --- a/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamResourceCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIpamResourceCidrRequest, ModifyIpamResourceCidrResult } from "../models/models_6"; +import type { ModifyIpamResourceCidrRequest, ModifyIpamResourceCidrResult } from "../models/models_6"; import { ModifyIpamResourceCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts b/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts index 8956bc470ecc0..78685e47fb81c 100644 --- a/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamResourceDiscoveryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIpamResourceDiscoveryRequest, ModifyIpamResourceDiscoveryResult } from "../models/models_6"; +import type { ModifyIpamResourceDiscoveryRequest, ModifyIpamResourceDiscoveryResult } from "../models/models_6"; import { ModifyIpamResourceDiscovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts b/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts index cc069a7318353..699e1312e49e5 100644 --- a/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyIpamScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIpamScopeRequest, ModifyIpamScopeResult } from "../models/models_6"; +import type { ModifyIpamScopeRequest, ModifyIpamScopeResult } from "../models/models_6"; import { ModifyIpamScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts b/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts index fef6714cb5c67..bffc95a2e0db9 100644 --- a/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts +++ b/clients/client-ec2/src/commands/ModifyLaunchTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyLaunchTemplateRequest, ModifyLaunchTemplateResult } from "../models/models_6"; +import type { ModifyLaunchTemplateRequest, ModifyLaunchTemplateResult } from "../models/models_6"; import { ModifyLaunchTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts b/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts index 4b44527fafd1b..545392b3e4e07 100644 --- a/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/ModifyLocalGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyLocalGatewayRouteRequest, ModifyLocalGatewayRouteResult } from "../models/models_6"; +import type { ModifyLocalGatewayRouteRequest, ModifyLocalGatewayRouteResult } from "../models/models_6"; import { ModifyLocalGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts b/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts index a70fefec18bd1..b4e0b12ae2769 100644 --- a/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts +++ b/clients/client-ec2/src/commands/ModifyManagedPrefixListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyManagedPrefixListRequest, ModifyManagedPrefixListResult } from "../models/models_6"; +import type { ModifyManagedPrefixListRequest, ModifyManagedPrefixListResult } from "../models/models_6"; import { ModifyManagedPrefixList } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts index d1e548981bca0..6ac1abe78be0d 100644 --- a/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyNetworkInterfaceAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyNetworkInterfaceAttributeRequest } from "../models/models_6"; +import type { ModifyNetworkInterfaceAttributeRequest } from "../models/models_6"; import { ModifyNetworkInterfaceAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts index 4779171058756..9a6117420ad9c 100644 --- a/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyPrivateDnsNameOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyPrivateDnsNameOptionsRequest, ModifyPrivateDnsNameOptionsResult } from "../models/models_6"; +import type { ModifyPrivateDnsNameOptionsRequest, ModifyPrivateDnsNameOptionsResult } from "../models/models_6"; import { ModifyPrivateDnsNameOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyPublicIpDnsNameOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyPublicIpDnsNameOptionsCommand.ts index aec24186092fb..14cb48b511920 100644 --- a/clients/client-ec2/src/commands/ModifyPublicIpDnsNameOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyPublicIpDnsNameOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyPublicIpDnsNameOptionsRequest, ModifyPublicIpDnsNameOptionsResult } from "../models/models_6"; +import type { ModifyPublicIpDnsNameOptionsRequest, ModifyPublicIpDnsNameOptionsResult } from "../models/models_6"; import { ModifyPublicIpDnsNameOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts b/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts index d3b17b1fab4ca..2e7b5272ca484 100644 --- a/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyReservedInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyReservedInstancesRequest, ModifyReservedInstancesResult } from "../models/models_6"; +import type { ModifyReservedInstancesRequest, ModifyReservedInstancesResult } from "../models/models_6"; import { ModifyReservedInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyRouteServerCommand.ts b/clients/client-ec2/src/commands/ModifyRouteServerCommand.ts index 8309fd3d2c4aa..07a3fa48f78b3 100644 --- a/clients/client-ec2/src/commands/ModifyRouteServerCommand.ts +++ b/clients/client-ec2/src/commands/ModifyRouteServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyRouteServerRequest, ModifyRouteServerResult } from "../models/models_6"; +import type { ModifyRouteServerRequest, ModifyRouteServerResult } from "../models/models_6"; import { ModifyRouteServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts b/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts index 97175bb97ad21..d18f8ce1a0b68 100644 --- a/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts +++ b/clients/client-ec2/src/commands/ModifySecurityGroupRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifySecurityGroupRulesRequest, ModifySecurityGroupRulesResult } from "../models/models_6"; +import type { ModifySecurityGroupRulesRequest, ModifySecurityGroupRulesResult } from "../models/models_6"; import { ModifySecurityGroupRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts b/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts index d0a36112fbca9..8c20790672bf0 100644 --- a/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifySnapshotAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifySnapshotAttributeRequest } from "../models/models_6"; +import type { ModifySnapshotAttributeRequest } from "../models/models_6"; import { ModifySnapshotAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts b/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts index 802f2193f16d0..9bc21caca55b7 100644 --- a/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts +++ b/clients/client-ec2/src/commands/ModifySnapshotTierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifySnapshotTierRequest, ModifySnapshotTierResult } from "../models/models_6"; +import type { ModifySnapshotTierRequest, ModifySnapshotTierResult } from "../models/models_6"; import { ModifySnapshotTier } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts b/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts index 7e73ee76df234..c2cebdb22cd82 100644 --- a/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts +++ b/clients/client-ec2/src/commands/ModifySpotFleetRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifySpotFleetRequestRequest, ModifySpotFleetRequestResponse } from "../models/models_6"; +import type { ModifySpotFleetRequestRequest, ModifySpotFleetRequestResponse } from "../models/models_6"; import { ModifySpotFleetRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts b/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts index 5c08047e39402..78cb71ce3c168 100644 --- a/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifySubnetAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifySubnetAttributeRequest } from "../models/models_6"; +import type { ModifySubnetAttributeRequest } from "../models/models_6"; import { ModifySubnetAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts index c2d116319b298..9933d8840b28a 100644 --- a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyTrafficMirrorFilterNetworkServicesRequest, ModifyTrafficMirrorFilterNetworkServicesResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts index e4ce15355f4f5..92f161efbebba 100644 --- a/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTrafficMirrorFilterRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyTrafficMirrorFilterRuleRequest, ModifyTrafficMirrorFilterRuleResult } from "../models/models_6"; +import type { ModifyTrafficMirrorFilterRuleRequest, ModifyTrafficMirrorFilterRuleResult } from "../models/models_6"; import { ModifyTrafficMirrorFilterRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts b/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts index c85a7d5144e0b..b17ca325a420f 100644 --- a/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTrafficMirrorSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyTrafficMirrorSessionRequest, ModifyTrafficMirrorSessionResult } from "../models/models_6"; +import type { ModifyTrafficMirrorSessionRequest, ModifyTrafficMirrorSessionResult } from "../models/models_6"; import { ModifyTrafficMirrorSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts index 2b5b4fcd3fa97..f13453f1eddeb 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyTransitGatewayRequest, ModifyTransitGatewayResult } from "../models/models_6"; +import type { ModifyTransitGatewayRequest, ModifyTransitGatewayResult } from "../models/models_6"; import { ModifyTransitGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayMeteringPolicyCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayMeteringPolicyCommand.ts index df5d8299a59bc..a0988434961d5 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayMeteringPolicyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayMeteringPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyTransitGatewayMeteringPolicyRequest, ModifyTransitGatewayMeteringPolicyResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts index 4e0074ca8ee40..8f13e5f06e147 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayPrefixListReferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyTransitGatewayPrefixListReferenceRequest, ModifyTransitGatewayPrefixListReferenceResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts index 2662387285446..1212a8ba543b6 100644 --- a/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/ModifyTransitGatewayVpcAttachmentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyTransitGatewayVpcAttachmentRequest, ModifyTransitGatewayVpcAttachmentResult } from "../models/models_6"; +import type { + ModifyTransitGatewayVpcAttachmentRequest, + ModifyTransitGatewayVpcAttachmentResult, +} from "../models/models_6"; import { ModifyTransitGatewayVpcAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts index bacafd59c0d2a..7ff1903990ab9 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVerifiedAccessEndpointRequest, ModifyVerifiedAccessEndpointResult } from "../models/models_6"; +import type { ModifyVerifiedAccessEndpointRequest, ModifyVerifiedAccessEndpointResult } from "../models/models_6"; import { ModifyVerifiedAccessEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts index 1c474fd5bb06a..2901e3b4ec268 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessEndpointPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyVerifiedAccessEndpointPolicyRequest, ModifyVerifiedAccessEndpointPolicyResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts index 13a626605a296..0dbeced7a1899 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVerifiedAccessGroupRequest, ModifyVerifiedAccessGroupResult } from "../models/models_6"; +import type { ModifyVerifiedAccessGroupRequest, ModifyVerifiedAccessGroupResult } from "../models/models_6"; import { ModifyVerifiedAccessGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts index 4affb8dad66ad..2eca72bf558cc 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVerifiedAccessGroupPolicyRequest, ModifyVerifiedAccessGroupPolicyResult } from "../models/models_6"; +import type { ModifyVerifiedAccessGroupPolicyRequest, ModifyVerifiedAccessGroupPolicyResult } from "../models/models_6"; import { ModifyVerifiedAccessGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts index 5d8e9a06a615f..1bd8e6a6b1c65 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVerifiedAccessInstanceRequest, ModifyVerifiedAccessInstanceResult } from "../models/models_6"; +import type { ModifyVerifiedAccessInstanceRequest, ModifyVerifiedAccessInstanceResult } from "../models/models_6"; import { ModifyVerifiedAccessInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts index 5b48570314ad5..8d4a47c100485 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyVerifiedAccessInstanceLoggingConfigurationRequest, ModifyVerifiedAccessInstanceLoggingConfigurationResult, } from "../models/models_6"; diff --git a/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts b/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts index 34608f0aff0ab..ffdafcf783ddd 100644 --- a/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVerifiedAccessTrustProviderCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVerifiedAccessTrustProviderRequest, ModifyVerifiedAccessTrustProviderResult } from "../models/models_7"; +import type { + ModifyVerifiedAccessTrustProviderRequest, + ModifyVerifiedAccessTrustProviderResult, +} from "../models/models_7"; import { ModifyVerifiedAccessTrustProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts index 55c061c8812b4..c55c4b9eaaaf7 100644 --- a/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVolumeAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVolumeAttributeRequest } from "../models/models_7"; +import type { ModifyVolumeAttributeRequest } from "../models/models_7"; import { ModifyVolumeAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVolumeCommand.ts b/clients/client-ec2/src/commands/ModifyVolumeCommand.ts index 08a566284c6e8..c8c9cdfe90f64 100644 --- a/clients/client-ec2/src/commands/ModifyVolumeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVolumeRequest, ModifyVolumeResult } from "../models/models_7"; +import type { ModifyVolumeRequest, ModifyVolumeResult } from "../models/models_7"; import { ModifyVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts b/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts index b185876c08d5e..f2c9dff3eb2ff 100644 --- a/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpcAttributeRequest } from "../models/models_7"; +import type { ModifyVpcAttributeRequest } from "../models/models_7"; import { ModifyVpcAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessExclusionCommand.ts b/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessExclusionCommand.ts index ccd3d4e48885a..ce8a2cffbef96 100644 --- a/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessExclusionCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessExclusionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyVpcBlockPublicAccessExclusionRequest, ModifyVpcBlockPublicAccessExclusionResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessOptionsCommand.ts index 1ae5fe90d8048..0ca678c3ce27b 100644 --- a/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcBlockPublicAccessOptionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpcBlockPublicAccessOptionsRequest, ModifyVpcBlockPublicAccessOptionsResult } from "../models/models_7"; +import type { + ModifyVpcBlockPublicAccessOptionsRequest, + ModifyVpcBlockPublicAccessOptionsResult, +} from "../models/models_7"; import { ModifyVpcBlockPublicAccessOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpcEncryptionControlCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEncryptionControlCommand.ts index 9b410263a303b..53f56420e35a9 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEncryptionControlCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEncryptionControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpcEncryptionControlRequest, ModifyVpcEncryptionControlResult } from "../models/models_7"; +import type { ModifyVpcEncryptionControlRequest, ModifyVpcEncryptionControlResult } from "../models/models_7"; import { ModifyVpcEncryptionControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts index d9109e4b85864..dfc2e6ab3d8a8 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpcEndpointRequest, ModifyVpcEndpointResult } from "../models/models_7"; +import type { ModifyVpcEndpointRequest, ModifyVpcEndpointResult } from "../models/models_7"; import { ModifyVpcEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts index 1ed23c8d88cf5..2a45ef0afb438 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointConnectionNotificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyVpcEndpointConnectionNotificationRequest, ModifyVpcEndpointConnectionNotificationResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts index 4ef20c7383396..14bbed7673636 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointServiceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyVpcEndpointServiceConfigurationRequest, ModifyVpcEndpointServiceConfigurationResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts index 645fe7e05b455..7d93417d5039b 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyVpcEndpointServicePayerResponsibilityRequest, ModifyVpcEndpointServicePayerResponsibilityResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts index 5b806393e827b..7ab52506daa55 100644 --- a/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcEndpointServicePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyVpcEndpointServicePermissionsRequest, ModifyVpcEndpointServicePermissionsResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts index 05c964ca8f79b..3f993d6121a0a 100644 --- a/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcPeeringConnectionOptionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpcPeeringConnectionOptionsRequest, ModifyVpcPeeringConnectionOptionsResult } from "../models/models_7"; +import type { + ModifyVpcPeeringConnectionOptionsRequest, + ModifyVpcPeeringConnectionOptionsResult, +} from "../models/models_7"; import { ModifyVpcPeeringConnectionOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts b/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts index 606bc05310d2f..6ed20b0024327 100644 --- a/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpcTenancyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpcTenancyRequest, ModifyVpcTenancyResult } from "../models/models_7"; +import type { ModifyVpcTenancyRequest, ModifyVpcTenancyResult } from "../models/models_7"; import { ModifyVpcTenancy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts b/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts index 6b35fa82ff939..9b6a6c664c9d4 100644 --- a/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpnConnectionRequest, ModifyVpnConnectionResult } from "../models/models_7"; +import type { ModifyVpnConnectionRequest, ModifyVpnConnectionResult } from "../models/models_7"; import { ModifyVpnConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts index 815ac0850df5b..6c176ce1dc1da 100644 --- a/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnConnectionOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpnConnectionOptionsRequest, ModifyVpnConnectionOptionsResult } from "../models/models_7"; +import type { ModifyVpnConnectionOptionsRequest, ModifyVpnConnectionOptionsResult } from "../models/models_7"; import { ModifyVpnConnectionOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts b/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts index b7624166cebae..a373f436751bf 100644 --- a/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnTunnelCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpnTunnelCertificateRequest, ModifyVpnTunnelCertificateResult } from "../models/models_7"; +import type { ModifyVpnTunnelCertificateRequest, ModifyVpnTunnelCertificateResult } from "../models/models_7"; import { ModifyVpnTunnelCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts b/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts index a21a52dc08142..dfa56a183c121 100644 --- a/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts +++ b/clients/client-ec2/src/commands/ModifyVpnTunnelOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyVpnTunnelOptionsRequest, ModifyVpnTunnelOptionsResult } from "../models/models_7"; +import type { ModifyVpnTunnelOptionsRequest, ModifyVpnTunnelOptionsResult } from "../models/models_7"; import { ModifyVpnTunnelOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/MonitorInstancesCommand.ts b/clients/client-ec2/src/commands/MonitorInstancesCommand.ts index 69d71723b74fa..9548b21bf9125 100644 --- a/clients/client-ec2/src/commands/MonitorInstancesCommand.ts +++ b/clients/client-ec2/src/commands/MonitorInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MonitorInstancesRequest, MonitorInstancesResult } from "../models/models_7"; +import type { MonitorInstancesRequest, MonitorInstancesResult } from "../models/models_7"; import { MonitorInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts b/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts index 839595c33156a..9782cae25912f 100644 --- a/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts +++ b/clients/client-ec2/src/commands/MoveAddressToVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MoveAddressToVpcRequest, MoveAddressToVpcResult } from "../models/models_7"; +import type { MoveAddressToVpcRequest, MoveAddressToVpcResult } from "../models/models_7"; import { MoveAddressToVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts b/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts index 898d34a35b7a6..1ce9635836662 100644 --- a/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts +++ b/clients/client-ec2/src/commands/MoveByoipCidrToIpamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MoveByoipCidrToIpamRequest, MoveByoipCidrToIpamResult } from "../models/models_7"; +import type { MoveByoipCidrToIpamRequest, MoveByoipCidrToIpamResult } from "../models/models_7"; import { MoveByoipCidrToIpam } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts b/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts index d5b6e2fb7a09c..c46b8158ea69b 100644 --- a/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts +++ b/clients/client-ec2/src/commands/MoveCapacityReservationInstancesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MoveCapacityReservationInstancesRequest, MoveCapacityReservationInstancesResult } from "../models/models_7"; +import type { + MoveCapacityReservationInstancesRequest, + MoveCapacityReservationInstancesResult, +} from "../models/models_7"; import { MoveCapacityReservationInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts b/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts index 4554b4a09993c..68d49148a0b21 100644 --- a/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionByoipCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProvisionByoipCidrRequest, ProvisionByoipCidrResult } from "../models/models_7"; +import type { ProvisionByoipCidrRequest, ProvisionByoipCidrResult } from "../models/models_7"; import { ProvisionByoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts b/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts index b069182e9cac2..f6ef93fd8d1f6 100644 --- a/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionIpamByoasnCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProvisionIpamByoasnRequest, ProvisionIpamByoasnResult } from "../models/models_7"; +import type { ProvisionIpamByoasnRequest, ProvisionIpamByoasnResult } from "../models/models_7"; import { ProvisionIpamByoasn } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts b/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts index 969f7ef3c3d36..6d5d0c7027c46 100644 --- a/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionIpamPoolCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProvisionIpamPoolCidrRequest, ProvisionIpamPoolCidrResult } from "../models/models_7"; +import type { ProvisionIpamPoolCidrRequest, ProvisionIpamPoolCidrResult } from "../models/models_7"; import { ProvisionIpamPoolCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts b/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts index 8a8b7776bdfad..1b6085f44c433 100644 --- a/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts +++ b/clients/client-ec2/src/commands/ProvisionPublicIpv4PoolCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProvisionPublicIpv4PoolCidrRequest, ProvisionPublicIpv4PoolCidrResult } from "../models/models_7"; +import type { ProvisionPublicIpv4PoolCidrRequest, ProvisionPublicIpv4PoolCidrResult } from "../models/models_7"; import { ProvisionPublicIpv4PoolCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts b/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts index 7461808ad2047..31e70530155eb 100644 --- a/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseCapacityBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PurchaseCapacityBlockRequest, PurchaseCapacityBlockResult } from "../models/models_7"; +import type { PurchaseCapacityBlockRequest, PurchaseCapacityBlockResult } from "../models/models_7"; import { PurchaseCapacityBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/PurchaseCapacityBlockExtensionCommand.ts b/clients/client-ec2/src/commands/PurchaseCapacityBlockExtensionCommand.ts index 11a62f49a5e99..65bc540479b3a 100644 --- a/clients/client-ec2/src/commands/PurchaseCapacityBlockExtensionCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseCapacityBlockExtensionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PurchaseCapacityBlockExtensionRequest, PurchaseCapacityBlockExtensionResult } from "../models/models_7"; +import type { PurchaseCapacityBlockExtensionRequest, PurchaseCapacityBlockExtensionResult } from "../models/models_7"; import { PurchaseCapacityBlockExtension } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts b/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts index 1f71b7e46d559..4399a72a69651 100644 --- a/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseHostReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PurchaseHostReservationRequest, PurchaseHostReservationResult } from "../models/models_7"; +import type { PurchaseHostReservationRequest, PurchaseHostReservationResult } from "../models/models_7"; import { PurchaseHostReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts b/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts index fdb886a7eab18..141e9a6f05239 100644 --- a/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseReservedInstancesOfferingCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PurchaseReservedInstancesOfferingRequest, PurchaseReservedInstancesOfferingResult } from "../models/models_7"; +import type { + PurchaseReservedInstancesOfferingRequest, + PurchaseReservedInstancesOfferingResult, +} from "../models/models_7"; import { PurchaseReservedInstancesOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts b/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts index 636be13a9ec32..78d6a511c953f 100644 --- a/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts +++ b/clients/client-ec2/src/commands/PurchaseScheduledInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PurchaseScheduledInstancesRequest, PurchaseScheduledInstancesResult } from "../models/models_7"; +import type { PurchaseScheduledInstancesRequest, PurchaseScheduledInstancesResult } from "../models/models_7"; import { PurchaseScheduledInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RebootInstancesCommand.ts b/clients/client-ec2/src/commands/RebootInstancesCommand.ts index 37ac0cc71850f..ef11090036c0b 100644 --- a/clients/client-ec2/src/commands/RebootInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RebootInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootInstancesRequest } from "../models/models_7"; +import type { RebootInstancesRequest } from "../models/models_7"; import { RebootInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RegisterImageCommand.ts b/clients/client-ec2/src/commands/RegisterImageCommand.ts index 182b0a76ce720..bcaf92ba62a72 100644 --- a/clients/client-ec2/src/commands/RegisterImageCommand.ts +++ b/clients/client-ec2/src/commands/RegisterImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterImageRequest, RegisterImageResult } from "../models/models_7"; +import type { RegisterImageRequest, RegisterImageResult } from "../models/models_7"; import { RegisterImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts b/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts index b03918849f8d5..51af7c7c3cf52 100644 --- a/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts +++ b/clients/client-ec2/src/commands/RegisterInstanceEventNotificationAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RegisterInstanceEventNotificationAttributesRequest, RegisterInstanceEventNotificationAttributesResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts index 18b3765acc32d..6fd9a38e5e98f 100644 --- a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts +++ b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RegisterTransitGatewayMulticastGroupMembersRequest, RegisterTransitGatewayMulticastGroupMembersResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts index 3c6428c5a6af6..42acd1ae33e2e 100644 --- a/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts +++ b/clients/client-ec2/src/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RegisterTransitGatewayMulticastGroupSourcesRequest, RegisterTransitGatewayMulticastGroupSourcesResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/RejectCapacityReservationBillingOwnershipCommand.ts b/clients/client-ec2/src/commands/RejectCapacityReservationBillingOwnershipCommand.ts index 196c45d519fbd..ecc4a20215df9 100644 --- a/clients/client-ec2/src/commands/RejectCapacityReservationBillingOwnershipCommand.ts +++ b/clients/client-ec2/src/commands/RejectCapacityReservationBillingOwnershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RejectCapacityReservationBillingOwnershipRequest, RejectCapacityReservationBillingOwnershipResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts b/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts index 1c704945de658..20eff566f9213 100644 --- a/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts +++ b/clients/client-ec2/src/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RejectTransitGatewayMulticastDomainAssociationsRequest, RejectTransitGatewayMulticastDomainAssociationsResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts b/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts index 6acc0541a0ab4..ff7e84d566d65 100644 --- a/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/RejectTransitGatewayPeeringAttachmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RejectTransitGatewayPeeringAttachmentRequest, RejectTransitGatewayPeeringAttachmentResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts b/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts index 8efd9f146da61..3b601e244f63e 100644 --- a/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts +++ b/clients/client-ec2/src/commands/RejectTransitGatewayVpcAttachmentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectTransitGatewayVpcAttachmentRequest, RejectTransitGatewayVpcAttachmentResult } from "../models/models_7"; +import type { + RejectTransitGatewayVpcAttachmentRequest, + RejectTransitGatewayVpcAttachmentResult, +} from "../models/models_7"; import { RejectTransitGatewayVpcAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts b/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts index 1432afb1f7ddb..1e97f53cc27e6 100644 --- a/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/RejectVpcEndpointConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectVpcEndpointConnectionsRequest, RejectVpcEndpointConnectionsResult } from "../models/models_7"; +import type { RejectVpcEndpointConnectionsRequest, RejectVpcEndpointConnectionsResult } from "../models/models_7"; import { RejectVpcEndpointConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts b/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts index 7b3668c2ae113..55994ccf63f46 100644 --- a/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts +++ b/clients/client-ec2/src/commands/RejectVpcPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectVpcPeeringConnectionRequest, RejectVpcPeeringConnectionResult } from "../models/models_7"; +import type { RejectVpcPeeringConnectionRequest, RejectVpcPeeringConnectionResult } from "../models/models_7"; import { RejectVpcPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReleaseAddressCommand.ts b/clients/client-ec2/src/commands/ReleaseAddressCommand.ts index 4fe65fc556815..dd5726d7f0d48 100644 --- a/clients/client-ec2/src/commands/ReleaseAddressCommand.ts +++ b/clients/client-ec2/src/commands/ReleaseAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReleaseAddressRequest } from "../models/models_7"; +import type { ReleaseAddressRequest } from "../models/models_7"; import { ReleaseAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReleaseHostsCommand.ts b/clients/client-ec2/src/commands/ReleaseHostsCommand.ts index 08d7263fa2b75..8d386485a1a27 100644 --- a/clients/client-ec2/src/commands/ReleaseHostsCommand.ts +++ b/clients/client-ec2/src/commands/ReleaseHostsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReleaseHostsRequest, ReleaseHostsResult } from "../models/models_7"; +import type { ReleaseHostsRequest, ReleaseHostsResult } from "../models/models_7"; import { ReleaseHosts } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts b/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts index ae6238826b235..51692b3d5e3d0 100644 --- a/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts +++ b/clients/client-ec2/src/commands/ReleaseIpamPoolAllocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReleaseIpamPoolAllocationRequest, ReleaseIpamPoolAllocationResult } from "../models/models_7"; +import type { ReleaseIpamPoolAllocationRequest, ReleaseIpamPoolAllocationResult } from "../models/models_7"; import { ReleaseIpamPoolAllocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts b/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts index 1a72c76cfceb1..8480df893aa6b 100644 --- a/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceIamInstanceProfileAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ReplaceIamInstanceProfileAssociationRequest, ReplaceIamInstanceProfileAssociationResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.ts b/clients/client-ec2/src/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.ts index 121945fd14982..e299a5d935d91 100644 --- a/clients/client-ec2/src/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ReplaceImageCriteriaInAllowedImagesSettingsRequest, ReplaceImageCriteriaInAllowedImagesSettingsResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts b/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts index a4d53ff51e63f..73892404b9128 100644 --- a/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceNetworkAclAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplaceNetworkAclAssociationRequest, ReplaceNetworkAclAssociationResult } from "../models/models_7"; +import type { ReplaceNetworkAclAssociationRequest, ReplaceNetworkAclAssociationResult } from "../models/models_7"; import { ReplaceNetworkAclAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts b/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts index 0c509ea60f998..9671ef9da1c4b 100644 --- a/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceNetworkAclEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplaceNetworkAclEntryRequest } from "../models/models_7"; +import type { ReplaceNetworkAclEntryRequest } from "../models/models_7"; import { ReplaceNetworkAclEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReplaceRouteCommand.ts b/clients/client-ec2/src/commands/ReplaceRouteCommand.ts index d08fdc85bd766..cdbedacbc2da5 100644 --- a/clients/client-ec2/src/commands/ReplaceRouteCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplaceRouteRequest } from "../models/models_7"; +import type { ReplaceRouteRequest } from "../models/models_7"; import { ReplaceRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts b/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts index 542c32ff23364..2ac277eaaf095 100644 --- a/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceRouteTableAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplaceRouteTableAssociationRequest, ReplaceRouteTableAssociationResult } from "../models/models_7"; +import type { ReplaceRouteTableAssociationRequest, ReplaceRouteTableAssociationResult } from "../models/models_7"; import { ReplaceRouteTableAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts b/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts index 6493e3919ddcb..5af22136e4221 100644 --- a/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceTransitGatewayRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplaceTransitGatewayRouteRequest, ReplaceTransitGatewayRouteResult } from "../models/models_7"; +import type { ReplaceTransitGatewayRouteRequest, ReplaceTransitGatewayRouteResult } from "../models/models_7"; import { ReplaceTransitGatewayRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts b/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts index 8f20d71b4ea4d..e3f7af8ce0ad3 100644 --- a/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts +++ b/clients/client-ec2/src/commands/ReplaceVpnTunnelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplaceVpnTunnelRequest, ReplaceVpnTunnelResult } from "../models/models_7"; +import type { ReplaceVpnTunnelRequest, ReplaceVpnTunnelResult } from "../models/models_7"; import { ReplaceVpnTunnel } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts b/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts index 0515406e9efcf..4e9fb7eda0401 100644 --- a/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts +++ b/clients/client-ec2/src/commands/ReportInstanceStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReportInstanceStatusRequest } from "../models/models_7"; +import type { ReportInstanceStatusRequest } from "../models/models_7"; import { ReportInstanceStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts b/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts index 93aa19a246204..c6bf5f3e1e645 100644 --- a/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts +++ b/clients/client-ec2/src/commands/RequestSpotFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RequestSpotFleetRequest, RequestSpotFleetResponse } from "../models/models_7"; +import type { RequestSpotFleetRequest, RequestSpotFleetResponse } from "../models/models_7"; import { RequestSpotFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts b/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts index 1c2eb2ebf6d6e..63e5b77d53825 100644 --- a/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RequestSpotInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RequestSpotInstancesRequest, RequestSpotInstancesResult } from "../models/models_7"; +import type { RequestSpotInstancesRequest, RequestSpotInstancesResult } from "../models/models_7"; import { RequestSpotInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts b/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts index 6de23e4d0bf2a..192a20002e060 100644 --- a/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetAddressAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetAddressAttributeRequest, ResetAddressAttributeResult } from "../models/models_7"; +import type { ResetAddressAttributeRequest, ResetAddressAttributeResult } from "../models/models_7"; import { ResetAddressAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts b/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts index 4d1639de0c450..4ff8631e3daee 100644 --- a/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts +++ b/clients/client-ec2/src/commands/ResetEbsDefaultKmsKeyIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetEbsDefaultKmsKeyIdRequest, ResetEbsDefaultKmsKeyIdResult } from "../models/models_7"; +import type { ResetEbsDefaultKmsKeyIdRequest, ResetEbsDefaultKmsKeyIdResult } from "../models/models_7"; import { ResetEbsDefaultKmsKeyId } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts b/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts index 6a17561473556..1728161d0ca4d 100644 --- a/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetFpgaImageAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetFpgaImageAttributeRequest, ResetFpgaImageAttributeResult } from "../models/models_7"; +import type { ResetFpgaImageAttributeRequest, ResetFpgaImageAttributeResult } from "../models/models_7"; import { ResetFpgaImageAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts b/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts index d05fc2aaf5837..8601b641ef8c2 100644 --- a/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetImageAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetImageAttributeRequest } from "../models/models_7"; +import type { ResetImageAttributeRequest } from "../models/models_7"; import { ResetImageAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts b/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts index 646df969348bb..78f0c431987ba 100644 --- a/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetInstanceAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetInstanceAttributeRequest } from "../models/models_7"; +import type { ResetInstanceAttributeRequest } from "../models/models_7"; import { ResetInstanceAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts b/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts index 5ed7581503321..45664cf615c0c 100644 --- a/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetNetworkInterfaceAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetNetworkInterfaceAttributeRequest } from "../models/models_7"; +import type { ResetNetworkInterfaceAttributeRequest } from "../models/models_7"; import { ResetNetworkInterfaceAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts b/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts index 177cd6c4ce00a..09542f6fd16d9 100644 --- a/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts +++ b/clients/client-ec2/src/commands/ResetSnapshotAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetSnapshotAttributeRequest } from "../models/models_7"; +import type { ResetSnapshotAttributeRequest } from "../models/models_7"; import { ResetSnapshotAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts b/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts index 1857fe9fd9b3c..131ad7a5248dd 100644 --- a/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts +++ b/clients/client-ec2/src/commands/RestoreAddressToClassicCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreAddressToClassicRequest, RestoreAddressToClassicResult } from "../models/models_7"; +import type { RestoreAddressToClassicRequest, RestoreAddressToClassicResult } from "../models/models_7"; import { RestoreAddressToClassic } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts b/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts index 2d74a4059f955..4a3c901e787c5 100644 --- a/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/RestoreImageFromRecycleBinCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreImageFromRecycleBinRequest, RestoreImageFromRecycleBinResult } from "../models/models_7"; +import type { RestoreImageFromRecycleBinRequest, RestoreImageFromRecycleBinResult } from "../models/models_7"; import { RestoreImageFromRecycleBin } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts b/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts index edd7031802681..3a8e12640eb10 100644 --- a/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts +++ b/clients/client-ec2/src/commands/RestoreManagedPrefixListVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreManagedPrefixListVersionRequest, RestoreManagedPrefixListVersionResult } from "../models/models_7"; +import type { RestoreManagedPrefixListVersionRequest, RestoreManagedPrefixListVersionResult } from "../models/models_7"; import { RestoreManagedPrefixListVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts b/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts index 3a14316c983c8..771935c5eef22 100644 --- a/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/RestoreSnapshotFromRecycleBinCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreSnapshotFromRecycleBinRequest, RestoreSnapshotFromRecycleBinResult } from "../models/models_7"; +import type { RestoreSnapshotFromRecycleBinRequest, RestoreSnapshotFromRecycleBinResult } from "../models/models_7"; import { RestoreSnapshotFromRecycleBin } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts b/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts index 8eff1652acfc3..a86d08e30031c 100644 --- a/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts +++ b/clients/client-ec2/src/commands/RestoreSnapshotTierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreSnapshotTierRequest, RestoreSnapshotTierResult } from "../models/models_7"; +import type { RestoreSnapshotTierRequest, RestoreSnapshotTierResult } from "../models/models_7"; import { RestoreSnapshotTier } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RestoreVolumeFromRecycleBinCommand.ts b/clients/client-ec2/src/commands/RestoreVolumeFromRecycleBinCommand.ts index 8e222e3f63978..16a04b2cdbf04 100644 --- a/clients/client-ec2/src/commands/RestoreVolumeFromRecycleBinCommand.ts +++ b/clients/client-ec2/src/commands/RestoreVolumeFromRecycleBinCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreVolumeFromRecycleBinRequest, RestoreVolumeFromRecycleBinResult } from "../models/models_7"; +import type { RestoreVolumeFromRecycleBinRequest, RestoreVolumeFromRecycleBinResult } from "../models/models_7"; import { RestoreVolumeFromRecycleBin } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts b/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts index 09ec4807412cf..c28fc7904778c 100644 --- a/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts +++ b/clients/client-ec2/src/commands/RevokeClientVpnIngressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeClientVpnIngressRequest, RevokeClientVpnIngressResult } from "../models/models_7"; +import type { RevokeClientVpnIngressRequest, RevokeClientVpnIngressResult } from "../models/models_7"; import { RevokeClientVpnIngress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts b/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts index 7ec0bd5d88ecb..80aa579e69c8e 100644 --- a/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts +++ b/clients/client-ec2/src/commands/RevokeSecurityGroupEgressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeSecurityGroupEgressRequest, RevokeSecurityGroupEgressResult } from "../models/models_7"; +import type { RevokeSecurityGroupEgressRequest, RevokeSecurityGroupEgressResult } from "../models/models_7"; import { RevokeSecurityGroupEgress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts b/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts index 2875e9f90423e..4b25528f7de93 100644 --- a/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts +++ b/clients/client-ec2/src/commands/RevokeSecurityGroupIngressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeSecurityGroupIngressRequest, RevokeSecurityGroupIngressResult } from "../models/models_7"; +import type { RevokeSecurityGroupIngressRequest, RevokeSecurityGroupIngressResult } from "../models/models_7"; import { RevokeSecurityGroupIngress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RunInstancesCommand.ts b/clients/client-ec2/src/commands/RunInstancesCommand.ts index 32cb44d03cdb0..f33eb03fcb3e3 100644 --- a/clients/client-ec2/src/commands/RunInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RunInstancesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Reservation } from "../models/models_4"; -import { RunInstancesRequest } from "../models/models_7"; +import type { Reservation } from "../models/models_4"; +import type { RunInstancesRequest } from "../models/models_7"; import { RunInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts b/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts index 7145395eb526a..d70a8cd02f0db 100644 --- a/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts +++ b/clients/client-ec2/src/commands/RunScheduledInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RunScheduledInstancesRequest, RunScheduledInstancesResult } from "../models/models_7"; +import type { RunScheduledInstancesRequest, RunScheduledInstancesResult } from "../models/models_7"; import { RunScheduledInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts b/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts index a248032325f27..210a3b204671b 100644 --- a/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts +++ b/clients/client-ec2/src/commands/SearchLocalGatewayRoutesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchLocalGatewayRoutesRequest, SearchLocalGatewayRoutesResult } from "../models/models_7"; +import type { SearchLocalGatewayRoutesRequest, SearchLocalGatewayRoutesResult } from "../models/models_7"; import { SearchLocalGatewayRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts b/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts index 4080213fe6691..6cbdb291d1906 100644 --- a/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts +++ b/clients/client-ec2/src/commands/SearchTransitGatewayMulticastGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { SearchTransitGatewayMulticastGroupsRequest, SearchTransitGatewayMulticastGroupsResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts b/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts index 9cdb9663cba29..0c4bbad7f10ab 100644 --- a/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts +++ b/clients/client-ec2/src/commands/SearchTransitGatewayRoutesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchTransitGatewayRoutesRequest, SearchTransitGatewayRoutesResult } from "../models/models_7"; +import type { SearchTransitGatewayRoutesRequest, SearchTransitGatewayRoutesResult } from "../models/models_7"; import { SearchTransitGatewayRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts b/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts index 92a59ec0fd9ca..b2b82bca926f2 100644 --- a/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts +++ b/clients/client-ec2/src/commands/SendDiagnosticInterruptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendDiagnosticInterruptRequest } from "../models/models_7"; +import type { SendDiagnosticInterruptRequest } from "../models/models_7"; import { SendDiagnosticInterrupt } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/StartDeclarativePoliciesReportCommand.ts b/clients/client-ec2/src/commands/StartDeclarativePoliciesReportCommand.ts index 04aec4348d60d..5892b57873540 100644 --- a/clients/client-ec2/src/commands/StartDeclarativePoliciesReportCommand.ts +++ b/clients/client-ec2/src/commands/StartDeclarativePoliciesReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDeclarativePoliciesReportRequest, StartDeclarativePoliciesReportResult } from "../models/models_7"; +import type { StartDeclarativePoliciesReportRequest, StartDeclarativePoliciesReportResult } from "../models/models_7"; import { StartDeclarativePoliciesReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/StartInstancesCommand.ts b/clients/client-ec2/src/commands/StartInstancesCommand.ts index 4afafa4393666..39062df898123 100644 --- a/clients/client-ec2/src/commands/StartInstancesCommand.ts +++ b/clients/client-ec2/src/commands/StartInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartInstancesRequest, StartInstancesResult } from "../models/models_7"; +import type { StartInstancesRequest, StartInstancesResult } from "../models/models_7"; import { StartInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts b/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts index d326429eb8efd..7826e8307744e 100644 --- a/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/StartNetworkInsightsAccessScopeAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartNetworkInsightsAccessScopeAnalysisRequest, StartNetworkInsightsAccessScopeAnalysisResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts b/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts index 7a37c095ee066..a0311c36c4497 100644 --- a/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts +++ b/clients/client-ec2/src/commands/StartNetworkInsightsAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartNetworkInsightsAnalysisRequest, StartNetworkInsightsAnalysisResult } from "../models/models_7"; +import type { StartNetworkInsightsAnalysisRequest, StartNetworkInsightsAnalysisResult } from "../models/models_7"; import { StartNetworkInsightsAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts b/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts index c97c4d40bb6f0..9df514fe293d6 100644 --- a/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts +++ b/clients/client-ec2/src/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartVpcEndpointServicePrivateDnsVerificationRequest, StartVpcEndpointServicePrivateDnsVerificationResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/StopInstancesCommand.ts b/clients/client-ec2/src/commands/StopInstancesCommand.ts index bf3a3b370d1f9..46e16273c0057 100644 --- a/clients/client-ec2/src/commands/StopInstancesCommand.ts +++ b/clients/client-ec2/src/commands/StopInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopInstancesRequest, StopInstancesResult } from "../models/models_7"; +import type { StopInstancesRequest, StopInstancesResult } from "../models/models_7"; import { StopInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts b/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts index 9cd5da6582c11..597d800435a88 100644 --- a/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts +++ b/clients/client-ec2/src/commands/TerminateClientVpnConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateClientVpnConnectionsRequest, TerminateClientVpnConnectionsResult } from "../models/models_7"; +import type { TerminateClientVpnConnectionsRequest, TerminateClientVpnConnectionsResult } from "../models/models_7"; import { TerminateClientVpnConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/TerminateInstancesCommand.ts b/clients/client-ec2/src/commands/TerminateInstancesCommand.ts index 2a21a71173e5c..5f63fd8506e64 100644 --- a/clients/client-ec2/src/commands/TerminateInstancesCommand.ts +++ b/clients/client-ec2/src/commands/TerminateInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateInstancesRequest, TerminateInstancesResult } from "../models/models_7"; +import type { TerminateInstancesRequest, TerminateInstancesResult } from "../models/models_7"; import { TerminateInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts b/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts index 3bc74e3dd203a..e82703e63a6af 100644 --- a/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts +++ b/clients/client-ec2/src/commands/UnassignIpv6AddressesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnassignIpv6AddressesRequest, UnassignIpv6AddressesResult } from "../models/models_7"; +import type { UnassignIpv6AddressesRequest, UnassignIpv6AddressesResult } from "../models/models_7"; import { UnassignIpv6Addresses } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts b/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts index 65f434332909f..e90b178bb9659 100644 --- a/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts +++ b/clients/client-ec2/src/commands/UnassignPrivateIpAddressesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnassignPrivateIpAddressesRequest } from "../models/models_7"; +import type { UnassignPrivateIpAddressesRequest } from "../models/models_7"; import { UnassignPrivateIpAddresses } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts b/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts index d475e0e3ee035..7783eba85b2c4 100644 --- a/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts +++ b/clients/client-ec2/src/commands/UnassignPrivateNatGatewayAddressCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnassignPrivateNatGatewayAddressRequest, UnassignPrivateNatGatewayAddressResult } from "../models/models_7"; +import type { + UnassignPrivateNatGatewayAddressRequest, + UnassignPrivateNatGatewayAddressResult, +} from "../models/models_7"; import { UnassignPrivateNatGatewayAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts b/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts index a4fd2093cd0e2..4201f46f2ba7e 100644 --- a/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts +++ b/clients/client-ec2/src/commands/UnlockSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnlockSnapshotRequest, UnlockSnapshotResult } from "../models/models_7"; +import type { UnlockSnapshotRequest, UnlockSnapshotResult } from "../models/models_7"; import { UnlockSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts b/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts index 9ac28e64f73b8..122f351a51a99 100644 --- a/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts +++ b/clients/client-ec2/src/commands/UnmonitorInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnmonitorInstancesRequest, UnmonitorInstancesResult } from "../models/models_7"; +import type { UnmonitorInstancesRequest, UnmonitorInstancesResult } from "../models/models_7"; import { UnmonitorInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/commands/UpdateCapacityManagerOrganizationsAccessCommand.ts b/clients/client-ec2/src/commands/UpdateCapacityManagerOrganizationsAccessCommand.ts index ed6a3e8ad2012..c87ebf28c398e 100644 --- a/clients/client-ec2/src/commands/UpdateCapacityManagerOrganizationsAccessCommand.ts +++ b/clients/client-ec2/src/commands/UpdateCapacityManagerOrganizationsAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateCapacityManagerOrganizationsAccessRequest, UpdateCapacityManagerOrganizationsAccessResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/UpdateInterruptibleCapacityReservationAllocationCommand.ts b/clients/client-ec2/src/commands/UpdateInterruptibleCapacityReservationAllocationCommand.ts index d4ded5f922581..f18baf4041172 100644 --- a/clients/client-ec2/src/commands/UpdateInterruptibleCapacityReservationAllocationCommand.ts +++ b/clients/client-ec2/src/commands/UpdateInterruptibleCapacityReservationAllocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateInterruptibleCapacityReservationAllocationRequest, UpdateInterruptibleCapacityReservationAllocationResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts index e2f37fb0b8894..6db054d0bb37d 100644 --- a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts +++ b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateSecurityGroupRuleDescriptionsEgressRequest, UpdateSecurityGroupRuleDescriptionsEgressResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts index d0348440a4b89..57b103ce95ad8 100644 --- a/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts +++ b/clients/client-ec2/src/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateSecurityGroupRuleDescriptionsIngressRequest, UpdateSecurityGroupRuleDescriptionsIngressResult, } from "../models/models_7"; diff --git a/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts b/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts index 985b14b0fddda..c81487d0ce043 100644 --- a/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts +++ b/clients/client-ec2/src/commands/WithdrawByoipCidrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; +import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { WithdrawByoipCidrRequest, WithdrawByoipCidrResult } from "../models/models_7"; +import type { WithdrawByoipCidrRequest, WithdrawByoipCidrResult } from "../models/models_7"; import { WithdrawByoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-ec2/src/endpoint/EndpointParameters.ts b/clients/client-ec2/src/endpoint/EndpointParameters.ts index d8ab4d32112ee..1beaa09aeab17 100644 --- a/clients/client-ec2/src/endpoint/EndpointParameters.ts +++ b/clients/client-ec2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ec2/src/endpoint/endpointResolver.ts b/clients/client-ec2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ec2/src/endpoint/endpointResolver.ts +++ b/clients/client-ec2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ec2/src/extensionConfiguration.ts b/clients/client-ec2/src/extensionConfiguration.ts index 6a604672345d7..5296a16dd196c 100644 --- a/clients/client-ec2/src/extensionConfiguration.ts +++ b/clients/client-ec2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ec2/src/models/EC2ServiceException.ts b/clients/client-ec2/src/models/EC2ServiceException.ts index 80e53c0c7b2fa..71e9850d302b0 100644 --- a/clients/client-ec2/src/models/EC2ServiceException.ts +++ b/clients/client-ec2/src/models/EC2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ec2/src/pagination/DescribeAddressTransfersPaginator.ts b/clients/client-ec2/src/pagination/DescribeAddressTransfersPaginator.ts index 4637a49c5043a..2b02de27c2845 100644 --- a/clients/client-ec2/src/pagination/DescribeAddressTransfersPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeAddressTransfersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAddressTransfersCommand, diff --git a/clients/client-ec2/src/pagination/DescribeAddressesAttributePaginator.ts b/clients/client-ec2/src/pagination/DescribeAddressesAttributePaginator.ts index 99f1b039d13a2..79f5fa3b6feae 100644 --- a/clients/client-ec2/src/pagination/DescribeAddressesAttributePaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeAddressesAttributePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAddressesAttributeCommand, diff --git a/clients/client-ec2/src/pagination/DescribeAwsNetworkPerformanceMetricSubscriptionsPaginator.ts b/clients/client-ec2/src/pagination/DescribeAwsNetworkPerformanceMetricSubscriptionsPaginator.ts index 00f8417aac783..8bcdcc66bc0af 100644 --- a/clients/client-ec2/src/pagination/DescribeAwsNetworkPerformanceMetricSubscriptionsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeAwsNetworkPerformanceMetricSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAwsNetworkPerformanceMetricSubscriptionsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeByoipCidrsPaginator.ts b/clients/client-ec2/src/pagination/DescribeByoipCidrsPaginator.ts index 1361b14e8cc43..821fc93b778c8 100644 --- a/clients/client-ec2/src/pagination/DescribeByoipCidrsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeByoipCidrsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeByoipCidrsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCapacityBlockExtensionHistoryPaginator.ts b/clients/client-ec2/src/pagination/DescribeCapacityBlockExtensionHistoryPaginator.ts index 18c2dbe4aaecf..263565450bf08 100644 --- a/clients/client-ec2/src/pagination/DescribeCapacityBlockExtensionHistoryPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCapacityBlockExtensionHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCapacityBlockExtensionHistoryCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCapacityBlockExtensionOfferingsPaginator.ts b/clients/client-ec2/src/pagination/DescribeCapacityBlockExtensionOfferingsPaginator.ts index 628fcc4e64c4b..7362814a88a38 100644 --- a/clients/client-ec2/src/pagination/DescribeCapacityBlockExtensionOfferingsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCapacityBlockExtensionOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCapacityBlockExtensionOfferingsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCapacityBlockOfferingsPaginator.ts b/clients/client-ec2/src/pagination/DescribeCapacityBlockOfferingsPaginator.ts index 0ecb3fa831563..545ad9977af08 100644 --- a/clients/client-ec2/src/pagination/DescribeCapacityBlockOfferingsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCapacityBlockOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCapacityBlockOfferingsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCapacityBlockStatusPaginator.ts b/clients/client-ec2/src/pagination/DescribeCapacityBlockStatusPaginator.ts index 4ebe50a2b06f0..5b540412d0288 100644 --- a/clients/client-ec2/src/pagination/DescribeCapacityBlockStatusPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCapacityBlockStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCapacityBlockStatusCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCapacityBlocksPaginator.ts b/clients/client-ec2/src/pagination/DescribeCapacityBlocksPaginator.ts index 423b076b32145..e92bd40cf73e4 100644 --- a/clients/client-ec2/src/pagination/DescribeCapacityBlocksPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCapacityBlocksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCapacityBlocksCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCapacityManagerDataExportsPaginator.ts b/clients/client-ec2/src/pagination/DescribeCapacityManagerDataExportsPaginator.ts index 13e4a645f1dd5..0f332b26922c0 100644 --- a/clients/client-ec2/src/pagination/DescribeCapacityManagerDataExportsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCapacityManagerDataExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCapacityManagerDataExportsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCapacityReservationBillingRequestsPaginator.ts b/clients/client-ec2/src/pagination/DescribeCapacityReservationBillingRequestsPaginator.ts index 74e46f9654f2d..82b7f18b0e6d5 100644 --- a/clients/client-ec2/src/pagination/DescribeCapacityReservationBillingRequestsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCapacityReservationBillingRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCapacityReservationBillingRequestsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCapacityReservationFleetsPaginator.ts b/clients/client-ec2/src/pagination/DescribeCapacityReservationFleetsPaginator.ts index 6a7e32a7d07b3..bc3c81ba67b09 100644 --- a/clients/client-ec2/src/pagination/DescribeCapacityReservationFleetsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCapacityReservationFleetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCapacityReservationFleetsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCapacityReservationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeCapacityReservationsPaginator.ts index 6b02e8ddc05cc..2e417cafc6f63 100644 --- a/clients/client-ec2/src/pagination/DescribeCapacityReservationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCapacityReservationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCapacityReservationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCarrierGatewaysPaginator.ts b/clients/client-ec2/src/pagination/DescribeCarrierGatewaysPaginator.ts index efae04e9d2f04..07ec9f56ee1b8 100644 --- a/clients/client-ec2/src/pagination/DescribeCarrierGatewaysPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCarrierGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCarrierGatewaysCommand, diff --git a/clients/client-ec2/src/pagination/DescribeClassicLinkInstancesPaginator.ts b/clients/client-ec2/src/pagination/DescribeClassicLinkInstancesPaginator.ts index f24a20d9f6b60..8c5be7295cb7b 100644 --- a/clients/client-ec2/src/pagination/DescribeClassicLinkInstancesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeClassicLinkInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClassicLinkInstancesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeClientVpnAuthorizationRulesPaginator.ts b/clients/client-ec2/src/pagination/DescribeClientVpnAuthorizationRulesPaginator.ts index 757c0518287c4..b74424356eb01 100644 --- a/clients/client-ec2/src/pagination/DescribeClientVpnAuthorizationRulesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeClientVpnAuthorizationRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClientVpnAuthorizationRulesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeClientVpnConnectionsPaginator.ts b/clients/client-ec2/src/pagination/DescribeClientVpnConnectionsPaginator.ts index a2d718173bcdf..a8fb2fdd06dd8 100644 --- a/clients/client-ec2/src/pagination/DescribeClientVpnConnectionsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeClientVpnConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClientVpnConnectionsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeClientVpnEndpointsPaginator.ts b/clients/client-ec2/src/pagination/DescribeClientVpnEndpointsPaginator.ts index 8f83e8ec48aaf..c6b38fec741c2 100644 --- a/clients/client-ec2/src/pagination/DescribeClientVpnEndpointsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeClientVpnEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClientVpnEndpointsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeClientVpnRoutesPaginator.ts b/clients/client-ec2/src/pagination/DescribeClientVpnRoutesPaginator.ts index 61d49e64eec87..5f276be190d00 100644 --- a/clients/client-ec2/src/pagination/DescribeClientVpnRoutesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeClientVpnRoutesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClientVpnRoutesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeClientVpnTargetNetworksPaginator.ts b/clients/client-ec2/src/pagination/DescribeClientVpnTargetNetworksPaginator.ts index 9805ed38ceaf3..a6c5d3513bfc4 100644 --- a/clients/client-ec2/src/pagination/DescribeClientVpnTargetNetworksPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeClientVpnTargetNetworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClientVpnTargetNetworksCommand, diff --git a/clients/client-ec2/src/pagination/DescribeCoipPoolsPaginator.ts b/clients/client-ec2/src/pagination/DescribeCoipPoolsPaginator.ts index cb88a16ccbcd2..2228d073f0590 100644 --- a/clients/client-ec2/src/pagination/DescribeCoipPoolsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeCoipPoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCoipPoolsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeDhcpOptionsPaginator.ts b/clients/client-ec2/src/pagination/DescribeDhcpOptionsPaginator.ts index 249dd74a80044..0e6d1fb6a021b 100644 --- a/clients/client-ec2/src/pagination/DescribeDhcpOptionsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeDhcpOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDhcpOptionsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeEgressOnlyInternetGatewaysPaginator.ts b/clients/client-ec2/src/pagination/DescribeEgressOnlyInternetGatewaysPaginator.ts index 36bab5a2c95ad..a2767792829d6 100644 --- a/clients/client-ec2/src/pagination/DescribeEgressOnlyInternetGatewaysPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeEgressOnlyInternetGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEgressOnlyInternetGatewaysCommand, diff --git a/clients/client-ec2/src/pagination/DescribeExportImageTasksPaginator.ts b/clients/client-ec2/src/pagination/DescribeExportImageTasksPaginator.ts index 2c246709392cd..00b87dcbdb145 100644 --- a/clients/client-ec2/src/pagination/DescribeExportImageTasksPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeExportImageTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeExportImageTasksCommand, diff --git a/clients/client-ec2/src/pagination/DescribeFastLaunchImagesPaginator.ts b/clients/client-ec2/src/pagination/DescribeFastLaunchImagesPaginator.ts index 12c60cee962ed..146ca0cb5c63f 100644 --- a/clients/client-ec2/src/pagination/DescribeFastLaunchImagesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeFastLaunchImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFastLaunchImagesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeFastSnapshotRestoresPaginator.ts b/clients/client-ec2/src/pagination/DescribeFastSnapshotRestoresPaginator.ts index fa2e2d441a6fd..2c86e1ea600d6 100644 --- a/clients/client-ec2/src/pagination/DescribeFastSnapshotRestoresPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeFastSnapshotRestoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFastSnapshotRestoresCommand, diff --git a/clients/client-ec2/src/pagination/DescribeFleetsPaginator.ts b/clients/client-ec2/src/pagination/DescribeFleetsPaginator.ts index 2eda50f6c3e38..397b1992bb264 100644 --- a/clients/client-ec2/src/pagination/DescribeFleetsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeFleetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeFlowLogsPaginator.ts b/clients/client-ec2/src/pagination/DescribeFlowLogsPaginator.ts index a567b161f2d45..8622ea05e848f 100644 --- a/clients/client-ec2/src/pagination/DescribeFlowLogsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeFlowLogsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFlowLogsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeFpgaImagesPaginator.ts b/clients/client-ec2/src/pagination/DescribeFpgaImagesPaginator.ts index 06abc00fcc8af..8490419ec0464 100644 --- a/clients/client-ec2/src/pagination/DescribeFpgaImagesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeFpgaImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFpgaImagesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeHostReservationOfferingsPaginator.ts b/clients/client-ec2/src/pagination/DescribeHostReservationOfferingsPaginator.ts index ac987ebff5013..f9c59c0f02baa 100644 --- a/clients/client-ec2/src/pagination/DescribeHostReservationOfferingsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeHostReservationOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeHostReservationOfferingsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeHostReservationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeHostReservationsPaginator.ts index 4f782a774610b..7f008d0a79975 100644 --- a/clients/client-ec2/src/pagination/DescribeHostReservationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeHostReservationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeHostReservationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeHostsPaginator.ts b/clients/client-ec2/src/pagination/DescribeHostsPaginator.ts index 7042bdf0e7c4c..5f309b6ac71b7 100644 --- a/clients/client-ec2/src/pagination/DescribeHostsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeHostsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeHostsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeIamInstanceProfileAssociationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeIamInstanceProfileAssociationsPaginator.ts index 479dd4f5955a1..d739fd1f76587 100644 --- a/clients/client-ec2/src/pagination/DescribeIamInstanceProfileAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeIamInstanceProfileAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIamInstanceProfileAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeImageReferencesPaginator.ts b/clients/client-ec2/src/pagination/DescribeImageReferencesPaginator.ts index 1509768a6720b..0a210c297b11b 100644 --- a/clients/client-ec2/src/pagination/DescribeImageReferencesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeImageReferencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImageReferencesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeImageUsageReportEntriesPaginator.ts b/clients/client-ec2/src/pagination/DescribeImageUsageReportEntriesPaginator.ts index 96a2ca34a84b3..7775570182472 100644 --- a/clients/client-ec2/src/pagination/DescribeImageUsageReportEntriesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeImageUsageReportEntriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImageUsageReportEntriesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeImageUsageReportsPaginator.ts b/clients/client-ec2/src/pagination/DescribeImageUsageReportsPaginator.ts index f0967361dad5d..ac5c1e193d87d 100644 --- a/clients/client-ec2/src/pagination/DescribeImageUsageReportsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeImageUsageReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImageUsageReportsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeImagesPaginator.ts b/clients/client-ec2/src/pagination/DescribeImagesPaginator.ts index e36bf87ac441b..99cb63a1ee53b 100644 --- a/clients/client-ec2/src/pagination/DescribeImagesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImagesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeImportImageTasksPaginator.ts b/clients/client-ec2/src/pagination/DescribeImportImageTasksPaginator.ts index 7e4b4efd65304..d23bd42150a00 100644 --- a/clients/client-ec2/src/pagination/DescribeImportImageTasksPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeImportImageTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImportImageTasksCommand, diff --git a/clients/client-ec2/src/pagination/DescribeImportSnapshotTasksPaginator.ts b/clients/client-ec2/src/pagination/DescribeImportSnapshotTasksPaginator.ts index b91cab7984e9e..2d55fb52547a4 100644 --- a/clients/client-ec2/src/pagination/DescribeImportSnapshotTasksPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeImportSnapshotTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImportSnapshotTasksCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInstanceConnectEndpointsPaginator.ts b/clients/client-ec2/src/pagination/DescribeInstanceConnectEndpointsPaginator.ts index 07d1e152cdc53..3a2f691fc64c3 100644 --- a/clients/client-ec2/src/pagination/DescribeInstanceConnectEndpointsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInstanceConnectEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceConnectEndpointsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInstanceCreditSpecificationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeInstanceCreditSpecificationsPaginator.ts index fafebd43fdb76..d599df6f3d7a6 100644 --- a/clients/client-ec2/src/pagination/DescribeInstanceCreditSpecificationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInstanceCreditSpecificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceCreditSpecificationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInstanceEventWindowsPaginator.ts b/clients/client-ec2/src/pagination/DescribeInstanceEventWindowsPaginator.ts index a570254e11557..e47975d1437bf 100644 --- a/clients/client-ec2/src/pagination/DescribeInstanceEventWindowsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInstanceEventWindowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceEventWindowsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInstanceImageMetadataPaginator.ts b/clients/client-ec2/src/pagination/DescribeInstanceImageMetadataPaginator.ts index d22aac2169028..26e0caa6644f4 100644 --- a/clients/client-ec2/src/pagination/DescribeInstanceImageMetadataPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInstanceImageMetadataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceImageMetadataCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInstanceStatusPaginator.ts b/clients/client-ec2/src/pagination/DescribeInstanceStatusPaginator.ts index 6d31ff578cb9d..c4f5692d43fe9 100644 --- a/clients/client-ec2/src/pagination/DescribeInstanceStatusPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInstanceStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceStatusCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInstanceTopologyPaginator.ts b/clients/client-ec2/src/pagination/DescribeInstanceTopologyPaginator.ts index dc2a99747d45c..fc55233acc7ad 100644 --- a/clients/client-ec2/src/pagination/DescribeInstanceTopologyPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInstanceTopologyPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceTopologyCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInstanceTypeOfferingsPaginator.ts b/clients/client-ec2/src/pagination/DescribeInstanceTypeOfferingsPaginator.ts index 1ede3631b84b3..cbaaf53e6d44f 100644 --- a/clients/client-ec2/src/pagination/DescribeInstanceTypeOfferingsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInstanceTypeOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceTypeOfferingsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInstanceTypesPaginator.ts b/clients/client-ec2/src/pagination/DescribeInstanceTypesPaginator.ts index d83b9f517a555..9796aa2f0c61e 100644 --- a/clients/client-ec2/src/pagination/DescribeInstanceTypesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInstanceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceTypesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInstancesPaginator.ts b/clients/client-ec2/src/pagination/DescribeInstancesPaginator.ts index 2cbe76e6c55eb..e470bd110ca7e 100644 --- a/clients/client-ec2/src/pagination/DescribeInstancesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstancesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeInternetGatewaysPaginator.ts b/clients/client-ec2/src/pagination/DescribeInternetGatewaysPaginator.ts index fa5bdc1d1a48e..63e656bef451a 100644 --- a/clients/client-ec2/src/pagination/DescribeInternetGatewaysPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeInternetGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInternetGatewaysCommand, diff --git a/clients/client-ec2/src/pagination/DescribeIpamPoolsPaginator.ts b/clients/client-ec2/src/pagination/DescribeIpamPoolsPaginator.ts index d7d5e22dbac9e..62e771d90a378 100644 --- a/clients/client-ec2/src/pagination/DescribeIpamPoolsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeIpamPoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIpamPoolsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeIpamPrefixListResolverTargetsPaginator.ts b/clients/client-ec2/src/pagination/DescribeIpamPrefixListResolverTargetsPaginator.ts index 947f01a23219b..ff4ee765550da 100644 --- a/clients/client-ec2/src/pagination/DescribeIpamPrefixListResolverTargetsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeIpamPrefixListResolverTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIpamPrefixListResolverTargetsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeIpamPrefixListResolversPaginator.ts b/clients/client-ec2/src/pagination/DescribeIpamPrefixListResolversPaginator.ts index ab21cd1f27577..c4c17fdaff14c 100644 --- a/clients/client-ec2/src/pagination/DescribeIpamPrefixListResolversPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeIpamPrefixListResolversPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIpamPrefixListResolversCommand, diff --git a/clients/client-ec2/src/pagination/DescribeIpamResourceDiscoveriesPaginator.ts b/clients/client-ec2/src/pagination/DescribeIpamResourceDiscoveriesPaginator.ts index 7bf06636b4f0a..1d8e94641a7d6 100644 --- a/clients/client-ec2/src/pagination/DescribeIpamResourceDiscoveriesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeIpamResourceDiscoveriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIpamResourceDiscoveriesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeIpamResourceDiscoveryAssociationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeIpamResourceDiscoveryAssociationsPaginator.ts index 357f18f1e9d46..5b79b37a6815e 100644 --- a/clients/client-ec2/src/pagination/DescribeIpamResourceDiscoveryAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeIpamResourceDiscoveryAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIpamResourceDiscoveryAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeIpamScopesPaginator.ts b/clients/client-ec2/src/pagination/DescribeIpamScopesPaginator.ts index 334fe5fbe99e7..2e009649dbf0e 100644 --- a/clients/client-ec2/src/pagination/DescribeIpamScopesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeIpamScopesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIpamScopesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeIpamsPaginator.ts b/clients/client-ec2/src/pagination/DescribeIpamsPaginator.ts index 1992ea24f11d1..467bc13acc192 100644 --- a/clients/client-ec2/src/pagination/DescribeIpamsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeIpamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIpamsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeIpv6PoolsPaginator.ts b/clients/client-ec2/src/pagination/DescribeIpv6PoolsPaginator.ts index d80c139f73de3..d9dcc57ba0143 100644 --- a/clients/client-ec2/src/pagination/DescribeIpv6PoolsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeIpv6PoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIpv6PoolsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeLaunchTemplateVersionsPaginator.ts b/clients/client-ec2/src/pagination/DescribeLaunchTemplateVersionsPaginator.ts index d14221ff652bc..7a1ac40701d2c 100644 --- a/clients/client-ec2/src/pagination/DescribeLaunchTemplateVersionsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeLaunchTemplateVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLaunchTemplateVersionsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeLaunchTemplatesPaginator.ts b/clients/client-ec2/src/pagination/DescribeLaunchTemplatesPaginator.ts index 265c1755a8413..61f6200d90d0e 100644 --- a/clients/client-ec2/src/pagination/DescribeLaunchTemplatesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeLaunchTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLaunchTemplatesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPaginator.ts index 12c898f067911..8891591f6084c 100644 --- a/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTableVpcAssociationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTableVpcAssociationsPaginator.ts index 91b12100953d6..5a4cacd7162e1 100644 --- a/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTableVpcAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTableVpcAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLocalGatewayRouteTableVpcAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTablesPaginator.ts b/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTablesPaginator.ts index e17f902722ce9..60fbc282bd31f 100644 --- a/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTablesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeLocalGatewayRouteTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLocalGatewayRouteTablesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeLocalGatewayVirtualInterfaceGroupsPaginator.ts b/clients/client-ec2/src/pagination/DescribeLocalGatewayVirtualInterfaceGroupsPaginator.ts index 606ab5774f905..94a7ecb3de6e6 100644 --- a/clients/client-ec2/src/pagination/DescribeLocalGatewayVirtualInterfaceGroupsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeLocalGatewayVirtualInterfaceGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLocalGatewayVirtualInterfaceGroupsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeLocalGatewayVirtualInterfacesPaginator.ts b/clients/client-ec2/src/pagination/DescribeLocalGatewayVirtualInterfacesPaginator.ts index 465dff747e20b..a53b8c3f1427a 100644 --- a/clients/client-ec2/src/pagination/DescribeLocalGatewayVirtualInterfacesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeLocalGatewayVirtualInterfacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLocalGatewayVirtualInterfacesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeLocalGatewaysPaginator.ts b/clients/client-ec2/src/pagination/DescribeLocalGatewaysPaginator.ts index 8473f000930f9..1db6803f44abf 100644 --- a/clients/client-ec2/src/pagination/DescribeLocalGatewaysPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeLocalGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLocalGatewaysCommand, diff --git a/clients/client-ec2/src/pagination/DescribeMacHostsPaginator.ts b/clients/client-ec2/src/pagination/DescribeMacHostsPaginator.ts index 5868008fa5f09..c732fb1221913 100644 --- a/clients/client-ec2/src/pagination/DescribeMacHostsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeMacHostsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMacHostsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeMacModificationTasksPaginator.ts b/clients/client-ec2/src/pagination/DescribeMacModificationTasksPaginator.ts index 943f629daebec..9563406a3d46d 100644 --- a/clients/client-ec2/src/pagination/DescribeMacModificationTasksPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeMacModificationTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMacModificationTasksCommand, diff --git a/clients/client-ec2/src/pagination/DescribeManagedPrefixListsPaginator.ts b/clients/client-ec2/src/pagination/DescribeManagedPrefixListsPaginator.ts index 5c9add5bf3784..b6d6fa9f498f4 100644 --- a/clients/client-ec2/src/pagination/DescribeManagedPrefixListsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeManagedPrefixListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeManagedPrefixListsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeMovingAddressesPaginator.ts b/clients/client-ec2/src/pagination/DescribeMovingAddressesPaginator.ts index fd2aaa8ab5849..f8a394ce72feb 100644 --- a/clients/client-ec2/src/pagination/DescribeMovingAddressesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeMovingAddressesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMovingAddressesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeNatGatewaysPaginator.ts b/clients/client-ec2/src/pagination/DescribeNatGatewaysPaginator.ts index ea0d79ac15b2d..3f202de83cda7 100644 --- a/clients/client-ec2/src/pagination/DescribeNatGatewaysPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeNatGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNatGatewaysCommand, diff --git a/clients/client-ec2/src/pagination/DescribeNetworkAclsPaginator.ts b/clients/client-ec2/src/pagination/DescribeNetworkAclsPaginator.ts index b94ff8b4f6ee7..1d6d7eb380ea9 100644 --- a/clients/client-ec2/src/pagination/DescribeNetworkAclsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeNetworkAclsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNetworkAclsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeNetworkInsightsAccessScopeAnalysesPaginator.ts b/clients/client-ec2/src/pagination/DescribeNetworkInsightsAccessScopeAnalysesPaginator.ts index bb65ef27f166d..38c7216030435 100644 --- a/clients/client-ec2/src/pagination/DescribeNetworkInsightsAccessScopeAnalysesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeNetworkInsightsAccessScopeAnalysesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNetworkInsightsAccessScopeAnalysesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeNetworkInsightsAccessScopesPaginator.ts b/clients/client-ec2/src/pagination/DescribeNetworkInsightsAccessScopesPaginator.ts index 1198d0422096e..cdcd5919a90bd 100644 --- a/clients/client-ec2/src/pagination/DescribeNetworkInsightsAccessScopesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeNetworkInsightsAccessScopesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNetworkInsightsAccessScopesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeNetworkInsightsAnalysesPaginator.ts b/clients/client-ec2/src/pagination/DescribeNetworkInsightsAnalysesPaginator.ts index 283aa9ac9f7ff..449146ea08378 100644 --- a/clients/client-ec2/src/pagination/DescribeNetworkInsightsAnalysesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeNetworkInsightsAnalysesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNetworkInsightsAnalysesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeNetworkInsightsPathsPaginator.ts b/clients/client-ec2/src/pagination/DescribeNetworkInsightsPathsPaginator.ts index 78aba23b350c7..05a9a35b17427 100644 --- a/clients/client-ec2/src/pagination/DescribeNetworkInsightsPathsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeNetworkInsightsPathsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNetworkInsightsPathsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeNetworkInterfacePermissionsPaginator.ts b/clients/client-ec2/src/pagination/DescribeNetworkInterfacePermissionsPaginator.ts index b79f4c0af8c33..cbca40c8a4aa0 100644 --- a/clients/client-ec2/src/pagination/DescribeNetworkInterfacePermissionsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeNetworkInterfacePermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNetworkInterfacePermissionsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeNetworkInterfacesPaginator.ts b/clients/client-ec2/src/pagination/DescribeNetworkInterfacesPaginator.ts index 05c47e340dc1c..cf00faf42a4b4 100644 --- a/clients/client-ec2/src/pagination/DescribeNetworkInterfacesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeNetworkInterfacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNetworkInterfacesCommand, diff --git a/clients/client-ec2/src/pagination/DescribePrefixListsPaginator.ts b/clients/client-ec2/src/pagination/DescribePrefixListsPaginator.ts index bb010b3748a71..6d953d6e203dd 100644 --- a/clients/client-ec2/src/pagination/DescribePrefixListsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribePrefixListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePrefixListsCommand, diff --git a/clients/client-ec2/src/pagination/DescribePrincipalIdFormatPaginator.ts b/clients/client-ec2/src/pagination/DescribePrincipalIdFormatPaginator.ts index e5412e6a021bc..cda2975671361 100644 --- a/clients/client-ec2/src/pagination/DescribePrincipalIdFormatPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribePrincipalIdFormatPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePrincipalIdFormatCommand, diff --git a/clients/client-ec2/src/pagination/DescribePublicIpv4PoolsPaginator.ts b/clients/client-ec2/src/pagination/DescribePublicIpv4PoolsPaginator.ts index ccd3fe89f0c04..0b6cd85e8fae1 100644 --- a/clients/client-ec2/src/pagination/DescribePublicIpv4PoolsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribePublicIpv4PoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePublicIpv4PoolsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeReplaceRootVolumeTasksPaginator.ts b/clients/client-ec2/src/pagination/DescribeReplaceRootVolumeTasksPaginator.ts index 5b0f4e4473742..872b120c27ee7 100644 --- a/clients/client-ec2/src/pagination/DescribeReplaceRootVolumeTasksPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeReplaceRootVolumeTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplaceRootVolumeTasksCommand, diff --git a/clients/client-ec2/src/pagination/DescribeReservedInstancesModificationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeReservedInstancesModificationsPaginator.ts index fcbeeae380695..6ed8efdcb682b 100644 --- a/clients/client-ec2/src/pagination/DescribeReservedInstancesModificationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeReservedInstancesModificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedInstancesModificationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeReservedInstancesOfferingsPaginator.ts b/clients/client-ec2/src/pagination/DescribeReservedInstancesOfferingsPaginator.ts index 0755c46648ee6..f5dcac623c565 100644 --- a/clients/client-ec2/src/pagination/DescribeReservedInstancesOfferingsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeReservedInstancesOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedInstancesOfferingsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeRouteServerEndpointsPaginator.ts b/clients/client-ec2/src/pagination/DescribeRouteServerEndpointsPaginator.ts index f66dfb155ace2..742e6db5762f9 100644 --- a/clients/client-ec2/src/pagination/DescribeRouteServerEndpointsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeRouteServerEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRouteServerEndpointsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeRouteServerPeersPaginator.ts b/clients/client-ec2/src/pagination/DescribeRouteServerPeersPaginator.ts index 73468adae5f71..4615e65b2950d 100644 --- a/clients/client-ec2/src/pagination/DescribeRouteServerPeersPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeRouteServerPeersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRouteServerPeersCommand, diff --git a/clients/client-ec2/src/pagination/DescribeRouteServersPaginator.ts b/clients/client-ec2/src/pagination/DescribeRouteServersPaginator.ts index ea74e083b4229..90daeb4e31b72 100644 --- a/clients/client-ec2/src/pagination/DescribeRouteServersPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeRouteServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRouteServersCommand, diff --git a/clients/client-ec2/src/pagination/DescribeRouteTablesPaginator.ts b/clients/client-ec2/src/pagination/DescribeRouteTablesPaginator.ts index a79c02e360301..ebca59ebd9e98 100644 --- a/clients/client-ec2/src/pagination/DescribeRouteTablesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeRouteTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRouteTablesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeScheduledInstanceAvailabilityPaginator.ts b/clients/client-ec2/src/pagination/DescribeScheduledInstanceAvailabilityPaginator.ts index f46d9722d1024..c93d707ec09f3 100644 --- a/clients/client-ec2/src/pagination/DescribeScheduledInstanceAvailabilityPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeScheduledInstanceAvailabilityPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeScheduledInstanceAvailabilityCommand, diff --git a/clients/client-ec2/src/pagination/DescribeScheduledInstancesPaginator.ts b/clients/client-ec2/src/pagination/DescribeScheduledInstancesPaginator.ts index 51f15e3389597..2b034482b5438 100644 --- a/clients/client-ec2/src/pagination/DescribeScheduledInstancesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeScheduledInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeScheduledInstancesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeSecurityGroupRulesPaginator.ts b/clients/client-ec2/src/pagination/DescribeSecurityGroupRulesPaginator.ts index 32d955bb1bdf2..7079e92729db0 100644 --- a/clients/client-ec2/src/pagination/DescribeSecurityGroupRulesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeSecurityGroupRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSecurityGroupRulesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeSecurityGroupVpcAssociationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeSecurityGroupVpcAssociationsPaginator.ts index 6bdc69dc5b061..097af7210ad0d 100644 --- a/clients/client-ec2/src/pagination/DescribeSecurityGroupVpcAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeSecurityGroupVpcAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSecurityGroupVpcAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeSecurityGroupsPaginator.ts b/clients/client-ec2/src/pagination/DescribeSecurityGroupsPaginator.ts index 2712de6b72880..e4e4d2c560870 100644 --- a/clients/client-ec2/src/pagination/DescribeSecurityGroupsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeSecurityGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSecurityGroupsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeSnapshotTierStatusPaginator.ts b/clients/client-ec2/src/pagination/DescribeSnapshotTierStatusPaginator.ts index 9bb33b63acf97..72569f2f3aa33 100644 --- a/clients/client-ec2/src/pagination/DescribeSnapshotTierStatusPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeSnapshotTierStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSnapshotTierStatusCommand, diff --git a/clients/client-ec2/src/pagination/DescribeSnapshotsPaginator.ts b/clients/client-ec2/src/pagination/DescribeSnapshotsPaginator.ts index 1e799d5d8241c..e9e75e0916042 100644 --- a/clients/client-ec2/src/pagination/DescribeSnapshotsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSnapshotsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeSpotFleetRequestsPaginator.ts b/clients/client-ec2/src/pagination/DescribeSpotFleetRequestsPaginator.ts index 2da330a4f8641..b90b34fc750d0 100644 --- a/clients/client-ec2/src/pagination/DescribeSpotFleetRequestsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeSpotFleetRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSpotFleetRequestsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeSpotInstanceRequestsPaginator.ts b/clients/client-ec2/src/pagination/DescribeSpotInstanceRequestsPaginator.ts index e1fb7caf55c2d..8a082ad68981d 100644 --- a/clients/client-ec2/src/pagination/DescribeSpotInstanceRequestsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeSpotInstanceRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSpotInstanceRequestsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeSpotPriceHistoryPaginator.ts b/clients/client-ec2/src/pagination/DescribeSpotPriceHistoryPaginator.ts index 5f00d3643e6b5..68f8d2a187785 100644 --- a/clients/client-ec2/src/pagination/DescribeSpotPriceHistoryPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeSpotPriceHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSpotPriceHistoryCommand, diff --git a/clients/client-ec2/src/pagination/DescribeStaleSecurityGroupsPaginator.ts b/clients/client-ec2/src/pagination/DescribeStaleSecurityGroupsPaginator.ts index cc56b02f12de7..23f479cd9d883 100644 --- a/clients/client-ec2/src/pagination/DescribeStaleSecurityGroupsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeStaleSecurityGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeStaleSecurityGroupsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeStoreImageTasksPaginator.ts b/clients/client-ec2/src/pagination/DescribeStoreImageTasksPaginator.ts index c64e4251c4c77..4c00dec49b3dd 100644 --- a/clients/client-ec2/src/pagination/DescribeStoreImageTasksPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeStoreImageTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeStoreImageTasksCommand, diff --git a/clients/client-ec2/src/pagination/DescribeSubnetsPaginator.ts b/clients/client-ec2/src/pagination/DescribeSubnetsPaginator.ts index 81f7488597546..f11d2efd07937 100644 --- a/clients/client-ec2/src/pagination/DescribeSubnetsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeSubnetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSubnetsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTagsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTagsPaginator.ts index 04878538d5cb1..6bdd75d57a092 100644 --- a/clients/client-ec2/src/pagination/DescribeTagsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTagsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTrafficMirrorFiltersPaginator.ts b/clients/client-ec2/src/pagination/DescribeTrafficMirrorFiltersPaginator.ts index 6fe3a10bf964c..574b33a09ecc8 100644 --- a/clients/client-ec2/src/pagination/DescribeTrafficMirrorFiltersPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTrafficMirrorFiltersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTrafficMirrorFiltersCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTrafficMirrorSessionsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTrafficMirrorSessionsPaginator.ts index 3db590e738b5f..529db9a6225dd 100644 --- a/clients/client-ec2/src/pagination/DescribeTrafficMirrorSessionsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTrafficMirrorSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTrafficMirrorSessionsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTrafficMirrorTargetsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTrafficMirrorTargetsPaginator.ts index 0672b4ac5abf2..21d0d9e343e39 100644 --- a/clients/client-ec2/src/pagination/DescribeTrafficMirrorTargetsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTrafficMirrorTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTrafficMirrorTargetsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewayAttachmentsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewayAttachmentsPaginator.ts index 31367b4345c2a..8e2d71753252c 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewayAttachmentsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewayAttachmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewayAttachmentsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewayConnectPeersPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewayConnectPeersPaginator.ts index 9339630bacc02..e4d0ff5543171 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewayConnectPeersPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewayConnectPeersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewayConnectPeersCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewayConnectsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewayConnectsPaginator.ts index c84d50fc22e07..62810f701c501 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewayConnectsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewayConnectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewayConnectsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewayMulticastDomainsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewayMulticastDomainsPaginator.ts index 36d8f3b18d746..1fe57035efeb1 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewayMulticastDomainsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewayMulticastDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewayMulticastDomainsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewayPeeringAttachmentsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewayPeeringAttachmentsPaginator.ts index f6843803d1f74..37e37afa25a38 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewayPeeringAttachmentsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewayPeeringAttachmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewayPeeringAttachmentsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewayPolicyTablesPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewayPolicyTablesPaginator.ts index 7656e6398a4bd..55930ab73bcaa 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewayPolicyTablesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewayPolicyTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewayPolicyTablesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewayRouteTableAnnouncementsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewayRouteTableAnnouncementsPaginator.ts index 9f9926649dc2f..d2c25178189fa 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewayRouteTableAnnouncementsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewayRouteTableAnnouncementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewayRouteTableAnnouncementsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewayRouteTablesPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewayRouteTablesPaginator.ts index 65de33674afde..f55d6e4cfc208 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewayRouteTablesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewayRouteTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewayRouteTablesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewayVpcAttachmentsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewayVpcAttachmentsPaginator.ts index dcbc82741d803..b2c5ac08beb56 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewayVpcAttachmentsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewayVpcAttachmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewayVpcAttachmentsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTransitGatewaysPaginator.ts b/clients/client-ec2/src/pagination/DescribeTransitGatewaysPaginator.ts index 1b22848b9ee1e..36652f0cdfd3a 100644 --- a/clients/client-ec2/src/pagination/DescribeTransitGatewaysPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTransitGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTransitGatewaysCommand, diff --git a/clients/client-ec2/src/pagination/DescribeTrunkInterfaceAssociationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeTrunkInterfaceAssociationsPaginator.ts index decd9d6a675c8..a0d06b04928d3 100644 --- a/clients/client-ec2/src/pagination/DescribeTrunkInterfaceAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeTrunkInterfaceAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTrunkInterfaceAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVerifiedAccessEndpointsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVerifiedAccessEndpointsPaginator.ts index 94fe5bdba47bd..310f59a339506 100644 --- a/clients/client-ec2/src/pagination/DescribeVerifiedAccessEndpointsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVerifiedAccessEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVerifiedAccessEndpointsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVerifiedAccessGroupsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVerifiedAccessGroupsPaginator.ts index 444e38653889b..4b4bab4db058f 100644 --- a/clients/client-ec2/src/pagination/DescribeVerifiedAccessGroupsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVerifiedAccessGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVerifiedAccessGroupsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVerifiedAccessInstanceLoggingConfigurationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVerifiedAccessInstanceLoggingConfigurationsPaginator.ts index 17d0502d704b8..0a0468ad36c86 100644 --- a/clients/client-ec2/src/pagination/DescribeVerifiedAccessInstanceLoggingConfigurationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVerifiedAccessInstanceLoggingConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVerifiedAccessInstanceLoggingConfigurationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVerifiedAccessInstancesPaginator.ts b/clients/client-ec2/src/pagination/DescribeVerifiedAccessInstancesPaginator.ts index 0cf397de13763..9d3edd06e2e66 100644 --- a/clients/client-ec2/src/pagination/DescribeVerifiedAccessInstancesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVerifiedAccessInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVerifiedAccessInstancesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVerifiedAccessTrustProvidersPaginator.ts b/clients/client-ec2/src/pagination/DescribeVerifiedAccessTrustProvidersPaginator.ts index 57088c72a47df..3e44390b2a9f4 100644 --- a/clients/client-ec2/src/pagination/DescribeVerifiedAccessTrustProvidersPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVerifiedAccessTrustProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVerifiedAccessTrustProvidersCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVolumeStatusPaginator.ts b/clients/client-ec2/src/pagination/DescribeVolumeStatusPaginator.ts index 3187eec9c577a..c8f57da9bfc9b 100644 --- a/clients/client-ec2/src/pagination/DescribeVolumeStatusPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVolumeStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVolumeStatusCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVolumesModificationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVolumesModificationsPaginator.ts index 50fa2f9a2fd5a..c9f6d8e5069d6 100644 --- a/clients/client-ec2/src/pagination/DescribeVolumesModificationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVolumesModificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVolumesModificationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVolumesPaginator.ts b/clients/client-ec2/src/pagination/DescribeVolumesPaginator.ts index 39ab327f54c33..e9636cb785b2d 100644 --- a/clients/client-ec2/src/pagination/DescribeVolumesPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVolumesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVolumesCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVpcClassicLinkDnsSupportPaginator.ts b/clients/client-ec2/src/pagination/DescribeVpcClassicLinkDnsSupportPaginator.ts index dd45721015779..ee03d34d074a6 100644 --- a/clients/client-ec2/src/pagination/DescribeVpcClassicLinkDnsSupportPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVpcClassicLinkDnsSupportPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVpcClassicLinkDnsSupportCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVpcEndpointConnectionNotificationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVpcEndpointConnectionNotificationsPaginator.ts index 89f3a0a313cd5..4ba09b750ccef 100644 --- a/clients/client-ec2/src/pagination/DescribeVpcEndpointConnectionNotificationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVpcEndpointConnectionNotificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVpcEndpointConnectionNotificationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVpcEndpointConnectionsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVpcEndpointConnectionsPaginator.ts index ce4ea181fb382..21f04c185678f 100644 --- a/clients/client-ec2/src/pagination/DescribeVpcEndpointConnectionsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVpcEndpointConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVpcEndpointConnectionsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVpcEndpointServiceConfigurationsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVpcEndpointServiceConfigurationsPaginator.ts index 388a137d9b0c3..5277e03a07c41 100644 --- a/clients/client-ec2/src/pagination/DescribeVpcEndpointServiceConfigurationsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVpcEndpointServiceConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVpcEndpointServiceConfigurationsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVpcEndpointServicePermissionsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVpcEndpointServicePermissionsPaginator.ts index 2353a029ec08b..b3a3f47db101b 100644 --- a/clients/client-ec2/src/pagination/DescribeVpcEndpointServicePermissionsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVpcEndpointServicePermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVpcEndpointServicePermissionsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVpcEndpointsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVpcEndpointsPaginator.ts index 2da821c1d0cd0..330df1fdc3e43 100644 --- a/clients/client-ec2/src/pagination/DescribeVpcEndpointsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVpcEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVpcEndpointsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVpcPeeringConnectionsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVpcPeeringConnectionsPaginator.ts index 72ffe3c8b8b85..fb09dea98d5ca 100644 --- a/clients/client-ec2/src/pagination/DescribeVpcPeeringConnectionsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVpcPeeringConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVpcPeeringConnectionsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVpcsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVpcsPaginator.ts index 9668f35c291de..9e0efa757064d 100644 --- a/clients/client-ec2/src/pagination/DescribeVpcsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVpcsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVpcsCommand, diff --git a/clients/client-ec2/src/pagination/DescribeVpnConcentratorsPaginator.ts b/clients/client-ec2/src/pagination/DescribeVpnConcentratorsPaginator.ts index b8455bb4dcbda..a12fa363dfa71 100644 --- a/clients/client-ec2/src/pagination/DescribeVpnConcentratorsPaginator.ts +++ b/clients/client-ec2/src/pagination/DescribeVpnConcentratorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVpnConcentratorsCommand, diff --git a/clients/client-ec2/src/pagination/GetAssociatedIpv6PoolCidrsPaginator.ts b/clients/client-ec2/src/pagination/GetAssociatedIpv6PoolCidrsPaginator.ts index 300c5faa398af..bfe375b4b8365 100644 --- a/clients/client-ec2/src/pagination/GetAssociatedIpv6PoolCidrsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetAssociatedIpv6PoolCidrsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAssociatedIpv6PoolCidrsCommand, diff --git a/clients/client-ec2/src/pagination/GetAwsNetworkPerformanceDataPaginator.ts b/clients/client-ec2/src/pagination/GetAwsNetworkPerformanceDataPaginator.ts index 895c2dd6274a7..631d73109bb5e 100644 --- a/clients/client-ec2/src/pagination/GetAwsNetworkPerformanceDataPaginator.ts +++ b/clients/client-ec2/src/pagination/GetAwsNetworkPerformanceDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAwsNetworkPerformanceDataCommand, diff --git a/clients/client-ec2/src/pagination/GetCapacityManagerMetricDataPaginator.ts b/clients/client-ec2/src/pagination/GetCapacityManagerMetricDataPaginator.ts index 9878d8658361b..4e96d9931937b 100644 --- a/clients/client-ec2/src/pagination/GetCapacityManagerMetricDataPaginator.ts +++ b/clients/client-ec2/src/pagination/GetCapacityManagerMetricDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCapacityManagerMetricDataCommand, diff --git a/clients/client-ec2/src/pagination/GetCapacityManagerMetricDimensionsPaginator.ts b/clients/client-ec2/src/pagination/GetCapacityManagerMetricDimensionsPaginator.ts index 9129f208b71df..d15370493ff32 100644 --- a/clients/client-ec2/src/pagination/GetCapacityManagerMetricDimensionsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetCapacityManagerMetricDimensionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCapacityManagerMetricDimensionsCommand, diff --git a/clients/client-ec2/src/pagination/GetGroupsForCapacityReservationPaginator.ts b/clients/client-ec2/src/pagination/GetGroupsForCapacityReservationPaginator.ts index 89e0c8f875af0..8fd562138bd87 100644 --- a/clients/client-ec2/src/pagination/GetGroupsForCapacityReservationPaginator.ts +++ b/clients/client-ec2/src/pagination/GetGroupsForCapacityReservationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetGroupsForCapacityReservationCommand, diff --git a/clients/client-ec2/src/pagination/GetInstanceTypesFromInstanceRequirementsPaginator.ts b/clients/client-ec2/src/pagination/GetInstanceTypesFromInstanceRequirementsPaginator.ts index 7069fc269f5dd..1c5140bb228b2 100644 --- a/clients/client-ec2/src/pagination/GetInstanceTypesFromInstanceRequirementsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetInstanceTypesFromInstanceRequirementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetInstanceTypesFromInstanceRequirementsCommand, diff --git a/clients/client-ec2/src/pagination/GetIpamAddressHistoryPaginator.ts b/clients/client-ec2/src/pagination/GetIpamAddressHistoryPaginator.ts index 720c6eb13b7ca..c1515ae2af15f 100644 --- a/clients/client-ec2/src/pagination/GetIpamAddressHistoryPaginator.ts +++ b/clients/client-ec2/src/pagination/GetIpamAddressHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIpamAddressHistoryCommand, diff --git a/clients/client-ec2/src/pagination/GetIpamDiscoveredAccountsPaginator.ts b/clients/client-ec2/src/pagination/GetIpamDiscoveredAccountsPaginator.ts index 174d8e5f9b517..cf2b0fbfaabfc 100644 --- a/clients/client-ec2/src/pagination/GetIpamDiscoveredAccountsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetIpamDiscoveredAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIpamDiscoveredAccountsCommand, diff --git a/clients/client-ec2/src/pagination/GetIpamDiscoveredResourceCidrsPaginator.ts b/clients/client-ec2/src/pagination/GetIpamDiscoveredResourceCidrsPaginator.ts index cf2c1a747aba7..8e16ca0f10a55 100644 --- a/clients/client-ec2/src/pagination/GetIpamDiscoveredResourceCidrsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetIpamDiscoveredResourceCidrsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIpamDiscoveredResourceCidrsCommand, diff --git a/clients/client-ec2/src/pagination/GetIpamPoolAllocationsPaginator.ts b/clients/client-ec2/src/pagination/GetIpamPoolAllocationsPaginator.ts index 815402ea804a5..2682f74f0292e 100644 --- a/clients/client-ec2/src/pagination/GetIpamPoolAllocationsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetIpamPoolAllocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIpamPoolAllocationsCommand, diff --git a/clients/client-ec2/src/pagination/GetIpamPoolCidrsPaginator.ts b/clients/client-ec2/src/pagination/GetIpamPoolCidrsPaginator.ts index bb0f77645215e..1a4f8c71c9945 100644 --- a/clients/client-ec2/src/pagination/GetIpamPoolCidrsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetIpamPoolCidrsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIpamPoolCidrsCommand, diff --git a/clients/client-ec2/src/pagination/GetIpamPrefixListResolverRulesPaginator.ts b/clients/client-ec2/src/pagination/GetIpamPrefixListResolverRulesPaginator.ts index 118c3a7ad28bb..e8667cbcf966a 100644 --- a/clients/client-ec2/src/pagination/GetIpamPrefixListResolverRulesPaginator.ts +++ b/clients/client-ec2/src/pagination/GetIpamPrefixListResolverRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIpamPrefixListResolverRulesCommand, diff --git a/clients/client-ec2/src/pagination/GetIpamPrefixListResolverVersionEntriesPaginator.ts b/clients/client-ec2/src/pagination/GetIpamPrefixListResolverVersionEntriesPaginator.ts index 0943617b015f7..91a81b7ac9b2a 100644 --- a/clients/client-ec2/src/pagination/GetIpamPrefixListResolverVersionEntriesPaginator.ts +++ b/clients/client-ec2/src/pagination/GetIpamPrefixListResolverVersionEntriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIpamPrefixListResolverVersionEntriesCommand, diff --git a/clients/client-ec2/src/pagination/GetIpamPrefixListResolverVersionsPaginator.ts b/clients/client-ec2/src/pagination/GetIpamPrefixListResolverVersionsPaginator.ts index 8047d85f95884..946b5c904f650 100644 --- a/clients/client-ec2/src/pagination/GetIpamPrefixListResolverVersionsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetIpamPrefixListResolverVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIpamPrefixListResolverVersionsCommand, diff --git a/clients/client-ec2/src/pagination/GetIpamResourceCidrsPaginator.ts b/clients/client-ec2/src/pagination/GetIpamResourceCidrsPaginator.ts index 556e58791af0e..aa89871d46b60 100644 --- a/clients/client-ec2/src/pagination/GetIpamResourceCidrsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetIpamResourceCidrsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIpamResourceCidrsCommand, diff --git a/clients/client-ec2/src/pagination/GetManagedPrefixListAssociationsPaginator.ts b/clients/client-ec2/src/pagination/GetManagedPrefixListAssociationsPaginator.ts index 21f8216dfd110..93c0e9fb1ac62 100644 --- a/clients/client-ec2/src/pagination/GetManagedPrefixListAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetManagedPrefixListAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetManagedPrefixListAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/GetManagedPrefixListEntriesPaginator.ts b/clients/client-ec2/src/pagination/GetManagedPrefixListEntriesPaginator.ts index ce2aa79e9cd1e..5b27ae59fc36b 100644 --- a/clients/client-ec2/src/pagination/GetManagedPrefixListEntriesPaginator.ts +++ b/clients/client-ec2/src/pagination/GetManagedPrefixListEntriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetManagedPrefixListEntriesCommand, diff --git a/clients/client-ec2/src/pagination/GetNetworkInsightsAccessScopeAnalysisFindingsPaginator.ts b/clients/client-ec2/src/pagination/GetNetworkInsightsAccessScopeAnalysisFindingsPaginator.ts index db71a32b92220..938d20430af08 100644 --- a/clients/client-ec2/src/pagination/GetNetworkInsightsAccessScopeAnalysisFindingsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetNetworkInsightsAccessScopeAnalysisFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetNetworkInsightsAccessScopeAnalysisFindingsCommand, diff --git a/clients/client-ec2/src/pagination/GetSecurityGroupsForVpcPaginator.ts b/clients/client-ec2/src/pagination/GetSecurityGroupsForVpcPaginator.ts index 7f407c9b07824..2c6dff3b80b79 100644 --- a/clients/client-ec2/src/pagination/GetSecurityGroupsForVpcPaginator.ts +++ b/clients/client-ec2/src/pagination/GetSecurityGroupsForVpcPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSecurityGroupsForVpcCommand, diff --git a/clients/client-ec2/src/pagination/GetSpotPlacementScoresPaginator.ts b/clients/client-ec2/src/pagination/GetSpotPlacementScoresPaginator.ts index d4ddcde3d5697..04cb487106acf 100644 --- a/clients/client-ec2/src/pagination/GetSpotPlacementScoresPaginator.ts +++ b/clients/client-ec2/src/pagination/GetSpotPlacementScoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSpotPlacementScoresCommand, diff --git a/clients/client-ec2/src/pagination/GetTransitGatewayAttachmentPropagationsPaginator.ts b/clients/client-ec2/src/pagination/GetTransitGatewayAttachmentPropagationsPaginator.ts index 0473d0654d8d8..61b94c396eb00 100644 --- a/clients/client-ec2/src/pagination/GetTransitGatewayAttachmentPropagationsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetTransitGatewayAttachmentPropagationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTransitGatewayAttachmentPropagationsCommand, diff --git a/clients/client-ec2/src/pagination/GetTransitGatewayMulticastDomainAssociationsPaginator.ts b/clients/client-ec2/src/pagination/GetTransitGatewayMulticastDomainAssociationsPaginator.ts index b6104c176e87d..80fc004443904 100644 --- a/clients/client-ec2/src/pagination/GetTransitGatewayMulticastDomainAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetTransitGatewayMulticastDomainAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTransitGatewayMulticastDomainAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/GetTransitGatewayPolicyTableAssociationsPaginator.ts b/clients/client-ec2/src/pagination/GetTransitGatewayPolicyTableAssociationsPaginator.ts index 86e053f110a59..d6aea52ee5d36 100644 --- a/clients/client-ec2/src/pagination/GetTransitGatewayPolicyTableAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetTransitGatewayPolicyTableAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTransitGatewayPolicyTableAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/GetTransitGatewayPrefixListReferencesPaginator.ts b/clients/client-ec2/src/pagination/GetTransitGatewayPrefixListReferencesPaginator.ts index 062803f1fa15b..399db8e0ba386 100644 --- a/clients/client-ec2/src/pagination/GetTransitGatewayPrefixListReferencesPaginator.ts +++ b/clients/client-ec2/src/pagination/GetTransitGatewayPrefixListReferencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTransitGatewayPrefixListReferencesCommand, diff --git a/clients/client-ec2/src/pagination/GetTransitGatewayRouteTableAssociationsPaginator.ts b/clients/client-ec2/src/pagination/GetTransitGatewayRouteTableAssociationsPaginator.ts index df65bc8dcdb35..a6cc9d4214f00 100644 --- a/clients/client-ec2/src/pagination/GetTransitGatewayRouteTableAssociationsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetTransitGatewayRouteTableAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTransitGatewayRouteTableAssociationsCommand, diff --git a/clients/client-ec2/src/pagination/GetTransitGatewayRouteTablePropagationsPaginator.ts b/clients/client-ec2/src/pagination/GetTransitGatewayRouteTablePropagationsPaginator.ts index d68647c2fd683..3329fe25284fd 100644 --- a/clients/client-ec2/src/pagination/GetTransitGatewayRouteTablePropagationsPaginator.ts +++ b/clients/client-ec2/src/pagination/GetTransitGatewayRouteTablePropagationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTransitGatewayRouteTablePropagationsCommand, diff --git a/clients/client-ec2/src/pagination/GetVpnConnectionDeviceTypesPaginator.ts b/clients/client-ec2/src/pagination/GetVpnConnectionDeviceTypesPaginator.ts index 462d1eaa9e71c..1655d780fd14c 100644 --- a/clients/client-ec2/src/pagination/GetVpnConnectionDeviceTypesPaginator.ts +++ b/clients/client-ec2/src/pagination/GetVpnConnectionDeviceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetVpnConnectionDeviceTypesCommand, diff --git a/clients/client-ec2/src/pagination/Interfaces.ts b/clients/client-ec2/src/pagination/Interfaces.ts index dd6aca0385b28..7206f704f8f53 100644 --- a/clients/client-ec2/src/pagination/Interfaces.ts +++ b/clients/client-ec2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EC2Client } from "../EC2Client"; diff --git a/clients/client-ec2/src/pagination/ListImagesInRecycleBinPaginator.ts b/clients/client-ec2/src/pagination/ListImagesInRecycleBinPaginator.ts index 2b4eb20c74abb..ade7b9b7d1503 100644 --- a/clients/client-ec2/src/pagination/ListImagesInRecycleBinPaginator.ts +++ b/clients/client-ec2/src/pagination/ListImagesInRecycleBinPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImagesInRecycleBinCommand, diff --git a/clients/client-ec2/src/pagination/ListSnapshotsInRecycleBinPaginator.ts b/clients/client-ec2/src/pagination/ListSnapshotsInRecycleBinPaginator.ts index d204026db4df8..1c99878d14951 100644 --- a/clients/client-ec2/src/pagination/ListSnapshotsInRecycleBinPaginator.ts +++ b/clients/client-ec2/src/pagination/ListSnapshotsInRecycleBinPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSnapshotsInRecycleBinCommand, diff --git a/clients/client-ec2/src/pagination/SearchLocalGatewayRoutesPaginator.ts b/clients/client-ec2/src/pagination/SearchLocalGatewayRoutesPaginator.ts index ddffa68ca5c8f..43c0154b846ab 100644 --- a/clients/client-ec2/src/pagination/SearchLocalGatewayRoutesPaginator.ts +++ b/clients/client-ec2/src/pagination/SearchLocalGatewayRoutesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchLocalGatewayRoutesCommand, diff --git a/clients/client-ec2/src/pagination/SearchTransitGatewayMulticastGroupsPaginator.ts b/clients/client-ec2/src/pagination/SearchTransitGatewayMulticastGroupsPaginator.ts index c602f5b259d6f..ad4f37c71b7ea 100644 --- a/clients/client-ec2/src/pagination/SearchTransitGatewayMulticastGroupsPaginator.ts +++ b/clients/client-ec2/src/pagination/SearchTransitGatewayMulticastGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchTransitGatewayMulticastGroupsCommand, diff --git a/clients/client-ec2/src/runtimeConfig.browser.ts b/clients/client-ec2/src/runtimeConfig.browser.ts index aec8c75004faf..e694051101653 100644 --- a/clients/client-ec2/src/runtimeConfig.browser.ts +++ b/clients/client-ec2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EC2ClientConfig } from "./EC2Client"; + +import type { EC2ClientConfig } from "./EC2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ec2/src/runtimeConfig.native.ts b/clients/client-ec2/src/runtimeConfig.native.ts index 1684133381855..6cc66686526b8 100644 --- a/clients/client-ec2/src/runtimeConfig.native.ts +++ b/clients/client-ec2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EC2ClientConfig } from "./EC2Client"; +import type { EC2ClientConfig } from "./EC2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ec2/src/runtimeConfig.shared.ts b/clients/client-ec2/src/runtimeConfig.shared.ts index 06d86a7225a2e..989d4e802ec5f 100644 --- a/clients/client-ec2/src/runtimeConfig.shared.ts +++ b/clients/client-ec2/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsEc2QueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEC2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EC2ClientConfig } from "./EC2Client"; +import type { EC2ClientConfig } from "./EC2Client"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-ec2/src/runtimeConfig.ts b/clients/client-ec2/src/runtimeConfig.ts index 71c8a4e352fec..db600ebc4c135 100644 --- a/clients/client-ec2/src/runtimeConfig.ts +++ b/clients/client-ec2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EC2ClientConfig } from "./EC2Client"; + +import type { EC2ClientConfig } from "./EC2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ec2/src/runtimeExtensions.ts b/clients/client-ec2/src/runtimeExtensions.ts index 0723480918a46..097d225b2b513 100644 --- a/clients/client-ec2/src/runtimeExtensions.ts +++ b/clients/client-ec2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EC2ExtensionConfiguration } from "./extensionConfiguration"; +import type { EC2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ec2/src/schemas/schemas_0.ts b/clients/client-ec2/src/schemas/schemas_0.ts index 766560c3d082e..7219bca610fab 100644 --- a/clients/client-ec2/src/schemas/schemas_0.ts +++ b/clients/client-ec2/src/schemas/schemas_0.ts @@ -7959,7 +7959,7 @@ const n0 = "com.amazonaws.ec2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-ecr-public/package.json b/clients/client-ecr-public/package.json index 846a7bc814b65..e038100e47e03 100644 --- a/clients/client-ecr-public/package.json +++ b/clients/client-ecr-public/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ecr-public/src/ECRPUBLIC.ts b/clients/client-ecr-public/src/ECRPUBLIC.ts index caa84cb163a85..1d58e82474f92 100644 --- a/clients/client-ecr-public/src/ECRPUBLIC.ts +++ b/clients/client-ecr-public/src/ECRPUBLIC.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchCheckLayerAvailabilityCommand, @@ -109,7 +109,7 @@ import { UploadLayerPartCommandInput, UploadLayerPartCommandOutput, } from "./commands/UploadLayerPartCommand"; -import { ECRPUBLICClient, ECRPUBLICClientConfig } from "./ECRPUBLICClient"; +import { ECRPUBLICClient } from "./ECRPUBLICClient"; const commands = { BatchCheckLayerAvailabilityCommand, diff --git a/clients/client-ecr-public/src/ECRPUBLICClient.ts b/clients/client-ecr-public/src/ECRPUBLICClient.ts index e1a12a2cd3436..160b7dbe6b6dc 100644 --- a/clients/client-ecr-public/src/ECRPUBLICClient.ts +++ b/clients/client-ecr-public/src/ECRPUBLICClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultECRPUBLICHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -126,7 +135,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ecr-public/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ecr-public/src/auth/httpAuthExtensionConfiguration.ts index 2892be7f22c24..82fa526de1743 100644 --- a/clients/client-ecr-public/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ecr-public/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ECRPUBLICHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ECRPUBLICHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ecr-public/src/auth/httpAuthSchemeProvider.ts b/clients/client-ecr-public/src/auth/httpAuthSchemeProvider.ts index 531024ee7adf0..866172f719031 100644 --- a/clients/client-ecr-public/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ecr-public/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ECRPUBLICClientConfig, ECRPUBLICClientResolvedConfig } from "../ECRPUBLICClient"; +import { type ECRPUBLICClientResolvedConfig, ECRPUBLICClientConfig } from "../ECRPUBLICClient"; /** * @internal diff --git a/clients/client-ecr-public/src/commands/BatchCheckLayerAvailabilityCommand.ts b/clients/client-ecr-public/src/commands/BatchCheckLayerAvailabilityCommand.ts index def902e397162..87a35204caedc 100644 --- a/clients/client-ecr-public/src/commands/BatchCheckLayerAvailabilityCommand.ts +++ b/clients/client-ecr-public/src/commands/BatchCheckLayerAvailabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCheckLayerAvailabilityRequest, BatchCheckLayerAvailabilityResponse } from "../models/models_0"; +import type { BatchCheckLayerAvailabilityRequest, BatchCheckLayerAvailabilityResponse } from "../models/models_0"; import { BatchCheckLayerAvailability } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/BatchDeleteImageCommand.ts b/clients/client-ecr-public/src/commands/BatchDeleteImageCommand.ts index 7ccd331228ec3..33bc0c40e159d 100644 --- a/clients/client-ecr-public/src/commands/BatchDeleteImageCommand.ts +++ b/clients/client-ecr-public/src/commands/BatchDeleteImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteImageRequest, BatchDeleteImageResponse } from "../models/models_0"; +import type { BatchDeleteImageRequest, BatchDeleteImageResponse } from "../models/models_0"; import { BatchDeleteImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/CompleteLayerUploadCommand.ts b/clients/client-ecr-public/src/commands/CompleteLayerUploadCommand.ts index 565b92a581d2f..5f89408e635c7 100644 --- a/clients/client-ecr-public/src/commands/CompleteLayerUploadCommand.ts +++ b/clients/client-ecr-public/src/commands/CompleteLayerUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteLayerUploadRequest, CompleteLayerUploadResponse } from "../models/models_0"; +import type { CompleteLayerUploadRequest, CompleteLayerUploadResponse } from "../models/models_0"; import { CompleteLayerUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/CreateRepositoryCommand.ts b/clients/client-ecr-public/src/commands/CreateRepositoryCommand.ts index 71c79742c1cb5..5959dce0228bf 100644 --- a/clients/client-ecr-public/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-ecr-public/src/commands/CreateRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRepositoryRequest, CreateRepositoryResponse } from "../models/models_0"; +import type { CreateRepositoryRequest, CreateRepositoryResponse } from "../models/models_0"; import { CreateRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/DeleteRepositoryCommand.ts b/clients/client-ecr-public/src/commands/DeleteRepositoryCommand.ts index 02d2e0aa70c6a..feb44ee66fd1f 100644 --- a/clients/client-ecr-public/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-ecr-public/src/commands/DeleteRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryRequest, DeleteRepositoryResponse } from "../models/models_0"; +import type { DeleteRepositoryRequest, DeleteRepositoryResponse } from "../models/models_0"; import { DeleteRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/DeleteRepositoryPolicyCommand.ts b/clients/client-ecr-public/src/commands/DeleteRepositoryPolicyCommand.ts index 47d07552598c1..b52469c4d66e4 100644 --- a/clients/client-ecr-public/src/commands/DeleteRepositoryPolicyCommand.ts +++ b/clients/client-ecr-public/src/commands/DeleteRepositoryPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryPolicyRequest, DeleteRepositoryPolicyResponse } from "../models/models_0"; +import type { DeleteRepositoryPolicyRequest, DeleteRepositoryPolicyResponse } from "../models/models_0"; import { DeleteRepositoryPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/DescribeImageTagsCommand.ts b/clients/client-ecr-public/src/commands/DescribeImageTagsCommand.ts index 6d2fe584945ee..352d8064e7a1e 100644 --- a/clients/client-ecr-public/src/commands/DescribeImageTagsCommand.ts +++ b/clients/client-ecr-public/src/commands/DescribeImageTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageTagsRequest, DescribeImageTagsResponse } from "../models/models_0"; +import type { DescribeImageTagsRequest, DescribeImageTagsResponse } from "../models/models_0"; import { DescribeImageTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/DescribeImagesCommand.ts b/clients/client-ecr-public/src/commands/DescribeImagesCommand.ts index 8738481e2b519..7d4672ae7f50e 100644 --- a/clients/client-ecr-public/src/commands/DescribeImagesCommand.ts +++ b/clients/client-ecr-public/src/commands/DescribeImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImagesRequest, DescribeImagesResponse } from "../models/models_0"; +import type { DescribeImagesRequest, DescribeImagesResponse } from "../models/models_0"; import { DescribeImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/DescribeRegistriesCommand.ts b/clients/client-ecr-public/src/commands/DescribeRegistriesCommand.ts index 09d03da996033..f2971aaa22903 100644 --- a/clients/client-ecr-public/src/commands/DescribeRegistriesCommand.ts +++ b/clients/client-ecr-public/src/commands/DescribeRegistriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegistriesRequest, DescribeRegistriesResponse } from "../models/models_0"; +import type { DescribeRegistriesRequest, DescribeRegistriesResponse } from "../models/models_0"; import { DescribeRegistries } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/DescribeRepositoriesCommand.ts b/clients/client-ecr-public/src/commands/DescribeRepositoriesCommand.ts index 02937fbca9d63..b4054c28a0aa6 100644 --- a/clients/client-ecr-public/src/commands/DescribeRepositoriesCommand.ts +++ b/clients/client-ecr-public/src/commands/DescribeRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRepositoriesRequest, DescribeRepositoriesResponse } from "../models/models_0"; +import type { DescribeRepositoriesRequest, DescribeRepositoriesResponse } from "../models/models_0"; import { DescribeRepositories } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/GetAuthorizationTokenCommand.ts b/clients/client-ecr-public/src/commands/GetAuthorizationTokenCommand.ts index 945252dfd3ecc..ecbeef2d621f6 100644 --- a/clients/client-ecr-public/src/commands/GetAuthorizationTokenCommand.ts +++ b/clients/client-ecr-public/src/commands/GetAuthorizationTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAuthorizationTokenRequest, GetAuthorizationTokenResponse } from "../models/models_0"; +import type { GetAuthorizationTokenRequest, GetAuthorizationTokenResponse } from "../models/models_0"; import { GetAuthorizationToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/GetRegistryCatalogDataCommand.ts b/clients/client-ecr-public/src/commands/GetRegistryCatalogDataCommand.ts index 6c941550c2c45..9567d90e7fad1 100644 --- a/clients/client-ecr-public/src/commands/GetRegistryCatalogDataCommand.ts +++ b/clients/client-ecr-public/src/commands/GetRegistryCatalogDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRegistryCatalogDataRequest, GetRegistryCatalogDataResponse } from "../models/models_0"; +import type { GetRegistryCatalogDataRequest, GetRegistryCatalogDataResponse } from "../models/models_0"; import { GetRegistryCatalogData } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/GetRepositoryCatalogDataCommand.ts b/clients/client-ecr-public/src/commands/GetRepositoryCatalogDataCommand.ts index 132cc64ae2cc0..9083cead5ef79 100644 --- a/clients/client-ecr-public/src/commands/GetRepositoryCatalogDataCommand.ts +++ b/clients/client-ecr-public/src/commands/GetRepositoryCatalogDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryCatalogDataRequest, GetRepositoryCatalogDataResponse } from "../models/models_0"; +import type { GetRepositoryCatalogDataRequest, GetRepositoryCatalogDataResponse } from "../models/models_0"; import { GetRepositoryCatalogData } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/GetRepositoryPolicyCommand.ts b/clients/client-ecr-public/src/commands/GetRepositoryPolicyCommand.ts index 3315c3988562c..fb982dd905424 100644 --- a/clients/client-ecr-public/src/commands/GetRepositoryPolicyCommand.ts +++ b/clients/client-ecr-public/src/commands/GetRepositoryPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryPolicyRequest, GetRepositoryPolicyResponse } from "../models/models_0"; +import type { GetRepositoryPolicyRequest, GetRepositoryPolicyResponse } from "../models/models_0"; import { GetRepositoryPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/InitiateLayerUploadCommand.ts b/clients/client-ecr-public/src/commands/InitiateLayerUploadCommand.ts index 7b30b5ab3847c..c46512dd18533 100644 --- a/clients/client-ecr-public/src/commands/InitiateLayerUploadCommand.ts +++ b/clients/client-ecr-public/src/commands/InitiateLayerUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InitiateLayerUploadRequest, InitiateLayerUploadResponse } from "../models/models_0"; +import type { InitiateLayerUploadRequest, InitiateLayerUploadResponse } from "../models/models_0"; import { InitiateLayerUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/ListTagsForResourceCommand.ts b/clients/client-ecr-public/src/commands/ListTagsForResourceCommand.ts index b3922927e62e6..32bc98f595652 100644 --- a/clients/client-ecr-public/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ecr-public/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/PutImageCommand.ts b/clients/client-ecr-public/src/commands/PutImageCommand.ts index b9bbc020720d6..f730a520c291f 100644 --- a/clients/client-ecr-public/src/commands/PutImageCommand.ts +++ b/clients/client-ecr-public/src/commands/PutImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutImageRequest, PutImageResponse } from "../models/models_0"; +import type { PutImageRequest, PutImageResponse } from "../models/models_0"; import { PutImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/PutRegistryCatalogDataCommand.ts b/clients/client-ecr-public/src/commands/PutRegistryCatalogDataCommand.ts index 939790658ea6d..4ba827bdf4ddb 100644 --- a/clients/client-ecr-public/src/commands/PutRegistryCatalogDataCommand.ts +++ b/clients/client-ecr-public/src/commands/PutRegistryCatalogDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRegistryCatalogDataRequest, PutRegistryCatalogDataResponse } from "../models/models_0"; +import type { PutRegistryCatalogDataRequest, PutRegistryCatalogDataResponse } from "../models/models_0"; import { PutRegistryCatalogData } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/PutRepositoryCatalogDataCommand.ts b/clients/client-ecr-public/src/commands/PutRepositoryCatalogDataCommand.ts index f48df1b30cc08..683a5545f5be2 100644 --- a/clients/client-ecr-public/src/commands/PutRepositoryCatalogDataCommand.ts +++ b/clients/client-ecr-public/src/commands/PutRepositoryCatalogDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRepositoryCatalogDataRequest, PutRepositoryCatalogDataResponse } from "../models/models_0"; +import type { PutRepositoryCatalogDataRequest, PutRepositoryCatalogDataResponse } from "../models/models_0"; import { PutRepositoryCatalogData } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/SetRepositoryPolicyCommand.ts b/clients/client-ecr-public/src/commands/SetRepositoryPolicyCommand.ts index 594214dbe0203..1c220ad0de812 100644 --- a/clients/client-ecr-public/src/commands/SetRepositoryPolicyCommand.ts +++ b/clients/client-ecr-public/src/commands/SetRepositoryPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetRepositoryPolicyRequest, SetRepositoryPolicyResponse } from "../models/models_0"; +import type { SetRepositoryPolicyRequest, SetRepositoryPolicyResponse } from "../models/models_0"; import { SetRepositoryPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/TagResourceCommand.ts b/clients/client-ecr-public/src/commands/TagResourceCommand.ts index 8d40cc3083e59..83081250bc639 100644 --- a/clients/client-ecr-public/src/commands/TagResourceCommand.ts +++ b/clients/client-ecr-public/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/UntagResourceCommand.ts b/clients/client-ecr-public/src/commands/UntagResourceCommand.ts index 3f86a8df3b584..7f17e6218a1de 100644 --- a/clients/client-ecr-public/src/commands/UntagResourceCommand.ts +++ b/clients/client-ecr-public/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/commands/UploadLayerPartCommand.ts b/clients/client-ecr-public/src/commands/UploadLayerPartCommand.ts index cdc3116719649..f8a6c37847e58 100644 --- a/clients/client-ecr-public/src/commands/UploadLayerPartCommand.ts +++ b/clients/client-ecr-public/src/commands/UploadLayerPartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; +import type { ECRPUBLICClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRPUBLICClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UploadLayerPartRequest, UploadLayerPartResponse } from "../models/models_0"; +import type { UploadLayerPartRequest, UploadLayerPartResponse } from "../models/models_0"; import { UploadLayerPart } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr-public/src/endpoint/EndpointParameters.ts b/clients/client-ecr-public/src/endpoint/EndpointParameters.ts index 004cea841ea79..1118109160fa2 100644 --- a/clients/client-ecr-public/src/endpoint/EndpointParameters.ts +++ b/clients/client-ecr-public/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ecr-public/src/endpoint/endpointResolver.ts b/clients/client-ecr-public/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ecr-public/src/endpoint/endpointResolver.ts +++ b/clients/client-ecr-public/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ecr-public/src/extensionConfiguration.ts b/clients/client-ecr-public/src/extensionConfiguration.ts index b5542dcabc75d..81df4cd01893b 100644 --- a/clients/client-ecr-public/src/extensionConfiguration.ts +++ b/clients/client-ecr-public/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ecr-public/src/models/ECRPUBLICServiceException.ts b/clients/client-ecr-public/src/models/ECRPUBLICServiceException.ts index b7ab20f87fd7b..0e5b453857fad 100644 --- a/clients/client-ecr-public/src/models/ECRPUBLICServiceException.ts +++ b/clients/client-ecr-public/src/models/ECRPUBLICServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ecr-public/src/models/errors.ts b/clients/client-ecr-public/src/models/errors.ts index 5222125382024..a139af556e1c9 100644 --- a/clients/client-ecr-public/src/models/errors.ts +++ b/clients/client-ecr-public/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ECRPUBLICServiceException as __BaseException } from "./ECRPUBLICServiceException"; diff --git a/clients/client-ecr-public/src/pagination/DescribeImageTagsPaginator.ts b/clients/client-ecr-public/src/pagination/DescribeImageTagsPaginator.ts index 3b2754cf22aa4..f04de32273e04 100644 --- a/clients/client-ecr-public/src/pagination/DescribeImageTagsPaginator.ts +++ b/clients/client-ecr-public/src/pagination/DescribeImageTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImageTagsCommand, diff --git a/clients/client-ecr-public/src/pagination/DescribeImagesPaginator.ts b/clients/client-ecr-public/src/pagination/DescribeImagesPaginator.ts index 009dd28f6e670..4623a00b20031 100644 --- a/clients/client-ecr-public/src/pagination/DescribeImagesPaginator.ts +++ b/clients/client-ecr-public/src/pagination/DescribeImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImagesCommand, diff --git a/clients/client-ecr-public/src/pagination/DescribeRegistriesPaginator.ts b/clients/client-ecr-public/src/pagination/DescribeRegistriesPaginator.ts index 23ce2d03e9599..475bed76442f4 100644 --- a/clients/client-ecr-public/src/pagination/DescribeRegistriesPaginator.ts +++ b/clients/client-ecr-public/src/pagination/DescribeRegistriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRegistriesCommand, diff --git a/clients/client-ecr-public/src/pagination/DescribeRepositoriesPaginator.ts b/clients/client-ecr-public/src/pagination/DescribeRepositoriesPaginator.ts index 255626bb393c9..adb41122e0ab3 100644 --- a/clients/client-ecr-public/src/pagination/DescribeRepositoriesPaginator.ts +++ b/clients/client-ecr-public/src/pagination/DescribeRepositoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRepositoriesCommand, diff --git a/clients/client-ecr-public/src/pagination/Interfaces.ts b/clients/client-ecr-public/src/pagination/Interfaces.ts index 8de0f6a3a2647..0f2ff68800d8d 100644 --- a/clients/client-ecr-public/src/pagination/Interfaces.ts +++ b/clients/client-ecr-public/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ECRPUBLICClient } from "../ECRPUBLICClient"; diff --git a/clients/client-ecr-public/src/runtimeConfig.browser.ts b/clients/client-ecr-public/src/runtimeConfig.browser.ts index ef9f369bdf4fd..38cb806087699 100644 --- a/clients/client-ecr-public/src/runtimeConfig.browser.ts +++ b/clients/client-ecr-public/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ECRPUBLICClientConfig } from "./ECRPUBLICClient"; + +import type { ECRPUBLICClientConfig } from "./ECRPUBLICClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ecr-public/src/runtimeConfig.native.ts b/clients/client-ecr-public/src/runtimeConfig.native.ts index 1ed4ac586c722..688d4439bd4ac 100644 --- a/clients/client-ecr-public/src/runtimeConfig.native.ts +++ b/clients/client-ecr-public/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ECRPUBLICClientConfig } from "./ECRPUBLICClient"; +import type { ECRPUBLICClientConfig } from "./ECRPUBLICClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ecr-public/src/runtimeConfig.shared.ts b/clients/client-ecr-public/src/runtimeConfig.shared.ts index 21eba9f496ba1..f2d32a526c45d 100644 --- a/clients/client-ecr-public/src/runtimeConfig.shared.ts +++ b/clients/client-ecr-public/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultECRPUBLICHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ECRPUBLICClientConfig } from "./ECRPUBLICClient"; +import type { ECRPUBLICClientConfig } from "./ECRPUBLICClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-ecr-public/src/runtimeConfig.ts b/clients/client-ecr-public/src/runtimeConfig.ts index b2a7120a17c8d..59f9f10cf60bc 100644 --- a/clients/client-ecr-public/src/runtimeConfig.ts +++ b/clients/client-ecr-public/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ECRPUBLICClientConfig } from "./ECRPUBLICClient"; + +import type { ECRPUBLICClientConfig } from "./ECRPUBLICClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ecr-public/src/runtimeExtensions.ts b/clients/client-ecr-public/src/runtimeExtensions.ts index 0bcb7355c19af..e241d87bbffc0 100644 --- a/clients/client-ecr-public/src/runtimeExtensions.ts +++ b/clients/client-ecr-public/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ECRPUBLICExtensionConfiguration } from "./extensionConfiguration"; +import type { ECRPUBLICExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ecr-public/src/schemas/schemas_0.ts b/clients/client-ecr-public/src/schemas/schemas_0.ts index 6026e671f62ca..e8285213eb86e 100644 --- a/clients/client-ecr-public/src/schemas/schemas_0.ts +++ b/clients/client-ecr-public/src/schemas/schemas_0.ts @@ -196,7 +196,7 @@ const n0 = "com.amazonaws.ecrpublic"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ECRPUBLICServiceException as __ECRPUBLICServiceException } from "../models/ECRPUBLICServiceException"; import { diff --git a/clients/client-ecr/package.json b/clients/client-ecr/package.json index fba58c7fee706..abdd8a5b505d0 100644 --- a/clients/client-ecr/package.json +++ b/clients/client-ecr/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ecr/src/ECR.ts b/clients/client-ecr/src/ECR.ts index 585557e1ec291..dd8f796581aae 100644 --- a/clients/client-ecr/src/ECR.ts +++ b/clients/client-ecr/src/ECR.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchCheckLayerAvailabilityCommand, @@ -280,7 +280,7 @@ import { ValidatePullThroughCacheRuleCommandInput, ValidatePullThroughCacheRuleCommandOutput, } from "./commands/ValidatePullThroughCacheRuleCommand"; -import { ECRClient, ECRClientConfig } from "./ECRClient"; +import { ECRClient } from "./ECRClient"; const commands = { BatchCheckLayerAvailabilityCommand, diff --git a/clients/client-ecr/src/ECRClient.ts b/clients/client-ecr/src/ECRClient.ts index 3ac5eb4903c4e..988535bdb7eae 100644 --- a/clients/client-ecr/src/ECRClient.ts +++ b/clients/client-ecr/src/ECRClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultECRHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -239,7 +248,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ecr/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ecr/src/auth/httpAuthExtensionConfiguration.ts index 5804964cd2041..f692d887bb1e9 100644 --- a/clients/client-ecr/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ecr/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ECRHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ECRHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ecr/src/auth/httpAuthSchemeProvider.ts b/clients/client-ecr/src/auth/httpAuthSchemeProvider.ts index 80e54e6cbe8dc..a0d86e6287df5 100644 --- a/clients/client-ecr/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ecr/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ECRClientConfig, ECRClientResolvedConfig } from "../ECRClient"; +import { type ECRClientResolvedConfig, ECRClientConfig } from "../ECRClient"; /** * @internal diff --git a/clients/client-ecr/src/commands/BatchCheckLayerAvailabilityCommand.ts b/clients/client-ecr/src/commands/BatchCheckLayerAvailabilityCommand.ts index e83c792c3a8ac..4b2cdb180dc52 100644 --- a/clients/client-ecr/src/commands/BatchCheckLayerAvailabilityCommand.ts +++ b/clients/client-ecr/src/commands/BatchCheckLayerAvailabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCheckLayerAvailabilityRequest, BatchCheckLayerAvailabilityResponse } from "../models/models_0"; +import type { BatchCheckLayerAvailabilityRequest, BatchCheckLayerAvailabilityResponse } from "../models/models_0"; import { BatchCheckLayerAvailability } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/BatchDeleteImageCommand.ts b/clients/client-ecr/src/commands/BatchDeleteImageCommand.ts index 28e1a5883522a..0e0b8b754c976 100644 --- a/clients/client-ecr/src/commands/BatchDeleteImageCommand.ts +++ b/clients/client-ecr/src/commands/BatchDeleteImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteImageRequest, BatchDeleteImageResponse } from "../models/models_0"; +import type { BatchDeleteImageRequest, BatchDeleteImageResponse } from "../models/models_0"; import { BatchDeleteImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/BatchGetImageCommand.ts b/clients/client-ecr/src/commands/BatchGetImageCommand.ts index 2df5cabf3d5ca..85ce23f51fbb4 100644 --- a/clients/client-ecr/src/commands/BatchGetImageCommand.ts +++ b/clients/client-ecr/src/commands/BatchGetImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetImageRequest, BatchGetImageResponse } from "../models/models_0"; +import type { BatchGetImageRequest, BatchGetImageResponse } from "../models/models_0"; import { BatchGetImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/BatchGetRepositoryScanningConfigurationCommand.ts b/clients/client-ecr/src/commands/BatchGetRepositoryScanningConfigurationCommand.ts index a30cf08e28ed2..bd737d2548f37 100644 --- a/clients/client-ecr/src/commands/BatchGetRepositoryScanningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/BatchGetRepositoryScanningConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchGetRepositoryScanningConfigurationRequest, BatchGetRepositoryScanningConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-ecr/src/commands/CompleteLayerUploadCommand.ts b/clients/client-ecr/src/commands/CompleteLayerUploadCommand.ts index 524819d61b03b..049ad16d1492a 100644 --- a/clients/client-ecr/src/commands/CompleteLayerUploadCommand.ts +++ b/clients/client-ecr/src/commands/CompleteLayerUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteLayerUploadRequest, CompleteLayerUploadResponse } from "../models/models_0"; +import type { CompleteLayerUploadRequest, CompleteLayerUploadResponse } from "../models/models_0"; import { CompleteLayerUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/CreatePullThroughCacheRuleCommand.ts b/clients/client-ecr/src/commands/CreatePullThroughCacheRuleCommand.ts index e786528588d2b..0b0a50928b539 100644 --- a/clients/client-ecr/src/commands/CreatePullThroughCacheRuleCommand.ts +++ b/clients/client-ecr/src/commands/CreatePullThroughCacheRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePullThroughCacheRuleRequest, CreatePullThroughCacheRuleResponse } from "../models/models_0"; +import type { CreatePullThroughCacheRuleRequest, CreatePullThroughCacheRuleResponse } from "../models/models_0"; import { CreatePullThroughCacheRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/CreateRepositoryCommand.ts b/clients/client-ecr/src/commands/CreateRepositoryCommand.ts index a75246b1c582e..ddab7d42558c4 100644 --- a/clients/client-ecr/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-ecr/src/commands/CreateRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRepositoryRequest, CreateRepositoryResponse } from "../models/models_0"; +import type { CreateRepositoryRequest, CreateRepositoryResponse } from "../models/models_0"; import { CreateRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/CreateRepositoryCreationTemplateCommand.ts b/clients/client-ecr/src/commands/CreateRepositoryCreationTemplateCommand.ts index e988762308fbf..d334f67562075 100644 --- a/clients/client-ecr/src/commands/CreateRepositoryCreationTemplateCommand.ts +++ b/clients/client-ecr/src/commands/CreateRepositoryCreationTemplateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRepositoryCreationTemplateRequest, CreateRepositoryCreationTemplateResponse } from "../models/models_0"; +import type { + CreateRepositoryCreationTemplateRequest, + CreateRepositoryCreationTemplateResponse, +} from "../models/models_0"; import { CreateRepositoryCreationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-ecr/src/commands/DeleteLifecyclePolicyCommand.ts index c01a0ee345f80..eec6d9543c2e9 100644 --- a/clients/client-ecr/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-ecr/src/commands/DeleteLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0"; +import type { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0"; import { DeleteLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DeletePullThroughCacheRuleCommand.ts b/clients/client-ecr/src/commands/DeletePullThroughCacheRuleCommand.ts index 489e50d25f4bd..dbe01633ceb3c 100644 --- a/clients/client-ecr/src/commands/DeletePullThroughCacheRuleCommand.ts +++ b/clients/client-ecr/src/commands/DeletePullThroughCacheRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePullThroughCacheRuleRequest, DeletePullThroughCacheRuleResponse } from "../models/models_0"; +import type { DeletePullThroughCacheRuleRequest, DeletePullThroughCacheRuleResponse } from "../models/models_0"; import { DeletePullThroughCacheRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DeleteRegistryPolicyCommand.ts b/clients/client-ecr/src/commands/DeleteRegistryPolicyCommand.ts index 4ff4a113d052a..f4431b77a83f8 100644 --- a/clients/client-ecr/src/commands/DeleteRegistryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/DeleteRegistryPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegistryPolicyRequest, DeleteRegistryPolicyResponse } from "../models/models_0"; +import type { DeleteRegistryPolicyRequest, DeleteRegistryPolicyResponse } from "../models/models_0"; import { DeleteRegistryPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DeleteRepositoryCommand.ts b/clients/client-ecr/src/commands/DeleteRepositoryCommand.ts index 73ecd3b87985a..604d99f70181d 100644 --- a/clients/client-ecr/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-ecr/src/commands/DeleteRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryRequest, DeleteRepositoryResponse } from "../models/models_0"; +import type { DeleteRepositoryRequest, DeleteRepositoryResponse } from "../models/models_0"; import { DeleteRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DeleteRepositoryCreationTemplateCommand.ts b/clients/client-ecr/src/commands/DeleteRepositoryCreationTemplateCommand.ts index 716e05ab90b89..e86517b5d5d74 100644 --- a/clients/client-ecr/src/commands/DeleteRepositoryCreationTemplateCommand.ts +++ b/clients/client-ecr/src/commands/DeleteRepositoryCreationTemplateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryCreationTemplateRequest, DeleteRepositoryCreationTemplateResponse } from "../models/models_0"; +import type { + DeleteRepositoryCreationTemplateRequest, + DeleteRepositoryCreationTemplateResponse, +} from "../models/models_0"; import { DeleteRepositoryCreationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DeleteRepositoryPolicyCommand.ts b/clients/client-ecr/src/commands/DeleteRepositoryPolicyCommand.ts index a26383ab48de1..e834decaa7765 100644 --- a/clients/client-ecr/src/commands/DeleteRepositoryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/DeleteRepositoryPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryPolicyRequest, DeleteRepositoryPolicyResponse } from "../models/models_0"; +import type { DeleteRepositoryPolicyRequest, DeleteRepositoryPolicyResponse } from "../models/models_0"; import { DeleteRepositoryPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DeleteSigningConfigurationCommand.ts b/clients/client-ecr/src/commands/DeleteSigningConfigurationCommand.ts index dc6484f004d55..1ae73611cf731 100644 --- a/clients/client-ecr/src/commands/DeleteSigningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/DeleteSigningConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSigningConfigurationRequest, DeleteSigningConfigurationResponse } from "../models/models_0"; +import type { DeleteSigningConfigurationRequest, DeleteSigningConfigurationResponse } from "../models/models_0"; import { DeleteSigningConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DeregisterPullTimeUpdateExclusionCommand.ts b/clients/client-ecr/src/commands/DeregisterPullTimeUpdateExclusionCommand.ts index bc2d2b6a4648b..a91614c44b935 100644 --- a/clients/client-ecr/src/commands/DeregisterPullTimeUpdateExclusionCommand.ts +++ b/clients/client-ecr/src/commands/DeregisterPullTimeUpdateExclusionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterPullTimeUpdateExclusionRequest, DeregisterPullTimeUpdateExclusionResponse, } from "../models/models_0"; diff --git a/clients/client-ecr/src/commands/DescribeImageReplicationStatusCommand.ts b/clients/client-ecr/src/commands/DescribeImageReplicationStatusCommand.ts index ef852ab52c854..67a164532365d 100644 --- a/clients/client-ecr/src/commands/DescribeImageReplicationStatusCommand.ts +++ b/clients/client-ecr/src/commands/DescribeImageReplicationStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageReplicationStatusRequest, DescribeImageReplicationStatusResponse } from "../models/models_0"; +import type { DescribeImageReplicationStatusRequest, DescribeImageReplicationStatusResponse } from "../models/models_0"; import { DescribeImageReplicationStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DescribeImageScanFindingsCommand.ts b/clients/client-ecr/src/commands/DescribeImageScanFindingsCommand.ts index 6f5430f76de54..be3425b0ed26a 100644 --- a/clients/client-ecr/src/commands/DescribeImageScanFindingsCommand.ts +++ b/clients/client-ecr/src/commands/DescribeImageScanFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageScanFindingsRequest, DescribeImageScanFindingsResponse } from "../models/models_0"; +import type { DescribeImageScanFindingsRequest, DescribeImageScanFindingsResponse } from "../models/models_0"; import { DescribeImageScanFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DescribeImageSigningStatusCommand.ts b/clients/client-ecr/src/commands/DescribeImageSigningStatusCommand.ts index 409c51335610c..a3836feffbaed 100644 --- a/clients/client-ecr/src/commands/DescribeImageSigningStatusCommand.ts +++ b/clients/client-ecr/src/commands/DescribeImageSigningStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageSigningStatusRequest, DescribeImageSigningStatusResponse } from "../models/models_0"; +import type { DescribeImageSigningStatusRequest, DescribeImageSigningStatusResponse } from "../models/models_0"; import { DescribeImageSigningStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DescribeImagesCommand.ts b/clients/client-ecr/src/commands/DescribeImagesCommand.ts index 7154bcc7198d3..8816d4bcd4a1f 100644 --- a/clients/client-ecr/src/commands/DescribeImagesCommand.ts +++ b/clients/client-ecr/src/commands/DescribeImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImagesRequest, DescribeImagesResponse } from "../models/models_0"; +import type { DescribeImagesRequest, DescribeImagesResponse } from "../models/models_0"; import { DescribeImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DescribePullThroughCacheRulesCommand.ts b/clients/client-ecr/src/commands/DescribePullThroughCacheRulesCommand.ts index 26b7f5795d10c..257e3ce220c97 100644 --- a/clients/client-ecr/src/commands/DescribePullThroughCacheRulesCommand.ts +++ b/clients/client-ecr/src/commands/DescribePullThroughCacheRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePullThroughCacheRulesRequest, DescribePullThroughCacheRulesResponse } from "../models/models_0"; +import type { DescribePullThroughCacheRulesRequest, DescribePullThroughCacheRulesResponse } from "../models/models_0"; import { DescribePullThroughCacheRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DescribeRegistryCommand.ts b/clients/client-ecr/src/commands/DescribeRegistryCommand.ts index 4977f52a56606..64fa74e166bf8 100644 --- a/clients/client-ecr/src/commands/DescribeRegistryCommand.ts +++ b/clients/client-ecr/src/commands/DescribeRegistryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegistryRequest, DescribeRegistryResponse } from "../models/models_0"; +import type { DescribeRegistryRequest, DescribeRegistryResponse } from "../models/models_0"; import { DescribeRegistry } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DescribeRepositoriesCommand.ts b/clients/client-ecr/src/commands/DescribeRepositoriesCommand.ts index 3b44c10f4cd1b..7ca1c928fde41 100644 --- a/clients/client-ecr/src/commands/DescribeRepositoriesCommand.ts +++ b/clients/client-ecr/src/commands/DescribeRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRepositoriesRequest, DescribeRepositoriesResponse } from "../models/models_0"; +import type { DescribeRepositoriesRequest, DescribeRepositoriesResponse } from "../models/models_0"; import { DescribeRepositories } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/DescribeRepositoryCreationTemplatesCommand.ts b/clients/client-ecr/src/commands/DescribeRepositoryCreationTemplatesCommand.ts index 28b17751ba57c..e426da649346b 100644 --- a/clients/client-ecr/src/commands/DescribeRepositoryCreationTemplatesCommand.ts +++ b/clients/client-ecr/src/commands/DescribeRepositoryCreationTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeRepositoryCreationTemplatesRequest, DescribeRepositoryCreationTemplatesResponse, } from "../models/models_0"; diff --git a/clients/client-ecr/src/commands/GetAccountSettingCommand.ts b/clients/client-ecr/src/commands/GetAccountSettingCommand.ts index 8695a97b63de9..c2a1d9b1b17da 100644 --- a/clients/client-ecr/src/commands/GetAccountSettingCommand.ts +++ b/clients/client-ecr/src/commands/GetAccountSettingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountSettingRequest, GetAccountSettingResponse } from "../models/models_0"; +import type { GetAccountSettingRequest, GetAccountSettingResponse } from "../models/models_0"; import { GetAccountSetting } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/GetAuthorizationTokenCommand.ts b/clients/client-ecr/src/commands/GetAuthorizationTokenCommand.ts index f4bafa4ae9c6d..56019a62a8c01 100644 --- a/clients/client-ecr/src/commands/GetAuthorizationTokenCommand.ts +++ b/clients/client-ecr/src/commands/GetAuthorizationTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAuthorizationTokenRequest, GetAuthorizationTokenResponse } from "../models/models_0"; +import type { GetAuthorizationTokenRequest, GetAuthorizationTokenResponse } from "../models/models_0"; import { GetAuthorizationToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/GetDownloadUrlForLayerCommand.ts b/clients/client-ecr/src/commands/GetDownloadUrlForLayerCommand.ts index e9815e335b3f6..dd49818c38761 100644 --- a/clients/client-ecr/src/commands/GetDownloadUrlForLayerCommand.ts +++ b/clients/client-ecr/src/commands/GetDownloadUrlForLayerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDownloadUrlForLayerRequest, GetDownloadUrlForLayerResponse } from "../models/models_0"; +import type { GetDownloadUrlForLayerRequest, GetDownloadUrlForLayerResponse } from "../models/models_0"; import { GetDownloadUrlForLayer } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/GetLifecyclePolicyCommand.ts b/clients/client-ecr/src/commands/GetLifecyclePolicyCommand.ts index edf2b9d20c4c3..86c17bc13f6fb 100644 --- a/clients/client-ecr/src/commands/GetLifecyclePolicyCommand.ts +++ b/clients/client-ecr/src/commands/GetLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLifecyclePolicyRequest, GetLifecyclePolicyResponse } from "../models/models_0"; +import type { GetLifecyclePolicyRequest, GetLifecyclePolicyResponse } from "../models/models_0"; import { GetLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/GetLifecyclePolicyPreviewCommand.ts b/clients/client-ecr/src/commands/GetLifecyclePolicyPreviewCommand.ts index 56a1b65e8d612..86fafa9e3e2e3 100644 --- a/clients/client-ecr/src/commands/GetLifecyclePolicyPreviewCommand.ts +++ b/clients/client-ecr/src/commands/GetLifecyclePolicyPreviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLifecyclePolicyPreviewRequest, GetLifecyclePolicyPreviewResponse } from "../models/models_0"; +import type { GetLifecyclePolicyPreviewRequest, GetLifecyclePolicyPreviewResponse } from "../models/models_0"; import { GetLifecyclePolicyPreview } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/GetRegistryPolicyCommand.ts b/clients/client-ecr/src/commands/GetRegistryPolicyCommand.ts index fc88e6f44581d..bbd1ae9898e28 100644 --- a/clients/client-ecr/src/commands/GetRegistryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/GetRegistryPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRegistryPolicyRequest, GetRegistryPolicyResponse } from "../models/models_0"; +import type { GetRegistryPolicyRequest, GetRegistryPolicyResponse } from "../models/models_0"; import { GetRegistryPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/GetRegistryScanningConfigurationCommand.ts b/clients/client-ecr/src/commands/GetRegistryScanningConfigurationCommand.ts index 8dab7ded7f38a..72a9cc4b308fe 100644 --- a/clients/client-ecr/src/commands/GetRegistryScanningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/GetRegistryScanningConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRegistryScanningConfigurationRequest, GetRegistryScanningConfigurationResponse } from "../models/models_0"; +import type { + GetRegistryScanningConfigurationRequest, + GetRegistryScanningConfigurationResponse, +} from "../models/models_0"; import { GetRegistryScanningConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/GetRepositoryPolicyCommand.ts b/clients/client-ecr/src/commands/GetRepositoryPolicyCommand.ts index 51d97f5a71c01..22d772a16287d 100644 --- a/clients/client-ecr/src/commands/GetRepositoryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/GetRepositoryPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryPolicyRequest, GetRepositoryPolicyResponse } from "../models/models_0"; +import type { GetRepositoryPolicyRequest, GetRepositoryPolicyResponse } from "../models/models_0"; import { GetRepositoryPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/GetSigningConfigurationCommand.ts b/clients/client-ecr/src/commands/GetSigningConfigurationCommand.ts index 107af9a0bbbca..d1a98de5105fd 100644 --- a/clients/client-ecr/src/commands/GetSigningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/GetSigningConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSigningConfigurationRequest, GetSigningConfigurationResponse } from "../models/models_0"; +import type { GetSigningConfigurationRequest, GetSigningConfigurationResponse } from "../models/models_0"; import { GetSigningConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/InitiateLayerUploadCommand.ts b/clients/client-ecr/src/commands/InitiateLayerUploadCommand.ts index 1220e8b0a18ec..64cfdbe166399 100644 --- a/clients/client-ecr/src/commands/InitiateLayerUploadCommand.ts +++ b/clients/client-ecr/src/commands/InitiateLayerUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InitiateLayerUploadRequest, InitiateLayerUploadResponse } from "../models/models_0"; +import type { InitiateLayerUploadRequest, InitiateLayerUploadResponse } from "../models/models_0"; import { InitiateLayerUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/ListImageReferrersCommand.ts b/clients/client-ecr/src/commands/ListImageReferrersCommand.ts index d7b1c4609cb4c..8dfb70634af9e 100644 --- a/clients/client-ecr/src/commands/ListImageReferrersCommand.ts +++ b/clients/client-ecr/src/commands/ListImageReferrersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImageReferrersRequest, ListImageReferrersResponse } from "../models/models_0"; +import type { ListImageReferrersRequest, ListImageReferrersResponse } from "../models/models_0"; import { ListImageReferrers } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/ListImagesCommand.ts b/clients/client-ecr/src/commands/ListImagesCommand.ts index dee52d360bba7..7660f93067812 100644 --- a/clients/client-ecr/src/commands/ListImagesCommand.ts +++ b/clients/client-ecr/src/commands/ListImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImagesRequest, ListImagesResponse } from "../models/models_0"; +import type { ListImagesRequest, ListImagesResponse } from "../models/models_0"; import { ListImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/ListPullTimeUpdateExclusionsCommand.ts b/clients/client-ecr/src/commands/ListPullTimeUpdateExclusionsCommand.ts index 9784cf6bad01b..b512ff205cf26 100644 --- a/clients/client-ecr/src/commands/ListPullTimeUpdateExclusionsCommand.ts +++ b/clients/client-ecr/src/commands/ListPullTimeUpdateExclusionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPullTimeUpdateExclusionsRequest, ListPullTimeUpdateExclusionsResponse } from "../models/models_0"; +import type { ListPullTimeUpdateExclusionsRequest, ListPullTimeUpdateExclusionsResponse } from "../models/models_0"; import { ListPullTimeUpdateExclusions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/ListTagsForResourceCommand.ts b/clients/client-ecr/src/commands/ListTagsForResourceCommand.ts index 82878591b268c..707d990189f5c 100644 --- a/clients/client-ecr/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ecr/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/PutAccountSettingCommand.ts b/clients/client-ecr/src/commands/PutAccountSettingCommand.ts index 3658cb13e773b..608ee4966944c 100644 --- a/clients/client-ecr/src/commands/PutAccountSettingCommand.ts +++ b/clients/client-ecr/src/commands/PutAccountSettingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountSettingRequest, PutAccountSettingResponse } from "../models/models_0"; +import type { PutAccountSettingRequest, PutAccountSettingResponse } from "../models/models_0"; import { PutAccountSetting } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/PutImageCommand.ts b/clients/client-ecr/src/commands/PutImageCommand.ts index a007fafaa853e..6a127568a46bb 100644 --- a/clients/client-ecr/src/commands/PutImageCommand.ts +++ b/clients/client-ecr/src/commands/PutImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutImageRequest, PutImageResponse } from "../models/models_0"; +import type { PutImageRequest, PutImageResponse } from "../models/models_0"; import { PutImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/PutImageScanningConfigurationCommand.ts b/clients/client-ecr/src/commands/PutImageScanningConfigurationCommand.ts index 5a5f8437c4e6e..2791921e3d31b 100644 --- a/clients/client-ecr/src/commands/PutImageScanningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/PutImageScanningConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutImageScanningConfigurationRequest, PutImageScanningConfigurationResponse } from "../models/models_0"; +import type { PutImageScanningConfigurationRequest, PutImageScanningConfigurationResponse } from "../models/models_0"; import { PutImageScanningConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/PutImageTagMutabilityCommand.ts b/clients/client-ecr/src/commands/PutImageTagMutabilityCommand.ts index ce0ef97ba3ee8..52022539a995a 100644 --- a/clients/client-ecr/src/commands/PutImageTagMutabilityCommand.ts +++ b/clients/client-ecr/src/commands/PutImageTagMutabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutImageTagMutabilityRequest, PutImageTagMutabilityResponse } from "../models/models_0"; +import type { PutImageTagMutabilityRequest, PutImageTagMutabilityResponse } from "../models/models_0"; import { PutImageTagMutability } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/PutLifecyclePolicyCommand.ts b/clients/client-ecr/src/commands/PutLifecyclePolicyCommand.ts index 1db9ddd4c821e..f1918d4e16107 100644 --- a/clients/client-ecr/src/commands/PutLifecyclePolicyCommand.ts +++ b/clients/client-ecr/src/commands/PutLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutLifecyclePolicyRequest, PutLifecyclePolicyResponse } from "../models/models_0"; +import type { PutLifecyclePolicyRequest, PutLifecyclePolicyResponse } from "../models/models_0"; import { PutLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/PutRegistryPolicyCommand.ts b/clients/client-ecr/src/commands/PutRegistryPolicyCommand.ts index 419a49251ce45..5103089e1fe9a 100644 --- a/clients/client-ecr/src/commands/PutRegistryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/PutRegistryPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRegistryPolicyRequest, PutRegistryPolicyResponse } from "../models/models_0"; +import type { PutRegistryPolicyRequest, PutRegistryPolicyResponse } from "../models/models_0"; import { PutRegistryPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/PutRegistryScanningConfigurationCommand.ts b/clients/client-ecr/src/commands/PutRegistryScanningConfigurationCommand.ts index 7d2ca320562ba..834a7573fbb10 100644 --- a/clients/client-ecr/src/commands/PutRegistryScanningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/PutRegistryScanningConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRegistryScanningConfigurationRequest, PutRegistryScanningConfigurationResponse } from "../models/models_0"; +import type { + PutRegistryScanningConfigurationRequest, + PutRegistryScanningConfigurationResponse, +} from "../models/models_0"; import { PutRegistryScanningConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/PutReplicationConfigurationCommand.ts b/clients/client-ecr/src/commands/PutReplicationConfigurationCommand.ts index c95e5842889f9..2c040294d1154 100644 --- a/clients/client-ecr/src/commands/PutReplicationConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/PutReplicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutReplicationConfigurationRequest, PutReplicationConfigurationResponse } from "../models/models_0"; +import type { PutReplicationConfigurationRequest, PutReplicationConfigurationResponse } from "../models/models_0"; import { PutReplicationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/PutSigningConfigurationCommand.ts b/clients/client-ecr/src/commands/PutSigningConfigurationCommand.ts index 52e75f71ee299..6c16ff2b5a2c6 100644 --- a/clients/client-ecr/src/commands/PutSigningConfigurationCommand.ts +++ b/clients/client-ecr/src/commands/PutSigningConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSigningConfigurationRequest, PutSigningConfigurationResponse } from "../models/models_0"; +import type { PutSigningConfigurationRequest, PutSigningConfigurationResponse } from "../models/models_0"; import { PutSigningConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/RegisterPullTimeUpdateExclusionCommand.ts b/clients/client-ecr/src/commands/RegisterPullTimeUpdateExclusionCommand.ts index 60ec313c095cc..9192362fc5266 100644 --- a/clients/client-ecr/src/commands/RegisterPullTimeUpdateExclusionCommand.ts +++ b/clients/client-ecr/src/commands/RegisterPullTimeUpdateExclusionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterPullTimeUpdateExclusionRequest, RegisterPullTimeUpdateExclusionResponse } from "../models/models_0"; +import type { + RegisterPullTimeUpdateExclusionRequest, + RegisterPullTimeUpdateExclusionResponse, +} from "../models/models_0"; import { RegisterPullTimeUpdateExclusion } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/SetRepositoryPolicyCommand.ts b/clients/client-ecr/src/commands/SetRepositoryPolicyCommand.ts index c011d6891e6e3..f164230155d01 100644 --- a/clients/client-ecr/src/commands/SetRepositoryPolicyCommand.ts +++ b/clients/client-ecr/src/commands/SetRepositoryPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetRepositoryPolicyRequest, SetRepositoryPolicyResponse } from "../models/models_0"; +import type { SetRepositoryPolicyRequest, SetRepositoryPolicyResponse } from "../models/models_0"; import { SetRepositoryPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/StartImageScanCommand.ts b/clients/client-ecr/src/commands/StartImageScanCommand.ts index a225755c35ed3..9f94e3cb7aa10 100644 --- a/clients/client-ecr/src/commands/StartImageScanCommand.ts +++ b/clients/client-ecr/src/commands/StartImageScanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartImageScanRequest, StartImageScanResponse } from "../models/models_0"; +import type { StartImageScanRequest, StartImageScanResponse } from "../models/models_0"; import { StartImageScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/StartLifecyclePolicyPreviewCommand.ts b/clients/client-ecr/src/commands/StartLifecyclePolicyPreviewCommand.ts index 1665a73366e5d..0498dcbd0b06a 100644 --- a/clients/client-ecr/src/commands/StartLifecyclePolicyPreviewCommand.ts +++ b/clients/client-ecr/src/commands/StartLifecyclePolicyPreviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartLifecyclePolicyPreviewRequest, StartLifecyclePolicyPreviewResponse } from "../models/models_0"; +import type { StartLifecyclePolicyPreviewRequest, StartLifecyclePolicyPreviewResponse } from "../models/models_0"; import { StartLifecyclePolicyPreview } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/TagResourceCommand.ts b/clients/client-ecr/src/commands/TagResourceCommand.ts index fce1b7c79b5fd..b45bf0a6551ba 100644 --- a/clients/client-ecr/src/commands/TagResourceCommand.ts +++ b/clients/client-ecr/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/UntagResourceCommand.ts b/clients/client-ecr/src/commands/UntagResourceCommand.ts index 26345e5f302e1..7731971559088 100644 --- a/clients/client-ecr/src/commands/UntagResourceCommand.ts +++ b/clients/client-ecr/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/UpdateImageStorageClassCommand.ts b/clients/client-ecr/src/commands/UpdateImageStorageClassCommand.ts index 08011532931c8..3b9f73bec283a 100644 --- a/clients/client-ecr/src/commands/UpdateImageStorageClassCommand.ts +++ b/clients/client-ecr/src/commands/UpdateImageStorageClassCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateImageStorageClassRequest, UpdateImageStorageClassResponse } from "../models/models_0"; +import type { UpdateImageStorageClassRequest, UpdateImageStorageClassResponse } from "../models/models_0"; import { UpdateImageStorageClass } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/UpdatePullThroughCacheRuleCommand.ts b/clients/client-ecr/src/commands/UpdatePullThroughCacheRuleCommand.ts index 59608b2070bfb..4cf89f45203ec 100644 --- a/clients/client-ecr/src/commands/UpdatePullThroughCacheRuleCommand.ts +++ b/clients/client-ecr/src/commands/UpdatePullThroughCacheRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePullThroughCacheRuleRequest, UpdatePullThroughCacheRuleResponse } from "../models/models_0"; +import type { UpdatePullThroughCacheRuleRequest, UpdatePullThroughCacheRuleResponse } from "../models/models_0"; import { UpdatePullThroughCacheRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/UpdateRepositoryCreationTemplateCommand.ts b/clients/client-ecr/src/commands/UpdateRepositoryCreationTemplateCommand.ts index 938c8f599e6a9..6b6216ed21f86 100644 --- a/clients/client-ecr/src/commands/UpdateRepositoryCreationTemplateCommand.ts +++ b/clients/client-ecr/src/commands/UpdateRepositoryCreationTemplateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRepositoryCreationTemplateRequest, UpdateRepositoryCreationTemplateResponse } from "../models/models_0"; +import type { + UpdateRepositoryCreationTemplateRequest, + UpdateRepositoryCreationTemplateResponse, +} from "../models/models_0"; import { UpdateRepositoryCreationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/UploadLayerPartCommand.ts b/clients/client-ecr/src/commands/UploadLayerPartCommand.ts index 52033f1d6b8eb..9c3fe14c3bce7 100644 --- a/clients/client-ecr/src/commands/UploadLayerPartCommand.ts +++ b/clients/client-ecr/src/commands/UploadLayerPartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UploadLayerPartRequest, UploadLayerPartResponse } from "../models/models_0"; +import type { UploadLayerPartRequest, UploadLayerPartResponse } from "../models/models_0"; import { UploadLayerPart } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/commands/ValidatePullThroughCacheRuleCommand.ts b/clients/client-ecr/src/commands/ValidatePullThroughCacheRuleCommand.ts index 04b9eff011418..dd53b2d02e36c 100644 --- a/clients/client-ecr/src/commands/ValidatePullThroughCacheRuleCommand.ts +++ b/clients/client-ecr/src/commands/ValidatePullThroughCacheRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; +import type { ECRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidatePullThroughCacheRuleRequest, ValidatePullThroughCacheRuleResponse } from "../models/models_0"; +import type { ValidatePullThroughCacheRuleRequest, ValidatePullThroughCacheRuleResponse } from "../models/models_0"; import { ValidatePullThroughCacheRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecr/src/endpoint/EndpointParameters.ts b/clients/client-ecr/src/endpoint/EndpointParameters.ts index 3b3be6a9e89dd..96a959b2c0fe9 100644 --- a/clients/client-ecr/src/endpoint/EndpointParameters.ts +++ b/clients/client-ecr/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ecr/src/endpoint/endpointResolver.ts b/clients/client-ecr/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ecr/src/endpoint/endpointResolver.ts +++ b/clients/client-ecr/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ecr/src/extensionConfiguration.ts b/clients/client-ecr/src/extensionConfiguration.ts index 68926c60f80a3..fa09a4c21ee2c 100644 --- a/clients/client-ecr/src/extensionConfiguration.ts +++ b/clients/client-ecr/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ecr/src/models/ECRServiceException.ts b/clients/client-ecr/src/models/ECRServiceException.ts index c4a0d73986d3f..8a7aa80ad3726 100644 --- a/clients/client-ecr/src/models/ECRServiceException.ts +++ b/clients/client-ecr/src/models/ECRServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ecr/src/models/errors.ts b/clients/client-ecr/src/models/errors.ts index e926cb8d9e4be..7836a06d6b83b 100644 --- a/clients/client-ecr/src/models/errors.ts +++ b/clients/client-ecr/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ECRServiceException as __BaseException } from "./ECRServiceException"; diff --git a/clients/client-ecr/src/pagination/DescribeImageScanFindingsPaginator.ts b/clients/client-ecr/src/pagination/DescribeImageScanFindingsPaginator.ts index f7efee0ca672e..9f3c9f95fcd09 100644 --- a/clients/client-ecr/src/pagination/DescribeImageScanFindingsPaginator.ts +++ b/clients/client-ecr/src/pagination/DescribeImageScanFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImageScanFindingsCommand, diff --git a/clients/client-ecr/src/pagination/DescribeImagesPaginator.ts b/clients/client-ecr/src/pagination/DescribeImagesPaginator.ts index ea3230722902d..1362f0ac3e414 100644 --- a/clients/client-ecr/src/pagination/DescribeImagesPaginator.ts +++ b/clients/client-ecr/src/pagination/DescribeImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeImagesCommand, diff --git a/clients/client-ecr/src/pagination/DescribePullThroughCacheRulesPaginator.ts b/clients/client-ecr/src/pagination/DescribePullThroughCacheRulesPaginator.ts index 0b9cb744432ab..31eae7a92c4b5 100644 --- a/clients/client-ecr/src/pagination/DescribePullThroughCacheRulesPaginator.ts +++ b/clients/client-ecr/src/pagination/DescribePullThroughCacheRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePullThroughCacheRulesCommand, diff --git a/clients/client-ecr/src/pagination/DescribeRepositoriesPaginator.ts b/clients/client-ecr/src/pagination/DescribeRepositoriesPaginator.ts index 4658918fc5d41..efb52104d1472 100644 --- a/clients/client-ecr/src/pagination/DescribeRepositoriesPaginator.ts +++ b/clients/client-ecr/src/pagination/DescribeRepositoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRepositoriesCommand, diff --git a/clients/client-ecr/src/pagination/DescribeRepositoryCreationTemplatesPaginator.ts b/clients/client-ecr/src/pagination/DescribeRepositoryCreationTemplatesPaginator.ts index 3cbb5ff374c24..86b158e6eb787 100644 --- a/clients/client-ecr/src/pagination/DescribeRepositoryCreationTemplatesPaginator.ts +++ b/clients/client-ecr/src/pagination/DescribeRepositoryCreationTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRepositoryCreationTemplatesCommand, diff --git a/clients/client-ecr/src/pagination/GetLifecyclePolicyPreviewPaginator.ts b/clients/client-ecr/src/pagination/GetLifecyclePolicyPreviewPaginator.ts index 9e7e023ff1e23..64d3cbb5c5c34 100644 --- a/clients/client-ecr/src/pagination/GetLifecyclePolicyPreviewPaginator.ts +++ b/clients/client-ecr/src/pagination/GetLifecyclePolicyPreviewPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetLifecyclePolicyPreviewCommand, diff --git a/clients/client-ecr/src/pagination/Interfaces.ts b/clients/client-ecr/src/pagination/Interfaces.ts index d1e97128dbea2..5981c78954a87 100644 --- a/clients/client-ecr/src/pagination/Interfaces.ts +++ b/clients/client-ecr/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ECRClient } from "../ECRClient"; diff --git a/clients/client-ecr/src/pagination/ListImagesPaginator.ts b/clients/client-ecr/src/pagination/ListImagesPaginator.ts index d1b47c2842db5..2ac8f7953a334 100644 --- a/clients/client-ecr/src/pagination/ListImagesPaginator.ts +++ b/clients/client-ecr/src/pagination/ListImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImagesCommand, ListImagesCommandInput, ListImagesCommandOutput } from "../commands/ListImagesCommand"; import { ECRClient } from "../ECRClient"; diff --git a/clients/client-ecr/src/runtimeConfig.browser.ts b/clients/client-ecr/src/runtimeConfig.browser.ts index 3c2f256c90ccf..e1e72f012cf99 100644 --- a/clients/client-ecr/src/runtimeConfig.browser.ts +++ b/clients/client-ecr/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ECRClientConfig } from "./ECRClient"; + +import type { ECRClientConfig } from "./ECRClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ecr/src/runtimeConfig.native.ts b/clients/client-ecr/src/runtimeConfig.native.ts index 0b681e1736a69..0b17806908e7c 100644 --- a/clients/client-ecr/src/runtimeConfig.native.ts +++ b/clients/client-ecr/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ECRClientConfig } from "./ECRClient"; +import type { ECRClientConfig } from "./ECRClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ecr/src/runtimeConfig.shared.ts b/clients/client-ecr/src/runtimeConfig.shared.ts index e4e3029653591..90deaeff35dc7 100644 --- a/clients/client-ecr/src/runtimeConfig.shared.ts +++ b/clients/client-ecr/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultECRHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ECRClientConfig } from "./ECRClient"; +import type { ECRClientConfig } from "./ECRClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-ecr/src/runtimeConfig.ts b/clients/client-ecr/src/runtimeConfig.ts index f9856f502791c..bfe9af1fd9942 100644 --- a/clients/client-ecr/src/runtimeConfig.ts +++ b/clients/client-ecr/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ECRClientConfig } from "./ECRClient"; + +import type { ECRClientConfig } from "./ECRClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ecr/src/runtimeExtensions.ts b/clients/client-ecr/src/runtimeExtensions.ts index 89a9b379bc748..e51621e7cbb86 100644 --- a/clients/client-ecr/src/runtimeExtensions.ts +++ b/clients/client-ecr/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ECRExtensionConfiguration } from "./extensionConfiguration"; +import type { ECRExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ecr/src/schemas/schemas_0.ts b/clients/client-ecr/src/schemas/schemas_0.ts index 5705fce6e2247..cc29c101bbacd 100644 --- a/clients/client-ecr/src/schemas/schemas_0.ts +++ b/clients/client-ecr/src/schemas/schemas_0.ts @@ -508,7 +508,7 @@ const n0 = "com.amazonaws.ecr"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ecs/package.json b/clients/client-ecs/package.json index 9bd3552325f90..25e62bc17f5ed 100644 --- a/clients/client-ecs/package.json +++ b/clients/client-ecs/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ecs/src/ECS.ts b/clients/client-ecs/src/ECS.ts index a47f86fa25a60..b80bbed53333d 100644 --- a/clients/client-ecs/src/ECS.ts +++ b/clients/client-ecs/src/ECS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateCapacityProviderCommand, @@ -302,7 +302,7 @@ import { UpdateTaskSetCommandInput, UpdateTaskSetCommandOutput, } from "./commands/UpdateTaskSetCommand"; -import { ECSClient, ECSClientConfig } from "./ECSClient"; +import { ECSClient } from "./ECSClient"; const commands = { CreateCapacityProviderCommand, diff --git a/clients/client-ecs/src/ECSClient.ts b/clients/client-ecs/src/ECSClient.ts index 457b5a500f340..5f3020c55df64 100644 --- a/clients/client-ecs/src/ECSClient.ts +++ b/clients/client-ecs/src/ECSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultECSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -239,7 +248,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ecs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ecs/src/auth/httpAuthExtensionConfiguration.ts index 7c930660df79e..d27ee8d680a1f 100644 --- a/clients/client-ecs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ecs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ECSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ECSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ecs/src/auth/httpAuthSchemeProvider.ts b/clients/client-ecs/src/auth/httpAuthSchemeProvider.ts index 07baa70bfcc73..9596aaf312be7 100644 --- a/clients/client-ecs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ecs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ECSClientConfig, ECSClientResolvedConfig } from "../ECSClient"; +import { type ECSClientResolvedConfig, ECSClientConfig } from "../ECSClient"; /** * @internal diff --git a/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts b/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts index 03429e3ec697a..a1350026cc220 100644 --- a/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts +++ b/clients/client-ecs/src/commands/CreateCapacityProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCapacityProviderRequest, CreateCapacityProviderResponse } from "../models/models_0"; +import type { CreateCapacityProviderRequest, CreateCapacityProviderResponse } from "../models/models_0"; import { CreateCapacityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/CreateClusterCommand.ts b/clients/client-ecs/src/commands/CreateClusterCommand.ts index e51c02736ccef..98388446900ac 100644 --- a/clients/client-ecs/src/commands/CreateClusterCommand.ts +++ b/clients/client-ecs/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/CreateExpressGatewayServiceCommand.ts b/clients/client-ecs/src/commands/CreateExpressGatewayServiceCommand.ts index c53d17f100470..4e3378fb877fb 100644 --- a/clients/client-ecs/src/commands/CreateExpressGatewayServiceCommand.ts +++ b/clients/client-ecs/src/commands/CreateExpressGatewayServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExpressGatewayServiceRequest, CreateExpressGatewayServiceResponse } from "../models/models_0"; +import type { CreateExpressGatewayServiceRequest, CreateExpressGatewayServiceResponse } from "../models/models_0"; import { CreateExpressGatewayService } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/CreateServiceCommand.ts b/clients/client-ecs/src/commands/CreateServiceCommand.ts index 006c9454db92c..239b9a752e17e 100644 --- a/clients/client-ecs/src/commands/CreateServiceCommand.ts +++ b/clients/client-ecs/src/commands/CreateServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; +import type { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; import { CreateService } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/CreateTaskSetCommand.ts b/clients/client-ecs/src/commands/CreateTaskSetCommand.ts index 62df01cebdaa3..611a4ff95da10 100644 --- a/clients/client-ecs/src/commands/CreateTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/CreateTaskSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTaskSetRequest, CreateTaskSetResponse } from "../models/models_0"; +import type { CreateTaskSetRequest, CreateTaskSetResponse } from "../models/models_0"; import { CreateTaskSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts b/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts index 19278e896869a..4cb5b0963a1c2 100644 --- a/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts +++ b/clients/client-ecs/src/commands/DeleteAccountSettingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountSettingRequest, DeleteAccountSettingResponse } from "../models/models_0"; +import type { DeleteAccountSettingRequest, DeleteAccountSettingResponse } from "../models/models_0"; import { DeleteAccountSetting } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeleteAttributesCommand.ts b/clients/client-ecs/src/commands/DeleteAttributesCommand.ts index 3d2dec9cad3b8..fcfdf8eed00c4 100644 --- a/clients/client-ecs/src/commands/DeleteAttributesCommand.ts +++ b/clients/client-ecs/src/commands/DeleteAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAttributesRequest, DeleteAttributesResponse } from "../models/models_0"; +import type { DeleteAttributesRequest, DeleteAttributesResponse } from "../models/models_0"; import { DeleteAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts b/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts index f1eca1ef6209b..4c2fdf6aaf3a2 100644 --- a/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts +++ b/clients/client-ecs/src/commands/DeleteCapacityProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCapacityProviderRequest, DeleteCapacityProviderResponse } from "../models/models_0"; +import type { DeleteCapacityProviderRequest, DeleteCapacityProviderResponse } from "../models/models_0"; import { DeleteCapacityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeleteClusterCommand.ts b/clients/client-ecs/src/commands/DeleteClusterCommand.ts index 8673e4b9f872b..722b23eb2ed77 100644 --- a/clients/client-ecs/src/commands/DeleteClusterCommand.ts +++ b/clients/client-ecs/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeleteExpressGatewayServiceCommand.ts b/clients/client-ecs/src/commands/DeleteExpressGatewayServiceCommand.ts index 9893aca679a8f..e353d2bae3cbc 100644 --- a/clients/client-ecs/src/commands/DeleteExpressGatewayServiceCommand.ts +++ b/clients/client-ecs/src/commands/DeleteExpressGatewayServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteExpressGatewayServiceRequest, DeleteExpressGatewayServiceResponse } from "../models/models_0"; +import type { DeleteExpressGatewayServiceRequest, DeleteExpressGatewayServiceResponse } from "../models/models_0"; import { DeleteExpressGatewayService } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeleteServiceCommand.ts b/clients/client-ecs/src/commands/DeleteServiceCommand.ts index 491e266199d44..2023a323fb5bf 100644 --- a/clients/client-ecs/src/commands/DeleteServiceCommand.ts +++ b/clients/client-ecs/src/commands/DeleteServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; +import type { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; import { DeleteService } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts b/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts index bf051b28d2f22..19a82ec66f724 100644 --- a/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts +++ b/clients/client-ecs/src/commands/DeleteTaskDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTaskDefinitionsRequest, DeleteTaskDefinitionsResponse } from "../models/models_0"; +import type { DeleteTaskDefinitionsRequest, DeleteTaskDefinitionsResponse } from "../models/models_0"; import { DeleteTaskDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts b/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts index 0fdaf584f3e6f..773dff51199da 100644 --- a/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/DeleteTaskSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTaskSetRequest, DeleteTaskSetResponse } from "../models/models_0"; +import type { DeleteTaskSetRequest, DeleteTaskSetResponse } from "../models/models_0"; import { DeleteTaskSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts b/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts index 1e61fb0d6ac12..756d93e598ad6 100644 --- a/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts +++ b/clients/client-ecs/src/commands/DeregisterContainerInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterContainerInstanceRequest, DeregisterContainerInstanceResponse } from "../models/models_0"; +import type { DeregisterContainerInstanceRequest, DeregisterContainerInstanceResponse } from "../models/models_0"; import { DeregisterContainerInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts b/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts index 074cd252cd760..23fc9dbefad6e 100644 --- a/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts +++ b/clients/client-ecs/src/commands/DeregisterTaskDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterTaskDefinitionRequest, DeregisterTaskDefinitionResponse } from "../models/models_0"; +import type { DeregisterTaskDefinitionRequest, DeregisterTaskDefinitionResponse } from "../models/models_0"; import { DeregisterTaskDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts b/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts index c3ffd71a79130..6734039e519b9 100644 --- a/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts +++ b/clients/client-ecs/src/commands/DescribeCapacityProvidersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCapacityProvidersRequest, DescribeCapacityProvidersResponse } from "../models/models_0"; +import type { DescribeCapacityProvidersRequest, DescribeCapacityProvidersResponse } from "../models/models_0"; import { DescribeCapacityProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeClustersCommand.ts b/clients/client-ecs/src/commands/DescribeClustersCommand.ts index f65ddf791a1e4..a4165ddec2b9c 100644 --- a/clients/client-ecs/src/commands/DescribeClustersCommand.ts +++ b/clients/client-ecs/src/commands/DescribeClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0"; +import type { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0"; import { DescribeClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts b/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts index 22781b43cd874..9743992f4865f 100644 --- a/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts +++ b/clients/client-ecs/src/commands/DescribeContainerInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContainerInstancesRequest, DescribeContainerInstancesResponse } from "../models/models_0"; +import type { DescribeContainerInstancesRequest, DescribeContainerInstancesResponse } from "../models/models_0"; import { DescribeContainerInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeExpressGatewayServiceCommand.ts b/clients/client-ecs/src/commands/DescribeExpressGatewayServiceCommand.ts index aba31184f4cc6..aa9740845fe65 100644 --- a/clients/client-ecs/src/commands/DescribeExpressGatewayServiceCommand.ts +++ b/clients/client-ecs/src/commands/DescribeExpressGatewayServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExpressGatewayServiceRequest, DescribeExpressGatewayServiceResponse } from "../models/models_0"; +import type { DescribeExpressGatewayServiceRequest, DescribeExpressGatewayServiceResponse } from "../models/models_0"; import { DescribeExpressGatewayService } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeServiceDeploymentsCommand.ts b/clients/client-ecs/src/commands/DescribeServiceDeploymentsCommand.ts index 48b20df6038ee..55148724d48eb 100644 --- a/clients/client-ecs/src/commands/DescribeServiceDeploymentsCommand.ts +++ b/clients/client-ecs/src/commands/DescribeServiceDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServiceDeploymentsRequest, DescribeServiceDeploymentsResponse } from "../models/models_0"; +import type { DescribeServiceDeploymentsRequest, DescribeServiceDeploymentsResponse } from "../models/models_0"; import { DescribeServiceDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeServiceRevisionsCommand.ts b/clients/client-ecs/src/commands/DescribeServiceRevisionsCommand.ts index cb996acc20c4f..e88757cfef2b8 100644 --- a/clients/client-ecs/src/commands/DescribeServiceRevisionsCommand.ts +++ b/clients/client-ecs/src/commands/DescribeServiceRevisionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServiceRevisionsRequest, DescribeServiceRevisionsResponse } from "../models/models_0"; +import type { DescribeServiceRevisionsRequest, DescribeServiceRevisionsResponse } from "../models/models_0"; import { DescribeServiceRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeServicesCommand.ts b/clients/client-ecs/src/commands/DescribeServicesCommand.ts index ef1a1b42df1d1..450f17179202f 100644 --- a/clients/client-ecs/src/commands/DescribeServicesCommand.ts +++ b/clients/client-ecs/src/commands/DescribeServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0"; +import type { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0"; import { DescribeServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts b/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts index 6236f8e45abde..2f85ba6c5e078 100644 --- a/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts +++ b/clients/client-ecs/src/commands/DescribeTaskDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTaskDefinitionRequest, DescribeTaskDefinitionResponse } from "../models/models_0"; +import type { DescribeTaskDefinitionRequest, DescribeTaskDefinitionResponse } from "../models/models_0"; import { DescribeTaskDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts b/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts index abd3434b761fa..88d16c2bbc78a 100644 --- a/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts +++ b/clients/client-ecs/src/commands/DescribeTaskSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTaskSetsRequest, DescribeTaskSetsResponse } from "../models/models_0"; +import type { DescribeTaskSetsRequest, DescribeTaskSetsResponse } from "../models/models_0"; import { DescribeTaskSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DescribeTasksCommand.ts b/clients/client-ecs/src/commands/DescribeTasksCommand.ts index 12ed5ce356494..5cfa99934145b 100644 --- a/clients/client-ecs/src/commands/DescribeTasksCommand.ts +++ b/clients/client-ecs/src/commands/DescribeTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTasksRequest, DescribeTasksResponse } from "../models/models_0"; +import type { DescribeTasksRequest, DescribeTasksResponse } from "../models/models_0"; import { DescribeTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts b/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts index 905c255e2edc0..0e4c031268781 100644 --- a/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts +++ b/clients/client-ecs/src/commands/DiscoverPollEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DiscoverPollEndpointRequest, DiscoverPollEndpointResponse } from "../models/models_0"; +import type { DiscoverPollEndpointRequest, DiscoverPollEndpointResponse } from "../models/models_0"; import { DiscoverPollEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ExecuteCommandCommand.ts b/clients/client-ecs/src/commands/ExecuteCommandCommand.ts index b45e2e2a458ec..b1de207ff3a0d 100644 --- a/clients/client-ecs/src/commands/ExecuteCommandCommand.ts +++ b/clients/client-ecs/src/commands/ExecuteCommandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteCommandRequest, ExecuteCommandResponse } from "../models/models_0"; +import type { ExecuteCommandRequest, ExecuteCommandResponse } from "../models/models_0"; import { ExecuteCommand } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts b/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts index e34297220e1ea..a5e09f0a616b6 100644 --- a/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts +++ b/clients/client-ecs/src/commands/GetTaskProtectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTaskProtectionRequest, GetTaskProtectionResponse } from "../models/models_0"; +import type { GetTaskProtectionRequest, GetTaskProtectionResponse } from "../models/models_0"; import { GetTaskProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts b/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts index 935684637b0ee..e3626129a9df6 100644 --- a/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts +++ b/clients/client-ecs/src/commands/ListAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountSettingsRequest, ListAccountSettingsResponse } from "../models/models_0"; +import type { ListAccountSettingsRequest, ListAccountSettingsResponse } from "../models/models_0"; import { ListAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListAttributesCommand.ts b/clients/client-ecs/src/commands/ListAttributesCommand.ts index 1e6baf7d70225..e2a214f4f5a06 100644 --- a/clients/client-ecs/src/commands/ListAttributesCommand.ts +++ b/clients/client-ecs/src/commands/ListAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAttributesRequest, ListAttributesResponse } from "../models/models_0"; +import type { ListAttributesRequest, ListAttributesResponse } from "../models/models_0"; import { ListAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListClustersCommand.ts b/clients/client-ecs/src/commands/ListClustersCommand.ts index 3cc8c7cf5cac8..2d3e7c7d8be12 100644 --- a/clients/client-ecs/src/commands/ListClustersCommand.ts +++ b/clients/client-ecs/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClustersRequest, ListClustersResponse } from "../models/models_0"; +import type { ListClustersRequest, ListClustersResponse } from "../models/models_0"; import { ListClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts b/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts index 1ca8ff6a93cb3..e0e4bb335c29a 100644 --- a/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts +++ b/clients/client-ecs/src/commands/ListContainerInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContainerInstancesRequest, ListContainerInstancesResponse } from "../models/models_0"; +import type { ListContainerInstancesRequest, ListContainerInstancesResponse } from "../models/models_0"; import { ListContainerInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListServiceDeploymentsCommand.ts b/clients/client-ecs/src/commands/ListServiceDeploymentsCommand.ts index 76db9cca2b2c6..8ba360f871e1d 100644 --- a/clients/client-ecs/src/commands/ListServiceDeploymentsCommand.ts +++ b/clients/client-ecs/src/commands/ListServiceDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceDeploymentsRequest, ListServiceDeploymentsResponse } from "../models/models_0"; +import type { ListServiceDeploymentsRequest, ListServiceDeploymentsResponse } from "../models/models_0"; import { ListServiceDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts b/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts index 5862e16df9d01..b386ff5619b06 100644 --- a/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts +++ b/clients/client-ecs/src/commands/ListServicesByNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicesByNamespaceRequest, ListServicesByNamespaceResponse } from "../models/models_0"; +import type { ListServicesByNamespaceRequest, ListServicesByNamespaceResponse } from "../models/models_0"; import { ListServicesByNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListServicesCommand.ts b/clients/client-ecs/src/commands/ListServicesCommand.ts index d04b5bb7f42d5..9dc8b7e869305 100644 --- a/clients/client-ecs/src/commands/ListServicesCommand.ts +++ b/clients/client-ecs/src/commands/ListServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicesRequest, ListServicesResponse } from "../models/models_0"; +import type { ListServicesRequest, ListServicesResponse } from "../models/models_0"; import { ListServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts b/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts index bb77578393463..ae17f0541a870 100644 --- a/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ecs/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts b/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts index 3f3e17f0b9143..563d2bcab11d4 100644 --- a/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts +++ b/clients/client-ecs/src/commands/ListTaskDefinitionFamiliesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTaskDefinitionFamiliesRequest, ListTaskDefinitionFamiliesResponse } from "../models/models_0"; +import type { ListTaskDefinitionFamiliesRequest, ListTaskDefinitionFamiliesResponse } from "../models/models_0"; import { ListTaskDefinitionFamilies } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts b/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts index 68d6120de9939..0bb39efc82cf0 100644 --- a/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts +++ b/clients/client-ecs/src/commands/ListTaskDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTaskDefinitionsRequest, ListTaskDefinitionsResponse } from "../models/models_0"; +import type { ListTaskDefinitionsRequest, ListTaskDefinitionsResponse } from "../models/models_0"; import { ListTaskDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/ListTasksCommand.ts b/clients/client-ecs/src/commands/ListTasksCommand.ts index a23c316e95888..6c10acc822b77 100644 --- a/clients/client-ecs/src/commands/ListTasksCommand.ts +++ b/clients/client-ecs/src/commands/ListTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTasksRequest, ListTasksResponse } from "../models/models_0"; +import type { ListTasksRequest, ListTasksResponse } from "../models/models_0"; import { ListTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/PutAccountSettingCommand.ts b/clients/client-ecs/src/commands/PutAccountSettingCommand.ts index e308d04a03e48..0e2b281514d29 100644 --- a/clients/client-ecs/src/commands/PutAccountSettingCommand.ts +++ b/clients/client-ecs/src/commands/PutAccountSettingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountSettingRequest, PutAccountSettingResponse } from "../models/models_0"; +import type { PutAccountSettingRequest, PutAccountSettingResponse } from "../models/models_0"; import { PutAccountSetting } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts b/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts index fbeba55c4a404..711fac11bf7d9 100644 --- a/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts +++ b/clients/client-ecs/src/commands/PutAccountSettingDefaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountSettingDefaultRequest, PutAccountSettingDefaultResponse } from "../models/models_0"; +import type { PutAccountSettingDefaultRequest, PutAccountSettingDefaultResponse } from "../models/models_0"; import { PutAccountSettingDefault } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/PutAttributesCommand.ts b/clients/client-ecs/src/commands/PutAttributesCommand.ts index 4239d7f49899f..2610b52112b67 100644 --- a/clients/client-ecs/src/commands/PutAttributesCommand.ts +++ b/clients/client-ecs/src/commands/PutAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAttributesRequest, PutAttributesResponse } from "../models/models_0"; +import type { PutAttributesRequest, PutAttributesResponse } from "../models/models_0"; import { PutAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts b/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts index 0f3def41b4a23..0be8b5f5ae31d 100644 --- a/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts +++ b/clients/client-ecs/src/commands/PutClusterCapacityProvidersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutClusterCapacityProvidersRequest, PutClusterCapacityProvidersResponse } from "../models/models_0"; +import type { PutClusterCapacityProvidersRequest, PutClusterCapacityProvidersResponse } from "../models/models_0"; import { PutClusterCapacityProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts b/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts index 3d0cfb14f4ae8..4917a1ac0a2c9 100644 --- a/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts +++ b/clients/client-ecs/src/commands/RegisterContainerInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterContainerInstanceRequest, RegisterContainerInstanceResponse } from "../models/models_0"; +import type { RegisterContainerInstanceRequest, RegisterContainerInstanceResponse } from "../models/models_0"; import { RegisterContainerInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts b/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts index cc656b7167563..3c4f42dc6f19e 100644 --- a/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts +++ b/clients/client-ecs/src/commands/RegisterTaskDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterTaskDefinitionRequest, RegisterTaskDefinitionResponse } from "../models/models_0"; +import type { RegisterTaskDefinitionRequest, RegisterTaskDefinitionResponse } from "../models/models_0"; import { RegisterTaskDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/RunTaskCommand.ts b/clients/client-ecs/src/commands/RunTaskCommand.ts index 66909c2d1f407..4b35fc94c77c9 100644 --- a/clients/client-ecs/src/commands/RunTaskCommand.ts +++ b/clients/client-ecs/src/commands/RunTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RunTaskRequest, RunTaskResponse } from "../models/models_0"; +import type { RunTaskRequest, RunTaskResponse } from "../models/models_0"; import { RunTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/StartTaskCommand.ts b/clients/client-ecs/src/commands/StartTaskCommand.ts index 5949ec23597d1..b26c2930c7948 100644 --- a/clients/client-ecs/src/commands/StartTaskCommand.ts +++ b/clients/client-ecs/src/commands/StartTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTaskRequest, StartTaskResponse } from "../models/models_0"; +import type { StartTaskRequest, StartTaskResponse } from "../models/models_0"; import { StartTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/StopServiceDeploymentCommand.ts b/clients/client-ecs/src/commands/StopServiceDeploymentCommand.ts index 6c93a0fa8e585..9823eab570541 100644 --- a/clients/client-ecs/src/commands/StopServiceDeploymentCommand.ts +++ b/clients/client-ecs/src/commands/StopServiceDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopServiceDeploymentRequest, StopServiceDeploymentResponse } from "../models/models_0"; +import type { StopServiceDeploymentRequest, StopServiceDeploymentResponse } from "../models/models_0"; import { StopServiceDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/StopTaskCommand.ts b/clients/client-ecs/src/commands/StopTaskCommand.ts index dbb1f738eef55..af19028e7947e 100644 --- a/clients/client-ecs/src/commands/StopTaskCommand.ts +++ b/clients/client-ecs/src/commands/StopTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopTaskRequest, StopTaskResponse } from "../models/models_0"; +import type { StopTaskRequest, StopTaskResponse } from "../models/models_0"; import { StopTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts b/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts index ba4d1527e4eff..3c7bd975adbeb 100644 --- a/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts +++ b/clients/client-ecs/src/commands/SubmitAttachmentStateChangesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitAttachmentStateChangesRequest, SubmitAttachmentStateChangesResponse } from "../models/models_0"; +import type { SubmitAttachmentStateChangesRequest, SubmitAttachmentStateChangesResponse } from "../models/models_0"; import { SubmitAttachmentStateChanges } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts b/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts index 8088aa2416fa6..6404471959fbd 100644 --- a/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts +++ b/clients/client-ecs/src/commands/SubmitContainerStateChangeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitContainerStateChangeRequest, SubmitContainerStateChangeResponse } from "../models/models_0"; +import type { SubmitContainerStateChangeRequest, SubmitContainerStateChangeResponse } from "../models/models_0"; import { SubmitContainerStateChange } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts b/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts index e78451bbf7556..665f36798f34b 100644 --- a/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts +++ b/clients/client-ecs/src/commands/SubmitTaskStateChangeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitTaskStateChangeRequest, SubmitTaskStateChangeResponse } from "../models/models_0"; +import type { SubmitTaskStateChangeRequest, SubmitTaskStateChangeResponse } from "../models/models_0"; import { SubmitTaskStateChange } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/TagResourceCommand.ts b/clients/client-ecs/src/commands/TagResourceCommand.ts index cfc31f0bd65ad..e5d422a174b92 100644 --- a/clients/client-ecs/src/commands/TagResourceCommand.ts +++ b/clients/client-ecs/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UntagResourceCommand.ts b/clients/client-ecs/src/commands/UntagResourceCommand.ts index ba57f40aceb2a..86b74195a25c5 100644 --- a/clients/client-ecs/src/commands/UntagResourceCommand.ts +++ b/clients/client-ecs/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts b/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts index 493b08c1d1abf..55fb02ca9022a 100644 --- a/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts +++ b/clients/client-ecs/src/commands/UpdateCapacityProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCapacityProviderRequest, UpdateCapacityProviderResponse } from "../models/models_0"; +import type { UpdateCapacityProviderRequest, UpdateCapacityProviderResponse } from "../models/models_0"; import { UpdateCapacityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateClusterCommand.ts b/clients/client-ecs/src/commands/UpdateClusterCommand.ts index 6ce958701115e..302e5116cb626 100644 --- a/clients/client-ecs/src/commands/UpdateClusterCommand.ts +++ b/clients/client-ecs/src/commands/UpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; +import type { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; import { UpdateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts b/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts index f260fa83c081b..35145e1141cd0 100644 --- a/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts +++ b/clients/client-ecs/src/commands/UpdateClusterSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterSettingsRequest, UpdateClusterSettingsResponse } from "../models/models_0"; +import type { UpdateClusterSettingsRequest, UpdateClusterSettingsResponse } from "../models/models_0"; import { UpdateClusterSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts b/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts index 3bb40c1f48780..9140750d4c214 100644 --- a/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts +++ b/clients/client-ecs/src/commands/UpdateContainerAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContainerAgentRequest, UpdateContainerAgentResponse } from "../models/models_0"; +import type { UpdateContainerAgentRequest, UpdateContainerAgentResponse } from "../models/models_0"; import { UpdateContainerAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts b/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts index 8d09ed38a8fee..abb3f98533f36 100644 --- a/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts +++ b/clients/client-ecs/src/commands/UpdateContainerInstancesStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContainerInstancesStateRequest, UpdateContainerInstancesStateResponse } from "../models/models_0"; +import type { UpdateContainerInstancesStateRequest, UpdateContainerInstancesStateResponse } from "../models/models_0"; import { UpdateContainerInstancesState } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateExpressGatewayServiceCommand.ts b/clients/client-ecs/src/commands/UpdateExpressGatewayServiceCommand.ts index 9bfd7cbdd1454..abbc5e28dcfd6 100644 --- a/clients/client-ecs/src/commands/UpdateExpressGatewayServiceCommand.ts +++ b/clients/client-ecs/src/commands/UpdateExpressGatewayServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateExpressGatewayServiceRequest, UpdateExpressGatewayServiceResponse } from "../models/models_0"; +import type { UpdateExpressGatewayServiceRequest, UpdateExpressGatewayServiceResponse } from "../models/models_0"; import { UpdateExpressGatewayService } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateServiceCommand.ts b/clients/client-ecs/src/commands/UpdateServiceCommand.ts index 3f9f21d715cf4..ca89047ad50d6 100644 --- a/clients/client-ecs/src/commands/UpdateServiceCommand.ts +++ b/clients/client-ecs/src/commands/UpdateServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0"; +import type { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0"; import { UpdateService } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts b/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts index 412804852faae..2670753f9ff72 100644 --- a/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/UpdateServicePrimaryTaskSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServicePrimaryTaskSetRequest, UpdateServicePrimaryTaskSetResponse } from "../models/models_0"; +import type { UpdateServicePrimaryTaskSetRequest, UpdateServicePrimaryTaskSetResponse } from "../models/models_0"; import { UpdateServicePrimaryTaskSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts b/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts index 22289773c44ee..306a05cdaaa69 100644 --- a/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts +++ b/clients/client-ecs/src/commands/UpdateTaskProtectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTaskProtectionRequest, UpdateTaskProtectionResponse } from "../models/models_0"; +import type { UpdateTaskProtectionRequest, UpdateTaskProtectionResponse } from "../models/models_0"; import { UpdateTaskProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts b/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts index 52e3e474c3fc9..44ba38eaab28c 100644 --- a/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts +++ b/clients/client-ecs/src/commands/UpdateTaskSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; +import type { ECSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ECSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTaskSetRequest, UpdateTaskSetResponse } from "../models/models_0"; +import type { UpdateTaskSetRequest, UpdateTaskSetResponse } from "../models/models_0"; import { UpdateTaskSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-ecs/src/endpoint/EndpointParameters.ts b/clients/client-ecs/src/endpoint/EndpointParameters.ts index a11750be8eb42..031b7c3e25a1f 100644 --- a/clients/client-ecs/src/endpoint/EndpointParameters.ts +++ b/clients/client-ecs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ecs/src/endpoint/endpointResolver.ts b/clients/client-ecs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ecs/src/endpoint/endpointResolver.ts +++ b/clients/client-ecs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ecs/src/extensionConfiguration.ts b/clients/client-ecs/src/extensionConfiguration.ts index 7a950cf2f2dff..27b28c71a2725 100644 --- a/clients/client-ecs/src/extensionConfiguration.ts +++ b/clients/client-ecs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ecs/src/models/ECSServiceException.ts b/clients/client-ecs/src/models/ECSServiceException.ts index e78f207348abb..0626d7211073a 100644 --- a/clients/client-ecs/src/models/ECSServiceException.ts +++ b/clients/client-ecs/src/models/ECSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ecs/src/models/errors.ts b/clients/client-ecs/src/models/errors.ts index 5d0ffbab6d356..d0137f532cd82 100644 --- a/clients/client-ecs/src/models/errors.ts +++ b/clients/client-ecs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ECSServiceException as __BaseException } from "./ECSServiceException"; diff --git a/clients/client-ecs/src/pagination/Interfaces.ts b/clients/client-ecs/src/pagination/Interfaces.ts index d8caafc488fb9..4ed9c0537375a 100644 --- a/clients/client-ecs/src/pagination/Interfaces.ts +++ b/clients/client-ecs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ECSClient } from "../ECSClient"; diff --git a/clients/client-ecs/src/pagination/ListAccountSettingsPaginator.ts b/clients/client-ecs/src/pagination/ListAccountSettingsPaginator.ts index bcbc6fe8d78d1..1d71bd6a62caa 100644 --- a/clients/client-ecs/src/pagination/ListAccountSettingsPaginator.ts +++ b/clients/client-ecs/src/pagination/ListAccountSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountSettingsCommand, diff --git a/clients/client-ecs/src/pagination/ListAttributesPaginator.ts b/clients/client-ecs/src/pagination/ListAttributesPaginator.ts index 1906b832318cb..a39b6693ff3bf 100644 --- a/clients/client-ecs/src/pagination/ListAttributesPaginator.ts +++ b/clients/client-ecs/src/pagination/ListAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttributesCommand, diff --git a/clients/client-ecs/src/pagination/ListClustersPaginator.ts b/clients/client-ecs/src/pagination/ListClustersPaginator.ts index 9b1a6ee7e4773..3eed687f3d7ba 100644 --- a/clients/client-ecs/src/pagination/ListClustersPaginator.ts +++ b/clients/client-ecs/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-ecs/src/pagination/ListContainerInstancesPaginator.ts b/clients/client-ecs/src/pagination/ListContainerInstancesPaginator.ts index 1c8445c17e1f5..c41ea48c72944 100644 --- a/clients/client-ecs/src/pagination/ListContainerInstancesPaginator.ts +++ b/clients/client-ecs/src/pagination/ListContainerInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContainerInstancesCommand, diff --git a/clients/client-ecs/src/pagination/ListServicesByNamespacePaginator.ts b/clients/client-ecs/src/pagination/ListServicesByNamespacePaginator.ts index 75e9a1eb24027..33cf4a512c930 100644 --- a/clients/client-ecs/src/pagination/ListServicesByNamespacePaginator.ts +++ b/clients/client-ecs/src/pagination/ListServicesByNamespacePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicesByNamespaceCommand, diff --git a/clients/client-ecs/src/pagination/ListServicesPaginator.ts b/clients/client-ecs/src/pagination/ListServicesPaginator.ts index 1f2d20af4cda8..3dd3fab44ebc1 100644 --- a/clients/client-ecs/src/pagination/ListServicesPaginator.ts +++ b/clients/client-ecs/src/pagination/ListServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicesCommand, diff --git a/clients/client-ecs/src/pagination/ListTaskDefinitionFamiliesPaginator.ts b/clients/client-ecs/src/pagination/ListTaskDefinitionFamiliesPaginator.ts index 11ec6d9a31cf5..573ecc25230f6 100644 --- a/clients/client-ecs/src/pagination/ListTaskDefinitionFamiliesPaginator.ts +++ b/clients/client-ecs/src/pagination/ListTaskDefinitionFamiliesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTaskDefinitionFamiliesCommand, diff --git a/clients/client-ecs/src/pagination/ListTaskDefinitionsPaginator.ts b/clients/client-ecs/src/pagination/ListTaskDefinitionsPaginator.ts index d61567be878e6..18450e9be7fe3 100644 --- a/clients/client-ecs/src/pagination/ListTaskDefinitionsPaginator.ts +++ b/clients/client-ecs/src/pagination/ListTaskDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTaskDefinitionsCommand, diff --git a/clients/client-ecs/src/pagination/ListTasksPaginator.ts b/clients/client-ecs/src/pagination/ListTasksPaginator.ts index df05a1d15d15c..2ec24da3df19d 100644 --- a/clients/client-ecs/src/pagination/ListTasksPaginator.ts +++ b/clients/client-ecs/src/pagination/ListTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTasksCommand, ListTasksCommandInput, ListTasksCommandOutput } from "../commands/ListTasksCommand"; import { ECSClient } from "../ECSClient"; diff --git a/clients/client-ecs/src/runtimeConfig.browser.ts b/clients/client-ecs/src/runtimeConfig.browser.ts index 10eb70c9dfb60..4f8e9c06392ba 100644 --- a/clients/client-ecs/src/runtimeConfig.browser.ts +++ b/clients/client-ecs/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ECSClientConfig } from "./ECSClient"; + +import type { ECSClientConfig } from "./ECSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ecs/src/runtimeConfig.native.ts b/clients/client-ecs/src/runtimeConfig.native.ts index 1c33b03fdf026..6776c9ee5db40 100644 --- a/clients/client-ecs/src/runtimeConfig.native.ts +++ b/clients/client-ecs/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ECSClientConfig } from "./ECSClient"; +import type { ECSClientConfig } from "./ECSClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ecs/src/runtimeConfig.shared.ts b/clients/client-ecs/src/runtimeConfig.shared.ts index ca972c0dcc34e..35842213ad973 100644 --- a/clients/client-ecs/src/runtimeConfig.shared.ts +++ b/clients/client-ecs/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultECSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ECSClientConfig } from "./ECSClient"; +import type { ECSClientConfig } from "./ECSClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-ecs/src/runtimeConfig.ts b/clients/client-ecs/src/runtimeConfig.ts index 0702a95d30350..e3814a4f69db5 100644 --- a/clients/client-ecs/src/runtimeConfig.ts +++ b/clients/client-ecs/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ECSClientConfig } from "./ECSClient"; + +import type { ECSClientConfig } from "./ECSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ecs/src/runtimeExtensions.ts b/clients/client-ecs/src/runtimeExtensions.ts index 2e698106500ee..be0f8a2e91041 100644 --- a/clients/client-ecs/src/runtimeExtensions.ts +++ b/clients/client-ecs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ECSExtensionConfiguration } from "./extensionConfiguration"; +import type { ECSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ecs/src/schemas/schemas_0.ts b/clients/client-ecs/src/schemas/schemas_0.ts index e8c6f14e6f871..0520a1bb199b3 100644 --- a/clients/client-ecs/src/schemas/schemas_0.ts +++ b/clients/client-ecs/src/schemas/schemas_0.ts @@ -990,7 +990,7 @@ const n0 = "com.amazonaws.ecs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-efs/package.json b/clients/client-efs/package.json index 13704d0367cdd..bcf97567c0581 100644 --- a/clients/client-efs/package.json +++ b/clients/client-efs/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-efs/src/EFS.ts b/clients/client-efs/src/EFS.ts index 6dbe5fdbf4927..91e3d2b401325 100644 --- a/clients/client-efs/src/EFS.ts +++ b/clients/client-efs/src/EFS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAccessPointCommand, @@ -145,7 +145,7 @@ import { UpdateFileSystemProtectionCommandInput, UpdateFileSystemProtectionCommandOutput, } from "./commands/UpdateFileSystemProtectionCommand"; -import { EFSClient, EFSClientConfig } from "./EFSClient"; +import { EFSClient } from "./EFSClient"; const commands = { CreateAccessPointCommand, diff --git a/clients/client-efs/src/EFSClient.ts b/clients/client-efs/src/EFSClient.ts index 94654bd1248e1..a6fbbf96db1a3 100644 --- a/clients/client-efs/src/EFSClient.ts +++ b/clients/client-efs/src/EFSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEFSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateAccessPointCommandInput, CreateAccessPointCommandOutput } from "./commands/CreateAccessPointCommand"; @@ -149,7 +158,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-efs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-efs/src/auth/httpAuthExtensionConfiguration.ts index cdce97d3f197d..a6a1271b393df 100644 --- a/clients/client-efs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-efs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EFSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EFSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-efs/src/auth/httpAuthSchemeProvider.ts b/clients/client-efs/src/auth/httpAuthSchemeProvider.ts index 9c34a3dcd6be6..61d151042770e 100644 --- a/clients/client-efs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-efs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EFSClientConfig, EFSClientResolvedConfig } from "../EFSClient"; +import { type EFSClientResolvedConfig, EFSClientConfig } from "../EFSClient"; /** * @internal diff --git a/clients/client-efs/src/commands/CreateAccessPointCommand.ts b/clients/client-efs/src/commands/CreateAccessPointCommand.ts index 19880607a0e59..ba5c5bc9730c3 100644 --- a/clients/client-efs/src/commands/CreateAccessPointCommand.ts +++ b/clients/client-efs/src/commands/CreateAccessPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AccessPointDescription, CreateAccessPointRequest } from "../models/models_0"; +import type { AccessPointDescription, CreateAccessPointRequest } from "../models/models_0"; import { CreateAccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/CreateFileSystemCommand.ts b/clients/client-efs/src/commands/CreateFileSystemCommand.ts index cd4cde245d44c..aa378dc2998c9 100644 --- a/clients/client-efs/src/commands/CreateFileSystemCommand.ts +++ b/clients/client-efs/src/commands/CreateFileSystemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFileSystemRequest, FileSystemDescription } from "../models/models_0"; +import type { CreateFileSystemRequest, FileSystemDescription } from "../models/models_0"; import { CreateFileSystem } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/CreateMountTargetCommand.ts b/clients/client-efs/src/commands/CreateMountTargetCommand.ts index b180b7dc4352b..515df41692256 100644 --- a/clients/client-efs/src/commands/CreateMountTargetCommand.ts +++ b/clients/client-efs/src/commands/CreateMountTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMountTargetRequest, MountTargetDescription } from "../models/models_0"; +import type { CreateMountTargetRequest, MountTargetDescription } from "../models/models_0"; import { CreateMountTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/CreateReplicationConfigurationCommand.ts b/clients/client-efs/src/commands/CreateReplicationConfigurationCommand.ts index cd6b07a2eff21..c94d0b7fa3564 100644 --- a/clients/client-efs/src/commands/CreateReplicationConfigurationCommand.ts +++ b/clients/client-efs/src/commands/CreateReplicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReplicationConfigurationRequest, ReplicationConfigurationDescription } from "../models/models_0"; +import type { CreateReplicationConfigurationRequest, ReplicationConfigurationDescription } from "../models/models_0"; import { CreateReplicationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/CreateTagsCommand.ts b/clients/client-efs/src/commands/CreateTagsCommand.ts index f0855ea76677b..3f63167707119 100644 --- a/clients/client-efs/src/commands/CreateTagsCommand.ts +++ b/clients/client-efs/src/commands/CreateTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTagsRequest } from "../models/models_0"; +import type { CreateTagsRequest } from "../models/models_0"; import { CreateTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DeleteAccessPointCommand.ts b/clients/client-efs/src/commands/DeleteAccessPointCommand.ts index 0ad9090001224..4b4d2a112b221 100644 --- a/clients/client-efs/src/commands/DeleteAccessPointCommand.ts +++ b/clients/client-efs/src/commands/DeleteAccessPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessPointRequest } from "../models/models_0"; +import type { DeleteAccessPointRequest } from "../models/models_0"; import { DeleteAccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DeleteFileSystemCommand.ts b/clients/client-efs/src/commands/DeleteFileSystemCommand.ts index d29a472990c61..d5a7788326e2b 100644 --- a/clients/client-efs/src/commands/DeleteFileSystemCommand.ts +++ b/clients/client-efs/src/commands/DeleteFileSystemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFileSystemRequest } from "../models/models_0"; +import type { DeleteFileSystemRequest } from "../models/models_0"; import { DeleteFileSystem } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DeleteFileSystemPolicyCommand.ts b/clients/client-efs/src/commands/DeleteFileSystemPolicyCommand.ts index dac43ea1b8200..aa2bc85dc5519 100644 --- a/clients/client-efs/src/commands/DeleteFileSystemPolicyCommand.ts +++ b/clients/client-efs/src/commands/DeleteFileSystemPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFileSystemPolicyRequest } from "../models/models_0"; +import type { DeleteFileSystemPolicyRequest } from "../models/models_0"; import { DeleteFileSystemPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DeleteMountTargetCommand.ts b/clients/client-efs/src/commands/DeleteMountTargetCommand.ts index 717b8fd046a82..9ea0f5a2fff0b 100644 --- a/clients/client-efs/src/commands/DeleteMountTargetCommand.ts +++ b/clients/client-efs/src/commands/DeleteMountTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMountTargetRequest } from "../models/models_0"; +import type { DeleteMountTargetRequest } from "../models/models_0"; import { DeleteMountTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DeleteReplicationConfigurationCommand.ts b/clients/client-efs/src/commands/DeleteReplicationConfigurationCommand.ts index 902bb5f28ba0c..ff87ccecb7f49 100644 --- a/clients/client-efs/src/commands/DeleteReplicationConfigurationCommand.ts +++ b/clients/client-efs/src/commands/DeleteReplicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReplicationConfigurationRequest } from "../models/models_0"; +import type { DeleteReplicationConfigurationRequest } from "../models/models_0"; import { DeleteReplicationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DeleteTagsCommand.ts b/clients/client-efs/src/commands/DeleteTagsCommand.ts index 141ac671532c2..67ce89d23d122 100644 --- a/clients/client-efs/src/commands/DeleteTagsCommand.ts +++ b/clients/client-efs/src/commands/DeleteTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagsRequest } from "../models/models_0"; +import type { DeleteTagsRequest } from "../models/models_0"; import { DeleteTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DescribeAccessPointsCommand.ts b/clients/client-efs/src/commands/DescribeAccessPointsCommand.ts index 265932ddb35be..0c80d0a720ddc 100644 --- a/clients/client-efs/src/commands/DescribeAccessPointsCommand.ts +++ b/clients/client-efs/src/commands/DescribeAccessPointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccessPointsRequest, DescribeAccessPointsResponse } from "../models/models_0"; +import type { DescribeAccessPointsRequest, DescribeAccessPointsResponse } from "../models/models_0"; import { DescribeAccessPoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DescribeAccountPreferencesCommand.ts b/clients/client-efs/src/commands/DescribeAccountPreferencesCommand.ts index 2642a8ef385c8..d40e517b2c925 100644 --- a/clients/client-efs/src/commands/DescribeAccountPreferencesCommand.ts +++ b/clients/client-efs/src/commands/DescribeAccountPreferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountPreferencesRequest, DescribeAccountPreferencesResponse } from "../models/models_0"; +import type { DescribeAccountPreferencesRequest, DescribeAccountPreferencesResponse } from "../models/models_0"; import { DescribeAccountPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DescribeBackupPolicyCommand.ts b/clients/client-efs/src/commands/DescribeBackupPolicyCommand.ts index 521a2f2e29800..8796ef766b486 100644 --- a/clients/client-efs/src/commands/DescribeBackupPolicyCommand.ts +++ b/clients/client-efs/src/commands/DescribeBackupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BackupPolicyDescription, DescribeBackupPolicyRequest } from "../models/models_0"; +import type { BackupPolicyDescription, DescribeBackupPolicyRequest } from "../models/models_0"; import { DescribeBackupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DescribeFileSystemPolicyCommand.ts b/clients/client-efs/src/commands/DescribeFileSystemPolicyCommand.ts index d4e2aeb017332..71b4f151c223e 100644 --- a/clients/client-efs/src/commands/DescribeFileSystemPolicyCommand.ts +++ b/clients/client-efs/src/commands/DescribeFileSystemPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFileSystemPolicyRequest, FileSystemPolicyDescription } from "../models/models_0"; +import type { DescribeFileSystemPolicyRequest, FileSystemPolicyDescription } from "../models/models_0"; import { DescribeFileSystemPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DescribeFileSystemsCommand.ts b/clients/client-efs/src/commands/DescribeFileSystemsCommand.ts index 511a27138afda..0ef9e68c7f989 100644 --- a/clients/client-efs/src/commands/DescribeFileSystemsCommand.ts +++ b/clients/client-efs/src/commands/DescribeFileSystemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFileSystemsRequest, DescribeFileSystemsResponse } from "../models/models_0"; +import type { DescribeFileSystemsRequest, DescribeFileSystemsResponse } from "../models/models_0"; import { DescribeFileSystems } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DescribeLifecycleConfigurationCommand.ts b/clients/client-efs/src/commands/DescribeLifecycleConfigurationCommand.ts index 98b5910e7ddea..2a4e655705f76 100644 --- a/clients/client-efs/src/commands/DescribeLifecycleConfigurationCommand.ts +++ b/clients/client-efs/src/commands/DescribeLifecycleConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLifecycleConfigurationRequest, LifecycleConfigurationDescription } from "../models/models_0"; +import type { DescribeLifecycleConfigurationRequest, LifecycleConfigurationDescription } from "../models/models_0"; import { DescribeLifecycleConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DescribeMountTargetSecurityGroupsCommand.ts b/clients/client-efs/src/commands/DescribeMountTargetSecurityGroupsCommand.ts index aae105eea309b..19019de056204 100644 --- a/clients/client-efs/src/commands/DescribeMountTargetSecurityGroupsCommand.ts +++ b/clients/client-efs/src/commands/DescribeMountTargetSecurityGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeMountTargetSecurityGroupsRequest, DescribeMountTargetSecurityGroupsResponse, } from "../models/models_0"; diff --git a/clients/client-efs/src/commands/DescribeMountTargetsCommand.ts b/clients/client-efs/src/commands/DescribeMountTargetsCommand.ts index 1c5629fafe904..36f0eb5f0f0fe 100644 --- a/clients/client-efs/src/commands/DescribeMountTargetsCommand.ts +++ b/clients/client-efs/src/commands/DescribeMountTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMountTargetsRequest, DescribeMountTargetsResponse } from "../models/models_0"; +import type { DescribeMountTargetsRequest, DescribeMountTargetsResponse } from "../models/models_0"; import { DescribeMountTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/DescribeReplicationConfigurationsCommand.ts b/clients/client-efs/src/commands/DescribeReplicationConfigurationsCommand.ts index 990867f3c31c9..2123872ae10d4 100644 --- a/clients/client-efs/src/commands/DescribeReplicationConfigurationsCommand.ts +++ b/clients/client-efs/src/commands/DescribeReplicationConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReplicationConfigurationsRequest, DescribeReplicationConfigurationsResponse, } from "../models/models_0"; diff --git a/clients/client-efs/src/commands/DescribeTagsCommand.ts b/clients/client-efs/src/commands/DescribeTagsCommand.ts index 66770532626ab..3f52737c289f9 100644 --- a/clients/client-efs/src/commands/DescribeTagsCommand.ts +++ b/clients/client-efs/src/commands/DescribeTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0"; +import type { DescribeTagsRequest, DescribeTagsResponse } from "../models/models_0"; import { DescribeTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/ListTagsForResourceCommand.ts b/clients/client-efs/src/commands/ListTagsForResourceCommand.ts index a534b053768b4..2670396b9fb51 100644 --- a/clients/client-efs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-efs/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/ModifyMountTargetSecurityGroupsCommand.ts b/clients/client-efs/src/commands/ModifyMountTargetSecurityGroupsCommand.ts index b30317168d5ea..585df5b0122d7 100644 --- a/clients/client-efs/src/commands/ModifyMountTargetSecurityGroupsCommand.ts +++ b/clients/client-efs/src/commands/ModifyMountTargetSecurityGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyMountTargetSecurityGroupsRequest } from "../models/models_0"; +import type { ModifyMountTargetSecurityGroupsRequest } from "../models/models_0"; import { ModifyMountTargetSecurityGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/PutAccountPreferencesCommand.ts b/clients/client-efs/src/commands/PutAccountPreferencesCommand.ts index d328682173b76..76f5b67c67e45 100644 --- a/clients/client-efs/src/commands/PutAccountPreferencesCommand.ts +++ b/clients/client-efs/src/commands/PutAccountPreferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountPreferencesRequest, PutAccountPreferencesResponse } from "../models/models_0"; +import type { PutAccountPreferencesRequest, PutAccountPreferencesResponse } from "../models/models_0"; import { PutAccountPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/PutBackupPolicyCommand.ts b/clients/client-efs/src/commands/PutBackupPolicyCommand.ts index 2cf8a1a25e2a1..94e8ba13fc862 100644 --- a/clients/client-efs/src/commands/PutBackupPolicyCommand.ts +++ b/clients/client-efs/src/commands/PutBackupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BackupPolicyDescription, PutBackupPolicyRequest } from "../models/models_0"; +import type { BackupPolicyDescription, PutBackupPolicyRequest } from "../models/models_0"; import { PutBackupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/PutFileSystemPolicyCommand.ts b/clients/client-efs/src/commands/PutFileSystemPolicyCommand.ts index 083ddc16445f7..b1ceb0b82d3ae 100644 --- a/clients/client-efs/src/commands/PutFileSystemPolicyCommand.ts +++ b/clients/client-efs/src/commands/PutFileSystemPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FileSystemPolicyDescription, PutFileSystemPolicyRequest } from "../models/models_0"; +import type { FileSystemPolicyDescription, PutFileSystemPolicyRequest } from "../models/models_0"; import { PutFileSystemPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/PutLifecycleConfigurationCommand.ts b/clients/client-efs/src/commands/PutLifecycleConfigurationCommand.ts index 68d2c42dcc224..489769bd92522 100644 --- a/clients/client-efs/src/commands/PutLifecycleConfigurationCommand.ts +++ b/clients/client-efs/src/commands/PutLifecycleConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LifecycleConfigurationDescription, PutLifecycleConfigurationRequest } from "../models/models_0"; +import type { LifecycleConfigurationDescription, PutLifecycleConfigurationRequest } from "../models/models_0"; import { PutLifecycleConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/TagResourceCommand.ts b/clients/client-efs/src/commands/TagResourceCommand.ts index 2217d6ac83130..3447290f28ecf 100644 --- a/clients/client-efs/src/commands/TagResourceCommand.ts +++ b/clients/client-efs/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/UntagResourceCommand.ts b/clients/client-efs/src/commands/UntagResourceCommand.ts index 5d65ad57b4cfd..1318808ff1dde 100644 --- a/clients/client-efs/src/commands/UntagResourceCommand.ts +++ b/clients/client-efs/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/UpdateFileSystemCommand.ts b/clients/client-efs/src/commands/UpdateFileSystemCommand.ts index aed97da574d43..c9d6479c55fb0 100644 --- a/clients/client-efs/src/commands/UpdateFileSystemCommand.ts +++ b/clients/client-efs/src/commands/UpdateFileSystemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FileSystemDescription, UpdateFileSystemRequest } from "../models/models_0"; +import type { FileSystemDescription, UpdateFileSystemRequest } from "../models/models_0"; import { UpdateFileSystem } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/commands/UpdateFileSystemProtectionCommand.ts b/clients/client-efs/src/commands/UpdateFileSystemProtectionCommand.ts index 89d7eeaf3eca7..8b9c79b7c2c41 100644 --- a/clients/client-efs/src/commands/UpdateFileSystemProtectionCommand.ts +++ b/clients/client-efs/src/commands/UpdateFileSystemProtectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; +import type { EFSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EFSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FileSystemProtectionDescription, UpdateFileSystemProtectionRequest } from "../models/models_0"; +import type { FileSystemProtectionDescription, UpdateFileSystemProtectionRequest } from "../models/models_0"; import { UpdateFileSystemProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-efs/src/endpoint/EndpointParameters.ts b/clients/client-efs/src/endpoint/EndpointParameters.ts index e20d73c7a068c..9148b12437e04 100644 --- a/clients/client-efs/src/endpoint/EndpointParameters.ts +++ b/clients/client-efs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-efs/src/endpoint/endpointResolver.ts b/clients/client-efs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-efs/src/endpoint/endpointResolver.ts +++ b/clients/client-efs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-efs/src/extensionConfiguration.ts b/clients/client-efs/src/extensionConfiguration.ts index 20c78769ef2b6..9b3d85f79007e 100644 --- a/clients/client-efs/src/extensionConfiguration.ts +++ b/clients/client-efs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-efs/src/models/EFSServiceException.ts b/clients/client-efs/src/models/EFSServiceException.ts index 2a13733c5c869..e64308ad3f3d3 100644 --- a/clients/client-efs/src/models/EFSServiceException.ts +++ b/clients/client-efs/src/models/EFSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-efs/src/models/errors.ts b/clients/client-efs/src/models/errors.ts index 34e3151d53b5e..da1bc7054cbea 100644 --- a/clients/client-efs/src/models/errors.ts +++ b/clients/client-efs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EFSServiceException as __BaseException } from "./EFSServiceException"; diff --git a/clients/client-efs/src/pagination/DescribeAccessPointsPaginator.ts b/clients/client-efs/src/pagination/DescribeAccessPointsPaginator.ts index 6b419a139c0a8..e3fc46d58938a 100644 --- a/clients/client-efs/src/pagination/DescribeAccessPointsPaginator.ts +++ b/clients/client-efs/src/pagination/DescribeAccessPointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAccessPointsCommand, diff --git a/clients/client-efs/src/pagination/DescribeFileSystemsPaginator.ts b/clients/client-efs/src/pagination/DescribeFileSystemsPaginator.ts index 16783734d10de..1cc3274858477 100644 --- a/clients/client-efs/src/pagination/DescribeFileSystemsPaginator.ts +++ b/clients/client-efs/src/pagination/DescribeFileSystemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFileSystemsCommand, diff --git a/clients/client-efs/src/pagination/DescribeMountTargetsPaginator.ts b/clients/client-efs/src/pagination/DescribeMountTargetsPaginator.ts index 493477d6a628b..0c5f620b91248 100644 --- a/clients/client-efs/src/pagination/DescribeMountTargetsPaginator.ts +++ b/clients/client-efs/src/pagination/DescribeMountTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMountTargetsCommand, diff --git a/clients/client-efs/src/pagination/DescribeReplicationConfigurationsPaginator.ts b/clients/client-efs/src/pagination/DescribeReplicationConfigurationsPaginator.ts index 7eba0a8481f72..a7214aae3af65 100644 --- a/clients/client-efs/src/pagination/DescribeReplicationConfigurationsPaginator.ts +++ b/clients/client-efs/src/pagination/DescribeReplicationConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationConfigurationsCommand, diff --git a/clients/client-efs/src/pagination/DescribeTagsPaginator.ts b/clients/client-efs/src/pagination/DescribeTagsPaginator.ts index d580377ac42b7..7eec3ce04d1e7 100644 --- a/clients/client-efs/src/pagination/DescribeTagsPaginator.ts +++ b/clients/client-efs/src/pagination/DescribeTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTagsCommand, diff --git a/clients/client-efs/src/pagination/Interfaces.ts b/clients/client-efs/src/pagination/Interfaces.ts index e5c62115cb4c8..c6ac735718610 100644 --- a/clients/client-efs/src/pagination/Interfaces.ts +++ b/clients/client-efs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EFSClient } from "../EFSClient"; diff --git a/clients/client-efs/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-efs/src/pagination/ListTagsForResourcePaginator.ts index 4bf4ee209ea31..87c413c1c90dd 100644 --- a/clients/client-efs/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-efs/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-efs/src/runtimeConfig.browser.ts b/clients/client-efs/src/runtimeConfig.browser.ts index 082fa593fbb85..1dc9bd15d72ca 100644 --- a/clients/client-efs/src/runtimeConfig.browser.ts +++ b/clients/client-efs/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EFSClientConfig } from "./EFSClient"; + +import type { EFSClientConfig } from "./EFSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-efs/src/runtimeConfig.native.ts b/clients/client-efs/src/runtimeConfig.native.ts index 7efbd2f54ab51..4190627850daf 100644 --- a/clients/client-efs/src/runtimeConfig.native.ts +++ b/clients/client-efs/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EFSClientConfig } from "./EFSClient"; +import type { EFSClientConfig } from "./EFSClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-efs/src/runtimeConfig.shared.ts b/clients/client-efs/src/runtimeConfig.shared.ts index a38b2e1eb5fd6..1f32e1d8c8473 100644 --- a/clients/client-efs/src/runtimeConfig.shared.ts +++ b/clients/client-efs/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEFSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EFSClientConfig } from "./EFSClient"; +import type { EFSClientConfig } from "./EFSClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-efs/src/runtimeConfig.ts b/clients/client-efs/src/runtimeConfig.ts index e8334a39a33cc..341bba95e4a56 100644 --- a/clients/client-efs/src/runtimeConfig.ts +++ b/clients/client-efs/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EFSClientConfig } from "./EFSClient"; + +import type { EFSClientConfig } from "./EFSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-efs/src/runtimeExtensions.ts b/clients/client-efs/src/runtimeExtensions.ts index 36bc731adf106..c513b739a8081 100644 --- a/clients/client-efs/src/runtimeExtensions.ts +++ b/clients/client-efs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EFSExtensionConfiguration } from "./extensionConfiguration"; +import type { EFSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-efs/src/schemas/schemas_0.ts b/clients/client-efs/src/schemas/schemas_0.ts index 9818e85b98d07..1ad96d980e8ee 100644 --- a/clients/client-efs/src/schemas/schemas_0.ts +++ b/clients/client-efs/src/schemas/schemas_0.ts @@ -214,7 +214,7 @@ const n0 = "com.amazonaws.efs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { EFSServiceException as __EFSServiceException } from "../models/EFSServiceException"; import { diff --git a/clients/client-eks-auth/package.json b/clients/client-eks-auth/package.json index ab4e5b092fe30..7f77dc8e31c1c 100644 --- a/clients/client-eks-auth/package.json +++ b/clients/client-eks-auth/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-eks-auth/src/EKSAuth.ts b/clients/client-eks-auth/src/EKSAuth.ts index 66ead0c6da8ec..ae5679f49168d 100644 --- a/clients/client-eks-auth/src/EKSAuth.ts +++ b/clients/client-eks-auth/src/EKSAuth.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssumeRoleForPodIdentityCommand, AssumeRoleForPodIdentityCommandInput, AssumeRoleForPodIdentityCommandOutput, } from "./commands/AssumeRoleForPodIdentityCommand"; -import { EKSAuthClient, EKSAuthClientConfig } from "./EKSAuthClient"; +import { EKSAuthClient } from "./EKSAuthClient"; const commands = { AssumeRoleForPodIdentityCommand, diff --git a/clients/client-eks-auth/src/EKSAuthClient.ts b/clients/client-eks-auth/src/EKSAuthClient.ts index 4ea7fba2325a2..6735121c80549 100644 --- a/clients/client-eks-auth/src/EKSAuthClient.ts +++ b/clients/client-eks-auth/src/EKSAuthClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEKSAuthHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -68,7 +77,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-eks-auth/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-eks-auth/src/auth/httpAuthExtensionConfiguration.ts index dcc6dd82c1a5e..74061caa5b716 100644 --- a/clients/client-eks-auth/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-eks-auth/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EKSAuthHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EKSAuthHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-eks-auth/src/auth/httpAuthSchemeProvider.ts b/clients/client-eks-auth/src/auth/httpAuthSchemeProvider.ts index 41d73ab91c355..966cb1f604a9a 100644 --- a/clients/client-eks-auth/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-eks-auth/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EKSAuthClientConfig, EKSAuthClientResolvedConfig } from "../EKSAuthClient"; +import { type EKSAuthClientResolvedConfig, EKSAuthClientConfig } from "../EKSAuthClient"; /** * @internal diff --git a/clients/client-eks-auth/src/commands/AssumeRoleForPodIdentityCommand.ts b/clients/client-eks-auth/src/commands/AssumeRoleForPodIdentityCommand.ts index 677c57b9f5bda..ec94b89b78ced 100644 --- a/clients/client-eks-auth/src/commands/AssumeRoleForPodIdentityCommand.ts +++ b/clients/client-eks-auth/src/commands/AssumeRoleForPodIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSAuthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSAuthClient"; +import type { EKSAuthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSAuthClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeRoleForPodIdentityRequest, AssumeRoleForPodIdentityResponse } from "../models/models_0"; +import type { AssumeRoleForPodIdentityRequest, AssumeRoleForPodIdentityResponse } from "../models/models_0"; import { AssumeRoleForPodIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks-auth/src/endpoint/EndpointParameters.ts b/clients/client-eks-auth/src/endpoint/EndpointParameters.ts index 7691041e7cf80..37bbad11acff2 100644 --- a/clients/client-eks-auth/src/endpoint/EndpointParameters.ts +++ b/clients/client-eks-auth/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-eks-auth/src/endpoint/endpointResolver.ts b/clients/client-eks-auth/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-eks-auth/src/endpoint/endpointResolver.ts +++ b/clients/client-eks-auth/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-eks-auth/src/extensionConfiguration.ts b/clients/client-eks-auth/src/extensionConfiguration.ts index 52831a1b857ec..1114aad3ad00b 100644 --- a/clients/client-eks-auth/src/extensionConfiguration.ts +++ b/clients/client-eks-auth/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-eks-auth/src/models/EKSAuthServiceException.ts b/clients/client-eks-auth/src/models/EKSAuthServiceException.ts index a511f6d024f2a..13a1b79781417 100644 --- a/clients/client-eks-auth/src/models/EKSAuthServiceException.ts +++ b/clients/client-eks-auth/src/models/EKSAuthServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-eks-auth/src/models/errors.ts b/clients/client-eks-auth/src/models/errors.ts index c9e8dd0de31da..ae1ceb73989a4 100644 --- a/clients/client-eks-auth/src/models/errors.ts +++ b/clients/client-eks-auth/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EKSAuthServiceException as __BaseException } from "./EKSAuthServiceException"; diff --git a/clients/client-eks-auth/src/runtimeConfig.browser.ts b/clients/client-eks-auth/src/runtimeConfig.browser.ts index 7797bf87cd38d..8f92bdfe294e5 100644 --- a/clients/client-eks-auth/src/runtimeConfig.browser.ts +++ b/clients/client-eks-auth/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EKSAuthClientConfig } from "./EKSAuthClient"; + +import type { EKSAuthClientConfig } from "./EKSAuthClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-eks-auth/src/runtimeConfig.native.ts b/clients/client-eks-auth/src/runtimeConfig.native.ts index 53cc584aceba4..9b2f985ce9441 100644 --- a/clients/client-eks-auth/src/runtimeConfig.native.ts +++ b/clients/client-eks-auth/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EKSAuthClientConfig } from "./EKSAuthClient"; +import type { EKSAuthClientConfig } from "./EKSAuthClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-eks-auth/src/runtimeConfig.shared.ts b/clients/client-eks-auth/src/runtimeConfig.shared.ts index f5860b8ffcdf5..e9edb0e95dd12 100644 --- a/clients/client-eks-auth/src/runtimeConfig.shared.ts +++ b/clients/client-eks-auth/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEKSAuthHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EKSAuthClientConfig } from "./EKSAuthClient"; +import type { EKSAuthClientConfig } from "./EKSAuthClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-eks-auth/src/runtimeConfig.ts b/clients/client-eks-auth/src/runtimeConfig.ts index 82d6429275f50..a4c96e08942ec 100644 --- a/clients/client-eks-auth/src/runtimeConfig.ts +++ b/clients/client-eks-auth/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EKSAuthClientConfig } from "./EKSAuthClient"; + +import type { EKSAuthClientConfig } from "./EKSAuthClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-eks-auth/src/runtimeExtensions.ts b/clients/client-eks-auth/src/runtimeExtensions.ts index 5f930da511bbf..13fce161898d7 100644 --- a/clients/client-eks-auth/src/runtimeExtensions.ts +++ b/clients/client-eks-auth/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EKSAuthExtensionConfiguration } from "./extensionConfiguration"; +import type { EKSAuthExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-eks-auth/src/schemas/schemas_0.ts b/clients/client-eks-auth/src/schemas/schemas_0.ts index c5dcf46063d42..5297e9bb8e391 100644 --- a/clients/client-eks-auth/src/schemas/schemas_0.ts +++ b/clients/client-eks-auth/src/schemas/schemas_0.ts @@ -43,7 +43,12 @@ const n0 = "com.amazonaws.eksauth"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types"; +import type { + StaticErrorSchema, + StaticOperationSchema, + StaticSimpleSchema, + StaticStructureSchema, +} from "@smithy/types"; import { EKSAuthServiceException as __EKSAuthServiceException } from "../models/EKSAuthServiceException"; import { diff --git a/clients/client-eks/package.json b/clients/client-eks/package.json index 20de50045fc75..3d83e16c46dfe 100644 --- a/clients/client-eks/package.json +++ b/clients/client-eks/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-eks/src/EKS.ts b/clients/client-eks/src/EKS.ts index af35e49a3f35a..643a3c3536abc 100644 --- a/clients/client-eks/src/EKS.ts +++ b/clients/client-eks/src/EKS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateAccessPolicyCommand, @@ -298,7 +298,7 @@ import { UpdatePodIdentityAssociationCommandInput, UpdatePodIdentityAssociationCommandOutput, } from "./commands/UpdatePodIdentityAssociationCommand"; -import { EKSClient, EKSClientConfig } from "./EKSClient"; +import { EKSClient } from "./EKSClient"; const commands = { AssociateAccessPolicyCommand, diff --git a/clients/client-eks/src/EKSClient.ts b/clients/client-eks/src/EKSClient.ts index 0fca5a0d0f29a..2caf71ef2e101 100644 --- a/clients/client-eks/src/EKSClient.ts +++ b/clients/client-eks/src/EKSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEKSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -227,7 +236,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-eks/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-eks/src/auth/httpAuthExtensionConfiguration.ts index 27690513a7ead..6daaf8c3cefb3 100644 --- a/clients/client-eks/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-eks/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EKSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EKSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-eks/src/auth/httpAuthSchemeProvider.ts b/clients/client-eks/src/auth/httpAuthSchemeProvider.ts index b6da0241de2cd..dac2c5b839053 100644 --- a/clients/client-eks/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-eks/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EKSClientConfig, EKSClientResolvedConfig } from "../EKSClient"; +import { type EKSClientResolvedConfig, EKSClientConfig } from "../EKSClient"; /** * @internal diff --git a/clients/client-eks/src/commands/AssociateAccessPolicyCommand.ts b/clients/client-eks/src/commands/AssociateAccessPolicyCommand.ts index a70c0f4003791..03a745a6e28bb 100644 --- a/clients/client-eks/src/commands/AssociateAccessPolicyCommand.ts +++ b/clients/client-eks/src/commands/AssociateAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAccessPolicyRequest, AssociateAccessPolicyResponse } from "../models/models_0"; +import type { AssociateAccessPolicyRequest, AssociateAccessPolicyResponse } from "../models/models_0"; import { AssociateAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/AssociateEncryptionConfigCommand.ts b/clients/client-eks/src/commands/AssociateEncryptionConfigCommand.ts index 18c0a2676e299..19546c80e2650 100644 --- a/clients/client-eks/src/commands/AssociateEncryptionConfigCommand.ts +++ b/clients/client-eks/src/commands/AssociateEncryptionConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateEncryptionConfigRequest, AssociateEncryptionConfigResponse } from "../models/models_0"; +import type { AssociateEncryptionConfigRequest, AssociateEncryptionConfigResponse } from "../models/models_0"; import { AssociateEncryptionConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/AssociateIdentityProviderConfigCommand.ts b/clients/client-eks/src/commands/AssociateIdentityProviderConfigCommand.ts index 0f7e14a6642b9..6e60d6169fc9f 100644 --- a/clients/client-eks/src/commands/AssociateIdentityProviderConfigCommand.ts +++ b/clients/client-eks/src/commands/AssociateIdentityProviderConfigCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateIdentityProviderConfigRequest, AssociateIdentityProviderConfigResponse } from "../models/models_0"; +import type { + AssociateIdentityProviderConfigRequest, + AssociateIdentityProviderConfigResponse, +} from "../models/models_0"; import { AssociateIdentityProviderConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/CreateAccessEntryCommand.ts b/clients/client-eks/src/commands/CreateAccessEntryCommand.ts index 7e41fbe61f0ca..a156cba064ea3 100644 --- a/clients/client-eks/src/commands/CreateAccessEntryCommand.ts +++ b/clients/client-eks/src/commands/CreateAccessEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessEntryRequest, CreateAccessEntryResponse } from "../models/models_0"; +import type { CreateAccessEntryRequest, CreateAccessEntryResponse } from "../models/models_0"; import { CreateAccessEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/CreateAddonCommand.ts b/clients/client-eks/src/commands/CreateAddonCommand.ts index a39398937d8be..57423f1f84514 100644 --- a/clients/client-eks/src/commands/CreateAddonCommand.ts +++ b/clients/client-eks/src/commands/CreateAddonCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAddonRequest, CreateAddonResponse } from "../models/models_0"; +import type { CreateAddonRequest, CreateAddonResponse } from "../models/models_0"; import { CreateAddon } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/CreateCapabilityCommand.ts b/clients/client-eks/src/commands/CreateCapabilityCommand.ts index f2f1d7c3f544b..56268ba841bdd 100644 --- a/clients/client-eks/src/commands/CreateCapabilityCommand.ts +++ b/clients/client-eks/src/commands/CreateCapabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCapabilityRequest, CreateCapabilityResponse } from "../models/models_0"; +import type { CreateCapabilityRequest, CreateCapabilityResponse } from "../models/models_0"; import { CreateCapability } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/CreateClusterCommand.ts b/clients/client-eks/src/commands/CreateClusterCommand.ts index a04b8517f7855..c9d21bf15bd44 100644 --- a/clients/client-eks/src/commands/CreateClusterCommand.ts +++ b/clients/client-eks/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/CreateEksAnywhereSubscriptionCommand.ts b/clients/client-eks/src/commands/CreateEksAnywhereSubscriptionCommand.ts index d388cf731007b..e7d6b3d089d73 100644 --- a/clients/client-eks/src/commands/CreateEksAnywhereSubscriptionCommand.ts +++ b/clients/client-eks/src/commands/CreateEksAnywhereSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEksAnywhereSubscriptionRequest, CreateEksAnywhereSubscriptionResponse } from "../models/models_0"; +import type { CreateEksAnywhereSubscriptionRequest, CreateEksAnywhereSubscriptionResponse } from "../models/models_0"; import { CreateEksAnywhereSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/CreateFargateProfileCommand.ts b/clients/client-eks/src/commands/CreateFargateProfileCommand.ts index 323804371f249..c4c33b537697d 100644 --- a/clients/client-eks/src/commands/CreateFargateProfileCommand.ts +++ b/clients/client-eks/src/commands/CreateFargateProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFargateProfileRequest, CreateFargateProfileResponse } from "../models/models_0"; +import type { CreateFargateProfileRequest, CreateFargateProfileResponse } from "../models/models_0"; import { CreateFargateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/CreateNodegroupCommand.ts b/clients/client-eks/src/commands/CreateNodegroupCommand.ts index 97a28aa9c3a54..2a733d9cedbc7 100644 --- a/clients/client-eks/src/commands/CreateNodegroupCommand.ts +++ b/clients/client-eks/src/commands/CreateNodegroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNodegroupRequest, CreateNodegroupResponse } from "../models/models_0"; +import type { CreateNodegroupRequest, CreateNodegroupResponse } from "../models/models_0"; import { CreateNodegroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/CreatePodIdentityAssociationCommand.ts b/clients/client-eks/src/commands/CreatePodIdentityAssociationCommand.ts index fd451dceca3fa..38266f67698c5 100644 --- a/clients/client-eks/src/commands/CreatePodIdentityAssociationCommand.ts +++ b/clients/client-eks/src/commands/CreatePodIdentityAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePodIdentityAssociationRequest, CreatePodIdentityAssociationResponse } from "../models/models_0"; +import type { CreatePodIdentityAssociationRequest, CreatePodIdentityAssociationResponse } from "../models/models_0"; import { CreatePodIdentityAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DeleteAccessEntryCommand.ts b/clients/client-eks/src/commands/DeleteAccessEntryCommand.ts index 5987f15053754..a14a0368a4e1a 100644 --- a/clients/client-eks/src/commands/DeleteAccessEntryCommand.ts +++ b/clients/client-eks/src/commands/DeleteAccessEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessEntryRequest, DeleteAccessEntryResponse } from "../models/models_0"; +import type { DeleteAccessEntryRequest, DeleteAccessEntryResponse } from "../models/models_0"; import { DeleteAccessEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DeleteAddonCommand.ts b/clients/client-eks/src/commands/DeleteAddonCommand.ts index 00c092851d8ab..4d2e700d5b303 100644 --- a/clients/client-eks/src/commands/DeleteAddonCommand.ts +++ b/clients/client-eks/src/commands/DeleteAddonCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAddonRequest, DeleteAddonResponse } from "../models/models_0"; +import type { DeleteAddonRequest, DeleteAddonResponse } from "../models/models_0"; import { DeleteAddon } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DeleteCapabilityCommand.ts b/clients/client-eks/src/commands/DeleteCapabilityCommand.ts index d3033d813b043..71822a218ed20 100644 --- a/clients/client-eks/src/commands/DeleteCapabilityCommand.ts +++ b/clients/client-eks/src/commands/DeleteCapabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCapabilityRequest, DeleteCapabilityResponse } from "../models/models_0"; +import type { DeleteCapabilityRequest, DeleteCapabilityResponse } from "../models/models_0"; import { DeleteCapability } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DeleteClusterCommand.ts b/clients/client-eks/src/commands/DeleteClusterCommand.ts index 4061d7be52fac..c61cfbbb360bf 100644 --- a/clients/client-eks/src/commands/DeleteClusterCommand.ts +++ b/clients/client-eks/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DeleteEksAnywhereSubscriptionCommand.ts b/clients/client-eks/src/commands/DeleteEksAnywhereSubscriptionCommand.ts index 4b025e9069bf8..0a8186f80ad82 100644 --- a/clients/client-eks/src/commands/DeleteEksAnywhereSubscriptionCommand.ts +++ b/clients/client-eks/src/commands/DeleteEksAnywhereSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEksAnywhereSubscriptionRequest, DeleteEksAnywhereSubscriptionResponse } from "../models/models_0"; +import type { DeleteEksAnywhereSubscriptionRequest, DeleteEksAnywhereSubscriptionResponse } from "../models/models_0"; import { DeleteEksAnywhereSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DeleteFargateProfileCommand.ts b/clients/client-eks/src/commands/DeleteFargateProfileCommand.ts index e5e2d12f4498d..f40a2fe663c1d 100644 --- a/clients/client-eks/src/commands/DeleteFargateProfileCommand.ts +++ b/clients/client-eks/src/commands/DeleteFargateProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFargateProfileRequest, DeleteFargateProfileResponse } from "../models/models_0"; +import type { DeleteFargateProfileRequest, DeleteFargateProfileResponse } from "../models/models_0"; import { DeleteFargateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DeleteNodegroupCommand.ts b/clients/client-eks/src/commands/DeleteNodegroupCommand.ts index 04d8a0cacd580..a3b051d15d729 100644 --- a/clients/client-eks/src/commands/DeleteNodegroupCommand.ts +++ b/clients/client-eks/src/commands/DeleteNodegroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNodegroupRequest, DeleteNodegroupResponse } from "../models/models_0"; +import type { DeleteNodegroupRequest, DeleteNodegroupResponse } from "../models/models_0"; import { DeleteNodegroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DeletePodIdentityAssociationCommand.ts b/clients/client-eks/src/commands/DeletePodIdentityAssociationCommand.ts index d0b06e5daaa5c..a9668a3eff789 100644 --- a/clients/client-eks/src/commands/DeletePodIdentityAssociationCommand.ts +++ b/clients/client-eks/src/commands/DeletePodIdentityAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePodIdentityAssociationRequest, DeletePodIdentityAssociationResponse } from "../models/models_0"; +import type { DeletePodIdentityAssociationRequest, DeletePodIdentityAssociationResponse } from "../models/models_0"; import { DeletePodIdentityAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DeregisterClusterCommand.ts b/clients/client-eks/src/commands/DeregisterClusterCommand.ts index 8cd26bbecca52..ebfa0df9fe154 100644 --- a/clients/client-eks/src/commands/DeregisterClusterCommand.ts +++ b/clients/client-eks/src/commands/DeregisterClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterClusterRequest, DeregisterClusterResponse } from "../models/models_0"; +import type { DeregisterClusterRequest, DeregisterClusterResponse } from "../models/models_0"; import { DeregisterCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeAccessEntryCommand.ts b/clients/client-eks/src/commands/DescribeAccessEntryCommand.ts index 9eee1d42783de..1761df7d847c0 100644 --- a/clients/client-eks/src/commands/DescribeAccessEntryCommand.ts +++ b/clients/client-eks/src/commands/DescribeAccessEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccessEntryRequest, DescribeAccessEntryResponse } from "../models/models_0"; +import type { DescribeAccessEntryRequest, DescribeAccessEntryResponse } from "../models/models_0"; import { DescribeAccessEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeAddonCommand.ts b/clients/client-eks/src/commands/DescribeAddonCommand.ts index 3d64829c22b8c..dbf8c871bed27 100644 --- a/clients/client-eks/src/commands/DescribeAddonCommand.ts +++ b/clients/client-eks/src/commands/DescribeAddonCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAddonRequest, DescribeAddonResponse } from "../models/models_0"; +import type { DescribeAddonRequest, DescribeAddonResponse } from "../models/models_0"; import { DescribeAddon } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeAddonConfigurationCommand.ts b/clients/client-eks/src/commands/DescribeAddonConfigurationCommand.ts index c0836b4cb0256..5346ac0d57c8c 100644 --- a/clients/client-eks/src/commands/DescribeAddonConfigurationCommand.ts +++ b/clients/client-eks/src/commands/DescribeAddonConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAddonConfigurationRequest, DescribeAddonConfigurationResponse } from "../models/models_0"; +import type { DescribeAddonConfigurationRequest, DescribeAddonConfigurationResponse } from "../models/models_0"; import { DescribeAddonConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeAddonVersionsCommand.ts b/clients/client-eks/src/commands/DescribeAddonVersionsCommand.ts index da9201a6fcc9c..6bdf095e4ab5b 100644 --- a/clients/client-eks/src/commands/DescribeAddonVersionsCommand.ts +++ b/clients/client-eks/src/commands/DescribeAddonVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAddonVersionsRequest, DescribeAddonVersionsResponse } from "../models/models_0"; +import type { DescribeAddonVersionsRequest, DescribeAddonVersionsResponse } from "../models/models_0"; import { DescribeAddonVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeCapabilityCommand.ts b/clients/client-eks/src/commands/DescribeCapabilityCommand.ts index 70199031b2e5b..f0c2ce2dbb26c 100644 --- a/clients/client-eks/src/commands/DescribeCapabilityCommand.ts +++ b/clients/client-eks/src/commands/DescribeCapabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCapabilityRequest, DescribeCapabilityResponse } from "../models/models_0"; +import type { DescribeCapabilityRequest, DescribeCapabilityResponse } from "../models/models_0"; import { DescribeCapability } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeClusterCommand.ts b/clients/client-eks/src/commands/DescribeClusterCommand.ts index 198bb0672d7c8..00a11f722683e 100644 --- a/clients/client-eks/src/commands/DescribeClusterCommand.ts +++ b/clients/client-eks/src/commands/DescribeClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_0"; +import type { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_0"; import { DescribeCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeClusterVersionsCommand.ts b/clients/client-eks/src/commands/DescribeClusterVersionsCommand.ts index b3523558ed1cb..105ad648aa7b3 100644 --- a/clients/client-eks/src/commands/DescribeClusterVersionsCommand.ts +++ b/clients/client-eks/src/commands/DescribeClusterVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterVersionsRequest, DescribeClusterVersionsResponse } from "../models/models_0"; +import type { DescribeClusterVersionsRequest, DescribeClusterVersionsResponse } from "../models/models_0"; import { DescribeClusterVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeEksAnywhereSubscriptionCommand.ts b/clients/client-eks/src/commands/DescribeEksAnywhereSubscriptionCommand.ts index 85922c1077ae4..7358aad3a1c99 100644 --- a/clients/client-eks/src/commands/DescribeEksAnywhereSubscriptionCommand.ts +++ b/clients/client-eks/src/commands/DescribeEksAnywhereSubscriptionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEksAnywhereSubscriptionRequest, DescribeEksAnywhereSubscriptionResponse } from "../models/models_0"; +import type { + DescribeEksAnywhereSubscriptionRequest, + DescribeEksAnywhereSubscriptionResponse, +} from "../models/models_0"; import { DescribeEksAnywhereSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeFargateProfileCommand.ts b/clients/client-eks/src/commands/DescribeFargateProfileCommand.ts index c77e10789e909..b5b064368cfe0 100644 --- a/clients/client-eks/src/commands/DescribeFargateProfileCommand.ts +++ b/clients/client-eks/src/commands/DescribeFargateProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFargateProfileRequest, DescribeFargateProfileResponse } from "../models/models_0"; +import type { DescribeFargateProfileRequest, DescribeFargateProfileResponse } from "../models/models_0"; import { DescribeFargateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeIdentityProviderConfigCommand.ts b/clients/client-eks/src/commands/DescribeIdentityProviderConfigCommand.ts index 8f3d059922a0d..5221a53e58519 100644 --- a/clients/client-eks/src/commands/DescribeIdentityProviderConfigCommand.ts +++ b/clients/client-eks/src/commands/DescribeIdentityProviderConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIdentityProviderConfigRequest, DescribeIdentityProviderConfigResponse } from "../models/models_0"; +import type { DescribeIdentityProviderConfigRequest, DescribeIdentityProviderConfigResponse } from "../models/models_0"; import { DescribeIdentityProviderConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeInsightCommand.ts b/clients/client-eks/src/commands/DescribeInsightCommand.ts index 3411b83c224d6..be432e139cae8 100644 --- a/clients/client-eks/src/commands/DescribeInsightCommand.ts +++ b/clients/client-eks/src/commands/DescribeInsightCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInsightRequest, DescribeInsightResponse } from "../models/models_0"; +import type { DescribeInsightRequest, DescribeInsightResponse } from "../models/models_0"; import { DescribeInsight } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeInsightsRefreshCommand.ts b/clients/client-eks/src/commands/DescribeInsightsRefreshCommand.ts index 173efc006c3cf..5eb12851975fb 100644 --- a/clients/client-eks/src/commands/DescribeInsightsRefreshCommand.ts +++ b/clients/client-eks/src/commands/DescribeInsightsRefreshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInsightsRefreshRequest, DescribeInsightsRefreshResponse } from "../models/models_0"; +import type { DescribeInsightsRefreshRequest, DescribeInsightsRefreshResponse } from "../models/models_0"; import { DescribeInsightsRefresh } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeNodegroupCommand.ts b/clients/client-eks/src/commands/DescribeNodegroupCommand.ts index c25c978758451..a4c2300ac7eed 100644 --- a/clients/client-eks/src/commands/DescribeNodegroupCommand.ts +++ b/clients/client-eks/src/commands/DescribeNodegroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNodegroupRequest, DescribeNodegroupResponse } from "../models/models_0"; +import type { DescribeNodegroupRequest, DescribeNodegroupResponse } from "../models/models_0"; import { DescribeNodegroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribePodIdentityAssociationCommand.ts b/clients/client-eks/src/commands/DescribePodIdentityAssociationCommand.ts index aa9a9cc8c4870..67508c019cc84 100644 --- a/clients/client-eks/src/commands/DescribePodIdentityAssociationCommand.ts +++ b/clients/client-eks/src/commands/DescribePodIdentityAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePodIdentityAssociationRequest, DescribePodIdentityAssociationResponse } from "../models/models_0"; +import type { DescribePodIdentityAssociationRequest, DescribePodIdentityAssociationResponse } from "../models/models_0"; import { DescribePodIdentityAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DescribeUpdateCommand.ts b/clients/client-eks/src/commands/DescribeUpdateCommand.ts index 1ab41f3a584a5..76665b2458953 100644 --- a/clients/client-eks/src/commands/DescribeUpdateCommand.ts +++ b/clients/client-eks/src/commands/DescribeUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUpdateRequest, DescribeUpdateResponse } from "../models/models_0"; +import type { DescribeUpdateRequest, DescribeUpdateResponse } from "../models/models_0"; import { DescribeUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DisassociateAccessPolicyCommand.ts b/clients/client-eks/src/commands/DisassociateAccessPolicyCommand.ts index 3d68f43dcbaf8..0d9afeac2de0c 100644 --- a/clients/client-eks/src/commands/DisassociateAccessPolicyCommand.ts +++ b/clients/client-eks/src/commands/DisassociateAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateAccessPolicyRequest, DisassociateAccessPolicyResponse } from "../models/models_0"; +import type { DisassociateAccessPolicyRequest, DisassociateAccessPolicyResponse } from "../models/models_0"; import { DisassociateAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/DisassociateIdentityProviderConfigCommand.ts b/clients/client-eks/src/commands/DisassociateIdentityProviderConfigCommand.ts index c653a8c55037a..6003c9d1548ee 100644 --- a/clients/client-eks/src/commands/DisassociateIdentityProviderConfigCommand.ts +++ b/clients/client-eks/src/commands/DisassociateIdentityProviderConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateIdentityProviderConfigRequest, DisassociateIdentityProviderConfigResponse, } from "../models/models_0"; diff --git a/clients/client-eks/src/commands/ListAccessEntriesCommand.ts b/clients/client-eks/src/commands/ListAccessEntriesCommand.ts index 8977a161f7b90..d3203dedaddfd 100644 --- a/clients/client-eks/src/commands/ListAccessEntriesCommand.ts +++ b/clients/client-eks/src/commands/ListAccessEntriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessEntriesRequest, ListAccessEntriesResponse } from "../models/models_0"; +import type { ListAccessEntriesRequest, ListAccessEntriesResponse } from "../models/models_0"; import { ListAccessEntries } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListAccessPoliciesCommand.ts b/clients/client-eks/src/commands/ListAccessPoliciesCommand.ts index 41ab16598d57d..c534003af9261 100644 --- a/clients/client-eks/src/commands/ListAccessPoliciesCommand.ts +++ b/clients/client-eks/src/commands/ListAccessPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessPoliciesRequest, ListAccessPoliciesResponse } from "../models/models_0"; +import type { ListAccessPoliciesRequest, ListAccessPoliciesResponse } from "../models/models_0"; import { ListAccessPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListAddonsCommand.ts b/clients/client-eks/src/commands/ListAddonsCommand.ts index 04ddf49226832..71b918d06e532 100644 --- a/clients/client-eks/src/commands/ListAddonsCommand.ts +++ b/clients/client-eks/src/commands/ListAddonsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAddonsRequest, ListAddonsResponse } from "../models/models_0"; +import type { ListAddonsRequest, ListAddonsResponse } from "../models/models_0"; import { ListAddons } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListAssociatedAccessPoliciesCommand.ts b/clients/client-eks/src/commands/ListAssociatedAccessPoliciesCommand.ts index 6c95f7c609ad3..b80ac2908791e 100644 --- a/clients/client-eks/src/commands/ListAssociatedAccessPoliciesCommand.ts +++ b/clients/client-eks/src/commands/ListAssociatedAccessPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociatedAccessPoliciesRequest, ListAssociatedAccessPoliciesResponse } from "../models/models_0"; +import type { ListAssociatedAccessPoliciesRequest, ListAssociatedAccessPoliciesResponse } from "../models/models_0"; import { ListAssociatedAccessPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListCapabilitiesCommand.ts b/clients/client-eks/src/commands/ListCapabilitiesCommand.ts index 1264d46b112cb..c54cc3e84c15c 100644 --- a/clients/client-eks/src/commands/ListCapabilitiesCommand.ts +++ b/clients/client-eks/src/commands/ListCapabilitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCapabilitiesRequest, ListCapabilitiesResponse } from "../models/models_0"; +import type { ListCapabilitiesRequest, ListCapabilitiesResponse } from "../models/models_0"; import { ListCapabilities } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListClustersCommand.ts b/clients/client-eks/src/commands/ListClustersCommand.ts index 315db4de593a2..2622db7b02be3 100644 --- a/clients/client-eks/src/commands/ListClustersCommand.ts +++ b/clients/client-eks/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClustersRequest, ListClustersResponse } from "../models/models_0"; +import type { ListClustersRequest, ListClustersResponse } from "../models/models_0"; import { ListClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListEksAnywhereSubscriptionsCommand.ts b/clients/client-eks/src/commands/ListEksAnywhereSubscriptionsCommand.ts index fb6349ae1bee4..ffa57bc1f92b6 100644 --- a/clients/client-eks/src/commands/ListEksAnywhereSubscriptionsCommand.ts +++ b/clients/client-eks/src/commands/ListEksAnywhereSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEksAnywhereSubscriptionsRequest, ListEksAnywhereSubscriptionsResponse } from "../models/models_0"; +import type { ListEksAnywhereSubscriptionsRequest, ListEksAnywhereSubscriptionsResponse } from "../models/models_0"; import { ListEksAnywhereSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListFargateProfilesCommand.ts b/clients/client-eks/src/commands/ListFargateProfilesCommand.ts index c9b87ed1d1cb3..3b30073751b17 100644 --- a/clients/client-eks/src/commands/ListFargateProfilesCommand.ts +++ b/clients/client-eks/src/commands/ListFargateProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFargateProfilesRequest, ListFargateProfilesResponse } from "../models/models_0"; +import type { ListFargateProfilesRequest, ListFargateProfilesResponse } from "../models/models_0"; import { ListFargateProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListIdentityProviderConfigsCommand.ts b/clients/client-eks/src/commands/ListIdentityProviderConfigsCommand.ts index e2d90e958e468..afb473bda78b9 100644 --- a/clients/client-eks/src/commands/ListIdentityProviderConfigsCommand.ts +++ b/clients/client-eks/src/commands/ListIdentityProviderConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentityProviderConfigsRequest, ListIdentityProviderConfigsResponse } from "../models/models_0"; +import type { ListIdentityProviderConfigsRequest, ListIdentityProviderConfigsResponse } from "../models/models_0"; import { ListIdentityProviderConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListInsightsCommand.ts b/clients/client-eks/src/commands/ListInsightsCommand.ts index 1cb7123ab4ece..9bc8b490b7013 100644 --- a/clients/client-eks/src/commands/ListInsightsCommand.ts +++ b/clients/client-eks/src/commands/ListInsightsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInsightsRequest, ListInsightsResponse } from "../models/models_0"; +import type { ListInsightsRequest, ListInsightsResponse } from "../models/models_0"; import { ListInsights } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListNodegroupsCommand.ts b/clients/client-eks/src/commands/ListNodegroupsCommand.ts index 805f972bf5ce5..a9733b0038b46 100644 --- a/clients/client-eks/src/commands/ListNodegroupsCommand.ts +++ b/clients/client-eks/src/commands/ListNodegroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNodegroupsRequest, ListNodegroupsResponse } from "../models/models_0"; +import type { ListNodegroupsRequest, ListNodegroupsResponse } from "../models/models_0"; import { ListNodegroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListPodIdentityAssociationsCommand.ts b/clients/client-eks/src/commands/ListPodIdentityAssociationsCommand.ts index 752177c799d47..904a364f420c4 100644 --- a/clients/client-eks/src/commands/ListPodIdentityAssociationsCommand.ts +++ b/clients/client-eks/src/commands/ListPodIdentityAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPodIdentityAssociationsRequest, ListPodIdentityAssociationsResponse } from "../models/models_0"; +import type { ListPodIdentityAssociationsRequest, ListPodIdentityAssociationsResponse } from "../models/models_0"; import { ListPodIdentityAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListTagsForResourceCommand.ts b/clients/client-eks/src/commands/ListTagsForResourceCommand.ts index 0a4962dbd98e2..16fe02a76ea6e 100644 --- a/clients/client-eks/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-eks/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/ListUpdatesCommand.ts b/clients/client-eks/src/commands/ListUpdatesCommand.ts index 11dec525c8d1c..b550f4eb84386 100644 --- a/clients/client-eks/src/commands/ListUpdatesCommand.ts +++ b/clients/client-eks/src/commands/ListUpdatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUpdatesRequest, ListUpdatesResponse } from "../models/models_0"; +import type { ListUpdatesRequest, ListUpdatesResponse } from "../models/models_0"; import { ListUpdates } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/RegisterClusterCommand.ts b/clients/client-eks/src/commands/RegisterClusterCommand.ts index fc80ec5c1f9dc..51ad0e1163392 100644 --- a/clients/client-eks/src/commands/RegisterClusterCommand.ts +++ b/clients/client-eks/src/commands/RegisterClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterClusterRequest, RegisterClusterResponse } from "../models/models_0"; +import type { RegisterClusterRequest, RegisterClusterResponse } from "../models/models_0"; import { RegisterCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/StartInsightsRefreshCommand.ts b/clients/client-eks/src/commands/StartInsightsRefreshCommand.ts index 27c3751dd9735..be219b9e8563e 100644 --- a/clients/client-eks/src/commands/StartInsightsRefreshCommand.ts +++ b/clients/client-eks/src/commands/StartInsightsRefreshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartInsightsRefreshRequest, StartInsightsRefreshResponse } from "../models/models_0"; +import type { StartInsightsRefreshRequest, StartInsightsRefreshResponse } from "../models/models_0"; import { StartInsightsRefresh } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/TagResourceCommand.ts b/clients/client-eks/src/commands/TagResourceCommand.ts index 0c26a58df61bb..641452a5cac76 100644 --- a/clients/client-eks/src/commands/TagResourceCommand.ts +++ b/clients/client-eks/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UntagResourceCommand.ts b/clients/client-eks/src/commands/UntagResourceCommand.ts index eb873ee9678cf..08593f36357ed 100644 --- a/clients/client-eks/src/commands/UntagResourceCommand.ts +++ b/clients/client-eks/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UpdateAccessEntryCommand.ts b/clients/client-eks/src/commands/UpdateAccessEntryCommand.ts index 6054965dbad65..2c447c319dade 100644 --- a/clients/client-eks/src/commands/UpdateAccessEntryCommand.ts +++ b/clients/client-eks/src/commands/UpdateAccessEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccessEntryRequest, UpdateAccessEntryResponse } from "../models/models_0"; +import type { UpdateAccessEntryRequest, UpdateAccessEntryResponse } from "../models/models_0"; import { UpdateAccessEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UpdateAddonCommand.ts b/clients/client-eks/src/commands/UpdateAddonCommand.ts index a947dc15b0e5d..0f359187ceb82 100644 --- a/clients/client-eks/src/commands/UpdateAddonCommand.ts +++ b/clients/client-eks/src/commands/UpdateAddonCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAddonRequest, UpdateAddonResponse } from "../models/models_0"; +import type { UpdateAddonRequest, UpdateAddonResponse } from "../models/models_0"; import { UpdateAddon } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UpdateCapabilityCommand.ts b/clients/client-eks/src/commands/UpdateCapabilityCommand.ts index 93d28e274530c..a6b931edc05a4 100644 --- a/clients/client-eks/src/commands/UpdateCapabilityCommand.ts +++ b/clients/client-eks/src/commands/UpdateCapabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCapabilityRequest, UpdateCapabilityResponse } from "../models/models_0"; +import type { UpdateCapabilityRequest, UpdateCapabilityResponse } from "../models/models_0"; import { UpdateCapability } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UpdateClusterConfigCommand.ts b/clients/client-eks/src/commands/UpdateClusterConfigCommand.ts index 1fea407da769e..50a1b41a4d510 100644 --- a/clients/client-eks/src/commands/UpdateClusterConfigCommand.ts +++ b/clients/client-eks/src/commands/UpdateClusterConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterConfigRequest, UpdateClusterConfigResponse } from "../models/models_0"; +import type { UpdateClusterConfigRequest, UpdateClusterConfigResponse } from "../models/models_0"; import { UpdateClusterConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UpdateClusterVersionCommand.ts b/clients/client-eks/src/commands/UpdateClusterVersionCommand.ts index 73ec9b75e5101..3a92c1f7eebb8 100644 --- a/clients/client-eks/src/commands/UpdateClusterVersionCommand.ts +++ b/clients/client-eks/src/commands/UpdateClusterVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterVersionRequest, UpdateClusterVersionResponse } from "../models/models_0"; +import type { UpdateClusterVersionRequest, UpdateClusterVersionResponse } from "../models/models_0"; import { UpdateClusterVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UpdateEksAnywhereSubscriptionCommand.ts b/clients/client-eks/src/commands/UpdateEksAnywhereSubscriptionCommand.ts index e4fb40c61baff..1e1b4402d68f3 100644 --- a/clients/client-eks/src/commands/UpdateEksAnywhereSubscriptionCommand.ts +++ b/clients/client-eks/src/commands/UpdateEksAnywhereSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEksAnywhereSubscriptionRequest, UpdateEksAnywhereSubscriptionResponse } from "../models/models_0"; +import type { UpdateEksAnywhereSubscriptionRequest, UpdateEksAnywhereSubscriptionResponse } from "../models/models_0"; import { UpdateEksAnywhereSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UpdateNodegroupConfigCommand.ts b/clients/client-eks/src/commands/UpdateNodegroupConfigCommand.ts index bce28327a58eb..44ca4780f5c2f 100644 --- a/clients/client-eks/src/commands/UpdateNodegroupConfigCommand.ts +++ b/clients/client-eks/src/commands/UpdateNodegroupConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNodegroupConfigRequest, UpdateNodegroupConfigResponse } from "../models/models_0"; +import type { UpdateNodegroupConfigRequest, UpdateNodegroupConfigResponse } from "../models/models_0"; import { UpdateNodegroupConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UpdateNodegroupVersionCommand.ts b/clients/client-eks/src/commands/UpdateNodegroupVersionCommand.ts index 1eb4e04b25295..e5ac8380d2d6f 100644 --- a/clients/client-eks/src/commands/UpdateNodegroupVersionCommand.ts +++ b/clients/client-eks/src/commands/UpdateNodegroupVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNodegroupVersionRequest, UpdateNodegroupVersionResponse } from "../models/models_0"; +import type { UpdateNodegroupVersionRequest, UpdateNodegroupVersionResponse } from "../models/models_0"; import { UpdateNodegroupVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/commands/UpdatePodIdentityAssociationCommand.ts b/clients/client-eks/src/commands/UpdatePodIdentityAssociationCommand.ts index 71ebf556a43d6..ca808871c55ac 100644 --- a/clients/client-eks/src/commands/UpdatePodIdentityAssociationCommand.ts +++ b/clients/client-eks/src/commands/UpdatePodIdentityAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; +import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePodIdentityAssociationRequest, UpdatePodIdentityAssociationResponse } from "../models/models_0"; +import type { UpdatePodIdentityAssociationRequest, UpdatePodIdentityAssociationResponse } from "../models/models_0"; import { UpdatePodIdentityAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-eks/src/endpoint/EndpointParameters.ts b/clients/client-eks/src/endpoint/EndpointParameters.ts index ec916fd5a15bf..cf361bfa881e5 100644 --- a/clients/client-eks/src/endpoint/EndpointParameters.ts +++ b/clients/client-eks/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-eks/src/endpoint/endpointResolver.ts b/clients/client-eks/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-eks/src/endpoint/endpointResolver.ts +++ b/clients/client-eks/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-eks/src/extensionConfiguration.ts b/clients/client-eks/src/extensionConfiguration.ts index f8c04a0118c69..a10bde7773890 100644 --- a/clients/client-eks/src/extensionConfiguration.ts +++ b/clients/client-eks/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-eks/src/models/EKSServiceException.ts b/clients/client-eks/src/models/EKSServiceException.ts index 34d7e5b0ba533..20f1cbc3ea0cb 100644 --- a/clients/client-eks/src/models/EKSServiceException.ts +++ b/clients/client-eks/src/models/EKSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-eks/src/models/errors.ts b/clients/client-eks/src/models/errors.ts index 14b1c998df9b5..be8bffca493bd 100644 --- a/clients/client-eks/src/models/errors.ts +++ b/clients/client-eks/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EKSServiceException as __BaseException } from "./EKSServiceException"; diff --git a/clients/client-eks/src/pagination/DescribeAddonVersionsPaginator.ts b/clients/client-eks/src/pagination/DescribeAddonVersionsPaginator.ts index 9b24937e2d1d5..aeb94e2c3c9e5 100644 --- a/clients/client-eks/src/pagination/DescribeAddonVersionsPaginator.ts +++ b/clients/client-eks/src/pagination/DescribeAddonVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAddonVersionsCommand, diff --git a/clients/client-eks/src/pagination/DescribeClusterVersionsPaginator.ts b/clients/client-eks/src/pagination/DescribeClusterVersionsPaginator.ts index 695d2072f968c..d6a6f19d44c73 100644 --- a/clients/client-eks/src/pagination/DescribeClusterVersionsPaginator.ts +++ b/clients/client-eks/src/pagination/DescribeClusterVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClusterVersionsCommand, diff --git a/clients/client-eks/src/pagination/Interfaces.ts b/clients/client-eks/src/pagination/Interfaces.ts index bec00614ee1ce..d8cec3cf39f1f 100644 --- a/clients/client-eks/src/pagination/Interfaces.ts +++ b/clients/client-eks/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EKSClient } from "../EKSClient"; diff --git a/clients/client-eks/src/pagination/ListAccessEntriesPaginator.ts b/clients/client-eks/src/pagination/ListAccessEntriesPaginator.ts index dc91931424258..94d1986910ca2 100644 --- a/clients/client-eks/src/pagination/ListAccessEntriesPaginator.ts +++ b/clients/client-eks/src/pagination/ListAccessEntriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessEntriesCommand, diff --git a/clients/client-eks/src/pagination/ListAccessPoliciesPaginator.ts b/clients/client-eks/src/pagination/ListAccessPoliciesPaginator.ts index 3beacca1b8baf..649b5dc581013 100644 --- a/clients/client-eks/src/pagination/ListAccessPoliciesPaginator.ts +++ b/clients/client-eks/src/pagination/ListAccessPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessPoliciesCommand, diff --git a/clients/client-eks/src/pagination/ListAddonsPaginator.ts b/clients/client-eks/src/pagination/ListAddonsPaginator.ts index dba0ce38d9b4d..868b3d7e58c54 100644 --- a/clients/client-eks/src/pagination/ListAddonsPaginator.ts +++ b/clients/client-eks/src/pagination/ListAddonsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAddonsCommand, ListAddonsCommandInput, ListAddonsCommandOutput } from "../commands/ListAddonsCommand"; import { EKSClient } from "../EKSClient"; diff --git a/clients/client-eks/src/pagination/ListAssociatedAccessPoliciesPaginator.ts b/clients/client-eks/src/pagination/ListAssociatedAccessPoliciesPaginator.ts index d6052f3632c9e..adcab7a62eaab 100644 --- a/clients/client-eks/src/pagination/ListAssociatedAccessPoliciesPaginator.ts +++ b/clients/client-eks/src/pagination/ListAssociatedAccessPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssociatedAccessPoliciesCommand, diff --git a/clients/client-eks/src/pagination/ListCapabilitiesPaginator.ts b/clients/client-eks/src/pagination/ListCapabilitiesPaginator.ts index 4f12d3c2655c6..f20553910279f 100644 --- a/clients/client-eks/src/pagination/ListCapabilitiesPaginator.ts +++ b/clients/client-eks/src/pagination/ListCapabilitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCapabilitiesCommand, diff --git a/clients/client-eks/src/pagination/ListClustersPaginator.ts b/clients/client-eks/src/pagination/ListClustersPaginator.ts index ee5a88de232dc..9de89a1ff1247 100644 --- a/clients/client-eks/src/pagination/ListClustersPaginator.ts +++ b/clients/client-eks/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-eks/src/pagination/ListEksAnywhereSubscriptionsPaginator.ts b/clients/client-eks/src/pagination/ListEksAnywhereSubscriptionsPaginator.ts index 7b49ce26a7977..25dd494db61d3 100644 --- a/clients/client-eks/src/pagination/ListEksAnywhereSubscriptionsPaginator.ts +++ b/clients/client-eks/src/pagination/ListEksAnywhereSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEksAnywhereSubscriptionsCommand, diff --git a/clients/client-eks/src/pagination/ListFargateProfilesPaginator.ts b/clients/client-eks/src/pagination/ListFargateProfilesPaginator.ts index 86e2d8a957869..bf7d3257b3d51 100644 --- a/clients/client-eks/src/pagination/ListFargateProfilesPaginator.ts +++ b/clients/client-eks/src/pagination/ListFargateProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFargateProfilesCommand, diff --git a/clients/client-eks/src/pagination/ListIdentityProviderConfigsPaginator.ts b/clients/client-eks/src/pagination/ListIdentityProviderConfigsPaginator.ts index f506a45ed4282..a2ac525adc126 100644 --- a/clients/client-eks/src/pagination/ListIdentityProviderConfigsPaginator.ts +++ b/clients/client-eks/src/pagination/ListIdentityProviderConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIdentityProviderConfigsCommand, diff --git a/clients/client-eks/src/pagination/ListInsightsPaginator.ts b/clients/client-eks/src/pagination/ListInsightsPaginator.ts index 84909890d241b..aebe3939ef62c 100644 --- a/clients/client-eks/src/pagination/ListInsightsPaginator.ts +++ b/clients/client-eks/src/pagination/ListInsightsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInsightsCommand, diff --git a/clients/client-eks/src/pagination/ListNodegroupsPaginator.ts b/clients/client-eks/src/pagination/ListNodegroupsPaginator.ts index 68d1c742d197f..fe868dffbeb53 100644 --- a/clients/client-eks/src/pagination/ListNodegroupsPaginator.ts +++ b/clients/client-eks/src/pagination/ListNodegroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNodegroupsCommand, diff --git a/clients/client-eks/src/pagination/ListPodIdentityAssociationsPaginator.ts b/clients/client-eks/src/pagination/ListPodIdentityAssociationsPaginator.ts index 59afc7b627aab..1c58f42af9185 100644 --- a/clients/client-eks/src/pagination/ListPodIdentityAssociationsPaginator.ts +++ b/clients/client-eks/src/pagination/ListPodIdentityAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPodIdentityAssociationsCommand, diff --git a/clients/client-eks/src/pagination/ListUpdatesPaginator.ts b/clients/client-eks/src/pagination/ListUpdatesPaginator.ts index 3373a6b835ffb..0fd06292be7e7 100644 --- a/clients/client-eks/src/pagination/ListUpdatesPaginator.ts +++ b/clients/client-eks/src/pagination/ListUpdatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUpdatesCommand, ListUpdatesCommandInput, ListUpdatesCommandOutput } from "../commands/ListUpdatesCommand"; import { EKSClient } from "../EKSClient"; diff --git a/clients/client-eks/src/runtimeConfig.browser.ts b/clients/client-eks/src/runtimeConfig.browser.ts index b5f2ab8119a7f..bf0f6d11e7437 100644 --- a/clients/client-eks/src/runtimeConfig.browser.ts +++ b/clients/client-eks/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EKSClientConfig } from "./EKSClient"; + +import type { EKSClientConfig } from "./EKSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-eks/src/runtimeConfig.native.ts b/clients/client-eks/src/runtimeConfig.native.ts index 8302314bfa18b..8f58099341bfa 100644 --- a/clients/client-eks/src/runtimeConfig.native.ts +++ b/clients/client-eks/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EKSClientConfig } from "./EKSClient"; +import type { EKSClientConfig } from "./EKSClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-eks/src/runtimeConfig.shared.ts b/clients/client-eks/src/runtimeConfig.shared.ts index 88a74dfc44ab6..7f8ad11684029 100644 --- a/clients/client-eks/src/runtimeConfig.shared.ts +++ b/clients/client-eks/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEKSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EKSClientConfig } from "./EKSClient"; +import type { EKSClientConfig } from "./EKSClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-eks/src/runtimeConfig.ts b/clients/client-eks/src/runtimeConfig.ts index 5ca6963e0734c..97922b2cd8008 100644 --- a/clients/client-eks/src/runtimeConfig.ts +++ b/clients/client-eks/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EKSClientConfig } from "./EKSClient"; + +import type { EKSClientConfig } from "./EKSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-eks/src/runtimeExtensions.ts b/clients/client-eks/src/runtimeExtensions.ts index 91df9bbf4d913..16d5e58bff946 100644 --- a/clients/client-eks/src/runtimeExtensions.ts +++ b/clients/client-eks/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EKSExtensionConfiguration } from "./extensionConfiguration"; +import type { EKSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-eks/src/schemas/schemas_0.ts b/clients/client-eks/src/schemas/schemas_0.ts index acb99b490f42e..a310baefe797f 100644 --- a/clients/client-eks/src/schemas/schemas_0.ts +++ b/clients/client-eks/src/schemas/schemas_0.ts @@ -639,7 +639,7 @@ const n0 = "com.amazonaws.eks"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-elastic-beanstalk/package.json b/clients/client-elastic-beanstalk/package.json index fa5e475c51714..faed0eade882b 100644 --- a/clients/client-elastic-beanstalk/package.json +++ b/clients/client-elastic-beanstalk/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-elastic-beanstalk/src/ElasticBeanstalk.ts b/clients/client-elastic-beanstalk/src/ElasticBeanstalk.ts index c086964b98cf9..d7b01b4f7b9ce 100644 --- a/clients/client-elastic-beanstalk/src/ElasticBeanstalk.ts +++ b/clients/client-elastic-beanstalk/src/ElasticBeanstalk.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AbortEnvironmentUpdateCommand, @@ -237,7 +237,7 @@ import { ValidateConfigurationSettingsCommandInput, ValidateConfigurationSettingsCommandOutput, } from "./commands/ValidateConfigurationSettingsCommand"; -import { ElasticBeanstalkClient, ElasticBeanstalkClientConfig } from "./ElasticBeanstalkClient"; +import { ElasticBeanstalkClient } from "./ElasticBeanstalkClient"; const commands = { AbortEnvironmentUpdateCommand, diff --git a/clients/client-elastic-beanstalk/src/ElasticBeanstalkClient.ts b/clients/client-elastic-beanstalk/src/ElasticBeanstalkClient.ts index ebd6a0be96e49..b68a0470d78c5 100644 --- a/clients/client-elastic-beanstalk/src/ElasticBeanstalkClient.ts +++ b/clients/client-elastic-beanstalk/src/ElasticBeanstalkClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultElasticBeanstalkHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -228,7 +237,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-elastic-beanstalk/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-elastic-beanstalk/src/auth/httpAuthExtensionConfiguration.ts index 318825ad194cc..1e87de1c28c4f 100644 --- a/clients/client-elastic-beanstalk/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-elastic-beanstalk/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ElasticBeanstalkHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ElasticBeanstalkHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-elastic-beanstalk/src/auth/httpAuthSchemeProvider.ts b/clients/client-elastic-beanstalk/src/auth/httpAuthSchemeProvider.ts index 4353d7758df99..216289776c789 100644 --- a/clients/client-elastic-beanstalk/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-elastic-beanstalk/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ElasticBeanstalkClientConfig, ElasticBeanstalkClientResolvedConfig } from "../ElasticBeanstalkClient"; +import { type ElasticBeanstalkClientResolvedConfig, ElasticBeanstalkClientConfig } from "../ElasticBeanstalkClient"; /** * @internal diff --git a/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts b/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts index 613f614d59116..ba852b3d521c0 100644 --- a/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/AbortEnvironmentUpdateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AbortEnvironmentUpdateMessage } from "../models/models_0"; +import type { AbortEnvironmentUpdateMessage } from "../models/models_0"; import { AbortEnvironmentUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts b/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts index b00cd3ac0e4bc..de34fecc4ca2c 100644 --- a/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ApplyEnvironmentManagedActionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplyEnvironmentManagedActionRequest, ApplyEnvironmentManagedActionResult } from "../models/models_0"; +import type { ApplyEnvironmentManagedActionRequest, ApplyEnvironmentManagedActionResult } from "../models/models_0"; import { ApplyEnvironmentManagedAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts b/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts index da58719135b10..e703b9314fbc0 100644 --- a/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/AssociateEnvironmentOperationsRoleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateEnvironmentOperationsRoleMessage } from "../models/models_0"; +import type { AssociateEnvironmentOperationsRoleMessage } from "../models/models_0"; import { AssociateEnvironmentOperationsRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts b/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts index cf4f3319d0a4c..79c63d4d3e6ed 100644 --- a/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CheckDNSAvailabilityCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CheckDNSAvailabilityMessage, CheckDNSAvailabilityResultMessage } from "../models/models_0"; +import type { CheckDNSAvailabilityMessage, CheckDNSAvailabilityResultMessage } from "../models/models_0"; import { CheckDNSAvailability } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts b/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts index dc42d5ae8ced3..a933cbd19c953 100644 --- a/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ComposeEnvironmentsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ComposeEnvironmentsMessage, EnvironmentDescriptionsMessage } from "../models/models_0"; +import type { ComposeEnvironmentsMessage, EnvironmentDescriptionsMessage } from "../models/models_0"; import { ComposeEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts index 3608b057f0e95..3ff2da170bd4c 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplicationDescriptionMessage, CreateApplicationMessage } from "../models/models_0"; +import type { ApplicationDescriptionMessage, CreateApplicationMessage } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts index 5869cd71a75a0..b000dc7aa3784 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateApplicationVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplicationVersionDescriptionMessage, CreateApplicationVersionMessage } from "../models/models_0"; +import type { ApplicationVersionDescriptionMessage, CreateApplicationVersionMessage } from "../models/models_0"; import { CreateApplicationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts index b27b59e9f2aa9..7574cc0994e22 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateConfigurationTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigurationSettingsDescription, CreateConfigurationTemplateMessage } from "../models/models_0"; +import type { ConfigurationSettingsDescription, CreateConfigurationTemplateMessage } from "../models/models_0"; import { CreateConfigurationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts index 3c6a935b0057f..03a11fa054681 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateEnvironmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentMessage, EnvironmentDescription } from "../models/models_0"; +import type { CreateEnvironmentMessage, EnvironmentDescription } from "../models/models_0"; import { CreateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts index eb874127145d4..4c89ccd77850a 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreatePlatformVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePlatformVersionRequest, CreatePlatformVersionResult } from "../models/models_0"; +import type { CreatePlatformVersionRequest, CreatePlatformVersionResult } from "../models/models_0"; import { CreatePlatformVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts b/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts index 93b9100f2506d..43eedce1b6b76 100644 --- a/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/CreateStorageLocationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStorageLocationResultMessage } from "../models/models_0"; +import type { CreateStorageLocationResultMessage } from "../models/models_0"; import { CreateStorageLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts index 62f33de8a435b..563758541dfb1 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationMessage } from "../models/models_0"; +import type { DeleteApplicationMessage } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts index 913d4bfa11642..2e19df0a4a941 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteApplicationVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationVersionMessage } from "../models/models_0"; +import type { DeleteApplicationVersionMessage } from "../models/models_0"; import { DeleteApplicationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts index 308a8b593d131..1a850ced4eef8 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteConfigurationTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationTemplateMessage } from "../models/models_0"; +import type { DeleteConfigurationTemplateMessage } from "../models/models_0"; import { DeleteConfigurationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts index 851ea961b3da8..0db5ebfb92f46 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeleteEnvironmentConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentConfigurationMessage } from "../models/models_0"; +import type { DeleteEnvironmentConfigurationMessage } from "../models/models_0"; import { DeleteEnvironmentConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts index 29ea1f114c149..8b0285b6532b4 100644 --- a/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DeletePlatformVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePlatformVersionRequest, DeletePlatformVersionResult } from "../models/models_0"; +import type { DeletePlatformVersionRequest, DeletePlatformVersionResult } from "../models/models_0"; import { DeletePlatformVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts index 5740db164b126..809ec0a028ca4 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeAccountAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountAttributesResult } from "../models/models_0"; +import type { DescribeAccountAttributesResult } from "../models/models_0"; import { DescribeAccountAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts index f783544b91dd8..8f4010b41419e 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationVersionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplicationVersionDescriptionsMessage, DescribeApplicationVersionsMessage } from "../models/models_0"; +import type { ApplicationVersionDescriptionsMessage, DescribeApplicationVersionsMessage } from "../models/models_0"; import { DescribeApplicationVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts index 9701fdeee5fe0..0f59767aeb66c 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeApplicationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplicationDescriptionsMessage, DescribeApplicationsMessage } from "../models/models_0"; +import type { ApplicationDescriptionsMessage, DescribeApplicationsMessage } from "../models/models_0"; import { DescribeApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts index a304dc97a6bba..3a1d2bf1d03fb 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationOptionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigurationOptionsDescription, DescribeConfigurationOptionsMessage } from "../models/models_0"; +import type { ConfigurationOptionsDescription, DescribeConfigurationOptionsMessage } from "../models/models_0"; import { DescribeConfigurationOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts index 1352306dd24a6..569e81d820541 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeConfigurationSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigurationSettingsDescriptions, DescribeConfigurationSettingsMessage } from "../models/models_0"; +import type { ConfigurationSettingsDescriptions, DescribeConfigurationSettingsMessage } from "../models/models_0"; import { DescribeConfigurationSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts index d6f603e81bb06..ad318ba291585 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentHealthCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEnvironmentHealthRequest, DescribeEnvironmentHealthResult } from "../models/models_0"; +import type { DescribeEnvironmentHealthRequest, DescribeEnvironmentHealthResult } from "../models/models_0"; import { DescribeEnvironmentHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts index 12fed281c6eec..7c1f3719a711b 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionHistoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeEnvironmentManagedActionHistoryRequest, DescribeEnvironmentManagedActionHistoryResult, } from "../models/models_0"; diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts index 4e1f7e11e6a54..ac68a82a9e228 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentManagedActionsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEnvironmentManagedActionsRequest, DescribeEnvironmentManagedActionsResult } from "../models/models_0"; +import type { + DescribeEnvironmentManagedActionsRequest, + DescribeEnvironmentManagedActionsResult, +} from "../models/models_0"; import { DescribeEnvironmentManagedActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts index 8385745b470ab..828e0d7da357b 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEnvironmentResourcesMessage, EnvironmentResourceDescriptionsMessage } from "../models/models_0"; +import type { DescribeEnvironmentResourcesMessage, EnvironmentResourceDescriptionsMessage } from "../models/models_0"; import { DescribeEnvironmentResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts index 419a3be0e1484..a6151db411793 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEnvironmentsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEnvironmentsMessage, EnvironmentDescriptionsMessage } from "../models/models_0"; +import type { DescribeEnvironmentsMessage, EnvironmentDescriptionsMessage } from "../models/models_0"; import { DescribeEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts index 0f8df036c8583..7eea7dc601ab7 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsMessage, EventDescriptionsMessage } from "../models/models_0"; +import type { DescribeEventsMessage, EventDescriptionsMessage } from "../models/models_0"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts index 053c9b8613e22..923c8d574bd29 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribeInstancesHealthCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstancesHealthRequest, DescribeInstancesHealthResult } from "../models/models_0"; +import type { DescribeInstancesHealthRequest, DescribeInstancesHealthResult } from "../models/models_0"; import { DescribeInstancesHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts index e2662c97e7f90..2230f3ad9b320 100644 --- a/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DescribePlatformVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePlatformVersionRequest, DescribePlatformVersionResult } from "../models/models_0"; +import type { DescribePlatformVersionRequest, DescribePlatformVersionResult } from "../models/models_0"; import { DescribePlatformVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts b/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts index a5352873337fc..9728c74ed3732 100644 --- a/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/DisassociateEnvironmentOperationsRoleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateEnvironmentOperationsRoleMessage } from "../models/models_0"; +import type { DisassociateEnvironmentOperationsRoleMessage } from "../models/models_0"; import { DisassociateEnvironmentOperationsRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts index 54968f799d98a..8d2803b733be5 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListAvailableSolutionStacksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAvailableSolutionStacksResultMessage } from "../models/models_0"; +import type { ListAvailableSolutionStacksResultMessage } from "../models/models_0"; import { ListAvailableSolutionStacks } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts index d10e9c4c029fb..e385dcc36952f 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListPlatformBranchesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPlatformBranchesRequest, ListPlatformBranchesResult } from "../models/models_0"; +import type { ListPlatformBranchesRequest, ListPlatformBranchesResult } from "../models/models_0"; import { ListPlatformBranches } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts index 9bb6faf96a69f..eebaeaf872b26 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListPlatformVersionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPlatformVersionsRequest, ListPlatformVersionsResult } from "../models/models_0"; +import type { ListPlatformVersionsRequest, ListPlatformVersionsResult } from "../models/models_0"; import { ListPlatformVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts b/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts index 959e6e74b060e..e0c8c1617562c 100644 --- a/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceMessage, ResourceTagsDescriptionMessage } from "../models/models_0"; +import type { ListTagsForResourceMessage, ResourceTagsDescriptionMessage } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts index 8fc7f9965f084..508ae47cb3412 100644 --- a/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RebuildEnvironmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebuildEnvironmentMessage } from "../models/models_0"; +import type { RebuildEnvironmentMessage } from "../models/models_0"; import { RebuildEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts b/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts index 347271021bf0c..e217713935d38 100644 --- a/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RequestEnvironmentInfoCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RequestEnvironmentInfoMessage } from "../models/models_0"; +import type { RequestEnvironmentInfoMessage } from "../models/models_0"; import { RequestEnvironmentInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts b/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts index 2b7b398401a19..49347993771ec 100644 --- a/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RestartAppServerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestartAppServerMessage } from "../models/models_0"; +import type { RestartAppServerMessage } from "../models/models_0"; import { RestartAppServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts b/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts index 0788e3321405f..5fc0c21c6b2ad 100644 --- a/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/RetrieveEnvironmentInfoCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetrieveEnvironmentInfoMessage, RetrieveEnvironmentInfoResultMessage } from "../models/models_0"; +import type { RetrieveEnvironmentInfoMessage, RetrieveEnvironmentInfoResultMessage } from "../models/models_0"; import { RetrieveEnvironmentInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts b/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts index 49879411b0de4..af1bdaa120992 100644 --- a/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/SwapEnvironmentCNAMEsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SwapEnvironmentCNAMEsMessage } from "../models/models_0"; +import type { SwapEnvironmentCNAMEsMessage } from "../models/models_0"; import { SwapEnvironmentCNAMEs } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts index 56ec27cac9ffa..a7af0170efd1d 100644 --- a/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/TerminateEnvironmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnvironmentDescription, TerminateEnvironmentMessage } from "../models/models_0"; +import type { EnvironmentDescription, TerminateEnvironmentMessage } from "../models/models_0"; import { TerminateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts index 3d06aa19dd006..fdc7e2f603024 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplicationDescriptionMessage, UpdateApplicationMessage } from "../models/models_0"; +import type { ApplicationDescriptionMessage, UpdateApplicationMessage } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts index b4cd548e4d2ec..6567239617f28 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationResourceLifecycleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ApplicationResourceLifecycleDescriptionMessage, UpdateApplicationResourceLifecycleMessage, } from "../models/models_0"; diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts index 6a1e65f473916..d9e99aa49b9b7 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateApplicationVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplicationVersionDescriptionMessage, UpdateApplicationVersionMessage } from "../models/models_0"; +import type { ApplicationVersionDescriptionMessage, UpdateApplicationVersionMessage } from "../models/models_0"; import { UpdateApplicationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts index 17705cb3794b7..b47782dfa2cd4 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateConfigurationTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigurationSettingsDescription, UpdateConfigurationTemplateMessage } from "../models/models_0"; +import type { ConfigurationSettingsDescription, UpdateConfigurationTemplateMessage } from "../models/models_0"; import { UpdateConfigurationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts index deb41b344c1ca..9ee69c4cd8b7d 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateEnvironmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnvironmentDescription, UpdateEnvironmentMessage } from "../models/models_0"; +import type { EnvironmentDescription, UpdateEnvironmentMessage } from "../models/models_0"; import { UpdateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts b/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts index ffedc12d85d96..82297b6403312 100644 --- a/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/UpdateTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTagsForResourceMessage } from "../models/models_0"; +import type { UpdateTagsForResourceMessage } from "../models/models_0"; import { UpdateTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts b/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts index 59d31bd355efa..3bd1f6052774f 100644 --- a/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts +++ b/clients/client-elastic-beanstalk/src/commands/ValidateConfigurationSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElasticBeanstalkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticBeanstalkClient"; +import type { + ElasticBeanstalkClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ElasticBeanstalkClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigurationSettingsValidationMessages, ValidateConfigurationSettingsMessage } from "../models/models_0"; +import type { ConfigurationSettingsValidationMessages, ValidateConfigurationSettingsMessage } from "../models/models_0"; import { ValidateConfigurationSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-beanstalk/src/endpoint/EndpointParameters.ts b/clients/client-elastic-beanstalk/src/endpoint/EndpointParameters.ts index 743b577d83405..aed14ddbd79bd 100644 --- a/clients/client-elastic-beanstalk/src/endpoint/EndpointParameters.ts +++ b/clients/client-elastic-beanstalk/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-elastic-beanstalk/src/endpoint/endpointResolver.ts b/clients/client-elastic-beanstalk/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-elastic-beanstalk/src/endpoint/endpointResolver.ts +++ b/clients/client-elastic-beanstalk/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-elastic-beanstalk/src/extensionConfiguration.ts b/clients/client-elastic-beanstalk/src/extensionConfiguration.ts index dfbf88c24c14b..b0051e8e153d2 100644 --- a/clients/client-elastic-beanstalk/src/extensionConfiguration.ts +++ b/clients/client-elastic-beanstalk/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-elastic-beanstalk/src/models/ElasticBeanstalkSyntheticServiceException.ts b/clients/client-elastic-beanstalk/src/models/ElasticBeanstalkSyntheticServiceException.ts index e15fad92e340a..d63b74f528817 100644 --- a/clients/client-elastic-beanstalk/src/models/ElasticBeanstalkSyntheticServiceException.ts +++ b/clients/client-elastic-beanstalk/src/models/ElasticBeanstalkSyntheticServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-elastic-beanstalk/src/models/errors.ts b/clients/client-elastic-beanstalk/src/models/errors.ts index 524deb2085abf..a267274ddbd09 100644 --- a/clients/client-elastic-beanstalk/src/models/errors.ts +++ b/clients/client-elastic-beanstalk/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ElasticBeanstalkSyntheticServiceException as __BaseException } from "./ElasticBeanstalkSyntheticServiceException"; diff --git a/clients/client-elastic-beanstalk/src/pagination/DescribeEnvironmentManagedActionHistoryPaginator.ts b/clients/client-elastic-beanstalk/src/pagination/DescribeEnvironmentManagedActionHistoryPaginator.ts index 85b52d3a59c38..206e88c8497d9 100644 --- a/clients/client-elastic-beanstalk/src/pagination/DescribeEnvironmentManagedActionHistoryPaginator.ts +++ b/clients/client-elastic-beanstalk/src/pagination/DescribeEnvironmentManagedActionHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEnvironmentManagedActionHistoryCommand, diff --git a/clients/client-elastic-beanstalk/src/pagination/DescribeEventsPaginator.ts b/clients/client-elastic-beanstalk/src/pagination/DescribeEventsPaginator.ts index 8c991af10bd79..d447dff46ec55 100644 --- a/clients/client-elastic-beanstalk/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-elastic-beanstalk/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsCommand, diff --git a/clients/client-elastic-beanstalk/src/pagination/Interfaces.ts b/clients/client-elastic-beanstalk/src/pagination/Interfaces.ts index 72131556a42c7..6295e24dae73c 100644 --- a/clients/client-elastic-beanstalk/src/pagination/Interfaces.ts +++ b/clients/client-elastic-beanstalk/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ElasticBeanstalkClient } from "../ElasticBeanstalkClient"; diff --git a/clients/client-elastic-beanstalk/src/pagination/ListPlatformBranchesPaginator.ts b/clients/client-elastic-beanstalk/src/pagination/ListPlatformBranchesPaginator.ts index 5cd7b54135217..659f5c498859d 100644 --- a/clients/client-elastic-beanstalk/src/pagination/ListPlatformBranchesPaginator.ts +++ b/clients/client-elastic-beanstalk/src/pagination/ListPlatformBranchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPlatformBranchesCommand, diff --git a/clients/client-elastic-beanstalk/src/pagination/ListPlatformVersionsPaginator.ts b/clients/client-elastic-beanstalk/src/pagination/ListPlatformVersionsPaginator.ts index 672db979631cc..d3f0c2932e31e 100644 --- a/clients/client-elastic-beanstalk/src/pagination/ListPlatformVersionsPaginator.ts +++ b/clients/client-elastic-beanstalk/src/pagination/ListPlatformVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPlatformVersionsCommand, diff --git a/clients/client-elastic-beanstalk/src/runtimeConfig.browser.ts b/clients/client-elastic-beanstalk/src/runtimeConfig.browser.ts index 116aea37b5676..64ef62bdcb081 100644 --- a/clients/client-elastic-beanstalk/src/runtimeConfig.browser.ts +++ b/clients/client-elastic-beanstalk/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticBeanstalkClientConfig } from "./ElasticBeanstalkClient"; + +import type { ElasticBeanstalkClientConfig } from "./ElasticBeanstalkClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-elastic-beanstalk/src/runtimeConfig.native.ts b/clients/client-elastic-beanstalk/src/runtimeConfig.native.ts index 31ce1efc6a9e4..bff9dde81700f 100644 --- a/clients/client-elastic-beanstalk/src/runtimeConfig.native.ts +++ b/clients/client-elastic-beanstalk/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ElasticBeanstalkClientConfig } from "./ElasticBeanstalkClient"; +import type { ElasticBeanstalkClientConfig } from "./ElasticBeanstalkClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-elastic-beanstalk/src/runtimeConfig.shared.ts b/clients/client-elastic-beanstalk/src/runtimeConfig.shared.ts index 8ae7f860e8775..5a1f148df97b3 100644 --- a/clients/client-elastic-beanstalk/src/runtimeConfig.shared.ts +++ b/clients/client-elastic-beanstalk/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultElasticBeanstalkHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ElasticBeanstalkClientConfig } from "./ElasticBeanstalkClient"; +import type { ElasticBeanstalkClientConfig } from "./ElasticBeanstalkClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-elastic-beanstalk/src/runtimeConfig.ts b/clients/client-elastic-beanstalk/src/runtimeConfig.ts index a4735ce5c1eae..4e31d0d17fa2c 100644 --- a/clients/client-elastic-beanstalk/src/runtimeConfig.ts +++ b/clients/client-elastic-beanstalk/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticBeanstalkClientConfig } from "./ElasticBeanstalkClient"; + +import type { ElasticBeanstalkClientConfig } from "./ElasticBeanstalkClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-elastic-beanstalk/src/runtimeExtensions.ts b/clients/client-elastic-beanstalk/src/runtimeExtensions.ts index ceec5525a08d5..b74f16959cf0f 100644 --- a/clients/client-elastic-beanstalk/src/runtimeExtensions.ts +++ b/clients/client-elastic-beanstalk/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ElasticBeanstalkExtensionConfiguration } from "./extensionConfiguration"; +import type { ElasticBeanstalkExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-elastic-beanstalk/src/schemas/schemas_0.ts b/clients/client-elastic-beanstalk/src/schemas/schemas_0.ts index 9625dac1f8e31..e6a4cebf235af 100644 --- a/clients/client-elastic-beanstalk/src/schemas/schemas_0.ts +++ b/clients/client-elastic-beanstalk/src/schemas/schemas_0.ts @@ -444,7 +444,7 @@ const n0 = "com.amazonaws.elasticbeanstalk"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ElasticBeanstalkSyntheticServiceException as __ElasticBeanstalkSyntheticServiceException } from "../models/ElasticBeanstalkSyntheticServiceException"; import { diff --git a/clients/client-elastic-load-balancing-v2/package.json b/clients/client-elastic-load-balancing-v2/package.json index f0563fbe54115..ab65094e786af 100644 --- a/clients/client-elastic-load-balancing-v2/package.json +++ b/clients/client-elastic-load-balancing-v2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-elastic-load-balancing-v2/src/ElasticLoadBalancingV2.ts b/clients/client-elastic-load-balancing-v2/src/ElasticLoadBalancingV2.ts index a1a11bbf6f386..5c6982e22a294 100644 --- a/clients/client-elastic-load-balancing-v2/src/ElasticLoadBalancingV2.ts +++ b/clients/client-elastic-load-balancing-v2/src/ElasticLoadBalancingV2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddListenerCertificatesCommand, @@ -233,7 +233,7 @@ import { SetSecurityGroupsCommandOutput, } from "./commands/SetSecurityGroupsCommand"; import { SetSubnetsCommand, SetSubnetsCommandInput, SetSubnetsCommandOutput } from "./commands/SetSubnetsCommand"; -import { ElasticLoadBalancingV2Client, ElasticLoadBalancingV2ClientConfig } from "./ElasticLoadBalancingV2Client"; +import { ElasticLoadBalancingV2Client } from "./ElasticLoadBalancingV2Client"; const commands = { AddListenerCertificatesCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/ElasticLoadBalancingV2Client.ts b/clients/client-elastic-load-balancing-v2/src/ElasticLoadBalancingV2Client.ts index eaff8d7570563..9f64bad0c53f9 100644 --- a/clients/client-elastic-load-balancing-v2/src/ElasticLoadBalancingV2Client.ts +++ b/clients/client-elastic-load-balancing-v2/src/ElasticLoadBalancingV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultElasticLoadBalancingV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -187,7 +196,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-elastic-load-balancing-v2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-elastic-load-balancing-v2/src/auth/httpAuthExtensionConfiguration.ts index c4f394e44c6eb..1fe8310211b69 100644 --- a/clients/client-elastic-load-balancing-v2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-elastic-load-balancing-v2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ElasticLoadBalancingV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ElasticLoadBalancingV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-elastic-load-balancing-v2/src/auth/httpAuthSchemeProvider.ts b/clients/client-elastic-load-balancing-v2/src/auth/httpAuthSchemeProvider.ts index 453e3a4e03a98..5061641f8c261 100644 --- a/clients/client-elastic-load-balancing-v2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-elastic-load-balancing-v2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ElasticLoadBalancingV2ClientResolvedConfig, ElasticLoadBalancingV2ClientConfig, - ElasticLoadBalancingV2ClientResolvedConfig, } from "../ElasticLoadBalancingV2Client"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/AddListenerCertificatesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/AddListenerCertificatesCommand.ts index d6eceff04d1a4..fab8524f88103 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/AddListenerCertificatesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/AddListenerCertificatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddListenerCertificatesInput, AddListenerCertificatesOutput } from "../models/models_0"; +import type { AddListenerCertificatesInput, AddListenerCertificatesOutput } from "../models/models_0"; import { AddListenerCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/AddTagsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/AddTagsCommand.ts index 85de48b09885f..596d1e929dbd5 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/AddTagsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/AddTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsInput, AddTagsOutput } from "../models/models_0"; +import type { AddTagsInput, AddTagsOutput } from "../models/models_0"; import { AddTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/AddTrustStoreRevocationsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/AddTrustStoreRevocationsCommand.ts index a7cf0522f138c..dfdbc6e4fc5fb 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/AddTrustStoreRevocationsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/AddTrustStoreRevocationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTrustStoreRevocationsInput, AddTrustStoreRevocationsOutput } from "../models/models_0"; +import type { AddTrustStoreRevocationsInput, AddTrustStoreRevocationsOutput } from "../models/models_0"; import { AddTrustStoreRevocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateListenerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateListenerCommand.ts index b1332727d267b..7b14b5b216af9 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateListenerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateListenerInput, CreateListenerOutput } from "../models/models_0"; +import type { CreateListenerInput, CreateListenerOutput } from "../models/models_0"; import { CreateListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateLoadBalancerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateLoadBalancerCommand.ts index 03322bbf6b3df..b0d4ddbb6691d 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateLoadBalancerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLoadBalancerInput, CreateLoadBalancerOutput } from "../models/models_0"; +import type { CreateLoadBalancerInput, CreateLoadBalancerOutput } from "../models/models_0"; import { CreateLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateRuleCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateRuleCommand.ts index 7ee955448332b..dd257e133e350 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateRuleCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleInput, CreateRuleOutput } from "../models/models_0"; +import type { CreateRuleInput, CreateRuleOutput } from "../models/models_0"; import { CreateRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateTargetGroupCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateTargetGroupCommand.ts index 20195bb6d8b1c..ecde288dcaef1 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateTargetGroupCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateTargetGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTargetGroupInput, CreateTargetGroupOutput } from "../models/models_0"; +import type { CreateTargetGroupInput, CreateTargetGroupOutput } from "../models/models_0"; import { CreateTargetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/CreateTrustStoreCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/CreateTrustStoreCommand.ts index 5529fd7b36f42..f8307f4786c02 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/CreateTrustStoreCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/CreateTrustStoreCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrustStoreInput, CreateTrustStoreOutput } from "../models/models_0"; +import type { CreateTrustStoreInput, CreateTrustStoreOutput } from "../models/models_0"; import { CreateTrustStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteListenerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteListenerCommand.ts index a5f64ab0e84c2..a04cb6aae4e2e 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteListenerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteListenerInput, DeleteListenerOutput } from "../models/models_0"; +import type { DeleteListenerInput, DeleteListenerOutput } from "../models/models_0"; import { DeleteListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteLoadBalancerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteLoadBalancerCommand.ts index 849a67439829e..7999120085a24 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteLoadBalancerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLoadBalancerInput, DeleteLoadBalancerOutput } from "../models/models_0"; +import type { DeleteLoadBalancerInput, DeleteLoadBalancerOutput } from "../models/models_0"; import { DeleteLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteRuleCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteRuleCommand.ts index 2ec5b39c931e6..44f333681202f 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteRuleCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleInput, DeleteRuleOutput } from "../models/models_0"; +import type { DeleteRuleInput, DeleteRuleOutput } from "../models/models_0"; import { DeleteRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteSharedTrustStoreAssociationCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteSharedTrustStoreAssociationCommand.ts index 82a58808e7ad8..807deccaa58c0 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteSharedTrustStoreAssociationCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteSharedTrustStoreAssociationCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSharedTrustStoreAssociationInput, DeleteSharedTrustStoreAssociationOutput } from "../models/models_0"; +import type { + DeleteSharedTrustStoreAssociationInput, + DeleteSharedTrustStoreAssociationOutput, +} from "../models/models_0"; import { DeleteSharedTrustStoreAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteTargetGroupCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteTargetGroupCommand.ts index d9e76c04181cf..3d40e32c1654a 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteTargetGroupCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteTargetGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTargetGroupInput, DeleteTargetGroupOutput } from "../models/models_0"; +import type { DeleteTargetGroupInput, DeleteTargetGroupOutput } from "../models/models_0"; import { DeleteTargetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeleteTrustStoreCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeleteTrustStoreCommand.ts index 864fbe16222a0..696bf48a85c02 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeleteTrustStoreCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeleteTrustStoreCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrustStoreInput, DeleteTrustStoreOutput } from "../models/models_0"; +import type { DeleteTrustStoreInput, DeleteTrustStoreOutput } from "../models/models_0"; import { DeleteTrustStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DeregisterTargetsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DeregisterTargetsCommand.ts index 2d284df43e944..9255ae1199a50 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DeregisterTargetsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DeregisterTargetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterTargetsInput, DeregisterTargetsOutput } from "../models/models_0"; +import type { DeregisterTargetsInput, DeregisterTargetsOutput } from "../models/models_0"; import { DeregisterTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeAccountLimitsCommand.ts index cc9d05ecedf24..58b8996d0f86a 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeAccountLimitsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountLimitsInput, DescribeAccountLimitsOutput } from "../models/models_0"; +import type { DescribeAccountLimitsInput, DescribeAccountLimitsOutput } from "../models/models_0"; import { DescribeAccountLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeCapacityReservationCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeCapacityReservationCommand.ts index 91bbf18e812d5..8bdd2f664a65a 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeCapacityReservationCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeCapacityReservationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCapacityReservationInput, DescribeCapacityReservationOutput } from "../models/models_0"; +import type { DescribeCapacityReservationInput, DescribeCapacityReservationOutput } from "../models/models_0"; import { DescribeCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerAttributesCommand.ts index 7e09faa8a75f9..16d4a288932e5 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeListenerAttributesInput, DescribeListenerAttributesOutput } from "../models/models_0"; +import type { DescribeListenerAttributesInput, DescribeListenerAttributesOutput } from "../models/models_0"; import { DescribeListenerAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerCertificatesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerCertificatesCommand.ts index 2c6942f3e7fd1..6a5c48f64f815 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerCertificatesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenerCertificatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeListenerCertificatesInput, DescribeListenerCertificatesOutput } from "../models/models_0"; +import type { DescribeListenerCertificatesInput, DescribeListenerCertificatesOutput } from "../models/models_0"; import { DescribeListenerCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenersCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenersCommand.ts index c428d6e3a3a72..b6d4989adc390 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenersCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeListenersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeListenersInput, DescribeListenersOutput } from "../models/models_0"; +import type { DescribeListenersInput, DescribeListenersOutput } from "../models/models_0"; import { DescribeListeners } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancerAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancerAttributesCommand.ts index 7a4daa5672939..be3d257f770a6 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancerAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoadBalancerAttributesInput, DescribeLoadBalancerAttributesOutput } from "../models/models_0"; +import type { DescribeLoadBalancerAttributesInput, DescribeLoadBalancerAttributesOutput } from "../models/models_0"; import { DescribeLoadBalancerAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancersCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancersCommand.ts index e4e732c7374b3..1a7f425fa6b07 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancersCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeLoadBalancersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoadBalancersInput, DescribeLoadBalancersOutput } from "../models/models_0"; +import type { DescribeLoadBalancersInput, DescribeLoadBalancersOutput } from "../models/models_0"; import { DescribeLoadBalancers } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeRulesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeRulesCommand.ts index d0cd1be0b33c4..fc6da8d494a91 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeRulesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeRulesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRulesInput, DescribeRulesOutput } from "../models/models_0"; +import type { DescribeRulesInput, DescribeRulesOutput } from "../models/models_0"; import { DescribeRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeSSLPoliciesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeSSLPoliciesCommand.ts index 1f5ebcbff8233..e56dfce8bd6cc 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeSSLPoliciesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeSSLPoliciesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSSLPoliciesInput, DescribeSSLPoliciesOutput } from "../models/models_0"; +import type { DescribeSSLPoliciesInput, DescribeSSLPoliciesOutput } from "../models/models_0"; import { DescribeSSLPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTagsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTagsCommand.ts index 2836748f54706..d621e7e3201b0 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTagsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0"; +import type { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0"; import { DescribeTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupAttributesCommand.ts index ffc1a316c6d41..47bfb03c5cbbe 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTargetGroupAttributesInput, DescribeTargetGroupAttributesOutput } from "../models/models_0"; +import type { DescribeTargetGroupAttributesInput, DescribeTargetGroupAttributesOutput } from "../models/models_0"; import { DescribeTargetGroupAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupsCommand.ts index 6517d9f02b6ac..61bd7e15d025b 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetGroupsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTargetGroupsInput, DescribeTargetGroupsOutput } from "../models/models_0"; +import type { DescribeTargetGroupsInput, DescribeTargetGroupsOutput } from "../models/models_0"; import { DescribeTargetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetHealthCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetHealthCommand.ts index 478a4743263e6..708b98dc0eaac 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetHealthCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTargetHealthCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTargetHealthInput, DescribeTargetHealthOutput } from "../models/models_0"; +import type { DescribeTargetHealthInput, DescribeTargetHealthOutput } from "../models/models_0"; import { DescribeTargetHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreAssociationsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreAssociationsCommand.ts index 639918abea9c3..bcc8151ab2512 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreAssociationsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrustStoreAssociationsInput, DescribeTrustStoreAssociationsOutput } from "../models/models_0"; +import type { DescribeTrustStoreAssociationsInput, DescribeTrustStoreAssociationsOutput } from "../models/models_0"; import { DescribeTrustStoreAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreRevocationsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreRevocationsCommand.ts index ca1c0ab1ac1ed..26dba3e0e6184 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreRevocationsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoreRevocationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrustStoreRevocationsInput, DescribeTrustStoreRevocationsOutput } from "../models/models_0"; +import type { DescribeTrustStoreRevocationsInput, DescribeTrustStoreRevocationsOutput } from "../models/models_0"; import { DescribeTrustStoreRevocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoresCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoresCommand.ts index f29bcec86a9bf..2a8873609196e 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoresCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/DescribeTrustStoresCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrustStoresInput, DescribeTrustStoresOutput } from "../models/models_0"; +import type { DescribeTrustStoresInput, DescribeTrustStoresOutput } from "../models/models_0"; import { DescribeTrustStores } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/GetResourcePolicyCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/GetResourcePolicyCommand.ts index ee07a66bc1c3f..b86119cfa0f42 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/GetResourcePolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyInput, GetResourcePolicyOutput } from "../models/models_0"; +import type { GetResourcePolicyInput, GetResourcePolicyOutput } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreCaCertificatesBundleCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreCaCertificatesBundleCommand.ts index 42551f465767d..d0330ffb94a7d 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreCaCertificatesBundleCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreCaCertificatesBundleCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrustStoreCaCertificatesBundleInput, GetTrustStoreCaCertificatesBundleOutput } from "../models/models_0"; +import type { + GetTrustStoreCaCertificatesBundleInput, + GetTrustStoreCaCertificatesBundleOutput, +} from "../models/models_0"; import { GetTrustStoreCaCertificatesBundle } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreRevocationContentCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreRevocationContentCommand.ts index c2c2d47ace67d..c6c8ad22fe3a5 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreRevocationContentCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/GetTrustStoreRevocationContentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrustStoreRevocationContentInput, GetTrustStoreRevocationContentOutput } from "../models/models_0"; +import type { GetTrustStoreRevocationContentInput, GetTrustStoreRevocationContentOutput } from "../models/models_0"; import { GetTrustStoreRevocationContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyCapacityReservationCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyCapacityReservationCommand.ts index e1f4d17f5f465..6b9e2e875466a 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyCapacityReservationCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyCapacityReservationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyCapacityReservationInput, ModifyCapacityReservationOutput } from "../models/models_0"; +import type { ModifyCapacityReservationInput, ModifyCapacityReservationOutput } from "../models/models_0"; import { ModifyCapacityReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyIpPoolsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyIpPoolsCommand.ts index 107b3a6f0259d..831ccc39379cd 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyIpPoolsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyIpPoolsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyIpPoolsInput, ModifyIpPoolsOutput } from "../models/models_0"; +import type { ModifyIpPoolsInput, ModifyIpPoolsOutput } from "../models/models_0"; import { ModifyIpPools } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerAttributesCommand.ts index 085e7a805ace4..64058356be5c6 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyListenerAttributesInput, ModifyListenerAttributesOutput } from "../models/models_0"; +import type { ModifyListenerAttributesInput, ModifyListenerAttributesOutput } from "../models/models_0"; import { ModifyListenerAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerCommand.ts index e122bcc96a3e3..8ecab3a040dfe 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyListenerInput, ModifyListenerOutput } from "../models/models_0"; +import type { ModifyListenerInput, ModifyListenerOutput } from "../models/models_0"; import { ModifyListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyLoadBalancerAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyLoadBalancerAttributesCommand.ts index fddfeb2895339..04a953216b8e2 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyLoadBalancerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyLoadBalancerAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyLoadBalancerAttributesInput, ModifyLoadBalancerAttributesOutput } from "../models/models_0"; +import type { ModifyLoadBalancerAttributesInput, ModifyLoadBalancerAttributesOutput } from "../models/models_0"; import { ModifyLoadBalancerAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyRuleCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyRuleCommand.ts index bd2785b7d13e9..8f3ad20d0f38c 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyRuleCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyRuleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyRuleInput, ModifyRuleOutput } from "../models/models_0"; +import type { ModifyRuleInput, ModifyRuleOutput } from "../models/models_0"; import { ModifyRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupAttributesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupAttributesCommand.ts index 83244031e4d5e..48f3f59d9a206 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupAttributesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyTargetGroupAttributesInput, ModifyTargetGroupAttributesOutput } from "../models/models_0"; +import type { ModifyTargetGroupAttributesInput, ModifyTargetGroupAttributesOutput } from "../models/models_0"; import { ModifyTargetGroupAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupCommand.ts index c5f9fb894a52d..fe247ebbd0fd4 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTargetGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyTargetGroupInput, ModifyTargetGroupOutput } from "../models/models_0"; +import type { ModifyTargetGroupInput, ModifyTargetGroupOutput } from "../models/models_0"; import { ModifyTargetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTrustStoreCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTrustStoreCommand.ts index 31dd9ed606555..e3c347a710281 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/ModifyTrustStoreCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/ModifyTrustStoreCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyTrustStoreInput, ModifyTrustStoreOutput } from "../models/models_0"; +import type { ModifyTrustStoreInput, ModifyTrustStoreOutput } from "../models/models_0"; import { ModifyTrustStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/RegisterTargetsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/RegisterTargetsCommand.ts index e85972c49e4a1..148e32f53d303 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/RegisterTargetsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/RegisterTargetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterTargetsInput, RegisterTargetsOutput } from "../models/models_0"; +import type { RegisterTargetsInput, RegisterTargetsOutput } from "../models/models_0"; import { RegisterTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/RemoveListenerCertificatesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/RemoveListenerCertificatesCommand.ts index 603b03b55a4f4..a4e04e9c0165e 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/RemoveListenerCertificatesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/RemoveListenerCertificatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveListenerCertificatesInput, RemoveListenerCertificatesOutput } from "../models/models_0"; +import type { RemoveListenerCertificatesInput, RemoveListenerCertificatesOutput } from "../models/models_0"; import { RemoveListenerCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/RemoveTagsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/RemoveTagsCommand.ts index 5019ead9ccd49..f3d78a5bbcb5c 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/RemoveTagsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/RemoveTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0"; +import type { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0"; import { RemoveTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/RemoveTrustStoreRevocationsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/RemoveTrustStoreRevocationsCommand.ts index c715fc4da6137..26e6d19259ba9 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/RemoveTrustStoreRevocationsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/RemoveTrustStoreRevocationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTrustStoreRevocationsInput, RemoveTrustStoreRevocationsOutput } from "../models/models_0"; +import type { RemoveTrustStoreRevocationsInput, RemoveTrustStoreRevocationsOutput } from "../models/models_0"; import { RemoveTrustStoreRevocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/SetIpAddressTypeCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/SetIpAddressTypeCommand.ts index 73d6dc902ef0a..936946b6db6f1 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/SetIpAddressTypeCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/SetIpAddressTypeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetIpAddressTypeInput, SetIpAddressTypeOutput } from "../models/models_0"; +import type { SetIpAddressTypeInput, SetIpAddressTypeOutput } from "../models/models_0"; import { SetIpAddressType } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/SetRulePrioritiesCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/SetRulePrioritiesCommand.ts index f9bad6ff17bda..855a8c0533774 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/SetRulePrioritiesCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/SetRulePrioritiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetRulePrioritiesInput, SetRulePrioritiesOutput } from "../models/models_0"; +import type { SetRulePrioritiesInput, SetRulePrioritiesOutput } from "../models/models_0"; import { SetRulePriorities } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/SetSecurityGroupsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/SetSecurityGroupsCommand.ts index 2e3da9e3526f0..ed25433e0e78b 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/SetSecurityGroupsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/SetSecurityGroupsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetSecurityGroupsInput, SetSecurityGroupsOutput } from "../models/models_0"; +import type { SetSecurityGroupsInput, SetSecurityGroupsOutput } from "../models/models_0"; import { SetSecurityGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts b/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts index 04427411c6b03..9c89aeeec05f4 100644 --- a/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts +++ b/clients/client-elastic-load-balancing-v2/src/commands/SetSubnetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingV2Client"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetSubnetsInput, SetSubnetsOutput } from "../models/models_0"; +import type { SetSubnetsInput, SetSubnetsOutput } from "../models/models_0"; import { SetSubnets } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/endpoint/EndpointParameters.ts b/clients/client-elastic-load-balancing-v2/src/endpoint/EndpointParameters.ts index 45d74b28c380f..16532b7b188de 100644 --- a/clients/client-elastic-load-balancing-v2/src/endpoint/EndpointParameters.ts +++ b/clients/client-elastic-load-balancing-v2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-elastic-load-balancing-v2/src/endpoint/endpointResolver.ts b/clients/client-elastic-load-balancing-v2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-elastic-load-balancing-v2/src/endpoint/endpointResolver.ts +++ b/clients/client-elastic-load-balancing-v2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-elastic-load-balancing-v2/src/extensionConfiguration.ts b/clients/client-elastic-load-balancing-v2/src/extensionConfiguration.ts index 045c313523b40..8573a7ff671c4 100644 --- a/clients/client-elastic-load-balancing-v2/src/extensionConfiguration.ts +++ b/clients/client-elastic-load-balancing-v2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-elastic-load-balancing-v2/src/models/ElasticLoadBalancingV2ServiceException.ts b/clients/client-elastic-load-balancing-v2/src/models/ElasticLoadBalancingV2ServiceException.ts index 48bb6d1795ab9..fb25b52f95aa3 100644 --- a/clients/client-elastic-load-balancing-v2/src/models/ElasticLoadBalancingV2ServiceException.ts +++ b/clients/client-elastic-load-balancing-v2/src/models/ElasticLoadBalancingV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-elastic-load-balancing-v2/src/models/errors.ts b/clients/client-elastic-load-balancing-v2/src/models/errors.ts index dd44bc63929f5..bd7d9831f9807 100644 --- a/clients/client-elastic-load-balancing-v2/src/models/errors.ts +++ b/clients/client-elastic-load-balancing-v2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ElasticLoadBalancingV2ServiceException as __BaseException } from "./ElasticLoadBalancingV2ServiceException"; diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeAccountLimitsPaginator.ts b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeAccountLimitsPaginator.ts index 2b920164d0800..72a92beb6b066 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeAccountLimitsPaginator.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeAccountLimitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAccountLimitsCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeListenerCertificatesPaginator.ts b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeListenerCertificatesPaginator.ts index 665b1c98e91d3..a527cf80390d0 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeListenerCertificatesPaginator.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeListenerCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeListenerCertificatesCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeListenersPaginator.ts b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeListenersPaginator.ts index 2f93db7a8dfdc..edf7443ad9844 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeListenersPaginator.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeListenersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeListenersCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeLoadBalancersPaginator.ts b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeLoadBalancersPaginator.ts index 409075ee28cc9..891ffb69b2eba 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeLoadBalancersPaginator.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeLoadBalancersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLoadBalancersCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeRulesPaginator.ts b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeRulesPaginator.ts index cc1840ade302f..fd0537d001911 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeRulesPaginator.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRulesCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTargetGroupsPaginator.ts b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTargetGroupsPaginator.ts index 86151bbbaa1c0..62e307da06342 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTargetGroupsPaginator.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTargetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTargetGroupsCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoreAssociationsPaginator.ts b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoreAssociationsPaginator.ts index e0a863a2f315b..a4d9e571e5355 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoreAssociationsPaginator.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoreAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTrustStoreAssociationsCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoreRevocationsPaginator.ts b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoreRevocationsPaginator.ts index 27d2700d532dc..aadf8841c703f 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoreRevocationsPaginator.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoreRevocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTrustStoreRevocationsCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoresPaginator.ts b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoresPaginator.ts index 491429106a10b..b6c8af913b901 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoresPaginator.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/DescribeTrustStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTrustStoresCommand, diff --git a/clients/client-elastic-load-balancing-v2/src/pagination/Interfaces.ts b/clients/client-elastic-load-balancing-v2/src/pagination/Interfaces.ts index 29088f986a1b9..0414beb13adec 100644 --- a/clients/client-elastic-load-balancing-v2/src/pagination/Interfaces.ts +++ b/clients/client-elastic-load-balancing-v2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ElasticLoadBalancingV2Client } from "../ElasticLoadBalancingV2Client"; diff --git a/clients/client-elastic-load-balancing-v2/src/runtimeConfig.browser.ts b/clients/client-elastic-load-balancing-v2/src/runtimeConfig.browser.ts index 818137f36c3ed..75473c4b2723d 100644 --- a/clients/client-elastic-load-balancing-v2/src/runtimeConfig.browser.ts +++ b/clients/client-elastic-load-balancing-v2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticLoadBalancingV2ClientConfig } from "./ElasticLoadBalancingV2Client"; + +import type { ElasticLoadBalancingV2ClientConfig } from "./ElasticLoadBalancingV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-elastic-load-balancing-v2/src/runtimeConfig.native.ts b/clients/client-elastic-load-balancing-v2/src/runtimeConfig.native.ts index 728b96699d743..da1d4372ee58c 100644 --- a/clients/client-elastic-load-balancing-v2/src/runtimeConfig.native.ts +++ b/clients/client-elastic-load-balancing-v2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ElasticLoadBalancingV2ClientConfig } from "./ElasticLoadBalancingV2Client"; +import type { ElasticLoadBalancingV2ClientConfig } from "./ElasticLoadBalancingV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/runtimeConfig.shared.ts b/clients/client-elastic-load-balancing-v2/src/runtimeConfig.shared.ts index 8aa14696ae866..d741dc737d083 100644 --- a/clients/client-elastic-load-balancing-v2/src/runtimeConfig.shared.ts +++ b/clients/client-elastic-load-balancing-v2/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultElasticLoadBalancingV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ElasticLoadBalancingV2ClientConfig } from "./ElasticLoadBalancingV2Client"; +import type { ElasticLoadBalancingV2ClientConfig } from "./ElasticLoadBalancingV2Client"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-elastic-load-balancing-v2/src/runtimeConfig.ts b/clients/client-elastic-load-balancing-v2/src/runtimeConfig.ts index 10c30befa07c4..af4c4478d8d1b 100644 --- a/clients/client-elastic-load-balancing-v2/src/runtimeConfig.ts +++ b/clients/client-elastic-load-balancing-v2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticLoadBalancingV2ClientConfig } from "./ElasticLoadBalancingV2Client"; + +import type { ElasticLoadBalancingV2ClientConfig } from "./ElasticLoadBalancingV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-elastic-load-balancing-v2/src/runtimeExtensions.ts b/clients/client-elastic-load-balancing-v2/src/runtimeExtensions.ts index 3777dda927b10..209a6fd263cd6 100644 --- a/clients/client-elastic-load-balancing-v2/src/runtimeExtensions.ts +++ b/clients/client-elastic-load-balancing-v2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ElasticLoadBalancingV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { ElasticLoadBalancingV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-elastic-load-balancing-v2/src/schemas/schemas_0.ts b/clients/client-elastic-load-balancing-v2/src/schemas/schemas_0.ts index 03237b9a15b0f..240bcb1576d46 100644 --- a/clients/client-elastic-load-balancing-v2/src/schemas/schemas_0.ts +++ b/clients/client-elastic-load-balancing-v2/src/schemas/schemas_0.ts @@ -467,7 +467,7 @@ const n0 = "com.amazonaws.elasticloadbalancingv2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-elastic-load-balancing/package.json b/clients/client-elastic-load-balancing/package.json index a3b6bc70dada1..02d8d6697c5a6 100644 --- a/clients/client-elastic-load-balancing/package.json +++ b/clients/client-elastic-load-balancing/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-elastic-load-balancing/src/ElasticLoadBalancing.ts b/clients/client-elastic-load-balancing/src/ElasticLoadBalancing.ts index 3c400c94a6448..d6b8cb74760b6 100644 --- a/clients/client-elastic-load-balancing/src/ElasticLoadBalancing.ts +++ b/clients/client-elastic-load-balancing/src/ElasticLoadBalancing.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddTagsCommand, AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand"; import { @@ -139,7 +139,7 @@ import { SetLoadBalancerPoliciesOfListenerCommandInput, SetLoadBalancerPoliciesOfListenerCommandOutput, } from "./commands/SetLoadBalancerPoliciesOfListenerCommand"; -import { ElasticLoadBalancingClient, ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient"; +import { ElasticLoadBalancingClient } from "./ElasticLoadBalancingClient"; const commands = { AddTagsCommand, diff --git a/clients/client-elastic-load-balancing/src/ElasticLoadBalancingClient.ts b/clients/client-elastic-load-balancing/src/ElasticLoadBalancingClient.ts index 2318007e15a0e..928a14a9760d9 100644 --- a/clients/client-elastic-load-balancing/src/ElasticLoadBalancingClient.ts +++ b/clients/client-elastic-load-balancing/src/ElasticLoadBalancingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultElasticLoadBalancingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand"; @@ -165,7 +174,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-elastic-load-balancing/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-elastic-load-balancing/src/auth/httpAuthExtensionConfiguration.ts index 2dbe3c43e9a15..21904ac8572ce 100644 --- a/clients/client-elastic-load-balancing/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-elastic-load-balancing/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ElasticLoadBalancingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ElasticLoadBalancingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-elastic-load-balancing/src/auth/httpAuthSchemeProvider.ts b/clients/client-elastic-load-balancing/src/auth/httpAuthSchemeProvider.ts index f35f11e19f778..34148f09efc15 100644 --- a/clients/client-elastic-load-balancing/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-elastic-load-balancing/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ElasticLoadBalancingClientResolvedConfig, ElasticLoadBalancingClientConfig, - ElasticLoadBalancingClientResolvedConfig, } from "../ElasticLoadBalancingClient"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/AddTagsCommand.ts b/clients/client-elastic-load-balancing/src/commands/AddTagsCommand.ts index a9461446804a2..15c2c8bf1e2b1 100644 --- a/clients/client-elastic-load-balancing/src/commands/AddTagsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/AddTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsInput, AddTagsOutput } from "../models/models_0"; +import type { AddTagsInput, AddTagsOutput } from "../models/models_0"; import { AddTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/ApplySecurityGroupsToLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/ApplySecurityGroupsToLoadBalancerCommand.ts index 84458ace2395f..c5b64bc4b653b 100644 --- a/clients/client-elastic-load-balancing/src/commands/ApplySecurityGroupsToLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/ApplySecurityGroupsToLoadBalancerCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplySecurityGroupsToLoadBalancerInput, ApplySecurityGroupsToLoadBalancerOutput } from "../models/models_0"; +import type { + ApplySecurityGroupsToLoadBalancerInput, + ApplySecurityGroupsToLoadBalancerOutput, +} from "../models/models_0"; import { ApplySecurityGroupsToLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/AttachLoadBalancerToSubnetsCommand.ts b/clients/client-elastic-load-balancing/src/commands/AttachLoadBalancerToSubnetsCommand.ts index 911fe45b7b00e..a6ee2b62cf96f 100644 --- a/clients/client-elastic-load-balancing/src/commands/AttachLoadBalancerToSubnetsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/AttachLoadBalancerToSubnetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachLoadBalancerToSubnetsInput, AttachLoadBalancerToSubnetsOutput } from "../models/models_0"; +import type { AttachLoadBalancerToSubnetsInput, AttachLoadBalancerToSubnetsOutput } from "../models/models_0"; import { AttachLoadBalancerToSubnets } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/ConfigureHealthCheckCommand.ts b/clients/client-elastic-load-balancing/src/commands/ConfigureHealthCheckCommand.ts index 907283419112b..85b93fa7ca548 100644 --- a/clients/client-elastic-load-balancing/src/commands/ConfigureHealthCheckCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/ConfigureHealthCheckCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfigureHealthCheckInput, ConfigureHealthCheckOutput } from "../models/models_0"; +import type { ConfigureHealthCheckInput, ConfigureHealthCheckOutput } from "../models/models_0"; import { ConfigureHealthCheck } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/CreateAppCookieStickinessPolicyCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateAppCookieStickinessPolicyCommand.ts index 32a3f057de03e..9ffc9668519fc 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateAppCookieStickinessPolicyCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateAppCookieStickinessPolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppCookieStickinessPolicyInput, CreateAppCookieStickinessPolicyOutput } from "../models/models_0"; +import type { CreateAppCookieStickinessPolicyInput, CreateAppCookieStickinessPolicyOutput } from "../models/models_0"; import { CreateAppCookieStickinessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/CreateLBCookieStickinessPolicyCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateLBCookieStickinessPolicyCommand.ts index 9dc0c4256c481..a182314e344fe 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateLBCookieStickinessPolicyCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateLBCookieStickinessPolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLBCookieStickinessPolicyInput, CreateLBCookieStickinessPolicyOutput } from "../models/models_0"; +import type { CreateLBCookieStickinessPolicyInput, CreateLBCookieStickinessPolicyOutput } from "../models/models_0"; import { CreateLBCookieStickinessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerCommand.ts index f1de05dfe21b1..ac287fbd26118 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessPointInput, CreateAccessPointOutput } from "../models/models_0"; +import type { CreateAccessPointInput, CreateAccessPointOutput } from "../models/models_0"; import { CreateLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerListenersCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerListenersCommand.ts index 9d7bae2862cd2..4494d50550f89 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerListenersCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerListenersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLoadBalancerListenerInput, CreateLoadBalancerListenerOutput } from "../models/models_0"; +import type { CreateLoadBalancerListenerInput, CreateLoadBalancerListenerOutput } from "../models/models_0"; import { CreateLoadBalancerListeners } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerPolicyCommand.ts b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerPolicyCommand.ts index 90c849be180d1..3cb3f512b0359 100644 --- a/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerPolicyCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/CreateLoadBalancerPolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLoadBalancerPolicyInput, CreateLoadBalancerPolicyOutput } from "../models/models_0"; +import type { CreateLoadBalancerPolicyInput, CreateLoadBalancerPolicyOutput } from "../models/models_0"; import { CreateLoadBalancerPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerCommand.ts index ff2f75083859a..79f3ca5af6121 100644 --- a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessPointInput, DeleteAccessPointOutput } from "../models/models_0"; +import type { DeleteAccessPointInput, DeleteAccessPointOutput } from "../models/models_0"; import { DeleteLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerListenersCommand.ts b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerListenersCommand.ts index 4ba693fa3ad1e..324d40131efc5 100644 --- a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerListenersCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerListenersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLoadBalancerListenerInput, DeleteLoadBalancerListenerOutput } from "../models/models_0"; +import type { DeleteLoadBalancerListenerInput, DeleteLoadBalancerListenerOutput } from "../models/models_0"; import { DeleteLoadBalancerListeners } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerPolicyCommand.ts b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerPolicyCommand.ts index ef552ac9c24e2..2cb9205557e75 100644 --- a/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerPolicyCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DeleteLoadBalancerPolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLoadBalancerPolicyInput, DeleteLoadBalancerPolicyOutput } from "../models/models_0"; +import type { DeleteLoadBalancerPolicyInput, DeleteLoadBalancerPolicyOutput } from "../models/models_0"; import { DeleteLoadBalancerPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DeregisterInstancesFromLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/DeregisterInstancesFromLoadBalancerCommand.ts index 59aa6c80238b0..df3286ae611a7 100644 --- a/clients/client-elastic-load-balancing/src/commands/DeregisterInstancesFromLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DeregisterInstancesFromLoadBalancerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterEndPointsInput, DeregisterEndPointsOutput } from "../models/models_0"; +import type { DeregisterEndPointsInput, DeregisterEndPointsOutput } from "../models/models_0"; import { DeregisterInstancesFromLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeAccountLimitsCommand.ts index 65c5bf6851eb4..f395a52941453 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeAccountLimitsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountLimitsInput, DescribeAccountLimitsOutput } from "../models/models_0"; +import type { DescribeAccountLimitsInput, DescribeAccountLimitsOutput } from "../models/models_0"; import { DescribeAccountLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeInstanceHealthCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeInstanceHealthCommand.ts index c95e20d087fb1..64877e440f6a8 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeInstanceHealthCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeInstanceHealthCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndPointStateInput, DescribeEndPointStateOutput } from "../models/models_0"; +import type { DescribeEndPointStateInput, DescribeEndPointStateOutput } from "../models/models_0"; import { DescribeInstanceHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerAttributesCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerAttributesCommand.ts index 98167134f056c..2b4ffe55b02f3 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoadBalancerAttributesInput, DescribeLoadBalancerAttributesOutput } from "../models/models_0"; +import type { DescribeLoadBalancerAttributesInput, DescribeLoadBalancerAttributesOutput } from "../models/models_0"; import { DescribeLoadBalancerAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPoliciesCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPoliciesCommand.ts index a1d204495bb96..0f1723b7f9bcf 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPoliciesCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPoliciesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoadBalancerPoliciesInput, DescribeLoadBalancerPoliciesOutput } from "../models/models_0"; +import type { DescribeLoadBalancerPoliciesInput, DescribeLoadBalancerPoliciesOutput } from "../models/models_0"; import { DescribeLoadBalancerPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPolicyTypesCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPolicyTypesCommand.ts index 7299a776ebf1d..2114afb63c1c8 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPolicyTypesCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancerPolicyTypesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoadBalancerPolicyTypesInput, DescribeLoadBalancerPolicyTypesOutput } from "../models/models_0"; +import type { DescribeLoadBalancerPolicyTypesInput, DescribeLoadBalancerPolicyTypesOutput } from "../models/models_0"; import { DescribeLoadBalancerPolicyTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancersCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancersCommand.ts index 8b6300508f272..a31479acd690e 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancersCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeLoadBalancersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccessPointsInput, DescribeAccessPointsOutput } from "../models/models_0"; +import type { DescribeAccessPointsInput, DescribeAccessPointsOutput } from "../models/models_0"; import { DescribeLoadBalancers } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DescribeTagsCommand.ts b/clients/client-elastic-load-balancing/src/commands/DescribeTagsCommand.ts index 18530a730af84..5069a22e23b28 100644 --- a/clients/client-elastic-load-balancing/src/commands/DescribeTagsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DescribeTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0"; +import type { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0"; import { DescribeTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DetachLoadBalancerFromSubnetsCommand.ts b/clients/client-elastic-load-balancing/src/commands/DetachLoadBalancerFromSubnetsCommand.ts index 6becfa793de89..51fc684d18232 100644 --- a/clients/client-elastic-load-balancing/src/commands/DetachLoadBalancerFromSubnetsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DetachLoadBalancerFromSubnetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachLoadBalancerFromSubnetsInput, DetachLoadBalancerFromSubnetsOutput } from "../models/models_0"; +import type { DetachLoadBalancerFromSubnetsInput, DetachLoadBalancerFromSubnetsOutput } from "../models/models_0"; import { DetachLoadBalancerFromSubnets } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/DisableAvailabilityZonesForLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/DisableAvailabilityZonesForLoadBalancerCommand.ts index d5b90349c147d..dd82b91e1c5e7 100644 --- a/clients/client-elastic-load-balancing/src/commands/DisableAvailabilityZonesForLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/DisableAvailabilityZonesForLoadBalancerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveAvailabilityZonesInput, RemoveAvailabilityZonesOutput } from "../models/models_0"; +import type { RemoveAvailabilityZonesInput, RemoveAvailabilityZonesOutput } from "../models/models_0"; import { DisableAvailabilityZonesForLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/EnableAvailabilityZonesForLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/EnableAvailabilityZonesForLoadBalancerCommand.ts index f23da0499e666..c8348dab1957b 100644 --- a/clients/client-elastic-load-balancing/src/commands/EnableAvailabilityZonesForLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/EnableAvailabilityZonesForLoadBalancerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddAvailabilityZonesInput, AddAvailabilityZonesOutput } from "../models/models_0"; +import type { AddAvailabilityZonesInput, AddAvailabilityZonesOutput } from "../models/models_0"; import { EnableAvailabilityZonesForLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/ModifyLoadBalancerAttributesCommand.ts b/clients/client-elastic-load-balancing/src/commands/ModifyLoadBalancerAttributesCommand.ts index e35039914ed72..3ae8cdbd2f060 100644 --- a/clients/client-elastic-load-balancing/src/commands/ModifyLoadBalancerAttributesCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/ModifyLoadBalancerAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyLoadBalancerAttributesInput, ModifyLoadBalancerAttributesOutput } from "../models/models_0"; +import type { ModifyLoadBalancerAttributesInput, ModifyLoadBalancerAttributesOutput } from "../models/models_0"; import { ModifyLoadBalancerAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/RegisterInstancesWithLoadBalancerCommand.ts b/clients/client-elastic-load-balancing/src/commands/RegisterInstancesWithLoadBalancerCommand.ts index 4a3997c74c843..403f2ca6ec5ce 100644 --- a/clients/client-elastic-load-balancing/src/commands/RegisterInstancesWithLoadBalancerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/RegisterInstancesWithLoadBalancerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterEndPointsInput, RegisterEndPointsOutput } from "../models/models_0"; +import type { RegisterEndPointsInput, RegisterEndPointsOutput } from "../models/models_0"; import { RegisterInstancesWithLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/RemoveTagsCommand.ts b/clients/client-elastic-load-balancing/src/commands/RemoveTagsCommand.ts index d3d388d821cee..732da6f985f66 100644 --- a/clients/client-elastic-load-balancing/src/commands/RemoveTagsCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/RemoveTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0"; +import type { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0"; import { RemoveTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerListenerSSLCertificateCommand.ts b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerListenerSSLCertificateCommand.ts index 7fcf8101737ec..069e7c6e55c9c 100644 --- a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerListenerSSLCertificateCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerListenerSSLCertificateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { SetLoadBalancerListenerSSLCertificateInput, SetLoadBalancerListenerSSLCertificateOutput, } from "../models/models_0"; diff --git a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesForBackendServerCommand.ts b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesForBackendServerCommand.ts index 8daba075e7d48..387dcf55db8b3 100644 --- a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesForBackendServerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesForBackendServerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { SetLoadBalancerPoliciesForBackendServerInput, SetLoadBalancerPoliciesForBackendServerOutput, } from "../models/models_0"; diff --git a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesOfListenerCommand.ts b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesOfListenerCommand.ts index 84f53940b786b..a4e10c2610e14 100644 --- a/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesOfListenerCommand.ts +++ b/clients/client-elastic-load-balancing/src/commands/SetLoadBalancerPoliciesOfListenerCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticLoadBalancingClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetLoadBalancerPoliciesOfListenerInput, SetLoadBalancerPoliciesOfListenerOutput } from "../models/models_0"; +import type { + SetLoadBalancerPoliciesOfListenerInput, + SetLoadBalancerPoliciesOfListenerOutput, +} from "../models/models_0"; import { SetLoadBalancerPoliciesOfListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-load-balancing/src/endpoint/EndpointParameters.ts b/clients/client-elastic-load-balancing/src/endpoint/EndpointParameters.ts index 45d74b28c380f..16532b7b188de 100644 --- a/clients/client-elastic-load-balancing/src/endpoint/EndpointParameters.ts +++ b/clients/client-elastic-load-balancing/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-elastic-load-balancing/src/endpoint/endpointResolver.ts b/clients/client-elastic-load-balancing/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-elastic-load-balancing/src/endpoint/endpointResolver.ts +++ b/clients/client-elastic-load-balancing/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-elastic-load-balancing/src/extensionConfiguration.ts b/clients/client-elastic-load-balancing/src/extensionConfiguration.ts index bf5ed7b3ebed1..9c031ff2cd576 100644 --- a/clients/client-elastic-load-balancing/src/extensionConfiguration.ts +++ b/clients/client-elastic-load-balancing/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-elastic-load-balancing/src/models/ElasticLoadBalancingServiceException.ts b/clients/client-elastic-load-balancing/src/models/ElasticLoadBalancingServiceException.ts index d5f6f58b26452..1fd9d49880268 100644 --- a/clients/client-elastic-load-balancing/src/models/ElasticLoadBalancingServiceException.ts +++ b/clients/client-elastic-load-balancing/src/models/ElasticLoadBalancingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-elastic-load-balancing/src/models/errors.ts b/clients/client-elastic-load-balancing/src/models/errors.ts index 541d4f5891b33..52bdbcf183425 100644 --- a/clients/client-elastic-load-balancing/src/models/errors.ts +++ b/clients/client-elastic-load-balancing/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException"; diff --git a/clients/client-elastic-load-balancing/src/pagination/DescribeLoadBalancersPaginator.ts b/clients/client-elastic-load-balancing/src/pagination/DescribeLoadBalancersPaginator.ts index d26b7854380f0..b08adaba2088f 100644 --- a/clients/client-elastic-load-balancing/src/pagination/DescribeLoadBalancersPaginator.ts +++ b/clients/client-elastic-load-balancing/src/pagination/DescribeLoadBalancersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLoadBalancersCommand, diff --git a/clients/client-elastic-load-balancing/src/pagination/Interfaces.ts b/clients/client-elastic-load-balancing/src/pagination/Interfaces.ts index c8796659b4cbe..23f79c641a58d 100644 --- a/clients/client-elastic-load-balancing/src/pagination/Interfaces.ts +++ b/clients/client-elastic-load-balancing/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ElasticLoadBalancingClient } from "../ElasticLoadBalancingClient"; diff --git a/clients/client-elastic-load-balancing/src/runtimeConfig.browser.ts b/clients/client-elastic-load-balancing/src/runtimeConfig.browser.ts index 024f4bcc99c56..4d2c9b6f20c20 100644 --- a/clients/client-elastic-load-balancing/src/runtimeConfig.browser.ts +++ b/clients/client-elastic-load-balancing/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient"; + +import type { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-elastic-load-balancing/src/runtimeConfig.native.ts b/clients/client-elastic-load-balancing/src/runtimeConfig.native.ts index 9bea3f6b6aaad..1c2f02f00caee 100644 --- a/clients/client-elastic-load-balancing/src/runtimeConfig.native.ts +++ b/clients/client-elastic-load-balancing/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient"; +import type { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-elastic-load-balancing/src/runtimeConfig.shared.ts b/clients/client-elastic-load-balancing/src/runtimeConfig.shared.ts index bc4c38894f71e..9714c29a6d041 100644 --- a/clients/client-elastic-load-balancing/src/runtimeConfig.shared.ts +++ b/clients/client-elastic-load-balancing/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultElasticLoadBalancingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient"; +import type { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-elastic-load-balancing/src/runtimeConfig.ts b/clients/client-elastic-load-balancing/src/runtimeConfig.ts index ea156e72d4a04..7bc38ab6106f9 100644 --- a/clients/client-elastic-load-balancing/src/runtimeConfig.ts +++ b/clients/client-elastic-load-balancing/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient"; + +import type { ElasticLoadBalancingClientConfig } from "./ElasticLoadBalancingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-elastic-load-balancing/src/runtimeExtensions.ts b/clients/client-elastic-load-balancing/src/runtimeExtensions.ts index c16ba9501ae14..9f4eadf1b04ca 100644 --- a/clients/client-elastic-load-balancing/src/runtimeExtensions.ts +++ b/clients/client-elastic-load-balancing/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ElasticLoadBalancingExtensionConfiguration } from "./extensionConfiguration"; +import type { ElasticLoadBalancingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-elastic-load-balancing/src/schemas/schemas_0.ts b/clients/client-elastic-load-balancing/src/schemas/schemas_0.ts index e4408ae84aa8f..b854ca8e25629 100644 --- a/clients/client-elastic-load-balancing/src/schemas/schemas_0.ts +++ b/clients/client-elastic-load-balancing/src/schemas/schemas_0.ts @@ -214,7 +214,7 @@ const n0 = "com.amazonaws.elasticloadbalancing"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ElasticLoadBalancingServiceException as __ElasticLoadBalancingServiceException } from "../models/ElasticLoadBalancingServiceException"; import { diff --git a/clients/client-elastic-transcoder/package.json b/clients/client-elastic-transcoder/package.json index 48d29629d28f1..03330018ccce7 100644 --- a/clients/client-elastic-transcoder/package.json +++ b/clients/client-elastic-transcoder/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-elastic-transcoder/src/ElasticTranscoder.ts b/clients/client-elastic-transcoder/src/ElasticTranscoder.ts index d5ca2ff271faa..4ec2f880e45d5 100644 --- a/clients/client-elastic-transcoder/src/ElasticTranscoder.ts +++ b/clients/client-elastic-transcoder/src/ElasticTranscoder.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelJobCommand, CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand"; import { CreateJobCommand, CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand"; @@ -63,7 +63,7 @@ import { UpdatePipelineStatusCommandInput, UpdatePipelineStatusCommandOutput, } from "./commands/UpdatePipelineStatusCommand"; -import { ElasticTranscoderClient, ElasticTranscoderClientConfig } from "./ElasticTranscoderClient"; +import { ElasticTranscoderClient } from "./ElasticTranscoderClient"; const commands = { CancelJobCommand, diff --git a/clients/client-elastic-transcoder/src/ElasticTranscoderClient.ts b/clients/client-elastic-transcoder/src/ElasticTranscoderClient.ts index 12ec30fcedc1a..9c6d9f4eea7d3 100644 --- a/clients/client-elastic-transcoder/src/ElasticTranscoderClient.ts +++ b/clients/client-elastic-transcoder/src/ElasticTranscoderClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultElasticTranscoderHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand"; @@ -87,7 +96,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-elastic-transcoder/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-elastic-transcoder/src/auth/httpAuthExtensionConfiguration.ts index 22529062d1e7a..8f41478ed2d8e 100644 --- a/clients/client-elastic-transcoder/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-elastic-transcoder/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ElasticTranscoderHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ElasticTranscoderHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-elastic-transcoder/src/auth/httpAuthSchemeProvider.ts b/clients/client-elastic-transcoder/src/auth/httpAuthSchemeProvider.ts index 0522535dbf070..937d5a928f5d5 100644 --- a/clients/client-elastic-transcoder/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-elastic-transcoder/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ElasticTranscoderClientConfig, ElasticTranscoderClientResolvedConfig } from "../ElasticTranscoderClient"; +import { type ElasticTranscoderClientResolvedConfig, ElasticTranscoderClientConfig } from "../ElasticTranscoderClient"; /** * @internal diff --git a/clients/client-elastic-transcoder/src/commands/CancelJobCommand.ts b/clients/client-elastic-transcoder/src/commands/CancelJobCommand.ts index c21b9f15a9154..35c41c52f7dea 100644 --- a/clients/client-elastic-transcoder/src/commands/CancelJobCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/CancelJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelJobRequest, CancelJobResponse } from "../models/models_0"; +import type { CancelJobRequest, CancelJobResponse } from "../models/models_0"; import { CancelJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/CreateJobCommand.ts b/clients/client-elastic-transcoder/src/commands/CreateJobCommand.ts index 3da88cca94014..bad4ded006110 100644 --- a/clients/client-elastic-transcoder/src/commands/CreateJobCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/CreateJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJobRequest, CreateJobResponse } from "../models/models_0"; +import type { CreateJobRequest, CreateJobResponse } from "../models/models_0"; import { CreateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/CreatePipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/CreatePipelineCommand.ts index 5aaa285b7b42b..14eaf908e9768 100644 --- a/clients/client-elastic-transcoder/src/commands/CreatePipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/CreatePipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_0"; +import type { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_0"; import { CreatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/CreatePresetCommand.ts b/clients/client-elastic-transcoder/src/commands/CreatePresetCommand.ts index 2625c41c7b579..14307de60e52b 100644 --- a/clients/client-elastic-transcoder/src/commands/CreatePresetCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/CreatePresetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePresetRequest, CreatePresetResponse } from "../models/models_0"; +import type { CreatePresetRequest, CreatePresetResponse } from "../models/models_0"; import { CreatePreset } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/DeletePipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/DeletePipelineCommand.ts index bf1027ae694df..79c23bce694d7 100644 --- a/clients/client-elastic-transcoder/src/commands/DeletePipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/DeletePipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePipelineRequest, DeletePipelineResponse } from "../models/models_0"; +import type { DeletePipelineRequest, DeletePipelineResponse } from "../models/models_0"; import { DeletePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/DeletePresetCommand.ts b/clients/client-elastic-transcoder/src/commands/DeletePresetCommand.ts index 5ddd87f14e589..a36383d9f301f 100644 --- a/clients/client-elastic-transcoder/src/commands/DeletePresetCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/DeletePresetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePresetRequest, DeletePresetResponse } from "../models/models_0"; +import type { DeletePresetRequest, DeletePresetResponse } from "../models/models_0"; import { DeletePreset } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/ListJobsByPipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/ListJobsByPipelineCommand.ts index 0dee3374d9da9..c55da17b6b4f0 100644 --- a/clients/client-elastic-transcoder/src/commands/ListJobsByPipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ListJobsByPipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsByPipelineRequest, ListJobsByPipelineResponse } from "../models/models_0"; +import type { ListJobsByPipelineRequest, ListJobsByPipelineResponse } from "../models/models_0"; import { ListJobsByPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/ListJobsByStatusCommand.ts b/clients/client-elastic-transcoder/src/commands/ListJobsByStatusCommand.ts index affe04d1c1364..faf50891e661d 100644 --- a/clients/client-elastic-transcoder/src/commands/ListJobsByStatusCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ListJobsByStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsByStatusRequest, ListJobsByStatusResponse } from "../models/models_0"; +import type { ListJobsByStatusRequest, ListJobsByStatusResponse } from "../models/models_0"; import { ListJobsByStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/ListPipelinesCommand.ts b/clients/client-elastic-transcoder/src/commands/ListPipelinesCommand.ts index 2a108706a8ecb..bab049e342635 100644 --- a/clients/client-elastic-transcoder/src/commands/ListPipelinesCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ListPipelinesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_0"; +import type { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_0"; import { ListPipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/ListPresetsCommand.ts b/clients/client-elastic-transcoder/src/commands/ListPresetsCommand.ts index 4bd11ef95e74e..47d565d166a3e 100644 --- a/clients/client-elastic-transcoder/src/commands/ListPresetsCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ListPresetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPresetsRequest, ListPresetsResponse } from "../models/models_0"; +import type { ListPresetsRequest, ListPresetsResponse } from "../models/models_0"; import { ListPresets } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/ReadJobCommand.ts b/clients/client-elastic-transcoder/src/commands/ReadJobCommand.ts index 24344c2a6a81f..0726d820e3b51 100644 --- a/clients/client-elastic-transcoder/src/commands/ReadJobCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ReadJobCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReadJobRequest, ReadJobResponse } from "../models/models_0"; +import type { ReadJobRequest, ReadJobResponse } from "../models/models_0"; import { ReadJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/ReadPipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/ReadPipelineCommand.ts index 8481f5b07b30e..72db02c82cbaa 100644 --- a/clients/client-elastic-transcoder/src/commands/ReadPipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ReadPipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReadPipelineRequest, ReadPipelineResponse } from "../models/models_0"; +import type { ReadPipelineRequest, ReadPipelineResponse } from "../models/models_0"; import { ReadPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/ReadPresetCommand.ts b/clients/client-elastic-transcoder/src/commands/ReadPresetCommand.ts index 3eeb3a6b2e0bc..e724debc4ae3a 100644 --- a/clients/client-elastic-transcoder/src/commands/ReadPresetCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/ReadPresetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReadPresetRequest, ReadPresetResponse } from "../models/models_0"; +import type { ReadPresetRequest, ReadPresetResponse } from "../models/models_0"; import { ReadPreset } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/TestRoleCommand.ts b/clients/client-elastic-transcoder/src/commands/TestRoleCommand.ts index ddd743a7f0d56..3cdb116bc477a 100644 --- a/clients/client-elastic-transcoder/src/commands/TestRoleCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/TestRoleCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestRoleRequest, TestRoleResponse } from "../models/models_0"; +import type { TestRoleRequest, TestRoleResponse } from "../models/models_0"; import { TestRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/UpdatePipelineCommand.ts b/clients/client-elastic-transcoder/src/commands/UpdatePipelineCommand.ts index 730494f6dadf7..5cee1479e85fe 100644 --- a/clients/client-elastic-transcoder/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/UpdatePipelineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePipelineRequest, UpdatePipelineResponse } from "../models/models_0"; +import type { UpdatePipelineRequest, UpdatePipelineResponse } from "../models/models_0"; import { UpdatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/UpdatePipelineNotificationsCommand.ts b/clients/client-elastic-transcoder/src/commands/UpdatePipelineNotificationsCommand.ts index 690842a610d83..d5a1a1d1e6bfc 100644 --- a/clients/client-elastic-transcoder/src/commands/UpdatePipelineNotificationsCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/UpdatePipelineNotificationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePipelineNotificationsRequest, UpdatePipelineNotificationsResponse } from "../models/models_0"; +import type { UpdatePipelineNotificationsRequest, UpdatePipelineNotificationsResponse } from "../models/models_0"; import { UpdatePipelineNotifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/commands/UpdatePipelineStatusCommand.ts b/clients/client-elastic-transcoder/src/commands/UpdatePipelineStatusCommand.ts index fc2de0d6b16c8..f170f5a5fbd09 100644 --- a/clients/client-elastic-transcoder/src/commands/UpdatePipelineStatusCommand.ts +++ b/clients/client-elastic-transcoder/src/commands/UpdatePipelineStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticTranscoderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticTranscoderClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePipelineStatusRequest, UpdatePipelineStatusResponse } from "../models/models_0"; +import type { UpdatePipelineStatusRequest, UpdatePipelineStatusResponse } from "../models/models_0"; import { UpdatePipelineStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-elastic-transcoder/src/endpoint/EndpointParameters.ts b/clients/client-elastic-transcoder/src/endpoint/EndpointParameters.ts index fb4fd0f2753f2..65f20e58839f2 100644 --- a/clients/client-elastic-transcoder/src/endpoint/EndpointParameters.ts +++ b/clients/client-elastic-transcoder/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-elastic-transcoder/src/endpoint/endpointResolver.ts b/clients/client-elastic-transcoder/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-elastic-transcoder/src/endpoint/endpointResolver.ts +++ b/clients/client-elastic-transcoder/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-elastic-transcoder/src/extensionConfiguration.ts b/clients/client-elastic-transcoder/src/extensionConfiguration.ts index bcc2d183e8eba..785d7ed559da6 100644 --- a/clients/client-elastic-transcoder/src/extensionConfiguration.ts +++ b/clients/client-elastic-transcoder/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-elastic-transcoder/src/models/ElasticTranscoderServiceException.ts b/clients/client-elastic-transcoder/src/models/ElasticTranscoderServiceException.ts index 6566fe590672c..1455a54fb0bbd 100644 --- a/clients/client-elastic-transcoder/src/models/ElasticTranscoderServiceException.ts +++ b/clients/client-elastic-transcoder/src/models/ElasticTranscoderServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-elastic-transcoder/src/models/errors.ts b/clients/client-elastic-transcoder/src/models/errors.ts index 8925addb655ab..4b3b52cd5698d 100644 --- a/clients/client-elastic-transcoder/src/models/errors.ts +++ b/clients/client-elastic-transcoder/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ElasticTranscoderServiceException as __BaseException } from "./ElasticTranscoderServiceException"; diff --git a/clients/client-elastic-transcoder/src/pagination/Interfaces.ts b/clients/client-elastic-transcoder/src/pagination/Interfaces.ts index 013a81aa12a31..c9c2074dd3356 100644 --- a/clients/client-elastic-transcoder/src/pagination/Interfaces.ts +++ b/clients/client-elastic-transcoder/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ElasticTranscoderClient } from "../ElasticTranscoderClient"; diff --git a/clients/client-elastic-transcoder/src/pagination/ListJobsByPipelinePaginator.ts b/clients/client-elastic-transcoder/src/pagination/ListJobsByPipelinePaginator.ts index f78b6d8c9b944..ee36cf165b27a 100644 --- a/clients/client-elastic-transcoder/src/pagination/ListJobsByPipelinePaginator.ts +++ b/clients/client-elastic-transcoder/src/pagination/ListJobsByPipelinePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsByPipelineCommand, diff --git a/clients/client-elastic-transcoder/src/pagination/ListJobsByStatusPaginator.ts b/clients/client-elastic-transcoder/src/pagination/ListJobsByStatusPaginator.ts index a2befa86471e6..69655bedad742 100644 --- a/clients/client-elastic-transcoder/src/pagination/ListJobsByStatusPaginator.ts +++ b/clients/client-elastic-transcoder/src/pagination/ListJobsByStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsByStatusCommand, diff --git a/clients/client-elastic-transcoder/src/pagination/ListPipelinesPaginator.ts b/clients/client-elastic-transcoder/src/pagination/ListPipelinesPaginator.ts index dd9c2b545301f..39fed14d46bec 100644 --- a/clients/client-elastic-transcoder/src/pagination/ListPipelinesPaginator.ts +++ b/clients/client-elastic-transcoder/src/pagination/ListPipelinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelinesCommand, diff --git a/clients/client-elastic-transcoder/src/pagination/ListPresetsPaginator.ts b/clients/client-elastic-transcoder/src/pagination/ListPresetsPaginator.ts index d51f09f83aee4..fd033e4469d36 100644 --- a/clients/client-elastic-transcoder/src/pagination/ListPresetsPaginator.ts +++ b/clients/client-elastic-transcoder/src/pagination/ListPresetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPresetsCommand, ListPresetsCommandInput, ListPresetsCommandOutput } from "../commands/ListPresetsCommand"; import { ElasticTranscoderClient } from "../ElasticTranscoderClient"; diff --git a/clients/client-elastic-transcoder/src/runtimeConfig.browser.ts b/clients/client-elastic-transcoder/src/runtimeConfig.browser.ts index 6ac2e5e10fecf..bead1ce724ae0 100644 --- a/clients/client-elastic-transcoder/src/runtimeConfig.browser.ts +++ b/clients/client-elastic-transcoder/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticTranscoderClientConfig } from "./ElasticTranscoderClient"; + +import type { ElasticTranscoderClientConfig } from "./ElasticTranscoderClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-elastic-transcoder/src/runtimeConfig.native.ts b/clients/client-elastic-transcoder/src/runtimeConfig.native.ts index 92519428f4e20..397ea9601991c 100644 --- a/clients/client-elastic-transcoder/src/runtimeConfig.native.ts +++ b/clients/client-elastic-transcoder/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ElasticTranscoderClientConfig } from "./ElasticTranscoderClient"; +import type { ElasticTranscoderClientConfig } from "./ElasticTranscoderClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-elastic-transcoder/src/runtimeConfig.shared.ts b/clients/client-elastic-transcoder/src/runtimeConfig.shared.ts index 00c7b3f72ab37..37dd40f345ed0 100644 --- a/clients/client-elastic-transcoder/src/runtimeConfig.shared.ts +++ b/clients/client-elastic-transcoder/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultElasticTranscoderHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ElasticTranscoderClientConfig } from "./ElasticTranscoderClient"; +import type { ElasticTranscoderClientConfig } from "./ElasticTranscoderClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-elastic-transcoder/src/runtimeConfig.ts b/clients/client-elastic-transcoder/src/runtimeConfig.ts index 2f9d268b7ec37..763204258ec29 100644 --- a/clients/client-elastic-transcoder/src/runtimeConfig.ts +++ b/clients/client-elastic-transcoder/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticTranscoderClientConfig } from "./ElasticTranscoderClient"; + +import type { ElasticTranscoderClientConfig } from "./ElasticTranscoderClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-elastic-transcoder/src/runtimeExtensions.ts b/clients/client-elastic-transcoder/src/runtimeExtensions.ts index 1f76a2d19057f..887efa7ef80a8 100644 --- a/clients/client-elastic-transcoder/src/runtimeExtensions.ts +++ b/clients/client-elastic-transcoder/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ElasticTranscoderExtensionConfiguration } from "./extensionConfiguration"; +import type { ElasticTranscoderExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-elastic-transcoder/src/schemas/schemas_0.ts b/clients/client-elastic-transcoder/src/schemas/schemas_0.ts index 00f1c8e08b14b..757728ca15239 100644 --- a/clients/client-elastic-transcoder/src/schemas/schemas_0.ts +++ b/clients/client-elastic-transcoder/src/schemas/schemas_0.ts @@ -218,7 +218,7 @@ const n0 = "com.amazonaws.elastictranscoder"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-elasticache/package.json b/clients/client-elasticache/package.json index 439c05e2caa3d..1dc14fcbe93c7 100644 --- a/clients/client-elasticache/package.json +++ b/clients/client-elasticache/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-elasticache/src/ElastiCache.ts b/clients/client-elasticache/src/ElastiCache.ts index 801425d7f6f96..d21dde0a44594 100644 --- a/clients/client-elasticache/src/ElastiCache.ts +++ b/clients/client-elasticache/src/ElastiCache.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddTagsToResourceCommand, @@ -365,7 +365,7 @@ import { TestMigrationCommandInput, TestMigrationCommandOutput, } from "./commands/TestMigrationCommand"; -import { ElastiCacheClient, ElastiCacheClientConfig } from "./ElastiCacheClient"; +import { ElastiCacheClient } from "./ElastiCacheClient"; const commands = { AddTagsToResourceCommand, diff --git a/clients/client-elasticache/src/ElastiCacheClient.ts b/clients/client-elasticache/src/ElastiCacheClient.ts index 85916ab45d270..9f538fade1ecf 100644 --- a/clients/client-elasticache/src/ElastiCacheClient.ts +++ b/clients/client-elasticache/src/ElastiCacheClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultElastiCacheHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput } from "./commands/AddTagsToResourceCommand"; @@ -298,7 +307,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-elasticache/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-elasticache/src/auth/httpAuthExtensionConfiguration.ts index 5c3703e5a1878..54b7b57325e32 100644 --- a/clients/client-elasticache/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-elasticache/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ElastiCacheHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ElastiCacheHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-elasticache/src/auth/httpAuthSchemeProvider.ts b/clients/client-elasticache/src/auth/httpAuthSchemeProvider.ts index a224c178a9cc4..561140404983c 100644 --- a/clients/client-elasticache/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-elasticache/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ElastiCacheClientConfig, ElastiCacheClientResolvedConfig } from "../ElastiCacheClient"; +import { type ElastiCacheClientResolvedConfig, ElastiCacheClientConfig } from "../ElastiCacheClient"; /** * @internal diff --git a/clients/client-elasticache/src/commands/AddTagsToResourceCommand.ts b/clients/client-elasticache/src/commands/AddTagsToResourceCommand.ts index fd751aab880c2..259a5c7c55bbe 100644 --- a/clients/client-elasticache/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-elasticache/src/commands/AddTagsToResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToResourceMessage, TagListMessage } from "../models/models_0"; +import type { AddTagsToResourceMessage, TagListMessage } from "../models/models_0"; import { AddTagsToResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/AuthorizeCacheSecurityGroupIngressCommand.ts b/clients/client-elasticache/src/commands/AuthorizeCacheSecurityGroupIngressCommand.ts index c3f3c40d83e56..8d6696b4fa5ff 100644 --- a/clients/client-elasticache/src/commands/AuthorizeCacheSecurityGroupIngressCommand.ts +++ b/clients/client-elasticache/src/commands/AuthorizeCacheSecurityGroupIngressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AuthorizeCacheSecurityGroupIngressMessage, AuthorizeCacheSecurityGroupIngressResult, } from "../models/models_0"; diff --git a/clients/client-elasticache/src/commands/BatchApplyUpdateActionCommand.ts b/clients/client-elasticache/src/commands/BatchApplyUpdateActionCommand.ts index 8decee73104eb..5a0ed61429a23 100644 --- a/clients/client-elasticache/src/commands/BatchApplyUpdateActionCommand.ts +++ b/clients/client-elasticache/src/commands/BatchApplyUpdateActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchApplyUpdateActionMessage, UpdateActionResultsMessage } from "../models/models_0"; +import type { BatchApplyUpdateActionMessage, UpdateActionResultsMessage } from "../models/models_0"; import { BatchApplyUpdateAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/BatchStopUpdateActionCommand.ts b/clients/client-elasticache/src/commands/BatchStopUpdateActionCommand.ts index b24acc80bb084..de317e77ccc38 100644 --- a/clients/client-elasticache/src/commands/BatchStopUpdateActionCommand.ts +++ b/clients/client-elasticache/src/commands/BatchStopUpdateActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchStopUpdateActionMessage, UpdateActionResultsMessage } from "../models/models_0"; +import type { BatchStopUpdateActionMessage, UpdateActionResultsMessage } from "../models/models_0"; import { BatchStopUpdateAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CompleteMigrationCommand.ts b/clients/client-elasticache/src/commands/CompleteMigrationCommand.ts index ae6dc0ffa33fd..dae1af86c03d6 100644 --- a/clients/client-elasticache/src/commands/CompleteMigrationCommand.ts +++ b/clients/client-elasticache/src/commands/CompleteMigrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteMigrationMessage, CompleteMigrationResponse } from "../models/models_0"; +import type { CompleteMigrationMessage, CompleteMigrationResponse } from "../models/models_0"; import { CompleteMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CopyServerlessCacheSnapshotCommand.ts b/clients/client-elasticache/src/commands/CopyServerlessCacheSnapshotCommand.ts index 30e6bea781165..e811f1743aa17 100644 --- a/clients/client-elasticache/src/commands/CopyServerlessCacheSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/CopyServerlessCacheSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyServerlessCacheSnapshotRequest, CopyServerlessCacheSnapshotResponse } from "../models/models_0"; +import type { CopyServerlessCacheSnapshotRequest, CopyServerlessCacheSnapshotResponse } from "../models/models_0"; import { CopyServerlessCacheSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CopySnapshotCommand.ts b/clients/client-elasticache/src/commands/CopySnapshotCommand.ts index f14ea7f4de72d..e566e0c52510b 100644 --- a/clients/client-elasticache/src/commands/CopySnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/CopySnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopySnapshotMessage, CopySnapshotResult } from "../models/models_0"; +import type { CopySnapshotMessage, CopySnapshotResult } from "../models/models_0"; import { CopySnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateCacheClusterCommand.ts b/clients/client-elasticache/src/commands/CreateCacheClusterCommand.ts index 62caa910ca7d6..fd0b23da3502b 100644 --- a/clients/client-elasticache/src/commands/CreateCacheClusterCommand.ts +++ b/clients/client-elasticache/src/commands/CreateCacheClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCacheClusterMessage, CreateCacheClusterResult } from "../models/models_0"; +import type { CreateCacheClusterMessage, CreateCacheClusterResult } from "../models/models_0"; import { CreateCacheCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateCacheParameterGroupCommand.ts b/clients/client-elasticache/src/commands/CreateCacheParameterGroupCommand.ts index cb1c578412407..15de88348167d 100644 --- a/clients/client-elasticache/src/commands/CreateCacheParameterGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateCacheParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCacheParameterGroupMessage, CreateCacheParameterGroupResult } from "../models/models_0"; +import type { CreateCacheParameterGroupMessage, CreateCacheParameterGroupResult } from "../models/models_0"; import { CreateCacheParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateCacheSecurityGroupCommand.ts b/clients/client-elasticache/src/commands/CreateCacheSecurityGroupCommand.ts index 771a51ee51288..aaa0040f3ab6f 100644 --- a/clients/client-elasticache/src/commands/CreateCacheSecurityGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateCacheSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCacheSecurityGroupMessage, CreateCacheSecurityGroupResult } from "../models/models_0"; +import type { CreateCacheSecurityGroupMessage, CreateCacheSecurityGroupResult } from "../models/models_0"; import { CreateCacheSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateCacheSubnetGroupCommand.ts b/clients/client-elasticache/src/commands/CreateCacheSubnetGroupCommand.ts index 314e36fc3d7b7..97f4af96378ff 100644 --- a/clients/client-elasticache/src/commands/CreateCacheSubnetGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateCacheSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCacheSubnetGroupMessage, CreateCacheSubnetGroupResult } from "../models/models_0"; +import type { CreateCacheSubnetGroupMessage, CreateCacheSubnetGroupResult } from "../models/models_0"; import { CreateCacheSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/CreateGlobalReplicationGroupCommand.ts index 683008f1d4325..3b02dfa75150c 100644 --- a/clients/client-elasticache/src/commands/CreateGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateGlobalReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGlobalReplicationGroupMessage, CreateGlobalReplicationGroupResult } from "../models/models_0"; +import type { CreateGlobalReplicationGroupMessage, CreateGlobalReplicationGroupResult } from "../models/models_0"; import { CreateGlobalReplicationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/CreateReplicationGroupCommand.ts index f6d6964387b1c..c3420b4a2fdd6 100644 --- a/clients/client-elasticache/src/commands/CreateReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReplicationGroupMessage, CreateReplicationGroupResult } from "../models/models_0"; +import type { CreateReplicationGroupMessage, CreateReplicationGroupResult } from "../models/models_0"; import { CreateReplicationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateServerlessCacheCommand.ts b/clients/client-elasticache/src/commands/CreateServerlessCacheCommand.ts index caf4de597268a..2b265b584e3a2 100644 --- a/clients/client-elasticache/src/commands/CreateServerlessCacheCommand.ts +++ b/clients/client-elasticache/src/commands/CreateServerlessCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServerlessCacheRequest, CreateServerlessCacheResponse } from "../models/models_0"; +import type { CreateServerlessCacheRequest, CreateServerlessCacheResponse } from "../models/models_0"; import { CreateServerlessCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateServerlessCacheSnapshotCommand.ts b/clients/client-elasticache/src/commands/CreateServerlessCacheSnapshotCommand.ts index b88db94695025..822bddf9fcf37 100644 --- a/clients/client-elasticache/src/commands/CreateServerlessCacheSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/CreateServerlessCacheSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServerlessCacheSnapshotRequest, CreateServerlessCacheSnapshotResponse } from "../models/models_0"; +import type { CreateServerlessCacheSnapshotRequest, CreateServerlessCacheSnapshotResponse } from "../models/models_0"; import { CreateServerlessCacheSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateSnapshotCommand.ts b/clients/client-elasticache/src/commands/CreateSnapshotCommand.ts index 1e1437abd1b1d..5e4d94eb9d45f 100644 --- a/clients/client-elasticache/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/CreateSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotMessage, CreateSnapshotResult } from "../models/models_0"; +import type { CreateSnapshotMessage, CreateSnapshotResult } from "../models/models_0"; import { CreateSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateUserCommand.ts b/clients/client-elasticache/src/commands/CreateUserCommand.ts index dd91d8339f1ff..95f4a63c26c47 100644 --- a/clients/client-elasticache/src/commands/CreateUserCommand.ts +++ b/clients/client-elasticache/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserMessage, User } from "../models/models_0"; +import type { CreateUserMessage, User } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/CreateUserGroupCommand.ts b/clients/client-elasticache/src/commands/CreateUserGroupCommand.ts index 5ab8ef9fbf086..41d059b27f6fe 100644 --- a/clients/client-elasticache/src/commands/CreateUserGroupCommand.ts +++ b/clients/client-elasticache/src/commands/CreateUserGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserGroupMessage, UserGroup } from "../models/models_0"; +import type { CreateUserGroupMessage, UserGroup } from "../models/models_0"; import { CreateUserGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.ts index 960fe0b4fb3ab..b50e634b42d24 100644 --- a/clients/client-elasticache/src/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DecreaseNodeGroupsInGlobalReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DecreaseNodeGroupsInGlobalReplicationGroupMessage, DecreaseNodeGroupsInGlobalReplicationGroupResult, } from "../models/models_0"; diff --git a/clients/client-elasticache/src/commands/DecreaseReplicaCountCommand.ts b/clients/client-elasticache/src/commands/DecreaseReplicaCountCommand.ts index 4e514e77a508d..5e88c12e848ed 100644 --- a/clients/client-elasticache/src/commands/DecreaseReplicaCountCommand.ts +++ b/clients/client-elasticache/src/commands/DecreaseReplicaCountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DecreaseReplicaCountMessage, DecreaseReplicaCountResult } from "../models/models_0"; +import type { DecreaseReplicaCountMessage, DecreaseReplicaCountResult } from "../models/models_0"; import { DecreaseReplicaCount } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteCacheClusterCommand.ts b/clients/client-elasticache/src/commands/DeleteCacheClusterCommand.ts index 99f14bacbb46e..1a35853ce112c 100644 --- a/clients/client-elasticache/src/commands/DeleteCacheClusterCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteCacheClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCacheClusterMessage, DeleteCacheClusterResult } from "../models/models_0"; +import type { DeleteCacheClusterMessage, DeleteCacheClusterResult } from "../models/models_0"; import { DeleteCacheCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteCacheParameterGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteCacheParameterGroupCommand.ts index 2257a1c6dd9ef..a8c15e11380c7 100644 --- a/clients/client-elasticache/src/commands/DeleteCacheParameterGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteCacheParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCacheParameterGroupMessage } from "../models/models_0"; +import type { DeleteCacheParameterGroupMessage } from "../models/models_0"; import { DeleteCacheParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteCacheSecurityGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteCacheSecurityGroupCommand.ts index 060c6374cb4e0..cb4bfca228504 100644 --- a/clients/client-elasticache/src/commands/DeleteCacheSecurityGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteCacheSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCacheSecurityGroupMessage } from "../models/models_0"; +import type { DeleteCacheSecurityGroupMessage } from "../models/models_0"; import { DeleteCacheSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteCacheSubnetGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteCacheSubnetGroupCommand.ts index fad344ea331e6..063ef3d93bc49 100644 --- a/clients/client-elasticache/src/commands/DeleteCacheSubnetGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteCacheSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCacheSubnetGroupMessage } from "../models/models_0"; +import type { DeleteCacheSubnetGroupMessage } from "../models/models_0"; import { DeleteCacheSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteGlobalReplicationGroupCommand.ts index 665b678c492f0..487009326cb11 100644 --- a/clients/client-elasticache/src/commands/DeleteGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteGlobalReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGlobalReplicationGroupMessage, DeleteGlobalReplicationGroupResult } from "../models/models_0"; +import type { DeleteGlobalReplicationGroupMessage, DeleteGlobalReplicationGroupResult } from "../models/models_0"; import { DeleteGlobalReplicationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteReplicationGroupCommand.ts index 7ffb6b3ce8cdf..8ec7c4c685561 100644 --- a/clients/client-elasticache/src/commands/DeleteReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReplicationGroupMessage, DeleteReplicationGroupResult } from "../models/models_0"; +import type { DeleteReplicationGroupMessage, DeleteReplicationGroupResult } from "../models/models_0"; import { DeleteReplicationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteServerlessCacheCommand.ts b/clients/client-elasticache/src/commands/DeleteServerlessCacheCommand.ts index 411f005e43404..e3ef5da6fed0c 100644 --- a/clients/client-elasticache/src/commands/DeleteServerlessCacheCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteServerlessCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServerlessCacheRequest, DeleteServerlessCacheResponse } from "../models/models_0"; +import type { DeleteServerlessCacheRequest, DeleteServerlessCacheResponse } from "../models/models_0"; import { DeleteServerlessCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteServerlessCacheSnapshotCommand.ts b/clients/client-elasticache/src/commands/DeleteServerlessCacheSnapshotCommand.ts index 951f3c02ce429..fd5bad0f77580 100644 --- a/clients/client-elasticache/src/commands/DeleteServerlessCacheSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteServerlessCacheSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServerlessCacheSnapshotRequest, DeleteServerlessCacheSnapshotResponse } from "../models/models_0"; +import type { DeleteServerlessCacheSnapshotRequest, DeleteServerlessCacheSnapshotResponse } from "../models/models_0"; import { DeleteServerlessCacheSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteSnapshotCommand.ts b/clients/client-elasticache/src/commands/DeleteSnapshotCommand.ts index 1dbab5caaef31..aa0aa1449a8e1 100644 --- a/clients/client-elasticache/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSnapshotMessage, DeleteSnapshotResult } from "../models/models_0"; +import type { DeleteSnapshotMessage, DeleteSnapshotResult } from "../models/models_0"; import { DeleteSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteUserCommand.ts b/clients/client-elasticache/src/commands/DeleteUserCommand.ts index a24e8072a48d5..096ea92f53cc3 100644 --- a/clients/client-elasticache/src/commands/DeleteUserCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserMessage, User } from "../models/models_0"; +import type { DeleteUserMessage, User } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DeleteUserGroupCommand.ts b/clients/client-elasticache/src/commands/DeleteUserGroupCommand.ts index 02dc7fcc07715..cc69c69e1160e 100644 --- a/clients/client-elasticache/src/commands/DeleteUserGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DeleteUserGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserGroupMessage, UserGroup } from "../models/models_0"; +import type { DeleteUserGroupMessage, UserGroup } from "../models/models_0"; import { DeleteUserGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeCacheClustersCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheClustersCommand.ts index 803a8d267a005..06ada972b2ed1 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheClustersCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CacheClusterMessage, DescribeCacheClustersMessage } from "../models/models_0"; +import type { CacheClusterMessage, DescribeCacheClustersMessage } from "../models/models_0"; import { DescribeCacheClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeCacheEngineVersionsCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheEngineVersionsCommand.ts index e51ef92391e54..d587365d426fd 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheEngineVersionsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheEngineVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CacheEngineVersionMessage, DescribeCacheEngineVersionsMessage } from "../models/models_0"; +import type { CacheEngineVersionMessage, DescribeCacheEngineVersionsMessage } from "../models/models_0"; import { DescribeCacheEngineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeCacheParameterGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheParameterGroupsCommand.ts index 05e05b8c1730b..a2636b5c5a7e0 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheParameterGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CacheParameterGroupsMessage, DescribeCacheParameterGroupsMessage } from "../models/models_0"; +import type { CacheParameterGroupsMessage, DescribeCacheParameterGroupsMessage } from "../models/models_0"; import { DescribeCacheParameterGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeCacheParametersCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheParametersCommand.ts index 2441f012f2972..f1ce6cd32ca02 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheParametersCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CacheParameterGroupDetails, DescribeCacheParametersMessage } from "../models/models_0"; +import type { CacheParameterGroupDetails, DescribeCacheParametersMessage } from "../models/models_0"; import { DescribeCacheParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeCacheSecurityGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheSecurityGroupsCommand.ts index eea9998138c60..c38b144b412f9 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheSecurityGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheSecurityGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CacheSecurityGroupMessage, DescribeCacheSecurityGroupsMessage } from "../models/models_0"; +import type { CacheSecurityGroupMessage, DescribeCacheSecurityGroupsMessage } from "../models/models_0"; import { DescribeCacheSecurityGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeCacheSubnetGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeCacheSubnetGroupsCommand.ts index 8c567abf6c1cc..b2db92e7ea026 100644 --- a/clients/client-elasticache/src/commands/DescribeCacheSubnetGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeCacheSubnetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CacheSubnetGroupMessage, DescribeCacheSubnetGroupsMessage } from "../models/models_0"; +import type { CacheSubnetGroupMessage, DescribeCacheSubnetGroupsMessage } from "../models/models_0"; import { DescribeCacheSubnetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeEngineDefaultParametersCommand.ts b/clients/client-elasticache/src/commands/DescribeEngineDefaultParametersCommand.ts index 78713e8608342..d38d26fce1501 100644 --- a/clients/client-elasticache/src/commands/DescribeEngineDefaultParametersCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeEngineDefaultParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEngineDefaultParametersMessage, DescribeEngineDefaultParametersResult } from "../models/models_0"; +import type { DescribeEngineDefaultParametersMessage, DescribeEngineDefaultParametersResult } from "../models/models_0"; import { DescribeEngineDefaultParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeEventsCommand.ts b/clients/client-elasticache/src/commands/DescribeEventsCommand.ts index 8eeb9860bd6dd..9d454e8a0f369 100644 --- a/clients/client-elasticache/src/commands/DescribeEventsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsMessage, EventsMessage } from "../models/models_0"; +import type { DescribeEventsMessage, EventsMessage } from "../models/models_0"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeGlobalReplicationGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeGlobalReplicationGroupsCommand.ts index 6b9b8973bff1c..8b0013b96df9c 100644 --- a/clients/client-elasticache/src/commands/DescribeGlobalReplicationGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeGlobalReplicationGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGlobalReplicationGroupsMessage, DescribeGlobalReplicationGroupsResult } from "../models/models_0"; +import type { DescribeGlobalReplicationGroupsMessage, DescribeGlobalReplicationGroupsResult } from "../models/models_0"; import { DescribeGlobalReplicationGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeReplicationGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeReplicationGroupsCommand.ts index bc3dddf9bf1b2..f81c2d8d3199a 100644 --- a/clients/client-elasticache/src/commands/DescribeReplicationGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeReplicationGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReplicationGroupsMessage, ReplicationGroupMessage } from "../models/models_0"; +import type { DescribeReplicationGroupsMessage, ReplicationGroupMessage } from "../models/models_0"; import { DescribeReplicationGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeReservedCacheNodesCommand.ts b/clients/client-elasticache/src/commands/DescribeReservedCacheNodesCommand.ts index 8fc8b4b1e1dd6..8e41a405eb6dc 100644 --- a/clients/client-elasticache/src/commands/DescribeReservedCacheNodesCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeReservedCacheNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedCacheNodesMessage, ReservedCacheNodeMessage } from "../models/models_0"; +import type { DescribeReservedCacheNodesMessage, ReservedCacheNodeMessage } from "../models/models_0"; import { DescribeReservedCacheNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeReservedCacheNodesOfferingsCommand.ts b/clients/client-elasticache/src/commands/DescribeReservedCacheNodesOfferingsCommand.ts index 4ce84a9ed2dc7..72c885c894b70 100644 --- a/clients/client-elasticache/src/commands/DescribeReservedCacheNodesOfferingsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeReservedCacheNodesOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedCacheNodesOfferingsMessage, ReservedCacheNodesOfferingMessage } from "../models/models_0"; +import type { DescribeReservedCacheNodesOfferingsMessage, ReservedCacheNodesOfferingMessage } from "../models/models_0"; import { DescribeReservedCacheNodesOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeServerlessCacheSnapshotsCommand.ts b/clients/client-elasticache/src/commands/DescribeServerlessCacheSnapshotsCommand.ts index d16d073c56688..0e3f59c0466f1 100644 --- a/clients/client-elasticache/src/commands/DescribeServerlessCacheSnapshotsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeServerlessCacheSnapshotsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServerlessCacheSnapshotsRequest, DescribeServerlessCacheSnapshotsResponse } from "../models/models_0"; +import type { + DescribeServerlessCacheSnapshotsRequest, + DescribeServerlessCacheSnapshotsResponse, +} from "../models/models_0"; import { DescribeServerlessCacheSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeServerlessCachesCommand.ts b/clients/client-elasticache/src/commands/DescribeServerlessCachesCommand.ts index 8bb79e970c4e5..2843948be5080 100644 --- a/clients/client-elasticache/src/commands/DescribeServerlessCachesCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeServerlessCachesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServerlessCachesRequest, DescribeServerlessCachesResponse } from "../models/models_0"; +import type { DescribeServerlessCachesRequest, DescribeServerlessCachesResponse } from "../models/models_0"; import { DescribeServerlessCaches } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeServiceUpdatesCommand.ts b/clients/client-elasticache/src/commands/DescribeServiceUpdatesCommand.ts index d62b38fd98cd6..135f83f1cef9b 100644 --- a/clients/client-elasticache/src/commands/DescribeServiceUpdatesCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeServiceUpdatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServiceUpdatesMessage, ServiceUpdatesMessage } from "../models/models_0"; +import type { DescribeServiceUpdatesMessage, ServiceUpdatesMessage } from "../models/models_0"; import { DescribeServiceUpdates } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeSnapshotsCommand.ts b/clients/client-elasticache/src/commands/DescribeSnapshotsCommand.ts index e9945fb7b8c4a..46804900e3023 100644 --- a/clients/client-elasticache/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSnapshotsListMessage, DescribeSnapshotsMessage } from "../models/models_0"; +import type { DescribeSnapshotsListMessage, DescribeSnapshotsMessage } from "../models/models_0"; import { DescribeSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeUpdateActionsCommand.ts b/clients/client-elasticache/src/commands/DescribeUpdateActionsCommand.ts index 774d1983fba18..7dcd70f4ed32c 100644 --- a/clients/client-elasticache/src/commands/DescribeUpdateActionsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeUpdateActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUpdateActionsMessage, UpdateActionsMessage } from "../models/models_0"; +import type { DescribeUpdateActionsMessage, UpdateActionsMessage } from "../models/models_0"; import { DescribeUpdateActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeUserGroupsCommand.ts b/clients/client-elasticache/src/commands/DescribeUserGroupsCommand.ts index 03f58128fa346..5c502301fd95a 100644 --- a/clients/client-elasticache/src/commands/DescribeUserGroupsCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeUserGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserGroupsMessage, DescribeUserGroupsResult } from "../models/models_0"; +import type { DescribeUserGroupsMessage, DescribeUserGroupsResult } from "../models/models_0"; import { DescribeUserGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DescribeUsersCommand.ts b/clients/client-elasticache/src/commands/DescribeUsersCommand.ts index c0cef7aeb187f..8e9c3994ae341 100644 --- a/clients/client-elasticache/src/commands/DescribeUsersCommand.ts +++ b/clients/client-elasticache/src/commands/DescribeUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUsersMessage, DescribeUsersResult } from "../models/models_0"; +import type { DescribeUsersMessage, DescribeUsersResult } from "../models/models_0"; import { DescribeUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/DisassociateGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/DisassociateGlobalReplicationGroupCommand.ts index 3159eaa5a4b49..0c6a46eb7805b 100644 --- a/clients/client-elasticache/src/commands/DisassociateGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/DisassociateGlobalReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateGlobalReplicationGroupMessage, DisassociateGlobalReplicationGroupResult, } from "../models/models_0"; diff --git a/clients/client-elasticache/src/commands/ExportServerlessCacheSnapshotCommand.ts b/clients/client-elasticache/src/commands/ExportServerlessCacheSnapshotCommand.ts index b15b71e28d52e..02cec23b283d4 100644 --- a/clients/client-elasticache/src/commands/ExportServerlessCacheSnapshotCommand.ts +++ b/clients/client-elasticache/src/commands/ExportServerlessCacheSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportServerlessCacheSnapshotRequest, ExportServerlessCacheSnapshotResponse } from "../models/models_0"; +import type { ExportServerlessCacheSnapshotRequest, ExportServerlessCacheSnapshotResponse } from "../models/models_0"; import { ExportServerlessCacheSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/FailoverGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/FailoverGlobalReplicationGroupCommand.ts index 0dec94de374f7..c811e7d092379 100644 --- a/clients/client-elasticache/src/commands/FailoverGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/FailoverGlobalReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FailoverGlobalReplicationGroupMessage, FailoverGlobalReplicationGroupResult } from "../models/models_0"; +import type { FailoverGlobalReplicationGroupMessage, FailoverGlobalReplicationGroupResult } from "../models/models_0"; import { FailoverGlobalReplicationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.ts index c3789d6e71ebd..741495d853057 100644 --- a/clients/client-elasticache/src/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/IncreaseNodeGroupsInGlobalReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IncreaseNodeGroupsInGlobalReplicationGroupMessage, IncreaseNodeGroupsInGlobalReplicationGroupResult, } from "../models/models_0"; diff --git a/clients/client-elasticache/src/commands/IncreaseReplicaCountCommand.ts b/clients/client-elasticache/src/commands/IncreaseReplicaCountCommand.ts index 94234b8a8a79c..12f0ea2fac549 100644 --- a/clients/client-elasticache/src/commands/IncreaseReplicaCountCommand.ts +++ b/clients/client-elasticache/src/commands/IncreaseReplicaCountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IncreaseReplicaCountMessage, IncreaseReplicaCountResult } from "../models/models_0"; +import type { IncreaseReplicaCountMessage, IncreaseReplicaCountResult } from "../models/models_0"; import { IncreaseReplicaCount } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ListAllowedNodeTypeModificationsCommand.ts b/clients/client-elasticache/src/commands/ListAllowedNodeTypeModificationsCommand.ts index fd8694a400549..6a83652c7be61 100644 --- a/clients/client-elasticache/src/commands/ListAllowedNodeTypeModificationsCommand.ts +++ b/clients/client-elasticache/src/commands/ListAllowedNodeTypeModificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllowedNodeTypeModificationsMessage, ListAllowedNodeTypeModificationsMessage } from "../models/models_0"; +import type { AllowedNodeTypeModificationsMessage, ListAllowedNodeTypeModificationsMessage } from "../models/models_0"; import { ListAllowedNodeTypeModifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ListTagsForResourceCommand.ts b/clients/client-elasticache/src/commands/ListTagsForResourceCommand.ts index ec29cb8e51728..92bc6ae9f0a43 100644 --- a/clients/client-elasticache/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-elasticache/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceMessage, TagListMessage } from "../models/models_0"; +import type { ListTagsForResourceMessage, TagListMessage } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ModifyCacheClusterCommand.ts b/clients/client-elasticache/src/commands/ModifyCacheClusterCommand.ts index 37622fa73edcb..1be831a51a9b4 100644 --- a/clients/client-elasticache/src/commands/ModifyCacheClusterCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyCacheClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyCacheClusterMessage, ModifyCacheClusterResult } from "../models/models_0"; +import type { ModifyCacheClusterMessage, ModifyCacheClusterResult } from "../models/models_0"; import { ModifyCacheCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ModifyCacheParameterGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyCacheParameterGroupCommand.ts index 8de46e4cd4934..913303f01ec7a 100644 --- a/clients/client-elasticache/src/commands/ModifyCacheParameterGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyCacheParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CacheParameterGroupNameMessage, ModifyCacheParameterGroupMessage } from "../models/models_0"; +import type { CacheParameterGroupNameMessage, ModifyCacheParameterGroupMessage } from "../models/models_0"; import { ModifyCacheParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ModifyCacheSubnetGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyCacheSubnetGroupCommand.ts index 063130d246721..ada505c68ddfd 100644 --- a/clients/client-elasticache/src/commands/ModifyCacheSubnetGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyCacheSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyCacheSubnetGroupMessage, ModifyCacheSubnetGroupResult } from "../models/models_0"; +import type { ModifyCacheSubnetGroupMessage, ModifyCacheSubnetGroupResult } from "../models/models_0"; import { ModifyCacheSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ModifyGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyGlobalReplicationGroupCommand.ts index 41428657ac8cf..622148ce59dbc 100644 --- a/clients/client-elasticache/src/commands/ModifyGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyGlobalReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyGlobalReplicationGroupMessage, ModifyGlobalReplicationGroupResult } from "../models/models_0"; +import type { ModifyGlobalReplicationGroupMessage, ModifyGlobalReplicationGroupResult } from "../models/models_0"; import { ModifyGlobalReplicationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ModifyReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyReplicationGroupCommand.ts index 484713ef5027c..c16e6a3393ae3 100644 --- a/clients/client-elasticache/src/commands/ModifyReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyReplicationGroupMessage, ModifyReplicationGroupResult } from "../models/models_0"; +import type { ModifyReplicationGroupMessage, ModifyReplicationGroupResult } from "../models/models_0"; import { ModifyReplicationGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ModifyReplicationGroupShardConfigurationCommand.ts b/clients/client-elasticache/src/commands/ModifyReplicationGroupShardConfigurationCommand.ts index 65e8ef4efe346..9c70f39cbd521 100644 --- a/clients/client-elasticache/src/commands/ModifyReplicationGroupShardConfigurationCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyReplicationGroupShardConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyReplicationGroupShardConfigurationMessage, ModifyReplicationGroupShardConfigurationResult, } from "../models/models_0"; diff --git a/clients/client-elasticache/src/commands/ModifyServerlessCacheCommand.ts b/clients/client-elasticache/src/commands/ModifyServerlessCacheCommand.ts index f7986cb4c37c9..862642ff879c8 100644 --- a/clients/client-elasticache/src/commands/ModifyServerlessCacheCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyServerlessCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyServerlessCacheRequest, ModifyServerlessCacheResponse } from "../models/models_0"; +import type { ModifyServerlessCacheRequest, ModifyServerlessCacheResponse } from "../models/models_0"; import { ModifyServerlessCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ModifyUserCommand.ts b/clients/client-elasticache/src/commands/ModifyUserCommand.ts index 976d5b9921326..19b16eb210aea 100644 --- a/clients/client-elasticache/src/commands/ModifyUserCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyUserMessage, User } from "../models/models_0"; +import type { ModifyUserMessage, User } from "../models/models_0"; import { ModifyUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ModifyUserGroupCommand.ts b/clients/client-elasticache/src/commands/ModifyUserGroupCommand.ts index d3a9a486ab33f..eaae3728f0ce6 100644 --- a/clients/client-elasticache/src/commands/ModifyUserGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ModifyUserGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyUserGroupMessage, UserGroup } from "../models/models_0"; +import type { ModifyUserGroupMessage, UserGroup } from "../models/models_0"; import { ModifyUserGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/PurchaseReservedCacheNodesOfferingCommand.ts b/clients/client-elasticache/src/commands/PurchaseReservedCacheNodesOfferingCommand.ts index bec8e00e57850..d2c96e188c392 100644 --- a/clients/client-elasticache/src/commands/PurchaseReservedCacheNodesOfferingCommand.ts +++ b/clients/client-elasticache/src/commands/PurchaseReservedCacheNodesOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PurchaseReservedCacheNodesOfferingMessage, PurchaseReservedCacheNodesOfferingResult, } from "../models/models_0"; diff --git a/clients/client-elasticache/src/commands/RebalanceSlotsInGlobalReplicationGroupCommand.ts b/clients/client-elasticache/src/commands/RebalanceSlotsInGlobalReplicationGroupCommand.ts index f8b05c4e37fbe..d8c602a99b02e 100644 --- a/clients/client-elasticache/src/commands/RebalanceSlotsInGlobalReplicationGroupCommand.ts +++ b/clients/client-elasticache/src/commands/RebalanceSlotsInGlobalReplicationGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RebalanceSlotsInGlobalReplicationGroupMessage, RebalanceSlotsInGlobalReplicationGroupResult, } from "../models/models_0"; diff --git a/clients/client-elasticache/src/commands/RebootCacheClusterCommand.ts b/clients/client-elasticache/src/commands/RebootCacheClusterCommand.ts index fd8140a6b64ef..8e02bf97bcf3f 100644 --- a/clients/client-elasticache/src/commands/RebootCacheClusterCommand.ts +++ b/clients/client-elasticache/src/commands/RebootCacheClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootCacheClusterMessage, RebootCacheClusterResult } from "../models/models_0"; +import type { RebootCacheClusterMessage, RebootCacheClusterResult } from "../models/models_0"; import { RebootCacheCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-elasticache/src/commands/RemoveTagsFromResourceCommand.ts index 01952afca9328..1f8eaf57b2ec9 100644 --- a/clients/client-elasticache/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-elasticache/src/commands/RemoveTagsFromResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromResourceMessage, TagListMessage } from "../models/models_0"; +import type { RemoveTagsFromResourceMessage, TagListMessage } from "../models/models_0"; import { RemoveTagsFromResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/ResetCacheParameterGroupCommand.ts b/clients/client-elasticache/src/commands/ResetCacheParameterGroupCommand.ts index 4f7e8a828f59a..a21ead2903ea1 100644 --- a/clients/client-elasticache/src/commands/ResetCacheParameterGroupCommand.ts +++ b/clients/client-elasticache/src/commands/ResetCacheParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CacheParameterGroupNameMessage, ResetCacheParameterGroupMessage } from "../models/models_0"; +import type { CacheParameterGroupNameMessage, ResetCacheParameterGroupMessage } from "../models/models_0"; import { ResetCacheParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/RevokeCacheSecurityGroupIngressCommand.ts b/clients/client-elasticache/src/commands/RevokeCacheSecurityGroupIngressCommand.ts index fcaa998f5e1e9..3d92b5f4447ba 100644 --- a/clients/client-elasticache/src/commands/RevokeCacheSecurityGroupIngressCommand.ts +++ b/clients/client-elasticache/src/commands/RevokeCacheSecurityGroupIngressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeCacheSecurityGroupIngressMessage, RevokeCacheSecurityGroupIngressResult } from "../models/models_0"; +import type { RevokeCacheSecurityGroupIngressMessage, RevokeCacheSecurityGroupIngressResult } from "../models/models_0"; import { RevokeCacheSecurityGroupIngress } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/StartMigrationCommand.ts b/clients/client-elasticache/src/commands/StartMigrationCommand.ts index 395b03077a9ef..ee9f835eea5c8 100644 --- a/clients/client-elasticache/src/commands/StartMigrationCommand.ts +++ b/clients/client-elasticache/src/commands/StartMigrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMigrationMessage, StartMigrationResponse } from "../models/models_0"; +import type { StartMigrationMessage, StartMigrationResponse } from "../models/models_0"; import { StartMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/TestFailoverCommand.ts b/clients/client-elasticache/src/commands/TestFailoverCommand.ts index b3e62525e16cd..1eb6547e46bec 100644 --- a/clients/client-elasticache/src/commands/TestFailoverCommand.ts +++ b/clients/client-elasticache/src/commands/TestFailoverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestFailoverMessage, TestFailoverResult } from "../models/models_0"; +import type { TestFailoverMessage, TestFailoverResult } from "../models/models_0"; import { TestFailover } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/commands/TestMigrationCommand.ts b/clients/client-elasticache/src/commands/TestMigrationCommand.ts index bebcc45632e9b..b56aa044059e5 100644 --- a/clients/client-elasticache/src/commands/TestMigrationCommand.ts +++ b/clients/client-elasticache/src/commands/TestMigrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; +import type { ElastiCacheClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElastiCacheClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestMigrationMessage, TestMigrationResponse } from "../models/models_0"; +import type { TestMigrationMessage, TestMigrationResponse } from "../models/models_0"; import { TestMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticache/src/endpoint/EndpointParameters.ts b/clients/client-elasticache/src/endpoint/EndpointParameters.ts index 005480738c045..185f9a6e8399f 100644 --- a/clients/client-elasticache/src/endpoint/EndpointParameters.ts +++ b/clients/client-elasticache/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-elasticache/src/endpoint/endpointResolver.ts b/clients/client-elasticache/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-elasticache/src/endpoint/endpointResolver.ts +++ b/clients/client-elasticache/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-elasticache/src/extensionConfiguration.ts b/clients/client-elasticache/src/extensionConfiguration.ts index 44c8533c1a897..22684a9a517e6 100644 --- a/clients/client-elasticache/src/extensionConfiguration.ts +++ b/clients/client-elasticache/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-elasticache/src/models/ElastiCacheServiceException.ts b/clients/client-elasticache/src/models/ElastiCacheServiceException.ts index f5144fb4d5f9d..1f2a49fd53d69 100644 --- a/clients/client-elasticache/src/models/ElastiCacheServiceException.ts +++ b/clients/client-elasticache/src/models/ElastiCacheServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-elasticache/src/models/errors.ts b/clients/client-elasticache/src/models/errors.ts index e2bb29441d526..b8ab82aa848d6 100644 --- a/clients/client-elasticache/src/models/errors.ts +++ b/clients/client-elasticache/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ElastiCacheServiceException as __BaseException } from "./ElastiCacheServiceException"; diff --git a/clients/client-elasticache/src/pagination/DescribeCacheClustersPaginator.ts b/clients/client-elasticache/src/pagination/DescribeCacheClustersPaginator.ts index 5c1a60702c8bf..e6989ced080cb 100644 --- a/clients/client-elasticache/src/pagination/DescribeCacheClustersPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeCacheClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCacheClustersCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeCacheEngineVersionsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeCacheEngineVersionsPaginator.ts index cfd516dc77900..59cd76b4b6305 100644 --- a/clients/client-elasticache/src/pagination/DescribeCacheEngineVersionsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeCacheEngineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCacheEngineVersionsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeCacheParameterGroupsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeCacheParameterGroupsPaginator.ts index d2171540b0508..a9f243fba4e85 100644 --- a/clients/client-elasticache/src/pagination/DescribeCacheParameterGroupsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeCacheParameterGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCacheParameterGroupsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeCacheParametersPaginator.ts b/clients/client-elasticache/src/pagination/DescribeCacheParametersPaginator.ts index f6c504078cc80..66978afae2c27 100644 --- a/clients/client-elasticache/src/pagination/DescribeCacheParametersPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeCacheParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCacheParametersCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeCacheSecurityGroupsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeCacheSecurityGroupsPaginator.ts index f12601df83ba8..b227d91bf703c 100644 --- a/clients/client-elasticache/src/pagination/DescribeCacheSecurityGroupsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeCacheSecurityGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCacheSecurityGroupsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeCacheSubnetGroupsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeCacheSubnetGroupsPaginator.ts index 0aac943f5e411..f373ebe0ba13d 100644 --- a/clients/client-elasticache/src/pagination/DescribeCacheSubnetGroupsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeCacheSubnetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCacheSubnetGroupsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeEngineDefaultParametersPaginator.ts b/clients/client-elasticache/src/pagination/DescribeEngineDefaultParametersPaginator.ts index 514ff23e5f8c3..151cef6f2194b 100644 --- a/clients/client-elasticache/src/pagination/DescribeEngineDefaultParametersPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeEngineDefaultParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEngineDefaultParametersCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeEventsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeEventsPaginator.ts index 544436b01e451..349a77809780e 100644 --- a/clients/client-elasticache/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeGlobalReplicationGroupsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeGlobalReplicationGroupsPaginator.ts index d334c153f364e..f1b43445db2b6 100644 --- a/clients/client-elasticache/src/pagination/DescribeGlobalReplicationGroupsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeGlobalReplicationGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGlobalReplicationGroupsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeReplicationGroupsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeReplicationGroupsPaginator.ts index 3dd63001d2a14..6e6ee945a77a5 100644 --- a/clients/client-elasticache/src/pagination/DescribeReplicationGroupsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeReplicationGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationGroupsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeReservedCacheNodesOfferingsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeReservedCacheNodesOfferingsPaginator.ts index 3418787512daf..626b1c3a10599 100644 --- a/clients/client-elasticache/src/pagination/DescribeReservedCacheNodesOfferingsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeReservedCacheNodesOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedCacheNodesOfferingsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeReservedCacheNodesPaginator.ts b/clients/client-elasticache/src/pagination/DescribeReservedCacheNodesPaginator.ts index e2bfa6a81d2be..bbd54054e5bd5 100644 --- a/clients/client-elasticache/src/pagination/DescribeReservedCacheNodesPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeReservedCacheNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedCacheNodesCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeServerlessCacheSnapshotsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeServerlessCacheSnapshotsPaginator.ts index 8017ba94b1011..cdf46aabd7b94 100644 --- a/clients/client-elasticache/src/pagination/DescribeServerlessCacheSnapshotsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeServerlessCacheSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeServerlessCacheSnapshotsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeServerlessCachesPaginator.ts b/clients/client-elasticache/src/pagination/DescribeServerlessCachesPaginator.ts index 838526f758fa8..306c267b03486 100644 --- a/clients/client-elasticache/src/pagination/DescribeServerlessCachesPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeServerlessCachesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeServerlessCachesCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeServiceUpdatesPaginator.ts b/clients/client-elasticache/src/pagination/DescribeServiceUpdatesPaginator.ts index f554820e5299e..d4ca2862018b3 100644 --- a/clients/client-elasticache/src/pagination/DescribeServiceUpdatesPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeServiceUpdatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeServiceUpdatesCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeSnapshotsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeSnapshotsPaginator.ts index 78797de2f2a56..91e3ae380a445 100644 --- a/clients/client-elasticache/src/pagination/DescribeSnapshotsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSnapshotsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeUpdateActionsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeUpdateActionsPaginator.ts index 326933d1b007e..dd56223052bc6 100644 --- a/clients/client-elasticache/src/pagination/DescribeUpdateActionsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeUpdateActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeUpdateActionsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeUserGroupsPaginator.ts b/clients/client-elasticache/src/pagination/DescribeUserGroupsPaginator.ts index 46fe926356296..cb76b573599ee 100644 --- a/clients/client-elasticache/src/pagination/DescribeUserGroupsPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeUserGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeUserGroupsCommand, diff --git a/clients/client-elasticache/src/pagination/DescribeUsersPaginator.ts b/clients/client-elasticache/src/pagination/DescribeUsersPaginator.ts index 2e86f6e038060..0db10c5f158e3 100644 --- a/clients/client-elasticache/src/pagination/DescribeUsersPaginator.ts +++ b/clients/client-elasticache/src/pagination/DescribeUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeUsersCommand, diff --git a/clients/client-elasticache/src/pagination/Interfaces.ts b/clients/client-elasticache/src/pagination/Interfaces.ts index 8c114f446dcf6..00eb44f81b667 100644 --- a/clients/client-elasticache/src/pagination/Interfaces.ts +++ b/clients/client-elasticache/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ElastiCacheClient } from "../ElastiCacheClient"; diff --git a/clients/client-elasticache/src/runtimeConfig.browser.ts b/clients/client-elasticache/src/runtimeConfig.browser.ts index 3e52d359c2d93..42f501fc59149 100644 --- a/clients/client-elasticache/src/runtimeConfig.browser.ts +++ b/clients/client-elasticache/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElastiCacheClientConfig } from "./ElastiCacheClient"; + +import type { ElastiCacheClientConfig } from "./ElastiCacheClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-elasticache/src/runtimeConfig.native.ts b/clients/client-elasticache/src/runtimeConfig.native.ts index 51af2a71fbb6f..da4fc2717a83a 100644 --- a/clients/client-elasticache/src/runtimeConfig.native.ts +++ b/clients/client-elasticache/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ElastiCacheClientConfig } from "./ElastiCacheClient"; +import type { ElastiCacheClientConfig } from "./ElastiCacheClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-elasticache/src/runtimeConfig.shared.ts b/clients/client-elasticache/src/runtimeConfig.shared.ts index 06b9f0f7b1e9b..2025b6f1c20a9 100644 --- a/clients/client-elasticache/src/runtimeConfig.shared.ts +++ b/clients/client-elasticache/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultElastiCacheHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ElastiCacheClientConfig } from "./ElastiCacheClient"; +import type { ElastiCacheClientConfig } from "./ElastiCacheClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-elasticache/src/runtimeConfig.ts b/clients/client-elasticache/src/runtimeConfig.ts index 69925be4e4bb5..fdc85b93f5764 100644 --- a/clients/client-elasticache/src/runtimeConfig.ts +++ b/clients/client-elasticache/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElastiCacheClientConfig } from "./ElastiCacheClient"; + +import type { ElastiCacheClientConfig } from "./ElastiCacheClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-elasticache/src/runtimeExtensions.ts b/clients/client-elasticache/src/runtimeExtensions.ts index 88ff8d69acee1..42f71a00fbfd0 100644 --- a/clients/client-elasticache/src/runtimeExtensions.ts +++ b/clients/client-elasticache/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ElastiCacheExtensionConfiguration } from "./extensionConfiguration"; +import type { ElastiCacheExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-elasticache/src/schemas/schemas_0.ts b/clients/client-elasticache/src/schemas/schemas_0.ts index ab38f6a2bb723..94aa07105a52b 100644 --- a/clients/client-elasticache/src/schemas/schemas_0.ts +++ b/clients/client-elasticache/src/schemas/schemas_0.ts @@ -724,7 +724,7 @@ const n0 = "com.amazonaws.elasticache"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ElastiCacheServiceException as __ElastiCacheServiceException } from "../models/ElastiCacheServiceException"; import { diff --git a/clients/client-elasticsearch-service/package.json b/clients/client-elasticsearch-service/package.json index 140a6d81d9f59..161f9780b97fc 100644 --- a/clients/client-elasticsearch-service/package.json +++ b/clients/client-elasticsearch-service/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-elasticsearch-service/src/ElasticsearchService.ts b/clients/client-elasticsearch-service/src/ElasticsearchService.ts index dfc2ba091828e..865163b8c3d8d 100644 --- a/clients/client-elasticsearch-service/src/ElasticsearchService.ts +++ b/clients/client-elasticsearch-service/src/ElasticsearchService.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptInboundCrossClusterSearchConnectionCommand, @@ -245,7 +245,7 @@ import { UpgradeElasticsearchDomainCommandInput, UpgradeElasticsearchDomainCommandOutput, } from "./commands/UpgradeElasticsearchDomainCommand"; -import { ElasticsearchServiceClient, ElasticsearchServiceClientConfig } from "./ElasticsearchServiceClient"; +import { ElasticsearchServiceClient } from "./ElasticsearchServiceClient"; const commands = { AcceptInboundCrossClusterSearchConnectionCommand, diff --git a/clients/client-elasticsearch-service/src/ElasticsearchServiceClient.ts b/clients/client-elasticsearch-service/src/ElasticsearchServiceClient.ts index b096a4cf4fff7..14b75bf09d1e9 100644 --- a/clients/client-elasticsearch-service/src/ElasticsearchServiceClient.ts +++ b/clients/client-elasticsearch-service/src/ElasticsearchServiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultElasticsearchServiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -220,7 +229,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-elasticsearch-service/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-elasticsearch-service/src/auth/httpAuthExtensionConfiguration.ts index 654f791ed9cde..2147e25139aad 100644 --- a/clients/client-elasticsearch-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-elasticsearch-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ElasticsearchServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ElasticsearchServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-elasticsearch-service/src/auth/httpAuthSchemeProvider.ts b/clients/client-elasticsearch-service/src/auth/httpAuthSchemeProvider.ts index c1e9d052fbe34..71de183d115dd 100644 --- a/clients/client-elasticsearch-service/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-elasticsearch-service/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ElasticsearchServiceClientResolvedConfig, ElasticsearchServiceClientConfig, - ElasticsearchServiceClientResolvedConfig, } from "../ElasticsearchServiceClient"; /** diff --git a/clients/client-elasticsearch-service/src/commands/AcceptInboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/AcceptInboundCrossClusterSearchConnectionCommand.ts index ad69fd780e964..6890a66d99fb5 100644 --- a/clients/client-elasticsearch-service/src/commands/AcceptInboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/AcceptInboundCrossClusterSearchConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AcceptInboundCrossClusterSearchConnectionRequest, AcceptInboundCrossClusterSearchConnectionResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/AddTagsCommand.ts b/clients/client-elasticsearch-service/src/commands/AddTagsCommand.ts index 9cdac6f50c2f6..9211ba998ce16 100644 --- a/clients/client-elasticsearch-service/src/commands/AddTagsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/AddTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsRequest } from "../models/models_0"; +import type { AddTagsRequest } from "../models/models_0"; import { AddTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/AssociatePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/AssociatePackageCommand.ts index e50c6fb332bf0..4be58c0fe909b 100644 --- a/clients/client-elasticsearch-service/src/commands/AssociatePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/AssociatePackageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociatePackageRequest, AssociatePackageResponse } from "../models/models_0"; +import type { AssociatePackageRequest, AssociatePackageResponse } from "../models/models_0"; import { AssociatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/AuthorizeVpcEndpointAccessCommand.ts b/clients/client-elasticsearch-service/src/commands/AuthorizeVpcEndpointAccessCommand.ts index 48591e52618d4..6208c6462dd8a 100644 --- a/clients/client-elasticsearch-service/src/commands/AuthorizeVpcEndpointAccessCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/AuthorizeVpcEndpointAccessCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeVpcEndpointAccessRequest, AuthorizeVpcEndpointAccessResponse } from "../models/models_0"; +import type { AuthorizeVpcEndpointAccessRequest, AuthorizeVpcEndpointAccessResponse } from "../models/models_0"; import { AuthorizeVpcEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/CancelDomainConfigChangeCommand.ts b/clients/client-elasticsearch-service/src/commands/CancelDomainConfigChangeCommand.ts index a8217712fa7de..5217cbabda47e 100644 --- a/clients/client-elasticsearch-service/src/commands/CancelDomainConfigChangeCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CancelDomainConfigChangeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelDomainConfigChangeRequest, CancelDomainConfigChangeResponse } from "../models/models_0"; +import type { CancelDomainConfigChangeRequest, CancelDomainConfigChangeResponse } from "../models/models_0"; import { CancelDomainConfigChange } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/CancelElasticsearchServiceSoftwareUpdateCommand.ts b/clients/client-elasticsearch-service/src/commands/CancelElasticsearchServiceSoftwareUpdateCommand.ts index 4c93c06b902ce..745406dbadcc8 100644 --- a/clients/client-elasticsearch-service/src/commands/CancelElasticsearchServiceSoftwareUpdateCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CancelElasticsearchServiceSoftwareUpdateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CancelElasticsearchServiceSoftwareUpdateRequest, CancelElasticsearchServiceSoftwareUpdateResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/CreateElasticsearchDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/CreateElasticsearchDomainCommand.ts index a91767c70e7b9..3b611002a1b26 100644 --- a/clients/client-elasticsearch-service/src/commands/CreateElasticsearchDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CreateElasticsearchDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateElasticsearchDomainRequest, CreateElasticsearchDomainResponse } from "../models/models_0"; +import type { CreateElasticsearchDomainRequest, CreateElasticsearchDomainResponse } from "../models/models_0"; import { CreateElasticsearchDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/CreateOutboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/CreateOutboundCrossClusterSearchConnectionCommand.ts index 33220e8c0ec95..0980e7f114bfb 100644 --- a/clients/client-elasticsearch-service/src/commands/CreateOutboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CreateOutboundCrossClusterSearchConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateOutboundCrossClusterSearchConnectionRequest, CreateOutboundCrossClusterSearchConnectionResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/CreatePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/CreatePackageCommand.ts index 541192d81fa04..b799b66ba3a52 100644 --- a/clients/client-elasticsearch-service/src/commands/CreatePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CreatePackageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePackageRequest, CreatePackageResponse } from "../models/models_0"; +import type { CreatePackageRequest, CreatePackageResponse } from "../models/models_0"; import { CreatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/CreateVpcEndpointCommand.ts b/clients/client-elasticsearch-service/src/commands/CreateVpcEndpointCommand.ts index 538496c9addb6..1e2e81719db98 100644 --- a/clients/client-elasticsearch-service/src/commands/CreateVpcEndpointCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/CreateVpcEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcEndpointRequest, CreateVpcEndpointResponse } from "../models/models_0"; +import type { CreateVpcEndpointRequest, CreateVpcEndpointResponse } from "../models/models_0"; import { CreateVpcEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchDomainCommand.ts index edf7da3ee9aef..48166acb70e7c 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteElasticsearchDomainRequest, DeleteElasticsearchDomainResponse } from "../models/models_0"; +import type { DeleteElasticsearchDomainRequest, DeleteElasticsearchDomainResponse } from "../models/models_0"; import { DeleteElasticsearchDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchServiceRoleCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchServiceRoleCommand.ts index 18ca03ff5c106..69e98b841a63a 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchServiceRoleCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteElasticsearchServiceRoleCommand.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-elasticsearch-service/src/commands/DeleteInboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteInboundCrossClusterSearchConnectionCommand.ts index df8333b526d73..189a3b5026592 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteInboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteInboundCrossClusterSearchConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteInboundCrossClusterSearchConnectionRequest, DeleteInboundCrossClusterSearchConnectionResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/DeleteOutboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteOutboundCrossClusterSearchConnectionCommand.ts index f300650230a66..11b08288ef76d 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteOutboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteOutboundCrossClusterSearchConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteOutboundCrossClusterSearchConnectionRequest, DeleteOutboundCrossClusterSearchConnectionResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/DeletePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/DeletePackageCommand.ts index 4f1499360da4e..b9e38f8bae1b6 100644 --- a/clients/client-elasticsearch-service/src/commands/DeletePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeletePackageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePackageRequest, DeletePackageResponse } from "../models/models_0"; +import type { DeletePackageRequest, DeletePackageResponse } from "../models/models_0"; import { DeletePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DeleteVpcEndpointCommand.ts b/clients/client-elasticsearch-service/src/commands/DeleteVpcEndpointCommand.ts index f6d6014110485..3f0b85f18f7e2 100644 --- a/clients/client-elasticsearch-service/src/commands/DeleteVpcEndpointCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DeleteVpcEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcEndpointRequest, DeleteVpcEndpointResponse } from "../models/models_0"; +import type { DeleteVpcEndpointRequest, DeleteVpcEndpointResponse } from "../models/models_0"; import { DeleteVpcEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DescribeDomainAutoTunesCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeDomainAutoTunesCommand.ts index d4389676d4069..4914130bae3ca 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeDomainAutoTunesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeDomainAutoTunesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainAutoTunesRequest, DescribeDomainAutoTunesResponse } from "../models/models_0"; +import type { DescribeDomainAutoTunesRequest, DescribeDomainAutoTunesResponse } from "../models/models_0"; import { DescribeDomainAutoTunes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DescribeDomainChangeProgressCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeDomainChangeProgressCommand.ts index 811cba21cbea1..4fdd49d455906 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeDomainChangeProgressCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeDomainChangeProgressCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainChangeProgressRequest, DescribeDomainChangeProgressResponse } from "../models/models_0"; +import type { DescribeDomainChangeProgressRequest, DescribeDomainChangeProgressResponse } from "../models/models_0"; import { DescribeDomainChangeProgress } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainCommand.ts index 2b0e7d9d2645c..eef5d28bbb5fa 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeElasticsearchDomainRequest, DescribeElasticsearchDomainResponse } from "../models/models_0"; +import type { DescribeElasticsearchDomainRequest, DescribeElasticsearchDomainResponse } from "../models/models_0"; import { DescribeElasticsearchDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainConfigCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainConfigCommand.ts index f85a5e4cd74e8..a1a16fee3669b 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainConfigCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeElasticsearchDomainConfigRequest, DescribeElasticsearchDomainConfigResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainsCommand.ts index 90c78aebaee0f..f14847428ffce 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchDomainsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeElasticsearchDomainsRequest, DescribeElasticsearchDomainsResponse } from "../models/models_0"; +import type { DescribeElasticsearchDomainsRequest, DescribeElasticsearchDomainsResponse } from "../models/models_0"; import { DescribeElasticsearchDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchInstanceTypeLimitsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchInstanceTypeLimitsCommand.ts index bdc2494a83fc3..3a7fa4f6c73f7 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchInstanceTypeLimitsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeElasticsearchInstanceTypeLimitsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeElasticsearchInstanceTypeLimitsRequest, DescribeElasticsearchInstanceTypeLimitsResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/DescribeInboundCrossClusterSearchConnectionsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeInboundCrossClusterSearchConnectionsCommand.ts index fd89459eb34ac..0e13cb2602914 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeInboundCrossClusterSearchConnectionsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeInboundCrossClusterSearchConnectionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeInboundCrossClusterSearchConnectionsRequest, DescribeInboundCrossClusterSearchConnectionsResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.ts index 7cfc541eddaf1..689bbafc4e8f3 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeOutboundCrossClusterSearchConnectionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeOutboundCrossClusterSearchConnectionsRequest, DescribeOutboundCrossClusterSearchConnectionsResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/DescribePackagesCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribePackagesCommand.ts index 3d01f51632cd8..39cb88327f80f 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribePackagesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribePackagesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePackagesRequest, DescribePackagesResponse } from "../models/models_0"; +import type { DescribePackagesRequest, DescribePackagesResponse } from "../models/models_0"; import { DescribePackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.ts index 2da14d361ceb1..dfd65bdb18236 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstanceOfferingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReservedElasticsearchInstanceOfferingsRequest, DescribeReservedElasticsearchInstanceOfferingsResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstancesCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstancesCommand.ts index 4b40cd3309e51..ecc4a3ef20c78 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstancesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeReservedElasticsearchInstancesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReservedElasticsearchInstancesRequest, DescribeReservedElasticsearchInstancesResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/DescribeVpcEndpointsCommand.ts b/clients/client-elasticsearch-service/src/commands/DescribeVpcEndpointsCommand.ts index e7082634ad64d..96af733ddf5f8 100644 --- a/clients/client-elasticsearch-service/src/commands/DescribeVpcEndpointsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DescribeVpcEndpointsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcEndpointsRequest, DescribeVpcEndpointsResponse } from "../models/models_0"; +import type { DescribeVpcEndpointsRequest, DescribeVpcEndpointsResponse } from "../models/models_0"; import { DescribeVpcEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/DissociatePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/DissociatePackageCommand.ts index 7741ff8bda064..dba8405a8f9c3 100644 --- a/clients/client-elasticsearch-service/src/commands/DissociatePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/DissociatePackageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DissociatePackageRequest, DissociatePackageResponse } from "../models/models_0"; +import type { DissociatePackageRequest, DissociatePackageResponse } from "../models/models_0"; import { DissociatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/GetCompatibleElasticsearchVersionsCommand.ts b/clients/client-elasticsearch-service/src/commands/GetCompatibleElasticsearchVersionsCommand.ts index d82d39683e10f..6f129378551de 100644 --- a/clients/client-elasticsearch-service/src/commands/GetCompatibleElasticsearchVersionsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/GetCompatibleElasticsearchVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCompatibleElasticsearchVersionsRequest, GetCompatibleElasticsearchVersionsResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/GetPackageVersionHistoryCommand.ts b/clients/client-elasticsearch-service/src/commands/GetPackageVersionHistoryCommand.ts index 611628b6a62db..0ca167049a59e 100644 --- a/clients/client-elasticsearch-service/src/commands/GetPackageVersionHistoryCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/GetPackageVersionHistoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPackageVersionHistoryRequest, GetPackageVersionHistoryResponse } from "../models/models_0"; +import type { GetPackageVersionHistoryRequest, GetPackageVersionHistoryResponse } from "../models/models_0"; import { GetPackageVersionHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/GetUpgradeHistoryCommand.ts b/clients/client-elasticsearch-service/src/commands/GetUpgradeHistoryCommand.ts index 3d5ff782247a9..8e5869c93cd72 100644 --- a/clients/client-elasticsearch-service/src/commands/GetUpgradeHistoryCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/GetUpgradeHistoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUpgradeHistoryRequest, GetUpgradeHistoryResponse } from "../models/models_0"; +import type { GetUpgradeHistoryRequest, GetUpgradeHistoryResponse } from "../models/models_0"; import { GetUpgradeHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/GetUpgradeStatusCommand.ts b/clients/client-elasticsearch-service/src/commands/GetUpgradeStatusCommand.ts index 95bb89194c68d..642a2ed1c611a 100644 --- a/clients/client-elasticsearch-service/src/commands/GetUpgradeStatusCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/GetUpgradeStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUpgradeStatusRequest, GetUpgradeStatusResponse } from "../models/models_0"; +import type { GetUpgradeStatusRequest, GetUpgradeStatusResponse } from "../models/models_0"; import { GetUpgradeStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/ListDomainNamesCommand.ts b/clients/client-elasticsearch-service/src/commands/ListDomainNamesCommand.ts index 05dfca7d89442..57af50d6103fa 100644 --- a/clients/client-elasticsearch-service/src/commands/ListDomainNamesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListDomainNamesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainNamesRequest, ListDomainNamesResponse } from "../models/models_0"; +import type { ListDomainNamesRequest, ListDomainNamesResponse } from "../models/models_0"; import { ListDomainNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/ListDomainsForPackageCommand.ts b/clients/client-elasticsearch-service/src/commands/ListDomainsForPackageCommand.ts index 65af74eb732fb..aaccc656f2a2a 100644 --- a/clients/client-elasticsearch-service/src/commands/ListDomainsForPackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListDomainsForPackageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsForPackageRequest, ListDomainsForPackageResponse } from "../models/models_0"; +import type { ListDomainsForPackageRequest, ListDomainsForPackageResponse } from "../models/models_0"; import { ListDomainsForPackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/ListElasticsearchInstanceTypesCommand.ts b/clients/client-elasticsearch-service/src/commands/ListElasticsearchInstanceTypesCommand.ts index 49d644440888c..bfd520df44e39 100644 --- a/clients/client-elasticsearch-service/src/commands/ListElasticsearchInstanceTypesCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListElasticsearchInstanceTypesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListElasticsearchInstanceTypesRequest, ListElasticsearchInstanceTypesResponse } from "../models/models_0"; +import type { ListElasticsearchInstanceTypesRequest, ListElasticsearchInstanceTypesResponse } from "../models/models_0"; import { ListElasticsearchInstanceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/ListElasticsearchVersionsCommand.ts b/clients/client-elasticsearch-service/src/commands/ListElasticsearchVersionsCommand.ts index d1e7badc0ad59..6c60bc058ba78 100644 --- a/clients/client-elasticsearch-service/src/commands/ListElasticsearchVersionsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListElasticsearchVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListElasticsearchVersionsRequest, ListElasticsearchVersionsResponse } from "../models/models_0"; +import type { ListElasticsearchVersionsRequest, ListElasticsearchVersionsResponse } from "../models/models_0"; import { ListElasticsearchVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/ListPackagesForDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/ListPackagesForDomainCommand.ts index c75a0dc4dc827..510a22924c53e 100644 --- a/clients/client-elasticsearch-service/src/commands/ListPackagesForDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListPackagesForDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPackagesForDomainRequest, ListPackagesForDomainResponse } from "../models/models_0"; +import type { ListPackagesForDomainRequest, ListPackagesForDomainResponse } from "../models/models_0"; import { ListPackagesForDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/ListTagsCommand.ts b/clients/client-elasticsearch-service/src/commands/ListTagsCommand.ts index d4535649b4f35..3ca0f3c3271c6 100644 --- a/clients/client-elasticsearch-service/src/commands/ListTagsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsRequest, ListTagsResponse } from "../models/models_0"; +import type { ListTagsRequest, ListTagsResponse } from "../models/models_0"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointAccessCommand.ts b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointAccessCommand.ts index 71f86a4cffac8..7f2cfe3dc0d40 100644 --- a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointAccessCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointAccessCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcEndpointAccessRequest, ListVpcEndpointAccessResponse } from "../models/models_0"; +import type { ListVpcEndpointAccessRequest, ListVpcEndpointAccessResponse } from "../models/models_0"; import { ListVpcEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsCommand.ts b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsCommand.ts index 736c1f2e726df..788cccb97eaf8 100644 --- a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcEndpointsRequest, ListVpcEndpointsResponse } from "../models/models_0"; +import type { ListVpcEndpointsRequest, ListVpcEndpointsResponse } from "../models/models_0"; import { ListVpcEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsForDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsForDomainCommand.ts index 87db510870417..d77c989dce8ee 100644 --- a/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsForDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/ListVpcEndpointsForDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcEndpointsForDomainRequest, ListVpcEndpointsForDomainResponse } from "../models/models_0"; +import type { ListVpcEndpointsForDomainRequest, ListVpcEndpointsForDomainResponse } from "../models/models_0"; import { ListVpcEndpointsForDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.ts b/clients/client-elasticsearch-service/src/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.ts index 94e602ea6f85f..9ba7a35a0df0f 100644 --- a/clients/client-elasticsearch-service/src/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/PurchaseReservedElasticsearchInstanceOfferingCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PurchaseReservedElasticsearchInstanceOfferingRequest, PurchaseReservedElasticsearchInstanceOfferingResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/RejectInboundCrossClusterSearchConnectionCommand.ts b/clients/client-elasticsearch-service/src/commands/RejectInboundCrossClusterSearchConnectionCommand.ts index 4ba528d61a03d..e652b15132c0b 100644 --- a/clients/client-elasticsearch-service/src/commands/RejectInboundCrossClusterSearchConnectionCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/RejectInboundCrossClusterSearchConnectionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RejectInboundCrossClusterSearchConnectionRequest, RejectInboundCrossClusterSearchConnectionResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/RemoveTagsCommand.ts b/clients/client-elasticsearch-service/src/commands/RemoveTagsCommand.ts index 57cec53b7c2e6..3d6718bf3ce79 100644 --- a/clients/client-elasticsearch-service/src/commands/RemoveTagsCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/RemoveTagsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsRequest } from "../models/models_0"; +import type { RemoveTagsRequest } from "../models/models_0"; import { RemoveTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/RevokeVpcEndpointAccessCommand.ts b/clients/client-elasticsearch-service/src/commands/RevokeVpcEndpointAccessCommand.ts index 3a3bad9b6f20a..f36faed14b014 100644 --- a/clients/client-elasticsearch-service/src/commands/RevokeVpcEndpointAccessCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/RevokeVpcEndpointAccessCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeVpcEndpointAccessRequest, RevokeVpcEndpointAccessResponse } from "../models/models_0"; +import type { RevokeVpcEndpointAccessRequest, RevokeVpcEndpointAccessResponse } from "../models/models_0"; import { RevokeVpcEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/StartElasticsearchServiceSoftwareUpdateCommand.ts b/clients/client-elasticsearch-service/src/commands/StartElasticsearchServiceSoftwareUpdateCommand.ts index a848d8b5aaed0..f1f879e997d02 100644 --- a/clients/client-elasticsearch-service/src/commands/StartElasticsearchServiceSoftwareUpdateCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/StartElasticsearchServiceSoftwareUpdateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartElasticsearchServiceSoftwareUpdateRequest, StartElasticsearchServiceSoftwareUpdateResponse, } from "../models/models_0"; diff --git a/clients/client-elasticsearch-service/src/commands/UpdateElasticsearchDomainConfigCommand.ts b/clients/client-elasticsearch-service/src/commands/UpdateElasticsearchDomainConfigCommand.ts index 2c63b69f4d750..fb3f6c57e6ff2 100644 --- a/clients/client-elasticsearch-service/src/commands/UpdateElasticsearchDomainConfigCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/UpdateElasticsearchDomainConfigCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateElasticsearchDomainConfigRequest, UpdateElasticsearchDomainConfigResponse } from "../models/models_0"; +import type { + UpdateElasticsearchDomainConfigRequest, + UpdateElasticsearchDomainConfigResponse, +} from "../models/models_0"; import { UpdateElasticsearchDomainConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/UpdatePackageCommand.ts b/clients/client-elasticsearch-service/src/commands/UpdatePackageCommand.ts index 5db5bed241813..22c5f066af38b 100644 --- a/clients/client-elasticsearch-service/src/commands/UpdatePackageCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/UpdatePackageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePackageRequest, UpdatePackageResponse } from "../models/models_0"; +import type { UpdatePackageRequest, UpdatePackageResponse } from "../models/models_0"; import { UpdatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/UpdateVpcEndpointCommand.ts b/clients/client-elasticsearch-service/src/commands/UpdateVpcEndpointCommand.ts index b89abf6b1b215..66021456fb02d 100644 --- a/clients/client-elasticsearch-service/src/commands/UpdateVpcEndpointCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/UpdateVpcEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/models_0"; +import type { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/models_0"; import { UpdateVpcEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/commands/UpgradeElasticsearchDomainCommand.ts b/clients/client-elasticsearch-service/src/commands/UpgradeElasticsearchDomainCommand.ts index 5271eaca28fc9..32041ea27a198 100644 --- a/clients/client-elasticsearch-service/src/commands/UpgradeElasticsearchDomainCommand.ts +++ b/clients/client-elasticsearch-service/src/commands/UpgradeElasticsearchDomainCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { +import type { ElasticsearchServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ElasticsearchServiceClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpgradeElasticsearchDomainRequest, UpgradeElasticsearchDomainResponse } from "../models/models_0"; +import type { UpgradeElasticsearchDomainRequest, UpgradeElasticsearchDomainResponse } from "../models/models_0"; import { UpgradeElasticsearchDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-elasticsearch-service/src/endpoint/EndpointParameters.ts b/clients/client-elasticsearch-service/src/endpoint/EndpointParameters.ts index 4ee969bbf9d8b..51e59188f2b72 100644 --- a/clients/client-elasticsearch-service/src/endpoint/EndpointParameters.ts +++ b/clients/client-elasticsearch-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-elasticsearch-service/src/endpoint/endpointResolver.ts b/clients/client-elasticsearch-service/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-elasticsearch-service/src/endpoint/endpointResolver.ts +++ b/clients/client-elasticsearch-service/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-elasticsearch-service/src/extensionConfiguration.ts b/clients/client-elasticsearch-service/src/extensionConfiguration.ts index 0dcce062ecb36..d7a128cbf0790 100644 --- a/clients/client-elasticsearch-service/src/extensionConfiguration.ts +++ b/clients/client-elasticsearch-service/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-elasticsearch-service/src/models/ElasticsearchServiceServiceException.ts b/clients/client-elasticsearch-service/src/models/ElasticsearchServiceServiceException.ts index 8b0fe7c6c2a69..06100a7c56409 100644 --- a/clients/client-elasticsearch-service/src/models/ElasticsearchServiceServiceException.ts +++ b/clients/client-elasticsearch-service/src/models/ElasticsearchServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-elasticsearch-service/src/models/errors.ts b/clients/client-elasticsearch-service/src/models/errors.ts index f215d8855e828..8db84104edad4 100644 --- a/clients/client-elasticsearch-service/src/models/errors.ts +++ b/clients/client-elasticsearch-service/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ElasticsearchServiceServiceException as __BaseException } from "./ElasticsearchServiceServiceException"; diff --git a/clients/client-elasticsearch-service/src/pagination/DescribeDomainAutoTunesPaginator.ts b/clients/client-elasticsearch-service/src/pagination/DescribeDomainAutoTunesPaginator.ts index e436621e42570..2a1cac42b2a9f 100644 --- a/clients/client-elasticsearch-service/src/pagination/DescribeDomainAutoTunesPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/DescribeDomainAutoTunesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDomainAutoTunesCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.ts b/clients/client-elasticsearch-service/src/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.ts index df08304776a85..cdfede2a67683 100644 --- a/clients/client-elasticsearch-service/src/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/DescribeInboundCrossClusterSearchConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInboundCrossClusterSearchConnectionsCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.ts b/clients/client-elasticsearch-service/src/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.ts index 5edfce4de42ff..d0278e390e3e1 100644 --- a/clients/client-elasticsearch-service/src/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/DescribeOutboundCrossClusterSearchConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOutboundCrossClusterSearchConnectionsCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/DescribePackagesPaginator.ts b/clients/client-elasticsearch-service/src/pagination/DescribePackagesPaginator.ts index 0f8f72bb38c15..7ec6d36ffad59 100644 --- a/clients/client-elasticsearch-service/src/pagination/DescribePackagesPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/DescribePackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePackagesCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.ts b/clients/client-elasticsearch-service/src/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.ts index 74142816dc202..69f98cdccdd11 100644 --- a/clients/client-elasticsearch-service/src/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/DescribeReservedElasticsearchInstanceOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedElasticsearchInstanceOfferingsCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/DescribeReservedElasticsearchInstancesPaginator.ts b/clients/client-elasticsearch-service/src/pagination/DescribeReservedElasticsearchInstancesPaginator.ts index 66dce21c3eabe..57dc32c1aaf44 100644 --- a/clients/client-elasticsearch-service/src/pagination/DescribeReservedElasticsearchInstancesPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/DescribeReservedElasticsearchInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedElasticsearchInstancesCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/GetPackageVersionHistoryPaginator.ts b/clients/client-elasticsearch-service/src/pagination/GetPackageVersionHistoryPaginator.ts index b8734e2327b72..e91a39b95f126 100644 --- a/clients/client-elasticsearch-service/src/pagination/GetPackageVersionHistoryPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/GetPackageVersionHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetPackageVersionHistoryCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/GetUpgradeHistoryPaginator.ts b/clients/client-elasticsearch-service/src/pagination/GetUpgradeHistoryPaginator.ts index abeb976fca6dd..90f4e8156eb14 100644 --- a/clients/client-elasticsearch-service/src/pagination/GetUpgradeHistoryPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/GetUpgradeHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetUpgradeHistoryCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/Interfaces.ts b/clients/client-elasticsearch-service/src/pagination/Interfaces.ts index ac4c86c8883ed..a1f829a6ca083 100644 --- a/clients/client-elasticsearch-service/src/pagination/Interfaces.ts +++ b/clients/client-elasticsearch-service/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ElasticsearchServiceClient } from "../ElasticsearchServiceClient"; diff --git a/clients/client-elasticsearch-service/src/pagination/ListDomainsForPackagePaginator.ts b/clients/client-elasticsearch-service/src/pagination/ListDomainsForPackagePaginator.ts index 04d45f1a801f0..b4af28d40d4de 100644 --- a/clients/client-elasticsearch-service/src/pagination/ListDomainsForPackagePaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/ListDomainsForPackagePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainsForPackageCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/ListElasticsearchInstanceTypesPaginator.ts b/clients/client-elasticsearch-service/src/pagination/ListElasticsearchInstanceTypesPaginator.ts index 54e98782336f6..7aaf58b27def2 100644 --- a/clients/client-elasticsearch-service/src/pagination/ListElasticsearchInstanceTypesPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/ListElasticsearchInstanceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListElasticsearchInstanceTypesCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/ListElasticsearchVersionsPaginator.ts b/clients/client-elasticsearch-service/src/pagination/ListElasticsearchVersionsPaginator.ts index 61bf6d7f3d7b4..2a1bcec160d32 100644 --- a/clients/client-elasticsearch-service/src/pagination/ListElasticsearchVersionsPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/ListElasticsearchVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListElasticsearchVersionsCommand, diff --git a/clients/client-elasticsearch-service/src/pagination/ListPackagesForDomainPaginator.ts b/clients/client-elasticsearch-service/src/pagination/ListPackagesForDomainPaginator.ts index cea5636000b6d..709cefc6ed9ee 100644 --- a/clients/client-elasticsearch-service/src/pagination/ListPackagesForDomainPaginator.ts +++ b/clients/client-elasticsearch-service/src/pagination/ListPackagesForDomainPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPackagesForDomainCommand, diff --git a/clients/client-elasticsearch-service/src/runtimeConfig.browser.ts b/clients/client-elasticsearch-service/src/runtimeConfig.browser.ts index 624595250ef61..61d11970729d4 100644 --- a/clients/client-elasticsearch-service/src/runtimeConfig.browser.ts +++ b/clients/client-elasticsearch-service/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticsearchServiceClientConfig } from "./ElasticsearchServiceClient"; + +import type { ElasticsearchServiceClientConfig } from "./ElasticsearchServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-elasticsearch-service/src/runtimeConfig.native.ts b/clients/client-elasticsearch-service/src/runtimeConfig.native.ts index 6facbe7f0c98b..fa8af7017ec37 100644 --- a/clients/client-elasticsearch-service/src/runtimeConfig.native.ts +++ b/clients/client-elasticsearch-service/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ElasticsearchServiceClientConfig } from "./ElasticsearchServiceClient"; +import type { ElasticsearchServiceClientConfig } from "./ElasticsearchServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-elasticsearch-service/src/runtimeConfig.shared.ts b/clients/client-elasticsearch-service/src/runtimeConfig.shared.ts index 8bce7a5d661ee..e66f6fe775ca5 100644 --- a/clients/client-elasticsearch-service/src/runtimeConfig.shared.ts +++ b/clients/client-elasticsearch-service/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultElasticsearchServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { ElasticsearchServiceClientConfig } from "./ElasticsearchServiceClient"; +import type { ElasticsearchServiceClientConfig } from "./ElasticsearchServiceClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-elasticsearch-service/src/runtimeConfig.ts b/clients/client-elasticsearch-service/src/runtimeConfig.ts index c5cf4decc3209..243590b6476e4 100644 --- a/clients/client-elasticsearch-service/src/runtimeConfig.ts +++ b/clients/client-elasticsearch-service/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ElasticsearchServiceClientConfig } from "./ElasticsearchServiceClient"; + +import type { ElasticsearchServiceClientConfig } from "./ElasticsearchServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-elasticsearch-service/src/runtimeExtensions.ts b/clients/client-elasticsearch-service/src/runtimeExtensions.ts index 75daeb988c8e0..cbb94b944f352 100644 --- a/clients/client-elasticsearch-service/src/runtimeExtensions.ts +++ b/clients/client-elasticsearch-service/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ElasticsearchServiceExtensionConfiguration } from "./extensionConfiguration"; +import type { ElasticsearchServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-elasticsearch-service/src/schemas/schemas_0.ts b/clients/client-elasticsearch-service/src/schemas/schemas_0.ts index 0f9a27e7b355b..81666e25d1339 100644 --- a/clients/client-elasticsearch-service/src/schemas/schemas_0.ts +++ b/clients/client-elasticsearch-service/src/schemas/schemas_0.ts @@ -488,7 +488,7 @@ const n0 = "com.amazonaws.elasticsearchservice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-emr-containers/package.json b/clients/client-emr-containers/package.json index a05f8e0d1423e..4c079d85eb25a 100644 --- a/clients/client-emr-containers/package.json +++ b/clients/client-emr-containers/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-emr-containers/src/EMRContainers.ts b/clients/client-emr-containers/src/EMRContainers.ts index ae758df7960e7..6078cd6488f23 100644 --- a/clients/client-emr-containers/src/EMRContainers.ts +++ b/clients/client-emr-containers/src/EMRContainers.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelJobRunCommand, @@ -105,7 +105,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { EMRContainersClient, EMRContainersClientConfig } from "./EMRContainersClient"; +import { EMRContainersClient } from "./EMRContainersClient"; const commands = { CancelJobRunCommand, diff --git a/clients/client-emr-containers/src/EMRContainersClient.ts b/clients/client-emr-containers/src/EMRContainersClient.ts index 67e81646e38ca..52c14e3a47af6 100644 --- a/clients/client-emr-containers/src/EMRContainersClient.ts +++ b/clients/client-emr-containers/src/EMRContainersClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEMRContainersHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "./commands/CancelJobRunCommand"; @@ -129,7 +138,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-emr-containers/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-emr-containers/src/auth/httpAuthExtensionConfiguration.ts index d8272f775b6f9..5594c99650acd 100644 --- a/clients/client-emr-containers/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-emr-containers/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EMRContainersHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EMRContainersHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-emr-containers/src/auth/httpAuthSchemeProvider.ts b/clients/client-emr-containers/src/auth/httpAuthSchemeProvider.ts index d88657c82ccb1..b505f475e266f 100644 --- a/clients/client-emr-containers/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-emr-containers/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EMRContainersClientConfig, EMRContainersClientResolvedConfig } from "../EMRContainersClient"; +import { type EMRContainersClientResolvedConfig, EMRContainersClientConfig } from "../EMRContainersClient"; /** * @internal diff --git a/clients/client-emr-containers/src/commands/CancelJobRunCommand.ts b/clients/client-emr-containers/src/commands/CancelJobRunCommand.ts index e1489805ea21a..b085d80344a2f 100644 --- a/clients/client-emr-containers/src/commands/CancelJobRunCommand.ts +++ b/clients/client-emr-containers/src/commands/CancelJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0"; +import type { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0"; import { CancelJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/CreateJobTemplateCommand.ts b/clients/client-emr-containers/src/commands/CreateJobTemplateCommand.ts index 5531d33053c02..ce76f7d9f0fb5 100644 --- a/clients/client-emr-containers/src/commands/CreateJobTemplateCommand.ts +++ b/clients/client-emr-containers/src/commands/CreateJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_0"; +import type { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_0"; import { CreateJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/CreateManagedEndpointCommand.ts b/clients/client-emr-containers/src/commands/CreateManagedEndpointCommand.ts index 5529744233c3a..261fe9d5a8e79 100644 --- a/clients/client-emr-containers/src/commands/CreateManagedEndpointCommand.ts +++ b/clients/client-emr-containers/src/commands/CreateManagedEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateManagedEndpointRequest, CreateManagedEndpointResponse } from "../models/models_0"; +import type { CreateManagedEndpointRequest, CreateManagedEndpointResponse } from "../models/models_0"; import { CreateManagedEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/CreateSecurityConfigurationCommand.ts b/clients/client-emr-containers/src/commands/CreateSecurityConfigurationCommand.ts index b2459629bd2e9..730989c0712f0 100644 --- a/clients/client-emr-containers/src/commands/CreateSecurityConfigurationCommand.ts +++ b/clients/client-emr-containers/src/commands/CreateSecurityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSecurityConfigurationRequest, CreateSecurityConfigurationResponse } from "../models/models_0"; +import type { CreateSecurityConfigurationRequest, CreateSecurityConfigurationResponse } from "../models/models_0"; import { CreateSecurityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/CreateVirtualClusterCommand.ts b/clients/client-emr-containers/src/commands/CreateVirtualClusterCommand.ts index c48f14fc05d17..6754a7545e9b2 100644 --- a/clients/client-emr-containers/src/commands/CreateVirtualClusterCommand.ts +++ b/clients/client-emr-containers/src/commands/CreateVirtualClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVirtualClusterRequest, CreateVirtualClusterResponse } from "../models/models_0"; +import type { CreateVirtualClusterRequest, CreateVirtualClusterResponse } from "../models/models_0"; import { CreateVirtualCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/DeleteJobTemplateCommand.ts b/clients/client-emr-containers/src/commands/DeleteJobTemplateCommand.ts index 645944befc85d..3dde5b73978f1 100644 --- a/clients/client-emr-containers/src/commands/DeleteJobTemplateCommand.ts +++ b/clients/client-emr-containers/src/commands/DeleteJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_0"; +import type { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_0"; import { DeleteJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/DeleteManagedEndpointCommand.ts b/clients/client-emr-containers/src/commands/DeleteManagedEndpointCommand.ts index 51a3c194cdd84..fe589a0d4dca8 100644 --- a/clients/client-emr-containers/src/commands/DeleteManagedEndpointCommand.ts +++ b/clients/client-emr-containers/src/commands/DeleteManagedEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteManagedEndpointRequest, DeleteManagedEndpointResponse } from "../models/models_0"; +import type { DeleteManagedEndpointRequest, DeleteManagedEndpointResponse } from "../models/models_0"; import { DeleteManagedEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/DeleteVirtualClusterCommand.ts b/clients/client-emr-containers/src/commands/DeleteVirtualClusterCommand.ts index beb160cf83a3b..d2ea833e1022b 100644 --- a/clients/client-emr-containers/src/commands/DeleteVirtualClusterCommand.ts +++ b/clients/client-emr-containers/src/commands/DeleteVirtualClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVirtualClusterRequest, DeleteVirtualClusterResponse } from "../models/models_0"; +import type { DeleteVirtualClusterRequest, DeleteVirtualClusterResponse } from "../models/models_0"; import { DeleteVirtualCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/DescribeJobRunCommand.ts b/clients/client-emr-containers/src/commands/DescribeJobRunCommand.ts index 55b5052e13a7b..614d4882bc734 100644 --- a/clients/client-emr-containers/src/commands/DescribeJobRunCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobRunRequest, DescribeJobRunResponse } from "../models/models_0"; +import type { DescribeJobRunRequest, DescribeJobRunResponse } from "../models/models_0"; import { DescribeJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/DescribeJobTemplateCommand.ts b/clients/client-emr-containers/src/commands/DescribeJobTemplateCommand.ts index 60e93b61e96c2..9cd7522696277 100644 --- a/clients/client-emr-containers/src/commands/DescribeJobTemplateCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobTemplateRequest, DescribeJobTemplateResponse } from "../models/models_0"; +import type { DescribeJobTemplateRequest, DescribeJobTemplateResponse } from "../models/models_0"; import { DescribeJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/DescribeManagedEndpointCommand.ts b/clients/client-emr-containers/src/commands/DescribeManagedEndpointCommand.ts index 65c544c2ee40c..c3472a0967c5d 100644 --- a/clients/client-emr-containers/src/commands/DescribeManagedEndpointCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeManagedEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeManagedEndpointRequest, DescribeManagedEndpointResponse } from "../models/models_0"; +import type { DescribeManagedEndpointRequest, DescribeManagedEndpointResponse } from "../models/models_0"; import { DescribeManagedEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/DescribeSecurityConfigurationCommand.ts b/clients/client-emr-containers/src/commands/DescribeSecurityConfigurationCommand.ts index 3cea18ea2e5ff..231a115832a7e 100644 --- a/clients/client-emr-containers/src/commands/DescribeSecurityConfigurationCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeSecurityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSecurityConfigurationRequest, DescribeSecurityConfigurationResponse } from "../models/models_0"; +import type { DescribeSecurityConfigurationRequest, DescribeSecurityConfigurationResponse } from "../models/models_0"; import { DescribeSecurityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/DescribeVirtualClusterCommand.ts b/clients/client-emr-containers/src/commands/DescribeVirtualClusterCommand.ts index c854e7c337b5c..f01e46cabe3ca 100644 --- a/clients/client-emr-containers/src/commands/DescribeVirtualClusterCommand.ts +++ b/clients/client-emr-containers/src/commands/DescribeVirtualClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVirtualClusterRequest, DescribeVirtualClusterResponse } from "../models/models_0"; +import type { DescribeVirtualClusterRequest, DescribeVirtualClusterResponse } from "../models/models_0"; import { DescribeVirtualCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/GetManagedEndpointSessionCredentialsCommand.ts b/clients/client-emr-containers/src/commands/GetManagedEndpointSessionCredentialsCommand.ts index ef9a18c5979a2..d44eb8e4ae0fe 100644 --- a/clients/client-emr-containers/src/commands/GetManagedEndpointSessionCredentialsCommand.ts +++ b/clients/client-emr-containers/src/commands/GetManagedEndpointSessionCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetManagedEndpointSessionCredentialsRequest, GetManagedEndpointSessionCredentialsResponse, } from "../models/models_0"; diff --git a/clients/client-emr-containers/src/commands/ListJobRunsCommand.ts b/clients/client-emr-containers/src/commands/ListJobRunsCommand.ts index 5a18049e82bad..052d2fcfdd233 100644 --- a/clients/client-emr-containers/src/commands/ListJobRunsCommand.ts +++ b/clients/client-emr-containers/src/commands/ListJobRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0"; +import type { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0"; import { ListJobRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/ListJobTemplatesCommand.ts b/clients/client-emr-containers/src/commands/ListJobTemplatesCommand.ts index b96a9e626d09e..b0327b629410d 100644 --- a/clients/client-emr-containers/src/commands/ListJobTemplatesCommand.ts +++ b/clients/client-emr-containers/src/commands/ListJobTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_0"; +import type { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_0"; import { ListJobTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/ListManagedEndpointsCommand.ts b/clients/client-emr-containers/src/commands/ListManagedEndpointsCommand.ts index 3fed3fab8f8fc..681936c2da31c 100644 --- a/clients/client-emr-containers/src/commands/ListManagedEndpointsCommand.ts +++ b/clients/client-emr-containers/src/commands/ListManagedEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListManagedEndpointsRequest, ListManagedEndpointsResponse } from "../models/models_0"; +import type { ListManagedEndpointsRequest, ListManagedEndpointsResponse } from "../models/models_0"; import { ListManagedEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/ListSecurityConfigurationsCommand.ts b/clients/client-emr-containers/src/commands/ListSecurityConfigurationsCommand.ts index 006e17db8f5c4..4e924880e84a3 100644 --- a/clients/client-emr-containers/src/commands/ListSecurityConfigurationsCommand.ts +++ b/clients/client-emr-containers/src/commands/ListSecurityConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityConfigurationsRequest, ListSecurityConfigurationsResponse } from "../models/models_0"; +import type { ListSecurityConfigurationsRequest, ListSecurityConfigurationsResponse } from "../models/models_0"; import { ListSecurityConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/ListTagsForResourceCommand.ts b/clients/client-emr-containers/src/commands/ListTagsForResourceCommand.ts index 542de9ad1f6eb..717636ad9932b 100644 --- a/clients/client-emr-containers/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-emr-containers/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/ListVirtualClustersCommand.ts b/clients/client-emr-containers/src/commands/ListVirtualClustersCommand.ts index df20687af7cf6..5f1d396c622d9 100644 --- a/clients/client-emr-containers/src/commands/ListVirtualClustersCommand.ts +++ b/clients/client-emr-containers/src/commands/ListVirtualClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVirtualClustersRequest, ListVirtualClustersResponse } from "../models/models_0"; +import type { ListVirtualClustersRequest, ListVirtualClustersResponse } from "../models/models_0"; import { ListVirtualClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/StartJobRunCommand.ts b/clients/client-emr-containers/src/commands/StartJobRunCommand.ts index 2447438f09e2d..1ee67233e9e4f 100644 --- a/clients/client-emr-containers/src/commands/StartJobRunCommand.ts +++ b/clients/client-emr-containers/src/commands/StartJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartJobRunRequest, StartJobRunResponse } from "../models/models_0"; +import type { StartJobRunRequest, StartJobRunResponse } from "../models/models_0"; import { StartJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/TagResourceCommand.ts b/clients/client-emr-containers/src/commands/TagResourceCommand.ts index 1be82753baf47..a407bb98fb5ae 100644 --- a/clients/client-emr-containers/src/commands/TagResourceCommand.ts +++ b/clients/client-emr-containers/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/commands/UntagResourceCommand.ts b/clients/client-emr-containers/src/commands/UntagResourceCommand.ts index 1f6568003eff4..b935efc997a27 100644 --- a/clients/client-emr-containers/src/commands/UntagResourceCommand.ts +++ b/clients/client-emr-containers/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; +import type { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-containers/src/endpoint/EndpointParameters.ts b/clients/client-emr-containers/src/endpoint/EndpointParameters.ts index 82820a42d0d0e..d6b38fac3ace2 100644 --- a/clients/client-emr-containers/src/endpoint/EndpointParameters.ts +++ b/clients/client-emr-containers/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-emr-containers/src/endpoint/endpointResolver.ts b/clients/client-emr-containers/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-emr-containers/src/endpoint/endpointResolver.ts +++ b/clients/client-emr-containers/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-emr-containers/src/extensionConfiguration.ts b/clients/client-emr-containers/src/extensionConfiguration.ts index d7c4b5990fc1c..d286513693d16 100644 --- a/clients/client-emr-containers/src/extensionConfiguration.ts +++ b/clients/client-emr-containers/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-emr-containers/src/models/EMRContainersServiceException.ts b/clients/client-emr-containers/src/models/EMRContainersServiceException.ts index e404d9f572788..cff09e253c352 100644 --- a/clients/client-emr-containers/src/models/EMRContainersServiceException.ts +++ b/clients/client-emr-containers/src/models/EMRContainersServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-emr-containers/src/models/errors.ts b/clients/client-emr-containers/src/models/errors.ts index cf9945d95e902..64307e588417e 100644 --- a/clients/client-emr-containers/src/models/errors.ts +++ b/clients/client-emr-containers/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EMRContainersServiceException as __BaseException } from "./EMRContainersServiceException"; diff --git a/clients/client-emr-containers/src/pagination/Interfaces.ts b/clients/client-emr-containers/src/pagination/Interfaces.ts index b96d8f212c260..a6d0aea2840a5 100644 --- a/clients/client-emr-containers/src/pagination/Interfaces.ts +++ b/clients/client-emr-containers/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EMRContainersClient } from "../EMRContainersClient"; diff --git a/clients/client-emr-containers/src/pagination/ListJobRunsPaginator.ts b/clients/client-emr-containers/src/pagination/ListJobRunsPaginator.ts index 098a634f80290..3f8cd09835847 100644 --- a/clients/client-emr-containers/src/pagination/ListJobRunsPaginator.ts +++ b/clients/client-emr-containers/src/pagination/ListJobRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobRunsCommand, ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand"; import { EMRContainersClient } from "../EMRContainersClient"; diff --git a/clients/client-emr-containers/src/pagination/ListJobTemplatesPaginator.ts b/clients/client-emr-containers/src/pagination/ListJobTemplatesPaginator.ts index 9f72ef92bcb01..f2aaa43e5e6c2 100644 --- a/clients/client-emr-containers/src/pagination/ListJobTemplatesPaginator.ts +++ b/clients/client-emr-containers/src/pagination/ListJobTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobTemplatesCommand, diff --git a/clients/client-emr-containers/src/pagination/ListManagedEndpointsPaginator.ts b/clients/client-emr-containers/src/pagination/ListManagedEndpointsPaginator.ts index 02eaafc5710a8..19e9f31af5d45 100644 --- a/clients/client-emr-containers/src/pagination/ListManagedEndpointsPaginator.ts +++ b/clients/client-emr-containers/src/pagination/ListManagedEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedEndpointsCommand, diff --git a/clients/client-emr-containers/src/pagination/ListSecurityConfigurationsPaginator.ts b/clients/client-emr-containers/src/pagination/ListSecurityConfigurationsPaginator.ts index 9c39746200ef7..3a657ef2fd3c2 100644 --- a/clients/client-emr-containers/src/pagination/ListSecurityConfigurationsPaginator.ts +++ b/clients/client-emr-containers/src/pagination/ListSecurityConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityConfigurationsCommand, diff --git a/clients/client-emr-containers/src/pagination/ListVirtualClustersPaginator.ts b/clients/client-emr-containers/src/pagination/ListVirtualClustersPaginator.ts index 0f86e1e5d0b78..52d6bd5a2af7c 100644 --- a/clients/client-emr-containers/src/pagination/ListVirtualClustersPaginator.ts +++ b/clients/client-emr-containers/src/pagination/ListVirtualClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVirtualClustersCommand, diff --git a/clients/client-emr-containers/src/runtimeConfig.browser.ts b/clients/client-emr-containers/src/runtimeConfig.browser.ts index 6b80bfce62efa..8f2144ed5de8c 100644 --- a/clients/client-emr-containers/src/runtimeConfig.browser.ts +++ b/clients/client-emr-containers/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EMRContainersClientConfig } from "./EMRContainersClient"; + +import type { EMRContainersClientConfig } from "./EMRContainersClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-emr-containers/src/runtimeConfig.native.ts b/clients/client-emr-containers/src/runtimeConfig.native.ts index 2e366f99e1255..7bff7798f1c75 100644 --- a/clients/client-emr-containers/src/runtimeConfig.native.ts +++ b/clients/client-emr-containers/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EMRContainersClientConfig } from "./EMRContainersClient"; +import type { EMRContainersClientConfig } from "./EMRContainersClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-emr-containers/src/runtimeConfig.shared.ts b/clients/client-emr-containers/src/runtimeConfig.shared.ts index fd0739b03e740..584b968a72067 100644 --- a/clients/client-emr-containers/src/runtimeConfig.shared.ts +++ b/clients/client-emr-containers/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEMRContainersHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EMRContainersClientConfig } from "./EMRContainersClient"; +import type { EMRContainersClientConfig } from "./EMRContainersClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-emr-containers/src/runtimeConfig.ts b/clients/client-emr-containers/src/runtimeConfig.ts index a9710e77d87c3..4e37b2a7fc470 100644 --- a/clients/client-emr-containers/src/runtimeConfig.ts +++ b/clients/client-emr-containers/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EMRContainersClientConfig } from "./EMRContainersClient"; + +import type { EMRContainersClientConfig } from "./EMRContainersClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-emr-containers/src/runtimeExtensions.ts b/clients/client-emr-containers/src/runtimeExtensions.ts index d57a1baf19b4a..777161139a61b 100644 --- a/clients/client-emr-containers/src/runtimeExtensions.ts +++ b/clients/client-emr-containers/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EMRContainersExtensionConfiguration } from "./extensionConfiguration"; +import type { EMRContainersExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-emr-containers/src/schemas/schemas_0.ts b/clients/client-emr-containers/src/schemas/schemas_0.ts index 0332faa55d2f5..3f5678445f903 100644 --- a/clients/client-emr-containers/src/schemas/schemas_0.ts +++ b/clients/client-emr-containers/src/schemas/schemas_0.ts @@ -239,7 +239,7 @@ const n0 = "com.amazonaws.emrcontainers"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-emr-serverless/package.json b/clients/client-emr-serverless/package.json index 2dea19eac40b0..10341adfa78fa 100644 --- a/clients/client-emr-serverless/package.json +++ b/clients/client-emr-serverless/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-emr-serverless/src/EMRServerless.ts b/clients/client-emr-serverless/src/EMRServerless.ts index d1bc19ebc77fa..7feb5168756b3 100644 --- a/clients/client-emr-serverless/src/EMRServerless.ts +++ b/clients/client-emr-serverless/src/EMRServerless.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelJobRunCommand, @@ -66,7 +66,7 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput, } from "./commands/UpdateApplicationCommand"; -import { EMRServerlessClient, EMRServerlessClientConfig } from "./EMRServerlessClient"; +import { EMRServerlessClient } from "./EMRServerlessClient"; const commands = { CancelJobRunCommand, diff --git a/clients/client-emr-serverless/src/EMRServerlessClient.ts b/clients/client-emr-serverless/src/EMRServerlessClient.ts index 763f8698fa694..2b0b47a225816 100644 --- a/clients/client-emr-serverless/src/EMRServerlessClient.ts +++ b/clients/client-emr-serverless/src/EMRServerlessClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEMRServerlessHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "./commands/CancelJobRunCommand"; @@ -86,7 +95,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-emr-serverless/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-emr-serverless/src/auth/httpAuthExtensionConfiguration.ts index d7264861a9119..9a21e54e0577f 100644 --- a/clients/client-emr-serverless/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-emr-serverless/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EMRServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EMRServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-emr-serverless/src/auth/httpAuthSchemeProvider.ts b/clients/client-emr-serverless/src/auth/httpAuthSchemeProvider.ts index 1ec1f56fa3f5c..2ae612b04d040 100644 --- a/clients/client-emr-serverless/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-emr-serverless/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EMRServerlessClientConfig, EMRServerlessClientResolvedConfig } from "../EMRServerlessClient"; +import { type EMRServerlessClientResolvedConfig, EMRServerlessClientConfig } from "../EMRServerlessClient"; /** * @internal diff --git a/clients/client-emr-serverless/src/commands/CancelJobRunCommand.ts b/clients/client-emr-serverless/src/commands/CancelJobRunCommand.ts index f4b07b41459c7..1e0f89026b079 100644 --- a/clients/client-emr-serverless/src/commands/CancelJobRunCommand.ts +++ b/clients/client-emr-serverless/src/commands/CancelJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0"; +import type { CancelJobRunRequest, CancelJobRunResponse } from "../models/models_0"; import { CancelJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/CreateApplicationCommand.ts b/clients/client-emr-serverless/src/commands/CreateApplicationCommand.ts index 51e189b835fa4..0d70dd2d1a0e6 100644 --- a/clients/client-emr-serverless/src/commands/CreateApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/DeleteApplicationCommand.ts b/clients/client-emr-serverless/src/commands/DeleteApplicationCommand.ts index a3c5179bd3efa..e4ecab9f5e31d 100644 --- a/clients/client-emr-serverless/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/GetApplicationCommand.ts b/clients/client-emr-serverless/src/commands/GetApplicationCommand.ts index 1ea3ee0101de8..20497f8d6e1af 100644 --- a/clients/client-emr-serverless/src/commands/GetApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/GetApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; +import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/GetDashboardForJobRunCommand.ts b/clients/client-emr-serverless/src/commands/GetDashboardForJobRunCommand.ts index 860767025ce4e..ee7309f698eac 100644 --- a/clients/client-emr-serverless/src/commands/GetDashboardForJobRunCommand.ts +++ b/clients/client-emr-serverless/src/commands/GetDashboardForJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDashboardForJobRunRequest, GetDashboardForJobRunResponse } from "../models/models_0"; +import type { GetDashboardForJobRunRequest, GetDashboardForJobRunResponse } from "../models/models_0"; import { GetDashboardForJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/GetJobRunCommand.ts b/clients/client-emr-serverless/src/commands/GetJobRunCommand.ts index 14e39e1067eb9..833b20cc0aae8 100644 --- a/clients/client-emr-serverless/src/commands/GetJobRunCommand.ts +++ b/clients/client-emr-serverless/src/commands/GetJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobRunRequest, GetJobRunResponse } from "../models/models_0"; +import type { GetJobRunRequest, GetJobRunResponse } from "../models/models_0"; import { GetJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/ListApplicationsCommand.ts b/clients/client-emr-serverless/src/commands/ListApplicationsCommand.ts index 4500229fe07d6..9ae67c18c6fd3 100644 --- a/clients/client-emr-serverless/src/commands/ListApplicationsCommand.ts +++ b/clients/client-emr-serverless/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/ListJobRunAttemptsCommand.ts b/clients/client-emr-serverless/src/commands/ListJobRunAttemptsCommand.ts index 021bc2a32c841..58c3c03ec9e86 100644 --- a/clients/client-emr-serverless/src/commands/ListJobRunAttemptsCommand.ts +++ b/clients/client-emr-serverless/src/commands/ListJobRunAttemptsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobRunAttemptsRequest, ListJobRunAttemptsResponse } from "../models/models_0"; +import type { ListJobRunAttemptsRequest, ListJobRunAttemptsResponse } from "../models/models_0"; import { ListJobRunAttempts } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/ListJobRunsCommand.ts b/clients/client-emr-serverless/src/commands/ListJobRunsCommand.ts index e9077415a8a0e..bba3f23732120 100644 --- a/clients/client-emr-serverless/src/commands/ListJobRunsCommand.ts +++ b/clients/client-emr-serverless/src/commands/ListJobRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0"; +import type { ListJobRunsRequest, ListJobRunsResponse } from "../models/models_0"; import { ListJobRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/ListTagsForResourceCommand.ts b/clients/client-emr-serverless/src/commands/ListTagsForResourceCommand.ts index f2670354ae730..884943b5a2126 100644 --- a/clients/client-emr-serverless/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-emr-serverless/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/StartApplicationCommand.ts b/clients/client-emr-serverless/src/commands/StartApplicationCommand.ts index 78593fe204ef3..f232e741bc35c 100644 --- a/clients/client-emr-serverless/src/commands/StartApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/StartApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartApplicationRequest, StartApplicationResponse } from "../models/models_0"; +import type { StartApplicationRequest, StartApplicationResponse } from "../models/models_0"; import { StartApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/StartJobRunCommand.ts b/clients/client-emr-serverless/src/commands/StartJobRunCommand.ts index 263f9ccdfd941..d3b59fededf51 100644 --- a/clients/client-emr-serverless/src/commands/StartJobRunCommand.ts +++ b/clients/client-emr-serverless/src/commands/StartJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartJobRunRequest, StartJobRunResponse } from "../models/models_0"; +import type { StartJobRunRequest, StartJobRunResponse } from "../models/models_0"; import { StartJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/StopApplicationCommand.ts b/clients/client-emr-serverless/src/commands/StopApplicationCommand.ts index e9b4c4e1c8d87..06e2c5265ec86 100644 --- a/clients/client-emr-serverless/src/commands/StopApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/StopApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopApplicationRequest, StopApplicationResponse } from "../models/models_0"; +import type { StopApplicationRequest, StopApplicationResponse } from "../models/models_0"; import { StopApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/TagResourceCommand.ts b/clients/client-emr-serverless/src/commands/TagResourceCommand.ts index e5666ad5ba612..f0a6421c45cd2 100644 --- a/clients/client-emr-serverless/src/commands/TagResourceCommand.ts +++ b/clients/client-emr-serverless/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/UntagResourceCommand.ts b/clients/client-emr-serverless/src/commands/UntagResourceCommand.ts index 5550cb83039cb..23d892e2a213e 100644 --- a/clients/client-emr-serverless/src/commands/UntagResourceCommand.ts +++ b/clients/client-emr-serverless/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/commands/UpdateApplicationCommand.ts b/clients/client-emr-serverless/src/commands/UpdateApplicationCommand.ts index 9155cccba5f2b..452633f1a7fd0 100644 --- a/clients/client-emr-serverless/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-emr-serverless/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; +import type { EMRServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRServerlessClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr-serverless/src/endpoint/EndpointParameters.ts b/clients/client-emr-serverless/src/endpoint/EndpointParameters.ts index e7709a89f9f39..df9c2963bf5ca 100644 --- a/clients/client-emr-serverless/src/endpoint/EndpointParameters.ts +++ b/clients/client-emr-serverless/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-emr-serverless/src/endpoint/endpointResolver.ts b/clients/client-emr-serverless/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-emr-serverless/src/endpoint/endpointResolver.ts +++ b/clients/client-emr-serverless/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-emr-serverless/src/extensionConfiguration.ts b/clients/client-emr-serverless/src/extensionConfiguration.ts index 30c2aa0443312..d2e2e9e9107cd 100644 --- a/clients/client-emr-serverless/src/extensionConfiguration.ts +++ b/clients/client-emr-serverless/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-emr-serverless/src/models/EMRServerlessServiceException.ts b/clients/client-emr-serverless/src/models/EMRServerlessServiceException.ts index e9ae772419656..57220245b1898 100644 --- a/clients/client-emr-serverless/src/models/EMRServerlessServiceException.ts +++ b/clients/client-emr-serverless/src/models/EMRServerlessServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-emr-serverless/src/models/errors.ts b/clients/client-emr-serverless/src/models/errors.ts index 80eff8ec83f37..0116a2c37ee26 100644 --- a/clients/client-emr-serverless/src/models/errors.ts +++ b/clients/client-emr-serverless/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EMRServerlessServiceException as __BaseException } from "./EMRServerlessServiceException"; diff --git a/clients/client-emr-serverless/src/pagination/Interfaces.ts b/clients/client-emr-serverless/src/pagination/Interfaces.ts index e45c2772a8c15..ba52acce923f1 100644 --- a/clients/client-emr-serverless/src/pagination/Interfaces.ts +++ b/clients/client-emr-serverless/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EMRServerlessClient } from "../EMRServerlessClient"; diff --git a/clients/client-emr-serverless/src/pagination/ListApplicationsPaginator.ts b/clients/client-emr-serverless/src/pagination/ListApplicationsPaginator.ts index ae56bb5750dec..a26ce5c0bda04 100644 --- a/clients/client-emr-serverless/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-emr-serverless/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-emr-serverless/src/pagination/ListJobRunAttemptsPaginator.ts b/clients/client-emr-serverless/src/pagination/ListJobRunAttemptsPaginator.ts index 804e05790a9aa..18697f014758a 100644 --- a/clients/client-emr-serverless/src/pagination/ListJobRunAttemptsPaginator.ts +++ b/clients/client-emr-serverless/src/pagination/ListJobRunAttemptsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobRunAttemptsCommand, diff --git a/clients/client-emr-serverless/src/pagination/ListJobRunsPaginator.ts b/clients/client-emr-serverless/src/pagination/ListJobRunsPaginator.ts index ca93eee0b6aa9..6a4434be3dcc8 100644 --- a/clients/client-emr-serverless/src/pagination/ListJobRunsPaginator.ts +++ b/clients/client-emr-serverless/src/pagination/ListJobRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobRunsCommand, ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand"; import { EMRServerlessClient } from "../EMRServerlessClient"; diff --git a/clients/client-emr-serverless/src/runtimeConfig.browser.ts b/clients/client-emr-serverless/src/runtimeConfig.browser.ts index 5e9768792a75f..8cb2a6a7a0ddb 100644 --- a/clients/client-emr-serverless/src/runtimeConfig.browser.ts +++ b/clients/client-emr-serverless/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EMRServerlessClientConfig } from "./EMRServerlessClient"; + +import type { EMRServerlessClientConfig } from "./EMRServerlessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-emr-serverless/src/runtimeConfig.native.ts b/clients/client-emr-serverless/src/runtimeConfig.native.ts index 1ee03adec834b..14b5986ea0dc1 100644 --- a/clients/client-emr-serverless/src/runtimeConfig.native.ts +++ b/clients/client-emr-serverless/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EMRServerlessClientConfig } from "./EMRServerlessClient"; +import type { EMRServerlessClientConfig } from "./EMRServerlessClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-emr-serverless/src/runtimeConfig.shared.ts b/clients/client-emr-serverless/src/runtimeConfig.shared.ts index b5fe78594fbdf..3d87236921c3e 100644 --- a/clients/client-emr-serverless/src/runtimeConfig.shared.ts +++ b/clients/client-emr-serverless/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEMRServerlessHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EMRServerlessClientConfig } from "./EMRServerlessClient"; +import type { EMRServerlessClientConfig } from "./EMRServerlessClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-emr-serverless/src/runtimeConfig.ts b/clients/client-emr-serverless/src/runtimeConfig.ts index 1dc6a417a366d..3ae297a6e30b9 100644 --- a/clients/client-emr-serverless/src/runtimeConfig.ts +++ b/clients/client-emr-serverless/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EMRServerlessClientConfig } from "./EMRServerlessClient"; + +import type { EMRServerlessClientConfig } from "./EMRServerlessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-emr-serverless/src/runtimeExtensions.ts b/clients/client-emr-serverless/src/runtimeExtensions.ts index 1299c89814747..4571bb5dd31a6 100644 --- a/clients/client-emr-serverless/src/runtimeExtensions.ts +++ b/clients/client-emr-serverless/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EMRServerlessExtensionConfiguration } from "./extensionConfiguration"; +import type { EMRServerlessExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-emr-serverless/src/schemas/schemas_0.ts b/clients/client-emr-serverless/src/schemas/schemas_0.ts index 497389cd3543c..878e81cb324c4 100644 --- a/clients/client-emr-serverless/src/schemas/schemas_0.ts +++ b/clients/client-emr-serverless/src/schemas/schemas_0.ts @@ -220,7 +220,7 @@ const n0 = "com.amazonaws.emrserverless"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-emr/package.json b/clients/client-emr/package.json index 1bd19b8e4bfa8..020f276e88f5c 100644 --- a/clients/client-emr/package.json +++ b/clients/client-emr/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-emr/src/EMR.ts b/clients/client-emr/src/EMR.ts index d3d556bd81cfc..059a8efe93f81 100644 --- a/clients/client-emr/src/EMR.ts +++ b/clients/client-emr/src/EMR.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddInstanceFleetCommand, @@ -278,7 +278,7 @@ import { UpdateStudioSessionMappingCommandInput, UpdateStudioSessionMappingCommandOutput, } from "./commands/UpdateStudioSessionMappingCommand"; -import { EMRClient, EMRClientConfig } from "./EMRClient"; +import { EMRClient } from "./EMRClient"; const commands = { AddInstanceFleetCommand, diff --git a/clients/client-emr/src/EMRClient.ts b/clients/client-emr/src/EMRClient.ts index d13734b6c8a36..d74525d6c296c 100644 --- a/clients/client-emr/src/EMRClient.ts +++ b/clients/client-emr/src/EMRClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEMRHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddInstanceFleetCommandInput, AddInstanceFleetCommandOutput } from "./commands/AddInstanceFleetCommand"; @@ -235,7 +244,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-emr/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-emr/src/auth/httpAuthExtensionConfiguration.ts index b74d6db85b5d1..99126ddd455d4 100644 --- a/clients/client-emr/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-emr/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EMRHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EMRHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-emr/src/auth/httpAuthSchemeProvider.ts b/clients/client-emr/src/auth/httpAuthSchemeProvider.ts index f767b951cfffc..c4ad19d87c836 100644 --- a/clients/client-emr/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-emr/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EMRClientConfig, EMRClientResolvedConfig } from "../EMRClient"; +import { type EMRClientResolvedConfig, EMRClientConfig } from "../EMRClient"; /** * @internal diff --git a/clients/client-emr/src/commands/AddInstanceFleetCommand.ts b/clients/client-emr/src/commands/AddInstanceFleetCommand.ts index fdd8a8a9d25ad..68216566c6f8d 100644 --- a/clients/client-emr/src/commands/AddInstanceFleetCommand.ts +++ b/clients/client-emr/src/commands/AddInstanceFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddInstanceFleetInput, AddInstanceFleetOutput } from "../models/models_0"; +import type { AddInstanceFleetInput, AddInstanceFleetOutput } from "../models/models_0"; import { AddInstanceFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/AddInstanceGroupsCommand.ts b/clients/client-emr/src/commands/AddInstanceGroupsCommand.ts index 28b3cc420a0fb..b4a5ce256571b 100644 --- a/clients/client-emr/src/commands/AddInstanceGroupsCommand.ts +++ b/clients/client-emr/src/commands/AddInstanceGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddInstanceGroupsInput, AddInstanceGroupsOutput } from "../models/models_0"; +import type { AddInstanceGroupsInput, AddInstanceGroupsOutput } from "../models/models_0"; import { AddInstanceGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/AddJobFlowStepsCommand.ts b/clients/client-emr/src/commands/AddJobFlowStepsCommand.ts index dab28cbe5bee1..580f58db2e6b4 100644 --- a/clients/client-emr/src/commands/AddJobFlowStepsCommand.ts +++ b/clients/client-emr/src/commands/AddJobFlowStepsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddJobFlowStepsInput, AddJobFlowStepsOutput } from "../models/models_0"; +import type { AddJobFlowStepsInput, AddJobFlowStepsOutput } from "../models/models_0"; import { AddJobFlowSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/AddTagsCommand.ts b/clients/client-emr/src/commands/AddTagsCommand.ts index 484343676a3a2..3130d172f942a 100644 --- a/clients/client-emr/src/commands/AddTagsCommand.ts +++ b/clients/client-emr/src/commands/AddTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsInput, AddTagsOutput } from "../models/models_0"; +import type { AddTagsInput, AddTagsOutput } from "../models/models_0"; import { AddTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/CancelStepsCommand.ts b/clients/client-emr/src/commands/CancelStepsCommand.ts index 61985c704e542..23ea51b9e20ec 100644 --- a/clients/client-emr/src/commands/CancelStepsCommand.ts +++ b/clients/client-emr/src/commands/CancelStepsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelStepsInput, CancelStepsOutput } from "../models/models_0"; +import type { CancelStepsInput, CancelStepsOutput } from "../models/models_0"; import { CancelSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/CreatePersistentAppUICommand.ts b/clients/client-emr/src/commands/CreatePersistentAppUICommand.ts index 395da6b240932..ceefc51431c60 100644 --- a/clients/client-emr/src/commands/CreatePersistentAppUICommand.ts +++ b/clients/client-emr/src/commands/CreatePersistentAppUICommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePersistentAppUIInput, CreatePersistentAppUIOutput } from "../models/models_0"; +import type { CreatePersistentAppUIInput, CreatePersistentAppUIOutput } from "../models/models_0"; import { CreatePersistentAppUI } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/CreateSecurityConfigurationCommand.ts b/clients/client-emr/src/commands/CreateSecurityConfigurationCommand.ts index dd7160e853de1..01198e31f90ce 100644 --- a/clients/client-emr/src/commands/CreateSecurityConfigurationCommand.ts +++ b/clients/client-emr/src/commands/CreateSecurityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSecurityConfigurationInput, CreateSecurityConfigurationOutput } from "../models/models_0"; +import type { CreateSecurityConfigurationInput, CreateSecurityConfigurationOutput } from "../models/models_0"; import { CreateSecurityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/CreateStudioCommand.ts b/clients/client-emr/src/commands/CreateStudioCommand.ts index d2574a91ebe07..ef09caf4fda05 100644 --- a/clients/client-emr/src/commands/CreateStudioCommand.ts +++ b/clients/client-emr/src/commands/CreateStudioCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStudioInput, CreateStudioOutput } from "../models/models_0"; +import type { CreateStudioInput, CreateStudioOutput } from "../models/models_0"; import { CreateStudio } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/CreateStudioSessionMappingCommand.ts b/clients/client-emr/src/commands/CreateStudioSessionMappingCommand.ts index 75cf37bf8887e..8458de591a4d5 100644 --- a/clients/client-emr/src/commands/CreateStudioSessionMappingCommand.ts +++ b/clients/client-emr/src/commands/CreateStudioSessionMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStudioSessionMappingInput } from "../models/models_0"; +import type { CreateStudioSessionMappingInput } from "../models/models_0"; import { CreateStudioSessionMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DeleteSecurityConfigurationCommand.ts b/clients/client-emr/src/commands/DeleteSecurityConfigurationCommand.ts index eabe0a2d373a4..24036cfdae95c 100644 --- a/clients/client-emr/src/commands/DeleteSecurityConfigurationCommand.ts +++ b/clients/client-emr/src/commands/DeleteSecurityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSecurityConfigurationInput, DeleteSecurityConfigurationOutput } from "../models/models_0"; +import type { DeleteSecurityConfigurationInput, DeleteSecurityConfigurationOutput } from "../models/models_0"; import { DeleteSecurityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DeleteStudioCommand.ts b/clients/client-emr/src/commands/DeleteStudioCommand.ts index 4fed8819b10c7..86585bbae0970 100644 --- a/clients/client-emr/src/commands/DeleteStudioCommand.ts +++ b/clients/client-emr/src/commands/DeleteStudioCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStudioInput } from "../models/models_0"; +import type { DeleteStudioInput } from "../models/models_0"; import { DeleteStudio } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DeleteStudioSessionMappingCommand.ts b/clients/client-emr/src/commands/DeleteStudioSessionMappingCommand.ts index 6f033c462bf9b..fa446f4341777 100644 --- a/clients/client-emr/src/commands/DeleteStudioSessionMappingCommand.ts +++ b/clients/client-emr/src/commands/DeleteStudioSessionMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStudioSessionMappingInput } from "../models/models_0"; +import type { DeleteStudioSessionMappingInput } from "../models/models_0"; import { DeleteStudioSessionMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DescribeClusterCommand.ts b/clients/client-emr/src/commands/DescribeClusterCommand.ts index 2b57b51ac2dac..d41ae0157eb7a 100644 --- a/clients/client-emr/src/commands/DescribeClusterCommand.ts +++ b/clients/client-emr/src/commands/DescribeClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterInput, DescribeClusterOutput } from "../models/models_0"; +import type { DescribeClusterInput, DescribeClusterOutput } from "../models/models_0"; import { DescribeCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DescribeJobFlowsCommand.ts b/clients/client-emr/src/commands/DescribeJobFlowsCommand.ts index b797a5139101e..4dd2eace21b48 100644 --- a/clients/client-emr/src/commands/DescribeJobFlowsCommand.ts +++ b/clients/client-emr/src/commands/DescribeJobFlowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobFlowsInput, DescribeJobFlowsOutput } from "../models/models_0"; +import type { DescribeJobFlowsInput, DescribeJobFlowsOutput } from "../models/models_0"; import { DescribeJobFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DescribeNotebookExecutionCommand.ts b/clients/client-emr/src/commands/DescribeNotebookExecutionCommand.ts index 17ae22fc7880d..e9de0c27e8b26 100644 --- a/clients/client-emr/src/commands/DescribeNotebookExecutionCommand.ts +++ b/clients/client-emr/src/commands/DescribeNotebookExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNotebookExecutionInput, DescribeNotebookExecutionOutput } from "../models/models_0"; +import type { DescribeNotebookExecutionInput, DescribeNotebookExecutionOutput } from "../models/models_0"; import { DescribeNotebookExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DescribePersistentAppUICommand.ts b/clients/client-emr/src/commands/DescribePersistentAppUICommand.ts index e9d1df8002218..eb713b266c5bb 100644 --- a/clients/client-emr/src/commands/DescribePersistentAppUICommand.ts +++ b/clients/client-emr/src/commands/DescribePersistentAppUICommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePersistentAppUIInput, DescribePersistentAppUIOutput } from "../models/models_0"; +import type { DescribePersistentAppUIInput, DescribePersistentAppUIOutput } from "../models/models_0"; import { DescribePersistentAppUI } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DescribeReleaseLabelCommand.ts b/clients/client-emr/src/commands/DescribeReleaseLabelCommand.ts index c2717d7bfa0bc..091041882e841 100644 --- a/clients/client-emr/src/commands/DescribeReleaseLabelCommand.ts +++ b/clients/client-emr/src/commands/DescribeReleaseLabelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReleaseLabelInput, DescribeReleaseLabelOutput } from "../models/models_0"; +import type { DescribeReleaseLabelInput, DescribeReleaseLabelOutput } from "../models/models_0"; import { DescribeReleaseLabel } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DescribeSecurityConfigurationCommand.ts b/clients/client-emr/src/commands/DescribeSecurityConfigurationCommand.ts index dc0daac3fff2f..f4ab5a5faa02a 100644 --- a/clients/client-emr/src/commands/DescribeSecurityConfigurationCommand.ts +++ b/clients/client-emr/src/commands/DescribeSecurityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSecurityConfigurationInput, DescribeSecurityConfigurationOutput } from "../models/models_0"; +import type { DescribeSecurityConfigurationInput, DescribeSecurityConfigurationOutput } from "../models/models_0"; import { DescribeSecurityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DescribeStepCommand.ts b/clients/client-emr/src/commands/DescribeStepCommand.ts index 896b8c2505a43..001a1c5c62027 100644 --- a/clients/client-emr/src/commands/DescribeStepCommand.ts +++ b/clients/client-emr/src/commands/DescribeStepCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStepInput, DescribeStepOutput } from "../models/models_0"; +import type { DescribeStepInput, DescribeStepOutput } from "../models/models_0"; import { DescribeStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/DescribeStudioCommand.ts b/clients/client-emr/src/commands/DescribeStudioCommand.ts index 5f663fec572d2..809fd38fa545f 100644 --- a/clients/client-emr/src/commands/DescribeStudioCommand.ts +++ b/clients/client-emr/src/commands/DescribeStudioCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStudioInput, DescribeStudioOutput } from "../models/models_0"; +import type { DescribeStudioInput, DescribeStudioOutput } from "../models/models_0"; import { DescribeStudio } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/GetAutoTerminationPolicyCommand.ts b/clients/client-emr/src/commands/GetAutoTerminationPolicyCommand.ts index 69ea080e3b522..aa65b785e1be9 100644 --- a/clients/client-emr/src/commands/GetAutoTerminationPolicyCommand.ts +++ b/clients/client-emr/src/commands/GetAutoTerminationPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAutoTerminationPolicyInput, GetAutoTerminationPolicyOutput } from "../models/models_0"; +import type { GetAutoTerminationPolicyInput, GetAutoTerminationPolicyOutput } from "../models/models_0"; import { GetAutoTerminationPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/GetBlockPublicAccessConfigurationCommand.ts b/clients/client-emr/src/commands/GetBlockPublicAccessConfigurationCommand.ts index fcba47841652b..d9541f66c368a 100644 --- a/clients/client-emr/src/commands/GetBlockPublicAccessConfigurationCommand.ts +++ b/clients/client-emr/src/commands/GetBlockPublicAccessConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBlockPublicAccessConfigurationInput, GetBlockPublicAccessConfigurationOutput } from "../models/models_0"; +import type { + GetBlockPublicAccessConfigurationInput, + GetBlockPublicAccessConfigurationOutput, +} from "../models/models_0"; import { GetBlockPublicAccessConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/GetClusterSessionCredentialsCommand.ts b/clients/client-emr/src/commands/GetClusterSessionCredentialsCommand.ts index c9fdf1b8ce87d..fa6f559167393 100644 --- a/clients/client-emr/src/commands/GetClusterSessionCredentialsCommand.ts +++ b/clients/client-emr/src/commands/GetClusterSessionCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetClusterSessionCredentialsInput, GetClusterSessionCredentialsOutput } from "../models/models_0"; +import type { GetClusterSessionCredentialsInput, GetClusterSessionCredentialsOutput } from "../models/models_0"; import { GetClusterSessionCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/GetManagedScalingPolicyCommand.ts b/clients/client-emr/src/commands/GetManagedScalingPolicyCommand.ts index e8be4be19c524..b838d947b7668 100644 --- a/clients/client-emr/src/commands/GetManagedScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/GetManagedScalingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedScalingPolicyInput, GetManagedScalingPolicyOutput } from "../models/models_0"; +import type { GetManagedScalingPolicyInput, GetManagedScalingPolicyOutput } from "../models/models_0"; import { GetManagedScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/GetOnClusterAppUIPresignedURLCommand.ts b/clients/client-emr/src/commands/GetOnClusterAppUIPresignedURLCommand.ts index 9d020112de27e..c13c3313573e8 100644 --- a/clients/client-emr/src/commands/GetOnClusterAppUIPresignedURLCommand.ts +++ b/clients/client-emr/src/commands/GetOnClusterAppUIPresignedURLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOnClusterAppUIPresignedURLInput, GetOnClusterAppUIPresignedURLOutput } from "../models/models_0"; +import type { GetOnClusterAppUIPresignedURLInput, GetOnClusterAppUIPresignedURLOutput } from "../models/models_0"; import { GetOnClusterAppUIPresignedURL } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/GetPersistentAppUIPresignedURLCommand.ts b/clients/client-emr/src/commands/GetPersistentAppUIPresignedURLCommand.ts index 9df987619090b..d1143feba6ccb 100644 --- a/clients/client-emr/src/commands/GetPersistentAppUIPresignedURLCommand.ts +++ b/clients/client-emr/src/commands/GetPersistentAppUIPresignedURLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPersistentAppUIPresignedURLInput, GetPersistentAppUIPresignedURLOutput } from "../models/models_0"; +import type { GetPersistentAppUIPresignedURLInput, GetPersistentAppUIPresignedURLOutput } from "../models/models_0"; import { GetPersistentAppUIPresignedURL } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/GetStudioSessionMappingCommand.ts b/clients/client-emr/src/commands/GetStudioSessionMappingCommand.ts index b425636d76ee8..215317bcccbc5 100644 --- a/clients/client-emr/src/commands/GetStudioSessionMappingCommand.ts +++ b/clients/client-emr/src/commands/GetStudioSessionMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStudioSessionMappingInput, GetStudioSessionMappingOutput } from "../models/models_0"; +import type { GetStudioSessionMappingInput, GetStudioSessionMappingOutput } from "../models/models_0"; import { GetStudioSessionMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListBootstrapActionsCommand.ts b/clients/client-emr/src/commands/ListBootstrapActionsCommand.ts index 1f6e822bfa4bf..b9b2b4e7287a5 100644 --- a/clients/client-emr/src/commands/ListBootstrapActionsCommand.ts +++ b/clients/client-emr/src/commands/ListBootstrapActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBootstrapActionsInput, ListBootstrapActionsOutput } from "../models/models_0"; +import type { ListBootstrapActionsInput, ListBootstrapActionsOutput } from "../models/models_0"; import { ListBootstrapActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListClustersCommand.ts b/clients/client-emr/src/commands/ListClustersCommand.ts index b98000a1b9d45..517ed3fd94e57 100644 --- a/clients/client-emr/src/commands/ListClustersCommand.ts +++ b/clients/client-emr/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClustersInput, ListClustersOutput } from "../models/models_0"; +import type { ListClustersInput, ListClustersOutput } from "../models/models_0"; import { ListClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListInstanceFleetsCommand.ts b/clients/client-emr/src/commands/ListInstanceFleetsCommand.ts index bdde51183d973..a360efb114582 100644 --- a/clients/client-emr/src/commands/ListInstanceFleetsCommand.ts +++ b/clients/client-emr/src/commands/ListInstanceFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstanceFleetsInput, ListInstanceFleetsOutput } from "../models/models_0"; +import type { ListInstanceFleetsInput, ListInstanceFleetsOutput } from "../models/models_0"; import { ListInstanceFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListInstanceGroupsCommand.ts b/clients/client-emr/src/commands/ListInstanceGroupsCommand.ts index e0cc81abd8cca..7268e1cc760fd 100644 --- a/clients/client-emr/src/commands/ListInstanceGroupsCommand.ts +++ b/clients/client-emr/src/commands/ListInstanceGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstanceGroupsInput, ListInstanceGroupsOutput } from "../models/models_0"; +import type { ListInstanceGroupsInput, ListInstanceGroupsOutput } from "../models/models_0"; import { ListInstanceGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListInstancesCommand.ts b/clients/client-emr/src/commands/ListInstancesCommand.ts index 857b1bbceca09..47b6d9c66d5de 100644 --- a/clients/client-emr/src/commands/ListInstancesCommand.ts +++ b/clients/client-emr/src/commands/ListInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstancesInput, ListInstancesOutput } from "../models/models_0"; +import type { ListInstancesInput, ListInstancesOutput } from "../models/models_0"; import { ListInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListNotebookExecutionsCommand.ts b/clients/client-emr/src/commands/ListNotebookExecutionsCommand.ts index 5ac5660809319..8e5effb0b5bb3 100644 --- a/clients/client-emr/src/commands/ListNotebookExecutionsCommand.ts +++ b/clients/client-emr/src/commands/ListNotebookExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotebookExecutionsInput, ListNotebookExecutionsOutput } from "../models/models_0"; +import type { ListNotebookExecutionsInput, ListNotebookExecutionsOutput } from "../models/models_0"; import { ListNotebookExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListReleaseLabelsCommand.ts b/clients/client-emr/src/commands/ListReleaseLabelsCommand.ts index 97d6bafe6e959..398a39e1b7ed0 100644 --- a/clients/client-emr/src/commands/ListReleaseLabelsCommand.ts +++ b/clients/client-emr/src/commands/ListReleaseLabelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReleaseLabelsInput, ListReleaseLabelsOutput } from "../models/models_0"; +import type { ListReleaseLabelsInput, ListReleaseLabelsOutput } from "../models/models_0"; import { ListReleaseLabels } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListSecurityConfigurationsCommand.ts b/clients/client-emr/src/commands/ListSecurityConfigurationsCommand.ts index 195a913310bbc..74922f6eb80b6 100644 --- a/clients/client-emr/src/commands/ListSecurityConfigurationsCommand.ts +++ b/clients/client-emr/src/commands/ListSecurityConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityConfigurationsInput, ListSecurityConfigurationsOutput } from "../models/models_0"; +import type { ListSecurityConfigurationsInput, ListSecurityConfigurationsOutput } from "../models/models_0"; import { ListSecurityConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListStepsCommand.ts b/clients/client-emr/src/commands/ListStepsCommand.ts index e2f20b05879ef..e167f42253560 100644 --- a/clients/client-emr/src/commands/ListStepsCommand.ts +++ b/clients/client-emr/src/commands/ListStepsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStepsInput, ListStepsOutput } from "../models/models_0"; +import type { ListStepsInput, ListStepsOutput } from "../models/models_0"; import { ListSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListStudioSessionMappingsCommand.ts b/clients/client-emr/src/commands/ListStudioSessionMappingsCommand.ts index 5933dcfb2bc44..d91d59232e83f 100644 --- a/clients/client-emr/src/commands/ListStudioSessionMappingsCommand.ts +++ b/clients/client-emr/src/commands/ListStudioSessionMappingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStudioSessionMappingsInput, ListStudioSessionMappingsOutput } from "../models/models_0"; +import type { ListStudioSessionMappingsInput, ListStudioSessionMappingsOutput } from "../models/models_0"; import { ListStudioSessionMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListStudiosCommand.ts b/clients/client-emr/src/commands/ListStudiosCommand.ts index 11c166122dc74..89f38784b5012 100644 --- a/clients/client-emr/src/commands/ListStudiosCommand.ts +++ b/clients/client-emr/src/commands/ListStudiosCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStudiosInput, ListStudiosOutput } from "../models/models_0"; +import type { ListStudiosInput, ListStudiosOutput } from "../models/models_0"; import { ListStudios } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ListSupportedInstanceTypesCommand.ts b/clients/client-emr/src/commands/ListSupportedInstanceTypesCommand.ts index bc1f104e438c8..1312d79f180b6 100644 --- a/clients/client-emr/src/commands/ListSupportedInstanceTypesCommand.ts +++ b/clients/client-emr/src/commands/ListSupportedInstanceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSupportedInstanceTypesInput, ListSupportedInstanceTypesOutput } from "../models/models_0"; +import type { ListSupportedInstanceTypesInput, ListSupportedInstanceTypesOutput } from "../models/models_0"; import { ListSupportedInstanceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ModifyClusterCommand.ts b/clients/client-emr/src/commands/ModifyClusterCommand.ts index f20af572f35ce..0eda031865ce9 100644 --- a/clients/client-emr/src/commands/ModifyClusterCommand.ts +++ b/clients/client-emr/src/commands/ModifyClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClusterInput, ModifyClusterOutput } from "../models/models_0"; +import type { ModifyClusterInput, ModifyClusterOutput } from "../models/models_0"; import { ModifyCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ModifyInstanceFleetCommand.ts b/clients/client-emr/src/commands/ModifyInstanceFleetCommand.ts index f9a280b877d9d..1bcbc3b072b18 100644 --- a/clients/client-emr/src/commands/ModifyInstanceFleetCommand.ts +++ b/clients/client-emr/src/commands/ModifyInstanceFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceFleetInput } from "../models/models_0"; +import type { ModifyInstanceFleetInput } from "../models/models_0"; import { ModifyInstanceFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/ModifyInstanceGroupsCommand.ts b/clients/client-emr/src/commands/ModifyInstanceGroupsCommand.ts index d31d0df13d465..e545d7fa904c9 100644 --- a/clients/client-emr/src/commands/ModifyInstanceGroupsCommand.ts +++ b/clients/client-emr/src/commands/ModifyInstanceGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyInstanceGroupsInput } from "../models/models_0"; +import type { ModifyInstanceGroupsInput } from "../models/models_0"; import { ModifyInstanceGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/PutAutoScalingPolicyCommand.ts b/clients/client-emr/src/commands/PutAutoScalingPolicyCommand.ts index 0d263eec1f1e2..0c27696523a53 100644 --- a/clients/client-emr/src/commands/PutAutoScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/PutAutoScalingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAutoScalingPolicyInput, PutAutoScalingPolicyOutput } from "../models/models_0"; +import type { PutAutoScalingPolicyInput, PutAutoScalingPolicyOutput } from "../models/models_0"; import { PutAutoScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/PutAutoTerminationPolicyCommand.ts b/clients/client-emr/src/commands/PutAutoTerminationPolicyCommand.ts index 3ac751bff8671..ebbf59eda7a3b 100644 --- a/clients/client-emr/src/commands/PutAutoTerminationPolicyCommand.ts +++ b/clients/client-emr/src/commands/PutAutoTerminationPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAutoTerminationPolicyInput, PutAutoTerminationPolicyOutput } from "../models/models_0"; +import type { PutAutoTerminationPolicyInput, PutAutoTerminationPolicyOutput } from "../models/models_0"; import { PutAutoTerminationPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/PutBlockPublicAccessConfigurationCommand.ts b/clients/client-emr/src/commands/PutBlockPublicAccessConfigurationCommand.ts index 57c6004b06df8..1bc39a9736200 100644 --- a/clients/client-emr/src/commands/PutBlockPublicAccessConfigurationCommand.ts +++ b/clients/client-emr/src/commands/PutBlockPublicAccessConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBlockPublicAccessConfigurationInput, PutBlockPublicAccessConfigurationOutput } from "../models/models_0"; +import type { + PutBlockPublicAccessConfigurationInput, + PutBlockPublicAccessConfigurationOutput, +} from "../models/models_0"; import { PutBlockPublicAccessConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/PutManagedScalingPolicyCommand.ts b/clients/client-emr/src/commands/PutManagedScalingPolicyCommand.ts index 9aab201c3e453..5a66f2ebcb63e 100644 --- a/clients/client-emr/src/commands/PutManagedScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/PutManagedScalingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutManagedScalingPolicyInput, PutManagedScalingPolicyOutput } from "../models/models_0"; +import type { PutManagedScalingPolicyInput, PutManagedScalingPolicyOutput } from "../models/models_0"; import { PutManagedScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/RemoveAutoScalingPolicyCommand.ts b/clients/client-emr/src/commands/RemoveAutoScalingPolicyCommand.ts index 1e649e0824ded..ed70341373a31 100644 --- a/clients/client-emr/src/commands/RemoveAutoScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/RemoveAutoScalingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveAutoScalingPolicyInput, RemoveAutoScalingPolicyOutput } from "../models/models_0"; +import type { RemoveAutoScalingPolicyInput, RemoveAutoScalingPolicyOutput } from "../models/models_0"; import { RemoveAutoScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/RemoveAutoTerminationPolicyCommand.ts b/clients/client-emr/src/commands/RemoveAutoTerminationPolicyCommand.ts index 547bc7a15b8f5..9b5f19d1abf79 100644 --- a/clients/client-emr/src/commands/RemoveAutoTerminationPolicyCommand.ts +++ b/clients/client-emr/src/commands/RemoveAutoTerminationPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveAutoTerminationPolicyInput, RemoveAutoTerminationPolicyOutput } from "../models/models_0"; +import type { RemoveAutoTerminationPolicyInput, RemoveAutoTerminationPolicyOutput } from "../models/models_0"; import { RemoveAutoTerminationPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/RemoveManagedScalingPolicyCommand.ts b/clients/client-emr/src/commands/RemoveManagedScalingPolicyCommand.ts index 1f8cbcae89cac..301174f8d365d 100644 --- a/clients/client-emr/src/commands/RemoveManagedScalingPolicyCommand.ts +++ b/clients/client-emr/src/commands/RemoveManagedScalingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveManagedScalingPolicyInput, RemoveManagedScalingPolicyOutput } from "../models/models_0"; +import type { RemoveManagedScalingPolicyInput, RemoveManagedScalingPolicyOutput } from "../models/models_0"; import { RemoveManagedScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/RemoveTagsCommand.ts b/clients/client-emr/src/commands/RemoveTagsCommand.ts index 2d68079e7a607..e3076c17191f8 100644 --- a/clients/client-emr/src/commands/RemoveTagsCommand.ts +++ b/clients/client-emr/src/commands/RemoveTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0"; +import type { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0"; import { RemoveTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/RunJobFlowCommand.ts b/clients/client-emr/src/commands/RunJobFlowCommand.ts index 93997db8542b6..aa2e82f0ad3d2 100644 --- a/clients/client-emr/src/commands/RunJobFlowCommand.ts +++ b/clients/client-emr/src/commands/RunJobFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RunJobFlowInput, RunJobFlowOutput } from "../models/models_0"; +import type { RunJobFlowInput, RunJobFlowOutput } from "../models/models_0"; import { RunJobFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/SetKeepJobFlowAliveWhenNoStepsCommand.ts b/clients/client-emr/src/commands/SetKeepJobFlowAliveWhenNoStepsCommand.ts index 750464574f8ba..1eda5023ed6ed 100644 --- a/clients/client-emr/src/commands/SetKeepJobFlowAliveWhenNoStepsCommand.ts +++ b/clients/client-emr/src/commands/SetKeepJobFlowAliveWhenNoStepsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetKeepJobFlowAliveWhenNoStepsInput } from "../models/models_0"; +import type { SetKeepJobFlowAliveWhenNoStepsInput } from "../models/models_0"; import { SetKeepJobFlowAliveWhenNoSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/SetTerminationProtectionCommand.ts b/clients/client-emr/src/commands/SetTerminationProtectionCommand.ts index 6d54551980122..db2d29ca164db 100644 --- a/clients/client-emr/src/commands/SetTerminationProtectionCommand.ts +++ b/clients/client-emr/src/commands/SetTerminationProtectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetTerminationProtectionInput } from "../models/models_0"; +import type { SetTerminationProtectionInput } from "../models/models_0"; import { SetTerminationProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/SetUnhealthyNodeReplacementCommand.ts b/clients/client-emr/src/commands/SetUnhealthyNodeReplacementCommand.ts index d20e868060be8..1ca055fbb0f4a 100644 --- a/clients/client-emr/src/commands/SetUnhealthyNodeReplacementCommand.ts +++ b/clients/client-emr/src/commands/SetUnhealthyNodeReplacementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetUnhealthyNodeReplacementInput } from "../models/models_0"; +import type { SetUnhealthyNodeReplacementInput } from "../models/models_0"; import { SetUnhealthyNodeReplacement } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/SetVisibleToAllUsersCommand.ts b/clients/client-emr/src/commands/SetVisibleToAllUsersCommand.ts index 87be3b41a86a5..4256e2d981343 100644 --- a/clients/client-emr/src/commands/SetVisibleToAllUsersCommand.ts +++ b/clients/client-emr/src/commands/SetVisibleToAllUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetVisibleToAllUsersInput } from "../models/models_0"; +import type { SetVisibleToAllUsersInput } from "../models/models_0"; import { SetVisibleToAllUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/StartNotebookExecutionCommand.ts b/clients/client-emr/src/commands/StartNotebookExecutionCommand.ts index 57b9c04c17efe..a169787325199 100644 --- a/clients/client-emr/src/commands/StartNotebookExecutionCommand.ts +++ b/clients/client-emr/src/commands/StartNotebookExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartNotebookExecutionInput, StartNotebookExecutionOutput } from "../models/models_0"; +import type { StartNotebookExecutionInput, StartNotebookExecutionOutput } from "../models/models_0"; import { StartNotebookExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/StopNotebookExecutionCommand.ts b/clients/client-emr/src/commands/StopNotebookExecutionCommand.ts index 1ac1199131804..5ced3b54f1a83 100644 --- a/clients/client-emr/src/commands/StopNotebookExecutionCommand.ts +++ b/clients/client-emr/src/commands/StopNotebookExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopNotebookExecutionInput } from "../models/models_0"; +import type { StopNotebookExecutionInput } from "../models/models_0"; import { StopNotebookExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/TerminateJobFlowsCommand.ts b/clients/client-emr/src/commands/TerminateJobFlowsCommand.ts index ec4646fc80d77..71cce352dc06d 100644 --- a/clients/client-emr/src/commands/TerminateJobFlowsCommand.ts +++ b/clients/client-emr/src/commands/TerminateJobFlowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateJobFlowsInput } from "../models/models_0"; +import type { TerminateJobFlowsInput } from "../models/models_0"; import { TerminateJobFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/UpdateStudioCommand.ts b/clients/client-emr/src/commands/UpdateStudioCommand.ts index d4ea5c6159876..157497a3de32d 100644 --- a/clients/client-emr/src/commands/UpdateStudioCommand.ts +++ b/clients/client-emr/src/commands/UpdateStudioCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStudioInput } from "../models/models_0"; +import type { UpdateStudioInput } from "../models/models_0"; import { UpdateStudio } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/commands/UpdateStudioSessionMappingCommand.ts b/clients/client-emr/src/commands/UpdateStudioSessionMappingCommand.ts index 6733c9158d8d7..66549f557f5b6 100644 --- a/clients/client-emr/src/commands/UpdateStudioSessionMappingCommand.ts +++ b/clients/client-emr/src/commands/UpdateStudioSessionMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; +import type { EMRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStudioSessionMappingInput } from "../models/models_0"; +import type { UpdateStudioSessionMappingInput } from "../models/models_0"; import { UpdateStudioSessionMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-emr/src/endpoint/EndpointParameters.ts b/clients/client-emr/src/endpoint/EndpointParameters.ts index e678f94256a75..425c73b879cc4 100644 --- a/clients/client-emr/src/endpoint/EndpointParameters.ts +++ b/clients/client-emr/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-emr/src/endpoint/endpointResolver.ts b/clients/client-emr/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-emr/src/endpoint/endpointResolver.ts +++ b/clients/client-emr/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-emr/src/extensionConfiguration.ts b/clients/client-emr/src/extensionConfiguration.ts index 9639e088d5304..c08841d469317 100644 --- a/clients/client-emr/src/extensionConfiguration.ts +++ b/clients/client-emr/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-emr/src/models/EMRServiceException.ts b/clients/client-emr/src/models/EMRServiceException.ts index 99806e35337cf..7c78e22bbc343 100644 --- a/clients/client-emr/src/models/EMRServiceException.ts +++ b/clients/client-emr/src/models/EMRServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-emr/src/models/errors.ts b/clients/client-emr/src/models/errors.ts index 83970ae875b82..89931dacf78fd 100644 --- a/clients/client-emr/src/models/errors.ts +++ b/clients/client-emr/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EMRServiceException as __BaseException } from "./EMRServiceException"; diff --git a/clients/client-emr/src/pagination/Interfaces.ts b/clients/client-emr/src/pagination/Interfaces.ts index 583e0562f9c3e..c07ae7af6eb2c 100644 --- a/clients/client-emr/src/pagination/Interfaces.ts +++ b/clients/client-emr/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EMRClient } from "../EMRClient"; diff --git a/clients/client-emr/src/pagination/ListBootstrapActionsPaginator.ts b/clients/client-emr/src/pagination/ListBootstrapActionsPaginator.ts index e1050ca524aad..39e6042cd2a7a 100644 --- a/clients/client-emr/src/pagination/ListBootstrapActionsPaginator.ts +++ b/clients/client-emr/src/pagination/ListBootstrapActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBootstrapActionsCommand, diff --git a/clients/client-emr/src/pagination/ListClustersPaginator.ts b/clients/client-emr/src/pagination/ListClustersPaginator.ts index 9aa1fd9b181a8..d4de6d37a63fb 100644 --- a/clients/client-emr/src/pagination/ListClustersPaginator.ts +++ b/clients/client-emr/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-emr/src/pagination/ListInstanceFleetsPaginator.ts b/clients/client-emr/src/pagination/ListInstanceFleetsPaginator.ts index e2bd606e70d82..9358b1dda1826 100644 --- a/clients/client-emr/src/pagination/ListInstanceFleetsPaginator.ts +++ b/clients/client-emr/src/pagination/ListInstanceFleetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstanceFleetsCommand, diff --git a/clients/client-emr/src/pagination/ListInstanceGroupsPaginator.ts b/clients/client-emr/src/pagination/ListInstanceGroupsPaginator.ts index 5980f8421d7ca..b502e8b15ecd9 100644 --- a/clients/client-emr/src/pagination/ListInstanceGroupsPaginator.ts +++ b/clients/client-emr/src/pagination/ListInstanceGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstanceGroupsCommand, diff --git a/clients/client-emr/src/pagination/ListInstancesPaginator.ts b/clients/client-emr/src/pagination/ListInstancesPaginator.ts index c617ceac8a57b..e511e6e987748 100644 --- a/clients/client-emr/src/pagination/ListInstancesPaginator.ts +++ b/clients/client-emr/src/pagination/ListInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstancesCommand, diff --git a/clients/client-emr/src/pagination/ListNotebookExecutionsPaginator.ts b/clients/client-emr/src/pagination/ListNotebookExecutionsPaginator.ts index 4e01018d1ff2b..3f3702f2ecf04 100644 --- a/clients/client-emr/src/pagination/ListNotebookExecutionsPaginator.ts +++ b/clients/client-emr/src/pagination/ListNotebookExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotebookExecutionsCommand, diff --git a/clients/client-emr/src/pagination/ListReleaseLabelsPaginator.ts b/clients/client-emr/src/pagination/ListReleaseLabelsPaginator.ts index dd664519b4085..308cfc414a34d 100644 --- a/clients/client-emr/src/pagination/ListReleaseLabelsPaginator.ts +++ b/clients/client-emr/src/pagination/ListReleaseLabelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReleaseLabelsCommand, diff --git a/clients/client-emr/src/pagination/ListSecurityConfigurationsPaginator.ts b/clients/client-emr/src/pagination/ListSecurityConfigurationsPaginator.ts index 0db03906052d5..9438c21419b70 100644 --- a/clients/client-emr/src/pagination/ListSecurityConfigurationsPaginator.ts +++ b/clients/client-emr/src/pagination/ListSecurityConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityConfigurationsCommand, diff --git a/clients/client-emr/src/pagination/ListStepsPaginator.ts b/clients/client-emr/src/pagination/ListStepsPaginator.ts index 2f1904ddc4023..30c4b544763e6 100644 --- a/clients/client-emr/src/pagination/ListStepsPaginator.ts +++ b/clients/client-emr/src/pagination/ListStepsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStepsCommand, ListStepsCommandInput, ListStepsCommandOutput } from "../commands/ListStepsCommand"; import { EMRClient } from "../EMRClient"; diff --git a/clients/client-emr/src/pagination/ListStudioSessionMappingsPaginator.ts b/clients/client-emr/src/pagination/ListStudioSessionMappingsPaginator.ts index 1e93f8f9b7139..5a566c02c89cb 100644 --- a/clients/client-emr/src/pagination/ListStudioSessionMappingsPaginator.ts +++ b/clients/client-emr/src/pagination/ListStudioSessionMappingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStudioSessionMappingsCommand, diff --git a/clients/client-emr/src/pagination/ListStudiosPaginator.ts b/clients/client-emr/src/pagination/ListStudiosPaginator.ts index e86967e0d5c6f..2eefb2ab6973c 100644 --- a/clients/client-emr/src/pagination/ListStudiosPaginator.ts +++ b/clients/client-emr/src/pagination/ListStudiosPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStudiosCommand, ListStudiosCommandInput, ListStudiosCommandOutput } from "../commands/ListStudiosCommand"; import { EMRClient } from "../EMRClient"; diff --git a/clients/client-emr/src/pagination/ListSupportedInstanceTypesPaginator.ts b/clients/client-emr/src/pagination/ListSupportedInstanceTypesPaginator.ts index 0c03c0442ff2c..a0b4380debf99 100644 --- a/clients/client-emr/src/pagination/ListSupportedInstanceTypesPaginator.ts +++ b/clients/client-emr/src/pagination/ListSupportedInstanceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSupportedInstanceTypesCommand, diff --git a/clients/client-emr/src/runtimeConfig.browser.ts b/clients/client-emr/src/runtimeConfig.browser.ts index b888f05dcbebf..ac53408412655 100644 --- a/clients/client-emr/src/runtimeConfig.browser.ts +++ b/clients/client-emr/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EMRClientConfig } from "./EMRClient"; + +import type { EMRClientConfig } from "./EMRClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-emr/src/runtimeConfig.native.ts b/clients/client-emr/src/runtimeConfig.native.ts index 65d75b61824b9..26e1344d833e6 100644 --- a/clients/client-emr/src/runtimeConfig.native.ts +++ b/clients/client-emr/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EMRClientConfig } from "./EMRClient"; +import type { EMRClientConfig } from "./EMRClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-emr/src/runtimeConfig.shared.ts b/clients/client-emr/src/runtimeConfig.shared.ts index e0cbb9aa76564..90b5b2fa4118c 100644 --- a/clients/client-emr/src/runtimeConfig.shared.ts +++ b/clients/client-emr/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEMRHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EMRClientConfig } from "./EMRClient"; +import type { EMRClientConfig } from "./EMRClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/clients/client-emr/src/runtimeConfig.ts b/clients/client-emr/src/runtimeConfig.ts index 91ff16b277720..56e08a2c4b95c 100644 --- a/clients/client-emr/src/runtimeConfig.ts +++ b/clients/client-emr/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EMRClientConfig } from "./EMRClient"; + +import type { EMRClientConfig } from "./EMRClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-emr/src/runtimeExtensions.ts b/clients/client-emr/src/runtimeExtensions.ts index e3c549e87cf52..eff23d1aa2545 100644 --- a/clients/client-emr/src/runtimeExtensions.ts +++ b/clients/client-emr/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EMRExtensionConfiguration } from "./extensionConfiguration"; +import type { EMRExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-emr/src/schemas/schemas_0.ts b/clients/client-emr/src/schemas/schemas_0.ts index afa18f00563f3..f020123cf1515 100644 --- a/clients/client-emr/src/schemas/schemas_0.ts +++ b/clients/client-emr/src/schemas/schemas_0.ts @@ -630,7 +630,7 @@ const n0 = "com.amazonaws.emr"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-entityresolution/package.json b/clients/client-entityresolution/package.json index 0f475c882d838..779251111beb5 100644 --- a/clients/client-entityresolution/package.json +++ b/clients/client-entityresolution/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-entityresolution/src/EntityResolution.ts b/clients/client-entityresolution/src/EntityResolution.ts index f318567173c09..72d83ebdefdc7 100644 --- a/clients/client-entityresolution/src/EntityResolution.ts +++ b/clients/client-entityresolution/src/EntityResolution.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddPolicyStatementCommand, @@ -176,7 +176,7 @@ import { UpdateSchemaMappingCommandInput, UpdateSchemaMappingCommandOutput, } from "./commands/UpdateSchemaMappingCommand"; -import { EntityResolutionClient, EntityResolutionClientConfig } from "./EntityResolutionClient"; +import { EntityResolutionClient } from "./EntityResolutionClient"; const commands = { AddPolicyStatementCommand, diff --git a/clients/client-entityresolution/src/EntityResolutionClient.ts b/clients/client-entityresolution/src/EntityResolutionClient.ts index 85b27705f7232..1e9311f75615c 100644 --- a/clients/client-entityresolution/src/EntityResolutionClient.ts +++ b/clients/client-entityresolution/src/EntityResolutionClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEntityResolutionHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddPolicyStatementCommandInput, AddPolicyStatementCommandOutput } from "./commands/AddPolicyStatementCommand"; @@ -153,7 +162,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-entityresolution/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-entityresolution/src/auth/httpAuthExtensionConfiguration.ts index ffccec5a75c28..6e961753a889c 100644 --- a/clients/client-entityresolution/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-entityresolution/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EntityResolutionHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EntityResolutionHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-entityresolution/src/auth/httpAuthSchemeProvider.ts b/clients/client-entityresolution/src/auth/httpAuthSchemeProvider.ts index e608d5eb30ec4..deb279697ed0a 100644 --- a/clients/client-entityresolution/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-entityresolution/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EntityResolutionClientConfig, EntityResolutionClientResolvedConfig } from "../EntityResolutionClient"; +import { type EntityResolutionClientResolvedConfig, EntityResolutionClientConfig } from "../EntityResolutionClient"; /** * @internal diff --git a/clients/client-entityresolution/src/commands/AddPolicyStatementCommand.ts b/clients/client-entityresolution/src/commands/AddPolicyStatementCommand.ts index 4b669603374d9..3b77d7afdf132 100644 --- a/clients/client-entityresolution/src/commands/AddPolicyStatementCommand.ts +++ b/clients/client-entityresolution/src/commands/AddPolicyStatementCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { AddPolicyStatementInput, AddPolicyStatementOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { AddPolicyStatementInput, AddPolicyStatementOutput } from "../models/models_0"; import { AddPolicyStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/BatchDeleteUniqueIdCommand.ts b/clients/client-entityresolution/src/commands/BatchDeleteUniqueIdCommand.ts index 1507736d4480b..e52a09f59e9c9 100644 --- a/clients/client-entityresolution/src/commands/BatchDeleteUniqueIdCommand.ts +++ b/clients/client-entityresolution/src/commands/BatchDeleteUniqueIdCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { BatchDeleteUniqueIdInput, BatchDeleteUniqueIdOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { BatchDeleteUniqueIdInput, BatchDeleteUniqueIdOutput } from "../models/models_0"; import { BatchDeleteUniqueId } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/CreateIdMappingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/CreateIdMappingWorkflowCommand.ts index d55d9d28f3fa4..6e954b4da1eee 100644 --- a/clients/client-entityresolution/src/commands/CreateIdMappingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/CreateIdMappingWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { CreateIdMappingWorkflowInput, CreateIdMappingWorkflowOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { CreateIdMappingWorkflowInput, CreateIdMappingWorkflowOutput } from "../models/models_0"; import { CreateIdMappingWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/CreateIdNamespaceCommand.ts b/clients/client-entityresolution/src/commands/CreateIdNamespaceCommand.ts index 8fa35f49b7bc4..d53dd5005656f 100644 --- a/clients/client-entityresolution/src/commands/CreateIdNamespaceCommand.ts +++ b/clients/client-entityresolution/src/commands/CreateIdNamespaceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { CreateIdNamespaceInput, CreateIdNamespaceOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { CreateIdNamespaceInput, CreateIdNamespaceOutput } from "../models/models_0"; import { CreateIdNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/CreateMatchingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/CreateMatchingWorkflowCommand.ts index 6fd21c7bba1f1..2cc95b35cc5b0 100644 --- a/clients/client-entityresolution/src/commands/CreateMatchingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/CreateMatchingWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { CreateMatchingWorkflowInput, CreateMatchingWorkflowOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { CreateMatchingWorkflowInput, CreateMatchingWorkflowOutput } from "../models/models_0"; import { CreateMatchingWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/CreateSchemaMappingCommand.ts b/clients/client-entityresolution/src/commands/CreateSchemaMappingCommand.ts index 8b9ccb6da197f..cd40132a1a9aa 100644 --- a/clients/client-entityresolution/src/commands/CreateSchemaMappingCommand.ts +++ b/clients/client-entityresolution/src/commands/CreateSchemaMappingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { CreateSchemaMappingInput, CreateSchemaMappingOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { CreateSchemaMappingInput, CreateSchemaMappingOutput } from "../models/models_0"; import { CreateSchemaMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/DeleteIdMappingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/DeleteIdMappingWorkflowCommand.ts index 17cb0822e8eca..c1bdfa3a93456 100644 --- a/clients/client-entityresolution/src/commands/DeleteIdMappingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/DeleteIdMappingWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { DeleteIdMappingWorkflowInput, DeleteIdMappingWorkflowOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { DeleteIdMappingWorkflowInput, DeleteIdMappingWorkflowOutput } from "../models/models_0"; import { DeleteIdMappingWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/DeleteIdNamespaceCommand.ts b/clients/client-entityresolution/src/commands/DeleteIdNamespaceCommand.ts index 8d131f581ee1e..87a383734fced 100644 --- a/clients/client-entityresolution/src/commands/DeleteIdNamespaceCommand.ts +++ b/clients/client-entityresolution/src/commands/DeleteIdNamespaceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { DeleteIdNamespaceInput, DeleteIdNamespaceOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { DeleteIdNamespaceInput, DeleteIdNamespaceOutput } from "../models/models_0"; import { DeleteIdNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/DeleteMatchingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/DeleteMatchingWorkflowCommand.ts index 0a8fb65af3f54..a2e6a5ab709db 100644 --- a/clients/client-entityresolution/src/commands/DeleteMatchingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/DeleteMatchingWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { DeleteMatchingWorkflowInput, DeleteMatchingWorkflowOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { DeleteMatchingWorkflowInput, DeleteMatchingWorkflowOutput } from "../models/models_0"; import { DeleteMatchingWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/DeletePolicyStatementCommand.ts b/clients/client-entityresolution/src/commands/DeletePolicyStatementCommand.ts index 00b1124091010..e47abb1966cd1 100644 --- a/clients/client-entityresolution/src/commands/DeletePolicyStatementCommand.ts +++ b/clients/client-entityresolution/src/commands/DeletePolicyStatementCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { DeletePolicyStatementInput, DeletePolicyStatementOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { DeletePolicyStatementInput, DeletePolicyStatementOutput } from "../models/models_0"; import { DeletePolicyStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/DeleteSchemaMappingCommand.ts b/clients/client-entityresolution/src/commands/DeleteSchemaMappingCommand.ts index b98596f60d122..038371b58f42f 100644 --- a/clients/client-entityresolution/src/commands/DeleteSchemaMappingCommand.ts +++ b/clients/client-entityresolution/src/commands/DeleteSchemaMappingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { DeleteSchemaMappingInput, DeleteSchemaMappingOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { DeleteSchemaMappingInput, DeleteSchemaMappingOutput } from "../models/models_0"; import { DeleteSchemaMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GenerateMatchIdCommand.ts b/clients/client-entityresolution/src/commands/GenerateMatchIdCommand.ts index e07faac6c554b..c01ea7cd65651 100644 --- a/clients/client-entityresolution/src/commands/GenerateMatchIdCommand.ts +++ b/clients/client-entityresolution/src/commands/GenerateMatchIdCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GenerateMatchIdInput, GenerateMatchIdOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GenerateMatchIdInput, GenerateMatchIdOutput } from "../models/models_0"; import { GenerateMatchId } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GetIdMappingJobCommand.ts b/clients/client-entityresolution/src/commands/GetIdMappingJobCommand.ts index f9fc6bb73f906..d66eaeba51ce7 100644 --- a/clients/client-entityresolution/src/commands/GetIdMappingJobCommand.ts +++ b/clients/client-entityresolution/src/commands/GetIdMappingJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GetIdMappingJobInput, GetIdMappingJobOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GetIdMappingJobInput, GetIdMappingJobOutput } from "../models/models_0"; import { GetIdMappingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GetIdMappingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/GetIdMappingWorkflowCommand.ts index f2892e41dda09..41aeb04330c2d 100644 --- a/clients/client-entityresolution/src/commands/GetIdMappingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/GetIdMappingWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GetIdMappingWorkflowInput, GetIdMappingWorkflowOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GetIdMappingWorkflowInput, GetIdMappingWorkflowOutput } from "../models/models_0"; import { GetIdMappingWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GetIdNamespaceCommand.ts b/clients/client-entityresolution/src/commands/GetIdNamespaceCommand.ts index 3d83bd6a47388..a3f4b86c90882 100644 --- a/clients/client-entityresolution/src/commands/GetIdNamespaceCommand.ts +++ b/clients/client-entityresolution/src/commands/GetIdNamespaceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GetIdNamespaceInput, GetIdNamespaceOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GetIdNamespaceInput, GetIdNamespaceOutput } from "../models/models_0"; import { GetIdNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GetMatchIdCommand.ts b/clients/client-entityresolution/src/commands/GetMatchIdCommand.ts index 1c84cec2e15e7..39cddaab822ec 100644 --- a/clients/client-entityresolution/src/commands/GetMatchIdCommand.ts +++ b/clients/client-entityresolution/src/commands/GetMatchIdCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GetMatchIdInput, GetMatchIdOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GetMatchIdInput, GetMatchIdOutput } from "../models/models_0"; import { GetMatchId } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GetMatchingJobCommand.ts b/clients/client-entityresolution/src/commands/GetMatchingJobCommand.ts index 82db79345a839..992567d17947f 100644 --- a/clients/client-entityresolution/src/commands/GetMatchingJobCommand.ts +++ b/clients/client-entityresolution/src/commands/GetMatchingJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GetMatchingJobInput, GetMatchingJobOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GetMatchingJobInput, GetMatchingJobOutput } from "../models/models_0"; import { GetMatchingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GetMatchingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/GetMatchingWorkflowCommand.ts index 6cdc1f0f823ea..099ea849ebd7a 100644 --- a/clients/client-entityresolution/src/commands/GetMatchingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/GetMatchingWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GetMatchingWorkflowInput, GetMatchingWorkflowOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GetMatchingWorkflowInput, GetMatchingWorkflowOutput } from "../models/models_0"; import { GetMatchingWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GetPolicyCommand.ts b/clients/client-entityresolution/src/commands/GetPolicyCommand.ts index 27530340a16f0..90732bd8e5a41 100644 --- a/clients/client-entityresolution/src/commands/GetPolicyCommand.ts +++ b/clients/client-entityresolution/src/commands/GetPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GetPolicyInput, GetPolicyOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GetPolicyInput, GetPolicyOutput } from "../models/models_0"; import { GetPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GetProviderServiceCommand.ts b/clients/client-entityresolution/src/commands/GetProviderServiceCommand.ts index 8d730bb6d7705..c6dae2abaa776 100644 --- a/clients/client-entityresolution/src/commands/GetProviderServiceCommand.ts +++ b/clients/client-entityresolution/src/commands/GetProviderServiceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GetProviderServiceInput, GetProviderServiceOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GetProviderServiceInput, GetProviderServiceOutput } from "../models/models_0"; import { GetProviderService } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/GetSchemaMappingCommand.ts b/clients/client-entityresolution/src/commands/GetSchemaMappingCommand.ts index 43e48d4dadf84..612bc71c26c25 100644 --- a/clients/client-entityresolution/src/commands/GetSchemaMappingCommand.ts +++ b/clients/client-entityresolution/src/commands/GetSchemaMappingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { GetSchemaMappingInput, GetSchemaMappingOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { GetSchemaMappingInput, GetSchemaMappingOutput } from "../models/models_0"; import { GetSchemaMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/ListIdMappingJobsCommand.ts b/clients/client-entityresolution/src/commands/ListIdMappingJobsCommand.ts index 7538f82c67dd9..f5f2247f6b46f 100644 --- a/clients/client-entityresolution/src/commands/ListIdMappingJobsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListIdMappingJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { ListIdMappingJobsInput, ListIdMappingJobsOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { ListIdMappingJobsInput, ListIdMappingJobsOutput } from "../models/models_0"; import { ListIdMappingJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/ListIdMappingWorkflowsCommand.ts b/clients/client-entityresolution/src/commands/ListIdMappingWorkflowsCommand.ts index eec77d0111385..1c382eda7a7a4 100644 --- a/clients/client-entityresolution/src/commands/ListIdMappingWorkflowsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListIdMappingWorkflowsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { ListIdMappingWorkflowsInput, ListIdMappingWorkflowsOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { ListIdMappingWorkflowsInput, ListIdMappingWorkflowsOutput } from "../models/models_0"; import { ListIdMappingWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/ListIdNamespacesCommand.ts b/clients/client-entityresolution/src/commands/ListIdNamespacesCommand.ts index ba6ee6e51825e..1eb6ebefe57de 100644 --- a/clients/client-entityresolution/src/commands/ListIdNamespacesCommand.ts +++ b/clients/client-entityresolution/src/commands/ListIdNamespacesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { ListIdNamespacesInput, ListIdNamespacesOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { ListIdNamespacesInput, ListIdNamespacesOutput } from "../models/models_0"; import { ListIdNamespaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/ListMatchingJobsCommand.ts b/clients/client-entityresolution/src/commands/ListMatchingJobsCommand.ts index ef89ea3c9805b..82e653073ba36 100644 --- a/clients/client-entityresolution/src/commands/ListMatchingJobsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListMatchingJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { ListMatchingJobsInput, ListMatchingJobsOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { ListMatchingJobsInput, ListMatchingJobsOutput } from "../models/models_0"; import { ListMatchingJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/ListMatchingWorkflowsCommand.ts b/clients/client-entityresolution/src/commands/ListMatchingWorkflowsCommand.ts index 7d515dfaa0243..7d15e9437180f 100644 --- a/clients/client-entityresolution/src/commands/ListMatchingWorkflowsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListMatchingWorkflowsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { ListMatchingWorkflowsInput, ListMatchingWorkflowsOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { ListMatchingWorkflowsInput, ListMatchingWorkflowsOutput } from "../models/models_0"; import { ListMatchingWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/ListProviderServicesCommand.ts b/clients/client-entityresolution/src/commands/ListProviderServicesCommand.ts index 46d9270487e49..3a8927b52cb9d 100644 --- a/clients/client-entityresolution/src/commands/ListProviderServicesCommand.ts +++ b/clients/client-entityresolution/src/commands/ListProviderServicesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { ListProviderServicesInput, ListProviderServicesOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { ListProviderServicesInput, ListProviderServicesOutput } from "../models/models_0"; import { ListProviderServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/ListSchemaMappingsCommand.ts b/clients/client-entityresolution/src/commands/ListSchemaMappingsCommand.ts index 4af52ed9ab214..afa1e5c82578d 100644 --- a/clients/client-entityresolution/src/commands/ListSchemaMappingsCommand.ts +++ b/clients/client-entityresolution/src/commands/ListSchemaMappingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { ListSchemaMappingsInput, ListSchemaMappingsOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { ListSchemaMappingsInput, ListSchemaMappingsOutput } from "../models/models_0"; import { ListSchemaMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/ListTagsForResourceCommand.ts b/clients/client-entityresolution/src/commands/ListTagsForResourceCommand.ts index 5d3a818bc17cd..c53a8e6024d34 100644 --- a/clients/client-entityresolution/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-entityresolution/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/PutPolicyCommand.ts b/clients/client-entityresolution/src/commands/PutPolicyCommand.ts index 5da7c255a85b8..0b762106dc3ea 100644 --- a/clients/client-entityresolution/src/commands/PutPolicyCommand.ts +++ b/clients/client-entityresolution/src/commands/PutPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { PutPolicyInput, PutPolicyOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { PutPolicyInput, PutPolicyOutput } from "../models/models_0"; import { PutPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/StartIdMappingJobCommand.ts b/clients/client-entityresolution/src/commands/StartIdMappingJobCommand.ts index 68c6a59d02a4f..6007eea7214ed 100644 --- a/clients/client-entityresolution/src/commands/StartIdMappingJobCommand.ts +++ b/clients/client-entityresolution/src/commands/StartIdMappingJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { StartIdMappingJobInput, StartIdMappingJobOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { StartIdMappingJobInput, StartIdMappingJobOutput } from "../models/models_0"; import { StartIdMappingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/StartMatchingJobCommand.ts b/clients/client-entityresolution/src/commands/StartMatchingJobCommand.ts index fcb47210bd542..61d2f70875460 100644 --- a/clients/client-entityresolution/src/commands/StartMatchingJobCommand.ts +++ b/clients/client-entityresolution/src/commands/StartMatchingJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { StartMatchingJobInput, StartMatchingJobOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { StartMatchingJobInput, StartMatchingJobOutput } from "../models/models_0"; import { StartMatchingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/TagResourceCommand.ts b/clients/client-entityresolution/src/commands/TagResourceCommand.ts index 61d6b08feb878..2fc94a8f31ecd 100644 --- a/clients/client-entityresolution/src/commands/TagResourceCommand.ts +++ b/clients/client-entityresolution/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/UntagResourceCommand.ts b/clients/client-entityresolution/src/commands/UntagResourceCommand.ts index 001a3a8f4f07e..bac575a7362cb 100644 --- a/clients/client-entityresolution/src/commands/UntagResourceCommand.ts +++ b/clients/client-entityresolution/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/UpdateIdMappingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/UpdateIdMappingWorkflowCommand.ts index 4028d3943f989..e687798eec5b1 100644 --- a/clients/client-entityresolution/src/commands/UpdateIdMappingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/UpdateIdMappingWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { UpdateIdMappingWorkflowInput, UpdateIdMappingWorkflowOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { UpdateIdMappingWorkflowInput, UpdateIdMappingWorkflowOutput } from "../models/models_0"; import { UpdateIdMappingWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/UpdateIdNamespaceCommand.ts b/clients/client-entityresolution/src/commands/UpdateIdNamespaceCommand.ts index 033a055e6216b..ad52a156f48dc 100644 --- a/clients/client-entityresolution/src/commands/UpdateIdNamespaceCommand.ts +++ b/clients/client-entityresolution/src/commands/UpdateIdNamespaceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { UpdateIdNamespaceInput, UpdateIdNamespaceOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { UpdateIdNamespaceInput, UpdateIdNamespaceOutput } from "../models/models_0"; import { UpdateIdNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/UpdateMatchingWorkflowCommand.ts b/clients/client-entityresolution/src/commands/UpdateMatchingWorkflowCommand.ts index 348bd700732f3..e77b029bce908 100644 --- a/clients/client-entityresolution/src/commands/UpdateMatchingWorkflowCommand.ts +++ b/clients/client-entityresolution/src/commands/UpdateMatchingWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { UpdateMatchingWorkflowInput, UpdateMatchingWorkflowOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { UpdateMatchingWorkflowInput, UpdateMatchingWorkflowOutput } from "../models/models_0"; import { UpdateMatchingWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/commands/UpdateSchemaMappingCommand.ts b/clients/client-entityresolution/src/commands/UpdateSchemaMappingCommand.ts index fca7bc24ce2be..ea03fe9a3b915 100644 --- a/clients/client-entityresolution/src/commands/UpdateSchemaMappingCommand.ts +++ b/clients/client-entityresolution/src/commands/UpdateSchemaMappingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EntityResolutionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EntityResolutionClient"; -import { UpdateSchemaMappingInput, UpdateSchemaMappingOutput } from "../models/models_0"; +import type { + EntityResolutionClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../EntityResolutionClient"; +import type { UpdateSchemaMappingInput, UpdateSchemaMappingOutput } from "../models/models_0"; import { UpdateSchemaMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-entityresolution/src/endpoint/EndpointParameters.ts b/clients/client-entityresolution/src/endpoint/EndpointParameters.ts index 16bbb4d0bebec..219b778c18597 100644 --- a/clients/client-entityresolution/src/endpoint/EndpointParameters.ts +++ b/clients/client-entityresolution/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-entityresolution/src/endpoint/endpointResolver.ts b/clients/client-entityresolution/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-entityresolution/src/endpoint/endpointResolver.ts +++ b/clients/client-entityresolution/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-entityresolution/src/extensionConfiguration.ts b/clients/client-entityresolution/src/extensionConfiguration.ts index 0dbe9f9850815..a5386e4452e87 100644 --- a/clients/client-entityresolution/src/extensionConfiguration.ts +++ b/clients/client-entityresolution/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-entityresolution/src/models/EntityResolutionServiceException.ts b/clients/client-entityresolution/src/models/EntityResolutionServiceException.ts index 2ea3c2081b2c1..f9a193bf7fc50 100644 --- a/clients/client-entityresolution/src/models/EntityResolutionServiceException.ts +++ b/clients/client-entityresolution/src/models/EntityResolutionServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-entityresolution/src/models/errors.ts b/clients/client-entityresolution/src/models/errors.ts index 3e858fb30bf06..b6dde16c3f33a 100644 --- a/clients/client-entityresolution/src/models/errors.ts +++ b/clients/client-entityresolution/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EntityResolutionServiceException as __BaseException } from "./EntityResolutionServiceException"; diff --git a/clients/client-entityresolution/src/pagination/Interfaces.ts b/clients/client-entityresolution/src/pagination/Interfaces.ts index d7aafac3c5909..0c7399fd6477e 100644 --- a/clients/client-entityresolution/src/pagination/Interfaces.ts +++ b/clients/client-entityresolution/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EntityResolutionClient } from "../EntityResolutionClient"; diff --git a/clients/client-entityresolution/src/pagination/ListIdMappingJobsPaginator.ts b/clients/client-entityresolution/src/pagination/ListIdMappingJobsPaginator.ts index 415376c854ee4..1896542b92387 100644 --- a/clients/client-entityresolution/src/pagination/ListIdMappingJobsPaginator.ts +++ b/clients/client-entityresolution/src/pagination/ListIdMappingJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIdMappingJobsCommand, diff --git a/clients/client-entityresolution/src/pagination/ListIdMappingWorkflowsPaginator.ts b/clients/client-entityresolution/src/pagination/ListIdMappingWorkflowsPaginator.ts index 5bdd6826e7572..403c6a72cb334 100644 --- a/clients/client-entityresolution/src/pagination/ListIdMappingWorkflowsPaginator.ts +++ b/clients/client-entityresolution/src/pagination/ListIdMappingWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIdMappingWorkflowsCommand, diff --git a/clients/client-entityresolution/src/pagination/ListIdNamespacesPaginator.ts b/clients/client-entityresolution/src/pagination/ListIdNamespacesPaginator.ts index ad5692fd81091..3a0413cbc99c2 100644 --- a/clients/client-entityresolution/src/pagination/ListIdNamespacesPaginator.ts +++ b/clients/client-entityresolution/src/pagination/ListIdNamespacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIdNamespacesCommand, diff --git a/clients/client-entityresolution/src/pagination/ListMatchingJobsPaginator.ts b/clients/client-entityresolution/src/pagination/ListMatchingJobsPaginator.ts index 9069bf4b082f1..01faccfc37dea 100644 --- a/clients/client-entityresolution/src/pagination/ListMatchingJobsPaginator.ts +++ b/clients/client-entityresolution/src/pagination/ListMatchingJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMatchingJobsCommand, diff --git a/clients/client-entityresolution/src/pagination/ListMatchingWorkflowsPaginator.ts b/clients/client-entityresolution/src/pagination/ListMatchingWorkflowsPaginator.ts index dd5fdf3cd04db..0e2c66082dd10 100644 --- a/clients/client-entityresolution/src/pagination/ListMatchingWorkflowsPaginator.ts +++ b/clients/client-entityresolution/src/pagination/ListMatchingWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMatchingWorkflowsCommand, diff --git a/clients/client-entityresolution/src/pagination/ListProviderServicesPaginator.ts b/clients/client-entityresolution/src/pagination/ListProviderServicesPaginator.ts index f9371df404e66..e10b92ca11faf 100644 --- a/clients/client-entityresolution/src/pagination/ListProviderServicesPaginator.ts +++ b/clients/client-entityresolution/src/pagination/ListProviderServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProviderServicesCommand, diff --git a/clients/client-entityresolution/src/pagination/ListSchemaMappingsPaginator.ts b/clients/client-entityresolution/src/pagination/ListSchemaMappingsPaginator.ts index 39eb1d23eee97..bd4ddfcfba8b6 100644 --- a/clients/client-entityresolution/src/pagination/ListSchemaMappingsPaginator.ts +++ b/clients/client-entityresolution/src/pagination/ListSchemaMappingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchemaMappingsCommand, diff --git a/clients/client-entityresolution/src/runtimeConfig.browser.ts b/clients/client-entityresolution/src/runtimeConfig.browser.ts index 09eefdf69a612..1d50a1a4b7f59 100644 --- a/clients/client-entityresolution/src/runtimeConfig.browser.ts +++ b/clients/client-entityresolution/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EntityResolutionClientConfig } from "./EntityResolutionClient"; + +import type { EntityResolutionClientConfig } from "./EntityResolutionClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-entityresolution/src/runtimeConfig.native.ts b/clients/client-entityresolution/src/runtimeConfig.native.ts index 74d794d7aecc9..971177f1ff8c5 100644 --- a/clients/client-entityresolution/src/runtimeConfig.native.ts +++ b/clients/client-entityresolution/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EntityResolutionClientConfig } from "./EntityResolutionClient"; +import type { EntityResolutionClientConfig } from "./EntityResolutionClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-entityresolution/src/runtimeConfig.shared.ts b/clients/client-entityresolution/src/runtimeConfig.shared.ts index bba0d429d5ad3..409f4499b2495 100644 --- a/clients/client-entityresolution/src/runtimeConfig.shared.ts +++ b/clients/client-entityresolution/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEntityResolutionHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { EntityResolutionClientConfig } from "./EntityResolutionClient"; +import type { EntityResolutionClientConfig } from "./EntityResolutionClient"; /** * @internal diff --git a/clients/client-entityresolution/src/runtimeConfig.ts b/clients/client-entityresolution/src/runtimeConfig.ts index 4b88212698096..d464811188446 100644 --- a/clients/client-entityresolution/src/runtimeConfig.ts +++ b/clients/client-entityresolution/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EntityResolutionClientConfig } from "./EntityResolutionClient"; + +import type { EntityResolutionClientConfig } from "./EntityResolutionClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-entityresolution/src/runtimeExtensions.ts b/clients/client-entityresolution/src/runtimeExtensions.ts index 04ce8906d4b90..9fe98c47795a5 100644 --- a/clients/client-entityresolution/src/runtimeExtensions.ts +++ b/clients/client-entityresolution/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EntityResolutionExtensionConfiguration } from "./extensionConfiguration"; +import type { EntityResolutionExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-entityresolution/src/schemas/schemas_0.ts b/clients/client-entityresolution/src/schemas/schemas_0.ts index c88e841225852..48778f59af735 100644 --- a/clients/client-entityresolution/src/schemas/schemas_0.ts +++ b/clients/client-entityresolution/src/schemas/schemas_0.ts @@ -339,7 +339,7 @@ const n0 = "com.amazonaws.entityresolution"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-eventbridge/package.json b/clients/client-eventbridge/package.json index 1cd55e52ba6e2..91fb93b984e38 100644 --- a/clients/client-eventbridge/package.json +++ b/clients/client-eventbridge/package.json @@ -35,26 +35,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-eventbridge/src/EventBridge.ts b/clients/client-eventbridge/src/EventBridge.ts index 77032ce389909..e9486d118a889 100644 --- a/clients/client-eventbridge/src/EventBridge.ts +++ b/clients/client-eventbridge/src/EventBridge.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ActivateEventSourceCommand, @@ -247,7 +247,7 @@ import { UpdateEventBusCommandInput, UpdateEventBusCommandOutput, } from "./commands/UpdateEventBusCommand"; -import { EventBridgeClient, EventBridgeClientConfig } from "./EventBridgeClient"; +import { EventBridgeClient } from "./EventBridgeClient"; const commands = { ActivateEventSourceCommand, diff --git a/clients/client-eventbridge/src/EventBridgeClient.ts b/clients/client-eventbridge/src/EventBridgeClient.ts index 885fa0644d072..9266486c60f61 100644 --- a/clients/client-eventbridge/src/EventBridgeClient.ts +++ b/clients/client-eventbridge/src/EventBridgeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEventBridgeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -169,7 +178,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-eventbridge/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-eventbridge/src/auth/httpAuthExtensionConfiguration.ts index 5d18d25cdadb3..168e828f70f56 100644 --- a/clients/client-eventbridge/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-eventbridge/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EventBridgeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EventBridgeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-eventbridge/src/auth/httpAuthSchemeProvider.ts b/clients/client-eventbridge/src/auth/httpAuthSchemeProvider.ts index 8d3bcbeb58877..63bc77ce6242c 100644 --- a/clients/client-eventbridge/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-eventbridge/src/auth/httpAuthSchemeProvider.ts @@ -12,16 +12,16 @@ import { import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { EndpointParameterInstructions, resolveParams } from "@smithy/middleware-endpoint"; import { + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParametersProvider, + type Provider, EndpointV2, HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, HttpAuthSchemeId, HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Logger, - Provider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; diff --git a/clients/client-eventbridge/src/commands/ActivateEventSourceCommand.ts b/clients/client-eventbridge/src/commands/ActivateEventSourceCommand.ts index 2a14605aa4c48..58441cf4590ba 100644 --- a/clients/client-eventbridge/src/commands/ActivateEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/ActivateEventSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ActivateEventSourceRequest } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ActivateEventSourceRequest } from "../models/models_0"; import { ActivateEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/CancelReplayCommand.ts b/clients/client-eventbridge/src/commands/CancelReplayCommand.ts index ae4d4bf38aeaa..3b67d136dd4cf 100644 --- a/clients/client-eventbridge/src/commands/CancelReplayCommand.ts +++ b/clients/client-eventbridge/src/commands/CancelReplayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { CancelReplayRequest, CancelReplayResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { CancelReplayRequest, CancelReplayResponse } from "../models/models_0"; import { CancelReplay } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/CreateApiDestinationCommand.ts b/clients/client-eventbridge/src/commands/CreateApiDestinationCommand.ts index 19bce3961c107..bc8a9c16e8b98 100644 --- a/clients/client-eventbridge/src/commands/CreateApiDestinationCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateApiDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { CreateApiDestinationRequest, CreateApiDestinationResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { CreateApiDestinationRequest, CreateApiDestinationResponse } from "../models/models_0"; import { CreateApiDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/CreateArchiveCommand.ts b/clients/client-eventbridge/src/commands/CreateArchiveCommand.ts index 3fdf2551e2248..40b77dc9c689d 100644 --- a/clients/client-eventbridge/src/commands/CreateArchiveCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { CreateArchiveRequest, CreateArchiveResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { CreateArchiveRequest, CreateArchiveResponse } from "../models/models_0"; import { CreateArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/CreateConnectionCommand.ts b/clients/client-eventbridge/src/commands/CreateConnectionCommand.ts index 9d53b9b76b8b2..f3006459fce02 100644 --- a/clients/client-eventbridge/src/commands/CreateConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; import { CreateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/CreateEndpointCommand.ts b/clients/client-eventbridge/src/commands/CreateEndpointCommand.ts index aa67f69b71898..0a8286668e1e5 100644 --- a/clients/client-eventbridge/src/commands/CreateEndpointCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { CreateEndpointRequest, CreateEndpointResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { CreateEndpointRequest, CreateEndpointResponse } from "../models/models_0"; import { CreateEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/CreateEventBusCommand.ts b/clients/client-eventbridge/src/commands/CreateEventBusCommand.ts index c5c8b4ac9b085..e09a3895ff8dc 100644 --- a/clients/client-eventbridge/src/commands/CreateEventBusCommand.ts +++ b/clients/client-eventbridge/src/commands/CreateEventBusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { CreateEventBusRequest, CreateEventBusResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { CreateEventBusRequest, CreateEventBusResponse } from "../models/models_0"; import { CreateEventBus } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/CreatePartnerEventSourceCommand.ts b/clients/client-eventbridge/src/commands/CreatePartnerEventSourceCommand.ts index 122fd606677a4..ce0cd57ba5063 100644 --- a/clients/client-eventbridge/src/commands/CreatePartnerEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/CreatePartnerEventSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { CreatePartnerEventSourceRequest, CreatePartnerEventSourceResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { CreatePartnerEventSourceRequest, CreatePartnerEventSourceResponse } from "../models/models_0"; import { CreatePartnerEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DeactivateEventSourceCommand.ts b/clients/client-eventbridge/src/commands/DeactivateEventSourceCommand.ts index 7580020ec4cf2..334eb062c5322 100644 --- a/clients/client-eventbridge/src/commands/DeactivateEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/DeactivateEventSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DeactivateEventSourceRequest } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DeactivateEventSourceRequest } from "../models/models_0"; import { DeactivateEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DeauthorizeConnectionCommand.ts b/clients/client-eventbridge/src/commands/DeauthorizeConnectionCommand.ts index 78434230f38a0..a11014e426e86 100644 --- a/clients/client-eventbridge/src/commands/DeauthorizeConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/DeauthorizeConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DeauthorizeConnectionRequest, DeauthorizeConnectionResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DeauthorizeConnectionRequest, DeauthorizeConnectionResponse } from "../models/models_0"; import { DeauthorizeConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DeleteApiDestinationCommand.ts b/clients/client-eventbridge/src/commands/DeleteApiDestinationCommand.ts index 0eef0c7dadf11..cacc2072980ee 100644 --- a/clients/client-eventbridge/src/commands/DeleteApiDestinationCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteApiDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DeleteApiDestinationRequest, DeleteApiDestinationResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DeleteApiDestinationRequest, DeleteApiDestinationResponse } from "../models/models_0"; import { DeleteApiDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DeleteArchiveCommand.ts b/clients/client-eventbridge/src/commands/DeleteArchiveCommand.ts index dbc9849293084..ca04a7526e0df 100644 --- a/clients/client-eventbridge/src/commands/DeleteArchiveCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DeleteArchiveRequest, DeleteArchiveResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DeleteArchiveRequest, DeleteArchiveResponse } from "../models/models_0"; import { DeleteArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DeleteConnectionCommand.ts b/clients/client-eventbridge/src/commands/DeleteConnectionCommand.ts index 135f21c73244d..f16e52f971de0 100644 --- a/clients/client-eventbridge/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DeleteEndpointCommand.ts b/clients/client-eventbridge/src/commands/DeleteEndpointCommand.ts index 378e9ec031c15..e891027d2fdc6 100644 --- a/clients/client-eventbridge/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DeleteEndpointRequest, DeleteEndpointResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DeleteEndpointRequest, DeleteEndpointResponse } from "../models/models_0"; import { DeleteEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DeleteEventBusCommand.ts b/clients/client-eventbridge/src/commands/DeleteEventBusCommand.ts index 28fa229bb6043..900d1a4caa28a 100644 --- a/clients/client-eventbridge/src/commands/DeleteEventBusCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteEventBusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DeleteEventBusRequest } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DeleteEventBusRequest } from "../models/models_0"; import { DeleteEventBus } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DeletePartnerEventSourceCommand.ts b/clients/client-eventbridge/src/commands/DeletePartnerEventSourceCommand.ts index e74f70a041cae..d8c2e4eef7198 100644 --- a/clients/client-eventbridge/src/commands/DeletePartnerEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/DeletePartnerEventSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DeletePartnerEventSourceRequest } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DeletePartnerEventSourceRequest } from "../models/models_0"; import { DeletePartnerEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DeleteRuleCommand.ts b/clients/client-eventbridge/src/commands/DeleteRuleCommand.ts index eb2ec0e5b9c1e..164638509189d 100644 --- a/clients/client-eventbridge/src/commands/DeleteRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/DeleteRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DeleteRuleRequest } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DeleteRuleRequest } from "../models/models_0"; import { DeleteRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DescribeApiDestinationCommand.ts b/clients/client-eventbridge/src/commands/DescribeApiDestinationCommand.ts index adda613b2c2cb..a490050487b3a 100644 --- a/clients/client-eventbridge/src/commands/DescribeApiDestinationCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeApiDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DescribeApiDestinationRequest, DescribeApiDestinationResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DescribeApiDestinationRequest, DescribeApiDestinationResponse } from "../models/models_0"; import { DescribeApiDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DescribeArchiveCommand.ts b/clients/client-eventbridge/src/commands/DescribeArchiveCommand.ts index 4a5b37b14597b..692df3da26d99 100644 --- a/clients/client-eventbridge/src/commands/DescribeArchiveCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DescribeArchiveRequest, DescribeArchiveResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DescribeArchiveRequest, DescribeArchiveResponse } from "../models/models_0"; import { DescribeArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DescribeConnectionCommand.ts b/clients/client-eventbridge/src/commands/DescribeConnectionCommand.ts index d22810c0a8b31..0840c9e509715 100644 --- a/clients/client-eventbridge/src/commands/DescribeConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DescribeConnectionRequest, DescribeConnectionResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DescribeConnectionRequest, DescribeConnectionResponse } from "../models/models_0"; import { DescribeConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DescribeEndpointCommand.ts b/clients/client-eventbridge/src/commands/DescribeEndpointCommand.ts index 0ef855667193c..9c5cc6178273f 100644 --- a/clients/client-eventbridge/src/commands/DescribeEndpointCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DescribeEndpointRequest, DescribeEndpointResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DescribeEndpointRequest, DescribeEndpointResponse } from "../models/models_0"; import { DescribeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DescribeEventBusCommand.ts b/clients/client-eventbridge/src/commands/DescribeEventBusCommand.ts index 1dbf3790ce513..a79d2064a3e68 100644 --- a/clients/client-eventbridge/src/commands/DescribeEventBusCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeEventBusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DescribeEventBusRequest, DescribeEventBusResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DescribeEventBusRequest, DescribeEventBusResponse } from "../models/models_0"; import { DescribeEventBus } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DescribeEventSourceCommand.ts b/clients/client-eventbridge/src/commands/DescribeEventSourceCommand.ts index d65e49968e15c..ff35ed81ee6b2 100644 --- a/clients/client-eventbridge/src/commands/DescribeEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeEventSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DescribeEventSourceRequest, DescribeEventSourceResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DescribeEventSourceRequest, DescribeEventSourceResponse } from "../models/models_0"; import { DescribeEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DescribePartnerEventSourceCommand.ts b/clients/client-eventbridge/src/commands/DescribePartnerEventSourceCommand.ts index 6630993afa9d6..06a4950b8f62e 100644 --- a/clients/client-eventbridge/src/commands/DescribePartnerEventSourceCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribePartnerEventSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DescribePartnerEventSourceRequest, DescribePartnerEventSourceResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DescribePartnerEventSourceRequest, DescribePartnerEventSourceResponse } from "../models/models_0"; import { DescribePartnerEventSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DescribeReplayCommand.ts b/clients/client-eventbridge/src/commands/DescribeReplayCommand.ts index 09efb3e958d7b..b6bfc6e3ffb1f 100644 --- a/clients/client-eventbridge/src/commands/DescribeReplayCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeReplayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DescribeReplayRequest, DescribeReplayResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DescribeReplayRequest, DescribeReplayResponse } from "../models/models_0"; import { DescribeReplay } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DescribeRuleCommand.ts b/clients/client-eventbridge/src/commands/DescribeRuleCommand.ts index e26964538832a..e1efad2186409 100644 --- a/clients/client-eventbridge/src/commands/DescribeRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/DescribeRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DescribeRuleRequest, DescribeRuleResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DescribeRuleRequest, DescribeRuleResponse } from "../models/models_0"; import { DescribeRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/DisableRuleCommand.ts b/clients/client-eventbridge/src/commands/DisableRuleCommand.ts index 1facef11424c0..dba1260104ed9 100644 --- a/clients/client-eventbridge/src/commands/DisableRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/DisableRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { DisableRuleRequest } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { DisableRuleRequest } from "../models/models_0"; import { DisableRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/EnableRuleCommand.ts b/clients/client-eventbridge/src/commands/EnableRuleCommand.ts index 856e7bad14f65..964c7c8749d4e 100644 --- a/clients/client-eventbridge/src/commands/EnableRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/EnableRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { EnableRuleRequest } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { EnableRuleRequest } from "../models/models_0"; import { EnableRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListApiDestinationsCommand.ts b/clients/client-eventbridge/src/commands/ListApiDestinationsCommand.ts index c8ac02d5d9e7b..7e43c25cbb793 100644 --- a/clients/client-eventbridge/src/commands/ListApiDestinationsCommand.ts +++ b/clients/client-eventbridge/src/commands/ListApiDestinationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListApiDestinationsRequest, ListApiDestinationsResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListApiDestinationsRequest, ListApiDestinationsResponse } from "../models/models_0"; import { ListApiDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListArchivesCommand.ts b/clients/client-eventbridge/src/commands/ListArchivesCommand.ts index 11e7159640ec9..28b3f9ea5f3e2 100644 --- a/clients/client-eventbridge/src/commands/ListArchivesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListArchivesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListArchivesRequest, ListArchivesResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListArchivesRequest, ListArchivesResponse } from "../models/models_0"; import { ListArchives } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListConnectionsCommand.ts b/clients/client-eventbridge/src/commands/ListConnectionsCommand.ts index 1d080380eb45a..16e46e270981d 100644 --- a/clients/client-eventbridge/src/commands/ListConnectionsCommand.ts +++ b/clients/client-eventbridge/src/commands/ListConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0"; import { ListConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListEndpointsCommand.ts b/clients/client-eventbridge/src/commands/ListEndpointsCommand.ts index 317957b199b01..7434512c9c3d2 100644 --- a/clients/client-eventbridge/src/commands/ListEndpointsCommand.ts +++ b/clients/client-eventbridge/src/commands/ListEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListEndpointsRequest, ListEndpointsResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListEndpointsRequest, ListEndpointsResponse } from "../models/models_0"; import { ListEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListEventBusesCommand.ts b/clients/client-eventbridge/src/commands/ListEventBusesCommand.ts index 82729086f7afa..db76ab137fc04 100644 --- a/clients/client-eventbridge/src/commands/ListEventBusesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListEventBusesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListEventBusesRequest, ListEventBusesResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListEventBusesRequest, ListEventBusesResponse } from "../models/models_0"; import { ListEventBuses } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListEventSourcesCommand.ts b/clients/client-eventbridge/src/commands/ListEventSourcesCommand.ts index a9af0f92797d7..dcbcc25c40299 100644 --- a/clients/client-eventbridge/src/commands/ListEventSourcesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListEventSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListEventSourcesRequest, ListEventSourcesResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListEventSourcesRequest, ListEventSourcesResponse } from "../models/models_0"; import { ListEventSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListPartnerEventSourceAccountsCommand.ts b/clients/client-eventbridge/src/commands/ListPartnerEventSourceAccountsCommand.ts index 3520117388723..569d2d41db4e1 100644 --- a/clients/client-eventbridge/src/commands/ListPartnerEventSourceAccountsCommand.ts +++ b/clients/client-eventbridge/src/commands/ListPartnerEventSourceAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListPartnerEventSourceAccountsRequest, ListPartnerEventSourceAccountsResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListPartnerEventSourceAccountsRequest, ListPartnerEventSourceAccountsResponse } from "../models/models_0"; import { ListPartnerEventSourceAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListPartnerEventSourcesCommand.ts b/clients/client-eventbridge/src/commands/ListPartnerEventSourcesCommand.ts index 67fa78dc804c4..8cb2ac40785b9 100644 --- a/clients/client-eventbridge/src/commands/ListPartnerEventSourcesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListPartnerEventSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListPartnerEventSourcesRequest, ListPartnerEventSourcesResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListPartnerEventSourcesRequest, ListPartnerEventSourcesResponse } from "../models/models_0"; import { ListPartnerEventSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListReplaysCommand.ts b/clients/client-eventbridge/src/commands/ListReplaysCommand.ts index d569b473e59c7..ecba81e3f20a7 100644 --- a/clients/client-eventbridge/src/commands/ListReplaysCommand.ts +++ b/clients/client-eventbridge/src/commands/ListReplaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListReplaysRequest, ListReplaysResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListReplaysRequest, ListReplaysResponse } from "../models/models_0"; import { ListReplays } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListRuleNamesByTargetCommand.ts b/clients/client-eventbridge/src/commands/ListRuleNamesByTargetCommand.ts index d5e67af59a63d..a60f47feb4ad8 100644 --- a/clients/client-eventbridge/src/commands/ListRuleNamesByTargetCommand.ts +++ b/clients/client-eventbridge/src/commands/ListRuleNamesByTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListRuleNamesByTargetRequest, ListRuleNamesByTargetResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListRuleNamesByTargetRequest, ListRuleNamesByTargetResponse } from "../models/models_0"; import { ListRuleNamesByTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListRulesCommand.ts b/clients/client-eventbridge/src/commands/ListRulesCommand.ts index 2030d14008cbe..e2bc1bf7d2dcd 100644 --- a/clients/client-eventbridge/src/commands/ListRulesCommand.ts +++ b/clients/client-eventbridge/src/commands/ListRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListRulesRequest, ListRulesResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListRulesRequest, ListRulesResponse } from "../models/models_0"; import { ListRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListTagsForResourceCommand.ts b/clients/client-eventbridge/src/commands/ListTagsForResourceCommand.ts index 3cbd3ca39c91a..8bfc760d4109b 100644 --- a/clients/client-eventbridge/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-eventbridge/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/ListTargetsByRuleCommand.ts b/clients/client-eventbridge/src/commands/ListTargetsByRuleCommand.ts index ff704a036f7d4..08fc5b0ea8366 100644 --- a/clients/client-eventbridge/src/commands/ListTargetsByRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/ListTargetsByRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { ListTargetsByRuleRequest, ListTargetsByRuleResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { ListTargetsByRuleRequest, ListTargetsByRuleResponse } from "../models/models_0"; import { ListTargetsByRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/PutEventsCommand.ts b/clients/client-eventbridge/src/commands/PutEventsCommand.ts index 9474ee14ab20e..c9f437a1ef5f7 100644 --- a/clients/client-eventbridge/src/commands/PutEventsCommand.ts +++ b/clients/client-eventbridge/src/commands/PutEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { PutEventsRequest, PutEventsResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { PutEventsRequest, PutEventsResponse } from "../models/models_0"; import { PutEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/PutPartnerEventsCommand.ts b/clients/client-eventbridge/src/commands/PutPartnerEventsCommand.ts index 4bbce3ac63afc..55318c7c2c5b0 100644 --- a/clients/client-eventbridge/src/commands/PutPartnerEventsCommand.ts +++ b/clients/client-eventbridge/src/commands/PutPartnerEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { PutPartnerEventsRequest, PutPartnerEventsResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { PutPartnerEventsRequest, PutPartnerEventsResponse } from "../models/models_0"; import { PutPartnerEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/PutPermissionCommand.ts b/clients/client-eventbridge/src/commands/PutPermissionCommand.ts index 0ed09a9f23efb..6f3482fa395bc 100644 --- a/clients/client-eventbridge/src/commands/PutPermissionCommand.ts +++ b/clients/client-eventbridge/src/commands/PutPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { PutPermissionRequest } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { PutPermissionRequest } from "../models/models_0"; import { PutPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/PutRuleCommand.ts b/clients/client-eventbridge/src/commands/PutRuleCommand.ts index 76d07fd7776f7..feb26f9d2cdd6 100644 --- a/clients/client-eventbridge/src/commands/PutRuleCommand.ts +++ b/clients/client-eventbridge/src/commands/PutRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { PutRuleRequest, PutRuleResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { PutRuleRequest, PutRuleResponse } from "../models/models_0"; import { PutRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/PutTargetsCommand.ts b/clients/client-eventbridge/src/commands/PutTargetsCommand.ts index 9ea02ffab2f85..5f974029bd93a 100644 --- a/clients/client-eventbridge/src/commands/PutTargetsCommand.ts +++ b/clients/client-eventbridge/src/commands/PutTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { PutTargetsRequest, PutTargetsResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { PutTargetsRequest, PutTargetsResponse } from "../models/models_0"; import { PutTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/RemovePermissionCommand.ts b/clients/client-eventbridge/src/commands/RemovePermissionCommand.ts index 9d80cc391fc4e..e4b1a7c001b72 100644 --- a/clients/client-eventbridge/src/commands/RemovePermissionCommand.ts +++ b/clients/client-eventbridge/src/commands/RemovePermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { RemovePermissionRequest } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { RemovePermissionRequest } from "../models/models_0"; import { RemovePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/RemoveTargetsCommand.ts b/clients/client-eventbridge/src/commands/RemoveTargetsCommand.ts index c810158c3be26..b26c812af5bd7 100644 --- a/clients/client-eventbridge/src/commands/RemoveTargetsCommand.ts +++ b/clients/client-eventbridge/src/commands/RemoveTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { RemoveTargetsRequest, RemoveTargetsResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { RemoveTargetsRequest, RemoveTargetsResponse } from "../models/models_0"; import { RemoveTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/StartReplayCommand.ts b/clients/client-eventbridge/src/commands/StartReplayCommand.ts index b69133874c8d4..249da77654837 100644 --- a/clients/client-eventbridge/src/commands/StartReplayCommand.ts +++ b/clients/client-eventbridge/src/commands/StartReplayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { StartReplayRequest, StartReplayResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { StartReplayRequest, StartReplayResponse } from "../models/models_0"; import { StartReplay } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/TagResourceCommand.ts b/clients/client-eventbridge/src/commands/TagResourceCommand.ts index 1a50c22c8833c..8b34ce71a9ac7 100644 --- a/clients/client-eventbridge/src/commands/TagResourceCommand.ts +++ b/clients/client-eventbridge/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/TestEventPatternCommand.ts b/clients/client-eventbridge/src/commands/TestEventPatternCommand.ts index 15437095bd3af..3bc2e80552d8b 100644 --- a/clients/client-eventbridge/src/commands/TestEventPatternCommand.ts +++ b/clients/client-eventbridge/src/commands/TestEventPatternCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { TestEventPatternRequest, TestEventPatternResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { TestEventPatternRequest, TestEventPatternResponse } from "../models/models_0"; import { TestEventPattern } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/UntagResourceCommand.ts b/clients/client-eventbridge/src/commands/UntagResourceCommand.ts index 080738e6cb518..f7ff6560bcc79 100644 --- a/clients/client-eventbridge/src/commands/UntagResourceCommand.ts +++ b/clients/client-eventbridge/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/UpdateApiDestinationCommand.ts b/clients/client-eventbridge/src/commands/UpdateApiDestinationCommand.ts index 2653520b31fd9..d35ee59c54f89 100644 --- a/clients/client-eventbridge/src/commands/UpdateApiDestinationCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateApiDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { UpdateApiDestinationRequest, UpdateApiDestinationResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { UpdateApiDestinationRequest, UpdateApiDestinationResponse } from "../models/models_0"; import { UpdateApiDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/UpdateArchiveCommand.ts b/clients/client-eventbridge/src/commands/UpdateArchiveCommand.ts index eb448010449c1..b59f26686ea76 100644 --- a/clients/client-eventbridge/src/commands/UpdateArchiveCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { UpdateArchiveRequest, UpdateArchiveResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { UpdateArchiveRequest, UpdateArchiveResponse } from "../models/models_0"; import { UpdateArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/UpdateConnectionCommand.ts b/clients/client-eventbridge/src/commands/UpdateConnectionCommand.ts index 0f070e662159c..52b605c026a4f 100644 --- a/clients/client-eventbridge/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_0"; import { UpdateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/UpdateEndpointCommand.ts b/clients/client-eventbridge/src/commands/UpdateEndpointCommand.ts index ba66e9cfc3019..d2aea7dd3b4a4 100644 --- a/clients/client-eventbridge/src/commands/UpdateEndpointCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { UpdateEndpointRequest, UpdateEndpointResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { UpdateEndpointRequest, UpdateEndpointResponse } from "../models/models_0"; import { UpdateEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/commands/UpdateEventBusCommand.ts b/clients/client-eventbridge/src/commands/UpdateEventBusCommand.ts index df23b3fa1a28a..b5e31b92d41fd 100644 --- a/clients/client-eventbridge/src/commands/UpdateEventBusCommand.ts +++ b/clients/client-eventbridge/src/commands/UpdateEventBusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; -import { UpdateEventBusRequest, UpdateEventBusResponse } from "../models/models_0"; +import type { EventBridgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EventBridgeClient"; +import type { UpdateEventBusRequest, UpdateEventBusResponse } from "../models/models_0"; import { UpdateEventBus } from "../schemas/schemas_0"; /** diff --git a/clients/client-eventbridge/src/endpoint/EndpointParameters.ts b/clients/client-eventbridge/src/endpoint/EndpointParameters.ts index df934a90102d7..9bf62170c43cc 100644 --- a/clients/client-eventbridge/src/endpoint/EndpointParameters.ts +++ b/clients/client-eventbridge/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-eventbridge/src/endpoint/endpointResolver.ts b/clients/client-eventbridge/src/endpoint/endpointResolver.ts index 30df04e5bbbcd..f2200ce62a013 100644 --- a/clients/client-eventbridge/src/endpoint/endpointResolver.ts +++ b/clients/client-eventbridge/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-eventbridge/src/extensionConfiguration.ts b/clients/client-eventbridge/src/extensionConfiguration.ts index 23e76e76e0036..7bd7259cf36f8 100644 --- a/clients/client-eventbridge/src/extensionConfiguration.ts +++ b/clients/client-eventbridge/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-eventbridge/src/models/EventBridgeServiceException.ts b/clients/client-eventbridge/src/models/EventBridgeServiceException.ts index 4bc1c97259dde..bb3ba4b645cbb 100644 --- a/clients/client-eventbridge/src/models/EventBridgeServiceException.ts +++ b/clients/client-eventbridge/src/models/EventBridgeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-eventbridge/src/models/errors.ts b/clients/client-eventbridge/src/models/errors.ts index d33cba316bba8..3917a39a0cff4 100644 --- a/clients/client-eventbridge/src/models/errors.ts +++ b/clients/client-eventbridge/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EventBridgeServiceException as __BaseException } from "./EventBridgeServiceException"; diff --git a/clients/client-eventbridge/src/runtimeConfig.browser.ts b/clients/client-eventbridge/src/runtimeConfig.browser.ts index a17249a3f5a8f..6d19f9554dbe9 100644 --- a/clients/client-eventbridge/src/runtimeConfig.browser.ts +++ b/clients/client-eventbridge/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EventBridgeClientConfig } from "./EventBridgeClient"; + +import type { EventBridgeClientConfig } from "./EventBridgeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-eventbridge/src/runtimeConfig.native.ts b/clients/client-eventbridge/src/runtimeConfig.native.ts index cc3d0fb97f74c..57a87b1d2aa45 100644 --- a/clients/client-eventbridge/src/runtimeConfig.native.ts +++ b/clients/client-eventbridge/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EventBridgeClientConfig } from "./EventBridgeClient"; +import type { EventBridgeClientConfig } from "./EventBridgeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-eventbridge/src/runtimeConfig.shared.ts b/clients/client-eventbridge/src/runtimeConfig.shared.ts index 7f617b5a99e64..e2e9ee1f7682a 100644 --- a/clients/client-eventbridge/src/runtimeConfig.shared.ts +++ b/clients/client-eventbridge/src/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4ASigner, AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEventBridgeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { EventBridgeClientConfig } from "./EventBridgeClient"; +import type { EventBridgeClientConfig } from "./EventBridgeClient"; /** * @internal diff --git a/clients/client-eventbridge/src/runtimeConfig.ts b/clients/client-eventbridge/src/runtimeConfig.ts index c2d0faddcae6f..d4e8a3fa2e1c3 100644 --- a/clients/client-eventbridge/src/runtimeConfig.ts +++ b/clients/client-eventbridge/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EventBridgeClientConfig } from "./EventBridgeClient"; + +import type { EventBridgeClientConfig } from "./EventBridgeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-eventbridge/src/runtimeExtensions.ts b/clients/client-eventbridge/src/runtimeExtensions.ts index e2c3c2cfb87d0..c12b40032fe0d 100644 --- a/clients/client-eventbridge/src/runtimeExtensions.ts +++ b/clients/client-eventbridge/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EventBridgeExtensionConfiguration } from "./extensionConfiguration"; +import type { EventBridgeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-eventbridge/src/schemas/schemas_0.ts b/clients/client-eventbridge/src/schemas/schemas_0.ts index 35424847b5a9d..a5594d8e415b2 100644 --- a/clients/client-eventbridge/src/schemas/schemas_0.ts +++ b/clients/client-eventbridge/src/schemas/schemas_0.ts @@ -448,7 +448,7 @@ const n0 = "com.amazonaws.eventbridge"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-evidently/package.json b/clients/client-evidently/package.json index 40803922435fd..ff65e23e4350b 100644 --- a/clients/client-evidently/package.json +++ b/clients/client-evidently/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-evidently/src/Evidently.ts b/clients/client-evidently/src/Evidently.ts index 915f5902bf567..68ad5c1740d86 100644 --- a/clients/client-evidently/src/Evidently.ts +++ b/clients/client-evidently/src/Evidently.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchEvaluateFeatureCommand, @@ -164,7 +164,7 @@ import { UpdateProjectDataDeliveryCommandInput, UpdateProjectDataDeliveryCommandOutput, } from "./commands/UpdateProjectDataDeliveryCommand"; -import { EvidentlyClient, EvidentlyClientConfig } from "./EvidentlyClient"; +import { EvidentlyClient } from "./EvidentlyClient"; const commands = { BatchEvaluateFeatureCommand, diff --git a/clients/client-evidently/src/EvidentlyClient.ts b/clients/client-evidently/src/EvidentlyClient.ts index 7161d6de27061..8d9fd30b85e54 100644 --- a/clients/client-evidently/src/EvidentlyClient.ts +++ b/clients/client-evidently/src/EvidentlyClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEvidentlyHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -117,7 +126,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-evidently/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-evidently/src/auth/httpAuthExtensionConfiguration.ts index 5c4c9cf0309a1..7266bbaa96827 100644 --- a/clients/client-evidently/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-evidently/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EvidentlyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EvidentlyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-evidently/src/auth/httpAuthSchemeProvider.ts b/clients/client-evidently/src/auth/httpAuthSchemeProvider.ts index d4287b8f951d1..2183d3f9d8aa8 100644 --- a/clients/client-evidently/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-evidently/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EvidentlyClientConfig, EvidentlyClientResolvedConfig } from "../EvidentlyClient"; +import { type EvidentlyClientResolvedConfig, EvidentlyClientConfig } from "../EvidentlyClient"; /** * @internal diff --git a/clients/client-evidently/src/commands/BatchEvaluateFeatureCommand.ts b/clients/client-evidently/src/commands/BatchEvaluateFeatureCommand.ts index 2802980e91688..dfefb86126b96 100644 --- a/clients/client-evidently/src/commands/BatchEvaluateFeatureCommand.ts +++ b/clients/client-evidently/src/commands/BatchEvaluateFeatureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { BatchEvaluateFeatureRequest, BatchEvaluateFeatureResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { BatchEvaluateFeatureRequest, BatchEvaluateFeatureResponse } from "../models/models_0"; import { BatchEvaluateFeature } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/CreateExperimentCommand.ts b/clients/client-evidently/src/commands/CreateExperimentCommand.ts index e1422ba8a049e..049c4559bf0dd 100644 --- a/clients/client-evidently/src/commands/CreateExperimentCommand.ts +++ b/clients/client-evidently/src/commands/CreateExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { CreateExperimentRequest, CreateExperimentResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { CreateExperimentRequest, CreateExperimentResponse } from "../models/models_0"; import { CreateExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/CreateFeatureCommand.ts b/clients/client-evidently/src/commands/CreateFeatureCommand.ts index a0cbe7fde58ac..219d95e5c479d 100644 --- a/clients/client-evidently/src/commands/CreateFeatureCommand.ts +++ b/clients/client-evidently/src/commands/CreateFeatureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { CreateFeatureRequest, CreateFeatureResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { CreateFeatureRequest, CreateFeatureResponse } from "../models/models_0"; import { CreateFeature } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/CreateLaunchCommand.ts b/clients/client-evidently/src/commands/CreateLaunchCommand.ts index 6fb81f4859efa..3f459a54c2028 100644 --- a/clients/client-evidently/src/commands/CreateLaunchCommand.ts +++ b/clients/client-evidently/src/commands/CreateLaunchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { CreateLaunchRequest, CreateLaunchResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { CreateLaunchRequest, CreateLaunchResponse } from "../models/models_0"; import { CreateLaunch } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/CreateProjectCommand.ts b/clients/client-evidently/src/commands/CreateProjectCommand.ts index 50ffbe34caf6c..6917f870c49b3 100644 --- a/clients/client-evidently/src/commands/CreateProjectCommand.ts +++ b/clients/client-evidently/src/commands/CreateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; import { CreateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/CreateSegmentCommand.ts b/clients/client-evidently/src/commands/CreateSegmentCommand.ts index ed96c2b5080d2..3a89bc24ca2a2 100644 --- a/clients/client-evidently/src/commands/CreateSegmentCommand.ts +++ b/clients/client-evidently/src/commands/CreateSegmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { CreateSegmentRequest, CreateSegmentResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { CreateSegmentRequest, CreateSegmentResponse } from "../models/models_0"; import { CreateSegment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/DeleteExperimentCommand.ts b/clients/client-evidently/src/commands/DeleteExperimentCommand.ts index 39ede85455025..c1e5db896d236 100644 --- a/clients/client-evidently/src/commands/DeleteExperimentCommand.ts +++ b/clients/client-evidently/src/commands/DeleteExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { DeleteExperimentRequest, DeleteExperimentResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { DeleteExperimentRequest, DeleteExperimentResponse } from "../models/models_0"; import { DeleteExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/DeleteFeatureCommand.ts b/clients/client-evidently/src/commands/DeleteFeatureCommand.ts index 7bfe02e2142fa..a2788da8bc8e7 100644 --- a/clients/client-evidently/src/commands/DeleteFeatureCommand.ts +++ b/clients/client-evidently/src/commands/DeleteFeatureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { DeleteFeatureRequest, DeleteFeatureResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { DeleteFeatureRequest, DeleteFeatureResponse } from "../models/models_0"; import { DeleteFeature } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/DeleteLaunchCommand.ts b/clients/client-evidently/src/commands/DeleteLaunchCommand.ts index 1cebcd3e5881e..4d9fbc92b71c2 100644 --- a/clients/client-evidently/src/commands/DeleteLaunchCommand.ts +++ b/clients/client-evidently/src/commands/DeleteLaunchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { DeleteLaunchRequest, DeleteLaunchResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { DeleteLaunchRequest, DeleteLaunchResponse } from "../models/models_0"; import { DeleteLaunch } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/DeleteProjectCommand.ts b/clients/client-evidently/src/commands/DeleteProjectCommand.ts index 786550d8f0552..6abf6f08bccd6 100644 --- a/clients/client-evidently/src/commands/DeleteProjectCommand.ts +++ b/clients/client-evidently/src/commands/DeleteProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; import { DeleteProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/DeleteSegmentCommand.ts b/clients/client-evidently/src/commands/DeleteSegmentCommand.ts index a71fc3b06a082..c7a5e3bef2c65 100644 --- a/clients/client-evidently/src/commands/DeleteSegmentCommand.ts +++ b/clients/client-evidently/src/commands/DeleteSegmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { DeleteSegmentRequest, DeleteSegmentResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { DeleteSegmentRequest, DeleteSegmentResponse } from "../models/models_0"; import { DeleteSegment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/EvaluateFeatureCommand.ts b/clients/client-evidently/src/commands/EvaluateFeatureCommand.ts index 1f3dfaba786cc..4208e986886b2 100644 --- a/clients/client-evidently/src/commands/EvaluateFeatureCommand.ts +++ b/clients/client-evidently/src/commands/EvaluateFeatureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { EvaluateFeatureRequest, EvaluateFeatureResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { EvaluateFeatureRequest, EvaluateFeatureResponse } from "../models/models_0"; import { EvaluateFeature } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/GetExperimentCommand.ts b/clients/client-evidently/src/commands/GetExperimentCommand.ts index e5fde69492c8e..5c2b4dbdf1b96 100644 --- a/clients/client-evidently/src/commands/GetExperimentCommand.ts +++ b/clients/client-evidently/src/commands/GetExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { GetExperimentRequest, GetExperimentResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { GetExperimentRequest, GetExperimentResponse } from "../models/models_0"; import { GetExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/GetExperimentResultsCommand.ts b/clients/client-evidently/src/commands/GetExperimentResultsCommand.ts index 5d09e4980cb14..61075d2bb3dc5 100644 --- a/clients/client-evidently/src/commands/GetExperimentResultsCommand.ts +++ b/clients/client-evidently/src/commands/GetExperimentResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { GetExperimentResultsRequest, GetExperimentResultsResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { GetExperimentResultsRequest, GetExperimentResultsResponse } from "../models/models_0"; import { GetExperimentResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/GetFeatureCommand.ts b/clients/client-evidently/src/commands/GetFeatureCommand.ts index 4b22456dc5065..ccff2febb48b8 100644 --- a/clients/client-evidently/src/commands/GetFeatureCommand.ts +++ b/clients/client-evidently/src/commands/GetFeatureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { GetFeatureRequest, GetFeatureResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { GetFeatureRequest, GetFeatureResponse } from "../models/models_0"; import { GetFeature } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/GetLaunchCommand.ts b/clients/client-evidently/src/commands/GetLaunchCommand.ts index 67b67ef5d0b98..55e0b5f1975aa 100644 --- a/clients/client-evidently/src/commands/GetLaunchCommand.ts +++ b/clients/client-evidently/src/commands/GetLaunchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { GetLaunchRequest, GetLaunchResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { GetLaunchRequest, GetLaunchResponse } from "../models/models_0"; import { GetLaunch } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/GetProjectCommand.ts b/clients/client-evidently/src/commands/GetProjectCommand.ts index 8e9605e3fbbff..bb52d3db9769b 100644 --- a/clients/client-evidently/src/commands/GetProjectCommand.ts +++ b/clients/client-evidently/src/commands/GetProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { GetProjectRequest, GetProjectResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { GetProjectRequest, GetProjectResponse } from "../models/models_0"; import { GetProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/GetSegmentCommand.ts b/clients/client-evidently/src/commands/GetSegmentCommand.ts index 325c4d139d5ae..2cbbe4c26136c 100644 --- a/clients/client-evidently/src/commands/GetSegmentCommand.ts +++ b/clients/client-evidently/src/commands/GetSegmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { GetSegmentRequest, GetSegmentResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { GetSegmentRequest, GetSegmentResponse } from "../models/models_0"; import { GetSegment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/ListExperimentsCommand.ts b/clients/client-evidently/src/commands/ListExperimentsCommand.ts index a33ea34d853b4..100486bda9fa8 100644 --- a/clients/client-evidently/src/commands/ListExperimentsCommand.ts +++ b/clients/client-evidently/src/commands/ListExperimentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { ListExperimentsRequest, ListExperimentsResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { ListExperimentsRequest, ListExperimentsResponse } from "../models/models_0"; import { ListExperiments } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/ListFeaturesCommand.ts b/clients/client-evidently/src/commands/ListFeaturesCommand.ts index f79c173b129db..665d51cc7e02f 100644 --- a/clients/client-evidently/src/commands/ListFeaturesCommand.ts +++ b/clients/client-evidently/src/commands/ListFeaturesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { ListFeaturesRequest, ListFeaturesResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { ListFeaturesRequest, ListFeaturesResponse } from "../models/models_0"; import { ListFeatures } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/ListLaunchesCommand.ts b/clients/client-evidently/src/commands/ListLaunchesCommand.ts index 455292f259b30..058b185182097 100644 --- a/clients/client-evidently/src/commands/ListLaunchesCommand.ts +++ b/clients/client-evidently/src/commands/ListLaunchesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { ListLaunchesRequest, ListLaunchesResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { ListLaunchesRequest, ListLaunchesResponse } from "../models/models_0"; import { ListLaunches } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/ListProjectsCommand.ts b/clients/client-evidently/src/commands/ListProjectsCommand.ts index 103a7487d556a..12b73a2ca66ad 100644 --- a/clients/client-evidently/src/commands/ListProjectsCommand.ts +++ b/clients/client-evidently/src/commands/ListProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { ListProjectsRequest, ListProjectsResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { ListProjectsRequest, ListProjectsResponse } from "../models/models_0"; import { ListProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/ListSegmentReferencesCommand.ts b/clients/client-evidently/src/commands/ListSegmentReferencesCommand.ts index f623636854c9b..4025f70fc695b 100644 --- a/clients/client-evidently/src/commands/ListSegmentReferencesCommand.ts +++ b/clients/client-evidently/src/commands/ListSegmentReferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { ListSegmentReferencesRequest, ListSegmentReferencesResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { ListSegmentReferencesRequest, ListSegmentReferencesResponse } from "../models/models_0"; import { ListSegmentReferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/ListSegmentsCommand.ts b/clients/client-evidently/src/commands/ListSegmentsCommand.ts index 79f2b47c38bad..e73045fe2e333 100644 --- a/clients/client-evidently/src/commands/ListSegmentsCommand.ts +++ b/clients/client-evidently/src/commands/ListSegmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { ListSegmentsRequest, ListSegmentsResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { ListSegmentsRequest, ListSegmentsResponse } from "../models/models_0"; import { ListSegments } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/ListTagsForResourceCommand.ts b/clients/client-evidently/src/commands/ListTagsForResourceCommand.ts index 6ec3289c739c6..60a7243e9cce6 100644 --- a/clients/client-evidently/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-evidently/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/PutProjectEventsCommand.ts b/clients/client-evidently/src/commands/PutProjectEventsCommand.ts index 0ac1f36719bc4..67562cdfaf575 100644 --- a/clients/client-evidently/src/commands/PutProjectEventsCommand.ts +++ b/clients/client-evidently/src/commands/PutProjectEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { PutProjectEventsRequest, PutProjectEventsResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { PutProjectEventsRequest, PutProjectEventsResponse } from "../models/models_0"; import { PutProjectEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/StartExperimentCommand.ts b/clients/client-evidently/src/commands/StartExperimentCommand.ts index d3141b3b64c09..e87c074fb300d 100644 --- a/clients/client-evidently/src/commands/StartExperimentCommand.ts +++ b/clients/client-evidently/src/commands/StartExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { StartExperimentRequest, StartExperimentResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { StartExperimentRequest, StartExperimentResponse } from "../models/models_0"; import { StartExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/StartLaunchCommand.ts b/clients/client-evidently/src/commands/StartLaunchCommand.ts index f34ef8edafd99..894aa0fc509cb 100644 --- a/clients/client-evidently/src/commands/StartLaunchCommand.ts +++ b/clients/client-evidently/src/commands/StartLaunchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { StartLaunchRequest, StartLaunchResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { StartLaunchRequest, StartLaunchResponse } from "../models/models_0"; import { StartLaunch } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/StopExperimentCommand.ts b/clients/client-evidently/src/commands/StopExperimentCommand.ts index b2681cf90912e..6d2ce39fbdaf5 100644 --- a/clients/client-evidently/src/commands/StopExperimentCommand.ts +++ b/clients/client-evidently/src/commands/StopExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { StopExperimentRequest, StopExperimentResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { StopExperimentRequest, StopExperimentResponse } from "../models/models_0"; import { StopExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/StopLaunchCommand.ts b/clients/client-evidently/src/commands/StopLaunchCommand.ts index e9939153279bd..d300cf47ac638 100644 --- a/clients/client-evidently/src/commands/StopLaunchCommand.ts +++ b/clients/client-evidently/src/commands/StopLaunchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { StopLaunchRequest, StopLaunchResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { StopLaunchRequest, StopLaunchResponse } from "../models/models_0"; import { StopLaunch } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/TagResourceCommand.ts b/clients/client-evidently/src/commands/TagResourceCommand.ts index c99937cb1319c..1f4f3cdfd1429 100644 --- a/clients/client-evidently/src/commands/TagResourceCommand.ts +++ b/clients/client-evidently/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/TestSegmentPatternCommand.ts b/clients/client-evidently/src/commands/TestSegmentPatternCommand.ts index baeebfe73dc68..e2f63254f129c 100644 --- a/clients/client-evidently/src/commands/TestSegmentPatternCommand.ts +++ b/clients/client-evidently/src/commands/TestSegmentPatternCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { TestSegmentPatternRequest, TestSegmentPatternResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { TestSegmentPatternRequest, TestSegmentPatternResponse } from "../models/models_0"; import { TestSegmentPattern } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/UntagResourceCommand.ts b/clients/client-evidently/src/commands/UntagResourceCommand.ts index ad9b6a75a82b8..7b24db3a5885a 100644 --- a/clients/client-evidently/src/commands/UntagResourceCommand.ts +++ b/clients/client-evidently/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/UpdateExperimentCommand.ts b/clients/client-evidently/src/commands/UpdateExperimentCommand.ts index 60e544421a083..6115db2e56b6f 100644 --- a/clients/client-evidently/src/commands/UpdateExperimentCommand.ts +++ b/clients/client-evidently/src/commands/UpdateExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { UpdateExperimentRequest, UpdateExperimentResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { UpdateExperimentRequest, UpdateExperimentResponse } from "../models/models_0"; import { UpdateExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/UpdateFeatureCommand.ts b/clients/client-evidently/src/commands/UpdateFeatureCommand.ts index 91196e34156bb..8de9ae591bb4a 100644 --- a/clients/client-evidently/src/commands/UpdateFeatureCommand.ts +++ b/clients/client-evidently/src/commands/UpdateFeatureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { UpdateFeatureRequest, UpdateFeatureResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { UpdateFeatureRequest, UpdateFeatureResponse } from "../models/models_0"; import { UpdateFeature } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/UpdateLaunchCommand.ts b/clients/client-evidently/src/commands/UpdateLaunchCommand.ts index 88c46adff6437..e25207efad307 100644 --- a/clients/client-evidently/src/commands/UpdateLaunchCommand.ts +++ b/clients/client-evidently/src/commands/UpdateLaunchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { UpdateLaunchRequest, UpdateLaunchResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { UpdateLaunchRequest, UpdateLaunchResponse } from "../models/models_0"; import { UpdateLaunch } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/UpdateProjectCommand.ts b/clients/client-evidently/src/commands/UpdateProjectCommand.ts index eeb35ac37f300..0f23fa607dbc5 100644 --- a/clients/client-evidently/src/commands/UpdateProjectCommand.ts +++ b/clients/client-evidently/src/commands/UpdateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_0"; import { UpdateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/commands/UpdateProjectDataDeliveryCommand.ts b/clients/client-evidently/src/commands/UpdateProjectDataDeliveryCommand.ts index 237d7594ff774..d08d15f82016a 100644 --- a/clients/client-evidently/src/commands/UpdateProjectDataDeliveryCommand.ts +++ b/clients/client-evidently/src/commands/UpdateProjectDataDeliveryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; -import { UpdateProjectDataDeliveryRequest, UpdateProjectDataDeliveryResponse } from "../models/models_0"; +import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; +import type { UpdateProjectDataDeliveryRequest, UpdateProjectDataDeliveryResponse } from "../models/models_0"; import { UpdateProjectDataDelivery } from "../schemas/schemas_0"; /** diff --git a/clients/client-evidently/src/endpoint/EndpointParameters.ts b/clients/client-evidently/src/endpoint/EndpointParameters.ts index 72a2ab2652b81..f9f4fdebc0867 100644 --- a/clients/client-evidently/src/endpoint/EndpointParameters.ts +++ b/clients/client-evidently/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-evidently/src/endpoint/endpointResolver.ts b/clients/client-evidently/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-evidently/src/endpoint/endpointResolver.ts +++ b/clients/client-evidently/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-evidently/src/extensionConfiguration.ts b/clients/client-evidently/src/extensionConfiguration.ts index 455c35fe1743d..def6ab4fe6cc5 100644 --- a/clients/client-evidently/src/extensionConfiguration.ts +++ b/clients/client-evidently/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-evidently/src/models/EvidentlyServiceException.ts b/clients/client-evidently/src/models/EvidentlyServiceException.ts index f70ee6b2da94e..1033466a96531 100644 --- a/clients/client-evidently/src/models/EvidentlyServiceException.ts +++ b/clients/client-evidently/src/models/EvidentlyServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-evidently/src/models/errors.ts b/clients/client-evidently/src/models/errors.ts index 7728aacf1f252..f3e9d512c526b 100644 --- a/clients/client-evidently/src/models/errors.ts +++ b/clients/client-evidently/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { EvidentlyServiceException as __BaseException } from "./EvidentlyServiceException"; diff --git a/clients/client-evidently/src/pagination/Interfaces.ts b/clients/client-evidently/src/pagination/Interfaces.ts index 120de682a9151..b05fcdc1141c7 100644 --- a/clients/client-evidently/src/pagination/Interfaces.ts +++ b/clients/client-evidently/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EvidentlyClient } from "../EvidentlyClient"; diff --git a/clients/client-evidently/src/pagination/ListExperimentsPaginator.ts b/clients/client-evidently/src/pagination/ListExperimentsPaginator.ts index 9d4597ccabd09..b7c833facfe5e 100644 --- a/clients/client-evidently/src/pagination/ListExperimentsPaginator.ts +++ b/clients/client-evidently/src/pagination/ListExperimentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExperimentsCommand, diff --git a/clients/client-evidently/src/pagination/ListFeaturesPaginator.ts b/clients/client-evidently/src/pagination/ListFeaturesPaginator.ts index 44ed9ece56a4a..fabeec06d776a 100644 --- a/clients/client-evidently/src/pagination/ListFeaturesPaginator.ts +++ b/clients/client-evidently/src/pagination/ListFeaturesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFeaturesCommand, diff --git a/clients/client-evidently/src/pagination/ListLaunchesPaginator.ts b/clients/client-evidently/src/pagination/ListLaunchesPaginator.ts index bbe762aad0cdb..59946b469e90e 100644 --- a/clients/client-evidently/src/pagination/ListLaunchesPaginator.ts +++ b/clients/client-evidently/src/pagination/ListLaunchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLaunchesCommand, diff --git a/clients/client-evidently/src/pagination/ListProjectsPaginator.ts b/clients/client-evidently/src/pagination/ListProjectsPaginator.ts index bf0dac142c192..19085a247ff58 100644 --- a/clients/client-evidently/src/pagination/ListProjectsPaginator.ts +++ b/clients/client-evidently/src/pagination/ListProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectsCommand, diff --git a/clients/client-evidently/src/pagination/ListSegmentReferencesPaginator.ts b/clients/client-evidently/src/pagination/ListSegmentReferencesPaginator.ts index 6b6ae9c6ef574..1642c544a472b 100644 --- a/clients/client-evidently/src/pagination/ListSegmentReferencesPaginator.ts +++ b/clients/client-evidently/src/pagination/ListSegmentReferencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSegmentReferencesCommand, diff --git a/clients/client-evidently/src/pagination/ListSegmentsPaginator.ts b/clients/client-evidently/src/pagination/ListSegmentsPaginator.ts index a84b8a3318cc2..290e989302baa 100644 --- a/clients/client-evidently/src/pagination/ListSegmentsPaginator.ts +++ b/clients/client-evidently/src/pagination/ListSegmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSegmentsCommand, diff --git a/clients/client-evidently/src/runtimeConfig.browser.ts b/clients/client-evidently/src/runtimeConfig.browser.ts index ab50d93166f12..71110db221681 100644 --- a/clients/client-evidently/src/runtimeConfig.browser.ts +++ b/clients/client-evidently/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EvidentlyClientConfig } from "./EvidentlyClient"; + +import type { EvidentlyClientConfig } from "./EvidentlyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-evidently/src/runtimeConfig.native.ts b/clients/client-evidently/src/runtimeConfig.native.ts index 3c2235966a7ce..a5b69672f4b01 100644 --- a/clients/client-evidently/src/runtimeConfig.native.ts +++ b/clients/client-evidently/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EvidentlyClientConfig } from "./EvidentlyClient"; +import type { EvidentlyClientConfig } from "./EvidentlyClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-evidently/src/runtimeConfig.shared.ts b/clients/client-evidently/src/runtimeConfig.shared.ts index 40e4c82a9f0a8..63ff096bc32fd 100644 --- a/clients/client-evidently/src/runtimeConfig.shared.ts +++ b/clients/client-evidently/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEvidentlyHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { EvidentlyClientConfig } from "./EvidentlyClient"; +import type { EvidentlyClientConfig } from "./EvidentlyClient"; /** * @internal diff --git a/clients/client-evidently/src/runtimeConfig.ts b/clients/client-evidently/src/runtimeConfig.ts index e8479f57530f3..6f5ce72b65c4a 100644 --- a/clients/client-evidently/src/runtimeConfig.ts +++ b/clients/client-evidently/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EvidentlyClientConfig } from "./EvidentlyClient"; + +import type { EvidentlyClientConfig } from "./EvidentlyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-evidently/src/runtimeExtensions.ts b/clients/client-evidently/src/runtimeExtensions.ts index 2db8a7633e389..abcbd7ed49037 100644 --- a/clients/client-evidently/src/runtimeExtensions.ts +++ b/clients/client-evidently/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EvidentlyExtensionConfiguration } from "./extensionConfiguration"; +import type { EvidentlyExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-evidently/src/schemas/schemas_0.ts b/clients/client-evidently/src/schemas/schemas_0.ts index fedcb2f4e68ab..b91cbad09a65d 100644 --- a/clients/client-evidently/src/schemas/schemas_0.ts +++ b/clients/client-evidently/src/schemas/schemas_0.ts @@ -335,7 +335,7 @@ const n0 = "com.amazonaws.evidently"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-evs/package.json b/clients/client-evs/package.json index 665983565195e..b3a2511bbc558 100644 --- a/clients/client-evs/package.json +++ b/clients/client-evs/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-evs/src/Evs.ts b/clients/client-evs/src/Evs.ts index f4a796dabfd84..eb48d79eb8c0b 100644 --- a/clients/client-evs/src/Evs.ts +++ b/clients/client-evs/src/Evs.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateEipToVlanCommand, @@ -63,7 +63,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { EvsClient, EvsClientConfig } from "./EvsClient"; +import { EvsClient } from "./EvsClient"; const commands = { AssociateEipToVlanCommand, diff --git a/clients/client-evs/src/EvsClient.ts b/clients/client-evs/src/EvsClient.ts index 9fe15d17e9108..b826ee6e24181 100644 --- a/clients/client-evs/src/EvsClient.ts +++ b/clients/client-evs/src/EvsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEvsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateEipToVlanCommandInput, AssociateEipToVlanCommandOutput } from "./commands/AssociateEipToVlanCommand"; @@ -95,7 +104,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-evs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-evs/src/auth/httpAuthExtensionConfiguration.ts index 8d82a7f86ea4d..71810e610e9b9 100644 --- a/clients/client-evs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-evs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EvsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EvsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-evs/src/auth/httpAuthSchemeProvider.ts b/clients/client-evs/src/auth/httpAuthSchemeProvider.ts index 5696f975d7417..7d246b14052d4 100644 --- a/clients/client-evs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-evs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EvsClientConfig, EvsClientResolvedConfig } from "../EvsClient"; +import { type EvsClientResolvedConfig, EvsClientConfig } from "../EvsClient"; /** * @internal diff --git a/clients/client-evs/src/commands/AssociateEipToVlanCommand.ts b/clients/client-evs/src/commands/AssociateEipToVlanCommand.ts index f5ceeb5eb41d1..f228ab6b10f27 100644 --- a/clients/client-evs/src/commands/AssociateEipToVlanCommand.ts +++ b/clients/client-evs/src/commands/AssociateEipToVlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { AssociateEipToVlanRequest, AssociateEipToVlanResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { AssociateEipToVlanRequest, AssociateEipToVlanResponse } from "../models/models_0"; import { AssociateEipToVlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/CreateEnvironmentCommand.ts b/clients/client-evs/src/commands/CreateEnvironmentCommand.ts index 6b783122b0174..d3f424885e685 100644 --- a/clients/client-evs/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-evs/src/commands/CreateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; import { CreateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/CreateEnvironmentHostCommand.ts b/clients/client-evs/src/commands/CreateEnvironmentHostCommand.ts index 8d4fdad91bc88..4b61c3e927650 100644 --- a/clients/client-evs/src/commands/CreateEnvironmentHostCommand.ts +++ b/clients/client-evs/src/commands/CreateEnvironmentHostCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { CreateEnvironmentHostRequest, CreateEnvironmentHostResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { CreateEnvironmentHostRequest, CreateEnvironmentHostResponse } from "../models/models_0"; import { CreateEnvironmentHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/DeleteEnvironmentCommand.ts b/clients/client-evs/src/commands/DeleteEnvironmentCommand.ts index 432b17925e0e6..b206b3fca7506 100644 --- a/clients/client-evs/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-evs/src/commands/DeleteEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; import { DeleteEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/DeleteEnvironmentHostCommand.ts b/clients/client-evs/src/commands/DeleteEnvironmentHostCommand.ts index 83f0ca06c12c5..0144ba7c74777 100644 --- a/clients/client-evs/src/commands/DeleteEnvironmentHostCommand.ts +++ b/clients/client-evs/src/commands/DeleteEnvironmentHostCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { DeleteEnvironmentHostRequest, DeleteEnvironmentHostResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { DeleteEnvironmentHostRequest, DeleteEnvironmentHostResponse } from "../models/models_0"; import { DeleteEnvironmentHost } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/DisassociateEipFromVlanCommand.ts b/clients/client-evs/src/commands/DisassociateEipFromVlanCommand.ts index c561180fcae3d..eb67ed7cf6b77 100644 --- a/clients/client-evs/src/commands/DisassociateEipFromVlanCommand.ts +++ b/clients/client-evs/src/commands/DisassociateEipFromVlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { DisassociateEipFromVlanRequest, DisassociateEipFromVlanResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { DisassociateEipFromVlanRequest, DisassociateEipFromVlanResponse } from "../models/models_0"; import { DisassociateEipFromVlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/GetEnvironmentCommand.ts b/clients/client-evs/src/commands/GetEnvironmentCommand.ts index 5a8028c65d07e..9978f2a306c8e 100644 --- a/clients/client-evs/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-evs/src/commands/GetEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; import { GetEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/ListEnvironmentHostsCommand.ts b/clients/client-evs/src/commands/ListEnvironmentHostsCommand.ts index b339ef1872328..dee11bd30902f 100644 --- a/clients/client-evs/src/commands/ListEnvironmentHostsCommand.ts +++ b/clients/client-evs/src/commands/ListEnvironmentHostsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { ListEnvironmentHostsRequest, ListEnvironmentHostsResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { ListEnvironmentHostsRequest, ListEnvironmentHostsResponse } from "../models/models_0"; import { ListEnvironmentHosts } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/ListEnvironmentVlansCommand.ts b/clients/client-evs/src/commands/ListEnvironmentVlansCommand.ts index 8f565075912c6..a111251dc12e4 100644 --- a/clients/client-evs/src/commands/ListEnvironmentVlansCommand.ts +++ b/clients/client-evs/src/commands/ListEnvironmentVlansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { ListEnvironmentVlansRequest, ListEnvironmentVlansResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { ListEnvironmentVlansRequest, ListEnvironmentVlansResponse } from "../models/models_0"; import { ListEnvironmentVlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/ListEnvironmentsCommand.ts b/clients/client-evs/src/commands/ListEnvironmentsCommand.ts index 683e2acbb3018..358ab93bb7e06 100644 --- a/clients/client-evs/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-evs/src/commands/ListEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; import { ListEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/ListTagsForResourceCommand.ts b/clients/client-evs/src/commands/ListTagsForResourceCommand.ts index 4d106079ec961..10c39828f8fda 100644 --- a/clients/client-evs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-evs/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/TagResourceCommand.ts b/clients/client-evs/src/commands/TagResourceCommand.ts index b0d6117d51b7d..5de9b076e6453 100644 --- a/clients/client-evs/src/commands/TagResourceCommand.ts +++ b/clients/client-evs/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/commands/UntagResourceCommand.ts b/clients/client-evs/src/commands/UntagResourceCommand.ts index 59d23c79b599c..7feaaa4bc2713 100644 --- a/clients/client-evs/src/commands/UntagResourceCommand.ts +++ b/clients/client-evs/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-evs/src/endpoint/EndpointParameters.ts b/clients/client-evs/src/endpoint/EndpointParameters.ts index 7f39c672a857a..0e609f7c6b2de 100644 --- a/clients/client-evs/src/endpoint/EndpointParameters.ts +++ b/clients/client-evs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-evs/src/endpoint/endpointResolver.ts b/clients/client-evs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-evs/src/endpoint/endpointResolver.ts +++ b/clients/client-evs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-evs/src/extensionConfiguration.ts b/clients/client-evs/src/extensionConfiguration.ts index 85e0197a1170e..2ed5fb4b61745 100644 --- a/clients/client-evs/src/extensionConfiguration.ts +++ b/clients/client-evs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-evs/src/models/EvsServiceException.ts b/clients/client-evs/src/models/EvsServiceException.ts index e813d959dc433..aa301fa96f287 100644 --- a/clients/client-evs/src/models/EvsServiceException.ts +++ b/clients/client-evs/src/models/EvsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-evs/src/models/errors.ts b/clients/client-evs/src/models/errors.ts index f91341a9196a6..4629f59cc26c8 100644 --- a/clients/client-evs/src/models/errors.ts +++ b/clients/client-evs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { EvsServiceException as __BaseException } from "./EvsServiceException"; diff --git a/clients/client-evs/src/pagination/Interfaces.ts b/clients/client-evs/src/pagination/Interfaces.ts index 047d050fda68a..c75839d35f9a6 100644 --- a/clients/client-evs/src/pagination/Interfaces.ts +++ b/clients/client-evs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { EvsClient } from "../EvsClient"; diff --git a/clients/client-evs/src/pagination/ListEnvironmentHostsPaginator.ts b/clients/client-evs/src/pagination/ListEnvironmentHostsPaginator.ts index f28a73518dac1..e7a06dc1de5ab 100644 --- a/clients/client-evs/src/pagination/ListEnvironmentHostsPaginator.ts +++ b/clients/client-evs/src/pagination/ListEnvironmentHostsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentHostsCommand, diff --git a/clients/client-evs/src/pagination/ListEnvironmentVlansPaginator.ts b/clients/client-evs/src/pagination/ListEnvironmentVlansPaginator.ts index 1da02688cb152..a729633b41596 100644 --- a/clients/client-evs/src/pagination/ListEnvironmentVlansPaginator.ts +++ b/clients/client-evs/src/pagination/ListEnvironmentVlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentVlansCommand, diff --git a/clients/client-evs/src/pagination/ListEnvironmentsPaginator.ts b/clients/client-evs/src/pagination/ListEnvironmentsPaginator.ts index f60b33bf3d1d3..5458a0c7378b8 100644 --- a/clients/client-evs/src/pagination/ListEnvironmentsPaginator.ts +++ b/clients/client-evs/src/pagination/ListEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentsCommand, diff --git a/clients/client-evs/src/runtimeConfig.browser.ts b/clients/client-evs/src/runtimeConfig.browser.ts index 05fd2c639bb1f..53d37118f378f 100644 --- a/clients/client-evs/src/runtimeConfig.browser.ts +++ b/clients/client-evs/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EvsClientConfig } from "./EvsClient"; + +import type { EvsClientConfig } from "./EvsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-evs/src/runtimeConfig.native.ts b/clients/client-evs/src/runtimeConfig.native.ts index 5a597cf5d7e01..f86a2a3f20f0d 100644 --- a/clients/client-evs/src/runtimeConfig.native.ts +++ b/clients/client-evs/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EvsClientConfig } from "./EvsClient"; +import type { EvsClientConfig } from "./EvsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-evs/src/runtimeConfig.shared.ts b/clients/client-evs/src/runtimeConfig.shared.ts index 4ea7a65a11d19..1d1cd58665b83 100644 --- a/clients/client-evs/src/runtimeConfig.shared.ts +++ b/clients/client-evs/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEvsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { EvsClientConfig } from "./EvsClient"; +import type { EvsClientConfig } from "./EvsClient"; /** * @internal diff --git a/clients/client-evs/src/runtimeConfig.ts b/clients/client-evs/src/runtimeConfig.ts index 1b9830505a3ea..03752bfb820b6 100644 --- a/clients/client-evs/src/runtimeConfig.ts +++ b/clients/client-evs/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EvsClientConfig } from "./EvsClient"; + +import type { EvsClientConfig } from "./EvsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-evs/src/runtimeExtensions.ts b/clients/client-evs/src/runtimeExtensions.ts index f7056fbd23d58..66106e25ae1d8 100644 --- a/clients/client-evs/src/runtimeExtensions.ts +++ b/clients/client-evs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EvsExtensionConfiguration } from "./extensionConfiguration"; +import type { EvsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-evs/src/schemas/schemas_0.ts b/clients/client-evs/src/schemas/schemas_0.ts index c0f22ddacc9de..fbca01c9b7292 100644 --- a/clients/client-evs/src/schemas/schemas_0.ts +++ b/clients/client-evs/src/schemas/schemas_0.ts @@ -174,7 +174,7 @@ const n0 = "com.amazonaws.evs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-finspace-data/package.json b/clients/client-finspace-data/package.json index 77c466f1b77a7..ea1d314be7459 100644 --- a/clients/client-finspace-data/package.json +++ b/clients/client-finspace-data/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-finspace-data/src/FinspaceData.ts b/clients/client-finspace-data/src/FinspaceData.ts index 3581f90aaadc9..b2b1390479d5a 100644 --- a/clients/client-finspace-data/src/FinspaceData.ts +++ b/clients/client-finspace-data/src/FinspaceData.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateUserToPermissionGroupCommand, @@ -125,7 +125,7 @@ import { UpdatePermissionGroupCommandOutput, } from "./commands/UpdatePermissionGroupCommand"; import { UpdateUserCommand, UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand"; -import { FinspaceDataClient, FinspaceDataClientConfig } from "./FinspaceDataClient"; +import { FinspaceDataClient } from "./FinspaceDataClient"; const commands = { AssociateUserToPermissionGroupCommand, diff --git a/clients/client-finspace-data/src/FinspaceDataClient.ts b/clients/client-finspace-data/src/FinspaceDataClient.ts index f7d3bc1a89279..89bc14253bb87 100644 --- a/clients/client-finspace-data/src/FinspaceDataClient.ts +++ b/clients/client-finspace-data/src/FinspaceDataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultFinspaceDataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -125,7 +134,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-finspace-data/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-finspace-data/src/auth/httpAuthExtensionConfiguration.ts index 0e797d69ea4c7..35438637d4fc5 100644 --- a/clients/client-finspace-data/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-finspace-data/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { FinspaceDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { FinspaceDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-finspace-data/src/auth/httpAuthSchemeProvider.ts b/clients/client-finspace-data/src/auth/httpAuthSchemeProvider.ts index 35b66768d8ddd..f22c0bf500822 100644 --- a/clients/client-finspace-data/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-finspace-data/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { FinspaceDataClientConfig, FinspaceDataClientResolvedConfig } from "../FinspaceDataClient"; +import { type FinspaceDataClientResolvedConfig, FinspaceDataClientConfig } from "../FinspaceDataClient"; /** * @internal diff --git a/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts index c9bc207a63f7f..0f627a8d03f35 100644 --- a/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/AssociateUserToPermissionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { AssociateUserToPermissionGroupRequest, AssociateUserToPermissionGroupResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { AssociateUserToPermissionGroupRequest, AssociateUserToPermissionGroupResponse } from "../models/models_0"; import { AssociateUserToPermissionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/CreateChangesetCommand.ts b/clients/client-finspace-data/src/commands/CreateChangesetCommand.ts index 8c5068cea6941..be56d11764e0a 100644 --- a/clients/client-finspace-data/src/commands/CreateChangesetCommand.ts +++ b/clients/client-finspace-data/src/commands/CreateChangesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { CreateChangesetRequest, CreateChangesetResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { CreateChangesetRequest, CreateChangesetResponse } from "../models/models_0"; import { CreateChangeset } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/CreateDataViewCommand.ts b/clients/client-finspace-data/src/commands/CreateDataViewCommand.ts index 3220829eb040b..18d4db1d6db71 100644 --- a/clients/client-finspace-data/src/commands/CreateDataViewCommand.ts +++ b/clients/client-finspace-data/src/commands/CreateDataViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { CreateDataViewRequest, CreateDataViewResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { CreateDataViewRequest, CreateDataViewResponse } from "../models/models_0"; import { CreateDataView } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/CreateDatasetCommand.ts b/clients/client-finspace-data/src/commands/CreateDatasetCommand.ts index 35a6e93383150..5813d8ef6d35d 100644 --- a/clients/client-finspace-data/src/commands/CreateDatasetCommand.ts +++ b/clients/client-finspace-data/src/commands/CreateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; import { CreateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/CreatePermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/CreatePermissionGroupCommand.ts index b624c29177ef4..1315d2359b238 100644 --- a/clients/client-finspace-data/src/commands/CreatePermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/CreatePermissionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { CreatePermissionGroupRequest, CreatePermissionGroupResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { CreatePermissionGroupRequest, CreatePermissionGroupResponse } from "../models/models_0"; import { CreatePermissionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/CreateUserCommand.ts b/clients/client-finspace-data/src/commands/CreateUserCommand.ts index 47f34e11dede3..42c57f271dbd9 100644 --- a/clients/client-finspace-data/src/commands/CreateUserCommand.ts +++ b/clients/client-finspace-data/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/DeleteDatasetCommand.ts b/clients/client-finspace-data/src/commands/DeleteDatasetCommand.ts index 82f3f08feb88d..4aaad6f037273 100644 --- a/clients/client-finspace-data/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-finspace-data/src/commands/DeleteDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; import { DeleteDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/DeletePermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/DeletePermissionGroupCommand.ts index 01ac647ed2983..120a71523dd6b 100644 --- a/clients/client-finspace-data/src/commands/DeletePermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/DeletePermissionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { DeletePermissionGroupRequest, DeletePermissionGroupResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { DeletePermissionGroupRequest, DeletePermissionGroupResponse } from "../models/models_0"; import { DeletePermissionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/DisableUserCommand.ts b/clients/client-finspace-data/src/commands/DisableUserCommand.ts index a5063bd1c06b3..559cffc822780 100644 --- a/clients/client-finspace-data/src/commands/DisableUserCommand.ts +++ b/clients/client-finspace-data/src/commands/DisableUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { DisableUserRequest, DisableUserResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { DisableUserRequest, DisableUserResponse } from "../models/models_0"; import { DisableUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts index a8cff21574414..ff0d3e436494a 100644 --- a/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/DisassociateUserFromPermissionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { DisassociateUserFromPermissionGroupRequest, DisassociateUserFromPermissionGroupResponse, } from "../models/models_0"; diff --git a/clients/client-finspace-data/src/commands/EnableUserCommand.ts b/clients/client-finspace-data/src/commands/EnableUserCommand.ts index 041bfd9f64e4a..625eb6034d1ac 100644 --- a/clients/client-finspace-data/src/commands/EnableUserCommand.ts +++ b/clients/client-finspace-data/src/commands/EnableUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { EnableUserRequest, EnableUserResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { EnableUserRequest, EnableUserResponse } from "../models/models_0"; import { EnableUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/GetChangesetCommand.ts b/clients/client-finspace-data/src/commands/GetChangesetCommand.ts index 62d0128434de8..acbacf79371e8 100644 --- a/clients/client-finspace-data/src/commands/GetChangesetCommand.ts +++ b/clients/client-finspace-data/src/commands/GetChangesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { GetChangesetRequest, GetChangesetResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { GetChangesetRequest, GetChangesetResponse } from "../models/models_0"; import { GetChangeset } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/GetDataViewCommand.ts b/clients/client-finspace-data/src/commands/GetDataViewCommand.ts index 9533ee2aea1cd..28b4e18cb09ea 100644 --- a/clients/client-finspace-data/src/commands/GetDataViewCommand.ts +++ b/clients/client-finspace-data/src/commands/GetDataViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { GetDataViewRequest, GetDataViewResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { GetDataViewRequest, GetDataViewResponse } from "../models/models_0"; import { GetDataView } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/GetDatasetCommand.ts b/clients/client-finspace-data/src/commands/GetDatasetCommand.ts index bba83de570408..9503c243fc401 100644 --- a/clients/client-finspace-data/src/commands/GetDatasetCommand.ts +++ b/clients/client-finspace-data/src/commands/GetDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { GetDatasetRequest, GetDatasetResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { GetDatasetRequest, GetDatasetResponse } from "../models/models_0"; import { GetDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/GetExternalDataViewAccessDetailsCommand.ts b/clients/client-finspace-data/src/commands/GetExternalDataViewAccessDetailsCommand.ts index 2383c36a05681..c81340101e1f9 100644 --- a/clients/client-finspace-data/src/commands/GetExternalDataViewAccessDetailsCommand.ts +++ b/clients/client-finspace-data/src/commands/GetExternalDataViewAccessDetailsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { GetExternalDataViewAccessDetailsRequest, GetExternalDataViewAccessDetailsResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { + GetExternalDataViewAccessDetailsRequest, + GetExternalDataViewAccessDetailsResponse, +} from "../models/models_0"; import { GetExternalDataViewAccessDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/GetPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/GetPermissionGroupCommand.ts index 95a9b50f9cc32..186a5955995c8 100644 --- a/clients/client-finspace-data/src/commands/GetPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/GetPermissionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { GetPermissionGroupRequest, GetPermissionGroupResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { GetPermissionGroupRequest, GetPermissionGroupResponse } from "../models/models_0"; import { GetPermissionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts b/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts index b10bc85241b4a..78cb85f5120e4 100644 --- a/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts +++ b/clients/client-finspace-data/src/commands/GetProgrammaticAccessCredentialsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { GetProgrammaticAccessCredentialsRequest, GetProgrammaticAccessCredentialsResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { + GetProgrammaticAccessCredentialsRequest, + GetProgrammaticAccessCredentialsResponse, +} from "../models/models_0"; import { GetProgrammaticAccessCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/GetUserCommand.ts b/clients/client-finspace-data/src/commands/GetUserCommand.ts index a34e6fc7892bf..586c547785acc 100644 --- a/clients/client-finspace-data/src/commands/GetUserCommand.ts +++ b/clients/client-finspace-data/src/commands/GetUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { GetUserRequest, GetUserResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { GetUserRequest, GetUserResponse } from "../models/models_0"; import { GetUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/GetWorkingLocationCommand.ts b/clients/client-finspace-data/src/commands/GetWorkingLocationCommand.ts index 30757951fcdf4..873ce5c62a51d 100644 --- a/clients/client-finspace-data/src/commands/GetWorkingLocationCommand.ts +++ b/clients/client-finspace-data/src/commands/GetWorkingLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { GetWorkingLocationRequest, GetWorkingLocationResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { GetWorkingLocationRequest, GetWorkingLocationResponse } from "../models/models_0"; import { GetWorkingLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/ListChangesetsCommand.ts b/clients/client-finspace-data/src/commands/ListChangesetsCommand.ts index c4b02e66ef5e4..32ed09e2a2484 100644 --- a/clients/client-finspace-data/src/commands/ListChangesetsCommand.ts +++ b/clients/client-finspace-data/src/commands/ListChangesetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { ListChangesetsRequest, ListChangesetsResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { ListChangesetsRequest, ListChangesetsResponse } from "../models/models_0"; import { ListChangesets } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/ListDataViewsCommand.ts b/clients/client-finspace-data/src/commands/ListDataViewsCommand.ts index bcf94e5c17e16..797af9e9ea265 100644 --- a/clients/client-finspace-data/src/commands/ListDataViewsCommand.ts +++ b/clients/client-finspace-data/src/commands/ListDataViewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { ListDataViewsRequest, ListDataViewsResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { ListDataViewsRequest, ListDataViewsResponse } from "../models/models_0"; import { ListDataViews } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/ListDatasetsCommand.ts b/clients/client-finspace-data/src/commands/ListDatasetsCommand.ts index 8c473bd52b122..c3fc355d72464 100644 --- a/clients/client-finspace-data/src/commands/ListDatasetsCommand.ts +++ b/clients/client-finspace-data/src/commands/ListDatasetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; import { ListDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts b/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts index c6a4991bf5f04..3ee7f8f880b91 100644 --- a/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts +++ b/clients/client-finspace-data/src/commands/ListPermissionGroupsByUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { ListPermissionGroupsByUserRequest, ListPermissionGroupsByUserResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { ListPermissionGroupsByUserRequest, ListPermissionGroupsByUserResponse } from "../models/models_0"; import { ListPermissionGroupsByUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/ListPermissionGroupsCommand.ts b/clients/client-finspace-data/src/commands/ListPermissionGroupsCommand.ts index 48c0bfa6566e5..291f129cdd0b8 100644 --- a/clients/client-finspace-data/src/commands/ListPermissionGroupsCommand.ts +++ b/clients/client-finspace-data/src/commands/ListPermissionGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { ListPermissionGroupsRequest, ListPermissionGroupsResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { ListPermissionGroupsRequest, ListPermissionGroupsResponse } from "../models/models_0"; import { ListPermissionGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/ListUsersByPermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/ListUsersByPermissionGroupCommand.ts index bdb8c3421858b..00b35abc03529 100644 --- a/clients/client-finspace-data/src/commands/ListUsersByPermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/ListUsersByPermissionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { ListUsersByPermissionGroupRequest, ListUsersByPermissionGroupResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { ListUsersByPermissionGroupRequest, ListUsersByPermissionGroupResponse } from "../models/models_0"; import { ListUsersByPermissionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/ListUsersCommand.ts b/clients/client-finspace-data/src/commands/ListUsersCommand.ts index ad817f3402ace..bd5b29e5909b6 100644 --- a/clients/client-finspace-data/src/commands/ListUsersCommand.ts +++ b/clients/client-finspace-data/src/commands/ListUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_0"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/ResetUserPasswordCommand.ts b/clients/client-finspace-data/src/commands/ResetUserPasswordCommand.ts index b833e99505a98..84e8a7045a381 100644 --- a/clients/client-finspace-data/src/commands/ResetUserPasswordCommand.ts +++ b/clients/client-finspace-data/src/commands/ResetUserPasswordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { ResetUserPasswordRequest, ResetUserPasswordResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { ResetUserPasswordRequest, ResetUserPasswordResponse } from "../models/models_0"; import { ResetUserPassword } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/UpdateChangesetCommand.ts b/clients/client-finspace-data/src/commands/UpdateChangesetCommand.ts index a9616a0aa84b2..c40f0d6dffb43 100644 --- a/clients/client-finspace-data/src/commands/UpdateChangesetCommand.ts +++ b/clients/client-finspace-data/src/commands/UpdateChangesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { UpdateChangesetRequest, UpdateChangesetResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { UpdateChangesetRequest, UpdateChangesetResponse } from "../models/models_0"; import { UpdateChangeset } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/UpdateDatasetCommand.ts b/clients/client-finspace-data/src/commands/UpdateDatasetCommand.ts index deedaaca10f97..1a4fa2f61f0ec 100644 --- a/clients/client-finspace-data/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-finspace-data/src/commands/UpdateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_0"; import { UpdateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/UpdatePermissionGroupCommand.ts b/clients/client-finspace-data/src/commands/UpdatePermissionGroupCommand.ts index d5090759e2cf1..d760dc1a56709 100644 --- a/clients/client-finspace-data/src/commands/UpdatePermissionGroupCommand.ts +++ b/clients/client-finspace-data/src/commands/UpdatePermissionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { UpdatePermissionGroupRequest, UpdatePermissionGroupResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { UpdatePermissionGroupRequest, UpdatePermissionGroupResponse } from "../models/models_0"; import { UpdatePermissionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/commands/UpdateUserCommand.ts b/clients/client-finspace-data/src/commands/UpdateUserCommand.ts index 75dcaad3ba8ff..bef9ca21df863 100644 --- a/clients/client-finspace-data/src/commands/UpdateUserCommand.ts +++ b/clients/client-finspace-data/src/commands/UpdateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; +import type { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; import { UpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace-data/src/endpoint/EndpointParameters.ts b/clients/client-finspace-data/src/endpoint/EndpointParameters.ts index 3cc2eb3dc0718..f3d7dbfb1e160 100644 --- a/clients/client-finspace-data/src/endpoint/EndpointParameters.ts +++ b/clients/client-finspace-data/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-finspace-data/src/endpoint/endpointResolver.ts b/clients/client-finspace-data/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-finspace-data/src/endpoint/endpointResolver.ts +++ b/clients/client-finspace-data/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-finspace-data/src/extensionConfiguration.ts b/clients/client-finspace-data/src/extensionConfiguration.ts index 994ac578dfb04..6bfc9f86c8e67 100644 --- a/clients/client-finspace-data/src/extensionConfiguration.ts +++ b/clients/client-finspace-data/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-finspace-data/src/models/FinspaceDataServiceException.ts b/clients/client-finspace-data/src/models/FinspaceDataServiceException.ts index 9658504a5cfb5..5c01beb2f6c05 100644 --- a/clients/client-finspace-data/src/models/FinspaceDataServiceException.ts +++ b/clients/client-finspace-data/src/models/FinspaceDataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-finspace-data/src/models/errors.ts b/clients/client-finspace-data/src/models/errors.ts index 5e0554bdce35e..99dba19ed7a25 100644 --- a/clients/client-finspace-data/src/models/errors.ts +++ b/clients/client-finspace-data/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { FinspaceDataServiceException as __BaseException } from "./FinspaceDataServiceException"; diff --git a/clients/client-finspace-data/src/pagination/Interfaces.ts b/clients/client-finspace-data/src/pagination/Interfaces.ts index b0179d0da9202..42264dbaa8233 100644 --- a/clients/client-finspace-data/src/pagination/Interfaces.ts +++ b/clients/client-finspace-data/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { FinspaceDataClient } from "../FinspaceDataClient"; diff --git a/clients/client-finspace-data/src/pagination/ListChangesetsPaginator.ts b/clients/client-finspace-data/src/pagination/ListChangesetsPaginator.ts index 6fcb25e171aa9..b037548aac3b5 100644 --- a/clients/client-finspace-data/src/pagination/ListChangesetsPaginator.ts +++ b/clients/client-finspace-data/src/pagination/ListChangesetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChangesetsCommand, diff --git a/clients/client-finspace-data/src/pagination/ListDataViewsPaginator.ts b/clients/client-finspace-data/src/pagination/ListDataViewsPaginator.ts index 5b0c2dcfd5bd2..853649c12407a 100644 --- a/clients/client-finspace-data/src/pagination/ListDataViewsPaginator.ts +++ b/clients/client-finspace-data/src/pagination/ListDataViewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataViewsCommand, diff --git a/clients/client-finspace-data/src/pagination/ListDatasetsPaginator.ts b/clients/client-finspace-data/src/pagination/ListDatasetsPaginator.ts index ea45d82f483bc..0a54bd7cfb221 100644 --- a/clients/client-finspace-data/src/pagination/ListDatasetsPaginator.ts +++ b/clients/client-finspace-data/src/pagination/ListDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetsCommand, diff --git a/clients/client-finspace-data/src/pagination/ListPermissionGroupsPaginator.ts b/clients/client-finspace-data/src/pagination/ListPermissionGroupsPaginator.ts index 3e816326f6dac..a10d720672ad2 100644 --- a/clients/client-finspace-data/src/pagination/ListPermissionGroupsPaginator.ts +++ b/clients/client-finspace-data/src/pagination/ListPermissionGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPermissionGroupsCommand, diff --git a/clients/client-finspace-data/src/pagination/ListUsersPaginator.ts b/clients/client-finspace-data/src/pagination/ListUsersPaginator.ts index 0d7f7f31e4783..51aeed9695845 100644 --- a/clients/client-finspace-data/src/pagination/ListUsersPaginator.ts +++ b/clients/client-finspace-data/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; import { FinspaceDataClient } from "../FinspaceDataClient"; diff --git a/clients/client-finspace-data/src/runtimeConfig.browser.ts b/clients/client-finspace-data/src/runtimeConfig.browser.ts index 9bd3baa6e681a..cb367b95cbd90 100644 --- a/clients/client-finspace-data/src/runtimeConfig.browser.ts +++ b/clients/client-finspace-data/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FinspaceDataClientConfig } from "./FinspaceDataClient"; + +import type { FinspaceDataClientConfig } from "./FinspaceDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-finspace-data/src/runtimeConfig.native.ts b/clients/client-finspace-data/src/runtimeConfig.native.ts index ec5b1e5acca11..4544a50990a81 100644 --- a/clients/client-finspace-data/src/runtimeConfig.native.ts +++ b/clients/client-finspace-data/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { FinspaceDataClientConfig } from "./FinspaceDataClient"; +import type { FinspaceDataClientConfig } from "./FinspaceDataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-finspace-data/src/runtimeConfig.shared.ts b/clients/client-finspace-data/src/runtimeConfig.shared.ts index a757de8e5e352..f15cab5faacac 100644 --- a/clients/client-finspace-data/src/runtimeConfig.shared.ts +++ b/clients/client-finspace-data/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultFinspaceDataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { FinspaceDataClientConfig } from "./FinspaceDataClient"; +import type { FinspaceDataClientConfig } from "./FinspaceDataClient"; /** * @internal diff --git a/clients/client-finspace-data/src/runtimeConfig.ts b/clients/client-finspace-data/src/runtimeConfig.ts index e45876f8faa53..7eb3875d6e31a 100644 --- a/clients/client-finspace-data/src/runtimeConfig.ts +++ b/clients/client-finspace-data/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FinspaceDataClientConfig } from "./FinspaceDataClient"; + +import type { FinspaceDataClientConfig } from "./FinspaceDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-finspace-data/src/runtimeExtensions.ts b/clients/client-finspace-data/src/runtimeExtensions.ts index df286c39c41f8..6925de84b650b 100644 --- a/clients/client-finspace-data/src/runtimeExtensions.ts +++ b/clients/client-finspace-data/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { FinspaceDataExtensionConfiguration } from "./extensionConfiguration"; +import type { FinspaceDataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-finspace-data/src/schemas/schemas_0.ts b/clients/client-finspace-data/src/schemas/schemas_0.ts index e72f0bfa56d4f..eb2c82c7bad17 100644 --- a/clients/client-finspace-data/src/schemas/schemas_0.ts +++ b/clients/client-finspace-data/src/schemas/schemas_0.ts @@ -233,7 +233,7 @@ const n0 = "com.amazonaws.finspacedata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-finspace/package.json b/clients/client-finspace/package.json index a7fb774be133e..b3fbedb06f510 100644 --- a/clients/client-finspace/package.json +++ b/clients/client-finspace/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-finspace/src/Finspace.ts b/clients/client-finspace/src/Finspace.ts index ba35dbfdc5332..5014462f820cc 100644 --- a/clients/client-finspace/src/Finspace.ts +++ b/clients/client-finspace/src/Finspace.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateEnvironmentCommand, @@ -236,7 +236,7 @@ import { UpdateKxVolumeCommandInput, UpdateKxVolumeCommandOutput, } from "./commands/UpdateKxVolumeCommand"; -import { FinspaceClient, FinspaceClientConfig } from "./FinspaceClient"; +import { FinspaceClient } from "./FinspaceClient"; const commands = { CreateEnvironmentCommand, diff --git a/clients/client-finspace/src/FinspaceClient.ts b/clients/client-finspace/src/FinspaceClient.ts index 199a5163f78f4..98d6dce1ed297 100644 --- a/clients/client-finspace/src/FinspaceClient.ts +++ b/clients/client-finspace/src/FinspaceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultFinspaceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand"; @@ -150,7 +159,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-finspace/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-finspace/src/auth/httpAuthExtensionConfiguration.ts index 64673f28e5203..cc9cf9c44eee3 100644 --- a/clients/client-finspace/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-finspace/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { FinspaceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { FinspaceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-finspace/src/auth/httpAuthSchemeProvider.ts b/clients/client-finspace/src/auth/httpAuthSchemeProvider.ts index b9f26d9b2d30f..6f51e0d93073f 100644 --- a/clients/client-finspace/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-finspace/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { FinspaceClientConfig, FinspaceClientResolvedConfig } from "../FinspaceClient"; +import { type FinspaceClientResolvedConfig, FinspaceClientConfig } from "../FinspaceClient"; /** * @internal diff --git a/clients/client-finspace/src/commands/CreateEnvironmentCommand.ts b/clients/client-finspace/src/commands/CreateEnvironmentCommand.ts index b82b4fce6b2b8..ff8f332fd16ac 100644 --- a/clients/client-finspace/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/CreateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; import { CreateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/CreateKxChangesetCommand.ts b/clients/client-finspace/src/commands/CreateKxChangesetCommand.ts index 3e189996a1064..61e7ecee33849 100644 --- a/clients/client-finspace/src/commands/CreateKxChangesetCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxChangesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { CreateKxChangesetRequest, CreateKxChangesetResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { CreateKxChangesetRequest, CreateKxChangesetResponse } from "../models/models_0"; import { CreateKxChangeset } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/CreateKxClusterCommand.ts b/clients/client-finspace/src/commands/CreateKxClusterCommand.ts index fb6b04a7fe6e4..ec963eeee446e 100644 --- a/clients/client-finspace/src/commands/CreateKxClusterCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { CreateKxClusterRequest, CreateKxClusterResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { CreateKxClusterRequest, CreateKxClusterResponse } from "../models/models_0"; import { CreateKxCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/CreateKxDatabaseCommand.ts b/clients/client-finspace/src/commands/CreateKxDatabaseCommand.ts index a0e92e58c4a32..04d0e8038cd4d 100644 --- a/clients/client-finspace/src/commands/CreateKxDatabaseCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { CreateKxDatabaseRequest, CreateKxDatabaseResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { CreateKxDatabaseRequest, CreateKxDatabaseResponse } from "../models/models_0"; import { CreateKxDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/CreateKxDataviewCommand.ts b/clients/client-finspace/src/commands/CreateKxDataviewCommand.ts index 97d7877c63a23..b5e5c9778306c 100644 --- a/clients/client-finspace/src/commands/CreateKxDataviewCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxDataviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { CreateKxDataviewRequest, CreateKxDataviewResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { CreateKxDataviewRequest, CreateKxDataviewResponse } from "../models/models_0"; import { CreateKxDataview } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/CreateKxEnvironmentCommand.ts b/clients/client-finspace/src/commands/CreateKxEnvironmentCommand.ts index 5a726290f5768..ff0f55f266dd7 100644 --- a/clients/client-finspace/src/commands/CreateKxEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { CreateKxEnvironmentRequest, CreateKxEnvironmentResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { CreateKxEnvironmentRequest, CreateKxEnvironmentResponse } from "../models/models_0"; import { CreateKxEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/CreateKxScalingGroupCommand.ts b/clients/client-finspace/src/commands/CreateKxScalingGroupCommand.ts index 6691af01d0974..a1d24f0694f51 100644 --- a/clients/client-finspace/src/commands/CreateKxScalingGroupCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxScalingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { CreateKxScalingGroupRequest, CreateKxScalingGroupResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { CreateKxScalingGroupRequest, CreateKxScalingGroupResponse } from "../models/models_0"; import { CreateKxScalingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/CreateKxUserCommand.ts b/clients/client-finspace/src/commands/CreateKxUserCommand.ts index 64ff07c8c2823..2ec766c5500d6 100644 --- a/clients/client-finspace/src/commands/CreateKxUserCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { CreateKxUserRequest, CreateKxUserResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { CreateKxUserRequest, CreateKxUserResponse } from "../models/models_0"; import { CreateKxUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/CreateKxVolumeCommand.ts b/clients/client-finspace/src/commands/CreateKxVolumeCommand.ts index 5f2d8e787bdcd..0b6932585fc1f 100644 --- a/clients/client-finspace/src/commands/CreateKxVolumeCommand.ts +++ b/clients/client-finspace/src/commands/CreateKxVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { CreateKxVolumeRequest, CreateKxVolumeResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { CreateKxVolumeRequest, CreateKxVolumeResponse } from "../models/models_0"; import { CreateKxVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/DeleteEnvironmentCommand.ts b/clients/client-finspace/src/commands/DeleteEnvironmentCommand.ts index 7493be88f6cd6..dc49f605e6af1 100644 --- a/clients/client-finspace/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/DeleteEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; import { DeleteEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/DeleteKxClusterCommand.ts b/clients/client-finspace/src/commands/DeleteKxClusterCommand.ts index 23389f551ba97..6acb7000aeb63 100644 --- a/clients/client-finspace/src/commands/DeleteKxClusterCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { DeleteKxClusterRequest, DeleteKxClusterResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { DeleteKxClusterRequest, DeleteKxClusterResponse } from "../models/models_0"; import { DeleteKxCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/DeleteKxClusterNodeCommand.ts b/clients/client-finspace/src/commands/DeleteKxClusterNodeCommand.ts index 20c3ad13e123f..37a6c2c5d0577 100644 --- a/clients/client-finspace/src/commands/DeleteKxClusterNodeCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxClusterNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { DeleteKxClusterNodeRequest, DeleteKxClusterNodeResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { DeleteKxClusterNodeRequest, DeleteKxClusterNodeResponse } from "../models/models_0"; import { DeleteKxClusterNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/DeleteKxDatabaseCommand.ts b/clients/client-finspace/src/commands/DeleteKxDatabaseCommand.ts index 16fa8d1c10455..5992b190945c1 100644 --- a/clients/client-finspace/src/commands/DeleteKxDatabaseCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { DeleteKxDatabaseRequest, DeleteKxDatabaseResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { DeleteKxDatabaseRequest, DeleteKxDatabaseResponse } from "../models/models_0"; import { DeleteKxDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/DeleteKxDataviewCommand.ts b/clients/client-finspace/src/commands/DeleteKxDataviewCommand.ts index 1222b0baefb09..5ff7b3ba09eaa 100644 --- a/clients/client-finspace/src/commands/DeleteKxDataviewCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxDataviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { DeleteKxDataviewRequest, DeleteKxDataviewResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { DeleteKxDataviewRequest, DeleteKxDataviewResponse } from "../models/models_0"; import { DeleteKxDataview } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/DeleteKxEnvironmentCommand.ts b/clients/client-finspace/src/commands/DeleteKxEnvironmentCommand.ts index 7d0883e9520b9..1da60947e7924 100644 --- a/clients/client-finspace/src/commands/DeleteKxEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { DeleteKxEnvironmentRequest, DeleteKxEnvironmentResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { DeleteKxEnvironmentRequest, DeleteKxEnvironmentResponse } from "../models/models_0"; import { DeleteKxEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/DeleteKxScalingGroupCommand.ts b/clients/client-finspace/src/commands/DeleteKxScalingGroupCommand.ts index 6ca18eb181119..34078627b9f87 100644 --- a/clients/client-finspace/src/commands/DeleteKxScalingGroupCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxScalingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { DeleteKxScalingGroupRequest, DeleteKxScalingGroupResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { DeleteKxScalingGroupRequest, DeleteKxScalingGroupResponse } from "../models/models_0"; import { DeleteKxScalingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/DeleteKxUserCommand.ts b/clients/client-finspace/src/commands/DeleteKxUserCommand.ts index 202decd28f61f..680c3172f5ea0 100644 --- a/clients/client-finspace/src/commands/DeleteKxUserCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { DeleteKxUserRequest, DeleteKxUserResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { DeleteKxUserRequest, DeleteKxUserResponse } from "../models/models_0"; import { DeleteKxUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/DeleteKxVolumeCommand.ts b/clients/client-finspace/src/commands/DeleteKxVolumeCommand.ts index 36dff63219f80..ec141bed2aa5b 100644 --- a/clients/client-finspace/src/commands/DeleteKxVolumeCommand.ts +++ b/clients/client-finspace/src/commands/DeleteKxVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { DeleteKxVolumeRequest, DeleteKxVolumeResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { DeleteKxVolumeRequest, DeleteKxVolumeResponse } from "../models/models_0"; import { DeleteKxVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetEnvironmentCommand.ts b/clients/client-finspace/src/commands/GetEnvironmentCommand.ts index f3d5ee513a4cb..a83b61e1ee470 100644 --- a/clients/client-finspace/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/GetEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; import { GetEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetKxChangesetCommand.ts b/clients/client-finspace/src/commands/GetKxChangesetCommand.ts index 8fca253bc001e..9fbad483a675d 100644 --- a/clients/client-finspace/src/commands/GetKxChangesetCommand.ts +++ b/clients/client-finspace/src/commands/GetKxChangesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetKxChangesetRequest, GetKxChangesetResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetKxChangesetRequest, GetKxChangesetResponse } from "../models/models_0"; import { GetKxChangeset } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetKxClusterCommand.ts b/clients/client-finspace/src/commands/GetKxClusterCommand.ts index f29ec578dd67b..432449c1b8008 100644 --- a/clients/client-finspace/src/commands/GetKxClusterCommand.ts +++ b/clients/client-finspace/src/commands/GetKxClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetKxClusterRequest, GetKxClusterResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetKxClusterRequest, GetKxClusterResponse } from "../models/models_0"; import { GetKxCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetKxConnectionStringCommand.ts b/clients/client-finspace/src/commands/GetKxConnectionStringCommand.ts index 93e4fd9349bcd..cff9ec623ec09 100644 --- a/clients/client-finspace/src/commands/GetKxConnectionStringCommand.ts +++ b/clients/client-finspace/src/commands/GetKxConnectionStringCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetKxConnectionStringRequest, GetKxConnectionStringResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetKxConnectionStringRequest, GetKxConnectionStringResponse } from "../models/models_0"; import { GetKxConnectionString } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetKxDatabaseCommand.ts b/clients/client-finspace/src/commands/GetKxDatabaseCommand.ts index 8a84305c84401..38fb15f6c57b9 100644 --- a/clients/client-finspace/src/commands/GetKxDatabaseCommand.ts +++ b/clients/client-finspace/src/commands/GetKxDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetKxDatabaseRequest, GetKxDatabaseResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetKxDatabaseRequest, GetKxDatabaseResponse } from "../models/models_0"; import { GetKxDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetKxDataviewCommand.ts b/clients/client-finspace/src/commands/GetKxDataviewCommand.ts index 0eaf77c34b8ce..4226b6f959683 100644 --- a/clients/client-finspace/src/commands/GetKxDataviewCommand.ts +++ b/clients/client-finspace/src/commands/GetKxDataviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetKxDataviewRequest, GetKxDataviewResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetKxDataviewRequest, GetKxDataviewResponse } from "../models/models_0"; import { GetKxDataview } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetKxEnvironmentCommand.ts b/clients/client-finspace/src/commands/GetKxEnvironmentCommand.ts index 91b2224ac1867..924bef8eb5097 100644 --- a/clients/client-finspace/src/commands/GetKxEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/GetKxEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetKxEnvironmentRequest, GetKxEnvironmentResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetKxEnvironmentRequest, GetKxEnvironmentResponse } from "../models/models_0"; import { GetKxEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetKxScalingGroupCommand.ts b/clients/client-finspace/src/commands/GetKxScalingGroupCommand.ts index 574bafa43fe2c..d6140615bf283 100644 --- a/clients/client-finspace/src/commands/GetKxScalingGroupCommand.ts +++ b/clients/client-finspace/src/commands/GetKxScalingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetKxScalingGroupRequest, GetKxScalingGroupResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetKxScalingGroupRequest, GetKxScalingGroupResponse } from "../models/models_0"; import { GetKxScalingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetKxUserCommand.ts b/clients/client-finspace/src/commands/GetKxUserCommand.ts index 65a9955c3d214..5c28ee09a36a2 100644 --- a/clients/client-finspace/src/commands/GetKxUserCommand.ts +++ b/clients/client-finspace/src/commands/GetKxUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetKxUserRequest, GetKxUserResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetKxUserRequest, GetKxUserResponse } from "../models/models_0"; import { GetKxUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/GetKxVolumeCommand.ts b/clients/client-finspace/src/commands/GetKxVolumeCommand.ts index 8c0b776c73fe0..ad4d37051b9b9 100644 --- a/clients/client-finspace/src/commands/GetKxVolumeCommand.ts +++ b/clients/client-finspace/src/commands/GetKxVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { GetKxVolumeRequest, GetKxVolumeResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { GetKxVolumeRequest, GetKxVolumeResponse } from "../models/models_0"; import { GetKxVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListEnvironmentsCommand.ts b/clients/client-finspace/src/commands/ListEnvironmentsCommand.ts index 81de993a8e11d..f629aec27e7e5 100644 --- a/clients/client-finspace/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-finspace/src/commands/ListEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; import { ListEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListKxChangesetsCommand.ts b/clients/client-finspace/src/commands/ListKxChangesetsCommand.ts index 5ee9af7f78980..defcf54577261 100644 --- a/clients/client-finspace/src/commands/ListKxChangesetsCommand.ts +++ b/clients/client-finspace/src/commands/ListKxChangesetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListKxChangesetsRequest, ListKxChangesetsResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListKxChangesetsRequest, ListKxChangesetsResponse } from "../models/models_0"; import { ListKxChangesets } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListKxClusterNodesCommand.ts b/clients/client-finspace/src/commands/ListKxClusterNodesCommand.ts index c92ecdfbbbef3..4d0e1ef71e97c 100644 --- a/clients/client-finspace/src/commands/ListKxClusterNodesCommand.ts +++ b/clients/client-finspace/src/commands/ListKxClusterNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListKxClusterNodesRequest, ListKxClusterNodesResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListKxClusterNodesRequest, ListKxClusterNodesResponse } from "../models/models_0"; import { ListKxClusterNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListKxClustersCommand.ts b/clients/client-finspace/src/commands/ListKxClustersCommand.ts index e984a626409ae..20dffde3cecfe 100644 --- a/clients/client-finspace/src/commands/ListKxClustersCommand.ts +++ b/clients/client-finspace/src/commands/ListKxClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListKxClustersRequest, ListKxClustersResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListKxClustersRequest, ListKxClustersResponse } from "../models/models_0"; import { ListKxClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListKxDatabasesCommand.ts b/clients/client-finspace/src/commands/ListKxDatabasesCommand.ts index d655805bfc284..e586d52e534e6 100644 --- a/clients/client-finspace/src/commands/ListKxDatabasesCommand.ts +++ b/clients/client-finspace/src/commands/ListKxDatabasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListKxDatabasesRequest, ListKxDatabasesResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListKxDatabasesRequest, ListKxDatabasesResponse } from "../models/models_0"; import { ListKxDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListKxDataviewsCommand.ts b/clients/client-finspace/src/commands/ListKxDataviewsCommand.ts index a6e771518864b..57a3af704df03 100644 --- a/clients/client-finspace/src/commands/ListKxDataviewsCommand.ts +++ b/clients/client-finspace/src/commands/ListKxDataviewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListKxDataviewsRequest, ListKxDataviewsResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListKxDataviewsRequest, ListKxDataviewsResponse } from "../models/models_0"; import { ListKxDataviews } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListKxEnvironmentsCommand.ts b/clients/client-finspace/src/commands/ListKxEnvironmentsCommand.ts index 263aa2514433f..faca1f59d7af7 100644 --- a/clients/client-finspace/src/commands/ListKxEnvironmentsCommand.ts +++ b/clients/client-finspace/src/commands/ListKxEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListKxEnvironmentsRequest, ListKxEnvironmentsResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListKxEnvironmentsRequest, ListKxEnvironmentsResponse } from "../models/models_0"; import { ListKxEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListKxScalingGroupsCommand.ts b/clients/client-finspace/src/commands/ListKxScalingGroupsCommand.ts index cadc9d95626b9..3b8c4ed307d0b 100644 --- a/clients/client-finspace/src/commands/ListKxScalingGroupsCommand.ts +++ b/clients/client-finspace/src/commands/ListKxScalingGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListKxScalingGroupsRequest, ListKxScalingGroupsResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListKxScalingGroupsRequest, ListKxScalingGroupsResponse } from "../models/models_0"; import { ListKxScalingGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListKxUsersCommand.ts b/clients/client-finspace/src/commands/ListKxUsersCommand.ts index 76b974259e34b..373b00bbd5800 100644 --- a/clients/client-finspace/src/commands/ListKxUsersCommand.ts +++ b/clients/client-finspace/src/commands/ListKxUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListKxUsersRequest, ListKxUsersResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListKxUsersRequest, ListKxUsersResponse } from "../models/models_0"; import { ListKxUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListKxVolumesCommand.ts b/clients/client-finspace/src/commands/ListKxVolumesCommand.ts index a634e14370d1c..a25222ea08673 100644 --- a/clients/client-finspace/src/commands/ListKxVolumesCommand.ts +++ b/clients/client-finspace/src/commands/ListKxVolumesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListKxVolumesRequest, ListKxVolumesResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListKxVolumesRequest, ListKxVolumesResponse } from "../models/models_0"; import { ListKxVolumes } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/ListTagsForResourceCommand.ts b/clients/client-finspace/src/commands/ListTagsForResourceCommand.ts index 1085b3f96e5b3..c888499ea1e0b 100644 --- a/clients/client-finspace/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-finspace/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/TagResourceCommand.ts b/clients/client-finspace/src/commands/TagResourceCommand.ts index e70f78a13473f..079c6f85dac88 100644 --- a/clients/client-finspace/src/commands/TagResourceCommand.ts +++ b/clients/client-finspace/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UntagResourceCommand.ts b/clients/client-finspace/src/commands/UntagResourceCommand.ts index b60e7c9cf751d..91ba7f9131773 100644 --- a/clients/client-finspace/src/commands/UntagResourceCommand.ts +++ b/clients/client-finspace/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UpdateEnvironmentCommand.ts b/clients/client-finspace/src/commands/UpdateEnvironmentCommand.ts index a6b58882301c2..8b17b2a0b91ae 100644 --- a/clients/client-finspace/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/UpdateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UpdateEnvironmentRequest, UpdateEnvironmentResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { UpdateEnvironmentRequest, UpdateEnvironmentResponse } from "../models/models_0"; import { UpdateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UpdateKxClusterCodeConfigurationCommand.ts b/clients/client-finspace/src/commands/UpdateKxClusterCodeConfigurationCommand.ts index b8169416c30a3..67d347eade6d9 100644 --- a/clients/client-finspace/src/commands/UpdateKxClusterCodeConfigurationCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxClusterCodeConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UpdateKxClusterCodeConfigurationRequest, UpdateKxClusterCodeConfigurationResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { + UpdateKxClusterCodeConfigurationRequest, + UpdateKxClusterCodeConfigurationResponse, +} from "../models/models_0"; import { UpdateKxClusterCodeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UpdateKxClusterDatabasesCommand.ts b/clients/client-finspace/src/commands/UpdateKxClusterDatabasesCommand.ts index f66a3fad3a9a5..d819a1778fb7a 100644 --- a/clients/client-finspace/src/commands/UpdateKxClusterDatabasesCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxClusterDatabasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UpdateKxClusterDatabasesRequest, UpdateKxClusterDatabasesResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { UpdateKxClusterDatabasesRequest, UpdateKxClusterDatabasesResponse } from "../models/models_0"; import { UpdateKxClusterDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UpdateKxDatabaseCommand.ts b/clients/client-finspace/src/commands/UpdateKxDatabaseCommand.ts index 1dd2103b3ebcb..2cccc50baf210 100644 --- a/clients/client-finspace/src/commands/UpdateKxDatabaseCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UpdateKxDatabaseRequest, UpdateKxDatabaseResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { UpdateKxDatabaseRequest, UpdateKxDatabaseResponse } from "../models/models_0"; import { UpdateKxDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UpdateKxDataviewCommand.ts b/clients/client-finspace/src/commands/UpdateKxDataviewCommand.ts index 009a342043055..66c69658eb4d2 100644 --- a/clients/client-finspace/src/commands/UpdateKxDataviewCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxDataviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UpdateKxDataviewRequest, UpdateKxDataviewResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { UpdateKxDataviewRequest, UpdateKxDataviewResponse } from "../models/models_0"; import { UpdateKxDataview } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UpdateKxEnvironmentCommand.ts b/clients/client-finspace/src/commands/UpdateKxEnvironmentCommand.ts index b0a35a89399e2..12f85125ac7b4 100644 --- a/clients/client-finspace/src/commands/UpdateKxEnvironmentCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UpdateKxEnvironmentRequest, UpdateKxEnvironmentResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { UpdateKxEnvironmentRequest, UpdateKxEnvironmentResponse } from "../models/models_0"; import { UpdateKxEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UpdateKxEnvironmentNetworkCommand.ts b/clients/client-finspace/src/commands/UpdateKxEnvironmentNetworkCommand.ts index 262cce1dd2964..c83777008bff6 100644 --- a/clients/client-finspace/src/commands/UpdateKxEnvironmentNetworkCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxEnvironmentNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UpdateKxEnvironmentNetworkRequest, UpdateKxEnvironmentNetworkResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { UpdateKxEnvironmentNetworkRequest, UpdateKxEnvironmentNetworkResponse } from "../models/models_0"; import { UpdateKxEnvironmentNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UpdateKxUserCommand.ts b/clients/client-finspace/src/commands/UpdateKxUserCommand.ts index 4f422d4de146e..fe69559e15253 100644 --- a/clients/client-finspace/src/commands/UpdateKxUserCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UpdateKxUserRequest, UpdateKxUserResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { UpdateKxUserRequest, UpdateKxUserResponse } from "../models/models_0"; import { UpdateKxUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/commands/UpdateKxVolumeCommand.ts b/clients/client-finspace/src/commands/UpdateKxVolumeCommand.ts index 7aaca8d18d162..affe1b236f7c8 100644 --- a/clients/client-finspace/src/commands/UpdateKxVolumeCommand.ts +++ b/clients/client-finspace/src/commands/UpdateKxVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; -import { UpdateKxVolumeRequest, UpdateKxVolumeResponse } from "../models/models_0"; +import type { FinspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceClient"; +import type { UpdateKxVolumeRequest, UpdateKxVolumeResponse } from "../models/models_0"; import { UpdateKxVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-finspace/src/endpoint/EndpointParameters.ts b/clients/client-finspace/src/endpoint/EndpointParameters.ts index 26d5ef7fa7789..5af3c9154437e 100644 --- a/clients/client-finspace/src/endpoint/EndpointParameters.ts +++ b/clients/client-finspace/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-finspace/src/endpoint/endpointResolver.ts b/clients/client-finspace/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-finspace/src/endpoint/endpointResolver.ts +++ b/clients/client-finspace/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-finspace/src/extensionConfiguration.ts b/clients/client-finspace/src/extensionConfiguration.ts index b4ccf3c26daf8..5b3aee75e90e3 100644 --- a/clients/client-finspace/src/extensionConfiguration.ts +++ b/clients/client-finspace/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-finspace/src/models/FinspaceServiceException.ts b/clients/client-finspace/src/models/FinspaceServiceException.ts index 432d52196bff0..916a683375d06 100644 --- a/clients/client-finspace/src/models/FinspaceServiceException.ts +++ b/clients/client-finspace/src/models/FinspaceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-finspace/src/models/errors.ts b/clients/client-finspace/src/models/errors.ts index db631d0d02ec0..bcd8dece41fe8 100644 --- a/clients/client-finspace/src/models/errors.ts +++ b/clients/client-finspace/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { FinspaceServiceException as __BaseException } from "./FinspaceServiceException"; diff --git a/clients/client-finspace/src/pagination/Interfaces.ts b/clients/client-finspace/src/pagination/Interfaces.ts index 19478d0eacdfc..85bf09605da88 100644 --- a/clients/client-finspace/src/pagination/Interfaces.ts +++ b/clients/client-finspace/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { FinspaceClient } from "../FinspaceClient"; diff --git a/clients/client-finspace/src/pagination/ListKxChangesetsPaginator.ts b/clients/client-finspace/src/pagination/ListKxChangesetsPaginator.ts index 8cd583a85489e..81939c57a5c81 100644 --- a/clients/client-finspace/src/pagination/ListKxChangesetsPaginator.ts +++ b/clients/client-finspace/src/pagination/ListKxChangesetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKxChangesetsCommand, diff --git a/clients/client-finspace/src/pagination/ListKxClusterNodesPaginator.ts b/clients/client-finspace/src/pagination/ListKxClusterNodesPaginator.ts index a859563d1a12e..6a70918f51c7e 100644 --- a/clients/client-finspace/src/pagination/ListKxClusterNodesPaginator.ts +++ b/clients/client-finspace/src/pagination/ListKxClusterNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKxClusterNodesCommand, diff --git a/clients/client-finspace/src/pagination/ListKxDatabasesPaginator.ts b/clients/client-finspace/src/pagination/ListKxDatabasesPaginator.ts index c0b56d5ce62ae..4789084321a40 100644 --- a/clients/client-finspace/src/pagination/ListKxDatabasesPaginator.ts +++ b/clients/client-finspace/src/pagination/ListKxDatabasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKxDatabasesCommand, diff --git a/clients/client-finspace/src/pagination/ListKxDataviewsPaginator.ts b/clients/client-finspace/src/pagination/ListKxDataviewsPaginator.ts index 61619934b112f..0cc702b9f51bd 100644 --- a/clients/client-finspace/src/pagination/ListKxDataviewsPaginator.ts +++ b/clients/client-finspace/src/pagination/ListKxDataviewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKxDataviewsCommand, diff --git a/clients/client-finspace/src/pagination/ListKxEnvironmentsPaginator.ts b/clients/client-finspace/src/pagination/ListKxEnvironmentsPaginator.ts index 673183f04f251..2acd14b8bfa91 100644 --- a/clients/client-finspace/src/pagination/ListKxEnvironmentsPaginator.ts +++ b/clients/client-finspace/src/pagination/ListKxEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKxEnvironmentsCommand, diff --git a/clients/client-finspace/src/pagination/ListKxScalingGroupsPaginator.ts b/clients/client-finspace/src/pagination/ListKxScalingGroupsPaginator.ts index d70bad090476e..fa0391da9114e 100644 --- a/clients/client-finspace/src/pagination/ListKxScalingGroupsPaginator.ts +++ b/clients/client-finspace/src/pagination/ListKxScalingGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKxScalingGroupsCommand, diff --git a/clients/client-finspace/src/runtimeConfig.browser.ts b/clients/client-finspace/src/runtimeConfig.browser.ts index 0f033ad70dada..90d92a34b8e41 100644 --- a/clients/client-finspace/src/runtimeConfig.browser.ts +++ b/clients/client-finspace/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FinspaceClientConfig } from "./FinspaceClient"; + +import type { FinspaceClientConfig } from "./FinspaceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-finspace/src/runtimeConfig.native.ts b/clients/client-finspace/src/runtimeConfig.native.ts index 7fdd433cf7145..41829c0248d4d 100644 --- a/clients/client-finspace/src/runtimeConfig.native.ts +++ b/clients/client-finspace/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { FinspaceClientConfig } from "./FinspaceClient"; +import type { FinspaceClientConfig } from "./FinspaceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-finspace/src/runtimeConfig.shared.ts b/clients/client-finspace/src/runtimeConfig.shared.ts index 959c9e4a3b5df..dbd663187d0d8 100644 --- a/clients/client-finspace/src/runtimeConfig.shared.ts +++ b/clients/client-finspace/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultFinspaceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { FinspaceClientConfig } from "./FinspaceClient"; +import type { FinspaceClientConfig } from "./FinspaceClient"; /** * @internal diff --git a/clients/client-finspace/src/runtimeConfig.ts b/clients/client-finspace/src/runtimeConfig.ts index 4e7ae2ce05029..1ad6376d15f54 100644 --- a/clients/client-finspace/src/runtimeConfig.ts +++ b/clients/client-finspace/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FinspaceClientConfig } from "./FinspaceClient"; + +import type { FinspaceClientConfig } from "./FinspaceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-finspace/src/runtimeExtensions.ts b/clients/client-finspace/src/runtimeExtensions.ts index c283f7ed9d287..cfa0c7643f5cb 100644 --- a/clients/client-finspace/src/runtimeExtensions.ts +++ b/clients/client-finspace/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { FinspaceExtensionConfiguration } from "./extensionConfiguration"; +import type { FinspaceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-finspace/src/schemas/schemas_0.ts b/clients/client-finspace/src/schemas/schemas_0.ts index b65bbae237a31..f9a4c2c064c9e 100644 --- a/clients/client-finspace/src/schemas/schemas_0.ts +++ b/clients/client-finspace/src/schemas/schemas_0.ts @@ -384,7 +384,7 @@ const n0 = "com.amazonaws.finspace"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-firehose/package.json b/clients/client-firehose/package.json index a255ed3fde231..ebb682abaa092 100644 --- a/clients/client-firehose/package.json +++ b/clients/client-firehose/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-firehose/src/Firehose.ts b/clients/client-firehose/src/Firehose.ts index 91b8d208dda28..3a95383d0abc6 100644 --- a/clients/client-firehose/src/Firehose.ts +++ b/clients/client-firehose/src/Firehose.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateDeliveryStreamCommand, @@ -58,7 +58,7 @@ import { UpdateDestinationCommandInput, UpdateDestinationCommandOutput, } from "./commands/UpdateDestinationCommand"; -import { FirehoseClient, FirehoseClientConfig } from "./FirehoseClient"; +import { FirehoseClient } from "./FirehoseClient"; const commands = { CreateDeliveryStreamCommand, diff --git a/clients/client-firehose/src/FirehoseClient.ts b/clients/client-firehose/src/FirehoseClient.ts index 31d5c0abae4e3..767a01e76fbb7 100644 --- a/clients/client-firehose/src/FirehoseClient.ts +++ b/clients/client-firehose/src/FirehoseClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultFirehoseHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -100,7 +109,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-firehose/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-firehose/src/auth/httpAuthExtensionConfiguration.ts index afc7611e0ca7d..a73ef19ab3303 100644 --- a/clients/client-firehose/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-firehose/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { FirehoseHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { FirehoseHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-firehose/src/auth/httpAuthSchemeProvider.ts b/clients/client-firehose/src/auth/httpAuthSchemeProvider.ts index bf5e19128dcc8..75e6582cc171f 100644 --- a/clients/client-firehose/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-firehose/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { FirehoseClientConfig, FirehoseClientResolvedConfig } from "../FirehoseClient"; +import { type FirehoseClientResolvedConfig, FirehoseClientConfig } from "../FirehoseClient"; /** * @internal diff --git a/clients/client-firehose/src/commands/CreateDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/CreateDeliveryStreamCommand.ts index 6fa4e8d83e9ed..19d226a2c36e2 100644 --- a/clients/client-firehose/src/commands/CreateDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/CreateDeliveryStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { CreateDeliveryStreamInput, CreateDeliveryStreamOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { CreateDeliveryStreamInput, CreateDeliveryStreamOutput } from "../models/models_0"; import { CreateDeliveryStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/DeleteDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/DeleteDeliveryStreamCommand.ts index c8508d26db223..7e043f5878ebf 100644 --- a/clients/client-firehose/src/commands/DeleteDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/DeleteDeliveryStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { DeleteDeliveryStreamInput, DeleteDeliveryStreamOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { DeleteDeliveryStreamInput, DeleteDeliveryStreamOutput } from "../models/models_0"; import { DeleteDeliveryStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/DescribeDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/DescribeDeliveryStreamCommand.ts index 505a7cc2628b1..d9a192a8a81a0 100644 --- a/clients/client-firehose/src/commands/DescribeDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/DescribeDeliveryStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { DescribeDeliveryStreamInput, DescribeDeliveryStreamOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { DescribeDeliveryStreamInput, DescribeDeliveryStreamOutput } from "../models/models_0"; import { DescribeDeliveryStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/ListDeliveryStreamsCommand.ts b/clients/client-firehose/src/commands/ListDeliveryStreamsCommand.ts index 51d2c00430a63..2bf3f3a18c81f 100644 --- a/clients/client-firehose/src/commands/ListDeliveryStreamsCommand.ts +++ b/clients/client-firehose/src/commands/ListDeliveryStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { ListDeliveryStreamsInput, ListDeliveryStreamsOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { ListDeliveryStreamsInput, ListDeliveryStreamsOutput } from "../models/models_0"; import { ListDeliveryStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/ListTagsForDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/ListTagsForDeliveryStreamCommand.ts index f1637571b594d..0ada3d521e7ad 100644 --- a/clients/client-firehose/src/commands/ListTagsForDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/ListTagsForDeliveryStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { ListTagsForDeliveryStreamInput, ListTagsForDeliveryStreamOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { ListTagsForDeliveryStreamInput, ListTagsForDeliveryStreamOutput } from "../models/models_0"; import { ListTagsForDeliveryStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/PutRecordBatchCommand.ts b/clients/client-firehose/src/commands/PutRecordBatchCommand.ts index 73a4b8b17d23e..bba5cd636c04b 100644 --- a/clients/client-firehose/src/commands/PutRecordBatchCommand.ts +++ b/clients/client-firehose/src/commands/PutRecordBatchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { PutRecordBatchInput, PutRecordBatchOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { PutRecordBatchInput, PutRecordBatchOutput } from "../models/models_0"; import { PutRecordBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/PutRecordCommand.ts b/clients/client-firehose/src/commands/PutRecordCommand.ts index 07d43d7ecc8cd..7ced989e868c3 100644 --- a/clients/client-firehose/src/commands/PutRecordCommand.ts +++ b/clients/client-firehose/src/commands/PutRecordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { PutRecordInput, PutRecordOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { PutRecordInput, PutRecordOutput } from "../models/models_0"; import { PutRecord } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/StartDeliveryStreamEncryptionCommand.ts b/clients/client-firehose/src/commands/StartDeliveryStreamEncryptionCommand.ts index 31e858b517034..a8600915ce374 100644 --- a/clients/client-firehose/src/commands/StartDeliveryStreamEncryptionCommand.ts +++ b/clients/client-firehose/src/commands/StartDeliveryStreamEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { StartDeliveryStreamEncryptionInput, StartDeliveryStreamEncryptionOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { StartDeliveryStreamEncryptionInput, StartDeliveryStreamEncryptionOutput } from "../models/models_0"; import { StartDeliveryStreamEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/StopDeliveryStreamEncryptionCommand.ts b/clients/client-firehose/src/commands/StopDeliveryStreamEncryptionCommand.ts index 50b0b0720b2f2..52636f427ddf8 100644 --- a/clients/client-firehose/src/commands/StopDeliveryStreamEncryptionCommand.ts +++ b/clients/client-firehose/src/commands/StopDeliveryStreamEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { StopDeliveryStreamEncryptionInput, StopDeliveryStreamEncryptionOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { StopDeliveryStreamEncryptionInput, StopDeliveryStreamEncryptionOutput } from "../models/models_0"; import { StopDeliveryStreamEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/TagDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/TagDeliveryStreamCommand.ts index 5864a4664f604..3d2703551f999 100644 --- a/clients/client-firehose/src/commands/TagDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/TagDeliveryStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { TagDeliveryStreamInput, TagDeliveryStreamOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { TagDeliveryStreamInput, TagDeliveryStreamOutput } from "../models/models_0"; import { TagDeliveryStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/UntagDeliveryStreamCommand.ts b/clients/client-firehose/src/commands/UntagDeliveryStreamCommand.ts index 2f739c8bf3692..4f568a5796529 100644 --- a/clients/client-firehose/src/commands/UntagDeliveryStreamCommand.ts +++ b/clients/client-firehose/src/commands/UntagDeliveryStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { UntagDeliveryStreamInput, UntagDeliveryStreamOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { UntagDeliveryStreamInput, UntagDeliveryStreamOutput } from "../models/models_0"; import { UntagDeliveryStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/commands/UpdateDestinationCommand.ts b/clients/client-firehose/src/commands/UpdateDestinationCommand.ts index fc82f54f0537f..0e3c869a7f412 100644 --- a/clients/client-firehose/src/commands/UpdateDestinationCommand.ts +++ b/clients/client-firehose/src/commands/UpdateDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; -import { UpdateDestinationInput, UpdateDestinationOutput } from "../models/models_0"; +import type { FirehoseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FirehoseClient"; +import type { UpdateDestinationInput, UpdateDestinationOutput } from "../models/models_0"; import { UpdateDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-firehose/src/endpoint/EndpointParameters.ts b/clients/client-firehose/src/endpoint/EndpointParameters.ts index b0bdf2d60fa38..e2173c50fff33 100644 --- a/clients/client-firehose/src/endpoint/EndpointParameters.ts +++ b/clients/client-firehose/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-firehose/src/endpoint/endpointResolver.ts b/clients/client-firehose/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-firehose/src/endpoint/endpointResolver.ts +++ b/clients/client-firehose/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-firehose/src/extensionConfiguration.ts b/clients/client-firehose/src/extensionConfiguration.ts index af1f41901ca9c..0bee7c743efcf 100644 --- a/clients/client-firehose/src/extensionConfiguration.ts +++ b/clients/client-firehose/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-firehose/src/models/FirehoseServiceException.ts b/clients/client-firehose/src/models/FirehoseServiceException.ts index 14ffeb28603fc..9fdeb0963057f 100644 --- a/clients/client-firehose/src/models/FirehoseServiceException.ts +++ b/clients/client-firehose/src/models/FirehoseServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-firehose/src/models/errors.ts b/clients/client-firehose/src/models/errors.ts index 9c84aea2367df..affada265f50a 100644 --- a/clients/client-firehose/src/models/errors.ts +++ b/clients/client-firehose/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { FirehoseServiceException as __BaseException } from "./FirehoseServiceException"; diff --git a/clients/client-firehose/src/runtimeConfig.browser.ts b/clients/client-firehose/src/runtimeConfig.browser.ts index 052f317c588ba..02f0f97d00dea 100644 --- a/clients/client-firehose/src/runtimeConfig.browser.ts +++ b/clients/client-firehose/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FirehoseClientConfig } from "./FirehoseClient"; + +import type { FirehoseClientConfig } from "./FirehoseClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-firehose/src/runtimeConfig.native.ts b/clients/client-firehose/src/runtimeConfig.native.ts index f5cb8fd17b5d8..f3c91bc5e54ea 100644 --- a/clients/client-firehose/src/runtimeConfig.native.ts +++ b/clients/client-firehose/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { FirehoseClientConfig } from "./FirehoseClient"; +import type { FirehoseClientConfig } from "./FirehoseClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-firehose/src/runtimeConfig.shared.ts b/clients/client-firehose/src/runtimeConfig.shared.ts index b360559c2052a..e4383b95adff3 100644 --- a/clients/client-firehose/src/runtimeConfig.shared.ts +++ b/clients/client-firehose/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultFirehoseHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { FirehoseClientConfig } from "./FirehoseClient"; +import type { FirehoseClientConfig } from "./FirehoseClient"; /** * @internal diff --git a/clients/client-firehose/src/runtimeConfig.ts b/clients/client-firehose/src/runtimeConfig.ts index da43bd09707ab..48bef860b5778 100644 --- a/clients/client-firehose/src/runtimeConfig.ts +++ b/clients/client-firehose/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FirehoseClientConfig } from "./FirehoseClient"; + +import type { FirehoseClientConfig } from "./FirehoseClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-firehose/src/runtimeExtensions.ts b/clients/client-firehose/src/runtimeExtensions.ts index 79dffac7b7413..c16868c61ade1 100644 --- a/clients/client-firehose/src/runtimeExtensions.ts +++ b/clients/client-firehose/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { FirehoseExtensionConfiguration } from "./extensionConfiguration"; +import type { FirehoseExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-firehose/src/schemas/schemas_0.ts b/clients/client-firehose/src/schemas/schemas_0.ts index dadda340a60bf..b8f60a9ab2ba9 100644 --- a/clients/client-firehose/src/schemas/schemas_0.ts +++ b/clients/client-firehose/src/schemas/schemas_0.ts @@ -338,7 +338,7 @@ const n0 = "com.amazonaws.firehose"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-fis/package.json b/clients/client-fis/package.json index a3548fddc4046..f124e53d14e24 100644 --- a/clients/client-fis/package.json +++ b/clients/client-fis/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-fis/src/Fis.ts b/clients/client-fis/src/Fis.ts index 0e0c2806d624b..77141941587e4 100644 --- a/clients/client-fis/src/Fis.ts +++ b/clients/client-fis/src/Fis.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateExperimentTemplateCommand, @@ -120,7 +120,7 @@ import { UpdateTargetAccountConfigurationCommandInput, UpdateTargetAccountConfigurationCommandOutput, } from "./commands/UpdateTargetAccountConfigurationCommand"; -import { FisClient, FisClientConfig } from "./FisClient"; +import { FisClient } from "./FisClient"; const commands = { CreateExperimentTemplateCommand, diff --git a/clients/client-fis/src/FisClient.ts b/clients/client-fis/src/FisClient.ts index 24ebcbf9aa446..d825cc9b26542 100644 --- a/clients/client-fis/src/FisClient.ts +++ b/clients/client-fis/src/FisClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultFisHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -141,7 +150,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-fis/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-fis/src/auth/httpAuthExtensionConfiguration.ts index 66d4a8afdc85f..783dc3a592736 100644 --- a/clients/client-fis/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-fis/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { FisHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { FisHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-fis/src/auth/httpAuthSchemeProvider.ts b/clients/client-fis/src/auth/httpAuthSchemeProvider.ts index efd9504c2f8a7..7116f63908779 100644 --- a/clients/client-fis/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-fis/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { FisClientConfig, FisClientResolvedConfig } from "../FisClient"; +import { type FisClientResolvedConfig, FisClientConfig } from "../FisClient"; /** * @internal diff --git a/clients/client-fis/src/commands/CreateExperimentTemplateCommand.ts b/clients/client-fis/src/commands/CreateExperimentTemplateCommand.ts index b392d96c69dfa..8abadc6e98038 100644 --- a/clients/client-fis/src/commands/CreateExperimentTemplateCommand.ts +++ b/clients/client-fis/src/commands/CreateExperimentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { CreateExperimentTemplateRequest, CreateExperimentTemplateResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { CreateExperimentTemplateRequest, CreateExperimentTemplateResponse } from "../models/models_0"; import { CreateExperimentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/CreateTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/CreateTargetAccountConfigurationCommand.ts index b84b13185142e..facde7204a2b0 100644 --- a/clients/client-fis/src/commands/CreateTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/CreateTargetAccountConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { CreateTargetAccountConfigurationRequest, CreateTargetAccountConfigurationResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { + CreateTargetAccountConfigurationRequest, + CreateTargetAccountConfigurationResponse, +} from "../models/models_0"; import { CreateTargetAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/DeleteExperimentTemplateCommand.ts b/clients/client-fis/src/commands/DeleteExperimentTemplateCommand.ts index 293d98312488f..6b2b70571cfa8 100644 --- a/clients/client-fis/src/commands/DeleteExperimentTemplateCommand.ts +++ b/clients/client-fis/src/commands/DeleteExperimentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { DeleteExperimentTemplateRequest, DeleteExperimentTemplateResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { DeleteExperimentTemplateRequest, DeleteExperimentTemplateResponse } from "../models/models_0"; import { DeleteExperimentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/DeleteTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/DeleteTargetAccountConfigurationCommand.ts index 9191760b2ceca..2084984e48d9c 100644 --- a/clients/client-fis/src/commands/DeleteTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/DeleteTargetAccountConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { DeleteTargetAccountConfigurationRequest, DeleteTargetAccountConfigurationResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { + DeleteTargetAccountConfigurationRequest, + DeleteTargetAccountConfigurationResponse, +} from "../models/models_0"; import { DeleteTargetAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/GetActionCommand.ts b/clients/client-fis/src/commands/GetActionCommand.ts index 8cca1733fc87e..d4a48ae3ba89b 100644 --- a/clients/client-fis/src/commands/GetActionCommand.ts +++ b/clients/client-fis/src/commands/GetActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { GetActionRequest, GetActionResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { GetActionRequest, GetActionResponse } from "../models/models_0"; import { GetAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/GetExperimentCommand.ts b/clients/client-fis/src/commands/GetExperimentCommand.ts index 52e91edd984b9..ecdda2022ec7b 100644 --- a/clients/client-fis/src/commands/GetExperimentCommand.ts +++ b/clients/client-fis/src/commands/GetExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { GetExperimentRequest, GetExperimentResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { GetExperimentRequest, GetExperimentResponse } from "../models/models_0"; import { GetExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/GetExperimentTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/GetExperimentTargetAccountConfigurationCommand.ts index bfa8b2740c297..a00d3182c8108 100644 --- a/clients/client-fis/src/commands/GetExperimentTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/GetExperimentTargetAccountConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { GetExperimentTargetAccountConfigurationRequest, GetExperimentTargetAccountConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-fis/src/commands/GetExperimentTemplateCommand.ts b/clients/client-fis/src/commands/GetExperimentTemplateCommand.ts index 7c56f1b9e23a5..7c41496b3d051 100644 --- a/clients/client-fis/src/commands/GetExperimentTemplateCommand.ts +++ b/clients/client-fis/src/commands/GetExperimentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { GetExperimentTemplateRequest, GetExperimentTemplateResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { GetExperimentTemplateRequest, GetExperimentTemplateResponse } from "../models/models_0"; import { GetExperimentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/GetSafetyLeverCommand.ts b/clients/client-fis/src/commands/GetSafetyLeverCommand.ts index 726b379196073..ea21ce61dd24b 100644 --- a/clients/client-fis/src/commands/GetSafetyLeverCommand.ts +++ b/clients/client-fis/src/commands/GetSafetyLeverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { GetSafetyLeverRequest, GetSafetyLeverResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { GetSafetyLeverRequest, GetSafetyLeverResponse } from "../models/models_0"; import { GetSafetyLever } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/GetTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/GetTargetAccountConfigurationCommand.ts index 956d23006c8a3..632858842f408 100644 --- a/clients/client-fis/src/commands/GetTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/GetTargetAccountConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { GetTargetAccountConfigurationRequest, GetTargetAccountConfigurationResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { GetTargetAccountConfigurationRequest, GetTargetAccountConfigurationResponse } from "../models/models_0"; import { GetTargetAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/GetTargetResourceTypeCommand.ts b/clients/client-fis/src/commands/GetTargetResourceTypeCommand.ts index a068e65206e10..2af197edcb9cc 100644 --- a/clients/client-fis/src/commands/GetTargetResourceTypeCommand.ts +++ b/clients/client-fis/src/commands/GetTargetResourceTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { GetTargetResourceTypeRequest, GetTargetResourceTypeResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { GetTargetResourceTypeRequest, GetTargetResourceTypeResponse } from "../models/models_0"; import { GetTargetResourceType } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/ListActionsCommand.ts b/clients/client-fis/src/commands/ListActionsCommand.ts index af63ff1ef0d84..c8b92b18f6982 100644 --- a/clients/client-fis/src/commands/ListActionsCommand.ts +++ b/clients/client-fis/src/commands/ListActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { ListActionsRequest, ListActionsResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { ListActionsRequest, ListActionsResponse } from "../models/models_0"; import { ListActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/ListExperimentResolvedTargetsCommand.ts b/clients/client-fis/src/commands/ListExperimentResolvedTargetsCommand.ts index 95daa11075ac5..8fbe395271b51 100644 --- a/clients/client-fis/src/commands/ListExperimentResolvedTargetsCommand.ts +++ b/clients/client-fis/src/commands/ListExperimentResolvedTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { ListExperimentResolvedTargetsRequest, ListExperimentResolvedTargetsResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { ListExperimentResolvedTargetsRequest, ListExperimentResolvedTargetsResponse } from "../models/models_0"; import { ListExperimentResolvedTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/ListExperimentTargetAccountConfigurationsCommand.ts b/clients/client-fis/src/commands/ListExperimentTargetAccountConfigurationsCommand.ts index dc9a9e73fb975..8e99933902cd7 100644 --- a/clients/client-fis/src/commands/ListExperimentTargetAccountConfigurationsCommand.ts +++ b/clients/client-fis/src/commands/ListExperimentTargetAccountConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { ListExperimentTargetAccountConfigurationsRequest, ListExperimentTargetAccountConfigurationsResponse, } from "../models/models_0"; diff --git a/clients/client-fis/src/commands/ListExperimentTemplatesCommand.ts b/clients/client-fis/src/commands/ListExperimentTemplatesCommand.ts index 6b9fd44d2bea4..024adb354c7a4 100644 --- a/clients/client-fis/src/commands/ListExperimentTemplatesCommand.ts +++ b/clients/client-fis/src/commands/ListExperimentTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { ListExperimentTemplatesRequest, ListExperimentTemplatesResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { ListExperimentTemplatesRequest, ListExperimentTemplatesResponse } from "../models/models_0"; import { ListExperimentTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/ListExperimentsCommand.ts b/clients/client-fis/src/commands/ListExperimentsCommand.ts index 188e360f043ee..a327078395b9b 100644 --- a/clients/client-fis/src/commands/ListExperimentsCommand.ts +++ b/clients/client-fis/src/commands/ListExperimentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { ListExperimentsRequest, ListExperimentsResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { ListExperimentsRequest, ListExperimentsResponse } from "../models/models_0"; import { ListExperiments } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/ListTagsForResourceCommand.ts b/clients/client-fis/src/commands/ListTagsForResourceCommand.ts index f612f48821d29..4c2aa4805fe66 100644 --- a/clients/client-fis/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-fis/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/ListTargetAccountConfigurationsCommand.ts b/clients/client-fis/src/commands/ListTargetAccountConfigurationsCommand.ts index d9505b2fc26bf..64fabbef413d1 100644 --- a/clients/client-fis/src/commands/ListTargetAccountConfigurationsCommand.ts +++ b/clients/client-fis/src/commands/ListTargetAccountConfigurationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { ListTargetAccountConfigurationsRequest, ListTargetAccountConfigurationsResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { + ListTargetAccountConfigurationsRequest, + ListTargetAccountConfigurationsResponse, +} from "../models/models_0"; import { ListTargetAccountConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/ListTargetResourceTypesCommand.ts b/clients/client-fis/src/commands/ListTargetResourceTypesCommand.ts index 935928abd99d9..5291cd21f4ec0 100644 --- a/clients/client-fis/src/commands/ListTargetResourceTypesCommand.ts +++ b/clients/client-fis/src/commands/ListTargetResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { ListTargetResourceTypesRequest, ListTargetResourceTypesResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { ListTargetResourceTypesRequest, ListTargetResourceTypesResponse } from "../models/models_0"; import { ListTargetResourceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/StartExperimentCommand.ts b/clients/client-fis/src/commands/StartExperimentCommand.ts index 90e5e81174e33..a98aebb382385 100644 --- a/clients/client-fis/src/commands/StartExperimentCommand.ts +++ b/clients/client-fis/src/commands/StartExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { StartExperimentRequest, StartExperimentResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { StartExperimentRequest, StartExperimentResponse } from "../models/models_0"; import { StartExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/StopExperimentCommand.ts b/clients/client-fis/src/commands/StopExperimentCommand.ts index ea88ff537fe1d..d86dcaaec3de5 100644 --- a/clients/client-fis/src/commands/StopExperimentCommand.ts +++ b/clients/client-fis/src/commands/StopExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { StopExperimentRequest, StopExperimentResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { StopExperimentRequest, StopExperimentResponse } from "../models/models_0"; import { StopExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/TagResourceCommand.ts b/clients/client-fis/src/commands/TagResourceCommand.ts index 246ed68943254..ba24c77e1cbe7 100644 --- a/clients/client-fis/src/commands/TagResourceCommand.ts +++ b/clients/client-fis/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/UntagResourceCommand.ts b/clients/client-fis/src/commands/UntagResourceCommand.ts index fe4ec6816c3b7..76cf54d363fe7 100644 --- a/clients/client-fis/src/commands/UntagResourceCommand.ts +++ b/clients/client-fis/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/UpdateExperimentTemplateCommand.ts b/clients/client-fis/src/commands/UpdateExperimentTemplateCommand.ts index cb400c12ce440..2dee6460a1d31 100644 --- a/clients/client-fis/src/commands/UpdateExperimentTemplateCommand.ts +++ b/clients/client-fis/src/commands/UpdateExperimentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { UpdateExperimentTemplateRequest, UpdateExperimentTemplateResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { UpdateExperimentTemplateRequest, UpdateExperimentTemplateResponse } from "../models/models_0"; import { UpdateExperimentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/UpdateSafetyLeverStateCommand.ts b/clients/client-fis/src/commands/UpdateSafetyLeverStateCommand.ts index 0198d62a81d79..50ed622685f72 100644 --- a/clients/client-fis/src/commands/UpdateSafetyLeverStateCommand.ts +++ b/clients/client-fis/src/commands/UpdateSafetyLeverStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { UpdateSafetyLeverStateRequest, UpdateSafetyLeverStateResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { UpdateSafetyLeverStateRequest, UpdateSafetyLeverStateResponse } from "../models/models_0"; import { UpdateSafetyLeverState } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/commands/UpdateTargetAccountConfigurationCommand.ts b/clients/client-fis/src/commands/UpdateTargetAccountConfigurationCommand.ts index ec3af0ed829ea..a761723514b16 100644 --- a/clients/client-fis/src/commands/UpdateTargetAccountConfigurationCommand.ts +++ b/clients/client-fis/src/commands/UpdateTargetAccountConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; -import { UpdateTargetAccountConfigurationRequest, UpdateTargetAccountConfigurationResponse } from "../models/models_0"; +import type { FisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FisClient"; +import type { + UpdateTargetAccountConfigurationRequest, + UpdateTargetAccountConfigurationResponse, +} from "../models/models_0"; import { UpdateTargetAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-fis/src/endpoint/EndpointParameters.ts b/clients/client-fis/src/endpoint/EndpointParameters.ts index e08dbff132fe1..2e0dd9ab678f1 100644 --- a/clients/client-fis/src/endpoint/EndpointParameters.ts +++ b/clients/client-fis/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-fis/src/endpoint/endpointResolver.ts b/clients/client-fis/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-fis/src/endpoint/endpointResolver.ts +++ b/clients/client-fis/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-fis/src/extensionConfiguration.ts b/clients/client-fis/src/extensionConfiguration.ts index 659fccef3dd6f..60c8ea7ecffb7 100644 --- a/clients/client-fis/src/extensionConfiguration.ts +++ b/clients/client-fis/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-fis/src/models/FisServiceException.ts b/clients/client-fis/src/models/FisServiceException.ts index fc0f2f77e12ca..9497f9ce26220 100644 --- a/clients/client-fis/src/models/FisServiceException.ts +++ b/clients/client-fis/src/models/FisServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-fis/src/models/errors.ts b/clients/client-fis/src/models/errors.ts index c21782d00e818..6f47fc152f18c 100644 --- a/clients/client-fis/src/models/errors.ts +++ b/clients/client-fis/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { FisServiceException as __BaseException } from "./FisServiceException"; diff --git a/clients/client-fis/src/pagination/Interfaces.ts b/clients/client-fis/src/pagination/Interfaces.ts index 88038397c4abf..99ca6b7af0bf5 100644 --- a/clients/client-fis/src/pagination/Interfaces.ts +++ b/clients/client-fis/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { FisClient } from "../FisClient"; diff --git a/clients/client-fis/src/pagination/ListActionsPaginator.ts b/clients/client-fis/src/pagination/ListActionsPaginator.ts index b076ee4f346d0..eb9a458cccc7f 100644 --- a/clients/client-fis/src/pagination/ListActionsPaginator.ts +++ b/clients/client-fis/src/pagination/ListActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListActionsCommand, ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand"; import { FisClient } from "../FisClient"; diff --git a/clients/client-fis/src/pagination/ListExperimentResolvedTargetsPaginator.ts b/clients/client-fis/src/pagination/ListExperimentResolvedTargetsPaginator.ts index 7d7a92d00e4fa..0c7cb1944d9a4 100644 --- a/clients/client-fis/src/pagination/ListExperimentResolvedTargetsPaginator.ts +++ b/clients/client-fis/src/pagination/ListExperimentResolvedTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExperimentResolvedTargetsCommand, diff --git a/clients/client-fis/src/pagination/ListExperimentTemplatesPaginator.ts b/clients/client-fis/src/pagination/ListExperimentTemplatesPaginator.ts index 55d1f2582b1a8..a2bf496250106 100644 --- a/clients/client-fis/src/pagination/ListExperimentTemplatesPaginator.ts +++ b/clients/client-fis/src/pagination/ListExperimentTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExperimentTemplatesCommand, diff --git a/clients/client-fis/src/pagination/ListExperimentsPaginator.ts b/clients/client-fis/src/pagination/ListExperimentsPaginator.ts index f0cb7e5ff1fa3..ec005c3c6106b 100644 --- a/clients/client-fis/src/pagination/ListExperimentsPaginator.ts +++ b/clients/client-fis/src/pagination/ListExperimentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExperimentsCommand, diff --git a/clients/client-fis/src/pagination/ListTargetAccountConfigurationsPaginator.ts b/clients/client-fis/src/pagination/ListTargetAccountConfigurationsPaginator.ts index 65b26d0703b3a..49aba8b309077 100644 --- a/clients/client-fis/src/pagination/ListTargetAccountConfigurationsPaginator.ts +++ b/clients/client-fis/src/pagination/ListTargetAccountConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTargetAccountConfigurationsCommand, diff --git a/clients/client-fis/src/pagination/ListTargetResourceTypesPaginator.ts b/clients/client-fis/src/pagination/ListTargetResourceTypesPaginator.ts index ff88fca54e87a..70e981e5c344b 100644 --- a/clients/client-fis/src/pagination/ListTargetResourceTypesPaginator.ts +++ b/clients/client-fis/src/pagination/ListTargetResourceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTargetResourceTypesCommand, diff --git a/clients/client-fis/src/runtimeConfig.browser.ts b/clients/client-fis/src/runtimeConfig.browser.ts index f6b5af167e107..773f3ec579044 100644 --- a/clients/client-fis/src/runtimeConfig.browser.ts +++ b/clients/client-fis/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FisClientConfig } from "./FisClient"; + +import type { FisClientConfig } from "./FisClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-fis/src/runtimeConfig.native.ts b/clients/client-fis/src/runtimeConfig.native.ts index 91e9e91ac10e2..5cefbc0e0983b 100644 --- a/clients/client-fis/src/runtimeConfig.native.ts +++ b/clients/client-fis/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { FisClientConfig } from "./FisClient"; +import type { FisClientConfig } from "./FisClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-fis/src/runtimeConfig.shared.ts b/clients/client-fis/src/runtimeConfig.shared.ts index 02066ac8ad675..73a768bf3df5b 100644 --- a/clients/client-fis/src/runtimeConfig.shared.ts +++ b/clients/client-fis/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultFisHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { FisClientConfig } from "./FisClient"; +import type { FisClientConfig } from "./FisClient"; /** * @internal diff --git a/clients/client-fis/src/runtimeConfig.ts b/clients/client-fis/src/runtimeConfig.ts index fab14e8475815..c5c4afa2a04ea 100644 --- a/clients/client-fis/src/runtimeConfig.ts +++ b/clients/client-fis/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FisClientConfig } from "./FisClient"; + +import type { FisClientConfig } from "./FisClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-fis/src/runtimeExtensions.ts b/clients/client-fis/src/runtimeExtensions.ts index 4acd937a4069a..0f9d7f5fbfd62 100644 --- a/clients/client-fis/src/runtimeExtensions.ts +++ b/clients/client-fis/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { FisExtensionConfiguration } from "./extensionConfiguration"; +import type { FisExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-fis/src/schemas/schemas_0.ts b/clients/client-fis/src/schemas/schemas_0.ts index 2b70fcd736c97..fc992425001b4 100644 --- a/clients/client-fis/src/schemas/schemas_0.ts +++ b/clients/client-fis/src/schemas/schemas_0.ts @@ -266,7 +266,7 @@ const n0 = "com.amazonaws.fis"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-fms/package.json b/clients/client-fms/package.json index 1e9af40c39f94..b03f28c6b857e 100644 --- a/clients/client-fms/package.json +++ b/clients/client-fms/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-fms/src/FMS.ts b/clients/client-fms/src/FMS.ts index 685e36c0ec0b2..8a30763e96476 100644 --- a/clients/client-fms/src/FMS.ts +++ b/clients/client-fms/src/FMS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateAdminAccountCommand, @@ -192,7 +192,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { FMSClient, FMSClientConfig } from "./FMSClient"; +import { FMSClient } from "./FMSClient"; const commands = { AssociateAdminAccountCommand, diff --git a/clients/client-fms/src/FMSClient.ts b/clients/client-fms/src/FMSClient.ts index fbd1abfff0221..4c49a24f404c8 100644 --- a/clients/client-fms/src/FMSClient.ts +++ b/clients/client-fms/src/FMSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultFMSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -169,7 +178,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-fms/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-fms/src/auth/httpAuthExtensionConfiguration.ts index 0df944d4f208e..7e213e9e2f302 100644 --- a/clients/client-fms/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-fms/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { FMSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { FMSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-fms/src/auth/httpAuthSchemeProvider.ts b/clients/client-fms/src/auth/httpAuthSchemeProvider.ts index c9fd818736a93..5e9ca95e0370f 100644 --- a/clients/client-fms/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-fms/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { FMSClientConfig, FMSClientResolvedConfig } from "../FMSClient"; +import { type FMSClientResolvedConfig, FMSClientConfig } from "../FMSClient"; /** * @internal diff --git a/clients/client-fms/src/commands/AssociateAdminAccountCommand.ts b/clients/client-fms/src/commands/AssociateAdminAccountCommand.ts index 7e76033ab41a1..6cfc6162dc51a 100644 --- a/clients/client-fms/src/commands/AssociateAdminAccountCommand.ts +++ b/clients/client-fms/src/commands/AssociateAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { AssociateAdminAccountRequest } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { AssociateAdminAccountRequest } from "../models/models_0"; import { AssociateAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/AssociateThirdPartyFirewallCommand.ts b/clients/client-fms/src/commands/AssociateThirdPartyFirewallCommand.ts index 0b84fc80971e9..8f8563573582a 100644 --- a/clients/client-fms/src/commands/AssociateThirdPartyFirewallCommand.ts +++ b/clients/client-fms/src/commands/AssociateThirdPartyFirewallCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { AssociateThirdPartyFirewallRequest, AssociateThirdPartyFirewallResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { AssociateThirdPartyFirewallRequest, AssociateThirdPartyFirewallResponse } from "../models/models_0"; import { AssociateThirdPartyFirewall } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/BatchAssociateResourceCommand.ts b/clients/client-fms/src/commands/BatchAssociateResourceCommand.ts index 7c17cc3bd7712..b8cca14224323 100644 --- a/clients/client-fms/src/commands/BatchAssociateResourceCommand.ts +++ b/clients/client-fms/src/commands/BatchAssociateResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { BatchAssociateResourceRequest, BatchAssociateResourceResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { BatchAssociateResourceRequest, BatchAssociateResourceResponse } from "../models/models_0"; import { BatchAssociateResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/BatchDisassociateResourceCommand.ts b/clients/client-fms/src/commands/BatchDisassociateResourceCommand.ts index 84f37e9c6d0b5..f5c7f95aa5d1d 100644 --- a/clients/client-fms/src/commands/BatchDisassociateResourceCommand.ts +++ b/clients/client-fms/src/commands/BatchDisassociateResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { BatchDisassociateResourceRequest, BatchDisassociateResourceResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { BatchDisassociateResourceRequest, BatchDisassociateResourceResponse } from "../models/models_0"; import { BatchDisassociateResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/DeleteAppsListCommand.ts b/clients/client-fms/src/commands/DeleteAppsListCommand.ts index 6e46311a048e1..e80d848e11619 100644 --- a/clients/client-fms/src/commands/DeleteAppsListCommand.ts +++ b/clients/client-fms/src/commands/DeleteAppsListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { DeleteAppsListRequest } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { DeleteAppsListRequest } from "../models/models_0"; import { DeleteAppsList } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/DeleteNotificationChannelCommand.ts b/clients/client-fms/src/commands/DeleteNotificationChannelCommand.ts index 04a73ea1d0154..13db514e0ca49 100644 --- a/clients/client-fms/src/commands/DeleteNotificationChannelCommand.ts +++ b/clients/client-fms/src/commands/DeleteNotificationChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { DeleteNotificationChannelRequest } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { DeleteNotificationChannelRequest } from "../models/models_0"; import { DeleteNotificationChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/DeletePolicyCommand.ts b/clients/client-fms/src/commands/DeletePolicyCommand.ts index a1f18cc520afc..7efbf261f52f7 100644 --- a/clients/client-fms/src/commands/DeletePolicyCommand.ts +++ b/clients/client-fms/src/commands/DeletePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { DeletePolicyRequest } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { DeletePolicyRequest } from "../models/models_0"; import { DeletePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/DeleteProtocolsListCommand.ts b/clients/client-fms/src/commands/DeleteProtocolsListCommand.ts index f01aab71176a6..8366bd8d6ff4d 100644 --- a/clients/client-fms/src/commands/DeleteProtocolsListCommand.ts +++ b/clients/client-fms/src/commands/DeleteProtocolsListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { DeleteProtocolsListRequest } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { DeleteProtocolsListRequest } from "../models/models_0"; import { DeleteProtocolsList } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/DeleteResourceSetCommand.ts b/clients/client-fms/src/commands/DeleteResourceSetCommand.ts index b43ff7152b0be..272f981ca6254 100644 --- a/clients/client-fms/src/commands/DeleteResourceSetCommand.ts +++ b/clients/client-fms/src/commands/DeleteResourceSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { DeleteResourceSetRequest } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { DeleteResourceSetRequest } from "../models/models_0"; import { DeleteResourceSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/DisassociateAdminAccountCommand.ts b/clients/client-fms/src/commands/DisassociateAdminAccountCommand.ts index d712b4ade95c5..5602b76484172 100644 --- a/clients/client-fms/src/commands/DisassociateAdminAccountCommand.ts +++ b/clients/client-fms/src/commands/DisassociateAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { DisassociateAdminAccountRequest } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { DisassociateAdminAccountRequest } from "../models/models_0"; import { DisassociateAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/DisassociateThirdPartyFirewallCommand.ts b/clients/client-fms/src/commands/DisassociateThirdPartyFirewallCommand.ts index ed3d893f66276..bd95c50cb3d2f 100644 --- a/clients/client-fms/src/commands/DisassociateThirdPartyFirewallCommand.ts +++ b/clients/client-fms/src/commands/DisassociateThirdPartyFirewallCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { DisassociateThirdPartyFirewallRequest, DisassociateThirdPartyFirewallResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { DisassociateThirdPartyFirewallRequest, DisassociateThirdPartyFirewallResponse } from "../models/models_0"; import { DisassociateThirdPartyFirewall } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetAdminAccountCommand.ts b/clients/client-fms/src/commands/GetAdminAccountCommand.ts index 4b12ac8705c32..b2bff5835f5ae 100644 --- a/clients/client-fms/src/commands/GetAdminAccountCommand.ts +++ b/clients/client-fms/src/commands/GetAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetAdminAccountRequest, GetAdminAccountResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetAdminAccountRequest, GetAdminAccountResponse } from "../models/models_0"; import { GetAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetAdminScopeCommand.ts b/clients/client-fms/src/commands/GetAdminScopeCommand.ts index 7e69c54818fbe..8c968c3073e4a 100644 --- a/clients/client-fms/src/commands/GetAdminScopeCommand.ts +++ b/clients/client-fms/src/commands/GetAdminScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetAdminScopeRequest, GetAdminScopeResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetAdminScopeRequest, GetAdminScopeResponse } from "../models/models_0"; import { GetAdminScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetAppsListCommand.ts b/clients/client-fms/src/commands/GetAppsListCommand.ts index 61f2eddd6c79f..d1e477aa39565 100644 --- a/clients/client-fms/src/commands/GetAppsListCommand.ts +++ b/clients/client-fms/src/commands/GetAppsListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetAppsListRequest, GetAppsListResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetAppsListRequest, GetAppsListResponse } from "../models/models_0"; import { GetAppsList } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetComplianceDetailCommand.ts b/clients/client-fms/src/commands/GetComplianceDetailCommand.ts index 953e8e1e9ff22..534f139c6eec9 100644 --- a/clients/client-fms/src/commands/GetComplianceDetailCommand.ts +++ b/clients/client-fms/src/commands/GetComplianceDetailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetComplianceDetailRequest, GetComplianceDetailResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetComplianceDetailRequest, GetComplianceDetailResponse } from "../models/models_0"; import { GetComplianceDetail } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetNotificationChannelCommand.ts b/clients/client-fms/src/commands/GetNotificationChannelCommand.ts index 8cdb8a0a219a4..284dffc4f686f 100644 --- a/clients/client-fms/src/commands/GetNotificationChannelCommand.ts +++ b/clients/client-fms/src/commands/GetNotificationChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetNotificationChannelRequest, GetNotificationChannelResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetNotificationChannelRequest, GetNotificationChannelResponse } from "../models/models_0"; import { GetNotificationChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetPolicyCommand.ts b/clients/client-fms/src/commands/GetPolicyCommand.ts index 8512db0d2f2eb..dfc335bfec2b9 100644 --- a/clients/client-fms/src/commands/GetPolicyCommand.ts +++ b/clients/client-fms/src/commands/GetPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; import { GetPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetProtectionStatusCommand.ts b/clients/client-fms/src/commands/GetProtectionStatusCommand.ts index fe788b9ee7d9c..9597fce73c2e5 100644 --- a/clients/client-fms/src/commands/GetProtectionStatusCommand.ts +++ b/clients/client-fms/src/commands/GetProtectionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetProtectionStatusRequest, GetProtectionStatusResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetProtectionStatusRequest, GetProtectionStatusResponse } from "../models/models_0"; import { GetProtectionStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetProtocolsListCommand.ts b/clients/client-fms/src/commands/GetProtocolsListCommand.ts index 95213dd71095d..016723ac9067c 100644 --- a/clients/client-fms/src/commands/GetProtocolsListCommand.ts +++ b/clients/client-fms/src/commands/GetProtocolsListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetProtocolsListRequest, GetProtocolsListResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetProtocolsListRequest, GetProtocolsListResponse } from "../models/models_0"; import { GetProtocolsList } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetResourceSetCommand.ts b/clients/client-fms/src/commands/GetResourceSetCommand.ts index 7b6ae5ba77cc6..ff041f977a824 100644 --- a/clients/client-fms/src/commands/GetResourceSetCommand.ts +++ b/clients/client-fms/src/commands/GetResourceSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetResourceSetRequest, GetResourceSetResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetResourceSetRequest, GetResourceSetResponse } from "../models/models_0"; import { GetResourceSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/GetThirdPartyFirewallAssociationStatusCommand.ts b/clients/client-fms/src/commands/GetThirdPartyFirewallAssociationStatusCommand.ts index 4bf105a24ef0c..517eb7a13faf6 100644 --- a/clients/client-fms/src/commands/GetThirdPartyFirewallAssociationStatusCommand.ts +++ b/clients/client-fms/src/commands/GetThirdPartyFirewallAssociationStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetThirdPartyFirewallAssociationStatusRequest, GetThirdPartyFirewallAssociationStatusResponse, } from "../models/models_0"; diff --git a/clients/client-fms/src/commands/GetViolationDetailsCommand.ts b/clients/client-fms/src/commands/GetViolationDetailsCommand.ts index eb2a5733eda50..809e05fac583f 100644 --- a/clients/client-fms/src/commands/GetViolationDetailsCommand.ts +++ b/clients/client-fms/src/commands/GetViolationDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { GetViolationDetailsRequest, GetViolationDetailsResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { GetViolationDetailsRequest, GetViolationDetailsResponse } from "../models/models_0"; import { GetViolationDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListAdminAccountsForOrganizationCommand.ts b/clients/client-fms/src/commands/ListAdminAccountsForOrganizationCommand.ts index 76a0081bef028..852364876fb4f 100644 --- a/clients/client-fms/src/commands/ListAdminAccountsForOrganizationCommand.ts +++ b/clients/client-fms/src/commands/ListAdminAccountsForOrganizationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListAdminAccountsForOrganizationRequest, ListAdminAccountsForOrganizationResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { + ListAdminAccountsForOrganizationRequest, + ListAdminAccountsForOrganizationResponse, +} from "../models/models_0"; import { ListAdminAccountsForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListAdminsManagingAccountCommand.ts b/clients/client-fms/src/commands/ListAdminsManagingAccountCommand.ts index b63855ea668bf..c2305c336e995 100644 --- a/clients/client-fms/src/commands/ListAdminsManagingAccountCommand.ts +++ b/clients/client-fms/src/commands/ListAdminsManagingAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListAdminsManagingAccountRequest, ListAdminsManagingAccountResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListAdminsManagingAccountRequest, ListAdminsManagingAccountResponse } from "../models/models_0"; import { ListAdminsManagingAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListAppsListsCommand.ts b/clients/client-fms/src/commands/ListAppsListsCommand.ts index 175792db5319a..eebff4eb9b858 100644 --- a/clients/client-fms/src/commands/ListAppsListsCommand.ts +++ b/clients/client-fms/src/commands/ListAppsListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListAppsListsRequest, ListAppsListsResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListAppsListsRequest, ListAppsListsResponse } from "../models/models_0"; import { ListAppsLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListComplianceStatusCommand.ts b/clients/client-fms/src/commands/ListComplianceStatusCommand.ts index aad4a8bade0fc..fd144bc3a7af9 100644 --- a/clients/client-fms/src/commands/ListComplianceStatusCommand.ts +++ b/clients/client-fms/src/commands/ListComplianceStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListComplianceStatusRequest, ListComplianceStatusResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListComplianceStatusRequest, ListComplianceStatusResponse } from "../models/models_0"; import { ListComplianceStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListDiscoveredResourcesCommand.ts b/clients/client-fms/src/commands/ListDiscoveredResourcesCommand.ts index cbc2de449e300..203b5fc27a8c9 100644 --- a/clients/client-fms/src/commands/ListDiscoveredResourcesCommand.ts +++ b/clients/client-fms/src/commands/ListDiscoveredResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListDiscoveredResourcesRequest, ListDiscoveredResourcesResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListDiscoveredResourcesRequest, ListDiscoveredResourcesResponse } from "../models/models_0"; import { ListDiscoveredResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListMemberAccountsCommand.ts b/clients/client-fms/src/commands/ListMemberAccountsCommand.ts index 1c3555b4523c7..57c03abf6d544 100644 --- a/clients/client-fms/src/commands/ListMemberAccountsCommand.ts +++ b/clients/client-fms/src/commands/ListMemberAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListMemberAccountsRequest, ListMemberAccountsResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListMemberAccountsRequest, ListMemberAccountsResponse } from "../models/models_0"; import { ListMemberAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListPoliciesCommand.ts b/clients/client-fms/src/commands/ListPoliciesCommand.ts index 3989fc3d12720..acdd4436a4a73 100644 --- a/clients/client-fms/src/commands/ListPoliciesCommand.ts +++ b/clients/client-fms/src/commands/ListPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0"; import { ListPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListProtocolsListsCommand.ts b/clients/client-fms/src/commands/ListProtocolsListsCommand.ts index a7bd979a31df7..57489ce0322ad 100644 --- a/clients/client-fms/src/commands/ListProtocolsListsCommand.ts +++ b/clients/client-fms/src/commands/ListProtocolsListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListProtocolsListsRequest, ListProtocolsListsResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListProtocolsListsRequest, ListProtocolsListsResponse } from "../models/models_0"; import { ListProtocolsLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListResourceSetResourcesCommand.ts b/clients/client-fms/src/commands/ListResourceSetResourcesCommand.ts index 64743acf5f5b8..9f0884fc5e768 100644 --- a/clients/client-fms/src/commands/ListResourceSetResourcesCommand.ts +++ b/clients/client-fms/src/commands/ListResourceSetResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListResourceSetResourcesRequest, ListResourceSetResourcesResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListResourceSetResourcesRequest, ListResourceSetResourcesResponse } from "../models/models_0"; import { ListResourceSetResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListResourceSetsCommand.ts b/clients/client-fms/src/commands/ListResourceSetsCommand.ts index a51aca0c37c9a..1387ab23e7a6c 100644 --- a/clients/client-fms/src/commands/ListResourceSetsCommand.ts +++ b/clients/client-fms/src/commands/ListResourceSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListResourceSetsRequest, ListResourceSetsResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListResourceSetsRequest, ListResourceSetsResponse } from "../models/models_0"; import { ListResourceSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListTagsForResourceCommand.ts b/clients/client-fms/src/commands/ListTagsForResourceCommand.ts index f9a6f118b0f13..920c69287796d 100644 --- a/clients/client-fms/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-fms/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/ListThirdPartyFirewallFirewallPoliciesCommand.ts b/clients/client-fms/src/commands/ListThirdPartyFirewallFirewallPoliciesCommand.ts index 66ea8c658ba48..407a7834102a0 100644 --- a/clients/client-fms/src/commands/ListThirdPartyFirewallFirewallPoliciesCommand.ts +++ b/clients/client-fms/src/commands/ListThirdPartyFirewallFirewallPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { ListThirdPartyFirewallFirewallPoliciesRequest, ListThirdPartyFirewallFirewallPoliciesResponse, } from "../models/models_0"; diff --git a/clients/client-fms/src/commands/PutAdminAccountCommand.ts b/clients/client-fms/src/commands/PutAdminAccountCommand.ts index ef889a67be832..deb71577c7317 100644 --- a/clients/client-fms/src/commands/PutAdminAccountCommand.ts +++ b/clients/client-fms/src/commands/PutAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { PutAdminAccountRequest } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { PutAdminAccountRequest } from "../models/models_0"; import { PutAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/PutAppsListCommand.ts b/clients/client-fms/src/commands/PutAppsListCommand.ts index a67fda49ef81f..95f4e3b4835ae 100644 --- a/clients/client-fms/src/commands/PutAppsListCommand.ts +++ b/clients/client-fms/src/commands/PutAppsListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { PutAppsListRequest, PutAppsListResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { PutAppsListRequest, PutAppsListResponse } from "../models/models_0"; import { PutAppsList } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/PutNotificationChannelCommand.ts b/clients/client-fms/src/commands/PutNotificationChannelCommand.ts index df22f1625f84d..356f9e2b685f0 100644 --- a/clients/client-fms/src/commands/PutNotificationChannelCommand.ts +++ b/clients/client-fms/src/commands/PutNotificationChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { PutNotificationChannelRequest } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { PutNotificationChannelRequest } from "../models/models_0"; import { PutNotificationChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/PutPolicyCommand.ts b/clients/client-fms/src/commands/PutPolicyCommand.ts index 474ddb3a68a5e..490936734dc24 100644 --- a/clients/client-fms/src/commands/PutPolicyCommand.ts +++ b/clients/client-fms/src/commands/PutPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { PutPolicyRequest, PutPolicyResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { PutPolicyRequest, PutPolicyResponse } from "../models/models_0"; import { PutPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/PutProtocolsListCommand.ts b/clients/client-fms/src/commands/PutProtocolsListCommand.ts index 45a746a679733..fd5eab2c34db9 100644 --- a/clients/client-fms/src/commands/PutProtocolsListCommand.ts +++ b/clients/client-fms/src/commands/PutProtocolsListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { PutProtocolsListRequest, PutProtocolsListResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { PutProtocolsListRequest, PutProtocolsListResponse } from "../models/models_0"; import { PutProtocolsList } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/PutResourceSetCommand.ts b/clients/client-fms/src/commands/PutResourceSetCommand.ts index b18abf8ffaeac..f491881461e67 100644 --- a/clients/client-fms/src/commands/PutResourceSetCommand.ts +++ b/clients/client-fms/src/commands/PutResourceSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { PutResourceSetRequest, PutResourceSetResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { PutResourceSetRequest, PutResourceSetResponse } from "../models/models_0"; import { PutResourceSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/TagResourceCommand.ts b/clients/client-fms/src/commands/TagResourceCommand.ts index 50771ce257988..ab39895528011 100644 --- a/clients/client-fms/src/commands/TagResourceCommand.ts +++ b/clients/client-fms/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/commands/UntagResourceCommand.ts b/clients/client-fms/src/commands/UntagResourceCommand.ts index fa01b87f2b61f..2548fc4d6018b 100644 --- a/clients/client-fms/src/commands/UntagResourceCommand.ts +++ b/clients/client-fms/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { FMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FMSClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fms/src/endpoint/EndpointParameters.ts b/clients/client-fms/src/endpoint/EndpointParameters.ts index 2ab754b151c56..f8527769d7f9d 100644 --- a/clients/client-fms/src/endpoint/EndpointParameters.ts +++ b/clients/client-fms/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-fms/src/endpoint/endpointResolver.ts b/clients/client-fms/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-fms/src/endpoint/endpointResolver.ts +++ b/clients/client-fms/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-fms/src/extensionConfiguration.ts b/clients/client-fms/src/extensionConfiguration.ts index 138e660a58f59..addadca143ab8 100644 --- a/clients/client-fms/src/extensionConfiguration.ts +++ b/clients/client-fms/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-fms/src/models/FMSServiceException.ts b/clients/client-fms/src/models/FMSServiceException.ts index 0e4494ac0138d..76127c20544a7 100644 --- a/clients/client-fms/src/models/FMSServiceException.ts +++ b/clients/client-fms/src/models/FMSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-fms/src/models/errors.ts b/clients/client-fms/src/models/errors.ts index 22b4aa7e77fde..5c6a8e7005c95 100644 --- a/clients/client-fms/src/models/errors.ts +++ b/clients/client-fms/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { FMSServiceException as __BaseException } from "./FMSServiceException"; diff --git a/clients/client-fms/src/pagination/Interfaces.ts b/clients/client-fms/src/pagination/Interfaces.ts index 88a5b82c3f21d..7d8ce7afb6542 100644 --- a/clients/client-fms/src/pagination/Interfaces.ts +++ b/clients/client-fms/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { FMSClient } from "../FMSClient"; diff --git a/clients/client-fms/src/pagination/ListAdminAccountsForOrganizationPaginator.ts b/clients/client-fms/src/pagination/ListAdminAccountsForOrganizationPaginator.ts index 83b5770d91f10..1da26449e2b95 100644 --- a/clients/client-fms/src/pagination/ListAdminAccountsForOrganizationPaginator.ts +++ b/clients/client-fms/src/pagination/ListAdminAccountsForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAdminAccountsForOrganizationCommand, diff --git a/clients/client-fms/src/pagination/ListAdminsManagingAccountPaginator.ts b/clients/client-fms/src/pagination/ListAdminsManagingAccountPaginator.ts index 3960ba562399c..e6bdae40eda40 100644 --- a/clients/client-fms/src/pagination/ListAdminsManagingAccountPaginator.ts +++ b/clients/client-fms/src/pagination/ListAdminsManagingAccountPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAdminsManagingAccountCommand, diff --git a/clients/client-fms/src/pagination/ListAppsListsPaginator.ts b/clients/client-fms/src/pagination/ListAppsListsPaginator.ts index a5b0fb6222336..89e3cb373f094 100644 --- a/clients/client-fms/src/pagination/ListAppsListsPaginator.ts +++ b/clients/client-fms/src/pagination/ListAppsListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppsListsCommand, diff --git a/clients/client-fms/src/pagination/ListComplianceStatusPaginator.ts b/clients/client-fms/src/pagination/ListComplianceStatusPaginator.ts index 93785f8e94d08..c45de3e8d0ebc 100644 --- a/clients/client-fms/src/pagination/ListComplianceStatusPaginator.ts +++ b/clients/client-fms/src/pagination/ListComplianceStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComplianceStatusCommand, diff --git a/clients/client-fms/src/pagination/ListMemberAccountsPaginator.ts b/clients/client-fms/src/pagination/ListMemberAccountsPaginator.ts index db7e96e9f1df0..390189704599c 100644 --- a/clients/client-fms/src/pagination/ListMemberAccountsPaginator.ts +++ b/clients/client-fms/src/pagination/ListMemberAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMemberAccountsCommand, diff --git a/clients/client-fms/src/pagination/ListPoliciesPaginator.ts b/clients/client-fms/src/pagination/ListPoliciesPaginator.ts index 1bda63c291795..899e8c7241454 100644 --- a/clients/client-fms/src/pagination/ListPoliciesPaginator.ts +++ b/clients/client-fms/src/pagination/ListPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPoliciesCommand, diff --git a/clients/client-fms/src/pagination/ListProtocolsListsPaginator.ts b/clients/client-fms/src/pagination/ListProtocolsListsPaginator.ts index 4c43d9cc4a58b..d7e79023ec1d1 100644 --- a/clients/client-fms/src/pagination/ListProtocolsListsPaginator.ts +++ b/clients/client-fms/src/pagination/ListProtocolsListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProtocolsListsCommand, diff --git a/clients/client-fms/src/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.ts b/clients/client-fms/src/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.ts index a59c9944f93b9..1f6644b4b1c6e 100644 --- a/clients/client-fms/src/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.ts +++ b/clients/client-fms/src/pagination/ListThirdPartyFirewallFirewallPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThirdPartyFirewallFirewallPoliciesCommand, diff --git a/clients/client-fms/src/runtimeConfig.browser.ts b/clients/client-fms/src/runtimeConfig.browser.ts index 511a6649b0107..9cab256b45f59 100644 --- a/clients/client-fms/src/runtimeConfig.browser.ts +++ b/clients/client-fms/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FMSClientConfig } from "./FMSClient"; + +import type { FMSClientConfig } from "./FMSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-fms/src/runtimeConfig.native.ts b/clients/client-fms/src/runtimeConfig.native.ts index 5021b686442ac..8f8b55512d943 100644 --- a/clients/client-fms/src/runtimeConfig.native.ts +++ b/clients/client-fms/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { FMSClientConfig } from "./FMSClient"; +import type { FMSClientConfig } from "./FMSClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-fms/src/runtimeConfig.shared.ts b/clients/client-fms/src/runtimeConfig.shared.ts index 5523829268106..9521e363cb5e7 100644 --- a/clients/client-fms/src/runtimeConfig.shared.ts +++ b/clients/client-fms/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultFMSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { FMSClientConfig } from "./FMSClient"; +import type { FMSClientConfig } from "./FMSClient"; /** * @internal diff --git a/clients/client-fms/src/runtimeConfig.ts b/clients/client-fms/src/runtimeConfig.ts index b0c01015c095b..468520f8c367b 100644 --- a/clients/client-fms/src/runtimeConfig.ts +++ b/clients/client-fms/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FMSClientConfig } from "./FMSClient"; + +import type { FMSClientConfig } from "./FMSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-fms/src/runtimeExtensions.ts b/clients/client-fms/src/runtimeExtensions.ts index e422ec180f5a9..b42b2f90ac97f 100644 --- a/clients/client-fms/src/runtimeExtensions.ts +++ b/clients/client-fms/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { FMSExtensionConfiguration } from "./extensionConfiguration"; +import type { FMSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-fms/src/schemas/schemas_0.ts b/clients/client-fms/src/schemas/schemas_0.ts index 58ef9f65b5a2e..ba6c01ec3b000 100644 --- a/clients/client-fms/src/schemas/schemas_0.ts +++ b/clients/client-fms/src/schemas/schemas_0.ts @@ -459,7 +459,7 @@ const n0 = "com.amazonaws.fms"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-forecast/package.json b/clients/client-forecast/package.json index d33fe4a474ed0..cba3083ff3dc2 100644 --- a/clients/client-forecast/package.json +++ b/clients/client-forecast/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-forecast/src/Forecast.ts b/clients/client-forecast/src/Forecast.ts index 5ec214df99c00..db583d062ce87 100644 --- a/clients/client-forecast/src/Forecast.ts +++ b/clients/client-forecast/src/Forecast.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAutoPredictorCommand, @@ -313,7 +313,7 @@ import { UpdateDatasetGroupCommandInput, UpdateDatasetGroupCommandOutput, } from "./commands/UpdateDatasetGroupCommand"; -import { ForecastClient, ForecastClientConfig } from "./ForecastClient"; +import { ForecastClient } from "./ForecastClient"; const commands = { CreateAutoPredictorCommand, diff --git a/clients/client-forecast/src/ForecastClient.ts b/clients/client-forecast/src/ForecastClient.ts index a57ba12b6be09..6d23cf335fc19 100644 --- a/clients/client-forecast/src/ForecastClient.ts +++ b/clients/client-forecast/src/ForecastClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultForecastHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -235,7 +244,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-forecast/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-forecast/src/auth/httpAuthExtensionConfiguration.ts index 1e9c6752eda06..8e6e3a6e5288a 100644 --- a/clients/client-forecast/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-forecast/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ForecastHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ForecastHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-forecast/src/auth/httpAuthSchemeProvider.ts b/clients/client-forecast/src/auth/httpAuthSchemeProvider.ts index 0d70da5e854fe..c66c59ca5ef71 100644 --- a/clients/client-forecast/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-forecast/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ForecastClientConfig, ForecastClientResolvedConfig } from "../ForecastClient"; +import { type ForecastClientResolvedConfig, ForecastClientConfig } from "../ForecastClient"; /** * @internal diff --git a/clients/client-forecast/src/commands/CreateAutoPredictorCommand.ts b/clients/client-forecast/src/commands/CreateAutoPredictorCommand.ts index 3cbddfa7c5f83..43814e74df51d 100644 --- a/clients/client-forecast/src/commands/CreateAutoPredictorCommand.ts +++ b/clients/client-forecast/src/commands/CreateAutoPredictorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateAutoPredictorRequest, CreateAutoPredictorResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateAutoPredictorRequest, CreateAutoPredictorResponse } from "../models/models_0"; import { CreateAutoPredictor } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateDatasetCommand.ts b/clients/client-forecast/src/commands/CreateDatasetCommand.ts index 51fa206611370..352c9f2eedc0f 100644 --- a/clients/client-forecast/src/commands/CreateDatasetCommand.ts +++ b/clients/client-forecast/src/commands/CreateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; import { CreateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateDatasetGroupCommand.ts b/clients/client-forecast/src/commands/CreateDatasetGroupCommand.ts index de6dac9a23b88..bd2ab86e1cf19 100644 --- a/clients/client-forecast/src/commands/CreateDatasetGroupCommand.ts +++ b/clients/client-forecast/src/commands/CreateDatasetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateDatasetGroupRequest, CreateDatasetGroupResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateDatasetGroupRequest, CreateDatasetGroupResponse } from "../models/models_0"; import { CreateDatasetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateDatasetImportJobCommand.ts b/clients/client-forecast/src/commands/CreateDatasetImportJobCommand.ts index 21560640b0ff5..5b2c415169784 100644 --- a/clients/client-forecast/src/commands/CreateDatasetImportJobCommand.ts +++ b/clients/client-forecast/src/commands/CreateDatasetImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateDatasetImportJobRequest, CreateDatasetImportJobResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateDatasetImportJobRequest, CreateDatasetImportJobResponse } from "../models/models_0"; import { CreateDatasetImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateExplainabilityCommand.ts b/clients/client-forecast/src/commands/CreateExplainabilityCommand.ts index 1f59198673b70..e3786682f636d 100644 --- a/clients/client-forecast/src/commands/CreateExplainabilityCommand.ts +++ b/clients/client-forecast/src/commands/CreateExplainabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateExplainabilityRequest, CreateExplainabilityResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateExplainabilityRequest, CreateExplainabilityResponse } from "../models/models_0"; import { CreateExplainability } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateExplainabilityExportCommand.ts b/clients/client-forecast/src/commands/CreateExplainabilityExportCommand.ts index c831e39981f10..53b4a413e2206 100644 --- a/clients/client-forecast/src/commands/CreateExplainabilityExportCommand.ts +++ b/clients/client-forecast/src/commands/CreateExplainabilityExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateExplainabilityExportRequest, CreateExplainabilityExportResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateExplainabilityExportRequest, CreateExplainabilityExportResponse } from "../models/models_0"; import { CreateExplainabilityExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateForecastCommand.ts b/clients/client-forecast/src/commands/CreateForecastCommand.ts index 15a358e358436..7152ca44cedf2 100644 --- a/clients/client-forecast/src/commands/CreateForecastCommand.ts +++ b/clients/client-forecast/src/commands/CreateForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateForecastRequest, CreateForecastResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateForecastRequest, CreateForecastResponse } from "../models/models_0"; import { CreateForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateForecastExportJobCommand.ts b/clients/client-forecast/src/commands/CreateForecastExportJobCommand.ts index bd225f047f05b..15009b36f238e 100644 --- a/clients/client-forecast/src/commands/CreateForecastExportJobCommand.ts +++ b/clients/client-forecast/src/commands/CreateForecastExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateForecastExportJobRequest, CreateForecastExportJobResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateForecastExportJobRequest, CreateForecastExportJobResponse } from "../models/models_0"; import { CreateForecastExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateMonitorCommand.ts b/clients/client-forecast/src/commands/CreateMonitorCommand.ts index 359e138e6025c..9a5d4e55efb7c 100644 --- a/clients/client-forecast/src/commands/CreateMonitorCommand.ts +++ b/clients/client-forecast/src/commands/CreateMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateMonitorRequest, CreateMonitorResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateMonitorRequest, CreateMonitorResponse } from "../models/models_0"; import { CreateMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreatePredictorBacktestExportJobCommand.ts b/clients/client-forecast/src/commands/CreatePredictorBacktestExportJobCommand.ts index 982427ef5d496..5416f7b86ffed 100644 --- a/clients/client-forecast/src/commands/CreatePredictorBacktestExportJobCommand.ts +++ b/clients/client-forecast/src/commands/CreatePredictorBacktestExportJobCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreatePredictorBacktestExportJobRequest, CreatePredictorBacktestExportJobResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { + CreatePredictorBacktestExportJobRequest, + CreatePredictorBacktestExportJobResponse, +} from "../models/models_0"; import { CreatePredictorBacktestExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreatePredictorCommand.ts b/clients/client-forecast/src/commands/CreatePredictorCommand.ts index c79695a2135a2..dc8d39f3e4245 100644 --- a/clients/client-forecast/src/commands/CreatePredictorCommand.ts +++ b/clients/client-forecast/src/commands/CreatePredictorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreatePredictorRequest, CreatePredictorResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreatePredictorRequest, CreatePredictorResponse } from "../models/models_0"; import { CreatePredictor } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateWhatIfAnalysisCommand.ts b/clients/client-forecast/src/commands/CreateWhatIfAnalysisCommand.ts index 1b6637baaf191..9d85fb291d5bd 100644 --- a/clients/client-forecast/src/commands/CreateWhatIfAnalysisCommand.ts +++ b/clients/client-forecast/src/commands/CreateWhatIfAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateWhatIfAnalysisRequest, CreateWhatIfAnalysisResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateWhatIfAnalysisRequest, CreateWhatIfAnalysisResponse } from "../models/models_0"; import { CreateWhatIfAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateWhatIfForecastCommand.ts b/clients/client-forecast/src/commands/CreateWhatIfForecastCommand.ts index f5a65ed895bce..cb05415789550 100644 --- a/clients/client-forecast/src/commands/CreateWhatIfForecastCommand.ts +++ b/clients/client-forecast/src/commands/CreateWhatIfForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateWhatIfForecastRequest, CreateWhatIfForecastResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateWhatIfForecastRequest, CreateWhatIfForecastResponse } from "../models/models_0"; import { CreateWhatIfForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/CreateWhatIfForecastExportCommand.ts b/clients/client-forecast/src/commands/CreateWhatIfForecastExportCommand.ts index 1bb24d5f9135e..c167736ef6518 100644 --- a/clients/client-forecast/src/commands/CreateWhatIfForecastExportCommand.ts +++ b/clients/client-forecast/src/commands/CreateWhatIfForecastExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { CreateWhatIfForecastExportRequest, CreateWhatIfForecastExportResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { CreateWhatIfForecastExportRequest, CreateWhatIfForecastExportResponse } from "../models/models_0"; import { CreateWhatIfForecastExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteDatasetCommand.ts b/clients/client-forecast/src/commands/DeleteDatasetCommand.ts index d3c8b52ec261e..4113c5ff7a167 100644 --- a/clients/client-forecast/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-forecast/src/commands/DeleteDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteDatasetRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteDatasetRequest } from "../models/models_0"; import { DeleteDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteDatasetGroupCommand.ts b/clients/client-forecast/src/commands/DeleteDatasetGroupCommand.ts index 7d90c99d31f49..6b41b5acb86d2 100644 --- a/clients/client-forecast/src/commands/DeleteDatasetGroupCommand.ts +++ b/clients/client-forecast/src/commands/DeleteDatasetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteDatasetGroupRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteDatasetGroupRequest } from "../models/models_0"; import { DeleteDatasetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteDatasetImportJobCommand.ts b/clients/client-forecast/src/commands/DeleteDatasetImportJobCommand.ts index 3484895f77b8b..2b201c27324dd 100644 --- a/clients/client-forecast/src/commands/DeleteDatasetImportJobCommand.ts +++ b/clients/client-forecast/src/commands/DeleteDatasetImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteDatasetImportJobRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteDatasetImportJobRequest } from "../models/models_0"; import { DeleteDatasetImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteExplainabilityCommand.ts b/clients/client-forecast/src/commands/DeleteExplainabilityCommand.ts index 6281b8e553ce8..d1fb0803c3392 100644 --- a/clients/client-forecast/src/commands/DeleteExplainabilityCommand.ts +++ b/clients/client-forecast/src/commands/DeleteExplainabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteExplainabilityRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteExplainabilityRequest } from "../models/models_0"; import { DeleteExplainability } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteExplainabilityExportCommand.ts b/clients/client-forecast/src/commands/DeleteExplainabilityExportCommand.ts index 96a65cf005e1f..a0576f1007593 100644 --- a/clients/client-forecast/src/commands/DeleteExplainabilityExportCommand.ts +++ b/clients/client-forecast/src/commands/DeleteExplainabilityExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteExplainabilityExportRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteExplainabilityExportRequest } from "../models/models_0"; import { DeleteExplainabilityExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteForecastCommand.ts b/clients/client-forecast/src/commands/DeleteForecastCommand.ts index 133515ebf651b..a9a7a92489491 100644 --- a/clients/client-forecast/src/commands/DeleteForecastCommand.ts +++ b/clients/client-forecast/src/commands/DeleteForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteForecastRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteForecastRequest } from "../models/models_0"; import { DeleteForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteForecastExportJobCommand.ts b/clients/client-forecast/src/commands/DeleteForecastExportJobCommand.ts index a043eca60a3d3..4887861040675 100644 --- a/clients/client-forecast/src/commands/DeleteForecastExportJobCommand.ts +++ b/clients/client-forecast/src/commands/DeleteForecastExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteForecastExportJobRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteForecastExportJobRequest } from "../models/models_0"; import { DeleteForecastExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteMonitorCommand.ts b/clients/client-forecast/src/commands/DeleteMonitorCommand.ts index 212bdbcb6795c..a9e4ecbfa1791 100644 --- a/clients/client-forecast/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-forecast/src/commands/DeleteMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteMonitorRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteMonitorRequest } from "../models/models_0"; import { DeleteMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeletePredictorBacktestExportJobCommand.ts b/clients/client-forecast/src/commands/DeletePredictorBacktestExportJobCommand.ts index 3a621f434f6ae..9bf297a2b0e2e 100644 --- a/clients/client-forecast/src/commands/DeletePredictorBacktestExportJobCommand.ts +++ b/clients/client-forecast/src/commands/DeletePredictorBacktestExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeletePredictorBacktestExportJobRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeletePredictorBacktestExportJobRequest } from "../models/models_0"; import { DeletePredictorBacktestExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeletePredictorCommand.ts b/clients/client-forecast/src/commands/DeletePredictorCommand.ts index 90ab8d0bc84a1..eb6881c7879c8 100644 --- a/clients/client-forecast/src/commands/DeletePredictorCommand.ts +++ b/clients/client-forecast/src/commands/DeletePredictorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeletePredictorRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeletePredictorRequest } from "../models/models_0"; import { DeletePredictor } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteResourceTreeCommand.ts b/clients/client-forecast/src/commands/DeleteResourceTreeCommand.ts index 18527ccbe39f7..dbcc876d9e2e4 100644 --- a/clients/client-forecast/src/commands/DeleteResourceTreeCommand.ts +++ b/clients/client-forecast/src/commands/DeleteResourceTreeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteResourceTreeRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteResourceTreeRequest } from "../models/models_0"; import { DeleteResourceTree } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteWhatIfAnalysisCommand.ts b/clients/client-forecast/src/commands/DeleteWhatIfAnalysisCommand.ts index e815203ef3fed..b6986ac2151dc 100644 --- a/clients/client-forecast/src/commands/DeleteWhatIfAnalysisCommand.ts +++ b/clients/client-forecast/src/commands/DeleteWhatIfAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteWhatIfAnalysisRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteWhatIfAnalysisRequest } from "../models/models_0"; import { DeleteWhatIfAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteWhatIfForecastCommand.ts b/clients/client-forecast/src/commands/DeleteWhatIfForecastCommand.ts index 8059df95292f8..736a6653c08da 100644 --- a/clients/client-forecast/src/commands/DeleteWhatIfForecastCommand.ts +++ b/clients/client-forecast/src/commands/DeleteWhatIfForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteWhatIfForecastRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteWhatIfForecastRequest } from "../models/models_0"; import { DeleteWhatIfForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DeleteWhatIfForecastExportCommand.ts b/clients/client-forecast/src/commands/DeleteWhatIfForecastExportCommand.ts index a86efc427e790..846768e4d5ce5 100644 --- a/clients/client-forecast/src/commands/DeleteWhatIfForecastExportCommand.ts +++ b/clients/client-forecast/src/commands/DeleteWhatIfForecastExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DeleteWhatIfForecastExportRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DeleteWhatIfForecastExportRequest } from "../models/models_0"; import { DeleteWhatIfForecastExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeAutoPredictorCommand.ts b/clients/client-forecast/src/commands/DescribeAutoPredictorCommand.ts index 29e46357d315b..2cee55ddb1f0f 100644 --- a/clients/client-forecast/src/commands/DescribeAutoPredictorCommand.ts +++ b/clients/client-forecast/src/commands/DescribeAutoPredictorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeAutoPredictorRequest, DescribeAutoPredictorResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeAutoPredictorRequest, DescribeAutoPredictorResponse } from "../models/models_0"; import { DescribeAutoPredictor } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeDatasetCommand.ts b/clients/client-forecast/src/commands/DescribeDatasetCommand.ts index 3754fadc6769e..dc5637dc253b7 100644 --- a/clients/client-forecast/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-forecast/src/commands/DescribeDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; import { DescribeDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeDatasetGroupCommand.ts b/clients/client-forecast/src/commands/DescribeDatasetGroupCommand.ts index a4c5962463697..da7a2fc79cebe 100644 --- a/clients/client-forecast/src/commands/DescribeDatasetGroupCommand.ts +++ b/clients/client-forecast/src/commands/DescribeDatasetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeDatasetGroupRequest, DescribeDatasetGroupResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeDatasetGroupRequest, DescribeDatasetGroupResponse } from "../models/models_0"; import { DescribeDatasetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeDatasetImportJobCommand.ts b/clients/client-forecast/src/commands/DescribeDatasetImportJobCommand.ts index d2c12f586c2b1..be495b8131a97 100644 --- a/clients/client-forecast/src/commands/DescribeDatasetImportJobCommand.ts +++ b/clients/client-forecast/src/commands/DescribeDatasetImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeDatasetImportJobRequest, DescribeDatasetImportJobResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeDatasetImportJobRequest, DescribeDatasetImportJobResponse } from "../models/models_0"; import { DescribeDatasetImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeExplainabilityCommand.ts b/clients/client-forecast/src/commands/DescribeExplainabilityCommand.ts index e6d7481195b3f..586f40fc18f2d 100644 --- a/clients/client-forecast/src/commands/DescribeExplainabilityCommand.ts +++ b/clients/client-forecast/src/commands/DescribeExplainabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeExplainabilityRequest, DescribeExplainabilityResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeExplainabilityRequest, DescribeExplainabilityResponse } from "../models/models_0"; import { DescribeExplainability } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeExplainabilityExportCommand.ts b/clients/client-forecast/src/commands/DescribeExplainabilityExportCommand.ts index ba2c4ce91cab1..8ebb108d0898b 100644 --- a/clients/client-forecast/src/commands/DescribeExplainabilityExportCommand.ts +++ b/clients/client-forecast/src/commands/DescribeExplainabilityExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeExplainabilityExportRequest, DescribeExplainabilityExportResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeExplainabilityExportRequest, DescribeExplainabilityExportResponse } from "../models/models_0"; import { DescribeExplainabilityExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeForecastCommand.ts b/clients/client-forecast/src/commands/DescribeForecastCommand.ts index 0cba76f2b1d98..2894ee7cc7773 100644 --- a/clients/client-forecast/src/commands/DescribeForecastCommand.ts +++ b/clients/client-forecast/src/commands/DescribeForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeForecastRequest, DescribeForecastResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeForecastRequest, DescribeForecastResponse } from "../models/models_0"; import { DescribeForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeForecastExportJobCommand.ts b/clients/client-forecast/src/commands/DescribeForecastExportJobCommand.ts index eab9f8f886b91..ba9edbbd778c7 100644 --- a/clients/client-forecast/src/commands/DescribeForecastExportJobCommand.ts +++ b/clients/client-forecast/src/commands/DescribeForecastExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeForecastExportJobRequest, DescribeForecastExportJobResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeForecastExportJobRequest, DescribeForecastExportJobResponse } from "../models/models_0"; import { DescribeForecastExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeMonitorCommand.ts b/clients/client-forecast/src/commands/DescribeMonitorCommand.ts index d3cc2dd256c6b..2d96ded24baf8 100644 --- a/clients/client-forecast/src/commands/DescribeMonitorCommand.ts +++ b/clients/client-forecast/src/commands/DescribeMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeMonitorRequest, DescribeMonitorResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeMonitorRequest, DescribeMonitorResponse } from "../models/models_0"; import { DescribeMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribePredictorBacktestExportJobCommand.ts b/clients/client-forecast/src/commands/DescribePredictorBacktestExportJobCommand.ts index a3394bdc547a1..35d1ea0e1429b 100644 --- a/clients/client-forecast/src/commands/DescribePredictorBacktestExportJobCommand.ts +++ b/clients/client-forecast/src/commands/DescribePredictorBacktestExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribePredictorBacktestExportJobRequest, DescribePredictorBacktestExportJobResponse, } from "../models/models_0"; diff --git a/clients/client-forecast/src/commands/DescribePredictorCommand.ts b/clients/client-forecast/src/commands/DescribePredictorCommand.ts index 2f9be4779c8ff..239413beed55f 100644 --- a/clients/client-forecast/src/commands/DescribePredictorCommand.ts +++ b/clients/client-forecast/src/commands/DescribePredictorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribePredictorRequest, DescribePredictorResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribePredictorRequest, DescribePredictorResponse } from "../models/models_0"; import { DescribePredictor } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeWhatIfAnalysisCommand.ts b/clients/client-forecast/src/commands/DescribeWhatIfAnalysisCommand.ts index cf8710bbe5224..18055e0f3884f 100644 --- a/clients/client-forecast/src/commands/DescribeWhatIfAnalysisCommand.ts +++ b/clients/client-forecast/src/commands/DescribeWhatIfAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeWhatIfAnalysisRequest, DescribeWhatIfAnalysisResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeWhatIfAnalysisRequest, DescribeWhatIfAnalysisResponse } from "../models/models_0"; import { DescribeWhatIfAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeWhatIfForecastCommand.ts b/clients/client-forecast/src/commands/DescribeWhatIfForecastCommand.ts index e55cb4b1dad30..5cb5ef417b5c1 100644 --- a/clients/client-forecast/src/commands/DescribeWhatIfForecastCommand.ts +++ b/clients/client-forecast/src/commands/DescribeWhatIfForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeWhatIfForecastRequest, DescribeWhatIfForecastResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeWhatIfForecastRequest, DescribeWhatIfForecastResponse } from "../models/models_0"; import { DescribeWhatIfForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/DescribeWhatIfForecastExportCommand.ts b/clients/client-forecast/src/commands/DescribeWhatIfForecastExportCommand.ts index 3fc89af6e7cb1..c9cf116377c14 100644 --- a/clients/client-forecast/src/commands/DescribeWhatIfForecastExportCommand.ts +++ b/clients/client-forecast/src/commands/DescribeWhatIfForecastExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { DescribeWhatIfForecastExportRequest, DescribeWhatIfForecastExportResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { DescribeWhatIfForecastExportRequest, DescribeWhatIfForecastExportResponse } from "../models/models_0"; import { DescribeWhatIfForecastExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/GetAccuracyMetricsCommand.ts b/clients/client-forecast/src/commands/GetAccuracyMetricsCommand.ts index 28df63fb94d85..066907789ae11 100644 --- a/clients/client-forecast/src/commands/GetAccuracyMetricsCommand.ts +++ b/clients/client-forecast/src/commands/GetAccuracyMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { GetAccuracyMetricsRequest, GetAccuracyMetricsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { GetAccuracyMetricsRequest, GetAccuracyMetricsResponse } from "../models/models_0"; import { GetAccuracyMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListDatasetGroupsCommand.ts b/clients/client-forecast/src/commands/ListDatasetGroupsCommand.ts index 5af2b48b9a52d..e7ea200f8a9de 100644 --- a/clients/client-forecast/src/commands/ListDatasetGroupsCommand.ts +++ b/clients/client-forecast/src/commands/ListDatasetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListDatasetGroupsRequest, ListDatasetGroupsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListDatasetGroupsRequest, ListDatasetGroupsResponse } from "../models/models_0"; import { ListDatasetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListDatasetImportJobsCommand.ts b/clients/client-forecast/src/commands/ListDatasetImportJobsCommand.ts index cea0e490d3c21..90037cd9bb173 100644 --- a/clients/client-forecast/src/commands/ListDatasetImportJobsCommand.ts +++ b/clients/client-forecast/src/commands/ListDatasetImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListDatasetImportJobsRequest, ListDatasetImportJobsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListDatasetImportJobsRequest, ListDatasetImportJobsResponse } from "../models/models_0"; import { ListDatasetImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListDatasetsCommand.ts b/clients/client-forecast/src/commands/ListDatasetsCommand.ts index 099d136393ead..d2d3f14ba8fbf 100644 --- a/clients/client-forecast/src/commands/ListDatasetsCommand.ts +++ b/clients/client-forecast/src/commands/ListDatasetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; import { ListDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListExplainabilitiesCommand.ts b/clients/client-forecast/src/commands/ListExplainabilitiesCommand.ts index 4ae4ac68889bf..72c276c56d208 100644 --- a/clients/client-forecast/src/commands/ListExplainabilitiesCommand.ts +++ b/clients/client-forecast/src/commands/ListExplainabilitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListExplainabilitiesRequest, ListExplainabilitiesResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListExplainabilitiesRequest, ListExplainabilitiesResponse } from "../models/models_0"; import { ListExplainabilities } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListExplainabilityExportsCommand.ts b/clients/client-forecast/src/commands/ListExplainabilityExportsCommand.ts index d87488a7a006c..a4eeb93902443 100644 --- a/clients/client-forecast/src/commands/ListExplainabilityExportsCommand.ts +++ b/clients/client-forecast/src/commands/ListExplainabilityExportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListExplainabilityExportsRequest, ListExplainabilityExportsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListExplainabilityExportsRequest, ListExplainabilityExportsResponse } from "../models/models_0"; import { ListExplainabilityExports } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListForecastExportJobsCommand.ts b/clients/client-forecast/src/commands/ListForecastExportJobsCommand.ts index 9aea38a86315a..0a3aec39e6c95 100644 --- a/clients/client-forecast/src/commands/ListForecastExportJobsCommand.ts +++ b/clients/client-forecast/src/commands/ListForecastExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListForecastExportJobsRequest, ListForecastExportJobsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListForecastExportJobsRequest, ListForecastExportJobsResponse } from "../models/models_0"; import { ListForecastExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListForecastsCommand.ts b/clients/client-forecast/src/commands/ListForecastsCommand.ts index 993dd8e0d852a..f0116af4f10c6 100644 --- a/clients/client-forecast/src/commands/ListForecastsCommand.ts +++ b/clients/client-forecast/src/commands/ListForecastsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListForecastsRequest, ListForecastsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListForecastsRequest, ListForecastsResponse } from "../models/models_0"; import { ListForecasts } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListMonitorEvaluationsCommand.ts b/clients/client-forecast/src/commands/ListMonitorEvaluationsCommand.ts index 196d4b4f7a38b..27d8321502d00 100644 --- a/clients/client-forecast/src/commands/ListMonitorEvaluationsCommand.ts +++ b/clients/client-forecast/src/commands/ListMonitorEvaluationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListMonitorEvaluationsRequest, ListMonitorEvaluationsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListMonitorEvaluationsRequest, ListMonitorEvaluationsResponse } from "../models/models_0"; import { ListMonitorEvaluations } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListMonitorsCommand.ts b/clients/client-forecast/src/commands/ListMonitorsCommand.ts index 3fde4eaa2a0ea..bf0628f0fd290 100644 --- a/clients/client-forecast/src/commands/ListMonitorsCommand.ts +++ b/clients/client-forecast/src/commands/ListMonitorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListMonitorsRequest, ListMonitorsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListMonitorsRequest, ListMonitorsResponse } from "../models/models_0"; import { ListMonitors } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListPredictorBacktestExportJobsCommand.ts b/clients/client-forecast/src/commands/ListPredictorBacktestExportJobsCommand.ts index 443b22f0a4347..cf16093876256 100644 --- a/clients/client-forecast/src/commands/ListPredictorBacktestExportJobsCommand.ts +++ b/clients/client-forecast/src/commands/ListPredictorBacktestExportJobsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListPredictorBacktestExportJobsRequest, ListPredictorBacktestExportJobsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { + ListPredictorBacktestExportJobsRequest, + ListPredictorBacktestExportJobsResponse, +} from "../models/models_0"; import { ListPredictorBacktestExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListPredictorsCommand.ts b/clients/client-forecast/src/commands/ListPredictorsCommand.ts index 28bee573d20cb..a5c67708a6b36 100644 --- a/clients/client-forecast/src/commands/ListPredictorsCommand.ts +++ b/clients/client-forecast/src/commands/ListPredictorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListPredictorsRequest, ListPredictorsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListPredictorsRequest, ListPredictorsResponse } from "../models/models_0"; import { ListPredictors } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListTagsForResourceCommand.ts b/clients/client-forecast/src/commands/ListTagsForResourceCommand.ts index 6e5448dd47661..2b45bcb7abe4d 100644 --- a/clients/client-forecast/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-forecast/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListWhatIfAnalysesCommand.ts b/clients/client-forecast/src/commands/ListWhatIfAnalysesCommand.ts index d82826d46bdd5..5e22f04ca0f47 100644 --- a/clients/client-forecast/src/commands/ListWhatIfAnalysesCommand.ts +++ b/clients/client-forecast/src/commands/ListWhatIfAnalysesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListWhatIfAnalysesRequest, ListWhatIfAnalysesResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListWhatIfAnalysesRequest, ListWhatIfAnalysesResponse } from "../models/models_0"; import { ListWhatIfAnalyses } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListWhatIfForecastExportsCommand.ts b/clients/client-forecast/src/commands/ListWhatIfForecastExportsCommand.ts index 8cb551d9ecadf..bc2169d23c697 100644 --- a/clients/client-forecast/src/commands/ListWhatIfForecastExportsCommand.ts +++ b/clients/client-forecast/src/commands/ListWhatIfForecastExportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListWhatIfForecastExportsRequest, ListWhatIfForecastExportsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListWhatIfForecastExportsRequest, ListWhatIfForecastExportsResponse } from "../models/models_0"; import { ListWhatIfForecastExports } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ListWhatIfForecastsCommand.ts b/clients/client-forecast/src/commands/ListWhatIfForecastsCommand.ts index 0a559200f9a28..ecfc919b200ff 100644 --- a/clients/client-forecast/src/commands/ListWhatIfForecastsCommand.ts +++ b/clients/client-forecast/src/commands/ListWhatIfForecastsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ListWhatIfForecastsRequest, ListWhatIfForecastsResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ListWhatIfForecastsRequest, ListWhatIfForecastsResponse } from "../models/models_0"; import { ListWhatIfForecasts } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/ResumeResourceCommand.ts b/clients/client-forecast/src/commands/ResumeResourceCommand.ts index b8a11a1423486..3e948162d1dbd 100644 --- a/clients/client-forecast/src/commands/ResumeResourceCommand.ts +++ b/clients/client-forecast/src/commands/ResumeResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { ResumeResourceRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { ResumeResourceRequest } from "../models/models_0"; import { ResumeResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/StopResourceCommand.ts b/clients/client-forecast/src/commands/StopResourceCommand.ts index f472f7a35e4da..be0ede81caa4f 100644 --- a/clients/client-forecast/src/commands/StopResourceCommand.ts +++ b/clients/client-forecast/src/commands/StopResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { StopResourceRequest } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { StopResourceRequest } from "../models/models_0"; import { StopResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/TagResourceCommand.ts b/clients/client-forecast/src/commands/TagResourceCommand.ts index 0eddcdbb1dbc8..5f086c267bbd9 100644 --- a/clients/client-forecast/src/commands/TagResourceCommand.ts +++ b/clients/client-forecast/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/UntagResourceCommand.ts b/clients/client-forecast/src/commands/UntagResourceCommand.ts index 71fe20a3e69cc..60fb283ac7cf7 100644 --- a/clients/client-forecast/src/commands/UntagResourceCommand.ts +++ b/clients/client-forecast/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/commands/UpdateDatasetGroupCommand.ts b/clients/client-forecast/src/commands/UpdateDatasetGroupCommand.ts index 39fb2dcdf0b54..93205d3e44942 100644 --- a/clients/client-forecast/src/commands/UpdateDatasetGroupCommand.ts +++ b/clients/client-forecast/src/commands/UpdateDatasetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; -import { UpdateDatasetGroupRequest, UpdateDatasetGroupResponse } from "../models/models_0"; +import type { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient"; +import type { UpdateDatasetGroupRequest, UpdateDatasetGroupResponse } from "../models/models_0"; import { UpdateDatasetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecast/src/endpoint/EndpointParameters.ts b/clients/client-forecast/src/endpoint/EndpointParameters.ts index 859fe7798647f..9c5fcdd274b5e 100644 --- a/clients/client-forecast/src/endpoint/EndpointParameters.ts +++ b/clients/client-forecast/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-forecast/src/endpoint/endpointResolver.ts b/clients/client-forecast/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-forecast/src/endpoint/endpointResolver.ts +++ b/clients/client-forecast/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-forecast/src/extensionConfiguration.ts b/clients/client-forecast/src/extensionConfiguration.ts index 852342f892ad7..702f37255fa06 100644 --- a/clients/client-forecast/src/extensionConfiguration.ts +++ b/clients/client-forecast/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-forecast/src/models/ForecastServiceException.ts b/clients/client-forecast/src/models/ForecastServiceException.ts index 25d04c564f3ee..fd07ddb5fbdd4 100644 --- a/clients/client-forecast/src/models/ForecastServiceException.ts +++ b/clients/client-forecast/src/models/ForecastServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-forecast/src/models/errors.ts b/clients/client-forecast/src/models/errors.ts index 13526f9df74c0..17e27a4708806 100644 --- a/clients/client-forecast/src/models/errors.ts +++ b/clients/client-forecast/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ForecastServiceException as __BaseException } from "./ForecastServiceException"; diff --git a/clients/client-forecast/src/pagination/Interfaces.ts b/clients/client-forecast/src/pagination/Interfaces.ts index e25228ceca193..04073caa9cd1a 100644 --- a/clients/client-forecast/src/pagination/Interfaces.ts +++ b/clients/client-forecast/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ForecastClient } from "../ForecastClient"; diff --git a/clients/client-forecast/src/pagination/ListDatasetGroupsPaginator.ts b/clients/client-forecast/src/pagination/ListDatasetGroupsPaginator.ts index 0f117a6dc55e6..2bb66b396ac0c 100644 --- a/clients/client-forecast/src/pagination/ListDatasetGroupsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListDatasetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetGroupsCommand, diff --git a/clients/client-forecast/src/pagination/ListDatasetImportJobsPaginator.ts b/clients/client-forecast/src/pagination/ListDatasetImportJobsPaginator.ts index 2524db0d67f13..5d820df9cc411 100644 --- a/clients/client-forecast/src/pagination/ListDatasetImportJobsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListDatasetImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetImportJobsCommand, diff --git a/clients/client-forecast/src/pagination/ListDatasetsPaginator.ts b/clients/client-forecast/src/pagination/ListDatasetsPaginator.ts index 766e6599989ab..b65ca44738329 100644 --- a/clients/client-forecast/src/pagination/ListDatasetsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetsCommand, diff --git a/clients/client-forecast/src/pagination/ListExplainabilitiesPaginator.ts b/clients/client-forecast/src/pagination/ListExplainabilitiesPaginator.ts index 159a2807b975f..2dfb2a287ee1e 100644 --- a/clients/client-forecast/src/pagination/ListExplainabilitiesPaginator.ts +++ b/clients/client-forecast/src/pagination/ListExplainabilitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExplainabilitiesCommand, diff --git a/clients/client-forecast/src/pagination/ListExplainabilityExportsPaginator.ts b/clients/client-forecast/src/pagination/ListExplainabilityExportsPaginator.ts index 02ab5b38a0f7e..c75b2f0f40034 100644 --- a/clients/client-forecast/src/pagination/ListExplainabilityExportsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListExplainabilityExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExplainabilityExportsCommand, diff --git a/clients/client-forecast/src/pagination/ListForecastExportJobsPaginator.ts b/clients/client-forecast/src/pagination/ListForecastExportJobsPaginator.ts index 79eee172a0925..df3b081fa6f6d 100644 --- a/clients/client-forecast/src/pagination/ListForecastExportJobsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListForecastExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListForecastExportJobsCommand, diff --git a/clients/client-forecast/src/pagination/ListForecastsPaginator.ts b/clients/client-forecast/src/pagination/ListForecastsPaginator.ts index ca70799492c57..493d3eed83d94 100644 --- a/clients/client-forecast/src/pagination/ListForecastsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListForecastsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListForecastsCommand, diff --git a/clients/client-forecast/src/pagination/ListMonitorEvaluationsPaginator.ts b/clients/client-forecast/src/pagination/ListMonitorEvaluationsPaginator.ts index 60e8737b23eec..876aca14e2b10 100644 --- a/clients/client-forecast/src/pagination/ListMonitorEvaluationsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListMonitorEvaluationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitorEvaluationsCommand, diff --git a/clients/client-forecast/src/pagination/ListMonitorsPaginator.ts b/clients/client-forecast/src/pagination/ListMonitorsPaginator.ts index a8f1796db1a1c..aeb764fe3b62e 100644 --- a/clients/client-forecast/src/pagination/ListMonitorsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListMonitorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitorsCommand, diff --git a/clients/client-forecast/src/pagination/ListPredictorBacktestExportJobsPaginator.ts b/clients/client-forecast/src/pagination/ListPredictorBacktestExportJobsPaginator.ts index c4a0c0b6f292b..90fd305ec0c7d 100644 --- a/clients/client-forecast/src/pagination/ListPredictorBacktestExportJobsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListPredictorBacktestExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPredictorBacktestExportJobsCommand, diff --git a/clients/client-forecast/src/pagination/ListPredictorsPaginator.ts b/clients/client-forecast/src/pagination/ListPredictorsPaginator.ts index 1596415e15bed..b3b38a4280eb1 100644 --- a/clients/client-forecast/src/pagination/ListPredictorsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListPredictorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPredictorsCommand, diff --git a/clients/client-forecast/src/pagination/ListWhatIfAnalysesPaginator.ts b/clients/client-forecast/src/pagination/ListWhatIfAnalysesPaginator.ts index c599b61a453c3..2e7471db2f689 100644 --- a/clients/client-forecast/src/pagination/ListWhatIfAnalysesPaginator.ts +++ b/clients/client-forecast/src/pagination/ListWhatIfAnalysesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWhatIfAnalysesCommand, diff --git a/clients/client-forecast/src/pagination/ListWhatIfForecastExportsPaginator.ts b/clients/client-forecast/src/pagination/ListWhatIfForecastExportsPaginator.ts index 5e03267f5a5f7..5112ae3892514 100644 --- a/clients/client-forecast/src/pagination/ListWhatIfForecastExportsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListWhatIfForecastExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWhatIfForecastExportsCommand, diff --git a/clients/client-forecast/src/pagination/ListWhatIfForecastsPaginator.ts b/clients/client-forecast/src/pagination/ListWhatIfForecastsPaginator.ts index 9b12e035bf77e..8a20288cda6d8 100644 --- a/clients/client-forecast/src/pagination/ListWhatIfForecastsPaginator.ts +++ b/clients/client-forecast/src/pagination/ListWhatIfForecastsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWhatIfForecastsCommand, diff --git a/clients/client-forecast/src/runtimeConfig.browser.ts b/clients/client-forecast/src/runtimeConfig.browser.ts index 6c33131362a0a..430f8611af4f3 100644 --- a/clients/client-forecast/src/runtimeConfig.browser.ts +++ b/clients/client-forecast/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ForecastClientConfig } from "./ForecastClient"; + +import type { ForecastClientConfig } from "./ForecastClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-forecast/src/runtimeConfig.native.ts b/clients/client-forecast/src/runtimeConfig.native.ts index 49d57da5052ba..012d452463a20 100644 --- a/clients/client-forecast/src/runtimeConfig.native.ts +++ b/clients/client-forecast/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ForecastClientConfig } from "./ForecastClient"; +import type { ForecastClientConfig } from "./ForecastClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-forecast/src/runtimeConfig.shared.ts b/clients/client-forecast/src/runtimeConfig.shared.ts index 51e840ad01795..ff2c85296df17 100644 --- a/clients/client-forecast/src/runtimeConfig.shared.ts +++ b/clients/client-forecast/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultForecastHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ForecastClientConfig } from "./ForecastClient"; +import type { ForecastClientConfig } from "./ForecastClient"; /** * @internal diff --git a/clients/client-forecast/src/runtimeConfig.ts b/clients/client-forecast/src/runtimeConfig.ts index d82e1d63287b7..c0f0b5ba8cbb4 100644 --- a/clients/client-forecast/src/runtimeConfig.ts +++ b/clients/client-forecast/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ForecastClientConfig } from "./ForecastClient"; + +import type { ForecastClientConfig } from "./ForecastClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-forecast/src/runtimeExtensions.ts b/clients/client-forecast/src/runtimeExtensions.ts index 92815b3d05a3c..dd758491435a6 100644 --- a/clients/client-forecast/src/runtimeExtensions.ts +++ b/clients/client-forecast/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ForecastExtensionConfiguration } from "./extensionConfiguration"; +import type { ForecastExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-forecast/src/schemas/schemas_0.ts b/clients/client-forecast/src/schemas/schemas_0.ts index cd5111c28a4f1..71f69f5d3e537 100644 --- a/clients/client-forecast/src/schemas/schemas_0.ts +++ b/clients/client-forecast/src/schemas/schemas_0.ts @@ -420,7 +420,7 @@ const n0 = "com.amazonaws.forecast"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-forecastquery/package.json b/clients/client-forecastquery/package.json index 799fa3bf8b89d..6ddbe06a3bfed 100644 --- a/clients/client-forecastquery/package.json +++ b/clients/client-forecastquery/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-forecastquery/src/Forecastquery.ts b/clients/client-forecastquery/src/Forecastquery.ts index 4b728f0867ed6..64f9465960758 100644 --- a/clients/client-forecastquery/src/Forecastquery.ts +++ b/clients/client-forecastquery/src/Forecastquery.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { QueryForecastCommand, @@ -12,7 +12,7 @@ import { QueryWhatIfForecastCommandInput, QueryWhatIfForecastCommandOutput, } from "./commands/QueryWhatIfForecastCommand"; -import { ForecastqueryClient, ForecastqueryClientConfig } from "./ForecastqueryClient"; +import { ForecastqueryClient } from "./ForecastqueryClient"; const commands = { QueryForecastCommand, diff --git a/clients/client-forecastquery/src/ForecastqueryClient.ts b/clients/client-forecastquery/src/ForecastqueryClient.ts index 9594300dc3c5d..1d9393d48b345 100644 --- a/clients/client-forecastquery/src/ForecastqueryClient.ts +++ b/clients/client-forecastquery/src/ForecastqueryClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultForecastqueryHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { QueryForecastCommandInput, QueryForecastCommandOutput } from "./commands/QueryForecastCommand"; @@ -69,7 +78,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-forecastquery/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-forecastquery/src/auth/httpAuthExtensionConfiguration.ts index d6dac9a49c274..c5f10b960703e 100644 --- a/clients/client-forecastquery/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-forecastquery/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ForecastqueryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ForecastqueryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-forecastquery/src/auth/httpAuthSchemeProvider.ts b/clients/client-forecastquery/src/auth/httpAuthSchemeProvider.ts index 6e5e3251fa08a..246c39e590ed9 100644 --- a/clients/client-forecastquery/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-forecastquery/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ForecastqueryClientConfig, ForecastqueryClientResolvedConfig } from "../ForecastqueryClient"; +import { type ForecastqueryClientResolvedConfig, ForecastqueryClientConfig } from "../ForecastqueryClient"; /** * @internal diff --git a/clients/client-forecastquery/src/commands/QueryForecastCommand.ts b/clients/client-forecastquery/src/commands/QueryForecastCommand.ts index 41334a320400d..f15f917da96c1 100644 --- a/clients/client-forecastquery/src/commands/QueryForecastCommand.ts +++ b/clients/client-forecastquery/src/commands/QueryForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastqueryClient"; -import { QueryForecastRequest, QueryForecastResponse } from "../models/models_0"; +import type { ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastqueryClient"; +import type { QueryForecastRequest, QueryForecastResponse } from "../models/models_0"; import { QueryForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecastquery/src/commands/QueryWhatIfForecastCommand.ts b/clients/client-forecastquery/src/commands/QueryWhatIfForecastCommand.ts index 6a9e312030c12..5ee15792be744 100644 --- a/clients/client-forecastquery/src/commands/QueryWhatIfForecastCommand.ts +++ b/clients/client-forecastquery/src/commands/QueryWhatIfForecastCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastqueryClient"; -import { QueryWhatIfForecastRequest, QueryWhatIfForecastResponse } from "../models/models_0"; +import type { ForecastqueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastqueryClient"; +import type { QueryWhatIfForecastRequest, QueryWhatIfForecastResponse } from "../models/models_0"; import { QueryWhatIfForecast } from "../schemas/schemas_0"; /** diff --git a/clients/client-forecastquery/src/endpoint/EndpointParameters.ts b/clients/client-forecastquery/src/endpoint/EndpointParameters.ts index 859fe7798647f..9c5fcdd274b5e 100644 --- a/clients/client-forecastquery/src/endpoint/EndpointParameters.ts +++ b/clients/client-forecastquery/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-forecastquery/src/endpoint/endpointResolver.ts b/clients/client-forecastquery/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-forecastquery/src/endpoint/endpointResolver.ts +++ b/clients/client-forecastquery/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-forecastquery/src/extensionConfiguration.ts b/clients/client-forecastquery/src/extensionConfiguration.ts index 1941c627e605e..8a7b5e64d38ad 100644 --- a/clients/client-forecastquery/src/extensionConfiguration.ts +++ b/clients/client-forecastquery/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-forecastquery/src/models/ForecastqueryServiceException.ts b/clients/client-forecastquery/src/models/ForecastqueryServiceException.ts index d13ec9c977beb..216c32c23fa9d 100644 --- a/clients/client-forecastquery/src/models/ForecastqueryServiceException.ts +++ b/clients/client-forecastquery/src/models/ForecastqueryServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-forecastquery/src/models/errors.ts b/clients/client-forecastquery/src/models/errors.ts index c850031a1d6dc..db67830be5ad8 100644 --- a/clients/client-forecastquery/src/models/errors.ts +++ b/clients/client-forecastquery/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ForecastqueryServiceException as __BaseException } from "./ForecastqueryServiceException"; diff --git a/clients/client-forecastquery/src/runtimeConfig.browser.ts b/clients/client-forecastquery/src/runtimeConfig.browser.ts index 989555208b0f2..d5104ae2950b8 100644 --- a/clients/client-forecastquery/src/runtimeConfig.browser.ts +++ b/clients/client-forecastquery/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ForecastqueryClientConfig } from "./ForecastqueryClient"; + +import type { ForecastqueryClientConfig } from "./ForecastqueryClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-forecastquery/src/runtimeConfig.native.ts b/clients/client-forecastquery/src/runtimeConfig.native.ts index 89a850fc77c23..28f0d1f9cd10c 100644 --- a/clients/client-forecastquery/src/runtimeConfig.native.ts +++ b/clients/client-forecastquery/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ForecastqueryClientConfig } from "./ForecastqueryClient"; +import type { ForecastqueryClientConfig } from "./ForecastqueryClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-forecastquery/src/runtimeConfig.shared.ts b/clients/client-forecastquery/src/runtimeConfig.shared.ts index 720cf8b38ffc9..2b256c618999b 100644 --- a/clients/client-forecastquery/src/runtimeConfig.shared.ts +++ b/clients/client-forecastquery/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultForecastqueryHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ForecastqueryClientConfig } from "./ForecastqueryClient"; +import type { ForecastqueryClientConfig } from "./ForecastqueryClient"; /** * @internal diff --git a/clients/client-forecastquery/src/runtimeConfig.ts b/clients/client-forecastquery/src/runtimeConfig.ts index 2c8c3ebbd9be2..b22dee29c8c55 100644 --- a/clients/client-forecastquery/src/runtimeConfig.ts +++ b/clients/client-forecastquery/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ForecastqueryClientConfig } from "./ForecastqueryClient"; + +import type { ForecastqueryClientConfig } from "./ForecastqueryClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-forecastquery/src/runtimeExtensions.ts b/clients/client-forecastquery/src/runtimeExtensions.ts index 43fa7db28bb6a..d5ed935aecd9a 100644 --- a/clients/client-forecastquery/src/runtimeExtensions.ts +++ b/clients/client-forecastquery/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ForecastqueryExtensionConfiguration } from "./extensionConfiguration"; +import type { ForecastqueryExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-forecastquery/src/schemas/schemas_0.ts b/clients/client-forecastquery/src/schemas/schemas_0.ts index edc44fc3fdfb4..e198ba25b8865 100644 --- a/clients/client-forecastquery/src/schemas/schemas_0.ts +++ b/clients/client-forecastquery/src/schemas/schemas_0.ts @@ -30,7 +30,7 @@ const n0 = "com.amazonaws.forecastquery"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-frauddetector/package.json b/clients/client-frauddetector/package.json index 2a49cd51fec23..534b65d3bd331 100644 --- a/clients/client-frauddetector/package.json +++ b/clients/client-frauddetector/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-frauddetector/src/FraudDetector.ts b/clients/client-frauddetector/src/FraudDetector.ts index f2c90853f30a6..fa7d06bca5ea1 100644 --- a/clients/client-frauddetector/src/FraudDetector.ts +++ b/clients/client-frauddetector/src/FraudDetector.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchCreateVariableCommand, @@ -287,7 +287,7 @@ import { UpdateVariableCommandInput, UpdateVariableCommandOutput, } from "./commands/UpdateVariableCommand"; -import { FraudDetectorClient, FraudDetectorClientConfig } from "./FraudDetectorClient"; +import { FraudDetectorClient } from "./FraudDetectorClient"; const commands = { BatchCreateVariableCommand, diff --git a/clients/client-frauddetector/src/FraudDetectorClient.ts b/clients/client-frauddetector/src/FraudDetectorClient.ts index b039a1e13cfa2..c3ce71cde5aeb 100644 --- a/clients/client-frauddetector/src/FraudDetectorClient.ts +++ b/clients/client-frauddetector/src/FraudDetectorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultFraudDetectorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -206,7 +215,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-frauddetector/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-frauddetector/src/auth/httpAuthExtensionConfiguration.ts index 5d8872571d4a8..1cb19de827a6a 100644 --- a/clients/client-frauddetector/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-frauddetector/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { FraudDetectorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { FraudDetectorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-frauddetector/src/auth/httpAuthSchemeProvider.ts b/clients/client-frauddetector/src/auth/httpAuthSchemeProvider.ts index 11b37aed49b9f..edb404b402d2a 100644 --- a/clients/client-frauddetector/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-frauddetector/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { FraudDetectorClientConfig, FraudDetectorClientResolvedConfig } from "../FraudDetectorClient"; +import { type FraudDetectorClientResolvedConfig, FraudDetectorClientConfig } from "../FraudDetectorClient"; /** * @internal diff --git a/clients/client-frauddetector/src/commands/BatchCreateVariableCommand.ts b/clients/client-frauddetector/src/commands/BatchCreateVariableCommand.ts index 812a68ff8c838..acdf92f14204e 100644 --- a/clients/client-frauddetector/src/commands/BatchCreateVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/BatchCreateVariableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { BatchCreateVariableRequest, BatchCreateVariableResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { BatchCreateVariableRequest, BatchCreateVariableResult } from "../models/models_0"; import { BatchCreateVariable } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/BatchGetVariableCommand.ts b/clients/client-frauddetector/src/commands/BatchGetVariableCommand.ts index 3249f4f586d54..ab920ad588aec 100644 --- a/clients/client-frauddetector/src/commands/BatchGetVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/BatchGetVariableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { BatchGetVariableRequest, BatchGetVariableResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { BatchGetVariableRequest, BatchGetVariableResult } from "../models/models_0"; import { BatchGetVariable } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CancelBatchImportJobCommand.ts b/clients/client-frauddetector/src/commands/CancelBatchImportJobCommand.ts index fa4f51b55f934..1a94f14d252e7 100644 --- a/clients/client-frauddetector/src/commands/CancelBatchImportJobCommand.ts +++ b/clients/client-frauddetector/src/commands/CancelBatchImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CancelBatchImportJobRequest, CancelBatchImportJobResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CancelBatchImportJobRequest, CancelBatchImportJobResult } from "../models/models_0"; import { CancelBatchImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CancelBatchPredictionJobCommand.ts b/clients/client-frauddetector/src/commands/CancelBatchPredictionJobCommand.ts index bfffe4bca9781..bf30b4c6450c0 100644 --- a/clients/client-frauddetector/src/commands/CancelBatchPredictionJobCommand.ts +++ b/clients/client-frauddetector/src/commands/CancelBatchPredictionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CancelBatchPredictionJobRequest, CancelBatchPredictionJobResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CancelBatchPredictionJobRequest, CancelBatchPredictionJobResult } from "../models/models_0"; import { CancelBatchPredictionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CreateBatchImportJobCommand.ts b/clients/client-frauddetector/src/commands/CreateBatchImportJobCommand.ts index 3601bcad8dbf7..ce4cee8dc17d0 100644 --- a/clients/client-frauddetector/src/commands/CreateBatchImportJobCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateBatchImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CreateBatchImportJobRequest, CreateBatchImportJobResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CreateBatchImportJobRequest, CreateBatchImportJobResult } from "../models/models_0"; import { CreateBatchImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CreateBatchPredictionJobCommand.ts b/clients/client-frauddetector/src/commands/CreateBatchPredictionJobCommand.ts index 3d6dced570a1c..3d6e69fc181d7 100644 --- a/clients/client-frauddetector/src/commands/CreateBatchPredictionJobCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateBatchPredictionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CreateBatchPredictionJobRequest, CreateBatchPredictionJobResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CreateBatchPredictionJobRequest, CreateBatchPredictionJobResult } from "../models/models_0"; import { CreateBatchPredictionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CreateDetectorVersionCommand.ts b/clients/client-frauddetector/src/commands/CreateDetectorVersionCommand.ts index 4b843c8b4f0cc..5ea6b59d33a04 100644 --- a/clients/client-frauddetector/src/commands/CreateDetectorVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateDetectorVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CreateDetectorVersionRequest, CreateDetectorVersionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CreateDetectorVersionRequest, CreateDetectorVersionResult } from "../models/models_0"; import { CreateDetectorVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CreateListCommand.ts b/clients/client-frauddetector/src/commands/CreateListCommand.ts index 3f461e7ab1991..77b9ffb3ea7ce 100644 --- a/clients/client-frauddetector/src/commands/CreateListCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CreateListRequest, CreateListResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CreateListRequest, CreateListResult } from "../models/models_0"; import { CreateList } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CreateModelCommand.ts b/clients/client-frauddetector/src/commands/CreateModelCommand.ts index c27ec2f548fdc..5891d19d80291 100644 --- a/clients/client-frauddetector/src/commands/CreateModelCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CreateModelRequest, CreateModelResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CreateModelRequest, CreateModelResult } from "../models/models_0"; import { CreateModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CreateModelVersionCommand.ts b/clients/client-frauddetector/src/commands/CreateModelVersionCommand.ts index 5aeb787a3812b..528da9ae14446 100644 --- a/clients/client-frauddetector/src/commands/CreateModelVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateModelVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CreateModelVersionRequest, CreateModelVersionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CreateModelVersionRequest, CreateModelVersionResult } from "../models/models_0"; import { CreateModelVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CreateRuleCommand.ts b/clients/client-frauddetector/src/commands/CreateRuleCommand.ts index d97ff9269e2f9..2a4c8931f67df 100644 --- a/clients/client-frauddetector/src/commands/CreateRuleCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CreateRuleRequest, CreateRuleResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CreateRuleRequest, CreateRuleResult } from "../models/models_0"; import { CreateRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/CreateVariableCommand.ts b/clients/client-frauddetector/src/commands/CreateVariableCommand.ts index bb9b1532a87c5..2341e33b8ccd0 100644 --- a/clients/client-frauddetector/src/commands/CreateVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/CreateVariableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { CreateVariableRequest, CreateVariableResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { CreateVariableRequest, CreateVariableResult } from "../models/models_0"; import { CreateVariable } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteBatchImportJobCommand.ts b/clients/client-frauddetector/src/commands/DeleteBatchImportJobCommand.ts index 1b52ac4619906..8a7410f387155 100644 --- a/clients/client-frauddetector/src/commands/DeleteBatchImportJobCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteBatchImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteBatchImportJobRequest, DeleteBatchImportJobResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteBatchImportJobRequest, DeleteBatchImportJobResult } from "../models/models_0"; import { DeleteBatchImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteBatchPredictionJobCommand.ts b/clients/client-frauddetector/src/commands/DeleteBatchPredictionJobCommand.ts index 56dcb784cfbe9..803a1410c2a74 100644 --- a/clients/client-frauddetector/src/commands/DeleteBatchPredictionJobCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteBatchPredictionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteBatchPredictionJobRequest, DeleteBatchPredictionJobResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteBatchPredictionJobRequest, DeleteBatchPredictionJobResult } from "../models/models_0"; import { DeleteBatchPredictionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteDetectorCommand.ts b/clients/client-frauddetector/src/commands/DeleteDetectorCommand.ts index 370f8ee3fb576..9fd6c9a437286 100644 --- a/clients/client-frauddetector/src/commands/DeleteDetectorCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteDetectorRequest, DeleteDetectorResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteDetectorRequest, DeleteDetectorResult } from "../models/models_0"; import { DeleteDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteDetectorVersionCommand.ts b/clients/client-frauddetector/src/commands/DeleteDetectorVersionCommand.ts index 7a7c51f9ab45e..1350c5aa5bc51 100644 --- a/clients/client-frauddetector/src/commands/DeleteDetectorVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteDetectorVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteDetectorVersionRequest, DeleteDetectorVersionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteDetectorVersionRequest, DeleteDetectorVersionResult } from "../models/models_0"; import { DeleteDetectorVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteEntityTypeCommand.ts b/clients/client-frauddetector/src/commands/DeleteEntityTypeCommand.ts index 382be245bbf01..d71d5b37e25f2 100644 --- a/clients/client-frauddetector/src/commands/DeleteEntityTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteEntityTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteEntityTypeRequest, DeleteEntityTypeResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteEntityTypeRequest, DeleteEntityTypeResult } from "../models/models_0"; import { DeleteEntityType } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteEventCommand.ts b/clients/client-frauddetector/src/commands/DeleteEventCommand.ts index f3b4a3fbbd91c..d181f0e102b3d 100644 --- a/clients/client-frauddetector/src/commands/DeleteEventCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteEventRequest, DeleteEventResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteEventRequest, DeleteEventResult } from "../models/models_0"; import { DeleteEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteEventTypeCommand.ts b/clients/client-frauddetector/src/commands/DeleteEventTypeCommand.ts index 1c19bcd2c4c5e..681a2fe57f55e 100644 --- a/clients/client-frauddetector/src/commands/DeleteEventTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteEventTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteEventTypeRequest, DeleteEventTypeResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteEventTypeRequest, DeleteEventTypeResult } from "../models/models_0"; import { DeleteEventType } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteEventsByEventTypeCommand.ts b/clients/client-frauddetector/src/commands/DeleteEventsByEventTypeCommand.ts index 524ef1d9a9d3a..7092d3ea957f7 100644 --- a/clients/client-frauddetector/src/commands/DeleteEventsByEventTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteEventsByEventTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteEventsByEventTypeRequest, DeleteEventsByEventTypeResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteEventsByEventTypeRequest, DeleteEventsByEventTypeResult } from "../models/models_0"; import { DeleteEventsByEventType } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteExternalModelCommand.ts b/clients/client-frauddetector/src/commands/DeleteExternalModelCommand.ts index c7b48117d7e48..dc534c1b5c279 100644 --- a/clients/client-frauddetector/src/commands/DeleteExternalModelCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteExternalModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteExternalModelRequest, DeleteExternalModelResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteExternalModelRequest, DeleteExternalModelResult } from "../models/models_0"; import { DeleteExternalModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteLabelCommand.ts b/clients/client-frauddetector/src/commands/DeleteLabelCommand.ts index f5e852d534299..46cdd04bb6d04 100644 --- a/clients/client-frauddetector/src/commands/DeleteLabelCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteLabelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteLabelRequest, DeleteLabelResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteLabelRequest, DeleteLabelResult } from "../models/models_0"; import { DeleteLabel } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteListCommand.ts b/clients/client-frauddetector/src/commands/DeleteListCommand.ts index 82667af9386a1..03dca5f3e5659 100644 --- a/clients/client-frauddetector/src/commands/DeleteListCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteListRequest, DeleteListResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteListRequest, DeleteListResult } from "../models/models_0"; import { DeleteList } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteModelCommand.ts b/clients/client-frauddetector/src/commands/DeleteModelCommand.ts index c95397ce6646e..03f4953cbb452 100644 --- a/clients/client-frauddetector/src/commands/DeleteModelCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteModelRequest, DeleteModelResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteModelRequest, DeleteModelResult } from "../models/models_0"; import { DeleteModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteModelVersionCommand.ts b/clients/client-frauddetector/src/commands/DeleteModelVersionCommand.ts index 329a52150ba0e..1c96f06b49943 100644 --- a/clients/client-frauddetector/src/commands/DeleteModelVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteModelVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteModelVersionRequest, DeleteModelVersionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteModelVersionRequest, DeleteModelVersionResult } from "../models/models_0"; import { DeleteModelVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteOutcomeCommand.ts b/clients/client-frauddetector/src/commands/DeleteOutcomeCommand.ts index 8dc43da697824..90ac7cc62028b 100644 --- a/clients/client-frauddetector/src/commands/DeleteOutcomeCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteOutcomeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteOutcomeRequest, DeleteOutcomeResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteOutcomeRequest, DeleteOutcomeResult } from "../models/models_0"; import { DeleteOutcome } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteRuleCommand.ts b/clients/client-frauddetector/src/commands/DeleteRuleCommand.ts index cc60793e66651..69ebe02bc0be1 100644 --- a/clients/client-frauddetector/src/commands/DeleteRuleCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteRuleRequest, DeleteRuleResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteRuleRequest, DeleteRuleResult } from "../models/models_0"; import { DeleteRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DeleteVariableCommand.ts b/clients/client-frauddetector/src/commands/DeleteVariableCommand.ts index 9a940c42e9988..6d88a50cceeaf 100644 --- a/clients/client-frauddetector/src/commands/DeleteVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/DeleteVariableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DeleteVariableRequest, DeleteVariableResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DeleteVariableRequest, DeleteVariableResult } from "../models/models_0"; import { DeleteVariable } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DescribeDetectorCommand.ts b/clients/client-frauddetector/src/commands/DescribeDetectorCommand.ts index 7ebcf132a88e1..6dc137517121b 100644 --- a/clients/client-frauddetector/src/commands/DescribeDetectorCommand.ts +++ b/clients/client-frauddetector/src/commands/DescribeDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DescribeDetectorRequest, DescribeDetectorResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DescribeDetectorRequest, DescribeDetectorResult } from "../models/models_0"; import { DescribeDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/DescribeModelVersionsCommand.ts b/clients/client-frauddetector/src/commands/DescribeModelVersionsCommand.ts index 0ae84dad56e44..d55b891d231a8 100644 --- a/clients/client-frauddetector/src/commands/DescribeModelVersionsCommand.ts +++ b/clients/client-frauddetector/src/commands/DescribeModelVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { DescribeModelVersionsRequest, DescribeModelVersionsResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { DescribeModelVersionsRequest, DescribeModelVersionsResult } from "../models/models_0"; import { DescribeModelVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetBatchImportJobsCommand.ts b/clients/client-frauddetector/src/commands/GetBatchImportJobsCommand.ts index b12f406981a27..1821379b1b36d 100644 --- a/clients/client-frauddetector/src/commands/GetBatchImportJobsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetBatchImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetBatchImportJobsRequest, GetBatchImportJobsResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetBatchImportJobsRequest, GetBatchImportJobsResult } from "../models/models_0"; import { GetBatchImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetBatchPredictionJobsCommand.ts b/clients/client-frauddetector/src/commands/GetBatchPredictionJobsCommand.ts index 7d651283a7d5d..c2281ce513086 100644 --- a/clients/client-frauddetector/src/commands/GetBatchPredictionJobsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetBatchPredictionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetBatchPredictionJobsRequest, GetBatchPredictionJobsResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetBatchPredictionJobsRequest, GetBatchPredictionJobsResult } from "../models/models_0"; import { GetBatchPredictionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetDeleteEventsByEventTypeStatusCommand.ts b/clients/client-frauddetector/src/commands/GetDeleteEventsByEventTypeStatusCommand.ts index c0ada183f4f6e..6d0c3ab0afafe 100644 --- a/clients/client-frauddetector/src/commands/GetDeleteEventsByEventTypeStatusCommand.ts +++ b/clients/client-frauddetector/src/commands/GetDeleteEventsByEventTypeStatusCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetDeleteEventsByEventTypeStatusRequest, GetDeleteEventsByEventTypeStatusResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { + GetDeleteEventsByEventTypeStatusRequest, + GetDeleteEventsByEventTypeStatusResult, +} from "../models/models_0"; import { GetDeleteEventsByEventTypeStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetDetectorVersionCommand.ts b/clients/client-frauddetector/src/commands/GetDetectorVersionCommand.ts index 99104311ff12e..bb710ecb60bde 100644 --- a/clients/client-frauddetector/src/commands/GetDetectorVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/GetDetectorVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetDetectorVersionRequest, GetDetectorVersionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetDetectorVersionRequest, GetDetectorVersionResult } from "../models/models_0"; import { GetDetectorVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetDetectorsCommand.ts b/clients/client-frauddetector/src/commands/GetDetectorsCommand.ts index b1931d78c2699..bb06da3b7cc71 100644 --- a/clients/client-frauddetector/src/commands/GetDetectorsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetDetectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetDetectorsRequest, GetDetectorsResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetDetectorsRequest, GetDetectorsResult } from "../models/models_0"; import { GetDetectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetEntityTypesCommand.ts b/clients/client-frauddetector/src/commands/GetEntityTypesCommand.ts index 497654ce97b27..a25ae0e3d3612 100644 --- a/clients/client-frauddetector/src/commands/GetEntityTypesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEntityTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetEntityTypesRequest, GetEntityTypesResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetEntityTypesRequest, GetEntityTypesResult } from "../models/models_0"; import { GetEntityTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetEventCommand.ts b/clients/client-frauddetector/src/commands/GetEventCommand.ts index c9114cfb1abab..73ad8ad46a031 100644 --- a/clients/client-frauddetector/src/commands/GetEventCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetEventRequest, GetEventResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetEventRequest, GetEventResult } from "../models/models_0"; import { GetEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetEventPredictionCommand.ts b/clients/client-frauddetector/src/commands/GetEventPredictionCommand.ts index 253f86a7ee872..f7539e78e891a 100644 --- a/clients/client-frauddetector/src/commands/GetEventPredictionCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEventPredictionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetEventPredictionRequest, GetEventPredictionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetEventPredictionRequest, GetEventPredictionResult } from "../models/models_0"; import { GetEventPrediction } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetEventPredictionMetadataCommand.ts b/clients/client-frauddetector/src/commands/GetEventPredictionMetadataCommand.ts index 13cc920d8c693..0195b027e72ea 100644 --- a/clients/client-frauddetector/src/commands/GetEventPredictionMetadataCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEventPredictionMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetEventPredictionMetadataRequest, GetEventPredictionMetadataResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetEventPredictionMetadataRequest, GetEventPredictionMetadataResult } from "../models/models_0"; import { GetEventPredictionMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetEventTypesCommand.ts b/clients/client-frauddetector/src/commands/GetEventTypesCommand.ts index 9ab06e0172ce9..af57ce2172f35 100644 --- a/clients/client-frauddetector/src/commands/GetEventTypesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetEventTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetEventTypesRequest, GetEventTypesResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetEventTypesRequest, GetEventTypesResult } from "../models/models_0"; import { GetEventTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetExternalModelsCommand.ts b/clients/client-frauddetector/src/commands/GetExternalModelsCommand.ts index d518cbcaf5f29..fae6df8623a9b 100644 --- a/clients/client-frauddetector/src/commands/GetExternalModelsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetExternalModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetExternalModelsRequest, GetExternalModelsResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetExternalModelsRequest, GetExternalModelsResult } from "../models/models_0"; import { GetExternalModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetKMSEncryptionKeyCommand.ts b/clients/client-frauddetector/src/commands/GetKMSEncryptionKeyCommand.ts index f2461e21a3bdd..83d8f817fa1e7 100644 --- a/clients/client-frauddetector/src/commands/GetKMSEncryptionKeyCommand.ts +++ b/clients/client-frauddetector/src/commands/GetKMSEncryptionKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetKMSEncryptionKeyResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetKMSEncryptionKeyResult } from "../models/models_0"; import { GetKMSEncryptionKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetLabelsCommand.ts b/clients/client-frauddetector/src/commands/GetLabelsCommand.ts index 3a17f4f965af4..618a731e1f56a 100644 --- a/clients/client-frauddetector/src/commands/GetLabelsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetLabelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetLabelsRequest, GetLabelsResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetLabelsRequest, GetLabelsResult } from "../models/models_0"; import { GetLabels } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetListElementsCommand.ts b/clients/client-frauddetector/src/commands/GetListElementsCommand.ts index 53bdba91937b9..4a272155d381b 100644 --- a/clients/client-frauddetector/src/commands/GetListElementsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetListElementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetListElementsRequest, GetListElementsResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetListElementsRequest, GetListElementsResult } from "../models/models_0"; import { GetListElements } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetListsMetadataCommand.ts b/clients/client-frauddetector/src/commands/GetListsMetadataCommand.ts index e42f96a273fb6..a351c0e1a20e1 100644 --- a/clients/client-frauddetector/src/commands/GetListsMetadataCommand.ts +++ b/clients/client-frauddetector/src/commands/GetListsMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetListsMetadataRequest, GetListsMetadataResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetListsMetadataRequest, GetListsMetadataResult } from "../models/models_0"; import { GetListsMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetModelVersionCommand.ts b/clients/client-frauddetector/src/commands/GetModelVersionCommand.ts index 8100b255f3072..26e25a34de2b6 100644 --- a/clients/client-frauddetector/src/commands/GetModelVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/GetModelVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetModelVersionRequest, GetModelVersionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetModelVersionRequest, GetModelVersionResult } from "../models/models_0"; import { GetModelVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetModelsCommand.ts b/clients/client-frauddetector/src/commands/GetModelsCommand.ts index f24d1f3c925f0..f6e4017944fb4 100644 --- a/clients/client-frauddetector/src/commands/GetModelsCommand.ts +++ b/clients/client-frauddetector/src/commands/GetModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetModelsRequest, GetModelsResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetModelsRequest, GetModelsResult } from "../models/models_0"; import { GetModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetOutcomesCommand.ts b/clients/client-frauddetector/src/commands/GetOutcomesCommand.ts index 846885eece344..138a4265e292b 100644 --- a/clients/client-frauddetector/src/commands/GetOutcomesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetOutcomesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetOutcomesRequest, GetOutcomesResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetOutcomesRequest, GetOutcomesResult } from "../models/models_0"; import { GetOutcomes } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetRulesCommand.ts b/clients/client-frauddetector/src/commands/GetRulesCommand.ts index 9172f8eeba366..69c4586f27d2b 100644 --- a/clients/client-frauddetector/src/commands/GetRulesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetRulesRequest, GetRulesResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetRulesRequest, GetRulesResult } from "../models/models_0"; import { GetRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/GetVariablesCommand.ts b/clients/client-frauddetector/src/commands/GetVariablesCommand.ts index f36c4890774de..4a3350e9aea8b 100644 --- a/clients/client-frauddetector/src/commands/GetVariablesCommand.ts +++ b/clients/client-frauddetector/src/commands/GetVariablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { GetVariablesRequest, GetVariablesResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { GetVariablesRequest, GetVariablesResult } from "../models/models_0"; import { GetVariables } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/ListEventPredictionsCommand.ts b/clients/client-frauddetector/src/commands/ListEventPredictionsCommand.ts index 327ced9c4f439..9fafa1355424a 100644 --- a/clients/client-frauddetector/src/commands/ListEventPredictionsCommand.ts +++ b/clients/client-frauddetector/src/commands/ListEventPredictionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { ListEventPredictionsRequest, ListEventPredictionsResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { ListEventPredictionsRequest, ListEventPredictionsResult } from "../models/models_0"; import { ListEventPredictions } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/ListTagsForResourceCommand.ts b/clients/client-frauddetector/src/commands/ListTagsForResourceCommand.ts index a0c8fbe051296..b13e29855b119 100644 --- a/clients/client-frauddetector/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-frauddetector/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/PutDetectorCommand.ts b/clients/client-frauddetector/src/commands/PutDetectorCommand.ts index c2399cc9c5547..e7769231cac99 100644 --- a/clients/client-frauddetector/src/commands/PutDetectorCommand.ts +++ b/clients/client-frauddetector/src/commands/PutDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { PutDetectorRequest, PutDetectorResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { PutDetectorRequest, PutDetectorResult } from "../models/models_0"; import { PutDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/PutEntityTypeCommand.ts b/clients/client-frauddetector/src/commands/PutEntityTypeCommand.ts index 1dee9ecf77d64..f00e8b91f2577 100644 --- a/clients/client-frauddetector/src/commands/PutEntityTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/PutEntityTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { PutEntityTypeRequest, PutEntityTypeResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { PutEntityTypeRequest, PutEntityTypeResult } from "../models/models_0"; import { PutEntityType } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/PutEventTypeCommand.ts b/clients/client-frauddetector/src/commands/PutEventTypeCommand.ts index 04e6042576782..7e95618c61c06 100644 --- a/clients/client-frauddetector/src/commands/PutEventTypeCommand.ts +++ b/clients/client-frauddetector/src/commands/PutEventTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { PutEventTypeRequest, PutEventTypeResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { PutEventTypeRequest, PutEventTypeResult } from "../models/models_0"; import { PutEventType } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/PutExternalModelCommand.ts b/clients/client-frauddetector/src/commands/PutExternalModelCommand.ts index b7c3a47487b84..6af19cdb143d2 100644 --- a/clients/client-frauddetector/src/commands/PutExternalModelCommand.ts +++ b/clients/client-frauddetector/src/commands/PutExternalModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { PutExternalModelRequest, PutExternalModelResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { PutExternalModelRequest, PutExternalModelResult } from "../models/models_0"; import { PutExternalModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/PutKMSEncryptionKeyCommand.ts b/clients/client-frauddetector/src/commands/PutKMSEncryptionKeyCommand.ts index ee07b3f8e4d34..8866537814fd1 100644 --- a/clients/client-frauddetector/src/commands/PutKMSEncryptionKeyCommand.ts +++ b/clients/client-frauddetector/src/commands/PutKMSEncryptionKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { PutKMSEncryptionKeyRequest, PutKMSEncryptionKeyResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { PutKMSEncryptionKeyRequest, PutKMSEncryptionKeyResult } from "../models/models_0"; import { PutKMSEncryptionKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/PutLabelCommand.ts b/clients/client-frauddetector/src/commands/PutLabelCommand.ts index 9084b4df79da8..3a65f59e0eae0 100644 --- a/clients/client-frauddetector/src/commands/PutLabelCommand.ts +++ b/clients/client-frauddetector/src/commands/PutLabelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { PutLabelRequest, PutLabelResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { PutLabelRequest, PutLabelResult } from "../models/models_0"; import { PutLabel } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/PutOutcomeCommand.ts b/clients/client-frauddetector/src/commands/PutOutcomeCommand.ts index 88c2f96c5bb98..68f3875f92d4a 100644 --- a/clients/client-frauddetector/src/commands/PutOutcomeCommand.ts +++ b/clients/client-frauddetector/src/commands/PutOutcomeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { PutOutcomeRequest, PutOutcomeResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { PutOutcomeRequest, PutOutcomeResult } from "../models/models_0"; import { PutOutcome } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/SendEventCommand.ts b/clients/client-frauddetector/src/commands/SendEventCommand.ts index 297f4764c27e9..f5d60572b7eb6 100644 --- a/clients/client-frauddetector/src/commands/SendEventCommand.ts +++ b/clients/client-frauddetector/src/commands/SendEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { SendEventRequest, SendEventResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { SendEventRequest, SendEventResult } from "../models/models_0"; import { SendEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/TagResourceCommand.ts b/clients/client-frauddetector/src/commands/TagResourceCommand.ts index f5d0d4ba40268..6e2050d54d806 100644 --- a/clients/client-frauddetector/src/commands/TagResourceCommand.ts +++ b/clients/client-frauddetector/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { TagResourceRequest, TagResourceResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { TagResourceRequest, TagResourceResult } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UntagResourceCommand.ts b/clients/client-frauddetector/src/commands/UntagResourceCommand.ts index 838d23367c554..5f841ea65f427 100644 --- a/clients/client-frauddetector/src/commands/UntagResourceCommand.ts +++ b/clients/client-frauddetector/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateDetectorVersionCommand.ts b/clients/client-frauddetector/src/commands/UpdateDetectorVersionCommand.ts index 4ac2f3b4e1b63..9993254587d54 100644 --- a/clients/client-frauddetector/src/commands/UpdateDetectorVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateDetectorVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateDetectorVersionRequest, UpdateDetectorVersionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateDetectorVersionRequest, UpdateDetectorVersionResult } from "../models/models_0"; import { UpdateDetectorVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateDetectorVersionMetadataCommand.ts b/clients/client-frauddetector/src/commands/UpdateDetectorVersionMetadataCommand.ts index 85dd7635458ed..bc429a2b6ac04 100644 --- a/clients/client-frauddetector/src/commands/UpdateDetectorVersionMetadataCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateDetectorVersionMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateDetectorVersionMetadataRequest, UpdateDetectorVersionMetadataResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateDetectorVersionMetadataRequest, UpdateDetectorVersionMetadataResult } from "../models/models_0"; import { UpdateDetectorVersionMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateDetectorVersionStatusCommand.ts b/clients/client-frauddetector/src/commands/UpdateDetectorVersionStatusCommand.ts index 0fceb5abd455d..8ce2b48518c77 100644 --- a/clients/client-frauddetector/src/commands/UpdateDetectorVersionStatusCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateDetectorVersionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateDetectorVersionStatusRequest, UpdateDetectorVersionStatusResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateDetectorVersionStatusRequest, UpdateDetectorVersionStatusResult } from "../models/models_0"; import { UpdateDetectorVersionStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateEventLabelCommand.ts b/clients/client-frauddetector/src/commands/UpdateEventLabelCommand.ts index 3d9235ce4ceab..bf43b5a156d4c 100644 --- a/clients/client-frauddetector/src/commands/UpdateEventLabelCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateEventLabelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateEventLabelRequest, UpdateEventLabelResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateEventLabelRequest, UpdateEventLabelResult } from "../models/models_0"; import { UpdateEventLabel } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateListCommand.ts b/clients/client-frauddetector/src/commands/UpdateListCommand.ts index 0d0584714efca..e7ece76216053 100644 --- a/clients/client-frauddetector/src/commands/UpdateListCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateListRequest, UpdateListResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateListRequest, UpdateListResult } from "../models/models_0"; import { UpdateList } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateModelCommand.ts b/clients/client-frauddetector/src/commands/UpdateModelCommand.ts index e55987b3536a4..ef10860c8b449 100644 --- a/clients/client-frauddetector/src/commands/UpdateModelCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateModelRequest, UpdateModelResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateModelRequest, UpdateModelResult } from "../models/models_0"; import { UpdateModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateModelVersionCommand.ts b/clients/client-frauddetector/src/commands/UpdateModelVersionCommand.ts index 55c79dd92ebf9..d7137a156e099 100644 --- a/clients/client-frauddetector/src/commands/UpdateModelVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateModelVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateModelVersionRequest, UpdateModelVersionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateModelVersionRequest, UpdateModelVersionResult } from "../models/models_0"; import { UpdateModelVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateModelVersionStatusCommand.ts b/clients/client-frauddetector/src/commands/UpdateModelVersionStatusCommand.ts index 6c8d65e520b60..6961a91b5d97e 100644 --- a/clients/client-frauddetector/src/commands/UpdateModelVersionStatusCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateModelVersionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateModelVersionStatusRequest, UpdateModelVersionStatusResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateModelVersionStatusRequest, UpdateModelVersionStatusResult } from "../models/models_0"; import { UpdateModelVersionStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateRuleMetadataCommand.ts b/clients/client-frauddetector/src/commands/UpdateRuleMetadataCommand.ts index 29ae070a40ce8..6d812bf1a95f7 100644 --- a/clients/client-frauddetector/src/commands/UpdateRuleMetadataCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateRuleMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateRuleMetadataRequest, UpdateRuleMetadataResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateRuleMetadataRequest, UpdateRuleMetadataResult } from "../models/models_0"; import { UpdateRuleMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateRuleVersionCommand.ts b/clients/client-frauddetector/src/commands/UpdateRuleVersionCommand.ts index f48ce658e5d87..8f2da175534c4 100644 --- a/clients/client-frauddetector/src/commands/UpdateRuleVersionCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateRuleVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateRuleVersionRequest, UpdateRuleVersionResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateRuleVersionRequest, UpdateRuleVersionResult } from "../models/models_0"; import { UpdateRuleVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/commands/UpdateVariableCommand.ts b/clients/client-frauddetector/src/commands/UpdateVariableCommand.ts index 9871d2fb55c32..9a083ed86030c 100644 --- a/clients/client-frauddetector/src/commands/UpdateVariableCommand.ts +++ b/clients/client-frauddetector/src/commands/UpdateVariableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; -import { UpdateVariableRequest, UpdateVariableResult } from "../models/models_0"; +import type { FraudDetectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FraudDetectorClient"; +import type { UpdateVariableRequest, UpdateVariableResult } from "../models/models_0"; import { UpdateVariable } from "../schemas/schemas_0"; /** diff --git a/clients/client-frauddetector/src/endpoint/EndpointParameters.ts b/clients/client-frauddetector/src/endpoint/EndpointParameters.ts index 1123901f286de..e05db15e96b41 100644 --- a/clients/client-frauddetector/src/endpoint/EndpointParameters.ts +++ b/clients/client-frauddetector/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-frauddetector/src/endpoint/endpointResolver.ts b/clients/client-frauddetector/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-frauddetector/src/endpoint/endpointResolver.ts +++ b/clients/client-frauddetector/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-frauddetector/src/extensionConfiguration.ts b/clients/client-frauddetector/src/extensionConfiguration.ts index 9b1fad9e1e390..ad63bf645e355 100644 --- a/clients/client-frauddetector/src/extensionConfiguration.ts +++ b/clients/client-frauddetector/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-frauddetector/src/models/FraudDetectorServiceException.ts b/clients/client-frauddetector/src/models/FraudDetectorServiceException.ts index aa1f58195b5a0..9c6110f4db367 100644 --- a/clients/client-frauddetector/src/models/FraudDetectorServiceException.ts +++ b/clients/client-frauddetector/src/models/FraudDetectorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-frauddetector/src/models/errors.ts b/clients/client-frauddetector/src/models/errors.ts index 7a369f79c7909..af5a569491b83 100644 --- a/clients/client-frauddetector/src/models/errors.ts +++ b/clients/client-frauddetector/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { FraudDetectorServiceException as __BaseException } from "./FraudDetectorServiceException"; diff --git a/clients/client-frauddetector/src/pagination/DescribeModelVersionsPaginator.ts b/clients/client-frauddetector/src/pagination/DescribeModelVersionsPaginator.ts index 80572265e0942..c0d0b5ca28643 100644 --- a/clients/client-frauddetector/src/pagination/DescribeModelVersionsPaginator.ts +++ b/clients/client-frauddetector/src/pagination/DescribeModelVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeModelVersionsCommand, diff --git a/clients/client-frauddetector/src/pagination/GetBatchImportJobsPaginator.ts b/clients/client-frauddetector/src/pagination/GetBatchImportJobsPaginator.ts index a6c9f232c1574..c30bc29504d90 100644 --- a/clients/client-frauddetector/src/pagination/GetBatchImportJobsPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetBatchImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBatchImportJobsCommand, diff --git a/clients/client-frauddetector/src/pagination/GetBatchPredictionJobsPaginator.ts b/clients/client-frauddetector/src/pagination/GetBatchPredictionJobsPaginator.ts index e7cedcbeb22b9..f6f9cd67ccac4 100644 --- a/clients/client-frauddetector/src/pagination/GetBatchPredictionJobsPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetBatchPredictionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBatchPredictionJobsCommand, diff --git a/clients/client-frauddetector/src/pagination/GetDetectorsPaginator.ts b/clients/client-frauddetector/src/pagination/GetDetectorsPaginator.ts index 98616fcee9045..af7cbe07454f0 100644 --- a/clients/client-frauddetector/src/pagination/GetDetectorsPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetDetectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetDetectorsCommand, diff --git a/clients/client-frauddetector/src/pagination/GetEntityTypesPaginator.ts b/clients/client-frauddetector/src/pagination/GetEntityTypesPaginator.ts index 6830a64a4fdb0..2e8481ac8233b 100644 --- a/clients/client-frauddetector/src/pagination/GetEntityTypesPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetEntityTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetEntityTypesCommand, diff --git a/clients/client-frauddetector/src/pagination/GetEventTypesPaginator.ts b/clients/client-frauddetector/src/pagination/GetEventTypesPaginator.ts index c795a46568ec2..059b46bb4570c 100644 --- a/clients/client-frauddetector/src/pagination/GetEventTypesPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetEventTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetEventTypesCommand, diff --git a/clients/client-frauddetector/src/pagination/GetExternalModelsPaginator.ts b/clients/client-frauddetector/src/pagination/GetExternalModelsPaginator.ts index 9a927025fe6c9..a5f3f6ad41622 100644 --- a/clients/client-frauddetector/src/pagination/GetExternalModelsPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetExternalModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetExternalModelsCommand, diff --git a/clients/client-frauddetector/src/pagination/GetLabelsPaginator.ts b/clients/client-frauddetector/src/pagination/GetLabelsPaginator.ts index 59a7b8149d51a..c815bed2a4959 100644 --- a/clients/client-frauddetector/src/pagination/GetLabelsPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetLabelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetLabelsCommand, GetLabelsCommandInput, GetLabelsCommandOutput } from "../commands/GetLabelsCommand"; import { FraudDetectorClient } from "../FraudDetectorClient"; diff --git a/clients/client-frauddetector/src/pagination/GetListElementsPaginator.ts b/clients/client-frauddetector/src/pagination/GetListElementsPaginator.ts index 1f8619d4e75ac..4d218e1dd8852 100644 --- a/clients/client-frauddetector/src/pagination/GetListElementsPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetListElementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetListElementsCommand, diff --git a/clients/client-frauddetector/src/pagination/GetListsMetadataPaginator.ts b/clients/client-frauddetector/src/pagination/GetListsMetadataPaginator.ts index ea93c9518581a..06e2b1b4e2600 100644 --- a/clients/client-frauddetector/src/pagination/GetListsMetadataPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetListsMetadataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetListsMetadataCommand, diff --git a/clients/client-frauddetector/src/pagination/GetModelsPaginator.ts b/clients/client-frauddetector/src/pagination/GetModelsPaginator.ts index cc4a54c365bb5..f0d691a70553e 100644 --- a/clients/client-frauddetector/src/pagination/GetModelsPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetModelsCommand, GetModelsCommandInput, GetModelsCommandOutput } from "../commands/GetModelsCommand"; import { FraudDetectorClient } from "../FraudDetectorClient"; diff --git a/clients/client-frauddetector/src/pagination/GetOutcomesPaginator.ts b/clients/client-frauddetector/src/pagination/GetOutcomesPaginator.ts index 89cd2737ccac1..d24904af32ddf 100644 --- a/clients/client-frauddetector/src/pagination/GetOutcomesPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetOutcomesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetOutcomesCommand, GetOutcomesCommandInput, GetOutcomesCommandOutput } from "../commands/GetOutcomesCommand"; import { FraudDetectorClient } from "../FraudDetectorClient"; diff --git a/clients/client-frauddetector/src/pagination/GetRulesPaginator.ts b/clients/client-frauddetector/src/pagination/GetRulesPaginator.ts index e7042d3da6808..faaa5d0ccb702 100644 --- a/clients/client-frauddetector/src/pagination/GetRulesPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetRulesCommand, GetRulesCommandInput, GetRulesCommandOutput } from "../commands/GetRulesCommand"; import { FraudDetectorClient } from "../FraudDetectorClient"; diff --git a/clients/client-frauddetector/src/pagination/GetVariablesPaginator.ts b/clients/client-frauddetector/src/pagination/GetVariablesPaginator.ts index 623bb152d1cd7..221f1eee3c83b 100644 --- a/clients/client-frauddetector/src/pagination/GetVariablesPaginator.ts +++ b/clients/client-frauddetector/src/pagination/GetVariablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetVariablesCommand, diff --git a/clients/client-frauddetector/src/pagination/Interfaces.ts b/clients/client-frauddetector/src/pagination/Interfaces.ts index 9dfd11a177a78..4be8df96f2fbc 100644 --- a/clients/client-frauddetector/src/pagination/Interfaces.ts +++ b/clients/client-frauddetector/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { FraudDetectorClient } from "../FraudDetectorClient"; diff --git a/clients/client-frauddetector/src/pagination/ListEventPredictionsPaginator.ts b/clients/client-frauddetector/src/pagination/ListEventPredictionsPaginator.ts index 9a418e867b3a2..693c6a4f6e86d 100644 --- a/clients/client-frauddetector/src/pagination/ListEventPredictionsPaginator.ts +++ b/clients/client-frauddetector/src/pagination/ListEventPredictionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventPredictionsCommand, diff --git a/clients/client-frauddetector/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-frauddetector/src/pagination/ListTagsForResourcePaginator.ts index e1a1653adffbf..648c62cabebe1 100644 --- a/clients/client-frauddetector/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-frauddetector/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-frauddetector/src/runtimeConfig.browser.ts b/clients/client-frauddetector/src/runtimeConfig.browser.ts index 3e425d0a84a91..7472c5f568f3a 100644 --- a/clients/client-frauddetector/src/runtimeConfig.browser.ts +++ b/clients/client-frauddetector/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FraudDetectorClientConfig } from "./FraudDetectorClient"; + +import type { FraudDetectorClientConfig } from "./FraudDetectorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-frauddetector/src/runtimeConfig.native.ts b/clients/client-frauddetector/src/runtimeConfig.native.ts index 5cd07aef55cef..62b131a19773c 100644 --- a/clients/client-frauddetector/src/runtimeConfig.native.ts +++ b/clients/client-frauddetector/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { FraudDetectorClientConfig } from "./FraudDetectorClient"; +import type { FraudDetectorClientConfig } from "./FraudDetectorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-frauddetector/src/runtimeConfig.shared.ts b/clients/client-frauddetector/src/runtimeConfig.shared.ts index 7e1af184e4d44..7a25b9b8bb6ed 100644 --- a/clients/client-frauddetector/src/runtimeConfig.shared.ts +++ b/clients/client-frauddetector/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultFraudDetectorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { FraudDetectorClientConfig } from "./FraudDetectorClient"; +import type { FraudDetectorClientConfig } from "./FraudDetectorClient"; /** * @internal diff --git a/clients/client-frauddetector/src/runtimeConfig.ts b/clients/client-frauddetector/src/runtimeConfig.ts index 17cb492eaf22f..a89c3670f31b0 100644 --- a/clients/client-frauddetector/src/runtimeConfig.ts +++ b/clients/client-frauddetector/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FraudDetectorClientConfig } from "./FraudDetectorClient"; + +import type { FraudDetectorClientConfig } from "./FraudDetectorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-frauddetector/src/runtimeExtensions.ts b/clients/client-frauddetector/src/runtimeExtensions.ts index b72dd94120f0a..164c278a677e1 100644 --- a/clients/client-frauddetector/src/runtimeExtensions.ts +++ b/clients/client-frauddetector/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { FraudDetectorExtensionConfiguration } from "./extensionConfiguration"; +import type { FraudDetectorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-frauddetector/src/schemas/schemas_0.ts b/clients/client-frauddetector/src/schemas/schemas_0.ts index 0f84db6147590..65155fd42e14f 100644 --- a/clients/client-frauddetector/src/schemas/schemas_0.ts +++ b/clients/client-frauddetector/src/schemas/schemas_0.ts @@ -535,7 +535,7 @@ const n0 = "com.amazonaws.frauddetector"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-freetier/package.json b/clients/client-freetier/package.json index c2d3e49a7e461..95881e320fb96 100644 --- a/clients/client-freetier/package.json +++ b/clients/client-freetier/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-freetier/src/FreeTier.ts b/clients/client-freetier/src/FreeTier.ts index af404acfd34d7..f7a1385d8bb30 100644 --- a/clients/client-freetier/src/FreeTier.ts +++ b/clients/client-freetier/src/FreeTier.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetAccountActivityCommand, @@ -27,7 +27,7 @@ import { UpgradeAccountPlanCommandInput, UpgradeAccountPlanCommandOutput, } from "./commands/UpgradeAccountPlanCommand"; -import { FreeTierClient, FreeTierClientConfig } from "./FreeTierClient"; +import { FreeTierClient } from "./FreeTierClient"; const commands = { GetAccountActivityCommand, diff --git a/clients/client-freetier/src/FreeTierClient.ts b/clients/client-freetier/src/FreeTierClient.ts index 2c093f65517d7..dd90b8f6ccae7 100644 --- a/clients/client-freetier/src/FreeTierClient.ts +++ b/clients/client-freetier/src/FreeTierClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultFreeTierHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetAccountActivityCommandInput, GetAccountActivityCommandOutput } from "./commands/GetAccountActivityCommand"; @@ -75,7 +84,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-freetier/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-freetier/src/auth/httpAuthExtensionConfiguration.ts index da7da911069e7..b18c2bbdbd582 100644 --- a/clients/client-freetier/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-freetier/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { FreeTierHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { FreeTierHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-freetier/src/auth/httpAuthSchemeProvider.ts b/clients/client-freetier/src/auth/httpAuthSchemeProvider.ts index 6e0dc32999d9b..68f83e8510e56 100644 --- a/clients/client-freetier/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-freetier/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { FreeTierClientConfig, FreeTierClientResolvedConfig } from "../FreeTierClient"; +import { type FreeTierClientResolvedConfig, FreeTierClientConfig } from "../FreeTierClient"; /** * @internal diff --git a/clients/client-freetier/src/commands/GetAccountActivityCommand.ts b/clients/client-freetier/src/commands/GetAccountActivityCommand.ts index 8998fc61b2b22..6de11f0e663c5 100644 --- a/clients/client-freetier/src/commands/GetAccountActivityCommand.ts +++ b/clients/client-freetier/src/commands/GetAccountActivityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; -import { GetAccountActivityRequest, GetAccountActivityResponse } from "../models/models_0"; +import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; +import type { GetAccountActivityRequest, GetAccountActivityResponse } from "../models/models_0"; import { GetAccountActivity } from "../schemas/schemas_0"; /** diff --git a/clients/client-freetier/src/commands/GetAccountPlanStateCommand.ts b/clients/client-freetier/src/commands/GetAccountPlanStateCommand.ts index 6a69990d381f0..ddb3c65fa5082 100644 --- a/clients/client-freetier/src/commands/GetAccountPlanStateCommand.ts +++ b/clients/client-freetier/src/commands/GetAccountPlanStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; -import { GetAccountPlanStateRequest, GetAccountPlanStateResponse } from "../models/models_0"; +import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; +import type { GetAccountPlanStateRequest, GetAccountPlanStateResponse } from "../models/models_0"; import { GetAccountPlanState } from "../schemas/schemas_0"; /** diff --git a/clients/client-freetier/src/commands/GetFreeTierUsageCommand.ts b/clients/client-freetier/src/commands/GetFreeTierUsageCommand.ts index 465c52b2248ff..430d7d5bdabcc 100644 --- a/clients/client-freetier/src/commands/GetFreeTierUsageCommand.ts +++ b/clients/client-freetier/src/commands/GetFreeTierUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; -import { GetFreeTierUsageRequest, GetFreeTierUsageResponse } from "../models/models_0"; +import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; +import type { GetFreeTierUsageRequest, GetFreeTierUsageResponse } from "../models/models_0"; import { GetFreeTierUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-freetier/src/commands/ListAccountActivitiesCommand.ts b/clients/client-freetier/src/commands/ListAccountActivitiesCommand.ts index 7886f2cb08b5f..67b691ad5e227 100644 --- a/clients/client-freetier/src/commands/ListAccountActivitiesCommand.ts +++ b/clients/client-freetier/src/commands/ListAccountActivitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; -import { ListAccountActivitiesRequest, ListAccountActivitiesResponse } from "../models/models_0"; +import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; +import type { ListAccountActivitiesRequest, ListAccountActivitiesResponse } from "../models/models_0"; import { ListAccountActivities } from "../schemas/schemas_0"; /** diff --git a/clients/client-freetier/src/commands/UpgradeAccountPlanCommand.ts b/clients/client-freetier/src/commands/UpgradeAccountPlanCommand.ts index fc10226617cbb..e09c13d8e36bd 100644 --- a/clients/client-freetier/src/commands/UpgradeAccountPlanCommand.ts +++ b/clients/client-freetier/src/commands/UpgradeAccountPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; -import { UpgradeAccountPlanRequest, UpgradeAccountPlanResponse } from "../models/models_0"; +import type { FreeTierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FreeTierClient"; +import type { UpgradeAccountPlanRequest, UpgradeAccountPlanResponse } from "../models/models_0"; import { UpgradeAccountPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-freetier/src/endpoint/EndpointParameters.ts b/clients/client-freetier/src/endpoint/EndpointParameters.ts index db68b87d92028..b8c6ca1463c19 100644 --- a/clients/client-freetier/src/endpoint/EndpointParameters.ts +++ b/clients/client-freetier/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-freetier/src/endpoint/endpointResolver.ts b/clients/client-freetier/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-freetier/src/endpoint/endpointResolver.ts +++ b/clients/client-freetier/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-freetier/src/extensionConfiguration.ts b/clients/client-freetier/src/extensionConfiguration.ts index 19f99c9b311fa..87500c99c62f8 100644 --- a/clients/client-freetier/src/extensionConfiguration.ts +++ b/clients/client-freetier/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-freetier/src/models/FreeTierServiceException.ts b/clients/client-freetier/src/models/FreeTierServiceException.ts index 54a4379346508..242299a6b0bcf 100644 --- a/clients/client-freetier/src/models/FreeTierServiceException.ts +++ b/clients/client-freetier/src/models/FreeTierServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-freetier/src/models/errors.ts b/clients/client-freetier/src/models/errors.ts index 6ca13332e15ab..ab205fe01a208 100644 --- a/clients/client-freetier/src/models/errors.ts +++ b/clients/client-freetier/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { FreeTierServiceException as __BaseException } from "./FreeTierServiceException"; diff --git a/clients/client-freetier/src/pagination/GetFreeTierUsagePaginator.ts b/clients/client-freetier/src/pagination/GetFreeTierUsagePaginator.ts index 912233efae3e0..3c9604f766186 100644 --- a/clients/client-freetier/src/pagination/GetFreeTierUsagePaginator.ts +++ b/clients/client-freetier/src/pagination/GetFreeTierUsagePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetFreeTierUsageCommand, diff --git a/clients/client-freetier/src/pagination/Interfaces.ts b/clients/client-freetier/src/pagination/Interfaces.ts index d6a8b0fd35e68..f25f6f03dcb30 100644 --- a/clients/client-freetier/src/pagination/Interfaces.ts +++ b/clients/client-freetier/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { FreeTierClient } from "../FreeTierClient"; diff --git a/clients/client-freetier/src/pagination/ListAccountActivitiesPaginator.ts b/clients/client-freetier/src/pagination/ListAccountActivitiesPaginator.ts index 86eca65264b4e..c54226ff5433e 100644 --- a/clients/client-freetier/src/pagination/ListAccountActivitiesPaginator.ts +++ b/clients/client-freetier/src/pagination/ListAccountActivitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountActivitiesCommand, diff --git a/clients/client-freetier/src/runtimeConfig.browser.ts b/clients/client-freetier/src/runtimeConfig.browser.ts index e63ec9655858b..e3bfe168ff0e6 100644 --- a/clients/client-freetier/src/runtimeConfig.browser.ts +++ b/clients/client-freetier/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FreeTierClientConfig } from "./FreeTierClient"; + +import type { FreeTierClientConfig } from "./FreeTierClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-freetier/src/runtimeConfig.native.ts b/clients/client-freetier/src/runtimeConfig.native.ts index 74c9660509856..cf4a65de39326 100644 --- a/clients/client-freetier/src/runtimeConfig.native.ts +++ b/clients/client-freetier/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { FreeTierClientConfig } from "./FreeTierClient"; +import type { FreeTierClientConfig } from "./FreeTierClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-freetier/src/runtimeConfig.shared.ts b/clients/client-freetier/src/runtimeConfig.shared.ts index 7cce7b87e0adc..90b42963c5286 100644 --- a/clients/client-freetier/src/runtimeConfig.shared.ts +++ b/clients/client-freetier/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultFreeTierHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { FreeTierClientConfig } from "./FreeTierClient"; +import type { FreeTierClientConfig } from "./FreeTierClient"; /** * @internal diff --git a/clients/client-freetier/src/runtimeConfig.ts b/clients/client-freetier/src/runtimeConfig.ts index f36be9c5d8a36..163f76f67a3d0 100644 --- a/clients/client-freetier/src/runtimeConfig.ts +++ b/clients/client-freetier/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FreeTierClientConfig } from "./FreeTierClient"; + +import type { FreeTierClientConfig } from "./FreeTierClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-freetier/src/runtimeExtensions.ts b/clients/client-freetier/src/runtimeExtensions.ts index a01480d65f974..6c6966b6ff379 100644 --- a/clients/client-freetier/src/runtimeExtensions.ts +++ b/clients/client-freetier/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { FreeTierExtensionConfiguration } from "./extensionConfiguration"; +import type { FreeTierExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-freetier/src/schemas/schemas_0.ts b/clients/client-freetier/src/schemas/schemas_0.ts index ae7009fa9eaad..668ca57b2ac11 100644 --- a/clients/client-freetier/src/schemas/schemas_0.ts +++ b/clients/client-freetier/src/schemas/schemas_0.ts @@ -77,7 +77,7 @@ const n0 = "com.amazonaws.freetier"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-fsx/package.json b/clients/client-fsx/package.json index 58786ddd9fcc9..3e5c147d16607 100644 --- a/clients/client-fsx/package.json +++ b/clients/client-fsx/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-fsx/src/FSx.ts b/clients/client-fsx/src/FSx.ts index 686b551d93bf2..a18552a72074a 100644 --- a/clients/client-fsx/src/FSx.ts +++ b/clients/client-fsx/src/FSx.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateFileSystemAliasesCommand, @@ -234,7 +234,7 @@ import { UpdateVolumeCommandInput, UpdateVolumeCommandOutput, } from "./commands/UpdateVolumeCommand"; -import { FSxClient, FSxClientConfig } from "./FSxClient"; +import { FSxClient } from "./FSxClient"; const commands = { AssociateFileSystemAliasesCommand, diff --git a/clients/client-fsx/src/FSxClient.ts b/clients/client-fsx/src/FSxClient.ts index 19adbd130e35c..fa859dc6d14d4 100644 --- a/clients/client-fsx/src/FSxClient.ts +++ b/clients/client-fsx/src/FSxClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultFSxHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -193,7 +202,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-fsx/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-fsx/src/auth/httpAuthExtensionConfiguration.ts index c06ca1fb278ca..b97a1f35c2531 100644 --- a/clients/client-fsx/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-fsx/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { FSxHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { FSxHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-fsx/src/auth/httpAuthSchemeProvider.ts b/clients/client-fsx/src/auth/httpAuthSchemeProvider.ts index ccd2fcf52cc21..0cfac42ee5ffd 100644 --- a/clients/client-fsx/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-fsx/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { FSxClientConfig, FSxClientResolvedConfig } from "../FSxClient"; +import { type FSxClientResolvedConfig, FSxClientConfig } from "../FSxClient"; /** * @internal diff --git a/clients/client-fsx/src/commands/AssociateFileSystemAliasesCommand.ts b/clients/client-fsx/src/commands/AssociateFileSystemAliasesCommand.ts index dfa7e1cf03160..3ef3f89c34278 100644 --- a/clients/client-fsx/src/commands/AssociateFileSystemAliasesCommand.ts +++ b/clients/client-fsx/src/commands/AssociateFileSystemAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { AssociateFileSystemAliasesRequest, AssociateFileSystemAliasesResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { AssociateFileSystemAliasesRequest, AssociateFileSystemAliasesResponse } from "../models/models_0"; import { AssociateFileSystemAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CancelDataRepositoryTaskCommand.ts b/clients/client-fsx/src/commands/CancelDataRepositoryTaskCommand.ts index 7a3d28b57ca9b..505dbb9eb36d0 100644 --- a/clients/client-fsx/src/commands/CancelDataRepositoryTaskCommand.ts +++ b/clients/client-fsx/src/commands/CancelDataRepositoryTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CancelDataRepositoryTaskRequest, CancelDataRepositoryTaskResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CancelDataRepositoryTaskRequest, CancelDataRepositoryTaskResponse } from "../models/models_0"; import { CancelDataRepositoryTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CopyBackupCommand.ts b/clients/client-fsx/src/commands/CopyBackupCommand.ts index f47690c9bbff7..c62c426ad7c02 100644 --- a/clients/client-fsx/src/commands/CopyBackupCommand.ts +++ b/clients/client-fsx/src/commands/CopyBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CopyBackupRequest, CopyBackupResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CopyBackupRequest, CopyBackupResponse } from "../models/models_0"; import { CopyBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CopySnapshotAndUpdateVolumeCommand.ts b/clients/client-fsx/src/commands/CopySnapshotAndUpdateVolumeCommand.ts index 674877605dd71..02cf2aefbfa21 100644 --- a/clients/client-fsx/src/commands/CopySnapshotAndUpdateVolumeCommand.ts +++ b/clients/client-fsx/src/commands/CopySnapshotAndUpdateVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CopySnapshotAndUpdateVolumeRequest, CopySnapshotAndUpdateVolumeResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CopySnapshotAndUpdateVolumeRequest, CopySnapshotAndUpdateVolumeResponse } from "../models/models_0"; import { CopySnapshotAndUpdateVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateAndAttachS3AccessPointCommand.ts b/clients/client-fsx/src/commands/CreateAndAttachS3AccessPointCommand.ts index eb3f3cee89e26..76752bccebdf0 100644 --- a/clients/client-fsx/src/commands/CreateAndAttachS3AccessPointCommand.ts +++ b/clients/client-fsx/src/commands/CreateAndAttachS3AccessPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateAndAttachS3AccessPointRequest, CreateAndAttachS3AccessPointResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateAndAttachS3AccessPointRequest, CreateAndAttachS3AccessPointResponse } from "../models/models_0"; import { CreateAndAttachS3AccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateBackupCommand.ts b/clients/client-fsx/src/commands/CreateBackupCommand.ts index e73d050fb66b5..21102fadb447e 100644 --- a/clients/client-fsx/src/commands/CreateBackupCommand.ts +++ b/clients/client-fsx/src/commands/CreateBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateBackupRequest, CreateBackupResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateBackupRequest, CreateBackupResponse } from "../models/models_0"; import { CreateBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateDataRepositoryAssociationCommand.ts b/clients/client-fsx/src/commands/CreateDataRepositoryAssociationCommand.ts index 42d671c538c3f..b0bf7a2a1b200 100644 --- a/clients/client-fsx/src/commands/CreateDataRepositoryAssociationCommand.ts +++ b/clients/client-fsx/src/commands/CreateDataRepositoryAssociationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateDataRepositoryAssociationRequest, CreateDataRepositoryAssociationResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { + CreateDataRepositoryAssociationRequest, + CreateDataRepositoryAssociationResponse, +} from "../models/models_0"; import { CreateDataRepositoryAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateDataRepositoryTaskCommand.ts b/clients/client-fsx/src/commands/CreateDataRepositoryTaskCommand.ts index 07638e91603d3..b85a88e12b084 100644 --- a/clients/client-fsx/src/commands/CreateDataRepositoryTaskCommand.ts +++ b/clients/client-fsx/src/commands/CreateDataRepositoryTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateDataRepositoryTaskRequest, CreateDataRepositoryTaskResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateDataRepositoryTaskRequest, CreateDataRepositoryTaskResponse } from "../models/models_0"; import { CreateDataRepositoryTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateFileCacheCommand.ts b/clients/client-fsx/src/commands/CreateFileCacheCommand.ts index 9727f69d847f1..75598a321099a 100644 --- a/clients/client-fsx/src/commands/CreateFileCacheCommand.ts +++ b/clients/client-fsx/src/commands/CreateFileCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateFileCacheRequest, CreateFileCacheResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateFileCacheRequest, CreateFileCacheResponse } from "../models/models_0"; import { CreateFileCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateFileSystemCommand.ts b/clients/client-fsx/src/commands/CreateFileSystemCommand.ts index 35fc92a54d6f0..e2865c6ebe38a 100644 --- a/clients/client-fsx/src/commands/CreateFileSystemCommand.ts +++ b/clients/client-fsx/src/commands/CreateFileSystemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateFileSystemRequest, CreateFileSystemResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateFileSystemRequest, CreateFileSystemResponse } from "../models/models_0"; import { CreateFileSystem } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateFileSystemFromBackupCommand.ts b/clients/client-fsx/src/commands/CreateFileSystemFromBackupCommand.ts index d5067828bfb50..bc03f08d84011 100644 --- a/clients/client-fsx/src/commands/CreateFileSystemFromBackupCommand.ts +++ b/clients/client-fsx/src/commands/CreateFileSystemFromBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateFileSystemFromBackupRequest, CreateFileSystemFromBackupResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateFileSystemFromBackupRequest, CreateFileSystemFromBackupResponse } from "../models/models_0"; import { CreateFileSystemFromBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateSnapshotCommand.ts b/clients/client-fsx/src/commands/CreateSnapshotCommand.ts index 761e981fee3ee..6cde2e1cb8366 100644 --- a/clients/client-fsx/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-fsx/src/commands/CreateSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateSnapshotRequest, CreateSnapshotResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateSnapshotRequest, CreateSnapshotResponse } from "../models/models_0"; import { CreateSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateStorageVirtualMachineCommand.ts b/clients/client-fsx/src/commands/CreateStorageVirtualMachineCommand.ts index 6000660fae2e0..2416f2e4b5dd4 100644 --- a/clients/client-fsx/src/commands/CreateStorageVirtualMachineCommand.ts +++ b/clients/client-fsx/src/commands/CreateStorageVirtualMachineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateStorageVirtualMachineRequest, CreateStorageVirtualMachineResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateStorageVirtualMachineRequest, CreateStorageVirtualMachineResponse } from "../models/models_0"; import { CreateStorageVirtualMachine } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateVolumeCommand.ts b/clients/client-fsx/src/commands/CreateVolumeCommand.ts index 38548dee63292..4817b059fac3a 100644 --- a/clients/client-fsx/src/commands/CreateVolumeCommand.ts +++ b/clients/client-fsx/src/commands/CreateVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateVolumeRequest, CreateVolumeResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateVolumeRequest, CreateVolumeResponse } from "../models/models_0"; import { CreateVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/CreateVolumeFromBackupCommand.ts b/clients/client-fsx/src/commands/CreateVolumeFromBackupCommand.ts index 003a14393ad4e..41ff39567607b 100644 --- a/clients/client-fsx/src/commands/CreateVolumeFromBackupCommand.ts +++ b/clients/client-fsx/src/commands/CreateVolumeFromBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { CreateVolumeFromBackupRequest, CreateVolumeFromBackupResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { CreateVolumeFromBackupRequest, CreateVolumeFromBackupResponse } from "../models/models_0"; import { CreateVolumeFromBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DeleteBackupCommand.ts b/clients/client-fsx/src/commands/DeleteBackupCommand.ts index 12dd8d5ff5acc..6a239fc6217ec 100644 --- a/clients/client-fsx/src/commands/DeleteBackupCommand.ts +++ b/clients/client-fsx/src/commands/DeleteBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DeleteBackupRequest, DeleteBackupResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DeleteBackupRequest, DeleteBackupResponse } from "../models/models_0"; import { DeleteBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DeleteDataRepositoryAssociationCommand.ts b/clients/client-fsx/src/commands/DeleteDataRepositoryAssociationCommand.ts index b35d1c89bc13d..1734f8df4dafe 100644 --- a/clients/client-fsx/src/commands/DeleteDataRepositoryAssociationCommand.ts +++ b/clients/client-fsx/src/commands/DeleteDataRepositoryAssociationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DeleteDataRepositoryAssociationRequest, DeleteDataRepositoryAssociationResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { + DeleteDataRepositoryAssociationRequest, + DeleteDataRepositoryAssociationResponse, +} from "../models/models_0"; import { DeleteDataRepositoryAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DeleteFileCacheCommand.ts b/clients/client-fsx/src/commands/DeleteFileCacheCommand.ts index e841750fb1ab2..2de741fceab29 100644 --- a/clients/client-fsx/src/commands/DeleteFileCacheCommand.ts +++ b/clients/client-fsx/src/commands/DeleteFileCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DeleteFileCacheRequest, DeleteFileCacheResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DeleteFileCacheRequest, DeleteFileCacheResponse } from "../models/models_0"; import { DeleteFileCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DeleteFileSystemCommand.ts b/clients/client-fsx/src/commands/DeleteFileSystemCommand.ts index 75fe184ad4997..096e7b05e59e0 100644 --- a/clients/client-fsx/src/commands/DeleteFileSystemCommand.ts +++ b/clients/client-fsx/src/commands/DeleteFileSystemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DeleteFileSystemRequest, DeleteFileSystemResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DeleteFileSystemRequest, DeleteFileSystemResponse } from "../models/models_0"; import { DeleteFileSystem } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DeleteSnapshotCommand.ts b/clients/client-fsx/src/commands/DeleteSnapshotCommand.ts index 5c1a6a316b648..8fc297d79c563 100644 --- a/clients/client-fsx/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-fsx/src/commands/DeleteSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DeleteSnapshotRequest, DeleteSnapshotResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DeleteSnapshotRequest, DeleteSnapshotResponse } from "../models/models_0"; import { DeleteSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DeleteStorageVirtualMachineCommand.ts b/clients/client-fsx/src/commands/DeleteStorageVirtualMachineCommand.ts index c125b6f1d0f4c..4b8da5a37ea16 100644 --- a/clients/client-fsx/src/commands/DeleteStorageVirtualMachineCommand.ts +++ b/clients/client-fsx/src/commands/DeleteStorageVirtualMachineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DeleteStorageVirtualMachineRequest, DeleteStorageVirtualMachineResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DeleteStorageVirtualMachineRequest, DeleteStorageVirtualMachineResponse } from "../models/models_0"; import { DeleteStorageVirtualMachine } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DeleteVolumeCommand.ts b/clients/client-fsx/src/commands/DeleteVolumeCommand.ts index 82e18cc588ead..8931683a35514 100644 --- a/clients/client-fsx/src/commands/DeleteVolumeCommand.ts +++ b/clients/client-fsx/src/commands/DeleteVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DeleteVolumeRequest, DeleteVolumeResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DeleteVolumeRequest, DeleteVolumeResponse } from "../models/models_0"; import { DeleteVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeBackupsCommand.ts b/clients/client-fsx/src/commands/DescribeBackupsCommand.ts index 23f05f7ba4d19..7dc36e0b3dfef 100644 --- a/clients/client-fsx/src/commands/DescribeBackupsCommand.ts +++ b/clients/client-fsx/src/commands/DescribeBackupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeBackupsRequest, DescribeBackupsResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeBackupsRequest, DescribeBackupsResponse } from "../models/models_0"; import { DescribeBackups } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeDataRepositoryAssociationsCommand.ts b/clients/client-fsx/src/commands/DescribeDataRepositoryAssociationsCommand.ts index 94a29b007dda0..bc2ef888ec201 100644 --- a/clients/client-fsx/src/commands/DescribeDataRepositoryAssociationsCommand.ts +++ b/clients/client-fsx/src/commands/DescribeDataRepositoryAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeDataRepositoryAssociationsRequest, DescribeDataRepositoryAssociationsResponse, } from "../models/models_0"; diff --git a/clients/client-fsx/src/commands/DescribeDataRepositoryTasksCommand.ts b/clients/client-fsx/src/commands/DescribeDataRepositoryTasksCommand.ts index fbaef6fee69b4..1f5369925c436 100644 --- a/clients/client-fsx/src/commands/DescribeDataRepositoryTasksCommand.ts +++ b/clients/client-fsx/src/commands/DescribeDataRepositoryTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeDataRepositoryTasksRequest, DescribeDataRepositoryTasksResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeDataRepositoryTasksRequest, DescribeDataRepositoryTasksResponse } from "../models/models_0"; import { DescribeDataRepositoryTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeFileCachesCommand.ts b/clients/client-fsx/src/commands/DescribeFileCachesCommand.ts index 6e89543a85efe..4f981551fc6ff 100644 --- a/clients/client-fsx/src/commands/DescribeFileCachesCommand.ts +++ b/clients/client-fsx/src/commands/DescribeFileCachesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeFileCachesRequest, DescribeFileCachesResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeFileCachesRequest, DescribeFileCachesResponse } from "../models/models_0"; import { DescribeFileCaches } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeFileSystemAliasesCommand.ts b/clients/client-fsx/src/commands/DescribeFileSystemAliasesCommand.ts index 8e0a5019a83bb..fabf9018dffe0 100644 --- a/clients/client-fsx/src/commands/DescribeFileSystemAliasesCommand.ts +++ b/clients/client-fsx/src/commands/DescribeFileSystemAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeFileSystemAliasesRequest, DescribeFileSystemAliasesResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeFileSystemAliasesRequest, DescribeFileSystemAliasesResponse } from "../models/models_0"; import { DescribeFileSystemAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeFileSystemsCommand.ts b/clients/client-fsx/src/commands/DescribeFileSystemsCommand.ts index a45f17996f62d..871634ceccb30 100644 --- a/clients/client-fsx/src/commands/DescribeFileSystemsCommand.ts +++ b/clients/client-fsx/src/commands/DescribeFileSystemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeFileSystemsRequest, DescribeFileSystemsResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeFileSystemsRequest, DescribeFileSystemsResponse } from "../models/models_0"; import { DescribeFileSystems } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeS3AccessPointAttachmentsCommand.ts b/clients/client-fsx/src/commands/DescribeS3AccessPointAttachmentsCommand.ts index 2440e60cbb354..bfafbec6b07a5 100644 --- a/clients/client-fsx/src/commands/DescribeS3AccessPointAttachmentsCommand.ts +++ b/clients/client-fsx/src/commands/DescribeS3AccessPointAttachmentsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeS3AccessPointAttachmentsRequest, DescribeS3AccessPointAttachmentsResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { + DescribeS3AccessPointAttachmentsRequest, + DescribeS3AccessPointAttachmentsResponse, +} from "../models/models_0"; import { DescribeS3AccessPointAttachments } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeSharedVpcConfigurationCommand.ts b/clients/client-fsx/src/commands/DescribeSharedVpcConfigurationCommand.ts index dad46d3944212..4e2ae7b806c22 100644 --- a/clients/client-fsx/src/commands/DescribeSharedVpcConfigurationCommand.ts +++ b/clients/client-fsx/src/commands/DescribeSharedVpcConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeSharedVpcConfigurationRequest, DescribeSharedVpcConfigurationResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeSharedVpcConfigurationRequest, DescribeSharedVpcConfigurationResponse } from "../models/models_0"; import { DescribeSharedVpcConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeSnapshotsCommand.ts b/clients/client-fsx/src/commands/DescribeSnapshotsCommand.ts index 25a96e9e8593c..b30cd254fda69 100644 --- a/clients/client-fsx/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-fsx/src/commands/DescribeSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeSnapshotsRequest, DescribeSnapshotsResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeSnapshotsRequest, DescribeSnapshotsResponse } from "../models/models_0"; import { DescribeSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeStorageVirtualMachinesCommand.ts b/clients/client-fsx/src/commands/DescribeStorageVirtualMachinesCommand.ts index 0b3643cbe48c2..93606a0d73243 100644 --- a/clients/client-fsx/src/commands/DescribeStorageVirtualMachinesCommand.ts +++ b/clients/client-fsx/src/commands/DescribeStorageVirtualMachinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeStorageVirtualMachinesRequest, DescribeStorageVirtualMachinesResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeStorageVirtualMachinesRequest, DescribeStorageVirtualMachinesResponse } from "../models/models_0"; import { DescribeStorageVirtualMachines } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DescribeVolumesCommand.ts b/clients/client-fsx/src/commands/DescribeVolumesCommand.ts index 3d88175fa4d85..e5abcf466efa9 100644 --- a/clients/client-fsx/src/commands/DescribeVolumesCommand.ts +++ b/clients/client-fsx/src/commands/DescribeVolumesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DescribeVolumesRequest, DescribeVolumesResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DescribeVolumesRequest, DescribeVolumesResponse } from "../models/models_0"; import { DescribeVolumes } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DetachAndDeleteS3AccessPointCommand.ts b/clients/client-fsx/src/commands/DetachAndDeleteS3AccessPointCommand.ts index 786d7e8d9c06b..72f5e5c9f47ec 100644 --- a/clients/client-fsx/src/commands/DetachAndDeleteS3AccessPointCommand.ts +++ b/clients/client-fsx/src/commands/DetachAndDeleteS3AccessPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DetachAndDeleteS3AccessPointRequest, DetachAndDeleteS3AccessPointResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DetachAndDeleteS3AccessPointRequest, DetachAndDeleteS3AccessPointResponse } from "../models/models_0"; import { DetachAndDeleteS3AccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/DisassociateFileSystemAliasesCommand.ts b/clients/client-fsx/src/commands/DisassociateFileSystemAliasesCommand.ts index 36d1ef103b452..91ffd58610fe9 100644 --- a/clients/client-fsx/src/commands/DisassociateFileSystemAliasesCommand.ts +++ b/clients/client-fsx/src/commands/DisassociateFileSystemAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { DisassociateFileSystemAliasesRequest, DisassociateFileSystemAliasesResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { DisassociateFileSystemAliasesRequest, DisassociateFileSystemAliasesResponse } from "../models/models_0"; import { DisassociateFileSystemAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/ListTagsForResourceCommand.ts b/clients/client-fsx/src/commands/ListTagsForResourceCommand.ts index 72516adbaf980..dfad13bb775a0 100644 --- a/clients/client-fsx/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-fsx/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/ReleaseFileSystemNfsV3LocksCommand.ts b/clients/client-fsx/src/commands/ReleaseFileSystemNfsV3LocksCommand.ts index 89826520ed391..92bff98a243b8 100644 --- a/clients/client-fsx/src/commands/ReleaseFileSystemNfsV3LocksCommand.ts +++ b/clients/client-fsx/src/commands/ReleaseFileSystemNfsV3LocksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { ReleaseFileSystemNfsV3LocksRequest, ReleaseFileSystemNfsV3LocksResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { ReleaseFileSystemNfsV3LocksRequest, ReleaseFileSystemNfsV3LocksResponse } from "../models/models_0"; import { ReleaseFileSystemNfsV3Locks } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/RestoreVolumeFromSnapshotCommand.ts b/clients/client-fsx/src/commands/RestoreVolumeFromSnapshotCommand.ts index 87c759b253d37..d34f246fa28b5 100644 --- a/clients/client-fsx/src/commands/RestoreVolumeFromSnapshotCommand.ts +++ b/clients/client-fsx/src/commands/RestoreVolumeFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { RestoreVolumeFromSnapshotRequest, RestoreVolumeFromSnapshotResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { RestoreVolumeFromSnapshotRequest, RestoreVolumeFromSnapshotResponse } from "../models/models_0"; import { RestoreVolumeFromSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/StartMisconfiguredStateRecoveryCommand.ts b/clients/client-fsx/src/commands/StartMisconfiguredStateRecoveryCommand.ts index 5e5cb30bcb468..3d568381755f1 100644 --- a/clients/client-fsx/src/commands/StartMisconfiguredStateRecoveryCommand.ts +++ b/clients/client-fsx/src/commands/StartMisconfiguredStateRecoveryCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { StartMisconfiguredStateRecoveryRequest, StartMisconfiguredStateRecoveryResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { + StartMisconfiguredStateRecoveryRequest, + StartMisconfiguredStateRecoveryResponse, +} from "../models/models_0"; import { StartMisconfiguredStateRecovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/TagResourceCommand.ts b/clients/client-fsx/src/commands/TagResourceCommand.ts index da1b9f7a4753b..fee2fbbe25b00 100644 --- a/clients/client-fsx/src/commands/TagResourceCommand.ts +++ b/clients/client-fsx/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/UntagResourceCommand.ts b/clients/client-fsx/src/commands/UntagResourceCommand.ts index 0720f97dd8a37..4f234150ebee6 100644 --- a/clients/client-fsx/src/commands/UntagResourceCommand.ts +++ b/clients/client-fsx/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/UpdateDataRepositoryAssociationCommand.ts b/clients/client-fsx/src/commands/UpdateDataRepositoryAssociationCommand.ts index 44be9b08080dc..0347981027034 100644 --- a/clients/client-fsx/src/commands/UpdateDataRepositoryAssociationCommand.ts +++ b/clients/client-fsx/src/commands/UpdateDataRepositoryAssociationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { UpdateDataRepositoryAssociationRequest, UpdateDataRepositoryAssociationResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { + UpdateDataRepositoryAssociationRequest, + UpdateDataRepositoryAssociationResponse, +} from "../models/models_0"; import { UpdateDataRepositoryAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/UpdateFileCacheCommand.ts b/clients/client-fsx/src/commands/UpdateFileCacheCommand.ts index 5c7ac0b1c2f9e..e5c96b050daef 100644 --- a/clients/client-fsx/src/commands/UpdateFileCacheCommand.ts +++ b/clients/client-fsx/src/commands/UpdateFileCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { UpdateFileCacheRequest, UpdateFileCacheResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { UpdateFileCacheRequest, UpdateFileCacheResponse } from "../models/models_0"; import { UpdateFileCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/UpdateFileSystemCommand.ts b/clients/client-fsx/src/commands/UpdateFileSystemCommand.ts index 3ab7c66b37571..43417a5d5a4b4 100644 --- a/clients/client-fsx/src/commands/UpdateFileSystemCommand.ts +++ b/clients/client-fsx/src/commands/UpdateFileSystemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { UpdateFileSystemRequest, UpdateFileSystemResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { UpdateFileSystemRequest, UpdateFileSystemResponse } from "../models/models_0"; import { UpdateFileSystem } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/UpdateSharedVpcConfigurationCommand.ts b/clients/client-fsx/src/commands/UpdateSharedVpcConfigurationCommand.ts index c1d01af6408cf..93dd5c0ee12da 100644 --- a/clients/client-fsx/src/commands/UpdateSharedVpcConfigurationCommand.ts +++ b/clients/client-fsx/src/commands/UpdateSharedVpcConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { UpdateSharedVpcConfigurationRequest, UpdateSharedVpcConfigurationResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { UpdateSharedVpcConfigurationRequest, UpdateSharedVpcConfigurationResponse } from "../models/models_0"; import { UpdateSharedVpcConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/UpdateSnapshotCommand.ts b/clients/client-fsx/src/commands/UpdateSnapshotCommand.ts index ae6afd541bfea..d1cac66169642 100644 --- a/clients/client-fsx/src/commands/UpdateSnapshotCommand.ts +++ b/clients/client-fsx/src/commands/UpdateSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { UpdateSnapshotRequest, UpdateSnapshotResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { UpdateSnapshotRequest, UpdateSnapshotResponse } from "../models/models_0"; import { UpdateSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/UpdateStorageVirtualMachineCommand.ts b/clients/client-fsx/src/commands/UpdateStorageVirtualMachineCommand.ts index 693da4f144e79..0a455f3df69f9 100644 --- a/clients/client-fsx/src/commands/UpdateStorageVirtualMachineCommand.ts +++ b/clients/client-fsx/src/commands/UpdateStorageVirtualMachineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { UpdateStorageVirtualMachineRequest, UpdateStorageVirtualMachineResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { UpdateStorageVirtualMachineRequest, UpdateStorageVirtualMachineResponse } from "../models/models_0"; import { UpdateStorageVirtualMachine } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/commands/UpdateVolumeCommand.ts b/clients/client-fsx/src/commands/UpdateVolumeCommand.ts index f359b33d52813..9d68ed7875f98 100644 --- a/clients/client-fsx/src/commands/UpdateVolumeCommand.ts +++ b/clients/client-fsx/src/commands/UpdateVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; -import { UpdateVolumeRequest, UpdateVolumeResponse } from "../models/models_0"; +import type { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient"; +import type { UpdateVolumeRequest, UpdateVolumeResponse } from "../models/models_0"; import { UpdateVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-fsx/src/endpoint/EndpointParameters.ts b/clients/client-fsx/src/endpoint/EndpointParameters.ts index dbf248280e11e..4fa55940b1e72 100644 --- a/clients/client-fsx/src/endpoint/EndpointParameters.ts +++ b/clients/client-fsx/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-fsx/src/endpoint/endpointResolver.ts b/clients/client-fsx/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-fsx/src/endpoint/endpointResolver.ts +++ b/clients/client-fsx/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-fsx/src/extensionConfiguration.ts b/clients/client-fsx/src/extensionConfiguration.ts index 7b786f6160043..910577daf2ae8 100644 --- a/clients/client-fsx/src/extensionConfiguration.ts +++ b/clients/client-fsx/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-fsx/src/models/FSxServiceException.ts b/clients/client-fsx/src/models/FSxServiceException.ts index 71568b2b1ed00..06ab2252b6e62 100644 --- a/clients/client-fsx/src/models/FSxServiceException.ts +++ b/clients/client-fsx/src/models/FSxServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-fsx/src/models/errors.ts b/clients/client-fsx/src/models/errors.ts index 030ae908d0ebd..8355aad39e777 100644 --- a/clients/client-fsx/src/models/errors.ts +++ b/clients/client-fsx/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ActiveDirectoryErrorType, ServiceLimit } from "./enums"; import { FSxServiceException as __BaseException } from "./FSxServiceException"; diff --git a/clients/client-fsx/src/pagination/DescribeBackupsPaginator.ts b/clients/client-fsx/src/pagination/DescribeBackupsPaginator.ts index 94429c7e32d68..a317388cbb97e 100644 --- a/clients/client-fsx/src/pagination/DescribeBackupsPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeBackupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeBackupsCommand, diff --git a/clients/client-fsx/src/pagination/DescribeDataRepositoryAssociationsPaginator.ts b/clients/client-fsx/src/pagination/DescribeDataRepositoryAssociationsPaginator.ts index 20419275002f9..fa6c64fa10adc 100644 --- a/clients/client-fsx/src/pagination/DescribeDataRepositoryAssociationsPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeDataRepositoryAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDataRepositoryAssociationsCommand, diff --git a/clients/client-fsx/src/pagination/DescribeDataRepositoryTasksPaginator.ts b/clients/client-fsx/src/pagination/DescribeDataRepositoryTasksPaginator.ts index 1aa96e7f697c0..4f7f4c2fc0e4d 100644 --- a/clients/client-fsx/src/pagination/DescribeDataRepositoryTasksPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeDataRepositoryTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDataRepositoryTasksCommand, diff --git a/clients/client-fsx/src/pagination/DescribeFileCachesPaginator.ts b/clients/client-fsx/src/pagination/DescribeFileCachesPaginator.ts index bc53c11a4fb1b..2e322b82f4e90 100644 --- a/clients/client-fsx/src/pagination/DescribeFileCachesPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeFileCachesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFileCachesCommand, diff --git a/clients/client-fsx/src/pagination/DescribeFileSystemAliasesPaginator.ts b/clients/client-fsx/src/pagination/DescribeFileSystemAliasesPaginator.ts index 7dbcb551d0e2f..c1dc74edcb814 100644 --- a/clients/client-fsx/src/pagination/DescribeFileSystemAliasesPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeFileSystemAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFileSystemAliasesCommand, diff --git a/clients/client-fsx/src/pagination/DescribeFileSystemsPaginator.ts b/clients/client-fsx/src/pagination/DescribeFileSystemsPaginator.ts index 9c62209c3dda2..8c7b8a52c4bbc 100644 --- a/clients/client-fsx/src/pagination/DescribeFileSystemsPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeFileSystemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFileSystemsCommand, diff --git a/clients/client-fsx/src/pagination/DescribeS3AccessPointAttachmentsPaginator.ts b/clients/client-fsx/src/pagination/DescribeS3AccessPointAttachmentsPaginator.ts index ba7a9cdfd76a9..5b367e5a007b6 100644 --- a/clients/client-fsx/src/pagination/DescribeS3AccessPointAttachmentsPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeS3AccessPointAttachmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeS3AccessPointAttachmentsCommand, diff --git a/clients/client-fsx/src/pagination/DescribeSnapshotsPaginator.ts b/clients/client-fsx/src/pagination/DescribeSnapshotsPaginator.ts index b9b4f8e4f4999..3c67b68c87bfd 100644 --- a/clients/client-fsx/src/pagination/DescribeSnapshotsPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSnapshotsCommand, diff --git a/clients/client-fsx/src/pagination/DescribeStorageVirtualMachinesPaginator.ts b/clients/client-fsx/src/pagination/DescribeStorageVirtualMachinesPaginator.ts index 596ef23bb007f..5171c4e0882d7 100644 --- a/clients/client-fsx/src/pagination/DescribeStorageVirtualMachinesPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeStorageVirtualMachinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeStorageVirtualMachinesCommand, diff --git a/clients/client-fsx/src/pagination/DescribeVolumesPaginator.ts b/clients/client-fsx/src/pagination/DescribeVolumesPaginator.ts index d4c28a6502ed3..883b5fc514c70 100644 --- a/clients/client-fsx/src/pagination/DescribeVolumesPaginator.ts +++ b/clients/client-fsx/src/pagination/DescribeVolumesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVolumesCommand, diff --git a/clients/client-fsx/src/pagination/Interfaces.ts b/clients/client-fsx/src/pagination/Interfaces.ts index c53a66e59de11..f7c63e38ead26 100644 --- a/clients/client-fsx/src/pagination/Interfaces.ts +++ b/clients/client-fsx/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { FSxClient } from "../FSxClient"; diff --git a/clients/client-fsx/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-fsx/src/pagination/ListTagsForResourcePaginator.ts index 3a65a6c2cb2c8..f2d587a0cfcd3 100644 --- a/clients/client-fsx/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-fsx/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-fsx/src/runtimeConfig.browser.ts b/clients/client-fsx/src/runtimeConfig.browser.ts index a0b4e499b9cf0..522d97301d5ac 100644 --- a/clients/client-fsx/src/runtimeConfig.browser.ts +++ b/clients/client-fsx/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FSxClientConfig } from "./FSxClient"; + +import type { FSxClientConfig } from "./FSxClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-fsx/src/runtimeConfig.native.ts b/clients/client-fsx/src/runtimeConfig.native.ts index 0230619206273..47724609b01a3 100644 --- a/clients/client-fsx/src/runtimeConfig.native.ts +++ b/clients/client-fsx/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { FSxClientConfig } from "./FSxClient"; +import type { FSxClientConfig } from "./FSxClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-fsx/src/runtimeConfig.shared.ts b/clients/client-fsx/src/runtimeConfig.shared.ts index 8048a5f8b2d47..4ed58323a09c2 100644 --- a/clients/client-fsx/src/runtimeConfig.shared.ts +++ b/clients/client-fsx/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultFSxHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { FSxClientConfig } from "./FSxClient"; +import type { FSxClientConfig } from "./FSxClient"; /** * @internal diff --git a/clients/client-fsx/src/runtimeConfig.ts b/clients/client-fsx/src/runtimeConfig.ts index 014417eb91b1f..f34a4ae81b2ad 100644 --- a/clients/client-fsx/src/runtimeConfig.ts +++ b/clients/client-fsx/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { FSxClientConfig } from "./FSxClient"; + +import type { FSxClientConfig } from "./FSxClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-fsx/src/runtimeExtensions.ts b/clients/client-fsx/src/runtimeExtensions.ts index b18571ad218b9..f4e0cf69ecaa2 100644 --- a/clients/client-fsx/src/runtimeExtensions.ts +++ b/clients/client-fsx/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { FSxExtensionConfiguration } from "./extensionConfiguration"; +import type { FSxExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-fsx/src/schemas/schemas_0.ts b/clients/client-fsx/src/schemas/schemas_0.ts index 114ccb8cd71b1..5b74c0ae68942 100644 --- a/clients/client-fsx/src/schemas/schemas_0.ts +++ b/clients/client-fsx/src/schemas/schemas_0.ts @@ -564,7 +564,7 @@ const n0 = "com.amazonaws.fsx"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-gamelift/package.json b/clients/client-gamelift/package.json index 537fcab059052..cbd43f67f24f8 100644 --- a/clients/client-gamelift/package.json +++ b/clients/client-gamelift/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-gamelift/src/GameLift.ts b/clients/client-gamelift/src/GameLift.ts index 16136eb3cb357..9109b3317e118 100644 --- a/clients/client-gamelift/src/GameLift.ts +++ b/clients/client-gamelift/src/GameLift.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptMatchCommand, AcceptMatchCommandInput, AcceptMatchCommandOutput } from "./commands/AcceptMatchCommand"; import { @@ -532,7 +532,7 @@ import { ValidateMatchmakingRuleSetCommandInput, ValidateMatchmakingRuleSetCommandOutput, } from "./commands/ValidateMatchmakingRuleSetCommand"; -import { GameLiftClient, GameLiftClientConfig } from "./GameLiftClient"; +import { GameLiftClient } from "./GameLiftClient"; const commands = { AcceptMatchCommand, diff --git a/clients/client-gamelift/src/GameLiftClient.ts b/clients/client-gamelift/src/GameLiftClient.ts index 88ccc8bd0dbdb..f4bcad8e6e21f 100644 --- a/clients/client-gamelift/src/GameLiftClient.ts +++ b/clients/client-gamelift/src/GameLiftClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGameLiftHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptMatchCommandInput, AcceptMatchCommandOutput } from "./commands/AcceptMatchCommand"; @@ -398,7 +407,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-gamelift/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-gamelift/src/auth/httpAuthExtensionConfiguration.ts index 0391bbe036229..b096b028b1274 100644 --- a/clients/client-gamelift/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-gamelift/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GameLiftHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GameLiftHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-gamelift/src/auth/httpAuthSchemeProvider.ts b/clients/client-gamelift/src/auth/httpAuthSchemeProvider.ts index bbb98c5ec91a0..4e549dc6bb034 100644 --- a/clients/client-gamelift/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-gamelift/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GameLiftClientConfig, GameLiftClientResolvedConfig } from "../GameLiftClient"; +import { type GameLiftClientResolvedConfig, GameLiftClientConfig } from "../GameLiftClient"; /** * @internal diff --git a/clients/client-gamelift/src/commands/AcceptMatchCommand.ts b/clients/client-gamelift/src/commands/AcceptMatchCommand.ts index e1a39c68863de..42422f558b26b 100644 --- a/clients/client-gamelift/src/commands/AcceptMatchCommand.ts +++ b/clients/client-gamelift/src/commands/AcceptMatchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { AcceptMatchInput, AcceptMatchOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { AcceptMatchInput, AcceptMatchOutput } from "../models/models_0"; import { AcceptMatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ClaimGameServerCommand.ts b/clients/client-gamelift/src/commands/ClaimGameServerCommand.ts index 9b8b632d9711f..a20ae19455081 100644 --- a/clients/client-gamelift/src/commands/ClaimGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/ClaimGameServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ClaimGameServerInput, ClaimGameServerOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ClaimGameServerInput, ClaimGameServerOutput } from "../models/models_0"; import { ClaimGameServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateAliasCommand.ts b/clients/client-gamelift/src/commands/CreateAliasCommand.ts index 51270e445d54d..c54ffbad959ad 100644 --- a/clients/client-gamelift/src/commands/CreateAliasCommand.ts +++ b/clients/client-gamelift/src/commands/CreateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateAliasInput, CreateAliasOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateAliasInput, CreateAliasOutput } from "../models/models_0"; import { CreateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateBuildCommand.ts b/clients/client-gamelift/src/commands/CreateBuildCommand.ts index 272e74693b891..7628cd61f689c 100644 --- a/clients/client-gamelift/src/commands/CreateBuildCommand.ts +++ b/clients/client-gamelift/src/commands/CreateBuildCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateBuildInput, CreateBuildOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateBuildInput, CreateBuildOutput } from "../models/models_0"; import { CreateBuild } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateContainerFleetCommand.ts b/clients/client-gamelift/src/commands/CreateContainerFleetCommand.ts index a208035dda62a..d4d17d5145aed 100644 --- a/clients/client-gamelift/src/commands/CreateContainerFleetCommand.ts +++ b/clients/client-gamelift/src/commands/CreateContainerFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateContainerFleetInput, CreateContainerFleetOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateContainerFleetInput, CreateContainerFleetOutput } from "../models/models_0"; import { CreateContainerFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateContainerGroupDefinitionCommand.ts b/clients/client-gamelift/src/commands/CreateContainerGroupDefinitionCommand.ts index 0668525de63cd..739c88f5778bb 100644 --- a/clients/client-gamelift/src/commands/CreateContainerGroupDefinitionCommand.ts +++ b/clients/client-gamelift/src/commands/CreateContainerGroupDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateContainerGroupDefinitionInput, CreateContainerGroupDefinitionOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateContainerGroupDefinitionInput, CreateContainerGroupDefinitionOutput } from "../models/models_0"; import { CreateContainerGroupDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateFleetCommand.ts b/clients/client-gamelift/src/commands/CreateFleetCommand.ts index 261ae539824d5..58b79a03bbc98 100644 --- a/clients/client-gamelift/src/commands/CreateFleetCommand.ts +++ b/clients/client-gamelift/src/commands/CreateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateFleetInput, CreateFleetOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateFleetInput, CreateFleetOutput } from "../models/models_0"; import { CreateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateFleetLocationsCommand.ts b/clients/client-gamelift/src/commands/CreateFleetLocationsCommand.ts index e9995b25e8b73..c883fc7f0b1df 100644 --- a/clients/client-gamelift/src/commands/CreateFleetLocationsCommand.ts +++ b/clients/client-gamelift/src/commands/CreateFleetLocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateFleetLocationsInput, CreateFleetLocationsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateFleetLocationsInput, CreateFleetLocationsOutput } from "../models/models_0"; import { CreateFleetLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/CreateGameServerGroupCommand.ts index 25e2fb3d45dea..39b53b9eeec10 100644 --- a/clients/client-gamelift/src/commands/CreateGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/CreateGameServerGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateGameServerGroupInput, CreateGameServerGroupOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateGameServerGroupInput, CreateGameServerGroupOutput } from "../models/models_0"; import { CreateGameServerGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateGameSessionCommand.ts b/clients/client-gamelift/src/commands/CreateGameSessionCommand.ts index b88b86b6808b0..968adc11b65b1 100644 --- a/clients/client-gamelift/src/commands/CreateGameSessionCommand.ts +++ b/clients/client-gamelift/src/commands/CreateGameSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateGameSessionInput, CreateGameSessionOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateGameSessionInput, CreateGameSessionOutput } from "../models/models_0"; import { CreateGameSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateGameSessionQueueCommand.ts b/clients/client-gamelift/src/commands/CreateGameSessionQueueCommand.ts index 0bc315da6d8fe..aec43471ac6db 100644 --- a/clients/client-gamelift/src/commands/CreateGameSessionQueueCommand.ts +++ b/clients/client-gamelift/src/commands/CreateGameSessionQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateGameSessionQueueInput, CreateGameSessionQueueOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateGameSessionQueueInput, CreateGameSessionQueueOutput } from "../models/models_0"; import { CreateGameSessionQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateLocationCommand.ts b/clients/client-gamelift/src/commands/CreateLocationCommand.ts index 730a2f4263f36..03990c5b014da 100644 --- a/clients/client-gamelift/src/commands/CreateLocationCommand.ts +++ b/clients/client-gamelift/src/commands/CreateLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateLocationInput, CreateLocationOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateLocationInput, CreateLocationOutput } from "../models/models_0"; import { CreateLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateMatchmakingConfigurationCommand.ts b/clients/client-gamelift/src/commands/CreateMatchmakingConfigurationCommand.ts index ffb933ef44a5b..517ff0955f0d3 100644 --- a/clients/client-gamelift/src/commands/CreateMatchmakingConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/CreateMatchmakingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateMatchmakingConfigurationInput, CreateMatchmakingConfigurationOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateMatchmakingConfigurationInput, CreateMatchmakingConfigurationOutput } from "../models/models_0"; import { CreateMatchmakingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateMatchmakingRuleSetCommand.ts b/clients/client-gamelift/src/commands/CreateMatchmakingRuleSetCommand.ts index 1f6816b6111f7..5bd9954597cea 100644 --- a/clients/client-gamelift/src/commands/CreateMatchmakingRuleSetCommand.ts +++ b/clients/client-gamelift/src/commands/CreateMatchmakingRuleSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateMatchmakingRuleSetInput, CreateMatchmakingRuleSetOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateMatchmakingRuleSetInput, CreateMatchmakingRuleSetOutput } from "../models/models_0"; import { CreateMatchmakingRuleSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreatePlayerSessionCommand.ts b/clients/client-gamelift/src/commands/CreatePlayerSessionCommand.ts index 4cbbdecc0d10d..57673a8007591 100644 --- a/clients/client-gamelift/src/commands/CreatePlayerSessionCommand.ts +++ b/clients/client-gamelift/src/commands/CreatePlayerSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreatePlayerSessionInput, CreatePlayerSessionOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreatePlayerSessionInput, CreatePlayerSessionOutput } from "../models/models_0"; import { CreatePlayerSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreatePlayerSessionsCommand.ts b/clients/client-gamelift/src/commands/CreatePlayerSessionsCommand.ts index 756dc79001862..1807812411bfc 100644 --- a/clients/client-gamelift/src/commands/CreatePlayerSessionsCommand.ts +++ b/clients/client-gamelift/src/commands/CreatePlayerSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreatePlayerSessionsInput, CreatePlayerSessionsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreatePlayerSessionsInput, CreatePlayerSessionsOutput } from "../models/models_0"; import { CreatePlayerSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateScriptCommand.ts b/clients/client-gamelift/src/commands/CreateScriptCommand.ts index 61de1c574a515..ddd45ee10c34a 100644 --- a/clients/client-gamelift/src/commands/CreateScriptCommand.ts +++ b/clients/client-gamelift/src/commands/CreateScriptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateScriptInput, CreateScriptOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateScriptInput, CreateScriptOutput } from "../models/models_0"; import { CreateScript } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateVpcPeeringAuthorizationCommand.ts b/clients/client-gamelift/src/commands/CreateVpcPeeringAuthorizationCommand.ts index ef737f22897da..9210f62dac99b 100644 --- a/clients/client-gamelift/src/commands/CreateVpcPeeringAuthorizationCommand.ts +++ b/clients/client-gamelift/src/commands/CreateVpcPeeringAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateVpcPeeringAuthorizationInput, CreateVpcPeeringAuthorizationOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateVpcPeeringAuthorizationInput, CreateVpcPeeringAuthorizationOutput } from "../models/models_0"; import { CreateVpcPeeringAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/CreateVpcPeeringConnectionCommand.ts b/clients/client-gamelift/src/commands/CreateVpcPeeringConnectionCommand.ts index 8d7f1485b261c..e72e214b70194 100644 --- a/clients/client-gamelift/src/commands/CreateVpcPeeringConnectionCommand.ts +++ b/clients/client-gamelift/src/commands/CreateVpcPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { CreateVpcPeeringConnectionInput, CreateVpcPeeringConnectionOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { CreateVpcPeeringConnectionInput, CreateVpcPeeringConnectionOutput } from "../models/models_0"; import { CreateVpcPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteAliasCommand.ts b/clients/client-gamelift/src/commands/DeleteAliasCommand.ts index e8f7e09de46f9..5240016430a72 100644 --- a/clients/client-gamelift/src/commands/DeleteAliasCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteAliasInput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteAliasInput } from "../models/models_0"; import { DeleteAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteBuildCommand.ts b/clients/client-gamelift/src/commands/DeleteBuildCommand.ts index 28cfff0a4a90e..c49c3102000ad 100644 --- a/clients/client-gamelift/src/commands/DeleteBuildCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteBuildCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteBuildInput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteBuildInput } from "../models/models_0"; import { DeleteBuild } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteContainerFleetCommand.ts b/clients/client-gamelift/src/commands/DeleteContainerFleetCommand.ts index 39c5393849d01..c3e6d6b5bfaa2 100644 --- a/clients/client-gamelift/src/commands/DeleteContainerFleetCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteContainerFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteContainerFleetInput, DeleteContainerFleetOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteContainerFleetInput, DeleteContainerFleetOutput } from "../models/models_0"; import { DeleteContainerFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteContainerGroupDefinitionCommand.ts b/clients/client-gamelift/src/commands/DeleteContainerGroupDefinitionCommand.ts index 66be49115dc09..1ca0edfbe9846 100644 --- a/clients/client-gamelift/src/commands/DeleteContainerGroupDefinitionCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteContainerGroupDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteContainerGroupDefinitionInput, DeleteContainerGroupDefinitionOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteContainerGroupDefinitionInput, DeleteContainerGroupDefinitionOutput } from "../models/models_0"; import { DeleteContainerGroupDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteFleetCommand.ts b/clients/client-gamelift/src/commands/DeleteFleetCommand.ts index 3118558ce487d..723f7d1f8221a 100644 --- a/clients/client-gamelift/src/commands/DeleteFleetCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteFleetInput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteFleetInput } from "../models/models_0"; import { DeleteFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteFleetLocationsCommand.ts b/clients/client-gamelift/src/commands/DeleteFleetLocationsCommand.ts index 1975e9e37b6ee..151c645e3a118 100644 --- a/clients/client-gamelift/src/commands/DeleteFleetLocationsCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteFleetLocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteFleetLocationsInput, DeleteFleetLocationsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteFleetLocationsInput, DeleteFleetLocationsOutput } from "../models/models_0"; import { DeleteFleetLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/DeleteGameServerGroupCommand.ts index 11f1f5d3a0f8d..4c497556dbba8 100644 --- a/clients/client-gamelift/src/commands/DeleteGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteGameServerGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteGameServerGroupInput, DeleteGameServerGroupOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteGameServerGroupInput, DeleteGameServerGroupOutput } from "../models/models_0"; import { DeleteGameServerGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteGameSessionQueueCommand.ts b/clients/client-gamelift/src/commands/DeleteGameSessionQueueCommand.ts index 523469c293269..9bf13593e5135 100644 --- a/clients/client-gamelift/src/commands/DeleteGameSessionQueueCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteGameSessionQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteGameSessionQueueInput, DeleteGameSessionQueueOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteGameSessionQueueInput, DeleteGameSessionQueueOutput } from "../models/models_0"; import { DeleteGameSessionQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteLocationCommand.ts b/clients/client-gamelift/src/commands/DeleteLocationCommand.ts index 53ba71fc2d3e9..8e9c3ed44240e 100644 --- a/clients/client-gamelift/src/commands/DeleteLocationCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteLocationInput, DeleteLocationOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteLocationInput, DeleteLocationOutput } from "../models/models_0"; import { DeleteLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteMatchmakingConfigurationCommand.ts b/clients/client-gamelift/src/commands/DeleteMatchmakingConfigurationCommand.ts index ddd109cd2727e..0351fe14571bf 100644 --- a/clients/client-gamelift/src/commands/DeleteMatchmakingConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteMatchmakingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteMatchmakingConfigurationInput, DeleteMatchmakingConfigurationOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteMatchmakingConfigurationInput, DeleteMatchmakingConfigurationOutput } from "../models/models_0"; import { DeleteMatchmakingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteMatchmakingRuleSetCommand.ts b/clients/client-gamelift/src/commands/DeleteMatchmakingRuleSetCommand.ts index 0ce77f0bc3fd1..02c38575d7b90 100644 --- a/clients/client-gamelift/src/commands/DeleteMatchmakingRuleSetCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteMatchmakingRuleSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteMatchmakingRuleSetInput, DeleteMatchmakingRuleSetOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteMatchmakingRuleSetInput, DeleteMatchmakingRuleSetOutput } from "../models/models_0"; import { DeleteMatchmakingRuleSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteScalingPolicyCommand.ts b/clients/client-gamelift/src/commands/DeleteScalingPolicyCommand.ts index 702c54ea0ecf5..ad6e054dc2ba1 100644 --- a/clients/client-gamelift/src/commands/DeleteScalingPolicyCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteScalingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteScalingPolicyInput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteScalingPolicyInput } from "../models/models_0"; import { DeleteScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteScriptCommand.ts b/clients/client-gamelift/src/commands/DeleteScriptCommand.ts index 70242afb8d4e3..f7ce93451fb80 100644 --- a/clients/client-gamelift/src/commands/DeleteScriptCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteScriptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteScriptInput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteScriptInput } from "../models/models_0"; import { DeleteScript } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteVpcPeeringAuthorizationCommand.ts b/clients/client-gamelift/src/commands/DeleteVpcPeeringAuthorizationCommand.ts index fc1483a5c69ac..86657e6e4c17c 100644 --- a/clients/client-gamelift/src/commands/DeleteVpcPeeringAuthorizationCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteVpcPeeringAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteVpcPeeringAuthorizationInput, DeleteVpcPeeringAuthorizationOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteVpcPeeringAuthorizationInput, DeleteVpcPeeringAuthorizationOutput } from "../models/models_0"; import { DeleteVpcPeeringAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeleteVpcPeeringConnectionCommand.ts b/clients/client-gamelift/src/commands/DeleteVpcPeeringConnectionCommand.ts index 8da3dbf53474c..3136c076acd94 100644 --- a/clients/client-gamelift/src/commands/DeleteVpcPeeringConnectionCommand.ts +++ b/clients/client-gamelift/src/commands/DeleteVpcPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeleteVpcPeeringConnectionInput, DeleteVpcPeeringConnectionOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeleteVpcPeeringConnectionInput, DeleteVpcPeeringConnectionOutput } from "../models/models_0"; import { DeleteVpcPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeregisterComputeCommand.ts b/clients/client-gamelift/src/commands/DeregisterComputeCommand.ts index e18ec7105b59a..196f3f0e07712 100644 --- a/clients/client-gamelift/src/commands/DeregisterComputeCommand.ts +++ b/clients/client-gamelift/src/commands/DeregisterComputeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeregisterComputeInput, DeregisterComputeOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeregisterComputeInput, DeregisterComputeOutput } from "../models/models_0"; import { DeregisterCompute } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DeregisterGameServerCommand.ts b/clients/client-gamelift/src/commands/DeregisterGameServerCommand.ts index 4bd60433e623e..e493e087934c7 100644 --- a/clients/client-gamelift/src/commands/DeregisterGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/DeregisterGameServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DeregisterGameServerInput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DeregisterGameServerInput } from "../models/models_0"; import { DeregisterGameServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeAliasCommand.ts b/clients/client-gamelift/src/commands/DescribeAliasCommand.ts index 26beb442b677e..66c764199a3c1 100644 --- a/clients/client-gamelift/src/commands/DescribeAliasCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeAliasInput, DescribeAliasOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeAliasInput, DescribeAliasOutput } from "../models/models_0"; import { DescribeAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeBuildCommand.ts b/clients/client-gamelift/src/commands/DescribeBuildCommand.ts index 4b1c6b1cf6c3c..ec5d5090ba314 100644 --- a/clients/client-gamelift/src/commands/DescribeBuildCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeBuildCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeBuildInput, DescribeBuildOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeBuildInput, DescribeBuildOutput } from "../models/models_0"; import { DescribeBuild } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeComputeCommand.ts b/clients/client-gamelift/src/commands/DescribeComputeCommand.ts index 7c45176359a43..0f8bc84a89cae 100644 --- a/clients/client-gamelift/src/commands/DescribeComputeCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeComputeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeComputeInput, DescribeComputeOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeComputeInput, DescribeComputeOutput } from "../models/models_0"; import { DescribeCompute } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeContainerFleetCommand.ts b/clients/client-gamelift/src/commands/DescribeContainerFleetCommand.ts index df30b5819c6d6..5dff1e59c2cf8 100644 --- a/clients/client-gamelift/src/commands/DescribeContainerFleetCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeContainerFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeContainerFleetInput, DescribeContainerFleetOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeContainerFleetInput, DescribeContainerFleetOutput } from "../models/models_0"; import { DescribeContainerFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeContainerGroupDefinitionCommand.ts b/clients/client-gamelift/src/commands/DescribeContainerGroupDefinitionCommand.ts index e9442207c3cf8..da46aefb9f400 100644 --- a/clients/client-gamelift/src/commands/DescribeContainerGroupDefinitionCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeContainerGroupDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeContainerGroupDefinitionInput, DescribeContainerGroupDefinitionOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeContainerGroupDefinitionInput, DescribeContainerGroupDefinitionOutput } from "../models/models_0"; import { DescribeContainerGroupDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeEC2InstanceLimitsCommand.ts b/clients/client-gamelift/src/commands/DescribeEC2InstanceLimitsCommand.ts index 2e3b2755a9df3..c35052484e769 100644 --- a/clients/client-gamelift/src/commands/DescribeEC2InstanceLimitsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeEC2InstanceLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeEC2InstanceLimitsInput, DescribeEC2InstanceLimitsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeEC2InstanceLimitsInput, DescribeEC2InstanceLimitsOutput } from "../models/models_0"; import { DescribeEC2InstanceLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeFleetAttributesCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetAttributesCommand.ts index d53e7f506b9c7..ea15befcd1d52 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetAttributesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeFleetAttributesInput, DescribeFleetAttributesOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeFleetAttributesInput, DescribeFleetAttributesOutput } from "../models/models_0"; import { DescribeFleetAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeFleetCapacityCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetCapacityCommand.ts index cb757cd54ee30..14e934bdddae1 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetCapacityCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetCapacityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeFleetCapacityInput, DescribeFleetCapacityOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeFleetCapacityInput, DescribeFleetCapacityOutput } from "../models/models_0"; import { DescribeFleetCapacity } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeFleetDeploymentCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetDeploymentCommand.ts index 39710bc1d76f7..6ade76125a068 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetDeploymentCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeFleetDeploymentInput, DescribeFleetDeploymentOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeFleetDeploymentInput, DescribeFleetDeploymentOutput } from "../models/models_0"; import { DescribeFleetDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeFleetEventsCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetEventsCommand.ts index 9e4c4939b7a2a..09c359d56a183 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetEventsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeFleetEventsInput, DescribeFleetEventsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeFleetEventsInput, DescribeFleetEventsOutput } from "../models/models_0"; import { DescribeFleetEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeFleetLocationAttributesCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetLocationAttributesCommand.ts index 90aa9c1413cdc..171ef23d86300 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetLocationAttributesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetLocationAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeFleetLocationAttributesInput, DescribeFleetLocationAttributesOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeFleetLocationAttributesInput, DescribeFleetLocationAttributesOutput } from "../models/models_0"; import { DescribeFleetLocationAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeFleetLocationCapacityCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetLocationCapacityCommand.ts index 3775d77ab5289..43d41fec55f41 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetLocationCapacityCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetLocationCapacityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeFleetLocationCapacityInput, DescribeFleetLocationCapacityOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeFleetLocationCapacityInput, DescribeFleetLocationCapacityOutput } from "../models/models_0"; import { DescribeFleetLocationCapacity } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeFleetLocationUtilizationCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetLocationUtilizationCommand.ts index f0c411db02ad3..636046d8c2c17 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetLocationUtilizationCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetLocationUtilizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeFleetLocationUtilizationInput, DescribeFleetLocationUtilizationOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeFleetLocationUtilizationInput, DescribeFleetLocationUtilizationOutput } from "../models/models_0"; import { DescribeFleetLocationUtilization } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeFleetPortSettingsCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetPortSettingsCommand.ts index 488def687ee8f..abd547f390c93 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetPortSettingsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetPortSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeFleetPortSettingsInput, DescribeFleetPortSettingsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeFleetPortSettingsInput, DescribeFleetPortSettingsOutput } from "../models/models_0"; import { DescribeFleetPortSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeFleetUtilizationCommand.ts b/clients/client-gamelift/src/commands/DescribeFleetUtilizationCommand.ts index d730c5a207019..3e00f3e84db31 100644 --- a/clients/client-gamelift/src/commands/DescribeFleetUtilizationCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeFleetUtilizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeFleetUtilizationInput, DescribeFleetUtilizationOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeFleetUtilizationInput, DescribeFleetUtilizationOutput } from "../models/models_0"; import { DescribeFleetUtilization } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeGameServerCommand.ts b/clients/client-gamelift/src/commands/DescribeGameServerCommand.ts index 68244a9bba514..ad776b3ef3963 100644 --- a/clients/client-gamelift/src/commands/DescribeGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeGameServerInput, DescribeGameServerOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeGameServerInput, DescribeGameServerOutput } from "../models/models_0"; import { DescribeGameServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/DescribeGameServerGroupCommand.ts index 2fd1af03ac83f..6281491c55c4b 100644 --- a/clients/client-gamelift/src/commands/DescribeGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameServerGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeGameServerGroupInput, DescribeGameServerGroupOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeGameServerGroupInput, DescribeGameServerGroupOutput } from "../models/models_0"; import { DescribeGameServerGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeGameServerInstancesCommand.ts b/clients/client-gamelift/src/commands/DescribeGameServerInstancesCommand.ts index bef90b099a38a..368b543bb7fb6 100644 --- a/clients/client-gamelift/src/commands/DescribeGameServerInstancesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameServerInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeGameServerInstancesInput, DescribeGameServerInstancesOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeGameServerInstancesInput, DescribeGameServerInstancesOutput } from "../models/models_0"; import { DescribeGameServerInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeGameSessionDetailsCommand.ts b/clients/client-gamelift/src/commands/DescribeGameSessionDetailsCommand.ts index dc6d3e1c05656..e210fdcc7d40d 100644 --- a/clients/client-gamelift/src/commands/DescribeGameSessionDetailsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameSessionDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeGameSessionDetailsInput, DescribeGameSessionDetailsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeGameSessionDetailsInput, DescribeGameSessionDetailsOutput } from "../models/models_0"; import { DescribeGameSessionDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeGameSessionPlacementCommand.ts b/clients/client-gamelift/src/commands/DescribeGameSessionPlacementCommand.ts index ff4ccba0d1188..432724d8745bd 100644 --- a/clients/client-gamelift/src/commands/DescribeGameSessionPlacementCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameSessionPlacementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeGameSessionPlacementInput, DescribeGameSessionPlacementOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeGameSessionPlacementInput, DescribeGameSessionPlacementOutput } from "../models/models_0"; import { DescribeGameSessionPlacement } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeGameSessionQueuesCommand.ts b/clients/client-gamelift/src/commands/DescribeGameSessionQueuesCommand.ts index 18bd485173fe3..3cbf1aab4f4e6 100644 --- a/clients/client-gamelift/src/commands/DescribeGameSessionQueuesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameSessionQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeGameSessionQueuesInput, DescribeGameSessionQueuesOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeGameSessionQueuesInput, DescribeGameSessionQueuesOutput } from "../models/models_0"; import { DescribeGameSessionQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeGameSessionsCommand.ts b/clients/client-gamelift/src/commands/DescribeGameSessionsCommand.ts index 69116002be2fd..62c247f61f4c3 100644 --- a/clients/client-gamelift/src/commands/DescribeGameSessionsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeGameSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeGameSessionsInput, DescribeGameSessionsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeGameSessionsInput, DescribeGameSessionsOutput } from "../models/models_0"; import { DescribeGameSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeInstancesCommand.ts b/clients/client-gamelift/src/commands/DescribeInstancesCommand.ts index f58d9d6f8e700..4100c4a5ee998 100644 --- a/clients/client-gamelift/src/commands/DescribeInstancesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeInstancesInput, DescribeInstancesOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeInstancesInput, DescribeInstancesOutput } from "../models/models_0"; import { DescribeInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeMatchmakingCommand.ts b/clients/client-gamelift/src/commands/DescribeMatchmakingCommand.ts index c46b5ae7fdf3a..84c3669921a36 100644 --- a/clients/client-gamelift/src/commands/DescribeMatchmakingCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeMatchmakingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeMatchmakingInput, DescribeMatchmakingOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeMatchmakingInput, DescribeMatchmakingOutput } from "../models/models_0"; import { DescribeMatchmaking } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeMatchmakingConfigurationsCommand.ts b/clients/client-gamelift/src/commands/DescribeMatchmakingConfigurationsCommand.ts index 51de3420e1b07..2352a40f6b700 100644 --- a/clients/client-gamelift/src/commands/DescribeMatchmakingConfigurationsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeMatchmakingConfigurationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeMatchmakingConfigurationsInput, DescribeMatchmakingConfigurationsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { + DescribeMatchmakingConfigurationsInput, + DescribeMatchmakingConfigurationsOutput, +} from "../models/models_0"; import { DescribeMatchmakingConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeMatchmakingRuleSetsCommand.ts b/clients/client-gamelift/src/commands/DescribeMatchmakingRuleSetsCommand.ts index b92af55ce6dbf..bbd3c43b344bd 100644 --- a/clients/client-gamelift/src/commands/DescribeMatchmakingRuleSetsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeMatchmakingRuleSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeMatchmakingRuleSetsInput, DescribeMatchmakingRuleSetsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeMatchmakingRuleSetsInput, DescribeMatchmakingRuleSetsOutput } from "../models/models_0"; import { DescribeMatchmakingRuleSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribePlayerSessionsCommand.ts b/clients/client-gamelift/src/commands/DescribePlayerSessionsCommand.ts index f12ce69da6df0..e120ac4b888e5 100644 --- a/clients/client-gamelift/src/commands/DescribePlayerSessionsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribePlayerSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribePlayerSessionsInput, DescribePlayerSessionsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribePlayerSessionsInput, DescribePlayerSessionsOutput } from "../models/models_0"; import { DescribePlayerSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeRuntimeConfigurationCommand.ts b/clients/client-gamelift/src/commands/DescribeRuntimeConfigurationCommand.ts index 4b9748b9a5e16..ebe84ae3ebf6b 100644 --- a/clients/client-gamelift/src/commands/DescribeRuntimeConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeRuntimeConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeRuntimeConfigurationInput, DescribeRuntimeConfigurationOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeRuntimeConfigurationInput, DescribeRuntimeConfigurationOutput } from "../models/models_0"; import { DescribeRuntimeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeScalingPoliciesCommand.ts b/clients/client-gamelift/src/commands/DescribeScalingPoliciesCommand.ts index 1425ce6c7a1f9..40d43d3004b60 100644 --- a/clients/client-gamelift/src/commands/DescribeScalingPoliciesCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeScalingPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeScalingPoliciesInput, DescribeScalingPoliciesOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeScalingPoliciesInput, DescribeScalingPoliciesOutput } from "../models/models_0"; import { DescribeScalingPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeScriptCommand.ts b/clients/client-gamelift/src/commands/DescribeScriptCommand.ts index e7133d7fe19ba..b974307d79629 100644 --- a/clients/client-gamelift/src/commands/DescribeScriptCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeScriptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeScriptInput, DescribeScriptOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeScriptInput, DescribeScriptOutput } from "../models/models_0"; import { DescribeScript } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeVpcPeeringAuthorizationsCommand.ts b/clients/client-gamelift/src/commands/DescribeVpcPeeringAuthorizationsCommand.ts index d2bcec999df1e..8f7e1e8504f56 100644 --- a/clients/client-gamelift/src/commands/DescribeVpcPeeringAuthorizationsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeVpcPeeringAuthorizationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeVpcPeeringAuthorizationsInput, DescribeVpcPeeringAuthorizationsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeVpcPeeringAuthorizationsInput, DescribeVpcPeeringAuthorizationsOutput } from "../models/models_0"; import { DescribeVpcPeeringAuthorizations } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/DescribeVpcPeeringConnectionsCommand.ts b/clients/client-gamelift/src/commands/DescribeVpcPeeringConnectionsCommand.ts index 1e425403641fa..f5c9bfd576dab 100644 --- a/clients/client-gamelift/src/commands/DescribeVpcPeeringConnectionsCommand.ts +++ b/clients/client-gamelift/src/commands/DescribeVpcPeeringConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { DescribeVpcPeeringConnectionsInput, DescribeVpcPeeringConnectionsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { DescribeVpcPeeringConnectionsInput, DescribeVpcPeeringConnectionsOutput } from "../models/models_0"; import { DescribeVpcPeeringConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/GetComputeAccessCommand.ts b/clients/client-gamelift/src/commands/GetComputeAccessCommand.ts index e76b4a1c15480..9f0fe5f4000c9 100644 --- a/clients/client-gamelift/src/commands/GetComputeAccessCommand.ts +++ b/clients/client-gamelift/src/commands/GetComputeAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { GetComputeAccessInput, GetComputeAccessOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { GetComputeAccessInput, GetComputeAccessOutput } from "../models/models_0"; import { GetComputeAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/GetComputeAuthTokenCommand.ts b/clients/client-gamelift/src/commands/GetComputeAuthTokenCommand.ts index 55bfc8a9771e7..2c8d1c09acc3a 100644 --- a/clients/client-gamelift/src/commands/GetComputeAuthTokenCommand.ts +++ b/clients/client-gamelift/src/commands/GetComputeAuthTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { GetComputeAuthTokenInput, GetComputeAuthTokenOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { GetComputeAuthTokenInput, GetComputeAuthTokenOutput } from "../models/models_0"; import { GetComputeAuthToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/GetGameSessionLogUrlCommand.ts b/clients/client-gamelift/src/commands/GetGameSessionLogUrlCommand.ts index c9b325fc0dd92..d70eac6b6ec25 100644 --- a/clients/client-gamelift/src/commands/GetGameSessionLogUrlCommand.ts +++ b/clients/client-gamelift/src/commands/GetGameSessionLogUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { GetGameSessionLogUrlInput, GetGameSessionLogUrlOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { GetGameSessionLogUrlInput, GetGameSessionLogUrlOutput } from "../models/models_0"; import { GetGameSessionLogUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/GetInstanceAccessCommand.ts b/clients/client-gamelift/src/commands/GetInstanceAccessCommand.ts index 793e9f3a43254..a1db9b9ba69c9 100644 --- a/clients/client-gamelift/src/commands/GetInstanceAccessCommand.ts +++ b/clients/client-gamelift/src/commands/GetInstanceAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { GetInstanceAccessInput, GetInstanceAccessOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { GetInstanceAccessInput, GetInstanceAccessOutput } from "../models/models_0"; import { GetInstanceAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListAliasesCommand.ts b/clients/client-gamelift/src/commands/ListAliasesCommand.ts index 65fc8dc44c1a6..943eb5a53b047 100644 --- a/clients/client-gamelift/src/commands/ListAliasesCommand.ts +++ b/clients/client-gamelift/src/commands/ListAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListAliasesInput, ListAliasesOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListAliasesInput, ListAliasesOutput } from "../models/models_0"; import { ListAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListBuildsCommand.ts b/clients/client-gamelift/src/commands/ListBuildsCommand.ts index 3595dfb3aa550..e911acc5d9bf1 100644 --- a/clients/client-gamelift/src/commands/ListBuildsCommand.ts +++ b/clients/client-gamelift/src/commands/ListBuildsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListBuildsInput, ListBuildsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListBuildsInput, ListBuildsOutput } from "../models/models_0"; import { ListBuilds } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListComputeCommand.ts b/clients/client-gamelift/src/commands/ListComputeCommand.ts index 228d3bcf1ed6c..600efbe4a4ee4 100644 --- a/clients/client-gamelift/src/commands/ListComputeCommand.ts +++ b/clients/client-gamelift/src/commands/ListComputeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListComputeInput, ListComputeOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListComputeInput, ListComputeOutput } from "../models/models_0"; import { ListCompute } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListContainerFleetsCommand.ts b/clients/client-gamelift/src/commands/ListContainerFleetsCommand.ts index a66446e2d10e3..25b0bb08df9d4 100644 --- a/clients/client-gamelift/src/commands/ListContainerFleetsCommand.ts +++ b/clients/client-gamelift/src/commands/ListContainerFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListContainerFleetsInput, ListContainerFleetsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListContainerFleetsInput, ListContainerFleetsOutput } from "../models/models_0"; import { ListContainerFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListContainerGroupDefinitionVersionsCommand.ts b/clients/client-gamelift/src/commands/ListContainerGroupDefinitionVersionsCommand.ts index 2a8c785977d12..022470ce8b2d8 100644 --- a/clients/client-gamelift/src/commands/ListContainerGroupDefinitionVersionsCommand.ts +++ b/clients/client-gamelift/src/commands/ListContainerGroupDefinitionVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListContainerGroupDefinitionVersionsInput, ListContainerGroupDefinitionVersionsOutput, } from "../models/models_0"; diff --git a/clients/client-gamelift/src/commands/ListContainerGroupDefinitionsCommand.ts b/clients/client-gamelift/src/commands/ListContainerGroupDefinitionsCommand.ts index 1f680b96e43cd..0f3ea23b2f985 100644 --- a/clients/client-gamelift/src/commands/ListContainerGroupDefinitionsCommand.ts +++ b/clients/client-gamelift/src/commands/ListContainerGroupDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListContainerGroupDefinitionsInput, ListContainerGroupDefinitionsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListContainerGroupDefinitionsInput, ListContainerGroupDefinitionsOutput } from "../models/models_0"; import { ListContainerGroupDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListFleetDeploymentsCommand.ts b/clients/client-gamelift/src/commands/ListFleetDeploymentsCommand.ts index c90738714dbc8..15b186e925a51 100644 --- a/clients/client-gamelift/src/commands/ListFleetDeploymentsCommand.ts +++ b/clients/client-gamelift/src/commands/ListFleetDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListFleetDeploymentsInput, ListFleetDeploymentsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListFleetDeploymentsInput, ListFleetDeploymentsOutput } from "../models/models_0"; import { ListFleetDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListFleetsCommand.ts b/clients/client-gamelift/src/commands/ListFleetsCommand.ts index 54b5e95fd6d93..c2a5750c4bdd1 100644 --- a/clients/client-gamelift/src/commands/ListFleetsCommand.ts +++ b/clients/client-gamelift/src/commands/ListFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListFleetsInput, ListFleetsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListFleetsInput, ListFleetsOutput } from "../models/models_0"; import { ListFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListGameServerGroupsCommand.ts b/clients/client-gamelift/src/commands/ListGameServerGroupsCommand.ts index e01f6bdaccb09..71c98caf3cf14 100644 --- a/clients/client-gamelift/src/commands/ListGameServerGroupsCommand.ts +++ b/clients/client-gamelift/src/commands/ListGameServerGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListGameServerGroupsInput, ListGameServerGroupsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListGameServerGroupsInput, ListGameServerGroupsOutput } from "../models/models_0"; import { ListGameServerGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListGameServersCommand.ts b/clients/client-gamelift/src/commands/ListGameServersCommand.ts index 10f06d493efb9..493d3c8ec981d 100644 --- a/clients/client-gamelift/src/commands/ListGameServersCommand.ts +++ b/clients/client-gamelift/src/commands/ListGameServersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListGameServersInput, ListGameServersOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListGameServersInput, ListGameServersOutput } from "../models/models_0"; import { ListGameServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListLocationsCommand.ts b/clients/client-gamelift/src/commands/ListLocationsCommand.ts index 2e841e38757a3..f588204ec18c1 100644 --- a/clients/client-gamelift/src/commands/ListLocationsCommand.ts +++ b/clients/client-gamelift/src/commands/ListLocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListLocationsInput, ListLocationsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListLocationsInput, ListLocationsOutput } from "../models/models_0"; import { ListLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListScriptsCommand.ts b/clients/client-gamelift/src/commands/ListScriptsCommand.ts index e9cc63e7d16a9..1332845558f60 100644 --- a/clients/client-gamelift/src/commands/ListScriptsCommand.ts +++ b/clients/client-gamelift/src/commands/ListScriptsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListScriptsInput, ListScriptsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListScriptsInput, ListScriptsOutput } from "../models/models_0"; import { ListScripts } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ListTagsForResourceCommand.ts b/clients/client-gamelift/src/commands/ListTagsForResourceCommand.ts index 3e2bf24aeb9ea..36efc38d289ac 100644 --- a/clients/client-gamelift/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-gamelift/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/PutScalingPolicyCommand.ts b/clients/client-gamelift/src/commands/PutScalingPolicyCommand.ts index e79d979d69434..614e5aa35fece 100644 --- a/clients/client-gamelift/src/commands/PutScalingPolicyCommand.ts +++ b/clients/client-gamelift/src/commands/PutScalingPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { PutScalingPolicyInput, PutScalingPolicyOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { PutScalingPolicyInput, PutScalingPolicyOutput } from "../models/models_0"; import { PutScalingPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/RegisterComputeCommand.ts b/clients/client-gamelift/src/commands/RegisterComputeCommand.ts index 29146676ccb60..bfe257df50ddd 100644 --- a/clients/client-gamelift/src/commands/RegisterComputeCommand.ts +++ b/clients/client-gamelift/src/commands/RegisterComputeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { RegisterComputeInput, RegisterComputeOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { RegisterComputeInput, RegisterComputeOutput } from "../models/models_0"; import { RegisterCompute } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/RegisterGameServerCommand.ts b/clients/client-gamelift/src/commands/RegisterGameServerCommand.ts index 962dbebac9089..7bf2c8f729c4e 100644 --- a/clients/client-gamelift/src/commands/RegisterGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/RegisterGameServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { RegisterGameServerInput, RegisterGameServerOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { RegisterGameServerInput, RegisterGameServerOutput } from "../models/models_0"; import { RegisterGameServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/RequestUploadCredentialsCommand.ts b/clients/client-gamelift/src/commands/RequestUploadCredentialsCommand.ts index c1c2cb9ae7d94..0cdcd01b95fac 100644 --- a/clients/client-gamelift/src/commands/RequestUploadCredentialsCommand.ts +++ b/clients/client-gamelift/src/commands/RequestUploadCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { RequestUploadCredentialsInput, RequestUploadCredentialsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { RequestUploadCredentialsInput, RequestUploadCredentialsOutput } from "../models/models_0"; import { RequestUploadCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ResolveAliasCommand.ts b/clients/client-gamelift/src/commands/ResolveAliasCommand.ts index 30f2cdc78eafd..75134407d8ed0 100644 --- a/clients/client-gamelift/src/commands/ResolveAliasCommand.ts +++ b/clients/client-gamelift/src/commands/ResolveAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ResolveAliasInput, ResolveAliasOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ResolveAliasInput, ResolveAliasOutput } from "../models/models_0"; import { ResolveAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ResumeGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/ResumeGameServerGroupCommand.ts index e40ea66eb9edd..e7d63b16227c5 100644 --- a/clients/client-gamelift/src/commands/ResumeGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/ResumeGameServerGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ResumeGameServerGroupInput, ResumeGameServerGroupOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ResumeGameServerGroupInput, ResumeGameServerGroupOutput } from "../models/models_0"; import { ResumeGameServerGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/SearchGameSessionsCommand.ts b/clients/client-gamelift/src/commands/SearchGameSessionsCommand.ts index 00ce84f381b19..816f21d61e687 100644 --- a/clients/client-gamelift/src/commands/SearchGameSessionsCommand.ts +++ b/clients/client-gamelift/src/commands/SearchGameSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { SearchGameSessionsInput, SearchGameSessionsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { SearchGameSessionsInput, SearchGameSessionsOutput } from "../models/models_0"; import { SearchGameSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/StartFleetActionsCommand.ts b/clients/client-gamelift/src/commands/StartFleetActionsCommand.ts index 0e9e3208be041..9ff7adb4f832f 100644 --- a/clients/client-gamelift/src/commands/StartFleetActionsCommand.ts +++ b/clients/client-gamelift/src/commands/StartFleetActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { StartFleetActionsInput, StartFleetActionsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { StartFleetActionsInput, StartFleetActionsOutput } from "../models/models_0"; import { StartFleetActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/StartGameSessionPlacementCommand.ts b/clients/client-gamelift/src/commands/StartGameSessionPlacementCommand.ts index 463ab750b2a35..943294a5a7080 100644 --- a/clients/client-gamelift/src/commands/StartGameSessionPlacementCommand.ts +++ b/clients/client-gamelift/src/commands/StartGameSessionPlacementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { StartGameSessionPlacementInput, StartGameSessionPlacementOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { StartGameSessionPlacementInput, StartGameSessionPlacementOutput } from "../models/models_0"; import { StartGameSessionPlacement } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/StartMatchBackfillCommand.ts b/clients/client-gamelift/src/commands/StartMatchBackfillCommand.ts index 745d2b52d86d7..c7a95ea122b7b 100644 --- a/clients/client-gamelift/src/commands/StartMatchBackfillCommand.ts +++ b/clients/client-gamelift/src/commands/StartMatchBackfillCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { StartMatchBackfillInput, StartMatchBackfillOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { StartMatchBackfillInput, StartMatchBackfillOutput } from "../models/models_0"; import { StartMatchBackfill } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/StartMatchmakingCommand.ts b/clients/client-gamelift/src/commands/StartMatchmakingCommand.ts index 390f2de98fe07..d79d79be7aeff 100644 --- a/clients/client-gamelift/src/commands/StartMatchmakingCommand.ts +++ b/clients/client-gamelift/src/commands/StartMatchmakingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { StartMatchmakingInput, StartMatchmakingOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { StartMatchmakingInput, StartMatchmakingOutput } from "../models/models_0"; import { StartMatchmaking } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/StopFleetActionsCommand.ts b/clients/client-gamelift/src/commands/StopFleetActionsCommand.ts index 03ae8c1a8c9e9..3f6ddd2449e25 100644 --- a/clients/client-gamelift/src/commands/StopFleetActionsCommand.ts +++ b/clients/client-gamelift/src/commands/StopFleetActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { StopFleetActionsInput, StopFleetActionsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { StopFleetActionsInput, StopFleetActionsOutput } from "../models/models_0"; import { StopFleetActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/StopGameSessionPlacementCommand.ts b/clients/client-gamelift/src/commands/StopGameSessionPlacementCommand.ts index 061bfb6d6d315..3c06f67248af7 100644 --- a/clients/client-gamelift/src/commands/StopGameSessionPlacementCommand.ts +++ b/clients/client-gamelift/src/commands/StopGameSessionPlacementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { StopGameSessionPlacementInput, StopGameSessionPlacementOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { StopGameSessionPlacementInput, StopGameSessionPlacementOutput } from "../models/models_0"; import { StopGameSessionPlacement } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/StopMatchmakingCommand.ts b/clients/client-gamelift/src/commands/StopMatchmakingCommand.ts index 205e9e3091d32..9b64a909ab47a 100644 --- a/clients/client-gamelift/src/commands/StopMatchmakingCommand.ts +++ b/clients/client-gamelift/src/commands/StopMatchmakingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { StopMatchmakingInput, StopMatchmakingOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { StopMatchmakingInput, StopMatchmakingOutput } from "../models/models_0"; import { StopMatchmaking } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/SuspendGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/SuspendGameServerGroupCommand.ts index 25218f17fe425..ea292273edb3e 100644 --- a/clients/client-gamelift/src/commands/SuspendGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/SuspendGameServerGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { SuspendGameServerGroupInput, SuspendGameServerGroupOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { SuspendGameServerGroupInput, SuspendGameServerGroupOutput } from "../models/models_0"; import { SuspendGameServerGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/TagResourceCommand.ts b/clients/client-gamelift/src/commands/TagResourceCommand.ts index ab3f2e91e5af2..2ce29086ddc2d 100644 --- a/clients/client-gamelift/src/commands/TagResourceCommand.ts +++ b/clients/client-gamelift/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/TerminateGameSessionCommand.ts b/clients/client-gamelift/src/commands/TerminateGameSessionCommand.ts index 54875092bf7db..5e9494104ad79 100644 --- a/clients/client-gamelift/src/commands/TerminateGameSessionCommand.ts +++ b/clients/client-gamelift/src/commands/TerminateGameSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { TerminateGameSessionInput, TerminateGameSessionOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { TerminateGameSessionInput, TerminateGameSessionOutput } from "../models/models_0"; import { TerminateGameSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UntagResourceCommand.ts b/clients/client-gamelift/src/commands/UntagResourceCommand.ts index 6498f6689f066..eaea555b0767f 100644 --- a/clients/client-gamelift/src/commands/UntagResourceCommand.ts +++ b/clients/client-gamelift/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateAliasCommand.ts b/clients/client-gamelift/src/commands/UpdateAliasCommand.ts index 0f333db111ca7..159989c5e0d73 100644 --- a/clients/client-gamelift/src/commands/UpdateAliasCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateAliasInput, UpdateAliasOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateAliasInput, UpdateAliasOutput } from "../models/models_0"; import { UpdateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateBuildCommand.ts b/clients/client-gamelift/src/commands/UpdateBuildCommand.ts index 9a36afc58a1ef..9aa0b331fad79 100644 --- a/clients/client-gamelift/src/commands/UpdateBuildCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateBuildCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateBuildInput, UpdateBuildOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateBuildInput, UpdateBuildOutput } from "../models/models_0"; import { UpdateBuild } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateContainerFleetCommand.ts b/clients/client-gamelift/src/commands/UpdateContainerFleetCommand.ts index efab8cde1ceaf..df27174ae8962 100644 --- a/clients/client-gamelift/src/commands/UpdateContainerFleetCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateContainerFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateContainerFleetInput, UpdateContainerFleetOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateContainerFleetInput, UpdateContainerFleetOutput } from "../models/models_0"; import { UpdateContainerFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateContainerGroupDefinitionCommand.ts b/clients/client-gamelift/src/commands/UpdateContainerGroupDefinitionCommand.ts index 8775d23d7bc81..6bec4006fea80 100644 --- a/clients/client-gamelift/src/commands/UpdateContainerGroupDefinitionCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateContainerGroupDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateContainerGroupDefinitionInput, UpdateContainerGroupDefinitionOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateContainerGroupDefinitionInput, UpdateContainerGroupDefinitionOutput } from "../models/models_0"; import { UpdateContainerGroupDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateFleetAttributesCommand.ts b/clients/client-gamelift/src/commands/UpdateFleetAttributesCommand.ts index 7af2da37e5435..563fecf41be01 100644 --- a/clients/client-gamelift/src/commands/UpdateFleetAttributesCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateFleetAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateFleetAttributesInput, UpdateFleetAttributesOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateFleetAttributesInput, UpdateFleetAttributesOutput } from "../models/models_0"; import { UpdateFleetAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateFleetCapacityCommand.ts b/clients/client-gamelift/src/commands/UpdateFleetCapacityCommand.ts index d0d7ca627f9fb..05053958ee128 100644 --- a/clients/client-gamelift/src/commands/UpdateFleetCapacityCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateFleetCapacityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateFleetCapacityInput, UpdateFleetCapacityOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateFleetCapacityInput, UpdateFleetCapacityOutput } from "../models/models_0"; import { UpdateFleetCapacity } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateFleetPortSettingsCommand.ts b/clients/client-gamelift/src/commands/UpdateFleetPortSettingsCommand.ts index 7fd8c9dea3f5b..ee4f28a94a362 100644 --- a/clients/client-gamelift/src/commands/UpdateFleetPortSettingsCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateFleetPortSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateFleetPortSettingsInput, UpdateFleetPortSettingsOutput } from "../models/models_0"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateFleetPortSettingsInput, UpdateFleetPortSettingsOutput } from "../models/models_0"; import { UpdateFleetPortSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateGameServerCommand.ts b/clients/client-gamelift/src/commands/UpdateGameServerCommand.ts index 15cf590c03a51..6766c76f05400 100644 --- a/clients/client-gamelift/src/commands/UpdateGameServerCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateGameServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateGameServerInput, UpdateGameServerOutput } from "../models/models_1"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateGameServerInput, UpdateGameServerOutput } from "../models/models_1"; import { UpdateGameServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateGameServerGroupCommand.ts b/clients/client-gamelift/src/commands/UpdateGameServerGroupCommand.ts index 9eca574ff3b4f..20a2372eb7a14 100644 --- a/clients/client-gamelift/src/commands/UpdateGameServerGroupCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateGameServerGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateGameServerGroupInput, UpdateGameServerGroupOutput } from "../models/models_1"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateGameServerGroupInput, UpdateGameServerGroupOutput } from "../models/models_1"; import { UpdateGameServerGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateGameSessionCommand.ts b/clients/client-gamelift/src/commands/UpdateGameSessionCommand.ts index b8a1ef9e007f3..c53f1d23df706 100644 --- a/clients/client-gamelift/src/commands/UpdateGameSessionCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateGameSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateGameSessionInput, UpdateGameSessionOutput } from "../models/models_1"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateGameSessionInput, UpdateGameSessionOutput } from "../models/models_1"; import { UpdateGameSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateGameSessionQueueCommand.ts b/clients/client-gamelift/src/commands/UpdateGameSessionQueueCommand.ts index 42d10dac855ee..1bb92cedf123e 100644 --- a/clients/client-gamelift/src/commands/UpdateGameSessionQueueCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateGameSessionQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateGameSessionQueueInput, UpdateGameSessionQueueOutput } from "../models/models_1"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateGameSessionQueueInput, UpdateGameSessionQueueOutput } from "../models/models_1"; import { UpdateGameSessionQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateMatchmakingConfigurationCommand.ts b/clients/client-gamelift/src/commands/UpdateMatchmakingConfigurationCommand.ts index a1f612701e9d7..7f8eea42d81cf 100644 --- a/clients/client-gamelift/src/commands/UpdateMatchmakingConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateMatchmakingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateMatchmakingConfigurationInput, UpdateMatchmakingConfigurationOutput } from "../models/models_1"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateMatchmakingConfigurationInput, UpdateMatchmakingConfigurationOutput } from "../models/models_1"; import { UpdateMatchmakingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateRuntimeConfigurationCommand.ts b/clients/client-gamelift/src/commands/UpdateRuntimeConfigurationCommand.ts index 9a41438f1e924..5e2557de92e4e 100644 --- a/clients/client-gamelift/src/commands/UpdateRuntimeConfigurationCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateRuntimeConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateRuntimeConfigurationInput, UpdateRuntimeConfigurationOutput } from "../models/models_1"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateRuntimeConfigurationInput, UpdateRuntimeConfigurationOutput } from "../models/models_1"; import { UpdateRuntimeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/UpdateScriptCommand.ts b/clients/client-gamelift/src/commands/UpdateScriptCommand.ts index ed3ed127fdf9d..8949cf8e2ffd0 100644 --- a/clients/client-gamelift/src/commands/UpdateScriptCommand.ts +++ b/clients/client-gamelift/src/commands/UpdateScriptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { UpdateScriptInput, UpdateScriptOutput } from "../models/models_1"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { UpdateScriptInput, UpdateScriptOutput } from "../models/models_1"; import { UpdateScript } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/commands/ValidateMatchmakingRuleSetCommand.ts b/clients/client-gamelift/src/commands/ValidateMatchmakingRuleSetCommand.ts index de6b6abd21ae5..d267cd06be324 100644 --- a/clients/client-gamelift/src/commands/ValidateMatchmakingRuleSetCommand.ts +++ b/clients/client-gamelift/src/commands/ValidateMatchmakingRuleSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; -import { ValidateMatchmakingRuleSetInput, ValidateMatchmakingRuleSetOutput } from "../models/models_1"; +import type { GameLiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftClient"; +import type { ValidateMatchmakingRuleSetInput, ValidateMatchmakingRuleSetOutput } from "../models/models_1"; import { ValidateMatchmakingRuleSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-gamelift/src/endpoint/EndpointParameters.ts b/clients/client-gamelift/src/endpoint/EndpointParameters.ts index 125c5c3fe2a78..79bc70287ad0d 100644 --- a/clients/client-gamelift/src/endpoint/EndpointParameters.ts +++ b/clients/client-gamelift/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-gamelift/src/endpoint/endpointResolver.ts b/clients/client-gamelift/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-gamelift/src/endpoint/endpointResolver.ts +++ b/clients/client-gamelift/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-gamelift/src/extensionConfiguration.ts b/clients/client-gamelift/src/extensionConfiguration.ts index cfdeb310ce94b..6838249f95c01 100644 --- a/clients/client-gamelift/src/extensionConfiguration.ts +++ b/clients/client-gamelift/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-gamelift/src/models/GameLiftServiceException.ts b/clients/client-gamelift/src/models/GameLiftServiceException.ts index a9fb12fd57e39..07366caff2c17 100644 --- a/clients/client-gamelift/src/models/GameLiftServiceException.ts +++ b/clients/client-gamelift/src/models/GameLiftServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-gamelift/src/models/errors.ts b/clients/client-gamelift/src/models/errors.ts index 85aed507773d4..4a759d985b1d3 100644 --- a/clients/client-gamelift/src/models/errors.ts +++ b/clients/client-gamelift/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { GameLiftServiceException as __BaseException } from "./GameLiftServiceException"; diff --git a/clients/client-gamelift/src/pagination/DescribeFleetAttributesPaginator.ts b/clients/client-gamelift/src/pagination/DescribeFleetAttributesPaginator.ts index 02bfcdb6c7600..12a06aae8b936 100644 --- a/clients/client-gamelift/src/pagination/DescribeFleetAttributesPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeFleetAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetAttributesCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeFleetCapacityPaginator.ts b/clients/client-gamelift/src/pagination/DescribeFleetCapacityPaginator.ts index 0dbbac7fe209d..de1302825a928 100644 --- a/clients/client-gamelift/src/pagination/DescribeFleetCapacityPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeFleetCapacityPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetCapacityCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeFleetEventsPaginator.ts b/clients/client-gamelift/src/pagination/DescribeFleetEventsPaginator.ts index 234c4bd0b3add..e85987e67da78 100644 --- a/clients/client-gamelift/src/pagination/DescribeFleetEventsPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeFleetEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetEventsCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeFleetLocationAttributesPaginator.ts b/clients/client-gamelift/src/pagination/DescribeFleetLocationAttributesPaginator.ts index 54410b53944fe..e8beaab809d06 100644 --- a/clients/client-gamelift/src/pagination/DescribeFleetLocationAttributesPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeFleetLocationAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetLocationAttributesCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeFleetUtilizationPaginator.ts b/clients/client-gamelift/src/pagination/DescribeFleetUtilizationPaginator.ts index ec404c442c1b7..1d06fbea98842 100644 --- a/clients/client-gamelift/src/pagination/DescribeFleetUtilizationPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeFleetUtilizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFleetUtilizationCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeGameServerInstancesPaginator.ts b/clients/client-gamelift/src/pagination/DescribeGameServerInstancesPaginator.ts index da06653ce4e73..b55f0851898cb 100644 --- a/clients/client-gamelift/src/pagination/DescribeGameServerInstancesPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeGameServerInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGameServerInstancesCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeGameSessionDetailsPaginator.ts b/clients/client-gamelift/src/pagination/DescribeGameSessionDetailsPaginator.ts index 79084ded2f441..4e4531ddef2a9 100644 --- a/clients/client-gamelift/src/pagination/DescribeGameSessionDetailsPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeGameSessionDetailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGameSessionDetailsCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeGameSessionQueuesPaginator.ts b/clients/client-gamelift/src/pagination/DescribeGameSessionQueuesPaginator.ts index 97441781759b9..5ddb67897f747 100644 --- a/clients/client-gamelift/src/pagination/DescribeGameSessionQueuesPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeGameSessionQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGameSessionQueuesCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeGameSessionsPaginator.ts b/clients/client-gamelift/src/pagination/DescribeGameSessionsPaginator.ts index 851e6c7e5a4b5..ca23c138f01b8 100644 --- a/clients/client-gamelift/src/pagination/DescribeGameSessionsPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeGameSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGameSessionsCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeInstancesPaginator.ts b/clients/client-gamelift/src/pagination/DescribeInstancesPaginator.ts index 5fcdad8316c03..6cabdd97a4085 100644 --- a/clients/client-gamelift/src/pagination/DescribeInstancesPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstancesCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeMatchmakingConfigurationsPaginator.ts b/clients/client-gamelift/src/pagination/DescribeMatchmakingConfigurationsPaginator.ts index 9a58355d3cb93..1bbd7cbaf0fa5 100644 --- a/clients/client-gamelift/src/pagination/DescribeMatchmakingConfigurationsPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeMatchmakingConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMatchmakingConfigurationsCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeMatchmakingRuleSetsPaginator.ts b/clients/client-gamelift/src/pagination/DescribeMatchmakingRuleSetsPaginator.ts index 10fabd0333678..d4464983eff6f 100644 --- a/clients/client-gamelift/src/pagination/DescribeMatchmakingRuleSetsPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeMatchmakingRuleSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMatchmakingRuleSetsCommand, diff --git a/clients/client-gamelift/src/pagination/DescribePlayerSessionsPaginator.ts b/clients/client-gamelift/src/pagination/DescribePlayerSessionsPaginator.ts index 9ff20f3b0e238..e5f4ec6dca2fc 100644 --- a/clients/client-gamelift/src/pagination/DescribePlayerSessionsPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribePlayerSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePlayerSessionsCommand, diff --git a/clients/client-gamelift/src/pagination/DescribeScalingPoliciesPaginator.ts b/clients/client-gamelift/src/pagination/DescribeScalingPoliciesPaginator.ts index b3a453ca02574..cb08f724f2b63 100644 --- a/clients/client-gamelift/src/pagination/DescribeScalingPoliciesPaginator.ts +++ b/clients/client-gamelift/src/pagination/DescribeScalingPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeScalingPoliciesCommand, diff --git a/clients/client-gamelift/src/pagination/Interfaces.ts b/clients/client-gamelift/src/pagination/Interfaces.ts index 5109b72b2e03b..1b739989962ef 100644 --- a/clients/client-gamelift/src/pagination/Interfaces.ts +++ b/clients/client-gamelift/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { GameLiftClient } from "../GameLiftClient"; diff --git a/clients/client-gamelift/src/pagination/ListAliasesPaginator.ts b/clients/client-gamelift/src/pagination/ListAliasesPaginator.ts index 03af6e94f7ade..e15722004045a 100644 --- a/clients/client-gamelift/src/pagination/ListAliasesPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAliasesCommand, ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand"; import { GameLiftClient } from "../GameLiftClient"; diff --git a/clients/client-gamelift/src/pagination/ListBuildsPaginator.ts b/clients/client-gamelift/src/pagination/ListBuildsPaginator.ts index 2039443266ae2..1abce1c5eef3c 100644 --- a/clients/client-gamelift/src/pagination/ListBuildsPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListBuildsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBuildsCommand, ListBuildsCommandInput, ListBuildsCommandOutput } from "../commands/ListBuildsCommand"; import { GameLiftClient } from "../GameLiftClient"; diff --git a/clients/client-gamelift/src/pagination/ListComputePaginator.ts b/clients/client-gamelift/src/pagination/ListComputePaginator.ts index ed1973d00706c..028dda1f73029 100644 --- a/clients/client-gamelift/src/pagination/ListComputePaginator.ts +++ b/clients/client-gamelift/src/pagination/ListComputePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComputeCommand, ListComputeCommandInput, ListComputeCommandOutput } from "../commands/ListComputeCommand"; import { GameLiftClient } from "../GameLiftClient"; diff --git a/clients/client-gamelift/src/pagination/ListContainerFleetsPaginator.ts b/clients/client-gamelift/src/pagination/ListContainerFleetsPaginator.ts index 9ed0de099d0d4..6808603134488 100644 --- a/clients/client-gamelift/src/pagination/ListContainerFleetsPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListContainerFleetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContainerFleetsCommand, diff --git a/clients/client-gamelift/src/pagination/ListContainerGroupDefinitionVersionsPaginator.ts b/clients/client-gamelift/src/pagination/ListContainerGroupDefinitionVersionsPaginator.ts index 6aab76357410e..364a0d4a70fe2 100644 --- a/clients/client-gamelift/src/pagination/ListContainerGroupDefinitionVersionsPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListContainerGroupDefinitionVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContainerGroupDefinitionVersionsCommand, diff --git a/clients/client-gamelift/src/pagination/ListContainerGroupDefinitionsPaginator.ts b/clients/client-gamelift/src/pagination/ListContainerGroupDefinitionsPaginator.ts index dc0508e698a05..9f0a7843638cc 100644 --- a/clients/client-gamelift/src/pagination/ListContainerGroupDefinitionsPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListContainerGroupDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContainerGroupDefinitionsCommand, diff --git a/clients/client-gamelift/src/pagination/ListFleetDeploymentsPaginator.ts b/clients/client-gamelift/src/pagination/ListFleetDeploymentsPaginator.ts index c10a29f331096..26f24a5690002 100644 --- a/clients/client-gamelift/src/pagination/ListFleetDeploymentsPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListFleetDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFleetDeploymentsCommand, diff --git a/clients/client-gamelift/src/pagination/ListFleetsPaginator.ts b/clients/client-gamelift/src/pagination/ListFleetsPaginator.ts index 62cc93e544fbb..e03e3261b55f3 100644 --- a/clients/client-gamelift/src/pagination/ListFleetsPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListFleetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFleetsCommand, ListFleetsCommandInput, ListFleetsCommandOutput } from "../commands/ListFleetsCommand"; import { GameLiftClient } from "../GameLiftClient"; diff --git a/clients/client-gamelift/src/pagination/ListGameServerGroupsPaginator.ts b/clients/client-gamelift/src/pagination/ListGameServerGroupsPaginator.ts index dc61883d8b32b..bf71d906ae192 100644 --- a/clients/client-gamelift/src/pagination/ListGameServerGroupsPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListGameServerGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGameServerGroupsCommand, diff --git a/clients/client-gamelift/src/pagination/ListGameServersPaginator.ts b/clients/client-gamelift/src/pagination/ListGameServersPaginator.ts index ea0c3d8329309..0a64960272bcc 100644 --- a/clients/client-gamelift/src/pagination/ListGameServersPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListGameServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGameServersCommand, diff --git a/clients/client-gamelift/src/pagination/ListLocationsPaginator.ts b/clients/client-gamelift/src/pagination/ListLocationsPaginator.ts index 3b4d791dcce19..699fec36f00c0 100644 --- a/clients/client-gamelift/src/pagination/ListLocationsPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListLocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLocationsCommand, diff --git a/clients/client-gamelift/src/pagination/ListScriptsPaginator.ts b/clients/client-gamelift/src/pagination/ListScriptsPaginator.ts index 2fb9b9a9ffb62..b08b317da691f 100644 --- a/clients/client-gamelift/src/pagination/ListScriptsPaginator.ts +++ b/clients/client-gamelift/src/pagination/ListScriptsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListScriptsCommand, ListScriptsCommandInput, ListScriptsCommandOutput } from "../commands/ListScriptsCommand"; import { GameLiftClient } from "../GameLiftClient"; diff --git a/clients/client-gamelift/src/pagination/SearchGameSessionsPaginator.ts b/clients/client-gamelift/src/pagination/SearchGameSessionsPaginator.ts index 4a01966acfa23..7c5f2b810529f 100644 --- a/clients/client-gamelift/src/pagination/SearchGameSessionsPaginator.ts +++ b/clients/client-gamelift/src/pagination/SearchGameSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchGameSessionsCommand, diff --git a/clients/client-gamelift/src/runtimeConfig.browser.ts b/clients/client-gamelift/src/runtimeConfig.browser.ts index 90c5ea79d4dc4..d988e9d231483 100644 --- a/clients/client-gamelift/src/runtimeConfig.browser.ts +++ b/clients/client-gamelift/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GameLiftClientConfig } from "./GameLiftClient"; + +import type { GameLiftClientConfig } from "./GameLiftClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-gamelift/src/runtimeConfig.native.ts b/clients/client-gamelift/src/runtimeConfig.native.ts index 46990780936c3..accc975901c89 100644 --- a/clients/client-gamelift/src/runtimeConfig.native.ts +++ b/clients/client-gamelift/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GameLiftClientConfig } from "./GameLiftClient"; +import type { GameLiftClientConfig } from "./GameLiftClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-gamelift/src/runtimeConfig.shared.ts b/clients/client-gamelift/src/runtimeConfig.shared.ts index adbcae05e22b4..c6f2b258a65a2 100644 --- a/clients/client-gamelift/src/runtimeConfig.shared.ts +++ b/clients/client-gamelift/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGameLiftHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GameLiftClientConfig } from "./GameLiftClient"; +import type { GameLiftClientConfig } from "./GameLiftClient"; /** * @internal diff --git a/clients/client-gamelift/src/runtimeConfig.ts b/clients/client-gamelift/src/runtimeConfig.ts index 6a8a96184bb34..1f10b6f5ed4e0 100644 --- a/clients/client-gamelift/src/runtimeConfig.ts +++ b/clients/client-gamelift/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GameLiftClientConfig } from "./GameLiftClient"; + +import type { GameLiftClientConfig } from "./GameLiftClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-gamelift/src/runtimeExtensions.ts b/clients/client-gamelift/src/runtimeExtensions.ts index 24e61c5b15691..02dca4911e91b 100644 --- a/clients/client-gamelift/src/runtimeExtensions.ts +++ b/clients/client-gamelift/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GameLiftExtensionConfiguration } from "./extensionConfiguration"; +import type { GameLiftExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-gamelift/src/schemas/schemas_0.ts b/clients/client-gamelift/src/schemas/schemas_0.ts index 7a674e83ffb1e..302b2a75a045a 100644 --- a/clients/client-gamelift/src/schemas/schemas_0.ts +++ b/clients/client-gamelift/src/schemas/schemas_0.ts @@ -825,7 +825,7 @@ const n0 = "com.amazonaws.gamelift"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-gameliftstreams/package.json b/clients/client-gameliftstreams/package.json index 8628fd4d5cca3..10ec26c3a736d 100644 --- a/clients/client-gameliftstreams/package.json +++ b/clients/client-gameliftstreams/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-gameliftstreams/src/GameLiftStreams.ts b/clients/client-gameliftstreams/src/GameLiftStreams.ts index f345400054f6c..0970527472a37 100644 --- a/clients/client-gameliftstreams/src/GameLiftStreams.ts +++ b/clients/client-gameliftstreams/src/GameLiftStreams.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddStreamGroupLocationsCommand, @@ -118,7 +118,7 @@ import { UpdateStreamGroupCommandInput, UpdateStreamGroupCommandOutput, } from "./commands/UpdateStreamGroupCommand"; -import { GameLiftStreamsClient, GameLiftStreamsClientConfig } from "./GameLiftStreamsClient"; +import { GameLiftStreamsClient } from "./GameLiftStreamsClient"; const commands = { AddStreamGroupLocationsCommand, diff --git a/clients/client-gameliftstreams/src/GameLiftStreamsClient.ts b/clients/client-gameliftstreams/src/GameLiftStreamsClient.ts index 779c88c48908d..1db0db6d49bb0 100644 --- a/clients/client-gameliftstreams/src/GameLiftStreamsClient.ts +++ b/clients/client-gameliftstreams/src/GameLiftStreamsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGameLiftStreamsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -115,7 +124,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-gameliftstreams/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-gameliftstreams/src/auth/httpAuthExtensionConfiguration.ts index 5f92b82eff934..ab255e19eb4b1 100644 --- a/clients/client-gameliftstreams/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-gameliftstreams/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GameLiftStreamsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GameLiftStreamsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-gameliftstreams/src/auth/httpAuthSchemeProvider.ts b/clients/client-gameliftstreams/src/auth/httpAuthSchemeProvider.ts index 3a3da7f8a40d8..25fdffb0aa181 100644 --- a/clients/client-gameliftstreams/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-gameliftstreams/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GameLiftStreamsClientConfig, GameLiftStreamsClientResolvedConfig } from "../GameLiftStreamsClient"; +import { type GameLiftStreamsClientResolvedConfig, GameLiftStreamsClientConfig } from "../GameLiftStreamsClient"; /** * @internal diff --git a/clients/client-gameliftstreams/src/commands/AddStreamGroupLocationsCommand.ts b/clients/client-gameliftstreams/src/commands/AddStreamGroupLocationsCommand.ts index 9af5e0425bca0..3345e7ae64ce5 100644 --- a/clients/client-gameliftstreams/src/commands/AddStreamGroupLocationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/AddStreamGroupLocationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { AddStreamGroupLocationsInput, AddStreamGroupLocationsOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { AddStreamGroupLocationsInput, AddStreamGroupLocationsOutput } from "../models/models_0"; import { AddStreamGroupLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/AssociateApplicationsCommand.ts b/clients/client-gameliftstreams/src/commands/AssociateApplicationsCommand.ts index 9432dc571a0ac..d9672c9e18dfb 100644 --- a/clients/client-gameliftstreams/src/commands/AssociateApplicationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/AssociateApplicationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { AssociateApplicationsInput, AssociateApplicationsOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { AssociateApplicationsInput, AssociateApplicationsOutput } from "../models/models_0"; import { AssociateApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/CreateApplicationCommand.ts b/clients/client-gameliftstreams/src/commands/CreateApplicationCommand.ts index b83defaf42bff..bf5a5277472bb 100644 --- a/clients/client-gameliftstreams/src/commands/CreateApplicationCommand.ts +++ b/clients/client-gameliftstreams/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { CreateApplicationInput, CreateApplicationOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { CreateApplicationInput, CreateApplicationOutput } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/CreateStreamGroupCommand.ts b/clients/client-gameliftstreams/src/commands/CreateStreamGroupCommand.ts index 0a7860b64ba7c..1b1fb9f8904a2 100644 --- a/clients/client-gameliftstreams/src/commands/CreateStreamGroupCommand.ts +++ b/clients/client-gameliftstreams/src/commands/CreateStreamGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { CreateStreamGroupInput, CreateStreamGroupOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { CreateStreamGroupInput, CreateStreamGroupOutput } from "../models/models_0"; import { CreateStreamGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/CreateStreamSessionConnectionCommand.ts b/clients/client-gameliftstreams/src/commands/CreateStreamSessionConnectionCommand.ts index 2faabcd309e37..3b1244c980dd4 100644 --- a/clients/client-gameliftstreams/src/commands/CreateStreamSessionConnectionCommand.ts +++ b/clients/client-gameliftstreams/src/commands/CreateStreamSessionConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { CreateStreamSessionConnectionInput, CreateStreamSessionConnectionOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { CreateStreamSessionConnectionInput, CreateStreamSessionConnectionOutput } from "../models/models_0"; import { CreateStreamSessionConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/DeleteApplicationCommand.ts b/clients/client-gameliftstreams/src/commands/DeleteApplicationCommand.ts index dc99cd9385a91..db7f0dc8c26e1 100644 --- a/clients/client-gameliftstreams/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-gameliftstreams/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { DeleteApplicationInput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { DeleteApplicationInput } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/DeleteStreamGroupCommand.ts b/clients/client-gameliftstreams/src/commands/DeleteStreamGroupCommand.ts index 626eeb1ee4d32..2608599b14f1d 100644 --- a/clients/client-gameliftstreams/src/commands/DeleteStreamGroupCommand.ts +++ b/clients/client-gameliftstreams/src/commands/DeleteStreamGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { DeleteStreamGroupInput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { DeleteStreamGroupInput } from "../models/models_0"; import { DeleteStreamGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/DisassociateApplicationsCommand.ts b/clients/client-gameliftstreams/src/commands/DisassociateApplicationsCommand.ts index 33dfe29f8f7f8..555e8902f5511 100644 --- a/clients/client-gameliftstreams/src/commands/DisassociateApplicationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/DisassociateApplicationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { DisassociateApplicationsInput, DisassociateApplicationsOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { DisassociateApplicationsInput, DisassociateApplicationsOutput } from "../models/models_0"; import { DisassociateApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/ExportStreamSessionFilesCommand.ts b/clients/client-gameliftstreams/src/commands/ExportStreamSessionFilesCommand.ts index 21dbae2f2426a..eb12a3581c177 100644 --- a/clients/client-gameliftstreams/src/commands/ExportStreamSessionFilesCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ExportStreamSessionFilesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { ExportStreamSessionFilesInput, ExportStreamSessionFilesOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { ExportStreamSessionFilesInput, ExportStreamSessionFilesOutput } from "../models/models_0"; import { ExportStreamSessionFiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/GetApplicationCommand.ts b/clients/client-gameliftstreams/src/commands/GetApplicationCommand.ts index ae7da4b8d12fc..2c944af305771 100644 --- a/clients/client-gameliftstreams/src/commands/GetApplicationCommand.ts +++ b/clients/client-gameliftstreams/src/commands/GetApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { GetApplicationInput, GetApplicationOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { GetApplicationInput, GetApplicationOutput } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/GetStreamGroupCommand.ts b/clients/client-gameliftstreams/src/commands/GetStreamGroupCommand.ts index 9599a61784fc4..5fe0d0d8cd831 100644 --- a/clients/client-gameliftstreams/src/commands/GetStreamGroupCommand.ts +++ b/clients/client-gameliftstreams/src/commands/GetStreamGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { GetStreamGroupInput, GetStreamGroupOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { GetStreamGroupInput, GetStreamGroupOutput } from "../models/models_0"; import { GetStreamGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/GetStreamSessionCommand.ts b/clients/client-gameliftstreams/src/commands/GetStreamSessionCommand.ts index 462b842bfb5f0..52ceed46687de 100644 --- a/clients/client-gameliftstreams/src/commands/GetStreamSessionCommand.ts +++ b/clients/client-gameliftstreams/src/commands/GetStreamSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { GetStreamSessionInput, GetStreamSessionOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { GetStreamSessionInput, GetStreamSessionOutput } from "../models/models_0"; import { GetStreamSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/ListApplicationsCommand.ts b/clients/client-gameliftstreams/src/commands/ListApplicationsCommand.ts index 1ec0be33ad3a4..08dc4d0f5862e 100644 --- a/clients/client-gameliftstreams/src/commands/ListApplicationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/ListStreamGroupsCommand.ts b/clients/client-gameliftstreams/src/commands/ListStreamGroupsCommand.ts index 42d302875f910..d887228e19db2 100644 --- a/clients/client-gameliftstreams/src/commands/ListStreamGroupsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListStreamGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { ListStreamGroupsInput, ListStreamGroupsOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { ListStreamGroupsInput, ListStreamGroupsOutput } from "../models/models_0"; import { ListStreamGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/ListStreamSessionsByAccountCommand.ts b/clients/client-gameliftstreams/src/commands/ListStreamSessionsByAccountCommand.ts index f3bdfa6dd148f..c5190624880af 100644 --- a/clients/client-gameliftstreams/src/commands/ListStreamSessionsByAccountCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListStreamSessionsByAccountCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { ListStreamSessionsByAccountInput, ListStreamSessionsByAccountOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { ListStreamSessionsByAccountInput, ListStreamSessionsByAccountOutput } from "../models/models_0"; import { ListStreamSessionsByAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/ListStreamSessionsCommand.ts b/clients/client-gameliftstreams/src/commands/ListStreamSessionsCommand.ts index e47f28dec2bb4..7045ce7388901 100644 --- a/clients/client-gameliftstreams/src/commands/ListStreamSessionsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListStreamSessionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { ListStreamSessionsInput, ListStreamSessionsOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { ListStreamSessionsInput, ListStreamSessionsOutput } from "../models/models_0"; import { ListStreamSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/ListTagsForResourceCommand.ts b/clients/client-gameliftstreams/src/commands/ListTagsForResourceCommand.ts index 582ff9e06dd32..b4ac9955b1dc5 100644 --- a/clients/client-gameliftstreams/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-gameliftstreams/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/RemoveStreamGroupLocationsCommand.ts b/clients/client-gameliftstreams/src/commands/RemoveStreamGroupLocationsCommand.ts index 11045d35b418d..2bba2d39a80ec 100644 --- a/clients/client-gameliftstreams/src/commands/RemoveStreamGroupLocationsCommand.ts +++ b/clients/client-gameliftstreams/src/commands/RemoveStreamGroupLocationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { RemoveStreamGroupLocationsInput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { RemoveStreamGroupLocationsInput } from "../models/models_0"; import { RemoveStreamGroupLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/StartStreamSessionCommand.ts b/clients/client-gameliftstreams/src/commands/StartStreamSessionCommand.ts index 26af88e2dcf94..c19406ee5464c 100644 --- a/clients/client-gameliftstreams/src/commands/StartStreamSessionCommand.ts +++ b/clients/client-gameliftstreams/src/commands/StartStreamSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { StartStreamSessionInput, StartStreamSessionOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { StartStreamSessionInput, StartStreamSessionOutput } from "../models/models_0"; import { StartStreamSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/TagResourceCommand.ts b/clients/client-gameliftstreams/src/commands/TagResourceCommand.ts index 7fb5956cc9dbd..e4de5af0c12e1 100644 --- a/clients/client-gameliftstreams/src/commands/TagResourceCommand.ts +++ b/clients/client-gameliftstreams/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/TerminateStreamSessionCommand.ts b/clients/client-gameliftstreams/src/commands/TerminateStreamSessionCommand.ts index ff45e4bd3a0f0..7176e47e6584b 100644 --- a/clients/client-gameliftstreams/src/commands/TerminateStreamSessionCommand.ts +++ b/clients/client-gameliftstreams/src/commands/TerminateStreamSessionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { TerminateStreamSessionInput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { TerminateStreamSessionInput } from "../models/models_0"; import { TerminateStreamSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/UntagResourceCommand.ts b/clients/client-gameliftstreams/src/commands/UntagResourceCommand.ts index 664df05351b76..46d3b885e762d 100644 --- a/clients/client-gameliftstreams/src/commands/UntagResourceCommand.ts +++ b/clients/client-gameliftstreams/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/UpdateApplicationCommand.ts b/clients/client-gameliftstreams/src/commands/UpdateApplicationCommand.ts index 8b2e29385a84c..eef93f08625f2 100644 --- a/clients/client-gameliftstreams/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-gameliftstreams/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { UpdateApplicationInput, UpdateApplicationOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { UpdateApplicationInput, UpdateApplicationOutput } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/commands/UpdateStreamGroupCommand.ts b/clients/client-gameliftstreams/src/commands/UpdateStreamGroupCommand.ts index 99f167e727fe2..11627a11393a8 100644 --- a/clients/client-gameliftstreams/src/commands/UpdateStreamGroupCommand.ts +++ b/clients/client-gameliftstreams/src/commands/UpdateStreamGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GameLiftStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GameLiftStreamsClient"; -import { UpdateStreamGroupInput, UpdateStreamGroupOutput } from "../models/models_0"; +import type { + GameLiftStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../GameLiftStreamsClient"; +import type { UpdateStreamGroupInput, UpdateStreamGroupOutput } from "../models/models_0"; import { UpdateStreamGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-gameliftstreams/src/endpoint/EndpointParameters.ts b/clients/client-gameliftstreams/src/endpoint/EndpointParameters.ts index 9d211290f8289..2e44a40a4b29c 100644 --- a/clients/client-gameliftstreams/src/endpoint/EndpointParameters.ts +++ b/clients/client-gameliftstreams/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-gameliftstreams/src/endpoint/endpointResolver.ts b/clients/client-gameliftstreams/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-gameliftstreams/src/endpoint/endpointResolver.ts +++ b/clients/client-gameliftstreams/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-gameliftstreams/src/extensionConfiguration.ts b/clients/client-gameliftstreams/src/extensionConfiguration.ts index be4f1a552002f..f462f92b974c8 100644 --- a/clients/client-gameliftstreams/src/extensionConfiguration.ts +++ b/clients/client-gameliftstreams/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-gameliftstreams/src/models/GameLiftStreamsServiceException.ts b/clients/client-gameliftstreams/src/models/GameLiftStreamsServiceException.ts index ac0923ae6a402..f9a6cbb02bd98 100644 --- a/clients/client-gameliftstreams/src/models/GameLiftStreamsServiceException.ts +++ b/clients/client-gameliftstreams/src/models/GameLiftStreamsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-gameliftstreams/src/models/errors.ts b/clients/client-gameliftstreams/src/models/errors.ts index b0838d85bf42d..e75a5b00bfd91 100644 --- a/clients/client-gameliftstreams/src/models/errors.ts +++ b/clients/client-gameliftstreams/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { GameLiftStreamsServiceException as __BaseException } from "./GameLiftStreamsServiceException"; diff --git a/clients/client-gameliftstreams/src/pagination/Interfaces.ts b/clients/client-gameliftstreams/src/pagination/Interfaces.ts index 55e855f7e6787..4549d5528b58c 100644 --- a/clients/client-gameliftstreams/src/pagination/Interfaces.ts +++ b/clients/client-gameliftstreams/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { GameLiftStreamsClient } from "../GameLiftStreamsClient"; diff --git a/clients/client-gameliftstreams/src/pagination/ListApplicationsPaginator.ts b/clients/client-gameliftstreams/src/pagination/ListApplicationsPaginator.ts index 19bc5d20735f8..9946ea6c4a6fd 100644 --- a/clients/client-gameliftstreams/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-gameliftstreams/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-gameliftstreams/src/pagination/ListStreamGroupsPaginator.ts b/clients/client-gameliftstreams/src/pagination/ListStreamGroupsPaginator.ts index a6c250bccf0bc..f1db67b3d9ad7 100644 --- a/clients/client-gameliftstreams/src/pagination/ListStreamGroupsPaginator.ts +++ b/clients/client-gameliftstreams/src/pagination/ListStreamGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamGroupsCommand, diff --git a/clients/client-gameliftstreams/src/pagination/ListStreamSessionsByAccountPaginator.ts b/clients/client-gameliftstreams/src/pagination/ListStreamSessionsByAccountPaginator.ts index e0e3b2b12c075..99456b515d99f 100644 --- a/clients/client-gameliftstreams/src/pagination/ListStreamSessionsByAccountPaginator.ts +++ b/clients/client-gameliftstreams/src/pagination/ListStreamSessionsByAccountPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamSessionsByAccountCommand, diff --git a/clients/client-gameliftstreams/src/pagination/ListStreamSessionsPaginator.ts b/clients/client-gameliftstreams/src/pagination/ListStreamSessionsPaginator.ts index 799da6d0c01df..8f3de3db53341 100644 --- a/clients/client-gameliftstreams/src/pagination/ListStreamSessionsPaginator.ts +++ b/clients/client-gameliftstreams/src/pagination/ListStreamSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamSessionsCommand, diff --git a/clients/client-gameliftstreams/src/runtimeConfig.browser.ts b/clients/client-gameliftstreams/src/runtimeConfig.browser.ts index b4da0fbba34c4..9b7628ef7b18b 100644 --- a/clients/client-gameliftstreams/src/runtimeConfig.browser.ts +++ b/clients/client-gameliftstreams/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient"; + +import type { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-gameliftstreams/src/runtimeConfig.native.ts b/clients/client-gameliftstreams/src/runtimeConfig.native.ts index da85e269be9eb..7f40f308c7f10 100644 --- a/clients/client-gameliftstreams/src/runtimeConfig.native.ts +++ b/clients/client-gameliftstreams/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient"; +import type { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-gameliftstreams/src/runtimeConfig.shared.ts b/clients/client-gameliftstreams/src/runtimeConfig.shared.ts index 40c7f418e10ac..014e03800ee53 100644 --- a/clients/client-gameliftstreams/src/runtimeConfig.shared.ts +++ b/clients/client-gameliftstreams/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGameLiftStreamsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient"; +import type { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient"; /** * @internal diff --git a/clients/client-gameliftstreams/src/runtimeConfig.ts b/clients/client-gameliftstreams/src/runtimeConfig.ts index 3e6c27e78a32e..7d1139cc74c36 100644 --- a/clients/client-gameliftstreams/src/runtimeConfig.ts +++ b/clients/client-gameliftstreams/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient"; + +import type { GameLiftStreamsClientConfig } from "./GameLiftStreamsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-gameliftstreams/src/runtimeExtensions.ts b/clients/client-gameliftstreams/src/runtimeExtensions.ts index 30a591ab59c19..791466c0bc53e 100644 --- a/clients/client-gameliftstreams/src/runtimeExtensions.ts +++ b/clients/client-gameliftstreams/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GameLiftStreamsExtensionConfiguration } from "./extensionConfiguration"; +import type { GameLiftStreamsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-gameliftstreams/src/schemas/schemas_0.ts b/clients/client-gameliftstreams/src/schemas/schemas_0.ts index 4c93749acb84a..2aadb51c4bfcb 100644 --- a/clients/client-gameliftstreams/src/schemas/schemas_0.ts +++ b/clients/client-gameliftstreams/src/schemas/schemas_0.ts @@ -154,7 +154,7 @@ const n0 = "com.amazonaws.gameliftstreams"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-geo-maps/package.json b/clients/client-geo-maps/package.json index 5a24080bbd511..a4513e5ecac4a 100644 --- a/clients/client-geo-maps/package.json +++ b/clients/client-geo-maps/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-geo-maps/src/GeoMaps.ts b/clients/client-geo-maps/src/GeoMaps.ts index b494ce6c5e4e4..18b2cfc25bba8 100644 --- a/clients/client-geo-maps/src/GeoMaps.ts +++ b/clients/client-geo-maps/src/GeoMaps.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetGlyphsCommand, GetGlyphsCommandInput, GetGlyphsCommandOutput } from "./commands/GetGlyphsCommand"; import { GetSpritesCommand, GetSpritesCommandInput, GetSpritesCommandOutput } from "./commands/GetSpritesCommand"; @@ -15,7 +15,7 @@ import { GetStyleDescriptorCommandOutput, } from "./commands/GetStyleDescriptorCommand"; import { GetTileCommand, GetTileCommandInput, GetTileCommandOutput } from "./commands/GetTileCommand"; -import { GeoMapsClient, GeoMapsClientConfig } from "./GeoMapsClient"; +import { GeoMapsClient } from "./GeoMapsClient"; const commands = { GetGlyphsCommand, diff --git a/clients/client-geo-maps/src/GeoMapsClient.ts b/clients/client-geo-maps/src/GeoMapsClient.ts index 3c1c54e06b1f9..fbc1e208924ee 100644 --- a/clients/client-geo-maps/src/GeoMapsClient.ts +++ b/clients/client-geo-maps/src/GeoMapsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGeoMapsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetGlyphsCommandInput, GetGlyphsCommandOutput } from "./commands/GetGlyphsCommand"; @@ -69,7 +78,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-geo-maps/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-geo-maps/src/auth/httpAuthExtensionConfiguration.ts index 2c04373361d95..5b9d4ce21654c 100644 --- a/clients/client-geo-maps/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-geo-maps/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GeoMapsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GeoMapsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-geo-maps/src/auth/httpAuthSchemeProvider.ts b/clients/client-geo-maps/src/auth/httpAuthSchemeProvider.ts index cc37735f39fea..5f8cd54a13869 100644 --- a/clients/client-geo-maps/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-geo-maps/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GeoMapsClientConfig, GeoMapsClientResolvedConfig } from "../GeoMapsClient"; +import { type GeoMapsClientResolvedConfig, GeoMapsClientConfig } from "../GeoMapsClient"; /** * @internal diff --git a/clients/client-geo-maps/src/commands/GetGlyphsCommand.ts b/clients/client-geo-maps/src/commands/GetGlyphsCommand.ts index a1ed9e6c707fb..d800a5d8c8e2b 100644 --- a/clients/client-geo-maps/src/commands/GetGlyphsCommand.ts +++ b/clients/client-geo-maps/src/commands/GetGlyphsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; -import { GetGlyphsRequest, GetGlyphsResponse } from "../models/models_0"; +import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; +import { type GetGlyphsRequest, GetGlyphsResponse } from "../models/models_0"; import { GetGlyphs } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-maps/src/commands/GetSpritesCommand.ts b/clients/client-geo-maps/src/commands/GetSpritesCommand.ts index edf8cd8e7dbf3..c9c4da8f0e507 100644 --- a/clients/client-geo-maps/src/commands/GetSpritesCommand.ts +++ b/clients/client-geo-maps/src/commands/GetSpritesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; -import { GetSpritesRequest, GetSpritesResponse } from "../models/models_0"; +import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; +import { type GetSpritesRequest, GetSpritesResponse } from "../models/models_0"; import { GetSprites } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-maps/src/commands/GetStaticMapCommand.ts b/clients/client-geo-maps/src/commands/GetStaticMapCommand.ts index f458f6d1bc5c5..89c7e5e768617 100644 --- a/clients/client-geo-maps/src/commands/GetStaticMapCommand.ts +++ b/clients/client-geo-maps/src/commands/GetStaticMapCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; -import { GetStaticMapRequest, GetStaticMapResponse } from "../models/models_0"; +import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; +import { type GetStaticMapRequest, GetStaticMapResponse } from "../models/models_0"; import { GetStaticMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-maps/src/commands/GetStyleDescriptorCommand.ts b/clients/client-geo-maps/src/commands/GetStyleDescriptorCommand.ts index 28312ca342359..148d775df4e24 100644 --- a/clients/client-geo-maps/src/commands/GetStyleDescriptorCommand.ts +++ b/clients/client-geo-maps/src/commands/GetStyleDescriptorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; -import { GetStyleDescriptorRequest, GetStyleDescriptorResponse } from "../models/models_0"; +import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; +import { type GetStyleDescriptorRequest, GetStyleDescriptorResponse } from "../models/models_0"; import { GetStyleDescriptor } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-maps/src/commands/GetTileCommand.ts b/clients/client-geo-maps/src/commands/GetTileCommand.ts index 335a1013fc28e..bd4f70e4b3318 100644 --- a/clients/client-geo-maps/src/commands/GetTileCommand.ts +++ b/clients/client-geo-maps/src/commands/GetTileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; -import { GetTileRequest, GetTileResponse } from "../models/models_0"; +import type { GeoMapsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoMapsClient"; +import { type GetTileRequest, GetTileResponse } from "../models/models_0"; import { GetTile } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-maps/src/endpoint/EndpointParameters.ts b/clients/client-geo-maps/src/endpoint/EndpointParameters.ts index e9e19e9a1779a..d6ab702e04fc2 100644 --- a/clients/client-geo-maps/src/endpoint/EndpointParameters.ts +++ b/clients/client-geo-maps/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-geo-maps/src/endpoint/endpointResolver.ts b/clients/client-geo-maps/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-geo-maps/src/endpoint/endpointResolver.ts +++ b/clients/client-geo-maps/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-geo-maps/src/extensionConfiguration.ts b/clients/client-geo-maps/src/extensionConfiguration.ts index b4947a572bb8c..b0a4b7015bb7c 100644 --- a/clients/client-geo-maps/src/extensionConfiguration.ts +++ b/clients/client-geo-maps/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-geo-maps/src/models/GeoMapsServiceException.ts b/clients/client-geo-maps/src/models/GeoMapsServiceException.ts index 2097b52883f05..f7f4d211e596b 100644 --- a/clients/client-geo-maps/src/models/GeoMapsServiceException.ts +++ b/clients/client-geo-maps/src/models/GeoMapsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-geo-maps/src/models/errors.ts b/clients/client-geo-maps/src/models/errors.ts index e4362d6d78a3d..aad7dbe333be0 100644 --- a/clients/client-geo-maps/src/models/errors.ts +++ b/clients/client-geo-maps/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { GeoMapsServiceException as __BaseException } from "./GeoMapsServiceException"; diff --git a/clients/client-geo-maps/src/runtimeConfig.browser.ts b/clients/client-geo-maps/src/runtimeConfig.browser.ts index 12b1f5e862441..2612f2023d79a 100644 --- a/clients/client-geo-maps/src/runtimeConfig.browser.ts +++ b/clients/client-geo-maps/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GeoMapsClientConfig } from "./GeoMapsClient"; + +import type { GeoMapsClientConfig } from "./GeoMapsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-geo-maps/src/runtimeConfig.native.ts b/clients/client-geo-maps/src/runtimeConfig.native.ts index 18ba5617f0c53..87853dc7b0c48 100644 --- a/clients/client-geo-maps/src/runtimeConfig.native.ts +++ b/clients/client-geo-maps/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GeoMapsClientConfig } from "./GeoMapsClient"; +import type { GeoMapsClientConfig } from "./GeoMapsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-geo-maps/src/runtimeConfig.shared.ts b/clients/client-geo-maps/src/runtimeConfig.shared.ts index 813d23ace7c2c..3742e9e815cd5 100644 --- a/clients/client-geo-maps/src/runtimeConfig.shared.ts +++ b/clients/client-geo-maps/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGeoMapsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GeoMapsClientConfig } from "./GeoMapsClient"; +import type { GeoMapsClientConfig } from "./GeoMapsClient"; /** * @internal diff --git a/clients/client-geo-maps/src/runtimeConfig.ts b/clients/client-geo-maps/src/runtimeConfig.ts index 4021d200f68b8..a1062a62091c2 100644 --- a/clients/client-geo-maps/src/runtimeConfig.ts +++ b/clients/client-geo-maps/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GeoMapsClientConfig } from "./GeoMapsClient"; + +import type { GeoMapsClientConfig } from "./GeoMapsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-geo-maps/src/runtimeExtensions.ts b/clients/client-geo-maps/src/runtimeExtensions.ts index 9dbd754e1ba36..55840a08636c7 100644 --- a/clients/client-geo-maps/src/runtimeExtensions.ts +++ b/clients/client-geo-maps/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GeoMapsExtensionConfiguration } from "./extensionConfiguration"; +import type { GeoMapsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-geo-maps/src/schemas/schemas_0.ts b/clients/client-geo-maps/src/schemas/schemas_0.ts index 5c8d2efedfdd9..e128290ab8863 100644 --- a/clients/client-geo-maps/src/schemas/schemas_0.ts +++ b/clients/client-geo-maps/src/schemas/schemas_0.ts @@ -113,7 +113,7 @@ const n0 = "com.amazonaws.geomaps"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-geo-places/package.json b/clients/client-geo-places/package.json index 048b1e46019a9..29902ed408ad2 100644 --- a/clients/client-geo-places/package.json +++ b/clients/client-geo-places/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-geo-places/src/GeoPlaces.ts b/clients/client-geo-places/src/GeoPlaces.ts index 68c2638a9f297..e2a908a52f4c2 100644 --- a/clients/client-geo-places/src/GeoPlaces.ts +++ b/clients/client-geo-places/src/GeoPlaces.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AutocompleteCommand, @@ -21,7 +21,7 @@ import { } from "./commands/SearchNearbyCommand"; import { SearchTextCommand, SearchTextCommandInput, SearchTextCommandOutput } from "./commands/SearchTextCommand"; import { SuggestCommand, SuggestCommandInput, SuggestCommandOutput } from "./commands/SuggestCommand"; -import { GeoPlacesClient, GeoPlacesClientConfig } from "./GeoPlacesClient"; +import { GeoPlacesClient } from "./GeoPlacesClient"; const commands = { AutocompleteCommand, diff --git a/clients/client-geo-places/src/GeoPlacesClient.ts b/clients/client-geo-places/src/GeoPlacesClient.ts index ac5ef58362348..1a4fef9b59de4 100644 --- a/clients/client-geo-places/src/GeoPlacesClient.ts +++ b/clients/client-geo-places/src/GeoPlacesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGeoPlacesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AutocompleteCommandInput, AutocompleteCommandOutput } from "./commands/AutocompleteCommand"; @@ -71,7 +80,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-geo-places/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-geo-places/src/auth/httpAuthExtensionConfiguration.ts index f4ffce1c3c43b..8b18d71b5e0c8 100644 --- a/clients/client-geo-places/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-geo-places/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GeoPlacesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GeoPlacesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-geo-places/src/auth/httpAuthSchemeProvider.ts b/clients/client-geo-places/src/auth/httpAuthSchemeProvider.ts index e044c22c66476..ca3f71fe1f603 100644 --- a/clients/client-geo-places/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-geo-places/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GeoPlacesClientConfig, GeoPlacesClientResolvedConfig } from "../GeoPlacesClient"; +import { type GeoPlacesClientResolvedConfig, GeoPlacesClientConfig } from "../GeoPlacesClient"; /** * @internal diff --git a/clients/client-geo-places/src/commands/AutocompleteCommand.ts b/clients/client-geo-places/src/commands/AutocompleteCommand.ts index 9277d97572310..865171490bd98 100644 --- a/clients/client-geo-places/src/commands/AutocompleteCommand.ts +++ b/clients/client-geo-places/src/commands/AutocompleteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; -import { AutocompleteRequest, AutocompleteResponse } from "../models/models_0"; +import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; +import type { AutocompleteRequest, AutocompleteResponse } from "../models/models_0"; import { Autocomplete } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-places/src/commands/GeocodeCommand.ts b/clients/client-geo-places/src/commands/GeocodeCommand.ts index 228a5b4add129..71dbb7a80b60a 100644 --- a/clients/client-geo-places/src/commands/GeocodeCommand.ts +++ b/clients/client-geo-places/src/commands/GeocodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; -import { GeocodeRequest, GeocodeResponse } from "../models/models_0"; +import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; +import type { GeocodeRequest, GeocodeResponse } from "../models/models_0"; import { Geocode } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-places/src/commands/GetPlaceCommand.ts b/clients/client-geo-places/src/commands/GetPlaceCommand.ts index 36d3dde7f0f9e..094d3a777ba77 100644 --- a/clients/client-geo-places/src/commands/GetPlaceCommand.ts +++ b/clients/client-geo-places/src/commands/GetPlaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; -import { GetPlaceRequest, GetPlaceResponse } from "../models/models_0"; +import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; +import type { GetPlaceRequest, GetPlaceResponse } from "../models/models_0"; import { GetPlace } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-places/src/commands/ReverseGeocodeCommand.ts b/clients/client-geo-places/src/commands/ReverseGeocodeCommand.ts index 6237a56097b11..fddb933906be4 100644 --- a/clients/client-geo-places/src/commands/ReverseGeocodeCommand.ts +++ b/clients/client-geo-places/src/commands/ReverseGeocodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; -import { ReverseGeocodeRequest, ReverseGeocodeResponse } from "../models/models_0"; +import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; +import type { ReverseGeocodeRequest, ReverseGeocodeResponse } from "../models/models_0"; import { ReverseGeocode } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-places/src/commands/SearchNearbyCommand.ts b/clients/client-geo-places/src/commands/SearchNearbyCommand.ts index dcfd602c90b53..eddd00500599b 100644 --- a/clients/client-geo-places/src/commands/SearchNearbyCommand.ts +++ b/clients/client-geo-places/src/commands/SearchNearbyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; -import { SearchNearbyRequest, SearchNearbyResponse } from "../models/models_0"; +import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; +import type { SearchNearbyRequest, SearchNearbyResponse } from "../models/models_0"; import { SearchNearby } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-places/src/commands/SearchTextCommand.ts b/clients/client-geo-places/src/commands/SearchTextCommand.ts index b6471e1500fe8..aefff6fa9adec 100644 --- a/clients/client-geo-places/src/commands/SearchTextCommand.ts +++ b/clients/client-geo-places/src/commands/SearchTextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; -import { SearchTextRequest, SearchTextResponse } from "../models/models_0"; +import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; +import type { SearchTextRequest, SearchTextResponse } from "../models/models_0"; import { SearchText } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-places/src/commands/SuggestCommand.ts b/clients/client-geo-places/src/commands/SuggestCommand.ts index f810b27063a75..24785e8a12810 100644 --- a/clients/client-geo-places/src/commands/SuggestCommand.ts +++ b/clients/client-geo-places/src/commands/SuggestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; -import { SuggestRequest, SuggestResponse } from "../models/models_0"; +import type { GeoPlacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoPlacesClient"; +import type { SuggestRequest, SuggestResponse } from "../models/models_0"; import { Suggest } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-places/src/endpoint/EndpointParameters.ts b/clients/client-geo-places/src/endpoint/EndpointParameters.ts index 19c7f978f63be..28f460d0707ff 100644 --- a/clients/client-geo-places/src/endpoint/EndpointParameters.ts +++ b/clients/client-geo-places/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-geo-places/src/endpoint/endpointResolver.ts b/clients/client-geo-places/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-geo-places/src/endpoint/endpointResolver.ts +++ b/clients/client-geo-places/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-geo-places/src/extensionConfiguration.ts b/clients/client-geo-places/src/extensionConfiguration.ts index d4f0505d0d851..3b5a2f20e8093 100644 --- a/clients/client-geo-places/src/extensionConfiguration.ts +++ b/clients/client-geo-places/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-geo-places/src/models/GeoPlacesServiceException.ts b/clients/client-geo-places/src/models/GeoPlacesServiceException.ts index 1570d44c86506..737a97176c78f 100644 --- a/clients/client-geo-places/src/models/GeoPlacesServiceException.ts +++ b/clients/client-geo-places/src/models/GeoPlacesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-geo-places/src/models/errors.ts b/clients/client-geo-places/src/models/errors.ts index b23e80c942076..2285d747ac642 100644 --- a/clients/client-geo-places/src/models/errors.ts +++ b/clients/client-geo-places/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { GeoPlacesServiceException as __BaseException } from "./GeoPlacesServiceException"; diff --git a/clients/client-geo-places/src/runtimeConfig.browser.ts b/clients/client-geo-places/src/runtimeConfig.browser.ts index 27f8896c23d3a..d6efc8185faa7 100644 --- a/clients/client-geo-places/src/runtimeConfig.browser.ts +++ b/clients/client-geo-places/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GeoPlacesClientConfig } from "./GeoPlacesClient"; + +import type { GeoPlacesClientConfig } from "./GeoPlacesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-geo-places/src/runtimeConfig.native.ts b/clients/client-geo-places/src/runtimeConfig.native.ts index a712b829da137..e506ad8d325a7 100644 --- a/clients/client-geo-places/src/runtimeConfig.native.ts +++ b/clients/client-geo-places/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GeoPlacesClientConfig } from "./GeoPlacesClient"; +import type { GeoPlacesClientConfig } from "./GeoPlacesClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-geo-places/src/runtimeConfig.shared.ts b/clients/client-geo-places/src/runtimeConfig.shared.ts index 219f9170aa14c..43a6ef04f9737 100644 --- a/clients/client-geo-places/src/runtimeConfig.shared.ts +++ b/clients/client-geo-places/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGeoPlacesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GeoPlacesClientConfig } from "./GeoPlacesClient"; +import type { GeoPlacesClientConfig } from "./GeoPlacesClient"; /** * @internal diff --git a/clients/client-geo-places/src/runtimeConfig.ts b/clients/client-geo-places/src/runtimeConfig.ts index 18ac536741a6d..cb0749624d69e 100644 --- a/clients/client-geo-places/src/runtimeConfig.ts +++ b/clients/client-geo-places/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GeoPlacesClientConfig } from "./GeoPlacesClient"; + +import type { GeoPlacesClientConfig } from "./GeoPlacesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-geo-places/src/runtimeExtensions.ts b/clients/client-geo-places/src/runtimeExtensions.ts index a3e29012686ae..1a34fbe926b76 100644 --- a/clients/client-geo-places/src/runtimeExtensions.ts +++ b/clients/client-geo-places/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GeoPlacesExtensionConfiguration } from "./extensionConfiguration"; +import type { GeoPlacesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-geo-places/src/schemas/schemas_0.ts b/clients/client-geo-places/src/schemas/schemas_0.ts index 7924e11b520d3..be0b1202dfc36 100644 --- a/clients/client-geo-places/src/schemas/schemas_0.ts +++ b/clients/client-geo-places/src/schemas/schemas_0.ts @@ -257,7 +257,7 @@ const n0 = "com.amazonaws.geoplaces"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-geo-routes/package.json b/clients/client-geo-routes/package.json index 41472c636f8fb..9f200df4bdc81 100644 --- a/clients/client-geo-routes/package.json +++ b/clients/client-geo-routes/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-geo-routes/src/GeoRoutes.ts b/clients/client-geo-routes/src/GeoRoutes.ts index 07e28690d3489..e59d9abb74f03 100644 --- a/clients/client-geo-routes/src/GeoRoutes.ts +++ b/clients/client-geo-routes/src/GeoRoutes.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CalculateIsolinesCommand, @@ -23,7 +23,7 @@ import { OptimizeWaypointsCommandOutput, } from "./commands/OptimizeWaypointsCommand"; import { SnapToRoadsCommand, SnapToRoadsCommandInput, SnapToRoadsCommandOutput } from "./commands/SnapToRoadsCommand"; -import { GeoRoutesClient, GeoRoutesClientConfig } from "./GeoRoutesClient"; +import { GeoRoutesClient } from "./GeoRoutesClient"; const commands = { CalculateIsolinesCommand, diff --git a/clients/client-geo-routes/src/GeoRoutesClient.ts b/clients/client-geo-routes/src/GeoRoutesClient.ts index d019454f38005..32bb0bd387f39 100644 --- a/clients/client-geo-routes/src/GeoRoutesClient.ts +++ b/clients/client-geo-routes/src/GeoRoutesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGeoRoutesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CalculateIsolinesCommandInput, CalculateIsolinesCommandOutput } from "./commands/CalculateIsolinesCommand"; @@ -72,7 +81,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-geo-routes/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-geo-routes/src/auth/httpAuthExtensionConfiguration.ts index 3c4cbd475759e..dce6b41273f43 100644 --- a/clients/client-geo-routes/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-geo-routes/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GeoRoutesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GeoRoutesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-geo-routes/src/auth/httpAuthSchemeProvider.ts b/clients/client-geo-routes/src/auth/httpAuthSchemeProvider.ts index 815f9964db6f3..def891a28e0a0 100644 --- a/clients/client-geo-routes/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-geo-routes/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GeoRoutesClientConfig, GeoRoutesClientResolvedConfig } from "../GeoRoutesClient"; +import { type GeoRoutesClientResolvedConfig, GeoRoutesClientConfig } from "../GeoRoutesClient"; /** * @internal diff --git a/clients/client-geo-routes/src/commands/CalculateIsolinesCommand.ts b/clients/client-geo-routes/src/commands/CalculateIsolinesCommand.ts index 86096572d84c7..78bb2c5d37cbd 100644 --- a/clients/client-geo-routes/src/commands/CalculateIsolinesCommand.ts +++ b/clients/client-geo-routes/src/commands/CalculateIsolinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; -import { CalculateIsolinesRequest, CalculateIsolinesResponse } from "../models/models_0"; +import type { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; +import type { CalculateIsolinesRequest, CalculateIsolinesResponse } from "../models/models_0"; import { CalculateIsolines } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-routes/src/commands/CalculateRouteMatrixCommand.ts b/clients/client-geo-routes/src/commands/CalculateRouteMatrixCommand.ts index 4fd7247cc9f51..385e7803f88b7 100644 --- a/clients/client-geo-routes/src/commands/CalculateRouteMatrixCommand.ts +++ b/clients/client-geo-routes/src/commands/CalculateRouteMatrixCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; -import { CalculateRouteMatrixRequest, CalculateRouteMatrixResponse } from "../models/models_0"; +import type { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; +import type { CalculateRouteMatrixRequest, CalculateRouteMatrixResponse } from "../models/models_0"; import { CalculateRouteMatrix } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-routes/src/commands/CalculateRoutesCommand.ts b/clients/client-geo-routes/src/commands/CalculateRoutesCommand.ts index 35d153373953e..939bbb7b63641 100644 --- a/clients/client-geo-routes/src/commands/CalculateRoutesCommand.ts +++ b/clients/client-geo-routes/src/commands/CalculateRoutesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; -import { CalculateRoutesRequest, CalculateRoutesResponse } from "../models/models_0"; +import type { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; +import type { CalculateRoutesRequest, CalculateRoutesResponse } from "../models/models_0"; import { CalculateRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-routes/src/commands/OptimizeWaypointsCommand.ts b/clients/client-geo-routes/src/commands/OptimizeWaypointsCommand.ts index 36958b3e9a6cf..7d5efad2c2f52 100644 --- a/clients/client-geo-routes/src/commands/OptimizeWaypointsCommand.ts +++ b/clients/client-geo-routes/src/commands/OptimizeWaypointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; -import { OptimizeWaypointsRequest, OptimizeWaypointsResponse } from "../models/models_0"; +import type { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; +import type { OptimizeWaypointsRequest, OptimizeWaypointsResponse } from "../models/models_0"; import { OptimizeWaypoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-routes/src/commands/SnapToRoadsCommand.ts b/clients/client-geo-routes/src/commands/SnapToRoadsCommand.ts index c8ef795aac165..265050415e680 100644 --- a/clients/client-geo-routes/src/commands/SnapToRoadsCommand.ts +++ b/clients/client-geo-routes/src/commands/SnapToRoadsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; -import { SnapToRoadsRequest, SnapToRoadsResponse } from "../models/models_0"; +import type { GeoRoutesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GeoRoutesClient"; +import type { SnapToRoadsRequest, SnapToRoadsResponse } from "../models/models_0"; import { SnapToRoads } from "../schemas/schemas_0"; /** diff --git a/clients/client-geo-routes/src/endpoint/EndpointParameters.ts b/clients/client-geo-routes/src/endpoint/EndpointParameters.ts index 437d04465669f..a90bc9d9d630b 100644 --- a/clients/client-geo-routes/src/endpoint/EndpointParameters.ts +++ b/clients/client-geo-routes/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-geo-routes/src/endpoint/endpointResolver.ts b/clients/client-geo-routes/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-geo-routes/src/endpoint/endpointResolver.ts +++ b/clients/client-geo-routes/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-geo-routes/src/extensionConfiguration.ts b/clients/client-geo-routes/src/extensionConfiguration.ts index 3a0008f4c8d50..e8ffa54990ab9 100644 --- a/clients/client-geo-routes/src/extensionConfiguration.ts +++ b/clients/client-geo-routes/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-geo-routes/src/models/GeoRoutesServiceException.ts b/clients/client-geo-routes/src/models/GeoRoutesServiceException.ts index a776126d3abdf..9110df51aa408 100644 --- a/clients/client-geo-routes/src/models/GeoRoutesServiceException.ts +++ b/clients/client-geo-routes/src/models/GeoRoutesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-geo-routes/src/models/errors.ts b/clients/client-geo-routes/src/models/errors.ts index fd4c11a8d3ad3..de787bfae4172 100644 --- a/clients/client-geo-routes/src/models/errors.ts +++ b/clients/client-geo-routes/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { GeoRoutesServiceException as __BaseException } from "./GeoRoutesServiceException"; diff --git a/clients/client-geo-routes/src/runtimeConfig.browser.ts b/clients/client-geo-routes/src/runtimeConfig.browser.ts index 9613e80792502..129a3fb841947 100644 --- a/clients/client-geo-routes/src/runtimeConfig.browser.ts +++ b/clients/client-geo-routes/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GeoRoutesClientConfig } from "./GeoRoutesClient"; + +import type { GeoRoutesClientConfig } from "./GeoRoutesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-geo-routes/src/runtimeConfig.native.ts b/clients/client-geo-routes/src/runtimeConfig.native.ts index 2f86e6172ed03..1e4e7452abe8b 100644 --- a/clients/client-geo-routes/src/runtimeConfig.native.ts +++ b/clients/client-geo-routes/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GeoRoutesClientConfig } from "./GeoRoutesClient"; +import type { GeoRoutesClientConfig } from "./GeoRoutesClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-geo-routes/src/runtimeConfig.shared.ts b/clients/client-geo-routes/src/runtimeConfig.shared.ts index 3d54c03eee74d..b943d5ec30e11 100644 --- a/clients/client-geo-routes/src/runtimeConfig.shared.ts +++ b/clients/client-geo-routes/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGeoRoutesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GeoRoutesClientConfig } from "./GeoRoutesClient"; +import type { GeoRoutesClientConfig } from "./GeoRoutesClient"; /** * @internal diff --git a/clients/client-geo-routes/src/runtimeConfig.ts b/clients/client-geo-routes/src/runtimeConfig.ts index ca718727c3e92..47ccc917f8ff6 100644 --- a/clients/client-geo-routes/src/runtimeConfig.ts +++ b/clients/client-geo-routes/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GeoRoutesClientConfig } from "./GeoRoutesClient"; + +import type { GeoRoutesClientConfig } from "./GeoRoutesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-geo-routes/src/runtimeExtensions.ts b/clients/client-geo-routes/src/runtimeExtensions.ts index e31dc0f408932..4900fdffe00c8 100644 --- a/clients/client-geo-routes/src/runtimeExtensions.ts +++ b/clients/client-geo-routes/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GeoRoutesExtensionConfiguration } from "./extensionConfiguration"; +import type { GeoRoutesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-geo-routes/src/schemas/schemas_0.ts b/clients/client-geo-routes/src/schemas/schemas_0.ts index e5cc0c9ec4471..c346d620862d1 100644 --- a/clients/client-geo-routes/src/schemas/schemas_0.ts +++ b/clients/client-geo-routes/src/schemas/schemas_0.ts @@ -641,7 +641,7 @@ const n0 = "com.amazonaws.georoutes"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-glacier/package.json b/clients/client-glacier/package.json index ba2c55fc02ad2..9a8909016987e 100644 --- a/clients/client-glacier/package.json +++ b/clients/client-glacier/package.json @@ -35,26 +35,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-glacier/src/Glacier.ts b/clients/client-glacier/src/Glacier.ts index f36f05c8fa75d..69af83a5874c4 100644 --- a/clients/client-glacier/src/Glacier.ts +++ b/clients/client-glacier/src/Glacier.ts @@ -1,145 +1,165 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { + type AbortMultipartUploadCommandInput, + type AbortMultipartUploadCommandOutput, AbortMultipartUploadCommand, - AbortMultipartUploadCommandInput, - AbortMultipartUploadCommandOutput, } from "./commands/AbortMultipartUploadCommand"; import { + type AbortVaultLockCommandInput, + type AbortVaultLockCommandOutput, AbortVaultLockCommand, - AbortVaultLockCommandInput, - AbortVaultLockCommandOutput, } from "./commands/AbortVaultLockCommand"; import { + type AddTagsToVaultCommandInput, + type AddTagsToVaultCommandOutput, AddTagsToVaultCommand, - AddTagsToVaultCommandInput, - AddTagsToVaultCommandOutput, } from "./commands/AddTagsToVaultCommand"; import { + type CompleteMultipartUploadCommandInput, + type CompleteMultipartUploadCommandOutput, CompleteMultipartUploadCommand, - CompleteMultipartUploadCommandInput, - CompleteMultipartUploadCommandOutput, } from "./commands/CompleteMultipartUploadCommand"; import { + type CompleteVaultLockCommandInput, + type CompleteVaultLockCommandOutput, CompleteVaultLockCommand, - CompleteVaultLockCommandInput, - CompleteVaultLockCommandOutput, } from "./commands/CompleteVaultLockCommand"; -import { CreateVaultCommand, CreateVaultCommandInput, CreateVaultCommandOutput } from "./commands/CreateVaultCommand"; import { + type CreateVaultCommandInput, + type CreateVaultCommandOutput, + CreateVaultCommand, +} from "./commands/CreateVaultCommand"; +import { + type DeleteArchiveCommandInput, + type DeleteArchiveCommandOutput, DeleteArchiveCommand, - DeleteArchiveCommandInput, - DeleteArchiveCommandOutput, } from "./commands/DeleteArchiveCommand"; import { + type DeleteVaultAccessPolicyCommandInput, + type DeleteVaultAccessPolicyCommandOutput, DeleteVaultAccessPolicyCommand, - DeleteVaultAccessPolicyCommandInput, - DeleteVaultAccessPolicyCommandOutput, } from "./commands/DeleteVaultAccessPolicyCommand"; -import { DeleteVaultCommand, DeleteVaultCommandInput, DeleteVaultCommandOutput } from "./commands/DeleteVaultCommand"; import { + type DeleteVaultCommandInput, + type DeleteVaultCommandOutput, + DeleteVaultCommand, +} from "./commands/DeleteVaultCommand"; +import { + type DeleteVaultNotificationsCommandInput, + type DeleteVaultNotificationsCommandOutput, DeleteVaultNotificationsCommand, - DeleteVaultNotificationsCommandInput, - DeleteVaultNotificationsCommandOutput, } from "./commands/DeleteVaultNotificationsCommand"; -import { DescribeJobCommand, DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand"; import { + type DescribeJobCommandInput, + type DescribeJobCommandOutput, + DescribeJobCommand, +} from "./commands/DescribeJobCommand"; +import { + type DescribeVaultCommandInput, + type DescribeVaultCommandOutput, DescribeVaultCommand, - DescribeVaultCommandInput, - DescribeVaultCommandOutput, } from "./commands/DescribeVaultCommand"; import { + type GetDataRetrievalPolicyCommandInput, + type GetDataRetrievalPolicyCommandOutput, GetDataRetrievalPolicyCommand, - GetDataRetrievalPolicyCommandInput, - GetDataRetrievalPolicyCommandOutput, } from "./commands/GetDataRetrievalPolicyCommand"; import { + type GetJobOutputCommandInput, + type GetJobOutputCommandOutput, GetJobOutputCommand, - GetJobOutputCommandInput, - GetJobOutputCommandOutput, } from "./commands/GetJobOutputCommand"; import { + type GetVaultAccessPolicyCommandInput, + type GetVaultAccessPolicyCommandOutput, GetVaultAccessPolicyCommand, - GetVaultAccessPolicyCommandInput, - GetVaultAccessPolicyCommandOutput, } from "./commands/GetVaultAccessPolicyCommand"; import { + type GetVaultLockCommandInput, + type GetVaultLockCommandOutput, GetVaultLockCommand, - GetVaultLockCommandInput, - GetVaultLockCommandOutput, } from "./commands/GetVaultLockCommand"; import { + type GetVaultNotificationsCommandInput, + type GetVaultNotificationsCommandOutput, GetVaultNotificationsCommand, - GetVaultNotificationsCommandInput, - GetVaultNotificationsCommandOutput, } from "./commands/GetVaultNotificationsCommand"; -import { InitiateJobCommand, InitiateJobCommandInput, InitiateJobCommandOutput } from "./commands/InitiateJobCommand"; import { + type InitiateJobCommandInput, + type InitiateJobCommandOutput, + InitiateJobCommand, +} from "./commands/InitiateJobCommand"; +import { + type InitiateMultipartUploadCommandInput, + type InitiateMultipartUploadCommandOutput, InitiateMultipartUploadCommand, - InitiateMultipartUploadCommandInput, - InitiateMultipartUploadCommandOutput, } from "./commands/InitiateMultipartUploadCommand"; import { + type InitiateVaultLockCommandInput, + type InitiateVaultLockCommandOutput, InitiateVaultLockCommand, - InitiateVaultLockCommandInput, - InitiateVaultLockCommandOutput, } from "./commands/InitiateVaultLockCommand"; -import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand"; +import { type ListJobsCommandInput, type ListJobsCommandOutput, ListJobsCommand } from "./commands/ListJobsCommand"; import { + type ListMultipartUploadsCommandInput, + type ListMultipartUploadsCommandOutput, ListMultipartUploadsCommand, - ListMultipartUploadsCommandInput, - ListMultipartUploadsCommandOutput, } from "./commands/ListMultipartUploadsCommand"; -import { ListPartsCommand, ListPartsCommandInput, ListPartsCommandOutput } from "./commands/ListPartsCommand"; +import { type ListPartsCommandInput, type ListPartsCommandOutput, ListPartsCommand } from "./commands/ListPartsCommand"; import { + type ListProvisionedCapacityCommandInput, + type ListProvisionedCapacityCommandOutput, ListProvisionedCapacityCommand, - ListProvisionedCapacityCommandInput, - ListProvisionedCapacityCommandOutput, } from "./commands/ListProvisionedCapacityCommand"; import { + type ListTagsForVaultCommandInput, + type ListTagsForVaultCommandOutput, ListTagsForVaultCommand, - ListTagsForVaultCommandInput, - ListTagsForVaultCommandOutput, } from "./commands/ListTagsForVaultCommand"; -import { ListVaultsCommand, ListVaultsCommandInput, ListVaultsCommandOutput } from "./commands/ListVaultsCommand"; import { + type ListVaultsCommandInput, + type ListVaultsCommandOutput, + ListVaultsCommand, +} from "./commands/ListVaultsCommand"; +import { + type PurchaseProvisionedCapacityCommandInput, + type PurchaseProvisionedCapacityCommandOutput, PurchaseProvisionedCapacityCommand, - PurchaseProvisionedCapacityCommandInput, - PurchaseProvisionedCapacityCommandOutput, } from "./commands/PurchaseProvisionedCapacityCommand"; import { + type RemoveTagsFromVaultCommandInput, + type RemoveTagsFromVaultCommandOutput, RemoveTagsFromVaultCommand, - RemoveTagsFromVaultCommandInput, - RemoveTagsFromVaultCommandOutput, } from "./commands/RemoveTagsFromVaultCommand"; import { + type SetDataRetrievalPolicyCommandInput, + type SetDataRetrievalPolicyCommandOutput, SetDataRetrievalPolicyCommand, - SetDataRetrievalPolicyCommandInput, - SetDataRetrievalPolicyCommandOutput, } from "./commands/SetDataRetrievalPolicyCommand"; import { + type SetVaultAccessPolicyCommandInput, + type SetVaultAccessPolicyCommandOutput, SetVaultAccessPolicyCommand, - SetVaultAccessPolicyCommandInput, - SetVaultAccessPolicyCommandOutput, } from "./commands/SetVaultAccessPolicyCommand"; import { + type SetVaultNotificationsCommandInput, + type SetVaultNotificationsCommandOutput, SetVaultNotificationsCommand, - SetVaultNotificationsCommandInput, - SetVaultNotificationsCommandOutput, } from "./commands/SetVaultNotificationsCommand"; import { + type UploadArchiveCommandInput, + type UploadArchiveCommandOutput, UploadArchiveCommand, - UploadArchiveCommandInput, - UploadArchiveCommandOutput, } from "./commands/UploadArchiveCommand"; import { + type UploadMultipartPartCommandInput, + type UploadMultipartPartCommandOutput, UploadMultipartPartCommand, - UploadMultipartPartCommandInput, - UploadMultipartPartCommandOutput, } from "./commands/UploadMultipartPartCommand"; -import { GlacierClient, GlacierClientConfig } from "./GlacierClient"; +import { GlacierClient } from "./GlacierClient"; const commands = { AbortMultipartUploadCommand, diff --git a/clients/client-glacier/src/GlacierClient.ts b/clients/client-glacier/src/GlacierClient.ts index 7b9323f53888d..8a4f14df8563c 100644 --- a/clients/client-glacier/src/GlacierClient.ts +++ b/clients/client-glacier/src/GlacierClient.ts @@ -1,20 +1,20 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { getGlacierPlugin } from "@aws-sdk/middleware-sdk-glacier"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -22,122 +22,137 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, HttpRequest as __HttpRequest, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGlacierHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { +import type { AbortMultipartUploadCommandInput, AbortMultipartUploadCommandOutput, } from "./commands/AbortMultipartUploadCommand"; -import { AbortVaultLockCommandInput, AbortVaultLockCommandOutput } from "./commands/AbortVaultLockCommand"; -import { AddTagsToVaultCommandInput, AddTagsToVaultCommandOutput } from "./commands/AddTagsToVaultCommand"; -import { +import type { AbortVaultLockCommandInput, AbortVaultLockCommandOutput } from "./commands/AbortVaultLockCommand"; +import type { AddTagsToVaultCommandInput, AddTagsToVaultCommandOutput } from "./commands/AddTagsToVaultCommand"; +import type { CompleteMultipartUploadCommandInput, CompleteMultipartUploadCommandOutput, } from "./commands/CompleteMultipartUploadCommand"; -import { CompleteVaultLockCommandInput, CompleteVaultLockCommandOutput } from "./commands/CompleteVaultLockCommand"; -import { CreateVaultCommandInput, CreateVaultCommandOutput } from "./commands/CreateVaultCommand"; -import { DeleteArchiveCommandInput, DeleteArchiveCommandOutput } from "./commands/DeleteArchiveCommand"; -import { +import type { + CompleteVaultLockCommandInput, + CompleteVaultLockCommandOutput, +} from "./commands/CompleteVaultLockCommand"; +import type { CreateVaultCommandInput, CreateVaultCommandOutput } from "./commands/CreateVaultCommand"; +import type { DeleteArchiveCommandInput, DeleteArchiveCommandOutput } from "./commands/DeleteArchiveCommand"; +import type { DeleteVaultAccessPolicyCommandInput, DeleteVaultAccessPolicyCommandOutput, } from "./commands/DeleteVaultAccessPolicyCommand"; -import { DeleteVaultCommandInput, DeleteVaultCommandOutput } from "./commands/DeleteVaultCommand"; -import { +import type { DeleteVaultCommandInput, DeleteVaultCommandOutput } from "./commands/DeleteVaultCommand"; +import type { DeleteVaultNotificationsCommandInput, DeleteVaultNotificationsCommandOutput, } from "./commands/DeleteVaultNotificationsCommand"; -import { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand"; -import { DescribeVaultCommandInput, DescribeVaultCommandOutput } from "./commands/DescribeVaultCommand"; -import { +import type { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand"; +import type { DescribeVaultCommandInput, DescribeVaultCommandOutput } from "./commands/DescribeVaultCommand"; +import type { GetDataRetrievalPolicyCommandInput, GetDataRetrievalPolicyCommandOutput, } from "./commands/GetDataRetrievalPolicyCommand"; -import { GetJobOutputCommandInput, GetJobOutputCommandOutput } from "./commands/GetJobOutputCommand"; -import { +import type { GetJobOutputCommandInput, GetJobOutputCommandOutput } from "./commands/GetJobOutputCommand"; +import type { GetVaultAccessPolicyCommandInput, GetVaultAccessPolicyCommandOutput, } from "./commands/GetVaultAccessPolicyCommand"; -import { GetVaultLockCommandInput, GetVaultLockCommandOutput } from "./commands/GetVaultLockCommand"; -import { +import type { GetVaultLockCommandInput, GetVaultLockCommandOutput } from "./commands/GetVaultLockCommand"; +import type { GetVaultNotificationsCommandInput, GetVaultNotificationsCommandOutput, } from "./commands/GetVaultNotificationsCommand"; -import { InitiateJobCommandInput, InitiateJobCommandOutput } from "./commands/InitiateJobCommand"; -import { +import type { InitiateJobCommandInput, InitiateJobCommandOutput } from "./commands/InitiateJobCommand"; +import type { InitiateMultipartUploadCommandInput, InitiateMultipartUploadCommandOutput, } from "./commands/InitiateMultipartUploadCommand"; -import { InitiateVaultLockCommandInput, InitiateVaultLockCommandOutput } from "./commands/InitiateVaultLockCommand"; -import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand"; -import { +import type { + InitiateVaultLockCommandInput, + InitiateVaultLockCommandOutput, +} from "./commands/InitiateVaultLockCommand"; +import type { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand"; +import type { ListMultipartUploadsCommandInput, ListMultipartUploadsCommandOutput, } from "./commands/ListMultipartUploadsCommand"; -import { ListPartsCommandInput, ListPartsCommandOutput } from "./commands/ListPartsCommand"; -import { +import type { ListPartsCommandInput, ListPartsCommandOutput } from "./commands/ListPartsCommand"; +import type { ListProvisionedCapacityCommandInput, ListProvisionedCapacityCommandOutput, } from "./commands/ListProvisionedCapacityCommand"; -import { ListTagsForVaultCommandInput, ListTagsForVaultCommandOutput } from "./commands/ListTagsForVaultCommand"; -import { ListVaultsCommandInput, ListVaultsCommandOutput } from "./commands/ListVaultsCommand"; -import { +import type { ListTagsForVaultCommandInput, ListTagsForVaultCommandOutput } from "./commands/ListTagsForVaultCommand"; +import type { ListVaultsCommandInput, ListVaultsCommandOutput } from "./commands/ListVaultsCommand"; +import type { PurchaseProvisionedCapacityCommandInput, PurchaseProvisionedCapacityCommandOutput, } from "./commands/PurchaseProvisionedCapacityCommand"; -import { +import type { RemoveTagsFromVaultCommandInput, RemoveTagsFromVaultCommandOutput, } from "./commands/RemoveTagsFromVaultCommand"; -import { +import type { SetDataRetrievalPolicyCommandInput, SetDataRetrievalPolicyCommandOutput, } from "./commands/SetDataRetrievalPolicyCommand"; -import { +import type { SetVaultAccessPolicyCommandInput, SetVaultAccessPolicyCommandOutput, } from "./commands/SetVaultAccessPolicyCommand"; -import { +import type { SetVaultNotificationsCommandInput, SetVaultNotificationsCommandOutput, } from "./commands/SetVaultNotificationsCommand"; -import { UploadArchiveCommandInput, UploadArchiveCommandOutput } from "./commands/UploadArchiveCommand"; -import { +import type { UploadArchiveCommandInput, UploadArchiveCommandOutput } from "./commands/UploadArchiveCommand"; +import type { UploadMultipartPartCommandInput, UploadMultipartPartCommandOutput, } from "./commands/UploadMultipartPartCommand"; @@ -148,7 +163,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-glacier/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-glacier/src/auth/httpAuthExtensionConfiguration.ts index 290227efece59..57b410f856e69 100644 --- a/clients/client-glacier/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-glacier/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GlacierHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GlacierHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-glacier/src/auth/httpAuthSchemeProvider.ts b/clients/client-glacier/src/auth/httpAuthSchemeProvider.ts index 71d694abe435a..5e174f7126926 100644 --- a/clients/client-glacier/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-glacier/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GlacierClientConfig, GlacierClientResolvedConfig } from "../GlacierClient"; +import { type GlacierClientResolvedConfig, GlacierClientConfig } from "../GlacierClient"; /** * @internal diff --git a/clients/client-glacier/src/commands/AbortMultipartUploadCommand.ts b/clients/client-glacier/src/commands/AbortMultipartUploadCommand.ts index b74993e31f598..ce5eb32dba3f4 100644 --- a/clients/client-glacier/src/commands/AbortMultipartUploadCommand.ts +++ b/clients/client-glacier/src/commands/AbortMultipartUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { AbortMultipartUploadInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { AbortMultipartUploadInput } from "../models/models_0"; import { AbortMultipartUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/AbortVaultLockCommand.ts b/clients/client-glacier/src/commands/AbortVaultLockCommand.ts index cecd914bf0201..5ad2b2d35c607 100644 --- a/clients/client-glacier/src/commands/AbortVaultLockCommand.ts +++ b/clients/client-glacier/src/commands/AbortVaultLockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { AbortVaultLockInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { AbortVaultLockInput } from "../models/models_0"; import { AbortVaultLock } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/AddTagsToVaultCommand.ts b/clients/client-glacier/src/commands/AddTagsToVaultCommand.ts index 460fe1dd3543e..55da137843304 100644 --- a/clients/client-glacier/src/commands/AddTagsToVaultCommand.ts +++ b/clients/client-glacier/src/commands/AddTagsToVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { AddTagsToVaultInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { AddTagsToVaultInput } from "../models/models_0"; import { AddTagsToVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/CompleteMultipartUploadCommand.ts b/clients/client-glacier/src/commands/CompleteMultipartUploadCommand.ts index 08ac49bbc4089..8625c03f9124d 100644 --- a/clients/client-glacier/src/commands/CompleteMultipartUploadCommand.ts +++ b/clients/client-glacier/src/commands/CompleteMultipartUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ArchiveCreationOutput, CompleteMultipartUploadInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { ArchiveCreationOutput, CompleteMultipartUploadInput } from "../models/models_0"; import { CompleteMultipartUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/CompleteVaultLockCommand.ts b/clients/client-glacier/src/commands/CompleteVaultLockCommand.ts index 7dbca93b1854f..c64facc93b491 100644 --- a/clients/client-glacier/src/commands/CompleteVaultLockCommand.ts +++ b/clients/client-glacier/src/commands/CompleteVaultLockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { CompleteVaultLockInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { CompleteVaultLockInput } from "../models/models_0"; import { CompleteVaultLock } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/CreateVaultCommand.ts b/clients/client-glacier/src/commands/CreateVaultCommand.ts index f5d498b2a3083..be0c0082d3676 100644 --- a/clients/client-glacier/src/commands/CreateVaultCommand.ts +++ b/clients/client-glacier/src/commands/CreateVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { CreateVaultInput, CreateVaultOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { CreateVaultInput, CreateVaultOutput } from "../models/models_0"; import { CreateVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/DeleteArchiveCommand.ts b/clients/client-glacier/src/commands/DeleteArchiveCommand.ts index d3aed9c520dbe..785332eaf8160 100644 --- a/clients/client-glacier/src/commands/DeleteArchiveCommand.ts +++ b/clients/client-glacier/src/commands/DeleteArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { DeleteArchiveInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { DeleteArchiveInput } from "../models/models_0"; import { DeleteArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/DeleteVaultAccessPolicyCommand.ts b/clients/client-glacier/src/commands/DeleteVaultAccessPolicyCommand.ts index a12b411e83e54..d0c04d2b7a6b5 100644 --- a/clients/client-glacier/src/commands/DeleteVaultAccessPolicyCommand.ts +++ b/clients/client-glacier/src/commands/DeleteVaultAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { DeleteVaultAccessPolicyInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { DeleteVaultAccessPolicyInput } from "../models/models_0"; import { DeleteVaultAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/DeleteVaultCommand.ts b/clients/client-glacier/src/commands/DeleteVaultCommand.ts index f5c763332b633..a8cb96810b506 100644 --- a/clients/client-glacier/src/commands/DeleteVaultCommand.ts +++ b/clients/client-glacier/src/commands/DeleteVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { DeleteVaultInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { DeleteVaultInput } from "../models/models_0"; import { DeleteVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/DeleteVaultNotificationsCommand.ts b/clients/client-glacier/src/commands/DeleteVaultNotificationsCommand.ts index 3fdff638dab9a..fccbbe78a0392 100644 --- a/clients/client-glacier/src/commands/DeleteVaultNotificationsCommand.ts +++ b/clients/client-glacier/src/commands/DeleteVaultNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { DeleteVaultNotificationsInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { DeleteVaultNotificationsInput } from "../models/models_0"; import { DeleteVaultNotifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/DescribeJobCommand.ts b/clients/client-glacier/src/commands/DescribeJobCommand.ts index 21577063c7bb0..845237b98619d 100644 --- a/clients/client-glacier/src/commands/DescribeJobCommand.ts +++ b/clients/client-glacier/src/commands/DescribeJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { DescribeJobInput, GlacierJobDescription } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { DescribeJobInput, GlacierJobDescription } from "../models/models_0"; import { DescribeJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/DescribeVaultCommand.ts b/clients/client-glacier/src/commands/DescribeVaultCommand.ts index f08437574cdb4..9df9db5c3ceb8 100644 --- a/clients/client-glacier/src/commands/DescribeVaultCommand.ts +++ b/clients/client-glacier/src/commands/DescribeVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { DescribeVaultInput, DescribeVaultOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { DescribeVaultInput, DescribeVaultOutput } from "../models/models_0"; import { DescribeVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/GetDataRetrievalPolicyCommand.ts b/clients/client-glacier/src/commands/GetDataRetrievalPolicyCommand.ts index 8e4c8d98e2758..cfc6fffdeb871 100644 --- a/clients/client-glacier/src/commands/GetDataRetrievalPolicyCommand.ts +++ b/clients/client-glacier/src/commands/GetDataRetrievalPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { GetDataRetrievalPolicyInput, GetDataRetrievalPolicyOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { GetDataRetrievalPolicyInput, GetDataRetrievalPolicyOutput } from "../models/models_0"; import { GetDataRetrievalPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/GetJobOutputCommand.ts b/clients/client-glacier/src/commands/GetJobOutputCommand.ts index 1c3b39f573eb5..008516449fff6 100644 --- a/clients/client-glacier/src/commands/GetJobOutputCommand.ts +++ b/clients/client-glacier/src/commands/GetJobOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { GetJobOutputInput, GetJobOutputOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { GetJobOutputInput, GetJobOutputOutput } from "../models/models_0"; import { GetJobOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/GetVaultAccessPolicyCommand.ts b/clients/client-glacier/src/commands/GetVaultAccessPolicyCommand.ts index 6d6d02249f755..1858c00a4f5ac 100644 --- a/clients/client-glacier/src/commands/GetVaultAccessPolicyCommand.ts +++ b/clients/client-glacier/src/commands/GetVaultAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { GetVaultAccessPolicyInput, GetVaultAccessPolicyOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { GetVaultAccessPolicyInput, GetVaultAccessPolicyOutput } from "../models/models_0"; import { GetVaultAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/GetVaultLockCommand.ts b/clients/client-glacier/src/commands/GetVaultLockCommand.ts index 830083487abdf..db6fb7d3a904d 100644 --- a/clients/client-glacier/src/commands/GetVaultLockCommand.ts +++ b/clients/client-glacier/src/commands/GetVaultLockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { GetVaultLockInput, GetVaultLockOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { GetVaultLockInput, GetVaultLockOutput } from "../models/models_0"; import { GetVaultLock } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/GetVaultNotificationsCommand.ts b/clients/client-glacier/src/commands/GetVaultNotificationsCommand.ts index f42dfb57f5288..3ff5b6f86de11 100644 --- a/clients/client-glacier/src/commands/GetVaultNotificationsCommand.ts +++ b/clients/client-glacier/src/commands/GetVaultNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { GetVaultNotificationsInput, GetVaultNotificationsOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { GetVaultNotificationsInput, GetVaultNotificationsOutput } from "../models/models_0"; import { GetVaultNotifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/InitiateJobCommand.ts b/clients/client-glacier/src/commands/InitiateJobCommand.ts index 27cf048812dfe..a632e575e4611 100644 --- a/clients/client-glacier/src/commands/InitiateJobCommand.ts +++ b/clients/client-glacier/src/commands/InitiateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { InitiateJobInput, InitiateJobOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { InitiateJobInput, InitiateJobOutput } from "../models/models_0"; import { InitiateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/InitiateMultipartUploadCommand.ts b/clients/client-glacier/src/commands/InitiateMultipartUploadCommand.ts index afd22d80ceb0a..4296918cbd198 100644 --- a/clients/client-glacier/src/commands/InitiateMultipartUploadCommand.ts +++ b/clients/client-glacier/src/commands/InitiateMultipartUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { InitiateMultipartUploadInput, InitiateMultipartUploadOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { InitiateMultipartUploadInput, InitiateMultipartUploadOutput } from "../models/models_0"; import { InitiateMultipartUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/InitiateVaultLockCommand.ts b/clients/client-glacier/src/commands/InitiateVaultLockCommand.ts index d1961d71772a7..f90a1e819dcec 100644 --- a/clients/client-glacier/src/commands/InitiateVaultLockCommand.ts +++ b/clients/client-glacier/src/commands/InitiateVaultLockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { InitiateVaultLockInput, InitiateVaultLockOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { InitiateVaultLockInput, InitiateVaultLockOutput } from "../models/models_0"; import { InitiateVaultLock } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/ListJobsCommand.ts b/clients/client-glacier/src/commands/ListJobsCommand.ts index 56eef60bfd778..1b7ea1e04e18f 100644 --- a/clients/client-glacier/src/commands/ListJobsCommand.ts +++ b/clients/client-glacier/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ListJobsInput, ListJobsOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { ListJobsInput, ListJobsOutput } from "../models/models_0"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/ListMultipartUploadsCommand.ts b/clients/client-glacier/src/commands/ListMultipartUploadsCommand.ts index e8ecc3acd375f..c3ba61422b422 100644 --- a/clients/client-glacier/src/commands/ListMultipartUploadsCommand.ts +++ b/clients/client-glacier/src/commands/ListMultipartUploadsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ListMultipartUploadsInput, ListMultipartUploadsOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { ListMultipartUploadsInput, ListMultipartUploadsOutput } from "../models/models_0"; import { ListMultipartUploads } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/ListPartsCommand.ts b/clients/client-glacier/src/commands/ListPartsCommand.ts index 924dba6bb95e5..5dd09ad6b1693 100644 --- a/clients/client-glacier/src/commands/ListPartsCommand.ts +++ b/clients/client-glacier/src/commands/ListPartsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ListPartsInput, ListPartsOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { ListPartsInput, ListPartsOutput } from "../models/models_0"; import { ListParts } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/ListProvisionedCapacityCommand.ts b/clients/client-glacier/src/commands/ListProvisionedCapacityCommand.ts index 24eecc353950c..cce195d2ecb21 100644 --- a/clients/client-glacier/src/commands/ListProvisionedCapacityCommand.ts +++ b/clients/client-glacier/src/commands/ListProvisionedCapacityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ListProvisionedCapacityInput, ListProvisionedCapacityOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { ListProvisionedCapacityInput, ListProvisionedCapacityOutput } from "../models/models_0"; import { ListProvisionedCapacity } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/ListTagsForVaultCommand.ts b/clients/client-glacier/src/commands/ListTagsForVaultCommand.ts index 270d5c4fd1fc5..6a0cdd530a4a9 100644 --- a/clients/client-glacier/src/commands/ListTagsForVaultCommand.ts +++ b/clients/client-glacier/src/commands/ListTagsForVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ListTagsForVaultInput, ListTagsForVaultOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { ListTagsForVaultInput, ListTagsForVaultOutput } from "../models/models_0"; import { ListTagsForVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/ListVaultsCommand.ts b/clients/client-glacier/src/commands/ListVaultsCommand.ts index da43826e34537..0c0462aa38aeb 100644 --- a/clients/client-glacier/src/commands/ListVaultsCommand.ts +++ b/clients/client-glacier/src/commands/ListVaultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ListVaultsInput, ListVaultsOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { ListVaultsInput, ListVaultsOutput } from "../models/models_0"; import { ListVaults } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/PurchaseProvisionedCapacityCommand.ts b/clients/client-glacier/src/commands/PurchaseProvisionedCapacityCommand.ts index 1a8cc2afda33e..af159bd34fea8 100644 --- a/clients/client-glacier/src/commands/PurchaseProvisionedCapacityCommand.ts +++ b/clients/client-glacier/src/commands/PurchaseProvisionedCapacityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { PurchaseProvisionedCapacityInput, PurchaseProvisionedCapacityOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { PurchaseProvisionedCapacityInput, PurchaseProvisionedCapacityOutput } from "../models/models_0"; import { PurchaseProvisionedCapacity } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/RemoveTagsFromVaultCommand.ts b/clients/client-glacier/src/commands/RemoveTagsFromVaultCommand.ts index 552194b3e9be7..f4ad00b76c300 100644 --- a/clients/client-glacier/src/commands/RemoveTagsFromVaultCommand.ts +++ b/clients/client-glacier/src/commands/RemoveTagsFromVaultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { RemoveTagsFromVaultInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { RemoveTagsFromVaultInput } from "../models/models_0"; import { RemoveTagsFromVault } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/SetDataRetrievalPolicyCommand.ts b/clients/client-glacier/src/commands/SetDataRetrievalPolicyCommand.ts index 4ad68159e3b43..c31256a8660b9 100644 --- a/clients/client-glacier/src/commands/SetDataRetrievalPolicyCommand.ts +++ b/clients/client-glacier/src/commands/SetDataRetrievalPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { SetDataRetrievalPolicyInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { SetDataRetrievalPolicyInput } from "../models/models_0"; import { SetDataRetrievalPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/SetVaultAccessPolicyCommand.ts b/clients/client-glacier/src/commands/SetVaultAccessPolicyCommand.ts index 7b0dc9c9299f3..24f98cf7bd206 100644 --- a/clients/client-glacier/src/commands/SetVaultAccessPolicyCommand.ts +++ b/clients/client-glacier/src/commands/SetVaultAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { SetVaultAccessPolicyInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { SetVaultAccessPolicyInput } from "../models/models_0"; import { SetVaultAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/SetVaultNotificationsCommand.ts b/clients/client-glacier/src/commands/SetVaultNotificationsCommand.ts index 27130ea3e0c71..ba924091d5cfe 100644 --- a/clients/client-glacier/src/commands/SetVaultNotificationsCommand.ts +++ b/clients/client-glacier/src/commands/SetVaultNotificationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { SetVaultNotificationsInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { SetVaultNotificationsInput } from "../models/models_0"; import { SetVaultNotifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/UploadArchiveCommand.ts b/clients/client-glacier/src/commands/UploadArchiveCommand.ts index 865ba312483fa..579df3faa5d32 100644 --- a/clients/client-glacier/src/commands/UploadArchiveCommand.ts +++ b/clients/client-glacier/src/commands/UploadArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ArchiveCreationOutput, UploadArchiveInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { ArchiveCreationOutput, UploadArchiveInput } from "../models/models_0"; import { UploadArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/commands/UploadMultipartPartCommand.ts b/clients/client-glacier/src/commands/UploadMultipartPartCommand.ts index e980f9bd06e80..94fe8e54a0d94 100644 --- a/clients/client-glacier/src/commands/UploadMultipartPartCommand.ts +++ b/clients/client-glacier/src/commands/UploadMultipartPartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { UploadMultipartPartInput, UploadMultipartPartOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { UploadMultipartPartInput, UploadMultipartPartOutput } from "../models/models_0"; import { UploadMultipartPart } from "../schemas/schemas_0"; /** diff --git a/clients/client-glacier/src/endpoint/EndpointParameters.ts b/clients/client-glacier/src/endpoint/EndpointParameters.ts index 461c6bf68ed21..026d9fd8a304d 100644 --- a/clients/client-glacier/src/endpoint/EndpointParameters.ts +++ b/clients/client-glacier/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-glacier/src/endpoint/endpointResolver.ts b/clients/client-glacier/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-glacier/src/endpoint/endpointResolver.ts +++ b/clients/client-glacier/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-glacier/src/extensionConfiguration.ts b/clients/client-glacier/src/extensionConfiguration.ts index 172e2be4ce113..6ae04d6123000 100644 --- a/clients/client-glacier/src/extensionConfiguration.ts +++ b/clients/client-glacier/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-glacier/src/models/GlacierServiceException.ts b/clients/client-glacier/src/models/GlacierServiceException.ts index 06563bd1e2675..1eaacf890dec6 100644 --- a/clients/client-glacier/src/models/GlacierServiceException.ts +++ b/clients/client-glacier/src/models/GlacierServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-glacier/src/models/errors.ts b/clients/client-glacier/src/models/errors.ts index f406dc58c08b1..463fac8b68765 100644 --- a/clients/client-glacier/src/models/errors.ts +++ b/clients/client-glacier/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { GlacierServiceException as __BaseException } from "./GlacierServiceException"; diff --git a/clients/client-glacier/src/models/models_0.ts b/clients/client-glacier/src/models/models_0.ts index 72934c11dcdb2..cef17663622a6 100644 --- a/clients/client-glacier/src/models/models_0.ts +++ b/clients/client-glacier/src/models/models_0.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { StreamingBlobTypes } from "@smithy/types"; +import type { StreamingBlobTypes } from "@smithy/types"; -import { +import type { ActionCode, CannedACL, EncryptionType, diff --git a/clients/client-glacier/src/pagination/Interfaces.ts b/clients/client-glacier/src/pagination/Interfaces.ts index f780105234120..a6a4739d6572e 100644 --- a/clients/client-glacier/src/pagination/Interfaces.ts +++ b/clients/client-glacier/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { GlacierClient } from "../GlacierClient"; diff --git a/clients/client-glacier/src/pagination/ListJobsPaginator.ts b/clients/client-glacier/src/pagination/ListJobsPaginator.ts index 483583cd1c9cb..f2d9c0ac821ab 100644 --- a/clients/client-glacier/src/pagination/ListJobsPaginator.ts +++ b/clients/client-glacier/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { GlacierClient } from "../GlacierClient"; diff --git a/clients/client-glacier/src/pagination/ListMultipartUploadsPaginator.ts b/clients/client-glacier/src/pagination/ListMultipartUploadsPaginator.ts index 071287f871e48..b5ce81421a2ae 100644 --- a/clients/client-glacier/src/pagination/ListMultipartUploadsPaginator.ts +++ b/clients/client-glacier/src/pagination/ListMultipartUploadsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMultipartUploadsCommand, diff --git a/clients/client-glacier/src/pagination/ListPartsPaginator.ts b/clients/client-glacier/src/pagination/ListPartsPaginator.ts index 1370dfa8c55a0..e4a4798007e30 100644 --- a/clients/client-glacier/src/pagination/ListPartsPaginator.ts +++ b/clients/client-glacier/src/pagination/ListPartsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPartsCommand, ListPartsCommandInput, ListPartsCommandOutput } from "../commands/ListPartsCommand"; import { GlacierClient } from "../GlacierClient"; diff --git a/clients/client-glacier/src/pagination/ListVaultsPaginator.ts b/clients/client-glacier/src/pagination/ListVaultsPaginator.ts index e6c6885305ed6..b9f74e8f6e27b 100644 --- a/clients/client-glacier/src/pagination/ListVaultsPaginator.ts +++ b/clients/client-glacier/src/pagination/ListVaultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVaultsCommand, ListVaultsCommandInput, ListVaultsCommandOutput } from "../commands/ListVaultsCommand"; import { GlacierClient } from "../GlacierClient"; diff --git a/clients/client-glacier/src/runtimeConfig.browser.ts b/clients/client-glacier/src/runtimeConfig.browser.ts index c7ecc0a432e2f..78d52b1bd73b3 100644 --- a/clients/client-glacier/src/runtimeConfig.browser.ts +++ b/clients/client-glacier/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlacierClientConfig } from "./GlacierClient"; + +import type { GlacierClientConfig } from "./GlacierClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-glacier/src/runtimeConfig.native.ts b/clients/client-glacier/src/runtimeConfig.native.ts index e290858d9b73e..bc7c832873429 100644 --- a/clients/client-glacier/src/runtimeConfig.native.ts +++ b/clients/client-glacier/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GlacierClientConfig } from "./GlacierClient"; +import type { GlacierClientConfig } from "./GlacierClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-glacier/src/runtimeConfig.shared.ts b/clients/client-glacier/src/runtimeConfig.shared.ts index 1ebbe435ae5d3..190e1cbd638f6 100644 --- a/clients/client-glacier/src/runtimeConfig.shared.ts +++ b/clients/client-glacier/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGlacierHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GlacierClientConfig } from "./GlacierClient"; +import type { GlacierClientConfig } from "./GlacierClient"; /** * @internal diff --git a/clients/client-glacier/src/runtimeConfig.ts b/clients/client-glacier/src/runtimeConfig.ts index c3cc46911e233..f544bfcf20218 100644 --- a/clients/client-glacier/src/runtimeConfig.ts +++ b/clients/client-glacier/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlacierClientConfig } from "./GlacierClient"; + +import type { GlacierClientConfig } from "./GlacierClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-glacier/src/runtimeExtensions.ts b/clients/client-glacier/src/runtimeExtensions.ts index 6e69df2ccbc55..5b0c83d0fe00b 100644 --- a/clients/client-glacier/src/runtimeExtensions.ts +++ b/clients/client-glacier/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GlacierExtensionConfiguration } from "./extensionConfiguration"; +import type { GlacierExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-glacier/src/schemas/schemas_0.ts b/clients/client-glacier/src/schemas/schemas_0.ts index 67abe285c5056..c22d38459f3e4 100644 --- a/clients/client-glacier/src/schemas/schemas_0.ts +++ b/clients/client-glacier/src/schemas/schemas_0.ts @@ -249,7 +249,7 @@ const n0 = "com.amazonaws.glacier"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-glacier/src/waiters/waitForVaultExists.ts b/clients/client-glacier/src/waiters/waitForVaultExists.ts index 59e470afa0c10..091247fd2c51e 100644 --- a/clients/client-glacier/src/waiters/waitForVaultExists.ts +++ b/clients/client-glacier/src/waiters/waitForVaultExists.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { checkExceptions, createWaiter, WaiterConfiguration, WaiterResult, WaiterState } from "@smithy/util-waiter"; -import { DescribeVaultCommand, DescribeVaultCommandInput } from "../commands/DescribeVaultCommand"; +import { type DescribeVaultCommandInput, DescribeVaultCommand } from "../commands/DescribeVaultCommand"; import { GlacierClient } from "../GlacierClient"; const checkState = async (client: GlacierClient, input: DescribeVaultCommandInput): Promise => { diff --git a/clients/client-glacier/src/waiters/waitForVaultNotExists.ts b/clients/client-glacier/src/waiters/waitForVaultNotExists.ts index 062c1c5f5ed69..ad9f2a35a7d1d 100644 --- a/clients/client-glacier/src/waiters/waitForVaultNotExists.ts +++ b/clients/client-glacier/src/waiters/waitForVaultNotExists.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { checkExceptions, createWaiter, WaiterConfiguration, WaiterResult, WaiterState } from "@smithy/util-waiter"; -import { DescribeVaultCommand, DescribeVaultCommandInput } from "../commands/DescribeVaultCommand"; +import { type DescribeVaultCommandInput, DescribeVaultCommand } from "../commands/DescribeVaultCommand"; import { GlacierClient } from "../GlacierClient"; const checkState = async (client: GlacierClient, input: DescribeVaultCommandInput): Promise => { diff --git a/clients/client-global-accelerator/package.json b/clients/client-global-accelerator/package.json index 42a50b9741d8e..ae283a14f1a55 100644 --- a/clients/client-global-accelerator/package.json +++ b/clients/client-global-accelerator/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-global-accelerator/src/GlobalAccelerator.ts b/clients/client-global-accelerator/src/GlobalAccelerator.ts index 981aec9b5b54f..d13bfe91b151c 100644 --- a/clients/client-global-accelerator/src/GlobalAccelerator.ts +++ b/clients/client-global-accelerator/src/GlobalAccelerator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddCustomRoutingEndpointsCommand, @@ -278,7 +278,7 @@ import { WithdrawByoipCidrCommandInput, WithdrawByoipCidrCommandOutput, } from "./commands/WithdrawByoipCidrCommand"; -import { GlobalAcceleratorClient, GlobalAcceleratorClientConfig } from "./GlobalAcceleratorClient"; +import { GlobalAcceleratorClient } from "./GlobalAcceleratorClient"; const commands = { AddCustomRoutingEndpointsCommand, diff --git a/clients/client-global-accelerator/src/GlobalAcceleratorClient.ts b/clients/client-global-accelerator/src/GlobalAcceleratorClient.ts index fd29466de3b36..25505a4f6728a 100644 --- a/clients/client-global-accelerator/src/GlobalAcceleratorClient.ts +++ b/clients/client-global-accelerator/src/GlobalAcceleratorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGlobalAcceleratorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -234,7 +243,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-global-accelerator/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-global-accelerator/src/auth/httpAuthExtensionConfiguration.ts index 54c8e1e08553e..6e4a8e72f620e 100644 --- a/clients/client-global-accelerator/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-global-accelerator/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GlobalAcceleratorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GlobalAcceleratorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-global-accelerator/src/auth/httpAuthSchemeProvider.ts b/clients/client-global-accelerator/src/auth/httpAuthSchemeProvider.ts index 694d9c131a6c0..2716583eff0e6 100644 --- a/clients/client-global-accelerator/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-global-accelerator/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GlobalAcceleratorClientConfig, GlobalAcceleratorClientResolvedConfig } from "../GlobalAcceleratorClient"; +import { type GlobalAcceleratorClientResolvedConfig, GlobalAcceleratorClientConfig } from "../GlobalAcceleratorClient"; /** * @internal diff --git a/clients/client-global-accelerator/src/commands/AddCustomRoutingEndpointsCommand.ts b/clients/client-global-accelerator/src/commands/AddCustomRoutingEndpointsCommand.ts index 2c3e9e7aa8ea1..8f0d42fedee68 100644 --- a/clients/client-global-accelerator/src/commands/AddCustomRoutingEndpointsCommand.ts +++ b/clients/client-global-accelerator/src/commands/AddCustomRoutingEndpointsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { AddCustomRoutingEndpointsRequest, AddCustomRoutingEndpointsResponse } from "../models/models_0"; +import type { AddCustomRoutingEndpointsRequest, AddCustomRoutingEndpointsResponse } from "../models/models_0"; import { AddCustomRoutingEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/AddEndpointsCommand.ts b/clients/client-global-accelerator/src/commands/AddEndpointsCommand.ts index 92d24c0a91477..287f68309e76e 100644 --- a/clients/client-global-accelerator/src/commands/AddEndpointsCommand.ts +++ b/clients/client-global-accelerator/src/commands/AddEndpointsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { AddEndpointsRequest, AddEndpointsResponse } from "../models/models_0"; +import type { AddEndpointsRequest, AddEndpointsResponse } from "../models/models_0"; import { AddEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/AdvertiseByoipCidrCommand.ts b/clients/client-global-accelerator/src/commands/AdvertiseByoipCidrCommand.ts index 16035b7c5f1c1..e29ec30c8428d 100644 --- a/clients/client-global-accelerator/src/commands/AdvertiseByoipCidrCommand.ts +++ b/clients/client-global-accelerator/src/commands/AdvertiseByoipCidrCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { AdvertiseByoipCidrRequest, AdvertiseByoipCidrResponse } from "../models/models_0"; +import type { AdvertiseByoipCidrRequest, AdvertiseByoipCidrResponse } from "../models/models_0"; import { AdvertiseByoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/AllowCustomRoutingTrafficCommand.ts b/clients/client-global-accelerator/src/commands/AllowCustomRoutingTrafficCommand.ts index e2fc71e47a36e..bfbcdb729f65c 100644 --- a/clients/client-global-accelerator/src/commands/AllowCustomRoutingTrafficCommand.ts +++ b/clients/client-global-accelerator/src/commands/AllowCustomRoutingTrafficCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { AllowCustomRoutingTrafficRequest } from "../models/models_0"; +import type { AllowCustomRoutingTrafficRequest } from "../models/models_0"; import { AllowCustomRoutingTraffic } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/CreateAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/CreateAcceleratorCommand.ts index c206c943bfd92..0f23e5b3793bb 100644 --- a/clients/client-global-accelerator/src/commands/CreateAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateAcceleratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { CreateAcceleratorRequest, CreateAcceleratorResponse } from "../models/models_0"; +import type { CreateAcceleratorRequest, CreateAcceleratorResponse } from "../models/models_0"; import { CreateAccelerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/CreateCrossAccountAttachmentCommand.ts b/clients/client-global-accelerator/src/commands/CreateCrossAccountAttachmentCommand.ts index b7e6d208d7d08..8878a25517608 100644 --- a/clients/client-global-accelerator/src/commands/CreateCrossAccountAttachmentCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateCrossAccountAttachmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { CreateCrossAccountAttachmentRequest, CreateCrossAccountAttachmentResponse } from "../models/models_0"; +import type { CreateCrossAccountAttachmentRequest, CreateCrossAccountAttachmentResponse } from "../models/models_0"; import { CreateCrossAccountAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/CreateCustomRoutingAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/CreateCustomRoutingAcceleratorCommand.ts index ba9a9912a2402..ec53e53f890d1 100644 --- a/clients/client-global-accelerator/src/commands/CreateCustomRoutingAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateCustomRoutingAcceleratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { CreateCustomRoutingAcceleratorRequest, CreateCustomRoutingAcceleratorResponse } from "../models/models_0"; +import type { CreateCustomRoutingAcceleratorRequest, CreateCustomRoutingAcceleratorResponse } from "../models/models_0"; import { CreateCustomRoutingAccelerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/CreateCustomRoutingEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/CreateCustomRoutingEndpointGroupCommand.ts index 5c57b6838afd0..5a9cec7666e99 100644 --- a/clients/client-global-accelerator/src/commands/CreateCustomRoutingEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateCustomRoutingEndpointGroupCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { CreateCustomRoutingEndpointGroupRequest, CreateCustomRoutingEndpointGroupResponse } from "../models/models_0"; +import type { + CreateCustomRoutingEndpointGroupRequest, + CreateCustomRoutingEndpointGroupResponse, +} from "../models/models_0"; import { CreateCustomRoutingEndpointGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/CreateCustomRoutingListenerCommand.ts b/clients/client-global-accelerator/src/commands/CreateCustomRoutingListenerCommand.ts index a26d7fee0c5b9..c8a61b232ad90 100644 --- a/clients/client-global-accelerator/src/commands/CreateCustomRoutingListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateCustomRoutingListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { CreateCustomRoutingListenerRequest, CreateCustomRoutingListenerResponse } from "../models/models_0"; +import type { CreateCustomRoutingListenerRequest, CreateCustomRoutingListenerResponse } from "../models/models_0"; import { CreateCustomRoutingListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/CreateEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/CreateEndpointGroupCommand.ts index 871ec7ecf9eaa..2c5551f4192c0 100644 --- a/clients/client-global-accelerator/src/commands/CreateEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateEndpointGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { CreateEndpointGroupRequest, CreateEndpointGroupResponse } from "../models/models_0"; +import type { CreateEndpointGroupRequest, CreateEndpointGroupResponse } from "../models/models_0"; import { CreateEndpointGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/CreateListenerCommand.ts b/clients/client-global-accelerator/src/commands/CreateListenerCommand.ts index dfb9c42e6767f..1f9d674b192d8 100644 --- a/clients/client-global-accelerator/src/commands/CreateListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/CreateListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { CreateListenerRequest, CreateListenerResponse } from "../models/models_0"; +import type { CreateListenerRequest, CreateListenerResponse } from "../models/models_0"; import { CreateListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DeleteAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/DeleteAcceleratorCommand.ts index ed82fbc6075c9..f614a7a813e03 100644 --- a/clients/client-global-accelerator/src/commands/DeleteAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteAcceleratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DeleteAcceleratorRequest } from "../models/models_0"; +import type { DeleteAcceleratorRequest } from "../models/models_0"; import { DeleteAccelerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DeleteCrossAccountAttachmentCommand.ts b/clients/client-global-accelerator/src/commands/DeleteCrossAccountAttachmentCommand.ts index e8f304375cac5..a61d5d9e59b14 100644 --- a/clients/client-global-accelerator/src/commands/DeleteCrossAccountAttachmentCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteCrossAccountAttachmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DeleteCrossAccountAttachmentRequest } from "../models/models_0"; +import type { DeleteCrossAccountAttachmentRequest } from "../models/models_0"; import { DeleteCrossAccountAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingAcceleratorCommand.ts index e4de5c7a3c6ac..982a001fdd8cb 100644 --- a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingAcceleratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DeleteCustomRoutingAcceleratorRequest } from "../models/models_0"; +import type { DeleteCustomRoutingAcceleratorRequest } from "../models/models_0"; import { DeleteCustomRoutingAccelerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingEndpointGroupCommand.ts index 9af88a6098aa5..170d7eca3abfb 100644 --- a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingEndpointGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DeleteCustomRoutingEndpointGroupRequest } from "../models/models_0"; +import type { DeleteCustomRoutingEndpointGroupRequest } from "../models/models_0"; import { DeleteCustomRoutingEndpointGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingListenerCommand.ts b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingListenerCommand.ts index 2afcd32a2347c..2cf507aac7775 100644 --- a/clients/client-global-accelerator/src/commands/DeleteCustomRoutingListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteCustomRoutingListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DeleteCustomRoutingListenerRequest } from "../models/models_0"; +import type { DeleteCustomRoutingListenerRequest } from "../models/models_0"; import { DeleteCustomRoutingListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DeleteEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/DeleteEndpointGroupCommand.ts index a1c9aa0b99c33..b48de7d21f891 100644 --- a/clients/client-global-accelerator/src/commands/DeleteEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteEndpointGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DeleteEndpointGroupRequest } from "../models/models_0"; +import type { DeleteEndpointGroupRequest } from "../models/models_0"; import { DeleteEndpointGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DeleteListenerCommand.ts b/clients/client-global-accelerator/src/commands/DeleteListenerCommand.ts index f632ef22ce553..d0701458a8d97 100644 --- a/clients/client-global-accelerator/src/commands/DeleteListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeleteListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DeleteListenerRequest } from "../models/models_0"; +import type { DeleteListenerRequest } from "../models/models_0"; import { DeleteListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DenyCustomRoutingTrafficCommand.ts b/clients/client-global-accelerator/src/commands/DenyCustomRoutingTrafficCommand.ts index 6ea8d3ce83c35..c4834ba046d1c 100644 --- a/clients/client-global-accelerator/src/commands/DenyCustomRoutingTrafficCommand.ts +++ b/clients/client-global-accelerator/src/commands/DenyCustomRoutingTrafficCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DenyCustomRoutingTrafficRequest } from "../models/models_0"; +import type { DenyCustomRoutingTrafficRequest } from "../models/models_0"; import { DenyCustomRoutingTraffic } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DeprovisionByoipCidrCommand.ts b/clients/client-global-accelerator/src/commands/DeprovisionByoipCidrCommand.ts index 58f202e90b432..931a752adf6c6 100644 --- a/clients/client-global-accelerator/src/commands/DeprovisionByoipCidrCommand.ts +++ b/clients/client-global-accelerator/src/commands/DeprovisionByoipCidrCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DeprovisionByoipCidrRequest, DeprovisionByoipCidrResponse } from "../models/models_0"; +import type { DeprovisionByoipCidrRequest, DeprovisionByoipCidrResponse } from "../models/models_0"; import { DeprovisionByoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DescribeAcceleratorAttributesCommand.ts b/clients/client-global-accelerator/src/commands/DescribeAcceleratorAttributesCommand.ts index b781c9663d4c4..ad816e981cd76 100644 --- a/clients/client-global-accelerator/src/commands/DescribeAcceleratorAttributesCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeAcceleratorAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DescribeAcceleratorAttributesRequest, DescribeAcceleratorAttributesResponse } from "../models/models_0"; +import type { DescribeAcceleratorAttributesRequest, DescribeAcceleratorAttributesResponse } from "../models/models_0"; import { DescribeAcceleratorAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DescribeAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/DescribeAcceleratorCommand.ts index 9253275a8b6d1..5408a59888c2e 100644 --- a/clients/client-global-accelerator/src/commands/DescribeAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeAcceleratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DescribeAcceleratorRequest, DescribeAcceleratorResponse } from "../models/models_0"; +import type { DescribeAcceleratorRequest, DescribeAcceleratorResponse } from "../models/models_0"; import { DescribeAccelerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DescribeCrossAccountAttachmentCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCrossAccountAttachmentCommand.ts index b9a1a72144d8a..55c8bced486f5 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCrossAccountAttachmentCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCrossAccountAttachmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DescribeCrossAccountAttachmentRequest, DescribeCrossAccountAttachmentResponse } from "../models/models_0"; +import type { DescribeCrossAccountAttachmentRequest, DescribeCrossAccountAttachmentResponse } from "../models/models_0"; import { DescribeCrossAccountAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorAttributesCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorAttributesCommand.ts index 4af3d024f2061..15aa6244368ef 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorAttributesCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { +import type { DescribeCustomRoutingAcceleratorAttributesRequest, DescribeCustomRoutingAcceleratorAttributesResponse, } from "../models/models_0"; diff --git a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorCommand.ts index 0d848b7c5bba9..82d380f9a45cf 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingAcceleratorCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DescribeCustomRoutingAcceleratorRequest, DescribeCustomRoutingAcceleratorResponse } from "../models/models_0"; +import type { + DescribeCustomRoutingAcceleratorRequest, + DescribeCustomRoutingAcceleratorResponse, +} from "../models/models_0"; import { DescribeCustomRoutingAccelerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingEndpointGroupCommand.ts index 08f69d3393ffc..235a82e2670b5 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingEndpointGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { +import type { DescribeCustomRoutingEndpointGroupRequest, DescribeCustomRoutingEndpointGroupResponse, } from "../models/models_0"; diff --git a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingListenerCommand.ts b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingListenerCommand.ts index 7b03d2609a585..50a5c6de2cbe5 100644 --- a/clients/client-global-accelerator/src/commands/DescribeCustomRoutingListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeCustomRoutingListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DescribeCustomRoutingListenerRequest, DescribeCustomRoutingListenerResponse } from "../models/models_0"; +import type { DescribeCustomRoutingListenerRequest, DescribeCustomRoutingListenerResponse } from "../models/models_0"; import { DescribeCustomRoutingListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DescribeEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/DescribeEndpointGroupCommand.ts index 5d5782b79344e..343d40037d494 100644 --- a/clients/client-global-accelerator/src/commands/DescribeEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeEndpointGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DescribeEndpointGroupRequest, DescribeEndpointGroupResponse } from "../models/models_0"; +import type { DescribeEndpointGroupRequest, DescribeEndpointGroupResponse } from "../models/models_0"; import { DescribeEndpointGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/DescribeListenerCommand.ts b/clients/client-global-accelerator/src/commands/DescribeListenerCommand.ts index c9167b3918abf..a59c35818fd0a 100644 --- a/clients/client-global-accelerator/src/commands/DescribeListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/DescribeListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { DescribeListenerRequest, DescribeListenerResponse } from "../models/models_0"; +import type { DescribeListenerRequest, DescribeListenerResponse } from "../models/models_0"; import { DescribeListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListAcceleratorsCommand.ts b/clients/client-global-accelerator/src/commands/ListAcceleratorsCommand.ts index a65174b80fec2..d023e92eca13b 100644 --- a/clients/client-global-accelerator/src/commands/ListAcceleratorsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListAcceleratorsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListAcceleratorsRequest, ListAcceleratorsResponse } from "../models/models_0"; +import type { ListAcceleratorsRequest, ListAcceleratorsResponse } from "../models/models_0"; import { ListAccelerators } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListByoipCidrsCommand.ts b/clients/client-global-accelerator/src/commands/ListByoipCidrsCommand.ts index f37757a1fdd14..b45ac05fc021a 100644 --- a/clients/client-global-accelerator/src/commands/ListByoipCidrsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListByoipCidrsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListByoipCidrsRequest, ListByoipCidrsResponse } from "../models/models_0"; +import type { ListByoipCidrsRequest, ListByoipCidrsResponse } from "../models/models_0"; import { ListByoipCidrs } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListCrossAccountAttachmentsCommand.ts b/clients/client-global-accelerator/src/commands/ListCrossAccountAttachmentsCommand.ts index a536a3338c580..bf5d53269ad4e 100644 --- a/clients/client-global-accelerator/src/commands/ListCrossAccountAttachmentsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCrossAccountAttachmentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListCrossAccountAttachmentsRequest, ListCrossAccountAttachmentsResponse } from "../models/models_0"; +import type { ListCrossAccountAttachmentsRequest, ListCrossAccountAttachmentsResponse } from "../models/models_0"; import { ListCrossAccountAttachments } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListCrossAccountResourceAccountsCommand.ts b/clients/client-global-accelerator/src/commands/ListCrossAccountResourceAccountsCommand.ts index 3fa4588dd3fe5..8c36a2a3d805f 100644 --- a/clients/client-global-accelerator/src/commands/ListCrossAccountResourceAccountsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCrossAccountResourceAccountsCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListCrossAccountResourceAccountsRequest, ListCrossAccountResourceAccountsResponse } from "../models/models_0"; +import type { + ListCrossAccountResourceAccountsRequest, + ListCrossAccountResourceAccountsResponse, +} from "../models/models_0"; import { ListCrossAccountResourceAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListCrossAccountResourcesCommand.ts b/clients/client-global-accelerator/src/commands/ListCrossAccountResourcesCommand.ts index 4b912dc9f276d..4316e0c28b97b 100644 --- a/clients/client-global-accelerator/src/commands/ListCrossAccountResourcesCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCrossAccountResourcesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListCrossAccountResourcesRequest, ListCrossAccountResourcesResponse } from "../models/models_0"; +import type { ListCrossAccountResourcesRequest, ListCrossAccountResourcesResponse } from "../models/models_0"; import { ListCrossAccountResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingAcceleratorsCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingAcceleratorsCommand.ts index 3e231eaa9f375..488769b0b9eb7 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingAcceleratorsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingAcceleratorsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListCustomRoutingAcceleratorsRequest, ListCustomRoutingAcceleratorsResponse } from "../models/models_0"; +import type { ListCustomRoutingAcceleratorsRequest, ListCustomRoutingAcceleratorsResponse } from "../models/models_0"; import { ListCustomRoutingAccelerators } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingEndpointGroupsCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingEndpointGroupsCommand.ts index 4d6ad71c37c54..8bd9c8b768d48 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingEndpointGroupsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingEndpointGroupsCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListCustomRoutingEndpointGroupsRequest, ListCustomRoutingEndpointGroupsResponse } from "../models/models_0"; +import type { + ListCustomRoutingEndpointGroupsRequest, + ListCustomRoutingEndpointGroupsResponse, +} from "../models/models_0"; import { ListCustomRoutingEndpointGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingListenersCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingListenersCommand.ts index af86f9f00b8bc..0d273c31f0ef0 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingListenersCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingListenersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListCustomRoutingListenersRequest, ListCustomRoutingListenersResponse } from "../models/models_0"; +import type { ListCustomRoutingListenersRequest, ListCustomRoutingListenersResponse } from "../models/models_0"; import { ListCustomRoutingListeners } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsByDestinationCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsByDestinationCommand.ts index 56ae32e696180..dfd4bb7602634 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsByDestinationCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsByDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { +import type { ListCustomRoutingPortMappingsByDestinationRequest, ListCustomRoutingPortMappingsByDestinationResponse, } from "../models/models_0"; diff --git a/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsCommand.ts b/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsCommand.ts index a4c4afdafa8fb..3957ab939c7db 100644 --- a/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListCustomRoutingPortMappingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListCustomRoutingPortMappingsRequest, ListCustomRoutingPortMappingsResponse } from "../models/models_0"; +import type { ListCustomRoutingPortMappingsRequest, ListCustomRoutingPortMappingsResponse } from "../models/models_0"; import { ListCustomRoutingPortMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListEndpointGroupsCommand.ts b/clients/client-global-accelerator/src/commands/ListEndpointGroupsCommand.ts index 9d7a0eefd89a3..41fce8ef09e35 100644 --- a/clients/client-global-accelerator/src/commands/ListEndpointGroupsCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListEndpointGroupsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListEndpointGroupsRequest, ListEndpointGroupsResponse } from "../models/models_0"; +import type { ListEndpointGroupsRequest, ListEndpointGroupsResponse } from "../models/models_0"; import { ListEndpointGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListListenersCommand.ts b/clients/client-global-accelerator/src/commands/ListListenersCommand.ts index 6d2f0d2d92e1e..44635e76bac79 100644 --- a/clients/client-global-accelerator/src/commands/ListListenersCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListListenersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListListenersRequest, ListListenersResponse } from "../models/models_0"; +import type { ListListenersRequest, ListListenersResponse } from "../models/models_0"; import { ListListeners } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ListTagsForResourceCommand.ts b/clients/client-global-accelerator/src/commands/ListTagsForResourceCommand.ts index c946a10277ee9..bbc90f68a4abc 100644 --- a/clients/client-global-accelerator/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-global-accelerator/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/ProvisionByoipCidrCommand.ts b/clients/client-global-accelerator/src/commands/ProvisionByoipCidrCommand.ts index 2d5f1c2edc607..ad645fc915591 100644 --- a/clients/client-global-accelerator/src/commands/ProvisionByoipCidrCommand.ts +++ b/clients/client-global-accelerator/src/commands/ProvisionByoipCidrCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { ProvisionByoipCidrRequest, ProvisionByoipCidrResponse } from "../models/models_0"; +import type { ProvisionByoipCidrRequest, ProvisionByoipCidrResponse } from "../models/models_0"; import { ProvisionByoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/RemoveCustomRoutingEndpointsCommand.ts b/clients/client-global-accelerator/src/commands/RemoveCustomRoutingEndpointsCommand.ts index 0a1f364fb3da3..ea7c0cec778f9 100644 --- a/clients/client-global-accelerator/src/commands/RemoveCustomRoutingEndpointsCommand.ts +++ b/clients/client-global-accelerator/src/commands/RemoveCustomRoutingEndpointsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { RemoveCustomRoutingEndpointsRequest } from "../models/models_0"; +import type { RemoveCustomRoutingEndpointsRequest } from "../models/models_0"; import { RemoveCustomRoutingEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/RemoveEndpointsCommand.ts b/clients/client-global-accelerator/src/commands/RemoveEndpointsCommand.ts index 82370cbe7a055..0d5cdc366ec2f 100644 --- a/clients/client-global-accelerator/src/commands/RemoveEndpointsCommand.ts +++ b/clients/client-global-accelerator/src/commands/RemoveEndpointsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { RemoveEndpointsRequest } from "../models/models_0"; +import type { RemoveEndpointsRequest } from "../models/models_0"; import { RemoveEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/TagResourceCommand.ts b/clients/client-global-accelerator/src/commands/TagResourceCommand.ts index 633663c3996cb..b6f6141787374 100644 --- a/clients/client-global-accelerator/src/commands/TagResourceCommand.ts +++ b/clients/client-global-accelerator/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/UntagResourceCommand.ts b/clients/client-global-accelerator/src/commands/UntagResourceCommand.ts index 45d8e4cc98276..494ae62aa9c00 100644 --- a/clients/client-global-accelerator/src/commands/UntagResourceCommand.ts +++ b/clients/client-global-accelerator/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/UpdateAcceleratorAttributesCommand.ts b/clients/client-global-accelerator/src/commands/UpdateAcceleratorAttributesCommand.ts index 401b0842576f9..4fe0267ada124 100644 --- a/clients/client-global-accelerator/src/commands/UpdateAcceleratorAttributesCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateAcceleratorAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { UpdateAcceleratorAttributesRequest, UpdateAcceleratorAttributesResponse } from "../models/models_0"; +import type { UpdateAcceleratorAttributesRequest, UpdateAcceleratorAttributesResponse } from "../models/models_0"; import { UpdateAcceleratorAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/UpdateAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/UpdateAcceleratorCommand.ts index 64b704d27148c..38af578eafbc2 100644 --- a/clients/client-global-accelerator/src/commands/UpdateAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateAcceleratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { UpdateAcceleratorRequest, UpdateAcceleratorResponse } from "../models/models_0"; +import type { UpdateAcceleratorRequest, UpdateAcceleratorResponse } from "../models/models_0"; import { UpdateAccelerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/UpdateCrossAccountAttachmentCommand.ts b/clients/client-global-accelerator/src/commands/UpdateCrossAccountAttachmentCommand.ts index 1943bed325c16..1ce4f4748c51f 100644 --- a/clients/client-global-accelerator/src/commands/UpdateCrossAccountAttachmentCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateCrossAccountAttachmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { UpdateCrossAccountAttachmentRequest, UpdateCrossAccountAttachmentResponse } from "../models/models_0"; +import type { UpdateCrossAccountAttachmentRequest, UpdateCrossAccountAttachmentResponse } from "../models/models_0"; import { UpdateCrossAccountAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorAttributesCommand.ts b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorAttributesCommand.ts index 5e63b818a201d..9864c00b499fa 100644 --- a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorAttributesCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { +import type { UpdateCustomRoutingAcceleratorAttributesRequest, UpdateCustomRoutingAcceleratorAttributesResponse, } from "../models/models_0"; diff --git a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorCommand.ts b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorCommand.ts index 9804c9036705a..750447cf65ca6 100644 --- a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingAcceleratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { UpdateCustomRoutingAcceleratorRequest, UpdateCustomRoutingAcceleratorResponse } from "../models/models_0"; +import type { UpdateCustomRoutingAcceleratorRequest, UpdateCustomRoutingAcceleratorResponse } from "../models/models_0"; import { UpdateCustomRoutingAccelerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingListenerCommand.ts b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingListenerCommand.ts index 73e3acaeb05a8..65bf4423da096 100644 --- a/clients/client-global-accelerator/src/commands/UpdateCustomRoutingListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateCustomRoutingListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { UpdateCustomRoutingListenerRequest, UpdateCustomRoutingListenerResponse } from "../models/models_0"; +import type { UpdateCustomRoutingListenerRequest, UpdateCustomRoutingListenerResponse } from "../models/models_0"; import { UpdateCustomRoutingListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/UpdateEndpointGroupCommand.ts b/clients/client-global-accelerator/src/commands/UpdateEndpointGroupCommand.ts index 42b0b0a1f7a0b..462939401112c 100644 --- a/clients/client-global-accelerator/src/commands/UpdateEndpointGroupCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateEndpointGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { UpdateEndpointGroupRequest, UpdateEndpointGroupResponse } from "../models/models_0"; +import type { UpdateEndpointGroupRequest, UpdateEndpointGroupResponse } from "../models/models_0"; import { UpdateEndpointGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/UpdateListenerCommand.ts b/clients/client-global-accelerator/src/commands/UpdateListenerCommand.ts index 2cf311049bc39..92bef8b435f09 100644 --- a/clients/client-global-accelerator/src/commands/UpdateListenerCommand.ts +++ b/clients/client-global-accelerator/src/commands/UpdateListenerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { UpdateListenerRequest, UpdateListenerResponse } from "../models/models_0"; +import type { UpdateListenerRequest, UpdateListenerResponse } from "../models/models_0"; import { UpdateListener } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/commands/WithdrawByoipCidrCommand.ts b/clients/client-global-accelerator/src/commands/WithdrawByoipCidrCommand.ts index e714d7cb54c3f..b9c1ba135d900 100644 --- a/clients/client-global-accelerator/src/commands/WithdrawByoipCidrCommand.ts +++ b/clients/client-global-accelerator/src/commands/WithdrawByoipCidrCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../GlobalAcceleratorClient"; -import { WithdrawByoipCidrRequest, WithdrawByoipCidrResponse } from "../models/models_0"; +import type { WithdrawByoipCidrRequest, WithdrawByoipCidrResponse } from "../models/models_0"; import { WithdrawByoipCidr } from "../schemas/schemas_0"; /** diff --git a/clients/client-global-accelerator/src/endpoint/EndpointParameters.ts b/clients/client-global-accelerator/src/endpoint/EndpointParameters.ts index d0c1f24e37d2e..bef90bda3c1b8 100644 --- a/clients/client-global-accelerator/src/endpoint/EndpointParameters.ts +++ b/clients/client-global-accelerator/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-global-accelerator/src/endpoint/endpointResolver.ts b/clients/client-global-accelerator/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-global-accelerator/src/endpoint/endpointResolver.ts +++ b/clients/client-global-accelerator/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-global-accelerator/src/extensionConfiguration.ts b/clients/client-global-accelerator/src/extensionConfiguration.ts index 4f64b08814af2..9612449b0bb18 100644 --- a/clients/client-global-accelerator/src/extensionConfiguration.ts +++ b/clients/client-global-accelerator/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-global-accelerator/src/models/GlobalAcceleratorServiceException.ts b/clients/client-global-accelerator/src/models/GlobalAcceleratorServiceException.ts index 501b1f49c4106..ca73de38c947f 100644 --- a/clients/client-global-accelerator/src/models/GlobalAcceleratorServiceException.ts +++ b/clients/client-global-accelerator/src/models/GlobalAcceleratorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-global-accelerator/src/models/errors.ts b/clients/client-global-accelerator/src/models/errors.ts index 8382ddd0e26e5..2a5bd3f06a08f 100644 --- a/clients/client-global-accelerator/src/models/errors.ts +++ b/clients/client-global-accelerator/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { GlobalAcceleratorServiceException as __BaseException } from "./GlobalAcceleratorServiceException"; diff --git a/clients/client-global-accelerator/src/pagination/Interfaces.ts b/clients/client-global-accelerator/src/pagination/Interfaces.ts index 09f4a49be5197..dac0657367083 100644 --- a/clients/client-global-accelerator/src/pagination/Interfaces.ts +++ b/clients/client-global-accelerator/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { GlobalAcceleratorClient } from "../GlobalAcceleratorClient"; diff --git a/clients/client-global-accelerator/src/pagination/ListAcceleratorsPaginator.ts b/clients/client-global-accelerator/src/pagination/ListAcceleratorsPaginator.ts index b343c28e38d1e..865dfd4e837e4 100644 --- a/clients/client-global-accelerator/src/pagination/ListAcceleratorsPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListAcceleratorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAcceleratorsCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListByoipCidrsPaginator.ts b/clients/client-global-accelerator/src/pagination/ListByoipCidrsPaginator.ts index 046d39d338725..de86f2847627f 100644 --- a/clients/client-global-accelerator/src/pagination/ListByoipCidrsPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListByoipCidrsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListByoipCidrsCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListCrossAccountAttachmentsPaginator.ts b/clients/client-global-accelerator/src/pagination/ListCrossAccountAttachmentsPaginator.ts index 873fc436a4da2..8c34c5163ef9b 100644 --- a/clients/client-global-accelerator/src/pagination/ListCrossAccountAttachmentsPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListCrossAccountAttachmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCrossAccountAttachmentsCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListCrossAccountResourcesPaginator.ts b/clients/client-global-accelerator/src/pagination/ListCrossAccountResourcesPaginator.ts index 7ae69ba8cf42a..a8784a07a0c7c 100644 --- a/clients/client-global-accelerator/src/pagination/ListCrossAccountResourcesPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListCrossAccountResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCrossAccountResourcesCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListCustomRoutingAcceleratorsPaginator.ts b/clients/client-global-accelerator/src/pagination/ListCustomRoutingAcceleratorsPaginator.ts index 481c95ad94b4b..64285195164e8 100644 --- a/clients/client-global-accelerator/src/pagination/ListCustomRoutingAcceleratorsPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListCustomRoutingAcceleratorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomRoutingAcceleratorsCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListCustomRoutingEndpointGroupsPaginator.ts b/clients/client-global-accelerator/src/pagination/ListCustomRoutingEndpointGroupsPaginator.ts index 432df18681a6e..88992da3d3a4a 100644 --- a/clients/client-global-accelerator/src/pagination/ListCustomRoutingEndpointGroupsPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListCustomRoutingEndpointGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomRoutingEndpointGroupsCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListCustomRoutingListenersPaginator.ts b/clients/client-global-accelerator/src/pagination/ListCustomRoutingListenersPaginator.ts index 7082b1745ef5d..91778507c4ccf 100644 --- a/clients/client-global-accelerator/src/pagination/ListCustomRoutingListenersPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListCustomRoutingListenersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomRoutingListenersCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListCustomRoutingPortMappingsByDestinationPaginator.ts b/clients/client-global-accelerator/src/pagination/ListCustomRoutingPortMappingsByDestinationPaginator.ts index 2dd739cee391d..bbd0f06f50c56 100644 --- a/clients/client-global-accelerator/src/pagination/ListCustomRoutingPortMappingsByDestinationPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListCustomRoutingPortMappingsByDestinationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomRoutingPortMappingsByDestinationCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListCustomRoutingPortMappingsPaginator.ts b/clients/client-global-accelerator/src/pagination/ListCustomRoutingPortMappingsPaginator.ts index d9c410f2b2352..3fb9910f64617 100644 --- a/clients/client-global-accelerator/src/pagination/ListCustomRoutingPortMappingsPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListCustomRoutingPortMappingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomRoutingPortMappingsCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListEndpointGroupsPaginator.ts b/clients/client-global-accelerator/src/pagination/ListEndpointGroupsPaginator.ts index 6bea7b93951d6..7ef55f7b0924a 100644 --- a/clients/client-global-accelerator/src/pagination/ListEndpointGroupsPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListEndpointGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEndpointGroupsCommand, diff --git a/clients/client-global-accelerator/src/pagination/ListListenersPaginator.ts b/clients/client-global-accelerator/src/pagination/ListListenersPaginator.ts index 87dc2b16c104a..f6c957a9be3a0 100644 --- a/clients/client-global-accelerator/src/pagination/ListListenersPaginator.ts +++ b/clients/client-global-accelerator/src/pagination/ListListenersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListListenersCommand, diff --git a/clients/client-global-accelerator/src/runtimeConfig.browser.ts b/clients/client-global-accelerator/src/runtimeConfig.browser.ts index 34ad29d0385dd..82ec891d768ea 100644 --- a/clients/client-global-accelerator/src/runtimeConfig.browser.ts +++ b/clients/client-global-accelerator/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlobalAcceleratorClientConfig } from "./GlobalAcceleratorClient"; + +import type { GlobalAcceleratorClientConfig } from "./GlobalAcceleratorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-global-accelerator/src/runtimeConfig.native.ts b/clients/client-global-accelerator/src/runtimeConfig.native.ts index 524c7a34200e8..c5a839425d7ae 100644 --- a/clients/client-global-accelerator/src/runtimeConfig.native.ts +++ b/clients/client-global-accelerator/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GlobalAcceleratorClientConfig } from "./GlobalAcceleratorClient"; +import type { GlobalAcceleratorClientConfig } from "./GlobalAcceleratorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-global-accelerator/src/runtimeConfig.shared.ts b/clients/client-global-accelerator/src/runtimeConfig.shared.ts index f3e6157749dc2..4a9ed3c210afb 100644 --- a/clients/client-global-accelerator/src/runtimeConfig.shared.ts +++ b/clients/client-global-accelerator/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGlobalAcceleratorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GlobalAcceleratorClientConfig } from "./GlobalAcceleratorClient"; +import type { GlobalAcceleratorClientConfig } from "./GlobalAcceleratorClient"; /** * @internal diff --git a/clients/client-global-accelerator/src/runtimeConfig.ts b/clients/client-global-accelerator/src/runtimeConfig.ts index 40c7c9442c603..f83eb86ef0dc0 100644 --- a/clients/client-global-accelerator/src/runtimeConfig.ts +++ b/clients/client-global-accelerator/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlobalAcceleratorClientConfig } from "./GlobalAcceleratorClient"; + +import type { GlobalAcceleratorClientConfig } from "./GlobalAcceleratorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-global-accelerator/src/runtimeExtensions.ts b/clients/client-global-accelerator/src/runtimeExtensions.ts index 8dd6c3d864ddd..17e3a94ef8818 100644 --- a/clients/client-global-accelerator/src/runtimeExtensions.ts +++ b/clients/client-global-accelerator/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GlobalAcceleratorExtensionConfiguration } from "./extensionConfiguration"; +import type { GlobalAcceleratorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-global-accelerator/src/schemas/schemas_0.ts b/clients/client-global-accelerator/src/schemas/schemas_0.ts index fdb6db3b7ef55..7a90b7f620f9f 100644 --- a/clients/client-global-accelerator/src/schemas/schemas_0.ts +++ b/clients/client-global-accelerator/src/schemas/schemas_0.ts @@ -313,7 +313,7 @@ const n0 = "com.amazonaws.globalaccelerator"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AcceleratorNotDisabledException as __AcceleratorNotDisabledException, diff --git a/clients/client-glue/package.json b/clients/client-glue/package.json index fd5cd715b8f40..ac11f2823d99f 100644 --- a/clients/client-glue/package.json +++ b/clients/client-glue/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-glue/src/Glue.ts b/clients/client-glue/src/Glue.ts index 15db7e7655335..36949d0d45615 100644 --- a/clients/client-glue/src/Glue.ts +++ b/clients/client-glue/src/Glue.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchCreatePartitionCommand, @@ -1161,7 +1161,7 @@ import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput, } from "./commands/UpdateWorkflowCommand"; -import { GlueClient, GlueClientConfig } from "./GlueClient"; +import { GlueClient } from "./GlueClient"; const commands = { BatchCreatePartitionCommand, diff --git a/clients/client-glue/src/GlueClient.ts b/clients/client-glue/src/GlueClient.ts index a895bed04aef1..b798ae0da9b6f 100644 --- a/clients/client-glue/src/GlueClient.ts +++ b/clients/client-glue/src/GlueClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGlueHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -659,7 +668,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-glue/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-glue/src/auth/httpAuthExtensionConfiguration.ts index a94f8604a0d62..75840237dbc77 100644 --- a/clients/client-glue/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-glue/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GlueHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GlueHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-glue/src/auth/httpAuthSchemeProvider.ts b/clients/client-glue/src/auth/httpAuthSchemeProvider.ts index 14f8d022a6ebe..f3ac24895d4e1 100644 --- a/clients/client-glue/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-glue/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GlueClientConfig, GlueClientResolvedConfig } from "../GlueClient"; +import { type GlueClientResolvedConfig, GlueClientConfig } from "../GlueClient"; /** * @internal diff --git a/clients/client-glue/src/commands/BatchCreatePartitionCommand.ts b/clients/client-glue/src/commands/BatchCreatePartitionCommand.ts index 380585a2408bf..545a585fe7cea 100644 --- a/clients/client-glue/src/commands/BatchCreatePartitionCommand.ts +++ b/clients/client-glue/src/commands/BatchCreatePartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchCreatePartitionRequest, BatchCreatePartitionResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchCreatePartitionRequest, BatchCreatePartitionResponse } from "../models/models_0"; import { BatchCreatePartition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchDeleteConnectionCommand.ts b/clients/client-glue/src/commands/BatchDeleteConnectionCommand.ts index 7bd18446a124e..a1419cc6f35f4 100644 --- a/clients/client-glue/src/commands/BatchDeleteConnectionCommand.ts +++ b/clients/client-glue/src/commands/BatchDeleteConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchDeleteConnectionRequest, BatchDeleteConnectionResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchDeleteConnectionRequest, BatchDeleteConnectionResponse } from "../models/models_0"; import { BatchDeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchDeletePartitionCommand.ts b/clients/client-glue/src/commands/BatchDeletePartitionCommand.ts index f05d8a2a5b7f5..51a60095cdcca 100644 --- a/clients/client-glue/src/commands/BatchDeletePartitionCommand.ts +++ b/clients/client-glue/src/commands/BatchDeletePartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchDeletePartitionRequest, BatchDeletePartitionResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchDeletePartitionRequest, BatchDeletePartitionResponse } from "../models/models_0"; import { BatchDeletePartition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchDeleteTableCommand.ts b/clients/client-glue/src/commands/BatchDeleteTableCommand.ts index eb95f3d236e76..8df6bf226fdd5 100644 --- a/clients/client-glue/src/commands/BatchDeleteTableCommand.ts +++ b/clients/client-glue/src/commands/BatchDeleteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchDeleteTableRequest, BatchDeleteTableResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchDeleteTableRequest, BatchDeleteTableResponse } from "../models/models_0"; import { BatchDeleteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchDeleteTableVersionCommand.ts b/clients/client-glue/src/commands/BatchDeleteTableVersionCommand.ts index f6f8260700ac7..758e1e0b151d1 100644 --- a/clients/client-glue/src/commands/BatchDeleteTableVersionCommand.ts +++ b/clients/client-glue/src/commands/BatchDeleteTableVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchDeleteTableVersionRequest, BatchDeleteTableVersionResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchDeleteTableVersionRequest, BatchDeleteTableVersionResponse } from "../models/models_0"; import { BatchDeleteTableVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetBlueprintsCommand.ts b/clients/client-glue/src/commands/BatchGetBlueprintsCommand.ts index 4c4da2562d4d0..7b6216a56ea2b 100644 --- a/clients/client-glue/src/commands/BatchGetBlueprintsCommand.ts +++ b/clients/client-glue/src/commands/BatchGetBlueprintsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetBlueprintsRequest, BatchGetBlueprintsResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetBlueprintsRequest, BatchGetBlueprintsResponse } from "../models/models_0"; import { BatchGetBlueprints } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetCrawlersCommand.ts b/clients/client-glue/src/commands/BatchGetCrawlersCommand.ts index 438b88fbd8421..5eb4154625bad 100644 --- a/clients/client-glue/src/commands/BatchGetCrawlersCommand.ts +++ b/clients/client-glue/src/commands/BatchGetCrawlersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetCrawlersRequest, BatchGetCrawlersResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetCrawlersRequest, BatchGetCrawlersResponse } from "../models/models_0"; import { BatchGetCrawlers } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetCustomEntityTypesCommand.ts b/clients/client-glue/src/commands/BatchGetCustomEntityTypesCommand.ts index 5970c181d2409..d40e8c98a8794 100644 --- a/clients/client-glue/src/commands/BatchGetCustomEntityTypesCommand.ts +++ b/clients/client-glue/src/commands/BatchGetCustomEntityTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetCustomEntityTypesRequest, BatchGetCustomEntityTypesResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetCustomEntityTypesRequest, BatchGetCustomEntityTypesResponse } from "../models/models_0"; import { BatchGetCustomEntityTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetDataQualityResultCommand.ts b/clients/client-glue/src/commands/BatchGetDataQualityResultCommand.ts index 7bce9a54c5cc9..9fa6795946fbd 100644 --- a/clients/client-glue/src/commands/BatchGetDataQualityResultCommand.ts +++ b/clients/client-glue/src/commands/BatchGetDataQualityResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetDataQualityResultRequest, BatchGetDataQualityResultResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetDataQualityResultRequest, BatchGetDataQualityResultResponse } from "../models/models_0"; import { BatchGetDataQualityResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetDevEndpointsCommand.ts b/clients/client-glue/src/commands/BatchGetDevEndpointsCommand.ts index d355b224832ed..6c72423eb63ad 100644 --- a/clients/client-glue/src/commands/BatchGetDevEndpointsCommand.ts +++ b/clients/client-glue/src/commands/BatchGetDevEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetDevEndpointsRequest, BatchGetDevEndpointsResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetDevEndpointsRequest, BatchGetDevEndpointsResponse } from "../models/models_0"; import { BatchGetDevEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetJobsCommand.ts b/clients/client-glue/src/commands/BatchGetJobsCommand.ts index fb4137f46f357..120337e59ebe4 100644 --- a/clients/client-glue/src/commands/BatchGetJobsCommand.ts +++ b/clients/client-glue/src/commands/BatchGetJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetJobsRequest } from "../models/models_0"; -import { BatchGetJobsResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetJobsRequest } from "../models/models_0"; +import type { BatchGetJobsResponse } from "../models/models_3"; import { BatchGetJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetPartitionCommand.ts b/clients/client-glue/src/commands/BatchGetPartitionCommand.ts index 26b5817d34fe4..3a56526cd1740 100644 --- a/clients/client-glue/src/commands/BatchGetPartitionCommand.ts +++ b/clients/client-glue/src/commands/BatchGetPartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetPartitionRequest, BatchGetPartitionResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetPartitionRequest, BatchGetPartitionResponse } from "../models/models_0"; import { BatchGetPartition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetTableOptimizerCommand.ts b/clients/client-glue/src/commands/BatchGetTableOptimizerCommand.ts index d8e8be3de84cf..fbce96db48a30 100644 --- a/clients/client-glue/src/commands/BatchGetTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/BatchGetTableOptimizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetTableOptimizerRequest, BatchGetTableOptimizerResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetTableOptimizerRequest, BatchGetTableOptimizerResponse } from "../models/models_0"; import { BatchGetTableOptimizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetTriggersCommand.ts b/clients/client-glue/src/commands/BatchGetTriggersCommand.ts index b4160016cd24c..af0331e6b7b75 100644 --- a/clients/client-glue/src/commands/BatchGetTriggersCommand.ts +++ b/clients/client-glue/src/commands/BatchGetTriggersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetTriggersRequest, BatchGetTriggersResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetTriggersRequest, BatchGetTriggersResponse } from "../models/models_0"; import { BatchGetTriggers } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchGetWorkflowsCommand.ts b/clients/client-glue/src/commands/BatchGetWorkflowsCommand.ts index 68466f94f2a42..9eabcc4707a92 100644 --- a/clients/client-glue/src/commands/BatchGetWorkflowsCommand.ts +++ b/clients/client-glue/src/commands/BatchGetWorkflowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchGetWorkflowsRequest, BatchGetWorkflowsResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchGetWorkflowsRequest, BatchGetWorkflowsResponse } from "../models/models_0"; import { BatchGetWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchPutDataQualityStatisticAnnotationCommand.ts b/clients/client-glue/src/commands/BatchPutDataQualityStatisticAnnotationCommand.ts index 16e9598a80d66..41ca968418a6d 100644 --- a/clients/client-glue/src/commands/BatchPutDataQualityStatisticAnnotationCommand.ts +++ b/clients/client-glue/src/commands/BatchPutDataQualityStatisticAnnotationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchPutDataQualityStatisticAnnotationRequest, BatchPutDataQualityStatisticAnnotationResponse, } from "../models/models_0"; diff --git a/clients/client-glue/src/commands/BatchStopJobRunCommand.ts b/clients/client-glue/src/commands/BatchStopJobRunCommand.ts index 3916f3d1ec157..60066fb083ec1 100644 --- a/clients/client-glue/src/commands/BatchStopJobRunCommand.ts +++ b/clients/client-glue/src/commands/BatchStopJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchStopJobRunRequest, BatchStopJobRunResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchStopJobRunRequest, BatchStopJobRunResponse } from "../models/models_0"; import { BatchStopJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/BatchUpdatePartitionCommand.ts b/clients/client-glue/src/commands/BatchUpdatePartitionCommand.ts index 4cbb33030d125..cf3e61a43c890 100644 --- a/clients/client-glue/src/commands/BatchUpdatePartitionCommand.ts +++ b/clients/client-glue/src/commands/BatchUpdatePartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { BatchUpdatePartitionRequest, BatchUpdatePartitionResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { BatchUpdatePartitionRequest, BatchUpdatePartitionResponse } from "../models/models_0"; import { BatchUpdatePartition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CancelDataQualityRuleRecommendationRunCommand.ts b/clients/client-glue/src/commands/CancelDataQualityRuleRecommendationRunCommand.ts index 18ee2c004b0f6..2d849b7556775 100644 --- a/clients/client-glue/src/commands/CancelDataQualityRuleRecommendationRunCommand.ts +++ b/clients/client-glue/src/commands/CancelDataQualityRuleRecommendationRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CancelDataQualityRuleRecommendationRunRequest, CancelDataQualityRuleRecommendationRunResponse, } from "../models/models_0"; diff --git a/clients/client-glue/src/commands/CancelDataQualityRulesetEvaluationRunCommand.ts b/clients/client-glue/src/commands/CancelDataQualityRulesetEvaluationRunCommand.ts index bdb8156a1feee..19f904d8ee020 100644 --- a/clients/client-glue/src/commands/CancelDataQualityRulesetEvaluationRunCommand.ts +++ b/clients/client-glue/src/commands/CancelDataQualityRulesetEvaluationRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CancelDataQualityRulesetEvaluationRunRequest, CancelDataQualityRulesetEvaluationRunResponse, } from "../models/models_0"; diff --git a/clients/client-glue/src/commands/CancelMLTaskRunCommand.ts b/clients/client-glue/src/commands/CancelMLTaskRunCommand.ts index eb7d9d273c0d7..49519849edbee 100644 --- a/clients/client-glue/src/commands/CancelMLTaskRunCommand.ts +++ b/clients/client-glue/src/commands/CancelMLTaskRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CancelMLTaskRunRequest, CancelMLTaskRunResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CancelMLTaskRunRequest, CancelMLTaskRunResponse } from "../models/models_0"; import { CancelMLTaskRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CancelStatementCommand.ts b/clients/client-glue/src/commands/CancelStatementCommand.ts index 8a25623f41e73..00f21cd901713 100644 --- a/clients/client-glue/src/commands/CancelStatementCommand.ts +++ b/clients/client-glue/src/commands/CancelStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CancelStatementRequest, CancelStatementResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CancelStatementRequest, CancelStatementResponse } from "../models/models_0"; import { CancelStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CheckSchemaVersionValidityCommand.ts b/clients/client-glue/src/commands/CheckSchemaVersionValidityCommand.ts index a98b98cfd6079..80637d90a910f 100644 --- a/clients/client-glue/src/commands/CheckSchemaVersionValidityCommand.ts +++ b/clients/client-glue/src/commands/CheckSchemaVersionValidityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CheckSchemaVersionValidityInput, CheckSchemaVersionValidityResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CheckSchemaVersionValidityInput, CheckSchemaVersionValidityResponse } from "../models/models_0"; import { CheckSchemaVersionValidity } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateBlueprintCommand.ts b/clients/client-glue/src/commands/CreateBlueprintCommand.ts index 0accecdafd8bf..5975f09f6f143 100644 --- a/clients/client-glue/src/commands/CreateBlueprintCommand.ts +++ b/clients/client-glue/src/commands/CreateBlueprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateBlueprintRequest, CreateBlueprintResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateBlueprintRequest, CreateBlueprintResponse } from "../models/models_0"; import { CreateBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateCatalogCommand.ts b/clients/client-glue/src/commands/CreateCatalogCommand.ts index 1cabf8cb53fbb..5099eb38a74f5 100644 --- a/clients/client-glue/src/commands/CreateCatalogCommand.ts +++ b/clients/client-glue/src/commands/CreateCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateCatalogRequest, CreateCatalogResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateCatalogRequest, CreateCatalogResponse } from "../models/models_0"; import { CreateCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateClassifierCommand.ts b/clients/client-glue/src/commands/CreateClassifierCommand.ts index 58c2d676b3e4f..25ce4699e5a6f 100644 --- a/clients/client-glue/src/commands/CreateClassifierCommand.ts +++ b/clients/client-glue/src/commands/CreateClassifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateClassifierRequest, CreateClassifierResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateClassifierRequest, CreateClassifierResponse } from "../models/models_0"; import { CreateClassifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateColumnStatisticsTaskSettingsCommand.ts b/clients/client-glue/src/commands/CreateColumnStatisticsTaskSettingsCommand.ts index 6a28fd38857d8..05e8174b77d50 100644 --- a/clients/client-glue/src/commands/CreateColumnStatisticsTaskSettingsCommand.ts +++ b/clients/client-glue/src/commands/CreateColumnStatisticsTaskSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateColumnStatisticsTaskSettingsRequest, CreateColumnStatisticsTaskSettingsResponse, } from "../models/models_0"; diff --git a/clients/client-glue/src/commands/CreateConnectionCommand.ts b/clients/client-glue/src/commands/CreateConnectionCommand.ts index 0c0e541d1adf0..14c5f5509e233 100644 --- a/clients/client-glue/src/commands/CreateConnectionCommand.ts +++ b/clients/client-glue/src/commands/CreateConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; import { CreateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateCrawlerCommand.ts b/clients/client-glue/src/commands/CreateCrawlerCommand.ts index 113b2979e5337..641f97904d459 100644 --- a/clients/client-glue/src/commands/CreateCrawlerCommand.ts +++ b/clients/client-glue/src/commands/CreateCrawlerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateCrawlerRequest, CreateCrawlerResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateCrawlerRequest, CreateCrawlerResponse } from "../models/models_0"; import { CreateCrawler } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateCustomEntityTypeCommand.ts b/clients/client-glue/src/commands/CreateCustomEntityTypeCommand.ts index e3cb950766b72..5096ba09f57cd 100644 --- a/clients/client-glue/src/commands/CreateCustomEntityTypeCommand.ts +++ b/clients/client-glue/src/commands/CreateCustomEntityTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateCustomEntityTypeRequest, CreateCustomEntityTypeResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateCustomEntityTypeRequest, CreateCustomEntityTypeResponse } from "../models/models_0"; import { CreateCustomEntityType } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateDataQualityRulesetCommand.ts b/clients/client-glue/src/commands/CreateDataQualityRulesetCommand.ts index 9275027b9e527..e76684b2065ce 100644 --- a/clients/client-glue/src/commands/CreateDataQualityRulesetCommand.ts +++ b/clients/client-glue/src/commands/CreateDataQualityRulesetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateDataQualityRulesetRequest } from "../models/models_0"; -import { CreateDataQualityRulesetResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateDataQualityRulesetRequest } from "../models/models_0"; +import type { CreateDataQualityRulesetResponse } from "../models/models_1"; import { CreateDataQualityRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateDatabaseCommand.ts b/clients/client-glue/src/commands/CreateDatabaseCommand.ts index 5c7895e915931..dd796a7a1bb69 100644 --- a/clients/client-glue/src/commands/CreateDatabaseCommand.ts +++ b/clients/client-glue/src/commands/CreateDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateDatabaseRequest, CreateDatabaseResponse } from "../models/models_0"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateDatabaseRequest, CreateDatabaseResponse } from "../models/models_0"; import { CreateDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateDevEndpointCommand.ts b/clients/client-glue/src/commands/CreateDevEndpointCommand.ts index 82f1c626a3e48..32c5c1929a3d3 100644 --- a/clients/client-glue/src/commands/CreateDevEndpointCommand.ts +++ b/clients/client-glue/src/commands/CreateDevEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateDevEndpointRequest, CreateDevEndpointResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateDevEndpointRequest, CreateDevEndpointResponse } from "../models/models_1"; import { CreateDevEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateGlueIdentityCenterConfigurationCommand.ts b/clients/client-glue/src/commands/CreateGlueIdentityCenterConfigurationCommand.ts index 2f3fdf16abfc1..05af6a8e0a7bd 100644 --- a/clients/client-glue/src/commands/CreateGlueIdentityCenterConfigurationCommand.ts +++ b/clients/client-glue/src/commands/CreateGlueIdentityCenterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateGlueIdentityCenterConfigurationRequest, CreateGlueIdentityCenterConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-glue/src/commands/CreateIntegrationCommand.ts b/clients/client-glue/src/commands/CreateIntegrationCommand.ts index 12fa783223b40..7d1cc58c9bf62 100644 --- a/clients/client-glue/src/commands/CreateIntegrationCommand.ts +++ b/clients/client-glue/src/commands/CreateIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateIntegrationRequest, CreateIntegrationResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateIntegrationRequest, CreateIntegrationResponse } from "../models/models_1"; import { CreateIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateIntegrationResourcePropertyCommand.ts b/clients/client-glue/src/commands/CreateIntegrationResourcePropertyCommand.ts index b8352b79b9238..3895976688e52 100644 --- a/clients/client-glue/src/commands/CreateIntegrationResourcePropertyCommand.ts +++ b/clients/client-glue/src/commands/CreateIntegrationResourcePropertyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateIntegrationResourcePropertyRequest, CreateIntegrationResourcePropertyResponse, } from "../models/models_1"; diff --git a/clients/client-glue/src/commands/CreateIntegrationTablePropertiesCommand.ts b/clients/client-glue/src/commands/CreateIntegrationTablePropertiesCommand.ts index e07db50177936..6266fa692da75 100644 --- a/clients/client-glue/src/commands/CreateIntegrationTablePropertiesCommand.ts +++ b/clients/client-glue/src/commands/CreateIntegrationTablePropertiesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateIntegrationTablePropertiesRequest, CreateIntegrationTablePropertiesResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { + CreateIntegrationTablePropertiesRequest, + CreateIntegrationTablePropertiesResponse, +} from "../models/models_1"; import { CreateIntegrationTableProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateJobCommand.ts b/clients/client-glue/src/commands/CreateJobCommand.ts index 2b9a2a2a5a8ac..6b21827cd24c1 100644 --- a/clients/client-glue/src/commands/CreateJobCommand.ts +++ b/clients/client-glue/src/commands/CreateJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateJobResponse } from "../models/models_1"; -import { CreateJobRequest } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateJobResponse } from "../models/models_1"; +import type { CreateJobRequest } from "../models/models_3"; import { CreateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateMLTransformCommand.ts b/clients/client-glue/src/commands/CreateMLTransformCommand.ts index 6c73fdcedfd46..8f029abb5e18d 100644 --- a/clients/client-glue/src/commands/CreateMLTransformCommand.ts +++ b/clients/client-glue/src/commands/CreateMLTransformCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateMLTransformRequest, CreateMLTransformResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateMLTransformRequest, CreateMLTransformResponse } from "../models/models_1"; import { CreateMLTransform } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreatePartitionCommand.ts b/clients/client-glue/src/commands/CreatePartitionCommand.ts index 53f25c48089a7..a51b92814131f 100644 --- a/clients/client-glue/src/commands/CreatePartitionCommand.ts +++ b/clients/client-glue/src/commands/CreatePartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreatePartitionRequest, CreatePartitionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreatePartitionRequest, CreatePartitionResponse } from "../models/models_1"; import { CreatePartition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreatePartitionIndexCommand.ts b/clients/client-glue/src/commands/CreatePartitionIndexCommand.ts index 88e3fbc15254b..7052a9fa11896 100644 --- a/clients/client-glue/src/commands/CreatePartitionIndexCommand.ts +++ b/clients/client-glue/src/commands/CreatePartitionIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreatePartitionIndexRequest, CreatePartitionIndexResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreatePartitionIndexRequest, CreatePartitionIndexResponse } from "../models/models_1"; import { CreatePartitionIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateRegistryCommand.ts b/clients/client-glue/src/commands/CreateRegistryCommand.ts index 1bb051eda8c25..499cc81b6319d 100644 --- a/clients/client-glue/src/commands/CreateRegistryCommand.ts +++ b/clients/client-glue/src/commands/CreateRegistryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateRegistryInput, CreateRegistryResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateRegistryInput, CreateRegistryResponse } from "../models/models_1"; import { CreateRegistry } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateSchemaCommand.ts b/clients/client-glue/src/commands/CreateSchemaCommand.ts index ee677e1537bcb..d6b1bad5bc412 100644 --- a/clients/client-glue/src/commands/CreateSchemaCommand.ts +++ b/clients/client-glue/src/commands/CreateSchemaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateSchemaInput, CreateSchemaResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateSchemaInput, CreateSchemaResponse } from "../models/models_1"; import { CreateSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateScriptCommand.ts b/clients/client-glue/src/commands/CreateScriptCommand.ts index e63aa71c0fb5f..754577be2188a 100644 --- a/clients/client-glue/src/commands/CreateScriptCommand.ts +++ b/clients/client-glue/src/commands/CreateScriptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateScriptRequest, CreateScriptResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateScriptRequest, CreateScriptResponse } from "../models/models_1"; import { CreateScript } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateSecurityConfigurationCommand.ts b/clients/client-glue/src/commands/CreateSecurityConfigurationCommand.ts index bab0da16cb0dd..bc35bca856c2f 100644 --- a/clients/client-glue/src/commands/CreateSecurityConfigurationCommand.ts +++ b/clients/client-glue/src/commands/CreateSecurityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateSecurityConfigurationRequest, CreateSecurityConfigurationResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateSecurityConfigurationRequest, CreateSecurityConfigurationResponse } from "../models/models_1"; import { CreateSecurityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateSessionCommand.ts b/clients/client-glue/src/commands/CreateSessionCommand.ts index b6be8b97449be..89fe40aa18cb9 100644 --- a/clients/client-glue/src/commands/CreateSessionCommand.ts +++ b/clients/client-glue/src/commands/CreateSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateSessionRequest, CreateSessionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateSessionRequest, CreateSessionResponse } from "../models/models_1"; import { CreateSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateTableCommand.ts b/clients/client-glue/src/commands/CreateTableCommand.ts index 27394a7139fd6..16e73ee655182 100644 --- a/clients/client-glue/src/commands/CreateTableCommand.ts +++ b/clients/client-glue/src/commands/CreateTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateTableRequest, CreateTableResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateTableRequest, CreateTableResponse } from "../models/models_1"; import { CreateTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateTableOptimizerCommand.ts b/clients/client-glue/src/commands/CreateTableOptimizerCommand.ts index c9c84632aa28e..da8ea8d59555f 100644 --- a/clients/client-glue/src/commands/CreateTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/CreateTableOptimizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateTableOptimizerRequest, CreateTableOptimizerResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateTableOptimizerRequest, CreateTableOptimizerResponse } from "../models/models_1"; import { CreateTableOptimizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateTriggerCommand.ts b/clients/client-glue/src/commands/CreateTriggerCommand.ts index 5f11b710d7d42..30e6a037d270f 100644 --- a/clients/client-glue/src/commands/CreateTriggerCommand.ts +++ b/clients/client-glue/src/commands/CreateTriggerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateTriggerRequest, CreateTriggerResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateTriggerRequest, CreateTriggerResponse } from "../models/models_1"; import { CreateTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateUsageProfileCommand.ts b/clients/client-glue/src/commands/CreateUsageProfileCommand.ts index 6fc5d1df12aa9..a0fb6c88c7313 100644 --- a/clients/client-glue/src/commands/CreateUsageProfileCommand.ts +++ b/clients/client-glue/src/commands/CreateUsageProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateUsageProfileRequest, CreateUsageProfileResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateUsageProfileRequest, CreateUsageProfileResponse } from "../models/models_1"; import { CreateUsageProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateUserDefinedFunctionCommand.ts b/clients/client-glue/src/commands/CreateUserDefinedFunctionCommand.ts index 864beb0430b98..f23d982ecc372 100644 --- a/clients/client-glue/src/commands/CreateUserDefinedFunctionCommand.ts +++ b/clients/client-glue/src/commands/CreateUserDefinedFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateUserDefinedFunctionRequest, CreateUserDefinedFunctionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateUserDefinedFunctionRequest, CreateUserDefinedFunctionResponse } from "../models/models_1"; import { CreateUserDefinedFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/CreateWorkflowCommand.ts b/clients/client-glue/src/commands/CreateWorkflowCommand.ts index 408b692431e03..90fc0d1e5087f 100644 --- a/clients/client-glue/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-glue/src/commands/CreateWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_1"; import { CreateWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteBlueprintCommand.ts b/clients/client-glue/src/commands/DeleteBlueprintCommand.ts index 62f67e24579d7..a13bab446c10f 100644 --- a/clients/client-glue/src/commands/DeleteBlueprintCommand.ts +++ b/clients/client-glue/src/commands/DeleteBlueprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteBlueprintRequest, DeleteBlueprintResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteBlueprintRequest, DeleteBlueprintResponse } from "../models/models_1"; import { DeleteBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteCatalogCommand.ts b/clients/client-glue/src/commands/DeleteCatalogCommand.ts index 50ac7865f05a4..feb5df602ba5d 100644 --- a/clients/client-glue/src/commands/DeleteCatalogCommand.ts +++ b/clients/client-glue/src/commands/DeleteCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteCatalogRequest, DeleteCatalogResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteCatalogRequest, DeleteCatalogResponse } from "../models/models_1"; import { DeleteCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteClassifierCommand.ts b/clients/client-glue/src/commands/DeleteClassifierCommand.ts index f30b5ac46ba75..dcab50f5ed6f8 100644 --- a/clients/client-glue/src/commands/DeleteClassifierCommand.ts +++ b/clients/client-glue/src/commands/DeleteClassifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteClassifierRequest, DeleteClassifierResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteClassifierRequest, DeleteClassifierResponse } from "../models/models_1"; import { DeleteClassifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteColumnStatisticsForPartitionCommand.ts b/clients/client-glue/src/commands/DeleteColumnStatisticsForPartitionCommand.ts index cb2fd422492f5..46570bb2d7e84 100644 --- a/clients/client-glue/src/commands/DeleteColumnStatisticsForPartitionCommand.ts +++ b/clients/client-glue/src/commands/DeleteColumnStatisticsForPartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteColumnStatisticsForPartitionRequest, DeleteColumnStatisticsForPartitionResponse, } from "../models/models_1"; diff --git a/clients/client-glue/src/commands/DeleteColumnStatisticsForTableCommand.ts b/clients/client-glue/src/commands/DeleteColumnStatisticsForTableCommand.ts index 360db14afc331..679710dbeb256 100644 --- a/clients/client-glue/src/commands/DeleteColumnStatisticsForTableCommand.ts +++ b/clients/client-glue/src/commands/DeleteColumnStatisticsForTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteColumnStatisticsForTableRequest, DeleteColumnStatisticsForTableResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteColumnStatisticsForTableRequest, DeleteColumnStatisticsForTableResponse } from "../models/models_1"; import { DeleteColumnStatisticsForTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteColumnStatisticsTaskSettingsCommand.ts b/clients/client-glue/src/commands/DeleteColumnStatisticsTaskSettingsCommand.ts index 59ceed6a27afb..4175854850647 100644 --- a/clients/client-glue/src/commands/DeleteColumnStatisticsTaskSettingsCommand.ts +++ b/clients/client-glue/src/commands/DeleteColumnStatisticsTaskSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteColumnStatisticsTaskSettingsRequest, DeleteColumnStatisticsTaskSettingsResponse, } from "../models/models_1"; diff --git a/clients/client-glue/src/commands/DeleteConnectionCommand.ts b/clients/client-glue/src/commands/DeleteConnectionCommand.ts index 0d50c480c72b8..3ee2d5a2e6987 100644 --- a/clients/client-glue/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-glue/src/commands/DeleteConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_1"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteCrawlerCommand.ts b/clients/client-glue/src/commands/DeleteCrawlerCommand.ts index 4cf48048f8b8b..c0404a21cc1c1 100644 --- a/clients/client-glue/src/commands/DeleteCrawlerCommand.ts +++ b/clients/client-glue/src/commands/DeleteCrawlerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteCrawlerRequest, DeleteCrawlerResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteCrawlerRequest, DeleteCrawlerResponse } from "../models/models_1"; import { DeleteCrawler } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteCustomEntityTypeCommand.ts b/clients/client-glue/src/commands/DeleteCustomEntityTypeCommand.ts index 5b5a982706274..3cd985e19b4bc 100644 --- a/clients/client-glue/src/commands/DeleteCustomEntityTypeCommand.ts +++ b/clients/client-glue/src/commands/DeleteCustomEntityTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteCustomEntityTypeRequest, DeleteCustomEntityTypeResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteCustomEntityTypeRequest, DeleteCustomEntityTypeResponse } from "../models/models_1"; import { DeleteCustomEntityType } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteDataQualityRulesetCommand.ts b/clients/client-glue/src/commands/DeleteDataQualityRulesetCommand.ts index 78930a8f1ab91..360ab8b36dd1c 100644 --- a/clients/client-glue/src/commands/DeleteDataQualityRulesetCommand.ts +++ b/clients/client-glue/src/commands/DeleteDataQualityRulesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteDataQualityRulesetRequest, DeleteDataQualityRulesetResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteDataQualityRulesetRequest, DeleteDataQualityRulesetResponse } from "../models/models_1"; import { DeleteDataQualityRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteDatabaseCommand.ts b/clients/client-glue/src/commands/DeleteDatabaseCommand.ts index 63cc9ce9d6d80..3faca97cc1e6d 100644 --- a/clients/client-glue/src/commands/DeleteDatabaseCommand.ts +++ b/clients/client-glue/src/commands/DeleteDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteDatabaseRequest, DeleteDatabaseResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteDatabaseRequest, DeleteDatabaseResponse } from "../models/models_1"; import { DeleteDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteDevEndpointCommand.ts b/clients/client-glue/src/commands/DeleteDevEndpointCommand.ts index f185cce5a3f38..717ef82123b6b 100644 --- a/clients/client-glue/src/commands/DeleteDevEndpointCommand.ts +++ b/clients/client-glue/src/commands/DeleteDevEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteDevEndpointRequest, DeleteDevEndpointResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteDevEndpointRequest, DeleteDevEndpointResponse } from "../models/models_1"; import { DeleteDevEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteGlueIdentityCenterConfigurationCommand.ts b/clients/client-glue/src/commands/DeleteGlueIdentityCenterConfigurationCommand.ts index c9db7801d96bc..aae210f5fa1fe 100644 --- a/clients/client-glue/src/commands/DeleteGlueIdentityCenterConfigurationCommand.ts +++ b/clients/client-glue/src/commands/DeleteGlueIdentityCenterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteGlueIdentityCenterConfigurationRequest, DeleteGlueIdentityCenterConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-glue/src/commands/DeleteIntegrationCommand.ts b/clients/client-glue/src/commands/DeleteIntegrationCommand.ts index abb7b67d5d3b5..8f7a7accfadf4 100644 --- a/clients/client-glue/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-glue/src/commands/DeleteIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteIntegrationRequest, DeleteIntegrationResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteIntegrationRequest, DeleteIntegrationResponse } from "../models/models_1"; import { DeleteIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteIntegrationResourcePropertyCommand.ts b/clients/client-glue/src/commands/DeleteIntegrationResourcePropertyCommand.ts index 6e3f414517089..b1d1122751ce4 100644 --- a/clients/client-glue/src/commands/DeleteIntegrationResourcePropertyCommand.ts +++ b/clients/client-glue/src/commands/DeleteIntegrationResourcePropertyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteIntegrationResourcePropertyRequest, DeleteIntegrationResourcePropertyResponse, } from "../models/models_1"; diff --git a/clients/client-glue/src/commands/DeleteIntegrationTablePropertiesCommand.ts b/clients/client-glue/src/commands/DeleteIntegrationTablePropertiesCommand.ts index 859237f552095..dafb1134b78f0 100644 --- a/clients/client-glue/src/commands/DeleteIntegrationTablePropertiesCommand.ts +++ b/clients/client-glue/src/commands/DeleteIntegrationTablePropertiesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteIntegrationTablePropertiesRequest, DeleteIntegrationTablePropertiesResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { + DeleteIntegrationTablePropertiesRequest, + DeleteIntegrationTablePropertiesResponse, +} from "../models/models_1"; import { DeleteIntegrationTableProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteJobCommand.ts b/clients/client-glue/src/commands/DeleteJobCommand.ts index 7db43dbf9ee07..8a7ff7a912f7b 100644 --- a/clients/client-glue/src/commands/DeleteJobCommand.ts +++ b/clients/client-glue/src/commands/DeleteJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteJobRequest, DeleteJobResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteJobRequest, DeleteJobResponse } from "../models/models_1"; import { DeleteJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteMLTransformCommand.ts b/clients/client-glue/src/commands/DeleteMLTransformCommand.ts index ecd481b08f80d..f49f9f35e809a 100644 --- a/clients/client-glue/src/commands/DeleteMLTransformCommand.ts +++ b/clients/client-glue/src/commands/DeleteMLTransformCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteMLTransformRequest, DeleteMLTransformResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteMLTransformRequest, DeleteMLTransformResponse } from "../models/models_1"; import { DeleteMLTransform } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeletePartitionCommand.ts b/clients/client-glue/src/commands/DeletePartitionCommand.ts index eb46a9c49ffb9..32c1ced849de7 100644 --- a/clients/client-glue/src/commands/DeletePartitionCommand.ts +++ b/clients/client-glue/src/commands/DeletePartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeletePartitionRequest, DeletePartitionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeletePartitionRequest, DeletePartitionResponse } from "../models/models_1"; import { DeletePartition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeletePartitionIndexCommand.ts b/clients/client-glue/src/commands/DeletePartitionIndexCommand.ts index 572ffc6a1bfbb..72291994baf9d 100644 --- a/clients/client-glue/src/commands/DeletePartitionIndexCommand.ts +++ b/clients/client-glue/src/commands/DeletePartitionIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeletePartitionIndexRequest, DeletePartitionIndexResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeletePartitionIndexRequest, DeletePartitionIndexResponse } from "../models/models_1"; import { DeletePartitionIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteRegistryCommand.ts b/clients/client-glue/src/commands/DeleteRegistryCommand.ts index 42b8ed6315c15..b763765b43cb2 100644 --- a/clients/client-glue/src/commands/DeleteRegistryCommand.ts +++ b/clients/client-glue/src/commands/DeleteRegistryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteRegistryInput, DeleteRegistryResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteRegistryInput, DeleteRegistryResponse } from "../models/models_1"; import { DeleteRegistry } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-glue/src/commands/DeleteResourcePolicyCommand.ts index d1cd3c8f57b52..de2e9858c98c2 100644 --- a/clients/client-glue/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-glue/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_1"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteSchemaCommand.ts b/clients/client-glue/src/commands/DeleteSchemaCommand.ts index 7a90edb72fb68..3c9f82bacac56 100644 --- a/clients/client-glue/src/commands/DeleteSchemaCommand.ts +++ b/clients/client-glue/src/commands/DeleteSchemaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteSchemaInput, DeleteSchemaResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteSchemaInput, DeleteSchemaResponse } from "../models/models_1"; import { DeleteSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteSchemaVersionsCommand.ts b/clients/client-glue/src/commands/DeleteSchemaVersionsCommand.ts index ccb2219292c56..43f1c150761c5 100644 --- a/clients/client-glue/src/commands/DeleteSchemaVersionsCommand.ts +++ b/clients/client-glue/src/commands/DeleteSchemaVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteSchemaVersionsInput, DeleteSchemaVersionsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteSchemaVersionsInput, DeleteSchemaVersionsResponse } from "../models/models_1"; import { DeleteSchemaVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteSecurityConfigurationCommand.ts b/clients/client-glue/src/commands/DeleteSecurityConfigurationCommand.ts index 473c6d667b35e..2bb1ff31b7740 100644 --- a/clients/client-glue/src/commands/DeleteSecurityConfigurationCommand.ts +++ b/clients/client-glue/src/commands/DeleteSecurityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteSecurityConfigurationRequest, DeleteSecurityConfigurationResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteSecurityConfigurationRequest, DeleteSecurityConfigurationResponse } from "../models/models_1"; import { DeleteSecurityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteSessionCommand.ts b/clients/client-glue/src/commands/DeleteSessionCommand.ts index e602d35830615..7c5e57abd383d 100644 --- a/clients/client-glue/src/commands/DeleteSessionCommand.ts +++ b/clients/client-glue/src/commands/DeleteSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_1"; import { DeleteSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteTableCommand.ts b/clients/client-glue/src/commands/DeleteTableCommand.ts index 6d40497711dd3..41eac17f91c00 100644 --- a/clients/client-glue/src/commands/DeleteTableCommand.ts +++ b/clients/client-glue/src/commands/DeleteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteTableRequest, DeleteTableResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteTableRequest, DeleteTableResponse } from "../models/models_1"; import { DeleteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteTableOptimizerCommand.ts b/clients/client-glue/src/commands/DeleteTableOptimizerCommand.ts index 72565846848b0..81155b70ad196 100644 --- a/clients/client-glue/src/commands/DeleteTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/DeleteTableOptimizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteTableOptimizerRequest, DeleteTableOptimizerResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteTableOptimizerRequest, DeleteTableOptimizerResponse } from "../models/models_1"; import { DeleteTableOptimizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteTableVersionCommand.ts b/clients/client-glue/src/commands/DeleteTableVersionCommand.ts index 1afdc9787f8d1..be8acef7aedd5 100644 --- a/clients/client-glue/src/commands/DeleteTableVersionCommand.ts +++ b/clients/client-glue/src/commands/DeleteTableVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteTableVersionRequest, DeleteTableVersionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteTableVersionRequest, DeleteTableVersionResponse } from "../models/models_1"; import { DeleteTableVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteTriggerCommand.ts b/clients/client-glue/src/commands/DeleteTriggerCommand.ts index 289f701a74401..280554cdebfff 100644 --- a/clients/client-glue/src/commands/DeleteTriggerCommand.ts +++ b/clients/client-glue/src/commands/DeleteTriggerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteTriggerRequest, DeleteTriggerResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteTriggerRequest, DeleteTriggerResponse } from "../models/models_1"; import { DeleteTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteUsageProfileCommand.ts b/clients/client-glue/src/commands/DeleteUsageProfileCommand.ts index 4069892aafca3..9995ad940a293 100644 --- a/clients/client-glue/src/commands/DeleteUsageProfileCommand.ts +++ b/clients/client-glue/src/commands/DeleteUsageProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteUsageProfileRequest, DeleteUsageProfileResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteUsageProfileRequest, DeleteUsageProfileResponse } from "../models/models_1"; import { DeleteUsageProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteUserDefinedFunctionCommand.ts b/clients/client-glue/src/commands/DeleteUserDefinedFunctionCommand.ts index 650c2ac9b896e..57083dbb6d598 100644 --- a/clients/client-glue/src/commands/DeleteUserDefinedFunctionCommand.ts +++ b/clients/client-glue/src/commands/DeleteUserDefinedFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteUserDefinedFunctionRequest, DeleteUserDefinedFunctionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteUserDefinedFunctionRequest, DeleteUserDefinedFunctionResponse } from "../models/models_1"; import { DeleteUserDefinedFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DeleteWorkflowCommand.ts b/clients/client-glue/src/commands/DeleteWorkflowCommand.ts index 94a7fe79a00e5..09743f9bfff10 100644 --- a/clients/client-glue/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-glue/src/commands/DeleteWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_1"; import { DeleteWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DescribeConnectionTypeCommand.ts b/clients/client-glue/src/commands/DescribeConnectionTypeCommand.ts index 4955558c371a6..15ae9de9e8c72 100644 --- a/clients/client-glue/src/commands/DescribeConnectionTypeCommand.ts +++ b/clients/client-glue/src/commands/DescribeConnectionTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DescribeConnectionTypeRequest, DescribeConnectionTypeResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DescribeConnectionTypeRequest, DescribeConnectionTypeResponse } from "../models/models_1"; import { DescribeConnectionType } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DescribeEntityCommand.ts b/clients/client-glue/src/commands/DescribeEntityCommand.ts index 0d36de786868e..6947b3da10e82 100644 --- a/clients/client-glue/src/commands/DescribeEntityCommand.ts +++ b/clients/client-glue/src/commands/DescribeEntityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DescribeEntityRequest, DescribeEntityResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DescribeEntityRequest, DescribeEntityResponse } from "../models/models_1"; import { DescribeEntity } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DescribeInboundIntegrationsCommand.ts b/clients/client-glue/src/commands/DescribeInboundIntegrationsCommand.ts index 5a239d0b2e9d4..9f107a411745b 100644 --- a/clients/client-glue/src/commands/DescribeInboundIntegrationsCommand.ts +++ b/clients/client-glue/src/commands/DescribeInboundIntegrationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DescribeInboundIntegrationsRequest, DescribeInboundIntegrationsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DescribeInboundIntegrationsRequest, DescribeInboundIntegrationsResponse } from "../models/models_1"; import { DescribeInboundIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/DescribeIntegrationsCommand.ts b/clients/client-glue/src/commands/DescribeIntegrationsCommand.ts index 7aa78a380b8c1..518cc6f8f7a5e 100644 --- a/clients/client-glue/src/commands/DescribeIntegrationsCommand.ts +++ b/clients/client-glue/src/commands/DescribeIntegrationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { DescribeIntegrationsRequest, DescribeIntegrationsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { DescribeIntegrationsRequest, DescribeIntegrationsResponse } from "../models/models_1"; import { DescribeIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetBlueprintCommand.ts b/clients/client-glue/src/commands/GetBlueprintCommand.ts index 1cb481ab3ef38..5e85def2b5077 100644 --- a/clients/client-glue/src/commands/GetBlueprintCommand.ts +++ b/clients/client-glue/src/commands/GetBlueprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetBlueprintRequest, GetBlueprintResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetBlueprintRequest, GetBlueprintResponse } from "../models/models_1"; import { GetBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetBlueprintRunCommand.ts b/clients/client-glue/src/commands/GetBlueprintRunCommand.ts index a49aa35470e43..ace39e65203ff 100644 --- a/clients/client-glue/src/commands/GetBlueprintRunCommand.ts +++ b/clients/client-glue/src/commands/GetBlueprintRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetBlueprintRunRequest, GetBlueprintRunResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetBlueprintRunRequest, GetBlueprintRunResponse } from "../models/models_1"; import { GetBlueprintRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetBlueprintRunsCommand.ts b/clients/client-glue/src/commands/GetBlueprintRunsCommand.ts index 450fcc8657870..ba1dddca5ccff 100644 --- a/clients/client-glue/src/commands/GetBlueprintRunsCommand.ts +++ b/clients/client-glue/src/commands/GetBlueprintRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetBlueprintRunsRequest, GetBlueprintRunsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetBlueprintRunsRequest, GetBlueprintRunsResponse } from "../models/models_1"; import { GetBlueprintRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetCatalogCommand.ts b/clients/client-glue/src/commands/GetCatalogCommand.ts index 2340b3f56c586..903df38e3f8e0 100644 --- a/clients/client-glue/src/commands/GetCatalogCommand.ts +++ b/clients/client-glue/src/commands/GetCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetCatalogRequest, GetCatalogResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetCatalogRequest, GetCatalogResponse } from "../models/models_1"; import { GetCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetCatalogImportStatusCommand.ts b/clients/client-glue/src/commands/GetCatalogImportStatusCommand.ts index 8d4c293d15a1e..06d78cd84cc11 100644 --- a/clients/client-glue/src/commands/GetCatalogImportStatusCommand.ts +++ b/clients/client-glue/src/commands/GetCatalogImportStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetCatalogImportStatusRequest, GetCatalogImportStatusResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetCatalogImportStatusRequest, GetCatalogImportStatusResponse } from "../models/models_1"; import { GetCatalogImportStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetCatalogsCommand.ts b/clients/client-glue/src/commands/GetCatalogsCommand.ts index 75789afb04a45..fa454d558ea69 100644 --- a/clients/client-glue/src/commands/GetCatalogsCommand.ts +++ b/clients/client-glue/src/commands/GetCatalogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetCatalogsRequest, GetCatalogsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetCatalogsRequest, GetCatalogsResponse } from "../models/models_1"; import { GetCatalogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetClassifierCommand.ts b/clients/client-glue/src/commands/GetClassifierCommand.ts index 719118458a23e..e55abf1e71cab 100644 --- a/clients/client-glue/src/commands/GetClassifierCommand.ts +++ b/clients/client-glue/src/commands/GetClassifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetClassifierRequest, GetClassifierResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetClassifierRequest, GetClassifierResponse } from "../models/models_1"; import { GetClassifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetClassifiersCommand.ts b/clients/client-glue/src/commands/GetClassifiersCommand.ts index 45bcbde84d183..516fa004296ef 100644 --- a/clients/client-glue/src/commands/GetClassifiersCommand.ts +++ b/clients/client-glue/src/commands/GetClassifiersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetClassifiersRequest, GetClassifiersResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetClassifiersRequest, GetClassifiersResponse } from "../models/models_1"; import { GetClassifiers } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetColumnStatisticsForPartitionCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsForPartitionCommand.ts index 0395e0a47ee30..ffb102689a4b5 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsForPartitionCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsForPartitionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetColumnStatisticsForPartitionRequest, GetColumnStatisticsForPartitionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { + GetColumnStatisticsForPartitionRequest, + GetColumnStatisticsForPartitionResponse, +} from "../models/models_1"; import { GetColumnStatisticsForPartition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetColumnStatisticsForTableCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsForTableCommand.ts index c9a0fb365a906..bac71e8ab09a4 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsForTableCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsForTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetColumnStatisticsForTableRequest, GetColumnStatisticsForTableResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetColumnStatisticsForTableRequest, GetColumnStatisticsForTableResponse } from "../models/models_1"; import { GetColumnStatisticsForTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetColumnStatisticsTaskRunCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsTaskRunCommand.ts index 9cbf2aeb2b30f..9e97f7e126736 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsTaskRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetColumnStatisticsTaskRunRequest, GetColumnStatisticsTaskRunResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetColumnStatisticsTaskRunRequest, GetColumnStatisticsTaskRunResponse } from "../models/models_1"; import { GetColumnStatisticsTaskRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetColumnStatisticsTaskRunsCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsTaskRunsCommand.ts index 37665c7ee38b2..b795449bb6667 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsTaskRunsCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsTaskRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetColumnStatisticsTaskRunsRequest, GetColumnStatisticsTaskRunsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetColumnStatisticsTaskRunsRequest, GetColumnStatisticsTaskRunsResponse } from "../models/models_1"; import { GetColumnStatisticsTaskRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetColumnStatisticsTaskSettingsCommand.ts b/clients/client-glue/src/commands/GetColumnStatisticsTaskSettingsCommand.ts index de03d00e8518d..ad1389acd6c0e 100644 --- a/clients/client-glue/src/commands/GetColumnStatisticsTaskSettingsCommand.ts +++ b/clients/client-glue/src/commands/GetColumnStatisticsTaskSettingsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetColumnStatisticsTaskSettingsRequest, GetColumnStatisticsTaskSettingsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { + GetColumnStatisticsTaskSettingsRequest, + GetColumnStatisticsTaskSettingsResponse, +} from "../models/models_1"; import { GetColumnStatisticsTaskSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetConnectionCommand.ts b/clients/client-glue/src/commands/GetConnectionCommand.ts index 3c719b8e2b265..536273be10e98 100644 --- a/clients/client-glue/src/commands/GetConnectionCommand.ts +++ b/clients/client-glue/src/commands/GetConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetConnectionRequest, GetConnectionResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetConnectionRequest, GetConnectionResponse } from "../models/models_1"; import { GetConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetConnectionsCommand.ts b/clients/client-glue/src/commands/GetConnectionsCommand.ts index 02adb3e844d33..e94b66fe78a9b 100644 --- a/clients/client-glue/src/commands/GetConnectionsCommand.ts +++ b/clients/client-glue/src/commands/GetConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetConnectionsRequest, GetConnectionsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetConnectionsRequest, GetConnectionsResponse } from "../models/models_1"; import { GetConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetCrawlerCommand.ts b/clients/client-glue/src/commands/GetCrawlerCommand.ts index b1d4369b71730..77ef371d95d0f 100644 --- a/clients/client-glue/src/commands/GetCrawlerCommand.ts +++ b/clients/client-glue/src/commands/GetCrawlerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetCrawlerRequest, GetCrawlerResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetCrawlerRequest, GetCrawlerResponse } from "../models/models_1"; import { GetCrawler } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetCrawlerMetricsCommand.ts b/clients/client-glue/src/commands/GetCrawlerMetricsCommand.ts index dbb285d58cb26..fcc6d732a2f70 100644 --- a/clients/client-glue/src/commands/GetCrawlerMetricsCommand.ts +++ b/clients/client-glue/src/commands/GetCrawlerMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetCrawlerMetricsRequest, GetCrawlerMetricsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetCrawlerMetricsRequest, GetCrawlerMetricsResponse } from "../models/models_1"; import { GetCrawlerMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetCrawlersCommand.ts b/clients/client-glue/src/commands/GetCrawlersCommand.ts index 445b87c74c50f..be8c0d1442e15 100644 --- a/clients/client-glue/src/commands/GetCrawlersCommand.ts +++ b/clients/client-glue/src/commands/GetCrawlersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetCrawlersRequest, GetCrawlersResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetCrawlersRequest, GetCrawlersResponse } from "../models/models_1"; import { GetCrawlers } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetCustomEntityTypeCommand.ts b/clients/client-glue/src/commands/GetCustomEntityTypeCommand.ts index 82a0362299c30..a1844db3c7713 100644 --- a/clients/client-glue/src/commands/GetCustomEntityTypeCommand.ts +++ b/clients/client-glue/src/commands/GetCustomEntityTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetCustomEntityTypeRequest, GetCustomEntityTypeResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetCustomEntityTypeRequest, GetCustomEntityTypeResponse } from "../models/models_1"; import { GetCustomEntityType } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDataCatalogEncryptionSettingsCommand.ts b/clients/client-glue/src/commands/GetDataCatalogEncryptionSettingsCommand.ts index b6a3b8a7733ca..421c472194d4b 100644 --- a/clients/client-glue/src/commands/GetDataCatalogEncryptionSettingsCommand.ts +++ b/clients/client-glue/src/commands/GetDataCatalogEncryptionSettingsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDataCatalogEncryptionSettingsRequest, GetDataCatalogEncryptionSettingsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { + GetDataCatalogEncryptionSettingsRequest, + GetDataCatalogEncryptionSettingsResponse, +} from "../models/models_1"; import { GetDataCatalogEncryptionSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDataQualityModelCommand.ts b/clients/client-glue/src/commands/GetDataQualityModelCommand.ts index f39596f8cd8b7..34b50b15b2d56 100644 --- a/clients/client-glue/src/commands/GetDataQualityModelCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDataQualityModelRequest, GetDataQualityModelResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDataQualityModelRequest, GetDataQualityModelResponse } from "../models/models_1"; import { GetDataQualityModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDataQualityModelResultCommand.ts b/clients/client-glue/src/commands/GetDataQualityModelResultCommand.ts index b7bdadf180bcb..c4b328e5c639a 100644 --- a/clients/client-glue/src/commands/GetDataQualityModelResultCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityModelResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDataQualityModelResultRequest, GetDataQualityModelResultResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDataQualityModelResultRequest, GetDataQualityModelResultResponse } from "../models/models_1"; import { GetDataQualityModelResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDataQualityResultCommand.ts b/clients/client-glue/src/commands/GetDataQualityResultCommand.ts index 3b0d3e8f209e8..0e2db4ac11f7b 100644 --- a/clients/client-glue/src/commands/GetDataQualityResultCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDataQualityResultRequest, GetDataQualityResultResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDataQualityResultRequest, GetDataQualityResultResponse } from "../models/models_1"; import { GetDataQualityResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDataQualityRuleRecommendationRunCommand.ts b/clients/client-glue/src/commands/GetDataQualityRuleRecommendationRunCommand.ts index 4b3727547e4eb..07bd05220acbd 100644 --- a/clients/client-glue/src/commands/GetDataQualityRuleRecommendationRunCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityRuleRecommendationRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDataQualityRuleRecommendationRunRequest, GetDataQualityRuleRecommendationRunResponse, } from "../models/models_1"; diff --git a/clients/client-glue/src/commands/GetDataQualityRulesetCommand.ts b/clients/client-glue/src/commands/GetDataQualityRulesetCommand.ts index bd4b02e646196..412049343b3cc 100644 --- a/clients/client-glue/src/commands/GetDataQualityRulesetCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityRulesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDataQualityRulesetRequest, GetDataQualityRulesetResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDataQualityRulesetRequest, GetDataQualityRulesetResponse } from "../models/models_1"; import { GetDataQualityRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDataQualityRulesetEvaluationRunCommand.ts b/clients/client-glue/src/commands/GetDataQualityRulesetEvaluationRunCommand.ts index 525bd7f820150..6b53add9c4f9c 100644 --- a/clients/client-glue/src/commands/GetDataQualityRulesetEvaluationRunCommand.ts +++ b/clients/client-glue/src/commands/GetDataQualityRulesetEvaluationRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDataQualityRulesetEvaluationRunRequest, GetDataQualityRulesetEvaluationRunResponse, } from "../models/models_1"; diff --git a/clients/client-glue/src/commands/GetDatabaseCommand.ts b/clients/client-glue/src/commands/GetDatabaseCommand.ts index 37ac0406e056d..fe880951f26e5 100644 --- a/clients/client-glue/src/commands/GetDatabaseCommand.ts +++ b/clients/client-glue/src/commands/GetDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDatabaseRequest, GetDatabaseResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDatabaseRequest, GetDatabaseResponse } from "../models/models_1"; import { GetDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDatabasesCommand.ts b/clients/client-glue/src/commands/GetDatabasesCommand.ts index d9ec39ff76b8a..ca5bd6d219729 100644 --- a/clients/client-glue/src/commands/GetDatabasesCommand.ts +++ b/clients/client-glue/src/commands/GetDatabasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDatabasesRequest, GetDatabasesResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDatabasesRequest, GetDatabasesResponse } from "../models/models_1"; import { GetDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDataflowGraphCommand.ts b/clients/client-glue/src/commands/GetDataflowGraphCommand.ts index 7e53820a88b11..58e7df726b874 100644 --- a/clients/client-glue/src/commands/GetDataflowGraphCommand.ts +++ b/clients/client-glue/src/commands/GetDataflowGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDataflowGraphRequest, GetDataflowGraphResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDataflowGraphRequest, GetDataflowGraphResponse } from "../models/models_1"; import { GetDataflowGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDevEndpointCommand.ts b/clients/client-glue/src/commands/GetDevEndpointCommand.ts index f2aa3a15d0543..45e6c44fdd87f 100644 --- a/clients/client-glue/src/commands/GetDevEndpointCommand.ts +++ b/clients/client-glue/src/commands/GetDevEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDevEndpointRequest, GetDevEndpointResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDevEndpointRequest, GetDevEndpointResponse } from "../models/models_1"; import { GetDevEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetDevEndpointsCommand.ts b/clients/client-glue/src/commands/GetDevEndpointsCommand.ts index 4897a74104fba..5d9301fac56d3 100644 --- a/clients/client-glue/src/commands/GetDevEndpointsCommand.ts +++ b/clients/client-glue/src/commands/GetDevEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetDevEndpointsRequest, GetDevEndpointsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetDevEndpointsRequest, GetDevEndpointsResponse } from "../models/models_1"; import { GetDevEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetEntityRecordsCommand.ts b/clients/client-glue/src/commands/GetEntityRecordsCommand.ts index 34b23135e0600..5aa4afcb2e3a2 100644 --- a/clients/client-glue/src/commands/GetEntityRecordsCommand.ts +++ b/clients/client-glue/src/commands/GetEntityRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetEntityRecordsRequest, GetEntityRecordsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetEntityRecordsRequest, GetEntityRecordsResponse } from "../models/models_1"; import { GetEntityRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetGlueIdentityCenterConfigurationCommand.ts b/clients/client-glue/src/commands/GetGlueIdentityCenterConfigurationCommand.ts index 0715660906e80..354516ccad35b 100644 --- a/clients/client-glue/src/commands/GetGlueIdentityCenterConfigurationCommand.ts +++ b/clients/client-glue/src/commands/GetGlueIdentityCenterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetGlueIdentityCenterConfigurationRequest, GetGlueIdentityCenterConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-glue/src/commands/GetIntegrationResourcePropertyCommand.ts b/clients/client-glue/src/commands/GetIntegrationResourcePropertyCommand.ts index de69c2f5bab3c..f5863d28ac3e4 100644 --- a/clients/client-glue/src/commands/GetIntegrationResourcePropertyCommand.ts +++ b/clients/client-glue/src/commands/GetIntegrationResourcePropertyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetIntegrationResourcePropertyRequest, GetIntegrationResourcePropertyResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetIntegrationResourcePropertyRequest, GetIntegrationResourcePropertyResponse } from "../models/models_1"; import { GetIntegrationResourceProperty } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetIntegrationTablePropertiesCommand.ts b/clients/client-glue/src/commands/GetIntegrationTablePropertiesCommand.ts index f0b5f0b15a4c8..6d2c7b950474a 100644 --- a/clients/client-glue/src/commands/GetIntegrationTablePropertiesCommand.ts +++ b/clients/client-glue/src/commands/GetIntegrationTablePropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetIntegrationTablePropertiesRequest, GetIntegrationTablePropertiesResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetIntegrationTablePropertiesRequest, GetIntegrationTablePropertiesResponse } from "../models/models_1"; import { GetIntegrationTableProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetJobBookmarkCommand.ts b/clients/client-glue/src/commands/GetJobBookmarkCommand.ts index 3f544293505fc..ed54309a65601 100644 --- a/clients/client-glue/src/commands/GetJobBookmarkCommand.ts +++ b/clients/client-glue/src/commands/GetJobBookmarkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetJobBookmarkRequest, GetJobBookmarkResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetJobBookmarkRequest, GetJobBookmarkResponse } from "../models/models_1"; import { GetJobBookmark } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetJobCommand.ts b/clients/client-glue/src/commands/GetJobCommand.ts index 0effb77abed87..57373747fe6e2 100644 --- a/clients/client-glue/src/commands/GetJobCommand.ts +++ b/clients/client-glue/src/commands/GetJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetJobRequest } from "../models/models_1"; -import { GetJobResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetJobRequest } from "../models/models_1"; +import type { GetJobResponse } from "../models/models_3"; import { GetJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetJobRunCommand.ts b/clients/client-glue/src/commands/GetJobRunCommand.ts index d1eb94d4dec0e..423def7a0aa7d 100644 --- a/clients/client-glue/src/commands/GetJobRunCommand.ts +++ b/clients/client-glue/src/commands/GetJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetJobRunRequest, GetJobRunResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetJobRunRequest, GetJobRunResponse } from "../models/models_1"; import { GetJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetJobRunsCommand.ts b/clients/client-glue/src/commands/GetJobRunsCommand.ts index 25479c6895b69..b8da15bcad1dc 100644 --- a/clients/client-glue/src/commands/GetJobRunsCommand.ts +++ b/clients/client-glue/src/commands/GetJobRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetJobRunsRequest, GetJobRunsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetJobRunsRequest, GetJobRunsResponse } from "../models/models_1"; import { GetJobRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetJobsCommand.ts b/clients/client-glue/src/commands/GetJobsCommand.ts index 2ae511db9a3fc..1b01cc4de189a 100644 --- a/clients/client-glue/src/commands/GetJobsCommand.ts +++ b/clients/client-glue/src/commands/GetJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetJobsRequest } from "../models/models_1"; -import { GetJobsResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetJobsRequest } from "../models/models_1"; +import type { GetJobsResponse } from "../models/models_3"; import { GetJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetMLTaskRunCommand.ts b/clients/client-glue/src/commands/GetMLTaskRunCommand.ts index 6991fb11a228b..63a6aff1dc89c 100644 --- a/clients/client-glue/src/commands/GetMLTaskRunCommand.ts +++ b/clients/client-glue/src/commands/GetMLTaskRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetMLTaskRunRequest, GetMLTaskRunResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetMLTaskRunRequest, GetMLTaskRunResponse } from "../models/models_1"; import { GetMLTaskRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetMLTaskRunsCommand.ts b/clients/client-glue/src/commands/GetMLTaskRunsCommand.ts index bfc993f9a6404..8941c8a0a929d 100644 --- a/clients/client-glue/src/commands/GetMLTaskRunsCommand.ts +++ b/clients/client-glue/src/commands/GetMLTaskRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetMLTaskRunsRequest, GetMLTaskRunsResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetMLTaskRunsRequest, GetMLTaskRunsResponse } from "../models/models_1"; import { GetMLTaskRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetMLTransformCommand.ts b/clients/client-glue/src/commands/GetMLTransformCommand.ts index 7996a1d53d675..e3a4ea66e4ad0 100644 --- a/clients/client-glue/src/commands/GetMLTransformCommand.ts +++ b/clients/client-glue/src/commands/GetMLTransformCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetMLTransformRequest, GetMLTransformResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetMLTransformRequest, GetMLTransformResponse } from "../models/models_1"; import { GetMLTransform } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetMLTransformsCommand.ts b/clients/client-glue/src/commands/GetMLTransformsCommand.ts index 05e504c40c6f9..956ebbc297a8b 100644 --- a/clients/client-glue/src/commands/GetMLTransformsCommand.ts +++ b/clients/client-glue/src/commands/GetMLTransformsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetMLTransformsRequest, GetMLTransformsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetMLTransformsRequest, GetMLTransformsResponse } from "../models/models_2"; import { GetMLTransforms } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetMappingCommand.ts b/clients/client-glue/src/commands/GetMappingCommand.ts index 6c5adb3b385e0..03098ad637928 100644 --- a/clients/client-glue/src/commands/GetMappingCommand.ts +++ b/clients/client-glue/src/commands/GetMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetMappingRequest, GetMappingResponse } from "../models/models_1"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetMappingRequest, GetMappingResponse } from "../models/models_1"; import { GetMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetPartitionCommand.ts b/clients/client-glue/src/commands/GetPartitionCommand.ts index 4dc4960a6b5f0..6e3334b7fabea 100644 --- a/clients/client-glue/src/commands/GetPartitionCommand.ts +++ b/clients/client-glue/src/commands/GetPartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetPartitionRequest, GetPartitionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetPartitionRequest, GetPartitionResponse } from "../models/models_2"; import { GetPartition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetPartitionIndexesCommand.ts b/clients/client-glue/src/commands/GetPartitionIndexesCommand.ts index 1a94900eb574f..97d1184053156 100644 --- a/clients/client-glue/src/commands/GetPartitionIndexesCommand.ts +++ b/clients/client-glue/src/commands/GetPartitionIndexesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetPartitionIndexesRequest, GetPartitionIndexesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetPartitionIndexesRequest, GetPartitionIndexesResponse } from "../models/models_2"; import { GetPartitionIndexes } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetPartitionsCommand.ts b/clients/client-glue/src/commands/GetPartitionsCommand.ts index 29d8af0a107d3..fe772657d3dcd 100644 --- a/clients/client-glue/src/commands/GetPartitionsCommand.ts +++ b/clients/client-glue/src/commands/GetPartitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetPartitionsRequest, GetPartitionsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetPartitionsRequest, GetPartitionsResponse } from "../models/models_2"; import { GetPartitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetPlanCommand.ts b/clients/client-glue/src/commands/GetPlanCommand.ts index fc9901d0314c2..52c5d87cc8159 100644 --- a/clients/client-glue/src/commands/GetPlanCommand.ts +++ b/clients/client-glue/src/commands/GetPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetPlanRequest, GetPlanResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetPlanRequest, GetPlanResponse } from "../models/models_2"; import { GetPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetRegistryCommand.ts b/clients/client-glue/src/commands/GetRegistryCommand.ts index 5a2b3abb5acf0..1d7f1c531a19e 100644 --- a/clients/client-glue/src/commands/GetRegistryCommand.ts +++ b/clients/client-glue/src/commands/GetRegistryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetRegistryInput, GetRegistryResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetRegistryInput, GetRegistryResponse } from "../models/models_2"; import { GetRegistry } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetResourcePoliciesCommand.ts b/clients/client-glue/src/commands/GetResourcePoliciesCommand.ts index b16f573b27f62..ef8c5285016a2 100644 --- a/clients/client-glue/src/commands/GetResourcePoliciesCommand.ts +++ b/clients/client-glue/src/commands/GetResourcePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetResourcePoliciesRequest, GetResourcePoliciesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetResourcePoliciesRequest, GetResourcePoliciesResponse } from "../models/models_2"; import { GetResourcePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetResourcePolicyCommand.ts b/clients/client-glue/src/commands/GetResourcePolicyCommand.ts index 30383357de7d9..fa91f76be8cc0 100644 --- a/clients/client-glue/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-glue/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_2"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetSchemaByDefinitionCommand.ts b/clients/client-glue/src/commands/GetSchemaByDefinitionCommand.ts index 8c0366634f209..46b45b2d10ccc 100644 --- a/clients/client-glue/src/commands/GetSchemaByDefinitionCommand.ts +++ b/clients/client-glue/src/commands/GetSchemaByDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetSchemaByDefinitionInput, GetSchemaByDefinitionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetSchemaByDefinitionInput, GetSchemaByDefinitionResponse } from "../models/models_2"; import { GetSchemaByDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetSchemaCommand.ts b/clients/client-glue/src/commands/GetSchemaCommand.ts index 48e372ac94705..3caf1a86552e1 100644 --- a/clients/client-glue/src/commands/GetSchemaCommand.ts +++ b/clients/client-glue/src/commands/GetSchemaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetSchemaInput, GetSchemaResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetSchemaInput, GetSchemaResponse } from "../models/models_2"; import { GetSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetSchemaVersionCommand.ts b/clients/client-glue/src/commands/GetSchemaVersionCommand.ts index efad422890092..59679e9fa46d4 100644 --- a/clients/client-glue/src/commands/GetSchemaVersionCommand.ts +++ b/clients/client-glue/src/commands/GetSchemaVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetSchemaVersionInput, GetSchemaVersionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetSchemaVersionInput, GetSchemaVersionResponse } from "../models/models_2"; import { GetSchemaVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetSchemaVersionsDiffCommand.ts b/clients/client-glue/src/commands/GetSchemaVersionsDiffCommand.ts index 04585bf18e20c..08818fab69f9a 100644 --- a/clients/client-glue/src/commands/GetSchemaVersionsDiffCommand.ts +++ b/clients/client-glue/src/commands/GetSchemaVersionsDiffCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetSchemaVersionsDiffInput, GetSchemaVersionsDiffResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetSchemaVersionsDiffInput, GetSchemaVersionsDiffResponse } from "../models/models_2"; import { GetSchemaVersionsDiff } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetSecurityConfigurationCommand.ts b/clients/client-glue/src/commands/GetSecurityConfigurationCommand.ts index f49318bc190e5..2b42cc18044d0 100644 --- a/clients/client-glue/src/commands/GetSecurityConfigurationCommand.ts +++ b/clients/client-glue/src/commands/GetSecurityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetSecurityConfigurationRequest, GetSecurityConfigurationResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetSecurityConfigurationRequest, GetSecurityConfigurationResponse } from "../models/models_2"; import { GetSecurityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetSecurityConfigurationsCommand.ts b/clients/client-glue/src/commands/GetSecurityConfigurationsCommand.ts index b479a256edc37..f3ef260a09e98 100644 --- a/clients/client-glue/src/commands/GetSecurityConfigurationsCommand.ts +++ b/clients/client-glue/src/commands/GetSecurityConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetSecurityConfigurationsRequest, GetSecurityConfigurationsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetSecurityConfigurationsRequest, GetSecurityConfigurationsResponse } from "../models/models_2"; import { GetSecurityConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetSessionCommand.ts b/clients/client-glue/src/commands/GetSessionCommand.ts index 1c951ecd05033..2531c138d8cdd 100644 --- a/clients/client-glue/src/commands/GetSessionCommand.ts +++ b/clients/client-glue/src/commands/GetSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_2"; import { GetSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetStatementCommand.ts b/clients/client-glue/src/commands/GetStatementCommand.ts index b8d1283e778de..64cab1c78d2a4 100644 --- a/clients/client-glue/src/commands/GetStatementCommand.ts +++ b/clients/client-glue/src/commands/GetStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetStatementRequest, GetStatementResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetStatementRequest, GetStatementResponse } from "../models/models_2"; import { GetStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetTableCommand.ts b/clients/client-glue/src/commands/GetTableCommand.ts index 3aa0578e6c2a7..5745c3e110ca7 100644 --- a/clients/client-glue/src/commands/GetTableCommand.ts +++ b/clients/client-glue/src/commands/GetTableCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetTableRequest } from "../models/models_2"; -import { GetTableResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetTableRequest } from "../models/models_2"; +import type { GetTableResponse } from "../models/models_3"; import { GetTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetTableOptimizerCommand.ts b/clients/client-glue/src/commands/GetTableOptimizerCommand.ts index 0d4ede99f4255..e72b12fbf0d22 100644 --- a/clients/client-glue/src/commands/GetTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/GetTableOptimizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetTableOptimizerRequest, GetTableOptimizerResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetTableOptimizerRequest, GetTableOptimizerResponse } from "../models/models_2"; import { GetTableOptimizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetTableVersionCommand.ts b/clients/client-glue/src/commands/GetTableVersionCommand.ts index b268b9f28db3d..1007c6cbf3ffa 100644 --- a/clients/client-glue/src/commands/GetTableVersionCommand.ts +++ b/clients/client-glue/src/commands/GetTableVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetTableVersionRequest } from "../models/models_2"; -import { GetTableVersionResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetTableVersionRequest } from "../models/models_2"; +import type { GetTableVersionResponse } from "../models/models_3"; import { GetTableVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetTableVersionsCommand.ts b/clients/client-glue/src/commands/GetTableVersionsCommand.ts index 26484b05f774b..0d114049d485f 100644 --- a/clients/client-glue/src/commands/GetTableVersionsCommand.ts +++ b/clients/client-glue/src/commands/GetTableVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetTableVersionsRequest } from "../models/models_2"; -import { GetTableVersionsResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetTableVersionsRequest } from "../models/models_2"; +import type { GetTableVersionsResponse } from "../models/models_3"; import { GetTableVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetTablesCommand.ts b/clients/client-glue/src/commands/GetTablesCommand.ts index ddf5da361b20f..4ff123b73acad 100644 --- a/clients/client-glue/src/commands/GetTablesCommand.ts +++ b/clients/client-glue/src/commands/GetTablesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetTablesRequest } from "../models/models_2"; -import { GetTablesResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetTablesRequest } from "../models/models_2"; +import type { GetTablesResponse } from "../models/models_3"; import { GetTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetTagsCommand.ts b/clients/client-glue/src/commands/GetTagsCommand.ts index 4772fd68584be..4b63c5fddd000 100644 --- a/clients/client-glue/src/commands/GetTagsCommand.ts +++ b/clients/client-glue/src/commands/GetTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetTagsRequest, GetTagsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetTagsRequest, GetTagsResponse } from "../models/models_2"; import { GetTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetTriggerCommand.ts b/clients/client-glue/src/commands/GetTriggerCommand.ts index 5a94ed063d936..ba41cd8e6f64a 100644 --- a/clients/client-glue/src/commands/GetTriggerCommand.ts +++ b/clients/client-glue/src/commands/GetTriggerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetTriggerRequest, GetTriggerResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetTriggerRequest, GetTriggerResponse } from "../models/models_2"; import { GetTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetTriggersCommand.ts b/clients/client-glue/src/commands/GetTriggersCommand.ts index 6db6473b257b9..1f8f2625cb766 100644 --- a/clients/client-glue/src/commands/GetTriggersCommand.ts +++ b/clients/client-glue/src/commands/GetTriggersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetTriggersRequest, GetTriggersResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetTriggersRequest, GetTriggersResponse } from "../models/models_2"; import { GetTriggers } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetUnfilteredPartitionMetadataCommand.ts b/clients/client-glue/src/commands/GetUnfilteredPartitionMetadataCommand.ts index 61609e08727e7..ed663dd807f0b 100644 --- a/clients/client-glue/src/commands/GetUnfilteredPartitionMetadataCommand.ts +++ b/clients/client-glue/src/commands/GetUnfilteredPartitionMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetUnfilteredPartitionMetadataRequest, GetUnfilteredPartitionMetadataResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetUnfilteredPartitionMetadataRequest, GetUnfilteredPartitionMetadataResponse } from "../models/models_2"; import { GetUnfilteredPartitionMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetUnfilteredPartitionsMetadataCommand.ts b/clients/client-glue/src/commands/GetUnfilteredPartitionsMetadataCommand.ts index bd6e3eb5f0040..81ed804b21552 100644 --- a/clients/client-glue/src/commands/GetUnfilteredPartitionsMetadataCommand.ts +++ b/clients/client-glue/src/commands/GetUnfilteredPartitionsMetadataCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetUnfilteredPartitionsMetadataRequest, GetUnfilteredPartitionsMetadataResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { + GetUnfilteredPartitionsMetadataRequest, + GetUnfilteredPartitionsMetadataResponse, +} from "../models/models_2"; import { GetUnfilteredPartitionsMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetUnfilteredTableMetadataCommand.ts b/clients/client-glue/src/commands/GetUnfilteredTableMetadataCommand.ts index d2a09d6bc9f32..c28095c0d1631 100644 --- a/clients/client-glue/src/commands/GetUnfilteredTableMetadataCommand.ts +++ b/clients/client-glue/src/commands/GetUnfilteredTableMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetUnfilteredTableMetadataRequest } from "../models/models_2"; -import { GetUnfilteredTableMetadataResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetUnfilteredTableMetadataRequest } from "../models/models_2"; +import type { GetUnfilteredTableMetadataResponse } from "../models/models_3"; import { GetUnfilteredTableMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetUsageProfileCommand.ts b/clients/client-glue/src/commands/GetUsageProfileCommand.ts index a035d63c8cdb9..ddda454b847bf 100644 --- a/clients/client-glue/src/commands/GetUsageProfileCommand.ts +++ b/clients/client-glue/src/commands/GetUsageProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetUsageProfileRequest, GetUsageProfileResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetUsageProfileRequest, GetUsageProfileResponse } from "../models/models_2"; import { GetUsageProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetUserDefinedFunctionCommand.ts b/clients/client-glue/src/commands/GetUserDefinedFunctionCommand.ts index 088fbcc7d7c42..562d16120f896 100644 --- a/clients/client-glue/src/commands/GetUserDefinedFunctionCommand.ts +++ b/clients/client-glue/src/commands/GetUserDefinedFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetUserDefinedFunctionRequest, GetUserDefinedFunctionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetUserDefinedFunctionRequest, GetUserDefinedFunctionResponse } from "../models/models_2"; import { GetUserDefinedFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetUserDefinedFunctionsCommand.ts b/clients/client-glue/src/commands/GetUserDefinedFunctionsCommand.ts index b354f9c31f204..aa87b7ecd2fd5 100644 --- a/clients/client-glue/src/commands/GetUserDefinedFunctionsCommand.ts +++ b/clients/client-glue/src/commands/GetUserDefinedFunctionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetUserDefinedFunctionsRequest, GetUserDefinedFunctionsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetUserDefinedFunctionsRequest, GetUserDefinedFunctionsResponse } from "../models/models_2"; import { GetUserDefinedFunctions } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetWorkflowCommand.ts b/clients/client-glue/src/commands/GetWorkflowCommand.ts index a1c28b7ce65ba..6d550b5ce362d 100644 --- a/clients/client-glue/src/commands/GetWorkflowCommand.ts +++ b/clients/client-glue/src/commands/GetWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_2"; import { GetWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetWorkflowRunCommand.ts b/clients/client-glue/src/commands/GetWorkflowRunCommand.ts index ec1b2adedd3af..fd43e0adee49f 100644 --- a/clients/client-glue/src/commands/GetWorkflowRunCommand.ts +++ b/clients/client-glue/src/commands/GetWorkflowRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetWorkflowRunRequest, GetWorkflowRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetWorkflowRunRequest, GetWorkflowRunResponse } from "../models/models_2"; import { GetWorkflowRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetWorkflowRunPropertiesCommand.ts b/clients/client-glue/src/commands/GetWorkflowRunPropertiesCommand.ts index bb2251a6cb2e1..b718734c0b3d1 100644 --- a/clients/client-glue/src/commands/GetWorkflowRunPropertiesCommand.ts +++ b/clients/client-glue/src/commands/GetWorkflowRunPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetWorkflowRunPropertiesRequest, GetWorkflowRunPropertiesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetWorkflowRunPropertiesRequest, GetWorkflowRunPropertiesResponse } from "../models/models_2"; import { GetWorkflowRunProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/GetWorkflowRunsCommand.ts b/clients/client-glue/src/commands/GetWorkflowRunsCommand.ts index f829b1f71f6c5..8af1b9c89ac9d 100644 --- a/clients/client-glue/src/commands/GetWorkflowRunsCommand.ts +++ b/clients/client-glue/src/commands/GetWorkflowRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { GetWorkflowRunsRequest, GetWorkflowRunsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { GetWorkflowRunsRequest, GetWorkflowRunsResponse } from "../models/models_2"; import { GetWorkflowRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ImportCatalogToGlueCommand.ts b/clients/client-glue/src/commands/ImportCatalogToGlueCommand.ts index 2847481ea5d3d..5b43711307111 100644 --- a/clients/client-glue/src/commands/ImportCatalogToGlueCommand.ts +++ b/clients/client-glue/src/commands/ImportCatalogToGlueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ImportCatalogToGlueRequest, ImportCatalogToGlueResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ImportCatalogToGlueRequest, ImportCatalogToGlueResponse } from "../models/models_2"; import { ImportCatalogToGlue } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListBlueprintsCommand.ts b/clients/client-glue/src/commands/ListBlueprintsCommand.ts index f31d942f503b5..0acae36fb7c20 100644 --- a/clients/client-glue/src/commands/ListBlueprintsCommand.ts +++ b/clients/client-glue/src/commands/ListBlueprintsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListBlueprintsRequest, ListBlueprintsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListBlueprintsRequest, ListBlueprintsResponse } from "../models/models_2"; import { ListBlueprints } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListColumnStatisticsTaskRunsCommand.ts b/clients/client-glue/src/commands/ListColumnStatisticsTaskRunsCommand.ts index 4062cbbd9f240..478f6e9d24c59 100644 --- a/clients/client-glue/src/commands/ListColumnStatisticsTaskRunsCommand.ts +++ b/clients/client-glue/src/commands/ListColumnStatisticsTaskRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListColumnStatisticsTaskRunsRequest, ListColumnStatisticsTaskRunsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListColumnStatisticsTaskRunsRequest, ListColumnStatisticsTaskRunsResponse } from "../models/models_2"; import { ListColumnStatisticsTaskRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListConnectionTypesCommand.ts b/clients/client-glue/src/commands/ListConnectionTypesCommand.ts index 84da37d010776..1106992c62ee6 100644 --- a/clients/client-glue/src/commands/ListConnectionTypesCommand.ts +++ b/clients/client-glue/src/commands/ListConnectionTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListConnectionTypesRequest, ListConnectionTypesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListConnectionTypesRequest, ListConnectionTypesResponse } from "../models/models_2"; import { ListConnectionTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListCrawlersCommand.ts b/clients/client-glue/src/commands/ListCrawlersCommand.ts index 906980a30e2e0..bae3a0da74686 100644 --- a/clients/client-glue/src/commands/ListCrawlersCommand.ts +++ b/clients/client-glue/src/commands/ListCrawlersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListCrawlersRequest, ListCrawlersResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListCrawlersRequest, ListCrawlersResponse } from "../models/models_2"; import { ListCrawlers } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListCrawlsCommand.ts b/clients/client-glue/src/commands/ListCrawlsCommand.ts index cb66295430c43..3aef384f9ae59 100644 --- a/clients/client-glue/src/commands/ListCrawlsCommand.ts +++ b/clients/client-glue/src/commands/ListCrawlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListCrawlsRequest, ListCrawlsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListCrawlsRequest, ListCrawlsResponse } from "../models/models_2"; import { ListCrawls } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListCustomEntityTypesCommand.ts b/clients/client-glue/src/commands/ListCustomEntityTypesCommand.ts index 83e929fe4ca93..5931fb3051856 100644 --- a/clients/client-glue/src/commands/ListCustomEntityTypesCommand.ts +++ b/clients/client-glue/src/commands/ListCustomEntityTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListCustomEntityTypesRequest, ListCustomEntityTypesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListCustomEntityTypesRequest, ListCustomEntityTypesResponse } from "../models/models_2"; import { ListCustomEntityTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListDataQualityResultsCommand.ts b/clients/client-glue/src/commands/ListDataQualityResultsCommand.ts index 3d1914a9d9957..f49ce928faa8b 100644 --- a/clients/client-glue/src/commands/ListDataQualityResultsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListDataQualityResultsRequest, ListDataQualityResultsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListDataQualityResultsRequest, ListDataQualityResultsResponse } from "../models/models_2"; import { ListDataQualityResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListDataQualityRuleRecommendationRunsCommand.ts b/clients/client-glue/src/commands/ListDataQualityRuleRecommendationRunsCommand.ts index 61f3d63037898..c3ee1b8bb3615 100644 --- a/clients/client-glue/src/commands/ListDataQualityRuleRecommendationRunsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityRuleRecommendationRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListDataQualityRuleRecommendationRunsRequest, ListDataQualityRuleRecommendationRunsResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/ListDataQualityRulesetEvaluationRunsCommand.ts b/clients/client-glue/src/commands/ListDataQualityRulesetEvaluationRunsCommand.ts index 345cca7ad46cb..1d02397991a93 100644 --- a/clients/client-glue/src/commands/ListDataQualityRulesetEvaluationRunsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityRulesetEvaluationRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListDataQualityRulesetEvaluationRunsRequest, ListDataQualityRulesetEvaluationRunsResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/ListDataQualityRulesetsCommand.ts b/clients/client-glue/src/commands/ListDataQualityRulesetsCommand.ts index 49ceb734dbbb3..23f271983a7bf 100644 --- a/clients/client-glue/src/commands/ListDataQualityRulesetsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityRulesetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListDataQualityRulesetsRequest, ListDataQualityRulesetsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListDataQualityRulesetsRequest, ListDataQualityRulesetsResponse } from "../models/models_2"; import { ListDataQualityRulesets } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListDataQualityStatisticAnnotationsCommand.ts b/clients/client-glue/src/commands/ListDataQualityStatisticAnnotationsCommand.ts index 0231c91b07e6f..40f234cec244a 100644 --- a/clients/client-glue/src/commands/ListDataQualityStatisticAnnotationsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityStatisticAnnotationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListDataQualityStatisticAnnotationsRequest, ListDataQualityStatisticAnnotationsResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/ListDataQualityStatisticsCommand.ts b/clients/client-glue/src/commands/ListDataQualityStatisticsCommand.ts index f95fd6e93b77d..bc4a551fc74d1 100644 --- a/clients/client-glue/src/commands/ListDataQualityStatisticsCommand.ts +++ b/clients/client-glue/src/commands/ListDataQualityStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListDataQualityStatisticsRequest, ListDataQualityStatisticsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListDataQualityStatisticsRequest, ListDataQualityStatisticsResponse } from "../models/models_2"; import { ListDataQualityStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListDevEndpointsCommand.ts b/clients/client-glue/src/commands/ListDevEndpointsCommand.ts index d0b577a3499aa..1e735634afb64 100644 --- a/clients/client-glue/src/commands/ListDevEndpointsCommand.ts +++ b/clients/client-glue/src/commands/ListDevEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListDevEndpointsRequest, ListDevEndpointsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListDevEndpointsRequest, ListDevEndpointsResponse } from "../models/models_2"; import { ListDevEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListEntitiesCommand.ts b/clients/client-glue/src/commands/ListEntitiesCommand.ts index 892aaf331d19e..0a352bf956e80 100644 --- a/clients/client-glue/src/commands/ListEntitiesCommand.ts +++ b/clients/client-glue/src/commands/ListEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListEntitiesRequest, ListEntitiesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListEntitiesRequest, ListEntitiesResponse } from "../models/models_2"; import { ListEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListIntegrationResourcePropertiesCommand.ts b/clients/client-glue/src/commands/ListIntegrationResourcePropertiesCommand.ts index d7664957eeb38..a08b5509ea45a 100644 --- a/clients/client-glue/src/commands/ListIntegrationResourcePropertiesCommand.ts +++ b/clients/client-glue/src/commands/ListIntegrationResourcePropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListIntegrationResourcePropertiesRequest, ListIntegrationResourcePropertiesResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/ListJobsCommand.ts b/clients/client-glue/src/commands/ListJobsCommand.ts index 33eecbc01ec93..8f1ef3ee4e3ff 100644 --- a/clients/client-glue/src/commands/ListJobsCommand.ts +++ b/clients/client-glue/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListJobsRequest, ListJobsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListJobsRequest, ListJobsResponse } from "../models/models_2"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListMLTransformsCommand.ts b/clients/client-glue/src/commands/ListMLTransformsCommand.ts index d49d6d0084fd5..3cb2a1a32793a 100644 --- a/clients/client-glue/src/commands/ListMLTransformsCommand.ts +++ b/clients/client-glue/src/commands/ListMLTransformsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListMLTransformsRequest, ListMLTransformsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListMLTransformsRequest, ListMLTransformsResponse } from "../models/models_2"; import { ListMLTransforms } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListRegistriesCommand.ts b/clients/client-glue/src/commands/ListRegistriesCommand.ts index 1a79c27daed54..3fffc7ca28c68 100644 --- a/clients/client-glue/src/commands/ListRegistriesCommand.ts +++ b/clients/client-glue/src/commands/ListRegistriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListRegistriesInput, ListRegistriesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListRegistriesInput, ListRegistriesResponse } from "../models/models_2"; import { ListRegistries } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListSchemaVersionsCommand.ts b/clients/client-glue/src/commands/ListSchemaVersionsCommand.ts index af823c92d0ea4..cb899dd7f49ad 100644 --- a/clients/client-glue/src/commands/ListSchemaVersionsCommand.ts +++ b/clients/client-glue/src/commands/ListSchemaVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListSchemaVersionsInput, ListSchemaVersionsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListSchemaVersionsInput, ListSchemaVersionsResponse } from "../models/models_2"; import { ListSchemaVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListSchemasCommand.ts b/clients/client-glue/src/commands/ListSchemasCommand.ts index a02660b871c2a..57a3950ce7277 100644 --- a/clients/client-glue/src/commands/ListSchemasCommand.ts +++ b/clients/client-glue/src/commands/ListSchemasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListSchemasInput, ListSchemasResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListSchemasInput, ListSchemasResponse } from "../models/models_2"; import { ListSchemas } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListSessionsCommand.ts b/clients/client-glue/src/commands/ListSessionsCommand.ts index f10a09276d281..e999058743875 100644 --- a/clients/client-glue/src/commands/ListSessionsCommand.ts +++ b/clients/client-glue/src/commands/ListSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListSessionsRequest, ListSessionsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListSessionsRequest, ListSessionsResponse } from "../models/models_2"; import { ListSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListStatementsCommand.ts b/clients/client-glue/src/commands/ListStatementsCommand.ts index f24b456a55c97..779156880bf0e 100644 --- a/clients/client-glue/src/commands/ListStatementsCommand.ts +++ b/clients/client-glue/src/commands/ListStatementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListStatementsRequest, ListStatementsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListStatementsRequest, ListStatementsResponse } from "../models/models_2"; import { ListStatements } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListTableOptimizerRunsCommand.ts b/clients/client-glue/src/commands/ListTableOptimizerRunsCommand.ts index 3e9266ad3b861..8498686f2b69d 100644 --- a/clients/client-glue/src/commands/ListTableOptimizerRunsCommand.ts +++ b/clients/client-glue/src/commands/ListTableOptimizerRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListTableOptimizerRunsRequest, ListTableOptimizerRunsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListTableOptimizerRunsRequest, ListTableOptimizerRunsResponse } from "../models/models_2"; import { ListTableOptimizerRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListTriggersCommand.ts b/clients/client-glue/src/commands/ListTriggersCommand.ts index eb0c5494401df..867317ab962b5 100644 --- a/clients/client-glue/src/commands/ListTriggersCommand.ts +++ b/clients/client-glue/src/commands/ListTriggersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListTriggersRequest, ListTriggersResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListTriggersRequest, ListTriggersResponse } from "../models/models_2"; import { ListTriggers } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListUsageProfilesCommand.ts b/clients/client-glue/src/commands/ListUsageProfilesCommand.ts index e9be69277dafa..55d234a0560de 100644 --- a/clients/client-glue/src/commands/ListUsageProfilesCommand.ts +++ b/clients/client-glue/src/commands/ListUsageProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListUsageProfilesRequest, ListUsageProfilesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListUsageProfilesRequest, ListUsageProfilesResponse } from "../models/models_2"; import { ListUsageProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ListWorkflowsCommand.ts b/clients/client-glue/src/commands/ListWorkflowsCommand.ts index e2901ad2d523c..ab8b7db364b1e 100644 --- a/clients/client-glue/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-glue/src/commands/ListWorkflowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_2"; import { ListWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ModifyIntegrationCommand.ts b/clients/client-glue/src/commands/ModifyIntegrationCommand.ts index 40676743798f4..6367e55c48344 100644 --- a/clients/client-glue/src/commands/ModifyIntegrationCommand.ts +++ b/clients/client-glue/src/commands/ModifyIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ModifyIntegrationRequest, ModifyIntegrationResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ModifyIntegrationRequest, ModifyIntegrationResponse } from "../models/models_2"; import { ModifyIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/PutDataCatalogEncryptionSettingsCommand.ts b/clients/client-glue/src/commands/PutDataCatalogEncryptionSettingsCommand.ts index e0bdfb145a199..20afd6fbb8ca1 100644 --- a/clients/client-glue/src/commands/PutDataCatalogEncryptionSettingsCommand.ts +++ b/clients/client-glue/src/commands/PutDataCatalogEncryptionSettingsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { PutDataCatalogEncryptionSettingsRequest, PutDataCatalogEncryptionSettingsResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { + PutDataCatalogEncryptionSettingsRequest, + PutDataCatalogEncryptionSettingsResponse, +} from "../models/models_2"; import { PutDataCatalogEncryptionSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/PutDataQualityProfileAnnotationCommand.ts b/clients/client-glue/src/commands/PutDataQualityProfileAnnotationCommand.ts index fc6ac7940d048..31562626f9c7a 100644 --- a/clients/client-glue/src/commands/PutDataQualityProfileAnnotationCommand.ts +++ b/clients/client-glue/src/commands/PutDataQualityProfileAnnotationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { PutDataQualityProfileAnnotationRequest, PutDataQualityProfileAnnotationResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { + PutDataQualityProfileAnnotationRequest, + PutDataQualityProfileAnnotationResponse, +} from "../models/models_2"; import { PutDataQualityProfileAnnotation } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/PutResourcePolicyCommand.ts b/clients/client-glue/src/commands/PutResourcePolicyCommand.ts index 490f89d80c95e..1a4f7aa6a0aa3 100644 --- a/clients/client-glue/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-glue/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_2"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/PutSchemaVersionMetadataCommand.ts b/clients/client-glue/src/commands/PutSchemaVersionMetadataCommand.ts index d4f3d4f5d38f5..0694ca7390e7d 100644 --- a/clients/client-glue/src/commands/PutSchemaVersionMetadataCommand.ts +++ b/clients/client-glue/src/commands/PutSchemaVersionMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { PutSchemaVersionMetadataInput, PutSchemaVersionMetadataResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { PutSchemaVersionMetadataInput, PutSchemaVersionMetadataResponse } from "../models/models_2"; import { PutSchemaVersionMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/PutWorkflowRunPropertiesCommand.ts b/clients/client-glue/src/commands/PutWorkflowRunPropertiesCommand.ts index 4143d887ea51d..2eab29377b2c1 100644 --- a/clients/client-glue/src/commands/PutWorkflowRunPropertiesCommand.ts +++ b/clients/client-glue/src/commands/PutWorkflowRunPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { PutWorkflowRunPropertiesRequest, PutWorkflowRunPropertiesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { PutWorkflowRunPropertiesRequest, PutWorkflowRunPropertiesResponse } from "../models/models_2"; import { PutWorkflowRunProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/QuerySchemaVersionMetadataCommand.ts b/clients/client-glue/src/commands/QuerySchemaVersionMetadataCommand.ts index a612249fb8c03..e869cb1bbe488 100644 --- a/clients/client-glue/src/commands/QuerySchemaVersionMetadataCommand.ts +++ b/clients/client-glue/src/commands/QuerySchemaVersionMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { QuerySchemaVersionMetadataInput, QuerySchemaVersionMetadataResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { QuerySchemaVersionMetadataInput, QuerySchemaVersionMetadataResponse } from "../models/models_2"; import { QuerySchemaVersionMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/RegisterSchemaVersionCommand.ts b/clients/client-glue/src/commands/RegisterSchemaVersionCommand.ts index b5d3ebd8e784f..4e0307a8c7de8 100644 --- a/clients/client-glue/src/commands/RegisterSchemaVersionCommand.ts +++ b/clients/client-glue/src/commands/RegisterSchemaVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { RegisterSchemaVersionInput, RegisterSchemaVersionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { RegisterSchemaVersionInput, RegisterSchemaVersionResponse } from "../models/models_2"; import { RegisterSchemaVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/RemoveSchemaVersionMetadataCommand.ts b/clients/client-glue/src/commands/RemoveSchemaVersionMetadataCommand.ts index 525e1003d3192..81dda9e7bfdd7 100644 --- a/clients/client-glue/src/commands/RemoveSchemaVersionMetadataCommand.ts +++ b/clients/client-glue/src/commands/RemoveSchemaVersionMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { RemoveSchemaVersionMetadataInput, RemoveSchemaVersionMetadataResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { RemoveSchemaVersionMetadataInput, RemoveSchemaVersionMetadataResponse } from "../models/models_2"; import { RemoveSchemaVersionMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ResetJobBookmarkCommand.ts b/clients/client-glue/src/commands/ResetJobBookmarkCommand.ts index 1eb55ee709a29..e29fbc645361a 100644 --- a/clients/client-glue/src/commands/ResetJobBookmarkCommand.ts +++ b/clients/client-glue/src/commands/ResetJobBookmarkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ResetJobBookmarkRequest, ResetJobBookmarkResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ResetJobBookmarkRequest, ResetJobBookmarkResponse } from "../models/models_2"; import { ResetJobBookmark } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/ResumeWorkflowRunCommand.ts b/clients/client-glue/src/commands/ResumeWorkflowRunCommand.ts index af3942c14a3db..6e5a43381b56c 100644 --- a/clients/client-glue/src/commands/ResumeWorkflowRunCommand.ts +++ b/clients/client-glue/src/commands/ResumeWorkflowRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { ResumeWorkflowRunRequest, ResumeWorkflowRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { ResumeWorkflowRunRequest, ResumeWorkflowRunResponse } from "../models/models_2"; import { ResumeWorkflowRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/RunStatementCommand.ts b/clients/client-glue/src/commands/RunStatementCommand.ts index dc35d62d5a414..2c097523333f2 100644 --- a/clients/client-glue/src/commands/RunStatementCommand.ts +++ b/clients/client-glue/src/commands/RunStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { RunStatementRequest, RunStatementResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { RunStatementRequest, RunStatementResponse } from "../models/models_2"; import { RunStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/SearchTablesCommand.ts b/clients/client-glue/src/commands/SearchTablesCommand.ts index 0445bd5e7d012..6a2a9906cc50d 100644 --- a/clients/client-glue/src/commands/SearchTablesCommand.ts +++ b/clients/client-glue/src/commands/SearchTablesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { SearchTablesRequest } from "../models/models_2"; -import { SearchTablesResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { SearchTablesRequest } from "../models/models_2"; +import type { SearchTablesResponse } from "../models/models_3"; import { SearchTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartBlueprintRunCommand.ts b/clients/client-glue/src/commands/StartBlueprintRunCommand.ts index 9f7c237f0ec17..e7fad3e8a1914 100644 --- a/clients/client-glue/src/commands/StartBlueprintRunCommand.ts +++ b/clients/client-glue/src/commands/StartBlueprintRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartBlueprintRunRequest, StartBlueprintRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartBlueprintRunRequest, StartBlueprintRunResponse } from "../models/models_2"; import { StartBlueprintRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartColumnStatisticsTaskRunCommand.ts b/clients/client-glue/src/commands/StartColumnStatisticsTaskRunCommand.ts index fea22d684c042..3aa2c6cfad7ec 100644 --- a/clients/client-glue/src/commands/StartColumnStatisticsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartColumnStatisticsTaskRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartColumnStatisticsTaskRunRequest, StartColumnStatisticsTaskRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartColumnStatisticsTaskRunRequest, StartColumnStatisticsTaskRunResponse } from "../models/models_2"; import { StartColumnStatisticsTaskRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartColumnStatisticsTaskRunScheduleCommand.ts b/clients/client-glue/src/commands/StartColumnStatisticsTaskRunScheduleCommand.ts index f72ec73be693d..83b75261483d0 100644 --- a/clients/client-glue/src/commands/StartColumnStatisticsTaskRunScheduleCommand.ts +++ b/clients/client-glue/src/commands/StartColumnStatisticsTaskRunScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartColumnStatisticsTaskRunScheduleRequest, StartColumnStatisticsTaskRunScheduleResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/StartCrawlerCommand.ts b/clients/client-glue/src/commands/StartCrawlerCommand.ts index 880d02a5e5e4f..c958d278c6f29 100644 --- a/clients/client-glue/src/commands/StartCrawlerCommand.ts +++ b/clients/client-glue/src/commands/StartCrawlerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartCrawlerRequest, StartCrawlerResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartCrawlerRequest, StartCrawlerResponse } from "../models/models_2"; import { StartCrawler } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartCrawlerScheduleCommand.ts b/clients/client-glue/src/commands/StartCrawlerScheduleCommand.ts index 4ee9bdba15901..516d5c206d72b 100644 --- a/clients/client-glue/src/commands/StartCrawlerScheduleCommand.ts +++ b/clients/client-glue/src/commands/StartCrawlerScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartCrawlerScheduleRequest, StartCrawlerScheduleResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartCrawlerScheduleRequest, StartCrawlerScheduleResponse } from "../models/models_2"; import { StartCrawlerSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartDataQualityRuleRecommendationRunCommand.ts b/clients/client-glue/src/commands/StartDataQualityRuleRecommendationRunCommand.ts index 957e0e5e32680..da0d7b4c65746 100644 --- a/clients/client-glue/src/commands/StartDataQualityRuleRecommendationRunCommand.ts +++ b/clients/client-glue/src/commands/StartDataQualityRuleRecommendationRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartDataQualityRuleRecommendationRunRequest, StartDataQualityRuleRecommendationRunResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/StartDataQualityRulesetEvaluationRunCommand.ts b/clients/client-glue/src/commands/StartDataQualityRulesetEvaluationRunCommand.ts index f03cf99afe2d0..25cd128a83e21 100644 --- a/clients/client-glue/src/commands/StartDataQualityRulesetEvaluationRunCommand.ts +++ b/clients/client-glue/src/commands/StartDataQualityRulesetEvaluationRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartDataQualityRulesetEvaluationRunRequest, StartDataQualityRulesetEvaluationRunResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/StartExportLabelsTaskRunCommand.ts b/clients/client-glue/src/commands/StartExportLabelsTaskRunCommand.ts index a6bedab420a98..a7eb94aceefcc 100644 --- a/clients/client-glue/src/commands/StartExportLabelsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartExportLabelsTaskRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartExportLabelsTaskRunRequest, StartExportLabelsTaskRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartExportLabelsTaskRunRequest, StartExportLabelsTaskRunResponse } from "../models/models_2"; import { StartExportLabelsTaskRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartImportLabelsTaskRunCommand.ts b/clients/client-glue/src/commands/StartImportLabelsTaskRunCommand.ts index 5b5ff25f72734..c3ddadc497c45 100644 --- a/clients/client-glue/src/commands/StartImportLabelsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartImportLabelsTaskRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartImportLabelsTaskRunRequest, StartImportLabelsTaskRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartImportLabelsTaskRunRequest, StartImportLabelsTaskRunResponse } from "../models/models_2"; import { StartImportLabelsTaskRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartJobRunCommand.ts b/clients/client-glue/src/commands/StartJobRunCommand.ts index 9be5bb4258938..49de1634eef5d 100644 --- a/clients/client-glue/src/commands/StartJobRunCommand.ts +++ b/clients/client-glue/src/commands/StartJobRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartJobRunRequest, StartJobRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartJobRunRequest, StartJobRunResponse } from "../models/models_2"; import { StartJobRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartMLEvaluationTaskRunCommand.ts b/clients/client-glue/src/commands/StartMLEvaluationTaskRunCommand.ts index 9346af67fd7b2..d6ba74ae3d12f 100644 --- a/clients/client-glue/src/commands/StartMLEvaluationTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartMLEvaluationTaskRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartMLEvaluationTaskRunRequest, StartMLEvaluationTaskRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartMLEvaluationTaskRunRequest, StartMLEvaluationTaskRunResponse } from "../models/models_2"; import { StartMLEvaluationTaskRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartMLLabelingSetGenerationTaskRunCommand.ts b/clients/client-glue/src/commands/StartMLLabelingSetGenerationTaskRunCommand.ts index 5ec4a93f7985c..76693770c0b51 100644 --- a/clients/client-glue/src/commands/StartMLLabelingSetGenerationTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StartMLLabelingSetGenerationTaskRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartMLLabelingSetGenerationTaskRunRequest, StartMLLabelingSetGenerationTaskRunResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/StartTriggerCommand.ts b/clients/client-glue/src/commands/StartTriggerCommand.ts index af04937f32359..25cc39283e7fc 100644 --- a/clients/client-glue/src/commands/StartTriggerCommand.ts +++ b/clients/client-glue/src/commands/StartTriggerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartTriggerRequest, StartTriggerResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartTriggerRequest, StartTriggerResponse } from "../models/models_2"; import { StartTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StartWorkflowRunCommand.ts b/clients/client-glue/src/commands/StartWorkflowRunCommand.ts index 2632011cdba94..88f3c292ddd04 100644 --- a/clients/client-glue/src/commands/StartWorkflowRunCommand.ts +++ b/clients/client-glue/src/commands/StartWorkflowRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StartWorkflowRunRequest, StartWorkflowRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StartWorkflowRunRequest, StartWorkflowRunResponse } from "../models/models_2"; import { StartWorkflowRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StopColumnStatisticsTaskRunCommand.ts b/clients/client-glue/src/commands/StopColumnStatisticsTaskRunCommand.ts index f11c68a1456fa..43fd706eb379e 100644 --- a/clients/client-glue/src/commands/StopColumnStatisticsTaskRunCommand.ts +++ b/clients/client-glue/src/commands/StopColumnStatisticsTaskRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StopColumnStatisticsTaskRunRequest, StopColumnStatisticsTaskRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StopColumnStatisticsTaskRunRequest, StopColumnStatisticsTaskRunResponse } from "../models/models_2"; import { StopColumnStatisticsTaskRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StopColumnStatisticsTaskRunScheduleCommand.ts b/clients/client-glue/src/commands/StopColumnStatisticsTaskRunScheduleCommand.ts index 36b0d0b68c060..0f772c20846f7 100644 --- a/clients/client-glue/src/commands/StopColumnStatisticsTaskRunScheduleCommand.ts +++ b/clients/client-glue/src/commands/StopColumnStatisticsTaskRunScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StopColumnStatisticsTaskRunScheduleRequest, StopColumnStatisticsTaskRunScheduleResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/StopCrawlerCommand.ts b/clients/client-glue/src/commands/StopCrawlerCommand.ts index f97887bd33e25..334cb1faeaaad 100644 --- a/clients/client-glue/src/commands/StopCrawlerCommand.ts +++ b/clients/client-glue/src/commands/StopCrawlerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StopCrawlerRequest, StopCrawlerResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StopCrawlerRequest, StopCrawlerResponse } from "../models/models_2"; import { StopCrawler } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StopCrawlerScheduleCommand.ts b/clients/client-glue/src/commands/StopCrawlerScheduleCommand.ts index 3fefbd877907e..068511fd1ceb2 100644 --- a/clients/client-glue/src/commands/StopCrawlerScheduleCommand.ts +++ b/clients/client-glue/src/commands/StopCrawlerScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StopCrawlerScheduleRequest, StopCrawlerScheduleResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StopCrawlerScheduleRequest, StopCrawlerScheduleResponse } from "../models/models_2"; import { StopCrawlerSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StopSessionCommand.ts b/clients/client-glue/src/commands/StopSessionCommand.ts index 78fb298607d1c..9d4695f93b17b 100644 --- a/clients/client-glue/src/commands/StopSessionCommand.ts +++ b/clients/client-glue/src/commands/StopSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StopSessionRequest, StopSessionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StopSessionRequest, StopSessionResponse } from "../models/models_2"; import { StopSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StopTriggerCommand.ts b/clients/client-glue/src/commands/StopTriggerCommand.ts index d678f5045c0af..f36a7439f0eed 100644 --- a/clients/client-glue/src/commands/StopTriggerCommand.ts +++ b/clients/client-glue/src/commands/StopTriggerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StopTriggerRequest, StopTriggerResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StopTriggerRequest, StopTriggerResponse } from "../models/models_2"; import { StopTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/StopWorkflowRunCommand.ts b/clients/client-glue/src/commands/StopWorkflowRunCommand.ts index a301237be848b..ad2af392f59b0 100644 --- a/clients/client-glue/src/commands/StopWorkflowRunCommand.ts +++ b/clients/client-glue/src/commands/StopWorkflowRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { StopWorkflowRunRequest, StopWorkflowRunResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { StopWorkflowRunRequest, StopWorkflowRunResponse } from "../models/models_2"; import { StopWorkflowRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/TagResourceCommand.ts b/clients/client-glue/src/commands/TagResourceCommand.ts index 37eac5b51b190..7a368bb030e08 100644 --- a/clients/client-glue/src/commands/TagResourceCommand.ts +++ b/clients/client-glue/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_2"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/TestConnectionCommand.ts b/clients/client-glue/src/commands/TestConnectionCommand.ts index 2a4da3c6167f8..071055d4014d2 100644 --- a/clients/client-glue/src/commands/TestConnectionCommand.ts +++ b/clients/client-glue/src/commands/TestConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { TestConnectionRequest, TestConnectionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { TestConnectionRequest, TestConnectionResponse } from "../models/models_2"; import { TestConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UntagResourceCommand.ts b/clients/client-glue/src/commands/UntagResourceCommand.ts index 736c99290a69f..1b85f14c62caa 100644 --- a/clients/client-glue/src/commands/UntagResourceCommand.ts +++ b/clients/client-glue/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_2"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateBlueprintCommand.ts b/clients/client-glue/src/commands/UpdateBlueprintCommand.ts index 51cb74be6f60e..499dbe2c72021 100644 --- a/clients/client-glue/src/commands/UpdateBlueprintCommand.ts +++ b/clients/client-glue/src/commands/UpdateBlueprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateBlueprintRequest, UpdateBlueprintResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateBlueprintRequest, UpdateBlueprintResponse } from "../models/models_2"; import { UpdateBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateCatalogCommand.ts b/clients/client-glue/src/commands/UpdateCatalogCommand.ts index a64f40ccad93c..611a7caee432d 100644 --- a/clients/client-glue/src/commands/UpdateCatalogCommand.ts +++ b/clients/client-glue/src/commands/UpdateCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateCatalogRequest, UpdateCatalogResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateCatalogRequest, UpdateCatalogResponse } from "../models/models_2"; import { UpdateCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateClassifierCommand.ts b/clients/client-glue/src/commands/UpdateClassifierCommand.ts index 1902161b94111..77590b9ae6826 100644 --- a/clients/client-glue/src/commands/UpdateClassifierCommand.ts +++ b/clients/client-glue/src/commands/UpdateClassifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateClassifierRequest, UpdateClassifierResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateClassifierRequest, UpdateClassifierResponse } from "../models/models_2"; import { UpdateClassifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateColumnStatisticsForPartitionCommand.ts b/clients/client-glue/src/commands/UpdateColumnStatisticsForPartitionCommand.ts index 57565afb704b3..3deb567e526b0 100644 --- a/clients/client-glue/src/commands/UpdateColumnStatisticsForPartitionCommand.ts +++ b/clients/client-glue/src/commands/UpdateColumnStatisticsForPartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateColumnStatisticsForPartitionRequest, UpdateColumnStatisticsForPartitionResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/UpdateColumnStatisticsForTableCommand.ts b/clients/client-glue/src/commands/UpdateColumnStatisticsForTableCommand.ts index 3a254b86218cd..93001719c651d 100644 --- a/clients/client-glue/src/commands/UpdateColumnStatisticsForTableCommand.ts +++ b/clients/client-glue/src/commands/UpdateColumnStatisticsForTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateColumnStatisticsForTableRequest, UpdateColumnStatisticsForTableResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateColumnStatisticsForTableRequest, UpdateColumnStatisticsForTableResponse } from "../models/models_2"; import { UpdateColumnStatisticsForTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateColumnStatisticsTaskSettingsCommand.ts b/clients/client-glue/src/commands/UpdateColumnStatisticsTaskSettingsCommand.ts index 8d085560a5735..666fb6f314627 100644 --- a/clients/client-glue/src/commands/UpdateColumnStatisticsTaskSettingsCommand.ts +++ b/clients/client-glue/src/commands/UpdateColumnStatisticsTaskSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateColumnStatisticsTaskSettingsRequest, UpdateColumnStatisticsTaskSettingsResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/UpdateConnectionCommand.ts b/clients/client-glue/src/commands/UpdateConnectionCommand.ts index 907bf520466af..4f85f80eb1341 100644 --- a/clients/client-glue/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-glue/src/commands/UpdateConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_2"; import { UpdateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateCrawlerCommand.ts b/clients/client-glue/src/commands/UpdateCrawlerCommand.ts index 65243beb51e3e..0023d263c45c0 100644 --- a/clients/client-glue/src/commands/UpdateCrawlerCommand.ts +++ b/clients/client-glue/src/commands/UpdateCrawlerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateCrawlerRequest, UpdateCrawlerResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateCrawlerRequest, UpdateCrawlerResponse } from "../models/models_2"; import { UpdateCrawler } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateCrawlerScheduleCommand.ts b/clients/client-glue/src/commands/UpdateCrawlerScheduleCommand.ts index b2f6559be61bf..5ccd21fc9363f 100644 --- a/clients/client-glue/src/commands/UpdateCrawlerScheduleCommand.ts +++ b/clients/client-glue/src/commands/UpdateCrawlerScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateCrawlerScheduleRequest, UpdateCrawlerScheduleResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateCrawlerScheduleRequest, UpdateCrawlerScheduleResponse } from "../models/models_2"; import { UpdateCrawlerSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateDataQualityRulesetCommand.ts b/clients/client-glue/src/commands/UpdateDataQualityRulesetCommand.ts index 24f851e1f4f45..6cabd0cacd9a3 100644 --- a/clients/client-glue/src/commands/UpdateDataQualityRulesetCommand.ts +++ b/clients/client-glue/src/commands/UpdateDataQualityRulesetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateDataQualityRulesetRequest, UpdateDataQualityRulesetResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateDataQualityRulesetRequest, UpdateDataQualityRulesetResponse } from "../models/models_2"; import { UpdateDataQualityRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateDatabaseCommand.ts b/clients/client-glue/src/commands/UpdateDatabaseCommand.ts index b953af9dcb6f2..79e78fef5d765 100644 --- a/clients/client-glue/src/commands/UpdateDatabaseCommand.ts +++ b/clients/client-glue/src/commands/UpdateDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateDatabaseRequest, UpdateDatabaseResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateDatabaseRequest, UpdateDatabaseResponse } from "../models/models_2"; import { UpdateDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateDevEndpointCommand.ts b/clients/client-glue/src/commands/UpdateDevEndpointCommand.ts index f3c99abe5515c..f5f775af67d5b 100644 --- a/clients/client-glue/src/commands/UpdateDevEndpointCommand.ts +++ b/clients/client-glue/src/commands/UpdateDevEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateDevEndpointRequest, UpdateDevEndpointResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateDevEndpointRequest, UpdateDevEndpointResponse } from "../models/models_2"; import { UpdateDevEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateGlueIdentityCenterConfigurationCommand.ts b/clients/client-glue/src/commands/UpdateGlueIdentityCenterConfigurationCommand.ts index 3227f9f9de61f..bd97800195ef3 100644 --- a/clients/client-glue/src/commands/UpdateGlueIdentityCenterConfigurationCommand.ts +++ b/clients/client-glue/src/commands/UpdateGlueIdentityCenterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateGlueIdentityCenterConfigurationRequest, UpdateGlueIdentityCenterConfigurationResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/UpdateIntegrationResourcePropertyCommand.ts b/clients/client-glue/src/commands/UpdateIntegrationResourcePropertyCommand.ts index 7e8d68d8d0ac5..173d3a8124e34 100644 --- a/clients/client-glue/src/commands/UpdateIntegrationResourcePropertyCommand.ts +++ b/clients/client-glue/src/commands/UpdateIntegrationResourcePropertyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateIntegrationResourcePropertyRequest, UpdateIntegrationResourcePropertyResponse, } from "../models/models_2"; diff --git a/clients/client-glue/src/commands/UpdateIntegrationTablePropertiesCommand.ts b/clients/client-glue/src/commands/UpdateIntegrationTablePropertiesCommand.ts index a0939d7f7ee2c..b5496e4c4e244 100644 --- a/clients/client-glue/src/commands/UpdateIntegrationTablePropertiesCommand.ts +++ b/clients/client-glue/src/commands/UpdateIntegrationTablePropertiesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateIntegrationTablePropertiesRequest, UpdateIntegrationTablePropertiesResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { + UpdateIntegrationTablePropertiesRequest, + UpdateIntegrationTablePropertiesResponse, +} from "../models/models_2"; import { UpdateIntegrationTableProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateJobCommand.ts b/clients/client-glue/src/commands/UpdateJobCommand.ts index 0e1cbfb37d895..d1d10e2bba17e 100644 --- a/clients/client-glue/src/commands/UpdateJobCommand.ts +++ b/clients/client-glue/src/commands/UpdateJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateJobResponse } from "../models/models_2"; -import { UpdateJobRequest } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateJobResponse } from "../models/models_2"; +import type { UpdateJobRequest } from "../models/models_3"; import { UpdateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts b/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts index 543a67b519392..00086a314c68c 100644 --- a/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts +++ b/clients/client-glue/src/commands/UpdateJobFromSourceControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateJobFromSourceControlRequest, UpdateJobFromSourceControlResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateJobFromSourceControlRequest, UpdateJobFromSourceControlResponse } from "../models/models_2"; import { UpdateJobFromSourceControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateMLTransformCommand.ts b/clients/client-glue/src/commands/UpdateMLTransformCommand.ts index 740902b22322d..9ea508d598925 100644 --- a/clients/client-glue/src/commands/UpdateMLTransformCommand.ts +++ b/clients/client-glue/src/commands/UpdateMLTransformCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateMLTransformRequest, UpdateMLTransformResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateMLTransformRequest, UpdateMLTransformResponse } from "../models/models_2"; import { UpdateMLTransform } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdatePartitionCommand.ts b/clients/client-glue/src/commands/UpdatePartitionCommand.ts index 280dfdf325945..ade9f73622e4e 100644 --- a/clients/client-glue/src/commands/UpdatePartitionCommand.ts +++ b/clients/client-glue/src/commands/UpdatePartitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdatePartitionRequest, UpdatePartitionResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdatePartitionRequest, UpdatePartitionResponse } from "../models/models_2"; import { UpdatePartition } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateRegistryCommand.ts b/clients/client-glue/src/commands/UpdateRegistryCommand.ts index 0a693d4c3e29d..1347322ea876c 100644 --- a/clients/client-glue/src/commands/UpdateRegistryCommand.ts +++ b/clients/client-glue/src/commands/UpdateRegistryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateRegistryInput, UpdateRegistryResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateRegistryInput, UpdateRegistryResponse } from "../models/models_2"; import { UpdateRegistry } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateSchemaCommand.ts b/clients/client-glue/src/commands/UpdateSchemaCommand.ts index 62d77f0285e0b..889b751ca9cbc 100644 --- a/clients/client-glue/src/commands/UpdateSchemaCommand.ts +++ b/clients/client-glue/src/commands/UpdateSchemaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateSchemaInput, UpdateSchemaResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateSchemaInput, UpdateSchemaResponse } from "../models/models_2"; import { UpdateSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts b/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts index 36462078f77cd..7ea3dc89b97aa 100644 --- a/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts +++ b/clients/client-glue/src/commands/UpdateSourceControlFromJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateSourceControlFromJobRequest, UpdateSourceControlFromJobResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateSourceControlFromJobRequest, UpdateSourceControlFromJobResponse } from "../models/models_2"; import { UpdateSourceControlFromJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateTableCommand.ts b/clients/client-glue/src/commands/UpdateTableCommand.ts index a25a38e832bfe..e54dc0382b96d 100644 --- a/clients/client-glue/src/commands/UpdateTableCommand.ts +++ b/clients/client-glue/src/commands/UpdateTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateTableRequest, UpdateTableResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateTableRequest, UpdateTableResponse } from "../models/models_2"; import { UpdateTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateTableOptimizerCommand.ts b/clients/client-glue/src/commands/UpdateTableOptimizerCommand.ts index 1ec4f92128ca9..f39ede4eda484 100644 --- a/clients/client-glue/src/commands/UpdateTableOptimizerCommand.ts +++ b/clients/client-glue/src/commands/UpdateTableOptimizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateTableOptimizerRequest, UpdateTableOptimizerResponse } from "../models/models_2"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateTableOptimizerRequest, UpdateTableOptimizerResponse } from "../models/models_2"; import { UpdateTableOptimizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateTriggerCommand.ts b/clients/client-glue/src/commands/UpdateTriggerCommand.ts index 560ecaee0fdbc..9e3f07904d2bd 100644 --- a/clients/client-glue/src/commands/UpdateTriggerCommand.ts +++ b/clients/client-glue/src/commands/UpdateTriggerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateTriggerRequest } from "../models/models_2"; -import { UpdateTriggerResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateTriggerRequest } from "../models/models_2"; +import type { UpdateTriggerResponse } from "../models/models_3"; import { UpdateTrigger } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateUsageProfileCommand.ts b/clients/client-glue/src/commands/UpdateUsageProfileCommand.ts index 7236f2fd7e910..a358b6a34003b 100644 --- a/clients/client-glue/src/commands/UpdateUsageProfileCommand.ts +++ b/clients/client-glue/src/commands/UpdateUsageProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateUsageProfileRequest, UpdateUsageProfileResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateUsageProfileRequest, UpdateUsageProfileResponse } from "../models/models_3"; import { UpdateUsageProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateUserDefinedFunctionCommand.ts b/clients/client-glue/src/commands/UpdateUserDefinedFunctionCommand.ts index 9200d7f8e036d..b23500044b848 100644 --- a/clients/client-glue/src/commands/UpdateUserDefinedFunctionCommand.ts +++ b/clients/client-glue/src/commands/UpdateUserDefinedFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateUserDefinedFunctionRequest, UpdateUserDefinedFunctionResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateUserDefinedFunctionRequest, UpdateUserDefinedFunctionResponse } from "../models/models_3"; import { UpdateUserDefinedFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/commands/UpdateWorkflowCommand.ts b/clients/client-glue/src/commands/UpdateWorkflowCommand.ts index 6a36f3b37a4d0..01e5b9c12d990 100644 --- a/clients/client-glue/src/commands/UpdateWorkflowCommand.ts +++ b/clients/client-glue/src/commands/UpdateWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; -import { UpdateWorkflowRequest, UpdateWorkflowResponse } from "../models/models_3"; +import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; +import type { UpdateWorkflowRequest, UpdateWorkflowResponse } from "../models/models_3"; import { UpdateWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-glue/src/endpoint/EndpointParameters.ts b/clients/client-glue/src/endpoint/EndpointParameters.ts index f3a746656fea6..98ca3e2ecea2c 100644 --- a/clients/client-glue/src/endpoint/EndpointParameters.ts +++ b/clients/client-glue/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-glue/src/endpoint/endpointResolver.ts b/clients/client-glue/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-glue/src/endpoint/endpointResolver.ts +++ b/clients/client-glue/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-glue/src/extensionConfiguration.ts b/clients/client-glue/src/extensionConfiguration.ts index ec7fa063ad96a..80c06e863eb47 100644 --- a/clients/client-glue/src/extensionConfiguration.ts +++ b/clients/client-glue/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-glue/src/models/GlueServiceException.ts b/clients/client-glue/src/models/GlueServiceException.ts index c3adcda483063..bfd33ccf7d392 100644 --- a/clients/client-glue/src/models/GlueServiceException.ts +++ b/clients/client-glue/src/models/GlueServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-glue/src/models/errors.ts b/clients/client-glue/src/models/errors.ts index 05514976d0ea4..752ab94ea5bfb 100644 --- a/clients/client-glue/src/models/errors.ts +++ b/clients/client-glue/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { FederationSourceErrorCode } from "./enums"; import { GlueServiceException as __BaseException } from "./GlueServiceException"; diff --git a/clients/client-glue/src/pagination/DescribeEntityPaginator.ts b/clients/client-glue/src/pagination/DescribeEntityPaginator.ts index bc1d19b81a94a..76f143e77ef78 100644 --- a/clients/client-glue/src/pagination/DescribeEntityPaginator.ts +++ b/clients/client-glue/src/pagination/DescribeEntityPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEntityCommand, diff --git a/clients/client-glue/src/pagination/GetBlueprintRunsPaginator.ts b/clients/client-glue/src/pagination/GetBlueprintRunsPaginator.ts index 6c00131065346..e341660b9ed36 100644 --- a/clients/client-glue/src/pagination/GetBlueprintRunsPaginator.ts +++ b/clients/client-glue/src/pagination/GetBlueprintRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBlueprintRunsCommand, diff --git a/clients/client-glue/src/pagination/GetClassifiersPaginator.ts b/clients/client-glue/src/pagination/GetClassifiersPaginator.ts index cf4ed8b7f326a..8753122fb6b76 100644 --- a/clients/client-glue/src/pagination/GetClassifiersPaginator.ts +++ b/clients/client-glue/src/pagination/GetClassifiersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetClassifiersCommand, diff --git a/clients/client-glue/src/pagination/GetColumnStatisticsTaskRunsPaginator.ts b/clients/client-glue/src/pagination/GetColumnStatisticsTaskRunsPaginator.ts index 478916768e866..46b7a90c63dd8 100644 --- a/clients/client-glue/src/pagination/GetColumnStatisticsTaskRunsPaginator.ts +++ b/clients/client-glue/src/pagination/GetColumnStatisticsTaskRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetColumnStatisticsTaskRunsCommand, diff --git a/clients/client-glue/src/pagination/GetConnectionsPaginator.ts b/clients/client-glue/src/pagination/GetConnectionsPaginator.ts index d90e04a1eca95..e823982574e87 100644 --- a/clients/client-glue/src/pagination/GetConnectionsPaginator.ts +++ b/clients/client-glue/src/pagination/GetConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetConnectionsCommand, diff --git a/clients/client-glue/src/pagination/GetCrawlerMetricsPaginator.ts b/clients/client-glue/src/pagination/GetCrawlerMetricsPaginator.ts index e13eba80e0dd0..a2d06161dd42f 100644 --- a/clients/client-glue/src/pagination/GetCrawlerMetricsPaginator.ts +++ b/clients/client-glue/src/pagination/GetCrawlerMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCrawlerMetricsCommand, diff --git a/clients/client-glue/src/pagination/GetCrawlersPaginator.ts b/clients/client-glue/src/pagination/GetCrawlersPaginator.ts index 331fe5ec62f10..3b7962cb5ea9f 100644 --- a/clients/client-glue/src/pagination/GetCrawlersPaginator.ts +++ b/clients/client-glue/src/pagination/GetCrawlersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCrawlersCommand, GetCrawlersCommandInput, GetCrawlersCommandOutput } from "../commands/GetCrawlersCommand"; import { GlueClient } from "../GlueClient"; diff --git a/clients/client-glue/src/pagination/GetDatabasesPaginator.ts b/clients/client-glue/src/pagination/GetDatabasesPaginator.ts index c0fed7480afc0..f75458fb194bf 100644 --- a/clients/client-glue/src/pagination/GetDatabasesPaginator.ts +++ b/clients/client-glue/src/pagination/GetDatabasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetDatabasesCommand, diff --git a/clients/client-glue/src/pagination/GetDevEndpointsPaginator.ts b/clients/client-glue/src/pagination/GetDevEndpointsPaginator.ts index c0a04d8b78b97..8ec66d38cbae4 100644 --- a/clients/client-glue/src/pagination/GetDevEndpointsPaginator.ts +++ b/clients/client-glue/src/pagination/GetDevEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetDevEndpointsCommand, diff --git a/clients/client-glue/src/pagination/GetJobRunsPaginator.ts b/clients/client-glue/src/pagination/GetJobRunsPaginator.ts index 84f933e3e62bf..0aca6ffef0790 100644 --- a/clients/client-glue/src/pagination/GetJobRunsPaginator.ts +++ b/clients/client-glue/src/pagination/GetJobRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetJobRunsCommand, GetJobRunsCommandInput, GetJobRunsCommandOutput } from "../commands/GetJobRunsCommand"; import { GlueClient } from "../GlueClient"; diff --git a/clients/client-glue/src/pagination/GetJobsPaginator.ts b/clients/client-glue/src/pagination/GetJobsPaginator.ts index 9e691fa09feef..b005f369069c5 100644 --- a/clients/client-glue/src/pagination/GetJobsPaginator.ts +++ b/clients/client-glue/src/pagination/GetJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetJobsCommand, GetJobsCommandInput, GetJobsCommandOutput } from "../commands/GetJobsCommand"; import { GlueClient } from "../GlueClient"; diff --git a/clients/client-glue/src/pagination/GetMLTaskRunsPaginator.ts b/clients/client-glue/src/pagination/GetMLTaskRunsPaginator.ts index 7a3763304190e..c78ba74d11412 100644 --- a/clients/client-glue/src/pagination/GetMLTaskRunsPaginator.ts +++ b/clients/client-glue/src/pagination/GetMLTaskRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetMLTaskRunsCommand, diff --git a/clients/client-glue/src/pagination/GetMLTransformsPaginator.ts b/clients/client-glue/src/pagination/GetMLTransformsPaginator.ts index b46fdd2b37c04..c46728c72e00c 100644 --- a/clients/client-glue/src/pagination/GetMLTransformsPaginator.ts +++ b/clients/client-glue/src/pagination/GetMLTransformsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetMLTransformsCommand, diff --git a/clients/client-glue/src/pagination/GetPartitionIndexesPaginator.ts b/clients/client-glue/src/pagination/GetPartitionIndexesPaginator.ts index 11c684da61e5d..d326119a41b04 100644 --- a/clients/client-glue/src/pagination/GetPartitionIndexesPaginator.ts +++ b/clients/client-glue/src/pagination/GetPartitionIndexesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetPartitionIndexesCommand, diff --git a/clients/client-glue/src/pagination/GetPartitionsPaginator.ts b/clients/client-glue/src/pagination/GetPartitionsPaginator.ts index d2afe191c7456..bc6ada340bc8f 100644 --- a/clients/client-glue/src/pagination/GetPartitionsPaginator.ts +++ b/clients/client-glue/src/pagination/GetPartitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetPartitionsCommand, diff --git a/clients/client-glue/src/pagination/GetResourcePoliciesPaginator.ts b/clients/client-glue/src/pagination/GetResourcePoliciesPaginator.ts index 269f7b9dc340d..63345d0bd5929 100644 --- a/clients/client-glue/src/pagination/GetResourcePoliciesPaginator.ts +++ b/clients/client-glue/src/pagination/GetResourcePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourcePoliciesCommand, diff --git a/clients/client-glue/src/pagination/GetSecurityConfigurationsPaginator.ts b/clients/client-glue/src/pagination/GetSecurityConfigurationsPaginator.ts index 2b784d7c48429..56ec309b9bef2 100644 --- a/clients/client-glue/src/pagination/GetSecurityConfigurationsPaginator.ts +++ b/clients/client-glue/src/pagination/GetSecurityConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSecurityConfigurationsCommand, diff --git a/clients/client-glue/src/pagination/GetTableVersionsPaginator.ts b/clients/client-glue/src/pagination/GetTableVersionsPaginator.ts index 829d387b066ff..f540ffc3001ac 100644 --- a/clients/client-glue/src/pagination/GetTableVersionsPaginator.ts +++ b/clients/client-glue/src/pagination/GetTableVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTableVersionsCommand, diff --git a/clients/client-glue/src/pagination/GetTablesPaginator.ts b/clients/client-glue/src/pagination/GetTablesPaginator.ts index 43a1a8ad1d4cc..e3bface765268 100644 --- a/clients/client-glue/src/pagination/GetTablesPaginator.ts +++ b/clients/client-glue/src/pagination/GetTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTablesCommand, GetTablesCommandInput, GetTablesCommandOutput } from "../commands/GetTablesCommand"; import { GlueClient } from "../GlueClient"; diff --git a/clients/client-glue/src/pagination/GetTriggersPaginator.ts b/clients/client-glue/src/pagination/GetTriggersPaginator.ts index 3a35f03399136..a24ef0604690b 100644 --- a/clients/client-glue/src/pagination/GetTriggersPaginator.ts +++ b/clients/client-glue/src/pagination/GetTriggersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTriggersCommand, GetTriggersCommandInput, GetTriggersCommandOutput } from "../commands/GetTriggersCommand"; import { GlueClient } from "../GlueClient"; diff --git a/clients/client-glue/src/pagination/GetUnfilteredPartitionsMetadataPaginator.ts b/clients/client-glue/src/pagination/GetUnfilteredPartitionsMetadataPaginator.ts index 5babc03541ca8..5b65504657046 100644 --- a/clients/client-glue/src/pagination/GetUnfilteredPartitionsMetadataPaginator.ts +++ b/clients/client-glue/src/pagination/GetUnfilteredPartitionsMetadataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetUnfilteredPartitionsMetadataCommand, diff --git a/clients/client-glue/src/pagination/GetUserDefinedFunctionsPaginator.ts b/clients/client-glue/src/pagination/GetUserDefinedFunctionsPaginator.ts index 5fd9b5e0181e6..b74f462f24976 100644 --- a/clients/client-glue/src/pagination/GetUserDefinedFunctionsPaginator.ts +++ b/clients/client-glue/src/pagination/GetUserDefinedFunctionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetUserDefinedFunctionsCommand, diff --git a/clients/client-glue/src/pagination/GetWorkflowRunsPaginator.ts b/clients/client-glue/src/pagination/GetWorkflowRunsPaginator.ts index 0226b612e5c69..e9847b4a7154f 100644 --- a/clients/client-glue/src/pagination/GetWorkflowRunsPaginator.ts +++ b/clients/client-glue/src/pagination/GetWorkflowRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetWorkflowRunsCommand, diff --git a/clients/client-glue/src/pagination/Interfaces.ts b/clients/client-glue/src/pagination/Interfaces.ts index 2636f4e85c3fc..25b38a026171b 100644 --- a/clients/client-glue/src/pagination/Interfaces.ts +++ b/clients/client-glue/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { GlueClient } from "../GlueClient"; diff --git a/clients/client-glue/src/pagination/ListBlueprintsPaginator.ts b/clients/client-glue/src/pagination/ListBlueprintsPaginator.ts index daace744bb1bf..64da307cf9e0c 100644 --- a/clients/client-glue/src/pagination/ListBlueprintsPaginator.ts +++ b/clients/client-glue/src/pagination/ListBlueprintsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBlueprintsCommand, diff --git a/clients/client-glue/src/pagination/ListColumnStatisticsTaskRunsPaginator.ts b/clients/client-glue/src/pagination/ListColumnStatisticsTaskRunsPaginator.ts index fbf6452cadad6..ab3aed866683d 100644 --- a/clients/client-glue/src/pagination/ListColumnStatisticsTaskRunsPaginator.ts +++ b/clients/client-glue/src/pagination/ListColumnStatisticsTaskRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListColumnStatisticsTaskRunsCommand, diff --git a/clients/client-glue/src/pagination/ListConnectionTypesPaginator.ts b/clients/client-glue/src/pagination/ListConnectionTypesPaginator.ts index b107bcdcedea1..8f36d68e209c4 100644 --- a/clients/client-glue/src/pagination/ListConnectionTypesPaginator.ts +++ b/clients/client-glue/src/pagination/ListConnectionTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectionTypesCommand, diff --git a/clients/client-glue/src/pagination/ListCrawlersPaginator.ts b/clients/client-glue/src/pagination/ListCrawlersPaginator.ts index b50873654f1f4..5461df58a4bfb 100644 --- a/clients/client-glue/src/pagination/ListCrawlersPaginator.ts +++ b/clients/client-glue/src/pagination/ListCrawlersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCrawlersCommand, diff --git a/clients/client-glue/src/pagination/ListCustomEntityTypesPaginator.ts b/clients/client-glue/src/pagination/ListCustomEntityTypesPaginator.ts index 1149a22fc879a..c996e2389b034 100644 --- a/clients/client-glue/src/pagination/ListCustomEntityTypesPaginator.ts +++ b/clients/client-glue/src/pagination/ListCustomEntityTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomEntityTypesCommand, diff --git a/clients/client-glue/src/pagination/ListDataQualityResultsPaginator.ts b/clients/client-glue/src/pagination/ListDataQualityResultsPaginator.ts index eb99c7fb11d63..dc651fc577eef 100644 --- a/clients/client-glue/src/pagination/ListDataQualityResultsPaginator.ts +++ b/clients/client-glue/src/pagination/ListDataQualityResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataQualityResultsCommand, diff --git a/clients/client-glue/src/pagination/ListDataQualityRuleRecommendationRunsPaginator.ts b/clients/client-glue/src/pagination/ListDataQualityRuleRecommendationRunsPaginator.ts index 57087627eb16c..671abf72c1300 100644 --- a/clients/client-glue/src/pagination/ListDataQualityRuleRecommendationRunsPaginator.ts +++ b/clients/client-glue/src/pagination/ListDataQualityRuleRecommendationRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataQualityRuleRecommendationRunsCommand, diff --git a/clients/client-glue/src/pagination/ListDataQualityRulesetEvaluationRunsPaginator.ts b/clients/client-glue/src/pagination/ListDataQualityRulesetEvaluationRunsPaginator.ts index 4ff813223ae13..e376543c61784 100644 --- a/clients/client-glue/src/pagination/ListDataQualityRulesetEvaluationRunsPaginator.ts +++ b/clients/client-glue/src/pagination/ListDataQualityRulesetEvaluationRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataQualityRulesetEvaluationRunsCommand, diff --git a/clients/client-glue/src/pagination/ListDataQualityRulesetsPaginator.ts b/clients/client-glue/src/pagination/ListDataQualityRulesetsPaginator.ts index 9eaaefb8b7960..50ae4f7719de9 100644 --- a/clients/client-glue/src/pagination/ListDataQualityRulesetsPaginator.ts +++ b/clients/client-glue/src/pagination/ListDataQualityRulesetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataQualityRulesetsCommand, diff --git a/clients/client-glue/src/pagination/ListDevEndpointsPaginator.ts b/clients/client-glue/src/pagination/ListDevEndpointsPaginator.ts index 9c4431fcb0c7b..f0e6c4d9f74ae 100644 --- a/clients/client-glue/src/pagination/ListDevEndpointsPaginator.ts +++ b/clients/client-glue/src/pagination/ListDevEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDevEndpointsCommand, diff --git a/clients/client-glue/src/pagination/ListEntitiesPaginator.ts b/clients/client-glue/src/pagination/ListEntitiesPaginator.ts index ca7c282b78191..a051327268219 100644 --- a/clients/client-glue/src/pagination/ListEntitiesPaginator.ts +++ b/clients/client-glue/src/pagination/ListEntitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntitiesCommand, diff --git a/clients/client-glue/src/pagination/ListJobsPaginator.ts b/clients/client-glue/src/pagination/ListJobsPaginator.ts index 7a574b1aba93b..082fddfb395d1 100644 --- a/clients/client-glue/src/pagination/ListJobsPaginator.ts +++ b/clients/client-glue/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { GlueClient } from "../GlueClient"; diff --git a/clients/client-glue/src/pagination/ListMLTransformsPaginator.ts b/clients/client-glue/src/pagination/ListMLTransformsPaginator.ts index 2f51bbb0546f5..ebb6019be7cfd 100644 --- a/clients/client-glue/src/pagination/ListMLTransformsPaginator.ts +++ b/clients/client-glue/src/pagination/ListMLTransformsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMLTransformsCommand, diff --git a/clients/client-glue/src/pagination/ListRegistriesPaginator.ts b/clients/client-glue/src/pagination/ListRegistriesPaginator.ts index 1fcbeb73c0559..fc3d2a47398ac 100644 --- a/clients/client-glue/src/pagination/ListRegistriesPaginator.ts +++ b/clients/client-glue/src/pagination/ListRegistriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRegistriesCommand, diff --git a/clients/client-glue/src/pagination/ListSchemaVersionsPaginator.ts b/clients/client-glue/src/pagination/ListSchemaVersionsPaginator.ts index 027792965f088..034e6b22f9ac4 100644 --- a/clients/client-glue/src/pagination/ListSchemaVersionsPaginator.ts +++ b/clients/client-glue/src/pagination/ListSchemaVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchemaVersionsCommand, diff --git a/clients/client-glue/src/pagination/ListSchemasPaginator.ts b/clients/client-glue/src/pagination/ListSchemasPaginator.ts index 62a85a12f0b71..a37b957c6fb31 100644 --- a/clients/client-glue/src/pagination/ListSchemasPaginator.ts +++ b/clients/client-glue/src/pagination/ListSchemasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchemasCommand, ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand"; import { GlueClient } from "../GlueClient"; diff --git a/clients/client-glue/src/pagination/ListSessionsPaginator.ts b/clients/client-glue/src/pagination/ListSessionsPaginator.ts index f1ea2cd0172e3..22170d3025f57 100644 --- a/clients/client-glue/src/pagination/ListSessionsPaginator.ts +++ b/clients/client-glue/src/pagination/ListSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSessionsCommand, diff --git a/clients/client-glue/src/pagination/ListTableOptimizerRunsPaginator.ts b/clients/client-glue/src/pagination/ListTableOptimizerRunsPaginator.ts index 44f49fac09060..1da4e2d428618 100644 --- a/clients/client-glue/src/pagination/ListTableOptimizerRunsPaginator.ts +++ b/clients/client-glue/src/pagination/ListTableOptimizerRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTableOptimizerRunsCommand, diff --git a/clients/client-glue/src/pagination/ListTriggersPaginator.ts b/clients/client-glue/src/pagination/ListTriggersPaginator.ts index bafe837dbc0c0..37e323afc1c99 100644 --- a/clients/client-glue/src/pagination/ListTriggersPaginator.ts +++ b/clients/client-glue/src/pagination/ListTriggersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTriggersCommand, diff --git a/clients/client-glue/src/pagination/ListUsageProfilesPaginator.ts b/clients/client-glue/src/pagination/ListUsageProfilesPaginator.ts index e2f3ae3e0829b..8dea2687458ee 100644 --- a/clients/client-glue/src/pagination/ListUsageProfilesPaginator.ts +++ b/clients/client-glue/src/pagination/ListUsageProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsageProfilesCommand, diff --git a/clients/client-glue/src/pagination/ListWorkflowsPaginator.ts b/clients/client-glue/src/pagination/ListWorkflowsPaginator.ts index 75581580736a6..defaae6bdbf3c 100644 --- a/clients/client-glue/src/pagination/ListWorkflowsPaginator.ts +++ b/clients/client-glue/src/pagination/ListWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowsCommand, diff --git a/clients/client-glue/src/pagination/SearchTablesPaginator.ts b/clients/client-glue/src/pagination/SearchTablesPaginator.ts index 73599a7fcd3f6..e565667f50c4a 100644 --- a/clients/client-glue/src/pagination/SearchTablesPaginator.ts +++ b/clients/client-glue/src/pagination/SearchTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchTablesCommand, diff --git a/clients/client-glue/src/runtimeConfig.browser.ts b/clients/client-glue/src/runtimeConfig.browser.ts index 08d301d39cbe6..31bff7a5a2576 100644 --- a/clients/client-glue/src/runtimeConfig.browser.ts +++ b/clients/client-glue/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlueClientConfig } from "./GlueClient"; + +import type { GlueClientConfig } from "./GlueClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-glue/src/runtimeConfig.native.ts b/clients/client-glue/src/runtimeConfig.native.ts index 319e8849fcb89..8577efcbb060e 100644 --- a/clients/client-glue/src/runtimeConfig.native.ts +++ b/clients/client-glue/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GlueClientConfig } from "./GlueClient"; +import type { GlueClientConfig } from "./GlueClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-glue/src/runtimeConfig.shared.ts b/clients/client-glue/src/runtimeConfig.shared.ts index 6d5befa5c7e16..e8ee075a676c7 100644 --- a/clients/client-glue/src/runtimeConfig.shared.ts +++ b/clients/client-glue/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGlueHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GlueClientConfig } from "./GlueClient"; +import type { GlueClientConfig } from "./GlueClient"; /** * @internal diff --git a/clients/client-glue/src/runtimeConfig.ts b/clients/client-glue/src/runtimeConfig.ts index 4a60571bdfccd..9a2f39afbabef 100644 --- a/clients/client-glue/src/runtimeConfig.ts +++ b/clients/client-glue/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlueClientConfig } from "./GlueClient"; + +import type { GlueClientConfig } from "./GlueClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-glue/src/runtimeExtensions.ts b/clients/client-glue/src/runtimeExtensions.ts index 4e49393dc9ef3..6738b63a203aa 100644 --- a/clients/client-glue/src/runtimeExtensions.ts +++ b/clients/client-glue/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GlueExtensionConfiguration } from "./extensionConfiguration"; +import type { GlueExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-glue/src/schemas/schemas_0.ts b/clients/client-glue/src/schemas/schemas_0.ts index fadb5be71e760..ce666986952fd 100644 --- a/clients/client-glue/src/schemas/schemas_0.ts +++ b/clients/client-glue/src/schemas/schemas_0.ts @@ -2343,7 +2343,7 @@ const n0 = "com.amazonaws.glue"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-grafana/package.json b/clients/client-grafana/package.json index c1089ff56682e..003d8bf444d8e 100644 --- a/clients/client-grafana/package.json +++ b/clients/client-grafana/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-grafana/src/Grafana.ts b/clients/client-grafana/src/Grafana.ts index a1925f6886367..3b676f14661a8 100644 --- a/clients/client-grafana/src/Grafana.ts +++ b/clients/client-grafana/src/Grafana.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateLicenseCommand, @@ -123,7 +123,7 @@ import { UpdateWorkspaceConfigurationCommandInput, UpdateWorkspaceConfigurationCommandOutput, } from "./commands/UpdateWorkspaceConfigurationCommand"; -import { GrafanaClient, GrafanaClientConfig } from "./GrafanaClient"; +import { GrafanaClient } from "./GrafanaClient"; const commands = { AssociateLicenseCommand, diff --git a/clients/client-grafana/src/GrafanaClient.ts b/clients/client-grafana/src/GrafanaClient.ts index f6f95414694b7..c687e64eae0ed 100644 --- a/clients/client-grafana/src/GrafanaClient.ts +++ b/clients/client-grafana/src/GrafanaClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGrafanaHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateLicenseCommandInput, AssociateLicenseCommandOutput } from "./commands/AssociateLicenseCommand"; @@ -131,7 +140,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-grafana/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-grafana/src/auth/httpAuthExtensionConfiguration.ts index c91b182bfba6c..d4a7db1098677 100644 --- a/clients/client-grafana/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-grafana/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GrafanaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GrafanaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-grafana/src/auth/httpAuthSchemeProvider.ts b/clients/client-grafana/src/auth/httpAuthSchemeProvider.ts index 29411f70f82b6..c4b8cdd975cfb 100644 --- a/clients/client-grafana/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-grafana/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GrafanaClientConfig, GrafanaClientResolvedConfig } from "../GrafanaClient"; +import { type GrafanaClientResolvedConfig, GrafanaClientConfig } from "../GrafanaClient"; /** * @internal diff --git a/clients/client-grafana/src/commands/AssociateLicenseCommand.ts b/clients/client-grafana/src/commands/AssociateLicenseCommand.ts index e2909b2705b43..8685db0e1931e 100644 --- a/clients/client-grafana/src/commands/AssociateLicenseCommand.ts +++ b/clients/client-grafana/src/commands/AssociateLicenseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { AssociateLicenseRequest, AssociateLicenseResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { AssociateLicenseRequest, AssociateLicenseResponse } from "../models/models_0"; import { AssociateLicense } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/CreateWorkspaceApiKeyCommand.ts b/clients/client-grafana/src/commands/CreateWorkspaceApiKeyCommand.ts index 49292711d394b..308c3aa1638be 100644 --- a/clients/client-grafana/src/commands/CreateWorkspaceApiKeyCommand.ts +++ b/clients/client-grafana/src/commands/CreateWorkspaceApiKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { CreateWorkspaceApiKeyRequest, CreateWorkspaceApiKeyResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { CreateWorkspaceApiKeyRequest, CreateWorkspaceApiKeyResponse } from "../models/models_0"; import { CreateWorkspaceApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/CreateWorkspaceCommand.ts b/clients/client-grafana/src/commands/CreateWorkspaceCommand.ts index c78a66d38cb98..f039453e4a9f7 100644 --- a/clients/client-grafana/src/commands/CreateWorkspaceCommand.ts +++ b/clients/client-grafana/src/commands/CreateWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0"; import { CreateWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountCommand.ts b/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountCommand.ts index 2aa9e275488ef..8f6807976c3bb 100644 --- a/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountCommand.ts +++ b/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { CreateWorkspaceServiceAccountRequest, CreateWorkspaceServiceAccountResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { CreateWorkspaceServiceAccountRequest, CreateWorkspaceServiceAccountResponse } from "../models/models_0"; import { CreateWorkspaceServiceAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountTokenCommand.ts b/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountTokenCommand.ts index 39a1c1c4f6050..d37eb70a9d160 100644 --- a/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountTokenCommand.ts +++ b/clients/client-grafana/src/commands/CreateWorkspaceServiceAccountTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { CreateWorkspaceServiceAccountTokenRequest, CreateWorkspaceServiceAccountTokenResponse, } from "../models/models_0"; diff --git a/clients/client-grafana/src/commands/DeleteWorkspaceApiKeyCommand.ts b/clients/client-grafana/src/commands/DeleteWorkspaceApiKeyCommand.ts index b12910b98f447..d29e07e57fc10 100644 --- a/clients/client-grafana/src/commands/DeleteWorkspaceApiKeyCommand.ts +++ b/clients/client-grafana/src/commands/DeleteWorkspaceApiKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { DeleteWorkspaceApiKeyRequest, DeleteWorkspaceApiKeyResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { DeleteWorkspaceApiKeyRequest, DeleteWorkspaceApiKeyResponse } from "../models/models_0"; import { DeleteWorkspaceApiKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/DeleteWorkspaceCommand.ts b/clients/client-grafana/src/commands/DeleteWorkspaceCommand.ts index 0a7708dee2da4..0b271908e408c 100644 --- a/clients/client-grafana/src/commands/DeleteWorkspaceCommand.ts +++ b/clients/client-grafana/src/commands/DeleteWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { DeleteWorkspaceRequest, DeleteWorkspaceResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { DeleteWorkspaceRequest, DeleteWorkspaceResponse } from "../models/models_0"; import { DeleteWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountCommand.ts b/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountCommand.ts index 65c936545594a..c0c5b3eb90292 100644 --- a/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountCommand.ts +++ b/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { DeleteWorkspaceServiceAccountRequest, DeleteWorkspaceServiceAccountResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { DeleteWorkspaceServiceAccountRequest, DeleteWorkspaceServiceAccountResponse } from "../models/models_0"; import { DeleteWorkspaceServiceAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountTokenCommand.ts b/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountTokenCommand.ts index a5465ae21a0bd..814b872a66dd0 100644 --- a/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountTokenCommand.ts +++ b/clients/client-grafana/src/commands/DeleteWorkspaceServiceAccountTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { DeleteWorkspaceServiceAccountTokenRequest, DeleteWorkspaceServiceAccountTokenResponse, } from "../models/models_0"; diff --git a/clients/client-grafana/src/commands/DescribeWorkspaceAuthenticationCommand.ts b/clients/client-grafana/src/commands/DescribeWorkspaceAuthenticationCommand.ts index e2d119269cac0..5ad01f64fef6e 100644 --- a/clients/client-grafana/src/commands/DescribeWorkspaceAuthenticationCommand.ts +++ b/clients/client-grafana/src/commands/DescribeWorkspaceAuthenticationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { DescribeWorkspaceAuthenticationRequest, DescribeWorkspaceAuthenticationResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { + DescribeWorkspaceAuthenticationRequest, + DescribeWorkspaceAuthenticationResponse, +} from "../models/models_0"; import { DescribeWorkspaceAuthentication } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/DescribeWorkspaceCommand.ts b/clients/client-grafana/src/commands/DescribeWorkspaceCommand.ts index 4e7841625956b..969ab8d6b182c 100644 --- a/clients/client-grafana/src/commands/DescribeWorkspaceCommand.ts +++ b/clients/client-grafana/src/commands/DescribeWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { DescribeWorkspaceRequest, DescribeWorkspaceResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { DescribeWorkspaceRequest, DescribeWorkspaceResponse } from "../models/models_0"; import { DescribeWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/DescribeWorkspaceConfigurationCommand.ts b/clients/client-grafana/src/commands/DescribeWorkspaceConfigurationCommand.ts index dced189828072..1bb3fb6c127c3 100644 --- a/clients/client-grafana/src/commands/DescribeWorkspaceConfigurationCommand.ts +++ b/clients/client-grafana/src/commands/DescribeWorkspaceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { DescribeWorkspaceConfigurationRequest, DescribeWorkspaceConfigurationResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { DescribeWorkspaceConfigurationRequest, DescribeWorkspaceConfigurationResponse } from "../models/models_0"; import { DescribeWorkspaceConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/DisassociateLicenseCommand.ts b/clients/client-grafana/src/commands/DisassociateLicenseCommand.ts index d02fed8e4d04b..004cd73bca4d6 100644 --- a/clients/client-grafana/src/commands/DisassociateLicenseCommand.ts +++ b/clients/client-grafana/src/commands/DisassociateLicenseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { DisassociateLicenseRequest, DisassociateLicenseResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { DisassociateLicenseRequest, DisassociateLicenseResponse } from "../models/models_0"; import { DisassociateLicense } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/ListPermissionsCommand.ts b/clients/client-grafana/src/commands/ListPermissionsCommand.ts index 7cf939ef1dcce..e55ffbaa51dfe 100644 --- a/clients/client-grafana/src/commands/ListPermissionsCommand.ts +++ b/clients/client-grafana/src/commands/ListPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0"; import { ListPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/ListTagsForResourceCommand.ts b/clients/client-grafana/src/commands/ListTagsForResourceCommand.ts index 65c1c8a4bdc51..a4c8eb5ccd0cf 100644 --- a/clients/client-grafana/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-grafana/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/ListVersionsCommand.ts b/clients/client-grafana/src/commands/ListVersionsCommand.ts index e448f436083fc..cc3417ce18d19 100644 --- a/clients/client-grafana/src/commands/ListVersionsCommand.ts +++ b/clients/client-grafana/src/commands/ListVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { ListVersionsRequest, ListVersionsResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { ListVersionsRequest, ListVersionsResponse } from "../models/models_0"; import { ListVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/ListWorkspaceServiceAccountTokensCommand.ts b/clients/client-grafana/src/commands/ListWorkspaceServiceAccountTokensCommand.ts index 947c77bab5a13..977d530eda31a 100644 --- a/clients/client-grafana/src/commands/ListWorkspaceServiceAccountTokensCommand.ts +++ b/clients/client-grafana/src/commands/ListWorkspaceServiceAccountTokensCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { ListWorkspaceServiceAccountTokensRequest, ListWorkspaceServiceAccountTokensResponse, } from "../models/models_0"; diff --git a/clients/client-grafana/src/commands/ListWorkspaceServiceAccountsCommand.ts b/clients/client-grafana/src/commands/ListWorkspaceServiceAccountsCommand.ts index 4606f9e3db210..f2bb8805236ed 100644 --- a/clients/client-grafana/src/commands/ListWorkspaceServiceAccountsCommand.ts +++ b/clients/client-grafana/src/commands/ListWorkspaceServiceAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { ListWorkspaceServiceAccountsRequest, ListWorkspaceServiceAccountsResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { ListWorkspaceServiceAccountsRequest, ListWorkspaceServiceAccountsResponse } from "../models/models_0"; import { ListWorkspaceServiceAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/ListWorkspacesCommand.ts b/clients/client-grafana/src/commands/ListWorkspacesCommand.ts index 69aa3c747fd8d..4c453600308a9 100644 --- a/clients/client-grafana/src/commands/ListWorkspacesCommand.ts +++ b/clients/client-grafana/src/commands/ListWorkspacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_0"; import { ListWorkspaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/TagResourceCommand.ts b/clients/client-grafana/src/commands/TagResourceCommand.ts index c640d9daf1f86..91dceb79246d1 100644 --- a/clients/client-grafana/src/commands/TagResourceCommand.ts +++ b/clients/client-grafana/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/UntagResourceCommand.ts b/clients/client-grafana/src/commands/UntagResourceCommand.ts index 2aea84607c9dd..2e37929999c1e 100644 --- a/clients/client-grafana/src/commands/UntagResourceCommand.ts +++ b/clients/client-grafana/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/UpdatePermissionsCommand.ts b/clients/client-grafana/src/commands/UpdatePermissionsCommand.ts index 921d5240d91c8..0851d3b95ebb3 100644 --- a/clients/client-grafana/src/commands/UpdatePermissionsCommand.ts +++ b/clients/client-grafana/src/commands/UpdatePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { UpdatePermissionsRequest, UpdatePermissionsResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { UpdatePermissionsRequest, UpdatePermissionsResponse } from "../models/models_0"; import { UpdatePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/UpdateWorkspaceAuthenticationCommand.ts b/clients/client-grafana/src/commands/UpdateWorkspaceAuthenticationCommand.ts index cccc46d43d24e..0619f51fcd96f 100644 --- a/clients/client-grafana/src/commands/UpdateWorkspaceAuthenticationCommand.ts +++ b/clients/client-grafana/src/commands/UpdateWorkspaceAuthenticationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { UpdateWorkspaceAuthenticationRequest, UpdateWorkspaceAuthenticationResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { UpdateWorkspaceAuthenticationRequest, UpdateWorkspaceAuthenticationResponse } from "../models/models_0"; import { UpdateWorkspaceAuthentication } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/UpdateWorkspaceCommand.ts b/clients/client-grafana/src/commands/UpdateWorkspaceCommand.ts index 54c24b06dd340..57272878d732d 100644 --- a/clients/client-grafana/src/commands/UpdateWorkspaceCommand.ts +++ b/clients/client-grafana/src/commands/UpdateWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { UpdateWorkspaceRequest, UpdateWorkspaceResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { UpdateWorkspaceRequest, UpdateWorkspaceResponse } from "../models/models_0"; import { UpdateWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/commands/UpdateWorkspaceConfigurationCommand.ts b/clients/client-grafana/src/commands/UpdateWorkspaceConfigurationCommand.ts index dba9d63711e53..bdec843e7818e 100644 --- a/clients/client-grafana/src/commands/UpdateWorkspaceConfigurationCommand.ts +++ b/clients/client-grafana/src/commands/UpdateWorkspaceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; -import { UpdateWorkspaceConfigurationRequest, UpdateWorkspaceConfigurationResponse } from "../models/models_0"; +import type { GrafanaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GrafanaClient"; +import type { UpdateWorkspaceConfigurationRequest, UpdateWorkspaceConfigurationResponse } from "../models/models_0"; import { UpdateWorkspaceConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-grafana/src/endpoint/EndpointParameters.ts b/clients/client-grafana/src/endpoint/EndpointParameters.ts index 6ece6f6639af6..d457b76dc8868 100644 --- a/clients/client-grafana/src/endpoint/EndpointParameters.ts +++ b/clients/client-grafana/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-grafana/src/endpoint/endpointResolver.ts b/clients/client-grafana/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-grafana/src/endpoint/endpointResolver.ts +++ b/clients/client-grafana/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-grafana/src/extensionConfiguration.ts b/clients/client-grafana/src/extensionConfiguration.ts index f4f0aaa6b64df..da921c995e103 100644 --- a/clients/client-grafana/src/extensionConfiguration.ts +++ b/clients/client-grafana/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-grafana/src/models/GrafanaServiceException.ts b/clients/client-grafana/src/models/GrafanaServiceException.ts index 1b8e77bc27da7..309cf8e702d6c 100644 --- a/clients/client-grafana/src/models/GrafanaServiceException.ts +++ b/clients/client-grafana/src/models/GrafanaServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-grafana/src/models/errors.ts b/clients/client-grafana/src/models/errors.ts index 7faf3870a0c64..70da80bc66c0b 100644 --- a/clients/client-grafana/src/models/errors.ts +++ b/clients/client-grafana/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { GrafanaServiceException as __BaseException } from "./GrafanaServiceException"; diff --git a/clients/client-grafana/src/pagination/Interfaces.ts b/clients/client-grafana/src/pagination/Interfaces.ts index 288ca3b3df0c1..018e7d39fe0fb 100644 --- a/clients/client-grafana/src/pagination/Interfaces.ts +++ b/clients/client-grafana/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { GrafanaClient } from "../GrafanaClient"; diff --git a/clients/client-grafana/src/pagination/ListPermissionsPaginator.ts b/clients/client-grafana/src/pagination/ListPermissionsPaginator.ts index 49eca5f2f5e7c..1cde2b3abd05c 100644 --- a/clients/client-grafana/src/pagination/ListPermissionsPaginator.ts +++ b/clients/client-grafana/src/pagination/ListPermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPermissionsCommand, diff --git a/clients/client-grafana/src/pagination/ListVersionsPaginator.ts b/clients/client-grafana/src/pagination/ListVersionsPaginator.ts index 016a9d53e6b3b..fdc74c018eb0f 100644 --- a/clients/client-grafana/src/pagination/ListVersionsPaginator.ts +++ b/clients/client-grafana/src/pagination/ListVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVersionsCommand, diff --git a/clients/client-grafana/src/pagination/ListWorkspaceServiceAccountTokensPaginator.ts b/clients/client-grafana/src/pagination/ListWorkspaceServiceAccountTokensPaginator.ts index 0b39c1c1d0258..0bf334aaedd5e 100644 --- a/clients/client-grafana/src/pagination/ListWorkspaceServiceAccountTokensPaginator.ts +++ b/clients/client-grafana/src/pagination/ListWorkspaceServiceAccountTokensPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkspaceServiceAccountTokensCommand, diff --git a/clients/client-grafana/src/pagination/ListWorkspaceServiceAccountsPaginator.ts b/clients/client-grafana/src/pagination/ListWorkspaceServiceAccountsPaginator.ts index c086be5a9bb80..046dfb0d93ef0 100644 --- a/clients/client-grafana/src/pagination/ListWorkspaceServiceAccountsPaginator.ts +++ b/clients/client-grafana/src/pagination/ListWorkspaceServiceAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkspaceServiceAccountsCommand, diff --git a/clients/client-grafana/src/pagination/ListWorkspacesPaginator.ts b/clients/client-grafana/src/pagination/ListWorkspacesPaginator.ts index 87940d8ceee82..3b8432265eea1 100644 --- a/clients/client-grafana/src/pagination/ListWorkspacesPaginator.ts +++ b/clients/client-grafana/src/pagination/ListWorkspacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkspacesCommand, diff --git a/clients/client-grafana/src/runtimeConfig.browser.ts b/clients/client-grafana/src/runtimeConfig.browser.ts index 7e9b404014467..b2c654e29c758 100644 --- a/clients/client-grafana/src/runtimeConfig.browser.ts +++ b/clients/client-grafana/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GrafanaClientConfig } from "./GrafanaClient"; + +import type { GrafanaClientConfig } from "./GrafanaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-grafana/src/runtimeConfig.native.ts b/clients/client-grafana/src/runtimeConfig.native.ts index 442a6d3037979..f634cea070af9 100644 --- a/clients/client-grafana/src/runtimeConfig.native.ts +++ b/clients/client-grafana/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GrafanaClientConfig } from "./GrafanaClient"; +import type { GrafanaClientConfig } from "./GrafanaClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-grafana/src/runtimeConfig.shared.ts b/clients/client-grafana/src/runtimeConfig.shared.ts index 5afce3c11b982..746737940cfff 100644 --- a/clients/client-grafana/src/runtimeConfig.shared.ts +++ b/clients/client-grafana/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGrafanaHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GrafanaClientConfig } from "./GrafanaClient"; +import type { GrafanaClientConfig } from "./GrafanaClient"; /** * @internal diff --git a/clients/client-grafana/src/runtimeConfig.ts b/clients/client-grafana/src/runtimeConfig.ts index cb11a66d91988..59bd213251f7c 100644 --- a/clients/client-grafana/src/runtimeConfig.ts +++ b/clients/client-grafana/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GrafanaClientConfig } from "./GrafanaClient"; + +import type { GrafanaClientConfig } from "./GrafanaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-grafana/src/runtimeExtensions.ts b/clients/client-grafana/src/runtimeExtensions.ts index b816187739203..0a84e4640a5e6 100644 --- a/clients/client-grafana/src/runtimeExtensions.ts +++ b/clients/client-grafana/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GrafanaExtensionConfiguration } from "./extensionConfiguration"; +import type { GrafanaExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-grafana/src/schemas/schemas_0.ts b/clients/client-grafana/src/schemas/schemas_0.ts index 33a2dda97779f..8c15b46d161b9 100644 --- a/clients/client-grafana/src/schemas/schemas_0.ts +++ b/clients/client-grafana/src/schemas/schemas_0.ts @@ -235,7 +235,7 @@ const n0 = "com.amazonaws.grafana"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-greengrass/package.json b/clients/client-greengrass/package.json index ecc03b667583c..c5410811d76de 100644 --- a/clients/client-greengrass/package.json +++ b/clients/client-greengrass/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-greengrass/src/Greengrass.ts b/clients/client-greengrass/src/Greengrass.ts index 738c2b440e350..cc064acaa7988 100644 --- a/clients/client-greengrass/src/Greengrass.ts +++ b/clients/client-greengrass/src/Greengrass.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateRoleToGroupCommand, @@ -438,7 +438,7 @@ import { UpdateThingRuntimeConfigurationCommandInput, UpdateThingRuntimeConfigurationCommandOutput, } from "./commands/UpdateThingRuntimeConfigurationCommand"; -import { GreengrassClient, GreengrassClientConfig } from "./GreengrassClient"; +import { GreengrassClient } from "./GreengrassClient"; const commands = { AssociateRoleToGroupCommand, diff --git a/clients/client-greengrass/src/GreengrassClient.ts b/clients/client-greengrass/src/GreengrassClient.ts index e1842a6681066..88c249dc8fcb3 100644 --- a/clients/client-greengrass/src/GreengrassClient.ts +++ b/clients/client-greengrass/src/GreengrassClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGreengrassHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -384,7 +393,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-greengrass/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-greengrass/src/auth/httpAuthExtensionConfiguration.ts index 4a72b429f8c59..838cbb27e4eec 100644 --- a/clients/client-greengrass/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-greengrass/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GreengrassHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GreengrassHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-greengrass/src/auth/httpAuthSchemeProvider.ts b/clients/client-greengrass/src/auth/httpAuthSchemeProvider.ts index 58903aaa886bd..0d7a38a772425 100644 --- a/clients/client-greengrass/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-greengrass/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GreengrassClientConfig, GreengrassClientResolvedConfig } from "../GreengrassClient"; +import { type GreengrassClientResolvedConfig, GreengrassClientConfig } from "../GreengrassClient"; /** * @internal diff --git a/clients/client-greengrass/src/commands/AssociateRoleToGroupCommand.ts b/clients/client-greengrass/src/commands/AssociateRoleToGroupCommand.ts index 1e36e53da76d4..0d2665b819c15 100644 --- a/clients/client-greengrass/src/commands/AssociateRoleToGroupCommand.ts +++ b/clients/client-greengrass/src/commands/AssociateRoleToGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { AssociateRoleToGroupRequest, AssociateRoleToGroupResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { AssociateRoleToGroupRequest, AssociateRoleToGroupResponse } from "../models/models_0"; import { AssociateRoleToGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/AssociateServiceRoleToAccountCommand.ts b/clients/client-greengrass/src/commands/AssociateServiceRoleToAccountCommand.ts index 4c0728787dfbb..f05f75be8b43c 100644 --- a/clients/client-greengrass/src/commands/AssociateServiceRoleToAccountCommand.ts +++ b/clients/client-greengrass/src/commands/AssociateServiceRoleToAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { AssociateServiceRoleToAccountRequest, AssociateServiceRoleToAccountResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { AssociateServiceRoleToAccountRequest, AssociateServiceRoleToAccountResponse } from "../models/models_0"; import { AssociateServiceRoleToAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateConnectorDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateConnectorDefinitionCommand.ts index b7aeedeee9542..9791bf35d439c 100644 --- a/clients/client-greengrass/src/commands/CreateConnectorDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateConnectorDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateConnectorDefinitionRequest, CreateConnectorDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateConnectorDefinitionRequest, CreateConnectorDefinitionResponse } from "../models/models_0"; import { CreateConnectorDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateConnectorDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateConnectorDefinitionVersionCommand.ts index 9c6466dc983ec..f312a725312f3 100644 --- a/clients/client-greengrass/src/commands/CreateConnectorDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateConnectorDefinitionVersionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateConnectorDefinitionVersionRequest, CreateConnectorDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { + CreateConnectorDefinitionVersionRequest, + CreateConnectorDefinitionVersionResponse, +} from "../models/models_0"; import { CreateConnectorDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateCoreDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateCoreDefinitionCommand.ts index 9746a854be7a8..3665528ff5a1e 100644 --- a/clients/client-greengrass/src/commands/CreateCoreDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateCoreDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateCoreDefinitionRequest, CreateCoreDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateCoreDefinitionRequest, CreateCoreDefinitionResponse } from "../models/models_0"; import { CreateCoreDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateCoreDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateCoreDefinitionVersionCommand.ts index 03953ea95b877..0d59ecb03f2dc 100644 --- a/clients/client-greengrass/src/commands/CreateCoreDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateCoreDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateCoreDefinitionVersionRequest, CreateCoreDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateCoreDefinitionVersionRequest, CreateCoreDefinitionVersionResponse } from "../models/models_0"; import { CreateCoreDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateDeploymentCommand.ts b/clients/client-greengrass/src/commands/CreateDeploymentCommand.ts index 4b406346403fb..ce010542fe5c1 100644 --- a/clients/client-greengrass/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-greengrass/src/commands/CreateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0"; import { CreateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateDeviceDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateDeviceDefinitionCommand.ts index feb1380d3fe77..ee11adf57ee91 100644 --- a/clients/client-greengrass/src/commands/CreateDeviceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateDeviceDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateDeviceDefinitionRequest, CreateDeviceDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateDeviceDefinitionRequest, CreateDeviceDefinitionResponse } from "../models/models_0"; import { CreateDeviceDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateDeviceDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateDeviceDefinitionVersionCommand.ts index a09f22b27fe91..d0896807627f1 100644 --- a/clients/client-greengrass/src/commands/CreateDeviceDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateDeviceDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateDeviceDefinitionVersionRequest, CreateDeviceDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateDeviceDefinitionVersionRequest, CreateDeviceDefinitionVersionResponse } from "../models/models_0"; import { CreateDeviceDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateFunctionDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateFunctionDefinitionCommand.ts index ec578cd3600d3..05ca1929feb1d 100644 --- a/clients/client-greengrass/src/commands/CreateFunctionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateFunctionDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateFunctionDefinitionRequest, CreateFunctionDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateFunctionDefinitionRequest, CreateFunctionDefinitionResponse } from "../models/models_0"; import { CreateFunctionDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateFunctionDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateFunctionDefinitionVersionCommand.ts index 93c36fcdebf6b..70731a5b6e228 100644 --- a/clients/client-greengrass/src/commands/CreateFunctionDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateFunctionDefinitionVersionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateFunctionDefinitionVersionRequest, CreateFunctionDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { + CreateFunctionDefinitionVersionRequest, + CreateFunctionDefinitionVersionResponse, +} from "../models/models_0"; import { CreateFunctionDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateGroupCertificateAuthorityCommand.ts b/clients/client-greengrass/src/commands/CreateGroupCertificateAuthorityCommand.ts index 365a4409bfac3..eb59f82e586b6 100644 --- a/clients/client-greengrass/src/commands/CreateGroupCertificateAuthorityCommand.ts +++ b/clients/client-greengrass/src/commands/CreateGroupCertificateAuthorityCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateGroupCertificateAuthorityRequest, CreateGroupCertificateAuthorityResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { + CreateGroupCertificateAuthorityRequest, + CreateGroupCertificateAuthorityResponse, +} from "../models/models_0"; import { CreateGroupCertificateAuthority } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateGroupCommand.ts b/clients/client-greengrass/src/commands/CreateGroupCommand.ts index 96bf68b979934..21ac773330acd 100644 --- a/clients/client-greengrass/src/commands/CreateGroupCommand.ts +++ b/clients/client-greengrass/src/commands/CreateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; import { CreateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateGroupVersionCommand.ts b/clients/client-greengrass/src/commands/CreateGroupVersionCommand.ts index 7765272c5c059..0532a642335a8 100644 --- a/clients/client-greengrass/src/commands/CreateGroupVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateGroupVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateGroupVersionRequest, CreateGroupVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateGroupVersionRequest, CreateGroupVersionResponse } from "../models/models_0"; import { CreateGroupVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateLoggerDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateLoggerDefinitionCommand.ts index 3d8a08478c493..8e886c7a6a13e 100644 --- a/clients/client-greengrass/src/commands/CreateLoggerDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateLoggerDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateLoggerDefinitionRequest, CreateLoggerDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateLoggerDefinitionRequest, CreateLoggerDefinitionResponse } from "../models/models_0"; import { CreateLoggerDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateLoggerDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateLoggerDefinitionVersionCommand.ts index ffb5e862a14ec..742908bb53a7a 100644 --- a/clients/client-greengrass/src/commands/CreateLoggerDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateLoggerDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateLoggerDefinitionVersionRequest, CreateLoggerDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateLoggerDefinitionVersionRequest, CreateLoggerDefinitionVersionResponse } from "../models/models_0"; import { CreateLoggerDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateResourceDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateResourceDefinitionCommand.ts index e66c9819e9724..d976ece8ec21e 100644 --- a/clients/client-greengrass/src/commands/CreateResourceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateResourceDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateResourceDefinitionRequest, CreateResourceDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateResourceDefinitionRequest, CreateResourceDefinitionResponse } from "../models/models_0"; import { CreateResourceDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateResourceDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateResourceDefinitionVersionCommand.ts index 1aa8cd71c07b5..2930b2ab10a5c 100644 --- a/clients/client-greengrass/src/commands/CreateResourceDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateResourceDefinitionVersionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateResourceDefinitionVersionRequest, CreateResourceDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { + CreateResourceDefinitionVersionRequest, + CreateResourceDefinitionVersionResponse, +} from "../models/models_0"; import { CreateResourceDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateSoftwareUpdateJobCommand.ts b/clients/client-greengrass/src/commands/CreateSoftwareUpdateJobCommand.ts index 14e176d09007c..2ac4bc6487603 100644 --- a/clients/client-greengrass/src/commands/CreateSoftwareUpdateJobCommand.ts +++ b/clients/client-greengrass/src/commands/CreateSoftwareUpdateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateSoftwareUpdateJobRequest, CreateSoftwareUpdateJobResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateSoftwareUpdateJobRequest, CreateSoftwareUpdateJobResponse } from "../models/models_0"; import { CreateSoftwareUpdateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionCommand.ts b/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionCommand.ts index 357727bbd4e43..d29fe70e67fef 100644 --- a/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { CreateSubscriptionDefinitionRequest, CreateSubscriptionDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateSubscriptionDefinitionRequest, CreateSubscriptionDefinitionResponse } from "../models/models_0"; import { CreateSubscriptionDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionVersionCommand.ts index dff40658eeaca..dffaf5e91f8ba 100644 --- a/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/CreateSubscriptionDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { CreateSubscriptionDefinitionVersionRequest, CreateSubscriptionDefinitionVersionResponse, } from "../models/models_0"; diff --git a/clients/client-greengrass/src/commands/DeleteConnectorDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteConnectorDefinitionCommand.ts index 4c668ccc98a6e..06710f45dfaed 100644 --- a/clients/client-greengrass/src/commands/DeleteConnectorDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteConnectorDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { DeleteConnectorDefinitionRequest, DeleteConnectorDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DeleteConnectorDefinitionRequest, DeleteConnectorDefinitionResponse } from "../models/models_0"; import { DeleteConnectorDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/DeleteCoreDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteCoreDefinitionCommand.ts index 032c4379cedcd..e2e649104664f 100644 --- a/clients/client-greengrass/src/commands/DeleteCoreDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteCoreDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { DeleteCoreDefinitionRequest, DeleteCoreDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DeleteCoreDefinitionRequest, DeleteCoreDefinitionResponse } from "../models/models_0"; import { DeleteCoreDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/DeleteDeviceDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteDeviceDefinitionCommand.ts index 64a98317ae824..ad91dc43b677b 100644 --- a/clients/client-greengrass/src/commands/DeleteDeviceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteDeviceDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { DeleteDeviceDefinitionRequest, DeleteDeviceDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DeleteDeviceDefinitionRequest, DeleteDeviceDefinitionResponse } from "../models/models_0"; import { DeleteDeviceDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/DeleteFunctionDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteFunctionDefinitionCommand.ts index a8fc00b4f0dab..a328c3d0f0346 100644 --- a/clients/client-greengrass/src/commands/DeleteFunctionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteFunctionDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { DeleteFunctionDefinitionRequest, DeleteFunctionDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DeleteFunctionDefinitionRequest, DeleteFunctionDefinitionResponse } from "../models/models_0"; import { DeleteFunctionDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/DeleteGroupCommand.ts b/clients/client-greengrass/src/commands/DeleteGroupCommand.ts index 9f8186e064000..470f5204c483a 100644 --- a/clients/client-greengrass/src/commands/DeleteGroupCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; import { DeleteGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/DeleteLoggerDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteLoggerDefinitionCommand.ts index 295de3a76f7f7..8e69cdda29d02 100644 --- a/clients/client-greengrass/src/commands/DeleteLoggerDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteLoggerDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { DeleteLoggerDefinitionRequest, DeleteLoggerDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DeleteLoggerDefinitionRequest, DeleteLoggerDefinitionResponse } from "../models/models_0"; import { DeleteLoggerDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/DeleteResourceDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteResourceDefinitionCommand.ts index a8583f60f76fa..9f23db3aadffc 100644 --- a/clients/client-greengrass/src/commands/DeleteResourceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteResourceDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { DeleteResourceDefinitionRequest, DeleteResourceDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DeleteResourceDefinitionRequest, DeleteResourceDefinitionResponse } from "../models/models_0"; import { DeleteResourceDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/DeleteSubscriptionDefinitionCommand.ts b/clients/client-greengrass/src/commands/DeleteSubscriptionDefinitionCommand.ts index d9264493c45e6..ab8c806613792 100644 --- a/clients/client-greengrass/src/commands/DeleteSubscriptionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/DeleteSubscriptionDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { DeleteSubscriptionDefinitionRequest, DeleteSubscriptionDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DeleteSubscriptionDefinitionRequest, DeleteSubscriptionDefinitionResponse } from "../models/models_0"; import { DeleteSubscriptionDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/DisassociateRoleFromGroupCommand.ts b/clients/client-greengrass/src/commands/DisassociateRoleFromGroupCommand.ts index acea0345f4654..0393285959e96 100644 --- a/clients/client-greengrass/src/commands/DisassociateRoleFromGroupCommand.ts +++ b/clients/client-greengrass/src/commands/DisassociateRoleFromGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { DisassociateRoleFromGroupRequest, DisassociateRoleFromGroupResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DisassociateRoleFromGroupRequest, DisassociateRoleFromGroupResponse } from "../models/models_0"; import { DisassociateRoleFromGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/DisassociateServiceRoleFromAccountCommand.ts b/clients/client-greengrass/src/commands/DisassociateServiceRoleFromAccountCommand.ts index 2de1e17fbe554..afd068a34412c 100644 --- a/clients/client-greengrass/src/commands/DisassociateServiceRoleFromAccountCommand.ts +++ b/clients/client-greengrass/src/commands/DisassociateServiceRoleFromAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { DisassociateServiceRoleFromAccountRequest, DisassociateServiceRoleFromAccountResponse, } from "../models/models_0"; diff --git a/clients/client-greengrass/src/commands/GetAssociatedRoleCommand.ts b/clients/client-greengrass/src/commands/GetAssociatedRoleCommand.ts index 43a3132d3c118..d35a14f25eeeb 100644 --- a/clients/client-greengrass/src/commands/GetAssociatedRoleCommand.ts +++ b/clients/client-greengrass/src/commands/GetAssociatedRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetAssociatedRoleRequest, GetAssociatedRoleResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetAssociatedRoleRequest, GetAssociatedRoleResponse } from "../models/models_0"; import { GetAssociatedRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetBulkDeploymentStatusCommand.ts b/clients/client-greengrass/src/commands/GetBulkDeploymentStatusCommand.ts index 601fd30c59fe4..9a5e9697f267b 100644 --- a/clients/client-greengrass/src/commands/GetBulkDeploymentStatusCommand.ts +++ b/clients/client-greengrass/src/commands/GetBulkDeploymentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetBulkDeploymentStatusRequest, GetBulkDeploymentStatusResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetBulkDeploymentStatusRequest, GetBulkDeploymentStatusResponse } from "../models/models_0"; import { GetBulkDeploymentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetConnectivityInfoCommand.ts b/clients/client-greengrass/src/commands/GetConnectivityInfoCommand.ts index 1bb61b4448a36..823ecc0db59a4 100644 --- a/clients/client-greengrass/src/commands/GetConnectivityInfoCommand.ts +++ b/clients/client-greengrass/src/commands/GetConnectivityInfoCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetConnectivityInfoRequest, GetConnectivityInfoResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetConnectivityInfoRequest, GetConnectivityInfoResponse } from "../models/models_0"; import { GetConnectivityInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetConnectorDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetConnectorDefinitionCommand.ts index 3a90f30f3ef6d..1f6125a3a5bf5 100644 --- a/clients/client-greengrass/src/commands/GetConnectorDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetConnectorDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetConnectorDefinitionRequest, GetConnectorDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetConnectorDefinitionRequest, GetConnectorDefinitionResponse } from "../models/models_0"; import { GetConnectorDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetConnectorDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetConnectorDefinitionVersionCommand.ts index 5f945c683fa71..895debfaed95a 100644 --- a/clients/client-greengrass/src/commands/GetConnectorDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetConnectorDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetConnectorDefinitionVersionRequest, GetConnectorDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetConnectorDefinitionVersionRequest, GetConnectorDefinitionVersionResponse } from "../models/models_0"; import { GetConnectorDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetCoreDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetCoreDefinitionCommand.ts index d0a06c0f9f67f..d36c7b827bec6 100644 --- a/clients/client-greengrass/src/commands/GetCoreDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetCoreDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetCoreDefinitionRequest, GetCoreDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetCoreDefinitionRequest, GetCoreDefinitionResponse } from "../models/models_0"; import { GetCoreDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetCoreDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetCoreDefinitionVersionCommand.ts index cf0315c660890..d9b48ca230242 100644 --- a/clients/client-greengrass/src/commands/GetCoreDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetCoreDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetCoreDefinitionVersionRequest, GetCoreDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetCoreDefinitionVersionRequest, GetCoreDefinitionVersionResponse } from "../models/models_0"; import { GetCoreDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetDeploymentStatusCommand.ts b/clients/client-greengrass/src/commands/GetDeploymentStatusCommand.ts index b9e714d7662b3..cc7c5db48ebd4 100644 --- a/clients/client-greengrass/src/commands/GetDeploymentStatusCommand.ts +++ b/clients/client-greengrass/src/commands/GetDeploymentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetDeploymentStatusRequest, GetDeploymentStatusResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetDeploymentStatusRequest, GetDeploymentStatusResponse } from "../models/models_0"; import { GetDeploymentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetDeviceDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetDeviceDefinitionCommand.ts index 3c8b1c57e9ca7..78d075d2867b6 100644 --- a/clients/client-greengrass/src/commands/GetDeviceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetDeviceDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetDeviceDefinitionRequest, GetDeviceDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetDeviceDefinitionRequest, GetDeviceDefinitionResponse } from "../models/models_0"; import { GetDeviceDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetDeviceDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetDeviceDefinitionVersionCommand.ts index c841132b6354d..28a93f95f7ab3 100644 --- a/clients/client-greengrass/src/commands/GetDeviceDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetDeviceDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetDeviceDefinitionVersionRequest, GetDeviceDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetDeviceDefinitionVersionRequest, GetDeviceDefinitionVersionResponse } from "../models/models_0"; import { GetDeviceDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetFunctionDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetFunctionDefinitionCommand.ts index 88dd6b6574957..f931102e10333 100644 --- a/clients/client-greengrass/src/commands/GetFunctionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetFunctionDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetFunctionDefinitionRequest, GetFunctionDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetFunctionDefinitionRequest, GetFunctionDefinitionResponse } from "../models/models_0"; import { GetFunctionDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetFunctionDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetFunctionDefinitionVersionCommand.ts index 009787fc1e64c..d59d3dc98cf24 100644 --- a/clients/client-greengrass/src/commands/GetFunctionDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetFunctionDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetFunctionDefinitionVersionRequest, GetFunctionDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetFunctionDefinitionVersionRequest, GetFunctionDefinitionVersionResponse } from "../models/models_0"; import { GetFunctionDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetGroupCertificateAuthorityCommand.ts b/clients/client-greengrass/src/commands/GetGroupCertificateAuthorityCommand.ts index 0f1611996c321..255d8cda39735 100644 --- a/clients/client-greengrass/src/commands/GetGroupCertificateAuthorityCommand.ts +++ b/clients/client-greengrass/src/commands/GetGroupCertificateAuthorityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetGroupCertificateAuthorityRequest, GetGroupCertificateAuthorityResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetGroupCertificateAuthorityRequest, GetGroupCertificateAuthorityResponse } from "../models/models_0"; import { GetGroupCertificateAuthority } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetGroupCertificateConfigurationCommand.ts b/clients/client-greengrass/src/commands/GetGroupCertificateConfigurationCommand.ts index 1f6079f682f7c..a484baf31f640 100644 --- a/clients/client-greengrass/src/commands/GetGroupCertificateConfigurationCommand.ts +++ b/clients/client-greengrass/src/commands/GetGroupCertificateConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetGroupCertificateConfigurationRequest, GetGroupCertificateConfigurationResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { + GetGroupCertificateConfigurationRequest, + GetGroupCertificateConfigurationResponse, +} from "../models/models_0"; import { GetGroupCertificateConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetGroupCommand.ts b/clients/client-greengrass/src/commands/GetGroupCommand.ts index 5f37cde005f2b..f7b45d56d4296 100644 --- a/clients/client-greengrass/src/commands/GetGroupCommand.ts +++ b/clients/client-greengrass/src/commands/GetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetGroupRequest, GetGroupResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetGroupRequest, GetGroupResponse } from "../models/models_0"; import { GetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetGroupVersionCommand.ts b/clients/client-greengrass/src/commands/GetGroupVersionCommand.ts index 798f3dcb3eef4..45f2135af8029 100644 --- a/clients/client-greengrass/src/commands/GetGroupVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetGroupVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetGroupVersionRequest, GetGroupVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetGroupVersionRequest, GetGroupVersionResponse } from "../models/models_0"; import { GetGroupVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetLoggerDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetLoggerDefinitionCommand.ts index c0d9c2e88a390..307c304c1f67a 100644 --- a/clients/client-greengrass/src/commands/GetLoggerDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetLoggerDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetLoggerDefinitionRequest, GetLoggerDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetLoggerDefinitionRequest, GetLoggerDefinitionResponse } from "../models/models_0"; import { GetLoggerDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetLoggerDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetLoggerDefinitionVersionCommand.ts index 7f06f9ce55594..19290a5fc1765 100644 --- a/clients/client-greengrass/src/commands/GetLoggerDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetLoggerDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetLoggerDefinitionVersionRequest, GetLoggerDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetLoggerDefinitionVersionRequest, GetLoggerDefinitionVersionResponse } from "../models/models_0"; import { GetLoggerDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetResourceDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetResourceDefinitionCommand.ts index 31cc1b30be6e4..297dab5d570d9 100644 --- a/clients/client-greengrass/src/commands/GetResourceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetResourceDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetResourceDefinitionRequest, GetResourceDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetResourceDefinitionRequest, GetResourceDefinitionResponse } from "../models/models_0"; import { GetResourceDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetResourceDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetResourceDefinitionVersionCommand.ts index 326d9ae423db6..2aa3af8f1532f 100644 --- a/clients/client-greengrass/src/commands/GetResourceDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetResourceDefinitionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetResourceDefinitionVersionRequest, GetResourceDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetResourceDefinitionVersionRequest, GetResourceDefinitionVersionResponse } from "../models/models_0"; import { GetResourceDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetServiceRoleForAccountCommand.ts b/clients/client-greengrass/src/commands/GetServiceRoleForAccountCommand.ts index 50d43ca16e9af..7ded84b4ce7cc 100644 --- a/clients/client-greengrass/src/commands/GetServiceRoleForAccountCommand.ts +++ b/clients/client-greengrass/src/commands/GetServiceRoleForAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetServiceRoleForAccountRequest, GetServiceRoleForAccountResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetServiceRoleForAccountRequest, GetServiceRoleForAccountResponse } from "../models/models_0"; import { GetServiceRoleForAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetSubscriptionDefinitionCommand.ts b/clients/client-greengrass/src/commands/GetSubscriptionDefinitionCommand.ts index 9cf81c397c42a..643c8c21334fa 100644 --- a/clients/client-greengrass/src/commands/GetSubscriptionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/GetSubscriptionDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetSubscriptionDefinitionRequest, GetSubscriptionDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetSubscriptionDefinitionRequest, GetSubscriptionDefinitionResponse } from "../models/models_0"; import { GetSubscriptionDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetSubscriptionDefinitionVersionCommand.ts b/clients/client-greengrass/src/commands/GetSubscriptionDefinitionVersionCommand.ts index 45ba3130f7bed..81337c925c030 100644 --- a/clients/client-greengrass/src/commands/GetSubscriptionDefinitionVersionCommand.ts +++ b/clients/client-greengrass/src/commands/GetSubscriptionDefinitionVersionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetSubscriptionDefinitionVersionRequest, GetSubscriptionDefinitionVersionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { + GetSubscriptionDefinitionVersionRequest, + GetSubscriptionDefinitionVersionResponse, +} from "../models/models_0"; import { GetSubscriptionDefinitionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/GetThingRuntimeConfigurationCommand.ts b/clients/client-greengrass/src/commands/GetThingRuntimeConfigurationCommand.ts index 2a613dc0e5c61..3a89a3fc6b8d5 100644 --- a/clients/client-greengrass/src/commands/GetThingRuntimeConfigurationCommand.ts +++ b/clients/client-greengrass/src/commands/GetThingRuntimeConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { GetThingRuntimeConfigurationRequest, GetThingRuntimeConfigurationResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { GetThingRuntimeConfigurationRequest, GetThingRuntimeConfigurationResponse } from "../models/models_0"; import { GetThingRuntimeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListBulkDeploymentDetailedReportsCommand.ts b/clients/client-greengrass/src/commands/ListBulkDeploymentDetailedReportsCommand.ts index 0787ea95168b7..a5052e8d267de 100644 --- a/clients/client-greengrass/src/commands/ListBulkDeploymentDetailedReportsCommand.ts +++ b/clients/client-greengrass/src/commands/ListBulkDeploymentDetailedReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListBulkDeploymentDetailedReportsRequest, ListBulkDeploymentDetailedReportsResponse, } from "../models/models_0"; diff --git a/clients/client-greengrass/src/commands/ListBulkDeploymentsCommand.ts b/clients/client-greengrass/src/commands/ListBulkDeploymentsCommand.ts index 0a161ca1661e6..83e1daefd2d18 100644 --- a/clients/client-greengrass/src/commands/ListBulkDeploymentsCommand.ts +++ b/clients/client-greengrass/src/commands/ListBulkDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListBulkDeploymentsRequest, ListBulkDeploymentsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListBulkDeploymentsRequest, ListBulkDeploymentsResponse } from "../models/models_0"; import { ListBulkDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListConnectorDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListConnectorDefinitionVersionsCommand.ts index d96c7cc711a23..502bb818d9e6c 100644 --- a/clients/client-greengrass/src/commands/ListConnectorDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListConnectorDefinitionVersionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListConnectorDefinitionVersionsRequest, ListConnectorDefinitionVersionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { + ListConnectorDefinitionVersionsRequest, + ListConnectorDefinitionVersionsResponse, +} from "../models/models_0"; import { ListConnectorDefinitionVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListConnectorDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListConnectorDefinitionsCommand.ts index 8cb8063a0f918..8069a2dfb59b3 100644 --- a/clients/client-greengrass/src/commands/ListConnectorDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListConnectorDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListConnectorDefinitionsRequest, ListConnectorDefinitionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListConnectorDefinitionsRequest, ListConnectorDefinitionsResponse } from "../models/models_0"; import { ListConnectorDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListCoreDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListCoreDefinitionVersionsCommand.ts index e222b979e5641..7f56b3e849b1b 100644 --- a/clients/client-greengrass/src/commands/ListCoreDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListCoreDefinitionVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListCoreDefinitionVersionsRequest, ListCoreDefinitionVersionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListCoreDefinitionVersionsRequest, ListCoreDefinitionVersionsResponse } from "../models/models_0"; import { ListCoreDefinitionVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListCoreDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListCoreDefinitionsCommand.ts index 6500ad9dcefd0..fc5dbfec3feb7 100644 --- a/clients/client-greengrass/src/commands/ListCoreDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListCoreDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListCoreDefinitionsRequest, ListCoreDefinitionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListCoreDefinitionsRequest, ListCoreDefinitionsResponse } from "../models/models_0"; import { ListCoreDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListDeploymentsCommand.ts b/clients/client-greengrass/src/commands/ListDeploymentsCommand.ts index 757fa8cc7e0f6..eccb6caf4315b 100644 --- a/clients/client-greengrass/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-greengrass/src/commands/ListDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListDeploymentsRequest, ListDeploymentsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListDeploymentsRequest, ListDeploymentsResponse } from "../models/models_0"; import { ListDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListDeviceDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListDeviceDefinitionVersionsCommand.ts index e03e488af6ea8..79507f88662eb 100644 --- a/clients/client-greengrass/src/commands/ListDeviceDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListDeviceDefinitionVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListDeviceDefinitionVersionsRequest, ListDeviceDefinitionVersionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListDeviceDefinitionVersionsRequest, ListDeviceDefinitionVersionsResponse } from "../models/models_0"; import { ListDeviceDefinitionVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListDeviceDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListDeviceDefinitionsCommand.ts index 3818066ae0b84..2cc91ffe4eb29 100644 --- a/clients/client-greengrass/src/commands/ListDeviceDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListDeviceDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListDeviceDefinitionsRequest, ListDeviceDefinitionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListDeviceDefinitionsRequest, ListDeviceDefinitionsResponse } from "../models/models_0"; import { ListDeviceDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListFunctionDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListFunctionDefinitionVersionsCommand.ts index 299f58efbac47..1f78e20782816 100644 --- a/clients/client-greengrass/src/commands/ListFunctionDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListFunctionDefinitionVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListFunctionDefinitionVersionsRequest, ListFunctionDefinitionVersionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListFunctionDefinitionVersionsRequest, ListFunctionDefinitionVersionsResponse } from "../models/models_0"; import { ListFunctionDefinitionVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListFunctionDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListFunctionDefinitionsCommand.ts index e59eb35d5f3d8..c7d06a9ae3a35 100644 --- a/clients/client-greengrass/src/commands/ListFunctionDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListFunctionDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListFunctionDefinitionsRequest, ListFunctionDefinitionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListFunctionDefinitionsRequest, ListFunctionDefinitionsResponse } from "../models/models_0"; import { ListFunctionDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListGroupCertificateAuthoritiesCommand.ts b/clients/client-greengrass/src/commands/ListGroupCertificateAuthoritiesCommand.ts index da24bbd6150df..4afb7fe8bb696 100644 --- a/clients/client-greengrass/src/commands/ListGroupCertificateAuthoritiesCommand.ts +++ b/clients/client-greengrass/src/commands/ListGroupCertificateAuthoritiesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListGroupCertificateAuthoritiesRequest, ListGroupCertificateAuthoritiesResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { + ListGroupCertificateAuthoritiesRequest, + ListGroupCertificateAuthoritiesResponse, +} from "../models/models_0"; import { ListGroupCertificateAuthorities } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListGroupVersionsCommand.ts b/clients/client-greengrass/src/commands/ListGroupVersionsCommand.ts index 5ba580023552b..6014408c035c2 100644 --- a/clients/client-greengrass/src/commands/ListGroupVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListGroupVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListGroupVersionsRequest, ListGroupVersionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListGroupVersionsRequest, ListGroupVersionsResponse } from "../models/models_0"; import { ListGroupVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListGroupsCommand.ts b/clients/client-greengrass/src/commands/ListGroupsCommand.ts index 2347621ad964e..fb5c9e99fadd9 100644 --- a/clients/client-greengrass/src/commands/ListGroupsCommand.ts +++ b/clients/client-greengrass/src/commands/ListGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; import { ListGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListLoggerDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListLoggerDefinitionVersionsCommand.ts index c51de8954132e..03d393fdb055d 100644 --- a/clients/client-greengrass/src/commands/ListLoggerDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListLoggerDefinitionVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListLoggerDefinitionVersionsRequest, ListLoggerDefinitionVersionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListLoggerDefinitionVersionsRequest, ListLoggerDefinitionVersionsResponse } from "../models/models_0"; import { ListLoggerDefinitionVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListLoggerDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListLoggerDefinitionsCommand.ts index b06b00ba2e797..f00dce3a58a4a 100644 --- a/clients/client-greengrass/src/commands/ListLoggerDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListLoggerDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListLoggerDefinitionsRequest, ListLoggerDefinitionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListLoggerDefinitionsRequest, ListLoggerDefinitionsResponse } from "../models/models_0"; import { ListLoggerDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListResourceDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListResourceDefinitionVersionsCommand.ts index 4282d58fb55bb..28ea354deb611 100644 --- a/clients/client-greengrass/src/commands/ListResourceDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListResourceDefinitionVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListResourceDefinitionVersionsRequest, ListResourceDefinitionVersionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListResourceDefinitionVersionsRequest, ListResourceDefinitionVersionsResponse } from "../models/models_0"; import { ListResourceDefinitionVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListResourceDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListResourceDefinitionsCommand.ts index 21b572c2e8124..67022b1fb83b7 100644 --- a/clients/client-greengrass/src/commands/ListResourceDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListResourceDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListResourceDefinitionsRequest, ListResourceDefinitionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListResourceDefinitionsRequest, ListResourceDefinitionsResponse } from "../models/models_0"; import { ListResourceDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListSubscriptionDefinitionVersionsCommand.ts b/clients/client-greengrass/src/commands/ListSubscriptionDefinitionVersionsCommand.ts index 66a45d36f4949..eb041cbd7a6c8 100644 --- a/clients/client-greengrass/src/commands/ListSubscriptionDefinitionVersionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListSubscriptionDefinitionVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListSubscriptionDefinitionVersionsRequest, ListSubscriptionDefinitionVersionsResponse, } from "../models/models_0"; diff --git a/clients/client-greengrass/src/commands/ListSubscriptionDefinitionsCommand.ts b/clients/client-greengrass/src/commands/ListSubscriptionDefinitionsCommand.ts index 119f8bc6cf806..9a8ec250234a5 100644 --- a/clients/client-greengrass/src/commands/ListSubscriptionDefinitionsCommand.ts +++ b/clients/client-greengrass/src/commands/ListSubscriptionDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListSubscriptionDefinitionsRequest, ListSubscriptionDefinitionsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListSubscriptionDefinitionsRequest, ListSubscriptionDefinitionsResponse } from "../models/models_0"; import { ListSubscriptionDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ListTagsForResourceCommand.ts b/clients/client-greengrass/src/commands/ListTagsForResourceCommand.ts index e25e0309d6159..3f7f1dd9eea9e 100644 --- a/clients/client-greengrass/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-greengrass/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/ResetDeploymentsCommand.ts b/clients/client-greengrass/src/commands/ResetDeploymentsCommand.ts index 3ead3b372ddf0..64924cff12f34 100644 --- a/clients/client-greengrass/src/commands/ResetDeploymentsCommand.ts +++ b/clients/client-greengrass/src/commands/ResetDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { ResetDeploymentsRequest, ResetDeploymentsResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { ResetDeploymentsRequest, ResetDeploymentsResponse } from "../models/models_0"; import { ResetDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/StartBulkDeploymentCommand.ts b/clients/client-greengrass/src/commands/StartBulkDeploymentCommand.ts index c6a7d64b804a5..9775806ce4a79 100644 --- a/clients/client-greengrass/src/commands/StartBulkDeploymentCommand.ts +++ b/clients/client-greengrass/src/commands/StartBulkDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { StartBulkDeploymentRequest, StartBulkDeploymentResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { StartBulkDeploymentRequest, StartBulkDeploymentResponse } from "../models/models_0"; import { StartBulkDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/StopBulkDeploymentCommand.ts b/clients/client-greengrass/src/commands/StopBulkDeploymentCommand.ts index 20c49a8d9368e..95c1659f8cdc8 100644 --- a/clients/client-greengrass/src/commands/StopBulkDeploymentCommand.ts +++ b/clients/client-greengrass/src/commands/StopBulkDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { StopBulkDeploymentRequest, StopBulkDeploymentResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { StopBulkDeploymentRequest, StopBulkDeploymentResponse } from "../models/models_0"; import { StopBulkDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/TagResourceCommand.ts b/clients/client-greengrass/src/commands/TagResourceCommand.ts index da1d7e2bedd81..44d72c8f143c6 100644 --- a/clients/client-greengrass/src/commands/TagResourceCommand.ts +++ b/clients/client-greengrass/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { TagResourceRequest } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UntagResourceCommand.ts b/clients/client-greengrass/src/commands/UntagResourceCommand.ts index 22f0c7e694b28..4130644549cf3 100644 --- a/clients/client-greengrass/src/commands/UntagResourceCommand.ts +++ b/clients/client-greengrass/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UntagResourceRequest } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateConnectivityInfoCommand.ts b/clients/client-greengrass/src/commands/UpdateConnectivityInfoCommand.ts index 1389f236c5752..21877261979b3 100644 --- a/clients/client-greengrass/src/commands/UpdateConnectivityInfoCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateConnectivityInfoCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateConnectivityInfoRequest, UpdateConnectivityInfoResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateConnectivityInfoRequest, UpdateConnectivityInfoResponse } from "../models/models_0"; import { UpdateConnectivityInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateConnectorDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateConnectorDefinitionCommand.ts index 14abb923d1d9b..0bf9bbf8cb2aa 100644 --- a/clients/client-greengrass/src/commands/UpdateConnectorDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateConnectorDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateConnectorDefinitionRequest, UpdateConnectorDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateConnectorDefinitionRequest, UpdateConnectorDefinitionResponse } from "../models/models_0"; import { UpdateConnectorDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateCoreDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateCoreDefinitionCommand.ts index 8feaf458384e0..c207a6550a3c8 100644 --- a/clients/client-greengrass/src/commands/UpdateCoreDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateCoreDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateCoreDefinitionRequest, UpdateCoreDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateCoreDefinitionRequest, UpdateCoreDefinitionResponse } from "../models/models_0"; import { UpdateCoreDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateDeviceDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateDeviceDefinitionCommand.ts index c739557911a2f..52d03926920ab 100644 --- a/clients/client-greengrass/src/commands/UpdateDeviceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateDeviceDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateDeviceDefinitionRequest, UpdateDeviceDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateDeviceDefinitionRequest, UpdateDeviceDefinitionResponse } from "../models/models_0"; import { UpdateDeviceDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateFunctionDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateFunctionDefinitionCommand.ts index 51218a40386e6..85b62dfd035fa 100644 --- a/clients/client-greengrass/src/commands/UpdateFunctionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateFunctionDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateFunctionDefinitionRequest, UpdateFunctionDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateFunctionDefinitionRequest, UpdateFunctionDefinitionResponse } from "../models/models_0"; import { UpdateFunctionDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateGroupCertificateConfigurationCommand.ts b/clients/client-greengrass/src/commands/UpdateGroupCertificateConfigurationCommand.ts index 221ba7925c3e2..d17fb5fc6e618 100644 --- a/clients/client-greengrass/src/commands/UpdateGroupCertificateConfigurationCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateGroupCertificateConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateGroupCertificateConfigurationRequest, UpdateGroupCertificateConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-greengrass/src/commands/UpdateGroupCommand.ts b/clients/client-greengrass/src/commands/UpdateGroupCommand.ts index 4ab8f5593c047..e7c8c4c50f989 100644 --- a/clients/client-greengrass/src/commands/UpdateGroupCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0"; import { UpdateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateLoggerDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateLoggerDefinitionCommand.ts index 22ddc4d3e8451..6dbec5a5dfd12 100644 --- a/clients/client-greengrass/src/commands/UpdateLoggerDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateLoggerDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateLoggerDefinitionRequest, UpdateLoggerDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateLoggerDefinitionRequest, UpdateLoggerDefinitionResponse } from "../models/models_0"; import { UpdateLoggerDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateResourceDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateResourceDefinitionCommand.ts index 9c609e8100c7b..f15f1a66e4984 100644 --- a/clients/client-greengrass/src/commands/UpdateResourceDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateResourceDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateResourceDefinitionRequest, UpdateResourceDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateResourceDefinitionRequest, UpdateResourceDefinitionResponse } from "../models/models_0"; import { UpdateResourceDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateSubscriptionDefinitionCommand.ts b/clients/client-greengrass/src/commands/UpdateSubscriptionDefinitionCommand.ts index 2912a279a9b18..3c8a94b49161f 100644 --- a/clients/client-greengrass/src/commands/UpdateSubscriptionDefinitionCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateSubscriptionDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateSubscriptionDefinitionRequest, UpdateSubscriptionDefinitionResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { UpdateSubscriptionDefinitionRequest, UpdateSubscriptionDefinitionResponse } from "../models/models_0"; import { UpdateSubscriptionDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/commands/UpdateThingRuntimeConfigurationCommand.ts b/clients/client-greengrass/src/commands/UpdateThingRuntimeConfigurationCommand.ts index f600211bf9a7e..bcfee475c1bb6 100644 --- a/clients/client-greengrass/src/commands/UpdateThingRuntimeConfigurationCommand.ts +++ b/clients/client-greengrass/src/commands/UpdateThingRuntimeConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; -import { UpdateThingRuntimeConfigurationRequest, UpdateThingRuntimeConfigurationResponse } from "../models/models_0"; +import type { GreengrassClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassClient"; +import type { + UpdateThingRuntimeConfigurationRequest, + UpdateThingRuntimeConfigurationResponse, +} from "../models/models_0"; import { UpdateThingRuntimeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrass/src/endpoint/EndpointParameters.ts b/clients/client-greengrass/src/endpoint/EndpointParameters.ts index 1b34585e1c746..b2721f012e5a1 100644 --- a/clients/client-greengrass/src/endpoint/EndpointParameters.ts +++ b/clients/client-greengrass/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-greengrass/src/endpoint/endpointResolver.ts b/clients/client-greengrass/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-greengrass/src/endpoint/endpointResolver.ts +++ b/clients/client-greengrass/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-greengrass/src/extensionConfiguration.ts b/clients/client-greengrass/src/extensionConfiguration.ts index 47fae23408d8a..9bf2dde7011ca 100644 --- a/clients/client-greengrass/src/extensionConfiguration.ts +++ b/clients/client-greengrass/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-greengrass/src/models/GreengrassServiceException.ts b/clients/client-greengrass/src/models/GreengrassServiceException.ts index 5cb72ecca1c49..a9088ad46e8e2 100644 --- a/clients/client-greengrass/src/models/GreengrassServiceException.ts +++ b/clients/client-greengrass/src/models/GreengrassServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-greengrass/src/models/errors.ts b/clients/client-greengrass/src/models/errors.ts index e87f68015341a..67679d86e9ad4 100644 --- a/clients/client-greengrass/src/models/errors.ts +++ b/clients/client-greengrass/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { GreengrassServiceException as __BaseException } from "./GreengrassServiceException"; import { ErrorDetail } from "./models_0"; diff --git a/clients/client-greengrass/src/runtimeConfig.browser.ts b/clients/client-greengrass/src/runtimeConfig.browser.ts index fe6336c9f05a4..5594bf822451c 100644 --- a/clients/client-greengrass/src/runtimeConfig.browser.ts +++ b/clients/client-greengrass/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GreengrassClientConfig } from "./GreengrassClient"; + +import type { GreengrassClientConfig } from "./GreengrassClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-greengrass/src/runtimeConfig.native.ts b/clients/client-greengrass/src/runtimeConfig.native.ts index 44afb90a6d5cc..47f06ec7d16de 100644 --- a/clients/client-greengrass/src/runtimeConfig.native.ts +++ b/clients/client-greengrass/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GreengrassClientConfig } from "./GreengrassClient"; +import type { GreengrassClientConfig } from "./GreengrassClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-greengrass/src/runtimeConfig.shared.ts b/clients/client-greengrass/src/runtimeConfig.shared.ts index 85b853b4002f4..c670ee34e9d40 100644 --- a/clients/client-greengrass/src/runtimeConfig.shared.ts +++ b/clients/client-greengrass/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGreengrassHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GreengrassClientConfig } from "./GreengrassClient"; +import type { GreengrassClientConfig } from "./GreengrassClient"; /** * @internal diff --git a/clients/client-greengrass/src/runtimeConfig.ts b/clients/client-greengrass/src/runtimeConfig.ts index b9f990e81b74e..caed986be3434 100644 --- a/clients/client-greengrass/src/runtimeConfig.ts +++ b/clients/client-greengrass/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GreengrassClientConfig } from "./GreengrassClient"; + +import type { GreengrassClientConfig } from "./GreengrassClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-greengrass/src/runtimeExtensions.ts b/clients/client-greengrass/src/runtimeExtensions.ts index dd9ff89ea9233..abeb0b2cc205f 100644 --- a/clients/client-greengrass/src/runtimeExtensions.ts +++ b/clients/client-greengrass/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GreengrassExtensionConfiguration } from "./extensionConfiguration"; +import type { GreengrassExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-greengrass/src/schemas/schemas_0.ts b/clients/client-greengrass/src/schemas/schemas_0.ts index cfbd6ff052e45..5af113dcb0787 100644 --- a/clients/client-greengrass/src/schemas/schemas_0.ts +++ b/clients/client-greengrass/src/schemas/schemas_0.ts @@ -487,7 +487,7 @@ const n0 = "com.amazonaws.greengrass"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-greengrassv2/package.json b/clients/client-greengrassv2/package.json index d20bfc3dbd68a..21b9831a6ce4f 100644 --- a/clients/client-greengrassv2/package.json +++ b/clients/client-greengrassv2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-greengrassv2/src/GreengrassV2.ts b/clients/client-greengrassv2/src/GreengrassV2.ts index b1b22fd428f5e..bc0f9dfda32f4 100644 --- a/clients/client-greengrassv2/src/GreengrassV2.ts +++ b/clients/client-greengrassv2/src/GreengrassV2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateServiceRoleToAccountCommand, @@ -143,7 +143,7 @@ import { UpdateConnectivityInfoCommandInput, UpdateConnectivityInfoCommandOutput, } from "./commands/UpdateConnectivityInfoCommand"; -import { GreengrassV2Client, GreengrassV2ClientConfig } from "./GreengrassV2Client"; +import { GreengrassV2Client } from "./GreengrassV2Client"; const commands = { AssociateServiceRoleToAccountCommand, diff --git a/clients/client-greengrassv2/src/GreengrassV2Client.ts b/clients/client-greengrassv2/src/GreengrassV2Client.ts index c48bed5180deb..739f3282c8fff 100644 --- a/clients/client-greengrassv2/src/GreengrassV2Client.ts +++ b/clients/client-greengrassv2/src/GreengrassV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGreengrassV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -138,7 +147,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-greengrassv2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-greengrassv2/src/auth/httpAuthExtensionConfiguration.ts index d8e9f0a59f861..0278822fea1d6 100644 --- a/clients/client-greengrassv2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-greengrassv2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GreengrassV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GreengrassV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-greengrassv2/src/auth/httpAuthSchemeProvider.ts b/clients/client-greengrassv2/src/auth/httpAuthSchemeProvider.ts index 52d07dd8e5374..fea685acef782 100644 --- a/clients/client-greengrassv2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-greengrassv2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GreengrassV2ClientConfig, GreengrassV2ClientResolvedConfig } from "../GreengrassV2Client"; +import { type GreengrassV2ClientResolvedConfig, GreengrassV2ClientConfig } from "../GreengrassV2Client"; /** * @internal diff --git a/clients/client-greengrassv2/src/commands/AssociateServiceRoleToAccountCommand.ts b/clients/client-greengrassv2/src/commands/AssociateServiceRoleToAccountCommand.ts index 481f9638c0872..7be743c870d38 100644 --- a/clients/client-greengrassv2/src/commands/AssociateServiceRoleToAccountCommand.ts +++ b/clients/client-greengrassv2/src/commands/AssociateServiceRoleToAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { AssociateServiceRoleToAccountRequest, AssociateServiceRoleToAccountResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { AssociateServiceRoleToAccountRequest, AssociateServiceRoleToAccountResponse } from "../models/models_0"; import { AssociateServiceRoleToAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.ts index 41cad59052ca3..ca690a00cfb0c 100644 --- a/clients/client-greengrassv2/src/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { BatchAssociateClientDeviceWithCoreDeviceRequest, BatchAssociateClientDeviceWithCoreDeviceResponse, } from "../models/models_0"; diff --git a/clients/client-greengrassv2/src/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.ts index a483c65392112..12a855d03ab1c 100644 --- a/clients/client-greengrassv2/src/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { BatchDisassociateClientDeviceFromCoreDeviceRequest, BatchDisassociateClientDeviceFromCoreDeviceResponse, } from "../models/models_0"; diff --git a/clients/client-greengrassv2/src/commands/CancelDeploymentCommand.ts b/clients/client-greengrassv2/src/commands/CancelDeploymentCommand.ts index 284021bb5f372..17c1f1a418720 100644 --- a/clients/client-greengrassv2/src/commands/CancelDeploymentCommand.ts +++ b/clients/client-greengrassv2/src/commands/CancelDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { CancelDeploymentRequest, CancelDeploymentResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { CancelDeploymentRequest, CancelDeploymentResponse } from "../models/models_0"; import { CancelDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/CreateComponentVersionCommand.ts b/clients/client-greengrassv2/src/commands/CreateComponentVersionCommand.ts index 6fcc274d9294e..4e7920103e01b 100644 --- a/clients/client-greengrassv2/src/commands/CreateComponentVersionCommand.ts +++ b/clients/client-greengrassv2/src/commands/CreateComponentVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { CreateComponentVersionRequest, CreateComponentVersionResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { CreateComponentVersionRequest, CreateComponentVersionResponse } from "../models/models_0"; import { CreateComponentVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/CreateDeploymentCommand.ts b/clients/client-greengrassv2/src/commands/CreateDeploymentCommand.ts index fd054b6a1cc01..5c141e42af0d1 100644 --- a/clients/client-greengrassv2/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-greengrassv2/src/commands/CreateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0"; import { CreateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/DeleteComponentCommand.ts b/clients/client-greengrassv2/src/commands/DeleteComponentCommand.ts index 2380c731b6095..488ad1013ff60 100644 --- a/clients/client-greengrassv2/src/commands/DeleteComponentCommand.ts +++ b/clients/client-greengrassv2/src/commands/DeleteComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { DeleteComponentRequest } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { DeleteComponentRequest } from "../models/models_0"; import { DeleteComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/DeleteCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/DeleteCoreDeviceCommand.ts index 027314e45b41e..dd81ae9ac3ff3 100644 --- a/clients/client-greengrassv2/src/commands/DeleteCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/DeleteCoreDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { DeleteCoreDeviceRequest } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { DeleteCoreDeviceRequest } from "../models/models_0"; import { DeleteCoreDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/DeleteDeploymentCommand.ts b/clients/client-greengrassv2/src/commands/DeleteDeploymentCommand.ts index 2bbd25e8c9927..a9ec1e38a88fa 100644 --- a/clients/client-greengrassv2/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-greengrassv2/src/commands/DeleteDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { DeleteDeploymentRequest } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { DeleteDeploymentRequest } from "../models/models_0"; import { DeleteDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/DescribeComponentCommand.ts b/clients/client-greengrassv2/src/commands/DescribeComponentCommand.ts index 10738c63f6963..98f65b4905b57 100644 --- a/clients/client-greengrassv2/src/commands/DescribeComponentCommand.ts +++ b/clients/client-greengrassv2/src/commands/DescribeComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { DescribeComponentRequest, DescribeComponentResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { DescribeComponentRequest, DescribeComponentResponse } from "../models/models_0"; import { DescribeComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/DisassociateServiceRoleFromAccountCommand.ts b/clients/client-greengrassv2/src/commands/DisassociateServiceRoleFromAccountCommand.ts index 382c475b5e51c..0ed36f10a1218 100644 --- a/clients/client-greengrassv2/src/commands/DisassociateServiceRoleFromAccountCommand.ts +++ b/clients/client-greengrassv2/src/commands/DisassociateServiceRoleFromAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { DisassociateServiceRoleFromAccountRequest, DisassociateServiceRoleFromAccountResponse, } from "../models/models_0"; diff --git a/clients/client-greengrassv2/src/commands/GetComponentCommand.ts b/clients/client-greengrassv2/src/commands/GetComponentCommand.ts index 993403d271150..d19a21385931c 100644 --- a/clients/client-greengrassv2/src/commands/GetComponentCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { GetComponentRequest, GetComponentResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { GetComponentRequest, GetComponentResponse } from "../models/models_0"; import { GetComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/GetComponentVersionArtifactCommand.ts b/clients/client-greengrassv2/src/commands/GetComponentVersionArtifactCommand.ts index 6f0d66579858c..0cd35d5cb74a5 100644 --- a/clients/client-greengrassv2/src/commands/GetComponentVersionArtifactCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetComponentVersionArtifactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { GetComponentVersionArtifactRequest, GetComponentVersionArtifactResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { GetComponentVersionArtifactRequest, GetComponentVersionArtifactResponse } from "../models/models_0"; import { GetComponentVersionArtifact } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/GetConnectivityInfoCommand.ts b/clients/client-greengrassv2/src/commands/GetConnectivityInfoCommand.ts index c9dfeb8af1f08..1cb650ed4dcaa 100644 --- a/clients/client-greengrassv2/src/commands/GetConnectivityInfoCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetConnectivityInfoCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { GetConnectivityInfoRequest, GetConnectivityInfoResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { GetConnectivityInfoRequest, GetConnectivityInfoResponse } from "../models/models_0"; import { GetConnectivityInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/GetCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/GetCoreDeviceCommand.ts index d9dbba3be132a..7652619fcf464 100644 --- a/clients/client-greengrassv2/src/commands/GetCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetCoreDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { GetCoreDeviceRequest, GetCoreDeviceResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { GetCoreDeviceRequest, GetCoreDeviceResponse } from "../models/models_0"; import { GetCoreDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/GetDeploymentCommand.ts b/clients/client-greengrassv2/src/commands/GetDeploymentCommand.ts index 66c9d4e056753..e4fda6f2b9508 100644 --- a/clients/client-greengrassv2/src/commands/GetDeploymentCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { GetDeploymentRequest, GetDeploymentResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { GetDeploymentRequest, GetDeploymentResponse } from "../models/models_0"; import { GetDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/GetServiceRoleForAccountCommand.ts b/clients/client-greengrassv2/src/commands/GetServiceRoleForAccountCommand.ts index 10214bb71a64c..12690867b8e05 100644 --- a/clients/client-greengrassv2/src/commands/GetServiceRoleForAccountCommand.ts +++ b/clients/client-greengrassv2/src/commands/GetServiceRoleForAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { GetServiceRoleForAccountRequest, GetServiceRoleForAccountResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { GetServiceRoleForAccountRequest, GetServiceRoleForAccountResponse } from "../models/models_0"; import { GetServiceRoleForAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.ts b/clients/client-greengrassv2/src/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.ts index a43a9c6d7b048..f5c6e7526b628 100644 --- a/clients/client-greengrassv2/src/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { ListClientDevicesAssociatedWithCoreDeviceRequest, ListClientDevicesAssociatedWithCoreDeviceResponse, } from "../models/models_0"; diff --git a/clients/client-greengrassv2/src/commands/ListComponentVersionsCommand.ts b/clients/client-greengrassv2/src/commands/ListComponentVersionsCommand.ts index 8ee1694813fc3..698b322bc11ff 100644 --- a/clients/client-greengrassv2/src/commands/ListComponentVersionsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListComponentVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { ListComponentVersionsRequest, ListComponentVersionsResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { ListComponentVersionsRequest, ListComponentVersionsResponse } from "../models/models_0"; import { ListComponentVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/ListComponentsCommand.ts b/clients/client-greengrassv2/src/commands/ListComponentsCommand.ts index 4dcb77ef220e0..7499c5fc55125 100644 --- a/clients/client-greengrassv2/src/commands/ListComponentsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListComponentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; import { ListComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/ListCoreDevicesCommand.ts b/clients/client-greengrassv2/src/commands/ListCoreDevicesCommand.ts index 1521bc7605446..fe6557581a7b3 100644 --- a/clients/client-greengrassv2/src/commands/ListCoreDevicesCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListCoreDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { ListCoreDevicesRequest, ListCoreDevicesResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { ListCoreDevicesRequest, ListCoreDevicesResponse } from "../models/models_0"; import { ListCoreDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/ListDeploymentsCommand.ts b/clients/client-greengrassv2/src/commands/ListDeploymentsCommand.ts index f712560b2672a..59133c57eecda 100644 --- a/clients/client-greengrassv2/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { ListDeploymentsRequest, ListDeploymentsResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { ListDeploymentsRequest, ListDeploymentsResponse } from "../models/models_0"; import { ListDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/ListEffectiveDeploymentsCommand.ts b/clients/client-greengrassv2/src/commands/ListEffectiveDeploymentsCommand.ts index 65a297ec6d238..317e6871556b1 100644 --- a/clients/client-greengrassv2/src/commands/ListEffectiveDeploymentsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListEffectiveDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { ListEffectiveDeploymentsRequest, ListEffectiveDeploymentsResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { ListEffectiveDeploymentsRequest, ListEffectiveDeploymentsResponse } from "../models/models_0"; import { ListEffectiveDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/ListInstalledComponentsCommand.ts b/clients/client-greengrassv2/src/commands/ListInstalledComponentsCommand.ts index bff889dabe27b..bd3be4a0b8e3e 100644 --- a/clients/client-greengrassv2/src/commands/ListInstalledComponentsCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListInstalledComponentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { ListInstalledComponentsRequest, ListInstalledComponentsResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { ListInstalledComponentsRequest, ListInstalledComponentsResponse } from "../models/models_0"; import { ListInstalledComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/ListTagsForResourceCommand.ts b/clients/client-greengrassv2/src/commands/ListTagsForResourceCommand.ts index 50ffcd976975d..a9ca625849dcd 100644 --- a/clients/client-greengrassv2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-greengrassv2/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/ResolveComponentCandidatesCommand.ts b/clients/client-greengrassv2/src/commands/ResolveComponentCandidatesCommand.ts index b76dfc587b7db..72be04d662a2b 100644 --- a/clients/client-greengrassv2/src/commands/ResolveComponentCandidatesCommand.ts +++ b/clients/client-greengrassv2/src/commands/ResolveComponentCandidatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { ResolveComponentCandidatesRequest, ResolveComponentCandidatesResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { ResolveComponentCandidatesRequest, ResolveComponentCandidatesResponse } from "../models/models_0"; import { ResolveComponentCandidates } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/TagResourceCommand.ts b/clients/client-greengrassv2/src/commands/TagResourceCommand.ts index 20c043d6ac63f..3d68d4aa2a7e2 100644 --- a/clients/client-greengrassv2/src/commands/TagResourceCommand.ts +++ b/clients/client-greengrassv2/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/UntagResourceCommand.ts b/clients/client-greengrassv2/src/commands/UntagResourceCommand.ts index 776039d4ae684..b46b71c89fe03 100644 --- a/clients/client-greengrassv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-greengrassv2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/commands/UpdateConnectivityInfoCommand.ts b/clients/client-greengrassv2/src/commands/UpdateConnectivityInfoCommand.ts index 9e022ad0c19a8..82432c8b8e677 100644 --- a/clients/client-greengrassv2/src/commands/UpdateConnectivityInfoCommand.ts +++ b/clients/client-greengrassv2/src/commands/UpdateConnectivityInfoCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; -import { UpdateConnectivityInfoRequest, UpdateConnectivityInfoResponse } from "../models/models_0"; +import type { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client"; +import type { UpdateConnectivityInfoRequest, UpdateConnectivityInfoResponse } from "../models/models_0"; import { UpdateConnectivityInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-greengrassv2/src/endpoint/EndpointParameters.ts b/clients/client-greengrassv2/src/endpoint/EndpointParameters.ts index 1b34585e1c746..b2721f012e5a1 100644 --- a/clients/client-greengrassv2/src/endpoint/EndpointParameters.ts +++ b/clients/client-greengrassv2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-greengrassv2/src/endpoint/endpointResolver.ts b/clients/client-greengrassv2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-greengrassv2/src/endpoint/endpointResolver.ts +++ b/clients/client-greengrassv2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-greengrassv2/src/extensionConfiguration.ts b/clients/client-greengrassv2/src/extensionConfiguration.ts index 63a5da10df122..607913de18af8 100644 --- a/clients/client-greengrassv2/src/extensionConfiguration.ts +++ b/clients/client-greengrassv2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-greengrassv2/src/models/GreengrassV2ServiceException.ts b/clients/client-greengrassv2/src/models/GreengrassV2ServiceException.ts index 1b2a754af403d..910df8fe752d9 100644 --- a/clients/client-greengrassv2/src/models/GreengrassV2ServiceException.ts +++ b/clients/client-greengrassv2/src/models/GreengrassV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-greengrassv2/src/models/errors.ts b/clients/client-greengrassv2/src/models/errors.ts index 4a2e01921d27d..41f78e0911b68 100644 --- a/clients/client-greengrassv2/src/models/errors.ts +++ b/clients/client-greengrassv2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { GreengrassV2ServiceException as __BaseException } from "./GreengrassV2ServiceException"; diff --git a/clients/client-greengrassv2/src/pagination/Interfaces.ts b/clients/client-greengrassv2/src/pagination/Interfaces.ts index 93e545a15e07f..114525f26373e 100644 --- a/clients/client-greengrassv2/src/pagination/Interfaces.ts +++ b/clients/client-greengrassv2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { GreengrassV2Client } from "../GreengrassV2Client"; diff --git a/clients/client-greengrassv2/src/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.ts b/clients/client-greengrassv2/src/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.ts index 7e6bec894dfd8..16718b1f6e2e6 100644 --- a/clients/client-greengrassv2/src/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.ts +++ b/clients/client-greengrassv2/src/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClientDevicesAssociatedWithCoreDeviceCommand, diff --git a/clients/client-greengrassv2/src/pagination/ListComponentVersionsPaginator.ts b/clients/client-greengrassv2/src/pagination/ListComponentVersionsPaginator.ts index 1e05985153ddb..c4d0942fe3b75 100644 --- a/clients/client-greengrassv2/src/pagination/ListComponentVersionsPaginator.ts +++ b/clients/client-greengrassv2/src/pagination/ListComponentVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentVersionsCommand, diff --git a/clients/client-greengrassv2/src/pagination/ListComponentsPaginator.ts b/clients/client-greengrassv2/src/pagination/ListComponentsPaginator.ts index 84658473af294..9cc31f0bdbb7b 100644 --- a/clients/client-greengrassv2/src/pagination/ListComponentsPaginator.ts +++ b/clients/client-greengrassv2/src/pagination/ListComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentsCommand, diff --git a/clients/client-greengrassv2/src/pagination/ListCoreDevicesPaginator.ts b/clients/client-greengrassv2/src/pagination/ListCoreDevicesPaginator.ts index 99c2889284a92..41c5e69e87c87 100644 --- a/clients/client-greengrassv2/src/pagination/ListCoreDevicesPaginator.ts +++ b/clients/client-greengrassv2/src/pagination/ListCoreDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCoreDevicesCommand, diff --git a/clients/client-greengrassv2/src/pagination/ListDeploymentsPaginator.ts b/clients/client-greengrassv2/src/pagination/ListDeploymentsPaginator.ts index 9d0eadab6a8e3..9c997399d7b76 100644 --- a/clients/client-greengrassv2/src/pagination/ListDeploymentsPaginator.ts +++ b/clients/client-greengrassv2/src/pagination/ListDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeploymentsCommand, diff --git a/clients/client-greengrassv2/src/pagination/ListEffectiveDeploymentsPaginator.ts b/clients/client-greengrassv2/src/pagination/ListEffectiveDeploymentsPaginator.ts index b455f1734da34..12629c2dea839 100644 --- a/clients/client-greengrassv2/src/pagination/ListEffectiveDeploymentsPaginator.ts +++ b/clients/client-greengrassv2/src/pagination/ListEffectiveDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEffectiveDeploymentsCommand, diff --git a/clients/client-greengrassv2/src/pagination/ListInstalledComponentsPaginator.ts b/clients/client-greengrassv2/src/pagination/ListInstalledComponentsPaginator.ts index eba6a31bb4e8e..23cb27c77a903 100644 --- a/clients/client-greengrassv2/src/pagination/ListInstalledComponentsPaginator.ts +++ b/clients/client-greengrassv2/src/pagination/ListInstalledComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstalledComponentsCommand, diff --git a/clients/client-greengrassv2/src/runtimeConfig.browser.ts b/clients/client-greengrassv2/src/runtimeConfig.browser.ts index 2108a656d8b1f..a8ac884fed77d 100644 --- a/clients/client-greengrassv2/src/runtimeConfig.browser.ts +++ b/clients/client-greengrassv2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GreengrassV2ClientConfig } from "./GreengrassV2Client"; + +import type { GreengrassV2ClientConfig } from "./GreengrassV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-greengrassv2/src/runtimeConfig.native.ts b/clients/client-greengrassv2/src/runtimeConfig.native.ts index e37a34d271d6a..2efd963419a11 100644 --- a/clients/client-greengrassv2/src/runtimeConfig.native.ts +++ b/clients/client-greengrassv2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GreengrassV2ClientConfig } from "./GreengrassV2Client"; +import type { GreengrassV2ClientConfig } from "./GreengrassV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-greengrassv2/src/runtimeConfig.shared.ts b/clients/client-greengrassv2/src/runtimeConfig.shared.ts index c2ee96369f756..253fb781a55f2 100644 --- a/clients/client-greengrassv2/src/runtimeConfig.shared.ts +++ b/clients/client-greengrassv2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGreengrassV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GreengrassV2ClientConfig } from "./GreengrassV2Client"; +import type { GreengrassV2ClientConfig } from "./GreengrassV2Client"; /** * @internal diff --git a/clients/client-greengrassv2/src/runtimeConfig.ts b/clients/client-greengrassv2/src/runtimeConfig.ts index 6e13dd15c9064..e3bab496593c0 100644 --- a/clients/client-greengrassv2/src/runtimeConfig.ts +++ b/clients/client-greengrassv2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GreengrassV2ClientConfig } from "./GreengrassV2Client"; + +import type { GreengrassV2ClientConfig } from "./GreengrassV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-greengrassv2/src/runtimeExtensions.ts b/clients/client-greengrassv2/src/runtimeExtensions.ts index a673ce26db060..5e20ccba8e384 100644 --- a/clients/client-greengrassv2/src/runtimeExtensions.ts +++ b/clients/client-greengrassv2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GreengrassV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { GreengrassV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-greengrassv2/src/schemas/schemas_0.ts b/clients/client-greengrassv2/src/schemas/schemas_0.ts index b0bdc8ec5187a..1edfd5d956d07 100644 --- a/clients/client-greengrassv2/src/schemas/schemas_0.ts +++ b/clients/client-greengrassv2/src/schemas/schemas_0.ts @@ -331,7 +331,7 @@ const n0 = "com.amazonaws.greengrassv2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-groundstation/package.json b/clients/client-groundstation/package.json index 1f10d9a51666b..e2969e27fa330 100644 --- a/clients/client-groundstation/package.json +++ b/clients/client-groundstation/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-groundstation/src/GroundStation.ts b/clients/client-groundstation/src/GroundStation.ts index 0ee8b8193058d..5c95a876af2fe 100644 --- a/clients/client-groundstation/src/GroundStation.ts +++ b/clients/client-groundstation/src/GroundStation.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelContactCommand, @@ -165,7 +165,7 @@ import { UpdateMissionProfileCommandInput, UpdateMissionProfileCommandOutput, } from "./commands/UpdateMissionProfileCommand"; -import { GroundStationClient, GroundStationClientConfig } from "./GroundStationClient"; +import { GroundStationClient } from "./GroundStationClient"; const commands = { CancelContactCommand, diff --git a/clients/client-groundstation/src/GroundStationClient.ts b/clients/client-groundstation/src/GroundStationClient.ts index ca2cec05c9371..10afb22ded2ef 100644 --- a/clients/client-groundstation/src/GroundStationClient.ts +++ b/clients/client-groundstation/src/GroundStationClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGroundStationHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelContactCommandInput, CancelContactCommandOutput } from "./commands/CancelContactCommand"; @@ -135,7 +144,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-groundstation/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-groundstation/src/auth/httpAuthExtensionConfiguration.ts index 61858218a4600..69434f666e120 100644 --- a/clients/client-groundstation/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-groundstation/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GroundStationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GroundStationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-groundstation/src/auth/httpAuthSchemeProvider.ts b/clients/client-groundstation/src/auth/httpAuthSchemeProvider.ts index 6320d6531ea07..9634b9888efa5 100644 --- a/clients/client-groundstation/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-groundstation/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GroundStationClientConfig, GroundStationClientResolvedConfig } from "../GroundStationClient"; +import { type GroundStationClientResolvedConfig, GroundStationClientConfig } from "../GroundStationClient"; /** * @internal diff --git a/clients/client-groundstation/src/commands/CancelContactCommand.ts b/clients/client-groundstation/src/commands/CancelContactCommand.ts index 7be4bfe50cba7..730b12b199c19 100644 --- a/clients/client-groundstation/src/commands/CancelContactCommand.ts +++ b/clients/client-groundstation/src/commands/CancelContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { CancelContactRequest, ContactIdResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { CancelContactRequest, ContactIdResponse } from "../models/models_0"; import { CancelContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/CreateConfigCommand.ts b/clients/client-groundstation/src/commands/CreateConfigCommand.ts index 8ab9e5228a02e..83d3dfbf53edf 100644 --- a/clients/client-groundstation/src/commands/CreateConfigCommand.ts +++ b/clients/client-groundstation/src/commands/CreateConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ConfigIdResponse, CreateConfigRequest } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ConfigIdResponse, CreateConfigRequest } from "../models/models_0"; import { CreateConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupCommand.ts b/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupCommand.ts index c3b36a7098b23..1f7804489ea84 100644 --- a/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupCommand.ts +++ b/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { CreateDataflowEndpointGroupRequest, DataflowEndpointGroupIdResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { CreateDataflowEndpointGroupRequest, DataflowEndpointGroupIdResponse } from "../models/models_0"; import { CreateDataflowEndpointGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupV2Command.ts b/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupV2Command.ts index c105d9048a290..f4753ce09ae7c 100644 --- a/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupV2Command.ts +++ b/clients/client-groundstation/src/commands/CreateDataflowEndpointGroupV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { CreateDataflowEndpointGroupV2Request, CreateDataflowEndpointGroupV2Response } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { CreateDataflowEndpointGroupV2Request, CreateDataflowEndpointGroupV2Response } from "../models/models_0"; import { CreateDataflowEndpointGroupV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/CreateEphemerisCommand.ts b/clients/client-groundstation/src/commands/CreateEphemerisCommand.ts index 53583cf3533a7..28cc41ffcccd8 100644 --- a/clients/client-groundstation/src/commands/CreateEphemerisCommand.ts +++ b/clients/client-groundstation/src/commands/CreateEphemerisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { CreateEphemerisRequest, EphemerisIdResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { CreateEphemerisRequest, EphemerisIdResponse } from "../models/models_0"; import { CreateEphemeris } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/CreateMissionProfileCommand.ts b/clients/client-groundstation/src/commands/CreateMissionProfileCommand.ts index 70a01b48301d7..2fa21c4fd9ec4 100644 --- a/clients/client-groundstation/src/commands/CreateMissionProfileCommand.ts +++ b/clients/client-groundstation/src/commands/CreateMissionProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { CreateMissionProfileRequest, MissionProfileIdResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { CreateMissionProfileRequest, MissionProfileIdResponse } from "../models/models_0"; import { CreateMissionProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/DeleteConfigCommand.ts b/clients/client-groundstation/src/commands/DeleteConfigCommand.ts index 015617ab4a1fe..4df07cfdbd421 100644 --- a/clients/client-groundstation/src/commands/DeleteConfigCommand.ts +++ b/clients/client-groundstation/src/commands/DeleteConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ConfigIdResponse, DeleteConfigRequest } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ConfigIdResponse, DeleteConfigRequest } from "../models/models_0"; import { DeleteConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/DeleteDataflowEndpointGroupCommand.ts b/clients/client-groundstation/src/commands/DeleteDataflowEndpointGroupCommand.ts index e46f25329f8bc..7b9fd7b1c40df 100644 --- a/clients/client-groundstation/src/commands/DeleteDataflowEndpointGroupCommand.ts +++ b/clients/client-groundstation/src/commands/DeleteDataflowEndpointGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { DataflowEndpointGroupIdResponse, DeleteDataflowEndpointGroupRequest } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { DataflowEndpointGroupIdResponse, DeleteDataflowEndpointGroupRequest } from "../models/models_0"; import { DeleteDataflowEndpointGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/DeleteEphemerisCommand.ts b/clients/client-groundstation/src/commands/DeleteEphemerisCommand.ts index d601370f29663..ce276efc9b28d 100644 --- a/clients/client-groundstation/src/commands/DeleteEphemerisCommand.ts +++ b/clients/client-groundstation/src/commands/DeleteEphemerisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { DeleteEphemerisRequest, EphemerisIdResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { DeleteEphemerisRequest, EphemerisIdResponse } from "../models/models_0"; import { DeleteEphemeris } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/DeleteMissionProfileCommand.ts b/clients/client-groundstation/src/commands/DeleteMissionProfileCommand.ts index 6181fc3ba7cc9..f644e4660cf44 100644 --- a/clients/client-groundstation/src/commands/DeleteMissionProfileCommand.ts +++ b/clients/client-groundstation/src/commands/DeleteMissionProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { DeleteMissionProfileRequest, MissionProfileIdResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { DeleteMissionProfileRequest, MissionProfileIdResponse } from "../models/models_0"; import { DeleteMissionProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/DescribeContactCommand.ts b/clients/client-groundstation/src/commands/DescribeContactCommand.ts index 697f44f53f1fc..e0b9f00c602da 100644 --- a/clients/client-groundstation/src/commands/DescribeContactCommand.ts +++ b/clients/client-groundstation/src/commands/DescribeContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { DescribeContactRequest, DescribeContactResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { DescribeContactRequest, DescribeContactResponse } from "../models/models_0"; import { DescribeContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/DescribeEphemerisCommand.ts b/clients/client-groundstation/src/commands/DescribeEphemerisCommand.ts index bc7e87b51c6c7..633c2fefc5f63 100644 --- a/clients/client-groundstation/src/commands/DescribeEphemerisCommand.ts +++ b/clients/client-groundstation/src/commands/DescribeEphemerisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { DescribeEphemerisRequest, DescribeEphemerisResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { DescribeEphemerisRequest, DescribeEphemerisResponse } from "../models/models_0"; import { DescribeEphemeris } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/GetAgentConfigurationCommand.ts b/clients/client-groundstation/src/commands/GetAgentConfigurationCommand.ts index 93c9741026760..f337e2a8ef1d0 100644 --- a/clients/client-groundstation/src/commands/GetAgentConfigurationCommand.ts +++ b/clients/client-groundstation/src/commands/GetAgentConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { GetAgentConfigurationRequest, GetAgentConfigurationResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { GetAgentConfigurationRequest, GetAgentConfigurationResponse } from "../models/models_0"; import { GetAgentConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/GetAgentTaskResponseUrlCommand.ts b/clients/client-groundstation/src/commands/GetAgentTaskResponseUrlCommand.ts index b87d6aa0789b3..f72e25137a714 100644 --- a/clients/client-groundstation/src/commands/GetAgentTaskResponseUrlCommand.ts +++ b/clients/client-groundstation/src/commands/GetAgentTaskResponseUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { GetAgentTaskResponseUrlRequest, GetAgentTaskResponseUrlResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { GetAgentTaskResponseUrlRequest, GetAgentTaskResponseUrlResponse } from "../models/models_0"; import { GetAgentTaskResponseUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/GetConfigCommand.ts b/clients/client-groundstation/src/commands/GetConfigCommand.ts index d561a929edd17..6c7286bd4f741 100644 --- a/clients/client-groundstation/src/commands/GetConfigCommand.ts +++ b/clients/client-groundstation/src/commands/GetConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { GetConfigRequest, GetConfigResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { GetConfigRequest, GetConfigResponse } from "../models/models_0"; import { GetConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/GetDataflowEndpointGroupCommand.ts b/clients/client-groundstation/src/commands/GetDataflowEndpointGroupCommand.ts index 5caae343f6b7e..14c2fc7ce4347 100644 --- a/clients/client-groundstation/src/commands/GetDataflowEndpointGroupCommand.ts +++ b/clients/client-groundstation/src/commands/GetDataflowEndpointGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { GetDataflowEndpointGroupRequest, GetDataflowEndpointGroupResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { GetDataflowEndpointGroupRequest, GetDataflowEndpointGroupResponse } from "../models/models_0"; import { GetDataflowEndpointGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/GetMinuteUsageCommand.ts b/clients/client-groundstation/src/commands/GetMinuteUsageCommand.ts index 64cce26f67a1a..718a6fee0e4e4 100644 --- a/clients/client-groundstation/src/commands/GetMinuteUsageCommand.ts +++ b/clients/client-groundstation/src/commands/GetMinuteUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { GetMinuteUsageRequest, GetMinuteUsageResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { GetMinuteUsageRequest, GetMinuteUsageResponse } from "../models/models_0"; import { GetMinuteUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/GetMissionProfileCommand.ts b/clients/client-groundstation/src/commands/GetMissionProfileCommand.ts index 6d7abba159c0e..5c02efacbb5c6 100644 --- a/clients/client-groundstation/src/commands/GetMissionProfileCommand.ts +++ b/clients/client-groundstation/src/commands/GetMissionProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { GetMissionProfileRequest, GetMissionProfileResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { GetMissionProfileRequest, GetMissionProfileResponse } from "../models/models_0"; import { GetMissionProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/GetSatelliteCommand.ts b/clients/client-groundstation/src/commands/GetSatelliteCommand.ts index ec4a051265964..6d0a294b40a8b 100644 --- a/clients/client-groundstation/src/commands/GetSatelliteCommand.ts +++ b/clients/client-groundstation/src/commands/GetSatelliteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { GetSatelliteRequest, GetSatelliteResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { GetSatelliteRequest, GetSatelliteResponse } from "../models/models_0"; import { GetSatellite } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/ListConfigsCommand.ts b/clients/client-groundstation/src/commands/ListConfigsCommand.ts index f4351d86cc1a5..1aae0a083fa6f 100644 --- a/clients/client-groundstation/src/commands/ListConfigsCommand.ts +++ b/clients/client-groundstation/src/commands/ListConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ListConfigsRequest, ListConfigsResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ListConfigsRequest, ListConfigsResponse } from "../models/models_0"; import { ListConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/ListContactsCommand.ts b/clients/client-groundstation/src/commands/ListContactsCommand.ts index 94519e9477143..4a2374da2686b 100644 --- a/clients/client-groundstation/src/commands/ListContactsCommand.ts +++ b/clients/client-groundstation/src/commands/ListContactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ListContactsRequest, ListContactsResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ListContactsRequest, ListContactsResponse } from "../models/models_0"; import { ListContacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/ListDataflowEndpointGroupsCommand.ts b/clients/client-groundstation/src/commands/ListDataflowEndpointGroupsCommand.ts index bd028e4bca6ff..725e0b9e80e63 100644 --- a/clients/client-groundstation/src/commands/ListDataflowEndpointGroupsCommand.ts +++ b/clients/client-groundstation/src/commands/ListDataflowEndpointGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ListDataflowEndpointGroupsRequest, ListDataflowEndpointGroupsResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ListDataflowEndpointGroupsRequest, ListDataflowEndpointGroupsResponse } from "../models/models_0"; import { ListDataflowEndpointGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/ListEphemeridesCommand.ts b/clients/client-groundstation/src/commands/ListEphemeridesCommand.ts index fb668c2e08c9a..7e72f9c7a0e45 100644 --- a/clients/client-groundstation/src/commands/ListEphemeridesCommand.ts +++ b/clients/client-groundstation/src/commands/ListEphemeridesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ListEphemeridesRequest, ListEphemeridesResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ListEphemeridesRequest, ListEphemeridesResponse } from "../models/models_0"; import { ListEphemerides } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/ListGroundStationsCommand.ts b/clients/client-groundstation/src/commands/ListGroundStationsCommand.ts index d9825ccf3d2fc..6294948df7118 100644 --- a/clients/client-groundstation/src/commands/ListGroundStationsCommand.ts +++ b/clients/client-groundstation/src/commands/ListGroundStationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ListGroundStationsRequest, ListGroundStationsResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ListGroundStationsRequest, ListGroundStationsResponse } from "../models/models_0"; import { ListGroundStations } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/ListMissionProfilesCommand.ts b/clients/client-groundstation/src/commands/ListMissionProfilesCommand.ts index 901ed1c95f1aa..ed875d5955304 100644 --- a/clients/client-groundstation/src/commands/ListMissionProfilesCommand.ts +++ b/clients/client-groundstation/src/commands/ListMissionProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ListMissionProfilesRequest, ListMissionProfilesResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ListMissionProfilesRequest, ListMissionProfilesResponse } from "../models/models_0"; import { ListMissionProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/ListSatellitesCommand.ts b/clients/client-groundstation/src/commands/ListSatellitesCommand.ts index 1603b44ae0cc8..8189b6d6f6e14 100644 --- a/clients/client-groundstation/src/commands/ListSatellitesCommand.ts +++ b/clients/client-groundstation/src/commands/ListSatellitesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ListSatellitesRequest, ListSatellitesResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ListSatellitesRequest, ListSatellitesResponse } from "../models/models_0"; import { ListSatellites } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/ListTagsForResourceCommand.ts b/clients/client-groundstation/src/commands/ListTagsForResourceCommand.ts index e18b2f06667f9..4438409e5d628 100644 --- a/clients/client-groundstation/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-groundstation/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/RegisterAgentCommand.ts b/clients/client-groundstation/src/commands/RegisterAgentCommand.ts index adcf8f5681c2b..6ffe10db5d8c9 100644 --- a/clients/client-groundstation/src/commands/RegisterAgentCommand.ts +++ b/clients/client-groundstation/src/commands/RegisterAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { RegisterAgentRequest, RegisterAgentResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { RegisterAgentRequest, RegisterAgentResponse } from "../models/models_0"; import { RegisterAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/ReserveContactCommand.ts b/clients/client-groundstation/src/commands/ReserveContactCommand.ts index 46a033f63a301..0832e510b784d 100644 --- a/clients/client-groundstation/src/commands/ReserveContactCommand.ts +++ b/clients/client-groundstation/src/commands/ReserveContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ContactIdResponse, ReserveContactRequest } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ContactIdResponse, ReserveContactRequest } from "../models/models_0"; import { ReserveContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/TagResourceCommand.ts b/clients/client-groundstation/src/commands/TagResourceCommand.ts index e01cd0fe2f213..574c03bd14e48 100644 --- a/clients/client-groundstation/src/commands/TagResourceCommand.ts +++ b/clients/client-groundstation/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/UntagResourceCommand.ts b/clients/client-groundstation/src/commands/UntagResourceCommand.ts index 52cdc40039c5b..5db04bedfff39 100644 --- a/clients/client-groundstation/src/commands/UntagResourceCommand.ts +++ b/clients/client-groundstation/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/UpdateAgentStatusCommand.ts b/clients/client-groundstation/src/commands/UpdateAgentStatusCommand.ts index 165627f772944..0e2dc222a17c9 100644 --- a/clients/client-groundstation/src/commands/UpdateAgentStatusCommand.ts +++ b/clients/client-groundstation/src/commands/UpdateAgentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { UpdateAgentStatusRequest, UpdateAgentStatusResponse } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { UpdateAgentStatusRequest, UpdateAgentStatusResponse } from "../models/models_0"; import { UpdateAgentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/UpdateConfigCommand.ts b/clients/client-groundstation/src/commands/UpdateConfigCommand.ts index b1bd6dfbb102b..375841d96dca6 100644 --- a/clients/client-groundstation/src/commands/UpdateConfigCommand.ts +++ b/clients/client-groundstation/src/commands/UpdateConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { ConfigIdResponse, UpdateConfigRequest } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { ConfigIdResponse, UpdateConfigRequest } from "../models/models_0"; import { UpdateConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/UpdateEphemerisCommand.ts b/clients/client-groundstation/src/commands/UpdateEphemerisCommand.ts index 5ebb5fbca4e63..dfa36de0a6bb0 100644 --- a/clients/client-groundstation/src/commands/UpdateEphemerisCommand.ts +++ b/clients/client-groundstation/src/commands/UpdateEphemerisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { EphemerisIdResponse, UpdateEphemerisRequest } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { EphemerisIdResponse, UpdateEphemerisRequest } from "../models/models_0"; import { UpdateEphemeris } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/commands/UpdateMissionProfileCommand.ts b/clients/client-groundstation/src/commands/UpdateMissionProfileCommand.ts index 6b63a5b0d1c3e..a44d38f9e6172 100644 --- a/clients/client-groundstation/src/commands/UpdateMissionProfileCommand.ts +++ b/clients/client-groundstation/src/commands/UpdateMissionProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; -import { MissionProfileIdResponse, UpdateMissionProfileRequest } from "../models/models_0"; +import type { GroundStationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GroundStationClient"; +import type { MissionProfileIdResponse, UpdateMissionProfileRequest } from "../models/models_0"; import { UpdateMissionProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-groundstation/src/endpoint/EndpointParameters.ts b/clients/client-groundstation/src/endpoint/EndpointParameters.ts index 51e3d887915a2..154adeb149806 100644 --- a/clients/client-groundstation/src/endpoint/EndpointParameters.ts +++ b/clients/client-groundstation/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-groundstation/src/endpoint/endpointResolver.ts b/clients/client-groundstation/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-groundstation/src/endpoint/endpointResolver.ts +++ b/clients/client-groundstation/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-groundstation/src/extensionConfiguration.ts b/clients/client-groundstation/src/extensionConfiguration.ts index db8e860d6f21f..bb2f5ad1db9f2 100644 --- a/clients/client-groundstation/src/extensionConfiguration.ts +++ b/clients/client-groundstation/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-groundstation/src/models/GroundStationServiceException.ts b/clients/client-groundstation/src/models/GroundStationServiceException.ts index 9f06e8340be0b..0bfcc8153b208 100644 --- a/clients/client-groundstation/src/models/GroundStationServiceException.ts +++ b/clients/client-groundstation/src/models/GroundStationServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-groundstation/src/models/errors.ts b/clients/client-groundstation/src/models/errors.ts index 1e9f128ad8e56..8b663b04970a7 100644 --- a/clients/client-groundstation/src/models/errors.ts +++ b/clients/client-groundstation/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException"; diff --git a/clients/client-groundstation/src/pagination/Interfaces.ts b/clients/client-groundstation/src/pagination/Interfaces.ts index a1eb69ac41bbe..bf5bebe9386fb 100644 --- a/clients/client-groundstation/src/pagination/Interfaces.ts +++ b/clients/client-groundstation/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { GroundStationClient } from "../GroundStationClient"; diff --git a/clients/client-groundstation/src/pagination/ListConfigsPaginator.ts b/clients/client-groundstation/src/pagination/ListConfigsPaginator.ts index 3d67660211cb4..6fc9e65774563 100644 --- a/clients/client-groundstation/src/pagination/ListConfigsPaginator.ts +++ b/clients/client-groundstation/src/pagination/ListConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigsCommand, ListConfigsCommandInput, ListConfigsCommandOutput } from "../commands/ListConfigsCommand"; import { GroundStationClient } from "../GroundStationClient"; diff --git a/clients/client-groundstation/src/pagination/ListContactsPaginator.ts b/clients/client-groundstation/src/pagination/ListContactsPaginator.ts index 5af08cfbca141..835be512912be 100644 --- a/clients/client-groundstation/src/pagination/ListContactsPaginator.ts +++ b/clients/client-groundstation/src/pagination/ListContactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactsCommand, diff --git a/clients/client-groundstation/src/pagination/ListDataflowEndpointGroupsPaginator.ts b/clients/client-groundstation/src/pagination/ListDataflowEndpointGroupsPaginator.ts index 3bafca1636ded..93402ed50db32 100644 --- a/clients/client-groundstation/src/pagination/ListDataflowEndpointGroupsPaginator.ts +++ b/clients/client-groundstation/src/pagination/ListDataflowEndpointGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataflowEndpointGroupsCommand, diff --git a/clients/client-groundstation/src/pagination/ListEphemeridesPaginator.ts b/clients/client-groundstation/src/pagination/ListEphemeridesPaginator.ts index 8dbf41ba4cedc..16d96b9c59504 100644 --- a/clients/client-groundstation/src/pagination/ListEphemeridesPaginator.ts +++ b/clients/client-groundstation/src/pagination/ListEphemeridesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEphemeridesCommand, diff --git a/clients/client-groundstation/src/pagination/ListGroundStationsPaginator.ts b/clients/client-groundstation/src/pagination/ListGroundStationsPaginator.ts index 29a74efc4dbb1..7e40da71c5475 100644 --- a/clients/client-groundstation/src/pagination/ListGroundStationsPaginator.ts +++ b/clients/client-groundstation/src/pagination/ListGroundStationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroundStationsCommand, diff --git a/clients/client-groundstation/src/pagination/ListMissionProfilesPaginator.ts b/clients/client-groundstation/src/pagination/ListMissionProfilesPaginator.ts index 07385743a4f8a..5e3d895f3e2c8 100644 --- a/clients/client-groundstation/src/pagination/ListMissionProfilesPaginator.ts +++ b/clients/client-groundstation/src/pagination/ListMissionProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMissionProfilesCommand, diff --git a/clients/client-groundstation/src/pagination/ListSatellitesPaginator.ts b/clients/client-groundstation/src/pagination/ListSatellitesPaginator.ts index f8ca1e2d73450..a4d820fd61fd1 100644 --- a/clients/client-groundstation/src/pagination/ListSatellitesPaginator.ts +++ b/clients/client-groundstation/src/pagination/ListSatellitesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSatellitesCommand, diff --git a/clients/client-groundstation/src/runtimeConfig.browser.ts b/clients/client-groundstation/src/runtimeConfig.browser.ts index 52ebc6d4fa506..34aa518c91742 100644 --- a/clients/client-groundstation/src/runtimeConfig.browser.ts +++ b/clients/client-groundstation/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GroundStationClientConfig } from "./GroundStationClient"; + +import type { GroundStationClientConfig } from "./GroundStationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-groundstation/src/runtimeConfig.native.ts b/clients/client-groundstation/src/runtimeConfig.native.ts index cdf7b74bd8a06..1947759f7cd40 100644 --- a/clients/client-groundstation/src/runtimeConfig.native.ts +++ b/clients/client-groundstation/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GroundStationClientConfig } from "./GroundStationClient"; +import type { GroundStationClientConfig } from "./GroundStationClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-groundstation/src/runtimeConfig.shared.ts b/clients/client-groundstation/src/runtimeConfig.shared.ts index 77d819b858945..4354337354388 100644 --- a/clients/client-groundstation/src/runtimeConfig.shared.ts +++ b/clients/client-groundstation/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGroundStationHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GroundStationClientConfig } from "./GroundStationClient"; +import type { GroundStationClientConfig } from "./GroundStationClient"; /** * @internal diff --git a/clients/client-groundstation/src/runtimeConfig.ts b/clients/client-groundstation/src/runtimeConfig.ts index 20e2a65a3854f..8bf8d3626357f 100644 --- a/clients/client-groundstation/src/runtimeConfig.ts +++ b/clients/client-groundstation/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GroundStationClientConfig } from "./GroundStationClient"; + +import type { GroundStationClientConfig } from "./GroundStationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-groundstation/src/runtimeExtensions.ts b/clients/client-groundstation/src/runtimeExtensions.ts index 61c06437cc862..32dd4d2947d98 100644 --- a/clients/client-groundstation/src/runtimeExtensions.ts +++ b/clients/client-groundstation/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GroundStationExtensionConfiguration } from "./extensionConfiguration"; +import type { GroundStationExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-groundstation/src/schemas/schemas_0.ts b/clients/client-groundstation/src/schemas/schemas_0.ts index 0b46175c46bd4..8a59247bc85a7 100644 --- a/clients/client-groundstation/src/schemas/schemas_0.ts +++ b/clients/client-groundstation/src/schemas/schemas_0.ts @@ -392,7 +392,7 @@ const n0 = "com.amazonaws.groundstation"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-guardduty/package.json b/clients/client-guardduty/package.json index 77aadab8d52da..6bce5c9ea5505 100644 --- a/clients/client-guardduty/package.json +++ b/clients/client-guardduty/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-guardduty/src/GuardDuty.ts b/clients/client-guardduty/src/GuardDuty.ts index 6b672b60cbd79..8f7f6f3235bc7 100644 --- a/clients/client-guardduty/src/GuardDuty.ts +++ b/clients/client-guardduty/src/GuardDuty.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptAdministratorInvitationCommand, @@ -389,7 +389,7 @@ import { UpdateTrustedEntitySetCommandInput, UpdateTrustedEntitySetCommandOutput, } from "./commands/UpdateTrustedEntitySetCommand"; -import { GuardDutyClient, GuardDutyClientConfig } from "./GuardDutyClient"; +import { GuardDutyClient } from "./GuardDutyClient"; const commands = { AcceptAdministratorInvitationCommand, diff --git a/clients/client-guardduty/src/GuardDutyClient.ts b/clients/client-guardduty/src/GuardDutyClient.ts index 5c9d0906602e6..283673211659f 100644 --- a/clients/client-guardduty/src/GuardDutyClient.ts +++ b/clients/client-guardduty/src/GuardDutyClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGuardDutyHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -295,7 +304,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-guardduty/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-guardduty/src/auth/httpAuthExtensionConfiguration.ts index 16e5fcaf1401d..dd31c98e0cd4e 100644 --- a/clients/client-guardduty/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-guardduty/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GuardDutyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GuardDutyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-guardduty/src/auth/httpAuthSchemeProvider.ts b/clients/client-guardduty/src/auth/httpAuthSchemeProvider.ts index 7aff46fe18d1a..e2c11abb88e03 100644 --- a/clients/client-guardduty/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-guardduty/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GuardDutyClientConfig, GuardDutyClientResolvedConfig } from "../GuardDutyClient"; +import { type GuardDutyClientResolvedConfig, GuardDutyClientConfig } from "../GuardDutyClient"; /** * @internal diff --git a/clients/client-guardduty/src/commands/AcceptAdministratorInvitationCommand.ts b/clients/client-guardduty/src/commands/AcceptAdministratorInvitationCommand.ts index c312e3624f338..f69ebc2587248 100644 --- a/clients/client-guardduty/src/commands/AcceptAdministratorInvitationCommand.ts +++ b/clients/client-guardduty/src/commands/AcceptAdministratorInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { AcceptAdministratorInvitationRequest, AcceptAdministratorInvitationResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { AcceptAdministratorInvitationRequest, AcceptAdministratorInvitationResponse } from "../models/models_0"; import { AcceptAdministratorInvitation } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/AcceptInvitationCommand.ts b/clients/client-guardduty/src/commands/AcceptInvitationCommand.ts index e6ca7c214cc01..b6981dbd00789 100644 --- a/clients/client-guardduty/src/commands/AcceptInvitationCommand.ts +++ b/clients/client-guardduty/src/commands/AcceptInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { AcceptInvitationRequest, AcceptInvitationResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { AcceptInvitationRequest, AcceptInvitationResponse } from "../models/models_0"; import { AcceptInvitation } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ArchiveFindingsCommand.ts b/clients/client-guardduty/src/commands/ArchiveFindingsCommand.ts index e89630a56ea68..5df04e9311eb1 100644 --- a/clients/client-guardduty/src/commands/ArchiveFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/ArchiveFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ArchiveFindingsRequest, ArchiveFindingsResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ArchiveFindingsRequest, ArchiveFindingsResponse } from "../models/models_0"; import { ArchiveFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreateDetectorCommand.ts b/clients/client-guardduty/src/commands/CreateDetectorCommand.ts index cd3ec24ee36f6..882f18f34febe 100644 --- a/clients/client-guardduty/src/commands/CreateDetectorCommand.ts +++ b/clients/client-guardduty/src/commands/CreateDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreateDetectorRequest, CreateDetectorResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreateDetectorRequest, CreateDetectorResponse } from "../models/models_0"; import { CreateDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreateFilterCommand.ts b/clients/client-guardduty/src/commands/CreateFilterCommand.ts index f5ca238f76df0..9dfecfbef3a22 100644 --- a/clients/client-guardduty/src/commands/CreateFilterCommand.ts +++ b/clients/client-guardduty/src/commands/CreateFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreateFilterRequest, CreateFilterResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreateFilterRequest, CreateFilterResponse } from "../models/models_0"; import { CreateFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreateIPSetCommand.ts b/clients/client-guardduty/src/commands/CreateIPSetCommand.ts index 38cf4e0009dfa..e68c99a53de0c 100644 --- a/clients/client-guardduty/src/commands/CreateIPSetCommand.ts +++ b/clients/client-guardduty/src/commands/CreateIPSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreateIPSetRequest, CreateIPSetResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreateIPSetRequest, CreateIPSetResponse } from "../models/models_0"; import { CreateIPSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreateMalwareProtectionPlanCommand.ts b/clients/client-guardduty/src/commands/CreateMalwareProtectionPlanCommand.ts index fa5768f9571a2..48be33f50d59a 100644 --- a/clients/client-guardduty/src/commands/CreateMalwareProtectionPlanCommand.ts +++ b/clients/client-guardduty/src/commands/CreateMalwareProtectionPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreateMalwareProtectionPlanRequest, CreateMalwareProtectionPlanResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreateMalwareProtectionPlanRequest, CreateMalwareProtectionPlanResponse } from "../models/models_0"; import { CreateMalwareProtectionPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreateMembersCommand.ts b/clients/client-guardduty/src/commands/CreateMembersCommand.ts index 426d539c241b5..06ddc15566baa 100644 --- a/clients/client-guardduty/src/commands/CreateMembersCommand.ts +++ b/clients/client-guardduty/src/commands/CreateMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreateMembersRequest, CreateMembersResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreateMembersRequest, CreateMembersResponse } from "../models/models_0"; import { CreateMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreatePublishingDestinationCommand.ts b/clients/client-guardduty/src/commands/CreatePublishingDestinationCommand.ts index cd640d59f6552..57ce3e90f6afe 100644 --- a/clients/client-guardduty/src/commands/CreatePublishingDestinationCommand.ts +++ b/clients/client-guardduty/src/commands/CreatePublishingDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreatePublishingDestinationRequest, CreatePublishingDestinationResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreatePublishingDestinationRequest, CreatePublishingDestinationResponse } from "../models/models_0"; import { CreatePublishingDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreateSampleFindingsCommand.ts b/clients/client-guardduty/src/commands/CreateSampleFindingsCommand.ts index e56d720b7d16c..964317d17ad2c 100644 --- a/clients/client-guardduty/src/commands/CreateSampleFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/CreateSampleFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreateSampleFindingsRequest, CreateSampleFindingsResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreateSampleFindingsRequest, CreateSampleFindingsResponse } from "../models/models_0"; import { CreateSampleFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreateThreatEntitySetCommand.ts b/clients/client-guardduty/src/commands/CreateThreatEntitySetCommand.ts index 789a52b6b1c11..7fb3d67aee2e4 100644 --- a/clients/client-guardduty/src/commands/CreateThreatEntitySetCommand.ts +++ b/clients/client-guardduty/src/commands/CreateThreatEntitySetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreateThreatEntitySetRequest, CreateThreatEntitySetResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreateThreatEntitySetRequest, CreateThreatEntitySetResponse } from "../models/models_0"; import { CreateThreatEntitySet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreateThreatIntelSetCommand.ts b/clients/client-guardduty/src/commands/CreateThreatIntelSetCommand.ts index 65bf281eb5def..120daec6e2b6c 100644 --- a/clients/client-guardduty/src/commands/CreateThreatIntelSetCommand.ts +++ b/clients/client-guardduty/src/commands/CreateThreatIntelSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreateThreatIntelSetRequest, CreateThreatIntelSetResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreateThreatIntelSetRequest, CreateThreatIntelSetResponse } from "../models/models_0"; import { CreateThreatIntelSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/CreateTrustedEntitySetCommand.ts b/clients/client-guardduty/src/commands/CreateTrustedEntitySetCommand.ts index 72cac558d5f4b..8b55e8e5dd39f 100644 --- a/clients/client-guardduty/src/commands/CreateTrustedEntitySetCommand.ts +++ b/clients/client-guardduty/src/commands/CreateTrustedEntitySetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { CreateTrustedEntitySetRequest, CreateTrustedEntitySetResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { CreateTrustedEntitySetRequest, CreateTrustedEntitySetResponse } from "../models/models_0"; import { CreateTrustedEntitySet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeclineInvitationsCommand.ts b/clients/client-guardduty/src/commands/DeclineInvitationsCommand.ts index c6c6b493f2fca..cbd6cca1d5694 100644 --- a/clients/client-guardduty/src/commands/DeclineInvitationsCommand.ts +++ b/clients/client-guardduty/src/commands/DeclineInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeclineInvitationsRequest, DeclineInvitationsResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeclineInvitationsRequest, DeclineInvitationsResponse } from "../models/models_0"; import { DeclineInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeleteDetectorCommand.ts b/clients/client-guardduty/src/commands/DeleteDetectorCommand.ts index 55d89769fca48..4d3f20cbed9ff 100644 --- a/clients/client-guardduty/src/commands/DeleteDetectorCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeleteDetectorRequest, DeleteDetectorResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeleteDetectorRequest, DeleteDetectorResponse } from "../models/models_0"; import { DeleteDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeleteFilterCommand.ts b/clients/client-guardduty/src/commands/DeleteFilterCommand.ts index 7dd8c1710389b..b72c2bd4d35ee 100644 --- a/clients/client-guardduty/src/commands/DeleteFilterCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeleteFilterRequest, DeleteFilterResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeleteFilterRequest, DeleteFilterResponse } from "../models/models_0"; import { DeleteFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeleteIPSetCommand.ts b/clients/client-guardduty/src/commands/DeleteIPSetCommand.ts index cb0a47a85ad5a..fd62f2dc2155c 100644 --- a/clients/client-guardduty/src/commands/DeleteIPSetCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteIPSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeleteIPSetRequest, DeleteIPSetResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeleteIPSetRequest, DeleteIPSetResponse } from "../models/models_0"; import { DeleteIPSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeleteInvitationsCommand.ts b/clients/client-guardduty/src/commands/DeleteInvitationsCommand.ts index 32a3687b9defd..d6ca2401ca235 100644 --- a/clients/client-guardduty/src/commands/DeleteInvitationsCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeleteInvitationsRequest, DeleteInvitationsResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeleteInvitationsRequest, DeleteInvitationsResponse } from "../models/models_0"; import { DeleteInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeleteMalwareProtectionPlanCommand.ts b/clients/client-guardduty/src/commands/DeleteMalwareProtectionPlanCommand.ts index ce08a44af3b4e..7500f5ee9c758 100644 --- a/clients/client-guardduty/src/commands/DeleteMalwareProtectionPlanCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteMalwareProtectionPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeleteMalwareProtectionPlanRequest } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeleteMalwareProtectionPlanRequest } from "../models/models_0"; import { DeleteMalwareProtectionPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeleteMembersCommand.ts b/clients/client-guardduty/src/commands/DeleteMembersCommand.ts index da484a97f6068..f1dd2b52547ea 100644 --- a/clients/client-guardduty/src/commands/DeleteMembersCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeleteMembersRequest, DeleteMembersResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeleteMembersRequest, DeleteMembersResponse } from "../models/models_0"; import { DeleteMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeletePublishingDestinationCommand.ts b/clients/client-guardduty/src/commands/DeletePublishingDestinationCommand.ts index b913a0667c2f0..9ae6d30233824 100644 --- a/clients/client-guardduty/src/commands/DeletePublishingDestinationCommand.ts +++ b/clients/client-guardduty/src/commands/DeletePublishingDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeletePublishingDestinationRequest, DeletePublishingDestinationResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeletePublishingDestinationRequest, DeletePublishingDestinationResponse } from "../models/models_0"; import { DeletePublishingDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeleteThreatEntitySetCommand.ts b/clients/client-guardduty/src/commands/DeleteThreatEntitySetCommand.ts index 6cc2bef8a6c07..7597b8bbb3c28 100644 --- a/clients/client-guardduty/src/commands/DeleteThreatEntitySetCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteThreatEntitySetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeleteThreatEntitySetRequest, DeleteThreatEntitySetResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeleteThreatEntitySetRequest, DeleteThreatEntitySetResponse } from "../models/models_0"; import { DeleteThreatEntitySet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeleteThreatIntelSetCommand.ts b/clients/client-guardduty/src/commands/DeleteThreatIntelSetCommand.ts index 9ae6a2150d610..4cb33af57eedf 100644 --- a/clients/client-guardduty/src/commands/DeleteThreatIntelSetCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteThreatIntelSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeleteThreatIntelSetRequest, DeleteThreatIntelSetResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeleteThreatIntelSetRequest, DeleteThreatIntelSetResponse } from "../models/models_0"; import { DeleteThreatIntelSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DeleteTrustedEntitySetCommand.ts b/clients/client-guardduty/src/commands/DeleteTrustedEntitySetCommand.ts index 6298d49386546..2dceac77245fd 100644 --- a/clients/client-guardduty/src/commands/DeleteTrustedEntitySetCommand.ts +++ b/clients/client-guardduty/src/commands/DeleteTrustedEntitySetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DeleteTrustedEntitySetRequest, DeleteTrustedEntitySetResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DeleteTrustedEntitySetRequest, DeleteTrustedEntitySetResponse } from "../models/models_0"; import { DeleteTrustedEntitySet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DescribeMalwareScansCommand.ts b/clients/client-guardduty/src/commands/DescribeMalwareScansCommand.ts index a11dc1696d646..7b501057b7292 100644 --- a/clients/client-guardduty/src/commands/DescribeMalwareScansCommand.ts +++ b/clients/client-guardduty/src/commands/DescribeMalwareScansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DescribeMalwareScansRequest, DescribeMalwareScansResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DescribeMalwareScansRequest, DescribeMalwareScansResponse } from "../models/models_0"; import { DescribeMalwareScans } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-guardduty/src/commands/DescribeOrganizationConfigurationCommand.ts index bebbc700d63a5..90afe49a775f6 100644 --- a/clients/client-guardduty/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-guardduty/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DescribeOrganizationConfigurationRequest, DescribeOrganizationConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-guardduty/src/commands/DescribePublishingDestinationCommand.ts b/clients/client-guardduty/src/commands/DescribePublishingDestinationCommand.ts index 1d8d2ba51cc7c..63229932045d9 100644 --- a/clients/client-guardduty/src/commands/DescribePublishingDestinationCommand.ts +++ b/clients/client-guardduty/src/commands/DescribePublishingDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DescribePublishingDestinationRequest, DescribePublishingDestinationResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DescribePublishingDestinationRequest, DescribePublishingDestinationResponse } from "../models/models_0"; import { DescribePublishingDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DisableOrganizationAdminAccountCommand.ts b/clients/client-guardduty/src/commands/DisableOrganizationAdminAccountCommand.ts index 96f2fcbf53f8c..306a17974a673 100644 --- a/clients/client-guardduty/src/commands/DisableOrganizationAdminAccountCommand.ts +++ b/clients/client-guardduty/src/commands/DisableOrganizationAdminAccountCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DisableOrganizationAdminAccountRequest, DisableOrganizationAdminAccountResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { + DisableOrganizationAdminAccountRequest, + DisableOrganizationAdminAccountResponse, +} from "../models/models_0"; import { DisableOrganizationAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DisassociateFromAdministratorAccountCommand.ts b/clients/client-guardduty/src/commands/DisassociateFromAdministratorAccountCommand.ts index ebdd348a773d2..76f1c391ea773 100644 --- a/clients/client-guardduty/src/commands/DisassociateFromAdministratorAccountCommand.ts +++ b/clients/client-guardduty/src/commands/DisassociateFromAdministratorAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DisassociateFromAdministratorAccountRequest, DisassociateFromAdministratorAccountResponse, } from "../models/models_0"; diff --git a/clients/client-guardduty/src/commands/DisassociateFromMasterAccountCommand.ts b/clients/client-guardduty/src/commands/DisassociateFromMasterAccountCommand.ts index f644863d4cbb8..7436b98a01a6f 100644 --- a/clients/client-guardduty/src/commands/DisassociateFromMasterAccountCommand.ts +++ b/clients/client-guardduty/src/commands/DisassociateFromMasterAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DisassociateFromMasterAccountRequest, DisassociateFromMasterAccountResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DisassociateFromMasterAccountRequest, DisassociateFromMasterAccountResponse } from "../models/models_0"; import { DisassociateFromMasterAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/DisassociateMembersCommand.ts b/clients/client-guardduty/src/commands/DisassociateMembersCommand.ts index 10dfe177d9862..b3aefb041ec0c 100644 --- a/clients/client-guardduty/src/commands/DisassociateMembersCommand.ts +++ b/clients/client-guardduty/src/commands/DisassociateMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { DisassociateMembersRequest, DisassociateMembersResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { DisassociateMembersRequest, DisassociateMembersResponse } from "../models/models_0"; import { DisassociateMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/EnableOrganizationAdminAccountCommand.ts b/clients/client-guardduty/src/commands/EnableOrganizationAdminAccountCommand.ts index 13ff18bc2c342..a2d1448c8de20 100644 --- a/clients/client-guardduty/src/commands/EnableOrganizationAdminAccountCommand.ts +++ b/clients/client-guardduty/src/commands/EnableOrganizationAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { EnableOrganizationAdminAccountRequest, EnableOrganizationAdminAccountResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { EnableOrganizationAdminAccountRequest, EnableOrganizationAdminAccountResponse } from "../models/models_0"; import { EnableOrganizationAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetAdministratorAccountCommand.ts b/clients/client-guardduty/src/commands/GetAdministratorAccountCommand.ts index 5e4fb69cc201e..2428282047d1d 100644 --- a/clients/client-guardduty/src/commands/GetAdministratorAccountCommand.ts +++ b/clients/client-guardduty/src/commands/GetAdministratorAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetAdministratorAccountRequest, GetAdministratorAccountResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetAdministratorAccountRequest, GetAdministratorAccountResponse } from "../models/models_0"; import { GetAdministratorAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetCoverageStatisticsCommand.ts b/clients/client-guardduty/src/commands/GetCoverageStatisticsCommand.ts index 17da778b82994..1340b8251d069 100644 --- a/clients/client-guardduty/src/commands/GetCoverageStatisticsCommand.ts +++ b/clients/client-guardduty/src/commands/GetCoverageStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetCoverageStatisticsRequest, GetCoverageStatisticsResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetCoverageStatisticsRequest, GetCoverageStatisticsResponse } from "../models/models_0"; import { GetCoverageStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetDetectorCommand.ts b/clients/client-guardduty/src/commands/GetDetectorCommand.ts index 166286afe7b5d..f230c67996d14 100644 --- a/clients/client-guardduty/src/commands/GetDetectorCommand.ts +++ b/clients/client-guardduty/src/commands/GetDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetDetectorRequest, GetDetectorResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetDetectorRequest, GetDetectorResponse } from "../models/models_0"; import { GetDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetFilterCommand.ts b/clients/client-guardduty/src/commands/GetFilterCommand.ts index 5c85f64afc086..1fc4470a63afd 100644 --- a/clients/client-guardduty/src/commands/GetFilterCommand.ts +++ b/clients/client-guardduty/src/commands/GetFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetFilterRequest, GetFilterResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetFilterRequest, GetFilterResponse } from "../models/models_0"; import { GetFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetFindingsCommand.ts b/clients/client-guardduty/src/commands/GetFindingsCommand.ts index 61f4991b0c54e..1b5ae4f76a390 100644 --- a/clients/client-guardduty/src/commands/GetFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/GetFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetFindingsRequest, GetFindingsResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetFindingsRequest, GetFindingsResponse } from "../models/models_0"; import { GetFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetFindingsStatisticsCommand.ts b/clients/client-guardduty/src/commands/GetFindingsStatisticsCommand.ts index 94e83a08691a8..d201a2d194477 100644 --- a/clients/client-guardduty/src/commands/GetFindingsStatisticsCommand.ts +++ b/clients/client-guardduty/src/commands/GetFindingsStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetFindingsStatisticsRequest, GetFindingsStatisticsResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetFindingsStatisticsRequest, GetFindingsStatisticsResponse } from "../models/models_0"; import { GetFindingsStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetIPSetCommand.ts b/clients/client-guardduty/src/commands/GetIPSetCommand.ts index 13ccb5bddae5d..df79e3d218469 100644 --- a/clients/client-guardduty/src/commands/GetIPSetCommand.ts +++ b/clients/client-guardduty/src/commands/GetIPSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetIPSetRequest, GetIPSetResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetIPSetRequest, GetIPSetResponse } from "../models/models_0"; import { GetIPSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetInvitationsCountCommand.ts b/clients/client-guardduty/src/commands/GetInvitationsCountCommand.ts index 624252e7f5e19..7c08f0186fae5 100644 --- a/clients/client-guardduty/src/commands/GetInvitationsCountCommand.ts +++ b/clients/client-guardduty/src/commands/GetInvitationsCountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetInvitationsCountRequest, GetInvitationsCountResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetInvitationsCountRequest, GetInvitationsCountResponse } from "../models/models_0"; import { GetInvitationsCount } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetMalwareProtectionPlanCommand.ts b/clients/client-guardduty/src/commands/GetMalwareProtectionPlanCommand.ts index 924834a773458..3e37f78517d8f 100644 --- a/clients/client-guardduty/src/commands/GetMalwareProtectionPlanCommand.ts +++ b/clients/client-guardduty/src/commands/GetMalwareProtectionPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetMalwareProtectionPlanRequest, GetMalwareProtectionPlanResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetMalwareProtectionPlanRequest, GetMalwareProtectionPlanResponse } from "../models/models_0"; import { GetMalwareProtectionPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetMalwareScanCommand.ts b/clients/client-guardduty/src/commands/GetMalwareScanCommand.ts index 1dbacc3783fcd..d966231d7462c 100644 --- a/clients/client-guardduty/src/commands/GetMalwareScanCommand.ts +++ b/clients/client-guardduty/src/commands/GetMalwareScanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetMalwareScanRequest, GetMalwareScanResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetMalwareScanRequest, GetMalwareScanResponse } from "../models/models_0"; import { GetMalwareScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetMalwareScanSettingsCommand.ts b/clients/client-guardduty/src/commands/GetMalwareScanSettingsCommand.ts index a5cc772550b95..0db101d9d3142 100644 --- a/clients/client-guardduty/src/commands/GetMalwareScanSettingsCommand.ts +++ b/clients/client-guardduty/src/commands/GetMalwareScanSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetMalwareScanSettingsRequest, GetMalwareScanSettingsResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetMalwareScanSettingsRequest, GetMalwareScanSettingsResponse } from "../models/models_0"; import { GetMalwareScanSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetMasterAccountCommand.ts b/clients/client-guardduty/src/commands/GetMasterAccountCommand.ts index ca0c65818681a..bdfbbc5bcc55c 100644 --- a/clients/client-guardduty/src/commands/GetMasterAccountCommand.ts +++ b/clients/client-guardduty/src/commands/GetMasterAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetMasterAccountRequest, GetMasterAccountResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetMasterAccountRequest, GetMasterAccountResponse } from "../models/models_0"; import { GetMasterAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetMemberDetectorsCommand.ts b/clients/client-guardduty/src/commands/GetMemberDetectorsCommand.ts index fc373e270c12e..ff43ef85481ba 100644 --- a/clients/client-guardduty/src/commands/GetMemberDetectorsCommand.ts +++ b/clients/client-guardduty/src/commands/GetMemberDetectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetMemberDetectorsRequest, GetMemberDetectorsResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetMemberDetectorsRequest, GetMemberDetectorsResponse } from "../models/models_0"; import { GetMemberDetectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetMembersCommand.ts b/clients/client-guardduty/src/commands/GetMembersCommand.ts index ac37c00c339c3..a84a0548d5f79 100644 --- a/clients/client-guardduty/src/commands/GetMembersCommand.ts +++ b/clients/client-guardduty/src/commands/GetMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetMembersRequest, GetMembersResponse } from "../models/models_0"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetMembersRequest, GetMembersResponse } from "../models/models_0"; import { GetMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetOrganizationStatisticsCommand.ts b/clients/client-guardduty/src/commands/GetOrganizationStatisticsCommand.ts index ee6ef3b23ea12..ee6d723f1855f 100644 --- a/clients/client-guardduty/src/commands/GetOrganizationStatisticsCommand.ts +++ b/clients/client-guardduty/src/commands/GetOrganizationStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetOrganizationStatisticsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetOrganizationStatisticsResponse } from "../models/models_1"; import { GetOrganizationStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetRemainingFreeTrialDaysCommand.ts b/clients/client-guardduty/src/commands/GetRemainingFreeTrialDaysCommand.ts index 167fa1e5e9516..a4939af84aa7e 100644 --- a/clients/client-guardduty/src/commands/GetRemainingFreeTrialDaysCommand.ts +++ b/clients/client-guardduty/src/commands/GetRemainingFreeTrialDaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetRemainingFreeTrialDaysRequest, GetRemainingFreeTrialDaysResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetRemainingFreeTrialDaysRequest, GetRemainingFreeTrialDaysResponse } from "../models/models_1"; import { GetRemainingFreeTrialDays } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetThreatEntitySetCommand.ts b/clients/client-guardduty/src/commands/GetThreatEntitySetCommand.ts index c6cfc073de1a2..fe0f60c5e4197 100644 --- a/clients/client-guardduty/src/commands/GetThreatEntitySetCommand.ts +++ b/clients/client-guardduty/src/commands/GetThreatEntitySetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetThreatEntitySetRequest, GetThreatEntitySetResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetThreatEntitySetRequest, GetThreatEntitySetResponse } from "../models/models_1"; import { GetThreatEntitySet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetThreatIntelSetCommand.ts b/clients/client-guardduty/src/commands/GetThreatIntelSetCommand.ts index 49ce418b83e80..4015c1fb7b3f0 100644 --- a/clients/client-guardduty/src/commands/GetThreatIntelSetCommand.ts +++ b/clients/client-guardduty/src/commands/GetThreatIntelSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetThreatIntelSetRequest, GetThreatIntelSetResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetThreatIntelSetRequest, GetThreatIntelSetResponse } from "../models/models_1"; import { GetThreatIntelSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetTrustedEntitySetCommand.ts b/clients/client-guardduty/src/commands/GetTrustedEntitySetCommand.ts index 27e27f166351e..a8f8863a615fb 100644 --- a/clients/client-guardduty/src/commands/GetTrustedEntitySetCommand.ts +++ b/clients/client-guardduty/src/commands/GetTrustedEntitySetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetTrustedEntitySetRequest, GetTrustedEntitySetResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetTrustedEntitySetRequest, GetTrustedEntitySetResponse } from "../models/models_1"; import { GetTrustedEntitySet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/GetUsageStatisticsCommand.ts b/clients/client-guardduty/src/commands/GetUsageStatisticsCommand.ts index 48b854b884146..cc7fa4b166309 100644 --- a/clients/client-guardduty/src/commands/GetUsageStatisticsCommand.ts +++ b/clients/client-guardduty/src/commands/GetUsageStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { GetUsageStatisticsRequest, GetUsageStatisticsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { GetUsageStatisticsRequest, GetUsageStatisticsResponse } from "../models/models_1"; import { GetUsageStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/InviteMembersCommand.ts b/clients/client-guardduty/src/commands/InviteMembersCommand.ts index b69ac46c86cf4..29dd9f666f850 100644 --- a/clients/client-guardduty/src/commands/InviteMembersCommand.ts +++ b/clients/client-guardduty/src/commands/InviteMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { InviteMembersRequest, InviteMembersResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { InviteMembersRequest, InviteMembersResponse } from "../models/models_1"; import { InviteMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListCoverageCommand.ts b/clients/client-guardduty/src/commands/ListCoverageCommand.ts index b95ed2505b78e..70b55b2d7c67a 100644 --- a/clients/client-guardduty/src/commands/ListCoverageCommand.ts +++ b/clients/client-guardduty/src/commands/ListCoverageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListCoverageRequest, ListCoverageResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListCoverageRequest, ListCoverageResponse } from "../models/models_1"; import { ListCoverage } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListDetectorsCommand.ts b/clients/client-guardduty/src/commands/ListDetectorsCommand.ts index 075860b04b28c..458b7bf069137 100644 --- a/clients/client-guardduty/src/commands/ListDetectorsCommand.ts +++ b/clients/client-guardduty/src/commands/ListDetectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListDetectorsRequest, ListDetectorsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListDetectorsRequest, ListDetectorsResponse } from "../models/models_1"; import { ListDetectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListFiltersCommand.ts b/clients/client-guardduty/src/commands/ListFiltersCommand.ts index e06841977dd44..8a9db1106b70b 100644 --- a/clients/client-guardduty/src/commands/ListFiltersCommand.ts +++ b/clients/client-guardduty/src/commands/ListFiltersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListFiltersRequest, ListFiltersResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListFiltersRequest, ListFiltersResponse } from "../models/models_1"; import { ListFilters } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListFindingsCommand.ts b/clients/client-guardduty/src/commands/ListFindingsCommand.ts index b360042c4d222..391178acdfb72 100644 --- a/clients/client-guardduty/src/commands/ListFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/ListFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListFindingsRequest, ListFindingsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListFindingsRequest, ListFindingsResponse } from "../models/models_1"; import { ListFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListIPSetsCommand.ts b/clients/client-guardduty/src/commands/ListIPSetsCommand.ts index 72eafa13159cf..cd54a5dc79d8e 100644 --- a/clients/client-guardduty/src/commands/ListIPSetsCommand.ts +++ b/clients/client-guardduty/src/commands/ListIPSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_1"; import { ListIPSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListInvitationsCommand.ts b/clients/client-guardduty/src/commands/ListInvitationsCommand.ts index 33d68a26c3c29..cbe71e0188720 100644 --- a/clients/client-guardduty/src/commands/ListInvitationsCommand.ts +++ b/clients/client-guardduty/src/commands/ListInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_1"; import { ListInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListMalwareProtectionPlansCommand.ts b/clients/client-guardduty/src/commands/ListMalwareProtectionPlansCommand.ts index 3974d6b6c6100..bf677bf51133c 100644 --- a/clients/client-guardduty/src/commands/ListMalwareProtectionPlansCommand.ts +++ b/clients/client-guardduty/src/commands/ListMalwareProtectionPlansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListMalwareProtectionPlansRequest, ListMalwareProtectionPlansResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListMalwareProtectionPlansRequest, ListMalwareProtectionPlansResponse } from "../models/models_1"; import { ListMalwareProtectionPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListMalwareScansCommand.ts b/clients/client-guardduty/src/commands/ListMalwareScansCommand.ts index f66cd0b3bafc1..c4ef0118945ac 100644 --- a/clients/client-guardduty/src/commands/ListMalwareScansCommand.ts +++ b/clients/client-guardduty/src/commands/ListMalwareScansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListMalwareScansRequest, ListMalwareScansResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListMalwareScansRequest, ListMalwareScansResponse } from "../models/models_1"; import { ListMalwareScans } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListMembersCommand.ts b/clients/client-guardduty/src/commands/ListMembersCommand.ts index c924ea00b60df..fba49a4ffb1ce 100644 --- a/clients/client-guardduty/src/commands/ListMembersCommand.ts +++ b/clients/client-guardduty/src/commands/ListMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListMembersRequest, ListMembersResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListMembersRequest, ListMembersResponse } from "../models/models_1"; import { ListMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListOrganizationAdminAccountsCommand.ts b/clients/client-guardduty/src/commands/ListOrganizationAdminAccountsCommand.ts index bf34152506c14..50148d21c34c5 100644 --- a/clients/client-guardduty/src/commands/ListOrganizationAdminAccountsCommand.ts +++ b/clients/client-guardduty/src/commands/ListOrganizationAdminAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_1"; import { ListOrganizationAdminAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListPublishingDestinationsCommand.ts b/clients/client-guardduty/src/commands/ListPublishingDestinationsCommand.ts index b589127ad8fd6..dfe3d20f62924 100644 --- a/clients/client-guardduty/src/commands/ListPublishingDestinationsCommand.ts +++ b/clients/client-guardduty/src/commands/ListPublishingDestinationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListPublishingDestinationsRequest, ListPublishingDestinationsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListPublishingDestinationsRequest, ListPublishingDestinationsResponse } from "../models/models_1"; import { ListPublishingDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListTagsForResourceCommand.ts b/clients/client-guardduty/src/commands/ListTagsForResourceCommand.ts index 83a29f58819b8..1fb65275780eb 100644 --- a/clients/client-guardduty/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-guardduty/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListThreatEntitySetsCommand.ts b/clients/client-guardduty/src/commands/ListThreatEntitySetsCommand.ts index 6651cf53343c5..61d274bd5b239 100644 --- a/clients/client-guardduty/src/commands/ListThreatEntitySetsCommand.ts +++ b/clients/client-guardduty/src/commands/ListThreatEntitySetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListThreatEntitySetsRequest, ListThreatEntitySetsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListThreatEntitySetsRequest, ListThreatEntitySetsResponse } from "../models/models_1"; import { ListThreatEntitySets } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListThreatIntelSetsCommand.ts b/clients/client-guardduty/src/commands/ListThreatIntelSetsCommand.ts index 334a23091c602..7acb5af360d9c 100644 --- a/clients/client-guardduty/src/commands/ListThreatIntelSetsCommand.ts +++ b/clients/client-guardduty/src/commands/ListThreatIntelSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListThreatIntelSetsRequest, ListThreatIntelSetsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListThreatIntelSetsRequest, ListThreatIntelSetsResponse } from "../models/models_1"; import { ListThreatIntelSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/ListTrustedEntitySetsCommand.ts b/clients/client-guardduty/src/commands/ListTrustedEntitySetsCommand.ts index d5214ce931dd4..507c92cdcab14 100644 --- a/clients/client-guardduty/src/commands/ListTrustedEntitySetsCommand.ts +++ b/clients/client-guardduty/src/commands/ListTrustedEntitySetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { ListTrustedEntitySetsRequest, ListTrustedEntitySetsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { ListTrustedEntitySetsRequest, ListTrustedEntitySetsResponse } from "../models/models_1"; import { ListTrustedEntitySets } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/SendObjectMalwareScanCommand.ts b/clients/client-guardduty/src/commands/SendObjectMalwareScanCommand.ts index 1d945cba3b188..9c05bf2fc8d40 100644 --- a/clients/client-guardduty/src/commands/SendObjectMalwareScanCommand.ts +++ b/clients/client-guardduty/src/commands/SendObjectMalwareScanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { SendObjectMalwareScanRequest, SendObjectMalwareScanResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { SendObjectMalwareScanRequest, SendObjectMalwareScanResponse } from "../models/models_1"; import { SendObjectMalwareScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/StartMalwareScanCommand.ts b/clients/client-guardduty/src/commands/StartMalwareScanCommand.ts index 0aaa64e4169a7..051f504c63988 100644 --- a/clients/client-guardduty/src/commands/StartMalwareScanCommand.ts +++ b/clients/client-guardduty/src/commands/StartMalwareScanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { StartMalwareScanRequest, StartMalwareScanResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { StartMalwareScanRequest, StartMalwareScanResponse } from "../models/models_1"; import { StartMalwareScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/StartMonitoringMembersCommand.ts b/clients/client-guardduty/src/commands/StartMonitoringMembersCommand.ts index 2afbdc42c8977..b404059c4856e 100644 --- a/clients/client-guardduty/src/commands/StartMonitoringMembersCommand.ts +++ b/clients/client-guardduty/src/commands/StartMonitoringMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { StartMonitoringMembersRequest, StartMonitoringMembersResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { StartMonitoringMembersRequest, StartMonitoringMembersResponse } from "../models/models_1"; import { StartMonitoringMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/StopMonitoringMembersCommand.ts b/clients/client-guardduty/src/commands/StopMonitoringMembersCommand.ts index 03ee659c70b92..8c34806bc28aa 100644 --- a/clients/client-guardduty/src/commands/StopMonitoringMembersCommand.ts +++ b/clients/client-guardduty/src/commands/StopMonitoringMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { StopMonitoringMembersRequest, StopMonitoringMembersResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { StopMonitoringMembersRequest, StopMonitoringMembersResponse } from "../models/models_1"; import { StopMonitoringMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/TagResourceCommand.ts b/clients/client-guardduty/src/commands/TagResourceCommand.ts index 8b3c33eecb982..ceb91094b8753 100644 --- a/clients/client-guardduty/src/commands/TagResourceCommand.ts +++ b/clients/client-guardduty/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UnarchiveFindingsCommand.ts b/clients/client-guardduty/src/commands/UnarchiveFindingsCommand.ts index e1382f400a90e..8917455d54453 100644 --- a/clients/client-guardduty/src/commands/UnarchiveFindingsCommand.ts +++ b/clients/client-guardduty/src/commands/UnarchiveFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UnarchiveFindingsRequest, UnarchiveFindingsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UnarchiveFindingsRequest, UnarchiveFindingsResponse } from "../models/models_1"; import { UnarchiveFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UntagResourceCommand.ts b/clients/client-guardduty/src/commands/UntagResourceCommand.ts index 35063708824c6..10592ead6b62d 100644 --- a/clients/client-guardduty/src/commands/UntagResourceCommand.ts +++ b/clients/client-guardduty/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateDetectorCommand.ts b/clients/client-guardduty/src/commands/UpdateDetectorCommand.ts index 9d7f67e20477a..455712cb76039 100644 --- a/clients/client-guardduty/src/commands/UpdateDetectorCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateDetectorRequest, UpdateDetectorResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateDetectorRequest, UpdateDetectorResponse } from "../models/models_1"; import { UpdateDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateFilterCommand.ts b/clients/client-guardduty/src/commands/UpdateFilterCommand.ts index b443ab114e041..9cdf38621f12a 100644 --- a/clients/client-guardduty/src/commands/UpdateFilterCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateFilterRequest, UpdateFilterResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateFilterRequest, UpdateFilterResponse } from "../models/models_1"; import { UpdateFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateFindingsFeedbackCommand.ts b/clients/client-guardduty/src/commands/UpdateFindingsFeedbackCommand.ts index d13cb84f0118a..e64a7d5bbc3f3 100644 --- a/clients/client-guardduty/src/commands/UpdateFindingsFeedbackCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateFindingsFeedbackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateFindingsFeedbackRequest, UpdateFindingsFeedbackResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateFindingsFeedbackRequest, UpdateFindingsFeedbackResponse } from "../models/models_1"; import { UpdateFindingsFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateIPSetCommand.ts b/clients/client-guardduty/src/commands/UpdateIPSetCommand.ts index 4770ddfae7a82..8f7eb847bd330 100644 --- a/clients/client-guardduty/src/commands/UpdateIPSetCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateIPSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_1"; import { UpdateIPSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateMalwareProtectionPlanCommand.ts b/clients/client-guardduty/src/commands/UpdateMalwareProtectionPlanCommand.ts index 38d2273426959..280b843e6c2f8 100644 --- a/clients/client-guardduty/src/commands/UpdateMalwareProtectionPlanCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateMalwareProtectionPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateMalwareProtectionPlanRequest } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateMalwareProtectionPlanRequest } from "../models/models_1"; import { UpdateMalwareProtectionPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateMalwareScanSettingsCommand.ts b/clients/client-guardduty/src/commands/UpdateMalwareScanSettingsCommand.ts index 66b07ad23a5db..16cfdeaecbe20 100644 --- a/clients/client-guardduty/src/commands/UpdateMalwareScanSettingsCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateMalwareScanSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateMalwareScanSettingsRequest, UpdateMalwareScanSettingsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateMalwareScanSettingsRequest, UpdateMalwareScanSettingsResponse } from "../models/models_1"; import { UpdateMalwareScanSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateMemberDetectorsCommand.ts b/clients/client-guardduty/src/commands/UpdateMemberDetectorsCommand.ts index bfb3bede84fe0..b44a7d0f9fc0a 100644 --- a/clients/client-guardduty/src/commands/UpdateMemberDetectorsCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateMemberDetectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateMemberDetectorsRequest, UpdateMemberDetectorsResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateMemberDetectorsRequest, UpdateMemberDetectorsResponse } from "../models/models_1"; import { UpdateMemberDetectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-guardduty/src/commands/UpdateOrganizationConfigurationCommand.ts index f4991be34c8d0..9653a5b1acc07 100644 --- a/clients/client-guardduty/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateOrganizationConfigurationRequest, UpdateOrganizationConfigurationResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { + UpdateOrganizationConfigurationRequest, + UpdateOrganizationConfigurationResponse, +} from "../models/models_1"; import { UpdateOrganizationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdatePublishingDestinationCommand.ts b/clients/client-guardduty/src/commands/UpdatePublishingDestinationCommand.ts index 86941dc84f33d..209ff3218a7ff 100644 --- a/clients/client-guardduty/src/commands/UpdatePublishingDestinationCommand.ts +++ b/clients/client-guardduty/src/commands/UpdatePublishingDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdatePublishingDestinationRequest, UpdatePublishingDestinationResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdatePublishingDestinationRequest, UpdatePublishingDestinationResponse } from "../models/models_1"; import { UpdatePublishingDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateThreatEntitySetCommand.ts b/clients/client-guardduty/src/commands/UpdateThreatEntitySetCommand.ts index 3e046d1a794da..62c1d85350e5b 100644 --- a/clients/client-guardduty/src/commands/UpdateThreatEntitySetCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateThreatEntitySetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateThreatEntitySetRequest, UpdateThreatEntitySetResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateThreatEntitySetRequest, UpdateThreatEntitySetResponse } from "../models/models_1"; import { UpdateThreatEntitySet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateThreatIntelSetCommand.ts b/clients/client-guardduty/src/commands/UpdateThreatIntelSetCommand.ts index 32c9be4f9c79d..31696c0100b13 100644 --- a/clients/client-guardduty/src/commands/UpdateThreatIntelSetCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateThreatIntelSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateThreatIntelSetRequest, UpdateThreatIntelSetResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateThreatIntelSetRequest, UpdateThreatIntelSetResponse } from "../models/models_1"; import { UpdateThreatIntelSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/commands/UpdateTrustedEntitySetCommand.ts b/clients/client-guardduty/src/commands/UpdateTrustedEntitySetCommand.ts index f35a58fb78e27..93bd429fa0ee0 100644 --- a/clients/client-guardduty/src/commands/UpdateTrustedEntitySetCommand.ts +++ b/clients/client-guardduty/src/commands/UpdateTrustedEntitySetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; -import { UpdateTrustedEntitySetRequest, UpdateTrustedEntitySetResponse } from "../models/models_1"; +import type { GuardDutyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GuardDutyClient"; +import type { UpdateTrustedEntitySetRequest, UpdateTrustedEntitySetResponse } from "../models/models_1"; import { UpdateTrustedEntitySet } from "../schemas/schemas_0"; /** diff --git a/clients/client-guardduty/src/endpoint/EndpointParameters.ts b/clients/client-guardduty/src/endpoint/EndpointParameters.ts index dbf672b142fce..a9103bc83539c 100644 --- a/clients/client-guardduty/src/endpoint/EndpointParameters.ts +++ b/clients/client-guardduty/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-guardduty/src/endpoint/endpointResolver.ts b/clients/client-guardduty/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-guardduty/src/endpoint/endpointResolver.ts +++ b/clients/client-guardduty/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-guardduty/src/extensionConfiguration.ts b/clients/client-guardduty/src/extensionConfiguration.ts index f4ba98c2471d6..fb3f7a84bac67 100644 --- a/clients/client-guardduty/src/extensionConfiguration.ts +++ b/clients/client-guardduty/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-guardduty/src/models/GuardDutyServiceException.ts b/clients/client-guardduty/src/models/GuardDutyServiceException.ts index 7fd6135eb084d..0b9af9e0eac7c 100644 --- a/clients/client-guardduty/src/models/GuardDutyServiceException.ts +++ b/clients/client-guardduty/src/models/GuardDutyServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-guardduty/src/models/errors.ts b/clients/client-guardduty/src/models/errors.ts index 917313a7efc49..3c5e6763493d8 100644 --- a/clients/client-guardduty/src/models/errors.ts +++ b/clients/client-guardduty/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { GuardDutyServiceException as __BaseException } from "./GuardDutyServiceException"; diff --git a/clients/client-guardduty/src/pagination/DescribeMalwareScansPaginator.ts b/clients/client-guardduty/src/pagination/DescribeMalwareScansPaginator.ts index a6d5a965ae4a8..a2d91cfc662ff 100644 --- a/clients/client-guardduty/src/pagination/DescribeMalwareScansPaginator.ts +++ b/clients/client-guardduty/src/pagination/DescribeMalwareScansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMalwareScansCommand, diff --git a/clients/client-guardduty/src/pagination/DescribeOrganizationConfigurationPaginator.ts b/clients/client-guardduty/src/pagination/DescribeOrganizationConfigurationPaginator.ts index 8671913fa8970..6ff7770c0daa4 100644 --- a/clients/client-guardduty/src/pagination/DescribeOrganizationConfigurationPaginator.ts +++ b/clients/client-guardduty/src/pagination/DescribeOrganizationConfigurationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrganizationConfigurationCommand, diff --git a/clients/client-guardduty/src/pagination/GetUsageStatisticsPaginator.ts b/clients/client-guardduty/src/pagination/GetUsageStatisticsPaginator.ts index 11c1dcdff39b3..91ece401e6521 100644 --- a/clients/client-guardduty/src/pagination/GetUsageStatisticsPaginator.ts +++ b/clients/client-guardduty/src/pagination/GetUsageStatisticsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetUsageStatisticsCommand, diff --git a/clients/client-guardduty/src/pagination/Interfaces.ts b/clients/client-guardduty/src/pagination/Interfaces.ts index 249098b53d9bd..35bc6a3a0f83b 100644 --- a/clients/client-guardduty/src/pagination/Interfaces.ts +++ b/clients/client-guardduty/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { GuardDutyClient } from "../GuardDutyClient"; diff --git a/clients/client-guardduty/src/pagination/ListCoveragePaginator.ts b/clients/client-guardduty/src/pagination/ListCoveragePaginator.ts index 5487e4a4958e3..fd887ff14e62d 100644 --- a/clients/client-guardduty/src/pagination/ListCoveragePaginator.ts +++ b/clients/client-guardduty/src/pagination/ListCoveragePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCoverageCommand, diff --git a/clients/client-guardduty/src/pagination/ListDetectorsPaginator.ts b/clients/client-guardduty/src/pagination/ListDetectorsPaginator.ts index f99f291ae69ea..9559a4a8ca09d 100644 --- a/clients/client-guardduty/src/pagination/ListDetectorsPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListDetectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDetectorsCommand, diff --git a/clients/client-guardduty/src/pagination/ListFiltersPaginator.ts b/clients/client-guardduty/src/pagination/ListFiltersPaginator.ts index 2937d9e789cda..4d14709c9854c 100644 --- a/clients/client-guardduty/src/pagination/ListFiltersPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListFiltersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFiltersCommand, ListFiltersCommandInput, ListFiltersCommandOutput } from "../commands/ListFiltersCommand"; import { GuardDutyClient } from "../GuardDutyClient"; diff --git a/clients/client-guardduty/src/pagination/ListFindingsPaginator.ts b/clients/client-guardduty/src/pagination/ListFindingsPaginator.ts index d201c60507d5d..c98ab067da2e6 100644 --- a/clients/client-guardduty/src/pagination/ListFindingsPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFindingsCommand, diff --git a/clients/client-guardduty/src/pagination/ListIPSetsPaginator.ts b/clients/client-guardduty/src/pagination/ListIPSetsPaginator.ts index dd2930c1414a8..cf062d196b978 100644 --- a/clients/client-guardduty/src/pagination/ListIPSetsPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListIPSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIPSetsCommand, ListIPSetsCommandInput, ListIPSetsCommandOutput } from "../commands/ListIPSetsCommand"; import { GuardDutyClient } from "../GuardDutyClient"; diff --git a/clients/client-guardduty/src/pagination/ListInvitationsPaginator.ts b/clients/client-guardduty/src/pagination/ListInvitationsPaginator.ts index e8547624116f9..4295f62c15a4d 100644 --- a/clients/client-guardduty/src/pagination/ListInvitationsPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListInvitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInvitationsCommand, diff --git a/clients/client-guardduty/src/pagination/ListMalwareScansPaginator.ts b/clients/client-guardduty/src/pagination/ListMalwareScansPaginator.ts index 86f16e156e82d..a500fdaaa8208 100644 --- a/clients/client-guardduty/src/pagination/ListMalwareScansPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListMalwareScansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMalwareScansCommand, diff --git a/clients/client-guardduty/src/pagination/ListMembersPaginator.ts b/clients/client-guardduty/src/pagination/ListMembersPaginator.ts index 1c562f0922f3c..adde67631f22d 100644 --- a/clients/client-guardduty/src/pagination/ListMembersPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMembersCommand, ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand"; import { GuardDutyClient } from "../GuardDutyClient"; diff --git a/clients/client-guardduty/src/pagination/ListOrganizationAdminAccountsPaginator.ts b/clients/client-guardduty/src/pagination/ListOrganizationAdminAccountsPaginator.ts index b4b2bc4696ce2..207bc294ab370 100644 --- a/clients/client-guardduty/src/pagination/ListOrganizationAdminAccountsPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListOrganizationAdminAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationAdminAccountsCommand, diff --git a/clients/client-guardduty/src/pagination/ListPublishingDestinationsPaginator.ts b/clients/client-guardduty/src/pagination/ListPublishingDestinationsPaginator.ts index 3a0ed8bfb247a..08785d46cf000 100644 --- a/clients/client-guardduty/src/pagination/ListPublishingDestinationsPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListPublishingDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPublishingDestinationsCommand, diff --git a/clients/client-guardduty/src/pagination/ListThreatEntitySetsPaginator.ts b/clients/client-guardduty/src/pagination/ListThreatEntitySetsPaginator.ts index 045e40d992649..53bc15b8f418a 100644 --- a/clients/client-guardduty/src/pagination/ListThreatEntitySetsPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListThreatEntitySetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThreatEntitySetsCommand, diff --git a/clients/client-guardduty/src/pagination/ListThreatIntelSetsPaginator.ts b/clients/client-guardduty/src/pagination/ListThreatIntelSetsPaginator.ts index 65bc2afe24db9..47e92ee619018 100644 --- a/clients/client-guardduty/src/pagination/ListThreatIntelSetsPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListThreatIntelSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThreatIntelSetsCommand, diff --git a/clients/client-guardduty/src/pagination/ListTrustedEntitySetsPaginator.ts b/clients/client-guardduty/src/pagination/ListTrustedEntitySetsPaginator.ts index 871a81d0f6b59..b835ef9dd8dbc 100644 --- a/clients/client-guardduty/src/pagination/ListTrustedEntitySetsPaginator.ts +++ b/clients/client-guardduty/src/pagination/ListTrustedEntitySetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrustedEntitySetsCommand, diff --git a/clients/client-guardduty/src/runtimeConfig.browser.ts b/clients/client-guardduty/src/runtimeConfig.browser.ts index 48a3ad79b88ba..7a8f4d5052c92 100644 --- a/clients/client-guardduty/src/runtimeConfig.browser.ts +++ b/clients/client-guardduty/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GuardDutyClientConfig } from "./GuardDutyClient"; + +import type { GuardDutyClientConfig } from "./GuardDutyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-guardduty/src/runtimeConfig.native.ts b/clients/client-guardduty/src/runtimeConfig.native.ts index 8e881fe5f9eaa..6f49e80142632 100644 --- a/clients/client-guardduty/src/runtimeConfig.native.ts +++ b/clients/client-guardduty/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GuardDutyClientConfig } from "./GuardDutyClient"; +import type { GuardDutyClientConfig } from "./GuardDutyClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-guardduty/src/runtimeConfig.shared.ts b/clients/client-guardduty/src/runtimeConfig.shared.ts index 41a68168544a8..bc8898a79b4ce 100644 --- a/clients/client-guardduty/src/runtimeConfig.shared.ts +++ b/clients/client-guardduty/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGuardDutyHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GuardDutyClientConfig } from "./GuardDutyClient"; +import type { GuardDutyClientConfig } from "./GuardDutyClient"; /** * @internal diff --git a/clients/client-guardduty/src/runtimeConfig.ts b/clients/client-guardduty/src/runtimeConfig.ts index fcc24b1c5d411..944b6addffec2 100644 --- a/clients/client-guardduty/src/runtimeConfig.ts +++ b/clients/client-guardduty/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GuardDutyClientConfig } from "./GuardDutyClient"; + +import type { GuardDutyClientConfig } from "./GuardDutyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-guardduty/src/runtimeExtensions.ts b/clients/client-guardduty/src/runtimeExtensions.ts index f35c0464b120f..f9e9e9101a6e3 100644 --- a/clients/client-guardduty/src/runtimeExtensions.ts +++ b/clients/client-guardduty/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GuardDutyExtensionConfiguration } from "./extensionConfiguration"; +import type { GuardDutyExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-guardduty/src/schemas/schemas_0.ts b/clients/client-guardduty/src/schemas/schemas_0.ts index c71e8f756662c..451fd73678adc 100644 --- a/clients/client-guardduty/src/schemas/schemas_0.ts +++ b/clients/client-guardduty/src/schemas/schemas_0.ts @@ -1589,7 +1589,7 @@ const n0 = "com.amazonaws.guardduty"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-health/package.json b/clients/client-health/package.json index c2271c95c380c..7cc396233d672 100644 --- a/clients/client-health/package.json +++ b/clients/client-health/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-health/src/Health.ts b/clients/client-health/src/Health.ts index 5f78fd9059003..7ca95d48d1d28 100644 --- a/clients/client-health/src/Health.ts +++ b/clients/client-health/src/Health.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DescribeAffectedAccountsForOrganizationCommand, @@ -72,7 +72,7 @@ import { EnableHealthServiceAccessForOrganizationCommandInput, EnableHealthServiceAccessForOrganizationCommandOutput, } from "./commands/EnableHealthServiceAccessForOrganizationCommand"; -import { HealthClient, HealthClientConfig } from "./HealthClient"; +import { HealthClient } from "./HealthClient"; const commands = { DescribeAffectedAccountsForOrganizationCommand, diff --git a/clients/client-health/src/HealthClient.ts b/clients/client-health/src/HealthClient.ts index 75d17162fc21c..0d6a6ec35936c 100644 --- a/clients/client-health/src/HealthClient.ts +++ b/clients/client-health/src/HealthClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultHealthHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -114,7 +123,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-health/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-health/src/auth/httpAuthExtensionConfiguration.ts index 63de10d8995fc..8b9ce358d1c0e 100644 --- a/clients/client-health/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-health/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { HealthHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { HealthHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-health/src/auth/httpAuthSchemeProvider.ts b/clients/client-health/src/auth/httpAuthSchemeProvider.ts index b0ab494907133..c7c057e7d8232 100644 --- a/clients/client-health/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-health/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { HealthClientConfig, HealthClientResolvedConfig } from "../HealthClient"; +import { type HealthClientResolvedConfig, HealthClientConfig } from "../HealthClient"; /** * @internal diff --git a/clients/client-health/src/commands/DescribeAffectedAccountsForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeAffectedAccountsForOrganizationCommand.ts index 2a2ebe455dd01..0cad6ad3b432c 100644 --- a/clients/client-health/src/commands/DescribeAffectedAccountsForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeAffectedAccountsForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeAffectedAccountsForOrganizationRequest, DescribeAffectedAccountsForOrganizationResponse, } from "../models/models_0"; diff --git a/clients/client-health/src/commands/DescribeAffectedEntitiesCommand.ts b/clients/client-health/src/commands/DescribeAffectedEntitiesCommand.ts index 9b14723329a9a..8bc4862aa4b62 100644 --- a/clients/client-health/src/commands/DescribeAffectedEntitiesCommand.ts +++ b/clients/client-health/src/commands/DescribeAffectedEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { DescribeAffectedEntitiesRequest, DescribeAffectedEntitiesResponse } from "../models/models_0"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeAffectedEntitiesRequest, DescribeAffectedEntitiesResponse } from "../models/models_0"; import { DescribeAffectedEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/commands/DescribeAffectedEntitiesForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeAffectedEntitiesForOrganizationCommand.ts index d1859914c086a..d50416b5f0bda 100644 --- a/clients/client-health/src/commands/DescribeAffectedEntitiesForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeAffectedEntitiesForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeAffectedEntitiesForOrganizationRequest, DescribeAffectedEntitiesForOrganizationResponse, } from "../models/models_0"; diff --git a/clients/client-health/src/commands/DescribeEntityAggregatesCommand.ts b/clients/client-health/src/commands/DescribeEntityAggregatesCommand.ts index 2e2d2ebb16509..cd03a8323605d 100644 --- a/clients/client-health/src/commands/DescribeEntityAggregatesCommand.ts +++ b/clients/client-health/src/commands/DescribeEntityAggregatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { DescribeEntityAggregatesRequest, DescribeEntityAggregatesResponse } from "../models/models_0"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeEntityAggregatesRequest, DescribeEntityAggregatesResponse } from "../models/models_0"; import { DescribeEntityAggregates } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/commands/DescribeEntityAggregatesForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeEntityAggregatesForOrganizationCommand.ts index edf31f355b44c..d1f7219f53ea9 100644 --- a/clients/client-health/src/commands/DescribeEntityAggregatesForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeEntityAggregatesForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeEntityAggregatesForOrganizationRequest, DescribeEntityAggregatesForOrganizationResponse, } from "../models/models_0"; diff --git a/clients/client-health/src/commands/DescribeEventAggregatesCommand.ts b/clients/client-health/src/commands/DescribeEventAggregatesCommand.ts index 0b74f985458fc..fb62ab364f8bc 100644 --- a/clients/client-health/src/commands/DescribeEventAggregatesCommand.ts +++ b/clients/client-health/src/commands/DescribeEventAggregatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { DescribeEventAggregatesRequest, DescribeEventAggregatesResponse } from "../models/models_0"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeEventAggregatesRequest, DescribeEventAggregatesResponse } from "../models/models_0"; import { DescribeEventAggregates } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/commands/DescribeEventDetailsCommand.ts b/clients/client-health/src/commands/DescribeEventDetailsCommand.ts index 512992067c26e..3a7d1638e57fc 100644 --- a/clients/client-health/src/commands/DescribeEventDetailsCommand.ts +++ b/clients/client-health/src/commands/DescribeEventDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { DescribeEventDetailsRequest, DescribeEventDetailsResponse } from "../models/models_0"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeEventDetailsRequest, DescribeEventDetailsResponse } from "../models/models_0"; import { DescribeEventDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/commands/DescribeEventDetailsForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeEventDetailsForOrganizationCommand.ts index cfe1a72b1bb19..972c364eefe18 100644 --- a/clients/client-health/src/commands/DescribeEventDetailsForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeEventDetailsForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeEventDetailsForOrganizationRequest, DescribeEventDetailsForOrganizationResponse, } from "../models/models_0"; diff --git a/clients/client-health/src/commands/DescribeEventTypesCommand.ts b/clients/client-health/src/commands/DescribeEventTypesCommand.ts index 4cb290345287d..89ec72bc1cccd 100644 --- a/clients/client-health/src/commands/DescribeEventTypesCommand.ts +++ b/clients/client-health/src/commands/DescribeEventTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { DescribeEventTypesRequest, DescribeEventTypesResponse } from "../models/models_0"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeEventTypesRequest, DescribeEventTypesResponse } from "../models/models_0"; import { DescribeEventTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/commands/DescribeEventsCommand.ts b/clients/client-health/src/commands/DescribeEventsCommand.ts index dcaf21e2e4cf4..6c4aaf1ff9c28 100644 --- a/clients/client-health/src/commands/DescribeEventsCommand.ts +++ b/clients/client-health/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { DescribeEventsRequest, DescribeEventsResponse } from "../models/models_0"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeEventsRequest, DescribeEventsResponse } from "../models/models_0"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/commands/DescribeEventsForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeEventsForOrganizationCommand.ts index 94a80e723bae3..96610d397be48 100644 --- a/clients/client-health/src/commands/DescribeEventsForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeEventsForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { DescribeEventsForOrganizationRequest, DescribeEventsForOrganizationResponse } from "../models/models_0"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeEventsForOrganizationRequest, DescribeEventsForOrganizationResponse } from "../models/models_0"; import { DescribeEventsForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/commands/DescribeHealthServiceStatusForOrganizationCommand.ts b/clients/client-health/src/commands/DescribeHealthServiceStatusForOrganizationCommand.ts index 51c34ebc4945c..fa53ce9943bb0 100644 --- a/clients/client-health/src/commands/DescribeHealthServiceStatusForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DescribeHealthServiceStatusForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; -import { DescribeHealthServiceStatusForOrganizationResponse } from "../models/models_0"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { DescribeHealthServiceStatusForOrganizationResponse } from "../models/models_0"; import { DescribeHealthServiceStatusForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/commands/DisableHealthServiceAccessForOrganizationCommand.ts b/clients/client-health/src/commands/DisableHealthServiceAccessForOrganizationCommand.ts index 4ba723df20147..cfb49dd28d480 100644 --- a/clients/client-health/src/commands/DisableHealthServiceAccessForOrganizationCommand.ts +++ b/clients/client-health/src/commands/DisableHealthServiceAccessForOrganizationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; import { DisableHealthServiceAccessForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/commands/EnableHealthServiceAccessForOrganizationCommand.ts b/clients/client-health/src/commands/EnableHealthServiceAccessForOrganizationCommand.ts index abd9bc0755d2b..ad5dc3a029a0c 100644 --- a/clients/client-health/src/commands/EnableHealthServiceAccessForOrganizationCommand.ts +++ b/clients/client-health/src/commands/EnableHealthServiceAccessForOrganizationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; +import type { HealthClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthClient"; import { EnableHealthServiceAccessForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-health/src/endpoint/EndpointParameters.ts b/clients/client-health/src/endpoint/EndpointParameters.ts index 2a921df35aa59..6ea46006b8982 100644 --- a/clients/client-health/src/endpoint/EndpointParameters.ts +++ b/clients/client-health/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-health/src/endpoint/endpointResolver.ts b/clients/client-health/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-health/src/endpoint/endpointResolver.ts +++ b/clients/client-health/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-health/src/extensionConfiguration.ts b/clients/client-health/src/extensionConfiguration.ts index ead5ab21b2fee..6fac330cc0a13 100644 --- a/clients/client-health/src/extensionConfiguration.ts +++ b/clients/client-health/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-health/src/models/HealthServiceException.ts b/clients/client-health/src/models/HealthServiceException.ts index 6ef35ae5223a9..d47652c1db7df 100644 --- a/clients/client-health/src/models/HealthServiceException.ts +++ b/clients/client-health/src/models/HealthServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-health/src/models/errors.ts b/clients/client-health/src/models/errors.ts index 54b7fea6d7f5a..7c533e9055462 100644 --- a/clients/client-health/src/models/errors.ts +++ b/clients/client-health/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { HealthServiceException as __BaseException } from "./HealthServiceException"; diff --git a/clients/client-health/src/pagination/DescribeAffectedAccountsForOrganizationPaginator.ts b/clients/client-health/src/pagination/DescribeAffectedAccountsForOrganizationPaginator.ts index cc6e99349bd8b..d1f2ff149f42d 100644 --- a/clients/client-health/src/pagination/DescribeAffectedAccountsForOrganizationPaginator.ts +++ b/clients/client-health/src/pagination/DescribeAffectedAccountsForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAffectedAccountsForOrganizationCommand, diff --git a/clients/client-health/src/pagination/DescribeAffectedEntitiesForOrganizationPaginator.ts b/clients/client-health/src/pagination/DescribeAffectedEntitiesForOrganizationPaginator.ts index 281a2a80c2794..eaf69f0295bbb 100644 --- a/clients/client-health/src/pagination/DescribeAffectedEntitiesForOrganizationPaginator.ts +++ b/clients/client-health/src/pagination/DescribeAffectedEntitiesForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAffectedEntitiesForOrganizationCommand, diff --git a/clients/client-health/src/pagination/DescribeAffectedEntitiesPaginator.ts b/clients/client-health/src/pagination/DescribeAffectedEntitiesPaginator.ts index 0f35e4f8abe0a..1c30586b79935 100644 --- a/clients/client-health/src/pagination/DescribeAffectedEntitiesPaginator.ts +++ b/clients/client-health/src/pagination/DescribeAffectedEntitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAffectedEntitiesCommand, diff --git a/clients/client-health/src/pagination/DescribeEventAggregatesPaginator.ts b/clients/client-health/src/pagination/DescribeEventAggregatesPaginator.ts index f0acc09a52588..8dcafd0cc6e4e 100644 --- a/clients/client-health/src/pagination/DescribeEventAggregatesPaginator.ts +++ b/clients/client-health/src/pagination/DescribeEventAggregatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventAggregatesCommand, diff --git a/clients/client-health/src/pagination/DescribeEventTypesPaginator.ts b/clients/client-health/src/pagination/DescribeEventTypesPaginator.ts index d232b05b8ca70..fdedd98a760e7 100644 --- a/clients/client-health/src/pagination/DescribeEventTypesPaginator.ts +++ b/clients/client-health/src/pagination/DescribeEventTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventTypesCommand, diff --git a/clients/client-health/src/pagination/DescribeEventsForOrganizationPaginator.ts b/clients/client-health/src/pagination/DescribeEventsForOrganizationPaginator.ts index 4ee089159450b..a4f3f9e551ef2 100644 --- a/clients/client-health/src/pagination/DescribeEventsForOrganizationPaginator.ts +++ b/clients/client-health/src/pagination/DescribeEventsForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsForOrganizationCommand, diff --git a/clients/client-health/src/pagination/DescribeEventsPaginator.ts b/clients/client-health/src/pagination/DescribeEventsPaginator.ts index bf1911ac575d8..eec4a43cae576 100644 --- a/clients/client-health/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-health/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsCommand, diff --git a/clients/client-health/src/pagination/Interfaces.ts b/clients/client-health/src/pagination/Interfaces.ts index d882879312110..61c3fab9b2c6e 100644 --- a/clients/client-health/src/pagination/Interfaces.ts +++ b/clients/client-health/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { HealthClient } from "../HealthClient"; diff --git a/clients/client-health/src/runtimeConfig.browser.ts b/clients/client-health/src/runtimeConfig.browser.ts index e5ff728129c38..8a296804b1fcf 100644 --- a/clients/client-health/src/runtimeConfig.browser.ts +++ b/clients/client-health/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { HealthClientConfig } from "./HealthClient"; + +import type { HealthClientConfig } from "./HealthClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-health/src/runtimeConfig.native.ts b/clients/client-health/src/runtimeConfig.native.ts index 7a0a68b6a1f20..20009b93e27d3 100644 --- a/clients/client-health/src/runtimeConfig.native.ts +++ b/clients/client-health/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { HealthClientConfig } from "./HealthClient"; +import type { HealthClientConfig } from "./HealthClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-health/src/runtimeConfig.shared.ts b/clients/client-health/src/runtimeConfig.shared.ts index a41abfd6a739a..f92cb717b6426 100644 --- a/clients/client-health/src/runtimeConfig.shared.ts +++ b/clients/client-health/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultHealthHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { HealthClientConfig } from "./HealthClient"; +import type { HealthClientConfig } from "./HealthClient"; /** * @internal diff --git a/clients/client-health/src/runtimeConfig.ts b/clients/client-health/src/runtimeConfig.ts index 41681b9d88508..d8dae7bed1f2b 100644 --- a/clients/client-health/src/runtimeConfig.ts +++ b/clients/client-health/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { HealthClientConfig } from "./HealthClient"; + +import type { HealthClientConfig } from "./HealthClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-health/src/runtimeExtensions.ts b/clients/client-health/src/runtimeExtensions.ts index 2d227ebe7befc..7edd8978bcdf9 100644 --- a/clients/client-health/src/runtimeExtensions.ts +++ b/clients/client-health/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { HealthExtensionConfiguration } from "./extensionConfiguration"; +import type { HealthExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-health/src/schemas/schemas_0.ts b/clients/client-health/src/schemas/schemas_0.ts index e9b0289e4296d..0da171b1acc96 100644 --- a/clients/client-health/src/schemas/schemas_0.ts +++ b/clients/client-health/src/schemas/schemas_0.ts @@ -153,7 +153,7 @@ const n0 = "com.amazonaws.health"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-healthlake/package.json b/clients/client-healthlake/package.json index 3dcb8d3bfa3f8..4cf61d15e972d 100644 --- a/clients/client-healthlake/package.json +++ b/clients/client-healthlake/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-healthlake/src/HealthLake.ts b/clients/client-healthlake/src/HealthLake.ts index 2c3c734e05e7c..c71a1faa38fe4 100644 --- a/clients/client-healthlake/src/HealthLake.ts +++ b/clients/client-healthlake/src/HealthLake.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateFHIRDatastoreCommand, @@ -63,7 +63,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { HealthLakeClient, HealthLakeClientConfig } from "./HealthLakeClient"; +import { HealthLakeClient } from "./HealthLakeClient"; const commands = { CreateFHIRDatastoreCommand, diff --git a/clients/client-healthlake/src/HealthLakeClient.ts b/clients/client-healthlake/src/HealthLakeClient.ts index cceec8016d213..d4e6d3d5ef782 100644 --- a/clients/client-healthlake/src/HealthLakeClient.ts +++ b/clients/client-healthlake/src/HealthLakeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultHealthLakeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -95,7 +104,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-healthlake/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-healthlake/src/auth/httpAuthExtensionConfiguration.ts index 7e8cae7c00d77..06b78459b577b 100644 --- a/clients/client-healthlake/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-healthlake/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { HealthLakeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { HealthLakeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-healthlake/src/auth/httpAuthSchemeProvider.ts b/clients/client-healthlake/src/auth/httpAuthSchemeProvider.ts index 953176c9be035..6e0c8891ab903 100644 --- a/clients/client-healthlake/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-healthlake/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { HealthLakeClientConfig, HealthLakeClientResolvedConfig } from "../HealthLakeClient"; +import { type HealthLakeClientResolvedConfig, HealthLakeClientConfig } from "../HealthLakeClient"; /** * @internal diff --git a/clients/client-healthlake/src/commands/CreateFHIRDatastoreCommand.ts b/clients/client-healthlake/src/commands/CreateFHIRDatastoreCommand.ts index 9799048a35f8b..084225b392a0e 100644 --- a/clients/client-healthlake/src/commands/CreateFHIRDatastoreCommand.ts +++ b/clients/client-healthlake/src/commands/CreateFHIRDatastoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { CreateFHIRDatastoreRequest, CreateFHIRDatastoreResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { CreateFHIRDatastoreRequest, CreateFHIRDatastoreResponse } from "../models/models_0"; import { CreateFHIRDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/DeleteFHIRDatastoreCommand.ts b/clients/client-healthlake/src/commands/DeleteFHIRDatastoreCommand.ts index 9c0e2a1ab71e9..4de32ae856c47 100644 --- a/clients/client-healthlake/src/commands/DeleteFHIRDatastoreCommand.ts +++ b/clients/client-healthlake/src/commands/DeleteFHIRDatastoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { DeleteFHIRDatastoreRequest, DeleteFHIRDatastoreResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { DeleteFHIRDatastoreRequest, DeleteFHIRDatastoreResponse } from "../models/models_0"; import { DeleteFHIRDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/DescribeFHIRDatastoreCommand.ts b/clients/client-healthlake/src/commands/DescribeFHIRDatastoreCommand.ts index c72bf0a21d90c..077e02edcf71e 100644 --- a/clients/client-healthlake/src/commands/DescribeFHIRDatastoreCommand.ts +++ b/clients/client-healthlake/src/commands/DescribeFHIRDatastoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { DescribeFHIRDatastoreRequest, DescribeFHIRDatastoreResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { DescribeFHIRDatastoreRequest, DescribeFHIRDatastoreResponse } from "../models/models_0"; import { DescribeFHIRDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/DescribeFHIRExportJobCommand.ts b/clients/client-healthlake/src/commands/DescribeFHIRExportJobCommand.ts index f120a046ee31f..28fa54576750e 100644 --- a/clients/client-healthlake/src/commands/DescribeFHIRExportJobCommand.ts +++ b/clients/client-healthlake/src/commands/DescribeFHIRExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { DescribeFHIRExportJobRequest, DescribeFHIRExportJobResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { DescribeFHIRExportJobRequest, DescribeFHIRExportJobResponse } from "../models/models_0"; import { DescribeFHIRExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/DescribeFHIRImportJobCommand.ts b/clients/client-healthlake/src/commands/DescribeFHIRImportJobCommand.ts index 796f784405719..25e7a97037a9b 100644 --- a/clients/client-healthlake/src/commands/DescribeFHIRImportJobCommand.ts +++ b/clients/client-healthlake/src/commands/DescribeFHIRImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { DescribeFHIRImportJobRequest, DescribeFHIRImportJobResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { DescribeFHIRImportJobRequest, DescribeFHIRImportJobResponse } from "../models/models_0"; import { DescribeFHIRImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/ListFHIRDatastoresCommand.ts b/clients/client-healthlake/src/commands/ListFHIRDatastoresCommand.ts index 4da32108e19b3..af780ebcb3928 100644 --- a/clients/client-healthlake/src/commands/ListFHIRDatastoresCommand.ts +++ b/clients/client-healthlake/src/commands/ListFHIRDatastoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { ListFHIRDatastoresRequest, ListFHIRDatastoresResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { ListFHIRDatastoresRequest, ListFHIRDatastoresResponse } from "../models/models_0"; import { ListFHIRDatastores } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/ListFHIRExportJobsCommand.ts b/clients/client-healthlake/src/commands/ListFHIRExportJobsCommand.ts index 9a5d7306d9ab2..eccfca6c95103 100644 --- a/clients/client-healthlake/src/commands/ListFHIRExportJobsCommand.ts +++ b/clients/client-healthlake/src/commands/ListFHIRExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { ListFHIRExportJobsRequest, ListFHIRExportJobsResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { ListFHIRExportJobsRequest, ListFHIRExportJobsResponse } from "../models/models_0"; import { ListFHIRExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/ListFHIRImportJobsCommand.ts b/clients/client-healthlake/src/commands/ListFHIRImportJobsCommand.ts index 9734ff6b32b53..b4a7eeddcd066 100644 --- a/clients/client-healthlake/src/commands/ListFHIRImportJobsCommand.ts +++ b/clients/client-healthlake/src/commands/ListFHIRImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { ListFHIRImportJobsRequest, ListFHIRImportJobsResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { ListFHIRImportJobsRequest, ListFHIRImportJobsResponse } from "../models/models_0"; import { ListFHIRImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/ListTagsForResourceCommand.ts b/clients/client-healthlake/src/commands/ListTagsForResourceCommand.ts index c42e4c9807a63..c9e43338e3716 100644 --- a/clients/client-healthlake/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-healthlake/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/StartFHIRExportJobCommand.ts b/clients/client-healthlake/src/commands/StartFHIRExportJobCommand.ts index 5596e7242165b..9cd220ee8921c 100644 --- a/clients/client-healthlake/src/commands/StartFHIRExportJobCommand.ts +++ b/clients/client-healthlake/src/commands/StartFHIRExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { StartFHIRExportJobRequest, StartFHIRExportJobResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { StartFHIRExportJobRequest, StartFHIRExportJobResponse } from "../models/models_0"; import { StartFHIRExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/StartFHIRImportJobCommand.ts b/clients/client-healthlake/src/commands/StartFHIRImportJobCommand.ts index b36bc161d1380..9ee24da3ab688 100644 --- a/clients/client-healthlake/src/commands/StartFHIRImportJobCommand.ts +++ b/clients/client-healthlake/src/commands/StartFHIRImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { StartFHIRImportJobRequest, StartFHIRImportJobResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { StartFHIRImportJobRequest, StartFHIRImportJobResponse } from "../models/models_0"; import { StartFHIRImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/TagResourceCommand.ts b/clients/client-healthlake/src/commands/TagResourceCommand.ts index 4039eb75499b3..38813dc8dba80 100644 --- a/clients/client-healthlake/src/commands/TagResourceCommand.ts +++ b/clients/client-healthlake/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/commands/UntagResourceCommand.ts b/clients/client-healthlake/src/commands/UntagResourceCommand.ts index c2d3341ac17c6..cb2c2e588ba11 100644 --- a/clients/client-healthlake/src/commands/UntagResourceCommand.ts +++ b/clients/client-healthlake/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { HealthLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../HealthLakeClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-healthlake/src/endpoint/EndpointParameters.ts b/clients/client-healthlake/src/endpoint/EndpointParameters.ts index a367be20f0153..6169933346fa7 100644 --- a/clients/client-healthlake/src/endpoint/EndpointParameters.ts +++ b/clients/client-healthlake/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-healthlake/src/endpoint/endpointResolver.ts b/clients/client-healthlake/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-healthlake/src/endpoint/endpointResolver.ts +++ b/clients/client-healthlake/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-healthlake/src/extensionConfiguration.ts b/clients/client-healthlake/src/extensionConfiguration.ts index 7ff39832e9b54..741859b9b8d37 100644 --- a/clients/client-healthlake/src/extensionConfiguration.ts +++ b/clients/client-healthlake/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-healthlake/src/models/HealthLakeServiceException.ts b/clients/client-healthlake/src/models/HealthLakeServiceException.ts index b6c8207af1481..df23c04377616 100644 --- a/clients/client-healthlake/src/models/HealthLakeServiceException.ts +++ b/clients/client-healthlake/src/models/HealthLakeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-healthlake/src/models/errors.ts b/clients/client-healthlake/src/models/errors.ts index bfadd2c26cf75..936dec1d703f6 100644 --- a/clients/client-healthlake/src/models/errors.ts +++ b/clients/client-healthlake/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { HealthLakeServiceException as __BaseException } from "./HealthLakeServiceException"; diff --git a/clients/client-healthlake/src/pagination/Interfaces.ts b/clients/client-healthlake/src/pagination/Interfaces.ts index fefe2b12a453a..52af0614d370f 100644 --- a/clients/client-healthlake/src/pagination/Interfaces.ts +++ b/clients/client-healthlake/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { HealthLakeClient } from "../HealthLakeClient"; diff --git a/clients/client-healthlake/src/pagination/ListFHIRDatastoresPaginator.ts b/clients/client-healthlake/src/pagination/ListFHIRDatastoresPaginator.ts index 612e31fa413d1..51895acd9aeac 100644 --- a/clients/client-healthlake/src/pagination/ListFHIRDatastoresPaginator.ts +++ b/clients/client-healthlake/src/pagination/ListFHIRDatastoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFHIRDatastoresCommand, diff --git a/clients/client-healthlake/src/pagination/ListFHIRExportJobsPaginator.ts b/clients/client-healthlake/src/pagination/ListFHIRExportJobsPaginator.ts index 2c6947214565d..eba376151c87d 100644 --- a/clients/client-healthlake/src/pagination/ListFHIRExportJobsPaginator.ts +++ b/clients/client-healthlake/src/pagination/ListFHIRExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFHIRExportJobsCommand, diff --git a/clients/client-healthlake/src/pagination/ListFHIRImportJobsPaginator.ts b/clients/client-healthlake/src/pagination/ListFHIRImportJobsPaginator.ts index f5a8e64ee9ab8..b80618beda999 100644 --- a/clients/client-healthlake/src/pagination/ListFHIRImportJobsPaginator.ts +++ b/clients/client-healthlake/src/pagination/ListFHIRImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFHIRImportJobsCommand, diff --git a/clients/client-healthlake/src/runtimeConfig.browser.ts b/clients/client-healthlake/src/runtimeConfig.browser.ts index ba7630aed7618..1ea2582f5eb52 100644 --- a/clients/client-healthlake/src/runtimeConfig.browser.ts +++ b/clients/client-healthlake/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { HealthLakeClientConfig } from "./HealthLakeClient"; + +import type { HealthLakeClientConfig } from "./HealthLakeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-healthlake/src/runtimeConfig.native.ts b/clients/client-healthlake/src/runtimeConfig.native.ts index 0ea00758306c9..bfc88b1efd03f 100644 --- a/clients/client-healthlake/src/runtimeConfig.native.ts +++ b/clients/client-healthlake/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { HealthLakeClientConfig } from "./HealthLakeClient"; +import type { HealthLakeClientConfig } from "./HealthLakeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-healthlake/src/runtimeConfig.shared.ts b/clients/client-healthlake/src/runtimeConfig.shared.ts index feb0c7c366962..9e2221113beab 100644 --- a/clients/client-healthlake/src/runtimeConfig.shared.ts +++ b/clients/client-healthlake/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultHealthLakeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { HealthLakeClientConfig } from "./HealthLakeClient"; +import type { HealthLakeClientConfig } from "./HealthLakeClient"; /** * @internal diff --git a/clients/client-healthlake/src/runtimeConfig.ts b/clients/client-healthlake/src/runtimeConfig.ts index 28f9ef52f4e1a..1855d42a6c20b 100644 --- a/clients/client-healthlake/src/runtimeConfig.ts +++ b/clients/client-healthlake/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { HealthLakeClientConfig } from "./HealthLakeClient"; + +import type { HealthLakeClientConfig } from "./HealthLakeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-healthlake/src/runtimeExtensions.ts b/clients/client-healthlake/src/runtimeExtensions.ts index 5e0a79c627c45..039110db87a0a 100644 --- a/clients/client-healthlake/src/runtimeExtensions.ts +++ b/clients/client-healthlake/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { HealthLakeExtensionConfiguration } from "./extensionConfiguration"; +import type { HealthLakeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-healthlake/src/schemas/schemas_0.ts b/clients/client-healthlake/src/schemas/schemas_0.ts index e0c53fd6cbe9d..4129a0247269a 100644 --- a/clients/client-healthlake/src/schemas/schemas_0.ts +++ b/clients/client-healthlake/src/schemas/schemas_0.ts @@ -117,7 +117,7 @@ const n0 = "com.amazonaws.healthlake"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-iam/package.json b/clients/client-iam/package.json index 80e80d809f7bc..9cfb29d2aec5a 100644 --- a/clients/client-iam/package.json +++ b/clients/client-iam/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iam/src/IAM.ts b/clients/client-iam/src/IAM.ts index bf382c107e509..2ccca38ea66a5 100644 --- a/clients/client-iam/src/IAM.ts +++ b/clients/client-iam/src/IAM.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptDelegationRequestCommand, @@ -794,7 +794,7 @@ import { UploadSSHPublicKeyCommandInput, UploadSSHPublicKeyCommandOutput, } from "./commands/UploadSSHPublicKeyCommand"; -import { IAMClient, IAMClientConfig } from "./IAMClient"; +import { IAMClient } from "./IAMClient"; const commands = { AcceptDelegationRequestCommand, diff --git a/clients/client-iam/src/IAMClient.ts b/clients/client-iam/src/IAMClient.ts index 3f872d369b9b8..dad69afff1d61 100644 --- a/clients/client-iam/src/IAMClient.ts +++ b/clients/client-iam/src/IAMClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIAMHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -516,7 +525,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iam/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iam/src/auth/httpAuthExtensionConfiguration.ts index 80d065333baa1..4eed67a4ee21e 100644 --- a/clients/client-iam/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iam/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IAMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IAMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iam/src/auth/httpAuthSchemeProvider.ts b/clients/client-iam/src/auth/httpAuthSchemeProvider.ts index dd08bf0d05706..a27331e270238 100644 --- a/clients/client-iam/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iam/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IAMClientConfig, IAMClientResolvedConfig } from "../IAMClient"; +import { type IAMClientResolvedConfig, IAMClientConfig } from "../IAMClient"; /** * @internal diff --git a/clients/client-iam/src/commands/AcceptDelegationRequestCommand.ts b/clients/client-iam/src/commands/AcceptDelegationRequestCommand.ts index 97d23e8c1f74a..474da3712a779 100644 --- a/clients/client-iam/src/commands/AcceptDelegationRequestCommand.ts +++ b/clients/client-iam/src/commands/AcceptDelegationRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { AcceptDelegationRequestRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { AcceptDelegationRequestRequest } from "../models/models_0"; import { AcceptDelegationRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/AddClientIDToOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/AddClientIDToOpenIDConnectProviderCommand.ts index 8c72b3512b5bd..aba941b7fd7e6 100644 --- a/clients/client-iam/src/commands/AddClientIDToOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/AddClientIDToOpenIDConnectProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { AddClientIDToOpenIDConnectProviderRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { AddClientIDToOpenIDConnectProviderRequest } from "../models/models_0"; import { AddClientIDToOpenIDConnectProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/AddRoleToInstanceProfileCommand.ts b/clients/client-iam/src/commands/AddRoleToInstanceProfileCommand.ts index 2e5b6e63506e1..f7e84f9297d8e 100644 --- a/clients/client-iam/src/commands/AddRoleToInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/AddRoleToInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { AddRoleToInstanceProfileRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { AddRoleToInstanceProfileRequest } from "../models/models_0"; import { AddRoleToInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/AddUserToGroupCommand.ts b/clients/client-iam/src/commands/AddUserToGroupCommand.ts index eb1056e10a9e7..79b5f0914fa84 100644 --- a/clients/client-iam/src/commands/AddUserToGroupCommand.ts +++ b/clients/client-iam/src/commands/AddUserToGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { AddUserToGroupRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { AddUserToGroupRequest } from "../models/models_0"; import { AddUserToGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/AssociateDelegationRequestCommand.ts b/clients/client-iam/src/commands/AssociateDelegationRequestCommand.ts index 3508574087727..36798d7bad7e8 100644 --- a/clients/client-iam/src/commands/AssociateDelegationRequestCommand.ts +++ b/clients/client-iam/src/commands/AssociateDelegationRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { AssociateDelegationRequestRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { AssociateDelegationRequestRequest } from "../models/models_0"; import { AssociateDelegationRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/AttachGroupPolicyCommand.ts b/clients/client-iam/src/commands/AttachGroupPolicyCommand.ts index 8b76a2eb7e2f6..6e7d25e98755b 100644 --- a/clients/client-iam/src/commands/AttachGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/AttachGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { AttachGroupPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { AttachGroupPolicyRequest } from "../models/models_0"; import { AttachGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/AttachRolePolicyCommand.ts b/clients/client-iam/src/commands/AttachRolePolicyCommand.ts index 3ed252b00f738..387974a956c68 100644 --- a/clients/client-iam/src/commands/AttachRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/AttachRolePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { AttachRolePolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { AttachRolePolicyRequest } from "../models/models_0"; import { AttachRolePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/AttachUserPolicyCommand.ts b/clients/client-iam/src/commands/AttachUserPolicyCommand.ts index 091448a4520f7..112044ad57317 100644 --- a/clients/client-iam/src/commands/AttachUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/AttachUserPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { AttachUserPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { AttachUserPolicyRequest } from "../models/models_0"; import { AttachUserPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ChangePasswordCommand.ts b/clients/client-iam/src/commands/ChangePasswordCommand.ts index a71f3cb586aaf..aa1408244d688 100644 --- a/clients/client-iam/src/commands/ChangePasswordCommand.ts +++ b/clients/client-iam/src/commands/ChangePasswordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ChangePasswordRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ChangePasswordRequest } from "../models/models_0"; import { ChangePassword } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateAccessKeyCommand.ts b/clients/client-iam/src/commands/CreateAccessKeyCommand.ts index b433bf48bb648..addf709d9ff66 100644 --- a/clients/client-iam/src/commands/CreateAccessKeyCommand.ts +++ b/clients/client-iam/src/commands/CreateAccessKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateAccessKeyRequest, CreateAccessKeyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateAccessKeyRequest, CreateAccessKeyResponse } from "../models/models_0"; import { CreateAccessKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateAccountAliasCommand.ts b/clients/client-iam/src/commands/CreateAccountAliasCommand.ts index 23bc8ef394ccb..41e680fcd060f 100644 --- a/clients/client-iam/src/commands/CreateAccountAliasCommand.ts +++ b/clients/client-iam/src/commands/CreateAccountAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateAccountAliasRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateAccountAliasRequest } from "../models/models_0"; import { CreateAccountAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateDelegationRequestCommand.ts b/clients/client-iam/src/commands/CreateDelegationRequestCommand.ts index adb9655f08117..0ba3559dd59e8 100644 --- a/clients/client-iam/src/commands/CreateDelegationRequestCommand.ts +++ b/clients/client-iam/src/commands/CreateDelegationRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateDelegationRequestRequest, CreateDelegationRequestResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateDelegationRequestRequest, CreateDelegationRequestResponse } from "../models/models_0"; import { CreateDelegationRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateGroupCommand.ts b/clients/client-iam/src/commands/CreateGroupCommand.ts index 920ac8c5d4c17..65edc52d2fa1a 100644 --- a/clients/client-iam/src/commands/CreateGroupCommand.ts +++ b/clients/client-iam/src/commands/CreateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; import { CreateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateInstanceProfileCommand.ts b/clients/client-iam/src/commands/CreateInstanceProfileCommand.ts index 53f6f35e15d99..8d9b52c75f12f 100644 --- a/clients/client-iam/src/commands/CreateInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/CreateInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateInstanceProfileRequest, CreateInstanceProfileResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateInstanceProfileRequest, CreateInstanceProfileResponse } from "../models/models_0"; import { CreateInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateLoginProfileCommand.ts b/clients/client-iam/src/commands/CreateLoginProfileCommand.ts index 4d4d1ab203e43..71db7b2bbe0b6 100644 --- a/clients/client-iam/src/commands/CreateLoginProfileCommand.ts +++ b/clients/client-iam/src/commands/CreateLoginProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateLoginProfileRequest, CreateLoginProfileResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateLoginProfileRequest, CreateLoginProfileResponse } from "../models/models_0"; import { CreateLoginProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts index 0a34a009f66b8..48d2374c1158d 100644 --- a/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/CreateOpenIDConnectProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateOpenIDConnectProviderRequest, CreateOpenIDConnectProviderResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateOpenIDConnectProviderRequest, CreateOpenIDConnectProviderResponse } from "../models/models_0"; import { CreateOpenIDConnectProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreatePolicyCommand.ts b/clients/client-iam/src/commands/CreatePolicyCommand.ts index 99782f16c4a47..a5a1b5bd27c55 100644 --- a/clients/client-iam/src/commands/CreatePolicyCommand.ts +++ b/clients/client-iam/src/commands/CreatePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0"; import { CreatePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreatePolicyVersionCommand.ts b/clients/client-iam/src/commands/CreatePolicyVersionCommand.ts index bd258970e027d..00f5f82f11e9c 100644 --- a/clients/client-iam/src/commands/CreatePolicyVersionCommand.ts +++ b/clients/client-iam/src/commands/CreatePolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreatePolicyVersionRequest, CreatePolicyVersionResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreatePolicyVersionRequest, CreatePolicyVersionResponse } from "../models/models_0"; import { CreatePolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateRoleCommand.ts b/clients/client-iam/src/commands/CreateRoleCommand.ts index b676d41454b7b..b91d992e29acb 100644 --- a/clients/client-iam/src/commands/CreateRoleCommand.ts +++ b/clients/client-iam/src/commands/CreateRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateRoleRequest, CreateRoleResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateRoleRequest, CreateRoleResponse } from "../models/models_0"; import { CreateRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateSAMLProviderCommand.ts b/clients/client-iam/src/commands/CreateSAMLProviderCommand.ts index a2a2e91bb75a1..36bc106c0e9ba 100644 --- a/clients/client-iam/src/commands/CreateSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/CreateSAMLProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateSAMLProviderRequest, CreateSAMLProviderResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateSAMLProviderRequest, CreateSAMLProviderResponse } from "../models/models_0"; import { CreateSAMLProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateServiceLinkedRoleCommand.ts b/clients/client-iam/src/commands/CreateServiceLinkedRoleCommand.ts index f4108f802f8a1..f3760e1538e57 100644 --- a/clients/client-iam/src/commands/CreateServiceLinkedRoleCommand.ts +++ b/clients/client-iam/src/commands/CreateServiceLinkedRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateServiceLinkedRoleRequest, CreateServiceLinkedRoleResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateServiceLinkedRoleRequest, CreateServiceLinkedRoleResponse } from "../models/models_0"; import { CreateServiceLinkedRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateServiceSpecificCredentialCommand.ts b/clients/client-iam/src/commands/CreateServiceSpecificCredentialCommand.ts index 136db3c3d397a..8c4eddda29069 100644 --- a/clients/client-iam/src/commands/CreateServiceSpecificCredentialCommand.ts +++ b/clients/client-iam/src/commands/CreateServiceSpecificCredentialCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateServiceSpecificCredentialRequest, CreateServiceSpecificCredentialResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { + CreateServiceSpecificCredentialRequest, + CreateServiceSpecificCredentialResponse, +} from "../models/models_0"; import { CreateServiceSpecificCredential } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateUserCommand.ts b/clients/client-iam/src/commands/CreateUserCommand.ts index 9ae09241a62e8..7a45da94236a6 100644 --- a/clients/client-iam/src/commands/CreateUserCommand.ts +++ b/clients/client-iam/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/CreateVirtualMFADeviceCommand.ts b/clients/client-iam/src/commands/CreateVirtualMFADeviceCommand.ts index 6ad41c64f559c..ee73f995bdffd 100644 --- a/clients/client-iam/src/commands/CreateVirtualMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/CreateVirtualMFADeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { CreateVirtualMFADeviceRequest, CreateVirtualMFADeviceResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { CreateVirtualMFADeviceRequest, CreateVirtualMFADeviceResponse } from "../models/models_0"; import { CreateVirtualMFADevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeactivateMFADeviceCommand.ts b/clients/client-iam/src/commands/DeactivateMFADeviceCommand.ts index 779a355ddd81e..b9ad33cdc0f32 100644 --- a/clients/client-iam/src/commands/DeactivateMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/DeactivateMFADeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeactivateMFADeviceRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeactivateMFADeviceRequest } from "../models/models_0"; import { DeactivateMFADevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteAccessKeyCommand.ts b/clients/client-iam/src/commands/DeleteAccessKeyCommand.ts index bf69642ac4d12..bd334fcfd7358 100644 --- a/clients/client-iam/src/commands/DeleteAccessKeyCommand.ts +++ b/clients/client-iam/src/commands/DeleteAccessKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteAccessKeyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteAccessKeyRequest } from "../models/models_0"; import { DeleteAccessKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteAccountAliasCommand.ts b/clients/client-iam/src/commands/DeleteAccountAliasCommand.ts index 58c0d789c6e5a..803ad78681a6e 100644 --- a/clients/client-iam/src/commands/DeleteAccountAliasCommand.ts +++ b/clients/client-iam/src/commands/DeleteAccountAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteAccountAliasRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteAccountAliasRequest } from "../models/models_0"; import { DeleteAccountAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteAccountPasswordPolicyCommand.ts b/clients/client-iam/src/commands/DeleteAccountPasswordPolicyCommand.ts index 6f174e83009cf..705477c779746 100644 --- a/clients/client-iam/src/commands/DeleteAccountPasswordPolicyCommand.ts +++ b/clients/client-iam/src/commands/DeleteAccountPasswordPolicyCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; import { DeleteAccountPasswordPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteGroupCommand.ts b/clients/client-iam/src/commands/DeleteGroupCommand.ts index 26d6a8223b7b2..e9c0113b43683 100644 --- a/clients/client-iam/src/commands/DeleteGroupCommand.ts +++ b/clients/client-iam/src/commands/DeleteGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteGroupRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteGroupRequest } from "../models/models_0"; import { DeleteGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteGroupPolicyCommand.ts b/clients/client-iam/src/commands/DeleteGroupPolicyCommand.ts index 1bc878da8d737..63609cecc1e0f 100644 --- a/clients/client-iam/src/commands/DeleteGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/DeleteGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteGroupPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteGroupPolicyRequest } from "../models/models_0"; import { DeleteGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteInstanceProfileCommand.ts b/clients/client-iam/src/commands/DeleteInstanceProfileCommand.ts index b27180d76efdf..d03374d24cf2f 100644 --- a/clients/client-iam/src/commands/DeleteInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/DeleteInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteInstanceProfileRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteInstanceProfileRequest } from "../models/models_0"; import { DeleteInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteLoginProfileCommand.ts b/clients/client-iam/src/commands/DeleteLoginProfileCommand.ts index bced3858d200d..90122750cd87a 100644 --- a/clients/client-iam/src/commands/DeleteLoginProfileCommand.ts +++ b/clients/client-iam/src/commands/DeleteLoginProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteLoginProfileRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteLoginProfileRequest } from "../models/models_0"; import { DeleteLoginProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/DeleteOpenIDConnectProviderCommand.ts index b5f630ed7d036..2d08dd0b2dcbd 100644 --- a/clients/client-iam/src/commands/DeleteOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/DeleteOpenIDConnectProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteOpenIDConnectProviderRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteOpenIDConnectProviderRequest } from "../models/models_0"; import { DeleteOpenIDConnectProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeletePolicyCommand.ts b/clients/client-iam/src/commands/DeletePolicyCommand.ts index dc7e2d68c3aa5..3068b146f26bf 100644 --- a/clients/client-iam/src/commands/DeletePolicyCommand.ts +++ b/clients/client-iam/src/commands/DeletePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeletePolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeletePolicyRequest } from "../models/models_0"; import { DeletePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeletePolicyVersionCommand.ts b/clients/client-iam/src/commands/DeletePolicyVersionCommand.ts index 49324149b9efd..de5dd1ebc9ef1 100644 --- a/clients/client-iam/src/commands/DeletePolicyVersionCommand.ts +++ b/clients/client-iam/src/commands/DeletePolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeletePolicyVersionRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeletePolicyVersionRequest } from "../models/models_0"; import { DeletePolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteRoleCommand.ts b/clients/client-iam/src/commands/DeleteRoleCommand.ts index eeed9c221282d..e40e07b028b1c 100644 --- a/clients/client-iam/src/commands/DeleteRoleCommand.ts +++ b/clients/client-iam/src/commands/DeleteRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteRoleRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteRoleRequest } from "../models/models_0"; import { DeleteRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteRolePermissionsBoundaryCommand.ts b/clients/client-iam/src/commands/DeleteRolePermissionsBoundaryCommand.ts index 4b80885b923f3..696e6a2e87f1d 100644 --- a/clients/client-iam/src/commands/DeleteRolePermissionsBoundaryCommand.ts +++ b/clients/client-iam/src/commands/DeleteRolePermissionsBoundaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteRolePermissionsBoundaryRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteRolePermissionsBoundaryRequest } from "../models/models_0"; import { DeleteRolePermissionsBoundary } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteRolePolicyCommand.ts b/clients/client-iam/src/commands/DeleteRolePolicyCommand.ts index fcf04267a8771..efd079d3e9595 100644 --- a/clients/client-iam/src/commands/DeleteRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/DeleteRolePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteRolePolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteRolePolicyRequest } from "../models/models_0"; import { DeleteRolePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteSAMLProviderCommand.ts b/clients/client-iam/src/commands/DeleteSAMLProviderCommand.ts index a106652c933f4..a89b40692c541 100644 --- a/clients/client-iam/src/commands/DeleteSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/DeleteSAMLProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteSAMLProviderRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteSAMLProviderRequest } from "../models/models_0"; import { DeleteSAMLProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteSSHPublicKeyCommand.ts b/clients/client-iam/src/commands/DeleteSSHPublicKeyCommand.ts index c33912c3012d9..660a46cfe9592 100644 --- a/clients/client-iam/src/commands/DeleteSSHPublicKeyCommand.ts +++ b/clients/client-iam/src/commands/DeleteSSHPublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteSSHPublicKeyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteSSHPublicKeyRequest } from "../models/models_0"; import { DeleteSSHPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteServerCertificateCommand.ts b/clients/client-iam/src/commands/DeleteServerCertificateCommand.ts index ecee43f787dee..a4eadc8f75455 100644 --- a/clients/client-iam/src/commands/DeleteServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/DeleteServerCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteServerCertificateRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteServerCertificateRequest } from "../models/models_0"; import { DeleteServerCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteServiceLinkedRoleCommand.ts b/clients/client-iam/src/commands/DeleteServiceLinkedRoleCommand.ts index 1ebf0b94dd2ee..4f339c8b7c47d 100644 --- a/clients/client-iam/src/commands/DeleteServiceLinkedRoleCommand.ts +++ b/clients/client-iam/src/commands/DeleteServiceLinkedRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteServiceLinkedRoleRequest, DeleteServiceLinkedRoleResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteServiceLinkedRoleRequest, DeleteServiceLinkedRoleResponse } from "../models/models_0"; import { DeleteServiceLinkedRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteServiceSpecificCredentialCommand.ts b/clients/client-iam/src/commands/DeleteServiceSpecificCredentialCommand.ts index 05ceaa86775eb..9098b0883fa28 100644 --- a/clients/client-iam/src/commands/DeleteServiceSpecificCredentialCommand.ts +++ b/clients/client-iam/src/commands/DeleteServiceSpecificCredentialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteServiceSpecificCredentialRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteServiceSpecificCredentialRequest } from "../models/models_0"; import { DeleteServiceSpecificCredential } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteSigningCertificateCommand.ts b/clients/client-iam/src/commands/DeleteSigningCertificateCommand.ts index 6c5173707f038..d396dfe6a9cb5 100644 --- a/clients/client-iam/src/commands/DeleteSigningCertificateCommand.ts +++ b/clients/client-iam/src/commands/DeleteSigningCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteSigningCertificateRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteSigningCertificateRequest } from "../models/models_0"; import { DeleteSigningCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteUserCommand.ts b/clients/client-iam/src/commands/DeleteUserCommand.ts index 857f8a9423827..58b22272d26e3 100644 --- a/clients/client-iam/src/commands/DeleteUserCommand.ts +++ b/clients/client-iam/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteUserRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteUserRequest } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteUserPermissionsBoundaryCommand.ts b/clients/client-iam/src/commands/DeleteUserPermissionsBoundaryCommand.ts index 28188d234e65f..84da2d480dd52 100644 --- a/clients/client-iam/src/commands/DeleteUserPermissionsBoundaryCommand.ts +++ b/clients/client-iam/src/commands/DeleteUserPermissionsBoundaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteUserPermissionsBoundaryRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteUserPermissionsBoundaryRequest } from "../models/models_0"; import { DeleteUserPermissionsBoundary } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteUserPolicyCommand.ts b/clients/client-iam/src/commands/DeleteUserPolicyCommand.ts index 468a156ee374a..63efbb2f21c9d 100644 --- a/clients/client-iam/src/commands/DeleteUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/DeleteUserPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteUserPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteUserPolicyRequest } from "../models/models_0"; import { DeleteUserPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DeleteVirtualMFADeviceCommand.ts b/clients/client-iam/src/commands/DeleteVirtualMFADeviceCommand.ts index 83ea12d7ceb39..9ad06ade71713 100644 --- a/clients/client-iam/src/commands/DeleteVirtualMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/DeleteVirtualMFADeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DeleteVirtualMFADeviceRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DeleteVirtualMFADeviceRequest } from "../models/models_0"; import { DeleteVirtualMFADevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DetachGroupPolicyCommand.ts b/clients/client-iam/src/commands/DetachGroupPolicyCommand.ts index abb9b381a8658..4888e468940b8 100644 --- a/clients/client-iam/src/commands/DetachGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/DetachGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DetachGroupPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DetachGroupPolicyRequest } from "../models/models_0"; import { DetachGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DetachRolePolicyCommand.ts b/clients/client-iam/src/commands/DetachRolePolicyCommand.ts index 450451e6b4e92..98d728b889566 100644 --- a/clients/client-iam/src/commands/DetachRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/DetachRolePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DetachRolePolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DetachRolePolicyRequest } from "../models/models_0"; import { DetachRolePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DetachUserPolicyCommand.ts b/clients/client-iam/src/commands/DetachUserPolicyCommand.ts index cdefe920562ab..86b065011b957 100644 --- a/clients/client-iam/src/commands/DetachUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/DetachUserPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DetachUserPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DetachUserPolicyRequest } from "../models/models_0"; import { DetachUserPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DisableOrganizationsRootCredentialsManagementCommand.ts b/clients/client-iam/src/commands/DisableOrganizationsRootCredentialsManagementCommand.ts index 5c9dc51afd4ef..38d83ea482423 100644 --- a/clients/client-iam/src/commands/DisableOrganizationsRootCredentialsManagementCommand.ts +++ b/clients/client-iam/src/commands/DisableOrganizationsRootCredentialsManagementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { DisableOrganizationsRootCredentialsManagementRequest, DisableOrganizationsRootCredentialsManagementResponse, } from "../models/models_0"; diff --git a/clients/client-iam/src/commands/DisableOrganizationsRootSessionsCommand.ts b/clients/client-iam/src/commands/DisableOrganizationsRootSessionsCommand.ts index a7489092ce7da..5ae04e98e31bd 100644 --- a/clients/client-iam/src/commands/DisableOrganizationsRootSessionsCommand.ts +++ b/clients/client-iam/src/commands/DisableOrganizationsRootSessionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { DisableOrganizationsRootSessionsRequest, DisableOrganizationsRootSessionsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { + DisableOrganizationsRootSessionsRequest, + DisableOrganizationsRootSessionsResponse, +} from "../models/models_0"; import { DisableOrganizationsRootSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/DisableOutboundWebIdentityFederationCommand.ts b/clients/client-iam/src/commands/DisableOutboundWebIdentityFederationCommand.ts index ecae0a1488fc4..8d077d42250ee 100644 --- a/clients/client-iam/src/commands/DisableOutboundWebIdentityFederationCommand.ts +++ b/clients/client-iam/src/commands/DisableOutboundWebIdentityFederationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; import { DisableOutboundWebIdentityFederation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/EnableMFADeviceCommand.ts b/clients/client-iam/src/commands/EnableMFADeviceCommand.ts index 741c6702a6d6d..542e2a133f5b4 100644 --- a/clients/client-iam/src/commands/EnableMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/EnableMFADeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { EnableMFADeviceRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { EnableMFADeviceRequest } from "../models/models_0"; import { EnableMFADevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/EnableOrganizationsRootCredentialsManagementCommand.ts b/clients/client-iam/src/commands/EnableOrganizationsRootCredentialsManagementCommand.ts index c488c060c5b05..0d19c35ed2f67 100644 --- a/clients/client-iam/src/commands/EnableOrganizationsRootCredentialsManagementCommand.ts +++ b/clients/client-iam/src/commands/EnableOrganizationsRootCredentialsManagementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { EnableOrganizationsRootCredentialsManagementRequest, EnableOrganizationsRootCredentialsManagementResponse, } from "../models/models_0"; diff --git a/clients/client-iam/src/commands/EnableOrganizationsRootSessionsCommand.ts b/clients/client-iam/src/commands/EnableOrganizationsRootSessionsCommand.ts index 72c96d2a8e945..b6319eddf7a56 100644 --- a/clients/client-iam/src/commands/EnableOrganizationsRootSessionsCommand.ts +++ b/clients/client-iam/src/commands/EnableOrganizationsRootSessionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { EnableOrganizationsRootSessionsRequest, EnableOrganizationsRootSessionsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { + EnableOrganizationsRootSessionsRequest, + EnableOrganizationsRootSessionsResponse, +} from "../models/models_0"; import { EnableOrganizationsRootSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/EnableOutboundWebIdentityFederationCommand.ts b/clients/client-iam/src/commands/EnableOutboundWebIdentityFederationCommand.ts index f4d7b6b5a5ec3..5ed101b741822 100644 --- a/clients/client-iam/src/commands/EnableOutboundWebIdentityFederationCommand.ts +++ b/clients/client-iam/src/commands/EnableOutboundWebIdentityFederationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { EnableOutboundWebIdentityFederationResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { EnableOutboundWebIdentityFederationResponse } from "../models/models_0"; import { EnableOutboundWebIdentityFederation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GenerateCredentialReportCommand.ts b/clients/client-iam/src/commands/GenerateCredentialReportCommand.ts index a258e9a730ac1..a2ba9b88fc349 100644 --- a/clients/client-iam/src/commands/GenerateCredentialReportCommand.ts +++ b/clients/client-iam/src/commands/GenerateCredentialReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GenerateCredentialReportResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GenerateCredentialReportResponse } from "../models/models_0"; import { GenerateCredentialReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GenerateOrganizationsAccessReportCommand.ts b/clients/client-iam/src/commands/GenerateOrganizationsAccessReportCommand.ts index 090d8bec192f3..105c4c7870abf 100644 --- a/clients/client-iam/src/commands/GenerateOrganizationsAccessReportCommand.ts +++ b/clients/client-iam/src/commands/GenerateOrganizationsAccessReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GenerateOrganizationsAccessReportRequest, GenerateOrganizationsAccessReportResponse, } from "../models/models_0"; diff --git a/clients/client-iam/src/commands/GenerateServiceLastAccessedDetailsCommand.ts b/clients/client-iam/src/commands/GenerateServiceLastAccessedDetailsCommand.ts index 2ca686b3dba29..98ef4eba99815 100644 --- a/clients/client-iam/src/commands/GenerateServiceLastAccessedDetailsCommand.ts +++ b/clients/client-iam/src/commands/GenerateServiceLastAccessedDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GenerateServiceLastAccessedDetailsRequest, GenerateServiceLastAccessedDetailsResponse, } from "../models/models_0"; diff --git a/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts b/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts index 9144bdb348a01..ff8e76fe5e525 100644 --- a/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts +++ b/clients/client-iam/src/commands/GetAccessKeyLastUsedCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetAccessKeyLastUsedRequest, GetAccessKeyLastUsedResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetAccessKeyLastUsedRequest, GetAccessKeyLastUsedResponse } from "../models/models_0"; import { GetAccessKeyLastUsed } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetAccountAuthorizationDetailsCommand.ts b/clients/client-iam/src/commands/GetAccountAuthorizationDetailsCommand.ts index c68301b6a2bea..85a44d8b20963 100644 --- a/clients/client-iam/src/commands/GetAccountAuthorizationDetailsCommand.ts +++ b/clients/client-iam/src/commands/GetAccountAuthorizationDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetAccountAuthorizationDetailsRequest, GetAccountAuthorizationDetailsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetAccountAuthorizationDetailsRequest, GetAccountAuthorizationDetailsResponse } from "../models/models_0"; import { GetAccountAuthorizationDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetAccountPasswordPolicyCommand.ts b/clients/client-iam/src/commands/GetAccountPasswordPolicyCommand.ts index 1e040762a4f9d..6017f0d64fd9a 100644 --- a/clients/client-iam/src/commands/GetAccountPasswordPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetAccountPasswordPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetAccountPasswordPolicyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetAccountPasswordPolicyResponse } from "../models/models_0"; import { GetAccountPasswordPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetAccountSummaryCommand.ts b/clients/client-iam/src/commands/GetAccountSummaryCommand.ts index de636a6f2b033..05cd5f879ebf6 100644 --- a/clients/client-iam/src/commands/GetAccountSummaryCommand.ts +++ b/clients/client-iam/src/commands/GetAccountSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetAccountSummaryResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetAccountSummaryResponse } from "../models/models_0"; import { GetAccountSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetContextKeysForCustomPolicyCommand.ts b/clients/client-iam/src/commands/GetContextKeysForCustomPolicyCommand.ts index 0e03679807424..7c56fb8b1a96f 100644 --- a/clients/client-iam/src/commands/GetContextKeysForCustomPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetContextKeysForCustomPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetContextKeysForCustomPolicyRequest, GetContextKeysForPolicyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetContextKeysForCustomPolicyRequest, GetContextKeysForPolicyResponse } from "../models/models_0"; import { GetContextKeysForCustomPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetContextKeysForPrincipalPolicyCommand.ts b/clients/client-iam/src/commands/GetContextKeysForPrincipalPolicyCommand.ts index fe0f0178e0446..ce07eeda2f6fd 100644 --- a/clients/client-iam/src/commands/GetContextKeysForPrincipalPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetContextKeysForPrincipalPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetContextKeysForPolicyResponse, GetContextKeysForPrincipalPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetContextKeysForPolicyResponse, GetContextKeysForPrincipalPolicyRequest } from "../models/models_0"; import { GetContextKeysForPrincipalPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetCredentialReportCommand.ts b/clients/client-iam/src/commands/GetCredentialReportCommand.ts index aafd2af7b9d70..1501c7ece002a 100644 --- a/clients/client-iam/src/commands/GetCredentialReportCommand.ts +++ b/clients/client-iam/src/commands/GetCredentialReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetCredentialReportResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetCredentialReportResponse } from "../models/models_0"; import { GetCredentialReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetDelegationRequestCommand.ts b/clients/client-iam/src/commands/GetDelegationRequestCommand.ts index 26a9f5899b860..7a0780a142033 100644 --- a/clients/client-iam/src/commands/GetDelegationRequestCommand.ts +++ b/clients/client-iam/src/commands/GetDelegationRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetDelegationRequestRequest, GetDelegationRequestResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetDelegationRequestRequest, GetDelegationRequestResponse } from "../models/models_0"; import { GetDelegationRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetGroupCommand.ts b/clients/client-iam/src/commands/GetGroupCommand.ts index 18d169248bfc6..6c00b0d7dc758 100644 --- a/clients/client-iam/src/commands/GetGroupCommand.ts +++ b/clients/client-iam/src/commands/GetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetGroupRequest, GetGroupResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetGroupRequest, GetGroupResponse } from "../models/models_0"; import { GetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetGroupPolicyCommand.ts b/clients/client-iam/src/commands/GetGroupPolicyCommand.ts index baf2579d5930f..d779cb1435731 100644 --- a/clients/client-iam/src/commands/GetGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetGroupPolicyRequest, GetGroupPolicyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetGroupPolicyRequest, GetGroupPolicyResponse } from "../models/models_0"; import { GetGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetHumanReadableSummaryCommand.ts b/clients/client-iam/src/commands/GetHumanReadableSummaryCommand.ts index bae1b1d52c3a2..3783a0df8d69c 100644 --- a/clients/client-iam/src/commands/GetHumanReadableSummaryCommand.ts +++ b/clients/client-iam/src/commands/GetHumanReadableSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetHumanReadableSummaryRequest, GetHumanReadableSummaryResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetHumanReadableSummaryRequest, GetHumanReadableSummaryResponse } from "../models/models_0"; import { GetHumanReadableSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetInstanceProfileCommand.ts b/clients/client-iam/src/commands/GetInstanceProfileCommand.ts index 7f0b761d1da6d..e6ec5d73fd614 100644 --- a/clients/client-iam/src/commands/GetInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/GetInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetInstanceProfileRequest, GetInstanceProfileResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetInstanceProfileRequest, GetInstanceProfileResponse } from "../models/models_0"; import { GetInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetLoginProfileCommand.ts b/clients/client-iam/src/commands/GetLoginProfileCommand.ts index 38155a3f5fc4d..1e2342da34b63 100644 --- a/clients/client-iam/src/commands/GetLoginProfileCommand.ts +++ b/clients/client-iam/src/commands/GetLoginProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetLoginProfileRequest, GetLoginProfileResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetLoginProfileRequest, GetLoginProfileResponse } from "../models/models_0"; import { GetLoginProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetMFADeviceCommand.ts b/clients/client-iam/src/commands/GetMFADeviceCommand.ts index b7ca2b716bb09..730837aeb2b8e 100644 --- a/clients/client-iam/src/commands/GetMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/GetMFADeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetMFADeviceRequest, GetMFADeviceResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetMFADeviceRequest, GetMFADeviceResponse } from "../models/models_0"; import { GetMFADevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/GetOpenIDConnectProviderCommand.ts index 91a8e04f3d03e..e8f26c0e7c235 100644 --- a/clients/client-iam/src/commands/GetOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/GetOpenIDConnectProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetOpenIDConnectProviderRequest, GetOpenIDConnectProviderResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetOpenIDConnectProviderRequest, GetOpenIDConnectProviderResponse } from "../models/models_0"; import { GetOpenIDConnectProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetOrganizationsAccessReportCommand.ts b/clients/client-iam/src/commands/GetOrganizationsAccessReportCommand.ts index e954cc34213f2..15f540f421f7e 100644 --- a/clients/client-iam/src/commands/GetOrganizationsAccessReportCommand.ts +++ b/clients/client-iam/src/commands/GetOrganizationsAccessReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetOrganizationsAccessReportRequest, GetOrganizationsAccessReportResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetOrganizationsAccessReportRequest, GetOrganizationsAccessReportResponse } from "../models/models_0"; import { GetOrganizationsAccessReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetOutboundWebIdentityFederationInfoCommand.ts b/clients/client-iam/src/commands/GetOutboundWebIdentityFederationInfoCommand.ts index d34683f4affee..f1ecf751a5fc3 100644 --- a/clients/client-iam/src/commands/GetOutboundWebIdentityFederationInfoCommand.ts +++ b/clients/client-iam/src/commands/GetOutboundWebIdentityFederationInfoCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetOutboundWebIdentityFederationInfoResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetOutboundWebIdentityFederationInfoResponse } from "../models/models_0"; import { GetOutboundWebIdentityFederationInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetPolicyCommand.ts b/clients/client-iam/src/commands/GetPolicyCommand.ts index 8779eb863d401..578c347fc6a66 100644 --- a/clients/client-iam/src/commands/GetPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; import { GetPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetPolicyVersionCommand.ts b/clients/client-iam/src/commands/GetPolicyVersionCommand.ts index b3c75ace19694..3c434a6f081eb 100644 --- a/clients/client-iam/src/commands/GetPolicyVersionCommand.ts +++ b/clients/client-iam/src/commands/GetPolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetPolicyVersionRequest, GetPolicyVersionResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetPolicyVersionRequest, GetPolicyVersionResponse } from "../models/models_0"; import { GetPolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetRoleCommand.ts b/clients/client-iam/src/commands/GetRoleCommand.ts index f503a9ad574cd..c04ce050bf7e3 100644 --- a/clients/client-iam/src/commands/GetRoleCommand.ts +++ b/clients/client-iam/src/commands/GetRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetRoleRequest, GetRoleResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetRoleRequest, GetRoleResponse } from "../models/models_0"; import { GetRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetRolePolicyCommand.ts b/clients/client-iam/src/commands/GetRolePolicyCommand.ts index bc2fea99181ea..fe561e1a8bb92 100644 --- a/clients/client-iam/src/commands/GetRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/GetRolePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetRolePolicyRequest, GetRolePolicyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetRolePolicyRequest, GetRolePolicyResponse } from "../models/models_0"; import { GetRolePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetSAMLProviderCommand.ts b/clients/client-iam/src/commands/GetSAMLProviderCommand.ts index 17c57cae2fe50..3a4c05ab0d06a 100644 --- a/clients/client-iam/src/commands/GetSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/GetSAMLProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetSAMLProviderRequest, GetSAMLProviderResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetSAMLProviderRequest, GetSAMLProviderResponse } from "../models/models_0"; import { GetSAMLProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetSSHPublicKeyCommand.ts b/clients/client-iam/src/commands/GetSSHPublicKeyCommand.ts index 6cdeddc8e55dc..2d8764a6c04e3 100644 --- a/clients/client-iam/src/commands/GetSSHPublicKeyCommand.ts +++ b/clients/client-iam/src/commands/GetSSHPublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetSSHPublicKeyRequest, GetSSHPublicKeyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetSSHPublicKeyRequest, GetSSHPublicKeyResponse } from "../models/models_0"; import { GetSSHPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetServerCertificateCommand.ts b/clients/client-iam/src/commands/GetServerCertificateCommand.ts index 679a185735544..0c3da34943eb1 100644 --- a/clients/client-iam/src/commands/GetServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/GetServerCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetServerCertificateRequest, GetServerCertificateResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetServerCertificateRequest, GetServerCertificateResponse } from "../models/models_0"; import { GetServerCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetServiceLastAccessedDetailsCommand.ts b/clients/client-iam/src/commands/GetServiceLastAccessedDetailsCommand.ts index 93b07371a7d8f..9b346c75f3385 100644 --- a/clients/client-iam/src/commands/GetServiceLastAccessedDetailsCommand.ts +++ b/clients/client-iam/src/commands/GetServiceLastAccessedDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetServiceLastAccessedDetailsRequest, GetServiceLastAccessedDetailsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetServiceLastAccessedDetailsRequest, GetServiceLastAccessedDetailsResponse } from "../models/models_0"; import { GetServiceLastAccessedDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.ts b/clients/client-iam/src/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.ts index 604daad45367b..498caf280c3e5 100644 --- a/clients/client-iam/src/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.ts +++ b/clients/client-iam/src/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetServiceLastAccessedDetailsWithEntitiesRequest, GetServiceLastAccessedDetailsWithEntitiesResponse, } from "../models/models_0"; diff --git a/clients/client-iam/src/commands/GetServiceLinkedRoleDeletionStatusCommand.ts b/clients/client-iam/src/commands/GetServiceLinkedRoleDeletionStatusCommand.ts index 3a950da4a5261..846a5c1c6e934 100644 --- a/clients/client-iam/src/commands/GetServiceLinkedRoleDeletionStatusCommand.ts +++ b/clients/client-iam/src/commands/GetServiceLinkedRoleDeletionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetServiceLinkedRoleDeletionStatusRequest, GetServiceLinkedRoleDeletionStatusResponse, } from "../models/models_0"; diff --git a/clients/client-iam/src/commands/GetUserCommand.ts b/clients/client-iam/src/commands/GetUserCommand.ts index e0b66c2d106ef..d7424db356f34 100644 --- a/clients/client-iam/src/commands/GetUserCommand.ts +++ b/clients/client-iam/src/commands/GetUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetUserRequest, GetUserResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetUserRequest, GetUserResponse } from "../models/models_0"; import { GetUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/GetUserPolicyCommand.ts b/clients/client-iam/src/commands/GetUserPolicyCommand.ts index be00c2f3c05b3..f93c616f06619 100644 --- a/clients/client-iam/src/commands/GetUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/GetUserPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { GetUserPolicyRequest, GetUserPolicyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { GetUserPolicyRequest, GetUserPolicyResponse } from "../models/models_0"; import { GetUserPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListAccessKeysCommand.ts b/clients/client-iam/src/commands/ListAccessKeysCommand.ts index 4cbd8e3fbee14..bcc4ae4b1c139 100644 --- a/clients/client-iam/src/commands/ListAccessKeysCommand.ts +++ b/clients/client-iam/src/commands/ListAccessKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListAccessKeysRequest, ListAccessKeysResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListAccessKeysRequest, ListAccessKeysResponse } from "../models/models_0"; import { ListAccessKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListAccountAliasesCommand.ts b/clients/client-iam/src/commands/ListAccountAliasesCommand.ts index b986f71ff53c9..915d3e2347e27 100644 --- a/clients/client-iam/src/commands/ListAccountAliasesCommand.ts +++ b/clients/client-iam/src/commands/ListAccountAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListAccountAliasesRequest, ListAccountAliasesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListAccountAliasesRequest, ListAccountAliasesResponse } from "../models/models_0"; import { ListAccountAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListAttachedGroupPoliciesCommand.ts b/clients/client-iam/src/commands/ListAttachedGroupPoliciesCommand.ts index 8b9ec46e153e5..c0ba6ed69d7fb 100644 --- a/clients/client-iam/src/commands/ListAttachedGroupPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListAttachedGroupPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListAttachedGroupPoliciesRequest, ListAttachedGroupPoliciesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListAttachedGroupPoliciesRequest, ListAttachedGroupPoliciesResponse } from "../models/models_0"; import { ListAttachedGroupPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListAttachedRolePoliciesCommand.ts b/clients/client-iam/src/commands/ListAttachedRolePoliciesCommand.ts index eed65776f7c73..bc7642698b144 100644 --- a/clients/client-iam/src/commands/ListAttachedRolePoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListAttachedRolePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListAttachedRolePoliciesRequest, ListAttachedRolePoliciesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListAttachedRolePoliciesRequest, ListAttachedRolePoliciesResponse } from "../models/models_0"; import { ListAttachedRolePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListAttachedUserPoliciesCommand.ts b/clients/client-iam/src/commands/ListAttachedUserPoliciesCommand.ts index 550d90981d0b7..0ca3285e00e90 100644 --- a/clients/client-iam/src/commands/ListAttachedUserPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListAttachedUserPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListAttachedUserPoliciesRequest, ListAttachedUserPoliciesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListAttachedUserPoliciesRequest, ListAttachedUserPoliciesResponse } from "../models/models_0"; import { ListAttachedUserPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListDelegationRequestsCommand.ts b/clients/client-iam/src/commands/ListDelegationRequestsCommand.ts index 70697ee831be2..587fd88543c10 100644 --- a/clients/client-iam/src/commands/ListDelegationRequestsCommand.ts +++ b/clients/client-iam/src/commands/ListDelegationRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListDelegationRequestsRequest, ListDelegationRequestsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListDelegationRequestsRequest, ListDelegationRequestsResponse } from "../models/models_0"; import { ListDelegationRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListEntitiesForPolicyCommand.ts b/clients/client-iam/src/commands/ListEntitiesForPolicyCommand.ts index f1ebb1674be8d..90c4d8f936e21 100644 --- a/clients/client-iam/src/commands/ListEntitiesForPolicyCommand.ts +++ b/clients/client-iam/src/commands/ListEntitiesForPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListEntitiesForPolicyRequest, ListEntitiesForPolicyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListEntitiesForPolicyRequest, ListEntitiesForPolicyResponse } from "../models/models_0"; import { ListEntitiesForPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListGroupPoliciesCommand.ts b/clients/client-iam/src/commands/ListGroupPoliciesCommand.ts index 3c4e4837bb492..95e8f8f36aadb 100644 --- a/clients/client-iam/src/commands/ListGroupPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListGroupPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListGroupPoliciesRequest, ListGroupPoliciesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListGroupPoliciesRequest, ListGroupPoliciesResponse } from "../models/models_0"; import { ListGroupPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListGroupsCommand.ts b/clients/client-iam/src/commands/ListGroupsCommand.ts index d649cfaf699f6..f4ef79405d755 100644 --- a/clients/client-iam/src/commands/ListGroupsCommand.ts +++ b/clients/client-iam/src/commands/ListGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; import { ListGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListGroupsForUserCommand.ts b/clients/client-iam/src/commands/ListGroupsForUserCommand.ts index 62ce678077753..8180b67d9cfa3 100644 --- a/clients/client-iam/src/commands/ListGroupsForUserCommand.ts +++ b/clients/client-iam/src/commands/ListGroupsForUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListGroupsForUserRequest, ListGroupsForUserResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListGroupsForUserRequest, ListGroupsForUserResponse } from "../models/models_0"; import { ListGroupsForUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListInstanceProfileTagsCommand.ts b/clients/client-iam/src/commands/ListInstanceProfileTagsCommand.ts index 8caaaf58f364d..374326795eba0 100644 --- a/clients/client-iam/src/commands/ListInstanceProfileTagsCommand.ts +++ b/clients/client-iam/src/commands/ListInstanceProfileTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListInstanceProfileTagsRequest, ListInstanceProfileTagsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListInstanceProfileTagsRequest, ListInstanceProfileTagsResponse } from "../models/models_0"; import { ListInstanceProfileTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListInstanceProfilesCommand.ts b/clients/client-iam/src/commands/ListInstanceProfilesCommand.ts index 5e76f089cc047..7bb1bfa2f3cbd 100644 --- a/clients/client-iam/src/commands/ListInstanceProfilesCommand.ts +++ b/clients/client-iam/src/commands/ListInstanceProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListInstanceProfilesRequest, ListInstanceProfilesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListInstanceProfilesRequest, ListInstanceProfilesResponse } from "../models/models_0"; import { ListInstanceProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListInstanceProfilesForRoleCommand.ts b/clients/client-iam/src/commands/ListInstanceProfilesForRoleCommand.ts index 3d854554009cd..dd0daa39962ae 100644 --- a/clients/client-iam/src/commands/ListInstanceProfilesForRoleCommand.ts +++ b/clients/client-iam/src/commands/ListInstanceProfilesForRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListInstanceProfilesForRoleRequest, ListInstanceProfilesForRoleResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListInstanceProfilesForRoleRequest, ListInstanceProfilesForRoleResponse } from "../models/models_0"; import { ListInstanceProfilesForRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListMFADeviceTagsCommand.ts b/clients/client-iam/src/commands/ListMFADeviceTagsCommand.ts index 3a3662da39ee4..5961ccfcc98b0 100644 --- a/clients/client-iam/src/commands/ListMFADeviceTagsCommand.ts +++ b/clients/client-iam/src/commands/ListMFADeviceTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListMFADeviceTagsRequest, ListMFADeviceTagsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListMFADeviceTagsRequest, ListMFADeviceTagsResponse } from "../models/models_0"; import { ListMFADeviceTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListMFADevicesCommand.ts b/clients/client-iam/src/commands/ListMFADevicesCommand.ts index bf29a04a515f1..136a148af57fd 100644 --- a/clients/client-iam/src/commands/ListMFADevicesCommand.ts +++ b/clients/client-iam/src/commands/ListMFADevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListMFADevicesRequest, ListMFADevicesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListMFADevicesRequest, ListMFADevicesResponse } from "../models/models_0"; import { ListMFADevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListOpenIDConnectProviderTagsCommand.ts b/clients/client-iam/src/commands/ListOpenIDConnectProviderTagsCommand.ts index d69292cbdfc1e..53e945de7e4db 100644 --- a/clients/client-iam/src/commands/ListOpenIDConnectProviderTagsCommand.ts +++ b/clients/client-iam/src/commands/ListOpenIDConnectProviderTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListOpenIDConnectProviderTagsRequest, ListOpenIDConnectProviderTagsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListOpenIDConnectProviderTagsRequest, ListOpenIDConnectProviderTagsResponse } from "../models/models_0"; import { ListOpenIDConnectProviderTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListOpenIDConnectProvidersCommand.ts b/clients/client-iam/src/commands/ListOpenIDConnectProvidersCommand.ts index 986130e89e3d0..2ecc60a3411ab 100644 --- a/clients/client-iam/src/commands/ListOpenIDConnectProvidersCommand.ts +++ b/clients/client-iam/src/commands/ListOpenIDConnectProvidersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListOpenIDConnectProvidersRequest, ListOpenIDConnectProvidersResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListOpenIDConnectProvidersRequest, ListOpenIDConnectProvidersResponse } from "../models/models_0"; import { ListOpenIDConnectProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListOrganizationsFeaturesCommand.ts b/clients/client-iam/src/commands/ListOrganizationsFeaturesCommand.ts index 425a8f587cbae..d178dccd5047f 100644 --- a/clients/client-iam/src/commands/ListOrganizationsFeaturesCommand.ts +++ b/clients/client-iam/src/commands/ListOrganizationsFeaturesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListOrganizationsFeaturesRequest, ListOrganizationsFeaturesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListOrganizationsFeaturesRequest, ListOrganizationsFeaturesResponse } from "../models/models_0"; import { ListOrganizationsFeatures } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListPoliciesCommand.ts b/clients/client-iam/src/commands/ListPoliciesCommand.ts index 97ef97ab5aa72..4631931e23a19 100644 --- a/clients/client-iam/src/commands/ListPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0"; import { ListPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListPoliciesGrantingServiceAccessCommand.ts b/clients/client-iam/src/commands/ListPoliciesGrantingServiceAccessCommand.ts index 2b4fbaee2941e..8bea3e58e141d 100644 --- a/clients/client-iam/src/commands/ListPoliciesGrantingServiceAccessCommand.ts +++ b/clients/client-iam/src/commands/ListPoliciesGrantingServiceAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListPoliciesGrantingServiceAccessRequest, ListPoliciesGrantingServiceAccessResponse, } from "../models/models_0"; diff --git a/clients/client-iam/src/commands/ListPolicyTagsCommand.ts b/clients/client-iam/src/commands/ListPolicyTagsCommand.ts index 858305bb8c174..c36534a5a1a42 100644 --- a/clients/client-iam/src/commands/ListPolicyTagsCommand.ts +++ b/clients/client-iam/src/commands/ListPolicyTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListPolicyTagsRequest, ListPolicyTagsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListPolicyTagsRequest, ListPolicyTagsResponse } from "../models/models_0"; import { ListPolicyTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListPolicyVersionsCommand.ts b/clients/client-iam/src/commands/ListPolicyVersionsCommand.ts index 2ef32db730a1f..3a77a0851b0e0 100644 --- a/clients/client-iam/src/commands/ListPolicyVersionsCommand.ts +++ b/clients/client-iam/src/commands/ListPolicyVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListPolicyVersionsRequest, ListPolicyVersionsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListPolicyVersionsRequest, ListPolicyVersionsResponse } from "../models/models_0"; import { ListPolicyVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListRolePoliciesCommand.ts b/clients/client-iam/src/commands/ListRolePoliciesCommand.ts index f10b744f89aa4..d3b1e003b1251 100644 --- a/clients/client-iam/src/commands/ListRolePoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListRolePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListRolePoliciesRequest, ListRolePoliciesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListRolePoliciesRequest, ListRolePoliciesResponse } from "../models/models_0"; import { ListRolePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListRoleTagsCommand.ts b/clients/client-iam/src/commands/ListRoleTagsCommand.ts index 3f53d19c6d214..10e1c5ac5210b 100644 --- a/clients/client-iam/src/commands/ListRoleTagsCommand.ts +++ b/clients/client-iam/src/commands/ListRoleTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListRoleTagsRequest, ListRoleTagsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListRoleTagsRequest, ListRoleTagsResponse } from "../models/models_0"; import { ListRoleTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListRolesCommand.ts b/clients/client-iam/src/commands/ListRolesCommand.ts index d2c5a8785a165..e42e5674b9bad 100644 --- a/clients/client-iam/src/commands/ListRolesCommand.ts +++ b/clients/client-iam/src/commands/ListRolesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListRolesRequest, ListRolesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListRolesRequest, ListRolesResponse } from "../models/models_0"; import { ListRoles } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListSAMLProviderTagsCommand.ts b/clients/client-iam/src/commands/ListSAMLProviderTagsCommand.ts index f19f806e54e2e..3dacc138b05d9 100644 --- a/clients/client-iam/src/commands/ListSAMLProviderTagsCommand.ts +++ b/clients/client-iam/src/commands/ListSAMLProviderTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListSAMLProviderTagsRequest, ListSAMLProviderTagsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListSAMLProviderTagsRequest, ListSAMLProviderTagsResponse } from "../models/models_0"; import { ListSAMLProviderTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListSAMLProvidersCommand.ts b/clients/client-iam/src/commands/ListSAMLProvidersCommand.ts index f89e73f38f063..a999b44c533cd 100644 --- a/clients/client-iam/src/commands/ListSAMLProvidersCommand.ts +++ b/clients/client-iam/src/commands/ListSAMLProvidersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListSAMLProvidersRequest, ListSAMLProvidersResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListSAMLProvidersRequest, ListSAMLProvidersResponse } from "../models/models_0"; import { ListSAMLProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListSSHPublicKeysCommand.ts b/clients/client-iam/src/commands/ListSSHPublicKeysCommand.ts index 9b9cf40b4c875..6603e068b0b39 100644 --- a/clients/client-iam/src/commands/ListSSHPublicKeysCommand.ts +++ b/clients/client-iam/src/commands/ListSSHPublicKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListSSHPublicKeysRequest, ListSSHPublicKeysResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListSSHPublicKeysRequest, ListSSHPublicKeysResponse } from "../models/models_0"; import { ListSSHPublicKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListServerCertificateTagsCommand.ts b/clients/client-iam/src/commands/ListServerCertificateTagsCommand.ts index 61e43a996ffa0..520e44c6d53c9 100644 --- a/clients/client-iam/src/commands/ListServerCertificateTagsCommand.ts +++ b/clients/client-iam/src/commands/ListServerCertificateTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListServerCertificateTagsRequest, ListServerCertificateTagsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListServerCertificateTagsRequest, ListServerCertificateTagsResponse } from "../models/models_0"; import { ListServerCertificateTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListServerCertificatesCommand.ts b/clients/client-iam/src/commands/ListServerCertificatesCommand.ts index 23dff7d6be5db..de2ec74fd06b0 100644 --- a/clients/client-iam/src/commands/ListServerCertificatesCommand.ts +++ b/clients/client-iam/src/commands/ListServerCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListServerCertificatesRequest, ListServerCertificatesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListServerCertificatesRequest, ListServerCertificatesResponse } from "../models/models_0"; import { ListServerCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListServiceSpecificCredentialsCommand.ts b/clients/client-iam/src/commands/ListServiceSpecificCredentialsCommand.ts index 2fdc2beb450f8..84a6f58bf747e 100644 --- a/clients/client-iam/src/commands/ListServiceSpecificCredentialsCommand.ts +++ b/clients/client-iam/src/commands/ListServiceSpecificCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListServiceSpecificCredentialsRequest, ListServiceSpecificCredentialsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListServiceSpecificCredentialsRequest, ListServiceSpecificCredentialsResponse } from "../models/models_0"; import { ListServiceSpecificCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListSigningCertificatesCommand.ts b/clients/client-iam/src/commands/ListSigningCertificatesCommand.ts index 54bc521b08d23..8627038e52d1c 100644 --- a/clients/client-iam/src/commands/ListSigningCertificatesCommand.ts +++ b/clients/client-iam/src/commands/ListSigningCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListSigningCertificatesRequest, ListSigningCertificatesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListSigningCertificatesRequest, ListSigningCertificatesResponse } from "../models/models_0"; import { ListSigningCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListUserPoliciesCommand.ts b/clients/client-iam/src/commands/ListUserPoliciesCommand.ts index 261d80f35765c..70a1db795e967 100644 --- a/clients/client-iam/src/commands/ListUserPoliciesCommand.ts +++ b/clients/client-iam/src/commands/ListUserPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListUserPoliciesRequest, ListUserPoliciesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListUserPoliciesRequest, ListUserPoliciesResponse } from "../models/models_0"; import { ListUserPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListUserTagsCommand.ts b/clients/client-iam/src/commands/ListUserTagsCommand.ts index 568462fc081ef..626f03dd39160 100644 --- a/clients/client-iam/src/commands/ListUserTagsCommand.ts +++ b/clients/client-iam/src/commands/ListUserTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListUserTagsRequest, ListUserTagsResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListUserTagsRequest, ListUserTagsResponse } from "../models/models_0"; import { ListUserTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListUsersCommand.ts b/clients/client-iam/src/commands/ListUsersCommand.ts index eeaed969e4a35..a5e180e88d987 100644 --- a/clients/client-iam/src/commands/ListUsersCommand.ts +++ b/clients/client-iam/src/commands/ListUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_0"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ListVirtualMFADevicesCommand.ts b/clients/client-iam/src/commands/ListVirtualMFADevicesCommand.ts index 2b389b6315baf..efe46ee4bb4d1 100644 --- a/clients/client-iam/src/commands/ListVirtualMFADevicesCommand.ts +++ b/clients/client-iam/src/commands/ListVirtualMFADevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ListVirtualMFADevicesRequest, ListVirtualMFADevicesResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ListVirtualMFADevicesRequest, ListVirtualMFADevicesResponse } from "../models/models_0"; import { ListVirtualMFADevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/PutGroupPolicyCommand.ts b/clients/client-iam/src/commands/PutGroupPolicyCommand.ts index 8363c9b374f9f..0c715696eaa5a 100644 --- a/clients/client-iam/src/commands/PutGroupPolicyCommand.ts +++ b/clients/client-iam/src/commands/PutGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { PutGroupPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { PutGroupPolicyRequest } from "../models/models_0"; import { PutGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/PutRolePermissionsBoundaryCommand.ts b/clients/client-iam/src/commands/PutRolePermissionsBoundaryCommand.ts index 53acf42ca8b3a..fd50578a5ba17 100644 --- a/clients/client-iam/src/commands/PutRolePermissionsBoundaryCommand.ts +++ b/clients/client-iam/src/commands/PutRolePermissionsBoundaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { PutRolePermissionsBoundaryRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { PutRolePermissionsBoundaryRequest } from "../models/models_0"; import { PutRolePermissionsBoundary } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/PutRolePolicyCommand.ts b/clients/client-iam/src/commands/PutRolePolicyCommand.ts index aa236f274df67..0c58e2053f2c0 100644 --- a/clients/client-iam/src/commands/PutRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/PutRolePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { PutRolePolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { PutRolePolicyRequest } from "../models/models_0"; import { PutRolePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/PutUserPermissionsBoundaryCommand.ts b/clients/client-iam/src/commands/PutUserPermissionsBoundaryCommand.ts index dbbf8ac9c1237..d6e3918fb1b62 100644 --- a/clients/client-iam/src/commands/PutUserPermissionsBoundaryCommand.ts +++ b/clients/client-iam/src/commands/PutUserPermissionsBoundaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { PutUserPermissionsBoundaryRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { PutUserPermissionsBoundaryRequest } from "../models/models_0"; import { PutUserPermissionsBoundary } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/PutUserPolicyCommand.ts b/clients/client-iam/src/commands/PutUserPolicyCommand.ts index 155bc4c2c6a44..c539e136e0e2a 100644 --- a/clients/client-iam/src/commands/PutUserPolicyCommand.ts +++ b/clients/client-iam/src/commands/PutUserPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { PutUserPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { PutUserPolicyRequest } from "../models/models_0"; import { PutUserPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/RejectDelegationRequestCommand.ts b/clients/client-iam/src/commands/RejectDelegationRequestCommand.ts index 32701e2c4a109..4d159f594494a 100644 --- a/clients/client-iam/src/commands/RejectDelegationRequestCommand.ts +++ b/clients/client-iam/src/commands/RejectDelegationRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { RejectDelegationRequestRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { RejectDelegationRequestRequest } from "../models/models_0"; import { RejectDelegationRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/RemoveClientIDFromOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/RemoveClientIDFromOpenIDConnectProviderCommand.ts index 12288d1cb9d49..cc811ca797b7b 100644 --- a/clients/client-iam/src/commands/RemoveClientIDFromOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/RemoveClientIDFromOpenIDConnectProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { RemoveClientIDFromOpenIDConnectProviderRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { RemoveClientIDFromOpenIDConnectProviderRequest } from "../models/models_0"; import { RemoveClientIDFromOpenIDConnectProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/RemoveRoleFromInstanceProfileCommand.ts b/clients/client-iam/src/commands/RemoveRoleFromInstanceProfileCommand.ts index e319f2ca6d10d..bf69ddfab5b38 100644 --- a/clients/client-iam/src/commands/RemoveRoleFromInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/RemoveRoleFromInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { RemoveRoleFromInstanceProfileRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { RemoveRoleFromInstanceProfileRequest } from "../models/models_0"; import { RemoveRoleFromInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/RemoveUserFromGroupCommand.ts b/clients/client-iam/src/commands/RemoveUserFromGroupCommand.ts index 25b991cedb7bc..4f741750fc6c4 100644 --- a/clients/client-iam/src/commands/RemoveUserFromGroupCommand.ts +++ b/clients/client-iam/src/commands/RemoveUserFromGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { RemoveUserFromGroupRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { RemoveUserFromGroupRequest } from "../models/models_0"; import { RemoveUserFromGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ResetServiceSpecificCredentialCommand.ts b/clients/client-iam/src/commands/ResetServiceSpecificCredentialCommand.ts index 6d3d1574952e6..1a71afa087afe 100644 --- a/clients/client-iam/src/commands/ResetServiceSpecificCredentialCommand.ts +++ b/clients/client-iam/src/commands/ResetServiceSpecificCredentialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ResetServiceSpecificCredentialRequest, ResetServiceSpecificCredentialResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ResetServiceSpecificCredentialRequest, ResetServiceSpecificCredentialResponse } from "../models/models_0"; import { ResetServiceSpecificCredential } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/ResyncMFADeviceCommand.ts b/clients/client-iam/src/commands/ResyncMFADeviceCommand.ts index 2213ca62e4977..0ce6d0093d232 100644 --- a/clients/client-iam/src/commands/ResyncMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/ResyncMFADeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { ResyncMFADeviceRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { ResyncMFADeviceRequest } from "../models/models_0"; import { ResyncMFADevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/SendDelegationTokenCommand.ts b/clients/client-iam/src/commands/SendDelegationTokenCommand.ts index 0a1508f2ec93e..26e5205279899 100644 --- a/clients/client-iam/src/commands/SendDelegationTokenCommand.ts +++ b/clients/client-iam/src/commands/SendDelegationTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { SendDelegationTokenRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { SendDelegationTokenRequest } from "../models/models_0"; import { SendDelegationToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/SetDefaultPolicyVersionCommand.ts b/clients/client-iam/src/commands/SetDefaultPolicyVersionCommand.ts index 0cf07bcde78b2..1380cb349fde3 100644 --- a/clients/client-iam/src/commands/SetDefaultPolicyVersionCommand.ts +++ b/clients/client-iam/src/commands/SetDefaultPolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { SetDefaultPolicyVersionRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { SetDefaultPolicyVersionRequest } from "../models/models_0"; import { SetDefaultPolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/SetSecurityTokenServicePreferencesCommand.ts b/clients/client-iam/src/commands/SetSecurityTokenServicePreferencesCommand.ts index b92a7898a6ade..bb5bc4221fe3e 100644 --- a/clients/client-iam/src/commands/SetSecurityTokenServicePreferencesCommand.ts +++ b/clients/client-iam/src/commands/SetSecurityTokenServicePreferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { SetSecurityTokenServicePreferencesRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { SetSecurityTokenServicePreferencesRequest } from "../models/models_0"; import { SetSecurityTokenServicePreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/SimulateCustomPolicyCommand.ts b/clients/client-iam/src/commands/SimulateCustomPolicyCommand.ts index 3e0fa23b0f1e6..38c96e423334b 100644 --- a/clients/client-iam/src/commands/SimulateCustomPolicyCommand.ts +++ b/clients/client-iam/src/commands/SimulateCustomPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { SimulateCustomPolicyRequest, SimulatePolicyResponse } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { SimulateCustomPolicyRequest, SimulatePolicyResponse } from "../models/models_0"; import { SimulateCustomPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/SimulatePrincipalPolicyCommand.ts b/clients/client-iam/src/commands/SimulatePrincipalPolicyCommand.ts index ac7022f2037bc..55e9ffe4b9d4e 100644 --- a/clients/client-iam/src/commands/SimulatePrincipalPolicyCommand.ts +++ b/clients/client-iam/src/commands/SimulatePrincipalPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { SimulatePolicyResponse, SimulatePrincipalPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { SimulatePolicyResponse, SimulatePrincipalPolicyRequest } from "../models/models_0"; import { SimulatePrincipalPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/TagInstanceProfileCommand.ts b/clients/client-iam/src/commands/TagInstanceProfileCommand.ts index 132d04f75307c..4553c8baf0288 100644 --- a/clients/client-iam/src/commands/TagInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/TagInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { TagInstanceProfileRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { TagInstanceProfileRequest } from "../models/models_0"; import { TagInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/TagMFADeviceCommand.ts b/clients/client-iam/src/commands/TagMFADeviceCommand.ts index 51353d6ba2dfd..c772501c712ad 100644 --- a/clients/client-iam/src/commands/TagMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/TagMFADeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { TagMFADeviceRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { TagMFADeviceRequest } from "../models/models_0"; import { TagMFADevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/TagOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/TagOpenIDConnectProviderCommand.ts index 967d918f0ebd8..75489481330f9 100644 --- a/clients/client-iam/src/commands/TagOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/TagOpenIDConnectProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { TagOpenIDConnectProviderRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { TagOpenIDConnectProviderRequest } from "../models/models_0"; import { TagOpenIDConnectProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/TagPolicyCommand.ts b/clients/client-iam/src/commands/TagPolicyCommand.ts index 187f23458c34c..b9fd8f70c1239 100644 --- a/clients/client-iam/src/commands/TagPolicyCommand.ts +++ b/clients/client-iam/src/commands/TagPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { TagPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { TagPolicyRequest } from "../models/models_0"; import { TagPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/TagRoleCommand.ts b/clients/client-iam/src/commands/TagRoleCommand.ts index 748fdbb41c953..2018821221bff 100644 --- a/clients/client-iam/src/commands/TagRoleCommand.ts +++ b/clients/client-iam/src/commands/TagRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { TagRoleRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { TagRoleRequest } from "../models/models_0"; import { TagRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/TagSAMLProviderCommand.ts b/clients/client-iam/src/commands/TagSAMLProviderCommand.ts index afb1cffc91a70..eac78d844f01c 100644 --- a/clients/client-iam/src/commands/TagSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/TagSAMLProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { TagSAMLProviderRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { TagSAMLProviderRequest } from "../models/models_0"; import { TagSAMLProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/TagServerCertificateCommand.ts b/clients/client-iam/src/commands/TagServerCertificateCommand.ts index be6416714158d..3eeef0290d27e 100644 --- a/clients/client-iam/src/commands/TagServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/TagServerCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { TagServerCertificateRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { TagServerCertificateRequest } from "../models/models_0"; import { TagServerCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/TagUserCommand.ts b/clients/client-iam/src/commands/TagUserCommand.ts index 4d2d0de80694b..f166139d38b4a 100644 --- a/clients/client-iam/src/commands/TagUserCommand.ts +++ b/clients/client-iam/src/commands/TagUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { TagUserRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { TagUserRequest } from "../models/models_0"; import { TagUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UntagInstanceProfileCommand.ts b/clients/client-iam/src/commands/UntagInstanceProfileCommand.ts index 0b32912d1d53c..42758ee1fe9d5 100644 --- a/clients/client-iam/src/commands/UntagInstanceProfileCommand.ts +++ b/clients/client-iam/src/commands/UntagInstanceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UntagInstanceProfileRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UntagInstanceProfileRequest } from "../models/models_0"; import { UntagInstanceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UntagMFADeviceCommand.ts b/clients/client-iam/src/commands/UntagMFADeviceCommand.ts index 6d90ea258fa13..be50f1e14c7de 100644 --- a/clients/client-iam/src/commands/UntagMFADeviceCommand.ts +++ b/clients/client-iam/src/commands/UntagMFADeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UntagMFADeviceRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UntagMFADeviceRequest } from "../models/models_0"; import { UntagMFADevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UntagOpenIDConnectProviderCommand.ts b/clients/client-iam/src/commands/UntagOpenIDConnectProviderCommand.ts index bdec8cf406d2b..94c1a8329e811 100644 --- a/clients/client-iam/src/commands/UntagOpenIDConnectProviderCommand.ts +++ b/clients/client-iam/src/commands/UntagOpenIDConnectProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UntagOpenIDConnectProviderRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UntagOpenIDConnectProviderRequest } from "../models/models_0"; import { UntagOpenIDConnectProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UntagPolicyCommand.ts b/clients/client-iam/src/commands/UntagPolicyCommand.ts index 5e32bc6a31762..385074265cbde 100644 --- a/clients/client-iam/src/commands/UntagPolicyCommand.ts +++ b/clients/client-iam/src/commands/UntagPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UntagPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UntagPolicyRequest } from "../models/models_0"; import { UntagPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UntagRoleCommand.ts b/clients/client-iam/src/commands/UntagRoleCommand.ts index af61746297a22..525047ca267b8 100644 --- a/clients/client-iam/src/commands/UntagRoleCommand.ts +++ b/clients/client-iam/src/commands/UntagRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UntagRoleRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UntagRoleRequest } from "../models/models_0"; import { UntagRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UntagSAMLProviderCommand.ts b/clients/client-iam/src/commands/UntagSAMLProviderCommand.ts index 92cbf2a38170e..b5ad36f8f444c 100644 --- a/clients/client-iam/src/commands/UntagSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/UntagSAMLProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UntagSAMLProviderRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UntagSAMLProviderRequest } from "../models/models_0"; import { UntagSAMLProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UntagServerCertificateCommand.ts b/clients/client-iam/src/commands/UntagServerCertificateCommand.ts index b3c50ba100cb3..ae6c5265b6221 100644 --- a/clients/client-iam/src/commands/UntagServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/UntagServerCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UntagServerCertificateRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UntagServerCertificateRequest } from "../models/models_0"; import { UntagServerCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UntagUserCommand.ts b/clients/client-iam/src/commands/UntagUserCommand.ts index 9d68ac235c8fc..633fdea2ecb93 100644 --- a/clients/client-iam/src/commands/UntagUserCommand.ts +++ b/clients/client-iam/src/commands/UntagUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UntagUserRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UntagUserRequest } from "../models/models_0"; import { UntagUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateAccessKeyCommand.ts b/clients/client-iam/src/commands/UpdateAccessKeyCommand.ts index 0bf152978435a..5fabefac0e27f 100644 --- a/clients/client-iam/src/commands/UpdateAccessKeyCommand.ts +++ b/clients/client-iam/src/commands/UpdateAccessKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateAccessKeyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateAccessKeyRequest } from "../models/models_0"; import { UpdateAccessKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateAccountPasswordPolicyCommand.ts b/clients/client-iam/src/commands/UpdateAccountPasswordPolicyCommand.ts index 9e7b41c248715..e13a35dfb5f2d 100644 --- a/clients/client-iam/src/commands/UpdateAccountPasswordPolicyCommand.ts +++ b/clients/client-iam/src/commands/UpdateAccountPasswordPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateAccountPasswordPolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateAccountPasswordPolicyRequest } from "../models/models_0"; import { UpdateAccountPasswordPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateAssumeRolePolicyCommand.ts b/clients/client-iam/src/commands/UpdateAssumeRolePolicyCommand.ts index 92c3aafdec54f..f8a92558f570a 100644 --- a/clients/client-iam/src/commands/UpdateAssumeRolePolicyCommand.ts +++ b/clients/client-iam/src/commands/UpdateAssumeRolePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateAssumeRolePolicyRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateAssumeRolePolicyRequest } from "../models/models_0"; import { UpdateAssumeRolePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateDelegationRequestCommand.ts b/clients/client-iam/src/commands/UpdateDelegationRequestCommand.ts index 1a6d790a87dac..83f87717a6251 100644 --- a/clients/client-iam/src/commands/UpdateDelegationRequestCommand.ts +++ b/clients/client-iam/src/commands/UpdateDelegationRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateDelegationRequestRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateDelegationRequestRequest } from "../models/models_0"; import { UpdateDelegationRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateGroupCommand.ts b/clients/client-iam/src/commands/UpdateGroupCommand.ts index 7431e9b8ce635..992e3485d9caa 100644 --- a/clients/client-iam/src/commands/UpdateGroupCommand.ts +++ b/clients/client-iam/src/commands/UpdateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateGroupRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateGroupRequest } from "../models/models_0"; import { UpdateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateLoginProfileCommand.ts b/clients/client-iam/src/commands/UpdateLoginProfileCommand.ts index 35d2190c93027..fa020f2296ea9 100644 --- a/clients/client-iam/src/commands/UpdateLoginProfileCommand.ts +++ b/clients/client-iam/src/commands/UpdateLoginProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateLoginProfileRequest } from "../models/models_0"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateLoginProfileRequest } from "../models/models_0"; import { UpdateLoginProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts b/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts index 85f0d686b043c..71aabf782f5f0 100644 --- a/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts +++ b/clients/client-iam/src/commands/UpdateOpenIDConnectProviderThumbprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateOpenIDConnectProviderThumbprintRequest } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateOpenIDConnectProviderThumbprintRequest } from "../models/models_1"; import { UpdateOpenIDConnectProviderThumbprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateRoleCommand.ts b/clients/client-iam/src/commands/UpdateRoleCommand.ts index f075ec366307a..f9ff34e88fb19 100644 --- a/clients/client-iam/src/commands/UpdateRoleCommand.ts +++ b/clients/client-iam/src/commands/UpdateRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateRoleRequest, UpdateRoleResponse } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateRoleRequest, UpdateRoleResponse } from "../models/models_1"; import { UpdateRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateRoleDescriptionCommand.ts b/clients/client-iam/src/commands/UpdateRoleDescriptionCommand.ts index caee5aa97c3b8..da3be2a182d80 100644 --- a/clients/client-iam/src/commands/UpdateRoleDescriptionCommand.ts +++ b/clients/client-iam/src/commands/UpdateRoleDescriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateRoleDescriptionRequest, UpdateRoleDescriptionResponse } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateRoleDescriptionRequest, UpdateRoleDescriptionResponse } from "../models/models_1"; import { UpdateRoleDescription } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateSAMLProviderCommand.ts b/clients/client-iam/src/commands/UpdateSAMLProviderCommand.ts index 37185fbd0ff82..fa0d22864ffe6 100644 --- a/clients/client-iam/src/commands/UpdateSAMLProviderCommand.ts +++ b/clients/client-iam/src/commands/UpdateSAMLProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateSAMLProviderRequest, UpdateSAMLProviderResponse } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateSAMLProviderRequest, UpdateSAMLProviderResponse } from "../models/models_1"; import { UpdateSAMLProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateSSHPublicKeyCommand.ts b/clients/client-iam/src/commands/UpdateSSHPublicKeyCommand.ts index b5393fac7bc08..b896b0f4d20ef 100644 --- a/clients/client-iam/src/commands/UpdateSSHPublicKeyCommand.ts +++ b/clients/client-iam/src/commands/UpdateSSHPublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateSSHPublicKeyRequest } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateSSHPublicKeyRequest } from "../models/models_1"; import { UpdateSSHPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateServerCertificateCommand.ts b/clients/client-iam/src/commands/UpdateServerCertificateCommand.ts index dbf7026fe675e..45147fb405a77 100644 --- a/clients/client-iam/src/commands/UpdateServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/UpdateServerCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateServerCertificateRequest } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateServerCertificateRequest } from "../models/models_1"; import { UpdateServerCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateServiceSpecificCredentialCommand.ts b/clients/client-iam/src/commands/UpdateServiceSpecificCredentialCommand.ts index 6175a72d2289a..56f8bdbd43dfe 100644 --- a/clients/client-iam/src/commands/UpdateServiceSpecificCredentialCommand.ts +++ b/clients/client-iam/src/commands/UpdateServiceSpecificCredentialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateServiceSpecificCredentialRequest } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateServiceSpecificCredentialRequest } from "../models/models_1"; import { UpdateServiceSpecificCredential } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateSigningCertificateCommand.ts b/clients/client-iam/src/commands/UpdateSigningCertificateCommand.ts index d2634888c2165..5c7c10d9ff938 100644 --- a/clients/client-iam/src/commands/UpdateSigningCertificateCommand.ts +++ b/clients/client-iam/src/commands/UpdateSigningCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateSigningCertificateRequest } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateSigningCertificateRequest } from "../models/models_1"; import { UpdateSigningCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UpdateUserCommand.ts b/clients/client-iam/src/commands/UpdateUserCommand.ts index b60f06e479c98..9d51225900bc2 100644 --- a/clients/client-iam/src/commands/UpdateUserCommand.ts +++ b/clients/client-iam/src/commands/UpdateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UpdateUserRequest } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UpdateUserRequest } from "../models/models_1"; import { UpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UploadSSHPublicKeyCommand.ts b/clients/client-iam/src/commands/UploadSSHPublicKeyCommand.ts index 0dc3c347b0e10..1de6a92901db4 100644 --- a/clients/client-iam/src/commands/UploadSSHPublicKeyCommand.ts +++ b/clients/client-iam/src/commands/UploadSSHPublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UploadSSHPublicKeyRequest, UploadSSHPublicKeyResponse } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UploadSSHPublicKeyRequest, UploadSSHPublicKeyResponse } from "../models/models_1"; import { UploadSSHPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UploadServerCertificateCommand.ts b/clients/client-iam/src/commands/UploadServerCertificateCommand.ts index 2ac05ec33ce22..6cfe757b76576 100644 --- a/clients/client-iam/src/commands/UploadServerCertificateCommand.ts +++ b/clients/client-iam/src/commands/UploadServerCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UploadServerCertificateRequest, UploadServerCertificateResponse } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UploadServerCertificateRequest, UploadServerCertificateResponse } from "../models/models_1"; import { UploadServerCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/commands/UploadSigningCertificateCommand.ts b/clients/client-iam/src/commands/UploadSigningCertificateCommand.ts index e912682aa9286..c5bc894770c46 100644 --- a/clients/client-iam/src/commands/UploadSigningCertificateCommand.ts +++ b/clients/client-iam/src/commands/UploadSigningCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; -import { UploadSigningCertificateRequest, UploadSigningCertificateResponse } from "../models/models_1"; +import type { IAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IAMClient"; +import type { UploadSigningCertificateRequest, UploadSigningCertificateResponse } from "../models/models_1"; import { UploadSigningCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iam/src/endpoint/EndpointParameters.ts b/clients/client-iam/src/endpoint/EndpointParameters.ts index 9e476a3762064..fb7abcf14a9c7 100644 --- a/clients/client-iam/src/endpoint/EndpointParameters.ts +++ b/clients/client-iam/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iam/src/endpoint/endpointResolver.ts b/clients/client-iam/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iam/src/endpoint/endpointResolver.ts +++ b/clients/client-iam/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iam/src/extensionConfiguration.ts b/clients/client-iam/src/extensionConfiguration.ts index 57b6224e3f630..9d367b1c329c4 100644 --- a/clients/client-iam/src/extensionConfiguration.ts +++ b/clients/client-iam/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iam/src/models/IAMServiceException.ts b/clients/client-iam/src/models/IAMServiceException.ts index 0fa59d235528a..8b9e44aab704f 100644 --- a/clients/client-iam/src/models/IAMServiceException.ts +++ b/clients/client-iam/src/models/IAMServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iam/src/models/errors.ts b/clients/client-iam/src/models/errors.ts index c10c3130d9107..7b5a84bb56d88 100644 --- a/clients/client-iam/src/models/errors.ts +++ b/clients/client-iam/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IAMServiceException as __BaseException } from "./IAMServiceException"; diff --git a/clients/client-iam/src/pagination/GetAccountAuthorizationDetailsPaginator.ts b/clients/client-iam/src/pagination/GetAccountAuthorizationDetailsPaginator.ts index 82849194ba138..231267b1aa0c6 100644 --- a/clients/client-iam/src/pagination/GetAccountAuthorizationDetailsPaginator.ts +++ b/clients/client-iam/src/pagination/GetAccountAuthorizationDetailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAccountAuthorizationDetailsCommand, diff --git a/clients/client-iam/src/pagination/GetGroupPaginator.ts b/clients/client-iam/src/pagination/GetGroupPaginator.ts index 8d0eb46372fcf..d1c9ac4779224 100644 --- a/clients/client-iam/src/pagination/GetGroupPaginator.ts +++ b/clients/client-iam/src/pagination/GetGroupPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetGroupCommand, GetGroupCommandInput, GetGroupCommandOutput } from "../commands/GetGroupCommand"; import { IAMClient } from "../IAMClient"; diff --git a/clients/client-iam/src/pagination/Interfaces.ts b/clients/client-iam/src/pagination/Interfaces.ts index b39ebf4ce4045..35eb45ed29697 100644 --- a/clients/client-iam/src/pagination/Interfaces.ts +++ b/clients/client-iam/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IAMClient } from "../IAMClient"; diff --git a/clients/client-iam/src/pagination/ListAccessKeysPaginator.ts b/clients/client-iam/src/pagination/ListAccessKeysPaginator.ts index b3ac52a01d573..018d11c8c6e20 100644 --- a/clients/client-iam/src/pagination/ListAccessKeysPaginator.ts +++ b/clients/client-iam/src/pagination/ListAccessKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessKeysCommand, diff --git a/clients/client-iam/src/pagination/ListAccountAliasesPaginator.ts b/clients/client-iam/src/pagination/ListAccountAliasesPaginator.ts index 70e178e79d8c7..23fd9c985c472 100644 --- a/clients/client-iam/src/pagination/ListAccountAliasesPaginator.ts +++ b/clients/client-iam/src/pagination/ListAccountAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountAliasesCommand, diff --git a/clients/client-iam/src/pagination/ListAttachedGroupPoliciesPaginator.ts b/clients/client-iam/src/pagination/ListAttachedGroupPoliciesPaginator.ts index a501c8d4fae07..9239562203c8a 100644 --- a/clients/client-iam/src/pagination/ListAttachedGroupPoliciesPaginator.ts +++ b/clients/client-iam/src/pagination/ListAttachedGroupPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttachedGroupPoliciesCommand, diff --git a/clients/client-iam/src/pagination/ListAttachedRolePoliciesPaginator.ts b/clients/client-iam/src/pagination/ListAttachedRolePoliciesPaginator.ts index f5fb83ac286f1..a94b8f23b212c 100644 --- a/clients/client-iam/src/pagination/ListAttachedRolePoliciesPaginator.ts +++ b/clients/client-iam/src/pagination/ListAttachedRolePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttachedRolePoliciesCommand, diff --git a/clients/client-iam/src/pagination/ListAttachedUserPoliciesPaginator.ts b/clients/client-iam/src/pagination/ListAttachedUserPoliciesPaginator.ts index b4dba3f4111fa..e6d99f13a9e3d 100644 --- a/clients/client-iam/src/pagination/ListAttachedUserPoliciesPaginator.ts +++ b/clients/client-iam/src/pagination/ListAttachedUserPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttachedUserPoliciesCommand, diff --git a/clients/client-iam/src/pagination/ListEntitiesForPolicyPaginator.ts b/clients/client-iam/src/pagination/ListEntitiesForPolicyPaginator.ts index 4a5ddd20f9fd7..fe8b297ef77b2 100644 --- a/clients/client-iam/src/pagination/ListEntitiesForPolicyPaginator.ts +++ b/clients/client-iam/src/pagination/ListEntitiesForPolicyPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntitiesForPolicyCommand, diff --git a/clients/client-iam/src/pagination/ListGroupPoliciesPaginator.ts b/clients/client-iam/src/pagination/ListGroupPoliciesPaginator.ts index 20ba0e5816c7e..54a8a5fadceec 100644 --- a/clients/client-iam/src/pagination/ListGroupPoliciesPaginator.ts +++ b/clients/client-iam/src/pagination/ListGroupPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupPoliciesCommand, diff --git a/clients/client-iam/src/pagination/ListGroupsForUserPaginator.ts b/clients/client-iam/src/pagination/ListGroupsForUserPaginator.ts index 32d8be82304d3..c66508b7efb62 100644 --- a/clients/client-iam/src/pagination/ListGroupsForUserPaginator.ts +++ b/clients/client-iam/src/pagination/ListGroupsForUserPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsForUserCommand, diff --git a/clients/client-iam/src/pagination/ListGroupsPaginator.ts b/clients/client-iam/src/pagination/ListGroupsPaginator.ts index c056200bd8a3e..20aa3aa0df82d 100644 --- a/clients/client-iam/src/pagination/ListGroupsPaginator.ts +++ b/clients/client-iam/src/pagination/ListGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand"; import { IAMClient } from "../IAMClient"; diff --git a/clients/client-iam/src/pagination/ListInstanceProfileTagsPaginator.ts b/clients/client-iam/src/pagination/ListInstanceProfileTagsPaginator.ts index 02fbfb9e36574..dc63e706e6c5e 100644 --- a/clients/client-iam/src/pagination/ListInstanceProfileTagsPaginator.ts +++ b/clients/client-iam/src/pagination/ListInstanceProfileTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstanceProfileTagsCommand, diff --git a/clients/client-iam/src/pagination/ListInstanceProfilesForRolePaginator.ts b/clients/client-iam/src/pagination/ListInstanceProfilesForRolePaginator.ts index b0eb22064a049..c59b36de61e9e 100644 --- a/clients/client-iam/src/pagination/ListInstanceProfilesForRolePaginator.ts +++ b/clients/client-iam/src/pagination/ListInstanceProfilesForRolePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstanceProfilesForRoleCommand, diff --git a/clients/client-iam/src/pagination/ListInstanceProfilesPaginator.ts b/clients/client-iam/src/pagination/ListInstanceProfilesPaginator.ts index 585ca4a359839..dc2549935690e 100644 --- a/clients/client-iam/src/pagination/ListInstanceProfilesPaginator.ts +++ b/clients/client-iam/src/pagination/ListInstanceProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstanceProfilesCommand, diff --git a/clients/client-iam/src/pagination/ListMFADeviceTagsPaginator.ts b/clients/client-iam/src/pagination/ListMFADeviceTagsPaginator.ts index 77ac7757a17c4..826bfc6c8fa06 100644 --- a/clients/client-iam/src/pagination/ListMFADeviceTagsPaginator.ts +++ b/clients/client-iam/src/pagination/ListMFADeviceTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMFADeviceTagsCommand, diff --git a/clients/client-iam/src/pagination/ListMFADevicesPaginator.ts b/clients/client-iam/src/pagination/ListMFADevicesPaginator.ts index af37c8fd15947..e684bb79d5657 100644 --- a/clients/client-iam/src/pagination/ListMFADevicesPaginator.ts +++ b/clients/client-iam/src/pagination/ListMFADevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMFADevicesCommand, diff --git a/clients/client-iam/src/pagination/ListOpenIDConnectProviderTagsPaginator.ts b/clients/client-iam/src/pagination/ListOpenIDConnectProviderTagsPaginator.ts index b043bf5c7037e..d28e9b467a8cc 100644 --- a/clients/client-iam/src/pagination/ListOpenIDConnectProviderTagsPaginator.ts +++ b/clients/client-iam/src/pagination/ListOpenIDConnectProviderTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOpenIDConnectProviderTagsCommand, diff --git a/clients/client-iam/src/pagination/ListPoliciesPaginator.ts b/clients/client-iam/src/pagination/ListPoliciesPaginator.ts index 4f8a55f7a12ba..148f4042e526e 100644 --- a/clients/client-iam/src/pagination/ListPoliciesPaginator.ts +++ b/clients/client-iam/src/pagination/ListPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPoliciesCommand, diff --git a/clients/client-iam/src/pagination/ListPolicyTagsPaginator.ts b/clients/client-iam/src/pagination/ListPolicyTagsPaginator.ts index 19e3e96c0c2c9..06f79e3900254 100644 --- a/clients/client-iam/src/pagination/ListPolicyTagsPaginator.ts +++ b/clients/client-iam/src/pagination/ListPolicyTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPolicyTagsCommand, diff --git a/clients/client-iam/src/pagination/ListPolicyVersionsPaginator.ts b/clients/client-iam/src/pagination/ListPolicyVersionsPaginator.ts index 7b69d37df8b19..cd360afe045e2 100644 --- a/clients/client-iam/src/pagination/ListPolicyVersionsPaginator.ts +++ b/clients/client-iam/src/pagination/ListPolicyVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPolicyVersionsCommand, diff --git a/clients/client-iam/src/pagination/ListRolePoliciesPaginator.ts b/clients/client-iam/src/pagination/ListRolePoliciesPaginator.ts index 872b7d48ade82..76cbb3a5121c5 100644 --- a/clients/client-iam/src/pagination/ListRolePoliciesPaginator.ts +++ b/clients/client-iam/src/pagination/ListRolePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRolePoliciesCommand, diff --git a/clients/client-iam/src/pagination/ListRoleTagsPaginator.ts b/clients/client-iam/src/pagination/ListRoleTagsPaginator.ts index 8ee743d428340..828f79d556eca 100644 --- a/clients/client-iam/src/pagination/ListRoleTagsPaginator.ts +++ b/clients/client-iam/src/pagination/ListRoleTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoleTagsCommand, diff --git a/clients/client-iam/src/pagination/ListRolesPaginator.ts b/clients/client-iam/src/pagination/ListRolesPaginator.ts index 2d19296ca4d72..e6d65c2948de6 100644 --- a/clients/client-iam/src/pagination/ListRolesPaginator.ts +++ b/clients/client-iam/src/pagination/ListRolesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRolesCommand, ListRolesCommandInput, ListRolesCommandOutput } from "../commands/ListRolesCommand"; import { IAMClient } from "../IAMClient"; diff --git a/clients/client-iam/src/pagination/ListSAMLProviderTagsPaginator.ts b/clients/client-iam/src/pagination/ListSAMLProviderTagsPaginator.ts index a7d0463e146c1..491b18392c0f7 100644 --- a/clients/client-iam/src/pagination/ListSAMLProviderTagsPaginator.ts +++ b/clients/client-iam/src/pagination/ListSAMLProviderTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSAMLProviderTagsCommand, diff --git a/clients/client-iam/src/pagination/ListSSHPublicKeysPaginator.ts b/clients/client-iam/src/pagination/ListSSHPublicKeysPaginator.ts index 2641e57d84706..78a3968062c0b 100644 --- a/clients/client-iam/src/pagination/ListSSHPublicKeysPaginator.ts +++ b/clients/client-iam/src/pagination/ListSSHPublicKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSSHPublicKeysCommand, diff --git a/clients/client-iam/src/pagination/ListServerCertificateTagsPaginator.ts b/clients/client-iam/src/pagination/ListServerCertificateTagsPaginator.ts index df07ecba0ff11..f5537d6fe0a5a 100644 --- a/clients/client-iam/src/pagination/ListServerCertificateTagsPaginator.ts +++ b/clients/client-iam/src/pagination/ListServerCertificateTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServerCertificateTagsCommand, diff --git a/clients/client-iam/src/pagination/ListServerCertificatesPaginator.ts b/clients/client-iam/src/pagination/ListServerCertificatesPaginator.ts index 680d0bd10a3e2..c77e8888b0ed6 100644 --- a/clients/client-iam/src/pagination/ListServerCertificatesPaginator.ts +++ b/clients/client-iam/src/pagination/ListServerCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServerCertificatesCommand, diff --git a/clients/client-iam/src/pagination/ListSigningCertificatesPaginator.ts b/clients/client-iam/src/pagination/ListSigningCertificatesPaginator.ts index 58a8aabc5525f..beb5cfbfd6489 100644 --- a/clients/client-iam/src/pagination/ListSigningCertificatesPaginator.ts +++ b/clients/client-iam/src/pagination/ListSigningCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSigningCertificatesCommand, diff --git a/clients/client-iam/src/pagination/ListUserPoliciesPaginator.ts b/clients/client-iam/src/pagination/ListUserPoliciesPaginator.ts index 3fafbf8b92b63..ab2ee6b9e5a40 100644 --- a/clients/client-iam/src/pagination/ListUserPoliciesPaginator.ts +++ b/clients/client-iam/src/pagination/ListUserPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUserPoliciesCommand, diff --git a/clients/client-iam/src/pagination/ListUserTagsPaginator.ts b/clients/client-iam/src/pagination/ListUserTagsPaginator.ts index 06a247797ff08..12204729863b8 100644 --- a/clients/client-iam/src/pagination/ListUserTagsPaginator.ts +++ b/clients/client-iam/src/pagination/ListUserTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUserTagsCommand, diff --git a/clients/client-iam/src/pagination/ListUsersPaginator.ts b/clients/client-iam/src/pagination/ListUsersPaginator.ts index cf0b124057e18..f4d7b3719df14 100644 --- a/clients/client-iam/src/pagination/ListUsersPaginator.ts +++ b/clients/client-iam/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; import { IAMClient } from "../IAMClient"; diff --git a/clients/client-iam/src/pagination/ListVirtualMFADevicesPaginator.ts b/clients/client-iam/src/pagination/ListVirtualMFADevicesPaginator.ts index 299450e1d84e1..473b7d6a399d6 100644 --- a/clients/client-iam/src/pagination/ListVirtualMFADevicesPaginator.ts +++ b/clients/client-iam/src/pagination/ListVirtualMFADevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVirtualMFADevicesCommand, diff --git a/clients/client-iam/src/pagination/SimulateCustomPolicyPaginator.ts b/clients/client-iam/src/pagination/SimulateCustomPolicyPaginator.ts index 68e1bbce747a7..fd1aa7a0d8f38 100644 --- a/clients/client-iam/src/pagination/SimulateCustomPolicyPaginator.ts +++ b/clients/client-iam/src/pagination/SimulateCustomPolicyPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SimulateCustomPolicyCommand, diff --git a/clients/client-iam/src/pagination/SimulatePrincipalPolicyPaginator.ts b/clients/client-iam/src/pagination/SimulatePrincipalPolicyPaginator.ts index 3e7b2547cf9c5..c09e329e334e1 100644 --- a/clients/client-iam/src/pagination/SimulatePrincipalPolicyPaginator.ts +++ b/clients/client-iam/src/pagination/SimulatePrincipalPolicyPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SimulatePrincipalPolicyCommand, diff --git a/clients/client-iam/src/runtimeConfig.browser.ts b/clients/client-iam/src/runtimeConfig.browser.ts index 98a52e85aa85e..5d706ae2c95a6 100644 --- a/clients/client-iam/src/runtimeConfig.browser.ts +++ b/clients/client-iam/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IAMClientConfig } from "./IAMClient"; + +import type { IAMClientConfig } from "./IAMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iam/src/runtimeConfig.native.ts b/clients/client-iam/src/runtimeConfig.native.ts index d399e0a24cdde..01f0057e27438 100644 --- a/clients/client-iam/src/runtimeConfig.native.ts +++ b/clients/client-iam/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IAMClientConfig } from "./IAMClient"; +import type { IAMClientConfig } from "./IAMClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iam/src/runtimeConfig.shared.ts b/clients/client-iam/src/runtimeConfig.shared.ts index 8835a4f4ae107..a37d763a7740d 100644 --- a/clients/client-iam/src/runtimeConfig.shared.ts +++ b/clients/client-iam/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIAMHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IAMClientConfig } from "./IAMClient"; +import type { IAMClientConfig } from "./IAMClient"; /** * @internal diff --git a/clients/client-iam/src/runtimeConfig.ts b/clients/client-iam/src/runtimeConfig.ts index 12b30173d3c0e..6966e68a7d525 100644 --- a/clients/client-iam/src/runtimeConfig.ts +++ b/clients/client-iam/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IAMClientConfig } from "./IAMClient"; + +import type { IAMClientConfig } from "./IAMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iam/src/runtimeExtensions.ts b/clients/client-iam/src/runtimeExtensions.ts index ac458801809ad..1e9c015a63062 100644 --- a/clients/client-iam/src/runtimeExtensions.ts +++ b/clients/client-iam/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IAMExtensionConfiguration } from "./extensionConfiguration"; +import type { IAMExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iam/src/schemas/schemas_0.ts b/clients/client-iam/src/schemas/schemas_0.ts index e90c804b845c5..b90d0f301beb4 100644 --- a/clients/client-iam/src/schemas/schemas_0.ts +++ b/clients/client-iam/src/schemas/schemas_0.ts @@ -838,7 +838,7 @@ const n0 = "com.amazonaws.iam"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-identitystore/package.json b/clients/client-identitystore/package.json index 2bc1ebf2e3b05..4f57cd59aacea 100644 --- a/clients/client-identitystore/package.json +++ b/clients/client-identitystore/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-identitystore/src/Identitystore.ts b/clients/client-identitystore/src/Identitystore.ts index 690bdabec3333..563abcfde9741 100644 --- a/clients/client-identitystore/src/Identitystore.ts +++ b/clients/client-identitystore/src/Identitystore.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateGroupCommand, CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand"; import { @@ -57,7 +57,7 @@ import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } fr import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand"; import { UpdateGroupCommand, UpdateGroupCommandInput, UpdateGroupCommandOutput } from "./commands/UpdateGroupCommand"; import { UpdateUserCommand, UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand"; -import { IdentitystoreClient, IdentitystoreClientConfig } from "./IdentitystoreClient"; +import { IdentitystoreClient } from "./IdentitystoreClient"; const commands = { CreateGroupCommand, diff --git a/clients/client-identitystore/src/IdentitystoreClient.ts b/clients/client-identitystore/src/IdentitystoreClient.ts index 983ded86dc1fd..43ed3fdfcf943 100644 --- a/clients/client-identitystore/src/IdentitystoreClient.ts +++ b/clients/client-identitystore/src/IdentitystoreClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIdentitystoreHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand"; @@ -101,7 +110,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-identitystore/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-identitystore/src/auth/httpAuthExtensionConfiguration.ts index 11a8b76a12208..61bd6c29d66e2 100644 --- a/clients/client-identitystore/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-identitystore/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IdentitystoreHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IdentitystoreHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-identitystore/src/auth/httpAuthSchemeProvider.ts b/clients/client-identitystore/src/auth/httpAuthSchemeProvider.ts index fff819c225747..9b30c7730e41c 100644 --- a/clients/client-identitystore/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-identitystore/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IdentitystoreClientConfig, IdentitystoreClientResolvedConfig } from "../IdentitystoreClient"; +import { type IdentitystoreClientResolvedConfig, IdentitystoreClientConfig } from "../IdentitystoreClient"; /** * @internal diff --git a/clients/client-identitystore/src/commands/CreateGroupCommand.ts b/clients/client-identitystore/src/commands/CreateGroupCommand.ts index ba8f2110c7621..fc901c898113e 100644 --- a/clients/client-identitystore/src/commands/CreateGroupCommand.ts +++ b/clients/client-identitystore/src/commands/CreateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; import { CreateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/CreateGroupMembershipCommand.ts b/clients/client-identitystore/src/commands/CreateGroupMembershipCommand.ts index fa9aa188518ea..a32f7dd541e95 100644 --- a/clients/client-identitystore/src/commands/CreateGroupMembershipCommand.ts +++ b/clients/client-identitystore/src/commands/CreateGroupMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { CreateGroupMembershipRequest, CreateGroupMembershipResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { CreateGroupMembershipRequest, CreateGroupMembershipResponse } from "../models/models_0"; import { CreateGroupMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/CreateUserCommand.ts b/clients/client-identitystore/src/commands/CreateUserCommand.ts index 983318f8a5c2d..fa07c5d1ff6f6 100644 --- a/clients/client-identitystore/src/commands/CreateUserCommand.ts +++ b/clients/client-identitystore/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/DeleteGroupCommand.ts b/clients/client-identitystore/src/commands/DeleteGroupCommand.ts index 07ffdb50a36ed..ce8caff9e47ae 100644 --- a/clients/client-identitystore/src/commands/DeleteGroupCommand.ts +++ b/clients/client-identitystore/src/commands/DeleteGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; import { DeleteGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/DeleteGroupMembershipCommand.ts b/clients/client-identitystore/src/commands/DeleteGroupMembershipCommand.ts index 9979a1a472524..a47acf835d23d 100644 --- a/clients/client-identitystore/src/commands/DeleteGroupMembershipCommand.ts +++ b/clients/client-identitystore/src/commands/DeleteGroupMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { DeleteGroupMembershipRequest, DeleteGroupMembershipResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { DeleteGroupMembershipRequest, DeleteGroupMembershipResponse } from "../models/models_0"; import { DeleteGroupMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/DeleteUserCommand.ts b/clients/client-identitystore/src/commands/DeleteUserCommand.ts index a7adfec9600f8..124faf82f3e46 100644 --- a/clients/client-identitystore/src/commands/DeleteUserCommand.ts +++ b/clients/client-identitystore/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/DescribeGroupCommand.ts b/clients/client-identitystore/src/commands/DescribeGroupCommand.ts index 675b2ed59f7be..4a99e1338dae6 100644 --- a/clients/client-identitystore/src/commands/DescribeGroupCommand.ts +++ b/clients/client-identitystore/src/commands/DescribeGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { DescribeGroupRequest, DescribeGroupResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { DescribeGroupRequest, DescribeGroupResponse } from "../models/models_0"; import { DescribeGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/DescribeGroupMembershipCommand.ts b/clients/client-identitystore/src/commands/DescribeGroupMembershipCommand.ts index 417a3dda058a5..f09c34b781d21 100644 --- a/clients/client-identitystore/src/commands/DescribeGroupMembershipCommand.ts +++ b/clients/client-identitystore/src/commands/DescribeGroupMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { DescribeGroupMembershipRequest, DescribeGroupMembershipResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { DescribeGroupMembershipRequest, DescribeGroupMembershipResponse } from "../models/models_0"; import { DescribeGroupMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/DescribeUserCommand.ts b/clients/client-identitystore/src/commands/DescribeUserCommand.ts index 74789600fe626..3851ed1750e1b 100644 --- a/clients/client-identitystore/src/commands/DescribeUserCommand.ts +++ b/clients/client-identitystore/src/commands/DescribeUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { DescribeUserRequest, DescribeUserResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { DescribeUserRequest, DescribeUserResponse } from "../models/models_0"; import { DescribeUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/GetGroupIdCommand.ts b/clients/client-identitystore/src/commands/GetGroupIdCommand.ts index 673d75bf1001a..d1b4631230d12 100644 --- a/clients/client-identitystore/src/commands/GetGroupIdCommand.ts +++ b/clients/client-identitystore/src/commands/GetGroupIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { GetGroupIdRequest, GetGroupIdResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { GetGroupIdRequest, GetGroupIdResponse } from "../models/models_0"; import { GetGroupId } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/GetGroupMembershipIdCommand.ts b/clients/client-identitystore/src/commands/GetGroupMembershipIdCommand.ts index f35b06c80ca54..931c832fb436f 100644 --- a/clients/client-identitystore/src/commands/GetGroupMembershipIdCommand.ts +++ b/clients/client-identitystore/src/commands/GetGroupMembershipIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { GetGroupMembershipIdRequest, GetGroupMembershipIdResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { GetGroupMembershipIdRequest, GetGroupMembershipIdResponse } from "../models/models_0"; import { GetGroupMembershipId } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/GetUserIdCommand.ts b/clients/client-identitystore/src/commands/GetUserIdCommand.ts index afde569cc6a24..84f51d1257355 100644 --- a/clients/client-identitystore/src/commands/GetUserIdCommand.ts +++ b/clients/client-identitystore/src/commands/GetUserIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { GetUserIdRequest, GetUserIdResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { GetUserIdRequest, GetUserIdResponse } from "../models/models_0"; import { GetUserId } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/IsMemberInGroupsCommand.ts b/clients/client-identitystore/src/commands/IsMemberInGroupsCommand.ts index d7c42884a692e..23f9b06041e9d 100644 --- a/clients/client-identitystore/src/commands/IsMemberInGroupsCommand.ts +++ b/clients/client-identitystore/src/commands/IsMemberInGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { IsMemberInGroupsRequest, IsMemberInGroupsResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { IsMemberInGroupsRequest, IsMemberInGroupsResponse } from "../models/models_0"; import { IsMemberInGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/ListGroupMembershipsCommand.ts b/clients/client-identitystore/src/commands/ListGroupMembershipsCommand.ts index 030bf26a13dca..a8af04ee0d62f 100644 --- a/clients/client-identitystore/src/commands/ListGroupMembershipsCommand.ts +++ b/clients/client-identitystore/src/commands/ListGroupMembershipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { ListGroupMembershipsRequest, ListGroupMembershipsResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { ListGroupMembershipsRequest, ListGroupMembershipsResponse } from "../models/models_0"; import { ListGroupMemberships } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/ListGroupMembershipsForMemberCommand.ts b/clients/client-identitystore/src/commands/ListGroupMembershipsForMemberCommand.ts index db58941361277..d535a7a103863 100644 --- a/clients/client-identitystore/src/commands/ListGroupMembershipsForMemberCommand.ts +++ b/clients/client-identitystore/src/commands/ListGroupMembershipsForMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { ListGroupMembershipsForMemberRequest, ListGroupMembershipsForMemberResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { ListGroupMembershipsForMemberRequest, ListGroupMembershipsForMemberResponse } from "../models/models_0"; import { ListGroupMembershipsForMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/ListGroupsCommand.ts b/clients/client-identitystore/src/commands/ListGroupsCommand.ts index c4f51176b80cc..b05eaa602c08b 100644 --- a/clients/client-identitystore/src/commands/ListGroupsCommand.ts +++ b/clients/client-identitystore/src/commands/ListGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; import { ListGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/ListUsersCommand.ts b/clients/client-identitystore/src/commands/ListUsersCommand.ts index b08ac27521172..aecc212d3e795 100644 --- a/clients/client-identitystore/src/commands/ListUsersCommand.ts +++ b/clients/client-identitystore/src/commands/ListUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_0"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/UpdateGroupCommand.ts b/clients/client-identitystore/src/commands/UpdateGroupCommand.ts index 7f63013d4427b..7666197dc2c36 100644 --- a/clients/client-identitystore/src/commands/UpdateGroupCommand.ts +++ b/clients/client-identitystore/src/commands/UpdateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0"; import { UpdateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/commands/UpdateUserCommand.ts b/clients/client-identitystore/src/commands/UpdateUserCommand.ts index 360bc8c277306..f657462af0373 100644 --- a/clients/client-identitystore/src/commands/UpdateUserCommand.ts +++ b/clients/client-identitystore/src/commands/UpdateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; +import type { IdentitystoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IdentitystoreClient"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; import { UpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-identitystore/src/endpoint/EndpointParameters.ts b/clients/client-identitystore/src/endpoint/EndpointParameters.ts index 41a93c8ffc6e2..6146b4ca5fc8b 100644 --- a/clients/client-identitystore/src/endpoint/EndpointParameters.ts +++ b/clients/client-identitystore/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-identitystore/src/endpoint/endpointResolver.ts b/clients/client-identitystore/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-identitystore/src/endpoint/endpointResolver.ts +++ b/clients/client-identitystore/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-identitystore/src/extensionConfiguration.ts b/clients/client-identitystore/src/extensionConfiguration.ts index e77e8e985bd51..fe22425f13619 100644 --- a/clients/client-identitystore/src/extensionConfiguration.ts +++ b/clients/client-identitystore/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-identitystore/src/models/IdentitystoreServiceException.ts b/clients/client-identitystore/src/models/IdentitystoreServiceException.ts index d5769e8d57c45..38fe81e14c569 100644 --- a/clients/client-identitystore/src/models/IdentitystoreServiceException.ts +++ b/clients/client-identitystore/src/models/IdentitystoreServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-identitystore/src/models/errors.ts b/clients/client-identitystore/src/models/errors.ts index 55476da90ce17..6e0bec166915d 100644 --- a/clients/client-identitystore/src/models/errors.ts +++ b/clients/client-identitystore/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessDeniedExceptionReason, diff --git a/clients/client-identitystore/src/pagination/Interfaces.ts b/clients/client-identitystore/src/pagination/Interfaces.ts index 52dce88983926..534a40c38a29b 100644 --- a/clients/client-identitystore/src/pagination/Interfaces.ts +++ b/clients/client-identitystore/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IdentitystoreClient } from "../IdentitystoreClient"; diff --git a/clients/client-identitystore/src/pagination/ListGroupMembershipsForMemberPaginator.ts b/clients/client-identitystore/src/pagination/ListGroupMembershipsForMemberPaginator.ts index 2b4faf19e59f5..23d2d3a22dcca 100644 --- a/clients/client-identitystore/src/pagination/ListGroupMembershipsForMemberPaginator.ts +++ b/clients/client-identitystore/src/pagination/ListGroupMembershipsForMemberPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupMembershipsForMemberCommand, diff --git a/clients/client-identitystore/src/pagination/ListGroupMembershipsPaginator.ts b/clients/client-identitystore/src/pagination/ListGroupMembershipsPaginator.ts index bf10c5ca8c473..db0924249606e 100644 --- a/clients/client-identitystore/src/pagination/ListGroupMembershipsPaginator.ts +++ b/clients/client-identitystore/src/pagination/ListGroupMembershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupMembershipsCommand, diff --git a/clients/client-identitystore/src/pagination/ListGroupsPaginator.ts b/clients/client-identitystore/src/pagination/ListGroupsPaginator.ts index cd305285a32d2..00bc2617146d3 100644 --- a/clients/client-identitystore/src/pagination/ListGroupsPaginator.ts +++ b/clients/client-identitystore/src/pagination/ListGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand"; import { IdentitystoreClient } from "../IdentitystoreClient"; diff --git a/clients/client-identitystore/src/pagination/ListUsersPaginator.ts b/clients/client-identitystore/src/pagination/ListUsersPaginator.ts index 5568f894dcd18..e23112340c87e 100644 --- a/clients/client-identitystore/src/pagination/ListUsersPaginator.ts +++ b/clients/client-identitystore/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; import { IdentitystoreClient } from "../IdentitystoreClient"; diff --git a/clients/client-identitystore/src/runtimeConfig.browser.ts b/clients/client-identitystore/src/runtimeConfig.browser.ts index 1e2c515be9eee..dcb7df35a2814 100644 --- a/clients/client-identitystore/src/runtimeConfig.browser.ts +++ b/clients/client-identitystore/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IdentitystoreClientConfig } from "./IdentitystoreClient"; + +import type { IdentitystoreClientConfig } from "./IdentitystoreClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-identitystore/src/runtimeConfig.native.ts b/clients/client-identitystore/src/runtimeConfig.native.ts index d8ad1a2f608bf..c816fd38ca185 100644 --- a/clients/client-identitystore/src/runtimeConfig.native.ts +++ b/clients/client-identitystore/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IdentitystoreClientConfig } from "./IdentitystoreClient"; +import type { IdentitystoreClientConfig } from "./IdentitystoreClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-identitystore/src/runtimeConfig.shared.ts b/clients/client-identitystore/src/runtimeConfig.shared.ts index 6bcae0024c579..dde5d4ff51032 100644 --- a/clients/client-identitystore/src/runtimeConfig.shared.ts +++ b/clients/client-identitystore/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIdentitystoreHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IdentitystoreClientConfig } from "./IdentitystoreClient"; +import type { IdentitystoreClientConfig } from "./IdentitystoreClient"; /** * @internal diff --git a/clients/client-identitystore/src/runtimeConfig.ts b/clients/client-identitystore/src/runtimeConfig.ts index 13ce9e53e5acc..dc61601ee0f87 100644 --- a/clients/client-identitystore/src/runtimeConfig.ts +++ b/clients/client-identitystore/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IdentitystoreClientConfig } from "./IdentitystoreClient"; + +import type { IdentitystoreClientConfig } from "./IdentitystoreClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-identitystore/src/runtimeExtensions.ts b/clients/client-identitystore/src/runtimeExtensions.ts index c90e2fd51a39c..670a80bd845f6 100644 --- a/clients/client-identitystore/src/runtimeExtensions.ts +++ b/clients/client-identitystore/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IdentitystoreExtensionConfiguration } from "./extensionConfiguration"; +import type { IdentitystoreExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-identitystore/src/schemas/schemas_0.ts b/clients/client-identitystore/src/schemas/schemas_0.ts index 04747d0b9733d..b525839c3982f 100644 --- a/clients/client-identitystore/src/schemas/schemas_0.ts +++ b/clients/client-identitystore/src/schemas/schemas_0.ts @@ -156,7 +156,7 @@ const n0 = "com.amazonaws.identitystore"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-imagebuilder/package.json b/clients/client-imagebuilder/package.json index 8f4e45cc183e1..d9d864cf4584b 100644 --- a/clients/client-imagebuilder/package.json +++ b/clients/client-imagebuilder/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-imagebuilder/src/Imagebuilder.ts b/clients/client-imagebuilder/src/Imagebuilder.ts index 65dbe22527bdf..b9accbe4c6b5f 100644 --- a/clients/client-imagebuilder/src/Imagebuilder.ts +++ b/clients/client-imagebuilder/src/Imagebuilder.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelImageCreationCommand, @@ -359,7 +359,7 @@ import { UpdateLifecyclePolicyCommandInput, UpdateLifecyclePolicyCommandOutput, } from "./commands/UpdateLifecyclePolicyCommand"; -import { ImagebuilderClient, ImagebuilderClientConfig } from "./ImagebuilderClient"; +import { ImagebuilderClient } from "./ImagebuilderClient"; const commands = { CancelImageCreationCommand, diff --git a/clients/client-imagebuilder/src/ImagebuilderClient.ts b/clients/client-imagebuilder/src/ImagebuilderClient.ts index f1d13de428295..29bff62794115 100644 --- a/clients/client-imagebuilder/src/ImagebuilderClient.ts +++ b/clients/client-imagebuilder/src/ImagebuilderClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultImagebuilderHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -276,7 +285,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-imagebuilder/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-imagebuilder/src/auth/httpAuthExtensionConfiguration.ts index 2aaa8b8d5beae..23fa1bca8a6eb 100644 --- a/clients/client-imagebuilder/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-imagebuilder/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ImagebuilderHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ImagebuilderHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-imagebuilder/src/auth/httpAuthSchemeProvider.ts b/clients/client-imagebuilder/src/auth/httpAuthSchemeProvider.ts index 4e513658586ac..21eaafeed696e 100644 --- a/clients/client-imagebuilder/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-imagebuilder/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ImagebuilderClientConfig, ImagebuilderClientResolvedConfig } from "../ImagebuilderClient"; +import { type ImagebuilderClientResolvedConfig, ImagebuilderClientConfig } from "../ImagebuilderClient"; /** * @internal diff --git a/clients/client-imagebuilder/src/commands/CancelImageCreationCommand.ts b/clients/client-imagebuilder/src/commands/CancelImageCreationCommand.ts index 8dfc93f6cd353..b3bde379a6862 100644 --- a/clients/client-imagebuilder/src/commands/CancelImageCreationCommand.ts +++ b/clients/client-imagebuilder/src/commands/CancelImageCreationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CancelImageCreationRequest, CancelImageCreationResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CancelImageCreationRequest, CancelImageCreationResponse } from "../models/models_0"; import { CancelImageCreation } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/CancelLifecycleExecutionCommand.ts b/clients/client-imagebuilder/src/commands/CancelLifecycleExecutionCommand.ts index acb5fc5c9e9a5..49fa97107ec22 100644 --- a/clients/client-imagebuilder/src/commands/CancelLifecycleExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/CancelLifecycleExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CancelLifecycleExecutionRequest, CancelLifecycleExecutionResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CancelLifecycleExecutionRequest, CancelLifecycleExecutionResponse } from "../models/models_0"; import { CancelLifecycleExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/CreateComponentCommand.ts b/clients/client-imagebuilder/src/commands/CreateComponentCommand.ts index a9a3e2c25feeb..d6470e9b05334 100644 --- a/clients/client-imagebuilder/src/commands/CreateComponentCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CreateComponentRequest, CreateComponentResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CreateComponentRequest, CreateComponentResponse } from "../models/models_0"; import { CreateComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/CreateContainerRecipeCommand.ts b/clients/client-imagebuilder/src/commands/CreateContainerRecipeCommand.ts index d59ec0628476a..7021bb9064b6b 100644 --- a/clients/client-imagebuilder/src/commands/CreateContainerRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateContainerRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CreateContainerRecipeRequest, CreateContainerRecipeResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CreateContainerRecipeRequest, CreateContainerRecipeResponse } from "../models/models_0"; import { CreateContainerRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/CreateDistributionConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/CreateDistributionConfigurationCommand.ts index 6118d56fddd7a..1029c9bb8212e 100644 --- a/clients/client-imagebuilder/src/commands/CreateDistributionConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateDistributionConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CreateDistributionConfigurationRequest, CreateDistributionConfigurationResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { + CreateDistributionConfigurationRequest, + CreateDistributionConfigurationResponse, +} from "../models/models_0"; import { CreateDistributionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/CreateImageCommand.ts b/clients/client-imagebuilder/src/commands/CreateImageCommand.ts index d2805c3319eb5..41cef47dda157 100644 --- a/clients/client-imagebuilder/src/commands/CreateImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CreateImageRequest, CreateImageResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CreateImageRequest, CreateImageResponse } from "../models/models_0"; import { CreateImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/CreateImagePipelineCommand.ts b/clients/client-imagebuilder/src/commands/CreateImagePipelineCommand.ts index f58a3228e8ba6..3aa436cf97d47 100644 --- a/clients/client-imagebuilder/src/commands/CreateImagePipelineCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateImagePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CreateImagePipelineRequest, CreateImagePipelineResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CreateImagePipelineRequest, CreateImagePipelineResponse } from "../models/models_0"; import { CreateImagePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/CreateImageRecipeCommand.ts b/clients/client-imagebuilder/src/commands/CreateImageRecipeCommand.ts index 299d292829515..6408e5a8701eb 100644 --- a/clients/client-imagebuilder/src/commands/CreateImageRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateImageRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CreateImageRecipeRequest, CreateImageRecipeResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CreateImageRecipeRequest, CreateImageRecipeResponse } from "../models/models_0"; import { CreateImageRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/CreateInfrastructureConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/CreateInfrastructureConfigurationCommand.ts index 1ae7a7c7f677e..3c9afca39dcf3 100644 --- a/clients/client-imagebuilder/src/commands/CreateInfrastructureConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateInfrastructureConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CreateInfrastructureConfigurationRequest, CreateInfrastructureConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-imagebuilder/src/commands/CreateLifecyclePolicyCommand.ts b/clients/client-imagebuilder/src/commands/CreateLifecyclePolicyCommand.ts index 3202e2346453a..10bdb0b41b12d 100644 --- a/clients/client-imagebuilder/src/commands/CreateLifecyclePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CreateLifecyclePolicyRequest, CreateLifecyclePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CreateLifecyclePolicyRequest, CreateLifecyclePolicyResponse } from "../models/models_0"; import { CreateLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/CreateWorkflowCommand.ts b/clients/client-imagebuilder/src/commands/CreateWorkflowCommand.ts index ef1bd0fc7fba8..5b213ac7eec52 100644 --- a/clients/client-imagebuilder/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-imagebuilder/src/commands/CreateWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_0"; import { CreateWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/DeleteComponentCommand.ts b/clients/client-imagebuilder/src/commands/DeleteComponentCommand.ts index 2edf73a6ab000..6b1ce6bdd6cb8 100644 --- a/clients/client-imagebuilder/src/commands/DeleteComponentCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { DeleteComponentRequest, DeleteComponentResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { DeleteComponentRequest, DeleteComponentResponse } from "../models/models_0"; import { DeleteComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/DeleteContainerRecipeCommand.ts b/clients/client-imagebuilder/src/commands/DeleteContainerRecipeCommand.ts index 26f5874c2c2f8..2de0a9f2fb7d4 100644 --- a/clients/client-imagebuilder/src/commands/DeleteContainerRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteContainerRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { DeleteContainerRecipeRequest, DeleteContainerRecipeResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { DeleteContainerRecipeRequest, DeleteContainerRecipeResponse } from "../models/models_0"; import { DeleteContainerRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/DeleteDistributionConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/DeleteDistributionConfigurationCommand.ts index c51a11df581a3..e3562393f31c5 100644 --- a/clients/client-imagebuilder/src/commands/DeleteDistributionConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteDistributionConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { DeleteDistributionConfigurationRequest, DeleteDistributionConfigurationResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { + DeleteDistributionConfigurationRequest, + DeleteDistributionConfigurationResponse, +} from "../models/models_0"; import { DeleteDistributionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/DeleteImageCommand.ts b/clients/client-imagebuilder/src/commands/DeleteImageCommand.ts index 042acb340f710..74765029bd8ec 100644 --- a/clients/client-imagebuilder/src/commands/DeleteImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { DeleteImageRequest, DeleteImageResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { DeleteImageRequest, DeleteImageResponse } from "../models/models_0"; import { DeleteImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/DeleteImagePipelineCommand.ts b/clients/client-imagebuilder/src/commands/DeleteImagePipelineCommand.ts index 4d4b90d09388d..46a69604d3d7c 100644 --- a/clients/client-imagebuilder/src/commands/DeleteImagePipelineCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteImagePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { DeleteImagePipelineRequest, DeleteImagePipelineResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { DeleteImagePipelineRequest, DeleteImagePipelineResponse } from "../models/models_0"; import { DeleteImagePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/DeleteImageRecipeCommand.ts b/clients/client-imagebuilder/src/commands/DeleteImageRecipeCommand.ts index c607751dc83a5..9589a351c3fd4 100644 --- a/clients/client-imagebuilder/src/commands/DeleteImageRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteImageRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { DeleteImageRecipeRequest, DeleteImageRecipeResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { DeleteImageRecipeRequest, DeleteImageRecipeResponse } from "../models/models_0"; import { DeleteImageRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/DeleteInfrastructureConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/DeleteInfrastructureConfigurationCommand.ts index 15969fb9f6060..380c2b1d2de84 100644 --- a/clients/client-imagebuilder/src/commands/DeleteInfrastructureConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteInfrastructureConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { DeleteInfrastructureConfigurationRequest, DeleteInfrastructureConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-imagebuilder/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-imagebuilder/src/commands/DeleteLifecyclePolicyCommand.ts index a5f720bf4b452..4b29ee2520974 100644 --- a/clients/client-imagebuilder/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0"; import { DeleteLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/DeleteWorkflowCommand.ts b/clients/client-imagebuilder/src/commands/DeleteWorkflowCommand.ts index b287f99c839ae..77648b6754740 100644 --- a/clients/client-imagebuilder/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-imagebuilder/src/commands/DeleteWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_0"; import { DeleteWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/DistributeImageCommand.ts b/clients/client-imagebuilder/src/commands/DistributeImageCommand.ts index 276ec2f9ba5de..a48d9bbead366 100644 --- a/clients/client-imagebuilder/src/commands/DistributeImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/DistributeImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { DistributeImageRequest, DistributeImageResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { DistributeImageRequest, DistributeImageResponse } from "../models/models_0"; import { DistributeImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetComponentCommand.ts b/clients/client-imagebuilder/src/commands/GetComponentCommand.ts index 0217b3049b12f..8864100d245ae 100644 --- a/clients/client-imagebuilder/src/commands/GetComponentCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetComponentRequest, GetComponentResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetComponentRequest, GetComponentResponse } from "../models/models_0"; import { GetComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetComponentPolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetComponentPolicyCommand.ts index d32d2ac273827..51f1ec5d085a1 100644 --- a/clients/client-imagebuilder/src/commands/GetComponentPolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetComponentPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetComponentPolicyRequest, GetComponentPolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetComponentPolicyRequest, GetComponentPolicyResponse } from "../models/models_0"; import { GetComponentPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetContainerRecipeCommand.ts b/clients/client-imagebuilder/src/commands/GetContainerRecipeCommand.ts index 2324afee404c5..2c82511364f2d 100644 --- a/clients/client-imagebuilder/src/commands/GetContainerRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetContainerRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetContainerRecipeRequest, GetContainerRecipeResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetContainerRecipeRequest, GetContainerRecipeResponse } from "../models/models_0"; import { GetContainerRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetContainerRecipePolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetContainerRecipePolicyCommand.ts index 68437051f4e80..bb521899622c7 100644 --- a/clients/client-imagebuilder/src/commands/GetContainerRecipePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetContainerRecipePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetContainerRecipePolicyRequest, GetContainerRecipePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetContainerRecipePolicyRequest, GetContainerRecipePolicyResponse } from "../models/models_0"; import { GetContainerRecipePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetDistributionConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/GetDistributionConfigurationCommand.ts index 02cbf2a7fd4aa..0cfcab5a700b3 100644 --- a/clients/client-imagebuilder/src/commands/GetDistributionConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetDistributionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetDistributionConfigurationRequest, GetDistributionConfigurationResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetDistributionConfigurationRequest, GetDistributionConfigurationResponse } from "../models/models_0"; import { GetDistributionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetImageCommand.ts b/clients/client-imagebuilder/src/commands/GetImageCommand.ts index 08d0cf64100e1..667e264d55b38 100644 --- a/clients/client-imagebuilder/src/commands/GetImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetImageRequest, GetImageResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetImageRequest, GetImageResponse } from "../models/models_0"; import { GetImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetImagePipelineCommand.ts b/clients/client-imagebuilder/src/commands/GetImagePipelineCommand.ts index dfdd52818a86e..5778e1b449d63 100644 --- a/clients/client-imagebuilder/src/commands/GetImagePipelineCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImagePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetImagePipelineRequest, GetImagePipelineResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetImagePipelineRequest, GetImagePipelineResponse } from "../models/models_0"; import { GetImagePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetImagePolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetImagePolicyCommand.ts index f01b2e62c6a11..448dfd0bd1592 100644 --- a/clients/client-imagebuilder/src/commands/GetImagePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImagePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetImagePolicyRequest, GetImagePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetImagePolicyRequest, GetImagePolicyResponse } from "../models/models_0"; import { GetImagePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetImageRecipeCommand.ts b/clients/client-imagebuilder/src/commands/GetImageRecipeCommand.ts index 43db778924baf..6ad658e76539f 100644 --- a/clients/client-imagebuilder/src/commands/GetImageRecipeCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImageRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetImageRecipeRequest, GetImageRecipeResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetImageRecipeRequest, GetImageRecipeResponse } from "../models/models_0"; import { GetImageRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetImageRecipePolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetImageRecipePolicyCommand.ts index 4013b45dde748..2a05c53acc569 100644 --- a/clients/client-imagebuilder/src/commands/GetImageRecipePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetImageRecipePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetImageRecipePolicyRequest, GetImageRecipePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetImageRecipePolicyRequest, GetImageRecipePolicyResponse } from "../models/models_0"; import { GetImageRecipePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetInfrastructureConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/GetInfrastructureConfigurationCommand.ts index 65796f26a1fe9..1f0c42c64f255 100644 --- a/clients/client-imagebuilder/src/commands/GetInfrastructureConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetInfrastructureConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetInfrastructureConfigurationRequest, GetInfrastructureConfigurationResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetInfrastructureConfigurationRequest, GetInfrastructureConfigurationResponse } from "../models/models_0"; import { GetInfrastructureConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetLifecycleExecutionCommand.ts b/clients/client-imagebuilder/src/commands/GetLifecycleExecutionCommand.ts index 11fcf93face33..240aeb5a518ea 100644 --- a/clients/client-imagebuilder/src/commands/GetLifecycleExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetLifecycleExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetLifecycleExecutionRequest, GetLifecycleExecutionResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetLifecycleExecutionRequest, GetLifecycleExecutionResponse } from "../models/models_0"; import { GetLifecycleExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetLifecyclePolicyCommand.ts b/clients/client-imagebuilder/src/commands/GetLifecyclePolicyCommand.ts index 0447210883e79..e7550ce073e4a 100644 --- a/clients/client-imagebuilder/src/commands/GetLifecyclePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetLifecyclePolicyRequest, GetLifecyclePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetLifecyclePolicyRequest, GetLifecyclePolicyResponse } from "../models/models_0"; import { GetLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetMarketplaceResourceCommand.ts b/clients/client-imagebuilder/src/commands/GetMarketplaceResourceCommand.ts index 3e215a8b41222..1b00ecb043561 100644 --- a/clients/client-imagebuilder/src/commands/GetMarketplaceResourceCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetMarketplaceResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetMarketplaceResourceRequest, GetMarketplaceResourceResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetMarketplaceResourceRequest, GetMarketplaceResourceResponse } from "../models/models_0"; import { GetMarketplaceResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetWorkflowCommand.ts b/clients/client-imagebuilder/src/commands/GetWorkflowCommand.ts index 6b1a34b1bdf96..d28f62a29b374 100644 --- a/clients/client-imagebuilder/src/commands/GetWorkflowCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; import { GetWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetWorkflowExecutionCommand.ts b/clients/client-imagebuilder/src/commands/GetWorkflowExecutionCommand.ts index 20f74d110521c..769435efd50f7 100644 --- a/clients/client-imagebuilder/src/commands/GetWorkflowExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetWorkflowExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetWorkflowExecutionRequest, GetWorkflowExecutionResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetWorkflowExecutionRequest, GetWorkflowExecutionResponse } from "../models/models_0"; import { GetWorkflowExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/GetWorkflowStepExecutionCommand.ts b/clients/client-imagebuilder/src/commands/GetWorkflowStepExecutionCommand.ts index 4a9f18418258d..b01c098287c94 100644 --- a/clients/client-imagebuilder/src/commands/GetWorkflowStepExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/GetWorkflowStepExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { GetWorkflowStepExecutionRequest, GetWorkflowStepExecutionResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { GetWorkflowStepExecutionRequest, GetWorkflowStepExecutionResponse } from "../models/models_0"; import { GetWorkflowStepExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ImportComponentCommand.ts b/clients/client-imagebuilder/src/commands/ImportComponentCommand.ts index 1cc67b6468812..5ebdb6a671567 100644 --- a/clients/client-imagebuilder/src/commands/ImportComponentCommand.ts +++ b/clients/client-imagebuilder/src/commands/ImportComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ImportComponentRequest, ImportComponentResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ImportComponentRequest, ImportComponentResponse } from "../models/models_0"; import { ImportComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ImportDiskImageCommand.ts b/clients/client-imagebuilder/src/commands/ImportDiskImageCommand.ts index dceb98b395ed6..10b54733610d6 100644 --- a/clients/client-imagebuilder/src/commands/ImportDiskImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/ImportDiskImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ImportDiskImageRequest, ImportDiskImageResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ImportDiskImageRequest, ImportDiskImageResponse } from "../models/models_0"; import { ImportDiskImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ImportVmImageCommand.ts b/clients/client-imagebuilder/src/commands/ImportVmImageCommand.ts index 6ac701517eeae..62aebcec17dcc 100644 --- a/clients/client-imagebuilder/src/commands/ImportVmImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/ImportVmImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ImportVmImageRequest, ImportVmImageResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ImportVmImageRequest, ImportVmImageResponse } from "../models/models_0"; import { ImportVmImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListComponentBuildVersionsCommand.ts b/clients/client-imagebuilder/src/commands/ListComponentBuildVersionsCommand.ts index 1fe1ecbea22ac..29d20efadf14e 100644 --- a/clients/client-imagebuilder/src/commands/ListComponentBuildVersionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListComponentBuildVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListComponentBuildVersionsRequest, ListComponentBuildVersionsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListComponentBuildVersionsRequest, ListComponentBuildVersionsResponse } from "../models/models_0"; import { ListComponentBuildVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListComponentsCommand.ts b/clients/client-imagebuilder/src/commands/ListComponentsCommand.ts index a6f34cf5a9b9c..8206c2f682143 100644 --- a/clients/client-imagebuilder/src/commands/ListComponentsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListComponentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; import { ListComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListContainerRecipesCommand.ts b/clients/client-imagebuilder/src/commands/ListContainerRecipesCommand.ts index 448677f2d90ad..4600628030b92 100644 --- a/clients/client-imagebuilder/src/commands/ListContainerRecipesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListContainerRecipesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListContainerRecipesRequest, ListContainerRecipesResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListContainerRecipesRequest, ListContainerRecipesResponse } from "../models/models_0"; import { ListContainerRecipes } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListDistributionConfigurationsCommand.ts b/clients/client-imagebuilder/src/commands/ListDistributionConfigurationsCommand.ts index cb64b9d3b853e..183b458e82a7a 100644 --- a/clients/client-imagebuilder/src/commands/ListDistributionConfigurationsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListDistributionConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListDistributionConfigurationsRequest, ListDistributionConfigurationsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListDistributionConfigurationsRequest, ListDistributionConfigurationsResponse } from "../models/models_0"; import { ListDistributionConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListImageBuildVersionsCommand.ts b/clients/client-imagebuilder/src/commands/ListImageBuildVersionsCommand.ts index 1f1980ab99227..fc9553da3b1e0 100644 --- a/clients/client-imagebuilder/src/commands/ListImageBuildVersionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImageBuildVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListImageBuildVersionsRequest, ListImageBuildVersionsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListImageBuildVersionsRequest, ListImageBuildVersionsResponse } from "../models/models_0"; import { ListImageBuildVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListImagePackagesCommand.ts b/clients/client-imagebuilder/src/commands/ListImagePackagesCommand.ts index 3717c3e83bc2b..93f1b3b6f8cf1 100644 --- a/clients/client-imagebuilder/src/commands/ListImagePackagesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImagePackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListImagePackagesRequest, ListImagePackagesResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListImagePackagesRequest, ListImagePackagesResponse } from "../models/models_0"; import { ListImagePackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListImagePipelineImagesCommand.ts b/clients/client-imagebuilder/src/commands/ListImagePipelineImagesCommand.ts index 757f1b4721806..ab907cf443f99 100644 --- a/clients/client-imagebuilder/src/commands/ListImagePipelineImagesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImagePipelineImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListImagePipelineImagesRequest, ListImagePipelineImagesResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListImagePipelineImagesRequest, ListImagePipelineImagesResponse } from "../models/models_0"; import { ListImagePipelineImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListImagePipelinesCommand.ts b/clients/client-imagebuilder/src/commands/ListImagePipelinesCommand.ts index 2003129a1e3cb..931ff7caca371 100644 --- a/clients/client-imagebuilder/src/commands/ListImagePipelinesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImagePipelinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListImagePipelinesRequest, ListImagePipelinesResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListImagePipelinesRequest, ListImagePipelinesResponse } from "../models/models_0"; import { ListImagePipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListImageRecipesCommand.ts b/clients/client-imagebuilder/src/commands/ListImageRecipesCommand.ts index a45f56e3128d8..4aec38792e747 100644 --- a/clients/client-imagebuilder/src/commands/ListImageRecipesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImageRecipesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListImageRecipesRequest, ListImageRecipesResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListImageRecipesRequest, ListImageRecipesResponse } from "../models/models_0"; import { ListImageRecipes } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListImageScanFindingAggregationsCommand.ts b/clients/client-imagebuilder/src/commands/ListImageScanFindingAggregationsCommand.ts index ff1aeed05d980..ba91d6be7990a 100644 --- a/clients/client-imagebuilder/src/commands/ListImageScanFindingAggregationsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImageScanFindingAggregationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListImageScanFindingAggregationsRequest, ListImageScanFindingAggregationsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { + ListImageScanFindingAggregationsRequest, + ListImageScanFindingAggregationsResponse, +} from "../models/models_0"; import { ListImageScanFindingAggregations } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListImageScanFindingsCommand.ts b/clients/client-imagebuilder/src/commands/ListImageScanFindingsCommand.ts index d70a386a18d70..4a312e4c303b7 100644 --- a/clients/client-imagebuilder/src/commands/ListImageScanFindingsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImageScanFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListImageScanFindingsRequest, ListImageScanFindingsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListImageScanFindingsRequest, ListImageScanFindingsResponse } from "../models/models_0"; import { ListImageScanFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListImagesCommand.ts b/clients/client-imagebuilder/src/commands/ListImagesCommand.ts index 09ae690044ff5..af7c6ccf6728d 100644 --- a/clients/client-imagebuilder/src/commands/ListImagesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListImagesRequest, ListImagesResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListImagesRequest, ListImagesResponse } from "../models/models_0"; import { ListImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListInfrastructureConfigurationsCommand.ts b/clients/client-imagebuilder/src/commands/ListInfrastructureConfigurationsCommand.ts index 1b1b380cab659..00ab113c65bd2 100644 --- a/clients/client-imagebuilder/src/commands/ListInfrastructureConfigurationsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListInfrastructureConfigurationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListInfrastructureConfigurationsRequest, ListInfrastructureConfigurationsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { + ListInfrastructureConfigurationsRequest, + ListInfrastructureConfigurationsResponse, +} from "../models/models_0"; import { ListInfrastructureConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListLifecycleExecutionResourcesCommand.ts b/clients/client-imagebuilder/src/commands/ListLifecycleExecutionResourcesCommand.ts index a90db2db66d00..41b5bae46d906 100644 --- a/clients/client-imagebuilder/src/commands/ListLifecycleExecutionResourcesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListLifecycleExecutionResourcesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListLifecycleExecutionResourcesRequest, ListLifecycleExecutionResourcesResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { + ListLifecycleExecutionResourcesRequest, + ListLifecycleExecutionResourcesResponse, +} from "../models/models_0"; import { ListLifecycleExecutionResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListLifecycleExecutionsCommand.ts b/clients/client-imagebuilder/src/commands/ListLifecycleExecutionsCommand.ts index f88b6d3e302f9..da4c065d36581 100644 --- a/clients/client-imagebuilder/src/commands/ListLifecycleExecutionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListLifecycleExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListLifecycleExecutionsRequest, ListLifecycleExecutionsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListLifecycleExecutionsRequest, ListLifecycleExecutionsResponse } from "../models/models_0"; import { ListLifecycleExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListLifecyclePoliciesCommand.ts b/clients/client-imagebuilder/src/commands/ListLifecyclePoliciesCommand.ts index 112f31219fb62..2598939812aa2 100644 --- a/clients/client-imagebuilder/src/commands/ListLifecyclePoliciesCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListLifecyclePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListLifecyclePoliciesRequest, ListLifecyclePoliciesResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListLifecyclePoliciesRequest, ListLifecyclePoliciesResponse } from "../models/models_0"; import { ListLifecyclePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListTagsForResourceCommand.ts b/clients/client-imagebuilder/src/commands/ListTagsForResourceCommand.ts index 1da16689c4c28..71824cd8bfeea 100644 --- a/clients/client-imagebuilder/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListWaitingWorkflowStepsCommand.ts b/clients/client-imagebuilder/src/commands/ListWaitingWorkflowStepsCommand.ts index 8bd1f4dfa0726..75bd1273ba5ab 100644 --- a/clients/client-imagebuilder/src/commands/ListWaitingWorkflowStepsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWaitingWorkflowStepsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListWaitingWorkflowStepsRequest, ListWaitingWorkflowStepsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListWaitingWorkflowStepsRequest, ListWaitingWorkflowStepsResponse } from "../models/models_0"; import { ListWaitingWorkflowSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListWorkflowBuildVersionsCommand.ts b/clients/client-imagebuilder/src/commands/ListWorkflowBuildVersionsCommand.ts index 73f77e85fef07..d4b62a119d25c 100644 --- a/clients/client-imagebuilder/src/commands/ListWorkflowBuildVersionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWorkflowBuildVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListWorkflowBuildVersionsRequest, ListWorkflowBuildVersionsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListWorkflowBuildVersionsRequest, ListWorkflowBuildVersionsResponse } from "../models/models_0"; import { ListWorkflowBuildVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListWorkflowExecutionsCommand.ts b/clients/client-imagebuilder/src/commands/ListWorkflowExecutionsCommand.ts index b5a590c30b7e1..f12510ca5e245 100644 --- a/clients/client-imagebuilder/src/commands/ListWorkflowExecutionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWorkflowExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListWorkflowExecutionsRequest, ListWorkflowExecutionsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListWorkflowExecutionsRequest, ListWorkflowExecutionsResponse } from "../models/models_0"; import { ListWorkflowExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListWorkflowStepExecutionsCommand.ts b/clients/client-imagebuilder/src/commands/ListWorkflowStepExecutionsCommand.ts index f5eaeea039168..558c55f10c70e 100644 --- a/clients/client-imagebuilder/src/commands/ListWorkflowStepExecutionsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWorkflowStepExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListWorkflowStepExecutionsRequest, ListWorkflowStepExecutionsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListWorkflowStepExecutionsRequest, ListWorkflowStepExecutionsResponse } from "../models/models_0"; import { ListWorkflowStepExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/ListWorkflowsCommand.ts b/clients/client-imagebuilder/src/commands/ListWorkflowsCommand.ts index aa61b0ab78eb2..d712f16482626 100644 --- a/clients/client-imagebuilder/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-imagebuilder/src/commands/ListWorkflowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; import { ListWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/PutComponentPolicyCommand.ts b/clients/client-imagebuilder/src/commands/PutComponentPolicyCommand.ts index ad47e1ac34763..4842280a713f3 100644 --- a/clients/client-imagebuilder/src/commands/PutComponentPolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/PutComponentPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { PutComponentPolicyRequest, PutComponentPolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { PutComponentPolicyRequest, PutComponentPolicyResponse } from "../models/models_0"; import { PutComponentPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/PutContainerRecipePolicyCommand.ts b/clients/client-imagebuilder/src/commands/PutContainerRecipePolicyCommand.ts index 0fa8ed4dae5b0..759e615b78192 100644 --- a/clients/client-imagebuilder/src/commands/PutContainerRecipePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/PutContainerRecipePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { PutContainerRecipePolicyRequest, PutContainerRecipePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { PutContainerRecipePolicyRequest, PutContainerRecipePolicyResponse } from "../models/models_0"; import { PutContainerRecipePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/PutImagePolicyCommand.ts b/clients/client-imagebuilder/src/commands/PutImagePolicyCommand.ts index 091da8c060f9f..c08bd1856a86c 100644 --- a/clients/client-imagebuilder/src/commands/PutImagePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/PutImagePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { PutImagePolicyRequest, PutImagePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { PutImagePolicyRequest, PutImagePolicyResponse } from "../models/models_0"; import { PutImagePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/PutImageRecipePolicyCommand.ts b/clients/client-imagebuilder/src/commands/PutImageRecipePolicyCommand.ts index ead33f9924c0e..90685b262715b 100644 --- a/clients/client-imagebuilder/src/commands/PutImageRecipePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/PutImageRecipePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { PutImageRecipePolicyRequest, PutImageRecipePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { PutImageRecipePolicyRequest, PutImageRecipePolicyResponse } from "../models/models_0"; import { PutImageRecipePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/RetryImageCommand.ts b/clients/client-imagebuilder/src/commands/RetryImageCommand.ts index 6f71ac2aee009..1d02712c1c229 100644 --- a/clients/client-imagebuilder/src/commands/RetryImageCommand.ts +++ b/clients/client-imagebuilder/src/commands/RetryImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { RetryImageRequest, RetryImageResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { RetryImageRequest, RetryImageResponse } from "../models/models_0"; import { RetryImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/SendWorkflowStepActionCommand.ts b/clients/client-imagebuilder/src/commands/SendWorkflowStepActionCommand.ts index 26ee2aa78daca..0319a87f3f5e5 100644 --- a/clients/client-imagebuilder/src/commands/SendWorkflowStepActionCommand.ts +++ b/clients/client-imagebuilder/src/commands/SendWorkflowStepActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { SendWorkflowStepActionRequest, SendWorkflowStepActionResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { SendWorkflowStepActionRequest, SendWorkflowStepActionResponse } from "../models/models_0"; import { SendWorkflowStepAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/StartImagePipelineExecutionCommand.ts b/clients/client-imagebuilder/src/commands/StartImagePipelineExecutionCommand.ts index b2e7117bfda63..d5cfec0fc4db1 100644 --- a/clients/client-imagebuilder/src/commands/StartImagePipelineExecutionCommand.ts +++ b/clients/client-imagebuilder/src/commands/StartImagePipelineExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { StartImagePipelineExecutionRequest, StartImagePipelineExecutionResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { StartImagePipelineExecutionRequest, StartImagePipelineExecutionResponse } from "../models/models_0"; import { StartImagePipelineExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/StartResourceStateUpdateCommand.ts b/clients/client-imagebuilder/src/commands/StartResourceStateUpdateCommand.ts index 6eec7ad6e482a..e9d7676f97661 100644 --- a/clients/client-imagebuilder/src/commands/StartResourceStateUpdateCommand.ts +++ b/clients/client-imagebuilder/src/commands/StartResourceStateUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { StartResourceStateUpdateRequest, StartResourceStateUpdateResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { StartResourceStateUpdateRequest, StartResourceStateUpdateResponse } from "../models/models_0"; import { StartResourceStateUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/TagResourceCommand.ts b/clients/client-imagebuilder/src/commands/TagResourceCommand.ts index aa98f6fe55921..d915e0da05a00 100644 --- a/clients/client-imagebuilder/src/commands/TagResourceCommand.ts +++ b/clients/client-imagebuilder/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/UntagResourceCommand.ts b/clients/client-imagebuilder/src/commands/UntagResourceCommand.ts index 750e9def3df24..48f24c76bcb95 100644 --- a/clients/client-imagebuilder/src/commands/UntagResourceCommand.ts +++ b/clients/client-imagebuilder/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/UpdateDistributionConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/UpdateDistributionConfigurationCommand.ts index f4d31a9ce7f1a..381d80799c54e 100644 --- a/clients/client-imagebuilder/src/commands/UpdateDistributionConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/UpdateDistributionConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { UpdateDistributionConfigurationRequest, UpdateDistributionConfigurationResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { + UpdateDistributionConfigurationRequest, + UpdateDistributionConfigurationResponse, +} from "../models/models_0"; import { UpdateDistributionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/UpdateImagePipelineCommand.ts b/clients/client-imagebuilder/src/commands/UpdateImagePipelineCommand.ts index d5a6eac9b3b64..ec1f337045ced 100644 --- a/clients/client-imagebuilder/src/commands/UpdateImagePipelineCommand.ts +++ b/clients/client-imagebuilder/src/commands/UpdateImagePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { UpdateImagePipelineRequest, UpdateImagePipelineResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { UpdateImagePipelineRequest, UpdateImagePipelineResponse } from "../models/models_0"; import { UpdateImagePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/commands/UpdateInfrastructureConfigurationCommand.ts b/clients/client-imagebuilder/src/commands/UpdateInfrastructureConfigurationCommand.ts index 92b8ce0470c8a..101489a134efb 100644 --- a/clients/client-imagebuilder/src/commands/UpdateInfrastructureConfigurationCommand.ts +++ b/clients/client-imagebuilder/src/commands/UpdateInfrastructureConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { UpdateInfrastructureConfigurationRequest, UpdateInfrastructureConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-imagebuilder/src/commands/UpdateLifecyclePolicyCommand.ts b/clients/client-imagebuilder/src/commands/UpdateLifecyclePolicyCommand.ts index e3896ac2b68de..fec60cf6f69ec 100644 --- a/clients/client-imagebuilder/src/commands/UpdateLifecyclePolicyCommand.ts +++ b/clients/client-imagebuilder/src/commands/UpdateLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; -import { UpdateLifecyclePolicyRequest, UpdateLifecyclePolicyResponse } from "../models/models_0"; +import type { ImagebuilderClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ImagebuilderClient"; +import type { UpdateLifecyclePolicyRequest, UpdateLifecyclePolicyResponse } from "../models/models_0"; import { UpdateLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-imagebuilder/src/endpoint/EndpointParameters.ts b/clients/client-imagebuilder/src/endpoint/EndpointParameters.ts index d48f3d21ced40..919da97f73aaf 100644 --- a/clients/client-imagebuilder/src/endpoint/EndpointParameters.ts +++ b/clients/client-imagebuilder/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-imagebuilder/src/endpoint/endpointResolver.ts b/clients/client-imagebuilder/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-imagebuilder/src/endpoint/endpointResolver.ts +++ b/clients/client-imagebuilder/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-imagebuilder/src/extensionConfiguration.ts b/clients/client-imagebuilder/src/extensionConfiguration.ts index a29677cc33748..46ad099f0508a 100644 --- a/clients/client-imagebuilder/src/extensionConfiguration.ts +++ b/clients/client-imagebuilder/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-imagebuilder/src/models/ImagebuilderServiceException.ts b/clients/client-imagebuilder/src/models/ImagebuilderServiceException.ts index 4cbf71e10e557..b5a47710567e6 100644 --- a/clients/client-imagebuilder/src/models/ImagebuilderServiceException.ts +++ b/clients/client-imagebuilder/src/models/ImagebuilderServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-imagebuilder/src/models/errors.ts b/clients/client-imagebuilder/src/models/errors.ts index 690909826c166..a804a2302c490 100644 --- a/clients/client-imagebuilder/src/models/errors.ts +++ b/clients/client-imagebuilder/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ImagebuilderServiceException as __BaseException } from "./ImagebuilderServiceException"; diff --git a/clients/client-imagebuilder/src/pagination/Interfaces.ts b/clients/client-imagebuilder/src/pagination/Interfaces.ts index 443b21992780c..74ead9fd79352 100644 --- a/clients/client-imagebuilder/src/pagination/Interfaces.ts +++ b/clients/client-imagebuilder/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ImagebuilderClient } from "../ImagebuilderClient"; diff --git a/clients/client-imagebuilder/src/pagination/ListComponentBuildVersionsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListComponentBuildVersionsPaginator.ts index ea85433f2d012..1e58a9af987c8 100644 --- a/clients/client-imagebuilder/src/pagination/ListComponentBuildVersionsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListComponentBuildVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentBuildVersionsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListComponentsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListComponentsPaginator.ts index d73c98bfa6ecb..c93b573fe2875 100644 --- a/clients/client-imagebuilder/src/pagination/ListComponentsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListContainerRecipesPaginator.ts b/clients/client-imagebuilder/src/pagination/ListContainerRecipesPaginator.ts index 5fb7091e54894..29beab033f52c 100644 --- a/clients/client-imagebuilder/src/pagination/ListContainerRecipesPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListContainerRecipesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContainerRecipesCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListDistributionConfigurationsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListDistributionConfigurationsPaginator.ts index 161be82c63250..11f5f6d621d56 100644 --- a/clients/client-imagebuilder/src/pagination/ListDistributionConfigurationsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListDistributionConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDistributionConfigurationsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListImageBuildVersionsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListImageBuildVersionsPaginator.ts index 5e8c2cd3d8a49..b5e56062b7b39 100644 --- a/clients/client-imagebuilder/src/pagination/ListImageBuildVersionsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListImageBuildVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImageBuildVersionsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListImagePackagesPaginator.ts b/clients/client-imagebuilder/src/pagination/ListImagePackagesPaginator.ts index e3dc52c20f541..107473153044f 100644 --- a/clients/client-imagebuilder/src/pagination/ListImagePackagesPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListImagePackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImagePackagesCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListImagePipelineImagesPaginator.ts b/clients/client-imagebuilder/src/pagination/ListImagePipelineImagesPaginator.ts index aa796e457432f..6d59038aa7abd 100644 --- a/clients/client-imagebuilder/src/pagination/ListImagePipelineImagesPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListImagePipelineImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImagePipelineImagesCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListImagePipelinesPaginator.ts b/clients/client-imagebuilder/src/pagination/ListImagePipelinesPaginator.ts index af5d9a739a88e..b96cd5807d6c5 100644 --- a/clients/client-imagebuilder/src/pagination/ListImagePipelinesPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListImagePipelinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImagePipelinesCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListImageRecipesPaginator.ts b/clients/client-imagebuilder/src/pagination/ListImageRecipesPaginator.ts index 0174d4c71da94..982f70c77ab2e 100644 --- a/clients/client-imagebuilder/src/pagination/ListImageRecipesPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListImageRecipesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImageRecipesCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListImageScanFindingAggregationsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListImageScanFindingAggregationsPaginator.ts index 445596c15585e..5436d4b26f0d6 100644 --- a/clients/client-imagebuilder/src/pagination/ListImageScanFindingAggregationsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListImageScanFindingAggregationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImageScanFindingAggregationsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListImageScanFindingsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListImageScanFindingsPaginator.ts index b04ea49baea5e..5a7284e444c2e 100644 --- a/clients/client-imagebuilder/src/pagination/ListImageScanFindingsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListImageScanFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImageScanFindingsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListImagesPaginator.ts b/clients/client-imagebuilder/src/pagination/ListImagesPaginator.ts index 22cedb638f94f..b63299645d5e7 100644 --- a/clients/client-imagebuilder/src/pagination/ListImagesPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImagesCommand, ListImagesCommandInput, ListImagesCommandOutput } from "../commands/ListImagesCommand"; import { ImagebuilderClient } from "../ImagebuilderClient"; diff --git a/clients/client-imagebuilder/src/pagination/ListInfrastructureConfigurationsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListInfrastructureConfigurationsPaginator.ts index c0a8235beb1b2..778a3ae799bc9 100644 --- a/clients/client-imagebuilder/src/pagination/ListInfrastructureConfigurationsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListInfrastructureConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInfrastructureConfigurationsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListLifecycleExecutionResourcesPaginator.ts b/clients/client-imagebuilder/src/pagination/ListLifecycleExecutionResourcesPaginator.ts index f4318ca8556a2..50cff2eccb589 100644 --- a/clients/client-imagebuilder/src/pagination/ListLifecycleExecutionResourcesPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListLifecycleExecutionResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLifecycleExecutionResourcesCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListLifecycleExecutionsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListLifecycleExecutionsPaginator.ts index f5d6d0d2d5475..e064628dd79a2 100644 --- a/clients/client-imagebuilder/src/pagination/ListLifecycleExecutionsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListLifecycleExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLifecycleExecutionsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListLifecyclePoliciesPaginator.ts b/clients/client-imagebuilder/src/pagination/ListLifecyclePoliciesPaginator.ts index db357a546f43e..907de084ab95a 100644 --- a/clients/client-imagebuilder/src/pagination/ListLifecyclePoliciesPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListLifecyclePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLifecyclePoliciesCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListWaitingWorkflowStepsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListWaitingWorkflowStepsPaginator.ts index 641b7df753033..fcd66cd286d0c 100644 --- a/clients/client-imagebuilder/src/pagination/ListWaitingWorkflowStepsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListWaitingWorkflowStepsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWaitingWorkflowStepsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListWorkflowBuildVersionsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListWorkflowBuildVersionsPaginator.ts index fbaf40c09c75f..7c59e77de5def 100644 --- a/clients/client-imagebuilder/src/pagination/ListWorkflowBuildVersionsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListWorkflowBuildVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowBuildVersionsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListWorkflowExecutionsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListWorkflowExecutionsPaginator.ts index a8d15b68f2217..8b744ffdb721b 100644 --- a/clients/client-imagebuilder/src/pagination/ListWorkflowExecutionsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListWorkflowExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowExecutionsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListWorkflowStepExecutionsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListWorkflowStepExecutionsPaginator.ts index e6135a43d6c80..bfc1728d373d4 100644 --- a/clients/client-imagebuilder/src/pagination/ListWorkflowStepExecutionsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListWorkflowStepExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowStepExecutionsCommand, diff --git a/clients/client-imagebuilder/src/pagination/ListWorkflowsPaginator.ts b/clients/client-imagebuilder/src/pagination/ListWorkflowsPaginator.ts index c033a1702ea71..3e873f0739d3d 100644 --- a/clients/client-imagebuilder/src/pagination/ListWorkflowsPaginator.ts +++ b/clients/client-imagebuilder/src/pagination/ListWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowsCommand, diff --git a/clients/client-imagebuilder/src/runtimeConfig.browser.ts b/clients/client-imagebuilder/src/runtimeConfig.browser.ts index c379835a747ea..53919d7bb4c38 100644 --- a/clients/client-imagebuilder/src/runtimeConfig.browser.ts +++ b/clients/client-imagebuilder/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ImagebuilderClientConfig } from "./ImagebuilderClient"; + +import type { ImagebuilderClientConfig } from "./ImagebuilderClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-imagebuilder/src/runtimeConfig.native.ts b/clients/client-imagebuilder/src/runtimeConfig.native.ts index d4aaf8a8d907e..a7cf0a419fc52 100644 --- a/clients/client-imagebuilder/src/runtimeConfig.native.ts +++ b/clients/client-imagebuilder/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ImagebuilderClientConfig } from "./ImagebuilderClient"; +import type { ImagebuilderClientConfig } from "./ImagebuilderClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-imagebuilder/src/runtimeConfig.shared.ts b/clients/client-imagebuilder/src/runtimeConfig.shared.ts index ba07661852244..e4cd6818190b2 100644 --- a/clients/client-imagebuilder/src/runtimeConfig.shared.ts +++ b/clients/client-imagebuilder/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultImagebuilderHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ImagebuilderClientConfig } from "./ImagebuilderClient"; +import type { ImagebuilderClientConfig } from "./ImagebuilderClient"; /** * @internal diff --git a/clients/client-imagebuilder/src/runtimeConfig.ts b/clients/client-imagebuilder/src/runtimeConfig.ts index c8cb25db23c85..5986645fbb260 100644 --- a/clients/client-imagebuilder/src/runtimeConfig.ts +++ b/clients/client-imagebuilder/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ImagebuilderClientConfig } from "./ImagebuilderClient"; + +import type { ImagebuilderClientConfig } from "./ImagebuilderClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-imagebuilder/src/runtimeExtensions.ts b/clients/client-imagebuilder/src/runtimeExtensions.ts index ff3a1bef48a36..91edf3444da44 100644 --- a/clients/client-imagebuilder/src/runtimeExtensions.ts +++ b/clients/client-imagebuilder/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ImagebuilderExtensionConfiguration } from "./extensionConfiguration"; +import type { ImagebuilderExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-imagebuilder/src/schemas/schemas_0.ts b/clients/client-imagebuilder/src/schemas/schemas_0.ts index 9b22bc4f6b1bb..af8dd127d3000 100644 --- a/clients/client-imagebuilder/src/schemas/schemas_0.ts +++ b/clients/client-imagebuilder/src/schemas/schemas_0.ts @@ -702,7 +702,7 @@ const n0 = "com.amazonaws.imagebuilder"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-inspector-scan/package.json b/clients/client-inspector-scan/package.json index a9cfa89830d15..388ca07a2e032 100644 --- a/clients/client-inspector-scan/package.json +++ b/clients/client-inspector-scan/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-inspector-scan/src/InspectorScan.ts b/clients/client-inspector-scan/src/InspectorScan.ts index 56e1a95f50ee8..09107fda51d1d 100644 --- a/clients/client-inspector-scan/src/InspectorScan.ts +++ b/clients/client-inspector-scan/src/InspectorScan.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ScanSbomCommand, ScanSbomCommandInput, ScanSbomCommandOutput } from "./commands/ScanSbomCommand"; -import { InspectorScanClient, InspectorScanClientConfig } from "./InspectorScanClient"; +import { InspectorScanClient } from "./InspectorScanClient"; const commands = { ScanSbomCommand, diff --git a/clients/client-inspector-scan/src/InspectorScanClient.ts b/clients/client-inspector-scan/src/InspectorScanClient.ts index 1e5c2742ddd30..0eb76f9de144a 100644 --- a/clients/client-inspector-scan/src/InspectorScanClient.ts +++ b/clients/client-inspector-scan/src/InspectorScanClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultInspectorScanHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { ScanSbomCommandInput, ScanSbomCommandOutput } from "./commands/ScanSbomCommand"; @@ -65,7 +74,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-inspector-scan/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-inspector-scan/src/auth/httpAuthExtensionConfiguration.ts index 469df843ec170..49527483e0b50 100644 --- a/clients/client-inspector-scan/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-inspector-scan/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { InspectorScanHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { InspectorScanHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-inspector-scan/src/auth/httpAuthSchemeProvider.ts b/clients/client-inspector-scan/src/auth/httpAuthSchemeProvider.ts index ab07dc4f98969..ba092422ea956 100644 --- a/clients/client-inspector-scan/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-inspector-scan/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { InspectorScanClientConfig, InspectorScanClientResolvedConfig } from "../InspectorScanClient"; +import { type InspectorScanClientResolvedConfig, InspectorScanClientConfig } from "../InspectorScanClient"; /** * @internal diff --git a/clients/client-inspector-scan/src/commands/ScanSbomCommand.ts b/clients/client-inspector-scan/src/commands/ScanSbomCommand.ts index 4ddc368f976ff..24baac35c6f9a 100644 --- a/clients/client-inspector-scan/src/commands/ScanSbomCommand.ts +++ b/clients/client-inspector-scan/src/commands/ScanSbomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorScanClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorScanClient"; -import { ScanSbomRequest, ScanSbomResponse } from "../models/models_0"; +import type { InspectorScanClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorScanClient"; +import type { ScanSbomRequest, ScanSbomResponse } from "../models/models_0"; import { ScanSbom } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector-scan/src/endpoint/EndpointParameters.ts b/clients/client-inspector-scan/src/endpoint/EndpointParameters.ts index 4aa7b1f646d31..9c0c1a4375c97 100644 --- a/clients/client-inspector-scan/src/endpoint/EndpointParameters.ts +++ b/clients/client-inspector-scan/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-inspector-scan/src/endpoint/endpointResolver.ts b/clients/client-inspector-scan/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-inspector-scan/src/endpoint/endpointResolver.ts +++ b/clients/client-inspector-scan/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-inspector-scan/src/extensionConfiguration.ts b/clients/client-inspector-scan/src/extensionConfiguration.ts index b4ac4b565fd90..3981f69776954 100644 --- a/clients/client-inspector-scan/src/extensionConfiguration.ts +++ b/clients/client-inspector-scan/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-inspector-scan/src/models/InspectorScanServiceException.ts b/clients/client-inspector-scan/src/models/InspectorScanServiceException.ts index 635a1a12fe068..d75437d9e3bcf 100644 --- a/clients/client-inspector-scan/src/models/InspectorScanServiceException.ts +++ b/clients/client-inspector-scan/src/models/InspectorScanServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-inspector-scan/src/models/errors.ts b/clients/client-inspector-scan/src/models/errors.ts index 3ce99676adc48..54029599dc582 100644 --- a/clients/client-inspector-scan/src/models/errors.ts +++ b/clients/client-inspector-scan/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { InternalServerExceptionReason, ValidationExceptionReason } from "./enums"; import { InspectorScanServiceException as __BaseException } from "./InspectorScanServiceException"; diff --git a/clients/client-inspector-scan/src/runtimeConfig.browser.ts b/clients/client-inspector-scan/src/runtimeConfig.browser.ts index e106e4c4d4964..f317c99691ba3 100644 --- a/clients/client-inspector-scan/src/runtimeConfig.browser.ts +++ b/clients/client-inspector-scan/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { InspectorScanClientConfig } from "./InspectorScanClient"; + +import type { InspectorScanClientConfig } from "./InspectorScanClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-inspector-scan/src/runtimeConfig.native.ts b/clients/client-inspector-scan/src/runtimeConfig.native.ts index 5d1b2863b7c7d..d96ec70331313 100644 --- a/clients/client-inspector-scan/src/runtimeConfig.native.ts +++ b/clients/client-inspector-scan/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { InspectorScanClientConfig } from "./InspectorScanClient"; +import type { InspectorScanClientConfig } from "./InspectorScanClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-inspector-scan/src/runtimeConfig.shared.ts b/clients/client-inspector-scan/src/runtimeConfig.shared.ts index 5b68062f9a30c..85cd38d409ad6 100644 --- a/clients/client-inspector-scan/src/runtimeConfig.shared.ts +++ b/clients/client-inspector-scan/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultInspectorScanHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { InspectorScanClientConfig } from "./InspectorScanClient"; +import type { InspectorScanClientConfig } from "./InspectorScanClient"; /** * @internal diff --git a/clients/client-inspector-scan/src/runtimeConfig.ts b/clients/client-inspector-scan/src/runtimeConfig.ts index 966bdedde0cb7..7625e8f9e459e 100644 --- a/clients/client-inspector-scan/src/runtimeConfig.ts +++ b/clients/client-inspector-scan/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { InspectorScanClientConfig } from "./InspectorScanClient"; + +import type { InspectorScanClientConfig } from "./InspectorScanClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-inspector-scan/src/runtimeExtensions.ts b/clients/client-inspector-scan/src/runtimeExtensions.ts index 926934eeffe08..a9f78148bc300 100644 --- a/clients/client-inspector-scan/src/runtimeExtensions.ts +++ b/clients/client-inspector-scan/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { InspectorScanExtensionConfiguration } from "./extensionConfiguration"; +import type { InspectorScanExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-inspector-scan/src/schemas/schemas_0.ts b/clients/client-inspector-scan/src/schemas/schemas_0.ts index fdb4b52f1c43c..ddcaf008cb96f 100644 --- a/clients/client-inspector-scan/src/schemas/schemas_0.ts +++ b/clients/client-inspector-scan/src/schemas/schemas_0.ts @@ -26,7 +26,7 @@ const n0 = "com.amazonaws.inspectorscan"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-inspector/package.json b/clients/client-inspector/package.json index 05b0d48324fd1..2c920ba2ee6d0 100644 --- a/clients/client-inspector/package.json +++ b/clients/client-inspector/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-inspector/src/Inspector.ts b/clients/client-inspector/src/Inspector.ts index 83ba3c81709bf..aaafe7a2d5a88 100644 --- a/clients/client-inspector/src/Inspector.ts +++ b/clients/client-inspector/src/Inspector.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddAttributesToFindingsCommand, @@ -187,7 +187,7 @@ import { UpdateAssessmentTargetCommandInput, UpdateAssessmentTargetCommandOutput, } from "./commands/UpdateAssessmentTargetCommand"; -import { InspectorClient, InspectorClientConfig } from "./InspectorClient"; +import { InspectorClient } from "./InspectorClient"; const commands = { AddAttributesToFindingsCommand, diff --git a/clients/client-inspector/src/InspectorClient.ts b/clients/client-inspector/src/InspectorClient.ts index 1f88cc3fb5100..4ba89257ad21c 100644 --- a/clients/client-inspector/src/InspectorClient.ts +++ b/clients/client-inspector/src/InspectorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultInspectorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -179,7 +188,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-inspector/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-inspector/src/auth/httpAuthExtensionConfiguration.ts index ddc6bc6d1a50b..dfc58b26e3afa 100644 --- a/clients/client-inspector/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-inspector/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { InspectorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { InspectorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-inspector/src/auth/httpAuthSchemeProvider.ts b/clients/client-inspector/src/auth/httpAuthSchemeProvider.ts index 5e1cf24cdd4e9..35fa5f27f1013 100644 --- a/clients/client-inspector/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-inspector/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { InspectorClientConfig, InspectorClientResolvedConfig } from "../InspectorClient"; +import { type InspectorClientResolvedConfig, InspectorClientConfig } from "../InspectorClient"; /** * @internal diff --git a/clients/client-inspector/src/commands/AddAttributesToFindingsCommand.ts b/clients/client-inspector/src/commands/AddAttributesToFindingsCommand.ts index a26e4d4fc8df5..490340bca827c 100644 --- a/clients/client-inspector/src/commands/AddAttributesToFindingsCommand.ts +++ b/clients/client-inspector/src/commands/AddAttributesToFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { AddAttributesToFindingsRequest, AddAttributesToFindingsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { AddAttributesToFindingsRequest, AddAttributesToFindingsResponse } from "../models/models_0"; import { AddAttributesToFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/CreateAssessmentTargetCommand.ts b/clients/client-inspector/src/commands/CreateAssessmentTargetCommand.ts index 494a89976f463..14f0b370e015b 100644 --- a/clients/client-inspector/src/commands/CreateAssessmentTargetCommand.ts +++ b/clients/client-inspector/src/commands/CreateAssessmentTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { CreateAssessmentTargetRequest, CreateAssessmentTargetResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { CreateAssessmentTargetRequest, CreateAssessmentTargetResponse } from "../models/models_0"; import { CreateAssessmentTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/CreateAssessmentTemplateCommand.ts b/clients/client-inspector/src/commands/CreateAssessmentTemplateCommand.ts index 990db13ba7348..eada562e48a40 100644 --- a/clients/client-inspector/src/commands/CreateAssessmentTemplateCommand.ts +++ b/clients/client-inspector/src/commands/CreateAssessmentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { CreateAssessmentTemplateRequest, CreateAssessmentTemplateResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { CreateAssessmentTemplateRequest, CreateAssessmentTemplateResponse } from "../models/models_0"; import { CreateAssessmentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/CreateExclusionsPreviewCommand.ts b/clients/client-inspector/src/commands/CreateExclusionsPreviewCommand.ts index a4bbc5c1ac53a..90dfe9b185359 100644 --- a/clients/client-inspector/src/commands/CreateExclusionsPreviewCommand.ts +++ b/clients/client-inspector/src/commands/CreateExclusionsPreviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { CreateExclusionsPreviewRequest, CreateExclusionsPreviewResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { CreateExclusionsPreviewRequest, CreateExclusionsPreviewResponse } from "../models/models_0"; import { CreateExclusionsPreview } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/CreateResourceGroupCommand.ts b/clients/client-inspector/src/commands/CreateResourceGroupCommand.ts index a541ef57429b7..ff8a1fe3868a0 100644 --- a/clients/client-inspector/src/commands/CreateResourceGroupCommand.ts +++ b/clients/client-inspector/src/commands/CreateResourceGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { CreateResourceGroupRequest, CreateResourceGroupResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { CreateResourceGroupRequest, CreateResourceGroupResponse } from "../models/models_0"; import { CreateResourceGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DeleteAssessmentRunCommand.ts b/clients/client-inspector/src/commands/DeleteAssessmentRunCommand.ts index 8469bc31d4933..33af6f6d93ba0 100644 --- a/clients/client-inspector/src/commands/DeleteAssessmentRunCommand.ts +++ b/clients/client-inspector/src/commands/DeleteAssessmentRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DeleteAssessmentRunRequest } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DeleteAssessmentRunRequest } from "../models/models_0"; import { DeleteAssessmentRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DeleteAssessmentTargetCommand.ts b/clients/client-inspector/src/commands/DeleteAssessmentTargetCommand.ts index 2cb029b5d1d9a..4ac07bd86dee3 100644 --- a/clients/client-inspector/src/commands/DeleteAssessmentTargetCommand.ts +++ b/clients/client-inspector/src/commands/DeleteAssessmentTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DeleteAssessmentTargetRequest } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DeleteAssessmentTargetRequest } from "../models/models_0"; import { DeleteAssessmentTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DeleteAssessmentTemplateCommand.ts b/clients/client-inspector/src/commands/DeleteAssessmentTemplateCommand.ts index 12c5e575c5b20..13e996bf7eca1 100644 --- a/clients/client-inspector/src/commands/DeleteAssessmentTemplateCommand.ts +++ b/clients/client-inspector/src/commands/DeleteAssessmentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DeleteAssessmentTemplateRequest } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DeleteAssessmentTemplateRequest } from "../models/models_0"; import { DeleteAssessmentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DescribeAssessmentRunsCommand.ts b/clients/client-inspector/src/commands/DescribeAssessmentRunsCommand.ts index 65c5f407da22c..a99bd32ccd1e9 100644 --- a/clients/client-inspector/src/commands/DescribeAssessmentRunsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeAssessmentRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DescribeAssessmentRunsRequest, DescribeAssessmentRunsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DescribeAssessmentRunsRequest, DescribeAssessmentRunsResponse } from "../models/models_0"; import { DescribeAssessmentRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DescribeAssessmentTargetsCommand.ts b/clients/client-inspector/src/commands/DescribeAssessmentTargetsCommand.ts index 7a4787efedfb6..5e590c181cc26 100644 --- a/clients/client-inspector/src/commands/DescribeAssessmentTargetsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeAssessmentTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DescribeAssessmentTargetsRequest, DescribeAssessmentTargetsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DescribeAssessmentTargetsRequest, DescribeAssessmentTargetsResponse } from "../models/models_0"; import { DescribeAssessmentTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DescribeAssessmentTemplatesCommand.ts b/clients/client-inspector/src/commands/DescribeAssessmentTemplatesCommand.ts index 2f91e87be721d..18fdda143c7bc 100644 --- a/clients/client-inspector/src/commands/DescribeAssessmentTemplatesCommand.ts +++ b/clients/client-inspector/src/commands/DescribeAssessmentTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DescribeAssessmentTemplatesRequest, DescribeAssessmentTemplatesResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DescribeAssessmentTemplatesRequest, DescribeAssessmentTemplatesResponse } from "../models/models_0"; import { DescribeAssessmentTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DescribeCrossAccountAccessRoleCommand.ts b/clients/client-inspector/src/commands/DescribeCrossAccountAccessRoleCommand.ts index 18a1f40c40814..5d72befad5850 100644 --- a/clients/client-inspector/src/commands/DescribeCrossAccountAccessRoleCommand.ts +++ b/clients/client-inspector/src/commands/DescribeCrossAccountAccessRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DescribeCrossAccountAccessRoleResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DescribeCrossAccountAccessRoleResponse } from "../models/models_0"; import { DescribeCrossAccountAccessRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DescribeExclusionsCommand.ts b/clients/client-inspector/src/commands/DescribeExclusionsCommand.ts index 87d663c715631..1a508b013d913 100644 --- a/clients/client-inspector/src/commands/DescribeExclusionsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeExclusionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DescribeExclusionsRequest, DescribeExclusionsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DescribeExclusionsRequest, DescribeExclusionsResponse } from "../models/models_0"; import { DescribeExclusions } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DescribeFindingsCommand.ts b/clients/client-inspector/src/commands/DescribeFindingsCommand.ts index dbb86acb710ca..fc265cd6da3cf 100644 --- a/clients/client-inspector/src/commands/DescribeFindingsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DescribeFindingsRequest, DescribeFindingsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DescribeFindingsRequest, DescribeFindingsResponse } from "../models/models_0"; import { DescribeFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DescribeResourceGroupsCommand.ts b/clients/client-inspector/src/commands/DescribeResourceGroupsCommand.ts index fa92d32d4f9b9..8146d3db5bb4e 100644 --- a/clients/client-inspector/src/commands/DescribeResourceGroupsCommand.ts +++ b/clients/client-inspector/src/commands/DescribeResourceGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DescribeResourceGroupsRequest, DescribeResourceGroupsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DescribeResourceGroupsRequest, DescribeResourceGroupsResponse } from "../models/models_0"; import { DescribeResourceGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/DescribeRulesPackagesCommand.ts b/clients/client-inspector/src/commands/DescribeRulesPackagesCommand.ts index eca01e008ff67..9a55edc7c46d5 100644 --- a/clients/client-inspector/src/commands/DescribeRulesPackagesCommand.ts +++ b/clients/client-inspector/src/commands/DescribeRulesPackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { DescribeRulesPackagesRequest, DescribeRulesPackagesResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { DescribeRulesPackagesRequest, DescribeRulesPackagesResponse } from "../models/models_0"; import { DescribeRulesPackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/GetAssessmentReportCommand.ts b/clients/client-inspector/src/commands/GetAssessmentReportCommand.ts index f338f09fdcbaa..ac8b78f2ce503 100644 --- a/clients/client-inspector/src/commands/GetAssessmentReportCommand.ts +++ b/clients/client-inspector/src/commands/GetAssessmentReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { GetAssessmentReportRequest, GetAssessmentReportResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { GetAssessmentReportRequest, GetAssessmentReportResponse } from "../models/models_0"; import { GetAssessmentReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/GetExclusionsPreviewCommand.ts b/clients/client-inspector/src/commands/GetExclusionsPreviewCommand.ts index 1dc01a0658ad8..594a4a69f5469 100644 --- a/clients/client-inspector/src/commands/GetExclusionsPreviewCommand.ts +++ b/clients/client-inspector/src/commands/GetExclusionsPreviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { GetExclusionsPreviewRequest, GetExclusionsPreviewResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { GetExclusionsPreviewRequest, GetExclusionsPreviewResponse } from "../models/models_0"; import { GetExclusionsPreview } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/GetTelemetryMetadataCommand.ts b/clients/client-inspector/src/commands/GetTelemetryMetadataCommand.ts index 47253cb2c6de6..85ad2b946581e 100644 --- a/clients/client-inspector/src/commands/GetTelemetryMetadataCommand.ts +++ b/clients/client-inspector/src/commands/GetTelemetryMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { GetTelemetryMetadataRequest, GetTelemetryMetadataResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { GetTelemetryMetadataRequest, GetTelemetryMetadataResponse } from "../models/models_0"; import { GetTelemetryMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/ListAssessmentRunAgentsCommand.ts b/clients/client-inspector/src/commands/ListAssessmentRunAgentsCommand.ts index 1fa7dd94e1466..5df1569d04610 100644 --- a/clients/client-inspector/src/commands/ListAssessmentRunAgentsCommand.ts +++ b/clients/client-inspector/src/commands/ListAssessmentRunAgentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { ListAssessmentRunAgentsRequest, ListAssessmentRunAgentsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { ListAssessmentRunAgentsRequest, ListAssessmentRunAgentsResponse } from "../models/models_0"; import { ListAssessmentRunAgents } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/ListAssessmentRunsCommand.ts b/clients/client-inspector/src/commands/ListAssessmentRunsCommand.ts index 6cc500011c6e0..cc36e61a18a63 100644 --- a/clients/client-inspector/src/commands/ListAssessmentRunsCommand.ts +++ b/clients/client-inspector/src/commands/ListAssessmentRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { ListAssessmentRunsRequest, ListAssessmentRunsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { ListAssessmentRunsRequest, ListAssessmentRunsResponse } from "../models/models_0"; import { ListAssessmentRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/ListAssessmentTargetsCommand.ts b/clients/client-inspector/src/commands/ListAssessmentTargetsCommand.ts index b43ac84632ce0..870c50bc20c6f 100644 --- a/clients/client-inspector/src/commands/ListAssessmentTargetsCommand.ts +++ b/clients/client-inspector/src/commands/ListAssessmentTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { ListAssessmentTargetsRequest, ListAssessmentTargetsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { ListAssessmentTargetsRequest, ListAssessmentTargetsResponse } from "../models/models_0"; import { ListAssessmentTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/ListAssessmentTemplatesCommand.ts b/clients/client-inspector/src/commands/ListAssessmentTemplatesCommand.ts index 4e3682de50806..979068da164c9 100644 --- a/clients/client-inspector/src/commands/ListAssessmentTemplatesCommand.ts +++ b/clients/client-inspector/src/commands/ListAssessmentTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { ListAssessmentTemplatesRequest, ListAssessmentTemplatesResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { ListAssessmentTemplatesRequest, ListAssessmentTemplatesResponse } from "../models/models_0"; import { ListAssessmentTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/ListEventSubscriptionsCommand.ts b/clients/client-inspector/src/commands/ListEventSubscriptionsCommand.ts index 825e6c85c19ea..9220096400b42 100644 --- a/clients/client-inspector/src/commands/ListEventSubscriptionsCommand.ts +++ b/clients/client-inspector/src/commands/ListEventSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { ListEventSubscriptionsRequest, ListEventSubscriptionsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { ListEventSubscriptionsRequest, ListEventSubscriptionsResponse } from "../models/models_0"; import { ListEventSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/ListExclusionsCommand.ts b/clients/client-inspector/src/commands/ListExclusionsCommand.ts index 8494c4b178bdf..2d1f8cf4c324b 100644 --- a/clients/client-inspector/src/commands/ListExclusionsCommand.ts +++ b/clients/client-inspector/src/commands/ListExclusionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { ListExclusionsRequest, ListExclusionsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { ListExclusionsRequest, ListExclusionsResponse } from "../models/models_0"; import { ListExclusions } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/ListFindingsCommand.ts b/clients/client-inspector/src/commands/ListFindingsCommand.ts index b93645dfed9eb..c25a2fd1dc46a 100644 --- a/clients/client-inspector/src/commands/ListFindingsCommand.ts +++ b/clients/client-inspector/src/commands/ListFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { ListFindingsRequest, ListFindingsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { ListFindingsRequest, ListFindingsResponse } from "../models/models_0"; import { ListFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/ListRulesPackagesCommand.ts b/clients/client-inspector/src/commands/ListRulesPackagesCommand.ts index 6b4b81bb04ee6..cdb25936a7547 100644 --- a/clients/client-inspector/src/commands/ListRulesPackagesCommand.ts +++ b/clients/client-inspector/src/commands/ListRulesPackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { ListRulesPackagesRequest, ListRulesPackagesResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { ListRulesPackagesRequest, ListRulesPackagesResponse } from "../models/models_0"; import { ListRulesPackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/ListTagsForResourceCommand.ts b/clients/client-inspector/src/commands/ListTagsForResourceCommand.ts index 947d4051f14db..ace0a2a33868d 100644 --- a/clients/client-inspector/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-inspector/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/PreviewAgentsCommand.ts b/clients/client-inspector/src/commands/PreviewAgentsCommand.ts index 1f83d080cc407..e281572f68e40 100644 --- a/clients/client-inspector/src/commands/PreviewAgentsCommand.ts +++ b/clients/client-inspector/src/commands/PreviewAgentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { PreviewAgentsRequest, PreviewAgentsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { PreviewAgentsRequest, PreviewAgentsResponse } from "../models/models_0"; import { PreviewAgents } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/RegisterCrossAccountAccessRoleCommand.ts b/clients/client-inspector/src/commands/RegisterCrossAccountAccessRoleCommand.ts index cd32bbadf840a..21adfa3f800ac 100644 --- a/clients/client-inspector/src/commands/RegisterCrossAccountAccessRoleCommand.ts +++ b/clients/client-inspector/src/commands/RegisterCrossAccountAccessRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { RegisterCrossAccountAccessRoleRequest } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { RegisterCrossAccountAccessRoleRequest } from "../models/models_0"; import { RegisterCrossAccountAccessRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/RemoveAttributesFromFindingsCommand.ts b/clients/client-inspector/src/commands/RemoveAttributesFromFindingsCommand.ts index 6fdff5c688f03..09707cc922651 100644 --- a/clients/client-inspector/src/commands/RemoveAttributesFromFindingsCommand.ts +++ b/clients/client-inspector/src/commands/RemoveAttributesFromFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { RemoveAttributesFromFindingsRequest, RemoveAttributesFromFindingsResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { RemoveAttributesFromFindingsRequest, RemoveAttributesFromFindingsResponse } from "../models/models_0"; import { RemoveAttributesFromFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/SetTagsForResourceCommand.ts b/clients/client-inspector/src/commands/SetTagsForResourceCommand.ts index 94098583091c9..a04f63bba025d 100644 --- a/clients/client-inspector/src/commands/SetTagsForResourceCommand.ts +++ b/clients/client-inspector/src/commands/SetTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { SetTagsForResourceRequest } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { SetTagsForResourceRequest } from "../models/models_0"; import { SetTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/StartAssessmentRunCommand.ts b/clients/client-inspector/src/commands/StartAssessmentRunCommand.ts index 00c2ec2b92ff4..faef22396fb4f 100644 --- a/clients/client-inspector/src/commands/StartAssessmentRunCommand.ts +++ b/clients/client-inspector/src/commands/StartAssessmentRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { StartAssessmentRunRequest, StartAssessmentRunResponse } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { StartAssessmentRunRequest, StartAssessmentRunResponse } from "../models/models_0"; import { StartAssessmentRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/StopAssessmentRunCommand.ts b/clients/client-inspector/src/commands/StopAssessmentRunCommand.ts index e7b3345b501cd..29bf7343c1de3 100644 --- a/clients/client-inspector/src/commands/StopAssessmentRunCommand.ts +++ b/clients/client-inspector/src/commands/StopAssessmentRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { StopAssessmentRunRequest } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { StopAssessmentRunRequest } from "../models/models_0"; import { StopAssessmentRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/SubscribeToEventCommand.ts b/clients/client-inspector/src/commands/SubscribeToEventCommand.ts index ee2fbdd5191dc..3eeaf8cc93370 100644 --- a/clients/client-inspector/src/commands/SubscribeToEventCommand.ts +++ b/clients/client-inspector/src/commands/SubscribeToEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { SubscribeToEventRequest } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { SubscribeToEventRequest } from "../models/models_0"; import { SubscribeToEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/UnsubscribeFromEventCommand.ts b/clients/client-inspector/src/commands/UnsubscribeFromEventCommand.ts index 7b8bb4f12d584..3e940ce23c490 100644 --- a/clients/client-inspector/src/commands/UnsubscribeFromEventCommand.ts +++ b/clients/client-inspector/src/commands/UnsubscribeFromEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { UnsubscribeFromEventRequest } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { UnsubscribeFromEventRequest } from "../models/models_0"; import { UnsubscribeFromEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/commands/UpdateAssessmentTargetCommand.ts b/clients/client-inspector/src/commands/UpdateAssessmentTargetCommand.ts index b8f5eb6516e79..84c3114585eee 100644 --- a/clients/client-inspector/src/commands/UpdateAssessmentTargetCommand.ts +++ b/clients/client-inspector/src/commands/UpdateAssessmentTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; -import { UpdateAssessmentTargetRequest } from "../models/models_0"; +import type { InspectorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InspectorClient"; +import type { UpdateAssessmentTargetRequest } from "../models/models_0"; import { UpdateAssessmentTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector/src/endpoint/EndpointParameters.ts b/clients/client-inspector/src/endpoint/EndpointParameters.ts index dc600f2f60266..83b300226e721 100644 --- a/clients/client-inspector/src/endpoint/EndpointParameters.ts +++ b/clients/client-inspector/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-inspector/src/endpoint/endpointResolver.ts b/clients/client-inspector/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-inspector/src/endpoint/endpointResolver.ts +++ b/clients/client-inspector/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-inspector/src/extensionConfiguration.ts b/clients/client-inspector/src/extensionConfiguration.ts index 61636afabc41b..9aa2cc0d1c38a 100644 --- a/clients/client-inspector/src/extensionConfiguration.ts +++ b/clients/client-inspector/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-inspector/src/models/InspectorServiceException.ts b/clients/client-inspector/src/models/InspectorServiceException.ts index f62dcb7b405e1..ee91e32ae3cdc 100644 --- a/clients/client-inspector/src/models/InspectorServiceException.ts +++ b/clients/client-inspector/src/models/InspectorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-inspector/src/models/errors.ts b/clients/client-inspector/src/models/errors.ts index 8e4926ac62857..1a586542ac7ca 100644 --- a/clients/client-inspector/src/models/errors.ts +++ b/clients/client-inspector/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessDeniedErrorCode, diff --git a/clients/client-inspector/src/pagination/GetExclusionsPreviewPaginator.ts b/clients/client-inspector/src/pagination/GetExclusionsPreviewPaginator.ts index 1e873add9b898..092365266818b 100644 --- a/clients/client-inspector/src/pagination/GetExclusionsPreviewPaginator.ts +++ b/clients/client-inspector/src/pagination/GetExclusionsPreviewPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetExclusionsPreviewCommand, diff --git a/clients/client-inspector/src/pagination/Interfaces.ts b/clients/client-inspector/src/pagination/Interfaces.ts index 998edfd27ed1d..64bdbbfbcef9f 100644 --- a/clients/client-inspector/src/pagination/Interfaces.ts +++ b/clients/client-inspector/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { InspectorClient } from "../InspectorClient"; diff --git a/clients/client-inspector/src/pagination/ListAssessmentRunAgentsPaginator.ts b/clients/client-inspector/src/pagination/ListAssessmentRunAgentsPaginator.ts index c48d7179f7bff..6e1612a7c3b41 100644 --- a/clients/client-inspector/src/pagination/ListAssessmentRunAgentsPaginator.ts +++ b/clients/client-inspector/src/pagination/ListAssessmentRunAgentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssessmentRunAgentsCommand, diff --git a/clients/client-inspector/src/pagination/ListAssessmentRunsPaginator.ts b/clients/client-inspector/src/pagination/ListAssessmentRunsPaginator.ts index ccacb9410e86c..5a003cfb0b4f7 100644 --- a/clients/client-inspector/src/pagination/ListAssessmentRunsPaginator.ts +++ b/clients/client-inspector/src/pagination/ListAssessmentRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssessmentRunsCommand, diff --git a/clients/client-inspector/src/pagination/ListAssessmentTargetsPaginator.ts b/clients/client-inspector/src/pagination/ListAssessmentTargetsPaginator.ts index 28f741c45885f..46ee5e6521993 100644 --- a/clients/client-inspector/src/pagination/ListAssessmentTargetsPaginator.ts +++ b/clients/client-inspector/src/pagination/ListAssessmentTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssessmentTargetsCommand, diff --git a/clients/client-inspector/src/pagination/ListAssessmentTemplatesPaginator.ts b/clients/client-inspector/src/pagination/ListAssessmentTemplatesPaginator.ts index 6deed6efbbf13..dd7a00f6e54dc 100644 --- a/clients/client-inspector/src/pagination/ListAssessmentTemplatesPaginator.ts +++ b/clients/client-inspector/src/pagination/ListAssessmentTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssessmentTemplatesCommand, diff --git a/clients/client-inspector/src/pagination/ListEventSubscriptionsPaginator.ts b/clients/client-inspector/src/pagination/ListEventSubscriptionsPaginator.ts index 6ee05984453e2..e4660650744e4 100644 --- a/clients/client-inspector/src/pagination/ListEventSubscriptionsPaginator.ts +++ b/clients/client-inspector/src/pagination/ListEventSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventSubscriptionsCommand, diff --git a/clients/client-inspector/src/pagination/ListExclusionsPaginator.ts b/clients/client-inspector/src/pagination/ListExclusionsPaginator.ts index d5c50674b1661..e7e9730bcd937 100644 --- a/clients/client-inspector/src/pagination/ListExclusionsPaginator.ts +++ b/clients/client-inspector/src/pagination/ListExclusionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExclusionsCommand, diff --git a/clients/client-inspector/src/pagination/ListFindingsPaginator.ts b/clients/client-inspector/src/pagination/ListFindingsPaginator.ts index 7bcfe64d754bc..0e9223ed63efe 100644 --- a/clients/client-inspector/src/pagination/ListFindingsPaginator.ts +++ b/clients/client-inspector/src/pagination/ListFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFindingsCommand, diff --git a/clients/client-inspector/src/pagination/ListRulesPackagesPaginator.ts b/clients/client-inspector/src/pagination/ListRulesPackagesPaginator.ts index e6f810d331da0..896997b3ecaf2 100644 --- a/clients/client-inspector/src/pagination/ListRulesPackagesPaginator.ts +++ b/clients/client-inspector/src/pagination/ListRulesPackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRulesPackagesCommand, diff --git a/clients/client-inspector/src/pagination/PreviewAgentsPaginator.ts b/clients/client-inspector/src/pagination/PreviewAgentsPaginator.ts index 2233e0784639b..63fa83bd7d692 100644 --- a/clients/client-inspector/src/pagination/PreviewAgentsPaginator.ts +++ b/clients/client-inspector/src/pagination/PreviewAgentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { PreviewAgentsCommand, diff --git a/clients/client-inspector/src/runtimeConfig.browser.ts b/clients/client-inspector/src/runtimeConfig.browser.ts index 151ccd3e0709b..ecfd2de6b1800 100644 --- a/clients/client-inspector/src/runtimeConfig.browser.ts +++ b/clients/client-inspector/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { InspectorClientConfig } from "./InspectorClient"; + +import type { InspectorClientConfig } from "./InspectorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-inspector/src/runtimeConfig.native.ts b/clients/client-inspector/src/runtimeConfig.native.ts index 6baf64d31b366..862fa3a0a7c16 100644 --- a/clients/client-inspector/src/runtimeConfig.native.ts +++ b/clients/client-inspector/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { InspectorClientConfig } from "./InspectorClient"; +import type { InspectorClientConfig } from "./InspectorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-inspector/src/runtimeConfig.shared.ts b/clients/client-inspector/src/runtimeConfig.shared.ts index f9f15da270ca8..6f556d88e9acd 100644 --- a/clients/client-inspector/src/runtimeConfig.shared.ts +++ b/clients/client-inspector/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultInspectorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { InspectorClientConfig } from "./InspectorClient"; +import type { InspectorClientConfig } from "./InspectorClient"; /** * @internal diff --git a/clients/client-inspector/src/runtimeConfig.ts b/clients/client-inspector/src/runtimeConfig.ts index e16672071a9a9..0967820f2e5a4 100644 --- a/clients/client-inspector/src/runtimeConfig.ts +++ b/clients/client-inspector/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { InspectorClientConfig } from "./InspectorClient"; + +import type { InspectorClientConfig } from "./InspectorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-inspector/src/runtimeExtensions.ts b/clients/client-inspector/src/runtimeExtensions.ts index bc24664308b2d..f52cbb1025193 100644 --- a/clients/client-inspector/src/runtimeExtensions.ts +++ b/clients/client-inspector/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { InspectorExtensionConfiguration } from "./extensionConfiguration"; +import type { InspectorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-inspector/src/schemas/schemas_0.ts b/clients/client-inspector/src/schemas/schemas_0.ts index 5c7441d2cf44e..ff2fdb03d455e 100644 --- a/clients/client-inspector/src/schemas/schemas_0.ts +++ b/clients/client-inspector/src/schemas/schemas_0.ts @@ -322,7 +322,7 @@ const n0 = "com.amazonaws.inspector"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-inspector2/package.json b/clients/client-inspector2/package.json index 53a0d9dab34ae..0fa28cab92ddf 100644 --- a/clients/client-inspector2/package.json +++ b/clients/client-inspector2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-inspector2/src/Inspector2.ts b/clients/client-inspector2/src/Inspector2.ts index 7e77d1e4e6c20..9e9d82921e231 100644 --- a/clients/client-inspector2/src/Inspector2.ts +++ b/clients/client-inspector2/src/Inspector2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateMemberCommand, @@ -353,7 +353,7 @@ import { UpdateOrgEc2DeepInspectionConfigurationCommandInput, UpdateOrgEc2DeepInspectionConfigurationCommandOutput, } from "./commands/UpdateOrgEc2DeepInspectionConfigurationCommand"; -import { Inspector2Client, Inspector2ClientConfig } from "./Inspector2Client"; +import { Inspector2Client } from "./Inspector2Client"; const commands = { AssociateMemberCommand, diff --git a/clients/client-inspector2/src/Inspector2Client.ts b/clients/client-inspector2/src/Inspector2Client.ts index 4e1d2e232c2f6..3ea9c203864ed 100644 --- a/clients/client-inspector2/src/Inspector2Client.ts +++ b/clients/client-inspector2/src/Inspector2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultInspector2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateMemberCommandInput, AssociateMemberCommandOutput } from "./commands/AssociateMemberCommand"; @@ -289,7 +298,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-inspector2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-inspector2/src/auth/httpAuthExtensionConfiguration.ts index 78b7113520dc8..cb0231514a472 100644 --- a/clients/client-inspector2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-inspector2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Inspector2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Inspector2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-inspector2/src/auth/httpAuthSchemeProvider.ts b/clients/client-inspector2/src/auth/httpAuthSchemeProvider.ts index 79f9c22b06a2c..d7c34d3616360 100644 --- a/clients/client-inspector2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-inspector2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { Inspector2ClientConfig, Inspector2ClientResolvedConfig } from "../Inspector2Client"; +import { type Inspector2ClientResolvedConfig, Inspector2ClientConfig } from "../Inspector2Client"; /** * @internal diff --git a/clients/client-inspector2/src/commands/AssociateMemberCommand.ts b/clients/client-inspector2/src/commands/AssociateMemberCommand.ts index 10a294453a08e..871b10a821b5f 100644 --- a/clients/client-inspector2/src/commands/AssociateMemberCommand.ts +++ b/clients/client-inspector2/src/commands/AssociateMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { AssociateMemberRequest, AssociateMemberResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { AssociateMemberRequest, AssociateMemberResponse } from "../models/models_0"; import { AssociateMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/BatchAssociateCodeSecurityScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/BatchAssociateCodeSecurityScanConfigurationCommand.ts index d19f6df3f75a7..8d5611b2c1587 100644 --- a/clients/client-inspector2/src/commands/BatchAssociateCodeSecurityScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/BatchAssociateCodeSecurityScanConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { BatchAssociateCodeSecurityScanConfigurationRequest, BatchAssociateCodeSecurityScanConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/BatchDisassociateCodeSecurityScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/BatchDisassociateCodeSecurityScanConfigurationCommand.ts index 61f4f6e462106..e3d0775d03e6b 100644 --- a/clients/client-inspector2/src/commands/BatchDisassociateCodeSecurityScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/BatchDisassociateCodeSecurityScanConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { BatchDisassociateCodeSecurityScanConfigurationRequest, BatchDisassociateCodeSecurityScanConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/BatchGetAccountStatusCommand.ts b/clients/client-inspector2/src/commands/BatchGetAccountStatusCommand.ts index 79d8317bac116..323620cb5d32e 100644 --- a/clients/client-inspector2/src/commands/BatchGetAccountStatusCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetAccountStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { BatchGetAccountStatusRequest, BatchGetAccountStatusResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { BatchGetAccountStatusRequest, BatchGetAccountStatusResponse } from "../models/models_0"; import { BatchGetAccountStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/BatchGetCodeSnippetCommand.ts b/clients/client-inspector2/src/commands/BatchGetCodeSnippetCommand.ts index d088718cf44f2..4233f435db69a 100644 --- a/clients/client-inspector2/src/commands/BatchGetCodeSnippetCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetCodeSnippetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { BatchGetCodeSnippetRequest, BatchGetCodeSnippetResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { BatchGetCodeSnippetRequest, BatchGetCodeSnippetResponse } from "../models/models_0"; import { BatchGetCodeSnippet } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/BatchGetFindingDetailsCommand.ts b/clients/client-inspector2/src/commands/BatchGetFindingDetailsCommand.ts index d36ec5f88c48f..4a7c04f48610e 100644 --- a/clients/client-inspector2/src/commands/BatchGetFindingDetailsCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetFindingDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { BatchGetFindingDetailsRequest, BatchGetFindingDetailsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { BatchGetFindingDetailsRequest, BatchGetFindingDetailsResponse } from "../models/models_0"; import { BatchGetFindingDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/BatchGetFreeTrialInfoCommand.ts b/clients/client-inspector2/src/commands/BatchGetFreeTrialInfoCommand.ts index e744e2b726f52..1d6cd01329d90 100644 --- a/clients/client-inspector2/src/commands/BatchGetFreeTrialInfoCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetFreeTrialInfoCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { BatchGetFreeTrialInfoRequest, BatchGetFreeTrialInfoResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { BatchGetFreeTrialInfoRequest, BatchGetFreeTrialInfoResponse } from "../models/models_0"; import { BatchGetFreeTrialInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/BatchGetMemberEc2DeepInspectionStatusCommand.ts b/clients/client-inspector2/src/commands/BatchGetMemberEc2DeepInspectionStatusCommand.ts index 044c948a15731..6f5a78fe91e2c 100644 --- a/clients/client-inspector2/src/commands/BatchGetMemberEc2DeepInspectionStatusCommand.ts +++ b/clients/client-inspector2/src/commands/BatchGetMemberEc2DeepInspectionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { BatchGetMemberEc2DeepInspectionStatusRequest, BatchGetMemberEc2DeepInspectionStatusResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/BatchUpdateMemberEc2DeepInspectionStatusCommand.ts b/clients/client-inspector2/src/commands/BatchUpdateMemberEc2DeepInspectionStatusCommand.ts index 76be999dc7678..2a83252cab35f 100644 --- a/clients/client-inspector2/src/commands/BatchUpdateMemberEc2DeepInspectionStatusCommand.ts +++ b/clients/client-inspector2/src/commands/BatchUpdateMemberEc2DeepInspectionStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { BatchUpdateMemberEc2DeepInspectionStatusRequest, BatchUpdateMemberEc2DeepInspectionStatusResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/CancelFindingsReportCommand.ts b/clients/client-inspector2/src/commands/CancelFindingsReportCommand.ts index b9d2433de4182..c09d6bcd1c97a 100644 --- a/clients/client-inspector2/src/commands/CancelFindingsReportCommand.ts +++ b/clients/client-inspector2/src/commands/CancelFindingsReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { CancelFindingsReportRequest, CancelFindingsReportResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { CancelFindingsReportRequest, CancelFindingsReportResponse } from "../models/models_0"; import { CancelFindingsReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/CancelSbomExportCommand.ts b/clients/client-inspector2/src/commands/CancelSbomExportCommand.ts index fbbc5d4e9bcaa..48d26e027ba0d 100644 --- a/clients/client-inspector2/src/commands/CancelSbomExportCommand.ts +++ b/clients/client-inspector2/src/commands/CancelSbomExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { CancelSbomExportRequest, CancelSbomExportResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { CancelSbomExportRequest, CancelSbomExportResponse } from "../models/models_0"; import { CancelSbomExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/CreateCisScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/CreateCisScanConfigurationCommand.ts index 1f6d953f4eae8..e69ee76c0baf5 100644 --- a/clients/client-inspector2/src/commands/CreateCisScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/CreateCisScanConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { CreateCisScanConfigurationRequest, CreateCisScanConfigurationResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { CreateCisScanConfigurationRequest, CreateCisScanConfigurationResponse } from "../models/models_0"; import { CreateCisScanConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/CreateCodeSecurityIntegrationCommand.ts b/clients/client-inspector2/src/commands/CreateCodeSecurityIntegrationCommand.ts index fbaded01cf643..9b42c27be4755 100644 --- a/clients/client-inspector2/src/commands/CreateCodeSecurityIntegrationCommand.ts +++ b/clients/client-inspector2/src/commands/CreateCodeSecurityIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { CreateCodeSecurityIntegrationRequest, CreateCodeSecurityIntegrationResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { CreateCodeSecurityIntegrationRequest, CreateCodeSecurityIntegrationResponse } from "../models/models_0"; import { CreateCodeSecurityIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/CreateCodeSecurityScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/CreateCodeSecurityScanConfigurationCommand.ts index a08ad7223018e..86f4b459ea3fe 100644 --- a/clients/client-inspector2/src/commands/CreateCodeSecurityScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/CreateCodeSecurityScanConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { CreateCodeSecurityScanConfigurationRequest, CreateCodeSecurityScanConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/CreateFilterCommand.ts b/clients/client-inspector2/src/commands/CreateFilterCommand.ts index 5140c8f0cd4e7..f585625b2b97d 100644 --- a/clients/client-inspector2/src/commands/CreateFilterCommand.ts +++ b/clients/client-inspector2/src/commands/CreateFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { CreateFilterRequest, CreateFilterResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { CreateFilterRequest, CreateFilterResponse } from "../models/models_0"; import { CreateFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/CreateFindingsReportCommand.ts b/clients/client-inspector2/src/commands/CreateFindingsReportCommand.ts index 59a6332eabc5a..923b72876312d 100644 --- a/clients/client-inspector2/src/commands/CreateFindingsReportCommand.ts +++ b/clients/client-inspector2/src/commands/CreateFindingsReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { CreateFindingsReportRequest, CreateFindingsReportResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { CreateFindingsReportRequest, CreateFindingsReportResponse } from "../models/models_0"; import { CreateFindingsReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/CreateSbomExportCommand.ts b/clients/client-inspector2/src/commands/CreateSbomExportCommand.ts index bec2d59d9d47d..3d65406a96a63 100644 --- a/clients/client-inspector2/src/commands/CreateSbomExportCommand.ts +++ b/clients/client-inspector2/src/commands/CreateSbomExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { CreateSbomExportRequest, CreateSbomExportResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { CreateSbomExportRequest, CreateSbomExportResponse } from "../models/models_0"; import { CreateSbomExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/DeleteCisScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/DeleteCisScanConfigurationCommand.ts index ee3ac30b14d54..f289bedf44798 100644 --- a/clients/client-inspector2/src/commands/DeleteCisScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/DeleteCisScanConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { DeleteCisScanConfigurationRequest, DeleteCisScanConfigurationResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { DeleteCisScanConfigurationRequest, DeleteCisScanConfigurationResponse } from "../models/models_0"; import { DeleteCisScanConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/DeleteCodeSecurityIntegrationCommand.ts b/clients/client-inspector2/src/commands/DeleteCodeSecurityIntegrationCommand.ts index 71063ba80fc98..b4d4096aa0e0b 100644 --- a/clients/client-inspector2/src/commands/DeleteCodeSecurityIntegrationCommand.ts +++ b/clients/client-inspector2/src/commands/DeleteCodeSecurityIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { DeleteCodeSecurityIntegrationRequest, DeleteCodeSecurityIntegrationResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { DeleteCodeSecurityIntegrationRequest, DeleteCodeSecurityIntegrationResponse } from "../models/models_0"; import { DeleteCodeSecurityIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/DeleteCodeSecurityScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/DeleteCodeSecurityScanConfigurationCommand.ts index 3da6722d912ee..6b885b4c0f468 100644 --- a/clients/client-inspector2/src/commands/DeleteCodeSecurityScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/DeleteCodeSecurityScanConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { DeleteCodeSecurityScanConfigurationRequest, DeleteCodeSecurityScanConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/DeleteFilterCommand.ts b/clients/client-inspector2/src/commands/DeleteFilterCommand.ts index 78455a4dc3dc1..58319d1e1b0b4 100644 --- a/clients/client-inspector2/src/commands/DeleteFilterCommand.ts +++ b/clients/client-inspector2/src/commands/DeleteFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { DeleteFilterRequest, DeleteFilterResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { DeleteFilterRequest, DeleteFilterResponse } from "../models/models_0"; import { DeleteFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-inspector2/src/commands/DescribeOrganizationConfigurationCommand.ts index 6cd087f894c33..aa5ffd8866d40 100644 --- a/clients/client-inspector2/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { DescribeOrganizationConfigurationRequest, DescribeOrganizationConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/DisableCommand.ts b/clients/client-inspector2/src/commands/DisableCommand.ts index 0dbcf6b3c3f65..56f6ab85ed209 100644 --- a/clients/client-inspector2/src/commands/DisableCommand.ts +++ b/clients/client-inspector2/src/commands/DisableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { DisableRequest, DisableResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { DisableRequest, DisableResponse } from "../models/models_0"; import { Disable } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/DisableDelegatedAdminAccountCommand.ts b/clients/client-inspector2/src/commands/DisableDelegatedAdminAccountCommand.ts index bedb87c078da5..c663e5a64cf14 100644 --- a/clients/client-inspector2/src/commands/DisableDelegatedAdminAccountCommand.ts +++ b/clients/client-inspector2/src/commands/DisableDelegatedAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { DisableDelegatedAdminAccountRequest, DisableDelegatedAdminAccountResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { DisableDelegatedAdminAccountRequest, DisableDelegatedAdminAccountResponse } from "../models/models_0"; import { DisableDelegatedAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/DisassociateMemberCommand.ts b/clients/client-inspector2/src/commands/DisassociateMemberCommand.ts index 2b70e0a1424c5..b6544bf972028 100644 --- a/clients/client-inspector2/src/commands/DisassociateMemberCommand.ts +++ b/clients/client-inspector2/src/commands/DisassociateMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { DisassociateMemberRequest, DisassociateMemberResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { DisassociateMemberRequest, DisassociateMemberResponse } from "../models/models_0"; import { DisassociateMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/EnableCommand.ts b/clients/client-inspector2/src/commands/EnableCommand.ts index 3e91cb9e45252..22320d3af4f11 100644 --- a/clients/client-inspector2/src/commands/EnableCommand.ts +++ b/clients/client-inspector2/src/commands/EnableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { EnableRequest, EnableResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { EnableRequest, EnableResponse } from "../models/models_0"; import { Enable } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/EnableDelegatedAdminAccountCommand.ts b/clients/client-inspector2/src/commands/EnableDelegatedAdminAccountCommand.ts index 3f3ac5863eebf..f2a9e4c3abc87 100644 --- a/clients/client-inspector2/src/commands/EnableDelegatedAdminAccountCommand.ts +++ b/clients/client-inspector2/src/commands/EnableDelegatedAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { EnableDelegatedAdminAccountRequest, EnableDelegatedAdminAccountResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { EnableDelegatedAdminAccountRequest, EnableDelegatedAdminAccountResponse } from "../models/models_0"; import { EnableDelegatedAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetCisScanReportCommand.ts b/clients/client-inspector2/src/commands/GetCisScanReportCommand.ts index 018a2f9e36d48..d9145139039b9 100644 --- a/clients/client-inspector2/src/commands/GetCisScanReportCommand.ts +++ b/clients/client-inspector2/src/commands/GetCisScanReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetCisScanReportRequest, GetCisScanReportResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetCisScanReportRequest, GetCisScanReportResponse } from "../models/models_0"; import { GetCisScanReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetCisScanResultDetailsCommand.ts b/clients/client-inspector2/src/commands/GetCisScanResultDetailsCommand.ts index 096241a1b7c84..1fff18a774d01 100644 --- a/clients/client-inspector2/src/commands/GetCisScanResultDetailsCommand.ts +++ b/clients/client-inspector2/src/commands/GetCisScanResultDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetCisScanResultDetailsRequest, GetCisScanResultDetailsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetCisScanResultDetailsRequest, GetCisScanResultDetailsResponse } from "../models/models_0"; import { GetCisScanResultDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetClustersForImageCommand.ts b/clients/client-inspector2/src/commands/GetClustersForImageCommand.ts index 316777bcb8b95..590fff35dd1fb 100644 --- a/clients/client-inspector2/src/commands/GetClustersForImageCommand.ts +++ b/clients/client-inspector2/src/commands/GetClustersForImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetClustersForImageRequest, GetClustersForImageResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetClustersForImageRequest, GetClustersForImageResponse } from "../models/models_0"; import { GetClustersForImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetCodeSecurityIntegrationCommand.ts b/clients/client-inspector2/src/commands/GetCodeSecurityIntegrationCommand.ts index 9ebf746a2caac..4fa5b0b2e2abd 100644 --- a/clients/client-inspector2/src/commands/GetCodeSecurityIntegrationCommand.ts +++ b/clients/client-inspector2/src/commands/GetCodeSecurityIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetCodeSecurityIntegrationRequest, GetCodeSecurityIntegrationResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetCodeSecurityIntegrationRequest, GetCodeSecurityIntegrationResponse } from "../models/models_0"; import { GetCodeSecurityIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetCodeSecurityScanCommand.ts b/clients/client-inspector2/src/commands/GetCodeSecurityScanCommand.ts index abadc870aebef..8e24417d377a2 100644 --- a/clients/client-inspector2/src/commands/GetCodeSecurityScanCommand.ts +++ b/clients/client-inspector2/src/commands/GetCodeSecurityScanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetCodeSecurityScanRequest, GetCodeSecurityScanResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetCodeSecurityScanRequest, GetCodeSecurityScanResponse } from "../models/models_0"; import { GetCodeSecurityScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetCodeSecurityScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/GetCodeSecurityScanConfigurationCommand.ts index 26c068e6f9d80..2a8a649f7e963 100644 --- a/clients/client-inspector2/src/commands/GetCodeSecurityScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/GetCodeSecurityScanConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetCodeSecurityScanConfigurationRequest, GetCodeSecurityScanConfigurationResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { + GetCodeSecurityScanConfigurationRequest, + GetCodeSecurityScanConfigurationResponse, +} from "../models/models_0"; import { GetCodeSecurityScanConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetConfigurationCommand.ts b/clients/client-inspector2/src/commands/GetConfigurationCommand.ts index 0737dc8593a51..b99f978fa83ee 100644 --- a/clients/client-inspector2/src/commands/GetConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/GetConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetConfigurationRequest, GetConfigurationResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetConfigurationRequest, GetConfigurationResponse } from "../models/models_0"; import { GetConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetDelegatedAdminAccountCommand.ts b/clients/client-inspector2/src/commands/GetDelegatedAdminAccountCommand.ts index 5ef32efd09600..2a5cd06920660 100644 --- a/clients/client-inspector2/src/commands/GetDelegatedAdminAccountCommand.ts +++ b/clients/client-inspector2/src/commands/GetDelegatedAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetDelegatedAdminAccountRequest, GetDelegatedAdminAccountResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetDelegatedAdminAccountRequest, GetDelegatedAdminAccountResponse } from "../models/models_0"; import { GetDelegatedAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetEc2DeepInspectionConfigurationCommand.ts b/clients/client-inspector2/src/commands/GetEc2DeepInspectionConfigurationCommand.ts index 30242cc0a893b..8bfd612cfe5d9 100644 --- a/clients/client-inspector2/src/commands/GetEc2DeepInspectionConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/GetEc2DeepInspectionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetEc2DeepInspectionConfigurationRequest, GetEc2DeepInspectionConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/GetEncryptionKeyCommand.ts b/clients/client-inspector2/src/commands/GetEncryptionKeyCommand.ts index 4bd7881b4f9ac..4ee9043b7a56c 100644 --- a/clients/client-inspector2/src/commands/GetEncryptionKeyCommand.ts +++ b/clients/client-inspector2/src/commands/GetEncryptionKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetEncryptionKeyRequest, GetEncryptionKeyResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetEncryptionKeyRequest, GetEncryptionKeyResponse } from "../models/models_0"; import { GetEncryptionKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetFindingsReportStatusCommand.ts b/clients/client-inspector2/src/commands/GetFindingsReportStatusCommand.ts index 9a2f5a54d03cc..83bb1aaedc6f7 100644 --- a/clients/client-inspector2/src/commands/GetFindingsReportStatusCommand.ts +++ b/clients/client-inspector2/src/commands/GetFindingsReportStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetFindingsReportStatusRequest, GetFindingsReportStatusResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetFindingsReportStatusRequest, GetFindingsReportStatusResponse } from "../models/models_0"; import { GetFindingsReportStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetMemberCommand.ts b/clients/client-inspector2/src/commands/GetMemberCommand.ts index 3227e415a97ed..47259dedf348f 100644 --- a/clients/client-inspector2/src/commands/GetMemberCommand.ts +++ b/clients/client-inspector2/src/commands/GetMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetMemberRequest, GetMemberResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetMemberRequest, GetMemberResponse } from "../models/models_0"; import { GetMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/GetSbomExportCommand.ts b/clients/client-inspector2/src/commands/GetSbomExportCommand.ts index 86375dbeb4832..adb54469b903d 100644 --- a/clients/client-inspector2/src/commands/GetSbomExportCommand.ts +++ b/clients/client-inspector2/src/commands/GetSbomExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { GetSbomExportRequest, GetSbomExportResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { GetSbomExportRequest, GetSbomExportResponse } from "../models/models_0"; import { GetSbomExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListAccountPermissionsCommand.ts b/clients/client-inspector2/src/commands/ListAccountPermissionsCommand.ts index bb7189426d2e7..d9e2093379fc1 100644 --- a/clients/client-inspector2/src/commands/ListAccountPermissionsCommand.ts +++ b/clients/client-inspector2/src/commands/ListAccountPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListAccountPermissionsRequest, ListAccountPermissionsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListAccountPermissionsRequest, ListAccountPermissionsResponse } from "../models/models_0"; import { ListAccountPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListCisScanConfigurationsCommand.ts b/clients/client-inspector2/src/commands/ListCisScanConfigurationsCommand.ts index b0653f3f13228..6d88ca2429653 100644 --- a/clients/client-inspector2/src/commands/ListCisScanConfigurationsCommand.ts +++ b/clients/client-inspector2/src/commands/ListCisScanConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListCisScanConfigurationsRequest, ListCisScanConfigurationsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListCisScanConfigurationsRequest, ListCisScanConfigurationsResponse } from "../models/models_0"; import { ListCisScanConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByChecksCommand.ts b/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByChecksCommand.ts index 8db3301cfa045..d7b4afa29d3d8 100644 --- a/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByChecksCommand.ts +++ b/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByChecksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListCisScanResultsAggregatedByChecksRequest, ListCisScanResultsAggregatedByChecksResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByTargetResourceCommand.ts b/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByTargetResourceCommand.ts index 45cd494f0ee6a..64862f536c8d6 100644 --- a/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByTargetResourceCommand.ts +++ b/clients/client-inspector2/src/commands/ListCisScanResultsAggregatedByTargetResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListCisScanResultsAggregatedByTargetResourceRequest, ListCisScanResultsAggregatedByTargetResourceResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/ListCisScansCommand.ts b/clients/client-inspector2/src/commands/ListCisScansCommand.ts index a961bd0e980d4..457b463d81961 100644 --- a/clients/client-inspector2/src/commands/ListCisScansCommand.ts +++ b/clients/client-inspector2/src/commands/ListCisScansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListCisScansRequest, ListCisScansResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListCisScansRequest, ListCisScansResponse } from "../models/models_0"; import { ListCisScans } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListCodeSecurityIntegrationsCommand.ts b/clients/client-inspector2/src/commands/ListCodeSecurityIntegrationsCommand.ts index 8622682c08d1a..cf2c466f0a52a 100644 --- a/clients/client-inspector2/src/commands/ListCodeSecurityIntegrationsCommand.ts +++ b/clients/client-inspector2/src/commands/ListCodeSecurityIntegrationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListCodeSecurityIntegrationsRequest, ListCodeSecurityIntegrationsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListCodeSecurityIntegrationsRequest, ListCodeSecurityIntegrationsResponse } from "../models/models_0"; import { ListCodeSecurityIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListCodeSecurityScanConfigurationAssociationsCommand.ts b/clients/client-inspector2/src/commands/ListCodeSecurityScanConfigurationAssociationsCommand.ts index b4cb7bd8de436..4680043a3bf58 100644 --- a/clients/client-inspector2/src/commands/ListCodeSecurityScanConfigurationAssociationsCommand.ts +++ b/clients/client-inspector2/src/commands/ListCodeSecurityScanConfigurationAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListCodeSecurityScanConfigurationAssociationsRequest, ListCodeSecurityScanConfigurationAssociationsResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/ListCodeSecurityScanConfigurationsCommand.ts b/clients/client-inspector2/src/commands/ListCodeSecurityScanConfigurationsCommand.ts index 7137a36b49389..d080973727107 100644 --- a/clients/client-inspector2/src/commands/ListCodeSecurityScanConfigurationsCommand.ts +++ b/clients/client-inspector2/src/commands/ListCodeSecurityScanConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListCodeSecurityScanConfigurationsRequest, ListCodeSecurityScanConfigurationsResponse, } from "../models/models_0"; diff --git a/clients/client-inspector2/src/commands/ListCoverageCommand.ts b/clients/client-inspector2/src/commands/ListCoverageCommand.ts index 03d7953c4dd50..91ce8987245d8 100644 --- a/clients/client-inspector2/src/commands/ListCoverageCommand.ts +++ b/clients/client-inspector2/src/commands/ListCoverageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListCoverageRequest, ListCoverageResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListCoverageRequest, ListCoverageResponse } from "../models/models_0"; import { ListCoverage } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListCoverageStatisticsCommand.ts b/clients/client-inspector2/src/commands/ListCoverageStatisticsCommand.ts index 3f016222a99e8..23a9d1ef389f1 100644 --- a/clients/client-inspector2/src/commands/ListCoverageStatisticsCommand.ts +++ b/clients/client-inspector2/src/commands/ListCoverageStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListCoverageStatisticsRequest, ListCoverageStatisticsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListCoverageStatisticsRequest, ListCoverageStatisticsResponse } from "../models/models_0"; import { ListCoverageStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListDelegatedAdminAccountsCommand.ts b/clients/client-inspector2/src/commands/ListDelegatedAdminAccountsCommand.ts index 9805d5fa851ce..0dfdbca03970f 100644 --- a/clients/client-inspector2/src/commands/ListDelegatedAdminAccountsCommand.ts +++ b/clients/client-inspector2/src/commands/ListDelegatedAdminAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListDelegatedAdminAccountsRequest, ListDelegatedAdminAccountsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListDelegatedAdminAccountsRequest, ListDelegatedAdminAccountsResponse } from "../models/models_0"; import { ListDelegatedAdminAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListFiltersCommand.ts b/clients/client-inspector2/src/commands/ListFiltersCommand.ts index f2e0099cd2795..828f94b354cd3 100644 --- a/clients/client-inspector2/src/commands/ListFiltersCommand.ts +++ b/clients/client-inspector2/src/commands/ListFiltersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListFiltersRequest, ListFiltersResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListFiltersRequest, ListFiltersResponse } from "../models/models_0"; import { ListFilters } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListFindingAggregationsCommand.ts b/clients/client-inspector2/src/commands/ListFindingAggregationsCommand.ts index 9d4ade1aca0bd..5dcb90b21d0d8 100644 --- a/clients/client-inspector2/src/commands/ListFindingAggregationsCommand.ts +++ b/clients/client-inspector2/src/commands/ListFindingAggregationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListFindingAggregationsRequest, ListFindingAggregationsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListFindingAggregationsRequest, ListFindingAggregationsResponse } from "../models/models_0"; import { ListFindingAggregations } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListFindingsCommand.ts b/clients/client-inspector2/src/commands/ListFindingsCommand.ts index 8c16331e2f81d..da99905fe59aa 100644 --- a/clients/client-inspector2/src/commands/ListFindingsCommand.ts +++ b/clients/client-inspector2/src/commands/ListFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListFindingsRequest, ListFindingsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListFindingsRequest, ListFindingsResponse } from "../models/models_0"; import { ListFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListMembersCommand.ts b/clients/client-inspector2/src/commands/ListMembersCommand.ts index 008356a1ea321..697c8d7e5e363 100644 --- a/clients/client-inspector2/src/commands/ListMembersCommand.ts +++ b/clients/client-inspector2/src/commands/ListMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListMembersRequest, ListMembersResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListMembersRequest, ListMembersResponse } from "../models/models_0"; import { ListMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListTagsForResourceCommand.ts b/clients/client-inspector2/src/commands/ListTagsForResourceCommand.ts index 8f704bedbfab3..458c5ab5c5613 100644 --- a/clients/client-inspector2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-inspector2/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ListUsageTotalsCommand.ts b/clients/client-inspector2/src/commands/ListUsageTotalsCommand.ts index 579763189c5bf..b678fe1c7734e 100644 --- a/clients/client-inspector2/src/commands/ListUsageTotalsCommand.ts +++ b/clients/client-inspector2/src/commands/ListUsageTotalsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ListUsageTotalsRequest, ListUsageTotalsResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ListUsageTotalsRequest, ListUsageTotalsResponse } from "../models/models_0"; import { ListUsageTotals } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/ResetEncryptionKeyCommand.ts b/clients/client-inspector2/src/commands/ResetEncryptionKeyCommand.ts index 69483b75a6756..2b0fe87b14872 100644 --- a/clients/client-inspector2/src/commands/ResetEncryptionKeyCommand.ts +++ b/clients/client-inspector2/src/commands/ResetEncryptionKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { ResetEncryptionKeyRequest, ResetEncryptionKeyResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { ResetEncryptionKeyRequest, ResetEncryptionKeyResponse } from "../models/models_0"; import { ResetEncryptionKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/SearchVulnerabilitiesCommand.ts b/clients/client-inspector2/src/commands/SearchVulnerabilitiesCommand.ts index 106a4ec83853f..be42ffedafb61 100644 --- a/clients/client-inspector2/src/commands/SearchVulnerabilitiesCommand.ts +++ b/clients/client-inspector2/src/commands/SearchVulnerabilitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { SearchVulnerabilitiesRequest, SearchVulnerabilitiesResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { SearchVulnerabilitiesRequest, SearchVulnerabilitiesResponse } from "../models/models_0"; import { SearchVulnerabilities } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/SendCisSessionHealthCommand.ts b/clients/client-inspector2/src/commands/SendCisSessionHealthCommand.ts index 2271dd414ff7e..6b838dc9d48a5 100644 --- a/clients/client-inspector2/src/commands/SendCisSessionHealthCommand.ts +++ b/clients/client-inspector2/src/commands/SendCisSessionHealthCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { SendCisSessionHealthRequest, SendCisSessionHealthResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { SendCisSessionHealthRequest, SendCisSessionHealthResponse } from "../models/models_0"; import { SendCisSessionHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/SendCisSessionTelemetryCommand.ts b/clients/client-inspector2/src/commands/SendCisSessionTelemetryCommand.ts index b44bfc1751bb2..028230e01d810 100644 --- a/clients/client-inspector2/src/commands/SendCisSessionTelemetryCommand.ts +++ b/clients/client-inspector2/src/commands/SendCisSessionTelemetryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { SendCisSessionTelemetryRequest, SendCisSessionTelemetryResponse } from "../models/models_0"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { SendCisSessionTelemetryRequest, SendCisSessionTelemetryResponse } from "../models/models_0"; import { SendCisSessionTelemetry } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/StartCisSessionCommand.ts b/clients/client-inspector2/src/commands/StartCisSessionCommand.ts index 1c182e1efc618..1cd47d374f0f8 100644 --- a/clients/client-inspector2/src/commands/StartCisSessionCommand.ts +++ b/clients/client-inspector2/src/commands/StartCisSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { StartCisSessionRequest } from "../models/models_0"; -import { StartCisSessionResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { StartCisSessionRequest } from "../models/models_0"; +import type { StartCisSessionResponse } from "../models/models_1"; import { StartCisSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/StartCodeSecurityScanCommand.ts b/clients/client-inspector2/src/commands/StartCodeSecurityScanCommand.ts index 8c37a7e61145e..7ca60137ea614 100644 --- a/clients/client-inspector2/src/commands/StartCodeSecurityScanCommand.ts +++ b/clients/client-inspector2/src/commands/StartCodeSecurityScanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { StartCodeSecurityScanRequest, StartCodeSecurityScanResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { StartCodeSecurityScanRequest, StartCodeSecurityScanResponse } from "../models/models_1"; import { StartCodeSecurityScan } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/StopCisSessionCommand.ts b/clients/client-inspector2/src/commands/StopCisSessionCommand.ts index da63b1a230ba7..456adb32f66d3 100644 --- a/clients/client-inspector2/src/commands/StopCisSessionCommand.ts +++ b/clients/client-inspector2/src/commands/StopCisSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { StopCisSessionRequest, StopCisSessionResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { StopCisSessionRequest, StopCisSessionResponse } from "../models/models_1"; import { StopCisSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/TagResourceCommand.ts b/clients/client-inspector2/src/commands/TagResourceCommand.ts index f61ffbb9527d4..0f3219e308ff8 100644 --- a/clients/client-inspector2/src/commands/TagResourceCommand.ts +++ b/clients/client-inspector2/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/UntagResourceCommand.ts b/clients/client-inspector2/src/commands/UntagResourceCommand.ts index 61aaf2faaf1d4..727e6b91b4251 100644 --- a/clients/client-inspector2/src/commands/UntagResourceCommand.ts +++ b/clients/client-inspector2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/UpdateCisScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateCisScanConfigurationCommand.ts index 80ae669e106fa..b21a2d3fb4523 100644 --- a/clients/client-inspector2/src/commands/UpdateCisScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateCisScanConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { UpdateCisScanConfigurationRequest, UpdateCisScanConfigurationResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { UpdateCisScanConfigurationRequest, UpdateCisScanConfigurationResponse } from "../models/models_1"; import { UpdateCisScanConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/UpdateCodeSecurityIntegrationCommand.ts b/clients/client-inspector2/src/commands/UpdateCodeSecurityIntegrationCommand.ts index bfe39ac2d0383..9b7094c423c5d 100644 --- a/clients/client-inspector2/src/commands/UpdateCodeSecurityIntegrationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateCodeSecurityIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { UpdateCodeSecurityIntegrationRequest, UpdateCodeSecurityIntegrationResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { UpdateCodeSecurityIntegrationRequest, UpdateCodeSecurityIntegrationResponse } from "../models/models_1"; import { UpdateCodeSecurityIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/UpdateCodeSecurityScanConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateCodeSecurityScanConfigurationCommand.ts index 688cd2fa21a04..8e82e7b11c144 100644 --- a/clients/client-inspector2/src/commands/UpdateCodeSecurityScanConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateCodeSecurityScanConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { UpdateCodeSecurityScanConfigurationRequest, UpdateCodeSecurityScanConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-inspector2/src/commands/UpdateConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateConfigurationCommand.ts index 961ea4a11d8cb..527d7b01c710a 100644 --- a/clients/client-inspector2/src/commands/UpdateConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { UpdateConfigurationRequest, UpdateConfigurationResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { UpdateConfigurationRequest, UpdateConfigurationResponse } from "../models/models_1"; import { UpdateConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/UpdateEc2DeepInspectionConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateEc2DeepInspectionConfigurationCommand.ts index 94396e67d5cb5..d99da4d2992d0 100644 --- a/clients/client-inspector2/src/commands/UpdateEc2DeepInspectionConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateEc2DeepInspectionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { UpdateEc2DeepInspectionConfigurationRequest, UpdateEc2DeepInspectionConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-inspector2/src/commands/UpdateEncryptionKeyCommand.ts b/clients/client-inspector2/src/commands/UpdateEncryptionKeyCommand.ts index e1ca2334dcbbf..62d9d374e5c88 100644 --- a/clients/client-inspector2/src/commands/UpdateEncryptionKeyCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateEncryptionKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { UpdateEncryptionKeyRequest, UpdateEncryptionKeyResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { UpdateEncryptionKeyRequest, UpdateEncryptionKeyResponse } from "../models/models_1"; import { UpdateEncryptionKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/UpdateFilterCommand.ts b/clients/client-inspector2/src/commands/UpdateFilterCommand.ts index 91497604fc1ca..d6dc23c5feab2 100644 --- a/clients/client-inspector2/src/commands/UpdateFilterCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { UpdateFilterRequest, UpdateFilterResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { UpdateFilterRequest, UpdateFilterResponse } from "../models/models_1"; import { UpdateFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.ts index cdfca6c8924fe..f005581582187 100644 --- a/clients/client-inspector2/src/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateOrgEc2DeepInspectionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { UpdateOrgEc2DeepInspectionConfigurationRequest, UpdateOrgEc2DeepInspectionConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-inspector2/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-inspector2/src/commands/UpdateOrganizationConfigurationCommand.ts index b151d9ba266e4..d337eb69d8944 100644 --- a/clients/client-inspector2/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-inspector2/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; -import { UpdateOrganizationConfigurationRequest, UpdateOrganizationConfigurationResponse } from "../models/models_1"; +import type { Inspector2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Inspector2Client"; +import type { + UpdateOrganizationConfigurationRequest, + UpdateOrganizationConfigurationResponse, +} from "../models/models_1"; import { UpdateOrganizationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-inspector2/src/endpoint/EndpointParameters.ts b/clients/client-inspector2/src/endpoint/EndpointParameters.ts index 651e02bb6b7c8..ecbe9a0c5b76b 100644 --- a/clients/client-inspector2/src/endpoint/EndpointParameters.ts +++ b/clients/client-inspector2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-inspector2/src/endpoint/endpointResolver.ts b/clients/client-inspector2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-inspector2/src/endpoint/endpointResolver.ts +++ b/clients/client-inspector2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-inspector2/src/extensionConfiguration.ts b/clients/client-inspector2/src/extensionConfiguration.ts index 48e393aedc858..98331b44765ab 100644 --- a/clients/client-inspector2/src/extensionConfiguration.ts +++ b/clients/client-inspector2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-inspector2/src/models/Inspector2ServiceException.ts b/clients/client-inspector2/src/models/Inspector2ServiceException.ts index d415ec7aa252d..252805eb2c7e4 100644 --- a/clients/client-inspector2/src/models/Inspector2ServiceException.ts +++ b/clients/client-inspector2/src/models/Inspector2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-inspector2/src/models/errors.ts b/clients/client-inspector2/src/models/errors.ts index 431f86c68174f..903481f06fa8d 100644 --- a/clients/client-inspector2/src/models/errors.ts +++ b/clients/client-inspector2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { Inspector2ServiceException as __BaseException } from "./Inspector2ServiceException"; diff --git a/clients/client-inspector2/src/pagination/GetCisScanResultDetailsPaginator.ts b/clients/client-inspector2/src/pagination/GetCisScanResultDetailsPaginator.ts index dfedf430472a7..fed8055968760 100644 --- a/clients/client-inspector2/src/pagination/GetCisScanResultDetailsPaginator.ts +++ b/clients/client-inspector2/src/pagination/GetCisScanResultDetailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCisScanResultDetailsCommand, diff --git a/clients/client-inspector2/src/pagination/GetClustersForImagePaginator.ts b/clients/client-inspector2/src/pagination/GetClustersForImagePaginator.ts index 69d5c503e0353..c25cf67bd29a7 100644 --- a/clients/client-inspector2/src/pagination/GetClustersForImagePaginator.ts +++ b/clients/client-inspector2/src/pagination/GetClustersForImagePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetClustersForImageCommand, diff --git a/clients/client-inspector2/src/pagination/Interfaces.ts b/clients/client-inspector2/src/pagination/Interfaces.ts index ba5d2e530846b..7d3cd07d95eb1 100644 --- a/clients/client-inspector2/src/pagination/Interfaces.ts +++ b/clients/client-inspector2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Inspector2Client } from "../Inspector2Client"; diff --git a/clients/client-inspector2/src/pagination/ListAccountPermissionsPaginator.ts b/clients/client-inspector2/src/pagination/ListAccountPermissionsPaginator.ts index 4c6ab09cccc43..c2dd0ca5ba05f 100644 --- a/clients/client-inspector2/src/pagination/ListAccountPermissionsPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListAccountPermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountPermissionsCommand, diff --git a/clients/client-inspector2/src/pagination/ListCisScanConfigurationsPaginator.ts b/clients/client-inspector2/src/pagination/ListCisScanConfigurationsPaginator.ts index 00f18d6e38da3..ad6f6438d1fa2 100644 --- a/clients/client-inspector2/src/pagination/ListCisScanConfigurationsPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListCisScanConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCisScanConfigurationsCommand, diff --git a/clients/client-inspector2/src/pagination/ListCisScanResultsAggregatedByChecksPaginator.ts b/clients/client-inspector2/src/pagination/ListCisScanResultsAggregatedByChecksPaginator.ts index 57448c9f216d0..91485f021255c 100644 --- a/clients/client-inspector2/src/pagination/ListCisScanResultsAggregatedByChecksPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListCisScanResultsAggregatedByChecksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCisScanResultsAggregatedByChecksCommand, diff --git a/clients/client-inspector2/src/pagination/ListCisScanResultsAggregatedByTargetResourcePaginator.ts b/clients/client-inspector2/src/pagination/ListCisScanResultsAggregatedByTargetResourcePaginator.ts index 80aa17ea7ae8b..914ea9b525732 100644 --- a/clients/client-inspector2/src/pagination/ListCisScanResultsAggregatedByTargetResourcePaginator.ts +++ b/clients/client-inspector2/src/pagination/ListCisScanResultsAggregatedByTargetResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCisScanResultsAggregatedByTargetResourceCommand, diff --git a/clients/client-inspector2/src/pagination/ListCisScansPaginator.ts b/clients/client-inspector2/src/pagination/ListCisScansPaginator.ts index 5bae680fb9339..0f4783c8cab3a 100644 --- a/clients/client-inspector2/src/pagination/ListCisScansPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListCisScansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCisScansCommand, diff --git a/clients/client-inspector2/src/pagination/ListCoveragePaginator.ts b/clients/client-inspector2/src/pagination/ListCoveragePaginator.ts index a25a8aca40f30..ee65e4aa4de8a 100644 --- a/clients/client-inspector2/src/pagination/ListCoveragePaginator.ts +++ b/clients/client-inspector2/src/pagination/ListCoveragePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCoverageCommand, diff --git a/clients/client-inspector2/src/pagination/ListCoverageStatisticsPaginator.ts b/clients/client-inspector2/src/pagination/ListCoverageStatisticsPaginator.ts index 7462ef7d8cd5f..a0509433b3a33 100644 --- a/clients/client-inspector2/src/pagination/ListCoverageStatisticsPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListCoverageStatisticsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCoverageStatisticsCommand, diff --git a/clients/client-inspector2/src/pagination/ListDelegatedAdminAccountsPaginator.ts b/clients/client-inspector2/src/pagination/ListDelegatedAdminAccountsPaginator.ts index 25834e45f1342..a9c44ca9b4205 100644 --- a/clients/client-inspector2/src/pagination/ListDelegatedAdminAccountsPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListDelegatedAdminAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDelegatedAdminAccountsCommand, diff --git a/clients/client-inspector2/src/pagination/ListFiltersPaginator.ts b/clients/client-inspector2/src/pagination/ListFiltersPaginator.ts index 392670e7ff093..b525a3776ea11 100644 --- a/clients/client-inspector2/src/pagination/ListFiltersPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListFiltersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFiltersCommand, ListFiltersCommandInput, ListFiltersCommandOutput } from "../commands/ListFiltersCommand"; import { Inspector2Client } from "../Inspector2Client"; diff --git a/clients/client-inspector2/src/pagination/ListFindingAggregationsPaginator.ts b/clients/client-inspector2/src/pagination/ListFindingAggregationsPaginator.ts index 738bd36d36b2a..273a5303670a1 100644 --- a/clients/client-inspector2/src/pagination/ListFindingAggregationsPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListFindingAggregationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFindingAggregationsCommand, diff --git a/clients/client-inspector2/src/pagination/ListFindingsPaginator.ts b/clients/client-inspector2/src/pagination/ListFindingsPaginator.ts index 767c8316b2af4..b2f8bbf449f75 100644 --- a/clients/client-inspector2/src/pagination/ListFindingsPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFindingsCommand, diff --git a/clients/client-inspector2/src/pagination/ListMembersPaginator.ts b/clients/client-inspector2/src/pagination/ListMembersPaginator.ts index 96be24f93f916..f49cf74aafe57 100644 --- a/clients/client-inspector2/src/pagination/ListMembersPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMembersCommand, ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand"; import { Inspector2Client } from "../Inspector2Client"; diff --git a/clients/client-inspector2/src/pagination/ListUsageTotalsPaginator.ts b/clients/client-inspector2/src/pagination/ListUsageTotalsPaginator.ts index 0bc2a2caee42e..9529efb10f879 100644 --- a/clients/client-inspector2/src/pagination/ListUsageTotalsPaginator.ts +++ b/clients/client-inspector2/src/pagination/ListUsageTotalsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsageTotalsCommand, diff --git a/clients/client-inspector2/src/pagination/SearchVulnerabilitiesPaginator.ts b/clients/client-inspector2/src/pagination/SearchVulnerabilitiesPaginator.ts index e6a4672a2da9a..e203449fd607c 100644 --- a/clients/client-inspector2/src/pagination/SearchVulnerabilitiesPaginator.ts +++ b/clients/client-inspector2/src/pagination/SearchVulnerabilitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchVulnerabilitiesCommand, diff --git a/clients/client-inspector2/src/runtimeConfig.browser.ts b/clients/client-inspector2/src/runtimeConfig.browser.ts index cf32b1737eea5..1804a74f65bdb 100644 --- a/clients/client-inspector2/src/runtimeConfig.browser.ts +++ b/clients/client-inspector2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Inspector2ClientConfig } from "./Inspector2Client"; + +import type { Inspector2ClientConfig } from "./Inspector2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-inspector2/src/runtimeConfig.native.ts b/clients/client-inspector2/src/runtimeConfig.native.ts index 63c5a07335f69..3100d8afbf242 100644 --- a/clients/client-inspector2/src/runtimeConfig.native.ts +++ b/clients/client-inspector2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Inspector2ClientConfig } from "./Inspector2Client"; +import type { Inspector2ClientConfig } from "./Inspector2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-inspector2/src/runtimeConfig.shared.ts b/clients/client-inspector2/src/runtimeConfig.shared.ts index a65270e8b2869..780e26c54bc26 100644 --- a/clients/client-inspector2/src/runtimeConfig.shared.ts +++ b/clients/client-inspector2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultInspector2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Inspector2ClientConfig } from "./Inspector2Client"; +import type { Inspector2ClientConfig } from "./Inspector2Client"; /** * @internal diff --git a/clients/client-inspector2/src/runtimeConfig.ts b/clients/client-inspector2/src/runtimeConfig.ts index 419684be74295..2069d14071082 100644 --- a/clients/client-inspector2/src/runtimeConfig.ts +++ b/clients/client-inspector2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Inspector2ClientConfig } from "./Inspector2Client"; + +import type { Inspector2ClientConfig } from "./Inspector2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-inspector2/src/runtimeExtensions.ts b/clients/client-inspector2/src/runtimeExtensions.ts index 4c1959317513f..369f0360676b8 100644 --- a/clients/client-inspector2/src/runtimeExtensions.ts +++ b/clients/client-inspector2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Inspector2ExtensionConfiguration } from "./extensionConfiguration"; +import type { Inspector2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-inspector2/src/schemas/schemas_0.ts b/clients/client-inspector2/src/schemas/schemas_0.ts index 7cb6c1a4cf023..acb83d5014cce 100644 --- a/clients/client-inspector2/src/schemas/schemas_0.ts +++ b/clients/client-inspector2/src/schemas/schemas_0.ts @@ -982,7 +982,7 @@ const n0 = "com.amazonaws.inspector2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-internetmonitor/package.json b/clients/client-internetmonitor/package.json index 9862f31632965..07cff1e5f25a8 100644 --- a/clients/client-internetmonitor/package.json +++ b/clients/client-internetmonitor/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-internetmonitor/src/InternetMonitor.ts b/clients/client-internetmonitor/src/InternetMonitor.ts index ce03b0b1ac6d1..6d6dab1119e58 100644 --- a/clients/client-internetmonitor/src/InternetMonitor.ts +++ b/clients/client-internetmonitor/src/InternetMonitor.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateMonitorCommand, @@ -66,7 +66,7 @@ import { UpdateMonitorCommandInput, UpdateMonitorCommandOutput, } from "./commands/UpdateMonitorCommand"; -import { InternetMonitorClient, InternetMonitorClientConfig } from "./InternetMonitorClient"; +import { InternetMonitorClient } from "./InternetMonitorClient"; const commands = { CreateMonitorCommand, diff --git a/clients/client-internetmonitor/src/InternetMonitorClient.ts b/clients/client-internetmonitor/src/InternetMonitorClient.ts index 7003458302f13..43366cc496443 100644 --- a/clients/client-internetmonitor/src/InternetMonitorClient.ts +++ b/clients/client-internetmonitor/src/InternetMonitorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultInternetMonitorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "./commands/CreateMonitorCommand"; @@ -83,7 +92,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-internetmonitor/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-internetmonitor/src/auth/httpAuthExtensionConfiguration.ts index 95a7157d0e5de..6c07534d107da 100644 --- a/clients/client-internetmonitor/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-internetmonitor/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { InternetMonitorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { InternetMonitorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-internetmonitor/src/auth/httpAuthSchemeProvider.ts b/clients/client-internetmonitor/src/auth/httpAuthSchemeProvider.ts index f0a67c873e370..a30621d1ef4d2 100644 --- a/clients/client-internetmonitor/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-internetmonitor/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { InternetMonitorClientConfig, InternetMonitorClientResolvedConfig } from "../InternetMonitorClient"; +import { type InternetMonitorClientResolvedConfig, InternetMonitorClientConfig } from "../InternetMonitorClient"; /** * @internal diff --git a/clients/client-internetmonitor/src/commands/CreateMonitorCommand.ts b/clients/client-internetmonitor/src/commands/CreateMonitorCommand.ts index 0cfd8b9f64ade..f1c15e61b9f4d 100644 --- a/clients/client-internetmonitor/src/commands/CreateMonitorCommand.ts +++ b/clients/client-internetmonitor/src/commands/CreateMonitorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0"; import { CreateMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/DeleteMonitorCommand.ts b/clients/client-internetmonitor/src/commands/DeleteMonitorCommand.ts index 6d142fb58bf8a..344e850962647 100644 --- a/clients/client-internetmonitor/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-internetmonitor/src/commands/DeleteMonitorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0"; import { DeleteMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/GetHealthEventCommand.ts b/clients/client-internetmonitor/src/commands/GetHealthEventCommand.ts index f36bec99885c4..8a673e66b167b 100644 --- a/clients/client-internetmonitor/src/commands/GetHealthEventCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetHealthEventCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { GetHealthEventInput, GetHealthEventOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { GetHealthEventInput, GetHealthEventOutput } from "../models/models_0"; import { GetHealthEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/GetInternetEventCommand.ts b/clients/client-internetmonitor/src/commands/GetInternetEventCommand.ts index a301f0d0f0c41..02e41ebe0ed34 100644 --- a/clients/client-internetmonitor/src/commands/GetInternetEventCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetInternetEventCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { GetInternetEventInput, GetInternetEventOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { GetInternetEventInput, GetInternetEventOutput } from "../models/models_0"; import { GetInternetEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/GetMonitorCommand.ts b/clients/client-internetmonitor/src/commands/GetMonitorCommand.ts index caf82f4918c16..2a3beec000b26 100644 --- a/clients/client-internetmonitor/src/commands/GetMonitorCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetMonitorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { GetMonitorInput, GetMonitorOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { GetMonitorInput, GetMonitorOutput } from "../models/models_0"; import { GetMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/GetQueryResultsCommand.ts b/clients/client-internetmonitor/src/commands/GetQueryResultsCommand.ts index 977420976c3ee..a9a4329d4f6c0 100644 --- a/clients/client-internetmonitor/src/commands/GetQueryResultsCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetQueryResultsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { GetQueryResultsInput, GetQueryResultsOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { GetQueryResultsInput, GetQueryResultsOutput } from "../models/models_0"; import { GetQueryResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/GetQueryStatusCommand.ts b/clients/client-internetmonitor/src/commands/GetQueryStatusCommand.ts index 6fe07fce29aa1..863c43c26a48d 100644 --- a/clients/client-internetmonitor/src/commands/GetQueryStatusCommand.ts +++ b/clients/client-internetmonitor/src/commands/GetQueryStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { GetQueryStatusInput, GetQueryStatusOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { GetQueryStatusInput, GetQueryStatusOutput } from "../models/models_0"; import { GetQueryStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/ListHealthEventsCommand.ts b/clients/client-internetmonitor/src/commands/ListHealthEventsCommand.ts index cec7728a76a02..26bfbfdec352d 100644 --- a/clients/client-internetmonitor/src/commands/ListHealthEventsCommand.ts +++ b/clients/client-internetmonitor/src/commands/ListHealthEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { ListHealthEventsInput, ListHealthEventsOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { ListHealthEventsInput, ListHealthEventsOutput } from "../models/models_0"; import { ListHealthEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/ListInternetEventsCommand.ts b/clients/client-internetmonitor/src/commands/ListInternetEventsCommand.ts index 04001501ba370..e75c57249f019 100644 --- a/clients/client-internetmonitor/src/commands/ListInternetEventsCommand.ts +++ b/clients/client-internetmonitor/src/commands/ListInternetEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { ListInternetEventsInput, ListInternetEventsOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { ListInternetEventsInput, ListInternetEventsOutput } from "../models/models_0"; import { ListInternetEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/ListMonitorsCommand.ts b/clients/client-internetmonitor/src/commands/ListMonitorsCommand.ts index 30551c7efa235..3d328278f1f89 100644 --- a/clients/client-internetmonitor/src/commands/ListMonitorsCommand.ts +++ b/clients/client-internetmonitor/src/commands/ListMonitorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0"; import { ListMonitors } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/ListTagsForResourceCommand.ts b/clients/client-internetmonitor/src/commands/ListTagsForResourceCommand.ts index b3a594ab4d266..2c8c309511fd8 100644 --- a/clients/client-internetmonitor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-internetmonitor/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/StartQueryCommand.ts b/clients/client-internetmonitor/src/commands/StartQueryCommand.ts index 40adcac09c648..f0c5e49cf3d86 100644 --- a/clients/client-internetmonitor/src/commands/StartQueryCommand.ts +++ b/clients/client-internetmonitor/src/commands/StartQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { StartQueryInput, StartQueryOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { StartQueryInput, StartQueryOutput } from "../models/models_0"; import { StartQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/StopQueryCommand.ts b/clients/client-internetmonitor/src/commands/StopQueryCommand.ts index 91c3cb0b34381..71268b9d9e68b 100644 --- a/clients/client-internetmonitor/src/commands/StopQueryCommand.ts +++ b/clients/client-internetmonitor/src/commands/StopQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { StopQueryInput, StopQueryOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { StopQueryInput, StopQueryOutput } from "../models/models_0"; import { StopQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/TagResourceCommand.ts b/clients/client-internetmonitor/src/commands/TagResourceCommand.ts index fecfd3d7b95da..cb86e13c46c7d 100644 --- a/clients/client-internetmonitor/src/commands/TagResourceCommand.ts +++ b/clients/client-internetmonitor/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/UntagResourceCommand.ts b/clients/client-internetmonitor/src/commands/UntagResourceCommand.ts index 8b8d0faea4b41..8bef08c274083 100644 --- a/clients/client-internetmonitor/src/commands/UntagResourceCommand.ts +++ b/clients/client-internetmonitor/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/commands/UpdateMonitorCommand.ts b/clients/client-internetmonitor/src/commands/UpdateMonitorCommand.ts index e8d8bad981130..8980c020b7a94 100644 --- a/clients/client-internetmonitor/src/commands/UpdateMonitorCommand.ts +++ b/clients/client-internetmonitor/src/commands/UpdateMonitorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient"; -import { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0"; +import type { + InternetMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../InternetMonitorClient"; +import type { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0"; import { UpdateMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-internetmonitor/src/endpoint/EndpointParameters.ts b/clients/client-internetmonitor/src/endpoint/EndpointParameters.ts index 4e16c7c39c287..44391d2a99ade 100644 --- a/clients/client-internetmonitor/src/endpoint/EndpointParameters.ts +++ b/clients/client-internetmonitor/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-internetmonitor/src/endpoint/endpointResolver.ts b/clients/client-internetmonitor/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-internetmonitor/src/endpoint/endpointResolver.ts +++ b/clients/client-internetmonitor/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-internetmonitor/src/extensionConfiguration.ts b/clients/client-internetmonitor/src/extensionConfiguration.ts index 570e077134e9d..6304c45462ba7 100644 --- a/clients/client-internetmonitor/src/extensionConfiguration.ts +++ b/clients/client-internetmonitor/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-internetmonitor/src/models/InternetMonitorServiceException.ts b/clients/client-internetmonitor/src/models/InternetMonitorServiceException.ts index 71901f0d9703e..6a812d15ee225 100644 --- a/clients/client-internetmonitor/src/models/InternetMonitorServiceException.ts +++ b/clients/client-internetmonitor/src/models/InternetMonitorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-internetmonitor/src/models/errors.ts b/clients/client-internetmonitor/src/models/errors.ts index 8afb860c72c1d..b8453fb5e212a 100644 --- a/clients/client-internetmonitor/src/models/errors.ts +++ b/clients/client-internetmonitor/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { InternetMonitorServiceException as __BaseException } from "./InternetMonitorServiceException"; diff --git a/clients/client-internetmonitor/src/pagination/GetQueryResultsPaginator.ts b/clients/client-internetmonitor/src/pagination/GetQueryResultsPaginator.ts index 76e35d16c4633..35e78fc20808c 100644 --- a/clients/client-internetmonitor/src/pagination/GetQueryResultsPaginator.ts +++ b/clients/client-internetmonitor/src/pagination/GetQueryResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetQueryResultsCommand, diff --git a/clients/client-internetmonitor/src/pagination/Interfaces.ts b/clients/client-internetmonitor/src/pagination/Interfaces.ts index 3771789f5055a..7e6a5e9c96163 100644 --- a/clients/client-internetmonitor/src/pagination/Interfaces.ts +++ b/clients/client-internetmonitor/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { InternetMonitorClient } from "../InternetMonitorClient"; diff --git a/clients/client-internetmonitor/src/pagination/ListHealthEventsPaginator.ts b/clients/client-internetmonitor/src/pagination/ListHealthEventsPaginator.ts index 2f4aa54dc2e30..903f3580763ba 100644 --- a/clients/client-internetmonitor/src/pagination/ListHealthEventsPaginator.ts +++ b/clients/client-internetmonitor/src/pagination/ListHealthEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHealthEventsCommand, diff --git a/clients/client-internetmonitor/src/pagination/ListInternetEventsPaginator.ts b/clients/client-internetmonitor/src/pagination/ListInternetEventsPaginator.ts index 6181fd0d8fdcc..21f02fa01c6c2 100644 --- a/clients/client-internetmonitor/src/pagination/ListInternetEventsPaginator.ts +++ b/clients/client-internetmonitor/src/pagination/ListInternetEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInternetEventsCommand, diff --git a/clients/client-internetmonitor/src/pagination/ListMonitorsPaginator.ts b/clients/client-internetmonitor/src/pagination/ListMonitorsPaginator.ts index e9e8a2a63d94f..b3da65799768d 100644 --- a/clients/client-internetmonitor/src/pagination/ListMonitorsPaginator.ts +++ b/clients/client-internetmonitor/src/pagination/ListMonitorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitorsCommand, diff --git a/clients/client-internetmonitor/src/runtimeConfig.browser.ts b/clients/client-internetmonitor/src/runtimeConfig.browser.ts index 8134697d12401..e908c17ff64da 100644 --- a/clients/client-internetmonitor/src/runtimeConfig.browser.ts +++ b/clients/client-internetmonitor/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { InternetMonitorClientConfig } from "./InternetMonitorClient"; + +import type { InternetMonitorClientConfig } from "./InternetMonitorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-internetmonitor/src/runtimeConfig.native.ts b/clients/client-internetmonitor/src/runtimeConfig.native.ts index a9c0123382301..d4f96b7711512 100644 --- a/clients/client-internetmonitor/src/runtimeConfig.native.ts +++ b/clients/client-internetmonitor/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { InternetMonitorClientConfig } from "./InternetMonitorClient"; +import type { InternetMonitorClientConfig } from "./InternetMonitorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-internetmonitor/src/runtimeConfig.shared.ts b/clients/client-internetmonitor/src/runtimeConfig.shared.ts index 3d4989e68d6a9..bd297069e8640 100644 --- a/clients/client-internetmonitor/src/runtimeConfig.shared.ts +++ b/clients/client-internetmonitor/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultInternetMonitorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { InternetMonitorClientConfig } from "./InternetMonitorClient"; +import type { InternetMonitorClientConfig } from "./InternetMonitorClient"; /** * @internal diff --git a/clients/client-internetmonitor/src/runtimeConfig.ts b/clients/client-internetmonitor/src/runtimeConfig.ts index 2c5431f135ee7..9c90e5f3f21fe 100644 --- a/clients/client-internetmonitor/src/runtimeConfig.ts +++ b/clients/client-internetmonitor/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { InternetMonitorClientConfig } from "./InternetMonitorClient"; + +import type { InternetMonitorClientConfig } from "./InternetMonitorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-internetmonitor/src/runtimeExtensions.ts b/clients/client-internetmonitor/src/runtimeExtensions.ts index c7bf8b4135b16..65b6af9406f38 100644 --- a/clients/client-internetmonitor/src/runtimeExtensions.ts +++ b/clients/client-internetmonitor/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { InternetMonitorExtensionConfiguration } from "./extensionConfiguration"; +import type { InternetMonitorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-internetmonitor/src/schemas/schemas_0.ts b/clients/client-internetmonitor/src/schemas/schemas_0.ts index 48dcede0b198f..1323a859534dc 100644 --- a/clients/client-internetmonitor/src/schemas/schemas_0.ts +++ b/clients/client-internetmonitor/src/schemas/schemas_0.ts @@ -174,7 +174,7 @@ const n0 = "com.amazonaws.internetmonitor"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-invoicing/package.json b/clients/client-invoicing/package.json index e72447e705ab5..f1aefaf2f5fe4 100644 --- a/clients/client-invoicing/package.json +++ b/clients/client-invoicing/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-invoicing/src/Invoicing.ts b/clients/client-invoicing/src/Invoicing.ts index 8204d0871e301..9a270f33cb7b4 100644 --- a/clients/client-invoicing/src/Invoicing.ts +++ b/clients/client-invoicing/src/Invoicing.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetInvoiceProfileCommand, @@ -83,7 +83,7 @@ import { UpdateProcurementPortalPreferenceStatusCommandInput, UpdateProcurementPortalPreferenceStatusCommandOutput, } from "./commands/UpdateProcurementPortalPreferenceStatusCommand"; -import { InvoicingClient, InvoicingClientConfig } from "./InvoicingClient"; +import { InvoicingClient } from "./InvoicingClient"; const commands = { BatchGetInvoiceProfileCommand, diff --git a/clients/client-invoicing/src/InvoicingClient.ts b/clients/client-invoicing/src/InvoicingClient.ts index 1859cc7917734..b6b08ff8dc977 100644 --- a/clients/client-invoicing/src/InvoicingClient.ts +++ b/clients/client-invoicing/src/InvoicingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultInvoicingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -108,7 +117,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-invoicing/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-invoicing/src/auth/httpAuthExtensionConfiguration.ts index 46336d0b5090d..dc13b83ebe139 100644 --- a/clients/client-invoicing/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-invoicing/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { InvoicingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { InvoicingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-invoicing/src/auth/httpAuthSchemeProvider.ts b/clients/client-invoicing/src/auth/httpAuthSchemeProvider.ts index 7346dd96cdf4c..14018ff774790 100644 --- a/clients/client-invoicing/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-invoicing/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { InvoicingClientConfig, InvoicingClientResolvedConfig } from "../InvoicingClient"; +import { type InvoicingClientResolvedConfig, InvoicingClientConfig } from "../InvoicingClient"; /** * @internal diff --git a/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts b/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts index 63eb8651891df..cfe9d077cd1b3 100644 --- a/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts +++ b/clients/client-invoicing/src/commands/BatchGetInvoiceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { BatchGetInvoiceProfileRequest, BatchGetInvoiceProfileResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { BatchGetInvoiceProfileRequest, BatchGetInvoiceProfileResponse } from "../models/models_0"; import { BatchGetInvoiceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts index 82e8e67e4ea21..c0148deac57d7 100644 --- a/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/CreateInvoiceUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { CreateInvoiceUnitRequest, CreateInvoiceUnitResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { CreateInvoiceUnitRequest, CreateInvoiceUnitResponse } from "../models/models_0"; import { CreateInvoiceUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/CreateProcurementPortalPreferenceCommand.ts b/clients/client-invoicing/src/commands/CreateProcurementPortalPreferenceCommand.ts index 8fc5ef843ea5c..7aac75c84fa12 100644 --- a/clients/client-invoicing/src/commands/CreateProcurementPortalPreferenceCommand.ts +++ b/clients/client-invoicing/src/commands/CreateProcurementPortalPreferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { CreateProcurementPortalPreferenceRequest, CreateProcurementPortalPreferenceResponse, } from "../models/models_0"; diff --git a/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts index dc51d903b810c..e34846c78f372 100644 --- a/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/DeleteInvoiceUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { DeleteInvoiceUnitRequest, DeleteInvoiceUnitResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { DeleteInvoiceUnitRequest, DeleteInvoiceUnitResponse } from "../models/models_0"; import { DeleteInvoiceUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/DeleteProcurementPortalPreferenceCommand.ts b/clients/client-invoicing/src/commands/DeleteProcurementPortalPreferenceCommand.ts index 9f91342b58d63..925cfa6f13d81 100644 --- a/clients/client-invoicing/src/commands/DeleteProcurementPortalPreferenceCommand.ts +++ b/clients/client-invoicing/src/commands/DeleteProcurementPortalPreferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { DeleteProcurementPortalPreferenceRequest, DeleteProcurementPortalPreferenceResponse, } from "../models/models_0"; diff --git a/clients/client-invoicing/src/commands/GetInvoicePDFCommand.ts b/clients/client-invoicing/src/commands/GetInvoicePDFCommand.ts index 79cb9d2ad4db6..4bc76cd1235ee 100644 --- a/clients/client-invoicing/src/commands/GetInvoicePDFCommand.ts +++ b/clients/client-invoicing/src/commands/GetInvoicePDFCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { GetInvoicePDFRequest, GetInvoicePDFResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { GetInvoicePDFRequest, GetInvoicePDFResponse } from "../models/models_0"; import { GetInvoicePDF } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts index 26fec3d4c3b73..d128cb30e49b4 100644 --- a/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/GetInvoiceUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { GetInvoiceUnitRequest, GetInvoiceUnitResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { GetInvoiceUnitRequest, GetInvoiceUnitResponse } from "../models/models_0"; import { GetInvoiceUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/GetProcurementPortalPreferenceCommand.ts b/clients/client-invoicing/src/commands/GetProcurementPortalPreferenceCommand.ts index 4235dde3b0c8d..98c3de8a2cfbb 100644 --- a/clients/client-invoicing/src/commands/GetProcurementPortalPreferenceCommand.ts +++ b/clients/client-invoicing/src/commands/GetProcurementPortalPreferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { GetProcurementPortalPreferenceRequest, GetProcurementPortalPreferenceResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { GetProcurementPortalPreferenceRequest, GetProcurementPortalPreferenceResponse } from "../models/models_0"; import { GetProcurementPortalPreference } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/ListInvoiceSummariesCommand.ts b/clients/client-invoicing/src/commands/ListInvoiceSummariesCommand.ts index 4b09f1ca1a9a9..b24a9e726887d 100644 --- a/clients/client-invoicing/src/commands/ListInvoiceSummariesCommand.ts +++ b/clients/client-invoicing/src/commands/ListInvoiceSummariesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { ListInvoiceSummariesRequest, ListInvoiceSummariesResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { ListInvoiceSummariesRequest, ListInvoiceSummariesResponse } from "../models/models_0"; import { ListInvoiceSummaries } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts b/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts index 888ff484ad383..71bf54514cfe8 100644 --- a/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts +++ b/clients/client-invoicing/src/commands/ListInvoiceUnitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { ListInvoiceUnitsRequest, ListInvoiceUnitsResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { ListInvoiceUnitsRequest, ListInvoiceUnitsResponse } from "../models/models_0"; import { ListInvoiceUnits } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/ListProcurementPortalPreferencesCommand.ts b/clients/client-invoicing/src/commands/ListProcurementPortalPreferencesCommand.ts index 96d0d6d7a208d..50f9ebdca12e4 100644 --- a/clients/client-invoicing/src/commands/ListProcurementPortalPreferencesCommand.ts +++ b/clients/client-invoicing/src/commands/ListProcurementPortalPreferencesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { ListProcurementPortalPreferencesRequest, ListProcurementPortalPreferencesResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { + ListProcurementPortalPreferencesRequest, + ListProcurementPortalPreferencesResponse, +} from "../models/models_0"; import { ListProcurementPortalPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts b/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts index c702010cff707..58a57ac4f5d20 100644 --- a/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-invoicing/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/PutProcurementPortalPreferenceCommand.ts b/clients/client-invoicing/src/commands/PutProcurementPortalPreferenceCommand.ts index 5345765efd1b2..74174721224e3 100644 --- a/clients/client-invoicing/src/commands/PutProcurementPortalPreferenceCommand.ts +++ b/clients/client-invoicing/src/commands/PutProcurementPortalPreferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { PutProcurementPortalPreferenceRequest, PutProcurementPortalPreferenceResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { PutProcurementPortalPreferenceRequest, PutProcurementPortalPreferenceResponse } from "../models/models_0"; import { PutProcurementPortalPreference } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/TagResourceCommand.ts b/clients/client-invoicing/src/commands/TagResourceCommand.ts index b4d8e03993575..33e7182515f5b 100644 --- a/clients/client-invoicing/src/commands/TagResourceCommand.ts +++ b/clients/client-invoicing/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/UntagResourceCommand.ts b/clients/client-invoicing/src/commands/UntagResourceCommand.ts index c6101d093abba..8f151883d094d 100644 --- a/clients/client-invoicing/src/commands/UntagResourceCommand.ts +++ b/clients/client-invoicing/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts b/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts index 93f65c81c265e..e08043d383b5f 100644 --- a/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts +++ b/clients/client-invoicing/src/commands/UpdateInvoiceUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { UpdateInvoiceUnitRequest, UpdateInvoiceUnitResponse } from "../models/models_0"; +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { UpdateInvoiceUnitRequest, UpdateInvoiceUnitResponse } from "../models/models_0"; import { UpdateInvoiceUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-invoicing/src/commands/UpdateProcurementPortalPreferenceStatusCommand.ts b/clients/client-invoicing/src/commands/UpdateProcurementPortalPreferenceStatusCommand.ts index 3736a858aac17..6601c235f2088 100644 --- a/clients/client-invoicing/src/commands/UpdateProcurementPortalPreferenceStatusCommand.ts +++ b/clients/client-invoicing/src/commands/UpdateProcurementPortalPreferenceStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; -import { +import type { InvoicingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InvoicingClient"; +import type { UpdateProcurementPortalPreferenceStatusRequest, UpdateProcurementPortalPreferenceStatusResponse, } from "../models/models_0"; diff --git a/clients/client-invoicing/src/endpoint/EndpointParameters.ts b/clients/client-invoicing/src/endpoint/EndpointParameters.ts index 8a0292cd728d0..0cce5a484847a 100644 --- a/clients/client-invoicing/src/endpoint/EndpointParameters.ts +++ b/clients/client-invoicing/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-invoicing/src/endpoint/endpointResolver.ts b/clients/client-invoicing/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-invoicing/src/endpoint/endpointResolver.ts +++ b/clients/client-invoicing/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-invoicing/src/extensionConfiguration.ts b/clients/client-invoicing/src/extensionConfiguration.ts index d9868edcc39bc..2e182c98ffe95 100644 --- a/clients/client-invoicing/src/extensionConfiguration.ts +++ b/clients/client-invoicing/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-invoicing/src/models/InvoicingServiceException.ts b/clients/client-invoicing/src/models/InvoicingServiceException.ts index e020fcc8045e0..edc010cbdb096 100644 --- a/clients/client-invoicing/src/models/InvoicingServiceException.ts +++ b/clients/client-invoicing/src/models/InvoicingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-invoicing/src/models/errors.ts b/clients/client-invoicing/src/models/errors.ts index 1951b0df967bf..0f975a3fb5097 100644 --- a/clients/client-invoicing/src/models/errors.ts +++ b/clients/client-invoicing/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { InvoicingServiceException as __BaseException } from "./InvoicingServiceException"; diff --git a/clients/client-invoicing/src/pagination/Interfaces.ts b/clients/client-invoicing/src/pagination/Interfaces.ts index 106128180f0a4..53c80ebfe346d 100644 --- a/clients/client-invoicing/src/pagination/Interfaces.ts +++ b/clients/client-invoicing/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { InvoicingClient } from "../InvoicingClient"; diff --git a/clients/client-invoicing/src/pagination/ListInvoiceSummariesPaginator.ts b/clients/client-invoicing/src/pagination/ListInvoiceSummariesPaginator.ts index 2a6d060a5065e..25036d2fc5fed 100644 --- a/clients/client-invoicing/src/pagination/ListInvoiceSummariesPaginator.ts +++ b/clients/client-invoicing/src/pagination/ListInvoiceSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInvoiceSummariesCommand, diff --git a/clients/client-invoicing/src/pagination/ListInvoiceUnitsPaginator.ts b/clients/client-invoicing/src/pagination/ListInvoiceUnitsPaginator.ts index 983d18d7a49fe..5019002aee7ff 100644 --- a/clients/client-invoicing/src/pagination/ListInvoiceUnitsPaginator.ts +++ b/clients/client-invoicing/src/pagination/ListInvoiceUnitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInvoiceUnitsCommand, diff --git a/clients/client-invoicing/src/pagination/ListProcurementPortalPreferencesPaginator.ts b/clients/client-invoicing/src/pagination/ListProcurementPortalPreferencesPaginator.ts index 1725be3cc8251..72ef064d64546 100644 --- a/clients/client-invoicing/src/pagination/ListProcurementPortalPreferencesPaginator.ts +++ b/clients/client-invoicing/src/pagination/ListProcurementPortalPreferencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProcurementPortalPreferencesCommand, diff --git a/clients/client-invoicing/src/runtimeConfig.browser.ts b/clients/client-invoicing/src/runtimeConfig.browser.ts index 8f1f618b78019..250d1dc039928 100644 --- a/clients/client-invoicing/src/runtimeConfig.browser.ts +++ b/clients/client-invoicing/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { InvoicingClientConfig } from "./InvoicingClient"; + +import type { InvoicingClientConfig } from "./InvoicingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-invoicing/src/runtimeConfig.native.ts b/clients/client-invoicing/src/runtimeConfig.native.ts index 6e1e27f3e660f..0983bce8347ac 100644 --- a/clients/client-invoicing/src/runtimeConfig.native.ts +++ b/clients/client-invoicing/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { InvoicingClientConfig } from "./InvoicingClient"; +import type { InvoicingClientConfig } from "./InvoicingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-invoicing/src/runtimeConfig.shared.ts b/clients/client-invoicing/src/runtimeConfig.shared.ts index 3db2ca51e3159..02701940e9b60 100644 --- a/clients/client-invoicing/src/runtimeConfig.shared.ts +++ b/clients/client-invoicing/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultInvoicingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { InvoicingClientConfig } from "./InvoicingClient"; +import type { InvoicingClientConfig } from "./InvoicingClient"; /** * @internal diff --git a/clients/client-invoicing/src/runtimeConfig.ts b/clients/client-invoicing/src/runtimeConfig.ts index c4d5638c7559f..6a955318a95d1 100644 --- a/clients/client-invoicing/src/runtimeConfig.ts +++ b/clients/client-invoicing/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { InvoicingClientConfig } from "./InvoicingClient"; + +import type { InvoicingClientConfig } from "./InvoicingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-invoicing/src/runtimeExtensions.ts b/clients/client-invoicing/src/runtimeExtensions.ts index 2fdbe1e692e0f..f7f68efa9c916 100644 --- a/clients/client-invoicing/src/runtimeExtensions.ts +++ b/clients/client-invoicing/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { InvoicingExtensionConfiguration } from "./extensionConfiguration"; +import type { InvoicingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-invoicing/src/schemas/schemas_0.ts b/clients/client-invoicing/src/schemas/schemas_0.ts index 261edbddf883a..bfb1dc0b3526e 100644 --- a/clients/client-invoicing/src/schemas/schemas_0.ts +++ b/clients/client-invoicing/src/schemas/schemas_0.ts @@ -220,7 +220,7 @@ const n0 = "com.amazonaws.invoicing"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-iot-data-plane/package.json b/clients/client-iot-data-plane/package.json index 0e31b9c9da663..e37c0db8df14c 100644 --- a/clients/client-iot-data-plane/package.json +++ b/clients/client-iot-data-plane/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iot-data-plane/src/IoTDataPlane.ts b/clients/client-iot-data-plane/src/IoTDataPlane.ts index 29e2b7a663a36..98bfc5db3cf82 100644 --- a/clients/client-iot-data-plane/src/IoTDataPlane.ts +++ b/clients/client-iot-data-plane/src/IoTDataPlane.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteConnectionCommand, @@ -38,7 +38,7 @@ import { UpdateThingShadowCommandInput, UpdateThingShadowCommandOutput, } from "./commands/UpdateThingShadowCommand"; -import { IoTDataPlaneClient, IoTDataPlaneClientConfig } from "./IoTDataPlaneClient"; +import { IoTDataPlaneClient } from "./IoTDataPlaneClient"; const commands = { DeleteConnectionCommand, diff --git a/clients/client-iot-data-plane/src/IoTDataPlaneClient.ts b/clients/client-iot-data-plane/src/IoTDataPlaneClient.ts index 60f5257dae637..14ae2fbcccef9 100644 --- a/clients/client-iot-data-plane/src/IoTDataPlaneClient.ts +++ b/clients/client-iot-data-plane/src/IoTDataPlaneClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTDataPlaneHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand"; @@ -78,7 +87,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iot-data-plane/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iot-data-plane/src/auth/httpAuthExtensionConfiguration.ts index 0374db7b78fac..f11e10483db8c 100644 --- a/clients/client-iot-data-plane/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iot-data-plane/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTDataPlaneHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTDataPlaneHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iot-data-plane/src/auth/httpAuthSchemeProvider.ts b/clients/client-iot-data-plane/src/auth/httpAuthSchemeProvider.ts index 0a9478035ed71..b006ee28ce97b 100644 --- a/clients/client-iot-data-plane/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iot-data-plane/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTDataPlaneClientConfig, IoTDataPlaneClientResolvedConfig } from "../IoTDataPlaneClient"; +import { type IoTDataPlaneClientResolvedConfig, IoTDataPlaneClientConfig } from "../IoTDataPlaneClient"; /** * @internal diff --git a/clients/client-iot-data-plane/src/commands/DeleteConnectionCommand.ts b/clients/client-iot-data-plane/src/commands/DeleteConnectionCommand.ts index 814dfa824e38a..630e70ec8e8ac 100644 --- a/clients/client-iot-data-plane/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-iot-data-plane/src/commands/DeleteConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; -import { DeleteConnectionRequest } from "../models/models_0"; +import type { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; +import type { DeleteConnectionRequest } from "../models/models_0"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-data-plane/src/commands/DeleteThingShadowCommand.ts b/clients/client-iot-data-plane/src/commands/DeleteThingShadowCommand.ts index 3faebc5aa5548..9d95d1f803997 100644 --- a/clients/client-iot-data-plane/src/commands/DeleteThingShadowCommand.ts +++ b/clients/client-iot-data-plane/src/commands/DeleteThingShadowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; -import { DeleteThingShadowRequest, DeleteThingShadowResponse } from "../models/models_0"; +import type { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; +import { type DeleteThingShadowRequest, DeleteThingShadowResponse } from "../models/models_0"; import { DeleteThingShadow } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-data-plane/src/commands/GetRetainedMessageCommand.ts b/clients/client-iot-data-plane/src/commands/GetRetainedMessageCommand.ts index b6ccd6e4c3f3c..7c159df52934d 100644 --- a/clients/client-iot-data-plane/src/commands/GetRetainedMessageCommand.ts +++ b/clients/client-iot-data-plane/src/commands/GetRetainedMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; -import { GetRetainedMessageRequest, GetRetainedMessageResponse } from "../models/models_0"; +import type { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; +import type { GetRetainedMessageRequest, GetRetainedMessageResponse } from "../models/models_0"; import { GetRetainedMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-data-plane/src/commands/GetThingShadowCommand.ts b/clients/client-iot-data-plane/src/commands/GetThingShadowCommand.ts index 18eb7e3f3a3c0..385e6a8a0bdd6 100644 --- a/clients/client-iot-data-plane/src/commands/GetThingShadowCommand.ts +++ b/clients/client-iot-data-plane/src/commands/GetThingShadowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; -import { GetThingShadowRequest, GetThingShadowResponse } from "../models/models_0"; +import type { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; +import { type GetThingShadowRequest, GetThingShadowResponse } from "../models/models_0"; import { GetThingShadow } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-data-plane/src/commands/ListNamedShadowsForThingCommand.ts b/clients/client-iot-data-plane/src/commands/ListNamedShadowsForThingCommand.ts index a08a4dde5a828..501b96489cc39 100644 --- a/clients/client-iot-data-plane/src/commands/ListNamedShadowsForThingCommand.ts +++ b/clients/client-iot-data-plane/src/commands/ListNamedShadowsForThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; -import { ListNamedShadowsForThingRequest, ListNamedShadowsForThingResponse } from "../models/models_0"; +import type { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; +import type { ListNamedShadowsForThingRequest, ListNamedShadowsForThingResponse } from "../models/models_0"; import { ListNamedShadowsForThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-data-plane/src/commands/ListRetainedMessagesCommand.ts b/clients/client-iot-data-plane/src/commands/ListRetainedMessagesCommand.ts index 015fa79dfafea..c3060bedf0466 100644 --- a/clients/client-iot-data-plane/src/commands/ListRetainedMessagesCommand.ts +++ b/clients/client-iot-data-plane/src/commands/ListRetainedMessagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; -import { ListRetainedMessagesRequest, ListRetainedMessagesResponse } from "../models/models_0"; +import type { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; +import type { ListRetainedMessagesRequest, ListRetainedMessagesResponse } from "../models/models_0"; import { ListRetainedMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-data-plane/src/commands/PublishCommand.ts b/clients/client-iot-data-plane/src/commands/PublishCommand.ts index 4a0d328eb35a8..707f18ad7ea0a 100644 --- a/clients/client-iot-data-plane/src/commands/PublishCommand.ts +++ b/clients/client-iot-data-plane/src/commands/PublishCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; +import type { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; import { PublishRequest } from "../models/models_0"; import { Publish } from "../schemas/schemas_0"; diff --git a/clients/client-iot-data-plane/src/commands/UpdateThingShadowCommand.ts b/clients/client-iot-data-plane/src/commands/UpdateThingShadowCommand.ts index a51223ddbbe13..2e9e79d26e3ee 100644 --- a/clients/client-iot-data-plane/src/commands/UpdateThingShadowCommand.ts +++ b/clients/client-iot-data-plane/src/commands/UpdateThingShadowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; +import type { IoTDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTDataPlaneClient"; import { UpdateThingShadowRequest, UpdateThingShadowResponse } from "../models/models_0"; import { UpdateThingShadow } from "../schemas/schemas_0"; diff --git a/clients/client-iot-data-plane/src/endpoint/EndpointParameters.ts b/clients/client-iot-data-plane/src/endpoint/EndpointParameters.ts index dcb07a620624b..3f16d236307b5 100644 --- a/clients/client-iot-data-plane/src/endpoint/EndpointParameters.ts +++ b/clients/client-iot-data-plane/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iot-data-plane/src/endpoint/endpointResolver.ts b/clients/client-iot-data-plane/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iot-data-plane/src/endpoint/endpointResolver.ts +++ b/clients/client-iot-data-plane/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iot-data-plane/src/extensionConfiguration.ts b/clients/client-iot-data-plane/src/extensionConfiguration.ts index 215bb1db8101e..4cf4e6443a194 100644 --- a/clients/client-iot-data-plane/src/extensionConfiguration.ts +++ b/clients/client-iot-data-plane/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iot-data-plane/src/models/IoTDataPlaneServiceException.ts b/clients/client-iot-data-plane/src/models/IoTDataPlaneServiceException.ts index b27cc21a71349..1bbc6af932d61 100644 --- a/clients/client-iot-data-plane/src/models/IoTDataPlaneServiceException.ts +++ b/clients/client-iot-data-plane/src/models/IoTDataPlaneServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iot-data-plane/src/models/errors.ts b/clients/client-iot-data-plane/src/models/errors.ts index 3c89ea4b76137..bbf7c4caaa4fb 100644 --- a/clients/client-iot-data-plane/src/models/errors.ts +++ b/clients/client-iot-data-plane/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTDataPlaneServiceException as __BaseException } from "./IoTDataPlaneServiceException"; diff --git a/clients/client-iot-data-plane/src/pagination/Interfaces.ts b/clients/client-iot-data-plane/src/pagination/Interfaces.ts index 5f37749df1728..f59a062071587 100644 --- a/clients/client-iot-data-plane/src/pagination/Interfaces.ts +++ b/clients/client-iot-data-plane/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTDataPlaneClient } from "../IoTDataPlaneClient"; diff --git a/clients/client-iot-data-plane/src/pagination/ListRetainedMessagesPaginator.ts b/clients/client-iot-data-plane/src/pagination/ListRetainedMessagesPaginator.ts index 23e058841a3d3..c0202cfe5e52d 100644 --- a/clients/client-iot-data-plane/src/pagination/ListRetainedMessagesPaginator.ts +++ b/clients/client-iot-data-plane/src/pagination/ListRetainedMessagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRetainedMessagesCommand, diff --git a/clients/client-iot-data-plane/src/runtimeConfig.browser.ts b/clients/client-iot-data-plane/src/runtimeConfig.browser.ts index 1298a568d13ea..9ee3d70421600 100644 --- a/clients/client-iot-data-plane/src/runtimeConfig.browser.ts +++ b/clients/client-iot-data-plane/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTDataPlaneClientConfig } from "./IoTDataPlaneClient"; + +import type { IoTDataPlaneClientConfig } from "./IoTDataPlaneClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iot-data-plane/src/runtimeConfig.native.ts b/clients/client-iot-data-plane/src/runtimeConfig.native.ts index 436d2eda85349..a8f93ce214b3f 100644 --- a/clients/client-iot-data-plane/src/runtimeConfig.native.ts +++ b/clients/client-iot-data-plane/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTDataPlaneClientConfig } from "./IoTDataPlaneClient"; +import type { IoTDataPlaneClientConfig } from "./IoTDataPlaneClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iot-data-plane/src/runtimeConfig.shared.ts b/clients/client-iot-data-plane/src/runtimeConfig.shared.ts index 1f6b04e7e4a0e..de918093729f9 100644 --- a/clients/client-iot-data-plane/src/runtimeConfig.shared.ts +++ b/clients/client-iot-data-plane/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTDataPlaneHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTDataPlaneClientConfig } from "./IoTDataPlaneClient"; +import type { IoTDataPlaneClientConfig } from "./IoTDataPlaneClient"; /** * @internal diff --git a/clients/client-iot-data-plane/src/runtimeConfig.ts b/clients/client-iot-data-plane/src/runtimeConfig.ts index f52982b030290..3a8a347d0d36f 100644 --- a/clients/client-iot-data-plane/src/runtimeConfig.ts +++ b/clients/client-iot-data-plane/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTDataPlaneClientConfig } from "./IoTDataPlaneClient"; + +import type { IoTDataPlaneClientConfig } from "./IoTDataPlaneClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iot-data-plane/src/runtimeExtensions.ts b/clients/client-iot-data-plane/src/runtimeExtensions.ts index 3610426c2a53f..87e1255b936a3 100644 --- a/clients/client-iot-data-plane/src/runtimeExtensions.ts +++ b/clients/client-iot-data-plane/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTDataPlaneExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTDataPlaneExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iot-data-plane/src/schemas/schemas_0.ts b/clients/client-iot-data-plane/src/schemas/schemas_0.ts index 17126bb04baf0..b3f5c3dd712de 100644 --- a/clients/client-iot-data-plane/src/schemas/schemas_0.ts +++ b/clients/client-iot-data-plane/src/schemas/schemas_0.ts @@ -76,7 +76,7 @@ const n0 = "com.amazonaws.iotdataplane"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-iot-events-data/package.json b/clients/client-iot-events-data/package.json index 9e284681e12dd..239d923119200 100644 --- a/clients/client-iot-events-data/package.json +++ b/clients/client-iot-events-data/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iot-events-data/src/IoTEventsData.ts b/clients/client-iot-events-data/src/IoTEventsData.ts index acc7e5644b682..90485bb5cf697 100644 --- a/clients/client-iot-events-data/src/IoTEventsData.ts +++ b/clients/client-iot-events-data/src/IoTEventsData.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchAcknowledgeAlarmCommand, @@ -58,7 +58,7 @@ import { ListDetectorsCommandInput, ListDetectorsCommandOutput, } from "./commands/ListDetectorsCommand"; -import { IoTEventsDataClient, IoTEventsDataClientConfig } from "./IoTEventsDataClient"; +import { IoTEventsDataClient } from "./IoTEventsDataClient"; const commands = { BatchAcknowledgeAlarmCommand, diff --git a/clients/client-iot-events-data/src/IoTEventsDataClient.ts b/clients/client-iot-events-data/src/IoTEventsDataClient.ts index 7f0f5fa0f7318..1dadb4ed2ef2f 100644 --- a/clients/client-iot-events-data/src/IoTEventsDataClient.ts +++ b/clients/client-iot-events-data/src/IoTEventsDataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTEventsDataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -85,7 +94,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iot-events-data/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iot-events-data/src/auth/httpAuthExtensionConfiguration.ts index d8baa4a8d4c65..8857bf44daabb 100644 --- a/clients/client-iot-events-data/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iot-events-data/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTEventsDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTEventsDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iot-events-data/src/auth/httpAuthSchemeProvider.ts b/clients/client-iot-events-data/src/auth/httpAuthSchemeProvider.ts index c377564750a8e..d9e48ea475a44 100644 --- a/clients/client-iot-events-data/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iot-events-data/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTEventsDataClientConfig, IoTEventsDataClientResolvedConfig } from "../IoTEventsDataClient"; +import { type IoTEventsDataClientResolvedConfig, IoTEventsDataClientConfig } from "../IoTEventsDataClient"; /** * @internal diff --git a/clients/client-iot-events-data/src/commands/BatchAcknowledgeAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchAcknowledgeAlarmCommand.ts index a76f6cb698e19..b928689c8717e 100644 --- a/clients/client-iot-events-data/src/commands/BatchAcknowledgeAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchAcknowledgeAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { BatchAcknowledgeAlarmRequest, BatchAcknowledgeAlarmResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { BatchAcknowledgeAlarmRequest, BatchAcknowledgeAlarmResponse } from "../models/models_0"; import { BatchAcknowledgeAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/BatchDeleteDetectorCommand.ts b/clients/client-iot-events-data/src/commands/BatchDeleteDetectorCommand.ts index a52be303b19e6..cdbcd222e4b5e 100644 --- a/clients/client-iot-events-data/src/commands/BatchDeleteDetectorCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchDeleteDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { BatchDeleteDetectorRequest, BatchDeleteDetectorResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { BatchDeleteDetectorRequest, BatchDeleteDetectorResponse } from "../models/models_0"; import { BatchDeleteDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/BatchDisableAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchDisableAlarmCommand.ts index 81349be086c35..6dea67ac88b5f 100644 --- a/clients/client-iot-events-data/src/commands/BatchDisableAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchDisableAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { BatchDisableAlarmRequest, BatchDisableAlarmResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { BatchDisableAlarmRequest, BatchDisableAlarmResponse } from "../models/models_0"; import { BatchDisableAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/BatchEnableAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchEnableAlarmCommand.ts index 69899b8125342..2c8b5769b4c28 100644 --- a/clients/client-iot-events-data/src/commands/BatchEnableAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchEnableAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { BatchEnableAlarmRequest, BatchEnableAlarmResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { BatchEnableAlarmRequest, BatchEnableAlarmResponse } from "../models/models_0"; import { BatchEnableAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/BatchPutMessageCommand.ts b/clients/client-iot-events-data/src/commands/BatchPutMessageCommand.ts index 330ff957044a2..0ddc32d6de53a 100644 --- a/clients/client-iot-events-data/src/commands/BatchPutMessageCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchPutMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { BatchPutMessageRequest, BatchPutMessageResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { BatchPutMessageRequest, BatchPutMessageResponse } from "../models/models_0"; import { BatchPutMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/BatchResetAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchResetAlarmCommand.ts index 8002fc779e164..9ced886c2b534 100644 --- a/clients/client-iot-events-data/src/commands/BatchResetAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchResetAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { BatchResetAlarmRequest, BatchResetAlarmResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { BatchResetAlarmRequest, BatchResetAlarmResponse } from "../models/models_0"; import { BatchResetAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/BatchSnoozeAlarmCommand.ts b/clients/client-iot-events-data/src/commands/BatchSnoozeAlarmCommand.ts index cfd3a8553956d..d2b173b3c25ba 100644 --- a/clients/client-iot-events-data/src/commands/BatchSnoozeAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchSnoozeAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { BatchSnoozeAlarmRequest, BatchSnoozeAlarmResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { BatchSnoozeAlarmRequest, BatchSnoozeAlarmResponse } from "../models/models_0"; import { BatchSnoozeAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/BatchUpdateDetectorCommand.ts b/clients/client-iot-events-data/src/commands/BatchUpdateDetectorCommand.ts index 2820d6403a12d..c3e61b7b38180 100644 --- a/clients/client-iot-events-data/src/commands/BatchUpdateDetectorCommand.ts +++ b/clients/client-iot-events-data/src/commands/BatchUpdateDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { BatchUpdateDetectorRequest, BatchUpdateDetectorResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { BatchUpdateDetectorRequest, BatchUpdateDetectorResponse } from "../models/models_0"; import { BatchUpdateDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/DescribeAlarmCommand.ts b/clients/client-iot-events-data/src/commands/DescribeAlarmCommand.ts index 55df96bb47a98..54e465df4671b 100644 --- a/clients/client-iot-events-data/src/commands/DescribeAlarmCommand.ts +++ b/clients/client-iot-events-data/src/commands/DescribeAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { DescribeAlarmRequest, DescribeAlarmResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { DescribeAlarmRequest, DescribeAlarmResponse } from "../models/models_0"; import { DescribeAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/DescribeDetectorCommand.ts b/clients/client-iot-events-data/src/commands/DescribeDetectorCommand.ts index 1725dd3a8feb3..d362a3aa20ad5 100644 --- a/clients/client-iot-events-data/src/commands/DescribeDetectorCommand.ts +++ b/clients/client-iot-events-data/src/commands/DescribeDetectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { DescribeDetectorRequest, DescribeDetectorResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { DescribeDetectorRequest, DescribeDetectorResponse } from "../models/models_0"; import { DescribeDetector } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/ListAlarmsCommand.ts b/clients/client-iot-events-data/src/commands/ListAlarmsCommand.ts index 34fff5945a125..14426a76cf40b 100644 --- a/clients/client-iot-events-data/src/commands/ListAlarmsCommand.ts +++ b/clients/client-iot-events-data/src/commands/ListAlarmsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { ListAlarmsRequest, ListAlarmsResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { ListAlarmsRequest, ListAlarmsResponse } from "../models/models_0"; import { ListAlarms } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/commands/ListDetectorsCommand.ts b/clients/client-iot-events-data/src/commands/ListDetectorsCommand.ts index 0d7572be8d0b0..7cf08c221a5d5 100644 --- a/clients/client-iot-events-data/src/commands/ListDetectorsCommand.ts +++ b/clients/client-iot-events-data/src/commands/ListDetectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; -import { ListDetectorsRequest, ListDetectorsResponse } from "../models/models_0"; +import type { IoTEventsDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsDataClient"; +import type { ListDetectorsRequest, ListDetectorsResponse } from "../models/models_0"; import { ListDetectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events-data/src/endpoint/EndpointParameters.ts b/clients/client-iot-events-data/src/endpoint/EndpointParameters.ts index b34b334bb7ac9..dbb74fd6f1bee 100644 --- a/clients/client-iot-events-data/src/endpoint/EndpointParameters.ts +++ b/clients/client-iot-events-data/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iot-events-data/src/endpoint/endpointResolver.ts b/clients/client-iot-events-data/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iot-events-data/src/endpoint/endpointResolver.ts +++ b/clients/client-iot-events-data/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iot-events-data/src/extensionConfiguration.ts b/clients/client-iot-events-data/src/extensionConfiguration.ts index 68df2426b979b..d4f5c2fc0f7f4 100644 --- a/clients/client-iot-events-data/src/extensionConfiguration.ts +++ b/clients/client-iot-events-data/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iot-events-data/src/models/IoTEventsDataServiceException.ts b/clients/client-iot-events-data/src/models/IoTEventsDataServiceException.ts index 4d77ef9bbefd7..a2d9b06092873 100644 --- a/clients/client-iot-events-data/src/models/IoTEventsDataServiceException.ts +++ b/clients/client-iot-events-data/src/models/IoTEventsDataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iot-events-data/src/models/errors.ts b/clients/client-iot-events-data/src/models/errors.ts index 4a05dd8658f55..9cde98bdb3910 100644 --- a/clients/client-iot-events-data/src/models/errors.ts +++ b/clients/client-iot-events-data/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTEventsDataServiceException as __BaseException } from "./IoTEventsDataServiceException"; diff --git a/clients/client-iot-events-data/src/runtimeConfig.browser.ts b/clients/client-iot-events-data/src/runtimeConfig.browser.ts index f1dea35cd53ec..fe6d22dfa0077 100644 --- a/clients/client-iot-events-data/src/runtimeConfig.browser.ts +++ b/clients/client-iot-events-data/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTEventsDataClientConfig } from "./IoTEventsDataClient"; + +import type { IoTEventsDataClientConfig } from "./IoTEventsDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iot-events-data/src/runtimeConfig.native.ts b/clients/client-iot-events-data/src/runtimeConfig.native.ts index 0613d51502b20..186d09bbbd851 100644 --- a/clients/client-iot-events-data/src/runtimeConfig.native.ts +++ b/clients/client-iot-events-data/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTEventsDataClientConfig } from "./IoTEventsDataClient"; +import type { IoTEventsDataClientConfig } from "./IoTEventsDataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iot-events-data/src/runtimeConfig.shared.ts b/clients/client-iot-events-data/src/runtimeConfig.shared.ts index e593edd79cd71..7775ce24b18d2 100644 --- a/clients/client-iot-events-data/src/runtimeConfig.shared.ts +++ b/clients/client-iot-events-data/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTEventsDataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTEventsDataClientConfig } from "./IoTEventsDataClient"; +import type { IoTEventsDataClientConfig } from "./IoTEventsDataClient"; /** * @internal diff --git a/clients/client-iot-events-data/src/runtimeConfig.ts b/clients/client-iot-events-data/src/runtimeConfig.ts index 53b2997a80116..f9a1b372cfa2c 100644 --- a/clients/client-iot-events-data/src/runtimeConfig.ts +++ b/clients/client-iot-events-data/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTEventsDataClientConfig } from "./IoTEventsDataClient"; + +import type { IoTEventsDataClientConfig } from "./IoTEventsDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iot-events-data/src/runtimeExtensions.ts b/clients/client-iot-events-data/src/runtimeExtensions.ts index 3bf7ac1980c50..d21005be2b055 100644 --- a/clients/client-iot-events-data/src/runtimeExtensions.ts +++ b/clients/client-iot-events-data/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTEventsDataExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTEventsDataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iot-events-data/src/schemas/schemas_0.ts b/clients/client-iot-events-data/src/schemas/schemas_0.ts index 53ca37b512667..628ebde03378c 100644 --- a/clients/client-iot-events-data/src/schemas/schemas_0.ts +++ b/clients/client-iot-events-data/src/schemas/schemas_0.ts @@ -162,7 +162,7 @@ const n0 = "com.amazonaws.ioteventsdata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { InternalFailureException as __InternalFailureException, diff --git a/clients/client-iot-events/package.json b/clients/client-iot-events/package.json index ee2a681894dec..0acf9f77cb8c3 100644 --- a/clients/client-iot-events/package.json +++ b/clients/client-iot-events/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iot-events/src/IoTEvents.ts b/clients/client-iot-events/src/IoTEvents.ts index fab08b641cc15..527946ceb383b 100644 --- a/clients/client-iot-events/src/IoTEvents.ts +++ b/clients/client-iot-events/src/IoTEvents.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAlarmModelCommand, @@ -112,7 +112,7 @@ import { UpdateDetectorModelCommandOutput, } from "./commands/UpdateDetectorModelCommand"; import { UpdateInputCommand, UpdateInputCommandInput, UpdateInputCommandOutput } from "./commands/UpdateInputCommand"; -import { IoTEventsClient, IoTEventsClientConfig } from "./IoTEventsClient"; +import { IoTEventsClient } from "./IoTEventsClient"; const commands = { CreateAlarmModelCommand, diff --git a/clients/client-iot-events/src/IoTEventsClient.ts b/clients/client-iot-events/src/IoTEventsClient.ts index 4b13ad8006a76..46eaac63f18a4 100644 --- a/clients/client-iot-events/src/IoTEventsClient.ts +++ b/clients/client-iot-events/src/IoTEventsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTEventsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateAlarmModelCommandInput, CreateAlarmModelCommandOutput } from "./commands/CreateAlarmModelCommand"; @@ -123,7 +132,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iot-events/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iot-events/src/auth/httpAuthExtensionConfiguration.ts index 63867767df764..4fbe1acce1630 100644 --- a/clients/client-iot-events/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iot-events/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTEventsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTEventsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iot-events/src/auth/httpAuthSchemeProvider.ts b/clients/client-iot-events/src/auth/httpAuthSchemeProvider.ts index ddcb508ecfd7e..af015ab02bb3d 100644 --- a/clients/client-iot-events/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iot-events/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTEventsClientConfig, IoTEventsClientResolvedConfig } from "../IoTEventsClient"; +import { type IoTEventsClientResolvedConfig, IoTEventsClientConfig } from "../IoTEventsClient"; /** * @internal diff --git a/clients/client-iot-events/src/commands/CreateAlarmModelCommand.ts b/clients/client-iot-events/src/commands/CreateAlarmModelCommand.ts index 3a5de541bc422..bcac73a10f4f5 100644 --- a/clients/client-iot-events/src/commands/CreateAlarmModelCommand.ts +++ b/clients/client-iot-events/src/commands/CreateAlarmModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { CreateAlarmModelRequest, CreateAlarmModelResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { CreateAlarmModelRequest, CreateAlarmModelResponse } from "../models/models_0"; import { CreateAlarmModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/CreateDetectorModelCommand.ts b/clients/client-iot-events/src/commands/CreateDetectorModelCommand.ts index 8e545ce52b80d..88d45ca09f141 100644 --- a/clients/client-iot-events/src/commands/CreateDetectorModelCommand.ts +++ b/clients/client-iot-events/src/commands/CreateDetectorModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { CreateDetectorModelRequest, CreateDetectorModelResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { CreateDetectorModelRequest, CreateDetectorModelResponse } from "../models/models_0"; import { CreateDetectorModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/CreateInputCommand.ts b/clients/client-iot-events/src/commands/CreateInputCommand.ts index 98bac076db468..f87b058eba18c 100644 --- a/clients/client-iot-events/src/commands/CreateInputCommand.ts +++ b/clients/client-iot-events/src/commands/CreateInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { CreateInputRequest, CreateInputResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { CreateInputRequest, CreateInputResponse } from "../models/models_0"; import { CreateInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/DeleteAlarmModelCommand.ts b/clients/client-iot-events/src/commands/DeleteAlarmModelCommand.ts index 31a9e115c8062..111b23e4e206f 100644 --- a/clients/client-iot-events/src/commands/DeleteAlarmModelCommand.ts +++ b/clients/client-iot-events/src/commands/DeleteAlarmModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { DeleteAlarmModelRequest, DeleteAlarmModelResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { DeleteAlarmModelRequest, DeleteAlarmModelResponse } from "../models/models_0"; import { DeleteAlarmModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/DeleteDetectorModelCommand.ts b/clients/client-iot-events/src/commands/DeleteDetectorModelCommand.ts index ee5f9fb1464c1..8a5e2f470ae53 100644 --- a/clients/client-iot-events/src/commands/DeleteDetectorModelCommand.ts +++ b/clients/client-iot-events/src/commands/DeleteDetectorModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { DeleteDetectorModelRequest, DeleteDetectorModelResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { DeleteDetectorModelRequest, DeleteDetectorModelResponse } from "../models/models_0"; import { DeleteDetectorModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/DeleteInputCommand.ts b/clients/client-iot-events/src/commands/DeleteInputCommand.ts index 6e28a8a3049e7..641c3b5e87b2e 100644 --- a/clients/client-iot-events/src/commands/DeleteInputCommand.ts +++ b/clients/client-iot-events/src/commands/DeleteInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { DeleteInputRequest, DeleteInputResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { DeleteInputRequest, DeleteInputResponse } from "../models/models_0"; import { DeleteInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/DescribeAlarmModelCommand.ts b/clients/client-iot-events/src/commands/DescribeAlarmModelCommand.ts index 743d1e72e435f..3a2c2158a1cfe 100644 --- a/clients/client-iot-events/src/commands/DescribeAlarmModelCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeAlarmModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { DescribeAlarmModelRequest, DescribeAlarmModelResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { DescribeAlarmModelRequest, DescribeAlarmModelResponse } from "../models/models_0"; import { DescribeAlarmModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/DescribeDetectorModelAnalysisCommand.ts b/clients/client-iot-events/src/commands/DescribeDetectorModelAnalysisCommand.ts index 3a21c2825ccf0..08f88c90a8951 100644 --- a/clients/client-iot-events/src/commands/DescribeDetectorModelAnalysisCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeDetectorModelAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { DescribeDetectorModelAnalysisRequest, DescribeDetectorModelAnalysisResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { DescribeDetectorModelAnalysisRequest, DescribeDetectorModelAnalysisResponse } from "../models/models_0"; import { DescribeDetectorModelAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/DescribeDetectorModelCommand.ts b/clients/client-iot-events/src/commands/DescribeDetectorModelCommand.ts index 4f98806491b5c..497a0932d0a51 100644 --- a/clients/client-iot-events/src/commands/DescribeDetectorModelCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeDetectorModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { DescribeDetectorModelRequest, DescribeDetectorModelResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { DescribeDetectorModelRequest, DescribeDetectorModelResponse } from "../models/models_0"; import { DescribeDetectorModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/DescribeInputCommand.ts b/clients/client-iot-events/src/commands/DescribeInputCommand.ts index 306e01979eef9..4782f62b64ecd 100644 --- a/clients/client-iot-events/src/commands/DescribeInputCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { DescribeInputRequest, DescribeInputResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { DescribeInputRequest, DescribeInputResponse } from "../models/models_0"; import { DescribeInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/DescribeLoggingOptionsCommand.ts b/clients/client-iot-events/src/commands/DescribeLoggingOptionsCommand.ts index a3177e13bcd5b..dda5407002fd4 100644 --- a/clients/client-iot-events/src/commands/DescribeLoggingOptionsCommand.ts +++ b/clients/client-iot-events/src/commands/DescribeLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { DescribeLoggingOptionsRequest, DescribeLoggingOptionsResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { DescribeLoggingOptionsRequest, DescribeLoggingOptionsResponse } from "../models/models_0"; import { DescribeLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/GetDetectorModelAnalysisResultsCommand.ts b/clients/client-iot-events/src/commands/GetDetectorModelAnalysisResultsCommand.ts index 72021d7b4138a..f99740eb29d7d 100644 --- a/clients/client-iot-events/src/commands/GetDetectorModelAnalysisResultsCommand.ts +++ b/clients/client-iot-events/src/commands/GetDetectorModelAnalysisResultsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { GetDetectorModelAnalysisResultsRequest, GetDetectorModelAnalysisResultsResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { + GetDetectorModelAnalysisResultsRequest, + GetDetectorModelAnalysisResultsResponse, +} from "../models/models_0"; import { GetDetectorModelAnalysisResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/ListAlarmModelVersionsCommand.ts b/clients/client-iot-events/src/commands/ListAlarmModelVersionsCommand.ts index da07362c5ea40..44ff9beb89295 100644 --- a/clients/client-iot-events/src/commands/ListAlarmModelVersionsCommand.ts +++ b/clients/client-iot-events/src/commands/ListAlarmModelVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { ListAlarmModelVersionsRequest, ListAlarmModelVersionsResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { ListAlarmModelVersionsRequest, ListAlarmModelVersionsResponse } from "../models/models_0"; import { ListAlarmModelVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/ListAlarmModelsCommand.ts b/clients/client-iot-events/src/commands/ListAlarmModelsCommand.ts index 0ecab665c5150..006426d70a108 100644 --- a/clients/client-iot-events/src/commands/ListAlarmModelsCommand.ts +++ b/clients/client-iot-events/src/commands/ListAlarmModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { ListAlarmModelsRequest, ListAlarmModelsResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { ListAlarmModelsRequest, ListAlarmModelsResponse } from "../models/models_0"; import { ListAlarmModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/ListDetectorModelVersionsCommand.ts b/clients/client-iot-events/src/commands/ListDetectorModelVersionsCommand.ts index dfd5ce7973c5c..bfb987705298b 100644 --- a/clients/client-iot-events/src/commands/ListDetectorModelVersionsCommand.ts +++ b/clients/client-iot-events/src/commands/ListDetectorModelVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { ListDetectorModelVersionsRequest, ListDetectorModelVersionsResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { ListDetectorModelVersionsRequest, ListDetectorModelVersionsResponse } from "../models/models_0"; import { ListDetectorModelVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/ListDetectorModelsCommand.ts b/clients/client-iot-events/src/commands/ListDetectorModelsCommand.ts index e0abf3d5ca4ee..d72c07487e3a3 100644 --- a/clients/client-iot-events/src/commands/ListDetectorModelsCommand.ts +++ b/clients/client-iot-events/src/commands/ListDetectorModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { ListDetectorModelsRequest, ListDetectorModelsResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { ListDetectorModelsRequest, ListDetectorModelsResponse } from "../models/models_0"; import { ListDetectorModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/ListInputRoutingsCommand.ts b/clients/client-iot-events/src/commands/ListInputRoutingsCommand.ts index 111275dde04a2..c6ccf599071e2 100644 --- a/clients/client-iot-events/src/commands/ListInputRoutingsCommand.ts +++ b/clients/client-iot-events/src/commands/ListInputRoutingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { ListInputRoutingsRequest, ListInputRoutingsResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { ListInputRoutingsRequest, ListInputRoutingsResponse } from "../models/models_0"; import { ListInputRoutings } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/ListInputsCommand.ts b/clients/client-iot-events/src/commands/ListInputsCommand.ts index df0da54775c62..212a18dc20498 100644 --- a/clients/client-iot-events/src/commands/ListInputsCommand.ts +++ b/clients/client-iot-events/src/commands/ListInputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { ListInputsRequest, ListInputsResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { ListInputsRequest, ListInputsResponse } from "../models/models_0"; import { ListInputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/ListTagsForResourceCommand.ts b/clients/client-iot-events/src/commands/ListTagsForResourceCommand.ts index cf8f98f2ad014..72df0632afe0e 100644 --- a/clients/client-iot-events/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iot-events/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/PutLoggingOptionsCommand.ts b/clients/client-iot-events/src/commands/PutLoggingOptionsCommand.ts index 312a676cedaba..d8068ff9fde82 100644 --- a/clients/client-iot-events/src/commands/PutLoggingOptionsCommand.ts +++ b/clients/client-iot-events/src/commands/PutLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { PutLoggingOptionsRequest } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { PutLoggingOptionsRequest } from "../models/models_0"; import { PutLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/StartDetectorModelAnalysisCommand.ts b/clients/client-iot-events/src/commands/StartDetectorModelAnalysisCommand.ts index f7652e1823620..fd2b992a7c0cd 100644 --- a/clients/client-iot-events/src/commands/StartDetectorModelAnalysisCommand.ts +++ b/clients/client-iot-events/src/commands/StartDetectorModelAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { StartDetectorModelAnalysisRequest, StartDetectorModelAnalysisResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { StartDetectorModelAnalysisRequest, StartDetectorModelAnalysisResponse } from "../models/models_0"; import { StartDetectorModelAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/TagResourceCommand.ts b/clients/client-iot-events/src/commands/TagResourceCommand.ts index 0ef1d3220857f..4fd14fb253332 100644 --- a/clients/client-iot-events/src/commands/TagResourceCommand.ts +++ b/clients/client-iot-events/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/UntagResourceCommand.ts b/clients/client-iot-events/src/commands/UntagResourceCommand.ts index 297d33967c5d0..667a1242e3809 100644 --- a/clients/client-iot-events/src/commands/UntagResourceCommand.ts +++ b/clients/client-iot-events/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/UpdateAlarmModelCommand.ts b/clients/client-iot-events/src/commands/UpdateAlarmModelCommand.ts index edc3dbc345be1..705bb9d3e6d15 100644 --- a/clients/client-iot-events/src/commands/UpdateAlarmModelCommand.ts +++ b/clients/client-iot-events/src/commands/UpdateAlarmModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { UpdateAlarmModelRequest, UpdateAlarmModelResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { UpdateAlarmModelRequest, UpdateAlarmModelResponse } from "../models/models_0"; import { UpdateAlarmModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/UpdateDetectorModelCommand.ts b/clients/client-iot-events/src/commands/UpdateDetectorModelCommand.ts index 286babb2c8e10..288eaad8972ed 100644 --- a/clients/client-iot-events/src/commands/UpdateDetectorModelCommand.ts +++ b/clients/client-iot-events/src/commands/UpdateDetectorModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { UpdateDetectorModelRequest, UpdateDetectorModelResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { UpdateDetectorModelRequest, UpdateDetectorModelResponse } from "../models/models_0"; import { UpdateDetectorModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/commands/UpdateInputCommand.ts b/clients/client-iot-events/src/commands/UpdateInputCommand.ts index 10580f6f86be9..50006f38004e0 100644 --- a/clients/client-iot-events/src/commands/UpdateInputCommand.ts +++ b/clients/client-iot-events/src/commands/UpdateInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; -import { UpdateInputRequest, UpdateInputResponse } from "../models/models_0"; +import type { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient"; +import type { UpdateInputRequest, UpdateInputResponse } from "../models/models_0"; import { UpdateInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-events/src/endpoint/EndpointParameters.ts b/clients/client-iot-events/src/endpoint/EndpointParameters.ts index 0d0b825c48438..7162a2a00d0cd 100644 --- a/clients/client-iot-events/src/endpoint/EndpointParameters.ts +++ b/clients/client-iot-events/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iot-events/src/endpoint/endpointResolver.ts b/clients/client-iot-events/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iot-events/src/endpoint/endpointResolver.ts +++ b/clients/client-iot-events/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iot-events/src/extensionConfiguration.ts b/clients/client-iot-events/src/extensionConfiguration.ts index 85f6eeede8733..286bb67e2c02e 100644 --- a/clients/client-iot-events/src/extensionConfiguration.ts +++ b/clients/client-iot-events/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iot-events/src/models/IoTEventsServiceException.ts b/clients/client-iot-events/src/models/IoTEventsServiceException.ts index e4b9cea64545c..e1cfabc6d9de3 100644 --- a/clients/client-iot-events/src/models/IoTEventsServiceException.ts +++ b/clients/client-iot-events/src/models/IoTEventsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iot-events/src/models/errors.ts b/clients/client-iot-events/src/models/errors.ts index dd629b8a0a25d..272a7d3ee0746 100644 --- a/clients/client-iot-events/src/models/errors.ts +++ b/clients/client-iot-events/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTEventsServiceException as __BaseException } from "./IoTEventsServiceException"; diff --git a/clients/client-iot-events/src/runtimeConfig.browser.ts b/clients/client-iot-events/src/runtimeConfig.browser.ts index d6902c4851c80..4c93859721379 100644 --- a/clients/client-iot-events/src/runtimeConfig.browser.ts +++ b/clients/client-iot-events/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTEventsClientConfig } from "./IoTEventsClient"; + +import type { IoTEventsClientConfig } from "./IoTEventsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iot-events/src/runtimeConfig.native.ts b/clients/client-iot-events/src/runtimeConfig.native.ts index a21d696047a7d..48b2b9c633be3 100644 --- a/clients/client-iot-events/src/runtimeConfig.native.ts +++ b/clients/client-iot-events/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTEventsClientConfig } from "./IoTEventsClient"; +import type { IoTEventsClientConfig } from "./IoTEventsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iot-events/src/runtimeConfig.shared.ts b/clients/client-iot-events/src/runtimeConfig.shared.ts index 0e0d5df7d7ae3..df6719670abb9 100644 --- a/clients/client-iot-events/src/runtimeConfig.shared.ts +++ b/clients/client-iot-events/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTEventsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTEventsClientConfig } from "./IoTEventsClient"; +import type { IoTEventsClientConfig } from "./IoTEventsClient"; /** * @internal diff --git a/clients/client-iot-events/src/runtimeConfig.ts b/clients/client-iot-events/src/runtimeConfig.ts index 1d293d6cfac9c..a59397dd61686 100644 --- a/clients/client-iot-events/src/runtimeConfig.ts +++ b/clients/client-iot-events/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTEventsClientConfig } from "./IoTEventsClient"; + +import type { IoTEventsClientConfig } from "./IoTEventsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iot-events/src/runtimeExtensions.ts b/clients/client-iot-events/src/runtimeExtensions.ts index 1aa702afe9ccf..2bac6aa988312 100644 --- a/clients/client-iot-events/src/runtimeExtensions.ts +++ b/clients/client-iot-events/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTEventsExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTEventsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iot-events/src/schemas/schemas_0.ts b/clients/client-iot-events/src/schemas/schemas_0.ts index ecd93b8840fcb..477e46dc3650b 100644 --- a/clients/client-iot-events/src/schemas/schemas_0.ts +++ b/clients/client-iot-events/src/schemas/schemas_0.ts @@ -323,7 +323,7 @@ const n0 = "com.amazonaws.iotevents"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { InternalFailureException as __InternalFailureException, diff --git a/clients/client-iot-jobs-data-plane/package.json b/clients/client-iot-jobs-data-plane/package.json index 9cc41def90b03..0e8715b98e864 100644 --- a/clients/client-iot-jobs-data-plane/package.json +++ b/clients/client-iot-jobs-data-plane/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iot-jobs-data-plane/src/IoTJobsDataPlane.ts b/clients/client-iot-jobs-data-plane/src/IoTJobsDataPlane.ts index 9f471a8f76760..9bb40bad70373 100644 --- a/clients/client-iot-jobs-data-plane/src/IoTJobsDataPlane.ts +++ b/clients/client-iot-jobs-data-plane/src/IoTJobsDataPlane.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DescribeJobExecutionCommand, @@ -27,7 +27,7 @@ import { UpdateJobExecutionCommandInput, UpdateJobExecutionCommandOutput, } from "./commands/UpdateJobExecutionCommand"; -import { IoTJobsDataPlaneClient, IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient"; +import { IoTJobsDataPlaneClient } from "./IoTJobsDataPlaneClient"; const commands = { DescribeJobExecutionCommand, diff --git a/clients/client-iot-jobs-data-plane/src/IoTJobsDataPlaneClient.ts b/clients/client-iot-jobs-data-plane/src/IoTJobsDataPlaneClient.ts index a19d980f6d12f..c3c4b126b6607 100644 --- a/clients/client-iot-jobs-data-plane/src/IoTJobsDataPlaneClient.ts +++ b/clients/client-iot-jobs-data-plane/src/IoTJobsDataPlaneClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTJobsDataPlaneHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -81,7 +90,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iot-jobs-data-plane/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iot-jobs-data-plane/src/auth/httpAuthExtensionConfiguration.ts index e8dfcf1a27d8e..1ebff3ca507d5 100644 --- a/clients/client-iot-jobs-data-plane/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iot-jobs-data-plane/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTJobsDataPlaneHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTJobsDataPlaneHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iot-jobs-data-plane/src/auth/httpAuthSchemeProvider.ts b/clients/client-iot-jobs-data-plane/src/auth/httpAuthSchemeProvider.ts index 0005012e92c35..300c3faa0e9a6 100644 --- a/clients/client-iot-jobs-data-plane/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iot-jobs-data-plane/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTJobsDataPlaneClientConfig, IoTJobsDataPlaneClientResolvedConfig } from "../IoTJobsDataPlaneClient"; +import { type IoTJobsDataPlaneClientResolvedConfig, IoTJobsDataPlaneClientConfig } from "../IoTJobsDataPlaneClient"; /** * @internal diff --git a/clients/client-iot-jobs-data-plane/src/commands/DescribeJobExecutionCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/DescribeJobExecutionCommand.ts index 73797d21c2420..9400b34dd5751 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/DescribeJobExecutionCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/DescribeJobExecutionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient"; -import { DescribeJobExecutionRequest, DescribeJobExecutionResponse } from "../models/models_0"; +import type { + IoTJobsDataPlaneClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTJobsDataPlaneClient"; +import type { DescribeJobExecutionRequest, DescribeJobExecutionResponse } from "../models/models_0"; import { DescribeJobExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-jobs-data-plane/src/commands/GetPendingJobExecutionsCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/GetPendingJobExecutionsCommand.ts index cf05368f05aea..9ae19f41d4176 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/GetPendingJobExecutionsCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/GetPendingJobExecutionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient"; -import { GetPendingJobExecutionsRequest, GetPendingJobExecutionsResponse } from "../models/models_0"; +import type { + IoTJobsDataPlaneClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTJobsDataPlaneClient"; +import type { GetPendingJobExecutionsRequest, GetPendingJobExecutionsResponse } from "../models/models_0"; import { GetPendingJobExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-jobs-data-plane/src/commands/StartCommandExecutionCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/StartCommandExecutionCommand.ts index 73dd138ac1bce..da1cb97c10577 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/StartCommandExecutionCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/StartCommandExecutionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient"; -import { StartCommandExecutionRequest, StartCommandExecutionResponse } from "../models/models_0"; +import type { + IoTJobsDataPlaneClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTJobsDataPlaneClient"; +import type { StartCommandExecutionRequest, StartCommandExecutionResponse } from "../models/models_0"; import { StartCommandExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-jobs-data-plane/src/commands/StartNextPendingJobExecutionCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/StartNextPendingJobExecutionCommand.ts index 8da258290a366..91ac3aba098e9 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/StartNextPendingJobExecutionCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/StartNextPendingJobExecutionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient"; -import { StartNextPendingJobExecutionRequest, StartNextPendingJobExecutionResponse } from "../models/models_0"; +import type { + IoTJobsDataPlaneClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTJobsDataPlaneClient"; +import type { StartNextPendingJobExecutionRequest, StartNextPendingJobExecutionResponse } from "../models/models_0"; import { StartNextPendingJobExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-jobs-data-plane/src/commands/UpdateJobExecutionCommand.ts b/clients/client-iot-jobs-data-plane/src/commands/UpdateJobExecutionCommand.ts index c47f0df3115e6..b52a6f07df837 100644 --- a/clients/client-iot-jobs-data-plane/src/commands/UpdateJobExecutionCommand.ts +++ b/clients/client-iot-jobs-data-plane/src/commands/UpdateJobExecutionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTJobsDataPlaneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTJobsDataPlaneClient"; -import { UpdateJobExecutionRequest, UpdateJobExecutionResponse } from "../models/models_0"; +import type { + IoTJobsDataPlaneClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTJobsDataPlaneClient"; +import type { UpdateJobExecutionRequest, UpdateJobExecutionResponse } from "../models/models_0"; import { UpdateJobExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-jobs-data-plane/src/endpoint/EndpointParameters.ts b/clients/client-iot-jobs-data-plane/src/endpoint/EndpointParameters.ts index 2c7152e7ce092..574168a8fab62 100644 --- a/clients/client-iot-jobs-data-plane/src/endpoint/EndpointParameters.ts +++ b/clients/client-iot-jobs-data-plane/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iot-jobs-data-plane/src/endpoint/endpointResolver.ts b/clients/client-iot-jobs-data-plane/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iot-jobs-data-plane/src/endpoint/endpointResolver.ts +++ b/clients/client-iot-jobs-data-plane/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iot-jobs-data-plane/src/extensionConfiguration.ts b/clients/client-iot-jobs-data-plane/src/extensionConfiguration.ts index ea5af8a2fd1ce..e1fc1b1edddce 100644 --- a/clients/client-iot-jobs-data-plane/src/extensionConfiguration.ts +++ b/clients/client-iot-jobs-data-plane/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iot-jobs-data-plane/src/models/IoTJobsDataPlaneServiceException.ts b/clients/client-iot-jobs-data-plane/src/models/IoTJobsDataPlaneServiceException.ts index 2c6504e62d1bd..3338d4b2ab68c 100644 --- a/clients/client-iot-jobs-data-plane/src/models/IoTJobsDataPlaneServiceException.ts +++ b/clients/client-iot-jobs-data-plane/src/models/IoTJobsDataPlaneServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iot-jobs-data-plane/src/models/errors.ts b/clients/client-iot-jobs-data-plane/src/models/errors.ts index c13a105f81515..7f12c95073c61 100644 --- a/clients/client-iot-jobs-data-plane/src/models/errors.ts +++ b/clients/client-iot-jobs-data-plane/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTJobsDataPlaneServiceException as __BaseException } from "./IoTJobsDataPlaneServiceException"; diff --git a/clients/client-iot-jobs-data-plane/src/runtimeConfig.browser.ts b/clients/client-iot-jobs-data-plane/src/runtimeConfig.browser.ts index 9903d4d096f4a..20072d7d4cbed 100644 --- a/clients/client-iot-jobs-data-plane/src/runtimeConfig.browser.ts +++ b/clients/client-iot-jobs-data-plane/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient"; + +import type { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iot-jobs-data-plane/src/runtimeConfig.native.ts b/clients/client-iot-jobs-data-plane/src/runtimeConfig.native.ts index 62b19523a6c22..61a5ccb9c2508 100644 --- a/clients/client-iot-jobs-data-plane/src/runtimeConfig.native.ts +++ b/clients/client-iot-jobs-data-plane/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient"; +import type { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iot-jobs-data-plane/src/runtimeConfig.shared.ts b/clients/client-iot-jobs-data-plane/src/runtimeConfig.shared.ts index 2265d63bc78e2..5e9218c157474 100644 --- a/clients/client-iot-jobs-data-plane/src/runtimeConfig.shared.ts +++ b/clients/client-iot-jobs-data-plane/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTJobsDataPlaneHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient"; +import type { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient"; /** * @internal diff --git a/clients/client-iot-jobs-data-plane/src/runtimeConfig.ts b/clients/client-iot-jobs-data-plane/src/runtimeConfig.ts index 731df67d787d1..3a64b6c89aef8 100644 --- a/clients/client-iot-jobs-data-plane/src/runtimeConfig.ts +++ b/clients/client-iot-jobs-data-plane/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient"; + +import type { IoTJobsDataPlaneClientConfig } from "./IoTJobsDataPlaneClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iot-jobs-data-plane/src/runtimeExtensions.ts b/clients/client-iot-jobs-data-plane/src/runtimeExtensions.ts index 107889470fab9..3fcfebbcdb2b8 100644 --- a/clients/client-iot-jobs-data-plane/src/runtimeExtensions.ts +++ b/clients/client-iot-jobs-data-plane/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTJobsDataPlaneExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTJobsDataPlaneExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iot-jobs-data-plane/src/schemas/schemas_0.ts b/clients/client-iot-jobs-data-plane/src/schemas/schemas_0.ts index 3b9c3733ec10c..eb1f89a7f7d6d 100644 --- a/clients/client-iot-jobs-data-plane/src/schemas/schemas_0.ts +++ b/clients/client-iot-jobs-data-plane/src/schemas/schemas_0.ts @@ -76,7 +76,7 @@ const n0 = "com.amazonaws.iotjobsdataplane"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-iot-managed-integrations/package.json b/clients/client-iot-managed-integrations/package.json index b50d5fcc3ff6f..be27f284ccd0c 100644 --- a/clients/client-iot-managed-integrations/package.json +++ b/clients/client-iot-managed-integrations/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iot-managed-integrations/src/IoTManagedIntegrations.ts b/clients/client-iot-managed-integrations/src/IoTManagedIntegrations.ts index c58cacc4529bc..7e2acd212e2d5 100644 --- a/clients/client-iot-managed-integrations/src/IoTManagedIntegrations.ts +++ b/clients/client-iot-managed-integrations/src/IoTManagedIntegrations.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAccountAssociationCommand, @@ -409,7 +409,7 @@ import { UpdateOtaTaskCommandInput, UpdateOtaTaskCommandOutput, } from "./commands/UpdateOtaTaskCommand"; -import { IoTManagedIntegrationsClient, IoTManagedIntegrationsClientConfig } from "./IoTManagedIntegrationsClient"; +import { IoTManagedIntegrationsClient } from "./IoTManagedIntegrationsClient"; const commands = { CreateAccountAssociationCommand, diff --git a/clients/client-iot-managed-integrations/src/IoTManagedIntegrationsClient.ts b/clients/client-iot-managed-integrations/src/IoTManagedIntegrationsClient.ts index 651351ac005d8..466d2e2d51d6b 100644 --- a/clients/client-iot-managed-integrations/src/IoTManagedIntegrationsClient.ts +++ b/clients/client-iot-managed-integrations/src/IoTManagedIntegrationsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTManagedIntegrationsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -327,7 +336,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iot-managed-integrations/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iot-managed-integrations/src/auth/httpAuthExtensionConfiguration.ts index 6b427881c0dfa..47142aefe53d2 100644 --- a/clients/client-iot-managed-integrations/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iot-managed-integrations/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTManagedIntegrationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTManagedIntegrationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iot-managed-integrations/src/auth/httpAuthSchemeProvider.ts b/clients/client-iot-managed-integrations/src/auth/httpAuthSchemeProvider.ts index ebf2ac970e694..0fd16c5ba63e5 100644 --- a/clients/client-iot-managed-integrations/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iot-managed-integrations/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type IoTManagedIntegrationsClientResolvedConfig, IoTManagedIntegrationsClientConfig, - IoTManagedIntegrationsClientResolvedConfig, } from "../IoTManagedIntegrationsClient"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateAccountAssociationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateAccountAssociationCommand.ts index 8bd444edbd087..29435f57fc82a 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateAccountAssociationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateAccountAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateAccountAssociationRequest, CreateAccountAssociationResponse } from "../models/models_0"; +import type { CreateAccountAssociationRequest, CreateAccountAssociationResponse } from "../models/models_0"; import { CreateAccountAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateCloudConnectorCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateCloudConnectorCommand.ts index ab44e6ca539a7..71e0e8818876e 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateCloudConnectorCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateCloudConnectorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateCloudConnectorRequest, CreateCloudConnectorResponse } from "../models/models_0"; +import type { CreateCloudConnectorRequest, CreateCloudConnectorResponse } from "../models/models_0"; import { CreateCloudConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateConnectorDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateConnectorDestinationCommand.ts index 18bb15dcd0ced..bddf470984aa2 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateConnectorDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateConnectorDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateConnectorDestinationRequest, CreateConnectorDestinationResponse } from "../models/models_0"; +import type { CreateConnectorDestinationRequest, CreateConnectorDestinationResponse } from "../models/models_0"; import { CreateConnectorDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateCredentialLockerCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateCredentialLockerCommand.ts index 448812c31130d..0fbdee487f533 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateCredentialLockerCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateCredentialLockerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateCredentialLockerRequest, CreateCredentialLockerResponse } from "../models/models_0"; +import type { CreateCredentialLockerRequest, CreateCredentialLockerResponse } from "../models/models_0"; import { CreateCredentialLocker } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateDestinationCommand.ts index 57a53b9911f2a..b2f2f82f4ab97 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateDestinationRequest, CreateDestinationResponse } from "../models/models_0"; +import type { CreateDestinationRequest, CreateDestinationResponse } from "../models/models_0"; import { CreateDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateEventLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateEventLogConfigurationCommand.ts index 7de9d0c737a5f..4a60013b0c8d9 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateEventLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateEventLogConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateEventLogConfigurationRequest, CreateEventLogConfigurationResponse } from "../models/models_0"; +import type { CreateEventLogConfigurationRequest, CreateEventLogConfigurationResponse } from "../models/models_0"; import { CreateEventLogConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateManagedThingCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateManagedThingCommand.ts index cb609139fc52c..0160c5b2762ce 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateManagedThingCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateManagedThingCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateManagedThingRequest, CreateManagedThingResponse } from "../models/models_0"; +import type { CreateManagedThingRequest, CreateManagedThingResponse } from "../models/models_0"; import { CreateManagedThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateNotificationConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateNotificationConfigurationCommand.ts index 1fadf2aa8897d..614ae11d06d2b 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateNotificationConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateNotificationConfigurationCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateNotificationConfigurationRequest, CreateNotificationConfigurationResponse } from "../models/models_0"; +import type { + CreateNotificationConfigurationRequest, + CreateNotificationConfigurationResponse, +} from "../models/models_0"; import { CreateNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskCommand.ts index d78ecc0ba5c84..62179005336b6 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateOtaTaskRequest, CreateOtaTaskResponse } from "../models/models_0"; +import type { CreateOtaTaskRequest, CreateOtaTaskResponse } from "../models/models_0"; import { CreateOtaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskConfigurationCommand.ts index 14d7f5b374607..e437830467070 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateOtaTaskConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateOtaTaskConfigurationRequest, CreateOtaTaskConfigurationResponse } from "../models/models_0"; +import type { CreateOtaTaskConfigurationRequest, CreateOtaTaskConfigurationResponse } from "../models/models_0"; import { CreateOtaTaskConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/CreateProvisioningProfileCommand.ts b/clients/client-iot-managed-integrations/src/commands/CreateProvisioningProfileCommand.ts index 774492800fcb8..fe9dc6967ea95 100644 --- a/clients/client-iot-managed-integrations/src/commands/CreateProvisioningProfileCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/CreateProvisioningProfileCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { CreateProvisioningProfileRequest, CreateProvisioningProfileResponse } from "../models/models_0"; +import type { CreateProvisioningProfileRequest, CreateProvisioningProfileResponse } from "../models/models_0"; import { CreateProvisioningProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteAccountAssociationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteAccountAssociationCommand.ts index 05f7df2764e3f..63a275a8c6fa9 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteAccountAssociationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteAccountAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteAccountAssociationRequest } from "../models/models_0"; +import type { DeleteAccountAssociationRequest } from "../models/models_0"; import { DeleteAccountAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteCloudConnectorCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteCloudConnectorCommand.ts index 30d5edae6cfdc..9e3940be6f12c 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteCloudConnectorCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteCloudConnectorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteCloudConnectorRequest } from "../models/models_0"; +import type { DeleteCloudConnectorRequest } from "../models/models_0"; import { DeleteCloudConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteConnectorDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteConnectorDestinationCommand.ts index cd7980d321ab4..7ff99c09926ea 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteConnectorDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteConnectorDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteConnectorDestinationRequest } from "../models/models_0"; +import type { DeleteConnectorDestinationRequest } from "../models/models_0"; import { DeleteConnectorDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteCredentialLockerCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteCredentialLockerCommand.ts index 0d543ce77cef6..c98045d86648a 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteCredentialLockerCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteCredentialLockerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteCredentialLockerRequest } from "../models/models_0"; +import type { DeleteCredentialLockerRequest } from "../models/models_0"; import { DeleteCredentialLocker } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteDestinationCommand.ts index 63347706bfe39..48eba19dafa0f 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteDestinationRequest } from "../models/models_0"; +import type { DeleteDestinationRequest } from "../models/models_0"; import { DeleteDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteEventLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteEventLogConfigurationCommand.ts index 47aa799803d77..607d971d6fdb5 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteEventLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteEventLogConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteEventLogConfigurationRequest } from "../models/models_0"; +import type { DeleteEventLogConfigurationRequest } from "../models/models_0"; import { DeleteEventLogConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteManagedThingCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteManagedThingCommand.ts index 10888d4145fe7..fbb1217e7f806 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteManagedThingCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteManagedThingCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteManagedThingRequest } from "../models/models_0"; +import type { DeleteManagedThingRequest } from "../models/models_0"; import { DeleteManagedThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteNotificationConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteNotificationConfigurationCommand.ts index 8540860e6bcf1..1728ec37a4c4e 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteNotificationConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteNotificationConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteNotificationConfigurationRequest } from "../models/models_0"; +import type { DeleteNotificationConfigurationRequest } from "../models/models_0"; import { DeleteNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskCommand.ts index 61bc0b5cbb5ac..c5de8e0184f20 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteOtaTaskRequest } from "../models/models_0"; +import type { DeleteOtaTaskRequest } from "../models/models_0"; import { DeleteOtaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskConfigurationCommand.ts index 0e727d1d76ee8..e040db755a731 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteOtaTaskConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteOtaTaskConfigurationRequest } from "../models/models_0"; +import type { DeleteOtaTaskConfigurationRequest } from "../models/models_0"; import { DeleteOtaTaskConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeleteProvisioningProfileCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeleteProvisioningProfileCommand.ts index c2f18f4318c1d..afdab25cad333 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeleteProvisioningProfileCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeleteProvisioningProfileCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeleteProvisioningProfileRequest } from "../models/models_0"; +import type { DeleteProvisioningProfileRequest } from "../models/models_0"; import { DeleteProvisioningProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/DeregisterAccountAssociationCommand.ts b/clients/client-iot-managed-integrations/src/commands/DeregisterAccountAssociationCommand.ts index ffcdbc9a849f7..6f5345629dc39 100644 --- a/clients/client-iot-managed-integrations/src/commands/DeregisterAccountAssociationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/DeregisterAccountAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { DeregisterAccountAssociationRequest } from "../models/models_0"; +import type { DeregisterAccountAssociationRequest } from "../models/models_0"; import { DeregisterAccountAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetAccountAssociationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetAccountAssociationCommand.ts index 8110d3be5d1f1..cce0cdf0ed169 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetAccountAssociationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetAccountAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetAccountAssociationRequest, GetAccountAssociationResponse } from "../models/models_0"; +import type { GetAccountAssociationRequest, GetAccountAssociationResponse } from "../models/models_0"; import { GetAccountAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetCloudConnectorCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetCloudConnectorCommand.ts index bfdfef1d477b0..8dd0210dedfdc 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetCloudConnectorCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetCloudConnectorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetCloudConnectorRequest, GetCloudConnectorResponse } from "../models/models_0"; +import type { GetCloudConnectorRequest, GetCloudConnectorResponse } from "../models/models_0"; import { GetCloudConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetConnectorDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetConnectorDestinationCommand.ts index 4d590574dde33..6fd5d65a75b1f 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetConnectorDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetConnectorDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetConnectorDestinationRequest, GetConnectorDestinationResponse } from "../models/models_0"; +import type { GetConnectorDestinationRequest, GetConnectorDestinationResponse } from "../models/models_0"; import { GetConnectorDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetCredentialLockerCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetCredentialLockerCommand.ts index 9c89dec10b879..be89ecd5c9bbc 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetCredentialLockerCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetCredentialLockerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetCredentialLockerRequest, GetCredentialLockerResponse } from "../models/models_0"; +import type { GetCredentialLockerRequest, GetCredentialLockerResponse } from "../models/models_0"; import { GetCredentialLocker } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetCustomEndpointCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetCustomEndpointCommand.ts index d4c01616db287..67323b2b93981 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetCustomEndpointCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetCustomEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetCustomEndpointRequest, GetCustomEndpointResponse } from "../models/models_0"; +import type { GetCustomEndpointRequest, GetCustomEndpointResponse } from "../models/models_0"; import { GetCustomEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetDefaultEncryptionConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetDefaultEncryptionConfigurationCommand.ts index 186eb36f1676e..c406aae0a2290 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetDefaultEncryptionConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetDefaultEncryptionConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { +import type { GetDefaultEncryptionConfigurationRequest, GetDefaultEncryptionConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-iot-managed-integrations/src/commands/GetDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetDestinationCommand.ts index 73b1ce744c2ce..3a45da3ca77bc 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetDestinationRequest, GetDestinationResponse } from "../models/models_0"; +import type { GetDestinationRequest, GetDestinationResponse } from "../models/models_0"; import { GetDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetDeviceDiscoveryCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetDeviceDiscoveryCommand.ts index 8f8733bf7ac7d..460c49d0a4c59 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetDeviceDiscoveryCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetDeviceDiscoveryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetDeviceDiscoveryRequest, GetDeviceDiscoveryResponse } from "../models/models_0"; +import type { GetDeviceDiscoveryRequest, GetDeviceDiscoveryResponse } from "../models/models_0"; import { GetDeviceDiscovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetEventLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetEventLogConfigurationCommand.ts index 7334058eb13d4..bfb9c34ec5a13 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetEventLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetEventLogConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetEventLogConfigurationRequest, GetEventLogConfigurationResponse } from "../models/models_0"; +import type { GetEventLogConfigurationRequest, GetEventLogConfigurationResponse } from "../models/models_0"; import { GetEventLogConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetHubConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetHubConfigurationCommand.ts index d6dbc9b4bf352..c252b2b6a8dc9 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetHubConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetHubConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetHubConfigurationRequest, GetHubConfigurationResponse } from "../models/models_0"; +import type { GetHubConfigurationRequest, GetHubConfigurationResponse } from "../models/models_0"; import { GetHubConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCapabilitiesCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCapabilitiesCommand.ts index 07848b6cdd258..1f7c5cda29b25 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCapabilitiesCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCapabilitiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetManagedThingCapabilitiesRequest, GetManagedThingCapabilitiesResponse } from "../models/models_0"; +import type { GetManagedThingCapabilitiesRequest, GetManagedThingCapabilitiesResponse } from "../models/models_0"; import { GetManagedThingCapabilities } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCertificateCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCertificateCommand.ts index ef4cdc5cd2317..aec187c6cb181 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCertificateCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCertificateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetManagedThingCertificateRequest, GetManagedThingCertificateResponse } from "../models/models_0"; +import type { GetManagedThingCertificateRequest, GetManagedThingCertificateResponse } from "../models/models_0"; import { GetManagedThingCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCommand.ts index 26ede421817ac..b93078c39e670 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetManagedThingRequest, GetManagedThingResponse } from "../models/models_0"; +import type { GetManagedThingRequest, GetManagedThingResponse } from "../models/models_0"; import { GetManagedThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingConnectivityDataCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingConnectivityDataCommand.ts index 613a47a2c7d3f..69c362b9b2e69 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingConnectivityDataCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingConnectivityDataCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetManagedThingConnectivityDataRequest, GetManagedThingConnectivityDataResponse } from "../models/models_0"; +import type { + GetManagedThingConnectivityDataRequest, + GetManagedThingConnectivityDataResponse, +} from "../models/models_0"; import { GetManagedThingConnectivityData } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingMetaDataCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingMetaDataCommand.ts index 9690e19ad8512..45461dcf28d11 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingMetaDataCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingMetaDataCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetManagedThingMetaDataRequest, GetManagedThingMetaDataResponse } from "../models/models_0"; +import type { GetManagedThingMetaDataRequest, GetManagedThingMetaDataResponse } from "../models/models_0"; import { GetManagedThingMetaData } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetManagedThingStateCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetManagedThingStateCommand.ts index 01417120809e1..b77996b778474 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetManagedThingStateCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetManagedThingStateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetManagedThingStateRequest, GetManagedThingStateResponse } from "../models/models_0"; +import type { GetManagedThingStateRequest, GetManagedThingStateResponse } from "../models/models_0"; import { GetManagedThingState } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetNotificationConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetNotificationConfigurationCommand.ts index 3a2a24ab05505..f6060dbdcd8fb 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetNotificationConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetNotificationConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetNotificationConfigurationRequest, GetNotificationConfigurationResponse } from "../models/models_0"; +import type { GetNotificationConfigurationRequest, GetNotificationConfigurationResponse } from "../models/models_0"; import { GetNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetOtaTaskCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetOtaTaskCommand.ts index c389e12e96800..b8652fbf109c5 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetOtaTaskCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetOtaTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetOtaTaskRequest, GetOtaTaskResponse } from "../models/models_0"; +import type { GetOtaTaskRequest, GetOtaTaskResponse } from "../models/models_0"; import { GetOtaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetOtaTaskConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetOtaTaskConfigurationCommand.ts index 1c40d5af0759e..030f848140072 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetOtaTaskConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetOtaTaskConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetOtaTaskConfigurationRequest, GetOtaTaskConfigurationResponse } from "../models/models_0"; +import type { GetOtaTaskConfigurationRequest, GetOtaTaskConfigurationResponse } from "../models/models_0"; import { GetOtaTaskConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetProvisioningProfileCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetProvisioningProfileCommand.ts index 0913314fd5a03..bbdb8767211c3 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetProvisioningProfileCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetProvisioningProfileCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetProvisioningProfileRequest, GetProvisioningProfileResponse } from "../models/models_0"; +import type { GetProvisioningProfileRequest, GetProvisioningProfileResponse } from "../models/models_0"; import { GetProvisioningProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetRuntimeLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetRuntimeLogConfigurationCommand.ts index 74e8b1c8186b4..5673a2cf5ff73 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetRuntimeLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetRuntimeLogConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetRuntimeLogConfigurationRequest, GetRuntimeLogConfigurationResponse } from "../models/models_0"; +import type { GetRuntimeLogConfigurationRequest, GetRuntimeLogConfigurationResponse } from "../models/models_0"; import { GetRuntimeLogConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/GetSchemaVersionCommand.ts b/clients/client-iot-managed-integrations/src/commands/GetSchemaVersionCommand.ts index ba0441474c4e1..c7b66f9894af8 100644 --- a/clients/client-iot-managed-integrations/src/commands/GetSchemaVersionCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/GetSchemaVersionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { GetSchemaVersionRequest, GetSchemaVersionResponse } from "../models/models_0"; +import type { GetSchemaVersionRequest, GetSchemaVersionResponse } from "../models/models_0"; import { GetSchemaVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListAccountAssociationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListAccountAssociationsCommand.ts index 5ea61f6103a10..39902e31128c1 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListAccountAssociationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListAccountAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListAccountAssociationsRequest, ListAccountAssociationsResponse } from "../models/models_0"; +import type { ListAccountAssociationsRequest, ListAccountAssociationsResponse } from "../models/models_0"; import { ListAccountAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListCloudConnectorsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListCloudConnectorsCommand.ts index 3b85361d2a7a0..0b08a2168bd8f 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListCloudConnectorsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListCloudConnectorsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListCloudConnectorsRequest, ListCloudConnectorsResponse } from "../models/models_0"; +import type { ListCloudConnectorsRequest, ListCloudConnectorsResponse } from "../models/models_0"; import { ListCloudConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListConnectorDestinationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListConnectorDestinationsCommand.ts index 4508507a31a8a..465adfc8994fc 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListConnectorDestinationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListConnectorDestinationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListConnectorDestinationsRequest, ListConnectorDestinationsResponse } from "../models/models_0"; +import type { ListConnectorDestinationsRequest, ListConnectorDestinationsResponse } from "../models/models_0"; import { ListConnectorDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListCredentialLockersCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListCredentialLockersCommand.ts index 992eb3d3d8ee6..d106d85da581c 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListCredentialLockersCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListCredentialLockersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListCredentialLockersRequest, ListCredentialLockersResponse } from "../models/models_0"; +import type { ListCredentialLockersRequest, ListCredentialLockersResponse } from "../models/models_0"; import { ListCredentialLockers } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListDestinationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListDestinationsCommand.ts index 3f22165fe97a9..98f50454f8874 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListDestinationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListDestinationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListDestinationsRequest, ListDestinationsResponse } from "../models/models_0"; +import type { ListDestinationsRequest, ListDestinationsResponse } from "../models/models_0"; import { ListDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListDeviceDiscoveriesCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListDeviceDiscoveriesCommand.ts index 3d3a7d3c1db7f..b88c6c30a08dd 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListDeviceDiscoveriesCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListDeviceDiscoveriesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListDeviceDiscoveriesRequest, ListDeviceDiscoveriesResponse } from "../models/models_0"; +import type { ListDeviceDiscoveriesRequest, ListDeviceDiscoveriesResponse } from "../models/models_0"; import { ListDeviceDiscoveries } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListDiscoveredDevicesCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListDiscoveredDevicesCommand.ts index 7761e311b7d7c..4e276c450b4bd 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListDiscoveredDevicesCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListDiscoveredDevicesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListDiscoveredDevicesRequest, ListDiscoveredDevicesResponse } from "../models/models_0"; +import type { ListDiscoveredDevicesRequest, ListDiscoveredDevicesResponse } from "../models/models_0"; import { ListDiscoveredDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListEventLogConfigurationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListEventLogConfigurationsCommand.ts index 04b41edea7d76..a75bcb5d51c8b 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListEventLogConfigurationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListEventLogConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListEventLogConfigurationsRequest, ListEventLogConfigurationsResponse } from "../models/models_0"; +import type { ListEventLogConfigurationsRequest, ListEventLogConfigurationsResponse } from "../models/models_0"; import { ListEventLogConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListManagedThingAccountAssociationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListManagedThingAccountAssociationsCommand.ts index 1a0a89cea304b..617dbea1579f1 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListManagedThingAccountAssociationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListManagedThingAccountAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { +import type { ListManagedThingAccountAssociationsRequest, ListManagedThingAccountAssociationsResponse, } from "../models/models_0"; diff --git a/clients/client-iot-managed-integrations/src/commands/ListManagedThingSchemasCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListManagedThingSchemasCommand.ts index 9eb3e524e8094..47b7d31db298d 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListManagedThingSchemasCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListManagedThingSchemasCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListManagedThingSchemasRequest, ListManagedThingSchemasResponse } from "../models/models_0"; +import type { ListManagedThingSchemasRequest, ListManagedThingSchemasResponse } from "../models/models_0"; import { ListManagedThingSchemas } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListManagedThingsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListManagedThingsCommand.ts index d079f048bc1ef..103619154ad41 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListManagedThingsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListManagedThingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListManagedThingsRequest, ListManagedThingsResponse } from "../models/models_0"; +import type { ListManagedThingsRequest, ListManagedThingsResponse } from "../models/models_0"; import { ListManagedThings } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListNotificationConfigurationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListNotificationConfigurationsCommand.ts index 9d2c95a527b8d..d19c2c7235309 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListNotificationConfigurationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListNotificationConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListNotificationConfigurationsRequest, ListNotificationConfigurationsResponse } from "../models/models_0"; +import type { ListNotificationConfigurationsRequest, ListNotificationConfigurationsResponse } from "../models/models_0"; import { ListNotificationConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListOtaTaskConfigurationsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListOtaTaskConfigurationsCommand.ts index 9b34ee9b1cb7f..8627ae9be0087 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListOtaTaskConfigurationsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListOtaTaskConfigurationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListOtaTaskConfigurationsRequest, ListOtaTaskConfigurationsResponse } from "../models/models_0"; +import type { ListOtaTaskConfigurationsRequest, ListOtaTaskConfigurationsResponse } from "../models/models_0"; import { ListOtaTaskConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListOtaTaskExecutionsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListOtaTaskExecutionsCommand.ts index ba0bf426addfc..3dd3bf77869ad 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListOtaTaskExecutionsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListOtaTaskExecutionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListOtaTaskExecutionsRequest, ListOtaTaskExecutionsResponse } from "../models/models_0"; +import type { ListOtaTaskExecutionsRequest, ListOtaTaskExecutionsResponse } from "../models/models_0"; import { ListOtaTaskExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListOtaTasksCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListOtaTasksCommand.ts index 250f4cf77986a..6daa30c6d6e0f 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListOtaTasksCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListOtaTasksCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListOtaTasksRequest, ListOtaTasksResponse } from "../models/models_0"; +import type { ListOtaTasksRequest, ListOtaTasksResponse } from "../models/models_0"; import { ListOtaTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListProvisioningProfilesCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListProvisioningProfilesCommand.ts index dc665b0529957..af6fd0680ef80 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListProvisioningProfilesCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListProvisioningProfilesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListProvisioningProfilesRequest, ListProvisioningProfilesResponse } from "../models/models_0"; +import type { ListProvisioningProfilesRequest, ListProvisioningProfilesResponse } from "../models/models_0"; import { ListProvisioningProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListSchemaVersionsCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListSchemaVersionsCommand.ts index 4973794e5bbbb..650c956dfab5e 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListSchemaVersionsCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListSchemaVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListSchemaVersionsRequest, ListSchemaVersionsResponse } from "../models/models_0"; +import type { ListSchemaVersionsRequest, ListSchemaVersionsResponse } from "../models/models_0"; import { ListSchemaVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ListTagsForResourceCommand.ts b/clients/client-iot-managed-integrations/src/commands/ListTagsForResourceCommand.ts index 737ee9f6ee87c..270aff8a086c9 100644 --- a/clients/client-iot-managed-integrations/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/PutDefaultEncryptionConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/PutDefaultEncryptionConfigurationCommand.ts index 200afa153ccca..9554683ff2474 100644 --- a/clients/client-iot-managed-integrations/src/commands/PutDefaultEncryptionConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/PutDefaultEncryptionConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { +import type { PutDefaultEncryptionConfigurationRequest, PutDefaultEncryptionConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-iot-managed-integrations/src/commands/PutHubConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/PutHubConfigurationCommand.ts index 53ec4a204a00f..d8765b14a68e5 100644 --- a/clients/client-iot-managed-integrations/src/commands/PutHubConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/PutHubConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { PutHubConfigurationRequest, PutHubConfigurationResponse } from "../models/models_0"; +import type { PutHubConfigurationRequest, PutHubConfigurationResponse } from "../models/models_0"; import { PutHubConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/PutRuntimeLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/PutRuntimeLogConfigurationCommand.ts index 638e8228308ff..2bab3187a70d7 100644 --- a/clients/client-iot-managed-integrations/src/commands/PutRuntimeLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/PutRuntimeLogConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { PutRuntimeLogConfigurationRequest } from "../models/models_0"; +import type { PutRuntimeLogConfigurationRequest } from "../models/models_0"; import { PutRuntimeLogConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/RegisterAccountAssociationCommand.ts b/clients/client-iot-managed-integrations/src/commands/RegisterAccountAssociationCommand.ts index 3346250936f12..fd42f82728fe7 100644 --- a/clients/client-iot-managed-integrations/src/commands/RegisterAccountAssociationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/RegisterAccountAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { RegisterAccountAssociationRequest, RegisterAccountAssociationResponse } from "../models/models_0"; +import type { RegisterAccountAssociationRequest, RegisterAccountAssociationResponse } from "../models/models_0"; import { RegisterAccountAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/RegisterCustomEndpointCommand.ts b/clients/client-iot-managed-integrations/src/commands/RegisterCustomEndpointCommand.ts index 642ee865d5df0..764b2b3ec0fe6 100644 --- a/clients/client-iot-managed-integrations/src/commands/RegisterCustomEndpointCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/RegisterCustomEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { RegisterCustomEndpointRequest, RegisterCustomEndpointResponse } from "../models/models_0"; +import type { RegisterCustomEndpointRequest, RegisterCustomEndpointResponse } from "../models/models_0"; import { RegisterCustomEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/ResetRuntimeLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/ResetRuntimeLogConfigurationCommand.ts index 8eb62a47a35d8..8d684d4af275c 100644 --- a/clients/client-iot-managed-integrations/src/commands/ResetRuntimeLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/ResetRuntimeLogConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { ResetRuntimeLogConfigurationRequest } from "../models/models_0"; +import type { ResetRuntimeLogConfigurationRequest } from "../models/models_0"; import { ResetRuntimeLogConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/SendConnectorEventCommand.ts b/clients/client-iot-managed-integrations/src/commands/SendConnectorEventCommand.ts index 10f20edcaf76f..d26f6fbc86ecc 100644 --- a/clients/client-iot-managed-integrations/src/commands/SendConnectorEventCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/SendConnectorEventCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { SendConnectorEventRequest, SendConnectorEventResponse } from "../models/models_0"; +import type { SendConnectorEventRequest, SendConnectorEventResponse } from "../models/models_0"; import { SendConnectorEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/SendManagedThingCommandCommand.ts b/clients/client-iot-managed-integrations/src/commands/SendManagedThingCommandCommand.ts index 112eb14b501f6..fed5656b96d6b 100644 --- a/clients/client-iot-managed-integrations/src/commands/SendManagedThingCommandCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/SendManagedThingCommandCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { SendManagedThingCommandRequest, SendManagedThingCommandResponse } from "../models/models_0"; +import type { SendManagedThingCommandRequest, SendManagedThingCommandResponse } from "../models/models_0"; import { SendManagedThingCommand } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/StartAccountAssociationRefreshCommand.ts b/clients/client-iot-managed-integrations/src/commands/StartAccountAssociationRefreshCommand.ts index fd69bd4576a27..afd91ada619f0 100644 --- a/clients/client-iot-managed-integrations/src/commands/StartAccountAssociationRefreshCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/StartAccountAssociationRefreshCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { StartAccountAssociationRefreshRequest, StartAccountAssociationRefreshResponse } from "../models/models_0"; +import type { StartAccountAssociationRefreshRequest, StartAccountAssociationRefreshResponse } from "../models/models_0"; import { StartAccountAssociationRefresh } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/StartDeviceDiscoveryCommand.ts b/clients/client-iot-managed-integrations/src/commands/StartDeviceDiscoveryCommand.ts index 79acc555a128d..7910e401aba98 100644 --- a/clients/client-iot-managed-integrations/src/commands/StartDeviceDiscoveryCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/StartDeviceDiscoveryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { StartDeviceDiscoveryRequest, StartDeviceDiscoveryResponse } from "../models/models_0"; +import type { StartDeviceDiscoveryRequest, StartDeviceDiscoveryResponse } from "../models/models_0"; import { StartDeviceDiscovery } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/TagResourceCommand.ts b/clients/client-iot-managed-integrations/src/commands/TagResourceCommand.ts index 35571b29db163..6992478b8fd21 100644 --- a/clients/client-iot-managed-integrations/src/commands/TagResourceCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/UntagResourceCommand.ts b/clients/client-iot-managed-integrations/src/commands/UntagResourceCommand.ts index a07e7b4f807ba..e568a1d253fd4 100644 --- a/clients/client-iot-managed-integrations/src/commands/UntagResourceCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateAccountAssociationCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateAccountAssociationCommand.ts index f5dffcb214774..c8219e631c9b2 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateAccountAssociationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateAccountAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { UpdateAccountAssociationRequest } from "../models/models_0"; +import type { UpdateAccountAssociationRequest } from "../models/models_0"; import { UpdateAccountAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateCloudConnectorCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateCloudConnectorCommand.ts index 506076b6ccc2c..3db5ee95f375a 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateCloudConnectorCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateCloudConnectorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { UpdateCloudConnectorRequest } from "../models/models_0"; +import type { UpdateCloudConnectorRequest } from "../models/models_0"; import { UpdateCloudConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateConnectorDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateConnectorDestinationCommand.ts index ea233d2cab895..a1836501bfc0e 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateConnectorDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateConnectorDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { UpdateConnectorDestinationRequest } from "../models/models_0"; +import type { UpdateConnectorDestinationRequest } from "../models/models_0"; import { UpdateConnectorDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateDestinationCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateDestinationCommand.ts index 4f61352e6544c..4ce1a274bcfd7 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateDestinationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { UpdateDestinationRequest } from "../models/models_0"; +import type { UpdateDestinationRequest } from "../models/models_0"; import { UpdateDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateEventLogConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateEventLogConfigurationCommand.ts index 23f76764204ee..77282427268a2 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateEventLogConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateEventLogConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { UpdateEventLogConfigurationRequest } from "../models/models_0"; +import type { UpdateEventLogConfigurationRequest } from "../models/models_0"; import { UpdateEventLogConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateManagedThingCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateManagedThingCommand.ts index 4ef536a26ff56..d5f369f612489 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateManagedThingCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateManagedThingCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { UpdateManagedThingRequest } from "../models/models_0"; +import type { UpdateManagedThingRequest } from "../models/models_0"; import { UpdateManagedThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateNotificationConfigurationCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateNotificationConfigurationCommand.ts index c2979e0996271..e7c203ba79f72 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateNotificationConfigurationCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateNotificationConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { UpdateNotificationConfigurationRequest } from "../models/models_0"; +import type { UpdateNotificationConfigurationRequest } from "../models/models_0"; import { UpdateNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/commands/UpdateOtaTaskCommand.ts b/clients/client-iot-managed-integrations/src/commands/UpdateOtaTaskCommand.ts index 4fcc07fe7ee0a..35c7857490f19 100644 --- a/clients/client-iot-managed-integrations/src/commands/UpdateOtaTaskCommand.ts +++ b/clients/client-iot-managed-integrations/src/commands/UpdateOtaTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTManagedIntegrationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTManagedIntegrationsClient"; -import { UpdateOtaTaskRequest } from "../models/models_0"; +import type { UpdateOtaTaskRequest } from "../models/models_0"; import { UpdateOtaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-managed-integrations/src/endpoint/EndpointParameters.ts b/clients/client-iot-managed-integrations/src/endpoint/EndpointParameters.ts index 9386a89d7233d..b7d28e9f126df 100644 --- a/clients/client-iot-managed-integrations/src/endpoint/EndpointParameters.ts +++ b/clients/client-iot-managed-integrations/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iot-managed-integrations/src/endpoint/endpointResolver.ts b/clients/client-iot-managed-integrations/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-iot-managed-integrations/src/endpoint/endpointResolver.ts +++ b/clients/client-iot-managed-integrations/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iot-managed-integrations/src/extensionConfiguration.ts b/clients/client-iot-managed-integrations/src/extensionConfiguration.ts index ba1d1d3e06579..508fb1bd3a205 100644 --- a/clients/client-iot-managed-integrations/src/extensionConfiguration.ts +++ b/clients/client-iot-managed-integrations/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iot-managed-integrations/src/models/IoTManagedIntegrationsServiceException.ts b/clients/client-iot-managed-integrations/src/models/IoTManagedIntegrationsServiceException.ts index 83e063720fc26..d7550cd5f3fed 100644 --- a/clients/client-iot-managed-integrations/src/models/IoTManagedIntegrationsServiceException.ts +++ b/clients/client-iot-managed-integrations/src/models/IoTManagedIntegrationsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iot-managed-integrations/src/models/errors.ts b/clients/client-iot-managed-integrations/src/models/errors.ts index 7cc945aa489a7..e1f1c330e3a08 100644 --- a/clients/client-iot-managed-integrations/src/models/errors.ts +++ b/clients/client-iot-managed-integrations/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTManagedIntegrationsServiceException as __BaseException } from "./IoTManagedIntegrationsServiceException"; diff --git a/clients/client-iot-managed-integrations/src/pagination/Interfaces.ts b/clients/client-iot-managed-integrations/src/pagination/Interfaces.ts index 0b1ddd37e1029..fa01a904fe9f8 100644 --- a/clients/client-iot-managed-integrations/src/pagination/Interfaces.ts +++ b/clients/client-iot-managed-integrations/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTManagedIntegrationsClient } from "../IoTManagedIntegrationsClient"; diff --git a/clients/client-iot-managed-integrations/src/pagination/ListAccountAssociationsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListAccountAssociationsPaginator.ts index d0a6bdbc7f2ad..33da5bf4be4f0 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListAccountAssociationsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListAccountAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountAssociationsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListCloudConnectorsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListCloudConnectorsPaginator.ts index f03128d0b48d7..4400a1578f81a 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListCloudConnectorsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListCloudConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCloudConnectorsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListConnectorDestinationsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListConnectorDestinationsPaginator.ts index 333b968389dbb..2f680dbfb34e8 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListConnectorDestinationsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListConnectorDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectorDestinationsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListCredentialLockersPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListCredentialLockersPaginator.ts index e026f88087564..b8260c249c6e8 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListCredentialLockersPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListCredentialLockersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCredentialLockersCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListDestinationsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListDestinationsPaginator.ts index 9a02841cef00c..3160f8dab3bcd 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListDestinationsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDestinationsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListDeviceDiscoveriesPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListDeviceDiscoveriesPaginator.ts index 1bd268521b52a..f15d8c41b8731 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListDeviceDiscoveriesPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListDeviceDiscoveriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeviceDiscoveriesCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListDiscoveredDevicesPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListDiscoveredDevicesPaginator.ts index ea626d8daefdd..7de63856f9673 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListDiscoveredDevicesPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListDiscoveredDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDiscoveredDevicesCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListEventLogConfigurationsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListEventLogConfigurationsPaginator.ts index 3483a4b953f32..bd560affbbfb9 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListEventLogConfigurationsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListEventLogConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventLogConfigurationsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListManagedThingAccountAssociationsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListManagedThingAccountAssociationsPaginator.ts index 10c5ea3ff6444..7cf6453cbc689 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListManagedThingAccountAssociationsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListManagedThingAccountAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedThingAccountAssociationsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListManagedThingSchemasPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListManagedThingSchemasPaginator.ts index 9b29ec2478806..a7427b659e3b0 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListManagedThingSchemasPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListManagedThingSchemasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedThingSchemasCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListManagedThingsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListManagedThingsPaginator.ts index af7d001cf5a40..95e9f9f1d3a77 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListManagedThingsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListManagedThingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedThingsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListNotificationConfigurationsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListNotificationConfigurationsPaginator.ts index fbe6c69c449d7..a5313830b66e1 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListNotificationConfigurationsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListNotificationConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotificationConfigurationsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListOtaTaskConfigurationsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListOtaTaskConfigurationsPaginator.ts index b68177e05800c..4d1ee5cb63eae 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListOtaTaskConfigurationsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListOtaTaskConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOtaTaskConfigurationsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListOtaTaskExecutionsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListOtaTaskExecutionsPaginator.ts index 859180166b9e6..7b5ca3371b6df 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListOtaTaskExecutionsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListOtaTaskExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOtaTaskExecutionsCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListOtaTasksPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListOtaTasksPaginator.ts index 0806e5770a1e4..f9a60efdb2f98 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListOtaTasksPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListOtaTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOtaTasksCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListProvisioningProfilesPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListProvisioningProfilesPaginator.ts index 2909ba20b7159..59b76ceae781f 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListProvisioningProfilesPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListProvisioningProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProvisioningProfilesCommand, diff --git a/clients/client-iot-managed-integrations/src/pagination/ListSchemaVersionsPaginator.ts b/clients/client-iot-managed-integrations/src/pagination/ListSchemaVersionsPaginator.ts index 6c411719889c4..d49dd3563e548 100644 --- a/clients/client-iot-managed-integrations/src/pagination/ListSchemaVersionsPaginator.ts +++ b/clients/client-iot-managed-integrations/src/pagination/ListSchemaVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchemaVersionsCommand, diff --git a/clients/client-iot-managed-integrations/src/runtimeConfig.browser.ts b/clients/client-iot-managed-integrations/src/runtimeConfig.browser.ts index c0b603da9815b..6807d9a4e78fb 100644 --- a/clients/client-iot-managed-integrations/src/runtimeConfig.browser.ts +++ b/clients/client-iot-managed-integrations/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTManagedIntegrationsClientConfig } from "./IoTManagedIntegrationsClient"; + +import type { IoTManagedIntegrationsClientConfig } from "./IoTManagedIntegrationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iot-managed-integrations/src/runtimeConfig.native.ts b/clients/client-iot-managed-integrations/src/runtimeConfig.native.ts index 0a0cc27b300d7..c1995ee2c7975 100644 --- a/clients/client-iot-managed-integrations/src/runtimeConfig.native.ts +++ b/clients/client-iot-managed-integrations/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTManagedIntegrationsClientConfig } from "./IoTManagedIntegrationsClient"; +import type { IoTManagedIntegrationsClientConfig } from "./IoTManagedIntegrationsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iot-managed-integrations/src/runtimeConfig.shared.ts b/clients/client-iot-managed-integrations/src/runtimeConfig.shared.ts index cc126ffa19c91..eabee9c951312 100644 --- a/clients/client-iot-managed-integrations/src/runtimeConfig.shared.ts +++ b/clients/client-iot-managed-integrations/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTManagedIntegrationsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTManagedIntegrationsClientConfig } from "./IoTManagedIntegrationsClient"; +import type { IoTManagedIntegrationsClientConfig } from "./IoTManagedIntegrationsClient"; /** * @internal diff --git a/clients/client-iot-managed-integrations/src/runtimeConfig.ts b/clients/client-iot-managed-integrations/src/runtimeConfig.ts index 8aa833b138a26..2395314113baa 100644 --- a/clients/client-iot-managed-integrations/src/runtimeConfig.ts +++ b/clients/client-iot-managed-integrations/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTManagedIntegrationsClientConfig } from "./IoTManagedIntegrationsClient"; + +import type { IoTManagedIntegrationsClientConfig } from "./IoTManagedIntegrationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iot-managed-integrations/src/runtimeExtensions.ts b/clients/client-iot-managed-integrations/src/runtimeExtensions.ts index e7be81edc5109..dd1ecafe895e0 100644 --- a/clients/client-iot-managed-integrations/src/runtimeExtensions.ts +++ b/clients/client-iot-managed-integrations/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTManagedIntegrationsExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTManagedIntegrationsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iot-managed-integrations/src/schemas/schemas_0.ts b/clients/client-iot-managed-integrations/src/schemas/schemas_0.ts index 2b1f5a8490dfd..97a588ca82e72 100644 --- a/clients/client-iot-managed-integrations/src/schemas/schemas_0.ts +++ b/clients/client-iot-managed-integrations/src/schemas/schemas_0.ts @@ -575,7 +575,7 @@ const n0 = "com.amazonaws.iotmanagedintegrations"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-iot-wireless/package.json b/clients/client-iot-wireless/package.json index 7a6e63b39ba36..68f2e1e3b14ef 100644 --- a/clients/client-iot-wireless/package.json +++ b/clients/client-iot-wireless/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iot-wireless/src/IoTWireless.ts b/clients/client-iot-wireless/src/IoTWireless.ts index 5a43fad08d1cc..85f30f04a2930 100644 --- a/clients/client-iot-wireless/src/IoTWireless.ts +++ b/clients/client-iot-wireless/src/IoTWireless.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateAwsAccountWithPartnerAccountCommand, @@ -550,7 +550,7 @@ import { UpdateWirelessGatewayCommandInput, UpdateWirelessGatewayCommandOutput, } from "./commands/UpdateWirelessGatewayCommand"; -import { IoTWirelessClient, IoTWirelessClientConfig } from "./IoTWirelessClient"; +import { IoTWirelessClient } from "./IoTWirelessClient"; const commands = { AssociateAwsAccountWithPartnerAccountCommand, diff --git a/clients/client-iot-wireless/src/IoTWirelessClient.ts b/clients/client-iot-wireless/src/IoTWirelessClient.ts index 5fcf8f3ad2058..6a293d22b679f 100644 --- a/clients/client-iot-wireless/src/IoTWirelessClient.ts +++ b/clients/client-iot-wireless/src/IoTWirelessClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTWirelessHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -434,7 +443,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iot-wireless/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iot-wireless/src/auth/httpAuthExtensionConfiguration.ts index a797f57fb7aa7..0f0f451dc3edd 100644 --- a/clients/client-iot-wireless/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iot-wireless/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTWirelessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTWirelessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iot-wireless/src/auth/httpAuthSchemeProvider.ts b/clients/client-iot-wireless/src/auth/httpAuthSchemeProvider.ts index fc6b4d076eb33..ef71531fba5ba 100644 --- a/clients/client-iot-wireless/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iot-wireless/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTWirelessClientConfig, IoTWirelessClientResolvedConfig } from "../IoTWirelessClient"; +import { type IoTWirelessClientResolvedConfig, IoTWirelessClientConfig } from "../IoTWirelessClient"; /** * @internal diff --git a/clients/client-iot-wireless/src/commands/AssociateAwsAccountWithPartnerAccountCommand.ts b/clients/client-iot-wireless/src/commands/AssociateAwsAccountWithPartnerAccountCommand.ts index b14dacb07273c..d0154b23b99ed 100644 --- a/clients/client-iot-wireless/src/commands/AssociateAwsAccountWithPartnerAccountCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateAwsAccountWithPartnerAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { AssociateAwsAccountWithPartnerAccountRequest, AssociateAwsAccountWithPartnerAccountResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/AssociateMulticastGroupWithFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/AssociateMulticastGroupWithFuotaTaskCommand.ts index e21d5afdc063b..a1db42a2db606 100644 --- a/clients/client-iot-wireless/src/commands/AssociateMulticastGroupWithFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateMulticastGroupWithFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { AssociateMulticastGroupWithFuotaTaskRequest, AssociateMulticastGroupWithFuotaTaskResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithFuotaTaskCommand.ts index 7b04593f200af..8f93b1598fe69 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { AssociateWirelessDeviceWithFuotaTaskRequest, AssociateWirelessDeviceWithFuotaTaskResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithMulticastGroupCommand.ts index 3f9bf36a43045..916eb226b84b1 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithMulticastGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { AssociateWirelessDeviceWithMulticastGroupRequest, AssociateWirelessDeviceWithMulticastGroupResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithThingCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithThingCommand.ts index d2aaa76f355bf..8965b156d6b5f 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithThingCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessDeviceWithThingCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { AssociateWirelessDeviceWithThingRequest, AssociateWirelessDeviceWithThingResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { + AssociateWirelessDeviceWithThingRequest, + AssociateWirelessDeviceWithThingResponse, +} from "../models/models_0"; import { AssociateWirelessDeviceWithThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithCertificateCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithCertificateCommand.ts index 30bfe3a7a433e..24f28b92df50c 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithCertificateCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { AssociateWirelessGatewayWithCertificateRequest, AssociateWirelessGatewayWithCertificateResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithThingCommand.ts b/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithThingCommand.ts index b251ce3621e19..08dff7793e54f 100644 --- a/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithThingCommand.ts +++ b/clients/client-iot-wireless/src/commands/AssociateWirelessGatewayWithThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { AssociateWirelessGatewayWithThingRequest, AssociateWirelessGatewayWithThingResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/CancelMulticastGroupSessionCommand.ts b/clients/client-iot-wireless/src/commands/CancelMulticastGroupSessionCommand.ts index 45989f508b266..dd03738b7c4bb 100644 --- a/clients/client-iot-wireless/src/commands/CancelMulticastGroupSessionCommand.ts +++ b/clients/client-iot-wireless/src/commands/CancelMulticastGroupSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { CancelMulticastGroupSessionRequest, CancelMulticastGroupSessionResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CancelMulticastGroupSessionRequest, CancelMulticastGroupSessionResponse } from "../models/models_0"; import { CancelMulticastGroupSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/CreateDestinationCommand.ts b/clients/client-iot-wireless/src/commands/CreateDestinationCommand.ts index 90bdc169fcf50..f1ecdc4246198 100644 --- a/clients/client-iot-wireless/src/commands/CreateDestinationCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { CreateDestinationRequest, CreateDestinationResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateDestinationRequest, CreateDestinationResponse } from "../models/models_0"; import { CreateDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/CreateDeviceProfileCommand.ts b/clients/client-iot-wireless/src/commands/CreateDeviceProfileCommand.ts index 4234010a894f5..65348c58e7df5 100644 --- a/clients/client-iot-wireless/src/commands/CreateDeviceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateDeviceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { CreateDeviceProfileRequest, CreateDeviceProfileResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateDeviceProfileRequest, CreateDeviceProfileResponse } from "../models/models_0"; import { CreateDeviceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/CreateFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/CreateFuotaTaskCommand.ts index 55b1d3c8c0def..af8a853bb45d5 100644 --- a/clients/client-iot-wireless/src/commands/CreateFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { CreateFuotaTaskRequest, CreateFuotaTaskResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateFuotaTaskRequest, CreateFuotaTaskResponse } from "../models/models_0"; import { CreateFuotaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/CreateMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/CreateMulticastGroupCommand.ts index 2e2db307f29f7..905fb5d36cced 100644 --- a/clients/client-iot-wireless/src/commands/CreateMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateMulticastGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { CreateMulticastGroupRequest, CreateMulticastGroupResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateMulticastGroupRequest, CreateMulticastGroupResponse } from "../models/models_0"; import { CreateMulticastGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/CreateNetworkAnalyzerConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/CreateNetworkAnalyzerConfigurationCommand.ts index fb0ebf275af5f..2c7681fd822af 100644 --- a/clients/client-iot-wireless/src/commands/CreateNetworkAnalyzerConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateNetworkAnalyzerConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateNetworkAnalyzerConfigurationRequest, CreateNetworkAnalyzerConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/CreateServiceProfileCommand.ts b/clients/client-iot-wireless/src/commands/CreateServiceProfileCommand.ts index 3e39f96090bd8..7627ea2597279 100644 --- a/clients/client-iot-wireless/src/commands/CreateServiceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateServiceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { CreateServiceProfileRequest, CreateServiceProfileResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateServiceProfileRequest, CreateServiceProfileResponse } from "../models/models_0"; import { CreateServiceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/CreateWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/CreateWirelessDeviceCommand.ts index dc89e635f7646..9fe953370d0b4 100644 --- a/clients/client-iot-wireless/src/commands/CreateWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateWirelessDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { CreateWirelessDeviceRequest, CreateWirelessDeviceResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateWirelessDeviceRequest, CreateWirelessDeviceResponse } from "../models/models_0"; import { CreateWirelessDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayCommand.ts b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayCommand.ts index 896eb79c07120..747f6fd64b7bf 100644 --- a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { CreateWirelessGatewayRequest, CreateWirelessGatewayResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateWirelessGatewayRequest, CreateWirelessGatewayResponse } from "../models/models_0"; import { CreateWirelessGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskCommand.ts b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskCommand.ts index c2e4234f2d8d5..3db7842cfd9c7 100644 --- a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { CreateWirelessGatewayTaskRequest, CreateWirelessGatewayTaskResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateWirelessGatewayTaskRequest, CreateWirelessGatewayTaskResponse } from "../models/models_0"; import { CreateWirelessGatewayTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskDefinitionCommand.ts b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskDefinitionCommand.ts index cbab302021faf..d758f4fdd5378 100644 --- a/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskDefinitionCommand.ts +++ b/clients/client-iot-wireless/src/commands/CreateWirelessGatewayTaskDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { CreateWirelessGatewayTaskDefinitionRequest, CreateWirelessGatewayTaskDefinitionResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/DeleteDestinationCommand.ts b/clients/client-iot-wireless/src/commands/DeleteDestinationCommand.ts index c7cf2722bf2db..d57e06a861df4 100644 --- a/clients/client-iot-wireless/src/commands/DeleteDestinationCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteDestinationRequest, DeleteDestinationResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteDestinationRequest, DeleteDestinationResponse } from "../models/models_0"; import { DeleteDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteDeviceProfileCommand.ts b/clients/client-iot-wireless/src/commands/DeleteDeviceProfileCommand.ts index 60a414eed6be1..82378ed28b516 100644 --- a/clients/client-iot-wireless/src/commands/DeleteDeviceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteDeviceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteDeviceProfileRequest, DeleteDeviceProfileResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteDeviceProfileRequest, DeleteDeviceProfileResponse } from "../models/models_0"; import { DeleteDeviceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/DeleteFuotaTaskCommand.ts index 858ec8f3ff1bb..338464892d5a9 100644 --- a/clients/client-iot-wireless/src/commands/DeleteFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteFuotaTaskRequest, DeleteFuotaTaskResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteFuotaTaskRequest, DeleteFuotaTaskResponse } from "../models/models_0"; import { DeleteFuotaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/DeleteMulticastGroupCommand.ts index b5a6a6e51d511..b0e665a2394f0 100644 --- a/clients/client-iot-wireless/src/commands/DeleteMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteMulticastGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteMulticastGroupRequest, DeleteMulticastGroupResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteMulticastGroupRequest, DeleteMulticastGroupResponse } from "../models/models_0"; import { DeleteMulticastGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteNetworkAnalyzerConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/DeleteNetworkAnalyzerConfigurationCommand.ts index d8f5ff802f37f..0fe7774a427a5 100644 --- a/clients/client-iot-wireless/src/commands/DeleteNetworkAnalyzerConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteNetworkAnalyzerConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteNetworkAnalyzerConfigurationRequest, DeleteNetworkAnalyzerConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/DeleteQueuedMessagesCommand.ts b/clients/client-iot-wireless/src/commands/DeleteQueuedMessagesCommand.ts index e6037ee854868..25710f0d3350e 100644 --- a/clients/client-iot-wireless/src/commands/DeleteQueuedMessagesCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteQueuedMessagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteQueuedMessagesRequest, DeleteQueuedMessagesResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteQueuedMessagesRequest, DeleteQueuedMessagesResponse } from "../models/models_0"; import { DeleteQueuedMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteServiceProfileCommand.ts b/clients/client-iot-wireless/src/commands/DeleteServiceProfileCommand.ts index be724a33d17a8..89ffe6b53c716 100644 --- a/clients/client-iot-wireless/src/commands/DeleteServiceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteServiceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteServiceProfileRequest, DeleteServiceProfileResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteServiceProfileRequest, DeleteServiceProfileResponse } from "../models/models_0"; import { DeleteServiceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceCommand.ts index 9ed1fa52d1d85..c87ca56374fb8 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteWirelessDeviceRequest, DeleteWirelessDeviceResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteWirelessDeviceRequest, DeleteWirelessDeviceResponse } from "../models/models_0"; import { DeleteWirelessDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceImportTaskCommand.ts index f979f008ffe02..d8ac77af82c53 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessDeviceImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteWirelessDeviceImportTaskRequest, DeleteWirelessDeviceImportTaskResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteWirelessDeviceImportTaskRequest, DeleteWirelessDeviceImportTaskResponse } from "../models/models_0"; import { DeleteWirelessDeviceImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayCommand.ts index 907077232f92e..0fec818824851 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteWirelessGatewayRequest, DeleteWirelessGatewayResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteWirelessGatewayRequest, DeleteWirelessGatewayResponse } from "../models/models_0"; import { DeleteWirelessGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskCommand.ts index 9758e21594db7..fe8fff57ebd46 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeleteWirelessGatewayTaskRequest, DeleteWirelessGatewayTaskResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteWirelessGatewayTaskRequest, DeleteWirelessGatewayTaskResponse } from "../models/models_0"; import { DeleteWirelessGatewayTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskDefinitionCommand.ts b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskDefinitionCommand.ts index b0a3e62b30793..0bd72fe0ba119 100644 --- a/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskDefinitionCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeleteWirelessGatewayTaskDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeleteWirelessGatewayTaskDefinitionRequest, DeleteWirelessGatewayTaskDefinitionResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/DeregisterWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/DeregisterWirelessDeviceCommand.ts index bcd076fe11d7b..eddae55c2e6a0 100644 --- a/clients/client-iot-wireless/src/commands/DeregisterWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/DeregisterWirelessDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { DeregisterWirelessDeviceRequest, DeregisterWirelessDeviceResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DeregisterWirelessDeviceRequest, DeregisterWirelessDeviceResponse } from "../models/models_0"; import { DeregisterWirelessDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/DisassociateAwsAccountFromPartnerAccountCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateAwsAccountFromPartnerAccountCommand.ts index b002d143a8358..1044fcc8aab4a 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateAwsAccountFromPartnerAccountCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateAwsAccountFromPartnerAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DisassociateAwsAccountFromPartnerAccountRequest, DisassociateAwsAccountFromPartnerAccountResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/DisassociateMulticastGroupFromFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateMulticastGroupFromFuotaTaskCommand.ts index bdcf20ac9c00f..99c0219118c9b 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateMulticastGroupFromFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateMulticastGroupFromFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DisassociateMulticastGroupFromFuotaTaskRequest, DisassociateMulticastGroupFromFuotaTaskResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.ts index 34e07655402b9..47fec1e6bd0ec 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DisassociateWirelessDeviceFromFuotaTaskRequest, DisassociateWirelessDeviceFromFuotaTaskResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.ts index b2827fbdf5946..2fd346c4d42e1 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromMulticastGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DisassociateWirelessDeviceFromMulticastGroupRequest, DisassociateWirelessDeviceFromMulticastGroupResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromThingCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromThingCommand.ts index 4b752b2fbf0a9..adaff06e367d0 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromThingCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessDeviceFromThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DisassociateWirelessDeviceFromThingRequest, DisassociateWirelessDeviceFromThingResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromCertificateCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromCertificateCommand.ts index 52a06f424ec67..de49e318648d9 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromCertificateCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DisassociateWirelessGatewayFromCertificateRequest, DisassociateWirelessGatewayFromCertificateResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromThingCommand.ts b/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromThingCommand.ts index 03119f409c5a0..374167c4a685d 100644 --- a/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromThingCommand.ts +++ b/clients/client-iot-wireless/src/commands/DisassociateWirelessGatewayFromThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { DisassociateWirelessGatewayFromThingRequest, DisassociateWirelessGatewayFromThingResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/GetDestinationCommand.ts b/clients/client-iot-wireless/src/commands/GetDestinationCommand.ts index 40fa4793d4365..5ce53f2207932 100644 --- a/clients/client-iot-wireless/src/commands/GetDestinationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetDestinationRequest, GetDestinationResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetDestinationRequest, GetDestinationResponse } from "../models/models_0"; import { GetDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetDeviceProfileCommand.ts b/clients/client-iot-wireless/src/commands/GetDeviceProfileCommand.ts index f88c1df89b5e5..22bdbf46b85bb 100644 --- a/clients/client-iot-wireless/src/commands/GetDeviceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetDeviceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetDeviceProfileRequest, GetDeviceProfileResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetDeviceProfileRequest, GetDeviceProfileResponse } from "../models/models_0"; import { GetDeviceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetEventConfigurationByResourceTypesCommand.ts b/clients/client-iot-wireless/src/commands/GetEventConfigurationByResourceTypesCommand.ts index 635bd009a9b6b..29775a8849c1a 100644 --- a/clients/client-iot-wireless/src/commands/GetEventConfigurationByResourceTypesCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetEventConfigurationByResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetEventConfigurationByResourceTypesRequest, GetEventConfigurationByResourceTypesResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/GetFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/GetFuotaTaskCommand.ts index 00bba51689924..f9f7fac7617de 100644 --- a/clients/client-iot-wireless/src/commands/GetFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetFuotaTaskRequest, GetFuotaTaskResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetFuotaTaskRequest, GetFuotaTaskResponse } from "../models/models_0"; import { GetFuotaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetLogLevelsByResourceTypesCommand.ts b/clients/client-iot-wireless/src/commands/GetLogLevelsByResourceTypesCommand.ts index 9f3c9232b4a2c..a0b4f56747c7a 100644 --- a/clients/client-iot-wireless/src/commands/GetLogLevelsByResourceTypesCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetLogLevelsByResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetLogLevelsByResourceTypesRequest, GetLogLevelsByResourceTypesResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetLogLevelsByResourceTypesRequest, GetLogLevelsByResourceTypesResponse } from "../models/models_0"; import { GetLogLevelsByResourceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetMetricConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/GetMetricConfigurationCommand.ts index 0ef41b04aaa5e..aaba4f953fcc2 100644 --- a/clients/client-iot-wireless/src/commands/GetMetricConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetMetricConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetMetricConfigurationRequest, GetMetricConfigurationResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetMetricConfigurationRequest, GetMetricConfigurationResponse } from "../models/models_0"; import { GetMetricConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetMetricsCommand.ts b/clients/client-iot-wireless/src/commands/GetMetricsCommand.ts index 86329f14441b6..11ee2a8f3eb97 100644 --- a/clients/client-iot-wireless/src/commands/GetMetricsCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetMetricsRequest, GetMetricsResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetMetricsRequest, GetMetricsResponse } from "../models/models_0"; import { GetMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/GetMulticastGroupCommand.ts index 0da886daee73a..29f236247c9b0 100644 --- a/clients/client-iot-wireless/src/commands/GetMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetMulticastGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetMulticastGroupRequest, GetMulticastGroupResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetMulticastGroupRequest, GetMulticastGroupResponse } from "../models/models_0"; import { GetMulticastGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetMulticastGroupSessionCommand.ts b/clients/client-iot-wireless/src/commands/GetMulticastGroupSessionCommand.ts index 9ab5db3e658d1..b914ad88f9319 100644 --- a/clients/client-iot-wireless/src/commands/GetMulticastGroupSessionCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetMulticastGroupSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetMulticastGroupSessionRequest, GetMulticastGroupSessionResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetMulticastGroupSessionRequest, GetMulticastGroupSessionResponse } from "../models/models_0"; import { GetMulticastGroupSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetNetworkAnalyzerConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/GetNetworkAnalyzerConfigurationCommand.ts index f7bc1d13cd1ee..c8bad47af1fe9 100644 --- a/clients/client-iot-wireless/src/commands/GetNetworkAnalyzerConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetNetworkAnalyzerConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetNetworkAnalyzerConfigurationRequest, GetNetworkAnalyzerConfigurationResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { + GetNetworkAnalyzerConfigurationRequest, + GetNetworkAnalyzerConfigurationResponse, +} from "../models/models_0"; import { GetNetworkAnalyzerConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetPartnerAccountCommand.ts b/clients/client-iot-wireless/src/commands/GetPartnerAccountCommand.ts index 85e5b39c93330..cda957c5e2cc6 100644 --- a/clients/client-iot-wireless/src/commands/GetPartnerAccountCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetPartnerAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetPartnerAccountRequest, GetPartnerAccountResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetPartnerAccountRequest, GetPartnerAccountResponse } from "../models/models_0"; import { GetPartnerAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetPositionCommand.ts b/clients/client-iot-wireless/src/commands/GetPositionCommand.ts index 1a9a96d00a06e..142e024bb0b9b 100644 --- a/clients/client-iot-wireless/src/commands/GetPositionCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetPositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetPositionRequest, GetPositionResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetPositionRequest, GetPositionResponse } from "../models/models_0"; import { GetPosition } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetPositionConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/GetPositionConfigurationCommand.ts index dde36c1f1569d..d7ff9880984a4 100644 --- a/clients/client-iot-wireless/src/commands/GetPositionConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetPositionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetPositionConfigurationRequest, GetPositionConfigurationResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetPositionConfigurationRequest, GetPositionConfigurationResponse } from "../models/models_0"; import { GetPositionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetPositionEstimateCommand.ts b/clients/client-iot-wireless/src/commands/GetPositionEstimateCommand.ts index 5ee022b2e89a4..2dd1d68571255 100644 --- a/clients/client-iot-wireless/src/commands/GetPositionEstimateCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetPositionEstimateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetPositionEstimateRequest, GetPositionEstimateResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import { type GetPositionEstimateRequest, GetPositionEstimateResponse } from "../models/models_0"; import { GetPositionEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetResourceEventConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/GetResourceEventConfigurationCommand.ts index e3ee0a1859ae2..56f7f9181e1a3 100644 --- a/clients/client-iot-wireless/src/commands/GetResourceEventConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetResourceEventConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetResourceEventConfigurationRequest, GetResourceEventConfigurationResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetResourceEventConfigurationRequest, GetResourceEventConfigurationResponse } from "../models/models_0"; import { GetResourceEventConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetResourceLogLevelCommand.ts b/clients/client-iot-wireless/src/commands/GetResourceLogLevelCommand.ts index c88b4c684a9b4..0fc6bc7ed73d6 100644 --- a/clients/client-iot-wireless/src/commands/GetResourceLogLevelCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetResourceLogLevelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetResourceLogLevelRequest, GetResourceLogLevelResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetResourceLogLevelRequest, GetResourceLogLevelResponse } from "../models/models_0"; import { GetResourceLogLevel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetResourcePositionCommand.ts b/clients/client-iot-wireless/src/commands/GetResourcePositionCommand.ts index b73077b5cf729..4280bc59ca735 100644 --- a/clients/client-iot-wireless/src/commands/GetResourcePositionCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetResourcePositionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetResourcePositionRequest, GetResourcePositionResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import { type GetResourcePositionRequest, GetResourcePositionResponse } from "../models/models_0"; import { GetResourcePosition } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetServiceEndpointCommand.ts b/clients/client-iot-wireless/src/commands/GetServiceEndpointCommand.ts index 6b589bcc1dbad..2387f2be04e40 100644 --- a/clients/client-iot-wireless/src/commands/GetServiceEndpointCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetServiceEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetServiceEndpointRequest, GetServiceEndpointResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetServiceEndpointRequest, GetServiceEndpointResponse } from "../models/models_0"; import { GetServiceEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetServiceProfileCommand.ts b/clients/client-iot-wireless/src/commands/GetServiceProfileCommand.ts index 3c60535086ede..a05d51b3b3cd4 100644 --- a/clients/client-iot-wireless/src/commands/GetServiceProfileCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetServiceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetServiceProfileRequest, GetServiceProfileResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetServiceProfileRequest, GetServiceProfileResponse } from "../models/models_0"; import { GetServiceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessDeviceCommand.ts index 51688f408eb31..d526d31923867 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetWirelessDeviceRequest, GetWirelessDeviceResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetWirelessDeviceRequest, GetWirelessDeviceResponse } from "../models/models_0"; import { GetWirelessDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessDeviceImportTaskCommand.ts index aaa66b93b9cd1..fdaad1fe6e43e 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessDeviceImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetWirelessDeviceImportTaskRequest, GetWirelessDeviceImportTaskResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetWirelessDeviceImportTaskRequest, GetWirelessDeviceImportTaskResponse } from "../models/models_0"; import { GetWirelessDeviceImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetWirelessDeviceStatisticsCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessDeviceStatisticsCommand.ts index 219e5399ce396..4b0513b835407 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessDeviceStatisticsCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessDeviceStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetWirelessDeviceStatisticsRequest, GetWirelessDeviceStatisticsResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetWirelessDeviceStatisticsRequest, GetWirelessDeviceStatisticsResponse } from "../models/models_0"; import { GetWirelessDeviceStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayCertificateCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayCertificateCommand.ts index 4094bc34ee494..d7bdc018189f2 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayCertificateCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetWirelessGatewayCertificateRequest, GetWirelessGatewayCertificateResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetWirelessGatewayCertificateRequest, GetWirelessGatewayCertificateResponse } from "../models/models_0"; import { GetWirelessGatewayCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayCommand.ts index acc4c407f70a6..b00a665c197e3 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetWirelessGatewayRequest, GetWirelessGatewayResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetWirelessGatewayRequest, GetWirelessGatewayResponse } from "../models/models_0"; import { GetWirelessGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayFirmwareInformationCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayFirmwareInformationCommand.ts index cf4b1ca1d204b..ebef6f9b5fff1 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayFirmwareInformationCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayFirmwareInformationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetWirelessGatewayFirmwareInformationRequest, GetWirelessGatewayFirmwareInformationResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayStatisticsCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayStatisticsCommand.ts index 7f4f7b278de7c..22f16d85b815c 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayStatisticsCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetWirelessGatewayStatisticsRequest, GetWirelessGatewayStatisticsResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetWirelessGatewayStatisticsRequest, GetWirelessGatewayStatisticsResponse } from "../models/models_0"; import { GetWirelessGatewayStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskCommand.ts index 63948cefae3fc..624ab920e19a0 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetWirelessGatewayTaskRequest, GetWirelessGatewayTaskResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { GetWirelessGatewayTaskRequest, GetWirelessGatewayTaskResponse } from "../models/models_0"; import { GetWirelessGatewayTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskDefinitionCommand.ts b/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskDefinitionCommand.ts index 24bd884b7beea..fe8cefbce75f5 100644 --- a/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskDefinitionCommand.ts +++ b/clients/client-iot-wireless/src/commands/GetWirelessGatewayTaskDefinitionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { GetWirelessGatewayTaskDefinitionRequest, GetWirelessGatewayTaskDefinitionResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { + GetWirelessGatewayTaskDefinitionRequest, + GetWirelessGatewayTaskDefinitionResponse, +} from "../models/models_0"; import { GetWirelessGatewayTaskDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListDestinationsCommand.ts b/clients/client-iot-wireless/src/commands/ListDestinationsCommand.ts index 8f3319cb9afbd..af2437231a3ac 100644 --- a/clients/client-iot-wireless/src/commands/ListDestinationsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListDestinationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListDestinationsRequest, ListDestinationsResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListDestinationsRequest, ListDestinationsResponse } from "../models/models_0"; import { ListDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListDeviceProfilesCommand.ts b/clients/client-iot-wireless/src/commands/ListDeviceProfilesCommand.ts index 8ac32a2aba135..8a43433504b6a 100644 --- a/clients/client-iot-wireless/src/commands/ListDeviceProfilesCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListDeviceProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListDeviceProfilesRequest, ListDeviceProfilesResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListDeviceProfilesRequest, ListDeviceProfilesResponse } from "../models/models_0"; import { ListDeviceProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListDevicesForWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/ListDevicesForWirelessDeviceImportTaskCommand.ts index 881cdd03478eb..4d7b1c1eab9c4 100644 --- a/clients/client-iot-wireless/src/commands/ListDevicesForWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListDevicesForWirelessDeviceImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListDevicesForWirelessDeviceImportTaskRequest, ListDevicesForWirelessDeviceImportTaskResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/ListEventConfigurationsCommand.ts b/clients/client-iot-wireless/src/commands/ListEventConfigurationsCommand.ts index a581b6f22dcb5..08597cacdb666 100644 --- a/clients/client-iot-wireless/src/commands/ListEventConfigurationsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListEventConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListEventConfigurationsRequest, ListEventConfigurationsResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListEventConfigurationsRequest, ListEventConfigurationsResponse } from "../models/models_0"; import { ListEventConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListFuotaTasksCommand.ts b/clients/client-iot-wireless/src/commands/ListFuotaTasksCommand.ts index 9ed6b5ed6eb9b..67668bb8ef507 100644 --- a/clients/client-iot-wireless/src/commands/ListFuotaTasksCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListFuotaTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListFuotaTasksRequest, ListFuotaTasksResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListFuotaTasksRequest, ListFuotaTasksResponse } from "../models/models_0"; import { ListFuotaTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListMulticastGroupsByFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/ListMulticastGroupsByFuotaTaskCommand.ts index 084bf05106085..6cdca813e6001 100644 --- a/clients/client-iot-wireless/src/commands/ListMulticastGroupsByFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListMulticastGroupsByFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListMulticastGroupsByFuotaTaskRequest, ListMulticastGroupsByFuotaTaskResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListMulticastGroupsByFuotaTaskRequest, ListMulticastGroupsByFuotaTaskResponse } from "../models/models_0"; import { ListMulticastGroupsByFuotaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListMulticastGroupsCommand.ts b/clients/client-iot-wireless/src/commands/ListMulticastGroupsCommand.ts index d9c205aad1377..c867067b4add3 100644 --- a/clients/client-iot-wireless/src/commands/ListMulticastGroupsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListMulticastGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListMulticastGroupsRequest, ListMulticastGroupsResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListMulticastGroupsRequest, ListMulticastGroupsResponse } from "../models/models_0"; import { ListMulticastGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListNetworkAnalyzerConfigurationsCommand.ts b/clients/client-iot-wireless/src/commands/ListNetworkAnalyzerConfigurationsCommand.ts index be3b897897e74..b3e0cc50639ce 100644 --- a/clients/client-iot-wireless/src/commands/ListNetworkAnalyzerConfigurationsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListNetworkAnalyzerConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListNetworkAnalyzerConfigurationsRequest, ListNetworkAnalyzerConfigurationsResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/ListPartnerAccountsCommand.ts b/clients/client-iot-wireless/src/commands/ListPartnerAccountsCommand.ts index 1242ef7937d7b..150bbdd906acb 100644 --- a/clients/client-iot-wireless/src/commands/ListPartnerAccountsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListPartnerAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListPartnerAccountsRequest, ListPartnerAccountsResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListPartnerAccountsRequest, ListPartnerAccountsResponse } from "../models/models_0"; import { ListPartnerAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListPositionConfigurationsCommand.ts b/clients/client-iot-wireless/src/commands/ListPositionConfigurationsCommand.ts index 7aaa96040cd69..ca6c38471c4c9 100644 --- a/clients/client-iot-wireless/src/commands/ListPositionConfigurationsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListPositionConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListPositionConfigurationsRequest, ListPositionConfigurationsResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListPositionConfigurationsRequest, ListPositionConfigurationsResponse } from "../models/models_0"; import { ListPositionConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListQueuedMessagesCommand.ts b/clients/client-iot-wireless/src/commands/ListQueuedMessagesCommand.ts index a83d598d6d8ad..62f2717e8011a 100644 --- a/clients/client-iot-wireless/src/commands/ListQueuedMessagesCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListQueuedMessagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListQueuedMessagesRequest, ListQueuedMessagesResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListQueuedMessagesRequest, ListQueuedMessagesResponse } from "../models/models_0"; import { ListQueuedMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListServiceProfilesCommand.ts b/clients/client-iot-wireless/src/commands/ListServiceProfilesCommand.ts index 883d6f14a3dbf..67aaf7fb7382e 100644 --- a/clients/client-iot-wireless/src/commands/ListServiceProfilesCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListServiceProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListServiceProfilesRequest, ListServiceProfilesResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListServiceProfilesRequest, ListServiceProfilesResponse } from "../models/models_0"; import { ListServiceProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListTagsForResourceCommand.ts b/clients/client-iot-wireless/src/commands/ListTagsForResourceCommand.ts index ca9e644b7d448..099846affd8e0 100644 --- a/clients/client-iot-wireless/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListWirelessDeviceImportTasksCommand.ts b/clients/client-iot-wireless/src/commands/ListWirelessDeviceImportTasksCommand.ts index 29cf46f98c23f..7f923cd136828 100644 --- a/clients/client-iot-wireless/src/commands/ListWirelessDeviceImportTasksCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListWirelessDeviceImportTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListWirelessDeviceImportTasksRequest, ListWirelessDeviceImportTasksResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListWirelessDeviceImportTasksRequest, ListWirelessDeviceImportTasksResponse } from "../models/models_0"; import { ListWirelessDeviceImportTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListWirelessDevicesCommand.ts b/clients/client-iot-wireless/src/commands/ListWirelessDevicesCommand.ts index 02aa3174ca12f..8bf64f1cd255f 100644 --- a/clients/client-iot-wireless/src/commands/ListWirelessDevicesCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListWirelessDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListWirelessDevicesRequest, ListWirelessDevicesResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListWirelessDevicesRequest, ListWirelessDevicesResponse } from "../models/models_0"; import { ListWirelessDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ListWirelessGatewayTaskDefinitionsCommand.ts b/clients/client-iot-wireless/src/commands/ListWirelessGatewayTaskDefinitionsCommand.ts index 7eb26873b456a..45460ba28867d 100644 --- a/clients/client-iot-wireless/src/commands/ListWirelessGatewayTaskDefinitionsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListWirelessGatewayTaskDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListWirelessGatewayTaskDefinitionsRequest, ListWirelessGatewayTaskDefinitionsResponse, } from "../models/models_0"; diff --git a/clients/client-iot-wireless/src/commands/ListWirelessGatewaysCommand.ts b/clients/client-iot-wireless/src/commands/ListWirelessGatewaysCommand.ts index 863dba8fc5ae6..d8bd95c839797 100644 --- a/clients/client-iot-wireless/src/commands/ListWirelessGatewaysCommand.ts +++ b/clients/client-iot-wireless/src/commands/ListWirelessGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ListWirelessGatewaysRequest, ListWirelessGatewaysResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ListWirelessGatewaysRequest, ListWirelessGatewaysResponse } from "../models/models_0"; import { ListWirelessGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/PutPositionConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/PutPositionConfigurationCommand.ts index e63aeaba995c0..ce3e035103674 100644 --- a/clients/client-iot-wireless/src/commands/PutPositionConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/PutPositionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { PutPositionConfigurationRequest, PutPositionConfigurationResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { PutPositionConfigurationRequest, PutPositionConfigurationResponse } from "../models/models_0"; import { PutPositionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/PutResourceLogLevelCommand.ts b/clients/client-iot-wireless/src/commands/PutResourceLogLevelCommand.ts index 6c990e15c0f92..9eebfd358442a 100644 --- a/clients/client-iot-wireless/src/commands/PutResourceLogLevelCommand.ts +++ b/clients/client-iot-wireless/src/commands/PutResourceLogLevelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { PutResourceLogLevelRequest, PutResourceLogLevelResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { PutResourceLogLevelRequest, PutResourceLogLevelResponse } from "../models/models_0"; import { PutResourceLogLevel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ResetAllResourceLogLevelsCommand.ts b/clients/client-iot-wireless/src/commands/ResetAllResourceLogLevelsCommand.ts index 8bb33aee4421c..7a6e4a1fcb064 100644 --- a/clients/client-iot-wireless/src/commands/ResetAllResourceLogLevelsCommand.ts +++ b/clients/client-iot-wireless/src/commands/ResetAllResourceLogLevelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ResetAllResourceLogLevelsRequest, ResetAllResourceLogLevelsResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ResetAllResourceLogLevelsRequest, ResetAllResourceLogLevelsResponse } from "../models/models_0"; import { ResetAllResourceLogLevels } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/ResetResourceLogLevelCommand.ts b/clients/client-iot-wireless/src/commands/ResetResourceLogLevelCommand.ts index 70f9c36079921..fd10066174362 100644 --- a/clients/client-iot-wireless/src/commands/ResetResourceLogLevelCommand.ts +++ b/clients/client-iot-wireless/src/commands/ResetResourceLogLevelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { ResetResourceLogLevelRequest, ResetResourceLogLevelResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { ResetResourceLogLevelRequest, ResetResourceLogLevelResponse } from "../models/models_0"; import { ResetResourceLogLevel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/SendDataToMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/SendDataToMulticastGroupCommand.ts index b486b88434f55..ca54a7ea4f6a6 100644 --- a/clients/client-iot-wireless/src/commands/SendDataToMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/SendDataToMulticastGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { SendDataToMulticastGroupRequest, SendDataToMulticastGroupResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { SendDataToMulticastGroupRequest, SendDataToMulticastGroupResponse } from "../models/models_0"; import { SendDataToMulticastGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/SendDataToWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/SendDataToWirelessDeviceCommand.ts index 7e9de710c5f97..34509e56d0cb0 100644 --- a/clients/client-iot-wireless/src/commands/SendDataToWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/SendDataToWirelessDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { SendDataToWirelessDeviceRequest, SendDataToWirelessDeviceResponse } from "../models/models_0"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { SendDataToWirelessDeviceRequest, SendDataToWirelessDeviceResponse } from "../models/models_0"; import { SendDataToWirelessDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.ts index b2ae82d99057b..00b279812a0c2 100644 --- a/clients/client-iot-wireless/src/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartBulkAssociateWirelessDeviceWithMulticastGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { StartBulkAssociateWirelessDeviceWithMulticastGroupRequest } from "../models/models_0"; -import { StartBulkAssociateWirelessDeviceWithMulticastGroupResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { StartBulkAssociateWirelessDeviceWithMulticastGroupRequest } from "../models/models_0"; +import type { StartBulkAssociateWirelessDeviceWithMulticastGroupResponse } from "../models/models_1"; import { StartBulkAssociateWirelessDeviceWithMulticastGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.ts index fb0b1255344e4..0c96780480822 100644 --- a/clients/client-iot-wireless/src/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartBulkDisassociateWirelessDeviceFromMulticastGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest, StartBulkDisassociateWirelessDeviceFromMulticastGroupResponse, } from "../models/models_1"; diff --git a/clients/client-iot-wireless/src/commands/StartFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/StartFuotaTaskCommand.ts index 0ba46f22ea026..437b442729a6b 100644 --- a/clients/client-iot-wireless/src/commands/StartFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { StartFuotaTaskRequest, StartFuotaTaskResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { StartFuotaTaskRequest, StartFuotaTaskResponse } from "../models/models_1"; import { StartFuotaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/StartMulticastGroupSessionCommand.ts b/clients/client-iot-wireless/src/commands/StartMulticastGroupSessionCommand.ts index 75e2a965657a4..1f9ff2da705a4 100644 --- a/clients/client-iot-wireless/src/commands/StartMulticastGroupSessionCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartMulticastGroupSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { StartMulticastGroupSessionRequest, StartMulticastGroupSessionResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { StartMulticastGroupSessionRequest, StartMulticastGroupSessionResponse } from "../models/models_1"; import { StartMulticastGroupSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/StartSingleWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/StartSingleWirelessDeviceImportTaskCommand.ts index fc7e2c6c72647..d1f13eebbf2f7 100644 --- a/clients/client-iot-wireless/src/commands/StartSingleWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartSingleWirelessDeviceImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { StartSingleWirelessDeviceImportTaskRequest, StartSingleWirelessDeviceImportTaskResponse, } from "../models/models_1"; diff --git a/clients/client-iot-wireless/src/commands/StartWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/StartWirelessDeviceImportTaskCommand.ts index 1378e44e1a499..28cfde461a21a 100644 --- a/clients/client-iot-wireless/src/commands/StartWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/StartWirelessDeviceImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { StartWirelessDeviceImportTaskRequest, StartWirelessDeviceImportTaskResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { StartWirelessDeviceImportTaskRequest, StartWirelessDeviceImportTaskResponse } from "../models/models_1"; import { StartWirelessDeviceImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/TagResourceCommand.ts b/clients/client-iot-wireless/src/commands/TagResourceCommand.ts index 684d10b8ab9d3..9f5e20a878034 100644 --- a/clients/client-iot-wireless/src/commands/TagResourceCommand.ts +++ b/clients/client-iot-wireless/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/TestWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/TestWirelessDeviceCommand.ts index 375f0f64bddae..df31dcb8f9f7c 100644 --- a/clients/client-iot-wireless/src/commands/TestWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/TestWirelessDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { TestWirelessDeviceRequest, TestWirelessDeviceResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { TestWirelessDeviceRequest, TestWirelessDeviceResponse } from "../models/models_1"; import { TestWirelessDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UntagResourceCommand.ts b/clients/client-iot-wireless/src/commands/UntagResourceCommand.ts index ba9de616ab4ca..cade2883b19a5 100644 --- a/clients/client-iot-wireless/src/commands/UntagResourceCommand.ts +++ b/clients/client-iot-wireless/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateDestinationCommand.ts b/clients/client-iot-wireless/src/commands/UpdateDestinationCommand.ts index eb2cc8f3344b5..62c7c2dbf3703 100644 --- a/clients/client-iot-wireless/src/commands/UpdateDestinationCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateDestinationRequest, UpdateDestinationResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateDestinationRequest, UpdateDestinationResponse } from "../models/models_1"; import { UpdateDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateEventConfigurationByResourceTypesCommand.ts b/clients/client-iot-wireless/src/commands/UpdateEventConfigurationByResourceTypesCommand.ts index 81af1f5e6c934..6c03511c7e35a 100644 --- a/clients/client-iot-wireless/src/commands/UpdateEventConfigurationByResourceTypesCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateEventConfigurationByResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateEventConfigurationByResourceTypesRequest, UpdateEventConfigurationByResourceTypesResponse, } from "../models/models_1"; diff --git a/clients/client-iot-wireless/src/commands/UpdateFuotaTaskCommand.ts b/clients/client-iot-wireless/src/commands/UpdateFuotaTaskCommand.ts index 1d076eadc82dc..78245628bb2e4 100644 --- a/clients/client-iot-wireless/src/commands/UpdateFuotaTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateFuotaTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateFuotaTaskRequest, UpdateFuotaTaskResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateFuotaTaskRequest, UpdateFuotaTaskResponse } from "../models/models_1"; import { UpdateFuotaTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateLogLevelsByResourceTypesCommand.ts b/clients/client-iot-wireless/src/commands/UpdateLogLevelsByResourceTypesCommand.ts index bd327ecdee009..6d1b200c903d0 100644 --- a/clients/client-iot-wireless/src/commands/UpdateLogLevelsByResourceTypesCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateLogLevelsByResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateLogLevelsByResourceTypesRequest, UpdateLogLevelsByResourceTypesResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateLogLevelsByResourceTypesRequest, UpdateLogLevelsByResourceTypesResponse } from "../models/models_1"; import { UpdateLogLevelsByResourceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateMetricConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/UpdateMetricConfigurationCommand.ts index c5dfb520d72ee..7ec17a4369a9a 100644 --- a/clients/client-iot-wireless/src/commands/UpdateMetricConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateMetricConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateMetricConfigurationRequest, UpdateMetricConfigurationResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateMetricConfigurationRequest, UpdateMetricConfigurationResponse } from "../models/models_1"; import { UpdateMetricConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateMulticastGroupCommand.ts b/clients/client-iot-wireless/src/commands/UpdateMulticastGroupCommand.ts index d6779648bf02c..e7ff55b13da7a 100644 --- a/clients/client-iot-wireless/src/commands/UpdateMulticastGroupCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateMulticastGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateMulticastGroupRequest, UpdateMulticastGroupResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateMulticastGroupRequest, UpdateMulticastGroupResponse } from "../models/models_1"; import { UpdateMulticastGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateNetworkAnalyzerConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/UpdateNetworkAnalyzerConfigurationCommand.ts index 38731f6a0c526..c72404de1d9ca 100644 --- a/clients/client-iot-wireless/src/commands/UpdateNetworkAnalyzerConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateNetworkAnalyzerConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateNetworkAnalyzerConfigurationRequest, UpdateNetworkAnalyzerConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-iot-wireless/src/commands/UpdatePartnerAccountCommand.ts b/clients/client-iot-wireless/src/commands/UpdatePartnerAccountCommand.ts index 50cad3088fe62..4e0702c114187 100644 --- a/clients/client-iot-wireless/src/commands/UpdatePartnerAccountCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdatePartnerAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdatePartnerAccountRequest, UpdatePartnerAccountResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdatePartnerAccountRequest, UpdatePartnerAccountResponse } from "../models/models_1"; import { UpdatePartnerAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdatePositionCommand.ts b/clients/client-iot-wireless/src/commands/UpdatePositionCommand.ts index e41919040ba93..a5172c5ec633f 100644 --- a/clients/client-iot-wireless/src/commands/UpdatePositionCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdatePositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdatePositionRequest, UpdatePositionResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdatePositionRequest, UpdatePositionResponse } from "../models/models_1"; import { UpdatePosition } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateResourceEventConfigurationCommand.ts b/clients/client-iot-wireless/src/commands/UpdateResourceEventConfigurationCommand.ts index c26fc444f5bc8..40305371ec86d 100644 --- a/clients/client-iot-wireless/src/commands/UpdateResourceEventConfigurationCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateResourceEventConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateResourceEventConfigurationRequest, UpdateResourceEventConfigurationResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { + UpdateResourceEventConfigurationRequest, + UpdateResourceEventConfigurationResponse, +} from "../models/models_1"; import { UpdateResourceEventConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateResourcePositionCommand.ts b/clients/client-iot-wireless/src/commands/UpdateResourcePositionCommand.ts index 8988da20d8415..cf6cbc45b4ee0 100644 --- a/clients/client-iot-wireless/src/commands/UpdateResourcePositionCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateResourcePositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateResourcePositionRequest, UpdateResourcePositionResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import { type UpdateResourcePositionResponse, UpdateResourcePositionRequest } from "../models/models_1"; import { UpdateResourcePosition } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceCommand.ts b/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceCommand.ts index 2bb43b123440b..e03a9d45f10c8 100644 --- a/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateWirelessDeviceRequest, UpdateWirelessDeviceResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateWirelessDeviceRequest, UpdateWirelessDeviceResponse } from "../models/models_1"; import { UpdateWirelessDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceImportTaskCommand.ts b/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceImportTaskCommand.ts index 91a373dc7ab46..0909b23ab18f4 100644 --- a/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceImportTaskCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateWirelessDeviceImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateWirelessDeviceImportTaskRequest, UpdateWirelessDeviceImportTaskResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateWirelessDeviceImportTaskRequest, UpdateWirelessDeviceImportTaskResponse } from "../models/models_1"; import { UpdateWirelessDeviceImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/commands/UpdateWirelessGatewayCommand.ts b/clients/client-iot-wireless/src/commands/UpdateWirelessGatewayCommand.ts index 09bebe4ac06e3..3710e0411d818 100644 --- a/clients/client-iot-wireless/src/commands/UpdateWirelessGatewayCommand.ts +++ b/clients/client-iot-wireless/src/commands/UpdateWirelessGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; -import { UpdateWirelessGatewayRequest, UpdateWirelessGatewayResponse } from "../models/models_1"; +import type { IoTWirelessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTWirelessClient"; +import type { UpdateWirelessGatewayRequest, UpdateWirelessGatewayResponse } from "../models/models_1"; import { UpdateWirelessGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot-wireless/src/endpoint/EndpointParameters.ts b/clients/client-iot-wireless/src/endpoint/EndpointParameters.ts index 9517aaf3f6f32..516180e622701 100644 --- a/clients/client-iot-wireless/src/endpoint/EndpointParameters.ts +++ b/clients/client-iot-wireless/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iot-wireless/src/endpoint/endpointResolver.ts b/clients/client-iot-wireless/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iot-wireless/src/endpoint/endpointResolver.ts +++ b/clients/client-iot-wireless/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iot-wireless/src/extensionConfiguration.ts b/clients/client-iot-wireless/src/extensionConfiguration.ts index 52f98d30b2faa..8bc3845d41857 100644 --- a/clients/client-iot-wireless/src/extensionConfiguration.ts +++ b/clients/client-iot-wireless/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iot-wireless/src/models/IoTWirelessServiceException.ts b/clients/client-iot-wireless/src/models/IoTWirelessServiceException.ts index 225551a8ce758..c2fb3b5792134 100644 --- a/clients/client-iot-wireless/src/models/IoTWirelessServiceException.ts +++ b/clients/client-iot-wireless/src/models/IoTWirelessServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iot-wireless/src/models/errors.ts b/clients/client-iot-wireless/src/models/errors.ts index 6717fe31fa959..934467f9d5d5c 100644 --- a/clients/client-iot-wireless/src/models/errors.ts +++ b/clients/client-iot-wireless/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException"; diff --git a/clients/client-iot-wireless/src/pagination/Interfaces.ts b/clients/client-iot-wireless/src/pagination/Interfaces.ts index 13552c4d34b14..c9c553c59605d 100644 --- a/clients/client-iot-wireless/src/pagination/Interfaces.ts +++ b/clients/client-iot-wireless/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTWirelessClient } from "../IoTWirelessClient"; diff --git a/clients/client-iot-wireless/src/pagination/ListDestinationsPaginator.ts b/clients/client-iot-wireless/src/pagination/ListDestinationsPaginator.ts index f2d153dcfd670..94d92ce7a5cd2 100644 --- a/clients/client-iot-wireless/src/pagination/ListDestinationsPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDestinationsCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListDeviceProfilesPaginator.ts b/clients/client-iot-wireless/src/pagination/ListDeviceProfilesPaginator.ts index 3bf2e89839857..1a4d6c2b3596b 100644 --- a/clients/client-iot-wireless/src/pagination/ListDeviceProfilesPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListDeviceProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeviceProfilesCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListFuotaTasksPaginator.ts b/clients/client-iot-wireless/src/pagination/ListFuotaTasksPaginator.ts index d69cf41b362f8..cfdbc4bb45c84 100644 --- a/clients/client-iot-wireless/src/pagination/ListFuotaTasksPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListFuotaTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFuotaTasksCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListMulticastGroupsByFuotaTaskPaginator.ts b/clients/client-iot-wireless/src/pagination/ListMulticastGroupsByFuotaTaskPaginator.ts index 3658b9b9c7050..e0d35328ed3e7 100644 --- a/clients/client-iot-wireless/src/pagination/ListMulticastGroupsByFuotaTaskPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListMulticastGroupsByFuotaTaskPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMulticastGroupsByFuotaTaskCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListMulticastGroupsPaginator.ts b/clients/client-iot-wireless/src/pagination/ListMulticastGroupsPaginator.ts index fde6410c87b4a..6006f5537e007 100644 --- a/clients/client-iot-wireless/src/pagination/ListMulticastGroupsPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListMulticastGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMulticastGroupsCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListNetworkAnalyzerConfigurationsPaginator.ts b/clients/client-iot-wireless/src/pagination/ListNetworkAnalyzerConfigurationsPaginator.ts index 2a1bcdc252a5e..d7756b24a92e1 100644 --- a/clients/client-iot-wireless/src/pagination/ListNetworkAnalyzerConfigurationsPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListNetworkAnalyzerConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNetworkAnalyzerConfigurationsCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListPositionConfigurationsPaginator.ts b/clients/client-iot-wireless/src/pagination/ListPositionConfigurationsPaginator.ts index 9e2edafc35d84..41aec8f2fec57 100644 --- a/clients/client-iot-wireless/src/pagination/ListPositionConfigurationsPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListPositionConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPositionConfigurationsCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListQueuedMessagesPaginator.ts b/clients/client-iot-wireless/src/pagination/ListQueuedMessagesPaginator.ts index 97d2864f65246..762ea86599376 100644 --- a/clients/client-iot-wireless/src/pagination/ListQueuedMessagesPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListQueuedMessagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueuedMessagesCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListServiceProfilesPaginator.ts b/clients/client-iot-wireless/src/pagination/ListServiceProfilesPaginator.ts index 2f65127edf9fc..0be7ebc08a693 100644 --- a/clients/client-iot-wireless/src/pagination/ListServiceProfilesPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListServiceProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceProfilesCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListWirelessDevicesPaginator.ts b/clients/client-iot-wireless/src/pagination/ListWirelessDevicesPaginator.ts index e85933da90c48..5880bc335c516 100644 --- a/clients/client-iot-wireless/src/pagination/ListWirelessDevicesPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListWirelessDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWirelessDevicesCommand, diff --git a/clients/client-iot-wireless/src/pagination/ListWirelessGatewaysPaginator.ts b/clients/client-iot-wireless/src/pagination/ListWirelessGatewaysPaginator.ts index 54f5da9b86f29..dd8669d7b1b68 100644 --- a/clients/client-iot-wireless/src/pagination/ListWirelessGatewaysPaginator.ts +++ b/clients/client-iot-wireless/src/pagination/ListWirelessGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWirelessGatewaysCommand, diff --git a/clients/client-iot-wireless/src/runtimeConfig.browser.ts b/clients/client-iot-wireless/src/runtimeConfig.browser.ts index 06723dde2185d..c39fedf0eb5d6 100644 --- a/clients/client-iot-wireless/src/runtimeConfig.browser.ts +++ b/clients/client-iot-wireless/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTWirelessClientConfig } from "./IoTWirelessClient"; + +import type { IoTWirelessClientConfig } from "./IoTWirelessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iot-wireless/src/runtimeConfig.native.ts b/clients/client-iot-wireless/src/runtimeConfig.native.ts index 1609fcd86bdd0..b2e5796fc4e45 100644 --- a/clients/client-iot-wireless/src/runtimeConfig.native.ts +++ b/clients/client-iot-wireless/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTWirelessClientConfig } from "./IoTWirelessClient"; +import type { IoTWirelessClientConfig } from "./IoTWirelessClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iot-wireless/src/runtimeConfig.shared.ts b/clients/client-iot-wireless/src/runtimeConfig.shared.ts index 25a632cad9ed0..d724b49a7fe6a 100644 --- a/clients/client-iot-wireless/src/runtimeConfig.shared.ts +++ b/clients/client-iot-wireless/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTWirelessHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTWirelessClientConfig } from "./IoTWirelessClient"; +import type { IoTWirelessClientConfig } from "./IoTWirelessClient"; /** * @internal diff --git a/clients/client-iot-wireless/src/runtimeConfig.ts b/clients/client-iot-wireless/src/runtimeConfig.ts index 483079f784f86..1944b412b6764 100644 --- a/clients/client-iot-wireless/src/runtimeConfig.ts +++ b/clients/client-iot-wireless/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTWirelessClientConfig } from "./IoTWirelessClient"; + +import type { IoTWirelessClientConfig } from "./IoTWirelessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iot-wireless/src/runtimeExtensions.ts b/clients/client-iot-wireless/src/runtimeExtensions.ts index dbaec84218eee..1fdc919d63552 100644 --- a/clients/client-iot-wireless/src/runtimeExtensions.ts +++ b/clients/client-iot-wireless/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTWirelessExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTWirelessExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iot-wireless/src/schemas/schemas_0.ts b/clients/client-iot-wireless/src/schemas/schemas_0.ts index 19f7e3c23cc93..0720b9bb0d275 100644 --- a/clients/client-iot-wireless/src/schemas/schemas_0.ts +++ b/clients/client-iot-wireless/src/schemas/schemas_0.ts @@ -860,7 +860,7 @@ const n0 = "com.amazonaws.iotwireless"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-iot/package.json b/clients/client-iot/package.json index b799d9d9cb0f8..9277a1021593b 100644 --- a/clients/client-iot/package.json +++ b/clients/client-iot/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iot/src/IoT.ts b/clients/client-iot/src/IoT.ts index 528ad6a7a2720..87e497a174104 100644 --- a/clients/client-iot/src/IoT.ts +++ b/clients/client-iot/src/IoT.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptCertificateTransferCommand, @@ -1294,7 +1294,7 @@ import { ValidateSecurityProfileBehaviorsCommandInput, ValidateSecurityProfileBehaviorsCommandOutput, } from "./commands/ValidateSecurityProfileBehaviorsCommand"; -import { IoTClient, IoTClientConfig } from "./IoTClient"; +import { IoTClient } from "./IoTClient"; const commands = { AcceptCertificateTransferCommand, diff --git a/clients/client-iot/src/IoTClient.ts b/clients/client-iot/src/IoTClient.ts index a45eb7b32eb31..5d9d28352497c 100644 --- a/clients/client-iot/src/IoTClient.ts +++ b/clients/client-iot/src/IoTClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, getOmitRetryHeadersPlugin, getRetryPlugin, resolveRetryConfig, - RetryInputConfig, - RetryResolvedConfig, } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -819,7 +823,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iot/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iot/src/auth/httpAuthExtensionConfiguration.ts index e8943b0e84ae0..474015568e014 100644 --- a/clients/client-iot/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iot/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iot/src/auth/httpAuthSchemeProvider.ts b/clients/client-iot/src/auth/httpAuthSchemeProvider.ts index b02bb38f42572..8c2ffeb6bac64 100644 --- a/clients/client-iot/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iot/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTClientConfig, IoTClientResolvedConfig } from "../IoTClient"; +import { type IoTClientResolvedConfig, IoTClientConfig } from "../IoTClient"; /** * @internal diff --git a/clients/client-iot/src/commands/AcceptCertificateTransferCommand.ts b/clients/client-iot/src/commands/AcceptCertificateTransferCommand.ts index 9da08a75bac39..596ee1eff3bf7 100644 --- a/clients/client-iot/src/commands/AcceptCertificateTransferCommand.ts +++ b/clients/client-iot/src/commands/AcceptCertificateTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { AcceptCertificateTransferRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { AcceptCertificateTransferRequest } from "../models/models_0"; import { AcceptCertificateTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/AddThingToBillingGroupCommand.ts b/clients/client-iot/src/commands/AddThingToBillingGroupCommand.ts index 9a2c3a21bd71d..2d6ad9667c240 100644 --- a/clients/client-iot/src/commands/AddThingToBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/AddThingToBillingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { AddThingToBillingGroupRequest, AddThingToBillingGroupResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { AddThingToBillingGroupRequest, AddThingToBillingGroupResponse } from "../models/models_0"; import { AddThingToBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/AddThingToThingGroupCommand.ts b/clients/client-iot/src/commands/AddThingToThingGroupCommand.ts index 622d5295dcb0a..738ef4c50293c 100644 --- a/clients/client-iot/src/commands/AddThingToThingGroupCommand.ts +++ b/clients/client-iot/src/commands/AddThingToThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { AddThingToThingGroupRequest, AddThingToThingGroupResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { AddThingToThingGroupRequest, AddThingToThingGroupResponse } from "../models/models_0"; import { AddThingToThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/AssociateSbomWithPackageVersionCommand.ts b/clients/client-iot/src/commands/AssociateSbomWithPackageVersionCommand.ts index a24ce0126d18b..0f1887452f37b 100644 --- a/clients/client-iot/src/commands/AssociateSbomWithPackageVersionCommand.ts +++ b/clients/client-iot/src/commands/AssociateSbomWithPackageVersionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { AssociateSbomWithPackageVersionRequest, AssociateSbomWithPackageVersionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + AssociateSbomWithPackageVersionRequest, + AssociateSbomWithPackageVersionResponse, +} from "../models/models_0"; import { AssociateSbomWithPackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/AssociateTargetsWithJobCommand.ts b/clients/client-iot/src/commands/AssociateTargetsWithJobCommand.ts index 584f5e7f4077f..3e4244b411f89 100644 --- a/clients/client-iot/src/commands/AssociateTargetsWithJobCommand.ts +++ b/clients/client-iot/src/commands/AssociateTargetsWithJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { AssociateTargetsWithJobRequest, AssociateTargetsWithJobResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { AssociateTargetsWithJobRequest, AssociateTargetsWithJobResponse } from "../models/models_0"; import { AssociateTargetsWithJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/AttachPolicyCommand.ts b/clients/client-iot/src/commands/AttachPolicyCommand.ts index a574dbfa64afb..d0b5e01369cd8 100644 --- a/clients/client-iot/src/commands/AttachPolicyCommand.ts +++ b/clients/client-iot/src/commands/AttachPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { AttachPolicyRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { AttachPolicyRequest } from "../models/models_0"; import { AttachPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/AttachPrincipalPolicyCommand.ts b/clients/client-iot/src/commands/AttachPrincipalPolicyCommand.ts index d5f391c9e493a..8a2181577a3e3 100644 --- a/clients/client-iot/src/commands/AttachPrincipalPolicyCommand.ts +++ b/clients/client-iot/src/commands/AttachPrincipalPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { AttachPrincipalPolicyRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { AttachPrincipalPolicyRequest } from "../models/models_0"; import { AttachPrincipalPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/AttachSecurityProfileCommand.ts b/clients/client-iot/src/commands/AttachSecurityProfileCommand.ts index ba63fec1bef6d..681c9d51dd306 100644 --- a/clients/client-iot/src/commands/AttachSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/AttachSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { AttachSecurityProfileRequest, AttachSecurityProfileResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { AttachSecurityProfileRequest, AttachSecurityProfileResponse } from "../models/models_0"; import { AttachSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/AttachThingPrincipalCommand.ts b/clients/client-iot/src/commands/AttachThingPrincipalCommand.ts index e2b41a0fa357a..54ec9f3c6bed4 100644 --- a/clients/client-iot/src/commands/AttachThingPrincipalCommand.ts +++ b/clients/client-iot/src/commands/AttachThingPrincipalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { AttachThingPrincipalRequest, AttachThingPrincipalResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { AttachThingPrincipalRequest, AttachThingPrincipalResponse } from "../models/models_0"; import { AttachThingPrincipal } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CancelAuditMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/CancelAuditMitigationActionsTaskCommand.ts index 6ce2801dcf1f7..a5c37566786fc 100644 --- a/clients/client-iot/src/commands/CancelAuditMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/CancelAuditMitigationActionsTaskCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CancelAuditMitigationActionsTaskRequest, CancelAuditMitigationActionsTaskResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + CancelAuditMitigationActionsTaskRequest, + CancelAuditMitigationActionsTaskResponse, +} from "../models/models_0"; import { CancelAuditMitigationActionsTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CancelAuditTaskCommand.ts b/clients/client-iot/src/commands/CancelAuditTaskCommand.ts index 3136eccc76c8e..8c7cad5aad538 100644 --- a/clients/client-iot/src/commands/CancelAuditTaskCommand.ts +++ b/clients/client-iot/src/commands/CancelAuditTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CancelAuditTaskRequest, CancelAuditTaskResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CancelAuditTaskRequest, CancelAuditTaskResponse } from "../models/models_0"; import { CancelAuditTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CancelCertificateTransferCommand.ts b/clients/client-iot/src/commands/CancelCertificateTransferCommand.ts index 40320bc97a876..4d5e396f2cd28 100644 --- a/clients/client-iot/src/commands/CancelCertificateTransferCommand.ts +++ b/clients/client-iot/src/commands/CancelCertificateTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CancelCertificateTransferRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CancelCertificateTransferRequest } from "../models/models_0"; import { CancelCertificateTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CancelDetectMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/CancelDetectMitigationActionsTaskCommand.ts index f6f3f3eb3ed10..d221a57ba13a5 100644 --- a/clients/client-iot/src/commands/CancelDetectMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/CancelDetectMitigationActionsTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CancelDetectMitigationActionsTaskRequest, CancelDetectMitigationActionsTaskResponse, } from "../models/models_0"; diff --git a/clients/client-iot/src/commands/CancelJobCommand.ts b/clients/client-iot/src/commands/CancelJobCommand.ts index b74a305965783..e783c5f47b34e 100644 --- a/clients/client-iot/src/commands/CancelJobCommand.ts +++ b/clients/client-iot/src/commands/CancelJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CancelJobRequest, CancelJobResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CancelJobRequest, CancelJobResponse } from "../models/models_0"; import { CancelJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CancelJobExecutionCommand.ts b/clients/client-iot/src/commands/CancelJobExecutionCommand.ts index eb591af3270fb..547a0f1d578ed 100644 --- a/clients/client-iot/src/commands/CancelJobExecutionCommand.ts +++ b/clients/client-iot/src/commands/CancelJobExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CancelJobExecutionRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CancelJobExecutionRequest } from "../models/models_0"; import { CancelJobExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ClearDefaultAuthorizerCommand.ts b/clients/client-iot/src/commands/ClearDefaultAuthorizerCommand.ts index 6e7cb5523c403..f4b830bdc6455 100644 --- a/clients/client-iot/src/commands/ClearDefaultAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/ClearDefaultAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ClearDefaultAuthorizerRequest, ClearDefaultAuthorizerResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ClearDefaultAuthorizerRequest, ClearDefaultAuthorizerResponse } from "../models/models_0"; import { ClearDefaultAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ConfirmTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/ConfirmTopicRuleDestinationCommand.ts index 8c744c7693d8a..fd5b9857022ea 100644 --- a/clients/client-iot/src/commands/ConfirmTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/ConfirmTopicRuleDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ConfirmTopicRuleDestinationRequest, ConfirmTopicRuleDestinationResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ConfirmTopicRuleDestinationRequest, ConfirmTopicRuleDestinationResponse } from "../models/models_0"; import { ConfirmTopicRuleDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateAuditSuppressionCommand.ts b/clients/client-iot/src/commands/CreateAuditSuppressionCommand.ts index 5dfb00b696337..b44dd74629e45 100644 --- a/clients/client-iot/src/commands/CreateAuditSuppressionCommand.ts +++ b/clients/client-iot/src/commands/CreateAuditSuppressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateAuditSuppressionRequest, CreateAuditSuppressionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateAuditSuppressionRequest, CreateAuditSuppressionResponse } from "../models/models_0"; import { CreateAuditSuppression } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateAuthorizerCommand.ts b/clients/client-iot/src/commands/CreateAuthorizerCommand.ts index 404a4e47e7019..344931acfdb62 100644 --- a/clients/client-iot/src/commands/CreateAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/CreateAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateAuthorizerRequest, CreateAuthorizerResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateAuthorizerRequest, CreateAuthorizerResponse } from "../models/models_0"; import { CreateAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateBillingGroupCommand.ts b/clients/client-iot/src/commands/CreateBillingGroupCommand.ts index a243634122119..c6fe3328af151 100644 --- a/clients/client-iot/src/commands/CreateBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/CreateBillingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateBillingGroupRequest, CreateBillingGroupResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateBillingGroupRequest, CreateBillingGroupResponse } from "../models/models_0"; import { CreateBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateCertificateFromCsrCommand.ts b/clients/client-iot/src/commands/CreateCertificateFromCsrCommand.ts index 34a4497ba2963..f7410bd6ed82a 100644 --- a/clients/client-iot/src/commands/CreateCertificateFromCsrCommand.ts +++ b/clients/client-iot/src/commands/CreateCertificateFromCsrCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateCertificateFromCsrRequest, CreateCertificateFromCsrResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateCertificateFromCsrRequest, CreateCertificateFromCsrResponse } from "../models/models_0"; import { CreateCertificateFromCsr } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateCertificateProviderCommand.ts b/clients/client-iot/src/commands/CreateCertificateProviderCommand.ts index 077ad96054d76..15ce20a23813d 100644 --- a/clients/client-iot/src/commands/CreateCertificateProviderCommand.ts +++ b/clients/client-iot/src/commands/CreateCertificateProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateCertificateProviderRequest, CreateCertificateProviderResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateCertificateProviderRequest, CreateCertificateProviderResponse } from "../models/models_0"; import { CreateCertificateProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateCommandCommand.ts b/clients/client-iot/src/commands/CreateCommandCommand.ts index 15f679c21c9be..5209460908228 100644 --- a/clients/client-iot/src/commands/CreateCommandCommand.ts +++ b/clients/client-iot/src/commands/CreateCommandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateCommandRequest, CreateCommandResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateCommandRequest, CreateCommandResponse } from "../models/models_0"; import { CreateCommand } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateCustomMetricCommand.ts b/clients/client-iot/src/commands/CreateCustomMetricCommand.ts index 4da5d8688f843..cfb59a67e030f 100644 --- a/clients/client-iot/src/commands/CreateCustomMetricCommand.ts +++ b/clients/client-iot/src/commands/CreateCustomMetricCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateCustomMetricRequest, CreateCustomMetricResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateCustomMetricRequest, CreateCustomMetricResponse } from "../models/models_0"; import { CreateCustomMetric } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateDimensionCommand.ts b/clients/client-iot/src/commands/CreateDimensionCommand.ts index 799205af5bb4b..5d5378ae54dc8 100644 --- a/clients/client-iot/src/commands/CreateDimensionCommand.ts +++ b/clients/client-iot/src/commands/CreateDimensionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateDimensionRequest, CreateDimensionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateDimensionRequest, CreateDimensionResponse } from "../models/models_0"; import { CreateDimension } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateDomainConfigurationCommand.ts b/clients/client-iot/src/commands/CreateDomainConfigurationCommand.ts index beb3b856bca13..cda94ecfd2171 100644 --- a/clients/client-iot/src/commands/CreateDomainConfigurationCommand.ts +++ b/clients/client-iot/src/commands/CreateDomainConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateDomainConfigurationRequest, CreateDomainConfigurationResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateDomainConfigurationRequest, CreateDomainConfigurationResponse } from "../models/models_0"; import { CreateDomainConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateDynamicThingGroupCommand.ts b/clients/client-iot/src/commands/CreateDynamicThingGroupCommand.ts index c079688f0f7a4..cf813f5e2bc0f 100644 --- a/clients/client-iot/src/commands/CreateDynamicThingGroupCommand.ts +++ b/clients/client-iot/src/commands/CreateDynamicThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateDynamicThingGroupRequest, CreateDynamicThingGroupResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateDynamicThingGroupRequest, CreateDynamicThingGroupResponse } from "../models/models_0"; import { CreateDynamicThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateFleetMetricCommand.ts b/clients/client-iot/src/commands/CreateFleetMetricCommand.ts index bf71f1b600f9d..fb44ebd894708 100644 --- a/clients/client-iot/src/commands/CreateFleetMetricCommand.ts +++ b/clients/client-iot/src/commands/CreateFleetMetricCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateFleetMetricRequest, CreateFleetMetricResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateFleetMetricRequest, CreateFleetMetricResponse } from "../models/models_0"; import { CreateFleetMetric } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateJobCommand.ts b/clients/client-iot/src/commands/CreateJobCommand.ts index a09b606fe2818..cccaaf9e81a67 100644 --- a/clients/client-iot/src/commands/CreateJobCommand.ts +++ b/clients/client-iot/src/commands/CreateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateJobRequest, CreateJobResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateJobRequest, CreateJobResponse } from "../models/models_0"; import { CreateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateJobTemplateCommand.ts b/clients/client-iot/src/commands/CreateJobTemplateCommand.ts index ac916b9e685b2..a57bd2534ad16 100644 --- a/clients/client-iot/src/commands/CreateJobTemplateCommand.ts +++ b/clients/client-iot/src/commands/CreateJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_0"; import { CreateJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateKeysAndCertificateCommand.ts b/clients/client-iot/src/commands/CreateKeysAndCertificateCommand.ts index 30b8d3613aff9..483f53c18c8ad 100644 --- a/clients/client-iot/src/commands/CreateKeysAndCertificateCommand.ts +++ b/clients/client-iot/src/commands/CreateKeysAndCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateKeysAndCertificateRequest, CreateKeysAndCertificateResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateKeysAndCertificateRequest, CreateKeysAndCertificateResponse } from "../models/models_0"; import { CreateKeysAndCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateMitigationActionCommand.ts b/clients/client-iot/src/commands/CreateMitigationActionCommand.ts index e6cd14cb145bd..6773bb35d3574 100644 --- a/clients/client-iot/src/commands/CreateMitigationActionCommand.ts +++ b/clients/client-iot/src/commands/CreateMitigationActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateMitigationActionRequest, CreateMitigationActionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateMitigationActionRequest, CreateMitigationActionResponse } from "../models/models_0"; import { CreateMitigationAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateOTAUpdateCommand.ts b/clients/client-iot/src/commands/CreateOTAUpdateCommand.ts index 6e25e04e47ae0..d75ae261447df 100644 --- a/clients/client-iot/src/commands/CreateOTAUpdateCommand.ts +++ b/clients/client-iot/src/commands/CreateOTAUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateOTAUpdateRequest, CreateOTAUpdateResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateOTAUpdateRequest, CreateOTAUpdateResponse } from "../models/models_0"; import { CreateOTAUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreatePackageCommand.ts b/clients/client-iot/src/commands/CreatePackageCommand.ts index 91b2536b2cb1d..b1a49925ce6f9 100644 --- a/clients/client-iot/src/commands/CreatePackageCommand.ts +++ b/clients/client-iot/src/commands/CreatePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreatePackageRequest, CreatePackageResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreatePackageRequest, CreatePackageResponse } from "../models/models_0"; import { CreatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreatePackageVersionCommand.ts b/clients/client-iot/src/commands/CreatePackageVersionCommand.ts index 7ac2683e531f5..e10d4aa6236ab 100644 --- a/clients/client-iot/src/commands/CreatePackageVersionCommand.ts +++ b/clients/client-iot/src/commands/CreatePackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreatePackageVersionRequest, CreatePackageVersionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreatePackageVersionRequest, CreatePackageVersionResponse } from "../models/models_0"; import { CreatePackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreatePolicyCommand.ts b/clients/client-iot/src/commands/CreatePolicyCommand.ts index 1dade7302498b..e2fcb4bb04d34 100644 --- a/clients/client-iot/src/commands/CreatePolicyCommand.ts +++ b/clients/client-iot/src/commands/CreatePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0"; import { CreatePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreatePolicyVersionCommand.ts b/clients/client-iot/src/commands/CreatePolicyVersionCommand.ts index e81cc8282f17e..9f9e8861071b4 100644 --- a/clients/client-iot/src/commands/CreatePolicyVersionCommand.ts +++ b/clients/client-iot/src/commands/CreatePolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreatePolicyVersionRequest, CreatePolicyVersionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreatePolicyVersionRequest, CreatePolicyVersionResponse } from "../models/models_0"; import { CreatePolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateProvisioningClaimCommand.ts b/clients/client-iot/src/commands/CreateProvisioningClaimCommand.ts index 1d09ef2be8504..c50a211e28480 100644 --- a/clients/client-iot/src/commands/CreateProvisioningClaimCommand.ts +++ b/clients/client-iot/src/commands/CreateProvisioningClaimCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateProvisioningClaimRequest, CreateProvisioningClaimResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateProvisioningClaimRequest, CreateProvisioningClaimResponse } from "../models/models_0"; import { CreateProvisioningClaim } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateProvisioningTemplateCommand.ts b/clients/client-iot/src/commands/CreateProvisioningTemplateCommand.ts index 75477ee09dd18..994c1b02b659b 100644 --- a/clients/client-iot/src/commands/CreateProvisioningTemplateCommand.ts +++ b/clients/client-iot/src/commands/CreateProvisioningTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateProvisioningTemplateRequest, CreateProvisioningTemplateResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateProvisioningTemplateRequest, CreateProvisioningTemplateResponse } from "../models/models_0"; import { CreateProvisioningTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateProvisioningTemplateVersionCommand.ts b/clients/client-iot/src/commands/CreateProvisioningTemplateVersionCommand.ts index 76a4ec3da3168..526b4b41b284f 100644 --- a/clients/client-iot/src/commands/CreateProvisioningTemplateVersionCommand.ts +++ b/clients/client-iot/src/commands/CreateProvisioningTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateProvisioningTemplateVersionRequest, CreateProvisioningTemplateVersionResponse, } from "../models/models_0"; diff --git a/clients/client-iot/src/commands/CreateRoleAliasCommand.ts b/clients/client-iot/src/commands/CreateRoleAliasCommand.ts index 23aae76cbab8e..b024ebf14787b 100644 --- a/clients/client-iot/src/commands/CreateRoleAliasCommand.ts +++ b/clients/client-iot/src/commands/CreateRoleAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateRoleAliasRequest, CreateRoleAliasResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateRoleAliasRequest, CreateRoleAliasResponse } from "../models/models_0"; import { CreateRoleAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateScheduledAuditCommand.ts b/clients/client-iot/src/commands/CreateScheduledAuditCommand.ts index ee2c2114421bc..42b6ebcc05d05 100644 --- a/clients/client-iot/src/commands/CreateScheduledAuditCommand.ts +++ b/clients/client-iot/src/commands/CreateScheduledAuditCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateScheduledAuditRequest, CreateScheduledAuditResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateScheduledAuditRequest, CreateScheduledAuditResponse } from "../models/models_0"; import { CreateScheduledAudit } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateSecurityProfileCommand.ts b/clients/client-iot/src/commands/CreateSecurityProfileCommand.ts index a6014ced45333..d30589e1aa999 100644 --- a/clients/client-iot/src/commands/CreateSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/CreateSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateSecurityProfileRequest, CreateSecurityProfileResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateSecurityProfileRequest, CreateSecurityProfileResponse } from "../models/models_0"; import { CreateSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateStreamCommand.ts b/clients/client-iot/src/commands/CreateStreamCommand.ts index 7c5757517c3d8..6044c12393b3f 100644 --- a/clients/client-iot/src/commands/CreateStreamCommand.ts +++ b/clients/client-iot/src/commands/CreateStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateStreamRequest, CreateStreamResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateStreamRequest, CreateStreamResponse } from "../models/models_0"; import { CreateStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateThingCommand.ts b/clients/client-iot/src/commands/CreateThingCommand.ts index 8e685144555a1..7e035c9bc513c 100644 --- a/clients/client-iot/src/commands/CreateThingCommand.ts +++ b/clients/client-iot/src/commands/CreateThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateThingRequest, CreateThingResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateThingRequest, CreateThingResponse } from "../models/models_0"; import { CreateThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateThingGroupCommand.ts b/clients/client-iot/src/commands/CreateThingGroupCommand.ts index e283c8d61e877..31ad12b2e7995 100644 --- a/clients/client-iot/src/commands/CreateThingGroupCommand.ts +++ b/clients/client-iot/src/commands/CreateThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateThingGroupRequest, CreateThingGroupResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateThingGroupRequest, CreateThingGroupResponse } from "../models/models_0"; import { CreateThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateThingTypeCommand.ts b/clients/client-iot/src/commands/CreateThingTypeCommand.ts index d6c9b070fabb3..e2dc6e56ad618 100644 --- a/clients/client-iot/src/commands/CreateThingTypeCommand.ts +++ b/clients/client-iot/src/commands/CreateThingTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateThingTypeRequest, CreateThingTypeResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateThingTypeRequest, CreateThingTypeResponse } from "../models/models_0"; import { CreateThingType } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateTopicRuleCommand.ts b/clients/client-iot/src/commands/CreateTopicRuleCommand.ts index 00c10125d4dd8..257b2585a4efb 100644 --- a/clients/client-iot/src/commands/CreateTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/CreateTopicRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateTopicRuleRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateTopicRuleRequest } from "../models/models_0"; import { CreateTopicRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/CreateTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/CreateTopicRuleDestinationCommand.ts index df9bb3d8ae308..a5f0359e40883 100644 --- a/clients/client-iot/src/commands/CreateTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/CreateTopicRuleDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { CreateTopicRuleDestinationRequest, CreateTopicRuleDestinationResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { CreateTopicRuleDestinationRequest, CreateTopicRuleDestinationResponse } from "../models/models_0"; import { CreateTopicRuleDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteAccountAuditConfigurationCommand.ts b/clients/client-iot/src/commands/DeleteAccountAuditConfigurationCommand.ts index edc733912edaf..2a38c239ed0ce 100644 --- a/clients/client-iot/src/commands/DeleteAccountAuditConfigurationCommand.ts +++ b/clients/client-iot/src/commands/DeleteAccountAuditConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteAccountAuditConfigurationRequest, DeleteAccountAuditConfigurationResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + DeleteAccountAuditConfigurationRequest, + DeleteAccountAuditConfigurationResponse, +} from "../models/models_0"; import { DeleteAccountAuditConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteAuditSuppressionCommand.ts b/clients/client-iot/src/commands/DeleteAuditSuppressionCommand.ts index 40ec454313277..545e089cb76a1 100644 --- a/clients/client-iot/src/commands/DeleteAuditSuppressionCommand.ts +++ b/clients/client-iot/src/commands/DeleteAuditSuppressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteAuditSuppressionRequest, DeleteAuditSuppressionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteAuditSuppressionRequest, DeleteAuditSuppressionResponse } from "../models/models_0"; import { DeleteAuditSuppression } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteAuthorizerCommand.ts b/clients/client-iot/src/commands/DeleteAuthorizerCommand.ts index 685a3bbba6268..091256310e0a9 100644 --- a/clients/client-iot/src/commands/DeleteAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/DeleteAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteAuthorizerRequest, DeleteAuthorizerResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteAuthorizerRequest, DeleteAuthorizerResponse } from "../models/models_0"; import { DeleteAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteBillingGroupCommand.ts b/clients/client-iot/src/commands/DeleteBillingGroupCommand.ts index 80f572c27e744..87600290bf778 100644 --- a/clients/client-iot/src/commands/DeleteBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/DeleteBillingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteBillingGroupRequest, DeleteBillingGroupResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteBillingGroupRequest, DeleteBillingGroupResponse } from "../models/models_0"; import { DeleteBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteCACertificateCommand.ts b/clients/client-iot/src/commands/DeleteCACertificateCommand.ts index 8d65ceb541f57..d2ff1fcf26713 100644 --- a/clients/client-iot/src/commands/DeleteCACertificateCommand.ts +++ b/clients/client-iot/src/commands/DeleteCACertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteCACertificateRequest, DeleteCACertificateResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteCACertificateRequest, DeleteCACertificateResponse } from "../models/models_0"; import { DeleteCACertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteCertificateCommand.ts b/clients/client-iot/src/commands/DeleteCertificateCommand.ts index 58f8beddbaadc..0b27ba67ad06a 100644 --- a/clients/client-iot/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-iot/src/commands/DeleteCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteCertificateRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteCertificateRequest } from "../models/models_0"; import { DeleteCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteCertificateProviderCommand.ts b/clients/client-iot/src/commands/DeleteCertificateProviderCommand.ts index 3a1ae8084691a..cc21e2dee9450 100644 --- a/clients/client-iot/src/commands/DeleteCertificateProviderCommand.ts +++ b/clients/client-iot/src/commands/DeleteCertificateProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteCertificateProviderRequest, DeleteCertificateProviderResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteCertificateProviderRequest, DeleteCertificateProviderResponse } from "../models/models_0"; import { DeleteCertificateProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteCommandCommand.ts b/clients/client-iot/src/commands/DeleteCommandCommand.ts index 8da1073dccebc..29be5564cb092 100644 --- a/clients/client-iot/src/commands/DeleteCommandCommand.ts +++ b/clients/client-iot/src/commands/DeleteCommandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteCommandRequest, DeleteCommandResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteCommandRequest, DeleteCommandResponse } from "../models/models_0"; import { DeleteCommand } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteCommandExecutionCommand.ts b/clients/client-iot/src/commands/DeleteCommandExecutionCommand.ts index b166e0bb9047e..ab7efde26e17f 100644 --- a/clients/client-iot/src/commands/DeleteCommandExecutionCommand.ts +++ b/clients/client-iot/src/commands/DeleteCommandExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteCommandExecutionRequest, DeleteCommandExecutionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteCommandExecutionRequest, DeleteCommandExecutionResponse } from "../models/models_0"; import { DeleteCommandExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteCustomMetricCommand.ts b/clients/client-iot/src/commands/DeleteCustomMetricCommand.ts index 99d216a1e40c8..a1b209995ee2f 100644 --- a/clients/client-iot/src/commands/DeleteCustomMetricCommand.ts +++ b/clients/client-iot/src/commands/DeleteCustomMetricCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteCustomMetricRequest, DeleteCustomMetricResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteCustomMetricRequest, DeleteCustomMetricResponse } from "../models/models_0"; import { DeleteCustomMetric } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteDimensionCommand.ts b/clients/client-iot/src/commands/DeleteDimensionCommand.ts index 6676279c4212c..bd01ee401a5ee 100644 --- a/clients/client-iot/src/commands/DeleteDimensionCommand.ts +++ b/clients/client-iot/src/commands/DeleteDimensionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteDimensionRequest, DeleteDimensionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteDimensionRequest, DeleteDimensionResponse } from "../models/models_0"; import { DeleteDimension } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteDomainConfigurationCommand.ts b/clients/client-iot/src/commands/DeleteDomainConfigurationCommand.ts index a477e993190d0..bb16d869b975c 100644 --- a/clients/client-iot/src/commands/DeleteDomainConfigurationCommand.ts +++ b/clients/client-iot/src/commands/DeleteDomainConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteDomainConfigurationRequest, DeleteDomainConfigurationResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteDomainConfigurationRequest, DeleteDomainConfigurationResponse } from "../models/models_0"; import { DeleteDomainConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteDynamicThingGroupCommand.ts b/clients/client-iot/src/commands/DeleteDynamicThingGroupCommand.ts index a5de335527c50..7c8e9183c88c0 100644 --- a/clients/client-iot/src/commands/DeleteDynamicThingGroupCommand.ts +++ b/clients/client-iot/src/commands/DeleteDynamicThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteDynamicThingGroupRequest, DeleteDynamicThingGroupResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteDynamicThingGroupRequest, DeleteDynamicThingGroupResponse } from "../models/models_0"; import { DeleteDynamicThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteFleetMetricCommand.ts b/clients/client-iot/src/commands/DeleteFleetMetricCommand.ts index 0e261154ae40e..35877a1650140 100644 --- a/clients/client-iot/src/commands/DeleteFleetMetricCommand.ts +++ b/clients/client-iot/src/commands/DeleteFleetMetricCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteFleetMetricRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteFleetMetricRequest } from "../models/models_0"; import { DeleteFleetMetric } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteJobCommand.ts b/clients/client-iot/src/commands/DeleteJobCommand.ts index 5f064f34d9da9..e0f50d8608b85 100644 --- a/clients/client-iot/src/commands/DeleteJobCommand.ts +++ b/clients/client-iot/src/commands/DeleteJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteJobRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteJobRequest } from "../models/models_0"; import { DeleteJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteJobExecutionCommand.ts b/clients/client-iot/src/commands/DeleteJobExecutionCommand.ts index 2b095ba582585..44198d2aa6b82 100644 --- a/clients/client-iot/src/commands/DeleteJobExecutionCommand.ts +++ b/clients/client-iot/src/commands/DeleteJobExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteJobExecutionRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteJobExecutionRequest } from "../models/models_0"; import { DeleteJobExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteJobTemplateCommand.ts b/clients/client-iot/src/commands/DeleteJobTemplateCommand.ts index 08d852a63556b..8e9bd51c58174 100644 --- a/clients/client-iot/src/commands/DeleteJobTemplateCommand.ts +++ b/clients/client-iot/src/commands/DeleteJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteJobTemplateRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteJobTemplateRequest } from "../models/models_0"; import { DeleteJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteMitigationActionCommand.ts b/clients/client-iot/src/commands/DeleteMitigationActionCommand.ts index 891f6f066e212..f00cf96617ae0 100644 --- a/clients/client-iot/src/commands/DeleteMitigationActionCommand.ts +++ b/clients/client-iot/src/commands/DeleteMitigationActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteMitigationActionRequest, DeleteMitigationActionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteMitigationActionRequest, DeleteMitigationActionResponse } from "../models/models_0"; import { DeleteMitigationAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteOTAUpdateCommand.ts b/clients/client-iot/src/commands/DeleteOTAUpdateCommand.ts index c8bcf86c16f34..2bf92e0a8a62b 100644 --- a/clients/client-iot/src/commands/DeleteOTAUpdateCommand.ts +++ b/clients/client-iot/src/commands/DeleteOTAUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteOTAUpdateRequest, DeleteOTAUpdateResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteOTAUpdateRequest, DeleteOTAUpdateResponse } from "../models/models_0"; import { DeleteOTAUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeletePackageCommand.ts b/clients/client-iot/src/commands/DeletePackageCommand.ts index 4c9f3e3423209..03544cdf13a12 100644 --- a/clients/client-iot/src/commands/DeletePackageCommand.ts +++ b/clients/client-iot/src/commands/DeletePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeletePackageRequest, DeletePackageResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeletePackageRequest, DeletePackageResponse } from "../models/models_0"; import { DeletePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeletePackageVersionCommand.ts b/clients/client-iot/src/commands/DeletePackageVersionCommand.ts index bfff2eaf689e4..efba1f6b7e79a 100644 --- a/clients/client-iot/src/commands/DeletePackageVersionCommand.ts +++ b/clients/client-iot/src/commands/DeletePackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeletePackageVersionRequest, DeletePackageVersionResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeletePackageVersionRequest, DeletePackageVersionResponse } from "../models/models_0"; import { DeletePackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeletePolicyCommand.ts b/clients/client-iot/src/commands/DeletePolicyCommand.ts index 509ed6edc56c4..fa65e26ae1034 100644 --- a/clients/client-iot/src/commands/DeletePolicyCommand.ts +++ b/clients/client-iot/src/commands/DeletePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeletePolicyRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeletePolicyRequest } from "../models/models_0"; import { DeletePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeletePolicyVersionCommand.ts b/clients/client-iot/src/commands/DeletePolicyVersionCommand.ts index 812ec2dc74f58..bca915f04d3eb 100644 --- a/clients/client-iot/src/commands/DeletePolicyVersionCommand.ts +++ b/clients/client-iot/src/commands/DeletePolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeletePolicyVersionRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeletePolicyVersionRequest } from "../models/models_0"; import { DeletePolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteProvisioningTemplateCommand.ts b/clients/client-iot/src/commands/DeleteProvisioningTemplateCommand.ts index fed84ca64b9cb..7140ac87ca637 100644 --- a/clients/client-iot/src/commands/DeleteProvisioningTemplateCommand.ts +++ b/clients/client-iot/src/commands/DeleteProvisioningTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteProvisioningTemplateRequest, DeleteProvisioningTemplateResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteProvisioningTemplateRequest, DeleteProvisioningTemplateResponse } from "../models/models_0"; import { DeleteProvisioningTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteProvisioningTemplateVersionCommand.ts b/clients/client-iot/src/commands/DeleteProvisioningTemplateVersionCommand.ts index 950111e904e7a..a570a06bea720 100644 --- a/clients/client-iot/src/commands/DeleteProvisioningTemplateVersionCommand.ts +++ b/clients/client-iot/src/commands/DeleteProvisioningTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteProvisioningTemplateVersionRequest, DeleteProvisioningTemplateVersionResponse, } from "../models/models_0"; diff --git a/clients/client-iot/src/commands/DeleteRegistrationCodeCommand.ts b/clients/client-iot/src/commands/DeleteRegistrationCodeCommand.ts index dccbe8b9df98c..3cb14a673ee0c 100644 --- a/clients/client-iot/src/commands/DeleteRegistrationCodeCommand.ts +++ b/clients/client-iot/src/commands/DeleteRegistrationCodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteRegistrationCodeRequest, DeleteRegistrationCodeResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteRegistrationCodeRequest, DeleteRegistrationCodeResponse } from "../models/models_0"; import { DeleteRegistrationCode } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteRoleAliasCommand.ts b/clients/client-iot/src/commands/DeleteRoleAliasCommand.ts index 0230ba945894b..d8ded7e4367a0 100644 --- a/clients/client-iot/src/commands/DeleteRoleAliasCommand.ts +++ b/clients/client-iot/src/commands/DeleteRoleAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteRoleAliasRequest, DeleteRoleAliasResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteRoleAliasRequest, DeleteRoleAliasResponse } from "../models/models_0"; import { DeleteRoleAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteScheduledAuditCommand.ts b/clients/client-iot/src/commands/DeleteScheduledAuditCommand.ts index aec04489fa47c..9cfa8470cd086 100644 --- a/clients/client-iot/src/commands/DeleteScheduledAuditCommand.ts +++ b/clients/client-iot/src/commands/DeleteScheduledAuditCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteScheduledAuditRequest, DeleteScheduledAuditResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteScheduledAuditRequest, DeleteScheduledAuditResponse } from "../models/models_0"; import { DeleteScheduledAudit } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteSecurityProfileCommand.ts b/clients/client-iot/src/commands/DeleteSecurityProfileCommand.ts index c5b57380a0a48..93bb1ee4f01fc 100644 --- a/clients/client-iot/src/commands/DeleteSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/DeleteSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteSecurityProfileRequest, DeleteSecurityProfileResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteSecurityProfileRequest, DeleteSecurityProfileResponse } from "../models/models_0"; import { DeleteSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteStreamCommand.ts b/clients/client-iot/src/commands/DeleteStreamCommand.ts index 5a1af8556c374..818f4bba20847 100644 --- a/clients/client-iot/src/commands/DeleteStreamCommand.ts +++ b/clients/client-iot/src/commands/DeleteStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteStreamRequest, DeleteStreamResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteStreamRequest, DeleteStreamResponse } from "../models/models_0"; import { DeleteStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteThingCommand.ts b/clients/client-iot/src/commands/DeleteThingCommand.ts index 0834a3d9220a5..ed18acd99d046 100644 --- a/clients/client-iot/src/commands/DeleteThingCommand.ts +++ b/clients/client-iot/src/commands/DeleteThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteThingRequest, DeleteThingResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteThingRequest, DeleteThingResponse } from "../models/models_0"; import { DeleteThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteThingGroupCommand.ts b/clients/client-iot/src/commands/DeleteThingGroupCommand.ts index 1f607cd495d36..d2ca6d9655cd5 100644 --- a/clients/client-iot/src/commands/DeleteThingGroupCommand.ts +++ b/clients/client-iot/src/commands/DeleteThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteThingGroupRequest, DeleteThingGroupResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteThingGroupRequest, DeleteThingGroupResponse } from "../models/models_0"; import { DeleteThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteThingTypeCommand.ts b/clients/client-iot/src/commands/DeleteThingTypeCommand.ts index 85860eeb7911a..c75c25be29a48 100644 --- a/clients/client-iot/src/commands/DeleteThingTypeCommand.ts +++ b/clients/client-iot/src/commands/DeleteThingTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteThingTypeRequest, DeleteThingTypeResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteThingTypeRequest, DeleteThingTypeResponse } from "../models/models_0"; import { DeleteThingType } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteTopicRuleCommand.ts b/clients/client-iot/src/commands/DeleteTopicRuleCommand.ts index c6451054bf086..3eb279a99c02b 100644 --- a/clients/client-iot/src/commands/DeleteTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/DeleteTopicRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteTopicRuleRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteTopicRuleRequest } from "../models/models_0"; import { DeleteTopicRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/DeleteTopicRuleDestinationCommand.ts index bfe8e37fc37b2..9f5104f73a44e 100644 --- a/clients/client-iot/src/commands/DeleteTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/DeleteTopicRuleDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteTopicRuleDestinationRequest, DeleteTopicRuleDestinationResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteTopicRuleDestinationRequest, DeleteTopicRuleDestinationResponse } from "../models/models_0"; import { DeleteTopicRuleDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeleteV2LoggingLevelCommand.ts b/clients/client-iot/src/commands/DeleteV2LoggingLevelCommand.ts index 8f228d14e2abe..e6963b7c215a1 100644 --- a/clients/client-iot/src/commands/DeleteV2LoggingLevelCommand.ts +++ b/clients/client-iot/src/commands/DeleteV2LoggingLevelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeleteV2LoggingLevelRequest } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeleteV2LoggingLevelRequest } from "../models/models_0"; import { DeleteV2LoggingLevel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DeprecateThingTypeCommand.ts b/clients/client-iot/src/commands/DeprecateThingTypeCommand.ts index f34b756f620fc..49df2e3ef9229 100644 --- a/clients/client-iot/src/commands/DeprecateThingTypeCommand.ts +++ b/clients/client-iot/src/commands/DeprecateThingTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DeprecateThingTypeRequest, DeprecateThingTypeResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DeprecateThingTypeRequest, DeprecateThingTypeResponse } from "../models/models_0"; import { DeprecateThingType } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeAccountAuditConfigurationCommand.ts b/clients/client-iot/src/commands/DescribeAccountAuditConfigurationCommand.ts index a08d33ca69e9b..432ec34989629 100644 --- a/clients/client-iot/src/commands/DescribeAccountAuditConfigurationCommand.ts +++ b/clients/client-iot/src/commands/DescribeAccountAuditConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeAccountAuditConfigurationRequest, DescribeAccountAuditConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-iot/src/commands/DescribeAuditFindingCommand.ts b/clients/client-iot/src/commands/DescribeAuditFindingCommand.ts index cd1ea7d1d1ab3..31e91803d055d 100644 --- a/clients/client-iot/src/commands/DescribeAuditFindingCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuditFindingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeAuditFindingRequest, DescribeAuditFindingResponse } from "../models/models_0"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeAuditFindingRequest, DescribeAuditFindingResponse } from "../models/models_0"; import { DescribeAuditFinding } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeAuditMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/DescribeAuditMitigationActionsTaskCommand.ts index cd05182047a81..6c9af171e3003 100644 --- a/clients/client-iot/src/commands/DescribeAuditMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuditMitigationActionsTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeAuditMitigationActionsTaskRequest } from "../models/models_0"; -import { DescribeAuditMitigationActionsTaskResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeAuditMitigationActionsTaskRequest } from "../models/models_0"; +import type { DescribeAuditMitigationActionsTaskResponse } from "../models/models_1"; import { DescribeAuditMitigationActionsTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeAuditSuppressionCommand.ts b/clients/client-iot/src/commands/DescribeAuditSuppressionCommand.ts index f209c52139ffe..4890dab2db021 100644 --- a/clients/client-iot/src/commands/DescribeAuditSuppressionCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuditSuppressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeAuditSuppressionRequest, DescribeAuditSuppressionResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeAuditSuppressionRequest, DescribeAuditSuppressionResponse } from "../models/models_1"; import { DescribeAuditSuppression } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeAuditTaskCommand.ts b/clients/client-iot/src/commands/DescribeAuditTaskCommand.ts index 222115713c76a..773ed6c9b180e 100644 --- a/clients/client-iot/src/commands/DescribeAuditTaskCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuditTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeAuditTaskRequest, DescribeAuditTaskResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeAuditTaskRequest, DescribeAuditTaskResponse } from "../models/models_1"; import { DescribeAuditTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeAuthorizerCommand.ts b/clients/client-iot/src/commands/DescribeAuthorizerCommand.ts index fd0b6d9845b94..02273ea3e8a91 100644 --- a/clients/client-iot/src/commands/DescribeAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/DescribeAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeAuthorizerRequest, DescribeAuthorizerResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeAuthorizerRequest, DescribeAuthorizerResponse } from "../models/models_1"; import { DescribeAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeBillingGroupCommand.ts b/clients/client-iot/src/commands/DescribeBillingGroupCommand.ts index ef7c7e2db8e79..7c9550e8cdd83 100644 --- a/clients/client-iot/src/commands/DescribeBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/DescribeBillingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeBillingGroupRequest, DescribeBillingGroupResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeBillingGroupRequest, DescribeBillingGroupResponse } from "../models/models_1"; import { DescribeBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeCACertificateCommand.ts b/clients/client-iot/src/commands/DescribeCACertificateCommand.ts index 8190c0c93b115..e05e42348d89e 100644 --- a/clients/client-iot/src/commands/DescribeCACertificateCommand.ts +++ b/clients/client-iot/src/commands/DescribeCACertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeCACertificateRequest, DescribeCACertificateResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeCACertificateRequest, DescribeCACertificateResponse } from "../models/models_1"; import { DescribeCACertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeCertificateCommand.ts b/clients/client-iot/src/commands/DescribeCertificateCommand.ts index e726382d114cb..c43639a824cf3 100644 --- a/clients/client-iot/src/commands/DescribeCertificateCommand.ts +++ b/clients/client-iot/src/commands/DescribeCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeCertificateRequest, DescribeCertificateResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeCertificateRequest, DescribeCertificateResponse } from "../models/models_1"; import { DescribeCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeCertificateProviderCommand.ts b/clients/client-iot/src/commands/DescribeCertificateProviderCommand.ts index 9e7f212f5bd26..66da7f47d13ea 100644 --- a/clients/client-iot/src/commands/DescribeCertificateProviderCommand.ts +++ b/clients/client-iot/src/commands/DescribeCertificateProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeCertificateProviderRequest, DescribeCertificateProviderResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeCertificateProviderRequest, DescribeCertificateProviderResponse } from "../models/models_1"; import { DescribeCertificateProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeCustomMetricCommand.ts b/clients/client-iot/src/commands/DescribeCustomMetricCommand.ts index 1201fcd695767..601ce1dfbac5d 100644 --- a/clients/client-iot/src/commands/DescribeCustomMetricCommand.ts +++ b/clients/client-iot/src/commands/DescribeCustomMetricCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeCustomMetricRequest, DescribeCustomMetricResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeCustomMetricRequest, DescribeCustomMetricResponse } from "../models/models_1"; import { DescribeCustomMetric } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeDefaultAuthorizerCommand.ts b/clients/client-iot/src/commands/DescribeDefaultAuthorizerCommand.ts index be69c8de31668..8cb6891044300 100644 --- a/clients/client-iot/src/commands/DescribeDefaultAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/DescribeDefaultAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeDefaultAuthorizerRequest, DescribeDefaultAuthorizerResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeDefaultAuthorizerRequest, DescribeDefaultAuthorizerResponse } from "../models/models_1"; import { DescribeDefaultAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeDetectMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/DescribeDetectMitigationActionsTaskCommand.ts index 5d996fff64b24..e2b1850b54ae2 100644 --- a/clients/client-iot/src/commands/DescribeDetectMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/DescribeDetectMitigationActionsTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeDetectMitigationActionsTaskRequest, DescribeDetectMitigationActionsTaskResponse, } from "../models/models_1"; diff --git a/clients/client-iot/src/commands/DescribeDimensionCommand.ts b/clients/client-iot/src/commands/DescribeDimensionCommand.ts index 99c60b4072171..928174b13c3a1 100644 --- a/clients/client-iot/src/commands/DescribeDimensionCommand.ts +++ b/clients/client-iot/src/commands/DescribeDimensionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeDimensionRequest, DescribeDimensionResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeDimensionRequest, DescribeDimensionResponse } from "../models/models_1"; import { DescribeDimension } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeDomainConfigurationCommand.ts b/clients/client-iot/src/commands/DescribeDomainConfigurationCommand.ts index 67d9b348c5eea..6752c05166d0b 100644 --- a/clients/client-iot/src/commands/DescribeDomainConfigurationCommand.ts +++ b/clients/client-iot/src/commands/DescribeDomainConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeDomainConfigurationRequest, DescribeDomainConfigurationResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeDomainConfigurationRequest, DescribeDomainConfigurationResponse } from "../models/models_1"; import { DescribeDomainConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeEncryptionConfigurationCommand.ts b/clients/client-iot/src/commands/DescribeEncryptionConfigurationCommand.ts index ed10940836304..50bc4bad81a95 100644 --- a/clients/client-iot/src/commands/DescribeEncryptionConfigurationCommand.ts +++ b/clients/client-iot/src/commands/DescribeEncryptionConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeEncryptionConfigurationRequest, DescribeEncryptionConfigurationResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + DescribeEncryptionConfigurationRequest, + DescribeEncryptionConfigurationResponse, +} from "../models/models_1"; import { DescribeEncryptionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeEndpointCommand.ts b/clients/client-iot/src/commands/DescribeEndpointCommand.ts index ec63d68f513a8..765dfdcb76714 100644 --- a/clients/client-iot/src/commands/DescribeEndpointCommand.ts +++ b/clients/client-iot/src/commands/DescribeEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeEndpointRequest, DescribeEndpointResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeEndpointRequest, DescribeEndpointResponse } from "../models/models_1"; import { DescribeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeEventConfigurationsCommand.ts b/clients/client-iot/src/commands/DescribeEventConfigurationsCommand.ts index 34b081ae48570..80bb44a42dea3 100644 --- a/clients/client-iot/src/commands/DescribeEventConfigurationsCommand.ts +++ b/clients/client-iot/src/commands/DescribeEventConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeEventConfigurationsRequest, DescribeEventConfigurationsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeEventConfigurationsRequest, DescribeEventConfigurationsResponse } from "../models/models_1"; import { DescribeEventConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeFleetMetricCommand.ts b/clients/client-iot/src/commands/DescribeFleetMetricCommand.ts index fe59a3b7cc5dc..08d8fd15aa2ac 100644 --- a/clients/client-iot/src/commands/DescribeFleetMetricCommand.ts +++ b/clients/client-iot/src/commands/DescribeFleetMetricCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeFleetMetricRequest, DescribeFleetMetricResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeFleetMetricRequest, DescribeFleetMetricResponse } from "../models/models_1"; import { DescribeFleetMetric } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeIndexCommand.ts b/clients/client-iot/src/commands/DescribeIndexCommand.ts index 4c3b844856b80..d81e08276346c 100644 --- a/clients/client-iot/src/commands/DescribeIndexCommand.ts +++ b/clients/client-iot/src/commands/DescribeIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeIndexRequest, DescribeIndexResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeIndexRequest, DescribeIndexResponse } from "../models/models_1"; import { DescribeIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeJobCommand.ts b/clients/client-iot/src/commands/DescribeJobCommand.ts index 7f1707f13e687..ac2c5539b09ce 100644 --- a/clients/client-iot/src/commands/DescribeJobCommand.ts +++ b/clients/client-iot/src/commands/DescribeJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeJobRequest, DescribeJobResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeJobRequest, DescribeJobResponse } from "../models/models_1"; import { DescribeJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeJobExecutionCommand.ts b/clients/client-iot/src/commands/DescribeJobExecutionCommand.ts index dc7e1eef114ca..f381739e86751 100644 --- a/clients/client-iot/src/commands/DescribeJobExecutionCommand.ts +++ b/clients/client-iot/src/commands/DescribeJobExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeJobExecutionRequest, DescribeJobExecutionResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeJobExecutionRequest, DescribeJobExecutionResponse } from "../models/models_1"; import { DescribeJobExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeJobTemplateCommand.ts b/clients/client-iot/src/commands/DescribeJobTemplateCommand.ts index 36766bd291e43..727cd89d4c38e 100644 --- a/clients/client-iot/src/commands/DescribeJobTemplateCommand.ts +++ b/clients/client-iot/src/commands/DescribeJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeJobTemplateRequest, DescribeJobTemplateResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeJobTemplateRequest, DescribeJobTemplateResponse } from "../models/models_1"; import { DescribeJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeManagedJobTemplateCommand.ts b/clients/client-iot/src/commands/DescribeManagedJobTemplateCommand.ts index b0f81ee91b52a..498830ee64da5 100644 --- a/clients/client-iot/src/commands/DescribeManagedJobTemplateCommand.ts +++ b/clients/client-iot/src/commands/DescribeManagedJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeManagedJobTemplateRequest, DescribeManagedJobTemplateResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeManagedJobTemplateRequest, DescribeManagedJobTemplateResponse } from "../models/models_1"; import { DescribeManagedJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeMitigationActionCommand.ts b/clients/client-iot/src/commands/DescribeMitigationActionCommand.ts index c4f147f265d3c..8e73d2c87058c 100644 --- a/clients/client-iot/src/commands/DescribeMitigationActionCommand.ts +++ b/clients/client-iot/src/commands/DescribeMitigationActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeMitigationActionRequest, DescribeMitigationActionResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeMitigationActionRequest, DescribeMitigationActionResponse } from "../models/models_1"; import { DescribeMitigationAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeProvisioningTemplateCommand.ts b/clients/client-iot/src/commands/DescribeProvisioningTemplateCommand.ts index a2e02825aaf9e..5155584bb927d 100644 --- a/clients/client-iot/src/commands/DescribeProvisioningTemplateCommand.ts +++ b/clients/client-iot/src/commands/DescribeProvisioningTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeProvisioningTemplateRequest, DescribeProvisioningTemplateResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeProvisioningTemplateRequest, DescribeProvisioningTemplateResponse } from "../models/models_1"; import { DescribeProvisioningTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeProvisioningTemplateVersionCommand.ts b/clients/client-iot/src/commands/DescribeProvisioningTemplateVersionCommand.ts index aba0ed1ef021f..b72d715ea612c 100644 --- a/clients/client-iot/src/commands/DescribeProvisioningTemplateVersionCommand.ts +++ b/clients/client-iot/src/commands/DescribeProvisioningTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeProvisioningTemplateVersionRequest, DescribeProvisioningTemplateVersionResponse, } from "../models/models_1"; diff --git a/clients/client-iot/src/commands/DescribeRoleAliasCommand.ts b/clients/client-iot/src/commands/DescribeRoleAliasCommand.ts index 169fac467308e..3a87c71b74def 100644 --- a/clients/client-iot/src/commands/DescribeRoleAliasCommand.ts +++ b/clients/client-iot/src/commands/DescribeRoleAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeRoleAliasRequest, DescribeRoleAliasResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeRoleAliasRequest, DescribeRoleAliasResponse } from "../models/models_1"; import { DescribeRoleAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeScheduledAuditCommand.ts b/clients/client-iot/src/commands/DescribeScheduledAuditCommand.ts index 8184a4a9dc1ec..7477bc967ded9 100644 --- a/clients/client-iot/src/commands/DescribeScheduledAuditCommand.ts +++ b/clients/client-iot/src/commands/DescribeScheduledAuditCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeScheduledAuditRequest, DescribeScheduledAuditResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeScheduledAuditRequest, DescribeScheduledAuditResponse } from "../models/models_1"; import { DescribeScheduledAudit } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeSecurityProfileCommand.ts b/clients/client-iot/src/commands/DescribeSecurityProfileCommand.ts index 4bade322ff89f..4a259164f130e 100644 --- a/clients/client-iot/src/commands/DescribeSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/DescribeSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeSecurityProfileRequest, DescribeSecurityProfileResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeSecurityProfileRequest, DescribeSecurityProfileResponse } from "../models/models_1"; import { DescribeSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeStreamCommand.ts b/clients/client-iot/src/commands/DescribeStreamCommand.ts index 376f746acb94b..c30d459446d27 100644 --- a/clients/client-iot/src/commands/DescribeStreamCommand.ts +++ b/clients/client-iot/src/commands/DescribeStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeStreamRequest, DescribeStreamResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeStreamRequest, DescribeStreamResponse } from "../models/models_1"; import { DescribeStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeThingCommand.ts b/clients/client-iot/src/commands/DescribeThingCommand.ts index a67d5c6c9f8a7..a358da3c098a9 100644 --- a/clients/client-iot/src/commands/DescribeThingCommand.ts +++ b/clients/client-iot/src/commands/DescribeThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeThingRequest, DescribeThingResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeThingRequest, DescribeThingResponse } from "../models/models_1"; import { DescribeThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeThingGroupCommand.ts b/clients/client-iot/src/commands/DescribeThingGroupCommand.ts index 726669abf6bc6..296153da65a3d 100644 --- a/clients/client-iot/src/commands/DescribeThingGroupCommand.ts +++ b/clients/client-iot/src/commands/DescribeThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeThingGroupRequest, DescribeThingGroupResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeThingGroupRequest, DescribeThingGroupResponse } from "../models/models_1"; import { DescribeThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeThingRegistrationTaskCommand.ts b/clients/client-iot/src/commands/DescribeThingRegistrationTaskCommand.ts index 2f2e971c7ec39..784b082a6a31b 100644 --- a/clients/client-iot/src/commands/DescribeThingRegistrationTaskCommand.ts +++ b/clients/client-iot/src/commands/DescribeThingRegistrationTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeThingRegistrationTaskRequest, DescribeThingRegistrationTaskResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeThingRegistrationTaskRequest, DescribeThingRegistrationTaskResponse } from "../models/models_1"; import { DescribeThingRegistrationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DescribeThingTypeCommand.ts b/clients/client-iot/src/commands/DescribeThingTypeCommand.ts index 57247a27f1fd9..ad5c5cc5fc3d9 100644 --- a/clients/client-iot/src/commands/DescribeThingTypeCommand.ts +++ b/clients/client-iot/src/commands/DescribeThingTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DescribeThingTypeRequest, DescribeThingTypeResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DescribeThingTypeRequest, DescribeThingTypeResponse } from "../models/models_1"; import { DescribeThingType } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DetachPolicyCommand.ts b/clients/client-iot/src/commands/DetachPolicyCommand.ts index 7a33cbb32bb3f..317b29c8403b8 100644 --- a/clients/client-iot/src/commands/DetachPolicyCommand.ts +++ b/clients/client-iot/src/commands/DetachPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DetachPolicyRequest } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DetachPolicyRequest } from "../models/models_1"; import { DetachPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DetachPrincipalPolicyCommand.ts b/clients/client-iot/src/commands/DetachPrincipalPolicyCommand.ts index e8b38dd0fa865..54a364884a398 100644 --- a/clients/client-iot/src/commands/DetachPrincipalPolicyCommand.ts +++ b/clients/client-iot/src/commands/DetachPrincipalPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DetachPrincipalPolicyRequest } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DetachPrincipalPolicyRequest } from "../models/models_1"; import { DetachPrincipalPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DetachSecurityProfileCommand.ts b/clients/client-iot/src/commands/DetachSecurityProfileCommand.ts index 6e443c2612e3a..4e4756f8c8573 100644 --- a/clients/client-iot/src/commands/DetachSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/DetachSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DetachSecurityProfileRequest, DetachSecurityProfileResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DetachSecurityProfileRequest, DetachSecurityProfileResponse } from "../models/models_1"; import { DetachSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DetachThingPrincipalCommand.ts b/clients/client-iot/src/commands/DetachThingPrincipalCommand.ts index 51a5db03965d2..6dcf1525f5226 100644 --- a/clients/client-iot/src/commands/DetachThingPrincipalCommand.ts +++ b/clients/client-iot/src/commands/DetachThingPrincipalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DetachThingPrincipalRequest, DetachThingPrincipalResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DetachThingPrincipalRequest, DetachThingPrincipalResponse } from "../models/models_1"; import { DetachThingPrincipal } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DisableTopicRuleCommand.ts b/clients/client-iot/src/commands/DisableTopicRuleCommand.ts index 2bce21fea5862..cb9811f2fd5d9 100644 --- a/clients/client-iot/src/commands/DisableTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/DisableTopicRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { DisableTopicRuleRequest } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DisableTopicRuleRequest } from "../models/models_1"; import { DisableTopicRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/DisassociateSbomFromPackageVersionCommand.ts b/clients/client-iot/src/commands/DisassociateSbomFromPackageVersionCommand.ts index a8faa1ca6b26f..8ef55814ffaa0 100644 --- a/clients/client-iot/src/commands/DisassociateSbomFromPackageVersionCommand.ts +++ b/clients/client-iot/src/commands/DisassociateSbomFromPackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { DisassociateSbomFromPackageVersionRequest, DisassociateSbomFromPackageVersionResponse, } from "../models/models_1"; diff --git a/clients/client-iot/src/commands/EnableTopicRuleCommand.ts b/clients/client-iot/src/commands/EnableTopicRuleCommand.ts index dd91a097e31f2..775180c3e6fc1 100644 --- a/clients/client-iot/src/commands/EnableTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/EnableTopicRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { EnableTopicRuleRequest } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { EnableTopicRuleRequest } from "../models/models_1"; import { EnableTopicRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetBehaviorModelTrainingSummariesCommand.ts b/clients/client-iot/src/commands/GetBehaviorModelTrainingSummariesCommand.ts index c1994ca81e30e..e0110f4e0da13 100644 --- a/clients/client-iot/src/commands/GetBehaviorModelTrainingSummariesCommand.ts +++ b/clients/client-iot/src/commands/GetBehaviorModelTrainingSummariesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetBehaviorModelTrainingSummariesRequest, GetBehaviorModelTrainingSummariesResponse, } from "../models/models_1"; diff --git a/clients/client-iot/src/commands/GetBucketsAggregationCommand.ts b/clients/client-iot/src/commands/GetBucketsAggregationCommand.ts index bae8e6627a0b1..3d0f37fb0c6d3 100644 --- a/clients/client-iot/src/commands/GetBucketsAggregationCommand.ts +++ b/clients/client-iot/src/commands/GetBucketsAggregationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetBucketsAggregationRequest, GetBucketsAggregationResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetBucketsAggregationRequest, GetBucketsAggregationResponse } from "../models/models_1"; import { GetBucketsAggregation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetCardinalityCommand.ts b/clients/client-iot/src/commands/GetCardinalityCommand.ts index dbbaba679c68f..e58dd282543e0 100644 --- a/clients/client-iot/src/commands/GetCardinalityCommand.ts +++ b/clients/client-iot/src/commands/GetCardinalityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetCardinalityRequest, GetCardinalityResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetCardinalityRequest, GetCardinalityResponse } from "../models/models_1"; import { GetCardinality } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetCommandCommand.ts b/clients/client-iot/src/commands/GetCommandCommand.ts index 2c5e53372abd5..c0b4f500a195f 100644 --- a/clients/client-iot/src/commands/GetCommandCommand.ts +++ b/clients/client-iot/src/commands/GetCommandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetCommandRequest, GetCommandResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetCommandRequest, GetCommandResponse } from "../models/models_1"; import { GetCommand } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetCommandExecutionCommand.ts b/clients/client-iot/src/commands/GetCommandExecutionCommand.ts index 958e95088936b..00c0e7601c855 100644 --- a/clients/client-iot/src/commands/GetCommandExecutionCommand.ts +++ b/clients/client-iot/src/commands/GetCommandExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetCommandExecutionRequest, GetCommandExecutionResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetCommandExecutionRequest, GetCommandExecutionResponse } from "../models/models_1"; import { GetCommandExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetEffectivePoliciesCommand.ts b/clients/client-iot/src/commands/GetEffectivePoliciesCommand.ts index 9ab45d67b9ec0..ff1a4452666f0 100644 --- a/clients/client-iot/src/commands/GetEffectivePoliciesCommand.ts +++ b/clients/client-iot/src/commands/GetEffectivePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetEffectivePoliciesRequest, GetEffectivePoliciesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetEffectivePoliciesRequest, GetEffectivePoliciesResponse } from "../models/models_1"; import { GetEffectivePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetIndexingConfigurationCommand.ts b/clients/client-iot/src/commands/GetIndexingConfigurationCommand.ts index 861b6c1f3a8b6..d2dda1f2e0daa 100644 --- a/clients/client-iot/src/commands/GetIndexingConfigurationCommand.ts +++ b/clients/client-iot/src/commands/GetIndexingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetIndexingConfigurationRequest, GetIndexingConfigurationResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetIndexingConfigurationRequest, GetIndexingConfigurationResponse } from "../models/models_1"; import { GetIndexingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetJobDocumentCommand.ts b/clients/client-iot/src/commands/GetJobDocumentCommand.ts index 3264a1f776937..6a50ca20567a9 100644 --- a/clients/client-iot/src/commands/GetJobDocumentCommand.ts +++ b/clients/client-iot/src/commands/GetJobDocumentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetJobDocumentRequest, GetJobDocumentResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetJobDocumentRequest, GetJobDocumentResponse } from "../models/models_1"; import { GetJobDocument } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetLoggingOptionsCommand.ts b/clients/client-iot/src/commands/GetLoggingOptionsCommand.ts index 3cec5fc0d9c5e..1ce1e8749c821 100644 --- a/clients/client-iot/src/commands/GetLoggingOptionsCommand.ts +++ b/clients/client-iot/src/commands/GetLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetLoggingOptionsRequest, GetLoggingOptionsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetLoggingOptionsRequest, GetLoggingOptionsResponse } from "../models/models_1"; import { GetLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetOTAUpdateCommand.ts b/clients/client-iot/src/commands/GetOTAUpdateCommand.ts index 7f22517f6be9a..7412b4d2af0f2 100644 --- a/clients/client-iot/src/commands/GetOTAUpdateCommand.ts +++ b/clients/client-iot/src/commands/GetOTAUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetOTAUpdateRequest, GetOTAUpdateResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetOTAUpdateRequest, GetOTAUpdateResponse } from "../models/models_1"; import { GetOTAUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetPackageCommand.ts b/clients/client-iot/src/commands/GetPackageCommand.ts index 2b0c91a674600..6002da1888233 100644 --- a/clients/client-iot/src/commands/GetPackageCommand.ts +++ b/clients/client-iot/src/commands/GetPackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetPackageRequest, GetPackageResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetPackageRequest, GetPackageResponse } from "../models/models_1"; import { GetPackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetPackageConfigurationCommand.ts b/clients/client-iot/src/commands/GetPackageConfigurationCommand.ts index 48ef8521a8739..684af27921fa9 100644 --- a/clients/client-iot/src/commands/GetPackageConfigurationCommand.ts +++ b/clients/client-iot/src/commands/GetPackageConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetPackageConfigurationRequest, GetPackageConfigurationResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetPackageConfigurationRequest, GetPackageConfigurationResponse } from "../models/models_1"; import { GetPackageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetPackageVersionCommand.ts b/clients/client-iot/src/commands/GetPackageVersionCommand.ts index bf0dcb051fd65..4c234aef59dd2 100644 --- a/clients/client-iot/src/commands/GetPackageVersionCommand.ts +++ b/clients/client-iot/src/commands/GetPackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetPackageVersionRequest, GetPackageVersionResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetPackageVersionRequest, GetPackageVersionResponse } from "../models/models_1"; import { GetPackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetPercentilesCommand.ts b/clients/client-iot/src/commands/GetPercentilesCommand.ts index c62be4f7fbc68..f2b65d5e183ed 100644 --- a/clients/client-iot/src/commands/GetPercentilesCommand.ts +++ b/clients/client-iot/src/commands/GetPercentilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetPercentilesRequest, GetPercentilesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetPercentilesRequest, GetPercentilesResponse } from "../models/models_1"; import { GetPercentiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetPolicyCommand.ts b/clients/client-iot/src/commands/GetPolicyCommand.ts index 0d63c3e493e0e..69535c25d8c7d 100644 --- a/clients/client-iot/src/commands/GetPolicyCommand.ts +++ b/clients/client-iot/src/commands/GetPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetPolicyRequest, GetPolicyResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetPolicyRequest, GetPolicyResponse } from "../models/models_1"; import { GetPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetPolicyVersionCommand.ts b/clients/client-iot/src/commands/GetPolicyVersionCommand.ts index 1fc1dd140af93..4a06be07ec4fd 100644 --- a/clients/client-iot/src/commands/GetPolicyVersionCommand.ts +++ b/clients/client-iot/src/commands/GetPolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetPolicyVersionRequest, GetPolicyVersionResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetPolicyVersionRequest, GetPolicyVersionResponse } from "../models/models_1"; import { GetPolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetRegistrationCodeCommand.ts b/clients/client-iot/src/commands/GetRegistrationCodeCommand.ts index 9bdcb36ee5fc0..fd9ababa97662 100644 --- a/clients/client-iot/src/commands/GetRegistrationCodeCommand.ts +++ b/clients/client-iot/src/commands/GetRegistrationCodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetRegistrationCodeRequest, GetRegistrationCodeResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetRegistrationCodeRequest, GetRegistrationCodeResponse } from "../models/models_1"; import { GetRegistrationCode } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetStatisticsCommand.ts b/clients/client-iot/src/commands/GetStatisticsCommand.ts index b63ddd1a51dbf..c6a133d4aeaba 100644 --- a/clients/client-iot/src/commands/GetStatisticsCommand.ts +++ b/clients/client-iot/src/commands/GetStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetStatisticsRequest, GetStatisticsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetStatisticsRequest, GetStatisticsResponse } from "../models/models_1"; import { GetStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetThingConnectivityDataCommand.ts b/clients/client-iot/src/commands/GetThingConnectivityDataCommand.ts index f8614fa183b63..fa8abb7f955f2 100644 --- a/clients/client-iot/src/commands/GetThingConnectivityDataCommand.ts +++ b/clients/client-iot/src/commands/GetThingConnectivityDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetThingConnectivityDataRequest, GetThingConnectivityDataResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetThingConnectivityDataRequest, GetThingConnectivityDataResponse } from "../models/models_1"; import { GetThingConnectivityData } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetTopicRuleCommand.ts b/clients/client-iot/src/commands/GetTopicRuleCommand.ts index 1bbd542942e59..6ba65e2660034 100644 --- a/clients/client-iot/src/commands/GetTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/GetTopicRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetTopicRuleRequest, GetTopicRuleResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetTopicRuleRequest, GetTopicRuleResponse } from "../models/models_1"; import { GetTopicRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/GetTopicRuleDestinationCommand.ts index c7dec35cadeee..7a52bb8cb830a 100644 --- a/clients/client-iot/src/commands/GetTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/GetTopicRuleDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetTopicRuleDestinationRequest, GetTopicRuleDestinationResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetTopicRuleDestinationRequest, GetTopicRuleDestinationResponse } from "../models/models_1"; import { GetTopicRuleDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/GetV2LoggingOptionsCommand.ts b/clients/client-iot/src/commands/GetV2LoggingOptionsCommand.ts index c1ba41f161f27..7229920850838 100644 --- a/clients/client-iot/src/commands/GetV2LoggingOptionsCommand.ts +++ b/clients/client-iot/src/commands/GetV2LoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { GetV2LoggingOptionsRequest, GetV2LoggingOptionsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { GetV2LoggingOptionsRequest, GetV2LoggingOptionsResponse } from "../models/models_1"; import { GetV2LoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListActiveViolationsCommand.ts b/clients/client-iot/src/commands/ListActiveViolationsCommand.ts index 086d768818e38..967f3e97d485d 100644 --- a/clients/client-iot/src/commands/ListActiveViolationsCommand.ts +++ b/clients/client-iot/src/commands/ListActiveViolationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListActiveViolationsRequest, ListActiveViolationsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListActiveViolationsRequest, ListActiveViolationsResponse } from "../models/models_1"; import { ListActiveViolations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListAttachedPoliciesCommand.ts b/clients/client-iot/src/commands/ListAttachedPoliciesCommand.ts index 597c587f63c00..dbf8f0b0a3e5c 100644 --- a/clients/client-iot/src/commands/ListAttachedPoliciesCommand.ts +++ b/clients/client-iot/src/commands/ListAttachedPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListAttachedPoliciesRequest, ListAttachedPoliciesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListAttachedPoliciesRequest, ListAttachedPoliciesResponse } from "../models/models_1"; import { ListAttachedPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListAuditFindingsCommand.ts b/clients/client-iot/src/commands/ListAuditFindingsCommand.ts index 2f1d2a0d1e428..bd914e0f33d89 100644 --- a/clients/client-iot/src/commands/ListAuditFindingsCommand.ts +++ b/clients/client-iot/src/commands/ListAuditFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListAuditFindingsRequest, ListAuditFindingsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListAuditFindingsRequest, ListAuditFindingsResponse } from "../models/models_1"; import { ListAuditFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListAuditMitigationActionsExecutionsCommand.ts b/clients/client-iot/src/commands/ListAuditMitigationActionsExecutionsCommand.ts index 1fd8d45daf318..351f25b930f01 100644 --- a/clients/client-iot/src/commands/ListAuditMitigationActionsExecutionsCommand.ts +++ b/clients/client-iot/src/commands/ListAuditMitigationActionsExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListAuditMitigationActionsExecutionsRequest, ListAuditMitigationActionsExecutionsResponse, } from "../models/models_1"; diff --git a/clients/client-iot/src/commands/ListAuditMitigationActionsTasksCommand.ts b/clients/client-iot/src/commands/ListAuditMitigationActionsTasksCommand.ts index a3381966ee228..d7a3b95a11b3c 100644 --- a/clients/client-iot/src/commands/ListAuditMitigationActionsTasksCommand.ts +++ b/clients/client-iot/src/commands/ListAuditMitigationActionsTasksCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListAuditMitigationActionsTasksRequest, ListAuditMitigationActionsTasksResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + ListAuditMitigationActionsTasksRequest, + ListAuditMitigationActionsTasksResponse, +} from "../models/models_1"; import { ListAuditMitigationActionsTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListAuditSuppressionsCommand.ts b/clients/client-iot/src/commands/ListAuditSuppressionsCommand.ts index 5187d932a4b33..aeed262093252 100644 --- a/clients/client-iot/src/commands/ListAuditSuppressionsCommand.ts +++ b/clients/client-iot/src/commands/ListAuditSuppressionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListAuditSuppressionsRequest, ListAuditSuppressionsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListAuditSuppressionsRequest, ListAuditSuppressionsResponse } from "../models/models_1"; import { ListAuditSuppressions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListAuditTasksCommand.ts b/clients/client-iot/src/commands/ListAuditTasksCommand.ts index 517e39b73f5b9..ec48948af5884 100644 --- a/clients/client-iot/src/commands/ListAuditTasksCommand.ts +++ b/clients/client-iot/src/commands/ListAuditTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListAuditTasksRequest, ListAuditTasksResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListAuditTasksRequest, ListAuditTasksResponse } from "../models/models_1"; import { ListAuditTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListAuthorizersCommand.ts b/clients/client-iot/src/commands/ListAuthorizersCommand.ts index 09729d28563a4..e93a266080215 100644 --- a/clients/client-iot/src/commands/ListAuthorizersCommand.ts +++ b/clients/client-iot/src/commands/ListAuthorizersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListAuthorizersRequest, ListAuthorizersResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListAuthorizersRequest, ListAuthorizersResponse } from "../models/models_1"; import { ListAuthorizers } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListBillingGroupsCommand.ts b/clients/client-iot/src/commands/ListBillingGroupsCommand.ts index 53b771218edfd..15b034ca63600 100644 --- a/clients/client-iot/src/commands/ListBillingGroupsCommand.ts +++ b/clients/client-iot/src/commands/ListBillingGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListBillingGroupsRequest, ListBillingGroupsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListBillingGroupsRequest, ListBillingGroupsResponse } from "../models/models_1"; import { ListBillingGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListCACertificatesCommand.ts b/clients/client-iot/src/commands/ListCACertificatesCommand.ts index a82b797645eea..ec352a73dbe07 100644 --- a/clients/client-iot/src/commands/ListCACertificatesCommand.ts +++ b/clients/client-iot/src/commands/ListCACertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListCACertificatesRequest, ListCACertificatesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListCACertificatesRequest, ListCACertificatesResponse } from "../models/models_1"; import { ListCACertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListCertificateProvidersCommand.ts b/clients/client-iot/src/commands/ListCertificateProvidersCommand.ts index 72be0f987cbc3..3db3380598ce1 100644 --- a/clients/client-iot/src/commands/ListCertificateProvidersCommand.ts +++ b/clients/client-iot/src/commands/ListCertificateProvidersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListCertificateProvidersRequest, ListCertificateProvidersResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListCertificateProvidersRequest, ListCertificateProvidersResponse } from "../models/models_1"; import { ListCertificateProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListCertificatesByCACommand.ts b/clients/client-iot/src/commands/ListCertificatesByCACommand.ts index 6b65374a9e84e..9032b2d4b47d2 100644 --- a/clients/client-iot/src/commands/ListCertificatesByCACommand.ts +++ b/clients/client-iot/src/commands/ListCertificatesByCACommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListCertificatesByCARequest, ListCertificatesByCAResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListCertificatesByCARequest, ListCertificatesByCAResponse } from "../models/models_1"; import { ListCertificatesByCA } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListCertificatesCommand.ts b/clients/client-iot/src/commands/ListCertificatesCommand.ts index 0aafda96de3b9..c3030647f025b 100644 --- a/clients/client-iot/src/commands/ListCertificatesCommand.ts +++ b/clients/client-iot/src/commands/ListCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_1"; import { ListCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListCommandExecutionsCommand.ts b/clients/client-iot/src/commands/ListCommandExecutionsCommand.ts index e4a6e8f629a9e..d88b59ee9967b 100644 --- a/clients/client-iot/src/commands/ListCommandExecutionsCommand.ts +++ b/clients/client-iot/src/commands/ListCommandExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListCommandExecutionsRequest, ListCommandExecutionsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListCommandExecutionsRequest, ListCommandExecutionsResponse } from "../models/models_1"; import { ListCommandExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListCommandsCommand.ts b/clients/client-iot/src/commands/ListCommandsCommand.ts index 676ed050c2867..2d0dadc020b06 100644 --- a/clients/client-iot/src/commands/ListCommandsCommand.ts +++ b/clients/client-iot/src/commands/ListCommandsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListCommandsRequest, ListCommandsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListCommandsRequest, ListCommandsResponse } from "../models/models_1"; import { ListCommands } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListCustomMetricsCommand.ts b/clients/client-iot/src/commands/ListCustomMetricsCommand.ts index 06881bd6e4694..77796ac9fefe8 100644 --- a/clients/client-iot/src/commands/ListCustomMetricsCommand.ts +++ b/clients/client-iot/src/commands/ListCustomMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListCustomMetricsRequest, ListCustomMetricsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListCustomMetricsRequest, ListCustomMetricsResponse } from "../models/models_1"; import { ListCustomMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListDetectMitigationActionsExecutionsCommand.ts b/clients/client-iot/src/commands/ListDetectMitigationActionsExecutionsCommand.ts index 44c2e848856b7..3d5ba84649bd7 100644 --- a/clients/client-iot/src/commands/ListDetectMitigationActionsExecutionsCommand.ts +++ b/clients/client-iot/src/commands/ListDetectMitigationActionsExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListDetectMitigationActionsExecutionsRequest, ListDetectMitigationActionsExecutionsResponse, } from "../models/models_1"; diff --git a/clients/client-iot/src/commands/ListDetectMitigationActionsTasksCommand.ts b/clients/client-iot/src/commands/ListDetectMitigationActionsTasksCommand.ts index f19f9553900cc..c932007375c71 100644 --- a/clients/client-iot/src/commands/ListDetectMitigationActionsTasksCommand.ts +++ b/clients/client-iot/src/commands/ListDetectMitigationActionsTasksCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListDetectMitigationActionsTasksRequest, ListDetectMitigationActionsTasksResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + ListDetectMitigationActionsTasksRequest, + ListDetectMitigationActionsTasksResponse, +} from "../models/models_1"; import { ListDetectMitigationActionsTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListDimensionsCommand.ts b/clients/client-iot/src/commands/ListDimensionsCommand.ts index 274c1ba8006de..de3f8c6714bfa 100644 --- a/clients/client-iot/src/commands/ListDimensionsCommand.ts +++ b/clients/client-iot/src/commands/ListDimensionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListDimensionsRequest, ListDimensionsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListDimensionsRequest, ListDimensionsResponse } from "../models/models_1"; import { ListDimensions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListDomainConfigurationsCommand.ts b/clients/client-iot/src/commands/ListDomainConfigurationsCommand.ts index 8b5bfddd848de..16be4739c3c87 100644 --- a/clients/client-iot/src/commands/ListDomainConfigurationsCommand.ts +++ b/clients/client-iot/src/commands/ListDomainConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListDomainConfigurationsRequest, ListDomainConfigurationsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListDomainConfigurationsRequest, ListDomainConfigurationsResponse } from "../models/models_1"; import { ListDomainConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListFleetMetricsCommand.ts b/clients/client-iot/src/commands/ListFleetMetricsCommand.ts index 9b24854ce11d8..68917f72ea96c 100644 --- a/clients/client-iot/src/commands/ListFleetMetricsCommand.ts +++ b/clients/client-iot/src/commands/ListFleetMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListFleetMetricsRequest, ListFleetMetricsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListFleetMetricsRequest, ListFleetMetricsResponse } from "../models/models_1"; import { ListFleetMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListIndicesCommand.ts b/clients/client-iot/src/commands/ListIndicesCommand.ts index cd9e458094de8..a24f8ae7c9f19 100644 --- a/clients/client-iot/src/commands/ListIndicesCommand.ts +++ b/clients/client-iot/src/commands/ListIndicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListIndicesRequest, ListIndicesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListIndicesRequest, ListIndicesResponse } from "../models/models_1"; import { ListIndices } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListJobExecutionsForJobCommand.ts b/clients/client-iot/src/commands/ListJobExecutionsForJobCommand.ts index 7017afa511101..ece25f5a48f46 100644 --- a/clients/client-iot/src/commands/ListJobExecutionsForJobCommand.ts +++ b/clients/client-iot/src/commands/ListJobExecutionsForJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListJobExecutionsForJobRequest, ListJobExecutionsForJobResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListJobExecutionsForJobRequest, ListJobExecutionsForJobResponse } from "../models/models_1"; import { ListJobExecutionsForJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListJobExecutionsForThingCommand.ts b/clients/client-iot/src/commands/ListJobExecutionsForThingCommand.ts index 15d57e32d0649..13f180ad3a708 100644 --- a/clients/client-iot/src/commands/ListJobExecutionsForThingCommand.ts +++ b/clients/client-iot/src/commands/ListJobExecutionsForThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListJobExecutionsForThingRequest, ListJobExecutionsForThingResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListJobExecutionsForThingRequest, ListJobExecutionsForThingResponse } from "../models/models_1"; import { ListJobExecutionsForThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListJobTemplatesCommand.ts b/clients/client-iot/src/commands/ListJobTemplatesCommand.ts index 3f0319f23e529..67bd1dd05b109 100644 --- a/clients/client-iot/src/commands/ListJobTemplatesCommand.ts +++ b/clients/client-iot/src/commands/ListJobTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_1"; import { ListJobTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListJobsCommand.ts b/clients/client-iot/src/commands/ListJobsCommand.ts index c7bbf85fe8a81..ad48faca7498e 100644 --- a/clients/client-iot/src/commands/ListJobsCommand.ts +++ b/clients/client-iot/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListJobsRequest, ListJobsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListJobsRequest, ListJobsResponse } from "../models/models_1"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListManagedJobTemplatesCommand.ts b/clients/client-iot/src/commands/ListManagedJobTemplatesCommand.ts index 5e5eff48b5ef3..1d012415dba2e 100644 --- a/clients/client-iot/src/commands/ListManagedJobTemplatesCommand.ts +++ b/clients/client-iot/src/commands/ListManagedJobTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListManagedJobTemplatesRequest, ListManagedJobTemplatesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListManagedJobTemplatesRequest, ListManagedJobTemplatesResponse } from "../models/models_1"; import { ListManagedJobTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListMetricValuesCommand.ts b/clients/client-iot/src/commands/ListMetricValuesCommand.ts index be800b5c5a21e..cb1ae0d330765 100644 --- a/clients/client-iot/src/commands/ListMetricValuesCommand.ts +++ b/clients/client-iot/src/commands/ListMetricValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListMetricValuesRequest, ListMetricValuesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListMetricValuesRequest, ListMetricValuesResponse } from "../models/models_1"; import { ListMetricValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListMitigationActionsCommand.ts b/clients/client-iot/src/commands/ListMitigationActionsCommand.ts index 28ea02ec043d1..f9fc4ea6e60bf 100644 --- a/clients/client-iot/src/commands/ListMitigationActionsCommand.ts +++ b/clients/client-iot/src/commands/ListMitigationActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListMitigationActionsRequest, ListMitigationActionsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListMitigationActionsRequest, ListMitigationActionsResponse } from "../models/models_1"; import { ListMitigationActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListOTAUpdatesCommand.ts b/clients/client-iot/src/commands/ListOTAUpdatesCommand.ts index c15979bbe67cc..0dbf81c565f06 100644 --- a/clients/client-iot/src/commands/ListOTAUpdatesCommand.ts +++ b/clients/client-iot/src/commands/ListOTAUpdatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListOTAUpdatesRequest, ListOTAUpdatesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListOTAUpdatesRequest, ListOTAUpdatesResponse } from "../models/models_1"; import { ListOTAUpdates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListOutgoingCertificatesCommand.ts b/clients/client-iot/src/commands/ListOutgoingCertificatesCommand.ts index c799c58f3309a..f6053cb73f080 100644 --- a/clients/client-iot/src/commands/ListOutgoingCertificatesCommand.ts +++ b/clients/client-iot/src/commands/ListOutgoingCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListOutgoingCertificatesRequest, ListOutgoingCertificatesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListOutgoingCertificatesRequest, ListOutgoingCertificatesResponse } from "../models/models_1"; import { ListOutgoingCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListPackageVersionsCommand.ts b/clients/client-iot/src/commands/ListPackageVersionsCommand.ts index dfcb1402a5c3f..0b4932c7082b8 100644 --- a/clients/client-iot/src/commands/ListPackageVersionsCommand.ts +++ b/clients/client-iot/src/commands/ListPackageVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListPackageVersionsRequest, ListPackageVersionsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListPackageVersionsRequest, ListPackageVersionsResponse } from "../models/models_1"; import { ListPackageVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListPackagesCommand.ts b/clients/client-iot/src/commands/ListPackagesCommand.ts index b049b7aba4fcc..3facb19341be6 100644 --- a/clients/client-iot/src/commands/ListPackagesCommand.ts +++ b/clients/client-iot/src/commands/ListPackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListPackagesRequest, ListPackagesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListPackagesRequest, ListPackagesResponse } from "../models/models_1"; import { ListPackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListPoliciesCommand.ts b/clients/client-iot/src/commands/ListPoliciesCommand.ts index ab958939635fd..10a0742b4ebe7 100644 --- a/clients/client-iot/src/commands/ListPoliciesCommand.ts +++ b/clients/client-iot/src/commands/ListPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_1"; import { ListPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListPolicyPrincipalsCommand.ts b/clients/client-iot/src/commands/ListPolicyPrincipalsCommand.ts index 858ea23de5c24..1ecf1474af1bc 100644 --- a/clients/client-iot/src/commands/ListPolicyPrincipalsCommand.ts +++ b/clients/client-iot/src/commands/ListPolicyPrincipalsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListPolicyPrincipalsRequest, ListPolicyPrincipalsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListPolicyPrincipalsRequest, ListPolicyPrincipalsResponse } from "../models/models_1"; import { ListPolicyPrincipals } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListPolicyVersionsCommand.ts b/clients/client-iot/src/commands/ListPolicyVersionsCommand.ts index 6e40645de0e4d..d926166eeb853 100644 --- a/clients/client-iot/src/commands/ListPolicyVersionsCommand.ts +++ b/clients/client-iot/src/commands/ListPolicyVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListPolicyVersionsRequest, ListPolicyVersionsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListPolicyVersionsRequest, ListPolicyVersionsResponse } from "../models/models_1"; import { ListPolicyVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListPrincipalPoliciesCommand.ts b/clients/client-iot/src/commands/ListPrincipalPoliciesCommand.ts index 9522d2af394cb..ce4dc7a590825 100644 --- a/clients/client-iot/src/commands/ListPrincipalPoliciesCommand.ts +++ b/clients/client-iot/src/commands/ListPrincipalPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListPrincipalPoliciesRequest, ListPrincipalPoliciesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListPrincipalPoliciesRequest, ListPrincipalPoliciesResponse } from "../models/models_1"; import { ListPrincipalPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListPrincipalThingsCommand.ts b/clients/client-iot/src/commands/ListPrincipalThingsCommand.ts index 37b8700b042f3..c417b3952d66f 100644 --- a/clients/client-iot/src/commands/ListPrincipalThingsCommand.ts +++ b/clients/client-iot/src/commands/ListPrincipalThingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListPrincipalThingsRequest, ListPrincipalThingsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListPrincipalThingsRequest, ListPrincipalThingsResponse } from "../models/models_1"; import { ListPrincipalThings } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListPrincipalThingsV2Command.ts b/clients/client-iot/src/commands/ListPrincipalThingsV2Command.ts index 2ee956f949178..f9cf00cb64457 100644 --- a/clients/client-iot/src/commands/ListPrincipalThingsV2Command.ts +++ b/clients/client-iot/src/commands/ListPrincipalThingsV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListPrincipalThingsV2Request, ListPrincipalThingsV2Response } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListPrincipalThingsV2Request, ListPrincipalThingsV2Response } from "../models/models_1"; import { ListPrincipalThingsV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListProvisioningTemplateVersionsCommand.ts b/clients/client-iot/src/commands/ListProvisioningTemplateVersionsCommand.ts index a0ff047387f98..f0fbf69357194 100644 --- a/clients/client-iot/src/commands/ListProvisioningTemplateVersionsCommand.ts +++ b/clients/client-iot/src/commands/ListProvisioningTemplateVersionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListProvisioningTemplateVersionsRequest, ListProvisioningTemplateVersionsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + ListProvisioningTemplateVersionsRequest, + ListProvisioningTemplateVersionsResponse, +} from "../models/models_1"; import { ListProvisioningTemplateVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListProvisioningTemplatesCommand.ts b/clients/client-iot/src/commands/ListProvisioningTemplatesCommand.ts index 16c9db0fffed0..e6c9761bb9293 100644 --- a/clients/client-iot/src/commands/ListProvisioningTemplatesCommand.ts +++ b/clients/client-iot/src/commands/ListProvisioningTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListProvisioningTemplatesRequest, ListProvisioningTemplatesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListProvisioningTemplatesRequest, ListProvisioningTemplatesResponse } from "../models/models_1"; import { ListProvisioningTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListRelatedResourcesForAuditFindingCommand.ts b/clients/client-iot/src/commands/ListRelatedResourcesForAuditFindingCommand.ts index ffbba869e0e53..fd32cb5356bc8 100644 --- a/clients/client-iot/src/commands/ListRelatedResourcesForAuditFindingCommand.ts +++ b/clients/client-iot/src/commands/ListRelatedResourcesForAuditFindingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListRelatedResourcesForAuditFindingRequest, ListRelatedResourcesForAuditFindingResponse, } from "../models/models_1"; diff --git a/clients/client-iot/src/commands/ListRoleAliasesCommand.ts b/clients/client-iot/src/commands/ListRoleAliasesCommand.ts index 2946c3d808c76..14a7dc02525d3 100644 --- a/clients/client-iot/src/commands/ListRoleAliasesCommand.ts +++ b/clients/client-iot/src/commands/ListRoleAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListRoleAliasesRequest, ListRoleAliasesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListRoleAliasesRequest, ListRoleAliasesResponse } from "../models/models_1"; import { ListRoleAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListSbomValidationResultsCommand.ts b/clients/client-iot/src/commands/ListSbomValidationResultsCommand.ts index 8fbc50b2f3d31..292e0d6ff1d3f 100644 --- a/clients/client-iot/src/commands/ListSbomValidationResultsCommand.ts +++ b/clients/client-iot/src/commands/ListSbomValidationResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListSbomValidationResultsRequest, ListSbomValidationResultsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListSbomValidationResultsRequest, ListSbomValidationResultsResponse } from "../models/models_1"; import { ListSbomValidationResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListScheduledAuditsCommand.ts b/clients/client-iot/src/commands/ListScheduledAuditsCommand.ts index e14c1558a6f5d..ba090a8315ff4 100644 --- a/clients/client-iot/src/commands/ListScheduledAuditsCommand.ts +++ b/clients/client-iot/src/commands/ListScheduledAuditsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListScheduledAuditsRequest, ListScheduledAuditsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListScheduledAuditsRequest, ListScheduledAuditsResponse } from "../models/models_1"; import { ListScheduledAudits } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListSecurityProfilesCommand.ts b/clients/client-iot/src/commands/ListSecurityProfilesCommand.ts index 7fd20d03c645a..6adf088159688 100644 --- a/clients/client-iot/src/commands/ListSecurityProfilesCommand.ts +++ b/clients/client-iot/src/commands/ListSecurityProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListSecurityProfilesRequest, ListSecurityProfilesResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListSecurityProfilesRequest, ListSecurityProfilesResponse } from "../models/models_1"; import { ListSecurityProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListSecurityProfilesForTargetCommand.ts b/clients/client-iot/src/commands/ListSecurityProfilesForTargetCommand.ts index e231d3331c5e7..f4433752c0691 100644 --- a/clients/client-iot/src/commands/ListSecurityProfilesForTargetCommand.ts +++ b/clients/client-iot/src/commands/ListSecurityProfilesForTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListSecurityProfilesForTargetRequest, ListSecurityProfilesForTargetResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListSecurityProfilesForTargetRequest, ListSecurityProfilesForTargetResponse } from "../models/models_1"; import { ListSecurityProfilesForTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListStreamsCommand.ts b/clients/client-iot/src/commands/ListStreamsCommand.ts index 8190a64eeaaab..1b6e482e59a04 100644 --- a/clients/client-iot/src/commands/ListStreamsCommand.ts +++ b/clients/client-iot/src/commands/ListStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListStreamsRequest, ListStreamsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListStreamsRequest, ListStreamsResponse } from "../models/models_1"; import { ListStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListTagsForResourceCommand.ts b/clients/client-iot/src/commands/ListTagsForResourceCommand.ts index c0d62f92f0e6a..db6a9bdff284f 100644 --- a/clients/client-iot/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iot/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListTargetsForPolicyCommand.ts b/clients/client-iot/src/commands/ListTargetsForPolicyCommand.ts index 66e7f4f0df3cc..2e567ae301e69 100644 --- a/clients/client-iot/src/commands/ListTargetsForPolicyCommand.ts +++ b/clients/client-iot/src/commands/ListTargetsForPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListTargetsForPolicyRequest, ListTargetsForPolicyResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListTargetsForPolicyRequest, ListTargetsForPolicyResponse } from "../models/models_1"; import { ListTargetsForPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListTargetsForSecurityProfileCommand.ts b/clients/client-iot/src/commands/ListTargetsForSecurityProfileCommand.ts index 7216c1c72a7d8..82a08072ae882 100644 --- a/clients/client-iot/src/commands/ListTargetsForSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/ListTargetsForSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListTargetsForSecurityProfileRequest, ListTargetsForSecurityProfileResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListTargetsForSecurityProfileRequest, ListTargetsForSecurityProfileResponse } from "../models/models_1"; import { ListTargetsForSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingGroupsCommand.ts b/clients/client-iot/src/commands/ListThingGroupsCommand.ts index 1547fa066e4a2..c851adbc79090 100644 --- a/clients/client-iot/src/commands/ListThingGroupsCommand.ts +++ b/clients/client-iot/src/commands/ListThingGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingGroupsRequest, ListThingGroupsResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListThingGroupsRequest, ListThingGroupsResponse } from "../models/models_1"; import { ListThingGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingGroupsForThingCommand.ts b/clients/client-iot/src/commands/ListThingGroupsForThingCommand.ts index a2df2689d0473..08f68bf1c0af5 100644 --- a/clients/client-iot/src/commands/ListThingGroupsForThingCommand.ts +++ b/clients/client-iot/src/commands/ListThingGroupsForThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingGroupsForThingRequest, ListThingGroupsForThingResponse } from "../models/models_1"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListThingGroupsForThingRequest, ListThingGroupsForThingResponse } from "../models/models_1"; import { ListThingGroupsForThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingPrincipalsCommand.ts b/clients/client-iot/src/commands/ListThingPrincipalsCommand.ts index 6112bbd4e907b..b554accb1d19e 100644 --- a/clients/client-iot/src/commands/ListThingPrincipalsCommand.ts +++ b/clients/client-iot/src/commands/ListThingPrincipalsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingPrincipalsRequest } from "../models/models_1"; -import { ListThingPrincipalsResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListThingPrincipalsRequest } from "../models/models_1"; +import type { ListThingPrincipalsResponse } from "../models/models_2"; import { ListThingPrincipals } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingPrincipalsV2Command.ts b/clients/client-iot/src/commands/ListThingPrincipalsV2Command.ts index 69b43b3bbb257..cf74c60445457 100644 --- a/clients/client-iot/src/commands/ListThingPrincipalsV2Command.ts +++ b/clients/client-iot/src/commands/ListThingPrincipalsV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingPrincipalsV2Request, ListThingPrincipalsV2Response } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListThingPrincipalsV2Request, ListThingPrincipalsV2Response } from "../models/models_2"; import { ListThingPrincipalsV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingRegistrationTaskReportsCommand.ts b/clients/client-iot/src/commands/ListThingRegistrationTaskReportsCommand.ts index d9e83d06c31bb..23fa66ad07891 100644 --- a/clients/client-iot/src/commands/ListThingRegistrationTaskReportsCommand.ts +++ b/clients/client-iot/src/commands/ListThingRegistrationTaskReportsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingRegistrationTaskReportsRequest, ListThingRegistrationTaskReportsResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + ListThingRegistrationTaskReportsRequest, + ListThingRegistrationTaskReportsResponse, +} from "../models/models_2"; import { ListThingRegistrationTaskReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingRegistrationTasksCommand.ts b/clients/client-iot/src/commands/ListThingRegistrationTasksCommand.ts index 3c78d97906eb0..37664e8f0cab6 100644 --- a/clients/client-iot/src/commands/ListThingRegistrationTasksCommand.ts +++ b/clients/client-iot/src/commands/ListThingRegistrationTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingRegistrationTasksRequest, ListThingRegistrationTasksResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListThingRegistrationTasksRequest, ListThingRegistrationTasksResponse } from "../models/models_2"; import { ListThingRegistrationTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingTypesCommand.ts b/clients/client-iot/src/commands/ListThingTypesCommand.ts index 3609a6e1186d5..5e0523a4f565e 100644 --- a/clients/client-iot/src/commands/ListThingTypesCommand.ts +++ b/clients/client-iot/src/commands/ListThingTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingTypesRequest, ListThingTypesResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListThingTypesRequest, ListThingTypesResponse } from "../models/models_2"; import { ListThingTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingsCommand.ts b/clients/client-iot/src/commands/ListThingsCommand.ts index c44096c0aba44..db6574850b94e 100644 --- a/clients/client-iot/src/commands/ListThingsCommand.ts +++ b/clients/client-iot/src/commands/ListThingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingsRequest, ListThingsResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListThingsRequest, ListThingsResponse } from "../models/models_2"; import { ListThings } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingsInBillingGroupCommand.ts b/clients/client-iot/src/commands/ListThingsInBillingGroupCommand.ts index 786161f992251..5a349e15601a0 100644 --- a/clients/client-iot/src/commands/ListThingsInBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/ListThingsInBillingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingsInBillingGroupRequest, ListThingsInBillingGroupResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListThingsInBillingGroupRequest, ListThingsInBillingGroupResponse } from "../models/models_2"; import { ListThingsInBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListThingsInThingGroupCommand.ts b/clients/client-iot/src/commands/ListThingsInThingGroupCommand.ts index f939e5a7f5b1b..6bb6b66e2baea 100644 --- a/clients/client-iot/src/commands/ListThingsInThingGroupCommand.ts +++ b/clients/client-iot/src/commands/ListThingsInThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListThingsInThingGroupRequest, ListThingsInThingGroupResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListThingsInThingGroupRequest, ListThingsInThingGroupResponse } from "../models/models_2"; import { ListThingsInThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListTopicRuleDestinationsCommand.ts b/clients/client-iot/src/commands/ListTopicRuleDestinationsCommand.ts index b1db6a8ee5efa..b625825dc60d5 100644 --- a/clients/client-iot/src/commands/ListTopicRuleDestinationsCommand.ts +++ b/clients/client-iot/src/commands/ListTopicRuleDestinationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListTopicRuleDestinationsRequest, ListTopicRuleDestinationsResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListTopicRuleDestinationsRequest, ListTopicRuleDestinationsResponse } from "../models/models_2"; import { ListTopicRuleDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListTopicRulesCommand.ts b/clients/client-iot/src/commands/ListTopicRulesCommand.ts index 532f1c8c6d04c..e79444c772182 100644 --- a/clients/client-iot/src/commands/ListTopicRulesCommand.ts +++ b/clients/client-iot/src/commands/ListTopicRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListTopicRulesRequest, ListTopicRulesResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListTopicRulesRequest, ListTopicRulesResponse } from "../models/models_2"; import { ListTopicRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListV2LoggingLevelsCommand.ts b/clients/client-iot/src/commands/ListV2LoggingLevelsCommand.ts index 0c064acac398a..94161330ee160 100644 --- a/clients/client-iot/src/commands/ListV2LoggingLevelsCommand.ts +++ b/clients/client-iot/src/commands/ListV2LoggingLevelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListV2LoggingLevelsRequest, ListV2LoggingLevelsResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListV2LoggingLevelsRequest, ListV2LoggingLevelsResponse } from "../models/models_2"; import { ListV2LoggingLevels } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ListViolationEventsCommand.ts b/clients/client-iot/src/commands/ListViolationEventsCommand.ts index 49f69377c12f5..8175049e8bb0e 100644 --- a/clients/client-iot/src/commands/ListViolationEventsCommand.ts +++ b/clients/client-iot/src/commands/ListViolationEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ListViolationEventsRequest, ListViolationEventsResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ListViolationEventsRequest, ListViolationEventsResponse } from "../models/models_2"; import { ListViolationEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/PutVerificationStateOnViolationCommand.ts b/clients/client-iot/src/commands/PutVerificationStateOnViolationCommand.ts index 8e3272a21a39c..9652da21cda30 100644 --- a/clients/client-iot/src/commands/PutVerificationStateOnViolationCommand.ts +++ b/clients/client-iot/src/commands/PutVerificationStateOnViolationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { PutVerificationStateOnViolationRequest, PutVerificationStateOnViolationResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + PutVerificationStateOnViolationRequest, + PutVerificationStateOnViolationResponse, +} from "../models/models_2"; import { PutVerificationStateOnViolation } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/RegisterCACertificateCommand.ts b/clients/client-iot/src/commands/RegisterCACertificateCommand.ts index 62d7d89c764cb..b0d42b120b890 100644 --- a/clients/client-iot/src/commands/RegisterCACertificateCommand.ts +++ b/clients/client-iot/src/commands/RegisterCACertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { RegisterCACertificateRequest, RegisterCACertificateResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { RegisterCACertificateRequest, RegisterCACertificateResponse } from "../models/models_2"; import { RegisterCACertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/RegisterCertificateCommand.ts b/clients/client-iot/src/commands/RegisterCertificateCommand.ts index 3aa6fbfb11912..bc26a939d0e55 100644 --- a/clients/client-iot/src/commands/RegisterCertificateCommand.ts +++ b/clients/client-iot/src/commands/RegisterCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { RegisterCertificateRequest, RegisterCertificateResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { RegisterCertificateRequest, RegisterCertificateResponse } from "../models/models_2"; import { RegisterCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/RegisterCertificateWithoutCACommand.ts b/clients/client-iot/src/commands/RegisterCertificateWithoutCACommand.ts index c2662b74cc03b..8ff38b67b0919 100644 --- a/clients/client-iot/src/commands/RegisterCertificateWithoutCACommand.ts +++ b/clients/client-iot/src/commands/RegisterCertificateWithoutCACommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { RegisterCertificateWithoutCARequest, RegisterCertificateWithoutCAResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { RegisterCertificateWithoutCARequest, RegisterCertificateWithoutCAResponse } from "../models/models_2"; import { RegisterCertificateWithoutCA } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/RegisterThingCommand.ts b/clients/client-iot/src/commands/RegisterThingCommand.ts index 09012b9bf375f..709e0760bbb71 100644 --- a/clients/client-iot/src/commands/RegisterThingCommand.ts +++ b/clients/client-iot/src/commands/RegisterThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { RegisterThingRequest, RegisterThingResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { RegisterThingRequest, RegisterThingResponse } from "../models/models_2"; import { RegisterThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/RejectCertificateTransferCommand.ts b/clients/client-iot/src/commands/RejectCertificateTransferCommand.ts index b6b770248653a..87d903fa38323 100644 --- a/clients/client-iot/src/commands/RejectCertificateTransferCommand.ts +++ b/clients/client-iot/src/commands/RejectCertificateTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { RejectCertificateTransferRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { RejectCertificateTransferRequest } from "../models/models_2"; import { RejectCertificateTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/RemoveThingFromBillingGroupCommand.ts b/clients/client-iot/src/commands/RemoveThingFromBillingGroupCommand.ts index d7efb98e455af..e2f205e0e7d28 100644 --- a/clients/client-iot/src/commands/RemoveThingFromBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/RemoveThingFromBillingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { RemoveThingFromBillingGroupRequest, RemoveThingFromBillingGroupResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { RemoveThingFromBillingGroupRequest, RemoveThingFromBillingGroupResponse } from "../models/models_2"; import { RemoveThingFromBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/RemoveThingFromThingGroupCommand.ts b/clients/client-iot/src/commands/RemoveThingFromThingGroupCommand.ts index 5d388aa454c9e..ed20652d6cbfb 100644 --- a/clients/client-iot/src/commands/RemoveThingFromThingGroupCommand.ts +++ b/clients/client-iot/src/commands/RemoveThingFromThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { RemoveThingFromThingGroupRequest, RemoveThingFromThingGroupResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { RemoveThingFromThingGroupRequest, RemoveThingFromThingGroupResponse } from "../models/models_2"; import { RemoveThingFromThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ReplaceTopicRuleCommand.ts b/clients/client-iot/src/commands/ReplaceTopicRuleCommand.ts index 2ea1af8e01d10..71bb512145480 100644 --- a/clients/client-iot/src/commands/ReplaceTopicRuleCommand.ts +++ b/clients/client-iot/src/commands/ReplaceTopicRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ReplaceTopicRuleRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { ReplaceTopicRuleRequest } from "../models/models_2"; import { ReplaceTopicRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/SearchIndexCommand.ts b/clients/client-iot/src/commands/SearchIndexCommand.ts index 81dc8ebfc6da6..e663145ada1d6 100644 --- a/clients/client-iot/src/commands/SearchIndexCommand.ts +++ b/clients/client-iot/src/commands/SearchIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { SearchIndexRequest, SearchIndexResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { SearchIndexRequest, SearchIndexResponse } from "../models/models_2"; import { SearchIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/SetDefaultAuthorizerCommand.ts b/clients/client-iot/src/commands/SetDefaultAuthorizerCommand.ts index 53323d0164976..ba40795fd288c 100644 --- a/clients/client-iot/src/commands/SetDefaultAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/SetDefaultAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { SetDefaultAuthorizerRequest, SetDefaultAuthorizerResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { SetDefaultAuthorizerRequest, SetDefaultAuthorizerResponse } from "../models/models_2"; import { SetDefaultAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/SetDefaultPolicyVersionCommand.ts b/clients/client-iot/src/commands/SetDefaultPolicyVersionCommand.ts index 7cfeca5cfd946..f4432c0bae885 100644 --- a/clients/client-iot/src/commands/SetDefaultPolicyVersionCommand.ts +++ b/clients/client-iot/src/commands/SetDefaultPolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { SetDefaultPolicyVersionRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { SetDefaultPolicyVersionRequest } from "../models/models_2"; import { SetDefaultPolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/SetLoggingOptionsCommand.ts b/clients/client-iot/src/commands/SetLoggingOptionsCommand.ts index 422255f5ca3b9..46a78b2a5afd3 100644 --- a/clients/client-iot/src/commands/SetLoggingOptionsCommand.ts +++ b/clients/client-iot/src/commands/SetLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { SetLoggingOptionsRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { SetLoggingOptionsRequest } from "../models/models_2"; import { SetLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/SetV2LoggingLevelCommand.ts b/clients/client-iot/src/commands/SetV2LoggingLevelCommand.ts index 96949bacfb789..037eea973b4ae 100644 --- a/clients/client-iot/src/commands/SetV2LoggingLevelCommand.ts +++ b/clients/client-iot/src/commands/SetV2LoggingLevelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { SetV2LoggingLevelRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { SetV2LoggingLevelRequest } from "../models/models_2"; import { SetV2LoggingLevel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/SetV2LoggingOptionsCommand.ts b/clients/client-iot/src/commands/SetV2LoggingOptionsCommand.ts index 87062e3254c50..9fb2ad372cb9d 100644 --- a/clients/client-iot/src/commands/SetV2LoggingOptionsCommand.ts +++ b/clients/client-iot/src/commands/SetV2LoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { SetV2LoggingOptionsRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { SetV2LoggingOptionsRequest } from "../models/models_2"; import { SetV2LoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/StartAuditMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/StartAuditMitigationActionsTaskCommand.ts index d5b81f2d5210a..803b99dc48610 100644 --- a/clients/client-iot/src/commands/StartAuditMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/StartAuditMitigationActionsTaskCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { StartAuditMitigationActionsTaskRequest, StartAuditMitigationActionsTaskResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + StartAuditMitigationActionsTaskRequest, + StartAuditMitigationActionsTaskResponse, +} from "../models/models_2"; import { StartAuditMitigationActionsTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/StartDetectMitigationActionsTaskCommand.ts b/clients/client-iot/src/commands/StartDetectMitigationActionsTaskCommand.ts index 18a54960f9d2d..613618a73ddef 100644 --- a/clients/client-iot/src/commands/StartDetectMitigationActionsTaskCommand.ts +++ b/clients/client-iot/src/commands/StartDetectMitigationActionsTaskCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { StartDetectMitigationActionsTaskRequest, StartDetectMitigationActionsTaskResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + StartDetectMitigationActionsTaskRequest, + StartDetectMitigationActionsTaskResponse, +} from "../models/models_2"; import { StartDetectMitigationActionsTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/StartOnDemandAuditTaskCommand.ts b/clients/client-iot/src/commands/StartOnDemandAuditTaskCommand.ts index dff1a1978b219..ccf55c7188cf4 100644 --- a/clients/client-iot/src/commands/StartOnDemandAuditTaskCommand.ts +++ b/clients/client-iot/src/commands/StartOnDemandAuditTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { StartOnDemandAuditTaskRequest, StartOnDemandAuditTaskResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { StartOnDemandAuditTaskRequest, StartOnDemandAuditTaskResponse } from "../models/models_2"; import { StartOnDemandAuditTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/StartThingRegistrationTaskCommand.ts b/clients/client-iot/src/commands/StartThingRegistrationTaskCommand.ts index b58e0a8b38c70..72e4cab472535 100644 --- a/clients/client-iot/src/commands/StartThingRegistrationTaskCommand.ts +++ b/clients/client-iot/src/commands/StartThingRegistrationTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { StartThingRegistrationTaskRequest, StartThingRegistrationTaskResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { StartThingRegistrationTaskRequest, StartThingRegistrationTaskResponse } from "../models/models_2"; import { StartThingRegistrationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/StopThingRegistrationTaskCommand.ts b/clients/client-iot/src/commands/StopThingRegistrationTaskCommand.ts index 4cc9d1c65e06b..5112ee7850d30 100644 --- a/clients/client-iot/src/commands/StopThingRegistrationTaskCommand.ts +++ b/clients/client-iot/src/commands/StopThingRegistrationTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { StopThingRegistrationTaskRequest, StopThingRegistrationTaskResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { StopThingRegistrationTaskRequest, StopThingRegistrationTaskResponse } from "../models/models_2"; import { StopThingRegistrationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/TagResourceCommand.ts b/clients/client-iot/src/commands/TagResourceCommand.ts index 1a471db6910b8..3f83d083d6aac 100644 --- a/clients/client-iot/src/commands/TagResourceCommand.ts +++ b/clients/client-iot/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_2"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/TestAuthorizationCommand.ts b/clients/client-iot/src/commands/TestAuthorizationCommand.ts index 440a464f49ac9..a556d747ca6aa 100644 --- a/clients/client-iot/src/commands/TestAuthorizationCommand.ts +++ b/clients/client-iot/src/commands/TestAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { TestAuthorizationRequest, TestAuthorizationResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { TestAuthorizationRequest, TestAuthorizationResponse } from "../models/models_2"; import { TestAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/TestInvokeAuthorizerCommand.ts b/clients/client-iot/src/commands/TestInvokeAuthorizerCommand.ts index f59e4358fb855..fb066868c9819 100644 --- a/clients/client-iot/src/commands/TestInvokeAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/TestInvokeAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { TestInvokeAuthorizerRequest, TestInvokeAuthorizerResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { TestInvokeAuthorizerRequest, TestInvokeAuthorizerResponse } from "../models/models_2"; import { TestInvokeAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/TransferCertificateCommand.ts b/clients/client-iot/src/commands/TransferCertificateCommand.ts index cd40996c5260e..50f5d971590a8 100644 --- a/clients/client-iot/src/commands/TransferCertificateCommand.ts +++ b/clients/client-iot/src/commands/TransferCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { TransferCertificateRequest, TransferCertificateResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { TransferCertificateRequest, TransferCertificateResponse } from "../models/models_2"; import { TransferCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UntagResourceCommand.ts b/clients/client-iot/src/commands/UntagResourceCommand.ts index 2e897214abf8d..c945d3676134a 100644 --- a/clients/client-iot/src/commands/UntagResourceCommand.ts +++ b/clients/client-iot/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_2"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateAccountAuditConfigurationCommand.ts b/clients/client-iot/src/commands/UpdateAccountAuditConfigurationCommand.ts index ed74170b7d0a5..a886ed861a221 100644 --- a/clients/client-iot/src/commands/UpdateAccountAuditConfigurationCommand.ts +++ b/clients/client-iot/src/commands/UpdateAccountAuditConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateAccountAuditConfigurationRequest, UpdateAccountAuditConfigurationResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + UpdateAccountAuditConfigurationRequest, + UpdateAccountAuditConfigurationResponse, +} from "../models/models_2"; import { UpdateAccountAuditConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateAuditSuppressionCommand.ts b/clients/client-iot/src/commands/UpdateAuditSuppressionCommand.ts index 198bba503b2ab..cc7cad7dee2c7 100644 --- a/clients/client-iot/src/commands/UpdateAuditSuppressionCommand.ts +++ b/clients/client-iot/src/commands/UpdateAuditSuppressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateAuditSuppressionRequest, UpdateAuditSuppressionResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateAuditSuppressionRequest, UpdateAuditSuppressionResponse } from "../models/models_2"; import { UpdateAuditSuppression } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateAuthorizerCommand.ts b/clients/client-iot/src/commands/UpdateAuthorizerCommand.ts index acda536e48762..f3fd1042e3001 100644 --- a/clients/client-iot/src/commands/UpdateAuthorizerCommand.ts +++ b/clients/client-iot/src/commands/UpdateAuthorizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateAuthorizerRequest, UpdateAuthorizerResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateAuthorizerRequest, UpdateAuthorizerResponse } from "../models/models_2"; import { UpdateAuthorizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateBillingGroupCommand.ts b/clients/client-iot/src/commands/UpdateBillingGroupCommand.ts index 431dbca40b8f9..fb15a227d7e03 100644 --- a/clients/client-iot/src/commands/UpdateBillingGroupCommand.ts +++ b/clients/client-iot/src/commands/UpdateBillingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateBillingGroupRequest, UpdateBillingGroupResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateBillingGroupRequest, UpdateBillingGroupResponse } from "../models/models_2"; import { UpdateBillingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateCACertificateCommand.ts b/clients/client-iot/src/commands/UpdateCACertificateCommand.ts index 8c43601cb0dda..02442097f80ca 100644 --- a/clients/client-iot/src/commands/UpdateCACertificateCommand.ts +++ b/clients/client-iot/src/commands/UpdateCACertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateCACertificateRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateCACertificateRequest } from "../models/models_2"; import { UpdateCACertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateCertificateCommand.ts b/clients/client-iot/src/commands/UpdateCertificateCommand.ts index be6b8eb408189..dbc609246761b 100644 --- a/clients/client-iot/src/commands/UpdateCertificateCommand.ts +++ b/clients/client-iot/src/commands/UpdateCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateCertificateRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateCertificateRequest } from "../models/models_2"; import { UpdateCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateCertificateProviderCommand.ts b/clients/client-iot/src/commands/UpdateCertificateProviderCommand.ts index a996a59ddb305..28f87d479c863 100644 --- a/clients/client-iot/src/commands/UpdateCertificateProviderCommand.ts +++ b/clients/client-iot/src/commands/UpdateCertificateProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateCertificateProviderRequest, UpdateCertificateProviderResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateCertificateProviderRequest, UpdateCertificateProviderResponse } from "../models/models_2"; import { UpdateCertificateProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateCommandCommand.ts b/clients/client-iot/src/commands/UpdateCommandCommand.ts index 4ffa1fdcf8e0e..e6d478b485eec 100644 --- a/clients/client-iot/src/commands/UpdateCommandCommand.ts +++ b/clients/client-iot/src/commands/UpdateCommandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateCommandRequest, UpdateCommandResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateCommandRequest, UpdateCommandResponse } from "../models/models_2"; import { UpdateCommand } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateCustomMetricCommand.ts b/clients/client-iot/src/commands/UpdateCustomMetricCommand.ts index e7d549726391c..ed209da19bafc 100644 --- a/clients/client-iot/src/commands/UpdateCustomMetricCommand.ts +++ b/clients/client-iot/src/commands/UpdateCustomMetricCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateCustomMetricRequest, UpdateCustomMetricResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateCustomMetricRequest, UpdateCustomMetricResponse } from "../models/models_2"; import { UpdateCustomMetric } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateDimensionCommand.ts b/clients/client-iot/src/commands/UpdateDimensionCommand.ts index 9756e1443f609..8916509a31fd8 100644 --- a/clients/client-iot/src/commands/UpdateDimensionCommand.ts +++ b/clients/client-iot/src/commands/UpdateDimensionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateDimensionRequest, UpdateDimensionResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateDimensionRequest, UpdateDimensionResponse } from "../models/models_2"; import { UpdateDimension } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateDomainConfigurationCommand.ts b/clients/client-iot/src/commands/UpdateDomainConfigurationCommand.ts index c45c9f3abd1ae..de09004b22311 100644 --- a/clients/client-iot/src/commands/UpdateDomainConfigurationCommand.ts +++ b/clients/client-iot/src/commands/UpdateDomainConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateDomainConfigurationRequest, UpdateDomainConfigurationResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateDomainConfigurationRequest, UpdateDomainConfigurationResponse } from "../models/models_2"; import { UpdateDomainConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateDynamicThingGroupCommand.ts b/clients/client-iot/src/commands/UpdateDynamicThingGroupCommand.ts index 56dceaaea0c30..9cf907f174a8f 100644 --- a/clients/client-iot/src/commands/UpdateDynamicThingGroupCommand.ts +++ b/clients/client-iot/src/commands/UpdateDynamicThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateDynamicThingGroupRequest, UpdateDynamicThingGroupResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateDynamicThingGroupRequest, UpdateDynamicThingGroupResponse } from "../models/models_2"; import { UpdateDynamicThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateEncryptionConfigurationCommand.ts b/clients/client-iot/src/commands/UpdateEncryptionConfigurationCommand.ts index cfa423ca663f3..dc040928c5d66 100644 --- a/clients/client-iot/src/commands/UpdateEncryptionConfigurationCommand.ts +++ b/clients/client-iot/src/commands/UpdateEncryptionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateEncryptionConfigurationRequest, UpdateEncryptionConfigurationResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateEncryptionConfigurationRequest, UpdateEncryptionConfigurationResponse } from "../models/models_2"; import { UpdateEncryptionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateEventConfigurationsCommand.ts b/clients/client-iot/src/commands/UpdateEventConfigurationsCommand.ts index 4e95f167e9ba2..b8b18f013dfe4 100644 --- a/clients/client-iot/src/commands/UpdateEventConfigurationsCommand.ts +++ b/clients/client-iot/src/commands/UpdateEventConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateEventConfigurationsRequest, UpdateEventConfigurationsResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateEventConfigurationsRequest, UpdateEventConfigurationsResponse } from "../models/models_2"; import { UpdateEventConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateFleetMetricCommand.ts b/clients/client-iot/src/commands/UpdateFleetMetricCommand.ts index 769da7eef0647..8cd871c86ea2e 100644 --- a/clients/client-iot/src/commands/UpdateFleetMetricCommand.ts +++ b/clients/client-iot/src/commands/UpdateFleetMetricCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateFleetMetricRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateFleetMetricRequest } from "../models/models_2"; import { UpdateFleetMetric } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateIndexingConfigurationCommand.ts b/clients/client-iot/src/commands/UpdateIndexingConfigurationCommand.ts index 11f9cfe8dc8dc..79fbba76fb683 100644 --- a/clients/client-iot/src/commands/UpdateIndexingConfigurationCommand.ts +++ b/clients/client-iot/src/commands/UpdateIndexingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateIndexingConfigurationRequest, UpdateIndexingConfigurationResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateIndexingConfigurationRequest, UpdateIndexingConfigurationResponse } from "../models/models_2"; import { UpdateIndexingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateJobCommand.ts b/clients/client-iot/src/commands/UpdateJobCommand.ts index ac91412670b70..db9b40b81be43 100644 --- a/clients/client-iot/src/commands/UpdateJobCommand.ts +++ b/clients/client-iot/src/commands/UpdateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateJobRequest } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateJobRequest } from "../models/models_2"; import { UpdateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateMitigationActionCommand.ts b/clients/client-iot/src/commands/UpdateMitigationActionCommand.ts index 3006f71690f59..619c7284783e9 100644 --- a/clients/client-iot/src/commands/UpdateMitigationActionCommand.ts +++ b/clients/client-iot/src/commands/UpdateMitigationActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateMitigationActionRequest, UpdateMitigationActionResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateMitigationActionRequest, UpdateMitigationActionResponse } from "../models/models_2"; import { UpdateMitigationAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdatePackageCommand.ts b/clients/client-iot/src/commands/UpdatePackageCommand.ts index 61bd28078b691..d570329d78731 100644 --- a/clients/client-iot/src/commands/UpdatePackageCommand.ts +++ b/clients/client-iot/src/commands/UpdatePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdatePackageRequest, UpdatePackageResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdatePackageRequest, UpdatePackageResponse } from "../models/models_2"; import { UpdatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdatePackageConfigurationCommand.ts b/clients/client-iot/src/commands/UpdatePackageConfigurationCommand.ts index ca236429848cf..ca392bbc4d6a2 100644 --- a/clients/client-iot/src/commands/UpdatePackageConfigurationCommand.ts +++ b/clients/client-iot/src/commands/UpdatePackageConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdatePackageConfigurationRequest, UpdatePackageConfigurationResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdatePackageConfigurationRequest, UpdatePackageConfigurationResponse } from "../models/models_2"; import { UpdatePackageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdatePackageVersionCommand.ts b/clients/client-iot/src/commands/UpdatePackageVersionCommand.ts index cfffdbee1d0f3..2737ff514ecd6 100644 --- a/clients/client-iot/src/commands/UpdatePackageVersionCommand.ts +++ b/clients/client-iot/src/commands/UpdatePackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdatePackageVersionRequest, UpdatePackageVersionResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdatePackageVersionRequest, UpdatePackageVersionResponse } from "../models/models_2"; import { UpdatePackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateProvisioningTemplateCommand.ts b/clients/client-iot/src/commands/UpdateProvisioningTemplateCommand.ts index 179aa66fb1315..6003a87e76dbc 100644 --- a/clients/client-iot/src/commands/UpdateProvisioningTemplateCommand.ts +++ b/clients/client-iot/src/commands/UpdateProvisioningTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateProvisioningTemplateRequest, UpdateProvisioningTemplateResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateProvisioningTemplateRequest, UpdateProvisioningTemplateResponse } from "../models/models_2"; import { UpdateProvisioningTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateRoleAliasCommand.ts b/clients/client-iot/src/commands/UpdateRoleAliasCommand.ts index 8ac86123ddc52..9d3831f53f0df 100644 --- a/clients/client-iot/src/commands/UpdateRoleAliasCommand.ts +++ b/clients/client-iot/src/commands/UpdateRoleAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateRoleAliasRequest, UpdateRoleAliasResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateRoleAliasRequest, UpdateRoleAliasResponse } from "../models/models_2"; import { UpdateRoleAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateScheduledAuditCommand.ts b/clients/client-iot/src/commands/UpdateScheduledAuditCommand.ts index efe1f289e54c8..c5ef6b66d5bdd 100644 --- a/clients/client-iot/src/commands/UpdateScheduledAuditCommand.ts +++ b/clients/client-iot/src/commands/UpdateScheduledAuditCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateScheduledAuditRequest, UpdateScheduledAuditResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateScheduledAuditRequest, UpdateScheduledAuditResponse } from "../models/models_2"; import { UpdateScheduledAudit } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateSecurityProfileCommand.ts b/clients/client-iot/src/commands/UpdateSecurityProfileCommand.ts index 7bc4bbe13193e..69a57f7aae0f4 100644 --- a/clients/client-iot/src/commands/UpdateSecurityProfileCommand.ts +++ b/clients/client-iot/src/commands/UpdateSecurityProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateSecurityProfileRequest, UpdateSecurityProfileResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateSecurityProfileRequest, UpdateSecurityProfileResponse } from "../models/models_2"; import { UpdateSecurityProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateStreamCommand.ts b/clients/client-iot/src/commands/UpdateStreamCommand.ts index 3d3872508ab8b..6a9b754282f52 100644 --- a/clients/client-iot/src/commands/UpdateStreamCommand.ts +++ b/clients/client-iot/src/commands/UpdateStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateStreamRequest, UpdateStreamResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateStreamRequest, UpdateStreamResponse } from "../models/models_2"; import { UpdateStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateThingCommand.ts b/clients/client-iot/src/commands/UpdateThingCommand.ts index 94142e8a1a642..445be32bc35a3 100644 --- a/clients/client-iot/src/commands/UpdateThingCommand.ts +++ b/clients/client-iot/src/commands/UpdateThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateThingRequest, UpdateThingResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateThingRequest, UpdateThingResponse } from "../models/models_2"; import { UpdateThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateThingGroupCommand.ts b/clients/client-iot/src/commands/UpdateThingGroupCommand.ts index d352fb54f1cf7..c946dd461e8d0 100644 --- a/clients/client-iot/src/commands/UpdateThingGroupCommand.ts +++ b/clients/client-iot/src/commands/UpdateThingGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateThingGroupRequest, UpdateThingGroupResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateThingGroupRequest, UpdateThingGroupResponse } from "../models/models_2"; import { UpdateThingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateThingGroupsForThingCommand.ts b/clients/client-iot/src/commands/UpdateThingGroupsForThingCommand.ts index 69f0690f29075..1f88c9fce36ce 100644 --- a/clients/client-iot/src/commands/UpdateThingGroupsForThingCommand.ts +++ b/clients/client-iot/src/commands/UpdateThingGroupsForThingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateThingGroupsForThingRequest, UpdateThingGroupsForThingResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateThingGroupsForThingRequest, UpdateThingGroupsForThingResponse } from "../models/models_2"; import { UpdateThingGroupsForThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateThingTypeCommand.ts b/clients/client-iot/src/commands/UpdateThingTypeCommand.ts index cdfc1ab6e8517..6e587840acdef 100644 --- a/clients/client-iot/src/commands/UpdateThingTypeCommand.ts +++ b/clients/client-iot/src/commands/UpdateThingTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateThingTypeRequest, UpdateThingTypeResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateThingTypeRequest, UpdateThingTypeResponse } from "../models/models_2"; import { UpdateThingType } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/UpdateTopicRuleDestinationCommand.ts b/clients/client-iot/src/commands/UpdateTopicRuleDestinationCommand.ts index 28f49b8927ad3..4271f72e3062e 100644 --- a/clients/client-iot/src/commands/UpdateTopicRuleDestinationCommand.ts +++ b/clients/client-iot/src/commands/UpdateTopicRuleDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { UpdateTopicRuleDestinationRequest, UpdateTopicRuleDestinationResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { UpdateTopicRuleDestinationRequest, UpdateTopicRuleDestinationResponse } from "../models/models_2"; import { UpdateTopicRuleDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/commands/ValidateSecurityProfileBehaviorsCommand.ts b/clients/client-iot/src/commands/ValidateSecurityProfileBehaviorsCommand.ts index f30db569e35b2..bb4e243e4ffac 100644 --- a/clients/client-iot/src/commands/ValidateSecurityProfileBehaviorsCommand.ts +++ b/clients/client-iot/src/commands/ValidateSecurityProfileBehaviorsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; -import { ValidateSecurityProfileBehaviorsRequest, ValidateSecurityProfileBehaviorsResponse } from "../models/models_2"; +import type { IoTClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTClient"; +import type { + ValidateSecurityProfileBehaviorsRequest, + ValidateSecurityProfileBehaviorsResponse, +} from "../models/models_2"; import { ValidateSecurityProfileBehaviors } from "../schemas/schemas_0"; /** diff --git a/clients/client-iot/src/endpoint/EndpointParameters.ts b/clients/client-iot/src/endpoint/EndpointParameters.ts index dfe44e2b7f55c..d8501f24e6e9d 100644 --- a/clients/client-iot/src/endpoint/EndpointParameters.ts +++ b/clients/client-iot/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iot/src/endpoint/endpointResolver.ts b/clients/client-iot/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iot/src/endpoint/endpointResolver.ts +++ b/clients/client-iot/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iot/src/extensionConfiguration.ts b/clients/client-iot/src/extensionConfiguration.ts index 3fd7b9a809124..13d2caa53ddc0 100644 --- a/clients/client-iot/src/extensionConfiguration.ts +++ b/clients/client-iot/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iot/src/models/IoTServiceException.ts b/clients/client-iot/src/models/IoTServiceException.ts index 0656b89f08cf4..efc7f84ee015f 100644 --- a/clients/client-iot/src/models/IoTServiceException.ts +++ b/clients/client-iot/src/models/IoTServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iot/src/models/errors.ts b/clients/client-iot/src/models/errors.ts index 2d81865f57404..966aedbfc6a8a 100644 --- a/clients/client-iot/src/models/errors.ts +++ b/clients/client-iot/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTServiceException as __BaseException } from "./IoTServiceException"; diff --git a/clients/client-iot/src/pagination/GetBehaviorModelTrainingSummariesPaginator.ts b/clients/client-iot/src/pagination/GetBehaviorModelTrainingSummariesPaginator.ts index 0f224a6f940e3..be44934b660a4 100644 --- a/clients/client-iot/src/pagination/GetBehaviorModelTrainingSummariesPaginator.ts +++ b/clients/client-iot/src/pagination/GetBehaviorModelTrainingSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBehaviorModelTrainingSummariesCommand, diff --git a/clients/client-iot/src/pagination/Interfaces.ts b/clients/client-iot/src/pagination/Interfaces.ts index c0902094f4489..a4c920e18803a 100644 --- a/clients/client-iot/src/pagination/Interfaces.ts +++ b/clients/client-iot/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTClient } from "../IoTClient"; diff --git a/clients/client-iot/src/pagination/ListActiveViolationsPaginator.ts b/clients/client-iot/src/pagination/ListActiveViolationsPaginator.ts index a9fa793804ceb..260c1f4828f8b 100644 --- a/clients/client-iot/src/pagination/ListActiveViolationsPaginator.ts +++ b/clients/client-iot/src/pagination/ListActiveViolationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListActiveViolationsCommand, diff --git a/clients/client-iot/src/pagination/ListAttachedPoliciesPaginator.ts b/clients/client-iot/src/pagination/ListAttachedPoliciesPaginator.ts index 60f93cad24be7..4ea06368262dd 100644 --- a/clients/client-iot/src/pagination/ListAttachedPoliciesPaginator.ts +++ b/clients/client-iot/src/pagination/ListAttachedPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttachedPoliciesCommand, diff --git a/clients/client-iot/src/pagination/ListAuditFindingsPaginator.ts b/clients/client-iot/src/pagination/ListAuditFindingsPaginator.ts index 71c8d50ba31b3..95f726f93904e 100644 --- a/clients/client-iot/src/pagination/ListAuditFindingsPaginator.ts +++ b/clients/client-iot/src/pagination/ListAuditFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAuditFindingsCommand, diff --git a/clients/client-iot/src/pagination/ListAuditMitigationActionsExecutionsPaginator.ts b/clients/client-iot/src/pagination/ListAuditMitigationActionsExecutionsPaginator.ts index 4e806b4d339c6..55be55607f558 100644 --- a/clients/client-iot/src/pagination/ListAuditMitigationActionsExecutionsPaginator.ts +++ b/clients/client-iot/src/pagination/ListAuditMitigationActionsExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAuditMitigationActionsExecutionsCommand, diff --git a/clients/client-iot/src/pagination/ListAuditMitigationActionsTasksPaginator.ts b/clients/client-iot/src/pagination/ListAuditMitigationActionsTasksPaginator.ts index 96cadf49e1059..f812ceab122c2 100644 --- a/clients/client-iot/src/pagination/ListAuditMitigationActionsTasksPaginator.ts +++ b/clients/client-iot/src/pagination/ListAuditMitigationActionsTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAuditMitigationActionsTasksCommand, diff --git a/clients/client-iot/src/pagination/ListAuditSuppressionsPaginator.ts b/clients/client-iot/src/pagination/ListAuditSuppressionsPaginator.ts index 4a0326ee2db60..4a4904b0639c2 100644 --- a/clients/client-iot/src/pagination/ListAuditSuppressionsPaginator.ts +++ b/clients/client-iot/src/pagination/ListAuditSuppressionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAuditSuppressionsCommand, diff --git a/clients/client-iot/src/pagination/ListAuditTasksPaginator.ts b/clients/client-iot/src/pagination/ListAuditTasksPaginator.ts index 1fa47dd1ea579..aa6d8b1315313 100644 --- a/clients/client-iot/src/pagination/ListAuditTasksPaginator.ts +++ b/clients/client-iot/src/pagination/ListAuditTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAuditTasksCommand, diff --git a/clients/client-iot/src/pagination/ListAuthorizersPaginator.ts b/clients/client-iot/src/pagination/ListAuthorizersPaginator.ts index 901bf9d618f5f..90075ad4278d9 100644 --- a/clients/client-iot/src/pagination/ListAuthorizersPaginator.ts +++ b/clients/client-iot/src/pagination/ListAuthorizersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAuthorizersCommand, diff --git a/clients/client-iot/src/pagination/ListBillingGroupsPaginator.ts b/clients/client-iot/src/pagination/ListBillingGroupsPaginator.ts index 73925660c7e4c..e7c4b9d74e802 100644 --- a/clients/client-iot/src/pagination/ListBillingGroupsPaginator.ts +++ b/clients/client-iot/src/pagination/ListBillingGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBillingGroupsCommand, diff --git a/clients/client-iot/src/pagination/ListCACertificatesPaginator.ts b/clients/client-iot/src/pagination/ListCACertificatesPaginator.ts index 986a248658afa..900b46902de86 100644 --- a/clients/client-iot/src/pagination/ListCACertificatesPaginator.ts +++ b/clients/client-iot/src/pagination/ListCACertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCACertificatesCommand, diff --git a/clients/client-iot/src/pagination/ListCertificatesByCAPaginator.ts b/clients/client-iot/src/pagination/ListCertificatesByCAPaginator.ts index 1193af652c1c9..39d7782405b0a 100644 --- a/clients/client-iot/src/pagination/ListCertificatesByCAPaginator.ts +++ b/clients/client-iot/src/pagination/ListCertificatesByCAPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCertificatesByCACommand, diff --git a/clients/client-iot/src/pagination/ListCertificatesPaginator.ts b/clients/client-iot/src/pagination/ListCertificatesPaginator.ts index 8b24793973729..1bafd166816fc 100644 --- a/clients/client-iot/src/pagination/ListCertificatesPaginator.ts +++ b/clients/client-iot/src/pagination/ListCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCertificatesCommand, diff --git a/clients/client-iot/src/pagination/ListCommandExecutionsPaginator.ts b/clients/client-iot/src/pagination/ListCommandExecutionsPaginator.ts index 7fccbad24cb2d..f12b06a0e8d17 100644 --- a/clients/client-iot/src/pagination/ListCommandExecutionsPaginator.ts +++ b/clients/client-iot/src/pagination/ListCommandExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCommandExecutionsCommand, diff --git a/clients/client-iot/src/pagination/ListCommandsPaginator.ts b/clients/client-iot/src/pagination/ListCommandsPaginator.ts index 1c68e27ace247..03de807b5a398 100644 --- a/clients/client-iot/src/pagination/ListCommandsPaginator.ts +++ b/clients/client-iot/src/pagination/ListCommandsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCommandsCommand, diff --git a/clients/client-iot/src/pagination/ListCustomMetricsPaginator.ts b/clients/client-iot/src/pagination/ListCustomMetricsPaginator.ts index d25c4cdaf8d06..78909e66d294f 100644 --- a/clients/client-iot/src/pagination/ListCustomMetricsPaginator.ts +++ b/clients/client-iot/src/pagination/ListCustomMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomMetricsCommand, diff --git a/clients/client-iot/src/pagination/ListDetectMitigationActionsExecutionsPaginator.ts b/clients/client-iot/src/pagination/ListDetectMitigationActionsExecutionsPaginator.ts index 69c61b0492858..eff76836804ce 100644 --- a/clients/client-iot/src/pagination/ListDetectMitigationActionsExecutionsPaginator.ts +++ b/clients/client-iot/src/pagination/ListDetectMitigationActionsExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDetectMitigationActionsExecutionsCommand, diff --git a/clients/client-iot/src/pagination/ListDetectMitigationActionsTasksPaginator.ts b/clients/client-iot/src/pagination/ListDetectMitigationActionsTasksPaginator.ts index 12d6134acc610..28a79620e86fc 100644 --- a/clients/client-iot/src/pagination/ListDetectMitigationActionsTasksPaginator.ts +++ b/clients/client-iot/src/pagination/ListDetectMitigationActionsTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDetectMitigationActionsTasksCommand, diff --git a/clients/client-iot/src/pagination/ListDimensionsPaginator.ts b/clients/client-iot/src/pagination/ListDimensionsPaginator.ts index 4a44863af824e..2c6e737b98159 100644 --- a/clients/client-iot/src/pagination/ListDimensionsPaginator.ts +++ b/clients/client-iot/src/pagination/ListDimensionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDimensionsCommand, diff --git a/clients/client-iot/src/pagination/ListDomainConfigurationsPaginator.ts b/clients/client-iot/src/pagination/ListDomainConfigurationsPaginator.ts index 161361c9a1b4e..e47b25fe85e01 100644 --- a/clients/client-iot/src/pagination/ListDomainConfigurationsPaginator.ts +++ b/clients/client-iot/src/pagination/ListDomainConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainConfigurationsCommand, diff --git a/clients/client-iot/src/pagination/ListFleetMetricsPaginator.ts b/clients/client-iot/src/pagination/ListFleetMetricsPaginator.ts index f48d2c54aedb5..f05e7bdc16e86 100644 --- a/clients/client-iot/src/pagination/ListFleetMetricsPaginator.ts +++ b/clients/client-iot/src/pagination/ListFleetMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFleetMetricsCommand, diff --git a/clients/client-iot/src/pagination/ListIndicesPaginator.ts b/clients/client-iot/src/pagination/ListIndicesPaginator.ts index 7035092bc7b4d..8b6876f26faf5 100644 --- a/clients/client-iot/src/pagination/ListIndicesPaginator.ts +++ b/clients/client-iot/src/pagination/ListIndicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIndicesCommand, ListIndicesCommandInput, ListIndicesCommandOutput } from "../commands/ListIndicesCommand"; import { IoTClient } from "../IoTClient"; diff --git a/clients/client-iot/src/pagination/ListJobExecutionsForJobPaginator.ts b/clients/client-iot/src/pagination/ListJobExecutionsForJobPaginator.ts index 4bd936b4a04cc..4ae29f0b64d6c 100644 --- a/clients/client-iot/src/pagination/ListJobExecutionsForJobPaginator.ts +++ b/clients/client-iot/src/pagination/ListJobExecutionsForJobPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobExecutionsForJobCommand, diff --git a/clients/client-iot/src/pagination/ListJobExecutionsForThingPaginator.ts b/clients/client-iot/src/pagination/ListJobExecutionsForThingPaginator.ts index 5916e96cda528..82ffd17415fc9 100644 --- a/clients/client-iot/src/pagination/ListJobExecutionsForThingPaginator.ts +++ b/clients/client-iot/src/pagination/ListJobExecutionsForThingPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobExecutionsForThingCommand, diff --git a/clients/client-iot/src/pagination/ListJobTemplatesPaginator.ts b/clients/client-iot/src/pagination/ListJobTemplatesPaginator.ts index af12671f7ff62..a003c74222c0e 100644 --- a/clients/client-iot/src/pagination/ListJobTemplatesPaginator.ts +++ b/clients/client-iot/src/pagination/ListJobTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobTemplatesCommand, diff --git a/clients/client-iot/src/pagination/ListJobsPaginator.ts b/clients/client-iot/src/pagination/ListJobsPaginator.ts index 60e0d7a57dbb6..890bcd52d2238 100644 --- a/clients/client-iot/src/pagination/ListJobsPaginator.ts +++ b/clients/client-iot/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { IoTClient } from "../IoTClient"; diff --git a/clients/client-iot/src/pagination/ListManagedJobTemplatesPaginator.ts b/clients/client-iot/src/pagination/ListManagedJobTemplatesPaginator.ts index 23a31f1443ead..0ab1d2ee96a1a 100644 --- a/clients/client-iot/src/pagination/ListManagedJobTemplatesPaginator.ts +++ b/clients/client-iot/src/pagination/ListManagedJobTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedJobTemplatesCommand, diff --git a/clients/client-iot/src/pagination/ListMetricValuesPaginator.ts b/clients/client-iot/src/pagination/ListMetricValuesPaginator.ts index 79decd204b7bb..93ee14e3423e0 100644 --- a/clients/client-iot/src/pagination/ListMetricValuesPaginator.ts +++ b/clients/client-iot/src/pagination/ListMetricValuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMetricValuesCommand, diff --git a/clients/client-iot/src/pagination/ListMitigationActionsPaginator.ts b/clients/client-iot/src/pagination/ListMitigationActionsPaginator.ts index 5ebc074975063..bab539239c21f 100644 --- a/clients/client-iot/src/pagination/ListMitigationActionsPaginator.ts +++ b/clients/client-iot/src/pagination/ListMitigationActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMitigationActionsCommand, diff --git a/clients/client-iot/src/pagination/ListOTAUpdatesPaginator.ts b/clients/client-iot/src/pagination/ListOTAUpdatesPaginator.ts index 30bf415d1efe7..03ccd582ae43d 100644 --- a/clients/client-iot/src/pagination/ListOTAUpdatesPaginator.ts +++ b/clients/client-iot/src/pagination/ListOTAUpdatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOTAUpdatesCommand, diff --git a/clients/client-iot/src/pagination/ListOutgoingCertificatesPaginator.ts b/clients/client-iot/src/pagination/ListOutgoingCertificatesPaginator.ts index 4a8137e71e03d..4e7115080e518 100644 --- a/clients/client-iot/src/pagination/ListOutgoingCertificatesPaginator.ts +++ b/clients/client-iot/src/pagination/ListOutgoingCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOutgoingCertificatesCommand, diff --git a/clients/client-iot/src/pagination/ListPackageVersionsPaginator.ts b/clients/client-iot/src/pagination/ListPackageVersionsPaginator.ts index bba9b5aa04d00..d7c2babf08e22 100644 --- a/clients/client-iot/src/pagination/ListPackageVersionsPaginator.ts +++ b/clients/client-iot/src/pagination/ListPackageVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPackageVersionsCommand, diff --git a/clients/client-iot/src/pagination/ListPackagesPaginator.ts b/clients/client-iot/src/pagination/ListPackagesPaginator.ts index 8566f1dea8a6d..624462a84f481 100644 --- a/clients/client-iot/src/pagination/ListPackagesPaginator.ts +++ b/clients/client-iot/src/pagination/ListPackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPackagesCommand, diff --git a/clients/client-iot/src/pagination/ListPoliciesPaginator.ts b/clients/client-iot/src/pagination/ListPoliciesPaginator.ts index e53c261484fa4..5aed2cc8796dc 100644 --- a/clients/client-iot/src/pagination/ListPoliciesPaginator.ts +++ b/clients/client-iot/src/pagination/ListPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPoliciesCommand, diff --git a/clients/client-iot/src/pagination/ListPolicyPrincipalsPaginator.ts b/clients/client-iot/src/pagination/ListPolicyPrincipalsPaginator.ts index 0606cbddd5da3..ba9e9d630de53 100644 --- a/clients/client-iot/src/pagination/ListPolicyPrincipalsPaginator.ts +++ b/clients/client-iot/src/pagination/ListPolicyPrincipalsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPolicyPrincipalsCommand, diff --git a/clients/client-iot/src/pagination/ListPrincipalPoliciesPaginator.ts b/clients/client-iot/src/pagination/ListPrincipalPoliciesPaginator.ts index d51e159d323fa..af4c8b834f813 100644 --- a/clients/client-iot/src/pagination/ListPrincipalPoliciesPaginator.ts +++ b/clients/client-iot/src/pagination/ListPrincipalPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPrincipalPoliciesCommand, diff --git a/clients/client-iot/src/pagination/ListPrincipalThingsPaginator.ts b/clients/client-iot/src/pagination/ListPrincipalThingsPaginator.ts index e7e5ef5722964..dcca20ffbda2f 100644 --- a/clients/client-iot/src/pagination/ListPrincipalThingsPaginator.ts +++ b/clients/client-iot/src/pagination/ListPrincipalThingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPrincipalThingsCommand, diff --git a/clients/client-iot/src/pagination/ListPrincipalThingsV2Paginator.ts b/clients/client-iot/src/pagination/ListPrincipalThingsV2Paginator.ts index b7861768e1e40..69fe27b76f52f 100644 --- a/clients/client-iot/src/pagination/ListPrincipalThingsV2Paginator.ts +++ b/clients/client-iot/src/pagination/ListPrincipalThingsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPrincipalThingsV2Command, diff --git a/clients/client-iot/src/pagination/ListProvisioningTemplateVersionsPaginator.ts b/clients/client-iot/src/pagination/ListProvisioningTemplateVersionsPaginator.ts index 5c23ed1da32c5..8c1b24cbb77ea 100644 --- a/clients/client-iot/src/pagination/ListProvisioningTemplateVersionsPaginator.ts +++ b/clients/client-iot/src/pagination/ListProvisioningTemplateVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProvisioningTemplateVersionsCommand, diff --git a/clients/client-iot/src/pagination/ListProvisioningTemplatesPaginator.ts b/clients/client-iot/src/pagination/ListProvisioningTemplatesPaginator.ts index f7b00b1dc6a70..2562a6394aa70 100644 --- a/clients/client-iot/src/pagination/ListProvisioningTemplatesPaginator.ts +++ b/clients/client-iot/src/pagination/ListProvisioningTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProvisioningTemplatesCommand, diff --git a/clients/client-iot/src/pagination/ListRelatedResourcesForAuditFindingPaginator.ts b/clients/client-iot/src/pagination/ListRelatedResourcesForAuditFindingPaginator.ts index dbe4cd0e92da0..99ed49d642801 100644 --- a/clients/client-iot/src/pagination/ListRelatedResourcesForAuditFindingPaginator.ts +++ b/clients/client-iot/src/pagination/ListRelatedResourcesForAuditFindingPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRelatedResourcesForAuditFindingCommand, diff --git a/clients/client-iot/src/pagination/ListRoleAliasesPaginator.ts b/clients/client-iot/src/pagination/ListRoleAliasesPaginator.ts index 59a6f3655f2c7..58d7b67be795d 100644 --- a/clients/client-iot/src/pagination/ListRoleAliasesPaginator.ts +++ b/clients/client-iot/src/pagination/ListRoleAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoleAliasesCommand, diff --git a/clients/client-iot/src/pagination/ListSbomValidationResultsPaginator.ts b/clients/client-iot/src/pagination/ListSbomValidationResultsPaginator.ts index 727a5b9233b6a..ba13602d05e86 100644 --- a/clients/client-iot/src/pagination/ListSbomValidationResultsPaginator.ts +++ b/clients/client-iot/src/pagination/ListSbomValidationResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSbomValidationResultsCommand, diff --git a/clients/client-iot/src/pagination/ListScheduledAuditsPaginator.ts b/clients/client-iot/src/pagination/ListScheduledAuditsPaginator.ts index 63cc395d5bd44..05406a5cf1150 100644 --- a/clients/client-iot/src/pagination/ListScheduledAuditsPaginator.ts +++ b/clients/client-iot/src/pagination/ListScheduledAuditsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListScheduledAuditsCommand, diff --git a/clients/client-iot/src/pagination/ListSecurityProfilesForTargetPaginator.ts b/clients/client-iot/src/pagination/ListSecurityProfilesForTargetPaginator.ts index 360757c1d51db..822d6decbed9a 100644 --- a/clients/client-iot/src/pagination/ListSecurityProfilesForTargetPaginator.ts +++ b/clients/client-iot/src/pagination/ListSecurityProfilesForTargetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityProfilesForTargetCommand, diff --git a/clients/client-iot/src/pagination/ListSecurityProfilesPaginator.ts b/clients/client-iot/src/pagination/ListSecurityProfilesPaginator.ts index c7a1b2bac73ae..c794a95f64ee8 100644 --- a/clients/client-iot/src/pagination/ListSecurityProfilesPaginator.ts +++ b/clients/client-iot/src/pagination/ListSecurityProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityProfilesCommand, diff --git a/clients/client-iot/src/pagination/ListStreamsPaginator.ts b/clients/client-iot/src/pagination/ListStreamsPaginator.ts index dab8ede7a0845..8a5577f3f9d1a 100644 --- a/clients/client-iot/src/pagination/ListStreamsPaginator.ts +++ b/clients/client-iot/src/pagination/ListStreamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamsCommand, ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/ListStreamsCommand"; import { IoTClient } from "../IoTClient"; diff --git a/clients/client-iot/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-iot/src/pagination/ListTagsForResourcePaginator.ts index 2c7c8aa6c8451..a39bcbabb9e23 100644 --- a/clients/client-iot/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-iot/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-iot/src/pagination/ListTargetsForPolicyPaginator.ts b/clients/client-iot/src/pagination/ListTargetsForPolicyPaginator.ts index d444e78103279..7f21d7d523051 100644 --- a/clients/client-iot/src/pagination/ListTargetsForPolicyPaginator.ts +++ b/clients/client-iot/src/pagination/ListTargetsForPolicyPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTargetsForPolicyCommand, diff --git a/clients/client-iot/src/pagination/ListTargetsForSecurityProfilePaginator.ts b/clients/client-iot/src/pagination/ListTargetsForSecurityProfilePaginator.ts index c058e0513556c..0daec2da40f48 100644 --- a/clients/client-iot/src/pagination/ListTargetsForSecurityProfilePaginator.ts +++ b/clients/client-iot/src/pagination/ListTargetsForSecurityProfilePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTargetsForSecurityProfileCommand, diff --git a/clients/client-iot/src/pagination/ListThingGroupsForThingPaginator.ts b/clients/client-iot/src/pagination/ListThingGroupsForThingPaginator.ts index 96163efb73961..0ecf192a3c7af 100644 --- a/clients/client-iot/src/pagination/ListThingGroupsForThingPaginator.ts +++ b/clients/client-iot/src/pagination/ListThingGroupsForThingPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingGroupsForThingCommand, diff --git a/clients/client-iot/src/pagination/ListThingGroupsPaginator.ts b/clients/client-iot/src/pagination/ListThingGroupsPaginator.ts index d9331b11b06c6..3fa4342d9c92b 100644 --- a/clients/client-iot/src/pagination/ListThingGroupsPaginator.ts +++ b/clients/client-iot/src/pagination/ListThingGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingGroupsCommand, diff --git a/clients/client-iot/src/pagination/ListThingPrincipalsPaginator.ts b/clients/client-iot/src/pagination/ListThingPrincipalsPaginator.ts index 64af815c691f7..252345cf8ad4a 100644 --- a/clients/client-iot/src/pagination/ListThingPrincipalsPaginator.ts +++ b/clients/client-iot/src/pagination/ListThingPrincipalsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingPrincipalsCommand, diff --git a/clients/client-iot/src/pagination/ListThingPrincipalsV2Paginator.ts b/clients/client-iot/src/pagination/ListThingPrincipalsV2Paginator.ts index c66b2f46e4f67..6527dff5dfb19 100644 --- a/clients/client-iot/src/pagination/ListThingPrincipalsV2Paginator.ts +++ b/clients/client-iot/src/pagination/ListThingPrincipalsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingPrincipalsV2Command, diff --git a/clients/client-iot/src/pagination/ListThingRegistrationTaskReportsPaginator.ts b/clients/client-iot/src/pagination/ListThingRegistrationTaskReportsPaginator.ts index 72fc3fd2b4351..a94a8c1ddb8db 100644 --- a/clients/client-iot/src/pagination/ListThingRegistrationTaskReportsPaginator.ts +++ b/clients/client-iot/src/pagination/ListThingRegistrationTaskReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingRegistrationTaskReportsCommand, diff --git a/clients/client-iot/src/pagination/ListThingRegistrationTasksPaginator.ts b/clients/client-iot/src/pagination/ListThingRegistrationTasksPaginator.ts index 25d0a7b086b64..79988af18e466 100644 --- a/clients/client-iot/src/pagination/ListThingRegistrationTasksPaginator.ts +++ b/clients/client-iot/src/pagination/ListThingRegistrationTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingRegistrationTasksCommand, diff --git a/clients/client-iot/src/pagination/ListThingTypesPaginator.ts b/clients/client-iot/src/pagination/ListThingTypesPaginator.ts index 36e71da77e484..8b01fd1992428 100644 --- a/clients/client-iot/src/pagination/ListThingTypesPaginator.ts +++ b/clients/client-iot/src/pagination/ListThingTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingTypesCommand, diff --git a/clients/client-iot/src/pagination/ListThingsInBillingGroupPaginator.ts b/clients/client-iot/src/pagination/ListThingsInBillingGroupPaginator.ts index e3988b8bd77ab..5837a1331a50b 100644 --- a/clients/client-iot/src/pagination/ListThingsInBillingGroupPaginator.ts +++ b/clients/client-iot/src/pagination/ListThingsInBillingGroupPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingsInBillingGroupCommand, diff --git a/clients/client-iot/src/pagination/ListThingsInThingGroupPaginator.ts b/clients/client-iot/src/pagination/ListThingsInThingGroupPaginator.ts index e6bf3302fdad6..d80cb8a9f44e9 100644 --- a/clients/client-iot/src/pagination/ListThingsInThingGroupPaginator.ts +++ b/clients/client-iot/src/pagination/ListThingsInThingGroupPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingsInThingGroupCommand, diff --git a/clients/client-iot/src/pagination/ListThingsPaginator.ts b/clients/client-iot/src/pagination/ListThingsPaginator.ts index 006dd4e08837d..72964fbcdd626 100644 --- a/clients/client-iot/src/pagination/ListThingsPaginator.ts +++ b/clients/client-iot/src/pagination/ListThingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThingsCommand, ListThingsCommandInput, ListThingsCommandOutput } from "../commands/ListThingsCommand"; import { IoTClient } from "../IoTClient"; diff --git a/clients/client-iot/src/pagination/ListTopicRuleDestinationsPaginator.ts b/clients/client-iot/src/pagination/ListTopicRuleDestinationsPaginator.ts index a0f00698efab4..397022d258b15 100644 --- a/clients/client-iot/src/pagination/ListTopicRuleDestinationsPaginator.ts +++ b/clients/client-iot/src/pagination/ListTopicRuleDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTopicRuleDestinationsCommand, diff --git a/clients/client-iot/src/pagination/ListTopicRulesPaginator.ts b/clients/client-iot/src/pagination/ListTopicRulesPaginator.ts index e2f39587391b2..16272156d8da0 100644 --- a/clients/client-iot/src/pagination/ListTopicRulesPaginator.ts +++ b/clients/client-iot/src/pagination/ListTopicRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTopicRulesCommand, diff --git a/clients/client-iot/src/pagination/ListV2LoggingLevelsPaginator.ts b/clients/client-iot/src/pagination/ListV2LoggingLevelsPaginator.ts index 3848c91ad62e5..1cad9d55ba331 100644 --- a/clients/client-iot/src/pagination/ListV2LoggingLevelsPaginator.ts +++ b/clients/client-iot/src/pagination/ListV2LoggingLevelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListV2LoggingLevelsCommand, diff --git a/clients/client-iot/src/pagination/ListViolationEventsPaginator.ts b/clients/client-iot/src/pagination/ListViolationEventsPaginator.ts index aeaf205c4bf6a..681db7bee2b20 100644 --- a/clients/client-iot/src/pagination/ListViolationEventsPaginator.ts +++ b/clients/client-iot/src/pagination/ListViolationEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListViolationEventsCommand, diff --git a/clients/client-iot/src/runtimeConfig.browser.ts b/clients/client-iot/src/runtimeConfig.browser.ts index 178bdfbacb9b4..11d0a3e68da51 100644 --- a/clients/client-iot/src/runtimeConfig.browser.ts +++ b/clients/client-iot/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTClientConfig } from "./IoTClient"; + +import type { IoTClientConfig } from "./IoTClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iot/src/runtimeConfig.native.ts b/clients/client-iot/src/runtimeConfig.native.ts index a3379b3236082..c46ba43893bf4 100644 --- a/clients/client-iot/src/runtimeConfig.native.ts +++ b/clients/client-iot/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTClientConfig } from "./IoTClient"; +import type { IoTClientConfig } from "./IoTClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iot/src/runtimeConfig.shared.ts b/clients/client-iot/src/runtimeConfig.shared.ts index f816df909de6a..00f16cff189af 100644 --- a/clients/client-iot/src/runtimeConfig.shared.ts +++ b/clients/client-iot/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTClientConfig } from "./IoTClient"; +import type { IoTClientConfig } from "./IoTClient"; /** * @internal diff --git a/clients/client-iot/src/runtimeConfig.ts b/clients/client-iot/src/runtimeConfig.ts index d489a41f83fa9..3a474b6043456 100644 --- a/clients/client-iot/src/runtimeConfig.ts +++ b/clients/client-iot/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTClientConfig } from "./IoTClient"; + +import type { IoTClientConfig } from "./IoTClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iot/src/runtimeExtensions.ts b/clients/client-iot/src/runtimeExtensions.ts index 5c8d9b6777159..b9f480c92e0af 100644 --- a/clients/client-iot/src/runtimeExtensions.ts +++ b/clients/client-iot/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iot/src/schemas/schemas_0.ts b/clients/client-iot/src/schemas/schemas_0.ts index 86a2a151c58ec..1a7e7ce11fa2b 100644 --- a/clients/client-iot/src/schemas/schemas_0.ts +++ b/clients/client-iot/src/schemas/schemas_0.ts @@ -1926,7 +1926,7 @@ const n0 = "com.amazonaws.iot"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-iotanalytics/package.json b/clients/client-iotanalytics/package.json index 6118add2bda84..cdd6d079cf3a5 100644 --- a/clients/client-iotanalytics/package.json +++ b/clients/client-iotanalytics/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iotanalytics/src/IoTAnalytics.ts b/clients/client-iotanalytics/src/IoTAnalytics.ts index f4dbcf859ade6..3721db59ed35e 100644 --- a/clients/client-iotanalytics/src/IoTAnalytics.ts +++ b/clients/client-iotanalytics/src/IoTAnalytics.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchPutMessageCommand, @@ -168,7 +168,7 @@ import { UpdatePipelineCommandInput, UpdatePipelineCommandOutput, } from "./commands/UpdatePipelineCommand"; -import { IoTAnalyticsClient, IoTAnalyticsClientConfig } from "./IoTAnalyticsClient"; +import { IoTAnalyticsClient } from "./IoTAnalyticsClient"; const commands = { BatchPutMessageCommand, diff --git a/clients/client-iotanalytics/src/IoTAnalyticsClient.ts b/clients/client-iotanalytics/src/IoTAnalyticsClient.ts index f4f83cf3ef41d..134e06522751d 100644 --- a/clients/client-iotanalytics/src/IoTAnalyticsClient.ts +++ b/clients/client-iotanalytics/src/IoTAnalyticsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTAnalyticsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchPutMessageCommandInput, BatchPutMessageCommandOutput } from "./commands/BatchPutMessageCommand"; @@ -122,7 +131,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iotanalytics/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iotanalytics/src/auth/httpAuthExtensionConfiguration.ts index a5a37292fbcfa..ef25acec932ff 100644 --- a/clients/client-iotanalytics/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iotanalytics/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTAnalyticsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTAnalyticsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iotanalytics/src/auth/httpAuthSchemeProvider.ts b/clients/client-iotanalytics/src/auth/httpAuthSchemeProvider.ts index 1787c190a29e5..60bf54a4efc75 100644 --- a/clients/client-iotanalytics/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iotanalytics/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTAnalyticsClientConfig, IoTAnalyticsClientResolvedConfig } from "../IoTAnalyticsClient"; +import { type IoTAnalyticsClientResolvedConfig, IoTAnalyticsClientConfig } from "../IoTAnalyticsClient"; /** * @internal diff --git a/clients/client-iotanalytics/src/commands/BatchPutMessageCommand.ts b/clients/client-iotanalytics/src/commands/BatchPutMessageCommand.ts index bc5736b5a18b2..1462078c4448c 100644 --- a/clients/client-iotanalytics/src/commands/BatchPutMessageCommand.ts +++ b/clients/client-iotanalytics/src/commands/BatchPutMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { BatchPutMessageRequest, BatchPutMessageResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { BatchPutMessageRequest, BatchPutMessageResponse } from "../models/models_0"; import { BatchPutMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/CancelPipelineReprocessingCommand.ts b/clients/client-iotanalytics/src/commands/CancelPipelineReprocessingCommand.ts index acf8e88b33f9d..67db45a36fb31 100644 --- a/clients/client-iotanalytics/src/commands/CancelPipelineReprocessingCommand.ts +++ b/clients/client-iotanalytics/src/commands/CancelPipelineReprocessingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { CancelPipelineReprocessingRequest, CancelPipelineReprocessingResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { CancelPipelineReprocessingRequest, CancelPipelineReprocessingResponse } from "../models/models_0"; import { CancelPipelineReprocessing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/CreateChannelCommand.ts b/clients/client-iotanalytics/src/commands/CreateChannelCommand.ts index e8da0ffa7d910..0f6f2de88b65f 100644 --- a/clients/client-iotanalytics/src/commands/CreateChannelCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; import { CreateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/CreateDatasetCommand.ts b/clients/client-iotanalytics/src/commands/CreateDatasetCommand.ts index 0982f6c933483..df8bd003be2c6 100644 --- a/clients/client-iotanalytics/src/commands/CreateDatasetCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; import { CreateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/CreateDatasetContentCommand.ts b/clients/client-iotanalytics/src/commands/CreateDatasetContentCommand.ts index 3f39ffd03c98b..a60935c554713 100644 --- a/clients/client-iotanalytics/src/commands/CreateDatasetContentCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreateDatasetContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { CreateDatasetContentRequest, CreateDatasetContentResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { CreateDatasetContentRequest, CreateDatasetContentResponse } from "../models/models_0"; import { CreateDatasetContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/CreateDatastoreCommand.ts b/clients/client-iotanalytics/src/commands/CreateDatastoreCommand.ts index 463f417b23e25..43ac2ef6f35d9 100644 --- a/clients/client-iotanalytics/src/commands/CreateDatastoreCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreateDatastoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { CreateDatastoreRequest, CreateDatastoreResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { CreateDatastoreRequest, CreateDatastoreResponse } from "../models/models_0"; import { CreateDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/CreatePipelineCommand.ts b/clients/client-iotanalytics/src/commands/CreatePipelineCommand.ts index 823e1f85fe0f8..694df00bb95dd 100644 --- a/clients/client-iotanalytics/src/commands/CreatePipelineCommand.ts +++ b/clients/client-iotanalytics/src/commands/CreatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_0"; import { CreatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DeleteChannelCommand.ts b/clients/client-iotanalytics/src/commands/DeleteChannelCommand.ts index d46d8962a2a60..de03f0cf1ebc4 100644 --- a/clients/client-iotanalytics/src/commands/DeleteChannelCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeleteChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DeleteChannelRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DeleteChannelRequest } from "../models/models_0"; import { DeleteChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DeleteDatasetCommand.ts b/clients/client-iotanalytics/src/commands/DeleteDatasetCommand.ts index 433db1b423ac3..ae042253c4914 100644 --- a/clients/client-iotanalytics/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeleteDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DeleteDatasetRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DeleteDatasetRequest } from "../models/models_0"; import { DeleteDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DeleteDatasetContentCommand.ts b/clients/client-iotanalytics/src/commands/DeleteDatasetContentCommand.ts index d535a87c97ad5..db4c27fe6578b 100644 --- a/clients/client-iotanalytics/src/commands/DeleteDatasetContentCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeleteDatasetContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DeleteDatasetContentRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DeleteDatasetContentRequest } from "../models/models_0"; import { DeleteDatasetContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DeleteDatastoreCommand.ts b/clients/client-iotanalytics/src/commands/DeleteDatastoreCommand.ts index 0a5a82e724a2c..49427a0806ca5 100644 --- a/clients/client-iotanalytics/src/commands/DeleteDatastoreCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeleteDatastoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DeleteDatastoreRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DeleteDatastoreRequest } from "../models/models_0"; import { DeleteDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DeletePipelineCommand.ts b/clients/client-iotanalytics/src/commands/DeletePipelineCommand.ts index 4fb6001823b5c..e6e303c5ecaf9 100644 --- a/clients/client-iotanalytics/src/commands/DeletePipelineCommand.ts +++ b/clients/client-iotanalytics/src/commands/DeletePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DeletePipelineRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DeletePipelineRequest } from "../models/models_0"; import { DeletePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DescribeChannelCommand.ts b/clients/client-iotanalytics/src/commands/DescribeChannelCommand.ts index e7ec40794e569..880d9fa939629 100644 --- a/clients/client-iotanalytics/src/commands/DescribeChannelCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribeChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0"; import { DescribeChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DescribeDatasetCommand.ts b/clients/client-iotanalytics/src/commands/DescribeDatasetCommand.ts index ef8f7b6a7d0e4..8ad8b42d7be7c 100644 --- a/clients/client-iotanalytics/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribeDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; import { DescribeDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DescribeDatastoreCommand.ts b/clients/client-iotanalytics/src/commands/DescribeDatastoreCommand.ts index 2fd1925eb7ea8..228ba00b013de 100644 --- a/clients/client-iotanalytics/src/commands/DescribeDatastoreCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribeDatastoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DescribeDatastoreRequest, DescribeDatastoreResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DescribeDatastoreRequest, DescribeDatastoreResponse } from "../models/models_0"; import { DescribeDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DescribeLoggingOptionsCommand.ts b/clients/client-iotanalytics/src/commands/DescribeLoggingOptionsCommand.ts index 63d3325f0e7cd..d52e6b2463f27 100644 --- a/clients/client-iotanalytics/src/commands/DescribeLoggingOptionsCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribeLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DescribeLoggingOptionsRequest, DescribeLoggingOptionsResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DescribeLoggingOptionsRequest, DescribeLoggingOptionsResponse } from "../models/models_0"; import { DescribeLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/DescribePipelineCommand.ts b/clients/client-iotanalytics/src/commands/DescribePipelineCommand.ts index ed24af727fd8c..ffe84f21ae36c 100644 --- a/clients/client-iotanalytics/src/commands/DescribePipelineCommand.ts +++ b/clients/client-iotanalytics/src/commands/DescribePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { DescribePipelineRequest, DescribePipelineResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { DescribePipelineRequest, DescribePipelineResponse } from "../models/models_0"; import { DescribePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/GetDatasetContentCommand.ts b/clients/client-iotanalytics/src/commands/GetDatasetContentCommand.ts index d1fddf616c7f8..387237c34093a 100644 --- a/clients/client-iotanalytics/src/commands/GetDatasetContentCommand.ts +++ b/clients/client-iotanalytics/src/commands/GetDatasetContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { GetDatasetContentRequest, GetDatasetContentResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { GetDatasetContentRequest, GetDatasetContentResponse } from "../models/models_0"; import { GetDatasetContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/ListChannelsCommand.ts b/clients/client-iotanalytics/src/commands/ListChannelsCommand.ts index 260cbc2169f51..b95d059502923 100644 --- a/clients/client-iotanalytics/src/commands/ListChannelsCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/ListDatasetContentsCommand.ts b/clients/client-iotanalytics/src/commands/ListDatasetContentsCommand.ts index 040f9bb621db0..b7e99d86d4df5 100644 --- a/clients/client-iotanalytics/src/commands/ListDatasetContentsCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListDatasetContentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { ListDatasetContentsRequest, ListDatasetContentsResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { ListDatasetContentsRequest, ListDatasetContentsResponse } from "../models/models_0"; import { ListDatasetContents } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/ListDatasetsCommand.ts b/clients/client-iotanalytics/src/commands/ListDatasetsCommand.ts index f41af7f77260e..3dde6a7d7465d 100644 --- a/clients/client-iotanalytics/src/commands/ListDatasetsCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListDatasetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; import { ListDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/ListDatastoresCommand.ts b/clients/client-iotanalytics/src/commands/ListDatastoresCommand.ts index 9a157c8926a78..ded29bcaa15be 100644 --- a/clients/client-iotanalytics/src/commands/ListDatastoresCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListDatastoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { ListDatastoresRequest, ListDatastoresResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { ListDatastoresRequest, ListDatastoresResponse } from "../models/models_0"; import { ListDatastores } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/ListPipelinesCommand.ts b/clients/client-iotanalytics/src/commands/ListPipelinesCommand.ts index d4a1e97c5a9c5..ab8335252e707 100644 --- a/clients/client-iotanalytics/src/commands/ListPipelinesCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListPipelinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_0"; import { ListPipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotanalytics/src/commands/ListTagsForResourceCommand.ts index 14f99cb475998..fd7b7ec76f5d3 100644 --- a/clients/client-iotanalytics/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotanalytics/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/PutLoggingOptionsCommand.ts b/clients/client-iotanalytics/src/commands/PutLoggingOptionsCommand.ts index 7cd3ac8db4358..3cdba30ea3ab8 100644 --- a/clients/client-iotanalytics/src/commands/PutLoggingOptionsCommand.ts +++ b/clients/client-iotanalytics/src/commands/PutLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { PutLoggingOptionsRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { PutLoggingOptionsRequest } from "../models/models_0"; import { PutLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/RunPipelineActivityCommand.ts b/clients/client-iotanalytics/src/commands/RunPipelineActivityCommand.ts index 1f433f8d76cae..2a681570e1e36 100644 --- a/clients/client-iotanalytics/src/commands/RunPipelineActivityCommand.ts +++ b/clients/client-iotanalytics/src/commands/RunPipelineActivityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { RunPipelineActivityRequest, RunPipelineActivityResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { RunPipelineActivityRequest, RunPipelineActivityResponse } from "../models/models_0"; import { RunPipelineActivity } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/SampleChannelDataCommand.ts b/clients/client-iotanalytics/src/commands/SampleChannelDataCommand.ts index bdf7a8a035961..48511c4346bf4 100644 --- a/clients/client-iotanalytics/src/commands/SampleChannelDataCommand.ts +++ b/clients/client-iotanalytics/src/commands/SampleChannelDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { SampleChannelDataRequest, SampleChannelDataResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { SampleChannelDataRequest, SampleChannelDataResponse } from "../models/models_0"; import { SampleChannelData } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/StartPipelineReprocessingCommand.ts b/clients/client-iotanalytics/src/commands/StartPipelineReprocessingCommand.ts index ac2dd122b9ab6..ac51f610a61bb 100644 --- a/clients/client-iotanalytics/src/commands/StartPipelineReprocessingCommand.ts +++ b/clients/client-iotanalytics/src/commands/StartPipelineReprocessingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { StartPipelineReprocessingRequest, StartPipelineReprocessingResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { StartPipelineReprocessingRequest, StartPipelineReprocessingResponse } from "../models/models_0"; import { StartPipelineReprocessing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/TagResourceCommand.ts b/clients/client-iotanalytics/src/commands/TagResourceCommand.ts index d2471a6b540aa..573d42eec1351 100644 --- a/clients/client-iotanalytics/src/commands/TagResourceCommand.ts +++ b/clients/client-iotanalytics/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/UntagResourceCommand.ts b/clients/client-iotanalytics/src/commands/UntagResourceCommand.ts index d7e9e1ac1e4d5..4982bad154029 100644 --- a/clients/client-iotanalytics/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotanalytics/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/UpdateChannelCommand.ts b/clients/client-iotanalytics/src/commands/UpdateChannelCommand.ts index 543986bdcbe6a..e95daca893ed6 100644 --- a/clients/client-iotanalytics/src/commands/UpdateChannelCommand.ts +++ b/clients/client-iotanalytics/src/commands/UpdateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { UpdateChannelRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { UpdateChannelRequest } from "../models/models_0"; import { UpdateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/UpdateDatasetCommand.ts b/clients/client-iotanalytics/src/commands/UpdateDatasetCommand.ts index 1bcaa22063035..8587424964a79 100644 --- a/clients/client-iotanalytics/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-iotanalytics/src/commands/UpdateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { UpdateDatasetRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { UpdateDatasetRequest } from "../models/models_0"; import { UpdateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/UpdateDatastoreCommand.ts b/clients/client-iotanalytics/src/commands/UpdateDatastoreCommand.ts index e6f9e56a73421..53e2a9423bfe1 100644 --- a/clients/client-iotanalytics/src/commands/UpdateDatastoreCommand.ts +++ b/clients/client-iotanalytics/src/commands/UpdateDatastoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { UpdateDatastoreRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { UpdateDatastoreRequest } from "../models/models_0"; import { UpdateDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/commands/UpdatePipelineCommand.ts b/clients/client-iotanalytics/src/commands/UpdatePipelineCommand.ts index cf666917142c5..4621317a19288 100644 --- a/clients/client-iotanalytics/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-iotanalytics/src/commands/UpdatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; -import { UpdatePipelineRequest } from "../models/models_0"; +import type { IoTAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTAnalyticsClient"; +import type { UpdatePipelineRequest } from "../models/models_0"; import { UpdatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotanalytics/src/endpoint/EndpointParameters.ts b/clients/client-iotanalytics/src/endpoint/EndpointParameters.ts index f5b0bd4618390..75fccebb95970 100644 --- a/clients/client-iotanalytics/src/endpoint/EndpointParameters.ts +++ b/clients/client-iotanalytics/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iotanalytics/src/endpoint/endpointResolver.ts b/clients/client-iotanalytics/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iotanalytics/src/endpoint/endpointResolver.ts +++ b/clients/client-iotanalytics/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iotanalytics/src/extensionConfiguration.ts b/clients/client-iotanalytics/src/extensionConfiguration.ts index 161dd75940bee..befcc7e3b9718 100644 --- a/clients/client-iotanalytics/src/extensionConfiguration.ts +++ b/clients/client-iotanalytics/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iotanalytics/src/models/IoTAnalyticsServiceException.ts b/clients/client-iotanalytics/src/models/IoTAnalyticsServiceException.ts index 2c9c7d44e8a0c..4233783ba6170 100644 --- a/clients/client-iotanalytics/src/models/IoTAnalyticsServiceException.ts +++ b/clients/client-iotanalytics/src/models/IoTAnalyticsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iotanalytics/src/models/errors.ts b/clients/client-iotanalytics/src/models/errors.ts index 01837be8bcefb..ada4dd83e2149 100644 --- a/clients/client-iotanalytics/src/models/errors.ts +++ b/clients/client-iotanalytics/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTAnalyticsServiceException as __BaseException } from "./IoTAnalyticsServiceException"; diff --git a/clients/client-iotanalytics/src/pagination/Interfaces.ts b/clients/client-iotanalytics/src/pagination/Interfaces.ts index 3213836464f11..dbd90bd0af8b4 100644 --- a/clients/client-iotanalytics/src/pagination/Interfaces.ts +++ b/clients/client-iotanalytics/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTAnalyticsClient } from "../IoTAnalyticsClient"; diff --git a/clients/client-iotanalytics/src/pagination/ListChannelsPaginator.ts b/clients/client-iotanalytics/src/pagination/ListChannelsPaginator.ts index 322fea89883b9..ab11b93d34fe0 100644 --- a/clients/client-iotanalytics/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-iotanalytics/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelsCommand, diff --git a/clients/client-iotanalytics/src/pagination/ListDatasetContentsPaginator.ts b/clients/client-iotanalytics/src/pagination/ListDatasetContentsPaginator.ts index f1376e0e4ad17..00b9686cc27b6 100644 --- a/clients/client-iotanalytics/src/pagination/ListDatasetContentsPaginator.ts +++ b/clients/client-iotanalytics/src/pagination/ListDatasetContentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetContentsCommand, diff --git a/clients/client-iotanalytics/src/pagination/ListDatasetsPaginator.ts b/clients/client-iotanalytics/src/pagination/ListDatasetsPaginator.ts index 1c7876c620147..0a877df4f9d97 100644 --- a/clients/client-iotanalytics/src/pagination/ListDatasetsPaginator.ts +++ b/clients/client-iotanalytics/src/pagination/ListDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetsCommand, diff --git a/clients/client-iotanalytics/src/pagination/ListDatastoresPaginator.ts b/clients/client-iotanalytics/src/pagination/ListDatastoresPaginator.ts index 256e85ff1dd9b..8282696b73d46 100644 --- a/clients/client-iotanalytics/src/pagination/ListDatastoresPaginator.ts +++ b/clients/client-iotanalytics/src/pagination/ListDatastoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatastoresCommand, diff --git a/clients/client-iotanalytics/src/pagination/ListPipelinesPaginator.ts b/clients/client-iotanalytics/src/pagination/ListPipelinesPaginator.ts index 31c09a97acff8..615b002731f8d 100644 --- a/clients/client-iotanalytics/src/pagination/ListPipelinesPaginator.ts +++ b/clients/client-iotanalytics/src/pagination/ListPipelinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelinesCommand, diff --git a/clients/client-iotanalytics/src/runtimeConfig.browser.ts b/clients/client-iotanalytics/src/runtimeConfig.browser.ts index 2578104e92e47..cb15988498920 100644 --- a/clients/client-iotanalytics/src/runtimeConfig.browser.ts +++ b/clients/client-iotanalytics/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTAnalyticsClientConfig } from "./IoTAnalyticsClient"; + +import type { IoTAnalyticsClientConfig } from "./IoTAnalyticsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iotanalytics/src/runtimeConfig.native.ts b/clients/client-iotanalytics/src/runtimeConfig.native.ts index 0c9d8430c1fa2..0e7d47215c5d1 100644 --- a/clients/client-iotanalytics/src/runtimeConfig.native.ts +++ b/clients/client-iotanalytics/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTAnalyticsClientConfig } from "./IoTAnalyticsClient"; +import type { IoTAnalyticsClientConfig } from "./IoTAnalyticsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iotanalytics/src/runtimeConfig.shared.ts b/clients/client-iotanalytics/src/runtimeConfig.shared.ts index c469c193a8100..8cced19d21e8e 100644 --- a/clients/client-iotanalytics/src/runtimeConfig.shared.ts +++ b/clients/client-iotanalytics/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTAnalyticsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTAnalyticsClientConfig } from "./IoTAnalyticsClient"; +import type { IoTAnalyticsClientConfig } from "./IoTAnalyticsClient"; /** * @internal diff --git a/clients/client-iotanalytics/src/runtimeConfig.ts b/clients/client-iotanalytics/src/runtimeConfig.ts index 17a050a19d7b8..fae0a9c1ebbd3 100644 --- a/clients/client-iotanalytics/src/runtimeConfig.ts +++ b/clients/client-iotanalytics/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTAnalyticsClientConfig } from "./IoTAnalyticsClient"; + +import type { IoTAnalyticsClientConfig } from "./IoTAnalyticsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iotanalytics/src/runtimeExtensions.ts b/clients/client-iotanalytics/src/runtimeExtensions.ts index 6ecdd3f3f39bf..96fde2f563889 100644 --- a/clients/client-iotanalytics/src/runtimeExtensions.ts +++ b/clients/client-iotanalytics/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTAnalyticsExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTAnalyticsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iotanalytics/src/schemas/schemas_0.ts b/clients/client-iotanalytics/src/schemas/schemas_0.ts index a12f27c07a57e..bef1e899b1483 100644 --- a/clients/client-iotanalytics/src/schemas/schemas_0.ts +++ b/clients/client-iotanalytics/src/schemas/schemas_0.ts @@ -357,7 +357,7 @@ const n0 = "com.amazonaws.iotanalytics"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-iotdeviceadvisor/package.json b/clients/client-iotdeviceadvisor/package.json index 403e20ee2abee..207dc9ae3b72f 100644 --- a/clients/client-iotdeviceadvisor/package.json +++ b/clients/client-iotdeviceadvisor/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iotdeviceadvisor/src/IotDeviceAdvisor.ts b/clients/client-iotdeviceadvisor/src/IotDeviceAdvisor.ts index bde6bcaa10351..02fa6da59a8ff 100644 --- a/clients/client-iotdeviceadvisor/src/IotDeviceAdvisor.ts +++ b/clients/client-iotdeviceadvisor/src/IotDeviceAdvisor.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateSuiteDefinitionCommand, @@ -60,7 +60,7 @@ import { UpdateSuiteDefinitionCommandInput, UpdateSuiteDefinitionCommandOutput, } from "./commands/UpdateSuiteDefinitionCommand"; -import { IotDeviceAdvisorClient, IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient"; +import { IotDeviceAdvisorClient } from "./IotDeviceAdvisorClient"; const commands = { CreateSuiteDefinitionCommand, diff --git a/clients/client-iotdeviceadvisor/src/IotDeviceAdvisorClient.ts b/clients/client-iotdeviceadvisor/src/IotDeviceAdvisorClient.ts index aad09bfdf7ee8..0fdf6a8ac5a51 100644 --- a/clients/client-iotdeviceadvisor/src/IotDeviceAdvisorClient.ts +++ b/clients/client-iotdeviceadvisor/src/IotDeviceAdvisorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIotDeviceAdvisorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -93,7 +102,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iotdeviceadvisor/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iotdeviceadvisor/src/auth/httpAuthExtensionConfiguration.ts index 25c9dbe0a5aea..0aa133616c6f4 100644 --- a/clients/client-iotdeviceadvisor/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iotdeviceadvisor/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IotDeviceAdvisorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IotDeviceAdvisorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iotdeviceadvisor/src/auth/httpAuthSchemeProvider.ts b/clients/client-iotdeviceadvisor/src/auth/httpAuthSchemeProvider.ts index 6aded2fdf5554..bfdfb64bb27bb 100644 --- a/clients/client-iotdeviceadvisor/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iotdeviceadvisor/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IotDeviceAdvisorClientConfig, IotDeviceAdvisorClientResolvedConfig } from "../IotDeviceAdvisorClient"; +import { type IotDeviceAdvisorClientResolvedConfig, IotDeviceAdvisorClientConfig } from "../IotDeviceAdvisorClient"; /** * @internal diff --git a/clients/client-iotdeviceadvisor/src/commands/CreateSuiteDefinitionCommand.ts b/clients/client-iotdeviceadvisor/src/commands/CreateSuiteDefinitionCommand.ts index 644c4292bbc63..de4712bca203b 100644 --- a/clients/client-iotdeviceadvisor/src/commands/CreateSuiteDefinitionCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/CreateSuiteDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { CreateSuiteDefinitionRequest, CreateSuiteDefinitionResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { CreateSuiteDefinitionRequest, CreateSuiteDefinitionResponse } from "../models/models_0"; import { CreateSuiteDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/DeleteSuiteDefinitionCommand.ts b/clients/client-iotdeviceadvisor/src/commands/DeleteSuiteDefinitionCommand.ts index 6044ec088d4e2..6391e10afc60d 100644 --- a/clients/client-iotdeviceadvisor/src/commands/DeleteSuiteDefinitionCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/DeleteSuiteDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { DeleteSuiteDefinitionRequest, DeleteSuiteDefinitionResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { DeleteSuiteDefinitionRequest, DeleteSuiteDefinitionResponse } from "../models/models_0"; import { DeleteSuiteDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/GetEndpointCommand.ts b/clients/client-iotdeviceadvisor/src/commands/GetEndpointCommand.ts index 074c2dbb54e0f..3da71c62e4232 100644 --- a/clients/client-iotdeviceadvisor/src/commands/GetEndpointCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/GetEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { GetEndpointRequest, GetEndpointResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { GetEndpointRequest, GetEndpointResponse } from "../models/models_0"; import { GetEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/GetSuiteDefinitionCommand.ts b/clients/client-iotdeviceadvisor/src/commands/GetSuiteDefinitionCommand.ts index f22c3b610a226..d46ba6b1e92a9 100644 --- a/clients/client-iotdeviceadvisor/src/commands/GetSuiteDefinitionCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/GetSuiteDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { GetSuiteDefinitionRequest, GetSuiteDefinitionResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { GetSuiteDefinitionRequest, GetSuiteDefinitionResponse } from "../models/models_0"; import { GetSuiteDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunCommand.ts b/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunCommand.ts index 4d4190ce1f328..091c37ccc5a43 100644 --- a/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { GetSuiteRunRequest, GetSuiteRunResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { GetSuiteRunRequest, GetSuiteRunResponse } from "../models/models_0"; import { GetSuiteRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunReportCommand.ts b/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunReportCommand.ts index db169e8b7e6fa..77fc57f6fd4f5 100644 --- a/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunReportCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/GetSuiteRunReportCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { GetSuiteRunReportRequest, GetSuiteRunReportResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { GetSuiteRunReportRequest, GetSuiteRunReportResponse } from "../models/models_0"; import { GetSuiteRunReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/ListSuiteDefinitionsCommand.ts b/clients/client-iotdeviceadvisor/src/commands/ListSuiteDefinitionsCommand.ts index 08cca6baf6654..f961e48b66ff6 100644 --- a/clients/client-iotdeviceadvisor/src/commands/ListSuiteDefinitionsCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/ListSuiteDefinitionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { ListSuiteDefinitionsRequest, ListSuiteDefinitionsResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { ListSuiteDefinitionsRequest, ListSuiteDefinitionsResponse } from "../models/models_0"; import { ListSuiteDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/ListSuiteRunsCommand.ts b/clients/client-iotdeviceadvisor/src/commands/ListSuiteRunsCommand.ts index 497e96d9adb7a..1210c8929c729 100644 --- a/clients/client-iotdeviceadvisor/src/commands/ListSuiteRunsCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/ListSuiteRunsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { ListSuiteRunsRequest, ListSuiteRunsResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { ListSuiteRunsRequest, ListSuiteRunsResponse } from "../models/models_0"; import { ListSuiteRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotdeviceadvisor/src/commands/ListTagsForResourceCommand.ts index 2b2701f1fd7ef..84684e38fb30c 100644 --- a/clients/client-iotdeviceadvisor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/StartSuiteRunCommand.ts b/clients/client-iotdeviceadvisor/src/commands/StartSuiteRunCommand.ts index 53e54bbffca3b..084eb70fe1756 100644 --- a/clients/client-iotdeviceadvisor/src/commands/StartSuiteRunCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/StartSuiteRunCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { StartSuiteRunRequest, StartSuiteRunResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { StartSuiteRunRequest, StartSuiteRunResponse } from "../models/models_0"; import { StartSuiteRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/StopSuiteRunCommand.ts b/clients/client-iotdeviceadvisor/src/commands/StopSuiteRunCommand.ts index f9b8b5b8fd72b..80a5e05f2ebff 100644 --- a/clients/client-iotdeviceadvisor/src/commands/StopSuiteRunCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/StopSuiteRunCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { StopSuiteRunRequest, StopSuiteRunResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { StopSuiteRunRequest, StopSuiteRunResponse } from "../models/models_0"; import { StopSuiteRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/TagResourceCommand.ts b/clients/client-iotdeviceadvisor/src/commands/TagResourceCommand.ts index e387a6fe72905..04fa870c09976 100644 --- a/clients/client-iotdeviceadvisor/src/commands/TagResourceCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/UntagResourceCommand.ts b/clients/client-iotdeviceadvisor/src/commands/UntagResourceCommand.ts index ad9f11db68e99..1d98c15301592 100644 --- a/clients/client-iotdeviceadvisor/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/commands/UpdateSuiteDefinitionCommand.ts b/clients/client-iotdeviceadvisor/src/commands/UpdateSuiteDefinitionCommand.ts index 05945baf12c6a..6457465202a93 100644 --- a/clients/client-iotdeviceadvisor/src/commands/UpdateSuiteDefinitionCommand.ts +++ b/clients/client-iotdeviceadvisor/src/commands/UpdateSuiteDefinitionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IotDeviceAdvisorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IotDeviceAdvisorClient"; -import { UpdateSuiteDefinitionRequest, UpdateSuiteDefinitionResponse } from "../models/models_0"; +import type { + IotDeviceAdvisorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IotDeviceAdvisorClient"; +import type { UpdateSuiteDefinitionRequest, UpdateSuiteDefinitionResponse } from "../models/models_0"; import { UpdateSuiteDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotdeviceadvisor/src/endpoint/EndpointParameters.ts b/clients/client-iotdeviceadvisor/src/endpoint/EndpointParameters.ts index 32f504060ea1d..059d1564c64d3 100644 --- a/clients/client-iotdeviceadvisor/src/endpoint/EndpointParameters.ts +++ b/clients/client-iotdeviceadvisor/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iotdeviceadvisor/src/endpoint/endpointResolver.ts b/clients/client-iotdeviceadvisor/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iotdeviceadvisor/src/endpoint/endpointResolver.ts +++ b/clients/client-iotdeviceadvisor/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iotdeviceadvisor/src/extensionConfiguration.ts b/clients/client-iotdeviceadvisor/src/extensionConfiguration.ts index dfb08a8f27869..3d7fdad456455 100644 --- a/clients/client-iotdeviceadvisor/src/extensionConfiguration.ts +++ b/clients/client-iotdeviceadvisor/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iotdeviceadvisor/src/models/IotDeviceAdvisorServiceException.ts b/clients/client-iotdeviceadvisor/src/models/IotDeviceAdvisorServiceException.ts index b0e45467eaa2f..e547579be9e88 100644 --- a/clients/client-iotdeviceadvisor/src/models/IotDeviceAdvisorServiceException.ts +++ b/clients/client-iotdeviceadvisor/src/models/IotDeviceAdvisorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iotdeviceadvisor/src/models/errors.ts b/clients/client-iotdeviceadvisor/src/models/errors.ts index 3b573564fa087..e2abff68e9360 100644 --- a/clients/client-iotdeviceadvisor/src/models/errors.ts +++ b/clients/client-iotdeviceadvisor/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IotDeviceAdvisorServiceException as __BaseException } from "./IotDeviceAdvisorServiceException"; diff --git a/clients/client-iotdeviceadvisor/src/pagination/Interfaces.ts b/clients/client-iotdeviceadvisor/src/pagination/Interfaces.ts index 92af7198c8237..ebbe103167173 100644 --- a/clients/client-iotdeviceadvisor/src/pagination/Interfaces.ts +++ b/clients/client-iotdeviceadvisor/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IotDeviceAdvisorClient } from "../IotDeviceAdvisorClient"; diff --git a/clients/client-iotdeviceadvisor/src/pagination/ListSuiteDefinitionsPaginator.ts b/clients/client-iotdeviceadvisor/src/pagination/ListSuiteDefinitionsPaginator.ts index 49f01bab0ed7f..b7f4da40f2250 100644 --- a/clients/client-iotdeviceadvisor/src/pagination/ListSuiteDefinitionsPaginator.ts +++ b/clients/client-iotdeviceadvisor/src/pagination/ListSuiteDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSuiteDefinitionsCommand, diff --git a/clients/client-iotdeviceadvisor/src/pagination/ListSuiteRunsPaginator.ts b/clients/client-iotdeviceadvisor/src/pagination/ListSuiteRunsPaginator.ts index 402eebc33978b..b6b6346dbfb3b 100644 --- a/clients/client-iotdeviceadvisor/src/pagination/ListSuiteRunsPaginator.ts +++ b/clients/client-iotdeviceadvisor/src/pagination/ListSuiteRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSuiteRunsCommand, diff --git a/clients/client-iotdeviceadvisor/src/runtimeConfig.browser.ts b/clients/client-iotdeviceadvisor/src/runtimeConfig.browser.ts index 8a8372325d131..042912b05c079 100644 --- a/clients/client-iotdeviceadvisor/src/runtimeConfig.browser.ts +++ b/clients/client-iotdeviceadvisor/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient"; + +import type { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iotdeviceadvisor/src/runtimeConfig.native.ts b/clients/client-iotdeviceadvisor/src/runtimeConfig.native.ts index 1b26baeadd230..2aac43521ee98 100644 --- a/clients/client-iotdeviceadvisor/src/runtimeConfig.native.ts +++ b/clients/client-iotdeviceadvisor/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient"; +import type { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iotdeviceadvisor/src/runtimeConfig.shared.ts b/clients/client-iotdeviceadvisor/src/runtimeConfig.shared.ts index dfa3679e73010..bc512b604ae66 100644 --- a/clients/client-iotdeviceadvisor/src/runtimeConfig.shared.ts +++ b/clients/client-iotdeviceadvisor/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIotDeviceAdvisorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient"; +import type { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient"; /** * @internal diff --git a/clients/client-iotdeviceadvisor/src/runtimeConfig.ts b/clients/client-iotdeviceadvisor/src/runtimeConfig.ts index 91c7483185291..a55249694d767 100644 --- a/clients/client-iotdeviceadvisor/src/runtimeConfig.ts +++ b/clients/client-iotdeviceadvisor/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient"; + +import type { IotDeviceAdvisorClientConfig } from "./IotDeviceAdvisorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iotdeviceadvisor/src/runtimeExtensions.ts b/clients/client-iotdeviceadvisor/src/runtimeExtensions.ts index 846a95cbf08a3..836601facb862 100644 --- a/clients/client-iotdeviceadvisor/src/runtimeExtensions.ts +++ b/clients/client-iotdeviceadvisor/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IotDeviceAdvisorExtensionConfiguration } from "./extensionConfiguration"; +import type { IotDeviceAdvisorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iotdeviceadvisor/src/schemas/schemas_0.ts b/clients/client-iotdeviceadvisor/src/schemas/schemas_0.ts index cb14bf96e364c..b6f36d13adbd6 100644 --- a/clients/client-iotdeviceadvisor/src/schemas/schemas_0.ts +++ b/clients/client-iotdeviceadvisor/src/schemas/schemas_0.ts @@ -130,7 +130,7 @@ const n0 = "com.amazonaws.iotdeviceadvisor"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-iotfleetwise/package.json b/clients/client-iotfleetwise/package.json index 217a0f5e8d7f3..9f8fe1f7281b4 100644 --- a/clients/client-iotfleetwise/package.json +++ b/clients/client-iotfleetwise/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iotfleetwise/src/IoTFleetWise.ts b/clients/client-iotfleetwise/src/IoTFleetWise.ts index 5946aee0cea6b..6643f17d2f79c 100644 --- a/clients/client-iotfleetwise/src/IoTFleetWise.ts +++ b/clients/client-iotfleetwise/src/IoTFleetWise.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateVehicleFleetCommand, @@ -255,7 +255,7 @@ import { UpdateVehicleCommandInput, UpdateVehicleCommandOutput, } from "./commands/UpdateVehicleCommand"; -import { IoTFleetWiseClient, IoTFleetWiseClientConfig } from "./IoTFleetWiseClient"; +import { IoTFleetWiseClient } from "./IoTFleetWiseClient"; const commands = { AssociateVehicleFleetCommand, diff --git a/clients/client-iotfleetwise/src/IoTFleetWiseClient.ts b/clients/client-iotfleetwise/src/IoTFleetWiseClient.ts index 9cf00d11e5260..59dbed6fedaf5 100644 --- a/clients/client-iotfleetwise/src/IoTFleetWiseClient.ts +++ b/clients/client-iotfleetwise/src/IoTFleetWiseClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTFleetWiseHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -202,7 +211,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iotfleetwise/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iotfleetwise/src/auth/httpAuthExtensionConfiguration.ts index 8df6c06482aba..63cafa952b45f 100644 --- a/clients/client-iotfleetwise/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iotfleetwise/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTFleetWiseHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTFleetWiseHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iotfleetwise/src/auth/httpAuthSchemeProvider.ts b/clients/client-iotfleetwise/src/auth/httpAuthSchemeProvider.ts index 0af383fd29e96..56d58e887fbda 100644 --- a/clients/client-iotfleetwise/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iotfleetwise/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTFleetWiseClientConfig, IoTFleetWiseClientResolvedConfig } from "../IoTFleetWiseClient"; +import { type IoTFleetWiseClientResolvedConfig, IoTFleetWiseClientConfig } from "../IoTFleetWiseClient"; /** * @internal diff --git a/clients/client-iotfleetwise/src/commands/AssociateVehicleFleetCommand.ts b/clients/client-iotfleetwise/src/commands/AssociateVehicleFleetCommand.ts index 20bae171c64f9..518a3a9acc266 100644 --- a/clients/client-iotfleetwise/src/commands/AssociateVehicleFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/AssociateVehicleFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { AssociateVehicleFleetRequest, AssociateVehicleFleetResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { AssociateVehicleFleetRequest, AssociateVehicleFleetResponse } from "../models/models_0"; import { AssociateVehicleFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/BatchCreateVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/BatchCreateVehicleCommand.ts index 6ad2e4725c4a2..056c776ee5d54 100644 --- a/clients/client-iotfleetwise/src/commands/BatchCreateVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/BatchCreateVehicleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { BatchCreateVehicleRequest, BatchCreateVehicleResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { BatchCreateVehicleRequest, BatchCreateVehicleResponse } from "../models/models_0"; import { BatchCreateVehicle } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/BatchUpdateVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/BatchUpdateVehicleCommand.ts index 262c7b7fe388f..0ba7ce529c669 100644 --- a/clients/client-iotfleetwise/src/commands/BatchUpdateVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/BatchUpdateVehicleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { BatchUpdateVehicleRequest, BatchUpdateVehicleResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { BatchUpdateVehicleRequest, BatchUpdateVehicleResponse } from "../models/models_0"; import { BatchUpdateVehicle } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/CreateCampaignCommand.ts b/clients/client-iotfleetwise/src/commands/CreateCampaignCommand.ts index 9bfedc6e49218..cd0b1ed430fc7 100644 --- a/clients/client-iotfleetwise/src/commands/CreateCampaignCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; import { CreateCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/CreateDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/CreateDecoderManifestCommand.ts index 251b73237a733..5c586e109c51f 100644 --- a/clients/client-iotfleetwise/src/commands/CreateDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateDecoderManifestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { CreateDecoderManifestRequest, CreateDecoderManifestResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { CreateDecoderManifestRequest, CreateDecoderManifestResponse } from "../models/models_0"; import { CreateDecoderManifest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/CreateFleetCommand.ts b/clients/client-iotfleetwise/src/commands/CreateFleetCommand.ts index 36ce474ac85e7..96db9ff1d6714 100644 --- a/clients/client-iotfleetwise/src/commands/CreateFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { CreateFleetRequest, CreateFleetResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { CreateFleetRequest, CreateFleetResponse } from "../models/models_0"; import { CreateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/CreateModelManifestCommand.ts b/clients/client-iotfleetwise/src/commands/CreateModelManifestCommand.ts index 7f6813bcd0b6a..a2ede0e71add4 100644 --- a/clients/client-iotfleetwise/src/commands/CreateModelManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateModelManifestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { CreateModelManifestRequest, CreateModelManifestResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { CreateModelManifestRequest, CreateModelManifestResponse } from "../models/models_0"; import { CreateModelManifest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/CreateSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/CreateSignalCatalogCommand.ts index 9e75cdffd1877..9b353a1773798 100644 --- a/clients/client-iotfleetwise/src/commands/CreateSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateSignalCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { CreateSignalCatalogRequest, CreateSignalCatalogResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { CreateSignalCatalogRequest, CreateSignalCatalogResponse } from "../models/models_0"; import { CreateSignalCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/CreateStateTemplateCommand.ts b/clients/client-iotfleetwise/src/commands/CreateStateTemplateCommand.ts index ef805b2d97f63..c12458c8afa9f 100644 --- a/clients/client-iotfleetwise/src/commands/CreateStateTemplateCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateStateTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { CreateStateTemplateRequest, CreateStateTemplateResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { CreateStateTemplateRequest, CreateStateTemplateResponse } from "../models/models_0"; import { CreateStateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/CreateVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/CreateVehicleCommand.ts index c04d06fd335ba..09ce6c2f766e8 100644 --- a/clients/client-iotfleetwise/src/commands/CreateVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/CreateVehicleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { CreateVehicleRequest, CreateVehicleResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { CreateVehicleRequest, CreateVehicleResponse } from "../models/models_0"; import { CreateVehicle } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/DeleteCampaignCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteCampaignCommand.ts index 99a61cf04a9ab..a0e7a0e1ba894 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { DeleteCampaignRequest, DeleteCampaignResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { DeleteCampaignRequest, DeleteCampaignResponse } from "../models/models_0"; import { DeleteCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/DeleteDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteDecoderManifestCommand.ts index 810a34e090910..9ab4baa00c3e5 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteDecoderManifestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { DeleteDecoderManifestRequest, DeleteDecoderManifestResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { DeleteDecoderManifestRequest, DeleteDecoderManifestResponse } from "../models/models_0"; import { DeleteDecoderManifest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/DeleteFleetCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteFleetCommand.ts index be7eeaff1f79a..cfd938b8040a7 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { DeleteFleetRequest, DeleteFleetResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { DeleteFleetRequest, DeleteFleetResponse } from "../models/models_0"; import { DeleteFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/DeleteModelManifestCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteModelManifestCommand.ts index 19b5ff862bd4b..b8d5e53a17681 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteModelManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteModelManifestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { DeleteModelManifestRequest, DeleteModelManifestResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { DeleteModelManifestRequest, DeleteModelManifestResponse } from "../models/models_0"; import { DeleteModelManifest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/DeleteSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteSignalCatalogCommand.ts index 8b138d51bc700..f801e02e1f9b0 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteSignalCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { DeleteSignalCatalogRequest, DeleteSignalCatalogResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { DeleteSignalCatalogRequest, DeleteSignalCatalogResponse } from "../models/models_0"; import { DeleteSignalCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/DeleteStateTemplateCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteStateTemplateCommand.ts index f1337c3540932..b1a041e616c14 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteStateTemplateCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteStateTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { DeleteStateTemplateRequest, DeleteStateTemplateResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { DeleteStateTemplateRequest, DeleteStateTemplateResponse } from "../models/models_0"; import { DeleteStateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/DeleteVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/DeleteVehicleCommand.ts index 533a1bcf2731f..bc586475873b6 100644 --- a/clients/client-iotfleetwise/src/commands/DeleteVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DeleteVehicleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { DeleteVehicleRequest, DeleteVehicleResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { DeleteVehicleRequest, DeleteVehicleResponse } from "../models/models_0"; import { DeleteVehicle } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/DisassociateVehicleFleetCommand.ts b/clients/client-iotfleetwise/src/commands/DisassociateVehicleFleetCommand.ts index ff90789012aa0..9aeed19c4ef16 100644 --- a/clients/client-iotfleetwise/src/commands/DisassociateVehicleFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/DisassociateVehicleFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { DisassociateVehicleFleetRequest, DisassociateVehicleFleetResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { DisassociateVehicleFleetRequest, DisassociateVehicleFleetResponse } from "../models/models_0"; import { DisassociateVehicleFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetCampaignCommand.ts b/clients/client-iotfleetwise/src/commands/GetCampaignCommand.ts index a244c9267e713..bec2343e5739e 100644 --- a/clients/client-iotfleetwise/src/commands/GetCampaignCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetCampaignRequest, GetCampaignResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetCampaignRequest, GetCampaignResponse } from "../models/models_0"; import { GetCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/GetDecoderManifestCommand.ts index cb962eb032405..fb6f4d2625067 100644 --- a/clients/client-iotfleetwise/src/commands/GetDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetDecoderManifestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetDecoderManifestRequest, GetDecoderManifestResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetDecoderManifestRequest, GetDecoderManifestResponse } from "../models/models_0"; import { GetDecoderManifest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetEncryptionConfigurationCommand.ts b/clients/client-iotfleetwise/src/commands/GetEncryptionConfigurationCommand.ts index 7e9e603ef8a71..5fc99d32ae79d 100644 --- a/clients/client-iotfleetwise/src/commands/GetEncryptionConfigurationCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetEncryptionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetEncryptionConfigurationRequest, GetEncryptionConfigurationResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetEncryptionConfigurationRequest, GetEncryptionConfigurationResponse } from "../models/models_0"; import { GetEncryptionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetFleetCommand.ts b/clients/client-iotfleetwise/src/commands/GetFleetCommand.ts index 3f5a82c69187f..a2ef10db85e64 100644 --- a/clients/client-iotfleetwise/src/commands/GetFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetFleetRequest, GetFleetResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetFleetRequest, GetFleetResponse } from "../models/models_0"; import { GetFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetLoggingOptionsCommand.ts b/clients/client-iotfleetwise/src/commands/GetLoggingOptionsCommand.ts index 7481fdf9be6f2..77a2b7ddf41f5 100644 --- a/clients/client-iotfleetwise/src/commands/GetLoggingOptionsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetLoggingOptionsRequest, GetLoggingOptionsResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetLoggingOptionsRequest, GetLoggingOptionsResponse } from "../models/models_0"; import { GetLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetModelManifestCommand.ts b/clients/client-iotfleetwise/src/commands/GetModelManifestCommand.ts index e8ed1853042dd..67adf351e5cc0 100644 --- a/clients/client-iotfleetwise/src/commands/GetModelManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetModelManifestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetModelManifestRequest, GetModelManifestResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetModelManifestRequest, GetModelManifestResponse } from "../models/models_0"; import { GetModelManifest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetRegisterAccountStatusCommand.ts b/clients/client-iotfleetwise/src/commands/GetRegisterAccountStatusCommand.ts index e9e09e781decc..e5f61ca4eb562 100644 --- a/clients/client-iotfleetwise/src/commands/GetRegisterAccountStatusCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetRegisterAccountStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetRegisterAccountStatusRequest, GetRegisterAccountStatusResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetRegisterAccountStatusRequest, GetRegisterAccountStatusResponse } from "../models/models_0"; import { GetRegisterAccountStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/GetSignalCatalogCommand.ts index ed66b17c35a76..8423163f2093e 100644 --- a/clients/client-iotfleetwise/src/commands/GetSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetSignalCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetSignalCatalogRequest, GetSignalCatalogResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetSignalCatalogRequest, GetSignalCatalogResponse } from "../models/models_0"; import { GetSignalCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetStateTemplateCommand.ts b/clients/client-iotfleetwise/src/commands/GetStateTemplateCommand.ts index 11a736319edf9..f5ca301768f29 100644 --- a/clients/client-iotfleetwise/src/commands/GetStateTemplateCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetStateTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetStateTemplateRequest, GetStateTemplateResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetStateTemplateRequest, GetStateTemplateResponse } from "../models/models_0"; import { GetStateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/GetVehicleCommand.ts index 7745f230acbe5..9c33449a0953d 100644 --- a/clients/client-iotfleetwise/src/commands/GetVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetVehicleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetVehicleRequest, GetVehicleResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetVehicleRequest, GetVehicleResponse } from "../models/models_0"; import { GetVehicle } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/GetVehicleStatusCommand.ts b/clients/client-iotfleetwise/src/commands/GetVehicleStatusCommand.ts index f6d9c3e37ae5e..16a6ff6b4472d 100644 --- a/clients/client-iotfleetwise/src/commands/GetVehicleStatusCommand.ts +++ b/clients/client-iotfleetwise/src/commands/GetVehicleStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { GetVehicleStatusRequest, GetVehicleStatusResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { GetVehicleStatusRequest, GetVehicleStatusResponse } from "../models/models_0"; import { GetVehicleStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ImportDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/ImportDecoderManifestCommand.ts index acc5eb4d226a5..7c0972286c13e 100644 --- a/clients/client-iotfleetwise/src/commands/ImportDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ImportDecoderManifestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ImportDecoderManifestRequest, ImportDecoderManifestResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ImportDecoderManifestRequest, ImportDecoderManifestResponse } from "../models/models_0"; import { ImportDecoderManifest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ImportSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/ImportSignalCatalogCommand.ts index 19d7a6b625320..f10ac47cc9925 100644 --- a/clients/client-iotfleetwise/src/commands/ImportSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ImportSignalCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ImportSignalCatalogRequest, ImportSignalCatalogResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ImportSignalCatalogRequest, ImportSignalCatalogResponse } from "../models/models_0"; import { ImportSignalCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListCampaignsCommand.ts b/clients/client-iotfleetwise/src/commands/ListCampaignsCommand.ts index 24ad074f335c3..1c9978f439c2e 100644 --- a/clients/client-iotfleetwise/src/commands/ListCampaignsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListCampaignsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0"; import { ListCampaigns } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListDecoderManifestNetworkInterfacesCommand.ts b/clients/client-iotfleetwise/src/commands/ListDecoderManifestNetworkInterfacesCommand.ts index 493a184384b5d..003a582ce2dc5 100644 --- a/clients/client-iotfleetwise/src/commands/ListDecoderManifestNetworkInterfacesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListDecoderManifestNetworkInterfacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListDecoderManifestNetworkInterfacesRequest, ListDecoderManifestNetworkInterfacesResponse, } from "../models/models_0"; diff --git a/clients/client-iotfleetwise/src/commands/ListDecoderManifestSignalsCommand.ts b/clients/client-iotfleetwise/src/commands/ListDecoderManifestSignalsCommand.ts index bcb5356d5da1b..01e1fc7c8e545 100644 --- a/clients/client-iotfleetwise/src/commands/ListDecoderManifestSignalsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListDecoderManifestSignalsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListDecoderManifestSignalsRequest, ListDecoderManifestSignalsResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListDecoderManifestSignalsRequest, ListDecoderManifestSignalsResponse } from "../models/models_0"; import { ListDecoderManifestSignals } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListDecoderManifestsCommand.ts b/clients/client-iotfleetwise/src/commands/ListDecoderManifestsCommand.ts index 277835860d083..1ea2719b0f40b 100644 --- a/clients/client-iotfleetwise/src/commands/ListDecoderManifestsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListDecoderManifestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListDecoderManifestsRequest, ListDecoderManifestsResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListDecoderManifestsRequest, ListDecoderManifestsResponse } from "../models/models_0"; import { ListDecoderManifests } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListFleetsCommand.ts b/clients/client-iotfleetwise/src/commands/ListFleetsCommand.ts index e62e184d61142..dc4d5d1652d21 100644 --- a/clients/client-iotfleetwise/src/commands/ListFleetsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListFleetsRequest, ListFleetsResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListFleetsRequest, ListFleetsResponse } from "../models/models_0"; import { ListFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListFleetsForVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/ListFleetsForVehicleCommand.ts index 3e88c2e1c2f57..2f9b99b981220 100644 --- a/clients/client-iotfleetwise/src/commands/ListFleetsForVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListFleetsForVehicleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListFleetsForVehicleRequest, ListFleetsForVehicleResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListFleetsForVehicleRequest, ListFleetsForVehicleResponse } from "../models/models_0"; import { ListFleetsForVehicle } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListModelManifestNodesCommand.ts b/clients/client-iotfleetwise/src/commands/ListModelManifestNodesCommand.ts index 607814ee64e58..22d2f4d15b007 100644 --- a/clients/client-iotfleetwise/src/commands/ListModelManifestNodesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListModelManifestNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListModelManifestNodesRequest, ListModelManifestNodesResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListModelManifestNodesRequest, ListModelManifestNodesResponse } from "../models/models_0"; import { ListModelManifestNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListModelManifestsCommand.ts b/clients/client-iotfleetwise/src/commands/ListModelManifestsCommand.ts index 198c78bb52575..9a75aa716a148 100644 --- a/clients/client-iotfleetwise/src/commands/ListModelManifestsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListModelManifestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListModelManifestsRequest, ListModelManifestsResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListModelManifestsRequest, ListModelManifestsResponse } from "../models/models_0"; import { ListModelManifests } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListSignalCatalogNodesCommand.ts b/clients/client-iotfleetwise/src/commands/ListSignalCatalogNodesCommand.ts index 4d72daf65aa6b..d5ad868cb5bd7 100644 --- a/clients/client-iotfleetwise/src/commands/ListSignalCatalogNodesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListSignalCatalogNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListSignalCatalogNodesRequest, ListSignalCatalogNodesResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListSignalCatalogNodesRequest, ListSignalCatalogNodesResponse } from "../models/models_0"; import { ListSignalCatalogNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListSignalCatalogsCommand.ts b/clients/client-iotfleetwise/src/commands/ListSignalCatalogsCommand.ts index c2059fb74c99f..903b85f06571e 100644 --- a/clients/client-iotfleetwise/src/commands/ListSignalCatalogsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListSignalCatalogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListSignalCatalogsRequest, ListSignalCatalogsResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListSignalCatalogsRequest, ListSignalCatalogsResponse } from "../models/models_0"; import { ListSignalCatalogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListStateTemplatesCommand.ts b/clients/client-iotfleetwise/src/commands/ListStateTemplatesCommand.ts index 5396ab5309f55..03934b052861f 100644 --- a/clients/client-iotfleetwise/src/commands/ListStateTemplatesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListStateTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListStateTemplatesRequest, ListStateTemplatesResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListStateTemplatesRequest, ListStateTemplatesResponse } from "../models/models_0"; import { ListStateTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotfleetwise/src/commands/ListTagsForResourceCommand.ts index 67d704c306521..8789c08ec381f 100644 --- a/clients/client-iotfleetwise/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListVehiclesCommand.ts b/clients/client-iotfleetwise/src/commands/ListVehiclesCommand.ts index 1840edfd82501..dcc330fdd1944 100644 --- a/clients/client-iotfleetwise/src/commands/ListVehiclesCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListVehiclesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListVehiclesRequest, ListVehiclesResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListVehiclesRequest, ListVehiclesResponse } from "../models/models_0"; import { ListVehicles } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/ListVehiclesInFleetCommand.ts b/clients/client-iotfleetwise/src/commands/ListVehiclesInFleetCommand.ts index 5a2e6092944b5..ecc89df3878de 100644 --- a/clients/client-iotfleetwise/src/commands/ListVehiclesInFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/ListVehiclesInFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { ListVehiclesInFleetRequest, ListVehiclesInFleetResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { ListVehiclesInFleetRequest, ListVehiclesInFleetResponse } from "../models/models_0"; import { ListVehiclesInFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/PutEncryptionConfigurationCommand.ts b/clients/client-iotfleetwise/src/commands/PutEncryptionConfigurationCommand.ts index 59191815cb126..93d47b7e3ee2b 100644 --- a/clients/client-iotfleetwise/src/commands/PutEncryptionConfigurationCommand.ts +++ b/clients/client-iotfleetwise/src/commands/PutEncryptionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { PutEncryptionConfigurationRequest, PutEncryptionConfigurationResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { PutEncryptionConfigurationRequest, PutEncryptionConfigurationResponse } from "../models/models_0"; import { PutEncryptionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/PutLoggingOptionsCommand.ts b/clients/client-iotfleetwise/src/commands/PutLoggingOptionsCommand.ts index e02f2bf796126..d9de24c07b9ec 100644 --- a/clients/client-iotfleetwise/src/commands/PutLoggingOptionsCommand.ts +++ b/clients/client-iotfleetwise/src/commands/PutLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { PutLoggingOptionsRequest, PutLoggingOptionsResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { PutLoggingOptionsRequest, PutLoggingOptionsResponse } from "../models/models_0"; import { PutLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/RegisterAccountCommand.ts b/clients/client-iotfleetwise/src/commands/RegisterAccountCommand.ts index 3413d368ea8dc..b189b62c9cac4 100644 --- a/clients/client-iotfleetwise/src/commands/RegisterAccountCommand.ts +++ b/clients/client-iotfleetwise/src/commands/RegisterAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { RegisterAccountRequest, RegisterAccountResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { RegisterAccountRequest, RegisterAccountResponse } from "../models/models_0"; import { RegisterAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/TagResourceCommand.ts b/clients/client-iotfleetwise/src/commands/TagResourceCommand.ts index 6bf4b611e1b89..f553af40629c7 100644 --- a/clients/client-iotfleetwise/src/commands/TagResourceCommand.ts +++ b/clients/client-iotfleetwise/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/UntagResourceCommand.ts b/clients/client-iotfleetwise/src/commands/UntagResourceCommand.ts index 9380dcc3ebd40..372a01c023814 100644 --- a/clients/client-iotfleetwise/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/UpdateCampaignCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateCampaignCommand.ts index 3aaafe6b8aebc..9eacb54ed0e8b 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateCampaignCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { UpdateCampaignRequest, UpdateCampaignResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { UpdateCampaignRequest, UpdateCampaignResponse } from "../models/models_0"; import { UpdateCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/UpdateDecoderManifestCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateDecoderManifestCommand.ts index 21a17a38907c4..bdb15c874927a 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateDecoderManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateDecoderManifestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { UpdateDecoderManifestRequest, UpdateDecoderManifestResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { UpdateDecoderManifestRequest, UpdateDecoderManifestResponse } from "../models/models_0"; import { UpdateDecoderManifest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/UpdateFleetCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateFleetCommand.ts index e3f98f7163475..968d1875497db 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateFleetCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { UpdateFleetRequest, UpdateFleetResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { UpdateFleetRequest, UpdateFleetResponse } from "../models/models_0"; import { UpdateFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/UpdateModelManifestCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateModelManifestCommand.ts index f3ecd38735323..891be45576a7d 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateModelManifestCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateModelManifestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { UpdateModelManifestRequest, UpdateModelManifestResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { UpdateModelManifestRequest, UpdateModelManifestResponse } from "../models/models_0"; import { UpdateModelManifest } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/UpdateSignalCatalogCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateSignalCatalogCommand.ts index 994cfff6bb654..e54613e045cea 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateSignalCatalogCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateSignalCatalogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { UpdateSignalCatalogRequest, UpdateSignalCatalogResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { UpdateSignalCatalogRequest, UpdateSignalCatalogResponse } from "../models/models_0"; import { UpdateSignalCatalog } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/UpdateStateTemplateCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateStateTemplateCommand.ts index d0b047b55bc46..e01c8042696f3 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateStateTemplateCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateStateTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { UpdateStateTemplateRequest, UpdateStateTemplateResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { UpdateStateTemplateRequest, UpdateStateTemplateResponse } from "../models/models_0"; import { UpdateStateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/commands/UpdateVehicleCommand.ts b/clients/client-iotfleetwise/src/commands/UpdateVehicleCommand.ts index 115c955c20803..d044cc72e343e 100644 --- a/clients/client-iotfleetwise/src/commands/UpdateVehicleCommand.ts +++ b/clients/client-iotfleetwise/src/commands/UpdateVehicleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; -import { UpdateVehicleRequest, UpdateVehicleResponse } from "../models/models_0"; +import type { IoTFleetWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTFleetWiseClient"; +import type { UpdateVehicleRequest, UpdateVehicleResponse } from "../models/models_0"; import { UpdateVehicle } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotfleetwise/src/endpoint/EndpointParameters.ts b/clients/client-iotfleetwise/src/endpoint/EndpointParameters.ts index 7e2f1729af602..7e8f6c777e2c2 100644 --- a/clients/client-iotfleetwise/src/endpoint/EndpointParameters.ts +++ b/clients/client-iotfleetwise/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iotfleetwise/src/endpoint/endpointResolver.ts b/clients/client-iotfleetwise/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iotfleetwise/src/endpoint/endpointResolver.ts +++ b/clients/client-iotfleetwise/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iotfleetwise/src/extensionConfiguration.ts b/clients/client-iotfleetwise/src/extensionConfiguration.ts index 472c5ff297ff9..e6a25afaa9398 100644 --- a/clients/client-iotfleetwise/src/extensionConfiguration.ts +++ b/clients/client-iotfleetwise/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iotfleetwise/src/models/IoTFleetWiseServiceException.ts b/clients/client-iotfleetwise/src/models/IoTFleetWiseServiceException.ts index 175c4bd5e6115..620912ddecc2f 100644 --- a/clients/client-iotfleetwise/src/models/IoTFleetWiseServiceException.ts +++ b/clients/client-iotfleetwise/src/models/IoTFleetWiseServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iotfleetwise/src/models/errors.ts b/clients/client-iotfleetwise/src/models/errors.ts index 4b3133802e00d..4f1e50f7b456c 100644 --- a/clients/client-iotfleetwise/src/models/errors.ts +++ b/clients/client-iotfleetwise/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { IoTFleetWiseServiceException as __BaseException } from "./IoTFleetWiseServiceException"; diff --git a/clients/client-iotfleetwise/src/pagination/GetVehicleStatusPaginator.ts b/clients/client-iotfleetwise/src/pagination/GetVehicleStatusPaginator.ts index 951e9c26e8619..fa86cac13e281 100644 --- a/clients/client-iotfleetwise/src/pagination/GetVehicleStatusPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/GetVehicleStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetVehicleStatusCommand, diff --git a/clients/client-iotfleetwise/src/pagination/Interfaces.ts b/clients/client-iotfleetwise/src/pagination/Interfaces.ts index c8aa88007d65b..6ad7e8c357044 100644 --- a/clients/client-iotfleetwise/src/pagination/Interfaces.ts +++ b/clients/client-iotfleetwise/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTFleetWiseClient } from "../IoTFleetWiseClient"; diff --git a/clients/client-iotfleetwise/src/pagination/ListCampaignsPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListCampaignsPaginator.ts index 92dc559e7b212..fdbbc19e79b2b 100644 --- a/clients/client-iotfleetwise/src/pagination/ListCampaignsPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListCampaignsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCampaignsCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListDecoderManifestNetworkInterfacesPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListDecoderManifestNetworkInterfacesPaginator.ts index 6f678eb6b4f30..11ba82500fcf9 100644 --- a/clients/client-iotfleetwise/src/pagination/ListDecoderManifestNetworkInterfacesPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListDecoderManifestNetworkInterfacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDecoderManifestNetworkInterfacesCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListDecoderManifestSignalsPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListDecoderManifestSignalsPaginator.ts index f8f3c7e9bb835..51fcd109469ba 100644 --- a/clients/client-iotfleetwise/src/pagination/ListDecoderManifestSignalsPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListDecoderManifestSignalsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDecoderManifestSignalsCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListDecoderManifestsPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListDecoderManifestsPaginator.ts index 2c68d72ae5d99..94362e207c263 100644 --- a/clients/client-iotfleetwise/src/pagination/ListDecoderManifestsPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListDecoderManifestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDecoderManifestsCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListFleetsForVehiclePaginator.ts b/clients/client-iotfleetwise/src/pagination/ListFleetsForVehiclePaginator.ts index 901da982d8b47..49ba4ffa672ee 100644 --- a/clients/client-iotfleetwise/src/pagination/ListFleetsForVehiclePaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListFleetsForVehiclePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFleetsForVehicleCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListFleetsPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListFleetsPaginator.ts index 02b4b59b8f3ab..40d137436b747 100644 --- a/clients/client-iotfleetwise/src/pagination/ListFleetsPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListFleetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFleetsCommand, ListFleetsCommandInput, ListFleetsCommandOutput } from "../commands/ListFleetsCommand"; import { IoTFleetWiseClient } from "../IoTFleetWiseClient"; diff --git a/clients/client-iotfleetwise/src/pagination/ListModelManifestNodesPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListModelManifestNodesPaginator.ts index 3b21738499105..bffdd0f2d0f21 100644 --- a/clients/client-iotfleetwise/src/pagination/ListModelManifestNodesPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListModelManifestNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelManifestNodesCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListModelManifestsPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListModelManifestsPaginator.ts index e78711eec4355..f7c3f75e2b74c 100644 --- a/clients/client-iotfleetwise/src/pagination/ListModelManifestsPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListModelManifestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelManifestsCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListSignalCatalogNodesPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListSignalCatalogNodesPaginator.ts index 4a19fbfb9adba..478516f293977 100644 --- a/clients/client-iotfleetwise/src/pagination/ListSignalCatalogNodesPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListSignalCatalogNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSignalCatalogNodesCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListSignalCatalogsPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListSignalCatalogsPaginator.ts index 530768dad0040..5a40ee23a7164 100644 --- a/clients/client-iotfleetwise/src/pagination/ListSignalCatalogsPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListSignalCatalogsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSignalCatalogsCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListStateTemplatesPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListStateTemplatesPaginator.ts index 3d0267de08331..32f70ec752744 100644 --- a/clients/client-iotfleetwise/src/pagination/ListStateTemplatesPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListStateTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStateTemplatesCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListVehiclesInFleetPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListVehiclesInFleetPaginator.ts index b0274fd4dfd44..1bd4096476b20 100644 --- a/clients/client-iotfleetwise/src/pagination/ListVehiclesInFleetPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListVehiclesInFleetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVehiclesInFleetCommand, diff --git a/clients/client-iotfleetwise/src/pagination/ListVehiclesPaginator.ts b/clients/client-iotfleetwise/src/pagination/ListVehiclesPaginator.ts index 67064836a0605..5578f76dbe7c0 100644 --- a/clients/client-iotfleetwise/src/pagination/ListVehiclesPaginator.ts +++ b/clients/client-iotfleetwise/src/pagination/ListVehiclesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVehiclesCommand, diff --git a/clients/client-iotfleetwise/src/runtimeConfig.browser.ts b/clients/client-iotfleetwise/src/runtimeConfig.browser.ts index f315eef1987b7..5f87c6b9b7e1c 100644 --- a/clients/client-iotfleetwise/src/runtimeConfig.browser.ts +++ b/clients/client-iotfleetwise/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTFleetWiseClientConfig } from "./IoTFleetWiseClient"; + +import type { IoTFleetWiseClientConfig } from "./IoTFleetWiseClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iotfleetwise/src/runtimeConfig.native.ts b/clients/client-iotfleetwise/src/runtimeConfig.native.ts index 9998923f35e39..bc123f27ec492 100644 --- a/clients/client-iotfleetwise/src/runtimeConfig.native.ts +++ b/clients/client-iotfleetwise/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTFleetWiseClientConfig } from "./IoTFleetWiseClient"; +import type { IoTFleetWiseClientConfig } from "./IoTFleetWiseClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iotfleetwise/src/runtimeConfig.shared.ts b/clients/client-iotfleetwise/src/runtimeConfig.shared.ts index 53ae45a60455c..56dfaa0cece63 100644 --- a/clients/client-iotfleetwise/src/runtimeConfig.shared.ts +++ b/clients/client-iotfleetwise/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTFleetWiseHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTFleetWiseClientConfig } from "./IoTFleetWiseClient"; +import type { IoTFleetWiseClientConfig } from "./IoTFleetWiseClient"; /** * @internal diff --git a/clients/client-iotfleetwise/src/runtimeConfig.ts b/clients/client-iotfleetwise/src/runtimeConfig.ts index 54b15c3b257c4..6c3df0b066241 100644 --- a/clients/client-iotfleetwise/src/runtimeConfig.ts +++ b/clients/client-iotfleetwise/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTFleetWiseClientConfig } from "./IoTFleetWiseClient"; + +import type { IoTFleetWiseClientConfig } from "./IoTFleetWiseClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iotfleetwise/src/runtimeExtensions.ts b/clients/client-iotfleetwise/src/runtimeExtensions.ts index 13f76d594e1dc..d935c67fd93e3 100644 --- a/clients/client-iotfleetwise/src/runtimeExtensions.ts +++ b/clients/client-iotfleetwise/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTFleetWiseExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTFleetWiseExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iotfleetwise/src/schemas/schemas_0.ts b/clients/client-iotfleetwise/src/schemas/schemas_0.ts index cf1a95aca2c35..2bdf85b82d8de 100644 --- a/clients/client-iotfleetwise/src/schemas/schemas_0.ts +++ b/clients/client-iotfleetwise/src/schemas/schemas_0.ts @@ -520,7 +520,7 @@ const n0 = "com.amazonaws.iotfleetwise"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-iotsecuretunneling/package.json b/clients/client-iotsecuretunneling/package.json index c5fef0dd9789d..c26f24cc7f19e 100644 --- a/clients/client-iotsecuretunneling/package.json +++ b/clients/client-iotsecuretunneling/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iotsecuretunneling/src/IoTSecureTunneling.ts b/clients/client-iotsecuretunneling/src/IoTSecureTunneling.ts index 41252e4576f24..306dd2e47aa33 100644 --- a/clients/client-iotsecuretunneling/src/IoTSecureTunneling.ts +++ b/clients/client-iotsecuretunneling/src/IoTSecureTunneling.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CloseTunnelCommand, CloseTunnelCommandInput, CloseTunnelCommandOutput } from "./commands/CloseTunnelCommand"; import { @@ -26,7 +26,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { IoTSecureTunnelingClient, IoTSecureTunnelingClientConfig } from "./IoTSecureTunnelingClient"; +import { IoTSecureTunnelingClient } from "./IoTSecureTunnelingClient"; const commands = { CloseTunnelCommand, diff --git a/clients/client-iotsecuretunneling/src/IoTSecureTunnelingClient.ts b/clients/client-iotsecuretunneling/src/IoTSecureTunnelingClient.ts index d23ff101f2106..6db9ebbde8c34 100644 --- a/clients/client-iotsecuretunneling/src/IoTSecureTunnelingClient.ts +++ b/clients/client-iotsecuretunneling/src/IoTSecureTunnelingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTSecureTunnelingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CloseTunnelCommandInput, CloseTunnelCommandOutput } from "./commands/CloseTunnelCommand"; @@ -78,7 +87,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iotsecuretunneling/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iotsecuretunneling/src/auth/httpAuthExtensionConfiguration.ts index 8049ae1b8d443..0613a270ae521 100644 --- a/clients/client-iotsecuretunneling/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iotsecuretunneling/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTSecureTunnelingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTSecureTunnelingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iotsecuretunneling/src/auth/httpAuthSchemeProvider.ts b/clients/client-iotsecuretunneling/src/auth/httpAuthSchemeProvider.ts index b8630c82cd0a0..a62d69f62f6e3 100644 --- a/clients/client-iotsecuretunneling/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iotsecuretunneling/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTSecureTunnelingClientConfig, IoTSecureTunnelingClientResolvedConfig } from "../IoTSecureTunnelingClient"; +import { + type IoTSecureTunnelingClientResolvedConfig, + IoTSecureTunnelingClientConfig, +} from "../IoTSecureTunnelingClient"; /** * @internal diff --git a/clients/client-iotsecuretunneling/src/commands/CloseTunnelCommand.ts b/clients/client-iotsecuretunneling/src/commands/CloseTunnelCommand.ts index ce7a25c97537c..2fec90d4c76dc 100644 --- a/clients/client-iotsecuretunneling/src/commands/CloseTunnelCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/CloseTunnelCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTSecureTunnelingClient"; -import { CloseTunnelRequest, CloseTunnelResponse } from "../models/models_0"; +import type { CloseTunnelRequest, CloseTunnelResponse } from "../models/models_0"; import { CloseTunnel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsecuretunneling/src/commands/DescribeTunnelCommand.ts b/clients/client-iotsecuretunneling/src/commands/DescribeTunnelCommand.ts index cf02ac85b76a4..2598a120de210 100644 --- a/clients/client-iotsecuretunneling/src/commands/DescribeTunnelCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/DescribeTunnelCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTSecureTunnelingClient"; -import { DescribeTunnelRequest, DescribeTunnelResponse } from "../models/models_0"; +import type { DescribeTunnelRequest, DescribeTunnelResponse } from "../models/models_0"; import { DescribeTunnel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsecuretunneling/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotsecuretunneling/src/commands/ListTagsForResourceCommand.ts index f14c7aabf250b..665482e77277e 100644 --- a/clients/client-iotsecuretunneling/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTSecureTunnelingClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsecuretunneling/src/commands/ListTunnelsCommand.ts b/clients/client-iotsecuretunneling/src/commands/ListTunnelsCommand.ts index 7fee5100e9d22..5b8df07e1c7fe 100644 --- a/clients/client-iotsecuretunneling/src/commands/ListTunnelsCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/ListTunnelsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTSecureTunnelingClient"; -import { ListTunnelsRequest, ListTunnelsResponse } from "../models/models_0"; +import type { ListTunnelsRequest, ListTunnelsResponse } from "../models/models_0"; import { ListTunnels } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsecuretunneling/src/commands/OpenTunnelCommand.ts b/clients/client-iotsecuretunneling/src/commands/OpenTunnelCommand.ts index 9d7976dbad06a..ab02432982a72 100644 --- a/clients/client-iotsecuretunneling/src/commands/OpenTunnelCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/OpenTunnelCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTSecureTunnelingClient"; -import { OpenTunnelRequest, OpenTunnelResponse } from "../models/models_0"; +import type { OpenTunnelRequest, OpenTunnelResponse } from "../models/models_0"; import { OpenTunnel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsecuretunneling/src/commands/RotateTunnelAccessTokenCommand.ts b/clients/client-iotsecuretunneling/src/commands/RotateTunnelAccessTokenCommand.ts index 64e24874bc9ea..73f27786d8453 100644 --- a/clients/client-iotsecuretunneling/src/commands/RotateTunnelAccessTokenCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/RotateTunnelAccessTokenCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTSecureTunnelingClient"; -import { RotateTunnelAccessTokenRequest, RotateTunnelAccessTokenResponse } from "../models/models_0"; +import type { RotateTunnelAccessTokenRequest, RotateTunnelAccessTokenResponse } from "../models/models_0"; import { RotateTunnelAccessToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsecuretunneling/src/commands/TagResourceCommand.ts b/clients/client-iotsecuretunneling/src/commands/TagResourceCommand.ts index 6c19aff61e22b..b5233f50dbfa1 100644 --- a/clients/client-iotsecuretunneling/src/commands/TagResourceCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTSecureTunnelingClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsecuretunneling/src/commands/UntagResourceCommand.ts b/clients/client-iotsecuretunneling/src/commands/UntagResourceCommand.ts index 23a632efca19d..65f120aff0bd0 100644 --- a/clients/client-iotsecuretunneling/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotsecuretunneling/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { IoTSecureTunnelingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../IoTSecureTunnelingClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsecuretunneling/src/endpoint/EndpointParameters.ts b/clients/client-iotsecuretunneling/src/endpoint/EndpointParameters.ts index ea0dab326cfe5..1cd0cb5895367 100644 --- a/clients/client-iotsecuretunneling/src/endpoint/EndpointParameters.ts +++ b/clients/client-iotsecuretunneling/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iotsecuretunneling/src/endpoint/endpointResolver.ts b/clients/client-iotsecuretunneling/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iotsecuretunneling/src/endpoint/endpointResolver.ts +++ b/clients/client-iotsecuretunneling/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iotsecuretunneling/src/extensionConfiguration.ts b/clients/client-iotsecuretunneling/src/extensionConfiguration.ts index 2c04f562f5224..467e8c4c8fed4 100644 --- a/clients/client-iotsecuretunneling/src/extensionConfiguration.ts +++ b/clients/client-iotsecuretunneling/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iotsecuretunneling/src/models/IoTSecureTunnelingServiceException.ts b/clients/client-iotsecuretunneling/src/models/IoTSecureTunnelingServiceException.ts index cd7d27380a7af..e323b6b828989 100644 --- a/clients/client-iotsecuretunneling/src/models/IoTSecureTunnelingServiceException.ts +++ b/clients/client-iotsecuretunneling/src/models/IoTSecureTunnelingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iotsecuretunneling/src/models/errors.ts b/clients/client-iotsecuretunneling/src/models/errors.ts index 47a28f1c98c71..1293cebc89c67 100644 --- a/clients/client-iotsecuretunneling/src/models/errors.ts +++ b/clients/client-iotsecuretunneling/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTSecureTunnelingServiceException as __BaseException } from "./IoTSecureTunnelingServiceException"; diff --git a/clients/client-iotsecuretunneling/src/pagination/Interfaces.ts b/clients/client-iotsecuretunneling/src/pagination/Interfaces.ts index 02a31a0fa1382..eddca303c48af 100644 --- a/clients/client-iotsecuretunneling/src/pagination/Interfaces.ts +++ b/clients/client-iotsecuretunneling/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTSecureTunnelingClient } from "../IoTSecureTunnelingClient"; diff --git a/clients/client-iotsecuretunneling/src/pagination/ListTunnelsPaginator.ts b/clients/client-iotsecuretunneling/src/pagination/ListTunnelsPaginator.ts index 5b6304cc83f46..d506c2040c63d 100644 --- a/clients/client-iotsecuretunneling/src/pagination/ListTunnelsPaginator.ts +++ b/clients/client-iotsecuretunneling/src/pagination/ListTunnelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTunnelsCommand, ListTunnelsCommandInput, ListTunnelsCommandOutput } from "../commands/ListTunnelsCommand"; import { IoTSecureTunnelingClient } from "../IoTSecureTunnelingClient"; diff --git a/clients/client-iotsecuretunneling/src/runtimeConfig.browser.ts b/clients/client-iotsecuretunneling/src/runtimeConfig.browser.ts index 100aa061a9b0a..cebd159df2846 100644 --- a/clients/client-iotsecuretunneling/src/runtimeConfig.browser.ts +++ b/clients/client-iotsecuretunneling/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTSecureTunnelingClientConfig } from "./IoTSecureTunnelingClient"; + +import type { IoTSecureTunnelingClientConfig } from "./IoTSecureTunnelingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iotsecuretunneling/src/runtimeConfig.native.ts b/clients/client-iotsecuretunneling/src/runtimeConfig.native.ts index 9c8cabb57c35e..77cb3877914ed 100644 --- a/clients/client-iotsecuretunneling/src/runtimeConfig.native.ts +++ b/clients/client-iotsecuretunneling/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTSecureTunnelingClientConfig } from "./IoTSecureTunnelingClient"; +import type { IoTSecureTunnelingClientConfig } from "./IoTSecureTunnelingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iotsecuretunneling/src/runtimeConfig.shared.ts b/clients/client-iotsecuretunneling/src/runtimeConfig.shared.ts index 889a932fcacac..c5a6183569802 100644 --- a/clients/client-iotsecuretunneling/src/runtimeConfig.shared.ts +++ b/clients/client-iotsecuretunneling/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTSecureTunnelingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTSecureTunnelingClientConfig } from "./IoTSecureTunnelingClient"; +import type { IoTSecureTunnelingClientConfig } from "./IoTSecureTunnelingClient"; /** * @internal diff --git a/clients/client-iotsecuretunneling/src/runtimeConfig.ts b/clients/client-iotsecuretunneling/src/runtimeConfig.ts index 1f6e932e25c42..787d5ece1f07f 100644 --- a/clients/client-iotsecuretunneling/src/runtimeConfig.ts +++ b/clients/client-iotsecuretunneling/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTSecureTunnelingClientConfig } from "./IoTSecureTunnelingClient"; + +import type { IoTSecureTunnelingClientConfig } from "./IoTSecureTunnelingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iotsecuretunneling/src/runtimeExtensions.ts b/clients/client-iotsecuretunneling/src/runtimeExtensions.ts index c509d2b89058b..5c0ca9eadb5cb 100644 --- a/clients/client-iotsecuretunneling/src/runtimeExtensions.ts +++ b/clients/client-iotsecuretunneling/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTSecureTunnelingExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTSecureTunnelingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iotsecuretunneling/src/schemas/schemas_0.ts b/clients/client-iotsecuretunneling/src/schemas/schemas_0.ts index 1a7efb76c78a8..b6bf95aaaf53a 100644 --- a/clients/client-iotsecuretunneling/src/schemas/schemas_0.ts +++ b/clients/client-iotsecuretunneling/src/schemas/schemas_0.ts @@ -71,7 +71,7 @@ const n0 = "com.amazonaws.iotsecuretunneling"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-iotsitewise/package.json b/clients/client-iotsitewise/package.json index 9f9ba38d8f8ed..3d71d6002426b 100644 --- a/clients/client-iotsitewise/package.json +++ b/clients/client-iotsitewise/package.json @@ -32,7 +32,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -40,21 +40,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iotsitewise/src/IoTSiteWise.ts b/clients/client-iotsitewise/src/IoTSiteWise.ts index 38a8ec4f38c80..0aaaab58af172 100644 --- a/clients/client-iotsitewise/src/IoTSiteWise.ts +++ b/clients/client-iotsitewise/src/IoTSiteWise.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateAssetsCommand, @@ -494,7 +494,7 @@ import { UpdateProjectCommandInput, UpdateProjectCommandOutput, } from "./commands/UpdateProjectCommand"; -import { IoTSiteWiseClient, IoTSiteWiseClientConfig } from "./IoTSiteWiseClient"; +import { IoTSiteWiseClient } from "./IoTSiteWiseClient"; const commands = { AssociateAssetsCommand, diff --git a/clients/client-iotsitewise/src/IoTSiteWiseClient.ts b/clients/client-iotsitewise/src/IoTSiteWiseClient.ts index 43e25b29b1785..7173262ddc1c3 100644 --- a/clients/client-iotsitewise/src/IoTSiteWiseClient.ts +++ b/clients/client-iotsitewise/src/IoTSiteWiseClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTSiteWiseHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateAssetsCommandInput, AssociateAssetsCommandOutput } from "./commands/AssociateAssetsCommand"; @@ -318,7 +327,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iotsitewise/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iotsitewise/src/auth/httpAuthExtensionConfiguration.ts index c34c3b42cd4b8..809625f222af9 100644 --- a/clients/client-iotsitewise/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iotsitewise/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTSiteWiseHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTSiteWiseHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iotsitewise/src/auth/httpAuthSchemeProvider.ts b/clients/client-iotsitewise/src/auth/httpAuthSchemeProvider.ts index 27de9423cc91f..5f77e648a1964 100644 --- a/clients/client-iotsitewise/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iotsitewise/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTSiteWiseClientConfig, IoTSiteWiseClientResolvedConfig } from "../IoTSiteWiseClient"; +import { type IoTSiteWiseClientResolvedConfig, IoTSiteWiseClientConfig } from "../IoTSiteWiseClient"; /** * @internal diff --git a/clients/client-iotsitewise/src/commands/AssociateAssetsCommand.ts b/clients/client-iotsitewise/src/commands/AssociateAssetsCommand.ts index 7e403e50d2e2e..9e8bffd53c715 100644 --- a/clients/client-iotsitewise/src/commands/AssociateAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/AssociateAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { AssociateAssetsRequest } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { AssociateAssetsRequest } from "../models/models_0"; import { AssociateAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/AssociateTimeSeriesToAssetPropertyCommand.ts b/clients/client-iotsitewise/src/commands/AssociateTimeSeriesToAssetPropertyCommand.ts index 48b51596b61f4..6fb178a2ba611 100644 --- a/clients/client-iotsitewise/src/commands/AssociateTimeSeriesToAssetPropertyCommand.ts +++ b/clients/client-iotsitewise/src/commands/AssociateTimeSeriesToAssetPropertyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { AssociateTimeSeriesToAssetPropertyRequest } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { AssociateTimeSeriesToAssetPropertyRequest } from "../models/models_0"; import { AssociateTimeSeriesToAssetProperty } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/BatchAssociateProjectAssetsCommand.ts b/clients/client-iotsitewise/src/commands/BatchAssociateProjectAssetsCommand.ts index ab03f185ee52a..03382eb69549b 100644 --- a/clients/client-iotsitewise/src/commands/BatchAssociateProjectAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchAssociateProjectAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { BatchAssociateProjectAssetsRequest, BatchAssociateProjectAssetsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { BatchAssociateProjectAssetsRequest, BatchAssociateProjectAssetsResponse } from "../models/models_0"; import { BatchAssociateProjectAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/BatchDisassociateProjectAssetsCommand.ts b/clients/client-iotsitewise/src/commands/BatchDisassociateProjectAssetsCommand.ts index 1de87483a4566..ea102bda01e19 100644 --- a/clients/client-iotsitewise/src/commands/BatchDisassociateProjectAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchDisassociateProjectAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { BatchDisassociateProjectAssetsRequest, BatchDisassociateProjectAssetsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { BatchDisassociateProjectAssetsRequest, BatchDisassociateProjectAssetsResponse } from "../models/models_0"; import { BatchDisassociateProjectAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyAggregatesCommand.ts b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyAggregatesCommand.ts index 0099a7e4a28b6..d24896b65e295 100644 --- a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyAggregatesCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyAggregatesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { BatchGetAssetPropertyAggregatesRequest, BatchGetAssetPropertyAggregatesResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { + BatchGetAssetPropertyAggregatesRequest, + BatchGetAssetPropertyAggregatesResponse, +} from "../models/models_0"; import { BatchGetAssetPropertyAggregates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueCommand.ts b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueCommand.ts index aece8640f2967..3526134891c0d 100644 --- a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { BatchGetAssetPropertyValueRequest, BatchGetAssetPropertyValueResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { BatchGetAssetPropertyValueRequest, BatchGetAssetPropertyValueResponse } from "../models/models_0"; import { BatchGetAssetPropertyValue } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueHistoryCommand.ts b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueHistoryCommand.ts index 5e5de0de91c75..4c19e4f6a1a87 100644 --- a/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueHistoryCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchGetAssetPropertyValueHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { BatchGetAssetPropertyValueHistoryRequest, BatchGetAssetPropertyValueHistoryResponse, } from "../models/models_0"; diff --git a/clients/client-iotsitewise/src/commands/BatchPutAssetPropertyValueCommand.ts b/clients/client-iotsitewise/src/commands/BatchPutAssetPropertyValueCommand.ts index f3e08316f7840..e41df324ef093 100644 --- a/clients/client-iotsitewise/src/commands/BatchPutAssetPropertyValueCommand.ts +++ b/clients/client-iotsitewise/src/commands/BatchPutAssetPropertyValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { BatchPutAssetPropertyValueRequest, BatchPutAssetPropertyValueResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { BatchPutAssetPropertyValueRequest, BatchPutAssetPropertyValueResponse } from "../models/models_0"; import { BatchPutAssetPropertyValue } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateAccessPolicyCommand.ts b/clients/client-iotsitewise/src/commands/CreateAccessPolicyCommand.ts index 7b46e61cb7fc1..2cb5ebfa2cafa 100644 --- a/clients/client-iotsitewise/src/commands/CreateAccessPolicyCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateAccessPolicyRequest, CreateAccessPolicyResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateAccessPolicyRequest, CreateAccessPolicyResponse } from "../models/models_0"; import { CreateAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateAssetCommand.ts b/clients/client-iotsitewise/src/commands/CreateAssetCommand.ts index f281f560a1cf2..60d447f5a8f43 100644 --- a/clients/client-iotsitewise/src/commands/CreateAssetCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateAssetRequest, CreateAssetResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateAssetRequest, CreateAssetResponse } from "../models/models_0"; import { CreateAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateAssetModelCommand.ts b/clients/client-iotsitewise/src/commands/CreateAssetModelCommand.ts index 12874d43edb6d..f4d37faea25de 100644 --- a/clients/client-iotsitewise/src/commands/CreateAssetModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateAssetModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateAssetModelRequest, CreateAssetModelResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateAssetModelRequest, CreateAssetModelResponse } from "../models/models_0"; import { CreateAssetModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateAssetModelCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/CreateAssetModelCompositeModelCommand.ts index 0ddd165242373..9cae0f2024d1c 100644 --- a/clients/client-iotsitewise/src/commands/CreateAssetModelCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateAssetModelCompositeModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateAssetModelCompositeModelRequest, CreateAssetModelCompositeModelResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateAssetModelCompositeModelRequest, CreateAssetModelCompositeModelResponse } from "../models/models_0"; import { CreateAssetModelCompositeModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateBulkImportJobCommand.ts b/clients/client-iotsitewise/src/commands/CreateBulkImportJobCommand.ts index 25cf3d76711f0..015eccf7e2e6d 100644 --- a/clients/client-iotsitewise/src/commands/CreateBulkImportJobCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateBulkImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateBulkImportJobRequest, CreateBulkImportJobResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateBulkImportJobRequest, CreateBulkImportJobResponse } from "../models/models_0"; import { CreateBulkImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateComputationModelCommand.ts b/clients/client-iotsitewise/src/commands/CreateComputationModelCommand.ts index b445e8831de69..c5e6910096d1d 100644 --- a/clients/client-iotsitewise/src/commands/CreateComputationModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateComputationModelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateComputationModelResponse } from "../models/models_0"; -import { CreateComputationModelRequest } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateComputationModelResponse } from "../models/models_0"; +import type { CreateComputationModelRequest } from "../models/models_1"; import { CreateComputationModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateDashboardCommand.ts b/clients/client-iotsitewise/src/commands/CreateDashboardCommand.ts index bf2a8f9ab9263..68af85f4e8d4a 100644 --- a/clients/client-iotsitewise/src/commands/CreateDashboardCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateDashboardRequest, CreateDashboardResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateDashboardRequest, CreateDashboardResponse } from "../models/models_0"; import { CreateDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateDatasetCommand.ts b/clients/client-iotsitewise/src/commands/CreateDatasetCommand.ts index bcf66c93d98e9..517f3857decb4 100644 --- a/clients/client-iotsitewise/src/commands/CreateDatasetCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; import { CreateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateGatewayCommand.ts b/clients/client-iotsitewise/src/commands/CreateGatewayCommand.ts index 06d7a449302de..29f86450a6831 100644 --- a/clients/client-iotsitewise/src/commands/CreateGatewayCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateGatewayRequest, CreateGatewayResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateGatewayRequest, CreateGatewayResponse } from "../models/models_0"; import { CreateGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreatePortalCommand.ts b/clients/client-iotsitewise/src/commands/CreatePortalCommand.ts index a767cd6ec68e4..a53a8bbf1d1cd 100644 --- a/clients/client-iotsitewise/src/commands/CreatePortalCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreatePortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreatePortalRequest, CreatePortalResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreatePortalRequest, CreatePortalResponse } from "../models/models_0"; import { CreatePortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/CreateProjectCommand.ts b/clients/client-iotsitewise/src/commands/CreateProjectCommand.ts index 1ecc7c2e3ecdf..9d892797dc69b 100644 --- a/clients/client-iotsitewise/src/commands/CreateProjectCommand.ts +++ b/clients/client-iotsitewise/src/commands/CreateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; import { CreateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteAccessPolicyCommand.ts b/clients/client-iotsitewise/src/commands/DeleteAccessPolicyCommand.ts index 292853ee64ad8..7e7c57d30c0ee 100644 --- a/clients/client-iotsitewise/src/commands/DeleteAccessPolicyCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteAccessPolicyRequest, DeleteAccessPolicyResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteAccessPolicyRequest, DeleteAccessPolicyResponse } from "../models/models_0"; import { DeleteAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteAssetCommand.ts b/clients/client-iotsitewise/src/commands/DeleteAssetCommand.ts index f50e9f4479e5a..03094d64e36dd 100644 --- a/clients/client-iotsitewise/src/commands/DeleteAssetCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteAssetRequest, DeleteAssetResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteAssetRequest, DeleteAssetResponse } from "../models/models_0"; import { DeleteAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteAssetModelCommand.ts b/clients/client-iotsitewise/src/commands/DeleteAssetModelCommand.ts index 690066dc915ee..d74be40d72d34 100644 --- a/clients/client-iotsitewise/src/commands/DeleteAssetModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteAssetModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteAssetModelRequest, DeleteAssetModelResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteAssetModelRequest, DeleteAssetModelResponse } from "../models/models_0"; import { DeleteAssetModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteAssetModelCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/DeleteAssetModelCompositeModelCommand.ts index b1fa13f1b568d..5419c5d3fed7b 100644 --- a/clients/client-iotsitewise/src/commands/DeleteAssetModelCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteAssetModelCompositeModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteAssetModelCompositeModelRequest, DeleteAssetModelCompositeModelResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteAssetModelCompositeModelRequest, DeleteAssetModelCompositeModelResponse } from "../models/models_0"; import { DeleteAssetModelCompositeModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteAssetModelInterfaceRelationshipCommand.ts b/clients/client-iotsitewise/src/commands/DeleteAssetModelInterfaceRelationshipCommand.ts index 9cd57b1ebdc58..2b5b03312b662 100644 --- a/clients/client-iotsitewise/src/commands/DeleteAssetModelInterfaceRelationshipCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteAssetModelInterfaceRelationshipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteAssetModelInterfaceRelationshipRequest, DeleteAssetModelInterfaceRelationshipResponse, } from "../models/models_0"; diff --git a/clients/client-iotsitewise/src/commands/DeleteComputationModelCommand.ts b/clients/client-iotsitewise/src/commands/DeleteComputationModelCommand.ts index f73f150374cf3..aa86560d011e4 100644 --- a/clients/client-iotsitewise/src/commands/DeleteComputationModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteComputationModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteComputationModelRequest, DeleteComputationModelResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteComputationModelRequest, DeleteComputationModelResponse } from "../models/models_0"; import { DeleteComputationModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteDashboardCommand.ts b/clients/client-iotsitewise/src/commands/DeleteDashboardCommand.ts index 9f652c2918e9c..5cb8d81048d07 100644 --- a/clients/client-iotsitewise/src/commands/DeleteDashboardCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteDashboardRequest, DeleteDashboardResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteDashboardRequest, DeleteDashboardResponse } from "../models/models_0"; import { DeleteDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteDatasetCommand.ts b/clients/client-iotsitewise/src/commands/DeleteDatasetCommand.ts index c1706d98a48e5..b47e5a84650b3 100644 --- a/clients/client-iotsitewise/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; import { DeleteDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteGatewayCommand.ts b/clients/client-iotsitewise/src/commands/DeleteGatewayCommand.ts index 45b7e7fa7f6fb..ea0ae79541eb2 100644 --- a/clients/client-iotsitewise/src/commands/DeleteGatewayCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteGatewayRequest } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteGatewayRequest } from "../models/models_0"; import { DeleteGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeletePortalCommand.ts b/clients/client-iotsitewise/src/commands/DeletePortalCommand.ts index 6eca4552149cc..9a1870b06cf63 100644 --- a/clients/client-iotsitewise/src/commands/DeletePortalCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeletePortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeletePortalRequest, DeletePortalResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeletePortalRequest, DeletePortalResponse } from "../models/models_0"; import { DeletePortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteProjectCommand.ts b/clients/client-iotsitewise/src/commands/DeleteProjectCommand.ts index 7633a97d1c378..38414730510ff 100644 --- a/clients/client-iotsitewise/src/commands/DeleteProjectCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; import { DeleteProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DeleteTimeSeriesCommand.ts b/clients/client-iotsitewise/src/commands/DeleteTimeSeriesCommand.ts index bbc6ae766ce3a..4346043aeb222 100644 --- a/clients/client-iotsitewise/src/commands/DeleteTimeSeriesCommand.ts +++ b/clients/client-iotsitewise/src/commands/DeleteTimeSeriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DeleteTimeSeriesRequest } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DeleteTimeSeriesRequest } from "../models/models_0"; import { DeleteTimeSeries } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeAccessPolicyCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAccessPolicyCommand.ts index 7ad4cd57d1680..6de1632411727 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAccessPolicyCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeAccessPolicyRequest, DescribeAccessPolicyResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeAccessPolicyRequest, DescribeAccessPolicyResponse } from "../models/models_0"; import { DescribeAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeActionCommand.ts b/clients/client-iotsitewise/src/commands/DescribeActionCommand.ts index 275a5afc40000..9e35d3e5e1f0f 100644 --- a/clients/client-iotsitewise/src/commands/DescribeActionCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeActionRequest, DescribeActionResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeActionRequest, DescribeActionResponse } from "../models/models_0"; import { DescribeAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetCommand.ts index 6d7ea55cad599..117b23b5e6512 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeAssetRequest, DescribeAssetResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeAssetRequest, DescribeAssetResponse } from "../models/models_0"; import { DescribeAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetCompositeModelCommand.ts index 5bab1e7d3f174..5b02a1777227c 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetCompositeModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeAssetCompositeModelRequest, DescribeAssetCompositeModelResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeAssetCompositeModelRequest, DescribeAssetCompositeModelResponse } from "../models/models_0"; import { DescribeAssetCompositeModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetModelCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetModelCommand.ts index 25c2ddc2d4cd2..d4a2531de5243 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeAssetModelRequest, DescribeAssetModelResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeAssetModelRequest, DescribeAssetModelResponse } from "../models/models_0"; import { DescribeAssetModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetModelCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetModelCompositeModelCommand.ts index 517d08ff7e622..1c858da0023d3 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetModelCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetModelCompositeModelCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeAssetModelCompositeModelRequest, DescribeAssetModelCompositeModelResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { + DescribeAssetModelCompositeModelRequest, + DescribeAssetModelCompositeModelResponse, +} from "../models/models_0"; import { DescribeAssetModelCompositeModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetModelInterfaceRelationshipCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetModelInterfaceRelationshipCommand.ts index c1902e626e3bd..adab72bacaac1 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetModelInterfaceRelationshipCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetModelInterfaceRelationshipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeAssetModelInterfaceRelationshipRequest, DescribeAssetModelInterfaceRelationshipResponse, } from "../models/models_0"; diff --git a/clients/client-iotsitewise/src/commands/DescribeAssetPropertyCommand.ts b/clients/client-iotsitewise/src/commands/DescribeAssetPropertyCommand.ts index b6e76b39775fa..eaeadf0be4be3 100644 --- a/clients/client-iotsitewise/src/commands/DescribeAssetPropertyCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeAssetPropertyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeAssetPropertyRequest, DescribeAssetPropertyResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeAssetPropertyRequest, DescribeAssetPropertyResponse } from "../models/models_0"; import { DescribeAssetProperty } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeBulkImportJobCommand.ts b/clients/client-iotsitewise/src/commands/DescribeBulkImportJobCommand.ts index c481e4c673d80..413279c5914dd 100644 --- a/clients/client-iotsitewise/src/commands/DescribeBulkImportJobCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeBulkImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeBulkImportJobRequest, DescribeBulkImportJobResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeBulkImportJobRequest, DescribeBulkImportJobResponse } from "../models/models_0"; import { DescribeBulkImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeComputationModelCommand.ts b/clients/client-iotsitewise/src/commands/DescribeComputationModelCommand.ts index abfa011a59262..193149166762e 100644 --- a/clients/client-iotsitewise/src/commands/DescribeComputationModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeComputationModelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeComputationModelRequest } from "../models/models_0"; -import { DescribeComputationModelResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeComputationModelRequest } from "../models/models_0"; +import type { DescribeComputationModelResponse } from "../models/models_1"; import { DescribeComputationModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeComputationModelExecutionSummaryCommand.ts b/clients/client-iotsitewise/src/commands/DescribeComputationModelExecutionSummaryCommand.ts index 20e878cccd911..efe85ea5f295e 100644 --- a/clients/client-iotsitewise/src/commands/DescribeComputationModelExecutionSummaryCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeComputationModelExecutionSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeComputationModelExecutionSummaryRequest, DescribeComputationModelExecutionSummaryResponse, } from "../models/models_0"; diff --git a/clients/client-iotsitewise/src/commands/DescribeDashboardCommand.ts b/clients/client-iotsitewise/src/commands/DescribeDashboardCommand.ts index 4f52c3504ddab..0e6043aac0404 100644 --- a/clients/client-iotsitewise/src/commands/DescribeDashboardCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeDashboardRequest, DescribeDashboardResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeDashboardRequest, DescribeDashboardResponse } from "../models/models_0"; import { DescribeDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeDatasetCommand.ts b/clients/client-iotsitewise/src/commands/DescribeDatasetCommand.ts index b57424ce1e554..b580171464023 100644 --- a/clients/client-iotsitewise/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; import { DescribeDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeDefaultEncryptionConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/DescribeDefaultEncryptionConfigurationCommand.ts index da4d8359efc93..cef2a8bbafa70 100644 --- a/clients/client-iotsitewise/src/commands/DescribeDefaultEncryptionConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeDefaultEncryptionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeDefaultEncryptionConfigurationRequest, DescribeDefaultEncryptionConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-iotsitewise/src/commands/DescribeExecutionCommand.ts b/clients/client-iotsitewise/src/commands/DescribeExecutionCommand.ts index e31e6b6eacfa5..e62a9f731577a 100644 --- a/clients/client-iotsitewise/src/commands/DescribeExecutionCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeExecutionRequest, DescribeExecutionResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeExecutionRequest, DescribeExecutionResponse } from "../models/models_0"; import { DescribeExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeGatewayCapabilityConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/DescribeGatewayCapabilityConfigurationCommand.ts index 7fab79a2d1096..91642caed4854 100644 --- a/clients/client-iotsitewise/src/commands/DescribeGatewayCapabilityConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeGatewayCapabilityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeGatewayCapabilityConfigurationRequest, DescribeGatewayCapabilityConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-iotsitewise/src/commands/DescribeGatewayCommand.ts b/clients/client-iotsitewise/src/commands/DescribeGatewayCommand.ts index 92d1108539748..7b0c8fb12236b 100644 --- a/clients/client-iotsitewise/src/commands/DescribeGatewayCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeGatewayRequest, DescribeGatewayResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeGatewayRequest, DescribeGatewayResponse } from "../models/models_0"; import { DescribeGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeLoggingOptionsCommand.ts b/clients/client-iotsitewise/src/commands/DescribeLoggingOptionsCommand.ts index 9fede10af4d69..b42697da8cddf 100644 --- a/clients/client-iotsitewise/src/commands/DescribeLoggingOptionsCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeLoggingOptionsRequest, DescribeLoggingOptionsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeLoggingOptionsRequest, DescribeLoggingOptionsResponse } from "../models/models_0"; import { DescribeLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribePortalCommand.ts b/clients/client-iotsitewise/src/commands/DescribePortalCommand.ts index f500f408d9b71..8c641263771c4 100644 --- a/clients/client-iotsitewise/src/commands/DescribePortalCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribePortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribePortalRequest, DescribePortalResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribePortalRequest, DescribePortalResponse } from "../models/models_0"; import { DescribePortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeProjectCommand.ts b/clients/client-iotsitewise/src/commands/DescribeProjectCommand.ts index 83f7b5ba71ea0..6c24410ceca52 100644 --- a/clients/client-iotsitewise/src/commands/DescribeProjectCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeProjectRequest, DescribeProjectResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeProjectRequest, DescribeProjectResponse } from "../models/models_0"; import { DescribeProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeStorageConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/DescribeStorageConfigurationCommand.ts index 8cec6f1a10add..da6114d333a3e 100644 --- a/clients/client-iotsitewise/src/commands/DescribeStorageConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeStorageConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeStorageConfigurationRequest, DescribeStorageConfigurationResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeStorageConfigurationRequest, DescribeStorageConfigurationResponse } from "../models/models_0"; import { DescribeStorageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DescribeTimeSeriesCommand.ts b/clients/client-iotsitewise/src/commands/DescribeTimeSeriesCommand.ts index 07d712191df1c..fd5493e907dd7 100644 --- a/clients/client-iotsitewise/src/commands/DescribeTimeSeriesCommand.ts +++ b/clients/client-iotsitewise/src/commands/DescribeTimeSeriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DescribeTimeSeriesRequest, DescribeTimeSeriesResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DescribeTimeSeriesRequest, DescribeTimeSeriesResponse } from "../models/models_0"; import { DescribeTimeSeries } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DisassociateAssetsCommand.ts b/clients/client-iotsitewise/src/commands/DisassociateAssetsCommand.ts index 429baeb882fdf..dbba055e0271e 100644 --- a/clients/client-iotsitewise/src/commands/DisassociateAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/DisassociateAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DisassociateAssetsRequest } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DisassociateAssetsRequest } from "../models/models_0"; import { DisassociateAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/DisassociateTimeSeriesFromAssetPropertyCommand.ts b/clients/client-iotsitewise/src/commands/DisassociateTimeSeriesFromAssetPropertyCommand.ts index 49c2176467d56..8caeb9ae5c9ab 100644 --- a/clients/client-iotsitewise/src/commands/DisassociateTimeSeriesFromAssetPropertyCommand.ts +++ b/clients/client-iotsitewise/src/commands/DisassociateTimeSeriesFromAssetPropertyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { DisassociateTimeSeriesFromAssetPropertyRequest } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { DisassociateTimeSeriesFromAssetPropertyRequest } from "../models/models_0"; import { DisassociateTimeSeriesFromAssetProperty } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ExecuteActionCommand.ts b/clients/client-iotsitewise/src/commands/ExecuteActionCommand.ts index 19e816dfd2c48..6b98ec8bb608b 100644 --- a/clients/client-iotsitewise/src/commands/ExecuteActionCommand.ts +++ b/clients/client-iotsitewise/src/commands/ExecuteActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ExecuteActionRequest, ExecuteActionResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ExecuteActionRequest, ExecuteActionResponse } from "../models/models_0"; import { ExecuteAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ExecuteQueryCommand.ts b/clients/client-iotsitewise/src/commands/ExecuteQueryCommand.ts index 5ff6303986fbd..908a611662615 100644 --- a/clients/client-iotsitewise/src/commands/ExecuteQueryCommand.ts +++ b/clients/client-iotsitewise/src/commands/ExecuteQueryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ExecuteQueryRequest } from "../models/models_0"; -import { ExecuteQueryResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ExecuteQueryRequest } from "../models/models_0"; +import type { ExecuteQueryResponse } from "../models/models_1"; import { ExecuteQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/GetAssetPropertyAggregatesCommand.ts b/clients/client-iotsitewise/src/commands/GetAssetPropertyAggregatesCommand.ts index 057ef1614860b..e0016957f5ae2 100644 --- a/clients/client-iotsitewise/src/commands/GetAssetPropertyAggregatesCommand.ts +++ b/clients/client-iotsitewise/src/commands/GetAssetPropertyAggregatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { GetAssetPropertyAggregatesRequest, GetAssetPropertyAggregatesResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { GetAssetPropertyAggregatesRequest, GetAssetPropertyAggregatesResponse } from "../models/models_0"; import { GetAssetPropertyAggregates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/GetAssetPropertyValueCommand.ts b/clients/client-iotsitewise/src/commands/GetAssetPropertyValueCommand.ts index 041e0d5c9135d..9b6a4905a7b11 100644 --- a/clients/client-iotsitewise/src/commands/GetAssetPropertyValueCommand.ts +++ b/clients/client-iotsitewise/src/commands/GetAssetPropertyValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { GetAssetPropertyValueRequest, GetAssetPropertyValueResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { GetAssetPropertyValueRequest, GetAssetPropertyValueResponse } from "../models/models_0"; import { GetAssetPropertyValue } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/GetAssetPropertyValueHistoryCommand.ts b/clients/client-iotsitewise/src/commands/GetAssetPropertyValueHistoryCommand.ts index 7c906ef8ad6e4..0328d3d5192dc 100644 --- a/clients/client-iotsitewise/src/commands/GetAssetPropertyValueHistoryCommand.ts +++ b/clients/client-iotsitewise/src/commands/GetAssetPropertyValueHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { GetAssetPropertyValueHistoryRequest, GetAssetPropertyValueHistoryResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { GetAssetPropertyValueHistoryRequest, GetAssetPropertyValueHistoryResponse } from "../models/models_0"; import { GetAssetPropertyValueHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/GetInterpolatedAssetPropertyValuesCommand.ts b/clients/client-iotsitewise/src/commands/GetInterpolatedAssetPropertyValuesCommand.ts index af178272c15d2..6effdf140c271 100644 --- a/clients/client-iotsitewise/src/commands/GetInterpolatedAssetPropertyValuesCommand.ts +++ b/clients/client-iotsitewise/src/commands/GetInterpolatedAssetPropertyValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { GetInterpolatedAssetPropertyValuesRequest, GetInterpolatedAssetPropertyValuesResponse, } from "../models/models_0"; diff --git a/clients/client-iotsitewise/src/commands/InvokeAssistantCommand.ts b/clients/client-iotsitewise/src/commands/InvokeAssistantCommand.ts index a4f35ec7b3e40..ef9f38a58aad5 100644 --- a/clients/client-iotsitewise/src/commands/InvokeAssistantCommand.ts +++ b/clients/client-iotsitewise/src/commands/InvokeAssistantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { InvokeAssistantRequest, InvokeAssistantResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { InvokeAssistantRequest, InvokeAssistantResponse } from "../models/models_0"; import { InvokeAssistant } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListAccessPoliciesCommand.ts b/clients/client-iotsitewise/src/commands/ListAccessPoliciesCommand.ts index ed1b34789087a..81e4e10945328 100644 --- a/clients/client-iotsitewise/src/commands/ListAccessPoliciesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAccessPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListAccessPoliciesRequest, ListAccessPoliciesResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListAccessPoliciesRequest, ListAccessPoliciesResponse } from "../models/models_0"; import { ListAccessPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListActionsCommand.ts b/clients/client-iotsitewise/src/commands/ListActionsCommand.ts index 2721ddee137b3..b0db9cc890d4b 100644 --- a/clients/client-iotsitewise/src/commands/ListActionsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListActionsRequest, ListActionsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListActionsRequest, ListActionsResponse } from "../models/models_0"; import { ListActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListAssetModelCompositeModelsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetModelCompositeModelsCommand.ts index 7fc1d73aa6bb8..6fd4e630ed353 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetModelCompositeModelsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetModelCompositeModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListAssetModelCompositeModelsRequest, ListAssetModelCompositeModelsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListAssetModelCompositeModelsRequest, ListAssetModelCompositeModelsResponse } from "../models/models_0"; import { ListAssetModelCompositeModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListAssetModelPropertiesCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetModelPropertiesCommand.ts index ac103935eef30..ab191e2d6d04e 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetModelPropertiesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetModelPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListAssetModelPropertiesRequest, ListAssetModelPropertiesResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListAssetModelPropertiesRequest, ListAssetModelPropertiesResponse } from "../models/models_0"; import { ListAssetModelProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListAssetModelsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetModelsCommand.ts index 8f4b20a17faf0..bc7a2a45ee416 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetModelsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListAssetModelsRequest, ListAssetModelsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListAssetModelsRequest, ListAssetModelsResponse } from "../models/models_0"; import { ListAssetModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListAssetPropertiesCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetPropertiesCommand.ts index c27b2088fbc5f..b6d5b3586a96a 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetPropertiesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListAssetPropertiesRequest, ListAssetPropertiesResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListAssetPropertiesRequest, ListAssetPropertiesResponse } from "../models/models_0"; import { ListAssetProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListAssetRelationshipsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetRelationshipsCommand.ts index eb3653447608a..0fddc90d6c4f9 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetRelationshipsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetRelationshipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListAssetRelationshipsRequest, ListAssetRelationshipsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListAssetRelationshipsRequest, ListAssetRelationshipsResponse } from "../models/models_0"; import { ListAssetRelationships } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListAssetsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssetsCommand.ts index 2262ce56299a4..8c0c231b4a6cb 100644 --- a/clients/client-iotsitewise/src/commands/ListAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListAssetsRequest, ListAssetsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListAssetsRequest, ListAssetsResponse } from "../models/models_0"; import { ListAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListAssociatedAssetsCommand.ts b/clients/client-iotsitewise/src/commands/ListAssociatedAssetsCommand.ts index 41178b823765d..162b9e4ddc769 100644 --- a/clients/client-iotsitewise/src/commands/ListAssociatedAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListAssociatedAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListAssociatedAssetsRequest, ListAssociatedAssetsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListAssociatedAssetsRequest, ListAssociatedAssetsResponse } from "../models/models_0"; import { ListAssociatedAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListBulkImportJobsCommand.ts b/clients/client-iotsitewise/src/commands/ListBulkImportJobsCommand.ts index 25462e6a67e8a..249936be734b2 100644 --- a/clients/client-iotsitewise/src/commands/ListBulkImportJobsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListBulkImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListBulkImportJobsRequest, ListBulkImportJobsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListBulkImportJobsRequest, ListBulkImportJobsResponse } from "../models/models_0"; import { ListBulkImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListCompositionRelationshipsCommand.ts b/clients/client-iotsitewise/src/commands/ListCompositionRelationshipsCommand.ts index 91759f49f08d0..6ca488b8c98b8 100644 --- a/clients/client-iotsitewise/src/commands/ListCompositionRelationshipsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListCompositionRelationshipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListCompositionRelationshipsRequest, ListCompositionRelationshipsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListCompositionRelationshipsRequest, ListCompositionRelationshipsResponse } from "../models/models_0"; import { ListCompositionRelationships } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListComputationModelDataBindingUsagesCommand.ts b/clients/client-iotsitewise/src/commands/ListComputationModelDataBindingUsagesCommand.ts index 98ff5888abb89..3a443be657f4e 100644 --- a/clients/client-iotsitewise/src/commands/ListComputationModelDataBindingUsagesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListComputationModelDataBindingUsagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListComputationModelDataBindingUsagesRequest, ListComputationModelDataBindingUsagesResponse, } from "../models/models_0"; diff --git a/clients/client-iotsitewise/src/commands/ListComputationModelResolveToResourcesCommand.ts b/clients/client-iotsitewise/src/commands/ListComputationModelResolveToResourcesCommand.ts index 4c2fcc458d56f..fbad9b22c58fb 100644 --- a/clients/client-iotsitewise/src/commands/ListComputationModelResolveToResourcesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListComputationModelResolveToResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListComputationModelResolveToResourcesRequest, ListComputationModelResolveToResourcesResponse, } from "../models/models_0"; diff --git a/clients/client-iotsitewise/src/commands/ListComputationModelsCommand.ts b/clients/client-iotsitewise/src/commands/ListComputationModelsCommand.ts index 4c89390a245e3..53b9efa999b56 100644 --- a/clients/client-iotsitewise/src/commands/ListComputationModelsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListComputationModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListComputationModelsRequest, ListComputationModelsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListComputationModelsRequest, ListComputationModelsResponse } from "../models/models_0"; import { ListComputationModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListDashboardsCommand.ts b/clients/client-iotsitewise/src/commands/ListDashboardsCommand.ts index 5db6968a22cf9..e10c963199326 100644 --- a/clients/client-iotsitewise/src/commands/ListDashboardsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListDashboardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_0"; import { ListDashboards } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListDatasetsCommand.ts b/clients/client-iotsitewise/src/commands/ListDatasetsCommand.ts index c4e12e4fa40b6..25f40aafcd054 100644 --- a/clients/client-iotsitewise/src/commands/ListDatasetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListDatasetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; import { ListDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListExecutionsCommand.ts b/clients/client-iotsitewise/src/commands/ListExecutionsCommand.ts index 9d05b6f15ff9d..5b072e8044c18 100644 --- a/clients/client-iotsitewise/src/commands/ListExecutionsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0"; import { ListExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListGatewaysCommand.ts b/clients/client-iotsitewise/src/commands/ListGatewaysCommand.ts index 773caf6a713cf..25298828e518e 100644 --- a/clients/client-iotsitewise/src/commands/ListGatewaysCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListGatewaysRequest, ListGatewaysResponse } from "../models/models_0"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListGatewaysRequest, ListGatewaysResponse } from "../models/models_0"; import { ListGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListInterfaceRelationshipsCommand.ts b/clients/client-iotsitewise/src/commands/ListInterfaceRelationshipsCommand.ts index 662bb195951a0..fbc35495e94b9 100644 --- a/clients/client-iotsitewise/src/commands/ListInterfaceRelationshipsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListInterfaceRelationshipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListInterfaceRelationshipsRequest, ListInterfaceRelationshipsResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListInterfaceRelationshipsRequest, ListInterfaceRelationshipsResponse } from "../models/models_1"; import { ListInterfaceRelationships } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListPortalsCommand.ts b/clients/client-iotsitewise/src/commands/ListPortalsCommand.ts index cdf391779a69b..4855d917b5f4e 100644 --- a/clients/client-iotsitewise/src/commands/ListPortalsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListPortalsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListPortalsRequest, ListPortalsResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListPortalsRequest, ListPortalsResponse } from "../models/models_1"; import { ListPortals } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListProjectAssetsCommand.ts b/clients/client-iotsitewise/src/commands/ListProjectAssetsCommand.ts index 829852ad50a55..1fcbc98e88f68 100644 --- a/clients/client-iotsitewise/src/commands/ListProjectAssetsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListProjectAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListProjectAssetsRequest, ListProjectAssetsResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListProjectAssetsRequest, ListProjectAssetsResponse } from "../models/models_1"; import { ListProjectAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListProjectsCommand.ts b/clients/client-iotsitewise/src/commands/ListProjectsCommand.ts index 439e5352b6fa8..6a689d97ecde5 100644 --- a/clients/client-iotsitewise/src/commands/ListProjectsCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListProjectsRequest, ListProjectsResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListProjectsRequest, ListProjectsResponse } from "../models/models_1"; import { ListProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotsitewise/src/commands/ListTagsForResourceCommand.ts index e6d05d457ee50..7b03a6086629a 100644 --- a/clients/client-iotsitewise/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/ListTimeSeriesCommand.ts b/clients/client-iotsitewise/src/commands/ListTimeSeriesCommand.ts index 394f7d5e22cca..384e9015cce1b 100644 --- a/clients/client-iotsitewise/src/commands/ListTimeSeriesCommand.ts +++ b/clients/client-iotsitewise/src/commands/ListTimeSeriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { ListTimeSeriesRequest, ListTimeSeriesResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { ListTimeSeriesRequest, ListTimeSeriesResponse } from "../models/models_1"; import { ListTimeSeries } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/PutAssetModelInterfaceRelationshipCommand.ts b/clients/client-iotsitewise/src/commands/PutAssetModelInterfaceRelationshipCommand.ts index 9e4e6912a989b..f5ba86846858b 100644 --- a/clients/client-iotsitewise/src/commands/PutAssetModelInterfaceRelationshipCommand.ts +++ b/clients/client-iotsitewise/src/commands/PutAssetModelInterfaceRelationshipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { PutAssetModelInterfaceRelationshipRequest, PutAssetModelInterfaceRelationshipResponse, } from "../models/models_1"; diff --git a/clients/client-iotsitewise/src/commands/PutDefaultEncryptionConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/PutDefaultEncryptionConfigurationCommand.ts index 5af3388ca7192..71b5f8beffa2e 100644 --- a/clients/client-iotsitewise/src/commands/PutDefaultEncryptionConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/PutDefaultEncryptionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { PutDefaultEncryptionConfigurationRequest, PutDefaultEncryptionConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-iotsitewise/src/commands/PutLoggingOptionsCommand.ts b/clients/client-iotsitewise/src/commands/PutLoggingOptionsCommand.ts index bc6a7a1aa5009..7cac03b3dd68f 100644 --- a/clients/client-iotsitewise/src/commands/PutLoggingOptionsCommand.ts +++ b/clients/client-iotsitewise/src/commands/PutLoggingOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { PutLoggingOptionsRequest, PutLoggingOptionsResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { PutLoggingOptionsRequest, PutLoggingOptionsResponse } from "../models/models_1"; import { PutLoggingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/PutStorageConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/PutStorageConfigurationCommand.ts index be10d294c5afd..71df296bfce8a 100644 --- a/clients/client-iotsitewise/src/commands/PutStorageConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/PutStorageConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { PutStorageConfigurationRequest, PutStorageConfigurationResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { PutStorageConfigurationRequest, PutStorageConfigurationResponse } from "../models/models_1"; import { PutStorageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/TagResourceCommand.ts b/clients/client-iotsitewise/src/commands/TagResourceCommand.ts index 0b37b8eb72fe1..0591bb48d96d6 100644 --- a/clients/client-iotsitewise/src/commands/TagResourceCommand.ts +++ b/clients/client-iotsitewise/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UntagResourceCommand.ts b/clients/client-iotsitewise/src/commands/UntagResourceCommand.ts index 30584fdbbc43a..ec4c048e717ed 100644 --- a/clients/client-iotsitewise/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotsitewise/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateAccessPolicyCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAccessPolicyCommand.ts index 16616c1d98060..2ea196d345ea2 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAccessPolicyCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateAccessPolicyRequest, UpdateAccessPolicyResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateAccessPolicyRequest, UpdateAccessPolicyResponse } from "../models/models_1"; import { UpdateAccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateAssetCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAssetCommand.ts index ad72629012578..29c9531efc02b 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAssetCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAssetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateAssetRequest, UpdateAssetResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateAssetRequest, UpdateAssetResponse } from "../models/models_1"; import { UpdateAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateAssetModelCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAssetModelCommand.ts index 1b8703a4c7184..c79a6618dbaff 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAssetModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAssetModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateAssetModelRequest, UpdateAssetModelResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateAssetModelRequest, UpdateAssetModelResponse } from "../models/models_1"; import { UpdateAssetModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateAssetModelCompositeModelCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAssetModelCompositeModelCommand.ts index aa8646f20db3d..c2a8afd208d72 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAssetModelCompositeModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAssetModelCompositeModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateAssetModelCompositeModelRequest, UpdateAssetModelCompositeModelResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateAssetModelCompositeModelRequest, UpdateAssetModelCompositeModelResponse } from "../models/models_1"; import { UpdateAssetModelCompositeModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateAssetPropertyCommand.ts b/clients/client-iotsitewise/src/commands/UpdateAssetPropertyCommand.ts index 189b391abed87..a9e59f6885b6b 100644 --- a/clients/client-iotsitewise/src/commands/UpdateAssetPropertyCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateAssetPropertyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateAssetPropertyRequest } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateAssetPropertyRequest } from "../models/models_1"; import { UpdateAssetProperty } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateComputationModelCommand.ts b/clients/client-iotsitewise/src/commands/UpdateComputationModelCommand.ts index e1e4650521df0..f415ecca5a24b 100644 --- a/clients/client-iotsitewise/src/commands/UpdateComputationModelCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateComputationModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateComputationModelRequest, UpdateComputationModelResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateComputationModelRequest, UpdateComputationModelResponse } from "../models/models_1"; import { UpdateComputationModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateDashboardCommand.ts b/clients/client-iotsitewise/src/commands/UpdateDashboardCommand.ts index 2cca2a6df2043..a546af7f85019 100644 --- a/clients/client-iotsitewise/src/commands/UpdateDashboardCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateDashboardRequest, UpdateDashboardResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateDashboardRequest, UpdateDashboardResponse } from "../models/models_1"; import { UpdateDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateDatasetCommand.ts b/clients/client-iotsitewise/src/commands/UpdateDatasetCommand.ts index 10a5cc79be32f..284a99e81dece 100644 --- a/clients/client-iotsitewise/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_1"; import { UpdateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateGatewayCapabilityConfigurationCommand.ts b/clients/client-iotsitewise/src/commands/UpdateGatewayCapabilityConfigurationCommand.ts index 87e44688db9cd..6ca015a4d1716 100644 --- a/clients/client-iotsitewise/src/commands/UpdateGatewayCapabilityConfigurationCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateGatewayCapabilityConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateGatewayCapabilityConfigurationRequest, UpdateGatewayCapabilityConfigurationResponse, } from "../models/models_1"; diff --git a/clients/client-iotsitewise/src/commands/UpdateGatewayCommand.ts b/clients/client-iotsitewise/src/commands/UpdateGatewayCommand.ts index ee8ba8d531390..4b03343075751 100644 --- a/clients/client-iotsitewise/src/commands/UpdateGatewayCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateGatewayRequest } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateGatewayRequest } from "../models/models_1"; import { UpdateGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdatePortalCommand.ts b/clients/client-iotsitewise/src/commands/UpdatePortalCommand.ts index ceb278e4af47a..9ebaef93aaf6a 100644 --- a/clients/client-iotsitewise/src/commands/UpdatePortalCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdatePortalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_1"; import { UpdatePortal } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/commands/UpdateProjectCommand.ts b/clients/client-iotsitewise/src/commands/UpdateProjectCommand.ts index c7c8f9f608edb..7a9678170b7bf 100644 --- a/clients/client-iotsitewise/src/commands/UpdateProjectCommand.ts +++ b/clients/client-iotsitewise/src/commands/UpdateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; -import { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_1"; +import type { IoTSiteWiseClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTSiteWiseClient"; +import type { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_1"; import { UpdateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotsitewise/src/endpoint/EndpointParameters.ts b/clients/client-iotsitewise/src/endpoint/EndpointParameters.ts index 3ee98b8b23667..1dbfc4bd8ab85 100644 --- a/clients/client-iotsitewise/src/endpoint/EndpointParameters.ts +++ b/clients/client-iotsitewise/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iotsitewise/src/endpoint/endpointResolver.ts b/clients/client-iotsitewise/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iotsitewise/src/endpoint/endpointResolver.ts +++ b/clients/client-iotsitewise/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iotsitewise/src/extensionConfiguration.ts b/clients/client-iotsitewise/src/extensionConfiguration.ts index ef6d7ae9135c8..c2014db57afdc 100644 --- a/clients/client-iotsitewise/src/extensionConfiguration.ts +++ b/clients/client-iotsitewise/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iotsitewise/src/models/IoTSiteWiseServiceException.ts b/clients/client-iotsitewise/src/models/IoTSiteWiseServiceException.ts index 51b115a4f0ccf..ca087614f9876 100644 --- a/clients/client-iotsitewise/src/models/IoTSiteWiseServiceException.ts +++ b/clients/client-iotsitewise/src/models/IoTSiteWiseServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iotsitewise/src/models/errors.ts b/clients/client-iotsitewise/src/models/errors.ts index fae20e546c9c2..8ac46da6c1b42 100644 --- a/clients/client-iotsitewise/src/models/errors.ts +++ b/clients/client-iotsitewise/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTSiteWiseServiceException as __BaseException } from "./IoTSiteWiseServiceException"; diff --git a/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyAggregatesPaginator.ts b/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyAggregatesPaginator.ts index 5dd7662484b5b..fd9cfa7853dfa 100644 --- a/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyAggregatesPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyAggregatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchGetAssetPropertyAggregatesCommand, diff --git a/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyValueHistoryPaginator.ts b/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyValueHistoryPaginator.ts index c156cb80420d3..f328ecf68a33c 100644 --- a/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyValueHistoryPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyValueHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchGetAssetPropertyValueHistoryCommand, diff --git a/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyValuePaginator.ts b/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyValuePaginator.ts index caf359bde060c..77a1d9819596b 100644 --- a/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyValuePaginator.ts +++ b/clients/client-iotsitewise/src/pagination/BatchGetAssetPropertyValuePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchGetAssetPropertyValueCommand, diff --git a/clients/client-iotsitewise/src/pagination/ExecuteQueryPaginator.ts b/clients/client-iotsitewise/src/pagination/ExecuteQueryPaginator.ts index f3f0ab8eb93cc..4c0e24759ec69 100644 --- a/clients/client-iotsitewise/src/pagination/ExecuteQueryPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ExecuteQueryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ExecuteQueryCommand, diff --git a/clients/client-iotsitewise/src/pagination/GetAssetPropertyAggregatesPaginator.ts b/clients/client-iotsitewise/src/pagination/GetAssetPropertyAggregatesPaginator.ts index 853afcc0fc587..bc02a45eea48f 100644 --- a/clients/client-iotsitewise/src/pagination/GetAssetPropertyAggregatesPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/GetAssetPropertyAggregatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAssetPropertyAggregatesCommand, diff --git a/clients/client-iotsitewise/src/pagination/GetAssetPropertyValueHistoryPaginator.ts b/clients/client-iotsitewise/src/pagination/GetAssetPropertyValueHistoryPaginator.ts index b65f24a7fb372..5d2b2781af07d 100644 --- a/clients/client-iotsitewise/src/pagination/GetAssetPropertyValueHistoryPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/GetAssetPropertyValueHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAssetPropertyValueHistoryCommand, diff --git a/clients/client-iotsitewise/src/pagination/GetInterpolatedAssetPropertyValuesPaginator.ts b/clients/client-iotsitewise/src/pagination/GetInterpolatedAssetPropertyValuesPaginator.ts index 06408d91c9570..14679bc10ab3d 100644 --- a/clients/client-iotsitewise/src/pagination/GetInterpolatedAssetPropertyValuesPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/GetInterpolatedAssetPropertyValuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetInterpolatedAssetPropertyValuesCommand, diff --git a/clients/client-iotsitewise/src/pagination/Interfaces.ts b/clients/client-iotsitewise/src/pagination/Interfaces.ts index b83200c84b852..31888ab7d683e 100644 --- a/clients/client-iotsitewise/src/pagination/Interfaces.ts +++ b/clients/client-iotsitewise/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTSiteWiseClient } from "../IoTSiteWiseClient"; diff --git a/clients/client-iotsitewise/src/pagination/ListAccessPoliciesPaginator.ts b/clients/client-iotsitewise/src/pagination/ListAccessPoliciesPaginator.ts index 689cb820ae8a9..78b24597e0c78 100644 --- a/clients/client-iotsitewise/src/pagination/ListAccessPoliciesPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListAccessPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessPoliciesCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListAssetModelCompositeModelsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListAssetModelCompositeModelsPaginator.ts index 244ace594adaf..7476d63dbfe59 100644 --- a/clients/client-iotsitewise/src/pagination/ListAssetModelCompositeModelsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListAssetModelCompositeModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetModelCompositeModelsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListAssetModelPropertiesPaginator.ts b/clients/client-iotsitewise/src/pagination/ListAssetModelPropertiesPaginator.ts index bbe586f9868fc..e42a0d6cbb436 100644 --- a/clients/client-iotsitewise/src/pagination/ListAssetModelPropertiesPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListAssetModelPropertiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetModelPropertiesCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListAssetModelsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListAssetModelsPaginator.ts index f04bc9758f9dc..0a1b80a9da222 100644 --- a/clients/client-iotsitewise/src/pagination/ListAssetModelsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListAssetModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetModelsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListAssetPropertiesPaginator.ts b/clients/client-iotsitewise/src/pagination/ListAssetPropertiesPaginator.ts index 1f83693c893a3..a09478cb6777d 100644 --- a/clients/client-iotsitewise/src/pagination/ListAssetPropertiesPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListAssetPropertiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetPropertiesCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListAssetRelationshipsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListAssetRelationshipsPaginator.ts index 197c204b42feb..9825f20783224 100644 --- a/clients/client-iotsitewise/src/pagination/ListAssetRelationshipsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListAssetRelationshipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetRelationshipsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListAssetsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListAssetsPaginator.ts index 2ab9c4c87e3b7..b546b717f958d 100644 --- a/clients/client-iotsitewise/src/pagination/ListAssetsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListAssetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetsCommand, ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand"; import { IoTSiteWiseClient } from "../IoTSiteWiseClient"; diff --git a/clients/client-iotsitewise/src/pagination/ListAssociatedAssetsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListAssociatedAssetsPaginator.ts index 3faf36803e673..f17b5f46c8399 100644 --- a/clients/client-iotsitewise/src/pagination/ListAssociatedAssetsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListAssociatedAssetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssociatedAssetsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListBulkImportJobsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListBulkImportJobsPaginator.ts index c6b4fcced22fa..a3abc6cfe2dc9 100644 --- a/clients/client-iotsitewise/src/pagination/ListBulkImportJobsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListBulkImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBulkImportJobsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListCompositionRelationshipsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListCompositionRelationshipsPaginator.ts index d5062fcd831ea..7ed28ac3fba82 100644 --- a/clients/client-iotsitewise/src/pagination/ListCompositionRelationshipsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListCompositionRelationshipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCompositionRelationshipsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListComputationModelDataBindingUsagesPaginator.ts b/clients/client-iotsitewise/src/pagination/ListComputationModelDataBindingUsagesPaginator.ts index 593e0cee39176..19b89368e4a2b 100644 --- a/clients/client-iotsitewise/src/pagination/ListComputationModelDataBindingUsagesPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListComputationModelDataBindingUsagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComputationModelDataBindingUsagesCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListComputationModelResolveToResourcesPaginator.ts b/clients/client-iotsitewise/src/pagination/ListComputationModelResolveToResourcesPaginator.ts index e6fae3312356e..0709675f1e819 100644 --- a/clients/client-iotsitewise/src/pagination/ListComputationModelResolveToResourcesPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListComputationModelResolveToResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComputationModelResolveToResourcesCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListComputationModelsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListComputationModelsPaginator.ts index ec12c6196ae49..8796efd5bac6d 100644 --- a/clients/client-iotsitewise/src/pagination/ListComputationModelsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListComputationModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComputationModelsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListDashboardsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListDashboardsPaginator.ts index 32745d364678f..c3f50fb5894e3 100644 --- a/clients/client-iotsitewise/src/pagination/ListDashboardsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListDashboardsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDashboardsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListDatasetsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListDatasetsPaginator.ts index dd1ad2f23ea8b..384e6f593c422 100644 --- a/clients/client-iotsitewise/src/pagination/ListDatasetsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListExecutionsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListExecutionsPaginator.ts index 2e2a2762fbb4e..94dc49a05db8e 100644 --- a/clients/client-iotsitewise/src/pagination/ListExecutionsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExecutionsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListGatewaysPaginator.ts b/clients/client-iotsitewise/src/pagination/ListGatewaysPaginator.ts index ded4d3a4dee39..80b1ceca2864b 100644 --- a/clients/client-iotsitewise/src/pagination/ListGatewaysPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGatewaysCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListInterfaceRelationshipsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListInterfaceRelationshipsPaginator.ts index 88ef10380927b..ba3dc0de2fd38 100644 --- a/clients/client-iotsitewise/src/pagination/ListInterfaceRelationshipsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListInterfaceRelationshipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInterfaceRelationshipsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListPortalsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListPortalsPaginator.ts index 0050a967e27ad..c362e0824c50a 100644 --- a/clients/client-iotsitewise/src/pagination/ListPortalsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListPortalsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPortalsCommand, ListPortalsCommandInput, ListPortalsCommandOutput } from "../commands/ListPortalsCommand"; import { IoTSiteWiseClient } from "../IoTSiteWiseClient"; diff --git a/clients/client-iotsitewise/src/pagination/ListProjectAssetsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListProjectAssetsPaginator.ts index fca81d02d03a0..95949fbb3056a 100644 --- a/clients/client-iotsitewise/src/pagination/ListProjectAssetsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListProjectAssetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectAssetsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListProjectsPaginator.ts b/clients/client-iotsitewise/src/pagination/ListProjectsPaginator.ts index d20d8e0f8deae..ff0819a55a389 100644 --- a/clients/client-iotsitewise/src/pagination/ListProjectsPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectsCommand, diff --git a/clients/client-iotsitewise/src/pagination/ListTimeSeriesPaginator.ts b/clients/client-iotsitewise/src/pagination/ListTimeSeriesPaginator.ts index 95771d576e2f9..c43d19e65833a 100644 --- a/clients/client-iotsitewise/src/pagination/ListTimeSeriesPaginator.ts +++ b/clients/client-iotsitewise/src/pagination/ListTimeSeriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTimeSeriesCommand, diff --git a/clients/client-iotsitewise/src/runtimeConfig.browser.ts b/clients/client-iotsitewise/src/runtimeConfig.browser.ts index 7f0c25b1c6624..8ab2c7099bb2d 100644 --- a/clients/client-iotsitewise/src/runtimeConfig.browser.ts +++ b/clients/client-iotsitewise/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTSiteWiseClientConfig } from "./IoTSiteWiseClient"; + +import type { IoTSiteWiseClientConfig } from "./IoTSiteWiseClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iotsitewise/src/runtimeConfig.native.ts b/clients/client-iotsitewise/src/runtimeConfig.native.ts index f00150064aa7b..c5b1e04d25609 100644 --- a/clients/client-iotsitewise/src/runtimeConfig.native.ts +++ b/clients/client-iotsitewise/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTSiteWiseClientConfig } from "./IoTSiteWiseClient"; +import type { IoTSiteWiseClientConfig } from "./IoTSiteWiseClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iotsitewise/src/runtimeConfig.shared.ts b/clients/client-iotsitewise/src/runtimeConfig.shared.ts index d88ef42ce95d0..40f9dd7fe5300 100644 --- a/clients/client-iotsitewise/src/runtimeConfig.shared.ts +++ b/clients/client-iotsitewise/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTSiteWiseHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTSiteWiseClientConfig } from "./IoTSiteWiseClient"; +import type { IoTSiteWiseClientConfig } from "./IoTSiteWiseClient"; /** * @internal diff --git a/clients/client-iotsitewise/src/runtimeConfig.ts b/clients/client-iotsitewise/src/runtimeConfig.ts index 8154aa31689d9..b4798bb4cef5d 100644 --- a/clients/client-iotsitewise/src/runtimeConfig.ts +++ b/clients/client-iotsitewise/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTSiteWiseClientConfig } from "./IoTSiteWiseClient"; + +import type { IoTSiteWiseClientConfig } from "./IoTSiteWiseClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iotsitewise/src/runtimeExtensions.ts b/clients/client-iotsitewise/src/runtimeExtensions.ts index bb5c58ea2e866..30b5901e86c3d 100644 --- a/clients/client-iotsitewise/src/runtimeExtensions.ts +++ b/clients/client-iotsitewise/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTSiteWiseExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTSiteWiseExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iotsitewise/src/schemas/schemas_0.ts b/clients/client-iotsitewise/src/schemas/schemas_0.ts index cda707b8d4e59..589b824f5d719 100644 --- a/clients/client-iotsitewise/src/schemas/schemas_0.ts +++ b/clients/client-iotsitewise/src/schemas/schemas_0.ts @@ -965,7 +965,7 @@ const n0 = "com.amazonaws.iotsitewise"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-iotthingsgraph/package.json b/clients/client-iotthingsgraph/package.json index dfdbcfee8f875..268f143597c4b 100644 --- a/clients/client-iotthingsgraph/package.json +++ b/clients/client-iotthingsgraph/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iotthingsgraph/src/IoTThingsGraph.ts b/clients/client-iotthingsgraph/src/IoTThingsGraph.ts index 29236fc280045..e0dac104303c9 100644 --- a/clients/client-iotthingsgraph/src/IoTThingsGraph.ts +++ b/clients/client-iotthingsgraph/src/IoTThingsGraph.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateEntityToThingCommand, @@ -169,7 +169,7 @@ import { UploadEntityDefinitionsCommandInput, UploadEntityDefinitionsCommandOutput, } from "./commands/UploadEntityDefinitionsCommand"; -import { IoTThingsGraphClient, IoTThingsGraphClientConfig } from "./IoTThingsGraphClient"; +import { IoTThingsGraphClient } from "./IoTThingsGraphClient"; const commands = { AssociateEntityToThingCommand, diff --git a/clients/client-iotthingsgraph/src/IoTThingsGraphClient.ts b/clients/client-iotthingsgraph/src/IoTThingsGraphClient.ts index 3a6e18521a13e..4ae7c939197fb 100644 --- a/clients/client-iotthingsgraph/src/IoTThingsGraphClient.ts +++ b/clients/client-iotthingsgraph/src/IoTThingsGraphClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTThingsGraphHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -162,7 +171,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iotthingsgraph/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iotthingsgraph/src/auth/httpAuthExtensionConfiguration.ts index 9618b03970d55..2772227b5327c 100644 --- a/clients/client-iotthingsgraph/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iotthingsgraph/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTThingsGraphHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTThingsGraphHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iotthingsgraph/src/auth/httpAuthSchemeProvider.ts b/clients/client-iotthingsgraph/src/auth/httpAuthSchemeProvider.ts index 630721559177b..ab2a68873dc0f 100644 --- a/clients/client-iotthingsgraph/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iotthingsgraph/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTThingsGraphClientConfig, IoTThingsGraphClientResolvedConfig } from "../IoTThingsGraphClient"; +import { type IoTThingsGraphClientResolvedConfig, IoTThingsGraphClientConfig } from "../IoTThingsGraphClient"; /** * @internal diff --git a/clients/client-iotthingsgraph/src/commands/AssociateEntityToThingCommand.ts b/clients/client-iotthingsgraph/src/commands/AssociateEntityToThingCommand.ts index 1e2a90bc65875..c1c6295f76b21 100644 --- a/clients/client-iotthingsgraph/src/commands/AssociateEntityToThingCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/AssociateEntityToThingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { AssociateEntityToThingRequest, AssociateEntityToThingResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { AssociateEntityToThingRequest, AssociateEntityToThingResponse } from "../models/models_0"; import { AssociateEntityToThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/CreateFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/CreateFlowTemplateCommand.ts index 4d46a4cca622a..fc2faf750c2a7 100644 --- a/clients/client-iotthingsgraph/src/commands/CreateFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/CreateFlowTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { CreateFlowTemplateRequest, CreateFlowTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { CreateFlowTemplateRequest, CreateFlowTemplateResponse } from "../models/models_0"; import { CreateFlowTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/CreateSystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/CreateSystemInstanceCommand.ts index ea0244898cdce..dc1e5ff1f519b 100644 --- a/clients/client-iotthingsgraph/src/commands/CreateSystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/CreateSystemInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { CreateSystemInstanceRequest, CreateSystemInstanceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { CreateSystemInstanceRequest, CreateSystemInstanceResponse } from "../models/models_0"; import { CreateSystemInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/CreateSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/CreateSystemTemplateCommand.ts index 3078b07a6f4b2..09953e347a73c 100644 --- a/clients/client-iotthingsgraph/src/commands/CreateSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/CreateSystemTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { CreateSystemTemplateRequest, CreateSystemTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { CreateSystemTemplateRequest, CreateSystemTemplateResponse } from "../models/models_0"; import { CreateSystemTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/DeleteFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/DeleteFlowTemplateCommand.ts index fa421797bf6f7..48dc96597ab30 100644 --- a/clients/client-iotthingsgraph/src/commands/DeleteFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeleteFlowTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { DeleteFlowTemplateRequest, DeleteFlowTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { DeleteFlowTemplateRequest, DeleteFlowTemplateResponse } from "../models/models_0"; import { DeleteFlowTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/DeleteNamespaceCommand.ts b/clients/client-iotthingsgraph/src/commands/DeleteNamespaceCommand.ts index 1303b736e494e..d2c10cf69b79e 100644 --- a/clients/client-iotthingsgraph/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeleteNamespaceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0"; import { DeleteNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/DeleteSystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/DeleteSystemInstanceCommand.ts index 19469cfbe0ce1..0cff621c2a94f 100644 --- a/clients/client-iotthingsgraph/src/commands/DeleteSystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeleteSystemInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { DeleteSystemInstanceRequest, DeleteSystemInstanceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { DeleteSystemInstanceRequest, DeleteSystemInstanceResponse } from "../models/models_0"; import { DeleteSystemInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/DeleteSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/DeleteSystemTemplateCommand.ts index af7ff41a4dcf9..059c509348419 100644 --- a/clients/client-iotthingsgraph/src/commands/DeleteSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeleteSystemTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { DeleteSystemTemplateRequest, DeleteSystemTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { DeleteSystemTemplateRequest, DeleteSystemTemplateResponse } from "../models/models_0"; import { DeleteSystemTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/DeploySystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/DeploySystemInstanceCommand.ts index f73d9c0cc2adc..181819515e011 100644 --- a/clients/client-iotthingsgraph/src/commands/DeploySystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeploySystemInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { DeploySystemInstanceRequest, DeploySystemInstanceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { DeploySystemInstanceRequest, DeploySystemInstanceResponse } from "../models/models_0"; import { DeploySystemInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/DeprecateFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/DeprecateFlowTemplateCommand.ts index a1a2568d1c339..915007b020b22 100644 --- a/clients/client-iotthingsgraph/src/commands/DeprecateFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeprecateFlowTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { DeprecateFlowTemplateRequest, DeprecateFlowTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { DeprecateFlowTemplateRequest, DeprecateFlowTemplateResponse } from "../models/models_0"; import { DeprecateFlowTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/DeprecateSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/DeprecateSystemTemplateCommand.ts index 3ca23e3ac7a32..927a53a4b06f5 100644 --- a/clients/client-iotthingsgraph/src/commands/DeprecateSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DeprecateSystemTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { DeprecateSystemTemplateRequest, DeprecateSystemTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { DeprecateSystemTemplateRequest, DeprecateSystemTemplateResponse } from "../models/models_0"; import { DeprecateSystemTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/DescribeNamespaceCommand.ts b/clients/client-iotthingsgraph/src/commands/DescribeNamespaceCommand.ts index 8d816484ade7d..be496d234dba5 100644 --- a/clients/client-iotthingsgraph/src/commands/DescribeNamespaceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DescribeNamespaceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { DescribeNamespaceRequest, DescribeNamespaceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { DescribeNamespaceRequest, DescribeNamespaceResponse } from "../models/models_0"; import { DescribeNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/DissociateEntityFromThingCommand.ts b/clients/client-iotthingsgraph/src/commands/DissociateEntityFromThingCommand.ts index 5beee9baa14db..83d44d65292ac 100644 --- a/clients/client-iotthingsgraph/src/commands/DissociateEntityFromThingCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/DissociateEntityFromThingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { DissociateEntityFromThingRequest, DissociateEntityFromThingResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { DissociateEntityFromThingRequest, DissociateEntityFromThingResponse } from "../models/models_0"; import { DissociateEntityFromThing } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/GetEntitiesCommand.ts b/clients/client-iotthingsgraph/src/commands/GetEntitiesCommand.ts index 31dcae4978647..b994fd14eb7ee 100644 --- a/clients/client-iotthingsgraph/src/commands/GetEntitiesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetEntitiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { GetEntitiesRequest, GetEntitiesResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { GetEntitiesRequest, GetEntitiesResponse } from "../models/models_0"; import { GetEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/GetFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/GetFlowTemplateCommand.ts index 620ef6246e813..57ad5449b9216 100644 --- a/clients/client-iotthingsgraph/src/commands/GetFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetFlowTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { GetFlowTemplateRequest, GetFlowTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { GetFlowTemplateRequest, GetFlowTemplateResponse } from "../models/models_0"; import { GetFlowTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/GetFlowTemplateRevisionsCommand.ts b/clients/client-iotthingsgraph/src/commands/GetFlowTemplateRevisionsCommand.ts index 9acc9946154b5..9a0a7b8e3458f 100644 --- a/clients/client-iotthingsgraph/src/commands/GetFlowTemplateRevisionsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetFlowTemplateRevisionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { GetFlowTemplateRevisionsRequest, GetFlowTemplateRevisionsResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { GetFlowTemplateRevisionsRequest, GetFlowTemplateRevisionsResponse } from "../models/models_0"; import { GetFlowTemplateRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/GetNamespaceDeletionStatusCommand.ts b/clients/client-iotthingsgraph/src/commands/GetNamespaceDeletionStatusCommand.ts index 40f68c8b12f5e..ef9665aec94e1 100644 --- a/clients/client-iotthingsgraph/src/commands/GetNamespaceDeletionStatusCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetNamespaceDeletionStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { GetNamespaceDeletionStatusRequest, GetNamespaceDeletionStatusResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { GetNamespaceDeletionStatusRequest, GetNamespaceDeletionStatusResponse } from "../models/models_0"; import { GetNamespaceDeletionStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/GetSystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/GetSystemInstanceCommand.ts index 9ed134690cbb0..7df958315b048 100644 --- a/clients/client-iotthingsgraph/src/commands/GetSystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetSystemInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { GetSystemInstanceRequest, GetSystemInstanceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { GetSystemInstanceRequest, GetSystemInstanceResponse } from "../models/models_0"; import { GetSystemInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/GetSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/GetSystemTemplateCommand.ts index 99941ec739380..fb712227f156e 100644 --- a/clients/client-iotthingsgraph/src/commands/GetSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetSystemTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { GetSystemTemplateRequest, GetSystemTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { GetSystemTemplateRequest, GetSystemTemplateResponse } from "../models/models_0"; import { GetSystemTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/GetSystemTemplateRevisionsCommand.ts b/clients/client-iotthingsgraph/src/commands/GetSystemTemplateRevisionsCommand.ts index 4a57d768a0aea..847a422a87f3a 100644 --- a/clients/client-iotthingsgraph/src/commands/GetSystemTemplateRevisionsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetSystemTemplateRevisionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { GetSystemTemplateRevisionsRequest, GetSystemTemplateRevisionsResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { GetSystemTemplateRevisionsRequest, GetSystemTemplateRevisionsResponse } from "../models/models_0"; import { GetSystemTemplateRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/GetUploadStatusCommand.ts b/clients/client-iotthingsgraph/src/commands/GetUploadStatusCommand.ts index 4d9cc42a4b9c4..d166acccbbc4d 100644 --- a/clients/client-iotthingsgraph/src/commands/GetUploadStatusCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/GetUploadStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { GetUploadStatusRequest, GetUploadStatusResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { GetUploadStatusRequest, GetUploadStatusResponse } from "../models/models_0"; import { GetUploadStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/ListFlowExecutionMessagesCommand.ts b/clients/client-iotthingsgraph/src/commands/ListFlowExecutionMessagesCommand.ts index d16794b3ff843..7d0028f4bbefc 100644 --- a/clients/client-iotthingsgraph/src/commands/ListFlowExecutionMessagesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/ListFlowExecutionMessagesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { ListFlowExecutionMessagesRequest, ListFlowExecutionMessagesResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { ListFlowExecutionMessagesRequest, ListFlowExecutionMessagesResponse } from "../models/models_0"; import { ListFlowExecutionMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/ListTagsForResourceCommand.ts b/clients/client-iotthingsgraph/src/commands/ListTagsForResourceCommand.ts index 89325bd20356a..38e1730b64574 100644 --- a/clients/client-iotthingsgraph/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/SearchEntitiesCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchEntitiesCommand.ts index 0384146ed7818..b52b83fef6067 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchEntitiesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchEntitiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { SearchEntitiesRequest, SearchEntitiesResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { SearchEntitiesRequest, SearchEntitiesResponse } from "../models/models_0"; import { SearchEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/SearchFlowExecutionsCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchFlowExecutionsCommand.ts index b58f0dbc5f567..9878e5c4a930c 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchFlowExecutionsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchFlowExecutionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { SearchFlowExecutionsRequest, SearchFlowExecutionsResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { SearchFlowExecutionsRequest, SearchFlowExecutionsResponse } from "../models/models_0"; import { SearchFlowExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/SearchFlowTemplatesCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchFlowTemplatesCommand.ts index fe694a1d5d244..6eb1347d4e733 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchFlowTemplatesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchFlowTemplatesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { SearchFlowTemplatesRequest, SearchFlowTemplatesResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { SearchFlowTemplatesRequest, SearchFlowTemplatesResponse } from "../models/models_0"; import { SearchFlowTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/SearchSystemInstancesCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchSystemInstancesCommand.ts index be6ab044f73a9..3847881516226 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchSystemInstancesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchSystemInstancesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { SearchSystemInstancesRequest, SearchSystemInstancesResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { SearchSystemInstancesRequest, SearchSystemInstancesResponse } from "../models/models_0"; import { SearchSystemInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/SearchSystemTemplatesCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchSystemTemplatesCommand.ts index 7b1f2bd2fe22a..d49017e8b6afb 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchSystemTemplatesCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchSystemTemplatesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { SearchSystemTemplatesRequest, SearchSystemTemplatesResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { SearchSystemTemplatesRequest, SearchSystemTemplatesResponse } from "../models/models_0"; import { SearchSystemTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/SearchThingsCommand.ts b/clients/client-iotthingsgraph/src/commands/SearchThingsCommand.ts index db6dffa564842..cf24c9df3472c 100644 --- a/clients/client-iotthingsgraph/src/commands/SearchThingsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/SearchThingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { SearchThingsRequest, SearchThingsResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { SearchThingsRequest, SearchThingsResponse } from "../models/models_0"; import { SearchThings } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/TagResourceCommand.ts b/clients/client-iotthingsgraph/src/commands/TagResourceCommand.ts index 65953264a9c57..8e12d8f5af118 100644 --- a/clients/client-iotthingsgraph/src/commands/TagResourceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/UndeploySystemInstanceCommand.ts b/clients/client-iotthingsgraph/src/commands/UndeploySystemInstanceCommand.ts index 71dc2ad35451c..167d8ed329c5b 100644 --- a/clients/client-iotthingsgraph/src/commands/UndeploySystemInstanceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UndeploySystemInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { UndeploySystemInstanceRequest, UndeploySystemInstanceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { UndeploySystemInstanceRequest, UndeploySystemInstanceResponse } from "../models/models_0"; import { UndeploySystemInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/UntagResourceCommand.ts b/clients/client-iotthingsgraph/src/commands/UntagResourceCommand.ts index 0a695270e8a9a..7204d5e027de4 100644 --- a/clients/client-iotthingsgraph/src/commands/UntagResourceCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/UpdateFlowTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/UpdateFlowTemplateCommand.ts index 2adbed7b5d47d..f174489fea95c 100644 --- a/clients/client-iotthingsgraph/src/commands/UpdateFlowTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UpdateFlowTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { UpdateFlowTemplateRequest, UpdateFlowTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { UpdateFlowTemplateRequest, UpdateFlowTemplateResponse } from "../models/models_0"; import { UpdateFlowTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/UpdateSystemTemplateCommand.ts b/clients/client-iotthingsgraph/src/commands/UpdateSystemTemplateCommand.ts index b36da5d14a80a..c625ebe09629f 100644 --- a/clients/client-iotthingsgraph/src/commands/UpdateSystemTemplateCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UpdateSystemTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { UpdateSystemTemplateRequest, UpdateSystemTemplateResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { UpdateSystemTemplateRequest, UpdateSystemTemplateResponse } from "../models/models_0"; import { UpdateSystemTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/commands/UploadEntityDefinitionsCommand.ts b/clients/client-iotthingsgraph/src/commands/UploadEntityDefinitionsCommand.ts index acd4cbc9b9cc6..f5ca47e99972a 100644 --- a/clients/client-iotthingsgraph/src/commands/UploadEntityDefinitionsCommand.ts +++ b/clients/client-iotthingsgraph/src/commands/UploadEntityDefinitionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTThingsGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTThingsGraphClient"; -import { UploadEntityDefinitionsRequest, UploadEntityDefinitionsResponse } from "../models/models_0"; +import type { + IoTThingsGraphClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../IoTThingsGraphClient"; +import type { UploadEntityDefinitionsRequest, UploadEntityDefinitionsResponse } from "../models/models_0"; import { UploadEntityDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-iotthingsgraph/src/endpoint/EndpointParameters.ts b/clients/client-iotthingsgraph/src/endpoint/EndpointParameters.ts index 0e76ddeac7b17..572e132ce255c 100644 --- a/clients/client-iotthingsgraph/src/endpoint/EndpointParameters.ts +++ b/clients/client-iotthingsgraph/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iotthingsgraph/src/endpoint/endpointResolver.ts b/clients/client-iotthingsgraph/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iotthingsgraph/src/endpoint/endpointResolver.ts +++ b/clients/client-iotthingsgraph/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iotthingsgraph/src/extensionConfiguration.ts b/clients/client-iotthingsgraph/src/extensionConfiguration.ts index a440f122efc2f..af4d3390587fb 100644 --- a/clients/client-iotthingsgraph/src/extensionConfiguration.ts +++ b/clients/client-iotthingsgraph/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iotthingsgraph/src/models/IoTThingsGraphServiceException.ts b/clients/client-iotthingsgraph/src/models/IoTThingsGraphServiceException.ts index 1583166de9e6c..0d864ef5babf4 100644 --- a/clients/client-iotthingsgraph/src/models/IoTThingsGraphServiceException.ts +++ b/clients/client-iotthingsgraph/src/models/IoTThingsGraphServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iotthingsgraph/src/models/errors.ts b/clients/client-iotthingsgraph/src/models/errors.ts index d8915f23923a8..7da3474d1317b 100644 --- a/clients/client-iotthingsgraph/src/models/errors.ts +++ b/clients/client-iotthingsgraph/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTThingsGraphServiceException as __BaseException } from "./IoTThingsGraphServiceException"; diff --git a/clients/client-iotthingsgraph/src/pagination/GetFlowTemplateRevisionsPaginator.ts b/clients/client-iotthingsgraph/src/pagination/GetFlowTemplateRevisionsPaginator.ts index b7eddd5c02b4d..a14438a0fdc18 100644 --- a/clients/client-iotthingsgraph/src/pagination/GetFlowTemplateRevisionsPaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/GetFlowTemplateRevisionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetFlowTemplateRevisionsCommand, diff --git a/clients/client-iotthingsgraph/src/pagination/GetSystemTemplateRevisionsPaginator.ts b/clients/client-iotthingsgraph/src/pagination/GetSystemTemplateRevisionsPaginator.ts index 4f6cbc74d9b16..df84ec76dd266 100644 --- a/clients/client-iotthingsgraph/src/pagination/GetSystemTemplateRevisionsPaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/GetSystemTemplateRevisionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSystemTemplateRevisionsCommand, diff --git a/clients/client-iotthingsgraph/src/pagination/Interfaces.ts b/clients/client-iotthingsgraph/src/pagination/Interfaces.ts index b29087a858670..95d007c16a68a 100644 --- a/clients/client-iotthingsgraph/src/pagination/Interfaces.ts +++ b/clients/client-iotthingsgraph/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTThingsGraphClient } from "../IoTThingsGraphClient"; diff --git a/clients/client-iotthingsgraph/src/pagination/ListFlowExecutionMessagesPaginator.ts b/clients/client-iotthingsgraph/src/pagination/ListFlowExecutionMessagesPaginator.ts index 4ebaf332462fa..cf5301a4615ee 100644 --- a/clients/client-iotthingsgraph/src/pagination/ListFlowExecutionMessagesPaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/ListFlowExecutionMessagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFlowExecutionMessagesCommand, diff --git a/clients/client-iotthingsgraph/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-iotthingsgraph/src/pagination/ListTagsForResourcePaginator.ts index 4f0363ba23553..ddc6b0a090d97 100644 --- a/clients/client-iotthingsgraph/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-iotthingsgraph/src/pagination/SearchEntitiesPaginator.ts b/clients/client-iotthingsgraph/src/pagination/SearchEntitiesPaginator.ts index 70ac4aea5f731..0b03c5c9ec349 100644 --- a/clients/client-iotthingsgraph/src/pagination/SearchEntitiesPaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/SearchEntitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchEntitiesCommand, diff --git a/clients/client-iotthingsgraph/src/pagination/SearchFlowExecutionsPaginator.ts b/clients/client-iotthingsgraph/src/pagination/SearchFlowExecutionsPaginator.ts index e45d827ed777e..4b85c9a0b4f7d 100644 --- a/clients/client-iotthingsgraph/src/pagination/SearchFlowExecutionsPaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/SearchFlowExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchFlowExecutionsCommand, diff --git a/clients/client-iotthingsgraph/src/pagination/SearchFlowTemplatesPaginator.ts b/clients/client-iotthingsgraph/src/pagination/SearchFlowTemplatesPaginator.ts index 8f26a56f19b8b..4b5c64839cda9 100644 --- a/clients/client-iotthingsgraph/src/pagination/SearchFlowTemplatesPaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/SearchFlowTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchFlowTemplatesCommand, diff --git a/clients/client-iotthingsgraph/src/pagination/SearchSystemInstancesPaginator.ts b/clients/client-iotthingsgraph/src/pagination/SearchSystemInstancesPaginator.ts index 7aac21c6972cf..fa48b6f7c2a96 100644 --- a/clients/client-iotthingsgraph/src/pagination/SearchSystemInstancesPaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/SearchSystemInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchSystemInstancesCommand, diff --git a/clients/client-iotthingsgraph/src/pagination/SearchSystemTemplatesPaginator.ts b/clients/client-iotthingsgraph/src/pagination/SearchSystemTemplatesPaginator.ts index d80305d6f4cac..02010d4d720d4 100644 --- a/clients/client-iotthingsgraph/src/pagination/SearchSystemTemplatesPaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/SearchSystemTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchSystemTemplatesCommand, diff --git a/clients/client-iotthingsgraph/src/pagination/SearchThingsPaginator.ts b/clients/client-iotthingsgraph/src/pagination/SearchThingsPaginator.ts index ab39afbdf7d70..3a5f6cefc62c8 100644 --- a/clients/client-iotthingsgraph/src/pagination/SearchThingsPaginator.ts +++ b/clients/client-iotthingsgraph/src/pagination/SearchThingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchThingsCommand, diff --git a/clients/client-iotthingsgraph/src/runtimeConfig.browser.ts b/clients/client-iotthingsgraph/src/runtimeConfig.browser.ts index 1df63ac37f881..6976ce801b15b 100644 --- a/clients/client-iotthingsgraph/src/runtimeConfig.browser.ts +++ b/clients/client-iotthingsgraph/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTThingsGraphClientConfig } from "./IoTThingsGraphClient"; + +import type { IoTThingsGraphClientConfig } from "./IoTThingsGraphClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iotthingsgraph/src/runtimeConfig.native.ts b/clients/client-iotthingsgraph/src/runtimeConfig.native.ts index 4e53f6d0fdd4d..534a4a5328046 100644 --- a/clients/client-iotthingsgraph/src/runtimeConfig.native.ts +++ b/clients/client-iotthingsgraph/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTThingsGraphClientConfig } from "./IoTThingsGraphClient"; +import type { IoTThingsGraphClientConfig } from "./IoTThingsGraphClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iotthingsgraph/src/runtimeConfig.shared.ts b/clients/client-iotthingsgraph/src/runtimeConfig.shared.ts index e9932348eef9a..677721b6a310e 100644 --- a/clients/client-iotthingsgraph/src/runtimeConfig.shared.ts +++ b/clients/client-iotthingsgraph/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTThingsGraphHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTThingsGraphClientConfig } from "./IoTThingsGraphClient"; +import type { IoTThingsGraphClientConfig } from "./IoTThingsGraphClient"; /** * @internal diff --git a/clients/client-iotthingsgraph/src/runtimeConfig.ts b/clients/client-iotthingsgraph/src/runtimeConfig.ts index 0941a3daf122a..7c7566cc5bc77 100644 --- a/clients/client-iotthingsgraph/src/runtimeConfig.ts +++ b/clients/client-iotthingsgraph/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTThingsGraphClientConfig } from "./IoTThingsGraphClient"; + +import type { IoTThingsGraphClientConfig } from "./IoTThingsGraphClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iotthingsgraph/src/runtimeExtensions.ts b/clients/client-iotthingsgraph/src/runtimeExtensions.ts index 8e70e6c4549f4..3bf430fa72f3c 100644 --- a/clients/client-iotthingsgraph/src/runtimeExtensions.ts +++ b/clients/client-iotthingsgraph/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTThingsGraphExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTThingsGraphExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iotthingsgraph/src/schemas/schemas_0.ts b/clients/client-iotthingsgraph/src/schemas/schemas_0.ts index 44938cdf97f89..7d1b91ada225d 100644 --- a/clients/client-iotthingsgraph/src/schemas/schemas_0.ts +++ b/clients/client-iotthingsgraph/src/schemas/schemas_0.ts @@ -218,7 +218,7 @@ const n0 = "com.amazonaws.iotthingsgraph"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { InternalFailureException as __InternalFailureException, diff --git a/clients/client-iottwinmaker/package.json b/clients/client-iottwinmaker/package.json index da66918597d78..ae28d685f45b7 100644 --- a/clients/client-iottwinmaker/package.json +++ b/clients/client-iottwinmaker/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-iottwinmaker/src/IoTTwinMaker.ts b/clients/client-iottwinmaker/src/IoTTwinMaker.ts index 0189a7a7cd00e..9b1e4a88ac225 100644 --- a/clients/client-iottwinmaker/src/IoTTwinMaker.ts +++ b/clients/client-iottwinmaker/src/IoTTwinMaker.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchPutPropertyValuesCommand, @@ -170,7 +170,7 @@ import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput, } from "./commands/UpdateWorkspaceCommand"; -import { IoTTwinMakerClient, IoTTwinMakerClientConfig } from "./IoTTwinMakerClient"; +import { IoTTwinMakerClient } from "./IoTTwinMakerClient"; const commands = { BatchPutPropertyValuesCommand, diff --git a/clients/client-iottwinmaker/src/IoTTwinMakerClient.ts b/clients/client-iottwinmaker/src/IoTTwinMakerClient.ts index 1f72820b8ef02..c09163aa8ebdf 100644 --- a/clients/client-iottwinmaker/src/IoTTwinMakerClient.ts +++ b/clients/client-iottwinmaker/src/IoTTwinMakerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIoTTwinMakerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -134,7 +143,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-iottwinmaker/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-iottwinmaker/src/auth/httpAuthExtensionConfiguration.ts index 6240d097b9065..a074f13d0d4c6 100644 --- a/clients/client-iottwinmaker/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-iottwinmaker/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IoTTwinMakerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IoTTwinMakerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-iottwinmaker/src/auth/httpAuthSchemeProvider.ts b/clients/client-iottwinmaker/src/auth/httpAuthSchemeProvider.ts index 279a7ae9bebca..5ed7b99e53dca 100644 --- a/clients/client-iottwinmaker/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-iottwinmaker/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IoTTwinMakerClientConfig, IoTTwinMakerClientResolvedConfig } from "../IoTTwinMakerClient"; +import { type IoTTwinMakerClientResolvedConfig, IoTTwinMakerClientConfig } from "../IoTTwinMakerClient"; /** * @internal diff --git a/clients/client-iottwinmaker/src/commands/BatchPutPropertyValuesCommand.ts b/clients/client-iottwinmaker/src/commands/BatchPutPropertyValuesCommand.ts index d2940494b3653..c9ec3b0cbd2f5 100644 --- a/clients/client-iottwinmaker/src/commands/BatchPutPropertyValuesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/BatchPutPropertyValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { BatchPutPropertyValuesRequest, BatchPutPropertyValuesResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { BatchPutPropertyValuesRequest, BatchPutPropertyValuesResponse } from "../models/models_0"; import { BatchPutPropertyValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/CancelMetadataTransferJobCommand.ts b/clients/client-iottwinmaker/src/commands/CancelMetadataTransferJobCommand.ts index f8e184e695571..171cd7641cc2d 100644 --- a/clients/client-iottwinmaker/src/commands/CancelMetadataTransferJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CancelMetadataTransferJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { CancelMetadataTransferJobRequest, CancelMetadataTransferJobResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { CancelMetadataTransferJobRequest, CancelMetadataTransferJobResponse } from "../models/models_0"; import { CancelMetadataTransferJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/CreateComponentTypeCommand.ts b/clients/client-iottwinmaker/src/commands/CreateComponentTypeCommand.ts index dd0a81878036d..3d3185da2a651 100644 --- a/clients/client-iottwinmaker/src/commands/CreateComponentTypeCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateComponentTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { CreateComponentTypeRequest, CreateComponentTypeResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { CreateComponentTypeRequest, CreateComponentTypeResponse } from "../models/models_0"; import { CreateComponentType } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/CreateEntityCommand.ts b/clients/client-iottwinmaker/src/commands/CreateEntityCommand.ts index d13d1dd0a224f..7b17595d1e543 100644 --- a/clients/client-iottwinmaker/src/commands/CreateEntityCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateEntityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { CreateEntityRequest, CreateEntityResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { CreateEntityRequest, CreateEntityResponse } from "../models/models_0"; import { CreateEntity } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/CreateMetadataTransferJobCommand.ts b/clients/client-iottwinmaker/src/commands/CreateMetadataTransferJobCommand.ts index ebbcf60f61326..ceeaf5bcaad93 100644 --- a/clients/client-iottwinmaker/src/commands/CreateMetadataTransferJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateMetadataTransferJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { CreateMetadataTransferJobRequest, CreateMetadataTransferJobResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { CreateMetadataTransferJobRequest, CreateMetadataTransferJobResponse } from "../models/models_0"; import { CreateMetadataTransferJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/CreateSceneCommand.ts b/clients/client-iottwinmaker/src/commands/CreateSceneCommand.ts index 2eb7f4aa9c2d5..ad8d7f384c6cb 100644 --- a/clients/client-iottwinmaker/src/commands/CreateSceneCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateSceneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { CreateSceneRequest, CreateSceneResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { CreateSceneRequest, CreateSceneResponse } from "../models/models_0"; import { CreateScene } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/CreateSyncJobCommand.ts b/clients/client-iottwinmaker/src/commands/CreateSyncJobCommand.ts index a0d30d6beb0ae..d6a8c527d3dca 100644 --- a/clients/client-iottwinmaker/src/commands/CreateSyncJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateSyncJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { CreateSyncJobRequest, CreateSyncJobResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { CreateSyncJobRequest, CreateSyncJobResponse } from "../models/models_0"; import { CreateSyncJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/CreateWorkspaceCommand.ts b/clients/client-iottwinmaker/src/commands/CreateWorkspaceCommand.ts index 6129ae2e09ea2..0c1cc9bfc3382 100644 --- a/clients/client-iottwinmaker/src/commands/CreateWorkspaceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/CreateWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0"; import { CreateWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/DeleteComponentTypeCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteComponentTypeCommand.ts index 1bdc01482ef0e..a4995041419e5 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteComponentTypeCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteComponentTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { DeleteComponentTypeRequest, DeleteComponentTypeResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { DeleteComponentTypeRequest, DeleteComponentTypeResponse } from "../models/models_0"; import { DeleteComponentType } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/DeleteEntityCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteEntityCommand.ts index d2f057ead3a63..ccd0cebe066cb 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteEntityCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteEntityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { DeleteEntityRequest, DeleteEntityResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { DeleteEntityRequest, DeleteEntityResponse } from "../models/models_0"; import { DeleteEntity } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/DeleteSceneCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteSceneCommand.ts index 752ba1ddc25c9..2179d505a1701 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteSceneCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteSceneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { DeleteSceneRequest, DeleteSceneResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { DeleteSceneRequest, DeleteSceneResponse } from "../models/models_0"; import { DeleteScene } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/DeleteSyncJobCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteSyncJobCommand.ts index 2e1b426eb203d..363542028355d 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteSyncJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteSyncJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { DeleteSyncJobRequest, DeleteSyncJobResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { DeleteSyncJobRequest, DeleteSyncJobResponse } from "../models/models_0"; import { DeleteSyncJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/DeleteWorkspaceCommand.ts b/clients/client-iottwinmaker/src/commands/DeleteWorkspaceCommand.ts index 4df10a5cf5a44..5a66bc8901736 100644 --- a/clients/client-iottwinmaker/src/commands/DeleteWorkspaceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/DeleteWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { DeleteWorkspaceRequest, DeleteWorkspaceResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { DeleteWorkspaceRequest, DeleteWorkspaceResponse } from "../models/models_0"; import { DeleteWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ExecuteQueryCommand.ts b/clients/client-iottwinmaker/src/commands/ExecuteQueryCommand.ts index 1e517949a8a94..bc9b9f3d5df3b 100644 --- a/clients/client-iottwinmaker/src/commands/ExecuteQueryCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ExecuteQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ExecuteQueryRequest, ExecuteQueryResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ExecuteQueryRequest, ExecuteQueryResponse } from "../models/models_0"; import { ExecuteQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/GetComponentTypeCommand.ts b/clients/client-iottwinmaker/src/commands/GetComponentTypeCommand.ts index 1bf9f7691a578..edd24400fdbfe 100644 --- a/clients/client-iottwinmaker/src/commands/GetComponentTypeCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetComponentTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { GetComponentTypeRequest, GetComponentTypeResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { GetComponentTypeRequest, GetComponentTypeResponse } from "../models/models_0"; import { GetComponentType } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/GetEntityCommand.ts b/clients/client-iottwinmaker/src/commands/GetEntityCommand.ts index c3b0a8df98c66..26c8e700eb0b6 100644 --- a/clients/client-iottwinmaker/src/commands/GetEntityCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetEntityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { GetEntityRequest, GetEntityResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { GetEntityRequest, GetEntityResponse } from "../models/models_0"; import { GetEntity } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/GetMetadataTransferJobCommand.ts b/clients/client-iottwinmaker/src/commands/GetMetadataTransferJobCommand.ts index bf01883bb4a18..e4cb004729036 100644 --- a/clients/client-iottwinmaker/src/commands/GetMetadataTransferJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetMetadataTransferJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { GetMetadataTransferJobRequest, GetMetadataTransferJobResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { GetMetadataTransferJobRequest, GetMetadataTransferJobResponse } from "../models/models_0"; import { GetMetadataTransferJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/GetPricingPlanCommand.ts b/clients/client-iottwinmaker/src/commands/GetPricingPlanCommand.ts index dab84a406432b..26da65e7dc1f0 100644 --- a/clients/client-iottwinmaker/src/commands/GetPricingPlanCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetPricingPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { GetPricingPlanRequest, GetPricingPlanResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { GetPricingPlanRequest, GetPricingPlanResponse } from "../models/models_0"; import { GetPricingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/GetPropertyValueCommand.ts b/clients/client-iottwinmaker/src/commands/GetPropertyValueCommand.ts index cd9c0f023f4b6..610c12c34ca80 100644 --- a/clients/client-iottwinmaker/src/commands/GetPropertyValueCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetPropertyValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { GetPropertyValueRequest, GetPropertyValueResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { GetPropertyValueRequest, GetPropertyValueResponse } from "../models/models_0"; import { GetPropertyValue } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/GetPropertyValueHistoryCommand.ts b/clients/client-iottwinmaker/src/commands/GetPropertyValueHistoryCommand.ts index 108eb8e44a71a..890829daec817 100644 --- a/clients/client-iottwinmaker/src/commands/GetPropertyValueHistoryCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetPropertyValueHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { GetPropertyValueHistoryRequest, GetPropertyValueHistoryResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { GetPropertyValueHistoryRequest, GetPropertyValueHistoryResponse } from "../models/models_0"; import { GetPropertyValueHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/GetSceneCommand.ts b/clients/client-iottwinmaker/src/commands/GetSceneCommand.ts index daa02748c7e79..7f1a65b4d1965 100644 --- a/clients/client-iottwinmaker/src/commands/GetSceneCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetSceneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { GetSceneRequest, GetSceneResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { GetSceneRequest, GetSceneResponse } from "../models/models_0"; import { GetScene } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/GetSyncJobCommand.ts b/clients/client-iottwinmaker/src/commands/GetSyncJobCommand.ts index 4a54a768886a9..1dbd4b0ef5b8a 100644 --- a/clients/client-iottwinmaker/src/commands/GetSyncJobCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetSyncJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { GetSyncJobRequest, GetSyncJobResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { GetSyncJobRequest, GetSyncJobResponse } from "../models/models_0"; import { GetSyncJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/GetWorkspaceCommand.ts b/clients/client-iottwinmaker/src/commands/GetWorkspaceCommand.ts index a664be01853df..e3ad272bebe48 100644 --- a/clients/client-iottwinmaker/src/commands/GetWorkspaceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/GetWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { GetWorkspaceRequest, GetWorkspaceResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { GetWorkspaceRequest, GetWorkspaceResponse } from "../models/models_0"; import { GetWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListComponentTypesCommand.ts b/clients/client-iottwinmaker/src/commands/ListComponentTypesCommand.ts index 043056957cdf6..4eecea9fc4579 100644 --- a/clients/client-iottwinmaker/src/commands/ListComponentTypesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListComponentTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListComponentTypesRequest, ListComponentTypesResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListComponentTypesRequest, ListComponentTypesResponse } from "../models/models_0"; import { ListComponentTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListComponentsCommand.ts b/clients/client-iottwinmaker/src/commands/ListComponentsCommand.ts index 314cbd449567f..a593be2cda198 100644 --- a/clients/client-iottwinmaker/src/commands/ListComponentsCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListComponentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListComponentsRequest, ListComponentsResponse } from "../models/models_0"; import { ListComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListEntitiesCommand.ts b/clients/client-iottwinmaker/src/commands/ListEntitiesCommand.ts index 1ed0eaf6f8f5f..4f7cc203bc5f8 100644 --- a/clients/client-iottwinmaker/src/commands/ListEntitiesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListEntitiesRequest, ListEntitiesResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListEntitiesRequest, ListEntitiesResponse } from "../models/models_0"; import { ListEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListMetadataTransferJobsCommand.ts b/clients/client-iottwinmaker/src/commands/ListMetadataTransferJobsCommand.ts index a62982eb46710..7b7e0364ae35a 100644 --- a/clients/client-iottwinmaker/src/commands/ListMetadataTransferJobsCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListMetadataTransferJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListMetadataTransferJobsRequest, ListMetadataTransferJobsResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListMetadataTransferJobsRequest, ListMetadataTransferJobsResponse } from "../models/models_0"; import { ListMetadataTransferJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListPropertiesCommand.ts b/clients/client-iottwinmaker/src/commands/ListPropertiesCommand.ts index 7421210abe679..e3fcb930e0f6c 100644 --- a/clients/client-iottwinmaker/src/commands/ListPropertiesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListPropertiesRequest, ListPropertiesResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListPropertiesRequest, ListPropertiesResponse } from "../models/models_0"; import { ListProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListScenesCommand.ts b/clients/client-iottwinmaker/src/commands/ListScenesCommand.ts index 4228d490e06a4..effb52d133d0d 100644 --- a/clients/client-iottwinmaker/src/commands/ListScenesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListScenesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListScenesRequest, ListScenesResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListScenesRequest, ListScenesResponse } from "../models/models_0"; import { ListScenes } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListSyncJobsCommand.ts b/clients/client-iottwinmaker/src/commands/ListSyncJobsCommand.ts index 796227e5833ed..ffc37905396b3 100644 --- a/clients/client-iottwinmaker/src/commands/ListSyncJobsCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListSyncJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListSyncJobsRequest, ListSyncJobsResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListSyncJobsRequest, ListSyncJobsResponse } from "../models/models_0"; import { ListSyncJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListSyncResourcesCommand.ts b/clients/client-iottwinmaker/src/commands/ListSyncResourcesCommand.ts index 47a205dd822ba..025025a962480 100644 --- a/clients/client-iottwinmaker/src/commands/ListSyncResourcesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListSyncResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListSyncResourcesRequest, ListSyncResourcesResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListSyncResourcesRequest, ListSyncResourcesResponse } from "../models/models_0"; import { ListSyncResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListTagsForResourceCommand.ts b/clients/client-iottwinmaker/src/commands/ListTagsForResourceCommand.ts index 4fae3cdefe1fd..857f3f56cdd7a 100644 --- a/clients/client-iottwinmaker/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/ListWorkspacesCommand.ts b/clients/client-iottwinmaker/src/commands/ListWorkspacesCommand.ts index 783805d9340e9..f7ca9c603db21 100644 --- a/clients/client-iottwinmaker/src/commands/ListWorkspacesCommand.ts +++ b/clients/client-iottwinmaker/src/commands/ListWorkspacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_0"; import { ListWorkspaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/TagResourceCommand.ts b/clients/client-iottwinmaker/src/commands/TagResourceCommand.ts index 0cb64213a99f1..10197353ab2ed 100644 --- a/clients/client-iottwinmaker/src/commands/TagResourceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/UntagResourceCommand.ts b/clients/client-iottwinmaker/src/commands/UntagResourceCommand.ts index 98ae9f4b460c4..11965b06132bd 100644 --- a/clients/client-iottwinmaker/src/commands/UntagResourceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/UpdateComponentTypeCommand.ts b/clients/client-iottwinmaker/src/commands/UpdateComponentTypeCommand.ts index abd2736d74bb9..c26a8e6bc5af4 100644 --- a/clients/client-iottwinmaker/src/commands/UpdateComponentTypeCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdateComponentTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { UpdateComponentTypeRequest, UpdateComponentTypeResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { UpdateComponentTypeRequest, UpdateComponentTypeResponse } from "../models/models_0"; import { UpdateComponentType } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/UpdateEntityCommand.ts b/clients/client-iottwinmaker/src/commands/UpdateEntityCommand.ts index e0345326d23f3..caab0a5b33e05 100644 --- a/clients/client-iottwinmaker/src/commands/UpdateEntityCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdateEntityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { UpdateEntityRequest, UpdateEntityResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { UpdateEntityRequest, UpdateEntityResponse } from "../models/models_0"; import { UpdateEntity } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/UpdatePricingPlanCommand.ts b/clients/client-iottwinmaker/src/commands/UpdatePricingPlanCommand.ts index b96914df13f85..520078426410b 100644 --- a/clients/client-iottwinmaker/src/commands/UpdatePricingPlanCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdatePricingPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { UpdatePricingPlanRequest, UpdatePricingPlanResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { UpdatePricingPlanRequest, UpdatePricingPlanResponse } from "../models/models_0"; import { UpdatePricingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/UpdateSceneCommand.ts b/clients/client-iottwinmaker/src/commands/UpdateSceneCommand.ts index 4425f537def6e..21d011db25ce9 100644 --- a/clients/client-iottwinmaker/src/commands/UpdateSceneCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdateSceneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { UpdateSceneRequest, UpdateSceneResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { UpdateSceneRequest, UpdateSceneResponse } from "../models/models_0"; import { UpdateScene } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/commands/UpdateWorkspaceCommand.ts b/clients/client-iottwinmaker/src/commands/UpdateWorkspaceCommand.ts index df87ec35d8acd..b8fbec8fbfd37 100644 --- a/clients/client-iottwinmaker/src/commands/UpdateWorkspaceCommand.ts +++ b/clients/client-iottwinmaker/src/commands/UpdateWorkspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; -import { UpdateWorkspaceRequest, UpdateWorkspaceResponse } from "../models/models_0"; +import type { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient"; +import type { UpdateWorkspaceRequest, UpdateWorkspaceResponse } from "../models/models_0"; import { UpdateWorkspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-iottwinmaker/src/endpoint/EndpointParameters.ts b/clients/client-iottwinmaker/src/endpoint/EndpointParameters.ts index 7e91db3ba3c85..d284357ccacbd 100644 --- a/clients/client-iottwinmaker/src/endpoint/EndpointParameters.ts +++ b/clients/client-iottwinmaker/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-iottwinmaker/src/endpoint/endpointResolver.ts b/clients/client-iottwinmaker/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-iottwinmaker/src/endpoint/endpointResolver.ts +++ b/clients/client-iottwinmaker/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-iottwinmaker/src/extensionConfiguration.ts b/clients/client-iottwinmaker/src/extensionConfiguration.ts index 7284c7b05c79f..ba0526c224a0a 100644 --- a/clients/client-iottwinmaker/src/extensionConfiguration.ts +++ b/clients/client-iottwinmaker/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-iottwinmaker/src/models/IoTTwinMakerServiceException.ts b/clients/client-iottwinmaker/src/models/IoTTwinMakerServiceException.ts index d775b18a15704..754e08aaa28b6 100644 --- a/clients/client-iottwinmaker/src/models/IoTTwinMakerServiceException.ts +++ b/clients/client-iottwinmaker/src/models/IoTTwinMakerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-iottwinmaker/src/models/errors.ts b/clients/client-iottwinmaker/src/models/errors.ts index 464b9652bddfc..29d834e7f33a7 100644 --- a/clients/client-iottwinmaker/src/models/errors.ts +++ b/clients/client-iottwinmaker/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException"; diff --git a/clients/client-iottwinmaker/src/pagination/ExecuteQueryPaginator.ts b/clients/client-iottwinmaker/src/pagination/ExecuteQueryPaginator.ts index f4ee3989feb7d..d86e3d922d1fb 100644 --- a/clients/client-iottwinmaker/src/pagination/ExecuteQueryPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ExecuteQueryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ExecuteQueryCommand, diff --git a/clients/client-iottwinmaker/src/pagination/GetPropertyValueHistoryPaginator.ts b/clients/client-iottwinmaker/src/pagination/GetPropertyValueHistoryPaginator.ts index d7d7caa6b43a8..43637a11d3a59 100644 --- a/clients/client-iottwinmaker/src/pagination/GetPropertyValueHistoryPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/GetPropertyValueHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetPropertyValueHistoryCommand, diff --git a/clients/client-iottwinmaker/src/pagination/GetPropertyValuePaginator.ts b/clients/client-iottwinmaker/src/pagination/GetPropertyValuePaginator.ts index f1c2b08305b93..787c6d181b743 100644 --- a/clients/client-iottwinmaker/src/pagination/GetPropertyValuePaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/GetPropertyValuePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetPropertyValueCommand, diff --git a/clients/client-iottwinmaker/src/pagination/Interfaces.ts b/clients/client-iottwinmaker/src/pagination/Interfaces.ts index 76983eb65b188..6f4b33c652746 100644 --- a/clients/client-iottwinmaker/src/pagination/Interfaces.ts +++ b/clients/client-iottwinmaker/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IoTTwinMakerClient } from "../IoTTwinMakerClient"; diff --git a/clients/client-iottwinmaker/src/pagination/ListComponentTypesPaginator.ts b/clients/client-iottwinmaker/src/pagination/ListComponentTypesPaginator.ts index aa895afe57f39..61f971b25f144 100644 --- a/clients/client-iottwinmaker/src/pagination/ListComponentTypesPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ListComponentTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentTypesCommand, diff --git a/clients/client-iottwinmaker/src/pagination/ListComponentsPaginator.ts b/clients/client-iottwinmaker/src/pagination/ListComponentsPaginator.ts index f7a2f1edf2e0e..3fed0f20a3564 100644 --- a/clients/client-iottwinmaker/src/pagination/ListComponentsPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ListComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentsCommand, diff --git a/clients/client-iottwinmaker/src/pagination/ListEntitiesPaginator.ts b/clients/client-iottwinmaker/src/pagination/ListEntitiesPaginator.ts index cd893938a279b..e28b955d8bf3d 100644 --- a/clients/client-iottwinmaker/src/pagination/ListEntitiesPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ListEntitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntitiesCommand, diff --git a/clients/client-iottwinmaker/src/pagination/ListMetadataTransferJobsPaginator.ts b/clients/client-iottwinmaker/src/pagination/ListMetadataTransferJobsPaginator.ts index db20027f4c388..6b4dc888eef8b 100644 --- a/clients/client-iottwinmaker/src/pagination/ListMetadataTransferJobsPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ListMetadataTransferJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMetadataTransferJobsCommand, diff --git a/clients/client-iottwinmaker/src/pagination/ListPropertiesPaginator.ts b/clients/client-iottwinmaker/src/pagination/ListPropertiesPaginator.ts index 5f0829aede87f..479e423499ceb 100644 --- a/clients/client-iottwinmaker/src/pagination/ListPropertiesPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ListPropertiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPropertiesCommand, diff --git a/clients/client-iottwinmaker/src/pagination/ListScenesPaginator.ts b/clients/client-iottwinmaker/src/pagination/ListScenesPaginator.ts index 48203081559d7..a9f3ff60cf949 100644 --- a/clients/client-iottwinmaker/src/pagination/ListScenesPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ListScenesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListScenesCommand, ListScenesCommandInput, ListScenesCommandOutput } from "../commands/ListScenesCommand"; import { IoTTwinMakerClient } from "../IoTTwinMakerClient"; diff --git a/clients/client-iottwinmaker/src/pagination/ListSyncJobsPaginator.ts b/clients/client-iottwinmaker/src/pagination/ListSyncJobsPaginator.ts index 84e135de7913b..63cd764848a9a 100644 --- a/clients/client-iottwinmaker/src/pagination/ListSyncJobsPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ListSyncJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSyncJobsCommand, diff --git a/clients/client-iottwinmaker/src/pagination/ListSyncResourcesPaginator.ts b/clients/client-iottwinmaker/src/pagination/ListSyncResourcesPaginator.ts index e4f385515771f..120219e734989 100644 --- a/clients/client-iottwinmaker/src/pagination/ListSyncResourcesPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ListSyncResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSyncResourcesCommand, diff --git a/clients/client-iottwinmaker/src/pagination/ListWorkspacesPaginator.ts b/clients/client-iottwinmaker/src/pagination/ListWorkspacesPaginator.ts index 2a56532c461be..0347014888882 100644 --- a/clients/client-iottwinmaker/src/pagination/ListWorkspacesPaginator.ts +++ b/clients/client-iottwinmaker/src/pagination/ListWorkspacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkspacesCommand, diff --git a/clients/client-iottwinmaker/src/runtimeConfig.browser.ts b/clients/client-iottwinmaker/src/runtimeConfig.browser.ts index 12ef25eaa31f3..1c69f0cd0368c 100644 --- a/clients/client-iottwinmaker/src/runtimeConfig.browser.ts +++ b/clients/client-iottwinmaker/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient"; + +import type { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-iottwinmaker/src/runtimeConfig.native.ts b/clients/client-iottwinmaker/src/runtimeConfig.native.ts index d7140032a81cb..e099b4e35d4cc 100644 --- a/clients/client-iottwinmaker/src/runtimeConfig.native.ts +++ b/clients/client-iottwinmaker/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient"; +import type { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-iottwinmaker/src/runtimeConfig.shared.ts b/clients/client-iottwinmaker/src/runtimeConfig.shared.ts index 8c8e27aa6b3bf..b93e280188547 100644 --- a/clients/client-iottwinmaker/src/runtimeConfig.shared.ts +++ b/clients/client-iottwinmaker/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIoTTwinMakerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient"; +import type { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient"; /** * @internal diff --git a/clients/client-iottwinmaker/src/runtimeConfig.ts b/clients/client-iottwinmaker/src/runtimeConfig.ts index 632e8e68b45d8..b7325190712b4 100644 --- a/clients/client-iottwinmaker/src/runtimeConfig.ts +++ b/clients/client-iottwinmaker/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient"; + +import type { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-iottwinmaker/src/runtimeExtensions.ts b/clients/client-iottwinmaker/src/runtimeExtensions.ts index df6b64f3daa54..2f17964efcfca 100644 --- a/clients/client-iottwinmaker/src/runtimeExtensions.ts +++ b/clients/client-iottwinmaker/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IoTTwinMakerExtensionConfiguration } from "./extensionConfiguration"; +import type { IoTTwinMakerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-iottwinmaker/src/schemas/schemas_0.ts b/clients/client-iottwinmaker/src/schemas/schemas_0.ts index 882a07025912c..cbb1b6e41eaa7 100644 --- a/clients/client-iottwinmaker/src/schemas/schemas_0.ts +++ b/clients/client-iottwinmaker/src/schemas/schemas_0.ts @@ -444,7 +444,7 @@ const n0 = "com.amazonaws.iottwinmaker"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ivs-realtime/package.json b/clients/client-ivs-realtime/package.json index da77a14c45310..6591eaa082775 100644 --- a/clients/client-ivs-realtime/package.json +++ b/clients/client-ivs-realtime/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ivs-realtime/src/IVSRealTime.ts b/clients/client-ivs-realtime/src/IVSRealTime.ts index 5badcf95d1100..530c4d12b7e25 100644 --- a/clients/client-ivs-realtime/src/IVSRealTime.ts +++ b/clients/client-ivs-realtime/src/IVSRealTime.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateEncoderConfigurationCommand, @@ -173,7 +173,7 @@ import { UpdateIngestConfigurationCommandOutput, } from "./commands/UpdateIngestConfigurationCommand"; import { UpdateStageCommand, UpdateStageCommandInput, UpdateStageCommandOutput } from "./commands/UpdateStageCommand"; -import { IVSRealTimeClient, IVSRealTimeClientConfig } from "./IVSRealTimeClient"; +import { IVSRealTimeClient } from "./IVSRealTimeClient"; const commands = { CreateEncoderConfigurationCommand, diff --git a/clients/client-ivs-realtime/src/IVSRealTimeClient.ts b/clients/client-ivs-realtime/src/IVSRealTimeClient.ts index fe47a0a605300..3b309af4fe365 100644 --- a/clients/client-ivs-realtime/src/IVSRealTimeClient.ts +++ b/clients/client-ivs-realtime/src/IVSRealTimeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIVSRealTimeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -163,7 +172,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ivs-realtime/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ivs-realtime/src/auth/httpAuthExtensionConfiguration.ts index 95c6413d66dbc..5af87c12fd4ec 100644 --- a/clients/client-ivs-realtime/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ivs-realtime/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IVSRealTimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IVSRealTimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ivs-realtime/src/auth/httpAuthSchemeProvider.ts b/clients/client-ivs-realtime/src/auth/httpAuthSchemeProvider.ts index 045b06788adc9..8b25ad295f72e 100644 --- a/clients/client-ivs-realtime/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ivs-realtime/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IVSRealTimeClientConfig, IVSRealTimeClientResolvedConfig } from "../IVSRealTimeClient"; +import { type IVSRealTimeClientResolvedConfig, IVSRealTimeClientConfig } from "../IVSRealTimeClient"; /** * @internal diff --git a/clients/client-ivs-realtime/src/commands/CreateEncoderConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/CreateEncoderConfigurationCommand.ts index d9af1081156bd..45f90367b440e 100644 --- a/clients/client-ivs-realtime/src/commands/CreateEncoderConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateEncoderConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { CreateEncoderConfigurationRequest, CreateEncoderConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { CreateEncoderConfigurationRequest, CreateEncoderConfigurationResponse } from "../models/models_0"; import { CreateEncoderConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/CreateIngestConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/CreateIngestConfigurationCommand.ts index 0c88ae18640bf..71d6a032ec565 100644 --- a/clients/client-ivs-realtime/src/commands/CreateIngestConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateIngestConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { CreateIngestConfigurationRequest, CreateIngestConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { CreateIngestConfigurationRequest, CreateIngestConfigurationResponse } from "../models/models_0"; import { CreateIngestConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/CreateParticipantTokenCommand.ts b/clients/client-ivs-realtime/src/commands/CreateParticipantTokenCommand.ts index b1b92b94cb998..6b4ab71af988a 100644 --- a/clients/client-ivs-realtime/src/commands/CreateParticipantTokenCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateParticipantTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { CreateParticipantTokenRequest, CreateParticipantTokenResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { CreateParticipantTokenRequest, CreateParticipantTokenResponse } from "../models/models_0"; import { CreateParticipantToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/CreateStageCommand.ts b/clients/client-ivs-realtime/src/commands/CreateStageCommand.ts index e84c731a38ffb..c718895904a52 100644 --- a/clients/client-ivs-realtime/src/commands/CreateStageCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { CreateStageRequest, CreateStageResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { CreateStageRequest, CreateStageResponse } from "../models/models_0"; import { CreateStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/CreateStorageConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/CreateStorageConfigurationCommand.ts index cc04c1d9b3136..fc8b41e152a0d 100644 --- a/clients/client-ivs-realtime/src/commands/CreateStorageConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/CreateStorageConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { CreateStorageConfigurationRequest, CreateStorageConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { CreateStorageConfigurationRequest, CreateStorageConfigurationResponse } from "../models/models_0"; import { CreateStorageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/DeleteEncoderConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/DeleteEncoderConfigurationCommand.ts index d2b1d1e6a8e11..5d3ed5f5e16a4 100644 --- a/clients/client-ivs-realtime/src/commands/DeleteEncoderConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeleteEncoderConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { DeleteEncoderConfigurationRequest, DeleteEncoderConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { DeleteEncoderConfigurationRequest, DeleteEncoderConfigurationResponse } from "../models/models_0"; import { DeleteEncoderConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/DeleteIngestConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/DeleteIngestConfigurationCommand.ts index 85cc7c62c5a1b..7782d5d7954b7 100644 --- a/clients/client-ivs-realtime/src/commands/DeleteIngestConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeleteIngestConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { DeleteIngestConfigurationRequest, DeleteIngestConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { DeleteIngestConfigurationRequest, DeleteIngestConfigurationResponse } from "../models/models_0"; import { DeleteIngestConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/DeletePublicKeyCommand.ts b/clients/client-ivs-realtime/src/commands/DeletePublicKeyCommand.ts index 730df1fab0eb2..bf134e8ef476a 100644 --- a/clients/client-ivs-realtime/src/commands/DeletePublicKeyCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeletePublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { DeletePublicKeyRequest, DeletePublicKeyResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { DeletePublicKeyRequest, DeletePublicKeyResponse } from "../models/models_0"; import { DeletePublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/DeleteStageCommand.ts b/clients/client-ivs-realtime/src/commands/DeleteStageCommand.ts index fe7f6b0501a78..fe1a505ba754e 100644 --- a/clients/client-ivs-realtime/src/commands/DeleteStageCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeleteStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { DeleteStageRequest, DeleteStageResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { DeleteStageRequest, DeleteStageResponse } from "../models/models_0"; import { DeleteStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/DeleteStorageConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/DeleteStorageConfigurationCommand.ts index 1d8f9ef8fd27b..87bb6bf02cfc5 100644 --- a/clients/client-ivs-realtime/src/commands/DeleteStorageConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DeleteStorageConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { DeleteStorageConfigurationRequest, DeleteStorageConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { DeleteStorageConfigurationRequest, DeleteStorageConfigurationResponse } from "../models/models_0"; import { DeleteStorageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/DisconnectParticipantCommand.ts b/clients/client-ivs-realtime/src/commands/DisconnectParticipantCommand.ts index 07e7027b6dc88..003a83bad5f15 100644 --- a/clients/client-ivs-realtime/src/commands/DisconnectParticipantCommand.ts +++ b/clients/client-ivs-realtime/src/commands/DisconnectParticipantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { DisconnectParticipantRequest, DisconnectParticipantResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { DisconnectParticipantRequest, DisconnectParticipantResponse } from "../models/models_0"; import { DisconnectParticipant } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/GetCompositionCommand.ts b/clients/client-ivs-realtime/src/commands/GetCompositionCommand.ts index b50ea7bdb0e34..bd1431aa25a1f 100644 --- a/clients/client-ivs-realtime/src/commands/GetCompositionCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetCompositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { GetCompositionRequest, GetCompositionResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { GetCompositionRequest, GetCompositionResponse } from "../models/models_0"; import { GetComposition } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/GetEncoderConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/GetEncoderConfigurationCommand.ts index 2004863f5f2eb..8b877808c157d 100644 --- a/clients/client-ivs-realtime/src/commands/GetEncoderConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetEncoderConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { GetEncoderConfigurationRequest, GetEncoderConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { GetEncoderConfigurationRequest, GetEncoderConfigurationResponse } from "../models/models_0"; import { GetEncoderConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/GetIngestConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/GetIngestConfigurationCommand.ts index d509f40051030..cc128a6cd4ab6 100644 --- a/clients/client-ivs-realtime/src/commands/GetIngestConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetIngestConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { GetIngestConfigurationRequest, GetIngestConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { GetIngestConfigurationRequest, GetIngestConfigurationResponse } from "../models/models_0"; import { GetIngestConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts b/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts index 4db2e153ca55a..c8ee713c37db6 100644 --- a/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetParticipantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { GetParticipantRequest, GetParticipantResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { GetParticipantRequest, GetParticipantResponse } from "../models/models_0"; import { GetParticipant } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/GetPublicKeyCommand.ts b/clients/client-ivs-realtime/src/commands/GetPublicKeyCommand.ts index ba59a28c547ee..3e7444952e59f 100644 --- a/clients/client-ivs-realtime/src/commands/GetPublicKeyCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetPublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { GetPublicKeyRequest, GetPublicKeyResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { GetPublicKeyRequest, GetPublicKeyResponse } from "../models/models_0"; import { GetPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/GetStageCommand.ts b/clients/client-ivs-realtime/src/commands/GetStageCommand.ts index fd84eaa650706..1626cd0e64d1c 100644 --- a/clients/client-ivs-realtime/src/commands/GetStageCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { GetStageRequest, GetStageResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { GetStageRequest, GetStageResponse } from "../models/models_0"; import { GetStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/GetStageSessionCommand.ts b/clients/client-ivs-realtime/src/commands/GetStageSessionCommand.ts index ac4c84a9f80dc..03d75ad3f9cb8 100644 --- a/clients/client-ivs-realtime/src/commands/GetStageSessionCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetStageSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { GetStageSessionRequest, GetStageSessionResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { GetStageSessionRequest, GetStageSessionResponse } from "../models/models_0"; import { GetStageSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/GetStorageConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/GetStorageConfigurationCommand.ts index e43ded6fbf9c7..c6feed31ff19a 100644 --- a/clients/client-ivs-realtime/src/commands/GetStorageConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/GetStorageConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { GetStorageConfigurationRequest, GetStorageConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { GetStorageConfigurationRequest, GetStorageConfigurationResponse } from "../models/models_0"; import { GetStorageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ImportPublicKeyCommand.ts b/clients/client-ivs-realtime/src/commands/ImportPublicKeyCommand.ts index 75810400b1d5b..70a4c0c443e03 100644 --- a/clients/client-ivs-realtime/src/commands/ImportPublicKeyCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ImportPublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ImportPublicKeyRequest, ImportPublicKeyResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ImportPublicKeyRequest, ImportPublicKeyResponse } from "../models/models_0"; import { ImportPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListCompositionsCommand.ts b/clients/client-ivs-realtime/src/commands/ListCompositionsCommand.ts index 1568ea681f83c..743648f5c1b7a 100644 --- a/clients/client-ivs-realtime/src/commands/ListCompositionsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListCompositionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListCompositionsRequest, ListCompositionsResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListCompositionsRequest, ListCompositionsResponse } from "../models/models_0"; import { ListCompositions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListEncoderConfigurationsCommand.ts b/clients/client-ivs-realtime/src/commands/ListEncoderConfigurationsCommand.ts index ef0f030b1fa6c..b7b43358a8c71 100644 --- a/clients/client-ivs-realtime/src/commands/ListEncoderConfigurationsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListEncoderConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListEncoderConfigurationsRequest, ListEncoderConfigurationsResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListEncoderConfigurationsRequest, ListEncoderConfigurationsResponse } from "../models/models_0"; import { ListEncoderConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListIngestConfigurationsCommand.ts b/clients/client-ivs-realtime/src/commands/ListIngestConfigurationsCommand.ts index a42fc33734ead..d19353a7314e0 100644 --- a/clients/client-ivs-realtime/src/commands/ListIngestConfigurationsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListIngestConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListIngestConfigurationsRequest, ListIngestConfigurationsResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListIngestConfigurationsRequest, ListIngestConfigurationsResponse } from "../models/models_0"; import { ListIngestConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListParticipantEventsCommand.ts b/clients/client-ivs-realtime/src/commands/ListParticipantEventsCommand.ts index 54924ef0894c8..81b71d2330783 100644 --- a/clients/client-ivs-realtime/src/commands/ListParticipantEventsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListParticipantEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListParticipantEventsRequest, ListParticipantEventsResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListParticipantEventsRequest, ListParticipantEventsResponse } from "../models/models_0"; import { ListParticipantEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListParticipantReplicasCommand.ts b/clients/client-ivs-realtime/src/commands/ListParticipantReplicasCommand.ts index 4470696007b61..50ad546722bf5 100644 --- a/clients/client-ivs-realtime/src/commands/ListParticipantReplicasCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListParticipantReplicasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListParticipantReplicasRequest, ListParticipantReplicasResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListParticipantReplicasRequest, ListParticipantReplicasResponse } from "../models/models_0"; import { ListParticipantReplicas } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListParticipantsCommand.ts b/clients/client-ivs-realtime/src/commands/ListParticipantsCommand.ts index 375d45075dc97..59f1ece9fc7e0 100644 --- a/clients/client-ivs-realtime/src/commands/ListParticipantsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListParticipantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListParticipantsRequest, ListParticipantsResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListParticipantsRequest, ListParticipantsResponse } from "../models/models_0"; import { ListParticipants } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListPublicKeysCommand.ts b/clients/client-ivs-realtime/src/commands/ListPublicKeysCommand.ts index 5fcbfc4062faa..b9b914b8501a7 100644 --- a/clients/client-ivs-realtime/src/commands/ListPublicKeysCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListPublicKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListPublicKeysRequest, ListPublicKeysResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListPublicKeysRequest, ListPublicKeysResponse } from "../models/models_0"; import { ListPublicKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListStageSessionsCommand.ts b/clients/client-ivs-realtime/src/commands/ListStageSessionsCommand.ts index c4f6f19e43c08..53182a6a1220b 100644 --- a/clients/client-ivs-realtime/src/commands/ListStageSessionsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListStageSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListStageSessionsRequest, ListStageSessionsResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListStageSessionsRequest, ListStageSessionsResponse } from "../models/models_0"; import { ListStageSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListStagesCommand.ts b/clients/client-ivs-realtime/src/commands/ListStagesCommand.ts index 019bde962d2df..0e8b0935e0e03 100644 --- a/clients/client-ivs-realtime/src/commands/ListStagesCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListStagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListStagesRequest, ListStagesResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListStagesRequest, ListStagesResponse } from "../models/models_0"; import { ListStages } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListStorageConfigurationsCommand.ts b/clients/client-ivs-realtime/src/commands/ListStorageConfigurationsCommand.ts index b9452d55da871..0338a1bd08362 100644 --- a/clients/client-ivs-realtime/src/commands/ListStorageConfigurationsCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListStorageConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListStorageConfigurationsRequest, ListStorageConfigurationsResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListStorageConfigurationsRequest, ListStorageConfigurationsResponse } from "../models/models_0"; import { ListStorageConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/ListTagsForResourceCommand.ts b/clients/client-ivs-realtime/src/commands/ListTagsForResourceCommand.ts index f6526afefd8f6..a4d2c56164c29 100644 --- a/clients/client-ivs-realtime/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ivs-realtime/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/StartCompositionCommand.ts b/clients/client-ivs-realtime/src/commands/StartCompositionCommand.ts index 7b978b00a227a..249889eb57a77 100644 --- a/clients/client-ivs-realtime/src/commands/StartCompositionCommand.ts +++ b/clients/client-ivs-realtime/src/commands/StartCompositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { StartCompositionRequest, StartCompositionResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { StartCompositionRequest, StartCompositionResponse } from "../models/models_0"; import { StartComposition } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/StartParticipantReplicationCommand.ts b/clients/client-ivs-realtime/src/commands/StartParticipantReplicationCommand.ts index c76a538cce760..975327908e20d 100644 --- a/clients/client-ivs-realtime/src/commands/StartParticipantReplicationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/StartParticipantReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { StartParticipantReplicationRequest, StartParticipantReplicationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { StartParticipantReplicationRequest, StartParticipantReplicationResponse } from "../models/models_0"; import { StartParticipantReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/StopCompositionCommand.ts b/clients/client-ivs-realtime/src/commands/StopCompositionCommand.ts index 3a779eb24b7af..b134a5ee7ab90 100644 --- a/clients/client-ivs-realtime/src/commands/StopCompositionCommand.ts +++ b/clients/client-ivs-realtime/src/commands/StopCompositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { StopCompositionRequest, StopCompositionResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { StopCompositionRequest, StopCompositionResponse } from "../models/models_0"; import { StopComposition } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/StopParticipantReplicationCommand.ts b/clients/client-ivs-realtime/src/commands/StopParticipantReplicationCommand.ts index 34386b7b68faf..124db9fb09166 100644 --- a/clients/client-ivs-realtime/src/commands/StopParticipantReplicationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/StopParticipantReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { StopParticipantReplicationRequest, StopParticipantReplicationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { StopParticipantReplicationRequest, StopParticipantReplicationResponse } from "../models/models_0"; import { StopParticipantReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/TagResourceCommand.ts b/clients/client-ivs-realtime/src/commands/TagResourceCommand.ts index 594fbf4b9db33..7fd7164a8f414 100644 --- a/clients/client-ivs-realtime/src/commands/TagResourceCommand.ts +++ b/clients/client-ivs-realtime/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/UntagResourceCommand.ts b/clients/client-ivs-realtime/src/commands/UntagResourceCommand.ts index 7248ed94a85c3..525ae6da28a00 100644 --- a/clients/client-ivs-realtime/src/commands/UntagResourceCommand.ts +++ b/clients/client-ivs-realtime/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/UpdateIngestConfigurationCommand.ts b/clients/client-ivs-realtime/src/commands/UpdateIngestConfigurationCommand.ts index 392ed03a2d75a..717a14669a1a8 100644 --- a/clients/client-ivs-realtime/src/commands/UpdateIngestConfigurationCommand.ts +++ b/clients/client-ivs-realtime/src/commands/UpdateIngestConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { UpdateIngestConfigurationRequest, UpdateIngestConfigurationResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { UpdateIngestConfigurationRequest, UpdateIngestConfigurationResponse } from "../models/models_0"; import { UpdateIngestConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/commands/UpdateStageCommand.ts b/clients/client-ivs-realtime/src/commands/UpdateStageCommand.ts index 01174cc908f55..09bbae358bd6d 100644 --- a/clients/client-ivs-realtime/src/commands/UpdateStageCommand.ts +++ b/clients/client-ivs-realtime/src/commands/UpdateStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; -import { UpdateStageRequest, UpdateStageResponse } from "../models/models_0"; +import type { IVSRealTimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IVSRealTimeClient"; +import type { UpdateStageRequest, UpdateStageResponse } from "../models/models_0"; import { UpdateStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs-realtime/src/endpoint/EndpointParameters.ts b/clients/client-ivs-realtime/src/endpoint/EndpointParameters.ts index a8ca2ae7d6d3f..ca62ab3d9efc0 100644 --- a/clients/client-ivs-realtime/src/endpoint/EndpointParameters.ts +++ b/clients/client-ivs-realtime/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ivs-realtime/src/endpoint/endpointResolver.ts b/clients/client-ivs-realtime/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ivs-realtime/src/endpoint/endpointResolver.ts +++ b/clients/client-ivs-realtime/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ivs-realtime/src/extensionConfiguration.ts b/clients/client-ivs-realtime/src/extensionConfiguration.ts index 053afeb726d64..88609c006d31b 100644 --- a/clients/client-ivs-realtime/src/extensionConfiguration.ts +++ b/clients/client-ivs-realtime/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ivs-realtime/src/models/IVSRealTimeServiceException.ts b/clients/client-ivs-realtime/src/models/IVSRealTimeServiceException.ts index 874d666e94efd..478514ea75403 100644 --- a/clients/client-ivs-realtime/src/models/IVSRealTimeServiceException.ts +++ b/clients/client-ivs-realtime/src/models/IVSRealTimeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ivs-realtime/src/models/errors.ts b/clients/client-ivs-realtime/src/models/errors.ts index f3728e347ce4a..ef6d07e9bb6d7 100644 --- a/clients/client-ivs-realtime/src/models/errors.ts +++ b/clients/client-ivs-realtime/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IVSRealTimeServiceException as __BaseException } from "./IVSRealTimeServiceException"; diff --git a/clients/client-ivs-realtime/src/pagination/Interfaces.ts b/clients/client-ivs-realtime/src/pagination/Interfaces.ts index adbfa3656f46c..bb02a0319fdf2 100644 --- a/clients/client-ivs-realtime/src/pagination/Interfaces.ts +++ b/clients/client-ivs-realtime/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IVSRealTimeClient } from "../IVSRealTimeClient"; diff --git a/clients/client-ivs-realtime/src/pagination/ListCompositionsPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListCompositionsPaginator.ts index b71670a736a20..af02758a8bc04 100644 --- a/clients/client-ivs-realtime/src/pagination/ListCompositionsPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListCompositionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCompositionsCommand, diff --git a/clients/client-ivs-realtime/src/pagination/ListEncoderConfigurationsPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListEncoderConfigurationsPaginator.ts index af54e7d1d676f..22bd5c97e10d0 100644 --- a/clients/client-ivs-realtime/src/pagination/ListEncoderConfigurationsPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListEncoderConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEncoderConfigurationsCommand, diff --git a/clients/client-ivs-realtime/src/pagination/ListIngestConfigurationsPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListIngestConfigurationsPaginator.ts index 504151eeadedf..605291885d4a8 100644 --- a/clients/client-ivs-realtime/src/pagination/ListIngestConfigurationsPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListIngestConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIngestConfigurationsCommand, diff --git a/clients/client-ivs-realtime/src/pagination/ListParticipantEventsPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListParticipantEventsPaginator.ts index cff0b1f4b35e3..1ac63e6381e1e 100644 --- a/clients/client-ivs-realtime/src/pagination/ListParticipantEventsPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListParticipantEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListParticipantEventsCommand, diff --git a/clients/client-ivs-realtime/src/pagination/ListParticipantReplicasPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListParticipantReplicasPaginator.ts index 7a32d4bd543fc..d99adfd893cb8 100644 --- a/clients/client-ivs-realtime/src/pagination/ListParticipantReplicasPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListParticipantReplicasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListParticipantReplicasCommand, diff --git a/clients/client-ivs-realtime/src/pagination/ListParticipantsPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListParticipantsPaginator.ts index 4f4b106f545e3..ed1b47f364c78 100644 --- a/clients/client-ivs-realtime/src/pagination/ListParticipantsPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListParticipantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListParticipantsCommand, diff --git a/clients/client-ivs-realtime/src/pagination/ListPublicKeysPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListPublicKeysPaginator.ts index 976e82abfda3c..9d74f0f5ed587 100644 --- a/clients/client-ivs-realtime/src/pagination/ListPublicKeysPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListPublicKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPublicKeysCommand, diff --git a/clients/client-ivs-realtime/src/pagination/ListStageSessionsPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListStageSessionsPaginator.ts index ca3d06b849e31..f61672e6c839f 100644 --- a/clients/client-ivs-realtime/src/pagination/ListStageSessionsPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListStageSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStageSessionsCommand, diff --git a/clients/client-ivs-realtime/src/pagination/ListStagesPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListStagesPaginator.ts index 244e8a8ca26b5..f1fef739ac3b1 100644 --- a/clients/client-ivs-realtime/src/pagination/ListStagesPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListStagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStagesCommand, ListStagesCommandInput, ListStagesCommandOutput } from "../commands/ListStagesCommand"; import { IVSRealTimeClient } from "../IVSRealTimeClient"; diff --git a/clients/client-ivs-realtime/src/pagination/ListStorageConfigurationsPaginator.ts b/clients/client-ivs-realtime/src/pagination/ListStorageConfigurationsPaginator.ts index 1dce4cce807b6..f8508231f3d2c 100644 --- a/clients/client-ivs-realtime/src/pagination/ListStorageConfigurationsPaginator.ts +++ b/clients/client-ivs-realtime/src/pagination/ListStorageConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStorageConfigurationsCommand, diff --git a/clients/client-ivs-realtime/src/runtimeConfig.browser.ts b/clients/client-ivs-realtime/src/runtimeConfig.browser.ts index 83ec10b0f5570..caedd716a4d76 100644 --- a/clients/client-ivs-realtime/src/runtimeConfig.browser.ts +++ b/clients/client-ivs-realtime/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IVSRealTimeClientConfig } from "./IVSRealTimeClient"; + +import type { IVSRealTimeClientConfig } from "./IVSRealTimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ivs-realtime/src/runtimeConfig.native.ts b/clients/client-ivs-realtime/src/runtimeConfig.native.ts index 346a8297e393a..3fc9733a3a4a2 100644 --- a/clients/client-ivs-realtime/src/runtimeConfig.native.ts +++ b/clients/client-ivs-realtime/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IVSRealTimeClientConfig } from "./IVSRealTimeClient"; +import type { IVSRealTimeClientConfig } from "./IVSRealTimeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ivs-realtime/src/runtimeConfig.shared.ts b/clients/client-ivs-realtime/src/runtimeConfig.shared.ts index 76d5964de6fbb..4896b9f6d5049 100644 --- a/clients/client-ivs-realtime/src/runtimeConfig.shared.ts +++ b/clients/client-ivs-realtime/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIVSRealTimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IVSRealTimeClientConfig } from "./IVSRealTimeClient"; +import type { IVSRealTimeClientConfig } from "./IVSRealTimeClient"; /** * @internal diff --git a/clients/client-ivs-realtime/src/runtimeConfig.ts b/clients/client-ivs-realtime/src/runtimeConfig.ts index 89a87cba7a258..0be447afa24f5 100644 --- a/clients/client-ivs-realtime/src/runtimeConfig.ts +++ b/clients/client-ivs-realtime/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IVSRealTimeClientConfig } from "./IVSRealTimeClient"; + +import type { IVSRealTimeClientConfig } from "./IVSRealTimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ivs-realtime/src/runtimeExtensions.ts b/clients/client-ivs-realtime/src/runtimeExtensions.ts index 8e200f6f48798..9f1c4e651c53b 100644 --- a/clients/client-ivs-realtime/src/runtimeExtensions.ts +++ b/clients/client-ivs-realtime/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IVSRealTimeExtensionConfiguration } from "./extensionConfiguration"; +import type { IVSRealTimeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ivs-realtime/src/schemas/schemas_0.ts b/clients/client-ivs-realtime/src/schemas/schemas_0.ts index 01a3b87b65d70..81ea1c1a4d52f 100644 --- a/clients/client-ivs-realtime/src/schemas/schemas_0.ts +++ b/clients/client-ivs-realtime/src/schemas/schemas_0.ts @@ -335,7 +335,7 @@ const n0 = "com.amazonaws.ivsrealtime"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ivs/package.json b/clients/client-ivs/package.json index aa70d124acff1..4898621b687ab 100644 --- a/clients/client-ivs/package.json +++ b/clients/client-ivs/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ivs/src/Ivs.ts b/clients/client-ivs/src/Ivs.ts index 6aba21bde4100..b5b16a38dfb2c 100644 --- a/clients/client-ivs/src/Ivs.ts +++ b/clients/client-ivs/src/Ivs.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetChannelCommand, @@ -153,7 +153,7 @@ import { UpdatePlaybackRestrictionPolicyCommandInput, UpdatePlaybackRestrictionPolicyCommandOutput, } from "./commands/UpdatePlaybackRestrictionPolicyCommand"; -import { IvsClient, IvsClientConfig } from "./IvsClient"; +import { IvsClient } from "./IvsClient"; const commands = { BatchGetChannelCommand, diff --git a/clients/client-ivs/src/IvsClient.ts b/clients/client-ivs/src/IvsClient.ts index 917fc566640eb..b70d9fccd6e04 100644 --- a/clients/client-ivs/src/IvsClient.ts +++ b/clients/client-ivs/src/IvsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIvsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetChannelCommandInput, BatchGetChannelCommandOutput } from "./commands/BatchGetChannelCommand"; @@ -144,7 +153,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ivs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ivs/src/auth/httpAuthExtensionConfiguration.ts index 51bf372c660e0..3c88ab03134f1 100644 --- a/clients/client-ivs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ivs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IvsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IvsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ivs/src/auth/httpAuthSchemeProvider.ts b/clients/client-ivs/src/auth/httpAuthSchemeProvider.ts index ac2740767b7a9..632baf2d99a9e 100644 --- a/clients/client-ivs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ivs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IvsClientConfig, IvsClientResolvedConfig } from "../IvsClient"; +import { type IvsClientResolvedConfig, IvsClientConfig } from "../IvsClient"; /** * @internal diff --git a/clients/client-ivs/src/commands/BatchGetChannelCommand.ts b/clients/client-ivs/src/commands/BatchGetChannelCommand.ts index edc4226378007..38025074e6a38 100644 --- a/clients/client-ivs/src/commands/BatchGetChannelCommand.ts +++ b/clients/client-ivs/src/commands/BatchGetChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { BatchGetChannelRequest, BatchGetChannelResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { BatchGetChannelRequest, BatchGetChannelResponse } from "../models/models_0"; import { BatchGetChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/BatchGetStreamKeyCommand.ts b/clients/client-ivs/src/commands/BatchGetStreamKeyCommand.ts index 4d7c769460b10..fc89ca2fb28cf 100644 --- a/clients/client-ivs/src/commands/BatchGetStreamKeyCommand.ts +++ b/clients/client-ivs/src/commands/BatchGetStreamKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { BatchGetStreamKeyRequest, BatchGetStreamKeyResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { BatchGetStreamKeyRequest, BatchGetStreamKeyResponse } from "../models/models_0"; import { BatchGetStreamKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/BatchStartViewerSessionRevocationCommand.ts b/clients/client-ivs/src/commands/BatchStartViewerSessionRevocationCommand.ts index 18cd014e64877..0890157b28a9a 100644 --- a/clients/client-ivs/src/commands/BatchStartViewerSessionRevocationCommand.ts +++ b/clients/client-ivs/src/commands/BatchStartViewerSessionRevocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { BatchStartViewerSessionRevocationRequest, BatchStartViewerSessionRevocationResponse, } from "../models/models_0"; diff --git a/clients/client-ivs/src/commands/CreateChannelCommand.ts b/clients/client-ivs/src/commands/CreateChannelCommand.ts index dcb2a0b0761b1..0f27b300daaff 100644 --- a/clients/client-ivs/src/commands/CreateChannelCommand.ts +++ b/clients/client-ivs/src/commands/CreateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; import { CreateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/CreatePlaybackRestrictionPolicyCommand.ts b/clients/client-ivs/src/commands/CreatePlaybackRestrictionPolicyCommand.ts index 7470542e95dd5..ab25708b3d1fa 100644 --- a/clients/client-ivs/src/commands/CreatePlaybackRestrictionPolicyCommand.ts +++ b/clients/client-ivs/src/commands/CreatePlaybackRestrictionPolicyCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { CreatePlaybackRestrictionPolicyRequest, CreatePlaybackRestrictionPolicyResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { + CreatePlaybackRestrictionPolicyRequest, + CreatePlaybackRestrictionPolicyResponse, +} from "../models/models_0"; import { CreatePlaybackRestrictionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/CreateRecordingConfigurationCommand.ts b/clients/client-ivs/src/commands/CreateRecordingConfigurationCommand.ts index 03f764666bcc7..e0a9de7bf0e19 100644 --- a/clients/client-ivs/src/commands/CreateRecordingConfigurationCommand.ts +++ b/clients/client-ivs/src/commands/CreateRecordingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { CreateRecordingConfigurationRequest, CreateRecordingConfigurationResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { CreateRecordingConfigurationRequest, CreateRecordingConfigurationResponse } from "../models/models_0"; import { CreateRecordingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/CreateStreamKeyCommand.ts b/clients/client-ivs/src/commands/CreateStreamKeyCommand.ts index 70dd549a7a112..77532b2d77e26 100644 --- a/clients/client-ivs/src/commands/CreateStreamKeyCommand.ts +++ b/clients/client-ivs/src/commands/CreateStreamKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { CreateStreamKeyRequest, CreateStreamKeyResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { CreateStreamKeyRequest, CreateStreamKeyResponse } from "../models/models_0"; import { CreateStreamKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/DeleteChannelCommand.ts b/clients/client-ivs/src/commands/DeleteChannelCommand.ts index 0c24b8505a2ae..acb2e9075eb80 100644 --- a/clients/client-ivs/src/commands/DeleteChannelCommand.ts +++ b/clients/client-ivs/src/commands/DeleteChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { DeleteChannelRequest } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { DeleteChannelRequest } from "../models/models_0"; import { DeleteChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/DeletePlaybackKeyPairCommand.ts b/clients/client-ivs/src/commands/DeletePlaybackKeyPairCommand.ts index 00c4375bf5445..741dad7ac81fd 100644 --- a/clients/client-ivs/src/commands/DeletePlaybackKeyPairCommand.ts +++ b/clients/client-ivs/src/commands/DeletePlaybackKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { DeletePlaybackKeyPairRequest, DeletePlaybackKeyPairResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { DeletePlaybackKeyPairRequest, DeletePlaybackKeyPairResponse } from "../models/models_0"; import { DeletePlaybackKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/DeletePlaybackRestrictionPolicyCommand.ts b/clients/client-ivs/src/commands/DeletePlaybackRestrictionPolicyCommand.ts index 802e694121800..02c5983ade112 100644 --- a/clients/client-ivs/src/commands/DeletePlaybackRestrictionPolicyCommand.ts +++ b/clients/client-ivs/src/commands/DeletePlaybackRestrictionPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { DeletePlaybackRestrictionPolicyRequest } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { DeletePlaybackRestrictionPolicyRequest } from "../models/models_0"; import { DeletePlaybackRestrictionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/DeleteRecordingConfigurationCommand.ts b/clients/client-ivs/src/commands/DeleteRecordingConfigurationCommand.ts index 2d135462831ed..7d910e1f8b969 100644 --- a/clients/client-ivs/src/commands/DeleteRecordingConfigurationCommand.ts +++ b/clients/client-ivs/src/commands/DeleteRecordingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { DeleteRecordingConfigurationRequest } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { DeleteRecordingConfigurationRequest } from "../models/models_0"; import { DeleteRecordingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/DeleteStreamKeyCommand.ts b/clients/client-ivs/src/commands/DeleteStreamKeyCommand.ts index 9852bc8ba0338..3cf44ac3d1055 100644 --- a/clients/client-ivs/src/commands/DeleteStreamKeyCommand.ts +++ b/clients/client-ivs/src/commands/DeleteStreamKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { DeleteStreamKeyRequest } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { DeleteStreamKeyRequest } from "../models/models_0"; import { DeleteStreamKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/GetChannelCommand.ts b/clients/client-ivs/src/commands/GetChannelCommand.ts index 483dfd5e93d56..1da65a44243b6 100644 --- a/clients/client-ivs/src/commands/GetChannelCommand.ts +++ b/clients/client-ivs/src/commands/GetChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { GetChannelRequest, GetChannelResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { GetChannelRequest, GetChannelResponse } from "../models/models_0"; import { GetChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/GetPlaybackKeyPairCommand.ts b/clients/client-ivs/src/commands/GetPlaybackKeyPairCommand.ts index 31a73bf3762a6..3fb661df5983c 100644 --- a/clients/client-ivs/src/commands/GetPlaybackKeyPairCommand.ts +++ b/clients/client-ivs/src/commands/GetPlaybackKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { GetPlaybackKeyPairRequest, GetPlaybackKeyPairResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { GetPlaybackKeyPairRequest, GetPlaybackKeyPairResponse } from "../models/models_0"; import { GetPlaybackKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/GetPlaybackRestrictionPolicyCommand.ts b/clients/client-ivs/src/commands/GetPlaybackRestrictionPolicyCommand.ts index 412c80ab9adf5..71948b50264be 100644 --- a/clients/client-ivs/src/commands/GetPlaybackRestrictionPolicyCommand.ts +++ b/clients/client-ivs/src/commands/GetPlaybackRestrictionPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { GetPlaybackRestrictionPolicyRequest, GetPlaybackRestrictionPolicyResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { GetPlaybackRestrictionPolicyRequest, GetPlaybackRestrictionPolicyResponse } from "../models/models_0"; import { GetPlaybackRestrictionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/GetRecordingConfigurationCommand.ts b/clients/client-ivs/src/commands/GetRecordingConfigurationCommand.ts index b573bbd2a4547..e25feb97b7fdf 100644 --- a/clients/client-ivs/src/commands/GetRecordingConfigurationCommand.ts +++ b/clients/client-ivs/src/commands/GetRecordingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { GetRecordingConfigurationRequest, GetRecordingConfigurationResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { GetRecordingConfigurationRequest, GetRecordingConfigurationResponse } from "../models/models_0"; import { GetRecordingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/GetStreamCommand.ts b/clients/client-ivs/src/commands/GetStreamCommand.ts index 80b593ccce5fa..fe92a2acc1e03 100644 --- a/clients/client-ivs/src/commands/GetStreamCommand.ts +++ b/clients/client-ivs/src/commands/GetStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { GetStreamRequest, GetStreamResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { GetStreamRequest, GetStreamResponse } from "../models/models_0"; import { GetStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/GetStreamKeyCommand.ts b/clients/client-ivs/src/commands/GetStreamKeyCommand.ts index f24a0bbaf92cc..0602b8a88bf79 100644 --- a/clients/client-ivs/src/commands/GetStreamKeyCommand.ts +++ b/clients/client-ivs/src/commands/GetStreamKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { GetStreamKeyRequest, GetStreamKeyResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { GetStreamKeyRequest, GetStreamKeyResponse } from "../models/models_0"; import { GetStreamKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/GetStreamSessionCommand.ts b/clients/client-ivs/src/commands/GetStreamSessionCommand.ts index 04c7e144fa05e..15e6ca99d5878 100644 --- a/clients/client-ivs/src/commands/GetStreamSessionCommand.ts +++ b/clients/client-ivs/src/commands/GetStreamSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { GetStreamSessionRequest, GetStreamSessionResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { GetStreamSessionRequest, GetStreamSessionResponse } from "../models/models_0"; import { GetStreamSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/ImportPlaybackKeyPairCommand.ts b/clients/client-ivs/src/commands/ImportPlaybackKeyPairCommand.ts index 68523a5d605bc..8b28cbc567c65 100644 --- a/clients/client-ivs/src/commands/ImportPlaybackKeyPairCommand.ts +++ b/clients/client-ivs/src/commands/ImportPlaybackKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { ImportPlaybackKeyPairRequest, ImportPlaybackKeyPairResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { ImportPlaybackKeyPairRequest, ImportPlaybackKeyPairResponse } from "../models/models_0"; import { ImportPlaybackKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/ListChannelsCommand.ts b/clients/client-ivs/src/commands/ListChannelsCommand.ts index ec94208ae87b3..d69f6e4ec236c 100644 --- a/clients/client-ivs/src/commands/ListChannelsCommand.ts +++ b/clients/client-ivs/src/commands/ListChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/ListPlaybackKeyPairsCommand.ts b/clients/client-ivs/src/commands/ListPlaybackKeyPairsCommand.ts index 4245f6eea19f2..d27434f0646d8 100644 --- a/clients/client-ivs/src/commands/ListPlaybackKeyPairsCommand.ts +++ b/clients/client-ivs/src/commands/ListPlaybackKeyPairsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { ListPlaybackKeyPairsRequest, ListPlaybackKeyPairsResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { ListPlaybackKeyPairsRequest, ListPlaybackKeyPairsResponse } from "../models/models_0"; import { ListPlaybackKeyPairs } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/ListPlaybackRestrictionPoliciesCommand.ts b/clients/client-ivs/src/commands/ListPlaybackRestrictionPoliciesCommand.ts index 3d9f484ca9236..8f7813cabed23 100644 --- a/clients/client-ivs/src/commands/ListPlaybackRestrictionPoliciesCommand.ts +++ b/clients/client-ivs/src/commands/ListPlaybackRestrictionPoliciesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { ListPlaybackRestrictionPoliciesRequest, ListPlaybackRestrictionPoliciesResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { + ListPlaybackRestrictionPoliciesRequest, + ListPlaybackRestrictionPoliciesResponse, +} from "../models/models_0"; import { ListPlaybackRestrictionPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/ListRecordingConfigurationsCommand.ts b/clients/client-ivs/src/commands/ListRecordingConfigurationsCommand.ts index beb95ad142c5c..75d284339c899 100644 --- a/clients/client-ivs/src/commands/ListRecordingConfigurationsCommand.ts +++ b/clients/client-ivs/src/commands/ListRecordingConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { ListRecordingConfigurationsRequest, ListRecordingConfigurationsResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { ListRecordingConfigurationsRequest, ListRecordingConfigurationsResponse } from "../models/models_0"; import { ListRecordingConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/ListStreamKeysCommand.ts b/clients/client-ivs/src/commands/ListStreamKeysCommand.ts index 2f3c9b97d74e0..2fd51b7a29891 100644 --- a/clients/client-ivs/src/commands/ListStreamKeysCommand.ts +++ b/clients/client-ivs/src/commands/ListStreamKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { ListStreamKeysRequest, ListStreamKeysResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { ListStreamKeysRequest, ListStreamKeysResponse } from "../models/models_0"; import { ListStreamKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/ListStreamSessionsCommand.ts b/clients/client-ivs/src/commands/ListStreamSessionsCommand.ts index 1c8bbfc6f6337..4fc4a7876a2bd 100644 --- a/clients/client-ivs/src/commands/ListStreamSessionsCommand.ts +++ b/clients/client-ivs/src/commands/ListStreamSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { ListStreamSessionsRequest, ListStreamSessionsResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { ListStreamSessionsRequest, ListStreamSessionsResponse } from "../models/models_0"; import { ListStreamSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/ListStreamsCommand.ts b/clients/client-ivs/src/commands/ListStreamsCommand.ts index eeb1bc54903b7..8209f841fc150 100644 --- a/clients/client-ivs/src/commands/ListStreamsCommand.ts +++ b/clients/client-ivs/src/commands/ListStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { ListStreamsRequest, ListStreamsResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { ListStreamsRequest, ListStreamsResponse } from "../models/models_0"; import { ListStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/ListTagsForResourceCommand.ts b/clients/client-ivs/src/commands/ListTagsForResourceCommand.ts index cd89eefcc5594..3c7ec84b4deca 100644 --- a/clients/client-ivs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ivs/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/PutMetadataCommand.ts b/clients/client-ivs/src/commands/PutMetadataCommand.ts index aa4516275c8cf..ce683502a34d7 100644 --- a/clients/client-ivs/src/commands/PutMetadataCommand.ts +++ b/clients/client-ivs/src/commands/PutMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { PutMetadataRequest } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { PutMetadataRequest } from "../models/models_0"; import { PutMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/StartViewerSessionRevocationCommand.ts b/clients/client-ivs/src/commands/StartViewerSessionRevocationCommand.ts index fc51579de4807..1399837c72282 100644 --- a/clients/client-ivs/src/commands/StartViewerSessionRevocationCommand.ts +++ b/clients/client-ivs/src/commands/StartViewerSessionRevocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { StartViewerSessionRevocationRequest, StartViewerSessionRevocationResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { StartViewerSessionRevocationRequest, StartViewerSessionRevocationResponse } from "../models/models_0"; import { StartViewerSessionRevocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/StopStreamCommand.ts b/clients/client-ivs/src/commands/StopStreamCommand.ts index f630d11e988bf..b05ecfc25939e 100644 --- a/clients/client-ivs/src/commands/StopStreamCommand.ts +++ b/clients/client-ivs/src/commands/StopStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { StopStreamRequest, StopStreamResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { StopStreamRequest, StopStreamResponse } from "../models/models_0"; import { StopStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/TagResourceCommand.ts b/clients/client-ivs/src/commands/TagResourceCommand.ts index c5d82525f2e71..572a02d354ccb 100644 --- a/clients/client-ivs/src/commands/TagResourceCommand.ts +++ b/clients/client-ivs/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/UntagResourceCommand.ts b/clients/client-ivs/src/commands/UntagResourceCommand.ts index 65feefde99153..1b85568bace10 100644 --- a/clients/client-ivs/src/commands/UntagResourceCommand.ts +++ b/clients/client-ivs/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/UpdateChannelCommand.ts b/clients/client-ivs/src/commands/UpdateChannelCommand.ts index e7ff845a586b4..022374c974b26 100644 --- a/clients/client-ivs/src/commands/UpdateChannelCommand.ts +++ b/clients/client-ivs/src/commands/UpdateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; import { UpdateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/commands/UpdatePlaybackRestrictionPolicyCommand.ts b/clients/client-ivs/src/commands/UpdatePlaybackRestrictionPolicyCommand.ts index d96ed92dc9a05..1a566d6dbbb96 100644 --- a/clients/client-ivs/src/commands/UpdatePlaybackRestrictionPolicyCommand.ts +++ b/clients/client-ivs/src/commands/UpdatePlaybackRestrictionPolicyCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; -import { UpdatePlaybackRestrictionPolicyRequest, UpdatePlaybackRestrictionPolicyResponse } from "../models/models_0"; +import type { IvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvsClient"; +import type { + UpdatePlaybackRestrictionPolicyRequest, + UpdatePlaybackRestrictionPolicyResponse, +} from "../models/models_0"; import { UpdatePlaybackRestrictionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivs/src/endpoint/EndpointParameters.ts b/clients/client-ivs/src/endpoint/EndpointParameters.ts index a8ca2ae7d6d3f..ca62ab3d9efc0 100644 --- a/clients/client-ivs/src/endpoint/EndpointParameters.ts +++ b/clients/client-ivs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ivs/src/endpoint/endpointResolver.ts b/clients/client-ivs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ivs/src/endpoint/endpointResolver.ts +++ b/clients/client-ivs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ivs/src/extensionConfiguration.ts b/clients/client-ivs/src/extensionConfiguration.ts index d4a841e0cec06..f907158afcee7 100644 --- a/clients/client-ivs/src/extensionConfiguration.ts +++ b/clients/client-ivs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ivs/src/models/IvsServiceException.ts b/clients/client-ivs/src/models/IvsServiceException.ts index bff33248ec12d..7239dc10baf0c 100644 --- a/clients/client-ivs/src/models/IvsServiceException.ts +++ b/clients/client-ivs/src/models/IvsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ivs/src/models/errors.ts b/clients/client-ivs/src/models/errors.ts index 59da20ab1f8a7..78e5297f20ad1 100644 --- a/clients/client-ivs/src/models/errors.ts +++ b/clients/client-ivs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IvsServiceException as __BaseException } from "./IvsServiceException"; diff --git a/clients/client-ivs/src/pagination/Interfaces.ts b/clients/client-ivs/src/pagination/Interfaces.ts index f26d2d42c7ef6..f0d2e43a782f4 100644 --- a/clients/client-ivs/src/pagination/Interfaces.ts +++ b/clients/client-ivs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IvsClient } from "../IvsClient"; diff --git a/clients/client-ivs/src/pagination/ListChannelsPaginator.ts b/clients/client-ivs/src/pagination/ListChannelsPaginator.ts index 16800ecc1883a..ccf8c6443e9ed 100644 --- a/clients/client-ivs/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-ivs/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelsCommand, diff --git a/clients/client-ivs/src/pagination/ListPlaybackKeyPairsPaginator.ts b/clients/client-ivs/src/pagination/ListPlaybackKeyPairsPaginator.ts index 4df0e81fd7c69..d0846410e6c85 100644 --- a/clients/client-ivs/src/pagination/ListPlaybackKeyPairsPaginator.ts +++ b/clients/client-ivs/src/pagination/ListPlaybackKeyPairsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPlaybackKeyPairsCommand, diff --git a/clients/client-ivs/src/pagination/ListPlaybackRestrictionPoliciesPaginator.ts b/clients/client-ivs/src/pagination/ListPlaybackRestrictionPoliciesPaginator.ts index 94e4b82df89e0..642601ce55c2d 100644 --- a/clients/client-ivs/src/pagination/ListPlaybackRestrictionPoliciesPaginator.ts +++ b/clients/client-ivs/src/pagination/ListPlaybackRestrictionPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPlaybackRestrictionPoliciesCommand, diff --git a/clients/client-ivs/src/pagination/ListRecordingConfigurationsPaginator.ts b/clients/client-ivs/src/pagination/ListRecordingConfigurationsPaginator.ts index dd3dc23352618..20e9c7991873c 100644 --- a/clients/client-ivs/src/pagination/ListRecordingConfigurationsPaginator.ts +++ b/clients/client-ivs/src/pagination/ListRecordingConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecordingConfigurationsCommand, diff --git a/clients/client-ivs/src/pagination/ListStreamKeysPaginator.ts b/clients/client-ivs/src/pagination/ListStreamKeysPaginator.ts index 08b2349918a70..77e1c42dbd41f 100644 --- a/clients/client-ivs/src/pagination/ListStreamKeysPaginator.ts +++ b/clients/client-ivs/src/pagination/ListStreamKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamKeysCommand, diff --git a/clients/client-ivs/src/pagination/ListStreamSessionsPaginator.ts b/clients/client-ivs/src/pagination/ListStreamSessionsPaginator.ts index 47e4f83575078..fbf4ec556edf5 100644 --- a/clients/client-ivs/src/pagination/ListStreamSessionsPaginator.ts +++ b/clients/client-ivs/src/pagination/ListStreamSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamSessionsCommand, diff --git a/clients/client-ivs/src/pagination/ListStreamsPaginator.ts b/clients/client-ivs/src/pagination/ListStreamsPaginator.ts index 39d295f3059d2..9053a3ef5724a 100644 --- a/clients/client-ivs/src/pagination/ListStreamsPaginator.ts +++ b/clients/client-ivs/src/pagination/ListStreamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamsCommand, ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/ListStreamsCommand"; import { IvsClient } from "../IvsClient"; diff --git a/clients/client-ivs/src/runtimeConfig.browser.ts b/clients/client-ivs/src/runtimeConfig.browser.ts index f9d998125e7aa..709e60ffe301b 100644 --- a/clients/client-ivs/src/runtimeConfig.browser.ts +++ b/clients/client-ivs/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IvsClientConfig } from "./IvsClient"; + +import type { IvsClientConfig } from "./IvsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ivs/src/runtimeConfig.native.ts b/clients/client-ivs/src/runtimeConfig.native.ts index 5a23eb8e736a1..dbfad6baabda3 100644 --- a/clients/client-ivs/src/runtimeConfig.native.ts +++ b/clients/client-ivs/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IvsClientConfig } from "./IvsClient"; +import type { IvsClientConfig } from "./IvsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ivs/src/runtimeConfig.shared.ts b/clients/client-ivs/src/runtimeConfig.shared.ts index 4917ee7409b16..ce4f5afd0f2de 100644 --- a/clients/client-ivs/src/runtimeConfig.shared.ts +++ b/clients/client-ivs/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIvsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IvsClientConfig } from "./IvsClient"; +import type { IvsClientConfig } from "./IvsClient"; /** * @internal diff --git a/clients/client-ivs/src/runtimeConfig.ts b/clients/client-ivs/src/runtimeConfig.ts index 7fde0dbd0bcc2..2244f6ee74d47 100644 --- a/clients/client-ivs/src/runtimeConfig.ts +++ b/clients/client-ivs/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IvsClientConfig } from "./IvsClient"; + +import type { IvsClientConfig } from "./IvsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ivs/src/runtimeExtensions.ts b/clients/client-ivs/src/runtimeExtensions.ts index 9bc372b4deb0e..75c48e81247e1 100644 --- a/clients/client-ivs/src/runtimeExtensions.ts +++ b/clients/client-ivs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IvsExtensionConfiguration } from "./extensionConfiguration"; +import type { IvsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ivs/src/schemas/schemas_0.ts b/clients/client-ivs/src/schemas/schemas_0.ts index 7efdfb2371677..3b385eef9f55e 100644 --- a/clients/client-ivs/src/schemas/schemas_0.ts +++ b/clients/client-ivs/src/schemas/schemas_0.ts @@ -263,7 +263,7 @@ const n0 = "com.amazonaws.ivs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ivschat/package.json b/clients/client-ivschat/package.json index b4294bcb77e5d..388195af80ddc 100644 --- a/clients/client-ivschat/package.json +++ b/clients/client-ivschat/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ivschat/src/Ivschat.ts b/clients/client-ivschat/src/Ivschat.ts index e4815383cbf44..6cf28c3a67485 100644 --- a/clients/client-ivschat/src/Ivschat.ts +++ b/clients/client-ivschat/src/Ivschat.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateChatTokenCommand, @@ -59,7 +59,7 @@ import { UpdateLoggingConfigurationCommandOutput, } from "./commands/UpdateLoggingConfigurationCommand"; import { UpdateRoomCommand, UpdateRoomCommandInput, UpdateRoomCommandOutput } from "./commands/UpdateRoomCommand"; -import { IvschatClient, IvschatClientConfig } from "./IvschatClient"; +import { IvschatClient } from "./IvschatClient"; const commands = { CreateChatTokenCommand, diff --git a/clients/client-ivschat/src/IvschatClient.ts b/clients/client-ivschat/src/IvschatClient.ts index 9434eba5f0ef5..0eeeeb59fd087 100644 --- a/clients/client-ivschat/src/IvschatClient.ts +++ b/clients/client-ivschat/src/IvschatClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultIvschatHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateChatTokenCommandInput, CreateChatTokenCommandOutput } from "./commands/CreateChatTokenCommand"; @@ -99,7 +108,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ivschat/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ivschat/src/auth/httpAuthExtensionConfiguration.ts index 37b35e0036e23..af68e7ebd9586 100644 --- a/clients/client-ivschat/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ivschat/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { IvschatHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { IvschatHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ivschat/src/auth/httpAuthSchemeProvider.ts b/clients/client-ivschat/src/auth/httpAuthSchemeProvider.ts index 844ae10992449..59b33d9ad1875 100644 --- a/clients/client-ivschat/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ivschat/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { IvschatClientConfig, IvschatClientResolvedConfig } from "../IvschatClient"; +import { type IvschatClientResolvedConfig, IvschatClientConfig } from "../IvschatClient"; /** * @internal diff --git a/clients/client-ivschat/src/commands/CreateChatTokenCommand.ts b/clients/client-ivschat/src/commands/CreateChatTokenCommand.ts index 8427bcc22fe9b..70d0fcac84723 100644 --- a/clients/client-ivschat/src/commands/CreateChatTokenCommand.ts +++ b/clients/client-ivschat/src/commands/CreateChatTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { CreateChatTokenRequest, CreateChatTokenResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { CreateChatTokenRequest, CreateChatTokenResponse } from "../models/models_0"; import { CreateChatToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/CreateLoggingConfigurationCommand.ts b/clients/client-ivschat/src/commands/CreateLoggingConfigurationCommand.ts index a53fb0a97c4fd..b524fa5bc2a6b 100644 --- a/clients/client-ivschat/src/commands/CreateLoggingConfigurationCommand.ts +++ b/clients/client-ivschat/src/commands/CreateLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { CreateLoggingConfigurationRequest, CreateLoggingConfigurationResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { CreateLoggingConfigurationRequest, CreateLoggingConfigurationResponse } from "../models/models_0"; import { CreateLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/CreateRoomCommand.ts b/clients/client-ivschat/src/commands/CreateRoomCommand.ts index 4a1234f4de267..2bf2f8768f9e0 100644 --- a/clients/client-ivschat/src/commands/CreateRoomCommand.ts +++ b/clients/client-ivschat/src/commands/CreateRoomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { CreateRoomRequest, CreateRoomResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { CreateRoomRequest, CreateRoomResponse } from "../models/models_0"; import { CreateRoom } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-ivschat/src/commands/DeleteLoggingConfigurationCommand.ts index 377b905529c53..7e371bd0952bd 100644 --- a/clients/client-ivschat/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-ivschat/src/commands/DeleteLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { DeleteLoggingConfigurationRequest } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { DeleteLoggingConfigurationRequest } from "../models/models_0"; import { DeleteLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/DeleteMessageCommand.ts b/clients/client-ivschat/src/commands/DeleteMessageCommand.ts index dcd424a313ed1..970a1d125589a 100644 --- a/clients/client-ivschat/src/commands/DeleteMessageCommand.ts +++ b/clients/client-ivschat/src/commands/DeleteMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { DeleteMessageRequest, DeleteMessageResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { DeleteMessageRequest, DeleteMessageResponse } from "../models/models_0"; import { DeleteMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/DeleteRoomCommand.ts b/clients/client-ivschat/src/commands/DeleteRoomCommand.ts index 4ef1916329dbe..bf632ed6c6c1e 100644 --- a/clients/client-ivschat/src/commands/DeleteRoomCommand.ts +++ b/clients/client-ivschat/src/commands/DeleteRoomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { DeleteRoomRequest } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { DeleteRoomRequest } from "../models/models_0"; import { DeleteRoom } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/DisconnectUserCommand.ts b/clients/client-ivschat/src/commands/DisconnectUserCommand.ts index fff2af1c89a9d..5f0a178337f8c 100644 --- a/clients/client-ivschat/src/commands/DisconnectUserCommand.ts +++ b/clients/client-ivschat/src/commands/DisconnectUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { DisconnectUserRequest, DisconnectUserResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { DisconnectUserRequest, DisconnectUserResponse } from "../models/models_0"; import { DisconnectUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/GetLoggingConfigurationCommand.ts b/clients/client-ivschat/src/commands/GetLoggingConfigurationCommand.ts index 4911e2443da79..aa05b94c6823a 100644 --- a/clients/client-ivschat/src/commands/GetLoggingConfigurationCommand.ts +++ b/clients/client-ivschat/src/commands/GetLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0"; import { GetLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/GetRoomCommand.ts b/clients/client-ivschat/src/commands/GetRoomCommand.ts index 3a013b26a2c93..5c0b5c63ab99a 100644 --- a/clients/client-ivschat/src/commands/GetRoomCommand.ts +++ b/clients/client-ivschat/src/commands/GetRoomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { GetRoomRequest, GetRoomResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { GetRoomRequest, GetRoomResponse } from "../models/models_0"; import { GetRoom } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/ListLoggingConfigurationsCommand.ts b/clients/client-ivschat/src/commands/ListLoggingConfigurationsCommand.ts index c71895da15544..a3db400149320 100644 --- a/clients/client-ivschat/src/commands/ListLoggingConfigurationsCommand.ts +++ b/clients/client-ivschat/src/commands/ListLoggingConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0"; import { ListLoggingConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/ListRoomsCommand.ts b/clients/client-ivschat/src/commands/ListRoomsCommand.ts index 80c31f7666662..b9ba14fe6316e 100644 --- a/clients/client-ivschat/src/commands/ListRoomsCommand.ts +++ b/clients/client-ivschat/src/commands/ListRoomsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { ListRoomsRequest, ListRoomsResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { ListRoomsRequest, ListRoomsResponse } from "../models/models_0"; import { ListRooms } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/ListTagsForResourceCommand.ts b/clients/client-ivschat/src/commands/ListTagsForResourceCommand.ts index aa934d85bacb8..777a12ef62048 100644 --- a/clients/client-ivschat/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ivschat/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/SendEventCommand.ts b/clients/client-ivschat/src/commands/SendEventCommand.ts index 44e79e5e878b6..55797956619ad 100644 --- a/clients/client-ivschat/src/commands/SendEventCommand.ts +++ b/clients/client-ivschat/src/commands/SendEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { SendEventRequest, SendEventResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { SendEventRequest, SendEventResponse } from "../models/models_0"; import { SendEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/TagResourceCommand.ts b/clients/client-ivschat/src/commands/TagResourceCommand.ts index 7aaf00a600ce3..104bfcee83a5d 100644 --- a/clients/client-ivschat/src/commands/TagResourceCommand.ts +++ b/clients/client-ivschat/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/UntagResourceCommand.ts b/clients/client-ivschat/src/commands/UntagResourceCommand.ts index 52259989d91b2..f98d1755812ec 100644 --- a/clients/client-ivschat/src/commands/UntagResourceCommand.ts +++ b/clients/client-ivschat/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/UpdateLoggingConfigurationCommand.ts b/clients/client-ivschat/src/commands/UpdateLoggingConfigurationCommand.ts index cdafd5bab87a0..4c2b4bf8fb220 100644 --- a/clients/client-ivschat/src/commands/UpdateLoggingConfigurationCommand.ts +++ b/clients/client-ivschat/src/commands/UpdateLoggingConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { UpdateLoggingConfigurationRequest, UpdateLoggingConfigurationResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { UpdateLoggingConfigurationRequest, UpdateLoggingConfigurationResponse } from "../models/models_0"; import { UpdateLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/commands/UpdateRoomCommand.ts b/clients/client-ivschat/src/commands/UpdateRoomCommand.ts index 89a59a7a07246..26e8ea52f59f5 100644 --- a/clients/client-ivschat/src/commands/UpdateRoomCommand.ts +++ b/clients/client-ivschat/src/commands/UpdateRoomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; -import { UpdateRoomRequest, UpdateRoomResponse } from "../models/models_0"; +import type { IvschatClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IvschatClient"; +import type { UpdateRoomRequest, UpdateRoomResponse } from "../models/models_0"; import { UpdateRoom } from "../schemas/schemas_0"; /** diff --git a/clients/client-ivschat/src/endpoint/EndpointParameters.ts b/clients/client-ivschat/src/endpoint/EndpointParameters.ts index e3c907e476138..74b73d57fd8cd 100644 --- a/clients/client-ivschat/src/endpoint/EndpointParameters.ts +++ b/clients/client-ivschat/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ivschat/src/endpoint/endpointResolver.ts b/clients/client-ivschat/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ivschat/src/endpoint/endpointResolver.ts +++ b/clients/client-ivschat/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ivschat/src/extensionConfiguration.ts b/clients/client-ivschat/src/extensionConfiguration.ts index b4d3dc53ab860..e31d1907750a5 100644 --- a/clients/client-ivschat/src/extensionConfiguration.ts +++ b/clients/client-ivschat/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ivschat/src/models/IvschatServiceException.ts b/clients/client-ivschat/src/models/IvschatServiceException.ts index 54ddda5f2dd44..64db7a5e55489 100644 --- a/clients/client-ivschat/src/models/IvschatServiceException.ts +++ b/clients/client-ivschat/src/models/IvschatServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ivschat/src/models/errors.ts b/clients/client-ivschat/src/models/errors.ts index 01a08e087ec3f..62ba8c8105059 100644 --- a/clients/client-ivschat/src/models/errors.ts +++ b/clients/client-ivschat/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ResourceType, ValidationExceptionReason } from "./enums"; import { IvschatServiceException as __BaseException } from "./IvschatServiceException"; diff --git a/clients/client-ivschat/src/pagination/Interfaces.ts b/clients/client-ivschat/src/pagination/Interfaces.ts index 0c427863b29db..8ad361369e078 100644 --- a/clients/client-ivschat/src/pagination/Interfaces.ts +++ b/clients/client-ivschat/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { IvschatClient } from "../IvschatClient"; diff --git a/clients/client-ivschat/src/pagination/ListLoggingConfigurationsPaginator.ts b/clients/client-ivschat/src/pagination/ListLoggingConfigurationsPaginator.ts index 08731243d8558..a4b57b546f1a6 100644 --- a/clients/client-ivschat/src/pagination/ListLoggingConfigurationsPaginator.ts +++ b/clients/client-ivschat/src/pagination/ListLoggingConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLoggingConfigurationsCommand, diff --git a/clients/client-ivschat/src/pagination/ListRoomsPaginator.ts b/clients/client-ivschat/src/pagination/ListRoomsPaginator.ts index 271b4d0947201..b141ffe59e0e2 100644 --- a/clients/client-ivschat/src/pagination/ListRoomsPaginator.ts +++ b/clients/client-ivschat/src/pagination/ListRoomsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoomsCommand, ListRoomsCommandInput, ListRoomsCommandOutput } from "../commands/ListRoomsCommand"; import { IvschatClient } from "../IvschatClient"; diff --git a/clients/client-ivschat/src/runtimeConfig.browser.ts b/clients/client-ivschat/src/runtimeConfig.browser.ts index d337440ecbaf6..6e46eac4b7734 100644 --- a/clients/client-ivschat/src/runtimeConfig.browser.ts +++ b/clients/client-ivschat/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IvschatClientConfig } from "./IvschatClient"; + +import type { IvschatClientConfig } from "./IvschatClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ivschat/src/runtimeConfig.native.ts b/clients/client-ivschat/src/runtimeConfig.native.ts index b222f0ac343f0..c008239d73ed1 100644 --- a/clients/client-ivschat/src/runtimeConfig.native.ts +++ b/clients/client-ivschat/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { IvschatClientConfig } from "./IvschatClient"; +import type { IvschatClientConfig } from "./IvschatClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ivschat/src/runtimeConfig.shared.ts b/clients/client-ivschat/src/runtimeConfig.shared.ts index 6fef54e2453fb..b083cdbc79486 100644 --- a/clients/client-ivschat/src/runtimeConfig.shared.ts +++ b/clients/client-ivschat/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultIvschatHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { IvschatClientConfig } from "./IvschatClient"; +import type { IvschatClientConfig } from "./IvschatClient"; /** * @internal diff --git a/clients/client-ivschat/src/runtimeConfig.ts b/clients/client-ivschat/src/runtimeConfig.ts index cd3e0dd9e5444..cf307e2a52f40 100644 --- a/clients/client-ivschat/src/runtimeConfig.ts +++ b/clients/client-ivschat/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { IvschatClientConfig } from "./IvschatClient"; + +import type { IvschatClientConfig } from "./IvschatClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ivschat/src/runtimeExtensions.ts b/clients/client-ivschat/src/runtimeExtensions.ts index db253a664cb9b..16af07593b10d 100644 --- a/clients/client-ivschat/src/runtimeExtensions.ts +++ b/clients/client-ivschat/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { IvschatExtensionConfiguration } from "./extensionConfiguration"; +import type { IvschatExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ivschat/src/schemas/schemas_0.ts b/clients/client-ivschat/src/schemas/schemas_0.ts index 793b7e130375c..3bff57cdc93e4 100644 --- a/clients/client-ivschat/src/schemas/schemas_0.ts +++ b/clients/client-ivschat/src/schemas/schemas_0.ts @@ -124,7 +124,7 @@ const n0 = "com.amazonaws.ivschat"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-kafka/package.json b/clients/client-kafka/package.json index 155c0e27b09e5..d7f02c5cdec2a 100644 --- a/clients/client-kafka/package.json +++ b/clients/client-kafka/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kafka/src/Kafka.ts b/clients/client-kafka/src/Kafka.ts index a42658067e8e1..1ec10e6367363 100644 --- a/clients/client-kafka/src/Kafka.ts +++ b/clients/client-kafka/src/Kafka.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchAssociateScramSecretCommand, @@ -270,7 +270,7 @@ import { UpdateStorageCommandInput, UpdateStorageCommandOutput, } from "./commands/UpdateStorageCommand"; -import { KafkaClient, KafkaClientConfig } from "./KafkaClient"; +import { KafkaClient } from "./KafkaClient"; const commands = { BatchAssociateScramSecretCommand, diff --git a/clients/client-kafka/src/KafkaClient.ts b/clients/client-kafka/src/KafkaClient.ts index 3dc8f6b9fb022..8ebcfcbc6fc21 100644 --- a/clients/client-kafka/src/KafkaClient.ts +++ b/clients/client-kafka/src/KafkaClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKafkaHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -198,7 +207,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kafka/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kafka/src/auth/httpAuthExtensionConfiguration.ts index 9c543609e595b..65ed9e37379d3 100644 --- a/clients/client-kafka/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kafka/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KafkaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KafkaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kafka/src/auth/httpAuthSchemeProvider.ts b/clients/client-kafka/src/auth/httpAuthSchemeProvider.ts index 7ae30dfc7c9db..e52c00ff49ff1 100644 --- a/clients/client-kafka/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kafka/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KafkaClientConfig, KafkaClientResolvedConfig } from "../KafkaClient"; +import { type KafkaClientResolvedConfig, KafkaClientConfig } from "../KafkaClient"; /** * @internal diff --git a/clients/client-kafka/src/commands/BatchAssociateScramSecretCommand.ts b/clients/client-kafka/src/commands/BatchAssociateScramSecretCommand.ts index 871723d6cb2e5..b6f8124bb1533 100644 --- a/clients/client-kafka/src/commands/BatchAssociateScramSecretCommand.ts +++ b/clients/client-kafka/src/commands/BatchAssociateScramSecretCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { BatchAssociateScramSecretRequest, BatchAssociateScramSecretResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { BatchAssociateScramSecretRequest, BatchAssociateScramSecretResponse } from "../models/models_0"; import { BatchAssociateScramSecret } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/BatchDisassociateScramSecretCommand.ts b/clients/client-kafka/src/commands/BatchDisassociateScramSecretCommand.ts index bd9c70232febf..04f9e65761d97 100644 --- a/clients/client-kafka/src/commands/BatchDisassociateScramSecretCommand.ts +++ b/clients/client-kafka/src/commands/BatchDisassociateScramSecretCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { BatchDisassociateScramSecretRequest, BatchDisassociateScramSecretResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { BatchDisassociateScramSecretRequest, BatchDisassociateScramSecretResponse } from "../models/models_0"; import { BatchDisassociateScramSecret } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/CreateClusterCommand.ts b/clients/client-kafka/src/commands/CreateClusterCommand.ts index 3f14810a88ad5..d3f5c5913f2be 100644 --- a/clients/client-kafka/src/commands/CreateClusterCommand.ts +++ b/clients/client-kafka/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/CreateClusterV2Command.ts b/clients/client-kafka/src/commands/CreateClusterV2Command.ts index 3b44fd88f8913..aafde6c3749db 100644 --- a/clients/client-kafka/src/commands/CreateClusterV2Command.ts +++ b/clients/client-kafka/src/commands/CreateClusterV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { CreateClusterV2Request, CreateClusterV2Response } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { CreateClusterV2Request, CreateClusterV2Response } from "../models/models_0"; import { CreateClusterV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/CreateConfigurationCommand.ts b/clients/client-kafka/src/commands/CreateConfigurationCommand.ts index 428f2d23df4f7..60bb593dbcbd0 100644 --- a/clients/client-kafka/src/commands/CreateConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/CreateConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { CreateConfigurationRequest, CreateConfigurationResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { CreateConfigurationRequest, CreateConfigurationResponse } from "../models/models_0"; import { CreateConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/CreateReplicatorCommand.ts b/clients/client-kafka/src/commands/CreateReplicatorCommand.ts index 64b057b307626..1ba13a348f015 100644 --- a/clients/client-kafka/src/commands/CreateReplicatorCommand.ts +++ b/clients/client-kafka/src/commands/CreateReplicatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { CreateReplicatorRequest, CreateReplicatorResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { CreateReplicatorRequest, CreateReplicatorResponse } from "../models/models_0"; import { CreateReplicator } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/CreateVpcConnectionCommand.ts b/clients/client-kafka/src/commands/CreateVpcConnectionCommand.ts index dd33a974b1ecd..69e8e1fd9369b 100644 --- a/clients/client-kafka/src/commands/CreateVpcConnectionCommand.ts +++ b/clients/client-kafka/src/commands/CreateVpcConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { CreateVpcConnectionRequest, CreateVpcConnectionResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { CreateVpcConnectionRequest, CreateVpcConnectionResponse } from "../models/models_0"; import { CreateVpcConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DeleteClusterCommand.ts b/clients/client-kafka/src/commands/DeleteClusterCommand.ts index d4012751afd45..4d5a524a56e27 100644 --- a/clients/client-kafka/src/commands/DeleteClusterCommand.ts +++ b/clients/client-kafka/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DeleteClusterPolicyCommand.ts b/clients/client-kafka/src/commands/DeleteClusterPolicyCommand.ts index f9a0a39cc9062..c8061f762f9a0 100644 --- a/clients/client-kafka/src/commands/DeleteClusterPolicyCommand.ts +++ b/clients/client-kafka/src/commands/DeleteClusterPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DeleteClusterPolicyRequest, DeleteClusterPolicyResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DeleteClusterPolicyRequest, DeleteClusterPolicyResponse } from "../models/models_0"; import { DeleteClusterPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DeleteConfigurationCommand.ts b/clients/client-kafka/src/commands/DeleteConfigurationCommand.ts index a5a424b49182e..f756964214ac1 100644 --- a/clients/client-kafka/src/commands/DeleteConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/DeleteConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DeleteConfigurationRequest, DeleteConfigurationResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DeleteConfigurationRequest, DeleteConfigurationResponse } from "../models/models_0"; import { DeleteConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DeleteReplicatorCommand.ts b/clients/client-kafka/src/commands/DeleteReplicatorCommand.ts index 4d3b46070b677..d2fa4c4b118c7 100644 --- a/clients/client-kafka/src/commands/DeleteReplicatorCommand.ts +++ b/clients/client-kafka/src/commands/DeleteReplicatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DeleteReplicatorRequest, DeleteReplicatorResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DeleteReplicatorRequest, DeleteReplicatorResponse } from "../models/models_0"; import { DeleteReplicator } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DeleteVpcConnectionCommand.ts b/clients/client-kafka/src/commands/DeleteVpcConnectionCommand.ts index c564110a5ad03..52e97101bfba6 100644 --- a/clients/client-kafka/src/commands/DeleteVpcConnectionCommand.ts +++ b/clients/client-kafka/src/commands/DeleteVpcConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DeleteVpcConnectionRequest, DeleteVpcConnectionResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DeleteVpcConnectionRequest, DeleteVpcConnectionResponse } from "../models/models_0"; import { DeleteVpcConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeClusterCommand.ts b/clients/client-kafka/src/commands/DescribeClusterCommand.ts index c24983946361c..24221d64eb929 100644 --- a/clients/client-kafka/src/commands/DescribeClusterCommand.ts +++ b/clients/client-kafka/src/commands/DescribeClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_0"; import { DescribeCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeClusterOperationCommand.ts b/clients/client-kafka/src/commands/DescribeClusterOperationCommand.ts index 65d7c1a1ead2f..da732e1dc034a 100644 --- a/clients/client-kafka/src/commands/DescribeClusterOperationCommand.ts +++ b/clients/client-kafka/src/commands/DescribeClusterOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeClusterOperationRequest, DescribeClusterOperationResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeClusterOperationRequest, DescribeClusterOperationResponse } from "../models/models_0"; import { DescribeClusterOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeClusterOperationV2Command.ts b/clients/client-kafka/src/commands/DescribeClusterOperationV2Command.ts index 918fecf925143..bf8ec509d974d 100644 --- a/clients/client-kafka/src/commands/DescribeClusterOperationV2Command.ts +++ b/clients/client-kafka/src/commands/DescribeClusterOperationV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeClusterOperationV2Request, DescribeClusterOperationV2Response } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeClusterOperationV2Request, DescribeClusterOperationV2Response } from "../models/models_0"; import { DescribeClusterOperationV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeClusterV2Command.ts b/clients/client-kafka/src/commands/DescribeClusterV2Command.ts index 46b73e1bfc79d..10b5d19198cb9 100644 --- a/clients/client-kafka/src/commands/DescribeClusterV2Command.ts +++ b/clients/client-kafka/src/commands/DescribeClusterV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeClusterV2Request, DescribeClusterV2Response } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeClusterV2Request, DescribeClusterV2Response } from "../models/models_0"; import { DescribeClusterV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeConfigurationCommand.ts b/clients/client-kafka/src/commands/DescribeConfigurationCommand.ts index 994a6408e3d7d..1a4000a66ae70 100644 --- a/clients/client-kafka/src/commands/DescribeConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/DescribeConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeConfigurationRequest, DescribeConfigurationResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeConfigurationRequest, DescribeConfigurationResponse } from "../models/models_0"; import { DescribeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeConfigurationRevisionCommand.ts b/clients/client-kafka/src/commands/DescribeConfigurationRevisionCommand.ts index 1e7acbce4af59..9d8400b93d8e0 100644 --- a/clients/client-kafka/src/commands/DescribeConfigurationRevisionCommand.ts +++ b/clients/client-kafka/src/commands/DescribeConfigurationRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeConfigurationRevisionRequest, DescribeConfigurationRevisionResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeConfigurationRevisionRequest, DescribeConfigurationRevisionResponse } from "../models/models_0"; import { DescribeConfigurationRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeReplicatorCommand.ts b/clients/client-kafka/src/commands/DescribeReplicatorCommand.ts index d619aac5a44ca..f147f9d6b124f 100644 --- a/clients/client-kafka/src/commands/DescribeReplicatorCommand.ts +++ b/clients/client-kafka/src/commands/DescribeReplicatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeReplicatorRequest, DescribeReplicatorResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeReplicatorRequest, DescribeReplicatorResponse } from "../models/models_0"; import { DescribeReplicator } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeTopicCommand.ts b/clients/client-kafka/src/commands/DescribeTopicCommand.ts index ad4e38a5b08fb..787494f72e885 100644 --- a/clients/client-kafka/src/commands/DescribeTopicCommand.ts +++ b/clients/client-kafka/src/commands/DescribeTopicCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeTopicRequest, DescribeTopicResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeTopicRequest, DescribeTopicResponse } from "../models/models_0"; import { DescribeTopic } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeTopicPartitionsCommand.ts b/clients/client-kafka/src/commands/DescribeTopicPartitionsCommand.ts index d814e0fc90423..df1d7155812a3 100644 --- a/clients/client-kafka/src/commands/DescribeTopicPartitionsCommand.ts +++ b/clients/client-kafka/src/commands/DescribeTopicPartitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeTopicPartitionsRequest, DescribeTopicPartitionsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeTopicPartitionsRequest, DescribeTopicPartitionsResponse } from "../models/models_0"; import { DescribeTopicPartitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/DescribeVpcConnectionCommand.ts b/clients/client-kafka/src/commands/DescribeVpcConnectionCommand.ts index c2663d94c7add..788116c6f985f 100644 --- a/clients/client-kafka/src/commands/DescribeVpcConnectionCommand.ts +++ b/clients/client-kafka/src/commands/DescribeVpcConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { DescribeVpcConnectionRequest, DescribeVpcConnectionResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { DescribeVpcConnectionRequest, DescribeVpcConnectionResponse } from "../models/models_0"; import { DescribeVpcConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/GetBootstrapBrokersCommand.ts b/clients/client-kafka/src/commands/GetBootstrapBrokersCommand.ts index 47af8694cece7..4b160d155b403 100644 --- a/clients/client-kafka/src/commands/GetBootstrapBrokersCommand.ts +++ b/clients/client-kafka/src/commands/GetBootstrapBrokersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { GetBootstrapBrokersRequest, GetBootstrapBrokersResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { GetBootstrapBrokersRequest, GetBootstrapBrokersResponse } from "../models/models_0"; import { GetBootstrapBrokers } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/GetClusterPolicyCommand.ts b/clients/client-kafka/src/commands/GetClusterPolicyCommand.ts index 33be425ee4a8a..4db98c18e0a14 100644 --- a/clients/client-kafka/src/commands/GetClusterPolicyCommand.ts +++ b/clients/client-kafka/src/commands/GetClusterPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { GetClusterPolicyRequest, GetClusterPolicyResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { GetClusterPolicyRequest, GetClusterPolicyResponse } from "../models/models_0"; import { GetClusterPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/GetCompatibleKafkaVersionsCommand.ts b/clients/client-kafka/src/commands/GetCompatibleKafkaVersionsCommand.ts index 06a07dd59e713..b8160fdc144bf 100644 --- a/clients/client-kafka/src/commands/GetCompatibleKafkaVersionsCommand.ts +++ b/clients/client-kafka/src/commands/GetCompatibleKafkaVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { GetCompatibleKafkaVersionsRequest, GetCompatibleKafkaVersionsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { GetCompatibleKafkaVersionsRequest, GetCompatibleKafkaVersionsResponse } from "../models/models_0"; import { GetCompatibleKafkaVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListClientVpcConnectionsCommand.ts b/clients/client-kafka/src/commands/ListClientVpcConnectionsCommand.ts index 9ba25f992d86b..13d77b8603137 100644 --- a/clients/client-kafka/src/commands/ListClientVpcConnectionsCommand.ts +++ b/clients/client-kafka/src/commands/ListClientVpcConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListClientVpcConnectionsRequest, ListClientVpcConnectionsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListClientVpcConnectionsRequest, ListClientVpcConnectionsResponse } from "../models/models_0"; import { ListClientVpcConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListClusterOperationsCommand.ts b/clients/client-kafka/src/commands/ListClusterOperationsCommand.ts index e6ef2fa18a845..836bc3ace7844 100644 --- a/clients/client-kafka/src/commands/ListClusterOperationsCommand.ts +++ b/clients/client-kafka/src/commands/ListClusterOperationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListClusterOperationsRequest, ListClusterOperationsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListClusterOperationsRequest, ListClusterOperationsResponse } from "../models/models_0"; import { ListClusterOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListClusterOperationsV2Command.ts b/clients/client-kafka/src/commands/ListClusterOperationsV2Command.ts index 66af118d2d444..fee27e250b5ad 100644 --- a/clients/client-kafka/src/commands/ListClusterOperationsV2Command.ts +++ b/clients/client-kafka/src/commands/ListClusterOperationsV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListClusterOperationsV2Request, ListClusterOperationsV2Response } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListClusterOperationsV2Request, ListClusterOperationsV2Response } from "../models/models_0"; import { ListClusterOperationsV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListClustersCommand.ts b/clients/client-kafka/src/commands/ListClustersCommand.ts index 94151745dab20..7c8fb627eb0fb 100644 --- a/clients/client-kafka/src/commands/ListClustersCommand.ts +++ b/clients/client-kafka/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListClustersRequest, ListClustersResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListClustersRequest, ListClustersResponse } from "../models/models_0"; import { ListClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListClustersV2Command.ts b/clients/client-kafka/src/commands/ListClustersV2Command.ts index bfa01f4e40848..ddef9bf1bc22c 100644 --- a/clients/client-kafka/src/commands/ListClustersV2Command.ts +++ b/clients/client-kafka/src/commands/ListClustersV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListClustersV2Request, ListClustersV2Response } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListClustersV2Request, ListClustersV2Response } from "../models/models_0"; import { ListClustersV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListConfigurationRevisionsCommand.ts b/clients/client-kafka/src/commands/ListConfigurationRevisionsCommand.ts index 1bf510c206c05..c9fcceea6ab76 100644 --- a/clients/client-kafka/src/commands/ListConfigurationRevisionsCommand.ts +++ b/clients/client-kafka/src/commands/ListConfigurationRevisionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListConfigurationRevisionsRequest, ListConfigurationRevisionsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListConfigurationRevisionsRequest, ListConfigurationRevisionsResponse } from "../models/models_0"; import { ListConfigurationRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListConfigurationsCommand.ts b/clients/client-kafka/src/commands/ListConfigurationsCommand.ts index 7886f3682a511..b802e462059bd 100644 --- a/clients/client-kafka/src/commands/ListConfigurationsCommand.ts +++ b/clients/client-kafka/src/commands/ListConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0"; import { ListConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListKafkaVersionsCommand.ts b/clients/client-kafka/src/commands/ListKafkaVersionsCommand.ts index 0e2fa56a75cdb..7875f1aa0d2a2 100644 --- a/clients/client-kafka/src/commands/ListKafkaVersionsCommand.ts +++ b/clients/client-kafka/src/commands/ListKafkaVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListKafkaVersionsRequest, ListKafkaVersionsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListKafkaVersionsRequest, ListKafkaVersionsResponse } from "../models/models_0"; import { ListKafkaVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListNodesCommand.ts b/clients/client-kafka/src/commands/ListNodesCommand.ts index a43debc9559d5..d32f6346f48bc 100644 --- a/clients/client-kafka/src/commands/ListNodesCommand.ts +++ b/clients/client-kafka/src/commands/ListNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListNodesRequest, ListNodesResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListNodesRequest, ListNodesResponse } from "../models/models_0"; import { ListNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListReplicatorsCommand.ts b/clients/client-kafka/src/commands/ListReplicatorsCommand.ts index 4fd60e4fb96a5..49ddadae45d1c 100644 --- a/clients/client-kafka/src/commands/ListReplicatorsCommand.ts +++ b/clients/client-kafka/src/commands/ListReplicatorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListReplicatorsRequest, ListReplicatorsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListReplicatorsRequest, ListReplicatorsResponse } from "../models/models_0"; import { ListReplicators } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListScramSecretsCommand.ts b/clients/client-kafka/src/commands/ListScramSecretsCommand.ts index 1341eacde85ed..6023518c448ee 100644 --- a/clients/client-kafka/src/commands/ListScramSecretsCommand.ts +++ b/clients/client-kafka/src/commands/ListScramSecretsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListScramSecretsRequest, ListScramSecretsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListScramSecretsRequest, ListScramSecretsResponse } from "../models/models_0"; import { ListScramSecrets } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListTagsForResourceCommand.ts b/clients/client-kafka/src/commands/ListTagsForResourceCommand.ts index b7016bacbe80b..c1fd07b73e998 100644 --- a/clients/client-kafka/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kafka/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListTopicsCommand.ts b/clients/client-kafka/src/commands/ListTopicsCommand.ts index f9f64a9f3c652..4ba85bd10fc81 100644 --- a/clients/client-kafka/src/commands/ListTopicsCommand.ts +++ b/clients/client-kafka/src/commands/ListTopicsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListTopicsRequest, ListTopicsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListTopicsRequest, ListTopicsResponse } from "../models/models_0"; import { ListTopics } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/ListVpcConnectionsCommand.ts b/clients/client-kafka/src/commands/ListVpcConnectionsCommand.ts index 3a37863ef1ebf..246507b1d7d81 100644 --- a/clients/client-kafka/src/commands/ListVpcConnectionsCommand.ts +++ b/clients/client-kafka/src/commands/ListVpcConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { ListVpcConnectionsRequest, ListVpcConnectionsResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { ListVpcConnectionsRequest, ListVpcConnectionsResponse } from "../models/models_0"; import { ListVpcConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/PutClusterPolicyCommand.ts b/clients/client-kafka/src/commands/PutClusterPolicyCommand.ts index 26eaaaf6c9a68..03de5d751f20a 100644 --- a/clients/client-kafka/src/commands/PutClusterPolicyCommand.ts +++ b/clients/client-kafka/src/commands/PutClusterPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { PutClusterPolicyRequest, PutClusterPolicyResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { PutClusterPolicyRequest, PutClusterPolicyResponse } from "../models/models_0"; import { PutClusterPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/RebootBrokerCommand.ts b/clients/client-kafka/src/commands/RebootBrokerCommand.ts index 01dbc97f9b6d1..5d33a2ea2eae0 100644 --- a/clients/client-kafka/src/commands/RebootBrokerCommand.ts +++ b/clients/client-kafka/src/commands/RebootBrokerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { RebootBrokerRequest, RebootBrokerResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { RebootBrokerRequest, RebootBrokerResponse } from "../models/models_0"; import { RebootBroker } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/RejectClientVpcConnectionCommand.ts b/clients/client-kafka/src/commands/RejectClientVpcConnectionCommand.ts index ffdc049edac52..c87fc8fb2cf05 100644 --- a/clients/client-kafka/src/commands/RejectClientVpcConnectionCommand.ts +++ b/clients/client-kafka/src/commands/RejectClientVpcConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { RejectClientVpcConnectionRequest, RejectClientVpcConnectionResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { RejectClientVpcConnectionRequest, RejectClientVpcConnectionResponse } from "../models/models_0"; import { RejectClientVpcConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/TagResourceCommand.ts b/clients/client-kafka/src/commands/TagResourceCommand.ts index b4b909ef430e0..7d6144e954f15 100644 --- a/clients/client-kafka/src/commands/TagResourceCommand.ts +++ b/clients/client-kafka/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { TagResourceRequest } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UntagResourceCommand.ts b/clients/client-kafka/src/commands/UntagResourceCommand.ts index 765271c903f29..38ec36cad83fe 100644 --- a/clients/client-kafka/src/commands/UntagResourceCommand.ts +++ b/clients/client-kafka/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UntagResourceRequest } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateBrokerCountCommand.ts b/clients/client-kafka/src/commands/UpdateBrokerCountCommand.ts index d004ddf7b9812..7cbf4ac0e95e2 100644 --- a/clients/client-kafka/src/commands/UpdateBrokerCountCommand.ts +++ b/clients/client-kafka/src/commands/UpdateBrokerCountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateBrokerCountRequest, UpdateBrokerCountResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateBrokerCountRequest, UpdateBrokerCountResponse } from "../models/models_0"; import { UpdateBrokerCount } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateBrokerStorageCommand.ts b/clients/client-kafka/src/commands/UpdateBrokerStorageCommand.ts index 3ff681cfad03f..d5bab90aab936 100644 --- a/clients/client-kafka/src/commands/UpdateBrokerStorageCommand.ts +++ b/clients/client-kafka/src/commands/UpdateBrokerStorageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateBrokerStorageRequest, UpdateBrokerStorageResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateBrokerStorageRequest, UpdateBrokerStorageResponse } from "../models/models_0"; import { UpdateBrokerStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateBrokerTypeCommand.ts b/clients/client-kafka/src/commands/UpdateBrokerTypeCommand.ts index e2986ad53d3ea..6bfcaefdbf8e1 100644 --- a/clients/client-kafka/src/commands/UpdateBrokerTypeCommand.ts +++ b/clients/client-kafka/src/commands/UpdateBrokerTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateBrokerTypeRequest, UpdateBrokerTypeResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateBrokerTypeRequest, UpdateBrokerTypeResponse } from "../models/models_0"; import { UpdateBrokerType } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateClusterConfigurationCommand.ts b/clients/client-kafka/src/commands/UpdateClusterConfigurationCommand.ts index e207e553c0d4b..fe23a89bc2696 100644 --- a/clients/client-kafka/src/commands/UpdateClusterConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/UpdateClusterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateClusterConfigurationRequest, UpdateClusterConfigurationResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateClusterConfigurationRequest, UpdateClusterConfigurationResponse } from "../models/models_0"; import { UpdateClusterConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateClusterKafkaVersionCommand.ts b/clients/client-kafka/src/commands/UpdateClusterKafkaVersionCommand.ts index 35877d1b29388..d3841005af3eb 100644 --- a/clients/client-kafka/src/commands/UpdateClusterKafkaVersionCommand.ts +++ b/clients/client-kafka/src/commands/UpdateClusterKafkaVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateClusterKafkaVersionRequest, UpdateClusterKafkaVersionResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateClusterKafkaVersionRequest, UpdateClusterKafkaVersionResponse } from "../models/models_0"; import { UpdateClusterKafkaVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateConfigurationCommand.ts b/clients/client-kafka/src/commands/UpdateConfigurationCommand.ts index 6e0e3b413f661..282ce37768657 100644 --- a/clients/client-kafka/src/commands/UpdateConfigurationCommand.ts +++ b/clients/client-kafka/src/commands/UpdateConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateConfigurationRequest, UpdateConfigurationResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateConfigurationRequest, UpdateConfigurationResponse } from "../models/models_0"; import { UpdateConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateConnectivityCommand.ts b/clients/client-kafka/src/commands/UpdateConnectivityCommand.ts index 5e0c4af5129fe..d433526deb852 100644 --- a/clients/client-kafka/src/commands/UpdateConnectivityCommand.ts +++ b/clients/client-kafka/src/commands/UpdateConnectivityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateConnectivityRequest, UpdateConnectivityResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateConnectivityRequest, UpdateConnectivityResponse } from "../models/models_0"; import { UpdateConnectivity } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateMonitoringCommand.ts b/clients/client-kafka/src/commands/UpdateMonitoringCommand.ts index 263210fbae451..9e33d35e02887 100644 --- a/clients/client-kafka/src/commands/UpdateMonitoringCommand.ts +++ b/clients/client-kafka/src/commands/UpdateMonitoringCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateMonitoringRequest, UpdateMonitoringResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateMonitoringRequest, UpdateMonitoringResponse } from "../models/models_0"; import { UpdateMonitoring } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateRebalancingCommand.ts b/clients/client-kafka/src/commands/UpdateRebalancingCommand.ts index 66b658d40c978..b4e17ecf30746 100644 --- a/clients/client-kafka/src/commands/UpdateRebalancingCommand.ts +++ b/clients/client-kafka/src/commands/UpdateRebalancingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateRebalancingRequest, UpdateRebalancingResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateRebalancingRequest, UpdateRebalancingResponse } from "../models/models_0"; import { UpdateRebalancing } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateReplicationInfoCommand.ts b/clients/client-kafka/src/commands/UpdateReplicationInfoCommand.ts index bfa98504016c6..08826696ea5d8 100644 --- a/clients/client-kafka/src/commands/UpdateReplicationInfoCommand.ts +++ b/clients/client-kafka/src/commands/UpdateReplicationInfoCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateReplicationInfoRequest, UpdateReplicationInfoResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateReplicationInfoRequest, UpdateReplicationInfoResponse } from "../models/models_0"; import { UpdateReplicationInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateSecurityCommand.ts b/clients/client-kafka/src/commands/UpdateSecurityCommand.ts index 1c6ded7b6cc93..4c3a988fbf322 100644 --- a/clients/client-kafka/src/commands/UpdateSecurityCommand.ts +++ b/clients/client-kafka/src/commands/UpdateSecurityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateSecurityRequest, UpdateSecurityResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateSecurityRequest, UpdateSecurityResponse } from "../models/models_0"; import { UpdateSecurity } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/commands/UpdateStorageCommand.ts b/clients/client-kafka/src/commands/UpdateStorageCommand.ts index c6e212fa664a2..17c098b72db70 100644 --- a/clients/client-kafka/src/commands/UpdateStorageCommand.ts +++ b/clients/client-kafka/src/commands/UpdateStorageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; -import { UpdateStorageRequest, UpdateStorageResponse } from "../models/models_0"; +import type { KafkaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaClient"; +import type { UpdateStorageRequest, UpdateStorageResponse } from "../models/models_0"; import { UpdateStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafka/src/endpoint/EndpointParameters.ts b/clients/client-kafka/src/endpoint/EndpointParameters.ts index 1afe78a90e44e..06e1a32ab57b8 100644 --- a/clients/client-kafka/src/endpoint/EndpointParameters.ts +++ b/clients/client-kafka/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kafka/src/endpoint/endpointResolver.ts b/clients/client-kafka/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kafka/src/endpoint/endpointResolver.ts +++ b/clients/client-kafka/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kafka/src/extensionConfiguration.ts b/clients/client-kafka/src/extensionConfiguration.ts index 1a1ddd9e3cda8..26852d9518f3f 100644 --- a/clients/client-kafka/src/extensionConfiguration.ts +++ b/clients/client-kafka/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kafka/src/models/KafkaServiceException.ts b/clients/client-kafka/src/models/KafkaServiceException.ts index 21306b8c2add7..8d99dd8936127 100644 --- a/clients/client-kafka/src/models/KafkaServiceException.ts +++ b/clients/client-kafka/src/models/KafkaServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kafka/src/models/errors.ts b/clients/client-kafka/src/models/errors.ts index c65d0095d3f7f..0f5aa28701613 100644 --- a/clients/client-kafka/src/models/errors.ts +++ b/clients/client-kafka/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KafkaServiceException as __BaseException } from "./KafkaServiceException"; diff --git a/clients/client-kafka/src/pagination/DescribeTopicPartitionsPaginator.ts b/clients/client-kafka/src/pagination/DescribeTopicPartitionsPaginator.ts index 13e05810d6ac8..53f06a84f90d0 100644 --- a/clients/client-kafka/src/pagination/DescribeTopicPartitionsPaginator.ts +++ b/clients/client-kafka/src/pagination/DescribeTopicPartitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTopicPartitionsCommand, diff --git a/clients/client-kafka/src/pagination/Interfaces.ts b/clients/client-kafka/src/pagination/Interfaces.ts index 384397b3f0297..437334cd0a5f1 100644 --- a/clients/client-kafka/src/pagination/Interfaces.ts +++ b/clients/client-kafka/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KafkaClient } from "../KafkaClient"; diff --git a/clients/client-kafka/src/pagination/ListClientVpcConnectionsPaginator.ts b/clients/client-kafka/src/pagination/ListClientVpcConnectionsPaginator.ts index 451ab6da7ae75..c4f309beddbf4 100644 --- a/clients/client-kafka/src/pagination/ListClientVpcConnectionsPaginator.ts +++ b/clients/client-kafka/src/pagination/ListClientVpcConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClientVpcConnectionsCommand, diff --git a/clients/client-kafka/src/pagination/ListClusterOperationsPaginator.ts b/clients/client-kafka/src/pagination/ListClusterOperationsPaginator.ts index 549eb17324a14..2223d7ecda3b7 100644 --- a/clients/client-kafka/src/pagination/ListClusterOperationsPaginator.ts +++ b/clients/client-kafka/src/pagination/ListClusterOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClusterOperationsCommand, diff --git a/clients/client-kafka/src/pagination/ListClusterOperationsV2Paginator.ts b/clients/client-kafka/src/pagination/ListClusterOperationsV2Paginator.ts index e7eaf57843bcb..9081fda4a5ec2 100644 --- a/clients/client-kafka/src/pagination/ListClusterOperationsV2Paginator.ts +++ b/clients/client-kafka/src/pagination/ListClusterOperationsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClusterOperationsV2Command, diff --git a/clients/client-kafka/src/pagination/ListClustersPaginator.ts b/clients/client-kafka/src/pagination/ListClustersPaginator.ts index 3d9a9c0831aec..0e6486cda8557 100644 --- a/clients/client-kafka/src/pagination/ListClustersPaginator.ts +++ b/clients/client-kafka/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-kafka/src/pagination/ListClustersV2Paginator.ts b/clients/client-kafka/src/pagination/ListClustersV2Paginator.ts index 37539bbf627ec..a551781afaace 100644 --- a/clients/client-kafka/src/pagination/ListClustersV2Paginator.ts +++ b/clients/client-kafka/src/pagination/ListClustersV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersV2Command, diff --git a/clients/client-kafka/src/pagination/ListConfigurationRevisionsPaginator.ts b/clients/client-kafka/src/pagination/ListConfigurationRevisionsPaginator.ts index 9c2f5fcff3962..c420bce9a714d 100644 --- a/clients/client-kafka/src/pagination/ListConfigurationRevisionsPaginator.ts +++ b/clients/client-kafka/src/pagination/ListConfigurationRevisionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationRevisionsCommand, diff --git a/clients/client-kafka/src/pagination/ListConfigurationsPaginator.ts b/clients/client-kafka/src/pagination/ListConfigurationsPaginator.ts index 8496d07a77f68..217bbf77c765d 100644 --- a/clients/client-kafka/src/pagination/ListConfigurationsPaginator.ts +++ b/clients/client-kafka/src/pagination/ListConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationsCommand, diff --git a/clients/client-kafka/src/pagination/ListKafkaVersionsPaginator.ts b/clients/client-kafka/src/pagination/ListKafkaVersionsPaginator.ts index a1f33d1301fc9..d40a63f203494 100644 --- a/clients/client-kafka/src/pagination/ListKafkaVersionsPaginator.ts +++ b/clients/client-kafka/src/pagination/ListKafkaVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKafkaVersionsCommand, diff --git a/clients/client-kafka/src/pagination/ListNodesPaginator.ts b/clients/client-kafka/src/pagination/ListNodesPaginator.ts index f1a71e425b17a..5527c8fbaa9c7 100644 --- a/clients/client-kafka/src/pagination/ListNodesPaginator.ts +++ b/clients/client-kafka/src/pagination/ListNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNodesCommand, ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand"; import { KafkaClient } from "../KafkaClient"; diff --git a/clients/client-kafka/src/pagination/ListReplicatorsPaginator.ts b/clients/client-kafka/src/pagination/ListReplicatorsPaginator.ts index b60da4fa32399..a8a1452bf4566 100644 --- a/clients/client-kafka/src/pagination/ListReplicatorsPaginator.ts +++ b/clients/client-kafka/src/pagination/ListReplicatorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReplicatorsCommand, diff --git a/clients/client-kafka/src/pagination/ListScramSecretsPaginator.ts b/clients/client-kafka/src/pagination/ListScramSecretsPaginator.ts index 17ab9f77a18d2..c9fe8c6d1a8e4 100644 --- a/clients/client-kafka/src/pagination/ListScramSecretsPaginator.ts +++ b/clients/client-kafka/src/pagination/ListScramSecretsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListScramSecretsCommand, diff --git a/clients/client-kafka/src/pagination/ListTopicsPaginator.ts b/clients/client-kafka/src/pagination/ListTopicsPaginator.ts index fff17d0e29da8..8f41c7689745e 100644 --- a/clients/client-kafka/src/pagination/ListTopicsPaginator.ts +++ b/clients/client-kafka/src/pagination/ListTopicsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTopicsCommand, ListTopicsCommandInput, ListTopicsCommandOutput } from "../commands/ListTopicsCommand"; import { KafkaClient } from "../KafkaClient"; diff --git a/clients/client-kafka/src/pagination/ListVpcConnectionsPaginator.ts b/clients/client-kafka/src/pagination/ListVpcConnectionsPaginator.ts index 05ee27a963189..a0e963b5e6529 100644 --- a/clients/client-kafka/src/pagination/ListVpcConnectionsPaginator.ts +++ b/clients/client-kafka/src/pagination/ListVpcConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVpcConnectionsCommand, diff --git a/clients/client-kafka/src/runtimeConfig.browser.ts b/clients/client-kafka/src/runtimeConfig.browser.ts index 36e4c2258ed51..b69cdccf21266 100644 --- a/clients/client-kafka/src/runtimeConfig.browser.ts +++ b/clients/client-kafka/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KafkaClientConfig } from "./KafkaClient"; + +import type { KafkaClientConfig } from "./KafkaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kafka/src/runtimeConfig.native.ts b/clients/client-kafka/src/runtimeConfig.native.ts index 58384846a6805..684c100ae9d50 100644 --- a/clients/client-kafka/src/runtimeConfig.native.ts +++ b/clients/client-kafka/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KafkaClientConfig } from "./KafkaClient"; +import type { KafkaClientConfig } from "./KafkaClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kafka/src/runtimeConfig.shared.ts b/clients/client-kafka/src/runtimeConfig.shared.ts index 2add246afb6fd..9ac41fe787da6 100644 --- a/clients/client-kafka/src/runtimeConfig.shared.ts +++ b/clients/client-kafka/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKafkaHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KafkaClientConfig } from "./KafkaClient"; +import type { KafkaClientConfig } from "./KafkaClient"; /** * @internal diff --git a/clients/client-kafka/src/runtimeConfig.ts b/clients/client-kafka/src/runtimeConfig.ts index e938ea5c2c60a..7d3f932824bfa 100644 --- a/clients/client-kafka/src/runtimeConfig.ts +++ b/clients/client-kafka/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KafkaClientConfig } from "./KafkaClient"; + +import type { KafkaClientConfig } from "./KafkaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kafka/src/runtimeExtensions.ts b/clients/client-kafka/src/runtimeExtensions.ts index 11635dd9c4aa6..d5a7b256e1d10 100644 --- a/clients/client-kafka/src/runtimeExtensions.ts +++ b/clients/client-kafka/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KafkaExtensionConfiguration } from "./extensionConfiguration"; +import type { KafkaExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kafka/src/schemas/schemas_0.ts b/clients/client-kafka/src/schemas/schemas_0.ts index ab5da5469e30b..27f758ced7be8 100644 --- a/clients/client-kafka/src/schemas/schemas_0.ts +++ b/clients/client-kafka/src/schemas/schemas_0.ts @@ -674,7 +674,7 @@ const n0 = "com.amazonaws.kafka"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-kafkaconnect/package.json b/clients/client-kafkaconnect/package.json index 10812c91059d2..b182ae9a1c48e 100644 --- a/clients/client-kafkaconnect/package.json +++ b/clients/client-kafkaconnect/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kafkaconnect/src/KafkaConnect.ts b/clients/client-kafkaconnect/src/KafkaConnect.ts index 852a4adc793a4..98061c9abab75 100644 --- a/clients/client-kafkaconnect/src/KafkaConnect.ts +++ b/clients/client-kafkaconnect/src/KafkaConnect.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateConnectorCommand, @@ -88,7 +88,7 @@ import { UpdateConnectorCommandInput, UpdateConnectorCommandOutput, } from "./commands/UpdateConnectorCommand"; -import { KafkaConnectClient, KafkaConnectClientConfig } from "./KafkaConnectClient"; +import { KafkaConnectClient } from "./KafkaConnectClient"; const commands = { CreateConnectorCommand, diff --git a/clients/client-kafkaconnect/src/KafkaConnectClient.ts b/clients/client-kafkaconnect/src/KafkaConnectClient.ts index 73874eede8f54..6b64f157b1a92 100644 --- a/clients/client-kafkaconnect/src/KafkaConnectClient.ts +++ b/clients/client-kafkaconnect/src/KafkaConnectClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKafkaConnectHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./commands/CreateConnectorCommand"; @@ -106,7 +115,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kafkaconnect/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kafkaconnect/src/auth/httpAuthExtensionConfiguration.ts index 3b37da738734f..b318fdbb5a096 100644 --- a/clients/client-kafkaconnect/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kafkaconnect/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KafkaConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KafkaConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kafkaconnect/src/auth/httpAuthSchemeProvider.ts b/clients/client-kafkaconnect/src/auth/httpAuthSchemeProvider.ts index df3ad9672192f..ed6f35ac29dfd 100644 --- a/clients/client-kafkaconnect/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kafkaconnect/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KafkaConnectClientConfig, KafkaConnectClientResolvedConfig } from "../KafkaConnectClient"; +import { type KafkaConnectClientResolvedConfig, KafkaConnectClientConfig } from "../KafkaConnectClient"; /** * @internal diff --git a/clients/client-kafkaconnect/src/commands/CreateConnectorCommand.ts b/clients/client-kafkaconnect/src/commands/CreateConnectorCommand.ts index 430d0d28a9ba1..b1eb5a7e87d3b 100644 --- a/clients/client-kafkaconnect/src/commands/CreateConnectorCommand.ts +++ b/clients/client-kafkaconnect/src/commands/CreateConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0"; import { CreateConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/CreateCustomPluginCommand.ts b/clients/client-kafkaconnect/src/commands/CreateCustomPluginCommand.ts index fc80869a5638b..b0f378cd4294d 100644 --- a/clients/client-kafkaconnect/src/commands/CreateCustomPluginCommand.ts +++ b/clients/client-kafkaconnect/src/commands/CreateCustomPluginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { CreateCustomPluginRequest, CreateCustomPluginResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { CreateCustomPluginRequest, CreateCustomPluginResponse } from "../models/models_0"; import { CreateCustomPlugin } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/CreateWorkerConfigurationCommand.ts b/clients/client-kafkaconnect/src/commands/CreateWorkerConfigurationCommand.ts index 37cf8ab99aaa2..42d78735d07d7 100644 --- a/clients/client-kafkaconnect/src/commands/CreateWorkerConfigurationCommand.ts +++ b/clients/client-kafkaconnect/src/commands/CreateWorkerConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { CreateWorkerConfigurationRequest, CreateWorkerConfigurationResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { CreateWorkerConfigurationRequest, CreateWorkerConfigurationResponse } from "../models/models_0"; import { CreateWorkerConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/DeleteConnectorCommand.ts b/clients/client-kafkaconnect/src/commands/DeleteConnectorCommand.ts index 06c6e2a3f3fb8..baaf509c7dbfa 100644 --- a/clients/client-kafkaconnect/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DeleteConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { DeleteConnectorRequest, DeleteConnectorResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { DeleteConnectorRequest, DeleteConnectorResponse } from "../models/models_0"; import { DeleteConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/DeleteCustomPluginCommand.ts b/clients/client-kafkaconnect/src/commands/DeleteCustomPluginCommand.ts index 09d5bc7669b9b..e236e561af1c8 100644 --- a/clients/client-kafkaconnect/src/commands/DeleteCustomPluginCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DeleteCustomPluginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { DeleteCustomPluginRequest, DeleteCustomPluginResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { DeleteCustomPluginRequest, DeleteCustomPluginResponse } from "../models/models_0"; import { DeleteCustomPlugin } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/DeleteWorkerConfigurationCommand.ts b/clients/client-kafkaconnect/src/commands/DeleteWorkerConfigurationCommand.ts index ac8caf1ac6320..67621c395c55a 100644 --- a/clients/client-kafkaconnect/src/commands/DeleteWorkerConfigurationCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DeleteWorkerConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { DeleteWorkerConfigurationRequest, DeleteWorkerConfigurationResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { DeleteWorkerConfigurationRequest, DeleteWorkerConfigurationResponse } from "../models/models_0"; import { DeleteWorkerConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/DescribeConnectorCommand.ts b/clients/client-kafkaconnect/src/commands/DescribeConnectorCommand.ts index b9a47fa561d53..c6a29e0966b82 100644 --- a/clients/client-kafkaconnect/src/commands/DescribeConnectorCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DescribeConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0"; import { DescribeConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/DescribeConnectorOperationCommand.ts b/clients/client-kafkaconnect/src/commands/DescribeConnectorOperationCommand.ts index b9f913ece0ee6..f9e79d9ee34ca 100644 --- a/clients/client-kafkaconnect/src/commands/DescribeConnectorOperationCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DescribeConnectorOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { DescribeConnectorOperationRequest, DescribeConnectorOperationResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { DescribeConnectorOperationRequest, DescribeConnectorOperationResponse } from "../models/models_0"; import { DescribeConnectorOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/DescribeCustomPluginCommand.ts b/clients/client-kafkaconnect/src/commands/DescribeCustomPluginCommand.ts index 48851accce50a..73ae36c085af1 100644 --- a/clients/client-kafkaconnect/src/commands/DescribeCustomPluginCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DescribeCustomPluginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { DescribeCustomPluginRequest, DescribeCustomPluginResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { DescribeCustomPluginRequest, DescribeCustomPluginResponse } from "../models/models_0"; import { DescribeCustomPlugin } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/DescribeWorkerConfigurationCommand.ts b/clients/client-kafkaconnect/src/commands/DescribeWorkerConfigurationCommand.ts index 2bfbb36e49b96..a19aa12e07904 100644 --- a/clients/client-kafkaconnect/src/commands/DescribeWorkerConfigurationCommand.ts +++ b/clients/client-kafkaconnect/src/commands/DescribeWorkerConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { DescribeWorkerConfigurationRequest, DescribeWorkerConfigurationResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { DescribeWorkerConfigurationRequest, DescribeWorkerConfigurationResponse } from "../models/models_0"; import { DescribeWorkerConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/ListConnectorOperationsCommand.ts b/clients/client-kafkaconnect/src/commands/ListConnectorOperationsCommand.ts index 87ef58dc54ae6..e344e5c401c95 100644 --- a/clients/client-kafkaconnect/src/commands/ListConnectorOperationsCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListConnectorOperationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { ListConnectorOperationsRequest, ListConnectorOperationsResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { ListConnectorOperationsRequest, ListConnectorOperationsResponse } from "../models/models_0"; import { ListConnectorOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/ListConnectorsCommand.ts b/clients/client-kafkaconnect/src/commands/ListConnectorsCommand.ts index 6c2d277f056ff..97f685a17ddc6 100644 --- a/clients/client-kafkaconnect/src/commands/ListConnectorsCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListConnectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; import { ListConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/ListCustomPluginsCommand.ts b/clients/client-kafkaconnect/src/commands/ListCustomPluginsCommand.ts index 129ef638b7d51..e859dd3248196 100644 --- a/clients/client-kafkaconnect/src/commands/ListCustomPluginsCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListCustomPluginsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { ListCustomPluginsRequest, ListCustomPluginsResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { ListCustomPluginsRequest, ListCustomPluginsResponse } from "../models/models_0"; import { ListCustomPlugins } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/ListTagsForResourceCommand.ts b/clients/client-kafkaconnect/src/commands/ListTagsForResourceCommand.ts index ba8d198242235..c3b586de7adfb 100644 --- a/clients/client-kafkaconnect/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/ListWorkerConfigurationsCommand.ts b/clients/client-kafkaconnect/src/commands/ListWorkerConfigurationsCommand.ts index 8088a4fb15be7..b8668af90d1c7 100644 --- a/clients/client-kafkaconnect/src/commands/ListWorkerConfigurationsCommand.ts +++ b/clients/client-kafkaconnect/src/commands/ListWorkerConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { ListWorkerConfigurationsRequest, ListWorkerConfigurationsResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { ListWorkerConfigurationsRequest, ListWorkerConfigurationsResponse } from "../models/models_0"; import { ListWorkerConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/TagResourceCommand.ts b/clients/client-kafkaconnect/src/commands/TagResourceCommand.ts index 53d20c28be6dd..27a3667820354 100644 --- a/clients/client-kafkaconnect/src/commands/TagResourceCommand.ts +++ b/clients/client-kafkaconnect/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/UntagResourceCommand.ts b/clients/client-kafkaconnect/src/commands/UntagResourceCommand.ts index 4be5f13b3dd66..ce9811bcebd31 100644 --- a/clients/client-kafkaconnect/src/commands/UntagResourceCommand.ts +++ b/clients/client-kafkaconnect/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/commands/UpdateConnectorCommand.ts b/clients/client-kafkaconnect/src/commands/UpdateConnectorCommand.ts index f20a3c3e33e1b..92c3303b928da 100644 --- a/clients/client-kafkaconnect/src/commands/UpdateConnectorCommand.ts +++ b/clients/client-kafkaconnect/src/commands/UpdateConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; -import { UpdateConnectorRequest, UpdateConnectorResponse } from "../models/models_0"; +import type { KafkaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KafkaConnectClient"; +import type { UpdateConnectorRequest, UpdateConnectorResponse } from "../models/models_0"; import { UpdateConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-kafkaconnect/src/endpoint/EndpointParameters.ts b/clients/client-kafkaconnect/src/endpoint/EndpointParameters.ts index 231e17a25edd8..1abce5ea35e8c 100644 --- a/clients/client-kafkaconnect/src/endpoint/EndpointParameters.ts +++ b/clients/client-kafkaconnect/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kafkaconnect/src/endpoint/endpointResolver.ts b/clients/client-kafkaconnect/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kafkaconnect/src/endpoint/endpointResolver.ts +++ b/clients/client-kafkaconnect/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kafkaconnect/src/extensionConfiguration.ts b/clients/client-kafkaconnect/src/extensionConfiguration.ts index ec26872627635..b0c7e0c8cb836 100644 --- a/clients/client-kafkaconnect/src/extensionConfiguration.ts +++ b/clients/client-kafkaconnect/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kafkaconnect/src/models/KafkaConnectServiceException.ts b/clients/client-kafkaconnect/src/models/KafkaConnectServiceException.ts index 7730c3db530b7..2b4e41b092536 100644 --- a/clients/client-kafkaconnect/src/models/KafkaConnectServiceException.ts +++ b/clients/client-kafkaconnect/src/models/KafkaConnectServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kafkaconnect/src/models/errors.ts b/clients/client-kafkaconnect/src/models/errors.ts index 127bb20bd5a98..220b34f8c171b 100644 --- a/clients/client-kafkaconnect/src/models/errors.ts +++ b/clients/client-kafkaconnect/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KafkaConnectServiceException as __BaseException } from "./KafkaConnectServiceException"; diff --git a/clients/client-kafkaconnect/src/pagination/Interfaces.ts b/clients/client-kafkaconnect/src/pagination/Interfaces.ts index 99d47eae64741..0c3baa059fa75 100644 --- a/clients/client-kafkaconnect/src/pagination/Interfaces.ts +++ b/clients/client-kafkaconnect/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KafkaConnectClient } from "../KafkaConnectClient"; diff --git a/clients/client-kafkaconnect/src/pagination/ListConnectorOperationsPaginator.ts b/clients/client-kafkaconnect/src/pagination/ListConnectorOperationsPaginator.ts index 77cd17142a675..316adb7b46b50 100644 --- a/clients/client-kafkaconnect/src/pagination/ListConnectorOperationsPaginator.ts +++ b/clients/client-kafkaconnect/src/pagination/ListConnectorOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectorOperationsCommand, diff --git a/clients/client-kafkaconnect/src/pagination/ListConnectorsPaginator.ts b/clients/client-kafkaconnect/src/pagination/ListConnectorsPaginator.ts index a031d3a6770a0..d2de27e5ebb1b 100644 --- a/clients/client-kafkaconnect/src/pagination/ListConnectorsPaginator.ts +++ b/clients/client-kafkaconnect/src/pagination/ListConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectorsCommand, diff --git a/clients/client-kafkaconnect/src/pagination/ListCustomPluginsPaginator.ts b/clients/client-kafkaconnect/src/pagination/ListCustomPluginsPaginator.ts index 216acd900e589..e268d44a05d2e 100644 --- a/clients/client-kafkaconnect/src/pagination/ListCustomPluginsPaginator.ts +++ b/clients/client-kafkaconnect/src/pagination/ListCustomPluginsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomPluginsCommand, diff --git a/clients/client-kafkaconnect/src/pagination/ListWorkerConfigurationsPaginator.ts b/clients/client-kafkaconnect/src/pagination/ListWorkerConfigurationsPaginator.ts index c3168a4470073..c7e6b13a1c73b 100644 --- a/clients/client-kafkaconnect/src/pagination/ListWorkerConfigurationsPaginator.ts +++ b/clients/client-kafkaconnect/src/pagination/ListWorkerConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkerConfigurationsCommand, diff --git a/clients/client-kafkaconnect/src/runtimeConfig.browser.ts b/clients/client-kafkaconnect/src/runtimeConfig.browser.ts index f6e8d5c0ba3c9..c04efca3cceaf 100644 --- a/clients/client-kafkaconnect/src/runtimeConfig.browser.ts +++ b/clients/client-kafkaconnect/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KafkaConnectClientConfig } from "./KafkaConnectClient"; + +import type { KafkaConnectClientConfig } from "./KafkaConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kafkaconnect/src/runtimeConfig.native.ts b/clients/client-kafkaconnect/src/runtimeConfig.native.ts index 1ab9448c6a9d9..0558ecd037fbe 100644 --- a/clients/client-kafkaconnect/src/runtimeConfig.native.ts +++ b/clients/client-kafkaconnect/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KafkaConnectClientConfig } from "./KafkaConnectClient"; +import type { KafkaConnectClientConfig } from "./KafkaConnectClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kafkaconnect/src/runtimeConfig.shared.ts b/clients/client-kafkaconnect/src/runtimeConfig.shared.ts index f3464b4957077..e19de0ed00d84 100644 --- a/clients/client-kafkaconnect/src/runtimeConfig.shared.ts +++ b/clients/client-kafkaconnect/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKafkaConnectHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KafkaConnectClientConfig } from "./KafkaConnectClient"; +import type { KafkaConnectClientConfig } from "./KafkaConnectClient"; /** * @internal diff --git a/clients/client-kafkaconnect/src/runtimeConfig.ts b/clients/client-kafkaconnect/src/runtimeConfig.ts index 6ec1d22a06717..61cdab1b56216 100644 --- a/clients/client-kafkaconnect/src/runtimeConfig.ts +++ b/clients/client-kafkaconnect/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KafkaConnectClientConfig } from "./KafkaConnectClient"; + +import type { KafkaConnectClientConfig } from "./KafkaConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kafkaconnect/src/runtimeExtensions.ts b/clients/client-kafkaconnect/src/runtimeExtensions.ts index bdcde0e01a316..19fc1b39d9a08 100644 --- a/clients/client-kafkaconnect/src/runtimeExtensions.ts +++ b/clients/client-kafkaconnect/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KafkaConnectExtensionConfiguration } from "./extensionConfiguration"; +import type { KafkaConnectExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kafkaconnect/src/schemas/schemas_0.ts b/clients/client-kafkaconnect/src/schemas/schemas_0.ts index 164675d3b14fc..3295c637a27e9 100644 --- a/clients/client-kafkaconnect/src/schemas/schemas_0.ts +++ b/clients/client-kafkaconnect/src/schemas/schemas_0.ts @@ -223,7 +223,7 @@ const n0 = "com.amazonaws.kafkaconnect"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-kendra-ranking/package.json b/clients/client-kendra-ranking/package.json index 8af6e1e57d5a7..3b6a91e694f64 100644 --- a/clients/client-kendra-ranking/package.json +++ b/clients/client-kendra-ranking/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kendra-ranking/src/KendraRanking.ts b/clients/client-kendra-ranking/src/KendraRanking.ts index 5c73892baf3d0..345ebee9701b4 100644 --- a/clients/client-kendra-ranking/src/KendraRanking.ts +++ b/clients/client-kendra-ranking/src/KendraRanking.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateRescoreExecutionPlanCommand, @@ -39,7 +39,7 @@ import { UpdateRescoreExecutionPlanCommandInput, UpdateRescoreExecutionPlanCommandOutput, } from "./commands/UpdateRescoreExecutionPlanCommand"; -import { KendraRankingClient, KendraRankingClientConfig } from "./KendraRankingClient"; +import { KendraRankingClient } from "./KendraRankingClient"; const commands = { CreateRescoreExecutionPlanCommand, diff --git a/clients/client-kendra-ranking/src/KendraRankingClient.ts b/clients/client-kendra-ranking/src/KendraRankingClient.ts index f775f62de4eae..1fc498852e625 100644 --- a/clients/client-kendra-ranking/src/KendraRankingClient.ts +++ b/clients/client-kendra-ranking/src/KendraRankingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKendraRankingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -91,7 +100,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kendra-ranking/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kendra-ranking/src/auth/httpAuthExtensionConfiguration.ts index 64ef3e35fc6a9..bf16cbde191cd 100644 --- a/clients/client-kendra-ranking/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kendra-ranking/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KendraRankingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KendraRankingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kendra-ranking/src/auth/httpAuthSchemeProvider.ts b/clients/client-kendra-ranking/src/auth/httpAuthSchemeProvider.ts index 7b1a318ef1e64..be13e3a56b085 100644 --- a/clients/client-kendra-ranking/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kendra-ranking/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KendraRankingClientConfig, KendraRankingClientResolvedConfig } from "../KendraRankingClient"; +import { type KendraRankingClientResolvedConfig, KendraRankingClientConfig } from "../KendraRankingClient"; /** * @internal diff --git a/clients/client-kendra-ranking/src/commands/CreateRescoreExecutionPlanCommand.ts b/clients/client-kendra-ranking/src/commands/CreateRescoreExecutionPlanCommand.ts index cf597bc89dd9e..857120293ec13 100644 --- a/clients/client-kendra-ranking/src/commands/CreateRescoreExecutionPlanCommand.ts +++ b/clients/client-kendra-ranking/src/commands/CreateRescoreExecutionPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; -import { CreateRescoreExecutionPlanRequest, CreateRescoreExecutionPlanResponse } from "../models/models_0"; +import type { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; +import type { CreateRescoreExecutionPlanRequest, CreateRescoreExecutionPlanResponse } from "../models/models_0"; import { CreateRescoreExecutionPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra-ranking/src/commands/DeleteRescoreExecutionPlanCommand.ts b/clients/client-kendra-ranking/src/commands/DeleteRescoreExecutionPlanCommand.ts index d32dfc8a155b1..4e263ff460e82 100644 --- a/clients/client-kendra-ranking/src/commands/DeleteRescoreExecutionPlanCommand.ts +++ b/clients/client-kendra-ranking/src/commands/DeleteRescoreExecutionPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; -import { DeleteRescoreExecutionPlanRequest } from "../models/models_0"; +import type { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; +import type { DeleteRescoreExecutionPlanRequest } from "../models/models_0"; import { DeleteRescoreExecutionPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra-ranking/src/commands/DescribeRescoreExecutionPlanCommand.ts b/clients/client-kendra-ranking/src/commands/DescribeRescoreExecutionPlanCommand.ts index facdf3652a2dd..fd9f0cd461bb2 100644 --- a/clients/client-kendra-ranking/src/commands/DescribeRescoreExecutionPlanCommand.ts +++ b/clients/client-kendra-ranking/src/commands/DescribeRescoreExecutionPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; -import { DescribeRescoreExecutionPlanRequest, DescribeRescoreExecutionPlanResponse } from "../models/models_0"; +import type { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; +import type { DescribeRescoreExecutionPlanRequest, DescribeRescoreExecutionPlanResponse } from "../models/models_0"; import { DescribeRescoreExecutionPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra-ranking/src/commands/ListRescoreExecutionPlansCommand.ts b/clients/client-kendra-ranking/src/commands/ListRescoreExecutionPlansCommand.ts index 6b831a68351ba..ba8ae55a30a40 100644 --- a/clients/client-kendra-ranking/src/commands/ListRescoreExecutionPlansCommand.ts +++ b/clients/client-kendra-ranking/src/commands/ListRescoreExecutionPlansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; -import { ListRescoreExecutionPlansRequest, ListRescoreExecutionPlansResponse } from "../models/models_0"; +import type { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; +import type { ListRescoreExecutionPlansRequest, ListRescoreExecutionPlansResponse } from "../models/models_0"; import { ListRescoreExecutionPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra-ranking/src/commands/ListTagsForResourceCommand.ts b/clients/client-kendra-ranking/src/commands/ListTagsForResourceCommand.ts index 68d9d83fc85b4..e8421e40f6253 100644 --- a/clients/client-kendra-ranking/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kendra-ranking/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra-ranking/src/commands/RescoreCommand.ts b/clients/client-kendra-ranking/src/commands/RescoreCommand.ts index 9c633513d35a7..8ddf4e52adbae 100644 --- a/clients/client-kendra-ranking/src/commands/RescoreCommand.ts +++ b/clients/client-kendra-ranking/src/commands/RescoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; -import { RescoreRequest, RescoreResult } from "../models/models_0"; +import type { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; +import type { RescoreRequest, RescoreResult } from "../models/models_0"; import { Rescore } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra-ranking/src/commands/TagResourceCommand.ts b/clients/client-kendra-ranking/src/commands/TagResourceCommand.ts index b2b6a5a70539f..3647c94b723f0 100644 --- a/clients/client-kendra-ranking/src/commands/TagResourceCommand.ts +++ b/clients/client-kendra-ranking/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra-ranking/src/commands/UntagResourceCommand.ts b/clients/client-kendra-ranking/src/commands/UntagResourceCommand.ts index 6b5622f312cca..f496f4b5f5fb1 100644 --- a/clients/client-kendra-ranking/src/commands/UntagResourceCommand.ts +++ b/clients/client-kendra-ranking/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra-ranking/src/commands/UpdateRescoreExecutionPlanCommand.ts b/clients/client-kendra-ranking/src/commands/UpdateRescoreExecutionPlanCommand.ts index 20f00b39b5f8e..c2f07bdc831c9 100644 --- a/clients/client-kendra-ranking/src/commands/UpdateRescoreExecutionPlanCommand.ts +++ b/clients/client-kendra-ranking/src/commands/UpdateRescoreExecutionPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; -import { UpdateRescoreExecutionPlanRequest } from "../models/models_0"; +import type { KendraRankingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraRankingClient"; +import type { UpdateRescoreExecutionPlanRequest } from "../models/models_0"; import { UpdateRescoreExecutionPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra-ranking/src/endpoint/EndpointParameters.ts b/clients/client-kendra-ranking/src/endpoint/EndpointParameters.ts index a9ab27a7ab5d3..5e57c8451a8fe 100644 --- a/clients/client-kendra-ranking/src/endpoint/EndpointParameters.ts +++ b/clients/client-kendra-ranking/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kendra-ranking/src/endpoint/endpointResolver.ts b/clients/client-kendra-ranking/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-kendra-ranking/src/endpoint/endpointResolver.ts +++ b/clients/client-kendra-ranking/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kendra-ranking/src/extensionConfiguration.ts b/clients/client-kendra-ranking/src/extensionConfiguration.ts index 08392fa1207dd..7048df37ffc48 100644 --- a/clients/client-kendra-ranking/src/extensionConfiguration.ts +++ b/clients/client-kendra-ranking/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kendra-ranking/src/models/KendraRankingServiceException.ts b/clients/client-kendra-ranking/src/models/KendraRankingServiceException.ts index ed8456783d8d3..9c4134db83d16 100644 --- a/clients/client-kendra-ranking/src/models/KendraRankingServiceException.ts +++ b/clients/client-kendra-ranking/src/models/KendraRankingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kendra-ranking/src/models/errors.ts b/clients/client-kendra-ranking/src/models/errors.ts index 02b38eabceec3..3f6d128265319 100644 --- a/clients/client-kendra-ranking/src/models/errors.ts +++ b/clients/client-kendra-ranking/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KendraRankingServiceException as __BaseException } from "./KendraRankingServiceException"; diff --git a/clients/client-kendra-ranking/src/pagination/Interfaces.ts b/clients/client-kendra-ranking/src/pagination/Interfaces.ts index 63690412be2ee..c261dd9a348b8 100644 --- a/clients/client-kendra-ranking/src/pagination/Interfaces.ts +++ b/clients/client-kendra-ranking/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KendraRankingClient } from "../KendraRankingClient"; diff --git a/clients/client-kendra-ranking/src/pagination/ListRescoreExecutionPlansPaginator.ts b/clients/client-kendra-ranking/src/pagination/ListRescoreExecutionPlansPaginator.ts index 07ef630b03e41..fd2cc557573bb 100644 --- a/clients/client-kendra-ranking/src/pagination/ListRescoreExecutionPlansPaginator.ts +++ b/clients/client-kendra-ranking/src/pagination/ListRescoreExecutionPlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRescoreExecutionPlansCommand, diff --git a/clients/client-kendra-ranking/src/runtimeConfig.browser.ts b/clients/client-kendra-ranking/src/runtimeConfig.browser.ts index 720115fd27494..ec2e36b388fcb 100644 --- a/clients/client-kendra-ranking/src/runtimeConfig.browser.ts +++ b/clients/client-kendra-ranking/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KendraRankingClientConfig } from "./KendraRankingClient"; + +import type { KendraRankingClientConfig } from "./KendraRankingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kendra-ranking/src/runtimeConfig.native.ts b/clients/client-kendra-ranking/src/runtimeConfig.native.ts index b03a7010e9b45..8ebf36bc8de44 100644 --- a/clients/client-kendra-ranking/src/runtimeConfig.native.ts +++ b/clients/client-kendra-ranking/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KendraRankingClientConfig } from "./KendraRankingClient"; +import type { KendraRankingClientConfig } from "./KendraRankingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kendra-ranking/src/runtimeConfig.shared.ts b/clients/client-kendra-ranking/src/runtimeConfig.shared.ts index ef93a45d92bab..2f20b23644d19 100644 --- a/clients/client-kendra-ranking/src/runtimeConfig.shared.ts +++ b/clients/client-kendra-ranking/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKendraRankingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KendraRankingClientConfig } from "./KendraRankingClient"; +import type { KendraRankingClientConfig } from "./KendraRankingClient"; /** * @internal diff --git a/clients/client-kendra-ranking/src/runtimeConfig.ts b/clients/client-kendra-ranking/src/runtimeConfig.ts index 7936609f7bb38..3f9515eb6744c 100644 --- a/clients/client-kendra-ranking/src/runtimeConfig.ts +++ b/clients/client-kendra-ranking/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KendraRankingClientConfig } from "./KendraRankingClient"; + +import type { KendraRankingClientConfig } from "./KendraRankingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kendra-ranking/src/runtimeExtensions.ts b/clients/client-kendra-ranking/src/runtimeExtensions.ts index 7738db4750afa..56dc8bd1178b9 100644 --- a/clients/client-kendra-ranking/src/runtimeExtensions.ts +++ b/clients/client-kendra-ranking/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KendraRankingExtensionConfiguration } from "./extensionConfiguration"; +import type { KendraRankingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kendra-ranking/src/schemas/schemas_0.ts b/clients/client-kendra-ranking/src/schemas/schemas_0.ts index 29859e2c1e8f8..b237becd6fe17 100644 --- a/clients/client-kendra-ranking/src/schemas/schemas_0.ts +++ b/clients/client-kendra-ranking/src/schemas/schemas_0.ts @@ -86,7 +86,7 @@ const n0 = "com.amazonaws.kendraranking"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-kendra/package.json b/clients/client-kendra/package.json index dcc19d9021415..c88c646ffd9cb 100644 --- a/clients/client-kendra/package.json +++ b/clients/client-kendra/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kendra/src/Kendra.ts b/clients/client-kendra/src/Kendra.ts index 31d6891983ded..e5167e72ed39f 100644 --- a/clients/client-kendra/src/Kendra.ts +++ b/clients/client-kendra/src/Kendra.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateEntitiesToExperienceCommand, @@ -288,7 +288,7 @@ import { UpdateThesaurusCommandInput, UpdateThesaurusCommandOutput, } from "./commands/UpdateThesaurusCommand"; -import { KendraClient, KendraClientConfig } from "./KendraClient"; +import { KendraClient } from "./KendraClient"; const commands = { AssociateEntitiesToExperienceCommand, diff --git a/clients/client-kendra/src/KendraClient.ts b/clients/client-kendra/src/KendraClient.ts index ca28fb4b43588..aec80fa32fc46 100644 --- a/clients/client-kendra/src/KendraClient.ts +++ b/clients/client-kendra/src/KendraClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKendraHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -232,7 +241,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kendra/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kendra/src/auth/httpAuthExtensionConfiguration.ts index 3db8dbe89d745..0c9f8bb4b8dbd 100644 --- a/clients/client-kendra/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kendra/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KendraHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KendraHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kendra/src/auth/httpAuthSchemeProvider.ts b/clients/client-kendra/src/auth/httpAuthSchemeProvider.ts index 6bfb555094395..cc3fa23ee10fd 100644 --- a/clients/client-kendra/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kendra/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KendraClientConfig, KendraClientResolvedConfig } from "../KendraClient"; +import { type KendraClientResolvedConfig, KendraClientConfig } from "../KendraClient"; /** * @internal diff --git a/clients/client-kendra/src/commands/AssociateEntitiesToExperienceCommand.ts b/clients/client-kendra/src/commands/AssociateEntitiesToExperienceCommand.ts index da1266551c3aa..833df20622a32 100644 --- a/clients/client-kendra/src/commands/AssociateEntitiesToExperienceCommand.ts +++ b/clients/client-kendra/src/commands/AssociateEntitiesToExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { AssociateEntitiesToExperienceRequest, AssociateEntitiesToExperienceResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { AssociateEntitiesToExperienceRequest, AssociateEntitiesToExperienceResponse } from "../models/models_0"; import { AssociateEntitiesToExperience } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/AssociatePersonasToEntitiesCommand.ts b/clients/client-kendra/src/commands/AssociatePersonasToEntitiesCommand.ts index c2436a400551f..2f1e1e24c84ee 100644 --- a/clients/client-kendra/src/commands/AssociatePersonasToEntitiesCommand.ts +++ b/clients/client-kendra/src/commands/AssociatePersonasToEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { AssociatePersonasToEntitiesRequest, AssociatePersonasToEntitiesResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { AssociatePersonasToEntitiesRequest, AssociatePersonasToEntitiesResponse } from "../models/models_0"; import { AssociatePersonasToEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/BatchDeleteDocumentCommand.ts b/clients/client-kendra/src/commands/BatchDeleteDocumentCommand.ts index e917648c72cdd..75912a38971a7 100644 --- a/clients/client-kendra/src/commands/BatchDeleteDocumentCommand.ts +++ b/clients/client-kendra/src/commands/BatchDeleteDocumentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { BatchDeleteDocumentRequest, BatchDeleteDocumentResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { BatchDeleteDocumentRequest, BatchDeleteDocumentResponse } from "../models/models_0"; import { BatchDeleteDocument } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/BatchDeleteFeaturedResultsSetCommand.ts b/clients/client-kendra/src/commands/BatchDeleteFeaturedResultsSetCommand.ts index 932b260acea22..f2f88618b9ab8 100644 --- a/clients/client-kendra/src/commands/BatchDeleteFeaturedResultsSetCommand.ts +++ b/clients/client-kendra/src/commands/BatchDeleteFeaturedResultsSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { BatchDeleteFeaturedResultsSetRequest, BatchDeleteFeaturedResultsSetResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { BatchDeleteFeaturedResultsSetRequest, BatchDeleteFeaturedResultsSetResponse } from "../models/models_0"; import { BatchDeleteFeaturedResultsSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/BatchGetDocumentStatusCommand.ts b/clients/client-kendra/src/commands/BatchGetDocumentStatusCommand.ts index 0be6bd78d6943..4ffba9470f6ff 100644 --- a/clients/client-kendra/src/commands/BatchGetDocumentStatusCommand.ts +++ b/clients/client-kendra/src/commands/BatchGetDocumentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { BatchGetDocumentStatusRequest, BatchGetDocumentStatusResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { BatchGetDocumentStatusRequest, BatchGetDocumentStatusResponse } from "../models/models_0"; import { BatchGetDocumentStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/BatchPutDocumentCommand.ts b/clients/client-kendra/src/commands/BatchPutDocumentCommand.ts index 898c011f8a8f7..fc6665c06ff29 100644 --- a/clients/client-kendra/src/commands/BatchPutDocumentCommand.ts +++ b/clients/client-kendra/src/commands/BatchPutDocumentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { BatchPutDocumentRequest, BatchPutDocumentResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { BatchPutDocumentRequest, BatchPutDocumentResponse } from "../models/models_0"; import { BatchPutDocument } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ClearQuerySuggestionsCommand.ts b/clients/client-kendra/src/commands/ClearQuerySuggestionsCommand.ts index 672da348034f2..a10269f2feba7 100644 --- a/clients/client-kendra/src/commands/ClearQuerySuggestionsCommand.ts +++ b/clients/client-kendra/src/commands/ClearQuerySuggestionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ClearQuerySuggestionsRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ClearQuerySuggestionsRequest } from "../models/models_0"; import { ClearQuerySuggestions } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/CreateAccessControlConfigurationCommand.ts b/clients/client-kendra/src/commands/CreateAccessControlConfigurationCommand.ts index f35fed14f1f48..9d913c2c9ecae 100644 --- a/clients/client-kendra/src/commands/CreateAccessControlConfigurationCommand.ts +++ b/clients/client-kendra/src/commands/CreateAccessControlConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { CreateAccessControlConfigurationRequest, CreateAccessControlConfigurationResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { + CreateAccessControlConfigurationRequest, + CreateAccessControlConfigurationResponse, +} from "../models/models_0"; import { CreateAccessControlConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/CreateDataSourceCommand.ts b/clients/client-kendra/src/commands/CreateDataSourceCommand.ts index 1869237ba29c0..9cea189d63fe9 100644 --- a/clients/client-kendra/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-kendra/src/commands/CreateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_0"; import { CreateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/CreateExperienceCommand.ts b/clients/client-kendra/src/commands/CreateExperienceCommand.ts index 829e7feb815a0..fce450bc47b1b 100644 --- a/clients/client-kendra/src/commands/CreateExperienceCommand.ts +++ b/clients/client-kendra/src/commands/CreateExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { CreateExperienceRequest, CreateExperienceResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { CreateExperienceRequest, CreateExperienceResponse } from "../models/models_0"; import { CreateExperience } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/CreateFaqCommand.ts b/clients/client-kendra/src/commands/CreateFaqCommand.ts index 89a8584e90a3a..871902956ea0a 100644 --- a/clients/client-kendra/src/commands/CreateFaqCommand.ts +++ b/clients/client-kendra/src/commands/CreateFaqCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { CreateFaqRequest, CreateFaqResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { CreateFaqRequest, CreateFaqResponse } from "../models/models_0"; import { CreateFaq } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/CreateFeaturedResultsSetCommand.ts b/clients/client-kendra/src/commands/CreateFeaturedResultsSetCommand.ts index 36ae4bdab14ed..b9faf465ddc16 100644 --- a/clients/client-kendra/src/commands/CreateFeaturedResultsSetCommand.ts +++ b/clients/client-kendra/src/commands/CreateFeaturedResultsSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { CreateFeaturedResultsSetRequest, CreateFeaturedResultsSetResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { CreateFeaturedResultsSetRequest, CreateFeaturedResultsSetResponse } from "../models/models_0"; import { CreateFeaturedResultsSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/CreateIndexCommand.ts b/clients/client-kendra/src/commands/CreateIndexCommand.ts index 84685e072bd18..b98e4de466ae6 100644 --- a/clients/client-kendra/src/commands/CreateIndexCommand.ts +++ b/clients/client-kendra/src/commands/CreateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; import { CreateIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/CreateQuerySuggestionsBlockListCommand.ts b/clients/client-kendra/src/commands/CreateQuerySuggestionsBlockListCommand.ts index 68836dca26766..922c39d9b7273 100644 --- a/clients/client-kendra/src/commands/CreateQuerySuggestionsBlockListCommand.ts +++ b/clients/client-kendra/src/commands/CreateQuerySuggestionsBlockListCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { CreateQuerySuggestionsBlockListRequest, CreateQuerySuggestionsBlockListResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { + CreateQuerySuggestionsBlockListRequest, + CreateQuerySuggestionsBlockListResponse, +} from "../models/models_0"; import { CreateQuerySuggestionsBlockList } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/CreateThesaurusCommand.ts b/clients/client-kendra/src/commands/CreateThesaurusCommand.ts index e3c716c70b3f9..d15b6f4cde18f 100644 --- a/clients/client-kendra/src/commands/CreateThesaurusCommand.ts +++ b/clients/client-kendra/src/commands/CreateThesaurusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { CreateThesaurusRequest, CreateThesaurusResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { CreateThesaurusRequest, CreateThesaurusResponse } from "../models/models_0"; import { CreateThesaurus } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DeleteAccessControlConfigurationCommand.ts b/clients/client-kendra/src/commands/DeleteAccessControlConfigurationCommand.ts index b620aff2e5e2c..ec7c1c265703a 100644 --- a/clients/client-kendra/src/commands/DeleteAccessControlConfigurationCommand.ts +++ b/clients/client-kendra/src/commands/DeleteAccessControlConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DeleteAccessControlConfigurationRequest, DeleteAccessControlConfigurationResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { + DeleteAccessControlConfigurationRequest, + DeleteAccessControlConfigurationResponse, +} from "../models/models_0"; import { DeleteAccessControlConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DeleteDataSourceCommand.ts b/clients/client-kendra/src/commands/DeleteDataSourceCommand.ts index 4ed43a8e058cf..a8afb77845736 100644 --- a/clients/client-kendra/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-kendra/src/commands/DeleteDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DeleteDataSourceRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DeleteDataSourceRequest } from "../models/models_0"; import { DeleteDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DeleteExperienceCommand.ts b/clients/client-kendra/src/commands/DeleteExperienceCommand.ts index 9169fc7bf8548..0464d0056a490 100644 --- a/clients/client-kendra/src/commands/DeleteExperienceCommand.ts +++ b/clients/client-kendra/src/commands/DeleteExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DeleteExperienceRequest, DeleteExperienceResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DeleteExperienceRequest, DeleteExperienceResponse } from "../models/models_0"; import { DeleteExperience } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DeleteFaqCommand.ts b/clients/client-kendra/src/commands/DeleteFaqCommand.ts index 8972d530f37c8..9f101b325fb4d 100644 --- a/clients/client-kendra/src/commands/DeleteFaqCommand.ts +++ b/clients/client-kendra/src/commands/DeleteFaqCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DeleteFaqRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DeleteFaqRequest } from "../models/models_0"; import { DeleteFaq } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DeleteIndexCommand.ts b/clients/client-kendra/src/commands/DeleteIndexCommand.ts index 0c8afbbfd3099..0c33c767479cb 100644 --- a/clients/client-kendra/src/commands/DeleteIndexCommand.ts +++ b/clients/client-kendra/src/commands/DeleteIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DeleteIndexRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DeleteIndexRequest } from "../models/models_0"; import { DeleteIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DeletePrincipalMappingCommand.ts b/clients/client-kendra/src/commands/DeletePrincipalMappingCommand.ts index 95c2b4731ad26..dda447166d344 100644 --- a/clients/client-kendra/src/commands/DeletePrincipalMappingCommand.ts +++ b/clients/client-kendra/src/commands/DeletePrincipalMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DeletePrincipalMappingRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DeletePrincipalMappingRequest } from "../models/models_0"; import { DeletePrincipalMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DeleteQuerySuggestionsBlockListCommand.ts b/clients/client-kendra/src/commands/DeleteQuerySuggestionsBlockListCommand.ts index f50493b01face..1772b2a0b37fb 100644 --- a/clients/client-kendra/src/commands/DeleteQuerySuggestionsBlockListCommand.ts +++ b/clients/client-kendra/src/commands/DeleteQuerySuggestionsBlockListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DeleteQuerySuggestionsBlockListRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DeleteQuerySuggestionsBlockListRequest } from "../models/models_0"; import { DeleteQuerySuggestionsBlockList } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DeleteThesaurusCommand.ts b/clients/client-kendra/src/commands/DeleteThesaurusCommand.ts index b92d6543dfc40..51dbbf07602d1 100644 --- a/clients/client-kendra/src/commands/DeleteThesaurusCommand.ts +++ b/clients/client-kendra/src/commands/DeleteThesaurusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DeleteThesaurusRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DeleteThesaurusRequest } from "../models/models_0"; import { DeleteThesaurus } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DescribeAccessControlConfigurationCommand.ts b/clients/client-kendra/src/commands/DescribeAccessControlConfigurationCommand.ts index 706b82b177db8..ed655be2f2334 100644 --- a/clients/client-kendra/src/commands/DescribeAccessControlConfigurationCommand.ts +++ b/clients/client-kendra/src/commands/DescribeAccessControlConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribeAccessControlConfigurationRequest, DescribeAccessControlConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-kendra/src/commands/DescribeDataSourceCommand.ts b/clients/client-kendra/src/commands/DescribeDataSourceCommand.ts index df492c07caf24..a76b4bd00bfcf 100644 --- a/clients/client-kendra/src/commands/DescribeDataSourceCommand.ts +++ b/clients/client-kendra/src/commands/DescribeDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DescribeDataSourceRequest, DescribeDataSourceResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribeDataSourceRequest, DescribeDataSourceResponse } from "../models/models_0"; import { DescribeDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DescribeExperienceCommand.ts b/clients/client-kendra/src/commands/DescribeExperienceCommand.ts index 03d6294ee3645..455e1f51c2b32 100644 --- a/clients/client-kendra/src/commands/DescribeExperienceCommand.ts +++ b/clients/client-kendra/src/commands/DescribeExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DescribeExperienceRequest, DescribeExperienceResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribeExperienceRequest, DescribeExperienceResponse } from "../models/models_0"; import { DescribeExperience } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DescribeFaqCommand.ts b/clients/client-kendra/src/commands/DescribeFaqCommand.ts index ee6f7953772d8..6586b76e8c2dc 100644 --- a/clients/client-kendra/src/commands/DescribeFaqCommand.ts +++ b/clients/client-kendra/src/commands/DescribeFaqCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DescribeFaqRequest, DescribeFaqResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribeFaqRequest, DescribeFaqResponse } from "../models/models_0"; import { DescribeFaq } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DescribeFeaturedResultsSetCommand.ts b/clients/client-kendra/src/commands/DescribeFeaturedResultsSetCommand.ts index 59bf211409f64..aa1b410ba9824 100644 --- a/clients/client-kendra/src/commands/DescribeFeaturedResultsSetCommand.ts +++ b/clients/client-kendra/src/commands/DescribeFeaturedResultsSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DescribeFeaturedResultsSetRequest, DescribeFeaturedResultsSetResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribeFeaturedResultsSetRequest, DescribeFeaturedResultsSetResponse } from "../models/models_0"; import { DescribeFeaturedResultsSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DescribeIndexCommand.ts b/clients/client-kendra/src/commands/DescribeIndexCommand.ts index a85b523f5f752..5d2e62ce7d136 100644 --- a/clients/client-kendra/src/commands/DescribeIndexCommand.ts +++ b/clients/client-kendra/src/commands/DescribeIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DescribeIndexRequest, DescribeIndexResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribeIndexRequest, DescribeIndexResponse } from "../models/models_0"; import { DescribeIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DescribePrincipalMappingCommand.ts b/clients/client-kendra/src/commands/DescribePrincipalMappingCommand.ts index c5d3373a6d6fb..635e39310a58f 100644 --- a/clients/client-kendra/src/commands/DescribePrincipalMappingCommand.ts +++ b/clients/client-kendra/src/commands/DescribePrincipalMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DescribePrincipalMappingRequest, DescribePrincipalMappingResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribePrincipalMappingRequest, DescribePrincipalMappingResponse } from "../models/models_0"; import { DescribePrincipalMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DescribeQuerySuggestionsBlockListCommand.ts b/clients/client-kendra/src/commands/DescribeQuerySuggestionsBlockListCommand.ts index 9254ad2cf94b4..9af05e7e85104 100644 --- a/clients/client-kendra/src/commands/DescribeQuerySuggestionsBlockListCommand.ts +++ b/clients/client-kendra/src/commands/DescribeQuerySuggestionsBlockListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribeQuerySuggestionsBlockListRequest, DescribeQuerySuggestionsBlockListResponse, } from "../models/models_0"; diff --git a/clients/client-kendra/src/commands/DescribeQuerySuggestionsConfigCommand.ts b/clients/client-kendra/src/commands/DescribeQuerySuggestionsConfigCommand.ts index 7503ea94dd310..807fb4e856ebf 100644 --- a/clients/client-kendra/src/commands/DescribeQuerySuggestionsConfigCommand.ts +++ b/clients/client-kendra/src/commands/DescribeQuerySuggestionsConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DescribeQuerySuggestionsConfigRequest, DescribeQuerySuggestionsConfigResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribeQuerySuggestionsConfigRequest, DescribeQuerySuggestionsConfigResponse } from "../models/models_0"; import { DescribeQuerySuggestionsConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DescribeThesaurusCommand.ts b/clients/client-kendra/src/commands/DescribeThesaurusCommand.ts index 7666685bb2ee3..f24154fff81b3 100644 --- a/clients/client-kendra/src/commands/DescribeThesaurusCommand.ts +++ b/clients/client-kendra/src/commands/DescribeThesaurusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DescribeThesaurusRequest, DescribeThesaurusResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DescribeThesaurusRequest, DescribeThesaurusResponse } from "../models/models_0"; import { DescribeThesaurus } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/DisassociateEntitiesFromExperienceCommand.ts b/clients/client-kendra/src/commands/DisassociateEntitiesFromExperienceCommand.ts index aabab006bdafe..8f9fc8ffee6b4 100644 --- a/clients/client-kendra/src/commands/DisassociateEntitiesFromExperienceCommand.ts +++ b/clients/client-kendra/src/commands/DisassociateEntitiesFromExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { DisassociateEntitiesFromExperienceRequest, DisassociateEntitiesFromExperienceResponse, } from "../models/models_0"; diff --git a/clients/client-kendra/src/commands/DisassociatePersonasFromEntitiesCommand.ts b/clients/client-kendra/src/commands/DisassociatePersonasFromEntitiesCommand.ts index ff1ba092cc72a..85d24b3e98b36 100644 --- a/clients/client-kendra/src/commands/DisassociatePersonasFromEntitiesCommand.ts +++ b/clients/client-kendra/src/commands/DisassociatePersonasFromEntitiesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { DisassociatePersonasFromEntitiesRequest, DisassociatePersonasFromEntitiesResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { + DisassociatePersonasFromEntitiesRequest, + DisassociatePersonasFromEntitiesResponse, +} from "../models/models_0"; import { DisassociatePersonasFromEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/GetQuerySuggestionsCommand.ts b/clients/client-kendra/src/commands/GetQuerySuggestionsCommand.ts index 4a4d3e1bc9d96..1c3d6858cd5a1 100644 --- a/clients/client-kendra/src/commands/GetQuerySuggestionsCommand.ts +++ b/clients/client-kendra/src/commands/GetQuerySuggestionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { GetQuerySuggestionsRequest, GetQuerySuggestionsResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { GetQuerySuggestionsRequest, GetQuerySuggestionsResponse } from "../models/models_0"; import { GetQuerySuggestions } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/GetSnapshotsCommand.ts b/clients/client-kendra/src/commands/GetSnapshotsCommand.ts index d42b2a6d28e6c..b0c2d1fa73012 100644 --- a/clients/client-kendra/src/commands/GetSnapshotsCommand.ts +++ b/clients/client-kendra/src/commands/GetSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { GetSnapshotsRequest, GetSnapshotsResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { GetSnapshotsRequest, GetSnapshotsResponse } from "../models/models_0"; import { GetSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListAccessControlConfigurationsCommand.ts b/clients/client-kendra/src/commands/ListAccessControlConfigurationsCommand.ts index 5d4c43fa7b0aa..d7483af630077 100644 --- a/clients/client-kendra/src/commands/ListAccessControlConfigurationsCommand.ts +++ b/clients/client-kendra/src/commands/ListAccessControlConfigurationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListAccessControlConfigurationsRequest, ListAccessControlConfigurationsResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { + ListAccessControlConfigurationsRequest, + ListAccessControlConfigurationsResponse, +} from "../models/models_0"; import { ListAccessControlConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListDataSourceSyncJobsCommand.ts b/clients/client-kendra/src/commands/ListDataSourceSyncJobsCommand.ts index 94aa3d7f0a054..1d43842e92efb 100644 --- a/clients/client-kendra/src/commands/ListDataSourceSyncJobsCommand.ts +++ b/clients/client-kendra/src/commands/ListDataSourceSyncJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListDataSourceSyncJobsRequest, ListDataSourceSyncJobsResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListDataSourceSyncJobsRequest, ListDataSourceSyncJobsResponse } from "../models/models_0"; import { ListDataSourceSyncJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListDataSourcesCommand.ts b/clients/client-kendra/src/commands/ListDataSourcesCommand.ts index 12c1cc7059bf7..91edb203d6bfe 100644 --- a/clients/client-kendra/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-kendra/src/commands/ListDataSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; import { ListDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListEntityPersonasCommand.ts b/clients/client-kendra/src/commands/ListEntityPersonasCommand.ts index 17fe91191a621..5a293db290155 100644 --- a/clients/client-kendra/src/commands/ListEntityPersonasCommand.ts +++ b/clients/client-kendra/src/commands/ListEntityPersonasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListEntityPersonasRequest, ListEntityPersonasResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListEntityPersonasRequest, ListEntityPersonasResponse } from "../models/models_0"; import { ListEntityPersonas } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListExperienceEntitiesCommand.ts b/clients/client-kendra/src/commands/ListExperienceEntitiesCommand.ts index fd6e8b9f4233f..214d8fb23cca5 100644 --- a/clients/client-kendra/src/commands/ListExperienceEntitiesCommand.ts +++ b/clients/client-kendra/src/commands/ListExperienceEntitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListExperienceEntitiesRequest, ListExperienceEntitiesResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListExperienceEntitiesRequest, ListExperienceEntitiesResponse } from "../models/models_0"; import { ListExperienceEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListExperiencesCommand.ts b/clients/client-kendra/src/commands/ListExperiencesCommand.ts index ca5f90dcd37b0..991daacb9be4a 100644 --- a/clients/client-kendra/src/commands/ListExperiencesCommand.ts +++ b/clients/client-kendra/src/commands/ListExperiencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListExperiencesRequest, ListExperiencesResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListExperiencesRequest, ListExperiencesResponse } from "../models/models_0"; import { ListExperiences } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListFaqsCommand.ts b/clients/client-kendra/src/commands/ListFaqsCommand.ts index 7ebf03933c8e2..b925954c02ceb 100644 --- a/clients/client-kendra/src/commands/ListFaqsCommand.ts +++ b/clients/client-kendra/src/commands/ListFaqsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListFaqsRequest, ListFaqsResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListFaqsRequest, ListFaqsResponse } from "../models/models_0"; import { ListFaqs } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListFeaturedResultsSetsCommand.ts b/clients/client-kendra/src/commands/ListFeaturedResultsSetsCommand.ts index e5b5be68bc9c4..b8ab826a4d183 100644 --- a/clients/client-kendra/src/commands/ListFeaturedResultsSetsCommand.ts +++ b/clients/client-kendra/src/commands/ListFeaturedResultsSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListFeaturedResultsSetsRequest, ListFeaturedResultsSetsResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListFeaturedResultsSetsRequest, ListFeaturedResultsSetsResponse } from "../models/models_0"; import { ListFeaturedResultsSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListGroupsOlderThanOrderingIdCommand.ts b/clients/client-kendra/src/commands/ListGroupsOlderThanOrderingIdCommand.ts index eb0f74e259686..3bc928ff1e4d3 100644 --- a/clients/client-kendra/src/commands/ListGroupsOlderThanOrderingIdCommand.ts +++ b/clients/client-kendra/src/commands/ListGroupsOlderThanOrderingIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListGroupsOlderThanOrderingIdRequest, ListGroupsOlderThanOrderingIdResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListGroupsOlderThanOrderingIdRequest, ListGroupsOlderThanOrderingIdResponse } from "../models/models_0"; import { ListGroupsOlderThanOrderingId } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListIndicesCommand.ts b/clients/client-kendra/src/commands/ListIndicesCommand.ts index ddab4603f814f..b46d7baf7b6ab 100644 --- a/clients/client-kendra/src/commands/ListIndicesCommand.ts +++ b/clients/client-kendra/src/commands/ListIndicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListIndicesRequest, ListIndicesResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListIndicesRequest, ListIndicesResponse } from "../models/models_0"; import { ListIndices } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListQuerySuggestionsBlockListsCommand.ts b/clients/client-kendra/src/commands/ListQuerySuggestionsBlockListsCommand.ts index e169424200ce7..b7d814d02ea13 100644 --- a/clients/client-kendra/src/commands/ListQuerySuggestionsBlockListsCommand.ts +++ b/clients/client-kendra/src/commands/ListQuerySuggestionsBlockListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListQuerySuggestionsBlockListsRequest, ListQuerySuggestionsBlockListsResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListQuerySuggestionsBlockListsRequest, ListQuerySuggestionsBlockListsResponse } from "../models/models_0"; import { ListQuerySuggestionsBlockLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListTagsForResourceCommand.ts b/clients/client-kendra/src/commands/ListTagsForResourceCommand.ts index 7920a5f6d33ca..0790a59887ec3 100644 --- a/clients/client-kendra/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kendra/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/ListThesauriCommand.ts b/clients/client-kendra/src/commands/ListThesauriCommand.ts index 8438e2d1c9621..eb461b1f7abc2 100644 --- a/clients/client-kendra/src/commands/ListThesauriCommand.ts +++ b/clients/client-kendra/src/commands/ListThesauriCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { ListThesauriRequest, ListThesauriResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { ListThesauriRequest, ListThesauriResponse } from "../models/models_0"; import { ListThesauri } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/PutPrincipalMappingCommand.ts b/clients/client-kendra/src/commands/PutPrincipalMappingCommand.ts index 308678cf158ce..152f773365d9b 100644 --- a/clients/client-kendra/src/commands/PutPrincipalMappingCommand.ts +++ b/clients/client-kendra/src/commands/PutPrincipalMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { PutPrincipalMappingRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { PutPrincipalMappingRequest } from "../models/models_0"; import { PutPrincipalMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/QueryCommand.ts b/clients/client-kendra/src/commands/QueryCommand.ts index c90562a5c2299..08fb7501f5caa 100644 --- a/clients/client-kendra/src/commands/QueryCommand.ts +++ b/clients/client-kendra/src/commands/QueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { QueryRequest, QueryResult } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { QueryRequest, QueryResult } from "../models/models_0"; import { Query } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/RetrieveCommand.ts b/clients/client-kendra/src/commands/RetrieveCommand.ts index c69a56435d7fa..b8bf5af3d470d 100644 --- a/clients/client-kendra/src/commands/RetrieveCommand.ts +++ b/clients/client-kendra/src/commands/RetrieveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { RetrieveRequest, RetrieveResult } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { RetrieveRequest, RetrieveResult } from "../models/models_0"; import { Retrieve } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/StartDataSourceSyncJobCommand.ts b/clients/client-kendra/src/commands/StartDataSourceSyncJobCommand.ts index 945f0d6791981..9f123b05e6022 100644 --- a/clients/client-kendra/src/commands/StartDataSourceSyncJobCommand.ts +++ b/clients/client-kendra/src/commands/StartDataSourceSyncJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { StartDataSourceSyncJobRequest, StartDataSourceSyncJobResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { StartDataSourceSyncJobRequest, StartDataSourceSyncJobResponse } from "../models/models_0"; import { StartDataSourceSyncJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/StopDataSourceSyncJobCommand.ts b/clients/client-kendra/src/commands/StopDataSourceSyncJobCommand.ts index 70b16ac3b2376..60e261549f5a2 100644 --- a/clients/client-kendra/src/commands/StopDataSourceSyncJobCommand.ts +++ b/clients/client-kendra/src/commands/StopDataSourceSyncJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { StopDataSourceSyncJobRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { StopDataSourceSyncJobRequest } from "../models/models_0"; import { StopDataSourceSyncJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/SubmitFeedbackCommand.ts b/clients/client-kendra/src/commands/SubmitFeedbackCommand.ts index 2880454ec145b..6398f7dab8822 100644 --- a/clients/client-kendra/src/commands/SubmitFeedbackCommand.ts +++ b/clients/client-kendra/src/commands/SubmitFeedbackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { SubmitFeedbackRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { SubmitFeedbackRequest } from "../models/models_0"; import { SubmitFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/TagResourceCommand.ts b/clients/client-kendra/src/commands/TagResourceCommand.ts index 966772c35b66e..c8471015008c1 100644 --- a/clients/client-kendra/src/commands/TagResourceCommand.ts +++ b/clients/client-kendra/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/UntagResourceCommand.ts b/clients/client-kendra/src/commands/UntagResourceCommand.ts index 9d213f7209e1f..625bccc626eae 100644 --- a/clients/client-kendra/src/commands/UntagResourceCommand.ts +++ b/clients/client-kendra/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/UpdateAccessControlConfigurationCommand.ts b/clients/client-kendra/src/commands/UpdateAccessControlConfigurationCommand.ts index d291f88992591..fd0a2171c9bf1 100644 --- a/clients/client-kendra/src/commands/UpdateAccessControlConfigurationCommand.ts +++ b/clients/client-kendra/src/commands/UpdateAccessControlConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { UpdateAccessControlConfigurationRequest, UpdateAccessControlConfigurationResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { + UpdateAccessControlConfigurationRequest, + UpdateAccessControlConfigurationResponse, +} from "../models/models_0"; import { UpdateAccessControlConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/UpdateDataSourceCommand.ts b/clients/client-kendra/src/commands/UpdateDataSourceCommand.ts index a2c8b6162e859..152e924678a7b 100644 --- a/clients/client-kendra/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-kendra/src/commands/UpdateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { UpdateDataSourceRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { UpdateDataSourceRequest } from "../models/models_0"; import { UpdateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/UpdateExperienceCommand.ts b/clients/client-kendra/src/commands/UpdateExperienceCommand.ts index b6b9547f1e04e..beb88b796e406 100644 --- a/clients/client-kendra/src/commands/UpdateExperienceCommand.ts +++ b/clients/client-kendra/src/commands/UpdateExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { UpdateExperienceRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { UpdateExperienceRequest } from "../models/models_0"; import { UpdateExperience } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/UpdateFeaturedResultsSetCommand.ts b/clients/client-kendra/src/commands/UpdateFeaturedResultsSetCommand.ts index 061506056e053..a22c2955c7a3f 100644 --- a/clients/client-kendra/src/commands/UpdateFeaturedResultsSetCommand.ts +++ b/clients/client-kendra/src/commands/UpdateFeaturedResultsSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { UpdateFeaturedResultsSetRequest, UpdateFeaturedResultsSetResponse } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { UpdateFeaturedResultsSetRequest, UpdateFeaturedResultsSetResponse } from "../models/models_0"; import { UpdateFeaturedResultsSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/UpdateIndexCommand.ts b/clients/client-kendra/src/commands/UpdateIndexCommand.ts index 0c149453a4ab2..b71d5ffb66f9a 100644 --- a/clients/client-kendra/src/commands/UpdateIndexCommand.ts +++ b/clients/client-kendra/src/commands/UpdateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { UpdateIndexRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { UpdateIndexRequest } from "../models/models_0"; import { UpdateIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/UpdateQuerySuggestionsBlockListCommand.ts b/clients/client-kendra/src/commands/UpdateQuerySuggestionsBlockListCommand.ts index bcab07b9e5374..aa16991e63a35 100644 --- a/clients/client-kendra/src/commands/UpdateQuerySuggestionsBlockListCommand.ts +++ b/clients/client-kendra/src/commands/UpdateQuerySuggestionsBlockListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { UpdateQuerySuggestionsBlockListRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { UpdateQuerySuggestionsBlockListRequest } from "../models/models_0"; import { UpdateQuerySuggestionsBlockList } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/UpdateQuerySuggestionsConfigCommand.ts b/clients/client-kendra/src/commands/UpdateQuerySuggestionsConfigCommand.ts index 0011b821593d1..e9ec9744bbc0e 100644 --- a/clients/client-kendra/src/commands/UpdateQuerySuggestionsConfigCommand.ts +++ b/clients/client-kendra/src/commands/UpdateQuerySuggestionsConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { UpdateQuerySuggestionsConfigRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { UpdateQuerySuggestionsConfigRequest } from "../models/models_0"; import { UpdateQuerySuggestionsConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/commands/UpdateThesaurusCommand.ts b/clients/client-kendra/src/commands/UpdateThesaurusCommand.ts index 390b616bbe851..ff176d225ec69 100644 --- a/clients/client-kendra/src/commands/UpdateThesaurusCommand.ts +++ b/clients/client-kendra/src/commands/UpdateThesaurusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; -import { UpdateThesaurusRequest } from "../models/models_0"; +import type { KendraClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KendraClient"; +import type { UpdateThesaurusRequest } from "../models/models_0"; import { UpdateThesaurus } from "../schemas/schemas_0"; /** diff --git a/clients/client-kendra/src/endpoint/EndpointParameters.ts b/clients/client-kendra/src/endpoint/EndpointParameters.ts index b9a5559b60b40..d84b69dd36b18 100644 --- a/clients/client-kendra/src/endpoint/EndpointParameters.ts +++ b/clients/client-kendra/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kendra/src/endpoint/endpointResolver.ts b/clients/client-kendra/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kendra/src/endpoint/endpointResolver.ts +++ b/clients/client-kendra/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kendra/src/extensionConfiguration.ts b/clients/client-kendra/src/extensionConfiguration.ts index 44dc06849fc24..a454d4e722628 100644 --- a/clients/client-kendra/src/extensionConfiguration.ts +++ b/clients/client-kendra/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kendra/src/models/KendraServiceException.ts b/clients/client-kendra/src/models/KendraServiceException.ts index a090baff0c900..d0eb207d90f14 100644 --- a/clients/client-kendra/src/models/KendraServiceException.ts +++ b/clients/client-kendra/src/models/KendraServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kendra/src/models/errors.ts b/clients/client-kendra/src/models/errors.ts index 9362dc02e56be..1af8a1799b1c7 100644 --- a/clients/client-kendra/src/models/errors.ts +++ b/clients/client-kendra/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KendraServiceException as __BaseException } from "./KendraServiceException"; import { ConflictingItem } from "./models_0"; diff --git a/clients/client-kendra/src/pagination/GetSnapshotsPaginator.ts b/clients/client-kendra/src/pagination/GetSnapshotsPaginator.ts index bec3d552b6755..e0ee789f965d2 100644 --- a/clients/client-kendra/src/pagination/GetSnapshotsPaginator.ts +++ b/clients/client-kendra/src/pagination/GetSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSnapshotsCommand, diff --git a/clients/client-kendra/src/pagination/Interfaces.ts b/clients/client-kendra/src/pagination/Interfaces.ts index 6a6be3dd7f6d8..a5c24102a4534 100644 --- a/clients/client-kendra/src/pagination/Interfaces.ts +++ b/clients/client-kendra/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KendraClient } from "../KendraClient"; diff --git a/clients/client-kendra/src/pagination/ListAccessControlConfigurationsPaginator.ts b/clients/client-kendra/src/pagination/ListAccessControlConfigurationsPaginator.ts index b24dfe35432ba..269326bb091b5 100644 --- a/clients/client-kendra/src/pagination/ListAccessControlConfigurationsPaginator.ts +++ b/clients/client-kendra/src/pagination/ListAccessControlConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessControlConfigurationsCommand, diff --git a/clients/client-kendra/src/pagination/ListDataSourceSyncJobsPaginator.ts b/clients/client-kendra/src/pagination/ListDataSourceSyncJobsPaginator.ts index 1fccf2be85346..c016d6025f7dc 100644 --- a/clients/client-kendra/src/pagination/ListDataSourceSyncJobsPaginator.ts +++ b/clients/client-kendra/src/pagination/ListDataSourceSyncJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSourceSyncJobsCommand, diff --git a/clients/client-kendra/src/pagination/ListDataSourcesPaginator.ts b/clients/client-kendra/src/pagination/ListDataSourcesPaginator.ts index 0378cc9a28c8b..63e16dfdb219b 100644 --- a/clients/client-kendra/src/pagination/ListDataSourcesPaginator.ts +++ b/clients/client-kendra/src/pagination/ListDataSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSourcesCommand, diff --git a/clients/client-kendra/src/pagination/ListEntityPersonasPaginator.ts b/clients/client-kendra/src/pagination/ListEntityPersonasPaginator.ts index 975cb88a3420f..3e5eb0b9bf618 100644 --- a/clients/client-kendra/src/pagination/ListEntityPersonasPaginator.ts +++ b/clients/client-kendra/src/pagination/ListEntityPersonasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntityPersonasCommand, diff --git a/clients/client-kendra/src/pagination/ListExperienceEntitiesPaginator.ts b/clients/client-kendra/src/pagination/ListExperienceEntitiesPaginator.ts index 51a0f8332cc48..18faf100cb2f0 100644 --- a/clients/client-kendra/src/pagination/ListExperienceEntitiesPaginator.ts +++ b/clients/client-kendra/src/pagination/ListExperienceEntitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExperienceEntitiesCommand, diff --git a/clients/client-kendra/src/pagination/ListExperiencesPaginator.ts b/clients/client-kendra/src/pagination/ListExperiencesPaginator.ts index ce9b318bc4e83..6e9bbf4a767e7 100644 --- a/clients/client-kendra/src/pagination/ListExperiencesPaginator.ts +++ b/clients/client-kendra/src/pagination/ListExperiencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExperiencesCommand, diff --git a/clients/client-kendra/src/pagination/ListFaqsPaginator.ts b/clients/client-kendra/src/pagination/ListFaqsPaginator.ts index 3d4795ab18e76..6a6d1a04b441e 100644 --- a/clients/client-kendra/src/pagination/ListFaqsPaginator.ts +++ b/clients/client-kendra/src/pagination/ListFaqsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFaqsCommand, ListFaqsCommandInput, ListFaqsCommandOutput } from "../commands/ListFaqsCommand"; import { KendraClient } from "../KendraClient"; diff --git a/clients/client-kendra/src/pagination/ListGroupsOlderThanOrderingIdPaginator.ts b/clients/client-kendra/src/pagination/ListGroupsOlderThanOrderingIdPaginator.ts index 15ef6b96dffc1..f0bf3aef71136 100644 --- a/clients/client-kendra/src/pagination/ListGroupsOlderThanOrderingIdPaginator.ts +++ b/clients/client-kendra/src/pagination/ListGroupsOlderThanOrderingIdPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsOlderThanOrderingIdCommand, diff --git a/clients/client-kendra/src/pagination/ListIndicesPaginator.ts b/clients/client-kendra/src/pagination/ListIndicesPaginator.ts index c0f5a86142831..59e526ee23a82 100644 --- a/clients/client-kendra/src/pagination/ListIndicesPaginator.ts +++ b/clients/client-kendra/src/pagination/ListIndicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIndicesCommand, ListIndicesCommandInput, ListIndicesCommandOutput } from "../commands/ListIndicesCommand"; import { KendraClient } from "../KendraClient"; diff --git a/clients/client-kendra/src/pagination/ListQuerySuggestionsBlockListsPaginator.ts b/clients/client-kendra/src/pagination/ListQuerySuggestionsBlockListsPaginator.ts index c615dc42afcbb..7275c2d8e3dda 100644 --- a/clients/client-kendra/src/pagination/ListQuerySuggestionsBlockListsPaginator.ts +++ b/clients/client-kendra/src/pagination/ListQuerySuggestionsBlockListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQuerySuggestionsBlockListsCommand, diff --git a/clients/client-kendra/src/pagination/ListThesauriPaginator.ts b/clients/client-kendra/src/pagination/ListThesauriPaginator.ts index 88100e4c3a9cb..35f45e7568cb5 100644 --- a/clients/client-kendra/src/pagination/ListThesauriPaginator.ts +++ b/clients/client-kendra/src/pagination/ListThesauriPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThesauriCommand, diff --git a/clients/client-kendra/src/runtimeConfig.browser.ts b/clients/client-kendra/src/runtimeConfig.browser.ts index 1b4391f9a05cc..439145507f342 100644 --- a/clients/client-kendra/src/runtimeConfig.browser.ts +++ b/clients/client-kendra/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KendraClientConfig } from "./KendraClient"; + +import type { KendraClientConfig } from "./KendraClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kendra/src/runtimeConfig.native.ts b/clients/client-kendra/src/runtimeConfig.native.ts index 0f0a482d352be..4654e3db0f892 100644 --- a/clients/client-kendra/src/runtimeConfig.native.ts +++ b/clients/client-kendra/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KendraClientConfig } from "./KendraClient"; +import type { KendraClientConfig } from "./KendraClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kendra/src/runtimeConfig.shared.ts b/clients/client-kendra/src/runtimeConfig.shared.ts index 6c9de16d0ac60..117b668c585bc 100644 --- a/clients/client-kendra/src/runtimeConfig.shared.ts +++ b/clients/client-kendra/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKendraHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KendraClientConfig } from "./KendraClient"; +import type { KendraClientConfig } from "./KendraClient"; /** * @internal diff --git a/clients/client-kendra/src/runtimeConfig.ts b/clients/client-kendra/src/runtimeConfig.ts index 122822f192d9a..fe72b74944d95 100644 --- a/clients/client-kendra/src/runtimeConfig.ts +++ b/clients/client-kendra/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KendraClientConfig } from "./KendraClient"; + +import type { KendraClientConfig } from "./KendraClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kendra/src/runtimeExtensions.ts b/clients/client-kendra/src/runtimeExtensions.ts index 8bb85a19fd4a0..c329c7cee4cfe 100644 --- a/clients/client-kendra/src/runtimeExtensions.ts +++ b/clients/client-kendra/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KendraExtensionConfiguration } from "./extensionConfiguration"; +import type { KendraExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kendra/src/schemas/schemas_0.ts b/clients/client-kendra/src/schemas/schemas_0.ts index bbc7e2c4dcf0b..cab0c1c5f3a94 100644 --- a/clients/client-kendra/src/schemas/schemas_0.ts +++ b/clients/client-kendra/src/schemas/schemas_0.ts @@ -813,7 +813,7 @@ const n0 = "com.amazonaws.kendra"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-keyspaces/package.json b/clients/client-keyspaces/package.json index aad944f41a463..99321f8c6be24 100644 --- a/clients/client-keyspaces/package.json +++ b/clients/client-keyspaces/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-keyspaces/src/Keyspaces.ts b/clients/client-keyspaces/src/Keyspaces.ts index f2292584de869..1f1a9fd7c264a 100644 --- a/clients/client-keyspaces/src/Keyspaces.ts +++ b/clients/client-keyspaces/src/Keyspaces.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateKeyspaceCommand, @@ -53,7 +53,7 @@ import { UpdateKeyspaceCommandOutput, } from "./commands/UpdateKeyspaceCommand"; import { UpdateTableCommand, UpdateTableCommandInput, UpdateTableCommandOutput } from "./commands/UpdateTableCommand"; -import { KeyspacesClient, KeyspacesClientConfig } from "./KeyspacesClient"; +import { KeyspacesClient } from "./KeyspacesClient"; const commands = { CreateKeyspaceCommand, diff --git a/clients/client-keyspaces/src/KeyspacesClient.ts b/clients/client-keyspaces/src/KeyspacesClient.ts index 85c34ba9a9c30..6b4866338a499 100644 --- a/clients/client-keyspaces/src/KeyspacesClient.ts +++ b/clients/client-keyspaces/src/KeyspacesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKeyspacesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateKeyspaceCommandInput, CreateKeyspaceCommandOutput } from "./commands/CreateKeyspaceCommand"; @@ -89,7 +98,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-keyspaces/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-keyspaces/src/auth/httpAuthExtensionConfiguration.ts index 2e478a0fd8fb0..5ffa27a3b56a4 100644 --- a/clients/client-keyspaces/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-keyspaces/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KeyspacesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KeyspacesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-keyspaces/src/auth/httpAuthSchemeProvider.ts b/clients/client-keyspaces/src/auth/httpAuthSchemeProvider.ts index 21ece964964e3..02d24d83d6a22 100644 --- a/clients/client-keyspaces/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-keyspaces/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KeyspacesClientConfig, KeyspacesClientResolvedConfig } from "../KeyspacesClient"; +import { type KeyspacesClientResolvedConfig, KeyspacesClientConfig } from "../KeyspacesClient"; /** * @internal diff --git a/clients/client-keyspaces/src/commands/CreateKeyspaceCommand.ts b/clients/client-keyspaces/src/commands/CreateKeyspaceCommand.ts index cd4fa00802524..75a332771ae8f 100644 --- a/clients/client-keyspaces/src/commands/CreateKeyspaceCommand.ts +++ b/clients/client-keyspaces/src/commands/CreateKeyspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { CreateKeyspaceRequest, CreateKeyspaceResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { CreateKeyspaceRequest, CreateKeyspaceResponse } from "../models/models_0"; import { CreateKeyspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/CreateTableCommand.ts b/clients/client-keyspaces/src/commands/CreateTableCommand.ts index e761ac5fc996d..c6466e9602ee0 100644 --- a/clients/client-keyspaces/src/commands/CreateTableCommand.ts +++ b/clients/client-keyspaces/src/commands/CreateTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { CreateTableRequest, CreateTableResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { CreateTableRequest, CreateTableResponse } from "../models/models_0"; import { CreateTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/CreateTypeCommand.ts b/clients/client-keyspaces/src/commands/CreateTypeCommand.ts index 6a4baf1eeda1c..9a25f37a113de 100644 --- a/clients/client-keyspaces/src/commands/CreateTypeCommand.ts +++ b/clients/client-keyspaces/src/commands/CreateTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { CreateTypeRequest, CreateTypeResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { CreateTypeRequest, CreateTypeResponse } from "../models/models_0"; import { CreateType } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/DeleteKeyspaceCommand.ts b/clients/client-keyspaces/src/commands/DeleteKeyspaceCommand.ts index 7e999be322966..69f7a3f9ae48f 100644 --- a/clients/client-keyspaces/src/commands/DeleteKeyspaceCommand.ts +++ b/clients/client-keyspaces/src/commands/DeleteKeyspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { DeleteKeyspaceRequest, DeleteKeyspaceResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { DeleteKeyspaceRequest, DeleteKeyspaceResponse } from "../models/models_0"; import { DeleteKeyspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/DeleteTableCommand.ts b/clients/client-keyspaces/src/commands/DeleteTableCommand.ts index bc8f54057f09f..29799309004cf 100644 --- a/clients/client-keyspaces/src/commands/DeleteTableCommand.ts +++ b/clients/client-keyspaces/src/commands/DeleteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { DeleteTableRequest, DeleteTableResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { DeleteTableRequest, DeleteTableResponse } from "../models/models_0"; import { DeleteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/DeleteTypeCommand.ts b/clients/client-keyspaces/src/commands/DeleteTypeCommand.ts index c2828ae484ec7..50836754145d5 100644 --- a/clients/client-keyspaces/src/commands/DeleteTypeCommand.ts +++ b/clients/client-keyspaces/src/commands/DeleteTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { DeleteTypeRequest, DeleteTypeResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { DeleteTypeRequest, DeleteTypeResponse } from "../models/models_0"; import { DeleteType } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/GetKeyspaceCommand.ts b/clients/client-keyspaces/src/commands/GetKeyspaceCommand.ts index 53401234fe56a..ec42cb61ce472 100644 --- a/clients/client-keyspaces/src/commands/GetKeyspaceCommand.ts +++ b/clients/client-keyspaces/src/commands/GetKeyspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { GetKeyspaceRequest, GetKeyspaceResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { GetKeyspaceRequest, GetKeyspaceResponse } from "../models/models_0"; import { GetKeyspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/GetTableAutoScalingSettingsCommand.ts b/clients/client-keyspaces/src/commands/GetTableAutoScalingSettingsCommand.ts index 57f86b85ad511..67fd7251d1f77 100644 --- a/clients/client-keyspaces/src/commands/GetTableAutoScalingSettingsCommand.ts +++ b/clients/client-keyspaces/src/commands/GetTableAutoScalingSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { GetTableAutoScalingSettingsRequest, GetTableAutoScalingSettingsResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { GetTableAutoScalingSettingsRequest, GetTableAutoScalingSettingsResponse } from "../models/models_0"; import { GetTableAutoScalingSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/GetTableCommand.ts b/clients/client-keyspaces/src/commands/GetTableCommand.ts index aed104beda04e..d6999449eaba5 100644 --- a/clients/client-keyspaces/src/commands/GetTableCommand.ts +++ b/clients/client-keyspaces/src/commands/GetTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { GetTableRequest, GetTableResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { GetTableRequest, GetTableResponse } from "../models/models_0"; import { GetTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/GetTypeCommand.ts b/clients/client-keyspaces/src/commands/GetTypeCommand.ts index 9382fb4c55a16..f1891dc7cc263 100644 --- a/clients/client-keyspaces/src/commands/GetTypeCommand.ts +++ b/clients/client-keyspaces/src/commands/GetTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { GetTypeRequest, GetTypeResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { GetTypeRequest, GetTypeResponse } from "../models/models_0"; import { GetType } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/ListKeyspacesCommand.ts b/clients/client-keyspaces/src/commands/ListKeyspacesCommand.ts index 0461c29a7903c..6e7527ce68115 100644 --- a/clients/client-keyspaces/src/commands/ListKeyspacesCommand.ts +++ b/clients/client-keyspaces/src/commands/ListKeyspacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { ListKeyspacesRequest, ListKeyspacesResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { ListKeyspacesRequest, ListKeyspacesResponse } from "../models/models_0"; import { ListKeyspaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/ListTablesCommand.ts b/clients/client-keyspaces/src/commands/ListTablesCommand.ts index e3ad79e45e948..800719ef4fd75 100644 --- a/clients/client-keyspaces/src/commands/ListTablesCommand.ts +++ b/clients/client-keyspaces/src/commands/ListTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { ListTablesRequest, ListTablesResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { ListTablesRequest, ListTablesResponse } from "../models/models_0"; import { ListTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/ListTagsForResourceCommand.ts b/clients/client-keyspaces/src/commands/ListTagsForResourceCommand.ts index e74a0ff2d5899..02422ad32b7a4 100644 --- a/clients/client-keyspaces/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-keyspaces/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/ListTypesCommand.ts b/clients/client-keyspaces/src/commands/ListTypesCommand.ts index 98e53ad765365..8b95af5e13c96 100644 --- a/clients/client-keyspaces/src/commands/ListTypesCommand.ts +++ b/clients/client-keyspaces/src/commands/ListTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { ListTypesRequest, ListTypesResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { ListTypesRequest, ListTypesResponse } from "../models/models_0"; import { ListTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/RestoreTableCommand.ts b/clients/client-keyspaces/src/commands/RestoreTableCommand.ts index 4412296f1e144..3a9d0ba762425 100644 --- a/clients/client-keyspaces/src/commands/RestoreTableCommand.ts +++ b/clients/client-keyspaces/src/commands/RestoreTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { RestoreTableRequest, RestoreTableResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { RestoreTableRequest, RestoreTableResponse } from "../models/models_0"; import { RestoreTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/TagResourceCommand.ts b/clients/client-keyspaces/src/commands/TagResourceCommand.ts index 357909171ca22..d708d62132b55 100644 --- a/clients/client-keyspaces/src/commands/TagResourceCommand.ts +++ b/clients/client-keyspaces/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/UntagResourceCommand.ts b/clients/client-keyspaces/src/commands/UntagResourceCommand.ts index 223c6fc045afc..15676f323f1b9 100644 --- a/clients/client-keyspaces/src/commands/UntagResourceCommand.ts +++ b/clients/client-keyspaces/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/UpdateKeyspaceCommand.ts b/clients/client-keyspaces/src/commands/UpdateKeyspaceCommand.ts index 3387dd8f8f57c..007277cbf1823 100644 --- a/clients/client-keyspaces/src/commands/UpdateKeyspaceCommand.ts +++ b/clients/client-keyspaces/src/commands/UpdateKeyspaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { UpdateKeyspaceRequest, UpdateKeyspaceResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { UpdateKeyspaceRequest, UpdateKeyspaceResponse } from "../models/models_0"; import { UpdateKeyspace } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/commands/UpdateTableCommand.ts b/clients/client-keyspaces/src/commands/UpdateTableCommand.ts index fb7adf8fb9c58..69a1ca995cef2 100644 --- a/clients/client-keyspaces/src/commands/UpdateTableCommand.ts +++ b/clients/client-keyspaces/src/commands/UpdateTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; -import { UpdateTableRequest, UpdateTableResponse } from "../models/models_0"; +import type { KeyspacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesClient"; +import type { UpdateTableRequest, UpdateTableResponse } from "../models/models_0"; import { UpdateTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspaces/src/endpoint/EndpointParameters.ts b/clients/client-keyspaces/src/endpoint/EndpointParameters.ts index 87a4377dec143..477e49733327c 100644 --- a/clients/client-keyspaces/src/endpoint/EndpointParameters.ts +++ b/clients/client-keyspaces/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-keyspaces/src/endpoint/endpointResolver.ts b/clients/client-keyspaces/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-keyspaces/src/endpoint/endpointResolver.ts +++ b/clients/client-keyspaces/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-keyspaces/src/extensionConfiguration.ts b/clients/client-keyspaces/src/extensionConfiguration.ts index 576094d119c5a..edbd33891ebb3 100644 --- a/clients/client-keyspaces/src/extensionConfiguration.ts +++ b/clients/client-keyspaces/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-keyspaces/src/models/KeyspacesServiceException.ts b/clients/client-keyspaces/src/models/KeyspacesServiceException.ts index ff5ebbb68d8d3..f626c2219a61a 100644 --- a/clients/client-keyspaces/src/models/KeyspacesServiceException.ts +++ b/clients/client-keyspaces/src/models/KeyspacesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-keyspaces/src/models/errors.ts b/clients/client-keyspaces/src/models/errors.ts index e7f7d85dbd478..08d83b019b5ca 100644 --- a/clients/client-keyspaces/src/models/errors.ts +++ b/clients/client-keyspaces/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KeyspacesServiceException as __BaseException } from "./KeyspacesServiceException"; diff --git a/clients/client-keyspaces/src/pagination/Interfaces.ts b/clients/client-keyspaces/src/pagination/Interfaces.ts index 9f447dea1cb2c..8d73d5cc09b92 100644 --- a/clients/client-keyspaces/src/pagination/Interfaces.ts +++ b/clients/client-keyspaces/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KeyspacesClient } from "../KeyspacesClient"; diff --git a/clients/client-keyspaces/src/pagination/ListKeyspacesPaginator.ts b/clients/client-keyspaces/src/pagination/ListKeyspacesPaginator.ts index 11d7240a99a36..cf405e82e7f51 100644 --- a/clients/client-keyspaces/src/pagination/ListKeyspacesPaginator.ts +++ b/clients/client-keyspaces/src/pagination/ListKeyspacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKeyspacesCommand, diff --git a/clients/client-keyspaces/src/pagination/ListTablesPaginator.ts b/clients/client-keyspaces/src/pagination/ListTablesPaginator.ts index c726917f85f93..6552a5fe38942 100644 --- a/clients/client-keyspaces/src/pagination/ListTablesPaginator.ts +++ b/clients/client-keyspaces/src/pagination/ListTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTablesCommand, ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand"; import { KeyspacesClient } from "../KeyspacesClient"; diff --git a/clients/client-keyspaces/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-keyspaces/src/pagination/ListTagsForResourcePaginator.ts index 6e79f067999bb..3fd47733ffc12 100644 --- a/clients/client-keyspaces/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-keyspaces/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-keyspaces/src/pagination/ListTypesPaginator.ts b/clients/client-keyspaces/src/pagination/ListTypesPaginator.ts index 0e25b3f3a4e1c..c9c2d70fe7ff0 100644 --- a/clients/client-keyspaces/src/pagination/ListTypesPaginator.ts +++ b/clients/client-keyspaces/src/pagination/ListTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTypesCommand, ListTypesCommandInput, ListTypesCommandOutput } from "../commands/ListTypesCommand"; import { KeyspacesClient } from "../KeyspacesClient"; diff --git a/clients/client-keyspaces/src/runtimeConfig.browser.ts b/clients/client-keyspaces/src/runtimeConfig.browser.ts index 22c6592b4abf3..3e317546fd160 100644 --- a/clients/client-keyspaces/src/runtimeConfig.browser.ts +++ b/clients/client-keyspaces/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KeyspacesClientConfig } from "./KeyspacesClient"; + +import type { KeyspacesClientConfig } from "./KeyspacesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-keyspaces/src/runtimeConfig.native.ts b/clients/client-keyspaces/src/runtimeConfig.native.ts index 314774f3272d1..80ed8ccd87333 100644 --- a/clients/client-keyspaces/src/runtimeConfig.native.ts +++ b/clients/client-keyspaces/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KeyspacesClientConfig } from "./KeyspacesClient"; +import type { KeyspacesClientConfig } from "./KeyspacesClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-keyspaces/src/runtimeConfig.shared.ts b/clients/client-keyspaces/src/runtimeConfig.shared.ts index 6975848967f17..e0bc5066d2849 100644 --- a/clients/client-keyspaces/src/runtimeConfig.shared.ts +++ b/clients/client-keyspaces/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKeyspacesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KeyspacesClientConfig } from "./KeyspacesClient"; +import type { KeyspacesClientConfig } from "./KeyspacesClient"; /** * @internal diff --git a/clients/client-keyspaces/src/runtimeConfig.ts b/clients/client-keyspaces/src/runtimeConfig.ts index 814c280d8b06e..39fa2392983a1 100644 --- a/clients/client-keyspaces/src/runtimeConfig.ts +++ b/clients/client-keyspaces/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KeyspacesClientConfig } from "./KeyspacesClient"; + +import type { KeyspacesClientConfig } from "./KeyspacesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-keyspaces/src/runtimeExtensions.ts b/clients/client-keyspaces/src/runtimeExtensions.ts index 4c421ffdc7508..242d151595d83 100644 --- a/clients/client-keyspaces/src/runtimeExtensions.ts +++ b/clients/client-keyspaces/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KeyspacesExtensionConfiguration } from "./extensionConfiguration"; +import type { KeyspacesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-keyspaces/src/schemas/schemas_0.ts b/clients/client-keyspaces/src/schemas/schemas_0.ts index 29cea02814b8c..03e8e72234640 100644 --- a/clients/client-keyspaces/src/schemas/schemas_0.ts +++ b/clients/client-keyspaces/src/schemas/schemas_0.ts @@ -189,7 +189,7 @@ const n0 = "com.amazonaws.keyspaces"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-keyspacesstreams/package.json b/clients/client-keyspacesstreams/package.json index 8a29968954182..3673fa77d44b5 100644 --- a/clients/client-keyspacesstreams/package.json +++ b/clients/client-keyspacesstreams/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-keyspacesstreams/src/KeyspacesStreams.ts b/clients/client-keyspacesstreams/src/KeyspacesStreams.ts index 9e2381a7f53c6..4ea0d8a23456e 100644 --- a/clients/client-keyspacesstreams/src/KeyspacesStreams.ts +++ b/clients/client-keyspacesstreams/src/KeyspacesStreams.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetRecordsCommand, GetRecordsCommandInput, GetRecordsCommandOutput } from "./commands/GetRecordsCommand"; import { @@ -10,7 +10,7 @@ import { } from "./commands/GetShardIteratorCommand"; import { GetStreamCommand, GetStreamCommandInput, GetStreamCommandOutput } from "./commands/GetStreamCommand"; import { ListStreamsCommand, ListStreamsCommandInput, ListStreamsCommandOutput } from "./commands/ListStreamsCommand"; -import { KeyspacesStreamsClient, KeyspacesStreamsClientConfig } from "./KeyspacesStreamsClient"; +import { KeyspacesStreamsClient } from "./KeyspacesStreamsClient"; const commands = { GetRecordsCommand, diff --git a/clients/client-keyspacesstreams/src/KeyspacesStreamsClient.ts b/clients/client-keyspacesstreams/src/KeyspacesStreamsClient.ts index 4b10aa13cd96f..475fab60c1a68 100644 --- a/clients/client-keyspacesstreams/src/KeyspacesStreamsClient.ts +++ b/clients/client-keyspacesstreams/src/KeyspacesStreamsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKeyspacesStreamsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetRecordsCommandInput, GetRecordsCommandOutput } from "./commands/GetRecordsCommand"; @@ -68,7 +77,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-keyspacesstreams/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-keyspacesstreams/src/auth/httpAuthExtensionConfiguration.ts index cf8b687e7f3d6..91dd0a6d53d7f 100644 --- a/clients/client-keyspacesstreams/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-keyspacesstreams/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KeyspacesStreamsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KeyspacesStreamsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-keyspacesstreams/src/auth/httpAuthSchemeProvider.ts b/clients/client-keyspacesstreams/src/auth/httpAuthSchemeProvider.ts index e4e7edffa55e2..a1e0705f1c9a0 100644 --- a/clients/client-keyspacesstreams/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-keyspacesstreams/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KeyspacesStreamsClientConfig, KeyspacesStreamsClientResolvedConfig } from "../KeyspacesStreamsClient"; +import { type KeyspacesStreamsClientResolvedConfig, KeyspacesStreamsClientConfig } from "../KeyspacesStreamsClient"; /** * @internal diff --git a/clients/client-keyspacesstreams/src/commands/GetRecordsCommand.ts b/clients/client-keyspacesstreams/src/commands/GetRecordsCommand.ts index da123934de162..36130d4d5fb21 100644 --- a/clients/client-keyspacesstreams/src/commands/GetRecordsCommand.ts +++ b/clients/client-keyspacesstreams/src/commands/GetRecordsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesStreamsClient"; -import { GetRecordsInput, GetRecordsOutput } from "../models/models_0"; +import type { + KeyspacesStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KeyspacesStreamsClient"; +import type { GetRecordsInput, GetRecordsOutput } from "../models/models_0"; import { GetRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspacesstreams/src/commands/GetShardIteratorCommand.ts b/clients/client-keyspacesstreams/src/commands/GetShardIteratorCommand.ts index 922be29cbea93..a08222b1a5e40 100644 --- a/clients/client-keyspacesstreams/src/commands/GetShardIteratorCommand.ts +++ b/clients/client-keyspacesstreams/src/commands/GetShardIteratorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesStreamsClient"; -import { GetShardIteratorInput, GetShardIteratorOutput } from "../models/models_0"; +import type { + KeyspacesStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KeyspacesStreamsClient"; +import type { GetShardIteratorInput, GetShardIteratorOutput } from "../models/models_0"; import { GetShardIterator } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspacesstreams/src/commands/GetStreamCommand.ts b/clients/client-keyspacesstreams/src/commands/GetStreamCommand.ts index 07f80a9d1c74a..7ae382c54518a 100644 --- a/clients/client-keyspacesstreams/src/commands/GetStreamCommand.ts +++ b/clients/client-keyspacesstreams/src/commands/GetStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesStreamsClient"; -import { GetStreamInput, GetStreamOutput } from "../models/models_0"; +import type { + KeyspacesStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KeyspacesStreamsClient"; +import type { GetStreamInput, GetStreamOutput } from "../models/models_0"; import { GetStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspacesstreams/src/commands/ListStreamsCommand.ts b/clients/client-keyspacesstreams/src/commands/ListStreamsCommand.ts index 9a3bec4d9c3bb..bc1b902dc5d93 100644 --- a/clients/client-keyspacesstreams/src/commands/ListStreamsCommand.ts +++ b/clients/client-keyspacesstreams/src/commands/ListStreamsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KeyspacesStreamsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KeyspacesStreamsClient"; -import { ListStreamsInput, ListStreamsOutput } from "../models/models_0"; +import type { + KeyspacesStreamsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KeyspacesStreamsClient"; +import type { ListStreamsInput, ListStreamsOutput } from "../models/models_0"; import { ListStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-keyspacesstreams/src/endpoint/EndpointParameters.ts b/clients/client-keyspacesstreams/src/endpoint/EndpointParameters.ts index c97f04530451b..b8b5b6292a7ad 100644 --- a/clients/client-keyspacesstreams/src/endpoint/EndpointParameters.ts +++ b/clients/client-keyspacesstreams/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-keyspacesstreams/src/endpoint/endpointResolver.ts b/clients/client-keyspacesstreams/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-keyspacesstreams/src/endpoint/endpointResolver.ts +++ b/clients/client-keyspacesstreams/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-keyspacesstreams/src/extensionConfiguration.ts b/clients/client-keyspacesstreams/src/extensionConfiguration.ts index 7325d68309951..2003667c30e0e 100644 --- a/clients/client-keyspacesstreams/src/extensionConfiguration.ts +++ b/clients/client-keyspacesstreams/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-keyspacesstreams/src/models/KeyspacesStreamsServiceException.ts b/clients/client-keyspacesstreams/src/models/KeyspacesStreamsServiceException.ts index 3d7d4dc645569..aeb847b02ba8e 100644 --- a/clients/client-keyspacesstreams/src/models/KeyspacesStreamsServiceException.ts +++ b/clients/client-keyspacesstreams/src/models/KeyspacesStreamsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-keyspacesstreams/src/models/errors.ts b/clients/client-keyspacesstreams/src/models/errors.ts index 257cabb8a6494..400d4ee799cdb 100644 --- a/clients/client-keyspacesstreams/src/models/errors.ts +++ b/clients/client-keyspacesstreams/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionType } from "./enums"; import { KeyspacesStreamsServiceException as __BaseException } from "./KeyspacesStreamsServiceException"; diff --git a/clients/client-keyspacesstreams/src/pagination/GetStreamPaginator.ts b/clients/client-keyspacesstreams/src/pagination/GetStreamPaginator.ts index a9429dda19c90..71e3ae5e34f84 100644 --- a/clients/client-keyspacesstreams/src/pagination/GetStreamPaginator.ts +++ b/clients/client-keyspacesstreams/src/pagination/GetStreamPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetStreamCommand, GetStreamCommandInput, GetStreamCommandOutput } from "../commands/GetStreamCommand"; import { KeyspacesStreamsClient } from "../KeyspacesStreamsClient"; diff --git a/clients/client-keyspacesstreams/src/pagination/Interfaces.ts b/clients/client-keyspacesstreams/src/pagination/Interfaces.ts index 055ae7fddec5b..1c331d9d31851 100644 --- a/clients/client-keyspacesstreams/src/pagination/Interfaces.ts +++ b/clients/client-keyspacesstreams/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KeyspacesStreamsClient } from "../KeyspacesStreamsClient"; diff --git a/clients/client-keyspacesstreams/src/pagination/ListStreamsPaginator.ts b/clients/client-keyspacesstreams/src/pagination/ListStreamsPaginator.ts index ba7158862f85f..1f04bed05aa4e 100644 --- a/clients/client-keyspacesstreams/src/pagination/ListStreamsPaginator.ts +++ b/clients/client-keyspacesstreams/src/pagination/ListStreamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamsCommand, ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/ListStreamsCommand"; import { KeyspacesStreamsClient } from "../KeyspacesStreamsClient"; diff --git a/clients/client-keyspacesstreams/src/runtimeConfig.browser.ts b/clients/client-keyspacesstreams/src/runtimeConfig.browser.ts index f269a8c6f4482..291db3659852b 100644 --- a/clients/client-keyspacesstreams/src/runtimeConfig.browser.ts +++ b/clients/client-keyspacesstreams/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KeyspacesStreamsClientConfig } from "./KeyspacesStreamsClient"; + +import type { KeyspacesStreamsClientConfig } from "./KeyspacesStreamsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-keyspacesstreams/src/runtimeConfig.native.ts b/clients/client-keyspacesstreams/src/runtimeConfig.native.ts index 87547915fe2be..db6e781b27108 100644 --- a/clients/client-keyspacesstreams/src/runtimeConfig.native.ts +++ b/clients/client-keyspacesstreams/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KeyspacesStreamsClientConfig } from "./KeyspacesStreamsClient"; +import type { KeyspacesStreamsClientConfig } from "./KeyspacesStreamsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-keyspacesstreams/src/runtimeConfig.shared.ts b/clients/client-keyspacesstreams/src/runtimeConfig.shared.ts index c143285ec1593..c8c5825fa42d9 100644 --- a/clients/client-keyspacesstreams/src/runtimeConfig.shared.ts +++ b/clients/client-keyspacesstreams/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKeyspacesStreamsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KeyspacesStreamsClientConfig } from "./KeyspacesStreamsClient"; +import type { KeyspacesStreamsClientConfig } from "./KeyspacesStreamsClient"; /** * @internal diff --git a/clients/client-keyspacesstreams/src/runtimeConfig.ts b/clients/client-keyspacesstreams/src/runtimeConfig.ts index 92e7cf6453e58..b60aac13375d0 100644 --- a/clients/client-keyspacesstreams/src/runtimeConfig.ts +++ b/clients/client-keyspacesstreams/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KeyspacesStreamsClientConfig } from "./KeyspacesStreamsClient"; + +import type { KeyspacesStreamsClientConfig } from "./KeyspacesStreamsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-keyspacesstreams/src/runtimeExtensions.ts b/clients/client-keyspacesstreams/src/runtimeExtensions.ts index 10d54c1fb9969..922e9a1fed176 100644 --- a/clients/client-keyspacesstreams/src/runtimeExtensions.ts +++ b/clients/client-keyspacesstreams/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KeyspacesStreamsExtensionConfiguration } from "./extensionConfiguration"; +import type { KeyspacesStreamsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-keyspacesstreams/src/schemas/schemas_0.ts b/clients/client-keyspacesstreams/src/schemas/schemas_0.ts index 62d8ca015be8a..769fd04426917 100644 --- a/clients/client-keyspacesstreams/src/schemas/schemas_0.ts +++ b/clients/client-keyspacesstreams/src/schemas/schemas_0.ts @@ -108,7 +108,7 @@ const n0 = "com.amazonaws.keyspacesstreams"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-kinesis-analytics-v2/package.json b/clients/client-kinesis-analytics-v2/package.json index 246d062467a3b..e38ef000440d7 100644 --- a/clients/client-kinesis-analytics-v2/package.json +++ b/clients/client-kinesis-analytics-v2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2.ts b/clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2.ts index e9a06127556b9..89344a197fcf9 100644 --- a/clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2.ts +++ b/clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddApplicationCloudWatchLoggingOptionCommand, @@ -163,7 +163,7 @@ import { UpdateApplicationMaintenanceConfigurationCommandInput, UpdateApplicationMaintenanceConfigurationCommandOutput, } from "./commands/UpdateApplicationMaintenanceConfigurationCommand"; -import { KinesisAnalyticsV2Client, KinesisAnalyticsV2ClientConfig } from "./KinesisAnalyticsV2Client"; +import { KinesisAnalyticsV2Client } from "./KinesisAnalyticsV2Client"; const commands = { AddApplicationCloudWatchLoggingOptionCommand, diff --git a/clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2Client.ts b/clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2Client.ts index 30fd5d3d83b31..78210413cb0c4 100644 --- a/clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2Client.ts +++ b/clients/client-kinesis-analytics-v2/src/KinesisAnalyticsV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKinesisAnalyticsV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -172,7 +181,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kinesis-analytics-v2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kinesis-analytics-v2/src/auth/httpAuthExtensionConfiguration.ts index 6110477a831c5..635869c465c86 100644 --- a/clients/client-kinesis-analytics-v2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kinesis-analytics-v2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KinesisAnalyticsV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KinesisAnalyticsV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kinesis-analytics-v2/src/auth/httpAuthSchemeProvider.ts b/clients/client-kinesis-analytics-v2/src/auth/httpAuthSchemeProvider.ts index 873a149207713..a8080b7403e58 100644 --- a/clients/client-kinesis-analytics-v2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kinesis-analytics-v2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KinesisAnalyticsV2ClientConfig, KinesisAnalyticsV2ClientResolvedConfig } from "../KinesisAnalyticsV2Client"; +import { + type KinesisAnalyticsV2ClientResolvedConfig, + KinesisAnalyticsV2ClientConfig, +} from "../KinesisAnalyticsV2Client"; /** * @internal diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts index d80b50ac80e9b..2a8617642a672 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { +import type { AddApplicationCloudWatchLoggingOptionRequest, AddApplicationCloudWatchLoggingOptionResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputCommand.ts index 42d2944a5577c..65fdbd9c72a30 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { AddApplicationInputRequest, AddApplicationInputResponse } from "../models/models_0"; +import type { AddApplicationInputRequest, AddApplicationInputResponse } from "../models/models_0"; import { AddApplicationInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputProcessingConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputProcessingConfigurationCommand.ts index 12d25d9f60c9a..a5a3d439f3364 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputProcessingConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationInputProcessingConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { +import type { AddApplicationInputProcessingConfigurationRequest, AddApplicationInputProcessingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationOutputCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationOutputCommand.ts index 4b83fcb912d97..d402c8d124797 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationOutputCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationOutputCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { AddApplicationOutputRequest, AddApplicationOutputResponse } from "../models/models_0"; +import type { AddApplicationOutputRequest, AddApplicationOutputResponse } from "../models/models_0"; import { AddApplicationOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationReferenceDataSourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationReferenceDataSourceCommand.ts index ee11fbb1a2cce..a6f2e307f859e 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationReferenceDataSourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationReferenceDataSourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { +import type { AddApplicationReferenceDataSourceRequest, AddApplicationReferenceDataSourceResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationVpcConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationVpcConfigurationCommand.ts index fe289824cce29..0ef1e868f5ef3 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/AddApplicationVpcConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/AddApplicationVpcConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { AddApplicationVpcConfigurationRequest, AddApplicationVpcConfigurationResponse } from "../models/models_0"; +import type { AddApplicationVpcConfigurationRequest, AddApplicationVpcConfigurationResponse } from "../models/models_0"; import { AddApplicationVpcConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationCommand.ts index d980a812822df..c2dda736b7408 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationPresignedUrlCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationPresignedUrlCommand.ts index df54225e00657..6cebfbfca61c7 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationPresignedUrlCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationPresignedUrlCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { CreateApplicationPresignedUrlRequest, CreateApplicationPresignedUrlResponse } from "../models/models_0"; +import type { CreateApplicationPresignedUrlRequest, CreateApplicationPresignedUrlResponse } from "../models/models_0"; import { CreateApplicationPresignedUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationSnapshotCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationSnapshotCommand.ts index f818642179d07..1253ea70dd690 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationSnapshotCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/CreateApplicationSnapshotCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { CreateApplicationSnapshotRequest, CreateApplicationSnapshotResponse } from "../models/models_0"; +import type { CreateApplicationSnapshotRequest, CreateApplicationSnapshotResponse } from "../models/models_0"; import { CreateApplicationSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts index eee622462c6cb..f40c1f939a7ec 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { +import type { DeleteApplicationCloudWatchLoggingOptionRequest, DeleteApplicationCloudWatchLoggingOptionResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCommand.ts index cc13c6d3ddc28..1a8f48211a6b3 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts index 968bb0006fa27..b2a9360d3fb24 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { +import type { DeleteApplicationInputProcessingConfigurationRequest, DeleteApplicationInputProcessingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationOutputCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationOutputCommand.ts index 3d9d457a75b65..abf9af078347e 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationOutputCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationOutputCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { DeleteApplicationOutputRequest, DeleteApplicationOutputResponse } from "../models/models_0"; +import type { DeleteApplicationOutputRequest, DeleteApplicationOutputResponse } from "../models/models_0"; import { DeleteApplicationOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationReferenceDataSourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationReferenceDataSourceCommand.ts index e3434c5ba3010..7cd1965ea4eb9 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationReferenceDataSourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationReferenceDataSourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { +import type { DeleteApplicationReferenceDataSourceRequest, DeleteApplicationReferenceDataSourceResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationSnapshotCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationSnapshotCommand.ts index 78cb7217ca88a..6f46935e713a7 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationSnapshotCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationSnapshotCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { DeleteApplicationSnapshotRequest, DeleteApplicationSnapshotResponse } from "../models/models_0"; +import type { DeleteApplicationSnapshotRequest, DeleteApplicationSnapshotResponse } from "../models/models_0"; import { DeleteApplicationSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationVpcConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationVpcConfigurationCommand.ts index 0d4fc33fcd2c8..428f670b3f0b0 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationVpcConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DeleteApplicationVpcConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { +import type { DeleteApplicationVpcConfigurationRequest, DeleteApplicationVpcConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationCommand.ts index e4103945dbc39..4d582dd8ed01e 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0"; +import type { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0"; import { DescribeApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationOperationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationOperationCommand.ts index a7edae01e42ee..718a5f29c36b1 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationOperationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationOperationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { DescribeApplicationOperationRequest, DescribeApplicationOperationResponse } from "../models/models_0"; +import type { DescribeApplicationOperationRequest, DescribeApplicationOperationResponse } from "../models/models_0"; import { DescribeApplicationOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationSnapshotCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationSnapshotCommand.ts index b093a11b9119d..7a1e4301844e8 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationSnapshotCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationSnapshotCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { DescribeApplicationSnapshotRequest, DescribeApplicationSnapshotResponse } from "../models/models_0"; +import type { DescribeApplicationSnapshotRequest, DescribeApplicationSnapshotResponse } from "../models/models_0"; import { DescribeApplicationSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationVersionCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationVersionCommand.ts index a1907275f7b26..e70a2ef8da53b 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationVersionCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DescribeApplicationVersionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { DescribeApplicationVersionRequest, DescribeApplicationVersionResponse } from "../models/models_0"; +import type { DescribeApplicationVersionRequest, DescribeApplicationVersionResponse } from "../models/models_0"; import { DescribeApplicationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/DiscoverInputSchemaCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/DiscoverInputSchemaCommand.ts index 255ffb4912b3d..da920c2e8a728 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/DiscoverInputSchemaCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/DiscoverInputSchemaCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { DiscoverInputSchemaRequest, DiscoverInputSchemaResponse } from "../models/models_0"; +import type { DiscoverInputSchemaRequest, DiscoverInputSchemaResponse } from "../models/models_0"; import { DiscoverInputSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationOperationsCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationOperationsCommand.ts index 788cf1001236b..ca470aaa3f0d0 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationOperationsCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationOperationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { ListApplicationOperationsRequest, ListApplicationOperationsResponse } from "../models/models_0"; +import type { ListApplicationOperationsRequest, ListApplicationOperationsResponse } from "../models/models_0"; import { ListApplicationOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationSnapshotsCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationSnapshotsCommand.ts index 4eaab56e3b1dd..42bb811d36d82 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationSnapshotsCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationSnapshotsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { ListApplicationSnapshotsRequest, ListApplicationSnapshotsResponse } from "../models/models_0"; +import type { ListApplicationSnapshotsRequest, ListApplicationSnapshotsResponse } from "../models/models_0"; import { ListApplicationSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationVersionsCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationVersionsCommand.ts index 5475c5a424ec7..255e766c2e86f 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationVersionsCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0"; +import type { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0"; import { ListApplicationVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationsCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationsCommand.ts index 30f83bf974bfc..fed4dc2ac8139 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListApplicationsCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListApplicationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/ListTagsForResourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/ListTagsForResourceCommand.ts index e0f39d57a11a1..b5847a61f3538 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/RollbackApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/RollbackApplicationCommand.ts index b52db0b06b18c..1939b5d52454b 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/RollbackApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/RollbackApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { RollbackApplicationRequest, RollbackApplicationResponse } from "../models/models_0"; +import type { RollbackApplicationRequest, RollbackApplicationResponse } from "../models/models_0"; import { RollbackApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/StartApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/StartApplicationCommand.ts index e7ccc905591fc..7ff5395bd23de 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/StartApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/StartApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { StartApplicationRequest, StartApplicationResponse } from "../models/models_0"; +import type { StartApplicationRequest, StartApplicationResponse } from "../models/models_0"; import { StartApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/StopApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/StopApplicationCommand.ts index 517af6a03bf39..fb79bff533783 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/StopApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/StopApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { StopApplicationRequest, StopApplicationResponse } from "../models/models_0"; +import type { StopApplicationRequest, StopApplicationResponse } from "../models/models_0"; import { StopApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/TagResourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/TagResourceCommand.ts index 8891161e04008..03909f2c097c9 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/TagResourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/UntagResourceCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/UntagResourceCommand.ts index b6f6df6f74aa6..3e76796ddc7f1 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/UntagResourceCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationCommand.ts index 6e231e69c9e6d..575c93676af1b 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationMaintenanceConfigurationCommand.ts b/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationMaintenanceConfigurationCommand.ts index 17a3ed570cf17..81be720166361 100644 --- a/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationMaintenanceConfigurationCommand.ts +++ b/clients/client-kinesis-analytics-v2/src/commands/UpdateApplicationMaintenanceConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisAnalyticsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisAnalyticsV2Client"; -import { +import type { UpdateApplicationMaintenanceConfigurationRequest, UpdateApplicationMaintenanceConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics-v2/src/endpoint/EndpointParameters.ts b/clients/client-kinesis-analytics-v2/src/endpoint/EndpointParameters.ts index 3242485782872..6e2fdea5c608a 100644 --- a/clients/client-kinesis-analytics-v2/src/endpoint/EndpointParameters.ts +++ b/clients/client-kinesis-analytics-v2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kinesis-analytics-v2/src/endpoint/endpointResolver.ts b/clients/client-kinesis-analytics-v2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kinesis-analytics-v2/src/endpoint/endpointResolver.ts +++ b/clients/client-kinesis-analytics-v2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kinesis-analytics-v2/src/extensionConfiguration.ts b/clients/client-kinesis-analytics-v2/src/extensionConfiguration.ts index 16bf864ab9e63..2f06b0329f547 100644 --- a/clients/client-kinesis-analytics-v2/src/extensionConfiguration.ts +++ b/clients/client-kinesis-analytics-v2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kinesis-analytics-v2/src/models/KinesisAnalyticsV2ServiceException.ts b/clients/client-kinesis-analytics-v2/src/models/KinesisAnalyticsV2ServiceException.ts index 9c55775f0c81e..a104daab6885c 100644 --- a/clients/client-kinesis-analytics-v2/src/models/KinesisAnalyticsV2ServiceException.ts +++ b/clients/client-kinesis-analytics-v2/src/models/KinesisAnalyticsV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kinesis-analytics-v2/src/models/errors.ts b/clients/client-kinesis-analytics-v2/src/models/errors.ts index 08bf628c0ba08..ab440e2ba048a 100644 --- a/clients/client-kinesis-analytics-v2/src/models/errors.ts +++ b/clients/client-kinesis-analytics-v2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KinesisAnalyticsV2ServiceException as __BaseException } from "./KinesisAnalyticsV2ServiceException"; diff --git a/clients/client-kinesis-analytics-v2/src/pagination/Interfaces.ts b/clients/client-kinesis-analytics-v2/src/pagination/Interfaces.ts index 315db46a435a5..e4bbbc1620c45 100644 --- a/clients/client-kinesis-analytics-v2/src/pagination/Interfaces.ts +++ b/clients/client-kinesis-analytics-v2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KinesisAnalyticsV2Client } from "../KinesisAnalyticsV2Client"; diff --git a/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationOperationsPaginator.ts b/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationOperationsPaginator.ts index 7c7ecbd636c08..cd88d7685af21 100644 --- a/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationOperationsPaginator.ts +++ b/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationOperationsCommand, diff --git a/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationSnapshotsPaginator.ts b/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationSnapshotsPaginator.ts index ea45a947796b1..6b6208482332e 100644 --- a/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationSnapshotsPaginator.ts +++ b/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationSnapshotsCommand, diff --git a/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationVersionsPaginator.ts b/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationVersionsPaginator.ts index e04a63e0cba3f..66d63cf783687 100644 --- a/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationVersionsPaginator.ts +++ b/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationVersionsCommand, diff --git a/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationsPaginator.ts b/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationsPaginator.ts index 47ecebd5608cb..622b2adffff6b 100644 --- a/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-kinesis-analytics-v2/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-kinesis-analytics-v2/src/runtimeConfig.browser.ts b/clients/client-kinesis-analytics-v2/src/runtimeConfig.browser.ts index e1a210b96b83d..2290e61ebb207 100644 --- a/clients/client-kinesis-analytics-v2/src/runtimeConfig.browser.ts +++ b/clients/client-kinesis-analytics-v2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisAnalyticsV2ClientConfig } from "./KinesisAnalyticsV2Client"; + +import type { KinesisAnalyticsV2ClientConfig } from "./KinesisAnalyticsV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kinesis-analytics-v2/src/runtimeConfig.native.ts b/clients/client-kinesis-analytics-v2/src/runtimeConfig.native.ts index 8b97bfd95432b..93a376d53fd20 100644 --- a/clients/client-kinesis-analytics-v2/src/runtimeConfig.native.ts +++ b/clients/client-kinesis-analytics-v2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KinesisAnalyticsV2ClientConfig } from "./KinesisAnalyticsV2Client"; +import type { KinesisAnalyticsV2ClientConfig } from "./KinesisAnalyticsV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kinesis-analytics-v2/src/runtimeConfig.shared.ts b/clients/client-kinesis-analytics-v2/src/runtimeConfig.shared.ts index 5de8b883f7c57..9ce5fe796faf6 100644 --- a/clients/client-kinesis-analytics-v2/src/runtimeConfig.shared.ts +++ b/clients/client-kinesis-analytics-v2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKinesisAnalyticsV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KinesisAnalyticsV2ClientConfig } from "./KinesisAnalyticsV2Client"; +import type { KinesisAnalyticsV2ClientConfig } from "./KinesisAnalyticsV2Client"; /** * @internal diff --git a/clients/client-kinesis-analytics-v2/src/runtimeConfig.ts b/clients/client-kinesis-analytics-v2/src/runtimeConfig.ts index 0ba9ef495e689..ea137e185bb03 100644 --- a/clients/client-kinesis-analytics-v2/src/runtimeConfig.ts +++ b/clients/client-kinesis-analytics-v2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisAnalyticsV2ClientConfig } from "./KinesisAnalyticsV2Client"; + +import type { KinesisAnalyticsV2ClientConfig } from "./KinesisAnalyticsV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kinesis-analytics-v2/src/runtimeExtensions.ts b/clients/client-kinesis-analytics-v2/src/runtimeExtensions.ts index 1e037a765a13e..3dd93ac5adf14 100644 --- a/clients/client-kinesis-analytics-v2/src/runtimeExtensions.ts +++ b/clients/client-kinesis-analytics-v2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KinesisAnalyticsV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { KinesisAnalyticsV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kinesis-analytics-v2/src/schemas/schemas_0.ts b/clients/client-kinesis-analytics-v2/src/schemas/schemas_0.ts index bac4c0a922311..21cdb11867df0 100644 --- a/clients/client-kinesis-analytics-v2/src/schemas/schemas_0.ts +++ b/clients/client-kinesis-analytics-v2/src/schemas/schemas_0.ts @@ -424,7 +424,7 @@ const n0 = "com.amazonaws.kinesisanalyticsv2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-kinesis-analytics/package.json b/clients/client-kinesis-analytics/package.json index 045f6506553d1..20959556a3f71 100644 --- a/clients/client-kinesis-analytics/package.json +++ b/clients/client-kinesis-analytics/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kinesis-analytics/src/KinesisAnalytics.ts b/clients/client-kinesis-analytics/src/KinesisAnalytics.ts index c4a03553f3034..3929ffcffbe8d 100644 --- a/clients/client-kinesis-analytics/src/KinesisAnalytics.ts +++ b/clients/client-kinesis-analytics/src/KinesisAnalytics.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddApplicationCloudWatchLoggingOptionCommand, @@ -98,7 +98,7 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput, } from "./commands/UpdateApplicationCommand"; -import { KinesisAnalyticsClient, KinesisAnalyticsClientConfig } from "./KinesisAnalyticsClient"; +import { KinesisAnalyticsClient } from "./KinesisAnalyticsClient"; const commands = { AddApplicationCloudWatchLoggingOptionCommand, diff --git a/clients/client-kinesis-analytics/src/KinesisAnalyticsClient.ts b/clients/client-kinesis-analytics/src/KinesisAnalyticsClient.ts index d831177a482f1..0a5adb99ddad1 100644 --- a/clients/client-kinesis-analytics/src/KinesisAnalyticsClient.ts +++ b/clients/client-kinesis-analytics/src/KinesisAnalyticsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKinesisAnalyticsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -120,7 +129,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kinesis-analytics/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kinesis-analytics/src/auth/httpAuthExtensionConfiguration.ts index 6d16d061ae48a..a76d7b01ad7cf 100644 --- a/clients/client-kinesis-analytics/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kinesis-analytics/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KinesisAnalyticsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KinesisAnalyticsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kinesis-analytics/src/auth/httpAuthSchemeProvider.ts b/clients/client-kinesis-analytics/src/auth/httpAuthSchemeProvider.ts index 97ffc084fb571..7fdcfe132a4d3 100644 --- a/clients/client-kinesis-analytics/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kinesis-analytics/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KinesisAnalyticsClientConfig, KinesisAnalyticsClientResolvedConfig } from "../KinesisAnalyticsClient"; +import { type KinesisAnalyticsClientResolvedConfig, KinesisAnalyticsClientConfig } from "../KinesisAnalyticsClient"; /** * @internal diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts index 2b81f984c3dcf..8f25291f391e6 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationCloudWatchLoggingOptionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { AddApplicationCloudWatchLoggingOptionRequest, AddApplicationCloudWatchLoggingOptionResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationInputCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationInputCommand.ts index e67139e2b58dd..3db2b70d4e2cb 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationInputCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationInputCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { AddApplicationInputRequest, AddApplicationInputResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { AddApplicationInputRequest, AddApplicationInputResponse } from "../models/models_0"; import { AddApplicationInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationInputProcessingConfigurationCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationInputProcessingConfigurationCommand.ts index 5036afd654b2b..81f0de6467710 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationInputProcessingConfigurationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationInputProcessingConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { AddApplicationInputProcessingConfigurationRequest, AddApplicationInputProcessingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationOutputCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationOutputCommand.ts index 9abbb6b1dea82..9a1f5e4e4df3f 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationOutputCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationOutputCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { AddApplicationOutputRequest, AddApplicationOutputResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { AddApplicationOutputRequest, AddApplicationOutputResponse } from "../models/models_0"; import { AddApplicationOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/AddApplicationReferenceDataSourceCommand.ts b/clients/client-kinesis-analytics/src/commands/AddApplicationReferenceDataSourceCommand.ts index 6a7f45ac77f9c..a23b00f3b2a6b 100644 --- a/clients/client-kinesis-analytics/src/commands/AddApplicationReferenceDataSourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/AddApplicationReferenceDataSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { AddApplicationReferenceDataSourceRequest, AddApplicationReferenceDataSourceResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics/src/commands/CreateApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/CreateApplicationCommand.ts index 4a20d5f1b0ae7..acca261ba9ee9 100644 --- a/clients/client-kinesis-analytics/src/commands/CreateApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts index d4da4863a8fce..9d48924f44d06 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationCloudWatchLoggingOptionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { DeleteApplicationCloudWatchLoggingOptionRequest, DeleteApplicationCloudWatchLoggingOptionResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationCommand.ts index 16873feb8c345..a45b870a34e54 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts index 4428217798ef2..c389cc2d4ffbd 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationInputProcessingConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { DeleteApplicationInputProcessingConfigurationRequest, DeleteApplicationInputProcessingConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationOutputCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationOutputCommand.ts index 0a64f0a23ed2f..fbe9f5cabc7ae 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationOutputCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationOutputCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { DeleteApplicationOutputRequest, DeleteApplicationOutputResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { DeleteApplicationOutputRequest, DeleteApplicationOutputResponse } from "../models/models_0"; import { DeleteApplicationOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/DeleteApplicationReferenceDataSourceCommand.ts b/clients/client-kinesis-analytics/src/commands/DeleteApplicationReferenceDataSourceCommand.ts index 8312633da6cbb..61ae9043ab877 100644 --- a/clients/client-kinesis-analytics/src/commands/DeleteApplicationReferenceDataSourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DeleteApplicationReferenceDataSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { DeleteApplicationReferenceDataSourceRequest, DeleteApplicationReferenceDataSourceResponse, } from "../models/models_0"; diff --git a/clients/client-kinesis-analytics/src/commands/DescribeApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/DescribeApplicationCommand.ts index 479bdb74a28d1..ed5f501fd62bd 100644 --- a/clients/client-kinesis-analytics/src/commands/DescribeApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DescribeApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0"; import { DescribeApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/DiscoverInputSchemaCommand.ts b/clients/client-kinesis-analytics/src/commands/DiscoverInputSchemaCommand.ts index a077a57de2506..5d37cb0ea24dc 100644 --- a/clients/client-kinesis-analytics/src/commands/DiscoverInputSchemaCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/DiscoverInputSchemaCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { DiscoverInputSchemaRequest, DiscoverInputSchemaResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { DiscoverInputSchemaRequest, DiscoverInputSchemaResponse } from "../models/models_0"; import { DiscoverInputSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/ListApplicationsCommand.ts b/clients/client-kinesis-analytics/src/commands/ListApplicationsCommand.ts index 8affdff432e2f..6270a125ad40a 100644 --- a/clients/client-kinesis-analytics/src/commands/ListApplicationsCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/ListTagsForResourceCommand.ts b/clients/client-kinesis-analytics/src/commands/ListTagsForResourceCommand.ts index 5ac7730270e11..4769960189b8c 100644 --- a/clients/client-kinesis-analytics/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/StartApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/StartApplicationCommand.ts index f7894575b9512..35e97991b0f76 100644 --- a/clients/client-kinesis-analytics/src/commands/StartApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/StartApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { StartApplicationRequest, StartApplicationResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { StartApplicationRequest, StartApplicationResponse } from "../models/models_0"; import { StartApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/StopApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/StopApplicationCommand.ts index 724d8a5ce65c0..8ff68f65a3ef3 100644 --- a/clients/client-kinesis-analytics/src/commands/StopApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/StopApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { StopApplicationRequest, StopApplicationResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { StopApplicationRequest, StopApplicationResponse } from "../models/models_0"; import { StopApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/TagResourceCommand.ts b/clients/client-kinesis-analytics/src/commands/TagResourceCommand.ts index 08f1ae053c1dc..4f9c84016bbd9 100644 --- a/clients/client-kinesis-analytics/src/commands/TagResourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/UntagResourceCommand.ts b/clients/client-kinesis-analytics/src/commands/UntagResourceCommand.ts index 9f7260fa64aa5..551f19897b26e 100644 --- a/clients/client-kinesis-analytics/src/commands/UntagResourceCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/commands/UpdateApplicationCommand.ts b/clients/client-kinesis-analytics/src/commands/UpdateApplicationCommand.ts index c707664afb6ec..fa50ce7284e3c 100644 --- a/clients/client-kinesis-analytics/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-kinesis-analytics/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { + KinesisAnalyticsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../KinesisAnalyticsClient"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-analytics/src/endpoint/EndpointParameters.ts b/clients/client-kinesis-analytics/src/endpoint/EndpointParameters.ts index 3242485782872..6e2fdea5c608a 100644 --- a/clients/client-kinesis-analytics/src/endpoint/EndpointParameters.ts +++ b/clients/client-kinesis-analytics/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kinesis-analytics/src/endpoint/endpointResolver.ts b/clients/client-kinesis-analytics/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kinesis-analytics/src/endpoint/endpointResolver.ts +++ b/clients/client-kinesis-analytics/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kinesis-analytics/src/extensionConfiguration.ts b/clients/client-kinesis-analytics/src/extensionConfiguration.ts index 718b8db86e081..81ea3ed7e3d23 100644 --- a/clients/client-kinesis-analytics/src/extensionConfiguration.ts +++ b/clients/client-kinesis-analytics/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kinesis-analytics/src/models/KinesisAnalyticsServiceException.ts b/clients/client-kinesis-analytics/src/models/KinesisAnalyticsServiceException.ts index 701e0b4b74058..08b75d7b8c578 100644 --- a/clients/client-kinesis-analytics/src/models/KinesisAnalyticsServiceException.ts +++ b/clients/client-kinesis-analytics/src/models/KinesisAnalyticsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kinesis-analytics/src/models/errors.ts b/clients/client-kinesis-analytics/src/models/errors.ts index cc34d13e06859..88fdcc230df30 100644 --- a/clients/client-kinesis-analytics/src/models/errors.ts +++ b/clients/client-kinesis-analytics/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KinesisAnalyticsServiceException as __BaseException } from "./KinesisAnalyticsServiceException"; diff --git a/clients/client-kinesis-analytics/src/runtimeConfig.browser.ts b/clients/client-kinesis-analytics/src/runtimeConfig.browser.ts index faa1ff31cb2c8..e219a0f8acadf 100644 --- a/clients/client-kinesis-analytics/src/runtimeConfig.browser.ts +++ b/clients/client-kinesis-analytics/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisAnalyticsClientConfig } from "./KinesisAnalyticsClient"; + +import type { KinesisAnalyticsClientConfig } from "./KinesisAnalyticsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kinesis-analytics/src/runtimeConfig.native.ts b/clients/client-kinesis-analytics/src/runtimeConfig.native.ts index 52a95a2ccad63..06506531bf86f 100644 --- a/clients/client-kinesis-analytics/src/runtimeConfig.native.ts +++ b/clients/client-kinesis-analytics/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KinesisAnalyticsClientConfig } from "./KinesisAnalyticsClient"; +import type { KinesisAnalyticsClientConfig } from "./KinesisAnalyticsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kinesis-analytics/src/runtimeConfig.shared.ts b/clients/client-kinesis-analytics/src/runtimeConfig.shared.ts index b128acc3bc45f..c85a07039e8b6 100644 --- a/clients/client-kinesis-analytics/src/runtimeConfig.shared.ts +++ b/clients/client-kinesis-analytics/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKinesisAnalyticsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KinesisAnalyticsClientConfig } from "./KinesisAnalyticsClient"; +import type { KinesisAnalyticsClientConfig } from "./KinesisAnalyticsClient"; /** * @internal diff --git a/clients/client-kinesis-analytics/src/runtimeConfig.ts b/clients/client-kinesis-analytics/src/runtimeConfig.ts index 010338f07124e..dfd71de6f471a 100644 --- a/clients/client-kinesis-analytics/src/runtimeConfig.ts +++ b/clients/client-kinesis-analytics/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisAnalyticsClientConfig } from "./KinesisAnalyticsClient"; + +import type { KinesisAnalyticsClientConfig } from "./KinesisAnalyticsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kinesis-analytics/src/runtimeExtensions.ts b/clients/client-kinesis-analytics/src/runtimeExtensions.ts index 492406c6838cf..3c6e3d4cc489b 100644 --- a/clients/client-kinesis-analytics/src/runtimeExtensions.ts +++ b/clients/client-kinesis-analytics/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KinesisAnalyticsExtensionConfiguration } from "./extensionConfiguration"; +import type { KinesisAnalyticsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kinesis-analytics/src/schemas/schemas_0.ts b/clients/client-kinesis-analytics/src/schemas/schemas_0.ts index 69d8a5eb4d70d..774311ce3bad5 100644 --- a/clients/client-kinesis-analytics/src/schemas/schemas_0.ts +++ b/clients/client-kinesis-analytics/src/schemas/schemas_0.ts @@ -208,7 +208,7 @@ const n0 = "com.amazonaws.kinesisanalytics"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { CodeValidationException as __CodeValidationException, diff --git a/clients/client-kinesis-video-archived-media/package.json b/clients/client-kinesis-video-archived-media/package.json index cd8b9f851f7c3..d4a3b2e364b21 100644 --- a/clients/client-kinesis-video-archived-media/package.json +++ b/clients/client-kinesis-video-archived-media/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kinesis-video-archived-media/src/KinesisVideoArchivedMedia.ts b/clients/client-kinesis-video-archived-media/src/KinesisVideoArchivedMedia.ts index 6b550ecbb9a76..9e9cc13699ee9 100644 --- a/clients/client-kinesis-video-archived-media/src/KinesisVideoArchivedMedia.ts +++ b/clients/client-kinesis-video-archived-media/src/KinesisVideoArchivedMedia.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetClipCommand, GetClipCommandInput, GetClipCommandOutput } from "./commands/GetClipCommand"; import { @@ -24,10 +24,7 @@ import { ListFragmentsCommandInput, ListFragmentsCommandOutput, } from "./commands/ListFragmentsCommand"; -import { - KinesisVideoArchivedMediaClient, - KinesisVideoArchivedMediaClientConfig, -} from "./KinesisVideoArchivedMediaClient"; +import { KinesisVideoArchivedMediaClient } from "./KinesisVideoArchivedMediaClient"; const commands = { GetClipCommand, diff --git a/clients/client-kinesis-video-archived-media/src/KinesisVideoArchivedMediaClient.ts b/clients/client-kinesis-video-archived-media/src/KinesisVideoArchivedMediaClient.ts index 803231ea75fc1..6a4183cb7c37a 100644 --- a/clients/client-kinesis-video-archived-media/src/KinesisVideoArchivedMediaClient.ts +++ b/clients/client-kinesis-video-archived-media/src/KinesisVideoArchivedMediaClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKinesisVideoArchivedMediaHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetClipCommandInput, GetClipCommandOutput } from "./commands/GetClipCommand"; @@ -80,7 +89,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kinesis-video-archived-media/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kinesis-video-archived-media/src/auth/httpAuthExtensionConfiguration.ts index 6e6f7eb35838e..04201e136679e 100644 --- a/clients/client-kinesis-video-archived-media/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kinesis-video-archived-media/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KinesisVideoArchivedMediaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KinesisVideoArchivedMediaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kinesis-video-archived-media/src/auth/httpAuthSchemeProvider.ts b/clients/client-kinesis-video-archived-media/src/auth/httpAuthSchemeProvider.ts index b92544cfc9bd2..4cf4dc70bfeb7 100644 --- a/clients/client-kinesis-video-archived-media/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kinesis-video-archived-media/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type KinesisVideoArchivedMediaClientResolvedConfig, KinesisVideoArchivedMediaClientConfig, - KinesisVideoArchivedMediaClientResolvedConfig, } from "../KinesisVideoArchivedMediaClient"; /** diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetClipCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetClipCommand.ts index 99cdc62c353d6..2fd8e1427362b 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetClipCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetClipCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoArchivedMediaClient"; -import { GetClipInput, GetClipOutput } from "../models/models_0"; +import { type GetClipInput, GetClipOutput } from "../models/models_0"; import { GetClip } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetDASHStreamingSessionURLCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetDASHStreamingSessionURLCommand.ts index ede21d697bd64..6ecfafad53d1a 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetDASHStreamingSessionURLCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetDASHStreamingSessionURLCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoArchivedMediaClient"; -import { GetDASHStreamingSessionURLInput, GetDASHStreamingSessionURLOutput } from "../models/models_0"; +import type { GetDASHStreamingSessionURLInput, GetDASHStreamingSessionURLOutput } from "../models/models_0"; import { GetDASHStreamingSessionURL } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetHLSStreamingSessionURLCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetHLSStreamingSessionURLCommand.ts index bef2dd8266150..525e9b6054183 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetHLSStreamingSessionURLCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetHLSStreamingSessionURLCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoArchivedMediaClient"; -import { GetHLSStreamingSessionURLInput, GetHLSStreamingSessionURLOutput } from "../models/models_0"; +import type { GetHLSStreamingSessionURLInput, GetHLSStreamingSessionURLOutput } from "../models/models_0"; import { GetHLSStreamingSessionURL } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetImagesCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetImagesCommand.ts index 96e74d6687c55..d4d159cdad612 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetImagesCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetImagesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoArchivedMediaClient"; -import { GetImagesInput, GetImagesOutput } from "../models/models_0"; +import type { GetImagesInput, GetImagesOutput } from "../models/models_0"; import { GetImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-archived-media/src/commands/GetMediaForFragmentListCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/GetMediaForFragmentListCommand.ts index 404d7f808167b..dcd6efc18b68c 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/GetMediaForFragmentListCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/GetMediaForFragmentListCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoArchivedMediaClient"; -import { GetMediaForFragmentListInput, GetMediaForFragmentListOutput } from "../models/models_0"; +import { type GetMediaForFragmentListInput, GetMediaForFragmentListOutput } from "../models/models_0"; import { GetMediaForFragmentList } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-archived-media/src/commands/ListFragmentsCommand.ts b/clients/client-kinesis-video-archived-media/src/commands/ListFragmentsCommand.ts index be87503cc08c3..d213ad2e7f03d 100644 --- a/clients/client-kinesis-video-archived-media/src/commands/ListFragmentsCommand.ts +++ b/clients/client-kinesis-video-archived-media/src/commands/ListFragmentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoArchivedMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoArchivedMediaClient"; -import { ListFragmentsInput, ListFragmentsOutput } from "../models/models_0"; +import type { ListFragmentsInput, ListFragmentsOutput } from "../models/models_0"; import { ListFragments } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-archived-media/src/endpoint/EndpointParameters.ts b/clients/client-kinesis-video-archived-media/src/endpoint/EndpointParameters.ts index 7662f14df0564..fe60688bc7f38 100644 --- a/clients/client-kinesis-video-archived-media/src/endpoint/EndpointParameters.ts +++ b/clients/client-kinesis-video-archived-media/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kinesis-video-archived-media/src/endpoint/endpointResolver.ts b/clients/client-kinesis-video-archived-media/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kinesis-video-archived-media/src/endpoint/endpointResolver.ts +++ b/clients/client-kinesis-video-archived-media/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kinesis-video-archived-media/src/extensionConfiguration.ts b/clients/client-kinesis-video-archived-media/src/extensionConfiguration.ts index ada138dfc4155..3c8ae284357ec 100644 --- a/clients/client-kinesis-video-archived-media/src/extensionConfiguration.ts +++ b/clients/client-kinesis-video-archived-media/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kinesis-video-archived-media/src/models/KinesisVideoArchivedMediaServiceException.ts b/clients/client-kinesis-video-archived-media/src/models/KinesisVideoArchivedMediaServiceException.ts index 3b7154261bf2d..08c8f2b83b668 100644 --- a/clients/client-kinesis-video-archived-media/src/models/KinesisVideoArchivedMediaServiceException.ts +++ b/clients/client-kinesis-video-archived-media/src/models/KinesisVideoArchivedMediaServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kinesis-video-archived-media/src/models/errors.ts b/clients/client-kinesis-video-archived-media/src/models/errors.ts index 08cafe9f6233f..060190c2203a2 100644 --- a/clients/client-kinesis-video-archived-media/src/models/errors.ts +++ b/clients/client-kinesis-video-archived-media/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KinesisVideoArchivedMediaServiceException as __BaseException } from "./KinesisVideoArchivedMediaServiceException"; diff --git a/clients/client-kinesis-video-archived-media/src/pagination/GetImagesPaginator.ts b/clients/client-kinesis-video-archived-media/src/pagination/GetImagesPaginator.ts index c884c6c34bbca..76325faee00a3 100644 --- a/clients/client-kinesis-video-archived-media/src/pagination/GetImagesPaginator.ts +++ b/clients/client-kinesis-video-archived-media/src/pagination/GetImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetImagesCommand, GetImagesCommandInput, GetImagesCommandOutput } from "../commands/GetImagesCommand"; import { KinesisVideoArchivedMediaClient } from "../KinesisVideoArchivedMediaClient"; diff --git a/clients/client-kinesis-video-archived-media/src/pagination/Interfaces.ts b/clients/client-kinesis-video-archived-media/src/pagination/Interfaces.ts index 1d6c268ebdd0a..a7e2706ee38eb 100644 --- a/clients/client-kinesis-video-archived-media/src/pagination/Interfaces.ts +++ b/clients/client-kinesis-video-archived-media/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KinesisVideoArchivedMediaClient } from "../KinesisVideoArchivedMediaClient"; diff --git a/clients/client-kinesis-video-archived-media/src/pagination/ListFragmentsPaginator.ts b/clients/client-kinesis-video-archived-media/src/pagination/ListFragmentsPaginator.ts index 33df2ab225ada..989931caa0381 100644 --- a/clients/client-kinesis-video-archived-media/src/pagination/ListFragmentsPaginator.ts +++ b/clients/client-kinesis-video-archived-media/src/pagination/ListFragmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFragmentsCommand, diff --git a/clients/client-kinesis-video-archived-media/src/runtimeConfig.browser.ts b/clients/client-kinesis-video-archived-media/src/runtimeConfig.browser.ts index bde47528a66c7..1fb0e43a458de 100644 --- a/clients/client-kinesis-video-archived-media/src/runtimeConfig.browser.ts +++ b/clients/client-kinesis-video-archived-media/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient"; + +import type { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kinesis-video-archived-media/src/runtimeConfig.native.ts b/clients/client-kinesis-video-archived-media/src/runtimeConfig.native.ts index 96f04325bcf27..17003530a5ea6 100644 --- a/clients/client-kinesis-video-archived-media/src/runtimeConfig.native.ts +++ b/clients/client-kinesis-video-archived-media/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient"; +import type { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kinesis-video-archived-media/src/runtimeConfig.shared.ts b/clients/client-kinesis-video-archived-media/src/runtimeConfig.shared.ts index 0599ce3433242..17d91b59897ae 100644 --- a/clients/client-kinesis-video-archived-media/src/runtimeConfig.shared.ts +++ b/clients/client-kinesis-video-archived-media/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKinesisVideoArchivedMediaHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient"; +import type { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient"; /** * @internal diff --git a/clients/client-kinesis-video-archived-media/src/runtimeConfig.ts b/clients/client-kinesis-video-archived-media/src/runtimeConfig.ts index 1c6100f22524e..253c7d80ec6c2 100644 --- a/clients/client-kinesis-video-archived-media/src/runtimeConfig.ts +++ b/clients/client-kinesis-video-archived-media/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient"; + +import type { KinesisVideoArchivedMediaClientConfig } from "./KinesisVideoArchivedMediaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kinesis-video-archived-media/src/runtimeExtensions.ts b/clients/client-kinesis-video-archived-media/src/runtimeExtensions.ts index 2f74f156d99c4..a83516b77f711 100644 --- a/clients/client-kinesis-video-archived-media/src/runtimeExtensions.ts +++ b/clients/client-kinesis-video-archived-media/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KinesisVideoArchivedMediaExtensionConfiguration } from "./extensionConfiguration"; +import type { KinesisVideoArchivedMediaExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kinesis-video-archived-media/src/schemas/schemas_0.ts b/clients/client-kinesis-video-archived-media/src/schemas/schemas_0.ts index ca4c0c4a34ac3..2094989a55be5 100644 --- a/clients/client-kinesis-video-archived-media/src/schemas/schemas_0.ts +++ b/clients/client-kinesis-video-archived-media/src/schemas/schemas_0.ts @@ -84,7 +84,7 @@ const n0 = "com.amazonaws.kinesisvideoarchivedmedia"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-kinesis-video-media/package.json b/clients/client-kinesis-video-media/package.json index 3519eff79551c..1fcaa89763261 100644 --- a/clients/client-kinesis-video-media/package.json +++ b/clients/client-kinesis-video-media/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kinesis-video-media/src/KinesisVideoMedia.ts b/clients/client-kinesis-video-media/src/KinesisVideoMedia.ts index fdf9c106e8ca6..ba9a981e32aa6 100644 --- a/clients/client-kinesis-video-media/src/KinesisVideoMedia.ts +++ b/clients/client-kinesis-video-media/src/KinesisVideoMedia.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetMediaCommand, GetMediaCommandInput, GetMediaCommandOutput } from "./commands/GetMediaCommand"; -import { KinesisVideoMediaClient, KinesisVideoMediaClientConfig } from "./KinesisVideoMediaClient"; +import { KinesisVideoMediaClient } from "./KinesisVideoMediaClient"; const commands = { GetMediaCommand, diff --git a/clients/client-kinesis-video-media/src/KinesisVideoMediaClient.ts b/clients/client-kinesis-video-media/src/KinesisVideoMediaClient.ts index ecebf0175e8e9..902bc54603bf0 100644 --- a/clients/client-kinesis-video-media/src/KinesisVideoMediaClient.ts +++ b/clients/client-kinesis-video-media/src/KinesisVideoMediaClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKinesisVideoMediaHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetMediaCommandInput, GetMediaCommandOutput } from "./commands/GetMediaCommand"; @@ -66,7 +75,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kinesis-video-media/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kinesis-video-media/src/auth/httpAuthExtensionConfiguration.ts index 20dd9d8a95f0f..3c20367a40e11 100644 --- a/clients/client-kinesis-video-media/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kinesis-video-media/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KinesisVideoMediaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KinesisVideoMediaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kinesis-video-media/src/auth/httpAuthSchemeProvider.ts b/clients/client-kinesis-video-media/src/auth/httpAuthSchemeProvider.ts index 352fc46b6e824..ec8567fbe70df 100644 --- a/clients/client-kinesis-video-media/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kinesis-video-media/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KinesisVideoMediaClientConfig, KinesisVideoMediaClientResolvedConfig } from "../KinesisVideoMediaClient"; +import { type KinesisVideoMediaClientResolvedConfig, KinesisVideoMediaClientConfig } from "../KinesisVideoMediaClient"; /** * @internal diff --git a/clients/client-kinesis-video-media/src/commands/GetMediaCommand.ts b/clients/client-kinesis-video-media/src/commands/GetMediaCommand.ts index bceb47a6d8808..6178e5ddc4e34 100644 --- a/clients/client-kinesis-video-media/src/commands/GetMediaCommand.ts +++ b/clients/client-kinesis-video-media/src/commands/GetMediaCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoMediaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoMediaClient"; -import { GetMediaInput, GetMediaOutput } from "../models/models_0"; +import { type GetMediaInput, GetMediaOutput } from "../models/models_0"; import { GetMedia } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-media/src/endpoint/EndpointParameters.ts b/clients/client-kinesis-video-media/src/endpoint/EndpointParameters.ts index 7662f14df0564..fe60688bc7f38 100644 --- a/clients/client-kinesis-video-media/src/endpoint/EndpointParameters.ts +++ b/clients/client-kinesis-video-media/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kinesis-video-media/src/endpoint/endpointResolver.ts b/clients/client-kinesis-video-media/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kinesis-video-media/src/endpoint/endpointResolver.ts +++ b/clients/client-kinesis-video-media/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kinesis-video-media/src/extensionConfiguration.ts b/clients/client-kinesis-video-media/src/extensionConfiguration.ts index d9cfdea6ed564..02afc31d1b67a 100644 --- a/clients/client-kinesis-video-media/src/extensionConfiguration.ts +++ b/clients/client-kinesis-video-media/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kinesis-video-media/src/models/KinesisVideoMediaServiceException.ts b/clients/client-kinesis-video-media/src/models/KinesisVideoMediaServiceException.ts index deafb88a6b003..5309c04aefca0 100644 --- a/clients/client-kinesis-video-media/src/models/KinesisVideoMediaServiceException.ts +++ b/clients/client-kinesis-video-media/src/models/KinesisVideoMediaServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kinesis-video-media/src/models/errors.ts b/clients/client-kinesis-video-media/src/models/errors.ts index 8760e3e63c7f2..9894879e0f3db 100644 --- a/clients/client-kinesis-video-media/src/models/errors.ts +++ b/clients/client-kinesis-video-media/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KinesisVideoMediaServiceException as __BaseException } from "./KinesisVideoMediaServiceException"; diff --git a/clients/client-kinesis-video-media/src/runtimeConfig.browser.ts b/clients/client-kinesis-video-media/src/runtimeConfig.browser.ts index 55c1301a7a1e3..0714615f3cc33 100644 --- a/clients/client-kinesis-video-media/src/runtimeConfig.browser.ts +++ b/clients/client-kinesis-video-media/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoMediaClientConfig } from "./KinesisVideoMediaClient"; + +import type { KinesisVideoMediaClientConfig } from "./KinesisVideoMediaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kinesis-video-media/src/runtimeConfig.native.ts b/clients/client-kinesis-video-media/src/runtimeConfig.native.ts index 2d85fb915515f..20fd44a8220a4 100644 --- a/clients/client-kinesis-video-media/src/runtimeConfig.native.ts +++ b/clients/client-kinesis-video-media/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KinesisVideoMediaClientConfig } from "./KinesisVideoMediaClient"; +import type { KinesisVideoMediaClientConfig } from "./KinesisVideoMediaClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kinesis-video-media/src/runtimeConfig.shared.ts b/clients/client-kinesis-video-media/src/runtimeConfig.shared.ts index 5b7b5cd4231ab..3084cea76594f 100644 --- a/clients/client-kinesis-video-media/src/runtimeConfig.shared.ts +++ b/clients/client-kinesis-video-media/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKinesisVideoMediaHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KinesisVideoMediaClientConfig } from "./KinesisVideoMediaClient"; +import type { KinesisVideoMediaClientConfig } from "./KinesisVideoMediaClient"; /** * @internal diff --git a/clients/client-kinesis-video-media/src/runtimeConfig.ts b/clients/client-kinesis-video-media/src/runtimeConfig.ts index 27f2c9a38ccf3..f6f94b9253fae 100644 --- a/clients/client-kinesis-video-media/src/runtimeConfig.ts +++ b/clients/client-kinesis-video-media/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoMediaClientConfig } from "./KinesisVideoMediaClient"; + +import type { KinesisVideoMediaClientConfig } from "./KinesisVideoMediaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kinesis-video-media/src/runtimeExtensions.ts b/clients/client-kinesis-video-media/src/runtimeExtensions.ts index d2b62ff19ebf0..2ea02f2e52545 100644 --- a/clients/client-kinesis-video-media/src/runtimeExtensions.ts +++ b/clients/client-kinesis-video-media/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KinesisVideoMediaExtensionConfiguration } from "./extensionConfiguration"; +import type { KinesisVideoMediaExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kinesis-video-media/src/schemas/schemas_0.ts b/clients/client-kinesis-video-media/src/schemas/schemas_0.ts index 4287c2961fd09..5b53ce27dd023 100644 --- a/clients/client-kinesis-video-media/src/schemas/schemas_0.ts +++ b/clients/client-kinesis-video-media/src/schemas/schemas_0.ts @@ -29,7 +29,12 @@ const n0 = "com.amazonaws.kinesisvideomedia"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types"; +import type { + StaticErrorSchema, + StaticOperationSchema, + StaticSimpleSchema, + StaticStructureSchema, +} from "@smithy/types"; import { ClientLimitExceededException as __ClientLimitExceededException, diff --git a/clients/client-kinesis-video-signaling/package.json b/clients/client-kinesis-video-signaling/package.json index c51af708e51ba..64b456d622b3c 100644 --- a/clients/client-kinesis-video-signaling/package.json +++ b/clients/client-kinesis-video-signaling/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kinesis-video-signaling/src/KinesisVideoSignaling.ts b/clients/client-kinesis-video-signaling/src/KinesisVideoSignaling.ts index 642664e4c60e6..860a644335d39 100644 --- a/clients/client-kinesis-video-signaling/src/KinesisVideoSignaling.ts +++ b/clients/client-kinesis-video-signaling/src/KinesisVideoSignaling.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetIceServerConfigCommand, @@ -12,7 +12,7 @@ import { SendAlexaOfferToMasterCommandInput, SendAlexaOfferToMasterCommandOutput, } from "./commands/SendAlexaOfferToMasterCommand"; -import { KinesisVideoSignalingClient, KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient"; +import { KinesisVideoSignalingClient } from "./KinesisVideoSignalingClient"; const commands = { GetIceServerConfigCommand, diff --git a/clients/client-kinesis-video-signaling/src/KinesisVideoSignalingClient.ts b/clients/client-kinesis-video-signaling/src/KinesisVideoSignalingClient.ts index f804d4abaf3c4..0a85c6eda62d3 100644 --- a/clients/client-kinesis-video-signaling/src/KinesisVideoSignalingClient.ts +++ b/clients/client-kinesis-video-signaling/src/KinesisVideoSignalingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, getOmitRetryHeadersPlugin, getRetryPlugin, resolveRetryConfig, - RetryInputConfig, - RetryResolvedConfig, } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKinesisVideoSignalingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetIceServerConfigCommandInput, GetIceServerConfigCommandOutput } from "./commands/GetIceServerConfigCommand"; @@ -75,7 +79,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kinesis-video-signaling/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kinesis-video-signaling/src/auth/httpAuthExtensionConfiguration.ts index 491bf258f5609..3ed7eaa242415 100644 --- a/clients/client-kinesis-video-signaling/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kinesis-video-signaling/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KinesisVideoSignalingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KinesisVideoSignalingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kinesis-video-signaling/src/auth/httpAuthSchemeProvider.ts b/clients/client-kinesis-video-signaling/src/auth/httpAuthSchemeProvider.ts index 87548245002a3..c87e1f80884dc 100644 --- a/clients/client-kinesis-video-signaling/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kinesis-video-signaling/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type KinesisVideoSignalingClientResolvedConfig, KinesisVideoSignalingClientConfig, - KinesisVideoSignalingClientResolvedConfig, } from "../KinesisVideoSignalingClient"; /** diff --git a/clients/client-kinesis-video-signaling/src/commands/GetIceServerConfigCommand.ts b/clients/client-kinesis-video-signaling/src/commands/GetIceServerConfigCommand.ts index 2b7ef5e9f65ac..53311fde2103d 100644 --- a/clients/client-kinesis-video-signaling/src/commands/GetIceServerConfigCommand.ts +++ b/clients/client-kinesis-video-signaling/src/commands/GetIceServerConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoSignalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoSignalingClient"; -import { GetIceServerConfigRequest, GetIceServerConfigResponse } from "../models/models_0"; +import type { GetIceServerConfigRequest, GetIceServerConfigResponse } from "../models/models_0"; import { GetIceServerConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-signaling/src/commands/SendAlexaOfferToMasterCommand.ts b/clients/client-kinesis-video-signaling/src/commands/SendAlexaOfferToMasterCommand.ts index d303032cd2627..5222d0d01b955 100644 --- a/clients/client-kinesis-video-signaling/src/commands/SendAlexaOfferToMasterCommand.ts +++ b/clients/client-kinesis-video-signaling/src/commands/SendAlexaOfferToMasterCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoSignalingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoSignalingClient"; -import { SendAlexaOfferToMasterRequest, SendAlexaOfferToMasterResponse } from "../models/models_0"; +import type { SendAlexaOfferToMasterRequest, SendAlexaOfferToMasterResponse } from "../models/models_0"; import { SendAlexaOfferToMaster } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-signaling/src/endpoint/EndpointParameters.ts b/clients/client-kinesis-video-signaling/src/endpoint/EndpointParameters.ts index 7662f14df0564..fe60688bc7f38 100644 --- a/clients/client-kinesis-video-signaling/src/endpoint/EndpointParameters.ts +++ b/clients/client-kinesis-video-signaling/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kinesis-video-signaling/src/endpoint/endpointResolver.ts b/clients/client-kinesis-video-signaling/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kinesis-video-signaling/src/endpoint/endpointResolver.ts +++ b/clients/client-kinesis-video-signaling/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kinesis-video-signaling/src/extensionConfiguration.ts b/clients/client-kinesis-video-signaling/src/extensionConfiguration.ts index 7a1b7eea96f09..4d28927ae5638 100644 --- a/clients/client-kinesis-video-signaling/src/extensionConfiguration.ts +++ b/clients/client-kinesis-video-signaling/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kinesis-video-signaling/src/models/KinesisVideoSignalingServiceException.ts b/clients/client-kinesis-video-signaling/src/models/KinesisVideoSignalingServiceException.ts index cbf07755db8aa..182d7bd2a1ddb 100644 --- a/clients/client-kinesis-video-signaling/src/models/KinesisVideoSignalingServiceException.ts +++ b/clients/client-kinesis-video-signaling/src/models/KinesisVideoSignalingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kinesis-video-signaling/src/models/errors.ts b/clients/client-kinesis-video-signaling/src/models/errors.ts index e18094a6ba66f..7e1b596cfca5c 100644 --- a/clients/client-kinesis-video-signaling/src/models/errors.ts +++ b/clients/client-kinesis-video-signaling/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KinesisVideoSignalingServiceException as __BaseException } from "./KinesisVideoSignalingServiceException"; diff --git a/clients/client-kinesis-video-signaling/src/runtimeConfig.browser.ts b/clients/client-kinesis-video-signaling/src/runtimeConfig.browser.ts index db2f4874a5a20..e1e51728e1461 100644 --- a/clients/client-kinesis-video-signaling/src/runtimeConfig.browser.ts +++ b/clients/client-kinesis-video-signaling/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient"; + +import type { KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kinesis-video-signaling/src/runtimeConfig.native.ts b/clients/client-kinesis-video-signaling/src/runtimeConfig.native.ts index a2889a2d44eba..a427bed95f48d 100644 --- a/clients/client-kinesis-video-signaling/src/runtimeConfig.native.ts +++ b/clients/client-kinesis-video-signaling/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient"; +import type { KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kinesis-video-signaling/src/runtimeConfig.shared.ts b/clients/client-kinesis-video-signaling/src/runtimeConfig.shared.ts index fc20cc5279e0b..f4914452e0c68 100644 --- a/clients/client-kinesis-video-signaling/src/runtimeConfig.shared.ts +++ b/clients/client-kinesis-video-signaling/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKinesisVideoSignalingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient"; +import type { KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient"; /** * @internal diff --git a/clients/client-kinesis-video-signaling/src/runtimeConfig.ts b/clients/client-kinesis-video-signaling/src/runtimeConfig.ts index 046ecc18c59df..90ea2592ccd22 100644 --- a/clients/client-kinesis-video-signaling/src/runtimeConfig.ts +++ b/clients/client-kinesis-video-signaling/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient"; + +import type { KinesisVideoSignalingClientConfig } from "./KinesisVideoSignalingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kinesis-video-signaling/src/runtimeExtensions.ts b/clients/client-kinesis-video-signaling/src/runtimeExtensions.ts index 439e5c82d1abc..73a7e89b06a15 100644 --- a/clients/client-kinesis-video-signaling/src/runtimeExtensions.ts +++ b/clients/client-kinesis-video-signaling/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KinesisVideoSignalingExtensionConfiguration } from "./extensionConfiguration"; +import type { KinesisVideoSignalingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kinesis-video-signaling/src/schemas/schemas_0.ts b/clients/client-kinesis-video-signaling/src/schemas/schemas_0.ts index f0ff5cbd06c77..771f000c2aa4a 100644 --- a/clients/client-kinesis-video-signaling/src/schemas/schemas_0.ts +++ b/clients/client-kinesis-video-signaling/src/schemas/schemas_0.ts @@ -33,7 +33,7 @@ const n0 = "com.amazonaws.kinesisvideosignaling"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ClientLimitExceededException as __ClientLimitExceededException, diff --git a/clients/client-kinesis-video-webrtc-storage/package.json b/clients/client-kinesis-video-webrtc-storage/package.json index b527570828fe2..23d0625edbabb 100644 --- a/clients/client-kinesis-video-webrtc-storage/package.json +++ b/clients/client-kinesis-video-webrtc-storage/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kinesis-video-webrtc-storage/src/KinesisVideoWebRTCStorage.ts b/clients/client-kinesis-video-webrtc-storage/src/KinesisVideoWebRTCStorage.ts index 9353cd9ef7381..05be3e34c5615 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/KinesisVideoWebRTCStorage.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/KinesisVideoWebRTCStorage.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { JoinStorageSessionAsViewerCommand, @@ -12,10 +12,7 @@ import { JoinStorageSessionCommandInput, JoinStorageSessionCommandOutput, } from "./commands/JoinStorageSessionCommand"; -import { - KinesisVideoWebRTCStorageClient, - KinesisVideoWebRTCStorageClientConfig, -} from "./KinesisVideoWebRTCStorageClient"; +import { KinesisVideoWebRTCStorageClient } from "./KinesisVideoWebRTCStorageClient"; const commands = { JoinStorageSessionCommand, diff --git a/clients/client-kinesis-video-webrtc-storage/src/KinesisVideoWebRTCStorageClient.ts b/clients/client-kinesis-video-webrtc-storage/src/KinesisVideoWebRTCStorageClient.ts index 90708811165cf..5e9f1cea253fc 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/KinesisVideoWebRTCStorageClient.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/KinesisVideoWebRTCStorageClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKinesisVideoWebRTCStorageHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -69,7 +78,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kinesis-video-webrtc-storage/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kinesis-video-webrtc-storage/src/auth/httpAuthExtensionConfiguration.ts index 3c6e0b501628e..e8417fe5387be 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KinesisVideoWebRTCStorageHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KinesisVideoWebRTCStorageHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kinesis-video-webrtc-storage/src/auth/httpAuthSchemeProvider.ts b/clients/client-kinesis-video-webrtc-storage/src/auth/httpAuthSchemeProvider.ts index 104ebc5804691..25d09219726f9 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type KinesisVideoWebRTCStorageClientResolvedConfig, KinesisVideoWebRTCStorageClientConfig, - KinesisVideoWebRTCStorageClientResolvedConfig, } from "../KinesisVideoWebRTCStorageClient"; /** diff --git a/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionAsViewerCommand.ts b/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionAsViewerCommand.ts index f7b4f7f3a010c..4e42b108b619d 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionAsViewerCommand.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionAsViewerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoWebRTCStorageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoWebRTCStorageClient"; -import { JoinStorageSessionAsViewerInput } from "../models/models_0"; +import type { JoinStorageSessionAsViewerInput } from "../models/models_0"; import { JoinStorageSessionAsViewer } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionCommand.ts b/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionCommand.ts index 4efc534ded830..6f194179172cb 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionCommand.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/commands/JoinStorageSessionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { KinesisVideoWebRTCStorageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../KinesisVideoWebRTCStorageClient"; -import { JoinStorageSessionInput } from "../models/models_0"; +import type { JoinStorageSessionInput } from "../models/models_0"; import { JoinStorageSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video-webrtc-storage/src/endpoint/EndpointParameters.ts b/clients/client-kinesis-video-webrtc-storage/src/endpoint/EndpointParameters.ts index 7662f14df0564..fe60688bc7f38 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/endpoint/EndpointParameters.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kinesis-video-webrtc-storage/src/endpoint/endpointResolver.ts b/clients/client-kinesis-video-webrtc-storage/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/endpoint/endpointResolver.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kinesis-video-webrtc-storage/src/extensionConfiguration.ts b/clients/client-kinesis-video-webrtc-storage/src/extensionConfiguration.ts index ebc68aeb83ea2..f959d0dd0c63e 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/extensionConfiguration.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kinesis-video-webrtc-storage/src/models/KinesisVideoWebRTCStorageServiceException.ts b/clients/client-kinesis-video-webrtc-storage/src/models/KinesisVideoWebRTCStorageServiceException.ts index 9408835967c05..16cb8161c5484 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/models/KinesisVideoWebRTCStorageServiceException.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/models/KinesisVideoWebRTCStorageServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kinesis-video-webrtc-storage/src/models/errors.ts b/clients/client-kinesis-video-webrtc-storage/src/models/errors.ts index e8cd06b62b829..07fde0e094fbe 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/models/errors.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KinesisVideoWebRTCStorageServiceException as __BaseException } from "./KinesisVideoWebRTCStorageServiceException"; diff --git a/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.browser.ts b/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.browser.ts index 2ac590056a42f..b6af312774220 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.browser.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient"; + +import type { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.native.ts b/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.native.ts index 4201c06f45bf6..8cbf1da7f8436 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.native.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient"; +import type { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.shared.ts b/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.shared.ts index eb6e964383ac8..be5c886b4d885 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.shared.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKinesisVideoWebRTCStorageHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient"; +import type { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient"; /** * @internal diff --git a/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.ts b/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.ts index 564f14a97a8e3..2b2a2fe560684 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient"; + +import type { KinesisVideoWebRTCStorageClientConfig } from "./KinesisVideoWebRTCStorageClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kinesis-video-webrtc-storage/src/runtimeExtensions.ts b/clients/client-kinesis-video-webrtc-storage/src/runtimeExtensions.ts index 641c729b3812d..c5e4d5e683186 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/runtimeExtensions.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KinesisVideoWebRTCStorageExtensionConfiguration } from "./extensionConfiguration"; +import type { KinesisVideoWebRTCStorageExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kinesis-video-webrtc-storage/src/schemas/schemas_0.ts b/clients/client-kinesis-video-webrtc-storage/src/schemas/schemas_0.ts index 164715025b4b9..2f3714786e023 100644 --- a/clients/client-kinesis-video-webrtc-storage/src/schemas/schemas_0.ts +++ b/clients/client-kinesis-video-webrtc-storage/src/schemas/schemas_0.ts @@ -18,7 +18,7 @@ const n0 = "com.amazonaws.kinesisvideowebrtcstorage"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-kinesis-video/package.json b/clients/client-kinesis-video/package.json index b4f49c99af96c..792181da7a6e6 100644 --- a/clients/client-kinesis-video/package.json +++ b/clients/client-kinesis-video/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kinesis-video/src/KinesisVideo.ts b/clients/client-kinesis-video/src/KinesisVideo.ts index cdc04a12fbeff..174c6e19e0591 100644 --- a/clients/client-kinesis-video/src/KinesisVideo.ts +++ b/clients/client-kinesis-video/src/KinesisVideo.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateSignalingChannelCommand, @@ -146,7 +146,7 @@ import { UpdateStreamStorageConfigurationCommandInput, UpdateStreamStorageConfigurationCommandOutput, } from "./commands/UpdateStreamStorageConfigurationCommand"; -import { KinesisVideoClient, KinesisVideoClientConfig } from "./KinesisVideoClient"; +import { KinesisVideoClient } from "./KinesisVideoClient"; const commands = { CreateSignalingChannelCommand, diff --git a/clients/client-kinesis-video/src/KinesisVideoClient.ts b/clients/client-kinesis-video/src/KinesisVideoClient.ts index 3e07e4230ebee..0fedc994eac8d 100644 --- a/clients/client-kinesis-video/src/KinesisVideoClient.ts +++ b/clients/client-kinesis-video/src/KinesisVideoClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKinesisVideoHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -159,7 +168,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kinesis-video/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kinesis-video/src/auth/httpAuthExtensionConfiguration.ts index c642fccb78339..cbe70365587b9 100644 --- a/clients/client-kinesis-video/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kinesis-video/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KinesisVideoHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KinesisVideoHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kinesis-video/src/auth/httpAuthSchemeProvider.ts b/clients/client-kinesis-video/src/auth/httpAuthSchemeProvider.ts index efddd588049bc..5191f4182df85 100644 --- a/clients/client-kinesis-video/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kinesis-video/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KinesisVideoClientConfig, KinesisVideoClientResolvedConfig } from "../KinesisVideoClient"; +import { type KinesisVideoClientResolvedConfig, KinesisVideoClientConfig } from "../KinesisVideoClient"; /** * @internal diff --git a/clients/client-kinesis-video/src/commands/CreateSignalingChannelCommand.ts b/clients/client-kinesis-video/src/commands/CreateSignalingChannelCommand.ts index 569646d8baa02..0a64cb32f3cc5 100644 --- a/clients/client-kinesis-video/src/commands/CreateSignalingChannelCommand.ts +++ b/clients/client-kinesis-video/src/commands/CreateSignalingChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { CreateSignalingChannelInput, CreateSignalingChannelOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { CreateSignalingChannelInput, CreateSignalingChannelOutput } from "../models/models_0"; import { CreateSignalingChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/CreateStreamCommand.ts b/clients/client-kinesis-video/src/commands/CreateStreamCommand.ts index f3e663f136ad3..4728cc9f00d80 100644 --- a/clients/client-kinesis-video/src/commands/CreateStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/CreateStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { CreateStreamInput, CreateStreamOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { CreateStreamInput, CreateStreamOutput } from "../models/models_0"; import { CreateStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/DeleteEdgeConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DeleteEdgeConfigurationCommand.ts index 150847c42d44a..ba5e5dae1fb16 100644 --- a/clients/client-kinesis-video/src/commands/DeleteEdgeConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DeleteEdgeConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { DeleteEdgeConfigurationInput, DeleteEdgeConfigurationOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { DeleteEdgeConfigurationInput, DeleteEdgeConfigurationOutput } from "../models/models_0"; import { DeleteEdgeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/DeleteSignalingChannelCommand.ts b/clients/client-kinesis-video/src/commands/DeleteSignalingChannelCommand.ts index c93096d5cd88d..56b1e550793bf 100644 --- a/clients/client-kinesis-video/src/commands/DeleteSignalingChannelCommand.ts +++ b/clients/client-kinesis-video/src/commands/DeleteSignalingChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { DeleteSignalingChannelInput, DeleteSignalingChannelOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { DeleteSignalingChannelInput, DeleteSignalingChannelOutput } from "../models/models_0"; import { DeleteSignalingChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/DeleteStreamCommand.ts b/clients/client-kinesis-video/src/commands/DeleteStreamCommand.ts index 24ba881bf88f6..fe35af1c4bc6c 100644 --- a/clients/client-kinesis-video/src/commands/DeleteStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/DeleteStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { DeleteStreamInput, DeleteStreamOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { DeleteStreamInput, DeleteStreamOutput } from "../models/models_0"; import { DeleteStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/DescribeEdgeConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeEdgeConfigurationCommand.ts index 1e8c5aee7d7f1..78fc90d396366 100644 --- a/clients/client-kinesis-video/src/commands/DescribeEdgeConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeEdgeConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { DescribeEdgeConfigurationInput, DescribeEdgeConfigurationOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { DescribeEdgeConfigurationInput, DescribeEdgeConfigurationOutput } from "../models/models_0"; import { DescribeEdgeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/DescribeImageGenerationConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeImageGenerationConfigurationCommand.ts index 7c08cf3904164..01c4a93826279 100644 --- a/clients/client-kinesis-video/src/commands/DescribeImageGenerationConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeImageGenerationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { DescribeImageGenerationConfigurationInput, DescribeImageGenerationConfigurationOutput, } from "../models/models_0"; diff --git a/clients/client-kinesis-video/src/commands/DescribeMappedResourceConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeMappedResourceConfigurationCommand.ts index 7e84e5dad2b44..b535d40b57f19 100644 --- a/clients/client-kinesis-video/src/commands/DescribeMappedResourceConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeMappedResourceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { DescribeMappedResourceConfigurationInput, DescribeMappedResourceConfigurationOutput, } from "../models/models_0"; diff --git a/clients/client-kinesis-video/src/commands/DescribeMediaStorageConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeMediaStorageConfigurationCommand.ts index 1350bd70a6d26..1817b2c250004 100644 --- a/clients/client-kinesis-video/src/commands/DescribeMediaStorageConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeMediaStorageConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { DescribeMediaStorageConfigurationInput, DescribeMediaStorageConfigurationOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { + DescribeMediaStorageConfigurationInput, + DescribeMediaStorageConfigurationOutput, +} from "../models/models_0"; import { DescribeMediaStorageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/DescribeNotificationConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeNotificationConfigurationCommand.ts index 3e1e65b0d68d4..f128e818db6ee 100644 --- a/clients/client-kinesis-video/src/commands/DescribeNotificationConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeNotificationConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { DescribeNotificationConfigurationInput, DescribeNotificationConfigurationOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { + DescribeNotificationConfigurationInput, + DescribeNotificationConfigurationOutput, +} from "../models/models_0"; import { DescribeNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/DescribeSignalingChannelCommand.ts b/clients/client-kinesis-video/src/commands/DescribeSignalingChannelCommand.ts index f7e70ce693c1c..20a1ad56c5f0b 100644 --- a/clients/client-kinesis-video/src/commands/DescribeSignalingChannelCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeSignalingChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { DescribeSignalingChannelInput, DescribeSignalingChannelOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { DescribeSignalingChannelInput, DescribeSignalingChannelOutput } from "../models/models_0"; import { DescribeSignalingChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/DescribeStreamCommand.ts b/clients/client-kinesis-video/src/commands/DescribeStreamCommand.ts index ccdc15550571b..ddea891af8c44 100644 --- a/clients/client-kinesis-video/src/commands/DescribeStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0"; import { DescribeStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/DescribeStreamStorageConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/DescribeStreamStorageConfigurationCommand.ts index f13ef14544b5a..c3a00a9e5b774 100644 --- a/clients/client-kinesis-video/src/commands/DescribeStreamStorageConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/DescribeStreamStorageConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { DescribeStreamStorageConfigurationInput, DescribeStreamStorageConfigurationOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { + DescribeStreamStorageConfigurationInput, + DescribeStreamStorageConfigurationOutput, +} from "../models/models_0"; import { DescribeStreamStorageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/GetDataEndpointCommand.ts b/clients/client-kinesis-video/src/commands/GetDataEndpointCommand.ts index 6c56465ee9ba8..dcb9c1c3aa77e 100644 --- a/clients/client-kinesis-video/src/commands/GetDataEndpointCommand.ts +++ b/clients/client-kinesis-video/src/commands/GetDataEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { GetDataEndpointInput, GetDataEndpointOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { GetDataEndpointInput, GetDataEndpointOutput } from "../models/models_0"; import { GetDataEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/GetSignalingChannelEndpointCommand.ts b/clients/client-kinesis-video/src/commands/GetSignalingChannelEndpointCommand.ts index 774955cedf42e..cbea7b489c8e6 100644 --- a/clients/client-kinesis-video/src/commands/GetSignalingChannelEndpointCommand.ts +++ b/clients/client-kinesis-video/src/commands/GetSignalingChannelEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { GetSignalingChannelEndpointInput, GetSignalingChannelEndpointOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { GetSignalingChannelEndpointInput, GetSignalingChannelEndpointOutput } from "../models/models_0"; import { GetSignalingChannelEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/ListEdgeAgentConfigurationsCommand.ts b/clients/client-kinesis-video/src/commands/ListEdgeAgentConfigurationsCommand.ts index 820cdf13971e4..ccf83fd63adc0 100644 --- a/clients/client-kinesis-video/src/commands/ListEdgeAgentConfigurationsCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListEdgeAgentConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { ListEdgeAgentConfigurationsInput, ListEdgeAgentConfigurationsOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { ListEdgeAgentConfigurationsInput, ListEdgeAgentConfigurationsOutput } from "../models/models_0"; import { ListEdgeAgentConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/ListSignalingChannelsCommand.ts b/clients/client-kinesis-video/src/commands/ListSignalingChannelsCommand.ts index 831bbd2e355b1..7717a09b4398e 100644 --- a/clients/client-kinesis-video/src/commands/ListSignalingChannelsCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListSignalingChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { ListSignalingChannelsInput, ListSignalingChannelsOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { ListSignalingChannelsInput, ListSignalingChannelsOutput } from "../models/models_0"; import { ListSignalingChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/ListStreamsCommand.ts b/clients/client-kinesis-video/src/commands/ListStreamsCommand.ts index 30aea91711d65..7bd1865664629 100644 --- a/clients/client-kinesis-video/src/commands/ListStreamsCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { ListStreamsInput, ListStreamsOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { ListStreamsInput, ListStreamsOutput } from "../models/models_0"; import { ListStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/ListTagsForResourceCommand.ts b/clients/client-kinesis-video/src/commands/ListTagsForResourceCommand.ts index 0fcbdad0b5919..91ecae4624d98 100644 --- a/clients/client-kinesis-video/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/ListTagsForStreamCommand.ts b/clients/client-kinesis-video/src/commands/ListTagsForStreamCommand.ts index ab8110ca19508..690753301d6d4 100644 --- a/clients/client-kinesis-video/src/commands/ListTagsForStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/ListTagsForStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { ListTagsForStreamInput, ListTagsForStreamOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { ListTagsForStreamInput, ListTagsForStreamOutput } from "../models/models_0"; import { ListTagsForStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/StartEdgeConfigurationUpdateCommand.ts b/clients/client-kinesis-video/src/commands/StartEdgeConfigurationUpdateCommand.ts index 902ff0f72a581..ed0c82e0afb57 100644 --- a/clients/client-kinesis-video/src/commands/StartEdgeConfigurationUpdateCommand.ts +++ b/clients/client-kinesis-video/src/commands/StartEdgeConfigurationUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { StartEdgeConfigurationUpdateInput, StartEdgeConfigurationUpdateOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { StartEdgeConfigurationUpdateInput, StartEdgeConfigurationUpdateOutput } from "../models/models_0"; import { StartEdgeConfigurationUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/TagResourceCommand.ts b/clients/client-kinesis-video/src/commands/TagResourceCommand.ts index df942f256effe..4cf940a530103 100644 --- a/clients/client-kinesis-video/src/commands/TagResourceCommand.ts +++ b/clients/client-kinesis-video/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/TagStreamCommand.ts b/clients/client-kinesis-video/src/commands/TagStreamCommand.ts index b13051d50ca60..0b6495e112ff4 100644 --- a/clients/client-kinesis-video/src/commands/TagStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/TagStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { TagStreamInput, TagStreamOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { TagStreamInput, TagStreamOutput } from "../models/models_0"; import { TagStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/UntagResourceCommand.ts b/clients/client-kinesis-video/src/commands/UntagResourceCommand.ts index 99d4345a200e7..ad41fbd545bdc 100644 --- a/clients/client-kinesis-video/src/commands/UntagResourceCommand.ts +++ b/clients/client-kinesis-video/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/UntagStreamCommand.ts b/clients/client-kinesis-video/src/commands/UntagStreamCommand.ts index ed7b1e50062b7..c71eece529507 100644 --- a/clients/client-kinesis-video/src/commands/UntagStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/UntagStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { UntagStreamInput, UntagStreamOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { UntagStreamInput, UntagStreamOutput } from "../models/models_0"; import { UntagStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/UpdateDataRetentionCommand.ts b/clients/client-kinesis-video/src/commands/UpdateDataRetentionCommand.ts index 0b8030fa2370f..7e91b727ab6e9 100644 --- a/clients/client-kinesis-video/src/commands/UpdateDataRetentionCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateDataRetentionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { UpdateDataRetentionInput, UpdateDataRetentionOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { UpdateDataRetentionInput, UpdateDataRetentionOutput } from "../models/models_0"; import { UpdateDataRetention } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/UpdateImageGenerationConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/UpdateImageGenerationConfigurationCommand.ts index 593956fc5c813..8c1f598887f3f 100644 --- a/clients/client-kinesis-video/src/commands/UpdateImageGenerationConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateImageGenerationConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { UpdateImageGenerationConfigurationInput, UpdateImageGenerationConfigurationOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { + UpdateImageGenerationConfigurationInput, + UpdateImageGenerationConfigurationOutput, +} from "../models/models_0"; import { UpdateImageGenerationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/UpdateMediaStorageConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/UpdateMediaStorageConfigurationCommand.ts index 7c10297a03fa0..5fda99df9b324 100644 --- a/clients/client-kinesis-video/src/commands/UpdateMediaStorageConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateMediaStorageConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { UpdateMediaStorageConfigurationInput, UpdateMediaStorageConfigurationOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { UpdateMediaStorageConfigurationInput, UpdateMediaStorageConfigurationOutput } from "../models/models_0"; import { UpdateMediaStorageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/UpdateNotificationConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/UpdateNotificationConfigurationCommand.ts index 2008e43ade681..9b5b27c202b99 100644 --- a/clients/client-kinesis-video/src/commands/UpdateNotificationConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateNotificationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { UpdateNotificationConfigurationInput, UpdateNotificationConfigurationOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { UpdateNotificationConfigurationInput, UpdateNotificationConfigurationOutput } from "../models/models_0"; import { UpdateNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/UpdateSignalingChannelCommand.ts b/clients/client-kinesis-video/src/commands/UpdateSignalingChannelCommand.ts index 6046280f0f765..e4993b3841455 100644 --- a/clients/client-kinesis-video/src/commands/UpdateSignalingChannelCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateSignalingChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { UpdateSignalingChannelInput, UpdateSignalingChannelOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { UpdateSignalingChannelInput, UpdateSignalingChannelOutput } from "../models/models_0"; import { UpdateSignalingChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/UpdateStreamCommand.ts b/clients/client-kinesis-video/src/commands/UpdateStreamCommand.ts index 40d7e03976009..83c4f8438a866 100644 --- a/clients/client-kinesis-video/src/commands/UpdateStreamCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { UpdateStreamInput, UpdateStreamOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { UpdateStreamInput, UpdateStreamOutput } from "../models/models_0"; import { UpdateStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/commands/UpdateStreamStorageConfigurationCommand.ts b/clients/client-kinesis-video/src/commands/UpdateStreamStorageConfigurationCommand.ts index bd9493f4a2610..8df3d887e8261 100644 --- a/clients/client-kinesis-video/src/commands/UpdateStreamStorageConfigurationCommand.ts +++ b/clients/client-kinesis-video/src/commands/UpdateStreamStorageConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; -import { UpdateStreamStorageConfigurationInput, UpdateStreamStorageConfigurationOutput } from "../models/models_0"; +import type { KinesisVideoClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisVideoClient"; +import type { UpdateStreamStorageConfigurationInput, UpdateStreamStorageConfigurationOutput } from "../models/models_0"; import { UpdateStreamStorageConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis-video/src/endpoint/EndpointParameters.ts b/clients/client-kinesis-video/src/endpoint/EndpointParameters.ts index 7662f14df0564..fe60688bc7f38 100644 --- a/clients/client-kinesis-video/src/endpoint/EndpointParameters.ts +++ b/clients/client-kinesis-video/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kinesis-video/src/endpoint/endpointResolver.ts b/clients/client-kinesis-video/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kinesis-video/src/endpoint/endpointResolver.ts +++ b/clients/client-kinesis-video/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kinesis-video/src/extensionConfiguration.ts b/clients/client-kinesis-video/src/extensionConfiguration.ts index 498b9548af335..912618136facf 100644 --- a/clients/client-kinesis-video/src/extensionConfiguration.ts +++ b/clients/client-kinesis-video/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kinesis-video/src/models/KinesisVideoServiceException.ts b/clients/client-kinesis-video/src/models/KinesisVideoServiceException.ts index 75750b30596ca..c22595f7f004a 100644 --- a/clients/client-kinesis-video/src/models/KinesisVideoServiceException.ts +++ b/clients/client-kinesis-video/src/models/KinesisVideoServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kinesis-video/src/models/errors.ts b/clients/client-kinesis-video/src/models/errors.ts index 1fbc891280ee5..0f97c35aa8f94 100644 --- a/clients/client-kinesis-video/src/models/errors.ts +++ b/clients/client-kinesis-video/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KinesisVideoServiceException as __BaseException } from "./KinesisVideoServiceException"; diff --git a/clients/client-kinesis-video/src/pagination/DescribeMappedResourceConfigurationPaginator.ts b/clients/client-kinesis-video/src/pagination/DescribeMappedResourceConfigurationPaginator.ts index cc1383c35242d..fc5982de8191e 100644 --- a/clients/client-kinesis-video/src/pagination/DescribeMappedResourceConfigurationPaginator.ts +++ b/clients/client-kinesis-video/src/pagination/DescribeMappedResourceConfigurationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMappedResourceConfigurationCommand, diff --git a/clients/client-kinesis-video/src/pagination/Interfaces.ts b/clients/client-kinesis-video/src/pagination/Interfaces.ts index c327d73b13713..e00c660db2277 100644 --- a/clients/client-kinesis-video/src/pagination/Interfaces.ts +++ b/clients/client-kinesis-video/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KinesisVideoClient } from "../KinesisVideoClient"; diff --git a/clients/client-kinesis-video/src/pagination/ListEdgeAgentConfigurationsPaginator.ts b/clients/client-kinesis-video/src/pagination/ListEdgeAgentConfigurationsPaginator.ts index 76ed2f63c78c0..f86b5a6c927a7 100644 --- a/clients/client-kinesis-video/src/pagination/ListEdgeAgentConfigurationsPaginator.ts +++ b/clients/client-kinesis-video/src/pagination/ListEdgeAgentConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEdgeAgentConfigurationsCommand, diff --git a/clients/client-kinesis-video/src/pagination/ListSignalingChannelsPaginator.ts b/clients/client-kinesis-video/src/pagination/ListSignalingChannelsPaginator.ts index d620c1cb8eeb4..9c3c1b7777997 100644 --- a/clients/client-kinesis-video/src/pagination/ListSignalingChannelsPaginator.ts +++ b/clients/client-kinesis-video/src/pagination/ListSignalingChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSignalingChannelsCommand, diff --git a/clients/client-kinesis-video/src/pagination/ListStreamsPaginator.ts b/clients/client-kinesis-video/src/pagination/ListStreamsPaginator.ts index a052e8ef49292..2568d9c206fa3 100644 --- a/clients/client-kinesis-video/src/pagination/ListStreamsPaginator.ts +++ b/clients/client-kinesis-video/src/pagination/ListStreamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamsCommand, ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/ListStreamsCommand"; import { KinesisVideoClient } from "../KinesisVideoClient"; diff --git a/clients/client-kinesis-video/src/runtimeConfig.browser.ts b/clients/client-kinesis-video/src/runtimeConfig.browser.ts index 1a88cd2a85a62..7d0b24ac2245e 100644 --- a/clients/client-kinesis-video/src/runtimeConfig.browser.ts +++ b/clients/client-kinesis-video/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoClientConfig } from "./KinesisVideoClient"; + +import type { KinesisVideoClientConfig } from "./KinesisVideoClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kinesis-video/src/runtimeConfig.native.ts b/clients/client-kinesis-video/src/runtimeConfig.native.ts index 4cdf1e270062e..ad43328bf1a55 100644 --- a/clients/client-kinesis-video/src/runtimeConfig.native.ts +++ b/clients/client-kinesis-video/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KinesisVideoClientConfig } from "./KinesisVideoClient"; +import type { KinesisVideoClientConfig } from "./KinesisVideoClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kinesis-video/src/runtimeConfig.shared.ts b/clients/client-kinesis-video/src/runtimeConfig.shared.ts index f1d775cbe7ee9..ebc86f9edd691 100644 --- a/clients/client-kinesis-video/src/runtimeConfig.shared.ts +++ b/clients/client-kinesis-video/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKinesisVideoHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KinesisVideoClientConfig } from "./KinesisVideoClient"; +import type { KinesisVideoClientConfig } from "./KinesisVideoClient"; /** * @internal diff --git a/clients/client-kinesis-video/src/runtimeConfig.ts b/clients/client-kinesis-video/src/runtimeConfig.ts index ef5a640d9fabd..d771095f5e034 100644 --- a/clients/client-kinesis-video/src/runtimeConfig.ts +++ b/clients/client-kinesis-video/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisVideoClientConfig } from "./KinesisVideoClient"; + +import type { KinesisVideoClientConfig } from "./KinesisVideoClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kinesis-video/src/runtimeExtensions.ts b/clients/client-kinesis-video/src/runtimeExtensions.ts index ea95f1b78b00d..40d805cffe102 100644 --- a/clients/client-kinesis-video/src/runtimeExtensions.ts +++ b/clients/client-kinesis-video/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KinesisVideoExtensionConfiguration } from "./extensionConfiguration"; +import type { KinesisVideoExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kinesis-video/src/schemas/schemas_0.ts b/clients/client-kinesis-video/src/schemas/schemas_0.ts index b03c8a00acbfe..0e39fa08d97b7 100644 --- a/clients/client-kinesis-video/src/schemas/schemas_0.ts +++ b/clients/client-kinesis-video/src/schemas/schemas_0.ts @@ -213,7 +213,7 @@ const n0 = "com.amazonaws.kinesisvideo"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-kinesis/package.json b/clients/client-kinesis/package.json index a7bfc4dcb4c9d..ed0b39768d546 100644 --- a/clients/client-kinesis/package.json +++ b/clients/client-kinesis/package.json @@ -34,7 +34,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -42,21 +42,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kinesis/src/Kinesis.ts b/clients/client-kinesis/src/Kinesis.ts index 54d8dce68fbc5..a3db14a96820e 100644 --- a/clients/client-kinesis/src/Kinesis.ts +++ b/clients/client-kinesis/src/Kinesis.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddTagsToStreamCommand, @@ -165,7 +165,7 @@ import { UpdateStreamWarmThroughputCommandInput, UpdateStreamWarmThroughputCommandOutput, } from "./commands/UpdateStreamWarmThroughputCommand"; -import { KinesisClient, KinesisClientConfig } from "./KinesisClient"; +import { KinesisClient } from "./KinesisClient"; const commands = { AddTagsToStreamCommand, diff --git a/clients/client-kinesis/src/KinesisClient.ts b/clients/client-kinesis/src/KinesisClient.ts index de64fe3dca359..9434101eabbdc 100644 --- a/clients/client-kinesis/src/KinesisClient.ts +++ b/clients/client-kinesis/src/KinesisClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKinesisHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddTagsToStreamCommandInput, AddTagsToStreamCommandOutput } from "./commands/AddTagsToStreamCommand"; @@ -163,7 +172,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kinesis/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kinesis/src/auth/httpAuthExtensionConfiguration.ts index bd453091bdc88..1b603709e1351 100644 --- a/clients/client-kinesis/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kinesis/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KinesisHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KinesisHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kinesis/src/auth/httpAuthSchemeProvider.ts b/clients/client-kinesis/src/auth/httpAuthSchemeProvider.ts index 5265ccc38edea..f7ac09d0824c1 100644 --- a/clients/client-kinesis/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kinesis/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KinesisClientConfig, KinesisClientResolvedConfig } from "../KinesisClient"; +import { type KinesisClientResolvedConfig, KinesisClientConfig } from "../KinesisClient"; /** * @internal diff --git a/clients/client-kinesis/src/commands/AddTagsToStreamCommand.ts b/clients/client-kinesis/src/commands/AddTagsToStreamCommand.ts index 118e81ca03f05..2bb88a3e90415 100644 --- a/clients/client-kinesis/src/commands/AddTagsToStreamCommand.ts +++ b/clients/client-kinesis/src/commands/AddTagsToStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { AddTagsToStreamInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { AddTagsToStreamInput } from "../models/models_0"; import { AddTagsToStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/CreateStreamCommand.ts b/clients/client-kinesis/src/commands/CreateStreamCommand.ts index 163eba8c76082..50e16334f0730 100644 --- a/clients/client-kinesis/src/commands/CreateStreamCommand.ts +++ b/clients/client-kinesis/src/commands/CreateStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { CreateStreamInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { CreateStreamInput } from "../models/models_0"; import { CreateStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DecreaseStreamRetentionPeriodCommand.ts b/clients/client-kinesis/src/commands/DecreaseStreamRetentionPeriodCommand.ts index 07831c6c4fa55..d24576e2369b8 100644 --- a/clients/client-kinesis/src/commands/DecreaseStreamRetentionPeriodCommand.ts +++ b/clients/client-kinesis/src/commands/DecreaseStreamRetentionPeriodCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DecreaseStreamRetentionPeriodInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DecreaseStreamRetentionPeriodInput } from "../models/models_0"; import { DecreaseStreamRetentionPeriod } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-kinesis/src/commands/DeleteResourcePolicyCommand.ts index c6c7c232c873c..6c1c2b66d8d4e 100644 --- a/clients/client-kinesis/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-kinesis/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DeleteResourcePolicyInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DeleteResourcePolicyInput } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DeleteStreamCommand.ts b/clients/client-kinesis/src/commands/DeleteStreamCommand.ts index 8b5be26b212b4..56392a35c11c9 100644 --- a/clients/client-kinesis/src/commands/DeleteStreamCommand.ts +++ b/clients/client-kinesis/src/commands/DeleteStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DeleteStreamInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DeleteStreamInput } from "../models/models_0"; import { DeleteStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DeregisterStreamConsumerCommand.ts b/clients/client-kinesis/src/commands/DeregisterStreamConsumerCommand.ts index d1f3ba9fc1e80..b374dbd4468bb 100644 --- a/clients/client-kinesis/src/commands/DeregisterStreamConsumerCommand.ts +++ b/clients/client-kinesis/src/commands/DeregisterStreamConsumerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DeregisterStreamConsumerInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DeregisterStreamConsumerInput } from "../models/models_0"; import { DeregisterStreamConsumer } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DescribeAccountSettingsCommand.ts b/clients/client-kinesis/src/commands/DescribeAccountSettingsCommand.ts index e5934c189c905..5ef530b399cbd 100644 --- a/clients/client-kinesis/src/commands/DescribeAccountSettingsCommand.ts +++ b/clients/client-kinesis/src/commands/DescribeAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DescribeAccountSettingsInput, DescribeAccountSettingsOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DescribeAccountSettingsInput, DescribeAccountSettingsOutput } from "../models/models_0"; import { DescribeAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DescribeLimitsCommand.ts b/clients/client-kinesis/src/commands/DescribeLimitsCommand.ts index 815a06be8388b..446d17e3fa396 100644 --- a/clients/client-kinesis/src/commands/DescribeLimitsCommand.ts +++ b/clients/client-kinesis/src/commands/DescribeLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DescribeLimitsInput, DescribeLimitsOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DescribeLimitsInput, DescribeLimitsOutput } from "../models/models_0"; import { DescribeLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DescribeStreamCommand.ts b/clients/client-kinesis/src/commands/DescribeStreamCommand.ts index aa25bd5a6f7d6..b060ec0dfa4ea 100644 --- a/clients/client-kinesis/src/commands/DescribeStreamCommand.ts +++ b/clients/client-kinesis/src/commands/DescribeStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DescribeStreamInput, DescribeStreamOutput } from "../models/models_0"; import { DescribeStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DescribeStreamConsumerCommand.ts b/clients/client-kinesis/src/commands/DescribeStreamConsumerCommand.ts index f6237cb58e82b..45bbb0734d010 100644 --- a/clients/client-kinesis/src/commands/DescribeStreamConsumerCommand.ts +++ b/clients/client-kinesis/src/commands/DescribeStreamConsumerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DescribeStreamConsumerInput, DescribeStreamConsumerOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DescribeStreamConsumerInput, DescribeStreamConsumerOutput } from "../models/models_0"; import { DescribeStreamConsumer } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DescribeStreamSummaryCommand.ts b/clients/client-kinesis/src/commands/DescribeStreamSummaryCommand.ts index 44d9c6d767b4d..457cbd3020566 100644 --- a/clients/client-kinesis/src/commands/DescribeStreamSummaryCommand.ts +++ b/clients/client-kinesis/src/commands/DescribeStreamSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DescribeStreamSummaryInput, DescribeStreamSummaryOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DescribeStreamSummaryInput, DescribeStreamSummaryOutput } from "../models/models_0"; import { DescribeStreamSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/DisableEnhancedMonitoringCommand.ts b/clients/client-kinesis/src/commands/DisableEnhancedMonitoringCommand.ts index 1d0044d328148..838603103012e 100644 --- a/clients/client-kinesis/src/commands/DisableEnhancedMonitoringCommand.ts +++ b/clients/client-kinesis/src/commands/DisableEnhancedMonitoringCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { DisableEnhancedMonitoringInput, EnhancedMonitoringOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { DisableEnhancedMonitoringInput, EnhancedMonitoringOutput } from "../models/models_0"; import { DisableEnhancedMonitoring } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/EnableEnhancedMonitoringCommand.ts b/clients/client-kinesis/src/commands/EnableEnhancedMonitoringCommand.ts index 070e2d3308254..adb66938434bc 100644 --- a/clients/client-kinesis/src/commands/EnableEnhancedMonitoringCommand.ts +++ b/clients/client-kinesis/src/commands/EnableEnhancedMonitoringCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { EnableEnhancedMonitoringInput, EnhancedMonitoringOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { EnableEnhancedMonitoringInput, EnhancedMonitoringOutput } from "../models/models_0"; import { EnableEnhancedMonitoring } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/GetRecordsCommand.ts b/clients/client-kinesis/src/commands/GetRecordsCommand.ts index 7a8c2d69ec6ef..2f38e26bb8c46 100644 --- a/clients/client-kinesis/src/commands/GetRecordsCommand.ts +++ b/clients/client-kinesis/src/commands/GetRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { GetRecordsInput, GetRecordsOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { GetRecordsInput, GetRecordsOutput } from "../models/models_0"; import { GetRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/GetResourcePolicyCommand.ts b/clients/client-kinesis/src/commands/GetResourcePolicyCommand.ts index 75e68942b03bb..2a4d8c95f3a3a 100644 --- a/clients/client-kinesis/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-kinesis/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { GetResourcePolicyInput, GetResourcePolicyOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { GetResourcePolicyInput, GetResourcePolicyOutput } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/GetShardIteratorCommand.ts b/clients/client-kinesis/src/commands/GetShardIteratorCommand.ts index 4617c5e89fe4d..0f253db0d2078 100644 --- a/clients/client-kinesis/src/commands/GetShardIteratorCommand.ts +++ b/clients/client-kinesis/src/commands/GetShardIteratorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { GetShardIteratorInput, GetShardIteratorOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { GetShardIteratorInput, GetShardIteratorOutput } from "../models/models_0"; import { GetShardIterator } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/IncreaseStreamRetentionPeriodCommand.ts b/clients/client-kinesis/src/commands/IncreaseStreamRetentionPeriodCommand.ts index f9afc489f8ec7..c479e6b441325 100644 --- a/clients/client-kinesis/src/commands/IncreaseStreamRetentionPeriodCommand.ts +++ b/clients/client-kinesis/src/commands/IncreaseStreamRetentionPeriodCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { IncreaseStreamRetentionPeriodInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { IncreaseStreamRetentionPeriodInput } from "../models/models_0"; import { IncreaseStreamRetentionPeriod } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/ListShardsCommand.ts b/clients/client-kinesis/src/commands/ListShardsCommand.ts index 7d3b58cd68faf..9a00554bc6f01 100644 --- a/clients/client-kinesis/src/commands/ListShardsCommand.ts +++ b/clients/client-kinesis/src/commands/ListShardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { ListShardsInput, ListShardsOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { ListShardsInput, ListShardsOutput } from "../models/models_0"; import { ListShards } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/ListStreamConsumersCommand.ts b/clients/client-kinesis/src/commands/ListStreamConsumersCommand.ts index 086874edf394a..870fa5d38e3bf 100644 --- a/clients/client-kinesis/src/commands/ListStreamConsumersCommand.ts +++ b/clients/client-kinesis/src/commands/ListStreamConsumersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { ListStreamConsumersInput, ListStreamConsumersOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { ListStreamConsumersInput, ListStreamConsumersOutput } from "../models/models_0"; import { ListStreamConsumers } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/ListStreamsCommand.ts b/clients/client-kinesis/src/commands/ListStreamsCommand.ts index da2db63532c6c..de1b4a4e64ff7 100644 --- a/clients/client-kinesis/src/commands/ListStreamsCommand.ts +++ b/clients/client-kinesis/src/commands/ListStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { ListStreamsInput, ListStreamsOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { ListStreamsInput, ListStreamsOutput } from "../models/models_0"; import { ListStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/ListTagsForResourceCommand.ts b/clients/client-kinesis/src/commands/ListTagsForResourceCommand.ts index 04dd89d59f790..2d48e8084b64d 100644 --- a/clients/client-kinesis/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-kinesis/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/ListTagsForStreamCommand.ts b/clients/client-kinesis/src/commands/ListTagsForStreamCommand.ts index e04581ff35ea1..a66d3ce888935 100644 --- a/clients/client-kinesis/src/commands/ListTagsForStreamCommand.ts +++ b/clients/client-kinesis/src/commands/ListTagsForStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { ListTagsForStreamInput, ListTagsForStreamOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { ListTagsForStreamInput, ListTagsForStreamOutput } from "../models/models_0"; import { ListTagsForStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/MergeShardsCommand.ts b/clients/client-kinesis/src/commands/MergeShardsCommand.ts index 609beb66a2bb9..5bb7d21e6225c 100644 --- a/clients/client-kinesis/src/commands/MergeShardsCommand.ts +++ b/clients/client-kinesis/src/commands/MergeShardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { MergeShardsInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { MergeShardsInput } from "../models/models_0"; import { MergeShards } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/PutRecordCommand.ts b/clients/client-kinesis/src/commands/PutRecordCommand.ts index 0ab87bb1cf655..60667fb31bfc1 100644 --- a/clients/client-kinesis/src/commands/PutRecordCommand.ts +++ b/clients/client-kinesis/src/commands/PutRecordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { PutRecordInput, PutRecordOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { PutRecordInput, PutRecordOutput } from "../models/models_0"; import { PutRecord } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/PutRecordsCommand.ts b/clients/client-kinesis/src/commands/PutRecordsCommand.ts index ac8865fc68e30..6894f2e6cbf44 100644 --- a/clients/client-kinesis/src/commands/PutRecordsCommand.ts +++ b/clients/client-kinesis/src/commands/PutRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { PutRecordsInput, PutRecordsOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { PutRecordsInput, PutRecordsOutput } from "../models/models_0"; import { PutRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/PutResourcePolicyCommand.ts b/clients/client-kinesis/src/commands/PutResourcePolicyCommand.ts index 4500f747e7ab9..b42d3cf19459e 100644 --- a/clients/client-kinesis/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-kinesis/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { PutResourcePolicyInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { PutResourcePolicyInput } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/RegisterStreamConsumerCommand.ts b/clients/client-kinesis/src/commands/RegisterStreamConsumerCommand.ts index 6ee51a0624100..b831e12027c73 100644 --- a/clients/client-kinesis/src/commands/RegisterStreamConsumerCommand.ts +++ b/clients/client-kinesis/src/commands/RegisterStreamConsumerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { RegisterStreamConsumerInput, RegisterStreamConsumerOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { RegisterStreamConsumerInput, RegisterStreamConsumerOutput } from "../models/models_0"; import { RegisterStreamConsumer } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/RemoveTagsFromStreamCommand.ts b/clients/client-kinesis/src/commands/RemoveTagsFromStreamCommand.ts index 022add41b9e52..9df9486b4412f 100644 --- a/clients/client-kinesis/src/commands/RemoveTagsFromStreamCommand.ts +++ b/clients/client-kinesis/src/commands/RemoveTagsFromStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { RemoveTagsFromStreamInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { RemoveTagsFromStreamInput } from "../models/models_0"; import { RemoveTagsFromStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/SplitShardCommand.ts b/clients/client-kinesis/src/commands/SplitShardCommand.ts index 54d404542ffd6..28a96b6a9ae49 100644 --- a/clients/client-kinesis/src/commands/SplitShardCommand.ts +++ b/clients/client-kinesis/src/commands/SplitShardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { SplitShardInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { SplitShardInput } from "../models/models_0"; import { SplitShard } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/StartStreamEncryptionCommand.ts b/clients/client-kinesis/src/commands/StartStreamEncryptionCommand.ts index 741d8ad7f8985..32704dd276158 100644 --- a/clients/client-kinesis/src/commands/StartStreamEncryptionCommand.ts +++ b/clients/client-kinesis/src/commands/StartStreamEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { StartStreamEncryptionInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { StartStreamEncryptionInput } from "../models/models_0"; import { StartStreamEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/StopStreamEncryptionCommand.ts b/clients/client-kinesis/src/commands/StopStreamEncryptionCommand.ts index 68553c30b07b8..1ce6df28a0401 100644 --- a/clients/client-kinesis/src/commands/StopStreamEncryptionCommand.ts +++ b/clients/client-kinesis/src/commands/StopStreamEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { StopStreamEncryptionInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { StopStreamEncryptionInput } from "../models/models_0"; import { StopStreamEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/SubscribeToShardCommand.ts b/clients/client-kinesis/src/commands/SubscribeToShardCommand.ts index 14934cadccdf3..5043ee44a8878 100644 --- a/clients/client-kinesis/src/commands/SubscribeToShardCommand.ts +++ b/clients/client-kinesis/src/commands/SubscribeToShardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { SubscribeToShardInput, SubscribeToShardOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { SubscribeToShardInput, SubscribeToShardOutput } from "../models/models_0"; import { SubscribeToShard } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/TagResourceCommand.ts b/clients/client-kinesis/src/commands/TagResourceCommand.ts index a75454c54bcf1..d40948e16c3db 100644 --- a/clients/client-kinesis/src/commands/TagResourceCommand.ts +++ b/clients/client-kinesis/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { TagResourceInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { TagResourceInput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/UntagResourceCommand.ts b/clients/client-kinesis/src/commands/UntagResourceCommand.ts index 4246861f18a68..362e672f2a242 100644 --- a/clients/client-kinesis/src/commands/UntagResourceCommand.ts +++ b/clients/client-kinesis/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { UntagResourceInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { UntagResourceInput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-kinesis/src/commands/UpdateAccountSettingsCommand.ts index bd19384ebc6cc..34295088a35a8 100644 --- a/clients/client-kinesis/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-kinesis/src/commands/UpdateAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { UpdateAccountSettingsInput, UpdateAccountSettingsOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { UpdateAccountSettingsInput, UpdateAccountSettingsOutput } from "../models/models_0"; import { UpdateAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/UpdateMaxRecordSizeCommand.ts b/clients/client-kinesis/src/commands/UpdateMaxRecordSizeCommand.ts index c377f82490a8d..cf7ba2d37dbbb 100644 --- a/clients/client-kinesis/src/commands/UpdateMaxRecordSizeCommand.ts +++ b/clients/client-kinesis/src/commands/UpdateMaxRecordSizeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { UpdateMaxRecordSizeInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { UpdateMaxRecordSizeInput } from "../models/models_0"; import { UpdateMaxRecordSize } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/UpdateShardCountCommand.ts b/clients/client-kinesis/src/commands/UpdateShardCountCommand.ts index 1325a92fe927b..dfda24e32e06d 100644 --- a/clients/client-kinesis/src/commands/UpdateShardCountCommand.ts +++ b/clients/client-kinesis/src/commands/UpdateShardCountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { UpdateShardCountInput, UpdateShardCountOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { UpdateShardCountInput, UpdateShardCountOutput } from "../models/models_0"; import { UpdateShardCount } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/UpdateStreamModeCommand.ts b/clients/client-kinesis/src/commands/UpdateStreamModeCommand.ts index 70432a9087be8..3d9dfd469e1e2 100644 --- a/clients/client-kinesis/src/commands/UpdateStreamModeCommand.ts +++ b/clients/client-kinesis/src/commands/UpdateStreamModeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { UpdateStreamModeInput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { UpdateStreamModeInput } from "../models/models_0"; import { UpdateStreamMode } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/commands/UpdateStreamWarmThroughputCommand.ts b/clients/client-kinesis/src/commands/UpdateStreamWarmThroughputCommand.ts index 90b852a0ba20b..795d32e6417ad 100644 --- a/clients/client-kinesis/src/commands/UpdateStreamWarmThroughputCommand.ts +++ b/clients/client-kinesis/src/commands/UpdateStreamWarmThroughputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; -import { UpdateStreamWarmThroughputInput, UpdateStreamWarmThroughputOutput } from "../models/models_0"; +import type { KinesisClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisClient"; +import type { UpdateStreamWarmThroughputInput, UpdateStreamWarmThroughputOutput } from "../models/models_0"; import { UpdateStreamWarmThroughput } from "../schemas/schemas_0"; /** diff --git a/clients/client-kinesis/src/endpoint/EndpointParameters.ts b/clients/client-kinesis/src/endpoint/EndpointParameters.ts index e594ba0e342ab..1be5dad66ba51 100644 --- a/clients/client-kinesis/src/endpoint/EndpointParameters.ts +++ b/clients/client-kinesis/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kinesis/src/endpoint/endpointResolver.ts b/clients/client-kinesis/src/endpoint/endpointResolver.ts index 3ebd0e95bb2f3..1e3253fc313a3 100644 --- a/clients/client-kinesis/src/endpoint/endpointResolver.ts +++ b/clients/client-kinesis/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kinesis/src/extensionConfiguration.ts b/clients/client-kinesis/src/extensionConfiguration.ts index 2c40c28b15490..2aaf6e880b53a 100644 --- a/clients/client-kinesis/src/extensionConfiguration.ts +++ b/clients/client-kinesis/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kinesis/src/models/KinesisServiceException.ts b/clients/client-kinesis/src/models/KinesisServiceException.ts index aed48362d7571..71b27d423c0e5 100644 --- a/clients/client-kinesis/src/models/KinesisServiceException.ts +++ b/clients/client-kinesis/src/models/KinesisServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kinesis/src/models/errors.ts b/clients/client-kinesis/src/models/errors.ts index dc6162ce6d5b0..532550498b8fe 100644 --- a/clients/client-kinesis/src/models/errors.ts +++ b/clients/client-kinesis/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KinesisServiceException as __BaseException } from "./KinesisServiceException"; diff --git a/clients/client-kinesis/src/pagination/Interfaces.ts b/clients/client-kinesis/src/pagination/Interfaces.ts index bdccacb8c8796..5d036de19b936 100644 --- a/clients/client-kinesis/src/pagination/Interfaces.ts +++ b/clients/client-kinesis/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KinesisClient } from "../KinesisClient"; diff --git a/clients/client-kinesis/src/pagination/ListStreamConsumersPaginator.ts b/clients/client-kinesis/src/pagination/ListStreamConsumersPaginator.ts index 1b55e87ddea29..243c9e88fe1a3 100644 --- a/clients/client-kinesis/src/pagination/ListStreamConsumersPaginator.ts +++ b/clients/client-kinesis/src/pagination/ListStreamConsumersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamConsumersCommand, diff --git a/clients/client-kinesis/src/pagination/ListStreamsPaginator.ts b/clients/client-kinesis/src/pagination/ListStreamsPaginator.ts index 3c1c31d89d7e5..c8b88fd938e93 100644 --- a/clients/client-kinesis/src/pagination/ListStreamsPaginator.ts +++ b/clients/client-kinesis/src/pagination/ListStreamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamsCommand, ListStreamsCommandInput, ListStreamsCommandOutput } from "../commands/ListStreamsCommand"; import { KinesisClient } from "../KinesisClient"; diff --git a/clients/client-kinesis/src/runtimeConfig.browser.ts b/clients/client-kinesis/src/runtimeConfig.browser.ts index 14933655a14a9..86cbfe59539a5 100644 --- a/clients/client-kinesis/src/runtimeConfig.browser.ts +++ b/clients/client-kinesis/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisClientConfig } from "./KinesisClient"; + +import type { KinesisClientConfig } from "./KinesisClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kinesis/src/runtimeConfig.native.ts b/clients/client-kinesis/src/runtimeConfig.native.ts index 9772464de462b..6bf56c8fc5a8b 100644 --- a/clients/client-kinesis/src/runtimeConfig.native.ts +++ b/clients/client-kinesis/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KinesisClientConfig } from "./KinesisClient"; +import type { KinesisClientConfig } from "./KinesisClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kinesis/src/runtimeConfig.shared.ts b/clients/client-kinesis/src/runtimeConfig.shared.ts index 7365a6f9ebb8c..3b89ef97254f0 100644 --- a/clients/client-kinesis/src/runtimeConfig.shared.ts +++ b/clients/client-kinesis/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKinesisHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KinesisClientConfig } from "./KinesisClient"; +import type { KinesisClientConfig } from "./KinesisClient"; /** * @internal diff --git a/clients/client-kinesis/src/runtimeConfig.ts b/clients/client-kinesis/src/runtimeConfig.ts index 4f0532a2660f1..872ee554029c6 100644 --- a/clients/client-kinesis/src/runtimeConfig.ts +++ b/clients/client-kinesis/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttp2Handler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KinesisClientConfig } from "./KinesisClient"; + +import type { KinesisClientConfig } from "./KinesisClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kinesis/src/runtimeExtensions.ts b/clients/client-kinesis/src/runtimeExtensions.ts index 7162b79430eb5..09f5299eb6628 100644 --- a/clients/client-kinesis/src/runtimeExtensions.ts +++ b/clients/client-kinesis/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KinesisExtensionConfiguration } from "./extensionConfiguration"; +import type { KinesisExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kinesis/src/schemas/schemas_0.ts b/clients/client-kinesis/src/schemas/schemas_0.ts index 25727c58e601f..cc998e692909e 100644 --- a/clients/client-kinesis/src/schemas/schemas_0.ts +++ b/clients/client-kinesis/src/schemas/schemas_0.ts @@ -240,7 +240,7 @@ const n0 = "com.amazonaws.kinesis"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-kms/package.json b/clients/client-kms/package.json index 3b47b1ef97608..e6fc4bb4355a8 100644 --- a/clients/client-kms/package.json +++ b/clients/client-kms/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-kms/src/KMS.ts b/clients/client-kms/src/KMS.ts index 53e386445653a..18adad1049458 100644 --- a/clients/client-kms/src/KMS.ts +++ b/clients/client-kms/src/KMS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelKeyDeletionCommand, @@ -183,7 +183,7 @@ import { } from "./commands/UpdatePrimaryRegionCommand"; import { VerifyCommand, VerifyCommandInput, VerifyCommandOutput } from "./commands/VerifyCommand"; import { VerifyMacCommand, VerifyMacCommandInput, VerifyMacCommandOutput } from "./commands/VerifyMacCommand"; -import { KMSClient, KMSClientConfig } from "./KMSClient"; +import { KMSClient } from "./KMSClient"; const commands = { CancelKeyDeletionCommand, diff --git a/clients/client-kms/src/KMSClient.ts b/clients/client-kms/src/KMSClient.ts index 5dfc6bda96ea7..d106238bf49fd 100644 --- a/clients/client-kms/src/KMSClient.ts +++ b/clients/client-kms/src/KMSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultKMSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelKeyDeletionCommandInput, CancelKeyDeletionCommandOutput } from "./commands/CancelKeyDeletionCommand"; @@ -165,7 +174,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-kms/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-kms/src/auth/httpAuthExtensionConfiguration.ts index 69d26b4b3ae36..8c048b712b8b4 100644 --- a/clients/client-kms/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-kms/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { KMSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { KMSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-kms/src/auth/httpAuthSchemeProvider.ts b/clients/client-kms/src/auth/httpAuthSchemeProvider.ts index 1213da2062463..568fe39f6d6d6 100644 --- a/clients/client-kms/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-kms/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { KMSClientConfig, KMSClientResolvedConfig } from "../KMSClient"; +import { type KMSClientResolvedConfig, KMSClientConfig } from "../KMSClient"; /** * @internal diff --git a/clients/client-kms/src/commands/CancelKeyDeletionCommand.ts b/clients/client-kms/src/commands/CancelKeyDeletionCommand.ts index 0375545a0cf93..c3f0945b04805 100644 --- a/clients/client-kms/src/commands/CancelKeyDeletionCommand.ts +++ b/clients/client-kms/src/commands/CancelKeyDeletionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { CancelKeyDeletionRequest, CancelKeyDeletionResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { CancelKeyDeletionRequest, CancelKeyDeletionResponse } from "../models/models_0"; import { CancelKeyDeletion } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ConnectCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/ConnectCustomKeyStoreCommand.ts index de7cfa0d250ba..a59d9a06bdbb1 100644 --- a/clients/client-kms/src/commands/ConnectCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/ConnectCustomKeyStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ConnectCustomKeyStoreRequest, ConnectCustomKeyStoreResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ConnectCustomKeyStoreRequest, ConnectCustomKeyStoreResponse } from "../models/models_0"; import { ConnectCustomKeyStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/CreateAliasCommand.ts b/clients/client-kms/src/commands/CreateAliasCommand.ts index e31bb1b9fa753..4b5d220a7ed29 100644 --- a/clients/client-kms/src/commands/CreateAliasCommand.ts +++ b/clients/client-kms/src/commands/CreateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { CreateAliasRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { CreateAliasRequest } from "../models/models_0"; import { CreateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/CreateCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/CreateCustomKeyStoreCommand.ts index 690532b7dd1b5..31f0dbf402ac9 100644 --- a/clients/client-kms/src/commands/CreateCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/CreateCustomKeyStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { CreateCustomKeyStoreRequest, CreateCustomKeyStoreResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { CreateCustomKeyStoreRequest, CreateCustomKeyStoreResponse } from "../models/models_0"; import { CreateCustomKeyStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/CreateGrantCommand.ts b/clients/client-kms/src/commands/CreateGrantCommand.ts index 5ee0a096ca3f4..8c8db95c4af46 100644 --- a/clients/client-kms/src/commands/CreateGrantCommand.ts +++ b/clients/client-kms/src/commands/CreateGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { CreateGrantRequest, CreateGrantResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { CreateGrantRequest, CreateGrantResponse } from "../models/models_0"; import { CreateGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/CreateKeyCommand.ts b/clients/client-kms/src/commands/CreateKeyCommand.ts index 0d70a2e6ce5ef..2ce9b6c9482a3 100644 --- a/clients/client-kms/src/commands/CreateKeyCommand.ts +++ b/clients/client-kms/src/commands/CreateKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { CreateKeyRequest, CreateKeyResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { CreateKeyRequest, CreateKeyResponse } from "../models/models_0"; import { CreateKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DecryptCommand.ts b/clients/client-kms/src/commands/DecryptCommand.ts index 1e8e4fcdd1f9a..666b7f733d771 100644 --- a/clients/client-kms/src/commands/DecryptCommand.ts +++ b/clients/client-kms/src/commands/DecryptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DecryptRequest, DecryptResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DecryptRequest, DecryptResponse } from "../models/models_0"; import { Decrypt } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DeleteAliasCommand.ts b/clients/client-kms/src/commands/DeleteAliasCommand.ts index 9beb60adc0ad8..62329f5aed205 100644 --- a/clients/client-kms/src/commands/DeleteAliasCommand.ts +++ b/clients/client-kms/src/commands/DeleteAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DeleteAliasRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DeleteAliasRequest } from "../models/models_0"; import { DeleteAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DeleteCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/DeleteCustomKeyStoreCommand.ts index b32552e0aadce..3c8be12ee9917 100644 --- a/clients/client-kms/src/commands/DeleteCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/DeleteCustomKeyStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DeleteCustomKeyStoreRequest, DeleteCustomKeyStoreResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DeleteCustomKeyStoreRequest, DeleteCustomKeyStoreResponse } from "../models/models_0"; import { DeleteCustomKeyStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DeleteImportedKeyMaterialCommand.ts b/clients/client-kms/src/commands/DeleteImportedKeyMaterialCommand.ts index ac5031d96ee0c..0da086be08f0b 100644 --- a/clients/client-kms/src/commands/DeleteImportedKeyMaterialCommand.ts +++ b/clients/client-kms/src/commands/DeleteImportedKeyMaterialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DeleteImportedKeyMaterialRequest, DeleteImportedKeyMaterialResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DeleteImportedKeyMaterialRequest, DeleteImportedKeyMaterialResponse } from "../models/models_0"; import { DeleteImportedKeyMaterial } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DeriveSharedSecretCommand.ts b/clients/client-kms/src/commands/DeriveSharedSecretCommand.ts index 208e060256027..4e489927fda60 100644 --- a/clients/client-kms/src/commands/DeriveSharedSecretCommand.ts +++ b/clients/client-kms/src/commands/DeriveSharedSecretCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DeriveSharedSecretRequest, DeriveSharedSecretResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DeriveSharedSecretRequest, DeriveSharedSecretResponse } from "../models/models_0"; import { DeriveSharedSecret } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DescribeCustomKeyStoresCommand.ts b/clients/client-kms/src/commands/DescribeCustomKeyStoresCommand.ts index 4c60c11c68c81..8e15b06b68bd4 100644 --- a/clients/client-kms/src/commands/DescribeCustomKeyStoresCommand.ts +++ b/clients/client-kms/src/commands/DescribeCustomKeyStoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DescribeCustomKeyStoresRequest, DescribeCustomKeyStoresResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DescribeCustomKeyStoresRequest, DescribeCustomKeyStoresResponse } from "../models/models_0"; import { DescribeCustomKeyStores } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DescribeKeyCommand.ts b/clients/client-kms/src/commands/DescribeKeyCommand.ts index f0de74f8e0ba4..aaf64d85198c8 100644 --- a/clients/client-kms/src/commands/DescribeKeyCommand.ts +++ b/clients/client-kms/src/commands/DescribeKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DescribeKeyRequest, DescribeKeyResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DescribeKeyRequest, DescribeKeyResponse } from "../models/models_0"; import { DescribeKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DisableKeyCommand.ts b/clients/client-kms/src/commands/DisableKeyCommand.ts index ead49fcac7c87..e73b3ba272b28 100644 --- a/clients/client-kms/src/commands/DisableKeyCommand.ts +++ b/clients/client-kms/src/commands/DisableKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DisableKeyRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DisableKeyRequest } from "../models/models_0"; import { DisableKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DisableKeyRotationCommand.ts b/clients/client-kms/src/commands/DisableKeyRotationCommand.ts index 966c1e8de79e6..d92aeaedfaebe 100644 --- a/clients/client-kms/src/commands/DisableKeyRotationCommand.ts +++ b/clients/client-kms/src/commands/DisableKeyRotationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DisableKeyRotationRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DisableKeyRotationRequest } from "../models/models_0"; import { DisableKeyRotation } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/DisconnectCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/DisconnectCustomKeyStoreCommand.ts index e9b671d025337..7decc649e3a0d 100644 --- a/clients/client-kms/src/commands/DisconnectCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/DisconnectCustomKeyStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { DisconnectCustomKeyStoreRequest, DisconnectCustomKeyStoreResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { DisconnectCustomKeyStoreRequest, DisconnectCustomKeyStoreResponse } from "../models/models_0"; import { DisconnectCustomKeyStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/EnableKeyCommand.ts b/clients/client-kms/src/commands/EnableKeyCommand.ts index b5670f68aeb0e..3206bcd08b041 100644 --- a/clients/client-kms/src/commands/EnableKeyCommand.ts +++ b/clients/client-kms/src/commands/EnableKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { EnableKeyRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { EnableKeyRequest } from "../models/models_0"; import { EnableKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/EnableKeyRotationCommand.ts b/clients/client-kms/src/commands/EnableKeyRotationCommand.ts index bcb66192c7bfa..aa8ddeba3a34a 100644 --- a/clients/client-kms/src/commands/EnableKeyRotationCommand.ts +++ b/clients/client-kms/src/commands/EnableKeyRotationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { EnableKeyRotationRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { EnableKeyRotationRequest } from "../models/models_0"; import { EnableKeyRotation } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/EncryptCommand.ts b/clients/client-kms/src/commands/EncryptCommand.ts index c80cd5cc731a2..547e275c37f41 100644 --- a/clients/client-kms/src/commands/EncryptCommand.ts +++ b/clients/client-kms/src/commands/EncryptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { EncryptRequest, EncryptResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { EncryptRequest, EncryptResponse } from "../models/models_0"; import { Encrypt } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/GenerateDataKeyCommand.ts b/clients/client-kms/src/commands/GenerateDataKeyCommand.ts index d944adde13bf0..f95e127253534 100644 --- a/clients/client-kms/src/commands/GenerateDataKeyCommand.ts +++ b/clients/client-kms/src/commands/GenerateDataKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { GenerateDataKeyRequest, GenerateDataKeyResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { GenerateDataKeyRequest, GenerateDataKeyResponse } from "../models/models_0"; import { GenerateDataKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/GenerateDataKeyPairCommand.ts b/clients/client-kms/src/commands/GenerateDataKeyPairCommand.ts index b702b83a80400..6a55167c83684 100644 --- a/clients/client-kms/src/commands/GenerateDataKeyPairCommand.ts +++ b/clients/client-kms/src/commands/GenerateDataKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { GenerateDataKeyPairRequest, GenerateDataKeyPairResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { GenerateDataKeyPairRequest, GenerateDataKeyPairResponse } from "../models/models_0"; import { GenerateDataKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/GenerateDataKeyPairWithoutPlaintextCommand.ts b/clients/client-kms/src/commands/GenerateDataKeyPairWithoutPlaintextCommand.ts index f73ae3e4fcc35..69f4b88314975 100644 --- a/clients/client-kms/src/commands/GenerateDataKeyPairWithoutPlaintextCommand.ts +++ b/clients/client-kms/src/commands/GenerateDataKeyPairWithoutPlaintextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { GenerateDataKeyPairWithoutPlaintextRequest, GenerateDataKeyPairWithoutPlaintextResponse, } from "../models/models_0"; diff --git a/clients/client-kms/src/commands/GenerateDataKeyWithoutPlaintextCommand.ts b/clients/client-kms/src/commands/GenerateDataKeyWithoutPlaintextCommand.ts index 6cd5eb20d2af0..ac8e43ce7bc4b 100644 --- a/clients/client-kms/src/commands/GenerateDataKeyWithoutPlaintextCommand.ts +++ b/clients/client-kms/src/commands/GenerateDataKeyWithoutPlaintextCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { GenerateDataKeyWithoutPlaintextRequest, GenerateDataKeyWithoutPlaintextResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { + GenerateDataKeyWithoutPlaintextRequest, + GenerateDataKeyWithoutPlaintextResponse, +} from "../models/models_0"; import { GenerateDataKeyWithoutPlaintext } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/GenerateMacCommand.ts b/clients/client-kms/src/commands/GenerateMacCommand.ts index 51fcf0702e619..a3ab5580a3b0f 100644 --- a/clients/client-kms/src/commands/GenerateMacCommand.ts +++ b/clients/client-kms/src/commands/GenerateMacCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { GenerateMacRequest, GenerateMacResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { GenerateMacRequest, GenerateMacResponse } from "../models/models_0"; import { GenerateMac } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/GenerateRandomCommand.ts b/clients/client-kms/src/commands/GenerateRandomCommand.ts index a5bad5ee4e950..6e6a798aa7189 100644 --- a/clients/client-kms/src/commands/GenerateRandomCommand.ts +++ b/clients/client-kms/src/commands/GenerateRandomCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { GenerateRandomRequest, GenerateRandomResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { GenerateRandomRequest, GenerateRandomResponse } from "../models/models_0"; import { GenerateRandom } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/GetKeyPolicyCommand.ts b/clients/client-kms/src/commands/GetKeyPolicyCommand.ts index 13041457c1f09..522339411e6f4 100644 --- a/clients/client-kms/src/commands/GetKeyPolicyCommand.ts +++ b/clients/client-kms/src/commands/GetKeyPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { GetKeyPolicyRequest, GetKeyPolicyResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { GetKeyPolicyRequest, GetKeyPolicyResponse } from "../models/models_0"; import { GetKeyPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/GetKeyRotationStatusCommand.ts b/clients/client-kms/src/commands/GetKeyRotationStatusCommand.ts index d00bdcd01f5b8..0be3d4049ff02 100644 --- a/clients/client-kms/src/commands/GetKeyRotationStatusCommand.ts +++ b/clients/client-kms/src/commands/GetKeyRotationStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { GetKeyRotationStatusRequest, GetKeyRotationStatusResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { GetKeyRotationStatusRequest, GetKeyRotationStatusResponse } from "../models/models_0"; import { GetKeyRotationStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/GetParametersForImportCommand.ts b/clients/client-kms/src/commands/GetParametersForImportCommand.ts index a4b059fc6e396..86d3ad9ebb2d1 100644 --- a/clients/client-kms/src/commands/GetParametersForImportCommand.ts +++ b/clients/client-kms/src/commands/GetParametersForImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { GetParametersForImportRequest, GetParametersForImportResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { GetParametersForImportRequest, GetParametersForImportResponse } from "../models/models_0"; import { GetParametersForImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/GetPublicKeyCommand.ts b/clients/client-kms/src/commands/GetPublicKeyCommand.ts index 82cd6e60071b5..5654d49a55194 100644 --- a/clients/client-kms/src/commands/GetPublicKeyCommand.ts +++ b/clients/client-kms/src/commands/GetPublicKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { GetPublicKeyRequest, GetPublicKeyResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { GetPublicKeyRequest, GetPublicKeyResponse } from "../models/models_0"; import { GetPublicKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ImportKeyMaterialCommand.ts b/clients/client-kms/src/commands/ImportKeyMaterialCommand.ts index bc41da2a41a53..58c5801538a44 100644 --- a/clients/client-kms/src/commands/ImportKeyMaterialCommand.ts +++ b/clients/client-kms/src/commands/ImportKeyMaterialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ImportKeyMaterialRequest, ImportKeyMaterialResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ImportKeyMaterialRequest, ImportKeyMaterialResponse } from "../models/models_0"; import { ImportKeyMaterial } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ListAliasesCommand.ts b/clients/client-kms/src/commands/ListAliasesCommand.ts index 4125745554533..0051de0144d26 100644 --- a/clients/client-kms/src/commands/ListAliasesCommand.ts +++ b/clients/client-kms/src/commands/ListAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ListAliasesRequest, ListAliasesResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ListAliasesRequest, ListAliasesResponse } from "../models/models_0"; import { ListAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ListGrantsCommand.ts b/clients/client-kms/src/commands/ListGrantsCommand.ts index a85d23c859d6f..be7358d7b1209 100644 --- a/clients/client-kms/src/commands/ListGrantsCommand.ts +++ b/clients/client-kms/src/commands/ListGrantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ListGrantsRequest, ListGrantsResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ListGrantsRequest, ListGrantsResponse } from "../models/models_0"; import { ListGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ListKeyPoliciesCommand.ts b/clients/client-kms/src/commands/ListKeyPoliciesCommand.ts index a3dde98c71b12..4501b7ef585a1 100644 --- a/clients/client-kms/src/commands/ListKeyPoliciesCommand.ts +++ b/clients/client-kms/src/commands/ListKeyPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ListKeyPoliciesRequest, ListKeyPoliciesResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ListKeyPoliciesRequest, ListKeyPoliciesResponse } from "../models/models_0"; import { ListKeyPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ListKeyRotationsCommand.ts b/clients/client-kms/src/commands/ListKeyRotationsCommand.ts index 85ff03892d277..98e893bacaa90 100644 --- a/clients/client-kms/src/commands/ListKeyRotationsCommand.ts +++ b/clients/client-kms/src/commands/ListKeyRotationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ListKeyRotationsRequest, ListKeyRotationsResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ListKeyRotationsRequest, ListKeyRotationsResponse } from "../models/models_0"; import { ListKeyRotations } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ListKeysCommand.ts b/clients/client-kms/src/commands/ListKeysCommand.ts index 702bce0b7dfcd..77f27050bf0c1 100644 --- a/clients/client-kms/src/commands/ListKeysCommand.ts +++ b/clients/client-kms/src/commands/ListKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ListKeysRequest, ListKeysResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ListKeysRequest, ListKeysResponse } from "../models/models_0"; import { ListKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ListResourceTagsCommand.ts b/clients/client-kms/src/commands/ListResourceTagsCommand.ts index 5ab7dc1ecfe50..669fd72d1617a 100644 --- a/clients/client-kms/src/commands/ListResourceTagsCommand.ts +++ b/clients/client-kms/src/commands/ListResourceTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ListResourceTagsRequest, ListResourceTagsResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ListResourceTagsRequest, ListResourceTagsResponse } from "../models/models_0"; import { ListResourceTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ListRetirableGrantsCommand.ts b/clients/client-kms/src/commands/ListRetirableGrantsCommand.ts index e3f7ea612725f..da450302605ca 100644 --- a/clients/client-kms/src/commands/ListRetirableGrantsCommand.ts +++ b/clients/client-kms/src/commands/ListRetirableGrantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ListGrantsResponse, ListRetirableGrantsRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ListGrantsResponse, ListRetirableGrantsRequest } from "../models/models_0"; import { ListRetirableGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/PutKeyPolicyCommand.ts b/clients/client-kms/src/commands/PutKeyPolicyCommand.ts index 9d19099a1455c..c50c0801f3a9a 100644 --- a/clients/client-kms/src/commands/PutKeyPolicyCommand.ts +++ b/clients/client-kms/src/commands/PutKeyPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { PutKeyPolicyRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { PutKeyPolicyRequest } from "../models/models_0"; import { PutKeyPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ReEncryptCommand.ts b/clients/client-kms/src/commands/ReEncryptCommand.ts index 067898788b14b..f247ae9a193ef 100644 --- a/clients/client-kms/src/commands/ReEncryptCommand.ts +++ b/clients/client-kms/src/commands/ReEncryptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ReEncryptRequest, ReEncryptResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ReEncryptRequest, ReEncryptResponse } from "../models/models_0"; import { ReEncrypt } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ReplicateKeyCommand.ts b/clients/client-kms/src/commands/ReplicateKeyCommand.ts index eaa6d4c0e367e..3b05c6be5f90e 100644 --- a/clients/client-kms/src/commands/ReplicateKeyCommand.ts +++ b/clients/client-kms/src/commands/ReplicateKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ReplicateKeyRequest, ReplicateKeyResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ReplicateKeyRequest, ReplicateKeyResponse } from "../models/models_0"; import { ReplicateKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/RetireGrantCommand.ts b/clients/client-kms/src/commands/RetireGrantCommand.ts index 038cf9e910031..c7e0b152b3b25 100644 --- a/clients/client-kms/src/commands/RetireGrantCommand.ts +++ b/clients/client-kms/src/commands/RetireGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { RetireGrantRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { RetireGrantRequest } from "../models/models_0"; import { RetireGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/RevokeGrantCommand.ts b/clients/client-kms/src/commands/RevokeGrantCommand.ts index 2092d1d81e1fb..03b661f851a2b 100644 --- a/clients/client-kms/src/commands/RevokeGrantCommand.ts +++ b/clients/client-kms/src/commands/RevokeGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { RevokeGrantRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { RevokeGrantRequest } from "../models/models_0"; import { RevokeGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/RotateKeyOnDemandCommand.ts b/clients/client-kms/src/commands/RotateKeyOnDemandCommand.ts index 91a3c50baf57b..2edfc3a4df80b 100644 --- a/clients/client-kms/src/commands/RotateKeyOnDemandCommand.ts +++ b/clients/client-kms/src/commands/RotateKeyOnDemandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { RotateKeyOnDemandRequest, RotateKeyOnDemandResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { RotateKeyOnDemandRequest, RotateKeyOnDemandResponse } from "../models/models_0"; import { RotateKeyOnDemand } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/ScheduleKeyDeletionCommand.ts b/clients/client-kms/src/commands/ScheduleKeyDeletionCommand.ts index 572f44104072d..e61e72d82410c 100644 --- a/clients/client-kms/src/commands/ScheduleKeyDeletionCommand.ts +++ b/clients/client-kms/src/commands/ScheduleKeyDeletionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { ScheduleKeyDeletionRequest, ScheduleKeyDeletionResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { ScheduleKeyDeletionRequest, ScheduleKeyDeletionResponse } from "../models/models_0"; import { ScheduleKeyDeletion } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/SignCommand.ts b/clients/client-kms/src/commands/SignCommand.ts index 4059d9df22ecc..eb03bea25b31e 100644 --- a/clients/client-kms/src/commands/SignCommand.ts +++ b/clients/client-kms/src/commands/SignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { SignRequest, SignResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { SignRequest, SignResponse } from "../models/models_0"; import { Sign } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/TagResourceCommand.ts b/clients/client-kms/src/commands/TagResourceCommand.ts index 5fb358e1db697..dcaf1a9ceb4a9 100644 --- a/clients/client-kms/src/commands/TagResourceCommand.ts +++ b/clients/client-kms/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { TagResourceRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/UntagResourceCommand.ts b/clients/client-kms/src/commands/UntagResourceCommand.ts index 815f2091f8947..5b54740feb318 100644 --- a/clients/client-kms/src/commands/UntagResourceCommand.ts +++ b/clients/client-kms/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { UntagResourceRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/UpdateAliasCommand.ts b/clients/client-kms/src/commands/UpdateAliasCommand.ts index 37363ba0378f2..c2b988d276bb1 100644 --- a/clients/client-kms/src/commands/UpdateAliasCommand.ts +++ b/clients/client-kms/src/commands/UpdateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { UpdateAliasRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { UpdateAliasRequest } from "../models/models_0"; import { UpdateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/UpdateCustomKeyStoreCommand.ts b/clients/client-kms/src/commands/UpdateCustomKeyStoreCommand.ts index 0e144de8f3d71..cf05c2dba6f2c 100644 --- a/clients/client-kms/src/commands/UpdateCustomKeyStoreCommand.ts +++ b/clients/client-kms/src/commands/UpdateCustomKeyStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { UpdateCustomKeyStoreRequest, UpdateCustomKeyStoreResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { UpdateCustomKeyStoreRequest, UpdateCustomKeyStoreResponse } from "../models/models_0"; import { UpdateCustomKeyStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/UpdateKeyDescriptionCommand.ts b/clients/client-kms/src/commands/UpdateKeyDescriptionCommand.ts index 90fb76d0b9960..028e99353c4d8 100644 --- a/clients/client-kms/src/commands/UpdateKeyDescriptionCommand.ts +++ b/clients/client-kms/src/commands/UpdateKeyDescriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { UpdateKeyDescriptionRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { UpdateKeyDescriptionRequest } from "../models/models_0"; import { UpdateKeyDescription } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/UpdatePrimaryRegionCommand.ts b/clients/client-kms/src/commands/UpdatePrimaryRegionCommand.ts index a03cdfea61996..8485706621e0b 100644 --- a/clients/client-kms/src/commands/UpdatePrimaryRegionCommand.ts +++ b/clients/client-kms/src/commands/UpdatePrimaryRegionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { UpdatePrimaryRegionRequest } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { UpdatePrimaryRegionRequest } from "../models/models_0"; import { UpdatePrimaryRegion } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/VerifyCommand.ts b/clients/client-kms/src/commands/VerifyCommand.ts index d15c8de8c0748..45c89483198e8 100644 --- a/clients/client-kms/src/commands/VerifyCommand.ts +++ b/clients/client-kms/src/commands/VerifyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { VerifyRequest, VerifyResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { VerifyRequest, VerifyResponse } from "../models/models_0"; import { Verify } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/commands/VerifyMacCommand.ts b/clients/client-kms/src/commands/VerifyMacCommand.ts index 2d9cb50ad87e3..6e8f7110e1ca1 100644 --- a/clients/client-kms/src/commands/VerifyMacCommand.ts +++ b/clients/client-kms/src/commands/VerifyMacCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; -import { VerifyMacRequest, VerifyMacResponse } from "../models/models_0"; +import type { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient"; +import type { VerifyMacRequest, VerifyMacResponse } from "../models/models_0"; import { VerifyMac } from "../schemas/schemas_0"; /** diff --git a/clients/client-kms/src/endpoint/EndpointParameters.ts b/clients/client-kms/src/endpoint/EndpointParameters.ts index 3a548f0d9cb41..8efb25691bb72 100644 --- a/clients/client-kms/src/endpoint/EndpointParameters.ts +++ b/clients/client-kms/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-kms/src/endpoint/endpointResolver.ts b/clients/client-kms/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-kms/src/endpoint/endpointResolver.ts +++ b/clients/client-kms/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-kms/src/extensionConfiguration.ts b/clients/client-kms/src/extensionConfiguration.ts index 38fea72a5f0b3..84d0843ab9981 100644 --- a/clients/client-kms/src/extensionConfiguration.ts +++ b/clients/client-kms/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-kms/src/models/KMSServiceException.ts b/clients/client-kms/src/models/KMSServiceException.ts index 6c4b95c6aa96a..e06ae020feedc 100644 --- a/clients/client-kms/src/models/KMSServiceException.ts +++ b/clients/client-kms/src/models/KMSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-kms/src/models/errors.ts b/clients/client-kms/src/models/errors.ts index fb37acf6653f4..6007aff881193 100644 --- a/clients/client-kms/src/models/errors.ts +++ b/clients/client-kms/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KMSServiceException as __BaseException } from "./KMSServiceException"; diff --git a/clients/client-kms/src/pagination/DescribeCustomKeyStoresPaginator.ts b/clients/client-kms/src/pagination/DescribeCustomKeyStoresPaginator.ts index 4068a7f76edf3..d8000866a5f3d 100644 --- a/clients/client-kms/src/pagination/DescribeCustomKeyStoresPaginator.ts +++ b/clients/client-kms/src/pagination/DescribeCustomKeyStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCustomKeyStoresCommand, diff --git a/clients/client-kms/src/pagination/Interfaces.ts b/clients/client-kms/src/pagination/Interfaces.ts index 4db7f17b0df04..1ffb2fcbb6764 100644 --- a/clients/client-kms/src/pagination/Interfaces.ts +++ b/clients/client-kms/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { KMSClient } from "../KMSClient"; diff --git a/clients/client-kms/src/pagination/ListAliasesPaginator.ts b/clients/client-kms/src/pagination/ListAliasesPaginator.ts index 1a1718478f827..88bbc7a8dbc43 100644 --- a/clients/client-kms/src/pagination/ListAliasesPaginator.ts +++ b/clients/client-kms/src/pagination/ListAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAliasesCommand, ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand"; import { KMSClient } from "../KMSClient"; diff --git a/clients/client-kms/src/pagination/ListGrantsPaginator.ts b/clients/client-kms/src/pagination/ListGrantsPaginator.ts index 183d9af4a786f..298beb712dcb6 100644 --- a/clients/client-kms/src/pagination/ListGrantsPaginator.ts +++ b/clients/client-kms/src/pagination/ListGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGrantsCommand, ListGrantsCommandInput, ListGrantsCommandOutput } from "../commands/ListGrantsCommand"; import { KMSClient } from "../KMSClient"; diff --git a/clients/client-kms/src/pagination/ListKeyPoliciesPaginator.ts b/clients/client-kms/src/pagination/ListKeyPoliciesPaginator.ts index e4208bb7d9a6b..55eab1d57e0e0 100644 --- a/clients/client-kms/src/pagination/ListKeyPoliciesPaginator.ts +++ b/clients/client-kms/src/pagination/ListKeyPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKeyPoliciesCommand, diff --git a/clients/client-kms/src/pagination/ListKeyRotationsPaginator.ts b/clients/client-kms/src/pagination/ListKeyRotationsPaginator.ts index e0560a1a063ee..8e3f1dcdfbf5f 100644 --- a/clients/client-kms/src/pagination/ListKeyRotationsPaginator.ts +++ b/clients/client-kms/src/pagination/ListKeyRotationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKeyRotationsCommand, diff --git a/clients/client-kms/src/pagination/ListKeysPaginator.ts b/clients/client-kms/src/pagination/ListKeysPaginator.ts index 1835caf6c8726..43f9b6b06b2f7 100644 --- a/clients/client-kms/src/pagination/ListKeysPaginator.ts +++ b/clients/client-kms/src/pagination/ListKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKeysCommand, ListKeysCommandInput, ListKeysCommandOutput } from "../commands/ListKeysCommand"; import { KMSClient } from "../KMSClient"; diff --git a/clients/client-kms/src/pagination/ListResourceTagsPaginator.ts b/clients/client-kms/src/pagination/ListResourceTagsPaginator.ts index 52cebfed9cf35..d28970d2cfa23 100644 --- a/clients/client-kms/src/pagination/ListResourceTagsPaginator.ts +++ b/clients/client-kms/src/pagination/ListResourceTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceTagsCommand, diff --git a/clients/client-kms/src/pagination/ListRetirableGrantsPaginator.ts b/clients/client-kms/src/pagination/ListRetirableGrantsPaginator.ts index c4275ff1a87df..3ee577dd9aee0 100644 --- a/clients/client-kms/src/pagination/ListRetirableGrantsPaginator.ts +++ b/clients/client-kms/src/pagination/ListRetirableGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRetirableGrantsCommand, diff --git a/clients/client-kms/src/runtimeConfig.browser.ts b/clients/client-kms/src/runtimeConfig.browser.ts index 5af4656a0b3fc..7ca781f1ab86f 100644 --- a/clients/client-kms/src/runtimeConfig.browser.ts +++ b/clients/client-kms/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KMSClientConfig } from "./KMSClient"; + +import type { KMSClientConfig } from "./KMSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-kms/src/runtimeConfig.native.ts b/clients/client-kms/src/runtimeConfig.native.ts index 57a635b8533b4..fb702c7a8dc55 100644 --- a/clients/client-kms/src/runtimeConfig.native.ts +++ b/clients/client-kms/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { KMSClientConfig } from "./KMSClient"; +import type { KMSClientConfig } from "./KMSClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-kms/src/runtimeConfig.shared.ts b/clients/client-kms/src/runtimeConfig.shared.ts index c6c53a2ffd24a..d6f86828a1851 100644 --- a/clients/client-kms/src/runtimeConfig.shared.ts +++ b/clients/client-kms/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultKMSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { KMSClientConfig } from "./KMSClient"; +import type { KMSClientConfig } from "./KMSClient"; /** * @internal diff --git a/clients/client-kms/src/runtimeConfig.ts b/clients/client-kms/src/runtimeConfig.ts index 0cdfaa46fdea1..39733502269b2 100644 --- a/clients/client-kms/src/runtimeConfig.ts +++ b/clients/client-kms/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { KMSClientConfig } from "./KMSClient"; + +import type { KMSClientConfig } from "./KMSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-kms/src/runtimeExtensions.ts b/clients/client-kms/src/runtimeExtensions.ts index c13d5890944ea..8dbf48e37014a 100644 --- a/clients/client-kms/src/runtimeExtensions.ts +++ b/clients/client-kms/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { KMSExtensionConfiguration } from "./extensionConfiguration"; +import type { KMSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-kms/src/schemas/schemas_0.ts b/clients/client-kms/src/schemas/schemas_0.ts index 36aef92eb8f4a..70bbaddeae5ba 100644 --- a/clients/client-kms/src/schemas/schemas_0.ts +++ b/clients/client-kms/src/schemas/schemas_0.ts @@ -367,7 +367,7 @@ const n0 = "com.amazonaws.kms"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-lakeformation/package.json b/clients/client-lakeformation/package.json index e2fa6ee3d1d42..1114f33601a8b 100644 --- a/clients/client-lakeformation/package.json +++ b/clients/client-lakeformation/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-lakeformation/src/LakeFormation.ts b/clients/client-lakeformation/src/LakeFormation.ts index 46bed682b6ce1..a64417eefc8f1 100644 --- a/clients/client-lakeformation/src/LakeFormation.ts +++ b/clients/client-lakeformation/src/LakeFormation.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddLFTagsToResourceCommand, @@ -282,7 +282,7 @@ import { UpdateTableStorageOptimizerCommandInput, UpdateTableStorageOptimizerCommandOutput, } from "./commands/UpdateTableStorageOptimizerCommand"; -import { LakeFormationClient, LakeFormationClientConfig } from "./LakeFormationClient"; +import { LakeFormationClient } from "./LakeFormationClient"; const commands = { AddLFTagsToResourceCommand, diff --git a/clients/client-lakeformation/src/LakeFormationClient.ts b/clients/client-lakeformation/src/LakeFormationClient.ts index 623ef3eab2ac7..477663bb565f4 100644 --- a/clients/client-lakeformation/src/LakeFormationClient.ts +++ b/clients/client-lakeformation/src/LakeFormationClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLakeFormationHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -221,7 +230,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-lakeformation/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-lakeformation/src/auth/httpAuthExtensionConfiguration.ts index 3c35b04a85df4..c44a0e368d261 100644 --- a/clients/client-lakeformation/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-lakeformation/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LakeFormationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LakeFormationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-lakeformation/src/auth/httpAuthSchemeProvider.ts b/clients/client-lakeformation/src/auth/httpAuthSchemeProvider.ts index b7bee40419ed0..853b3b548a2ff 100644 --- a/clients/client-lakeformation/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-lakeformation/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LakeFormationClientConfig, LakeFormationClientResolvedConfig } from "../LakeFormationClient"; +import { type LakeFormationClientResolvedConfig, LakeFormationClientConfig } from "../LakeFormationClient"; /** * @internal diff --git a/clients/client-lakeformation/src/commands/AddLFTagsToResourceCommand.ts b/clients/client-lakeformation/src/commands/AddLFTagsToResourceCommand.ts index 29161d1c39f92..3b140980f68e2 100644 --- a/clients/client-lakeformation/src/commands/AddLFTagsToResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/AddLFTagsToResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { AddLFTagsToResourceRequest, AddLFTagsToResourceResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { AddLFTagsToResourceRequest, AddLFTagsToResourceResponse } from "../models/models_0"; import { AddLFTagsToResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/AssumeDecoratedRoleWithSAMLCommand.ts b/clients/client-lakeformation/src/commands/AssumeDecoratedRoleWithSAMLCommand.ts index 249b1a95a7846..d046a24673736 100644 --- a/clients/client-lakeformation/src/commands/AssumeDecoratedRoleWithSAMLCommand.ts +++ b/clients/client-lakeformation/src/commands/AssumeDecoratedRoleWithSAMLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { AssumeDecoratedRoleWithSAMLRequest, AssumeDecoratedRoleWithSAMLResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { AssumeDecoratedRoleWithSAMLRequest, AssumeDecoratedRoleWithSAMLResponse } from "../models/models_0"; import { AssumeDecoratedRoleWithSAML } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/BatchGrantPermissionsCommand.ts b/clients/client-lakeformation/src/commands/BatchGrantPermissionsCommand.ts index 0bd05c5835106..33cc7e8af48e0 100644 --- a/clients/client-lakeformation/src/commands/BatchGrantPermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/BatchGrantPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { BatchGrantPermissionsRequest, BatchGrantPermissionsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { BatchGrantPermissionsRequest, BatchGrantPermissionsResponse } from "../models/models_0"; import { BatchGrantPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/BatchRevokePermissionsCommand.ts b/clients/client-lakeformation/src/commands/BatchRevokePermissionsCommand.ts index f186d9b3310a0..4c4800f1583ef 100644 --- a/clients/client-lakeformation/src/commands/BatchRevokePermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/BatchRevokePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { BatchRevokePermissionsRequest, BatchRevokePermissionsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { BatchRevokePermissionsRequest, BatchRevokePermissionsResponse } from "../models/models_0"; import { BatchRevokePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/CancelTransactionCommand.ts b/clients/client-lakeformation/src/commands/CancelTransactionCommand.ts index 5e9678c119cb2..3b05b76cf5465 100644 --- a/clients/client-lakeformation/src/commands/CancelTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/CancelTransactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { CancelTransactionRequest, CancelTransactionResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { CancelTransactionRequest, CancelTransactionResponse } from "../models/models_0"; import { CancelTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/CommitTransactionCommand.ts b/clients/client-lakeformation/src/commands/CommitTransactionCommand.ts index 3cccff8afa862..b78a8f8a907d8 100644 --- a/clients/client-lakeformation/src/commands/CommitTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/CommitTransactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { CommitTransactionRequest, CommitTransactionResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { CommitTransactionRequest, CommitTransactionResponse } from "../models/models_0"; import { CommitTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/CreateDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/CreateDataCellsFilterCommand.ts index f5d0949680ab9..e189f14bcbc9a 100644 --- a/clients/client-lakeformation/src/commands/CreateDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateDataCellsFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { CreateDataCellsFilterRequest, CreateDataCellsFilterResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { CreateDataCellsFilterRequest, CreateDataCellsFilterResponse } from "../models/models_0"; import { CreateDataCellsFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/CreateLFTagCommand.ts b/clients/client-lakeformation/src/commands/CreateLFTagCommand.ts index b3c1b634b93b0..83329b46967b1 100644 --- a/clients/client-lakeformation/src/commands/CreateLFTagCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateLFTagCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { CreateLFTagRequest, CreateLFTagResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { CreateLFTagRequest, CreateLFTagResponse } from "../models/models_0"; import { CreateLFTag } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/CreateLFTagExpressionCommand.ts b/clients/client-lakeformation/src/commands/CreateLFTagExpressionCommand.ts index 29e0ad065717f..c676d498accb9 100644 --- a/clients/client-lakeformation/src/commands/CreateLFTagExpressionCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateLFTagExpressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { CreateLFTagExpressionRequest, CreateLFTagExpressionResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { CreateLFTagExpressionRequest, CreateLFTagExpressionResponse } from "../models/models_0"; import { CreateLFTagExpression } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/CreateLakeFormationIdentityCenterConfigurationCommand.ts b/clients/client-lakeformation/src/commands/CreateLakeFormationIdentityCenterConfigurationCommand.ts index 12b12af15fb51..3edbcd0074c31 100644 --- a/clients/client-lakeformation/src/commands/CreateLakeFormationIdentityCenterConfigurationCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateLakeFormationIdentityCenterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { CreateLakeFormationIdentityCenterConfigurationRequest, CreateLakeFormationIdentityCenterConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-lakeformation/src/commands/CreateLakeFormationOptInCommand.ts b/clients/client-lakeformation/src/commands/CreateLakeFormationOptInCommand.ts index c07b4776bb589..768f3ac8cbdaf 100644 --- a/clients/client-lakeformation/src/commands/CreateLakeFormationOptInCommand.ts +++ b/clients/client-lakeformation/src/commands/CreateLakeFormationOptInCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { CreateLakeFormationOptInRequest, CreateLakeFormationOptInResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { CreateLakeFormationOptInRequest, CreateLakeFormationOptInResponse } from "../models/models_0"; import { CreateLakeFormationOptIn } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/DeleteDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/DeleteDataCellsFilterCommand.ts index 393a7418836f1..088fd6af03363 100644 --- a/clients/client-lakeformation/src/commands/DeleteDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteDataCellsFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { DeleteDataCellsFilterRequest, DeleteDataCellsFilterResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DeleteDataCellsFilterRequest, DeleteDataCellsFilterResponse } from "../models/models_0"; import { DeleteDataCellsFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/DeleteLFTagCommand.ts b/clients/client-lakeformation/src/commands/DeleteLFTagCommand.ts index fda7492bf24e3..e583e412e48e0 100644 --- a/clients/client-lakeformation/src/commands/DeleteLFTagCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteLFTagCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { DeleteLFTagRequest, DeleteLFTagResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DeleteLFTagRequest, DeleteLFTagResponse } from "../models/models_0"; import { DeleteLFTag } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/DeleteLFTagExpressionCommand.ts b/clients/client-lakeformation/src/commands/DeleteLFTagExpressionCommand.ts index 594dc081b8185..7545e5e30f920 100644 --- a/clients/client-lakeformation/src/commands/DeleteLFTagExpressionCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteLFTagExpressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { DeleteLFTagExpressionRequest, DeleteLFTagExpressionResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DeleteLFTagExpressionRequest, DeleteLFTagExpressionResponse } from "../models/models_0"; import { DeleteLFTagExpression } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.ts b/clients/client-lakeformation/src/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.ts index ff205f6a5c78b..3582d0f61ef78 100644 --- a/clients/client-lakeformation/src/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteLakeFormationIdentityCenterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DeleteLakeFormationIdentityCenterConfigurationRequest, DeleteLakeFormationIdentityCenterConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-lakeformation/src/commands/DeleteLakeFormationOptInCommand.ts b/clients/client-lakeformation/src/commands/DeleteLakeFormationOptInCommand.ts index c98869b111673..c7b40cd83a8d0 100644 --- a/clients/client-lakeformation/src/commands/DeleteLakeFormationOptInCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteLakeFormationOptInCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { DeleteLakeFormationOptInRequest, DeleteLakeFormationOptInResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DeleteLakeFormationOptInRequest, DeleteLakeFormationOptInResponse } from "../models/models_0"; import { DeleteLakeFormationOptIn } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/DeleteObjectsOnCancelCommand.ts b/clients/client-lakeformation/src/commands/DeleteObjectsOnCancelCommand.ts index ffc27cd3dda21..a25f605767929 100644 --- a/clients/client-lakeformation/src/commands/DeleteObjectsOnCancelCommand.ts +++ b/clients/client-lakeformation/src/commands/DeleteObjectsOnCancelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { DeleteObjectsOnCancelRequest, DeleteObjectsOnCancelResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DeleteObjectsOnCancelRequest, DeleteObjectsOnCancelResponse } from "../models/models_0"; import { DeleteObjectsOnCancel } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/DeregisterResourceCommand.ts b/clients/client-lakeformation/src/commands/DeregisterResourceCommand.ts index 6585a290edde2..56eeb43d70f29 100644 --- a/clients/client-lakeformation/src/commands/DeregisterResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/DeregisterResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { DeregisterResourceRequest, DeregisterResourceResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DeregisterResourceRequest, DeregisterResourceResponse } from "../models/models_0"; import { DeregisterResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.ts b/clients/client-lakeformation/src/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.ts index 48b651f4f318a..a2194c15e6149 100644 --- a/clients/client-lakeformation/src/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.ts +++ b/clients/client-lakeformation/src/commands/DescribeLakeFormationIdentityCenterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DescribeLakeFormationIdentityCenterConfigurationRequest, DescribeLakeFormationIdentityCenterConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-lakeformation/src/commands/DescribeResourceCommand.ts b/clients/client-lakeformation/src/commands/DescribeResourceCommand.ts index f53ffba390b71..941e366a5b71b 100644 --- a/clients/client-lakeformation/src/commands/DescribeResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/DescribeResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { DescribeResourceRequest, DescribeResourceResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DescribeResourceRequest, DescribeResourceResponse } from "../models/models_0"; import { DescribeResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/DescribeTransactionCommand.ts b/clients/client-lakeformation/src/commands/DescribeTransactionCommand.ts index 96f98f843dd7d..a827c0c0c0383 100644 --- a/clients/client-lakeformation/src/commands/DescribeTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/DescribeTransactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { DescribeTransactionRequest, DescribeTransactionResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { DescribeTransactionRequest, DescribeTransactionResponse } from "../models/models_0"; import { DescribeTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/ExtendTransactionCommand.ts b/clients/client-lakeformation/src/commands/ExtendTransactionCommand.ts index 767dddbfc5efe..cce464386fae3 100644 --- a/clients/client-lakeformation/src/commands/ExtendTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/ExtendTransactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { ExtendTransactionRequest, ExtendTransactionResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { ExtendTransactionRequest, ExtendTransactionResponse } from "../models/models_0"; import { ExtendTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/GetDataCellsFilterCommand.ts index 56eb455ba7e8d..13fa65d4b7373 100644 --- a/clients/client-lakeformation/src/commands/GetDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/GetDataCellsFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetDataCellsFilterRequest, GetDataCellsFilterResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetDataCellsFilterRequest, GetDataCellsFilterResponse } from "../models/models_0"; import { GetDataCellsFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetDataLakePrincipalCommand.ts b/clients/client-lakeformation/src/commands/GetDataLakePrincipalCommand.ts index 0e1121315679a..4a44d8cede814 100644 --- a/clients/client-lakeformation/src/commands/GetDataLakePrincipalCommand.ts +++ b/clients/client-lakeformation/src/commands/GetDataLakePrincipalCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetDataLakePrincipalRequest, GetDataLakePrincipalResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetDataLakePrincipalRequest, GetDataLakePrincipalResponse } from "../models/models_0"; import { GetDataLakePrincipal } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetDataLakeSettingsCommand.ts b/clients/client-lakeformation/src/commands/GetDataLakeSettingsCommand.ts index e8cf21e1752f8..c710b8cf8640f 100644 --- a/clients/client-lakeformation/src/commands/GetDataLakeSettingsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetDataLakeSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetDataLakeSettingsRequest, GetDataLakeSettingsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetDataLakeSettingsRequest, GetDataLakeSettingsResponse } from "../models/models_0"; import { GetDataLakeSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetEffectivePermissionsForPathCommand.ts b/clients/client-lakeformation/src/commands/GetEffectivePermissionsForPathCommand.ts index bb630d5981c04..c03542efc26fb 100644 --- a/clients/client-lakeformation/src/commands/GetEffectivePermissionsForPathCommand.ts +++ b/clients/client-lakeformation/src/commands/GetEffectivePermissionsForPathCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetEffectivePermissionsForPathRequest, GetEffectivePermissionsForPathResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetEffectivePermissionsForPathRequest, GetEffectivePermissionsForPathResponse } from "../models/models_0"; import { GetEffectivePermissionsForPath } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetLFTagCommand.ts b/clients/client-lakeformation/src/commands/GetLFTagCommand.ts index 7af2185e220ce..2c2883bbb7737 100644 --- a/clients/client-lakeformation/src/commands/GetLFTagCommand.ts +++ b/clients/client-lakeformation/src/commands/GetLFTagCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetLFTagRequest, GetLFTagResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetLFTagRequest, GetLFTagResponse } from "../models/models_0"; import { GetLFTag } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetLFTagExpressionCommand.ts b/clients/client-lakeformation/src/commands/GetLFTagExpressionCommand.ts index adc5c5a02243e..d173930d1b950 100644 --- a/clients/client-lakeformation/src/commands/GetLFTagExpressionCommand.ts +++ b/clients/client-lakeformation/src/commands/GetLFTagExpressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetLFTagExpressionRequest, GetLFTagExpressionResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetLFTagExpressionRequest, GetLFTagExpressionResponse } from "../models/models_0"; import { GetLFTagExpression } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetQueryStateCommand.ts b/clients/client-lakeformation/src/commands/GetQueryStateCommand.ts index 94760ff041e24..af5b2f6fa9d00 100644 --- a/clients/client-lakeformation/src/commands/GetQueryStateCommand.ts +++ b/clients/client-lakeformation/src/commands/GetQueryStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetQueryStateRequest, GetQueryStateResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetQueryStateRequest, GetQueryStateResponse } from "../models/models_0"; import { GetQueryState } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetQueryStatisticsCommand.ts b/clients/client-lakeformation/src/commands/GetQueryStatisticsCommand.ts index ebe80bcd6be9a..a2357eb5139e8 100644 --- a/clients/client-lakeformation/src/commands/GetQueryStatisticsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetQueryStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetQueryStatisticsRequest, GetQueryStatisticsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetQueryStatisticsRequest, GetQueryStatisticsResponse } from "../models/models_0"; import { GetQueryStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetResourceLFTagsCommand.ts b/clients/client-lakeformation/src/commands/GetResourceLFTagsCommand.ts index 70e460da1c264..741a30f0fc3dc 100644 --- a/clients/client-lakeformation/src/commands/GetResourceLFTagsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetResourceLFTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetResourceLFTagsRequest, GetResourceLFTagsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetResourceLFTagsRequest, GetResourceLFTagsResponse } from "../models/models_0"; import { GetResourceLFTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetTableObjectsCommand.ts b/clients/client-lakeformation/src/commands/GetTableObjectsCommand.ts index 50245f3baa909..1b637dbeb1410 100644 --- a/clients/client-lakeformation/src/commands/GetTableObjectsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetTableObjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetTableObjectsRequest, GetTableObjectsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetTableObjectsRequest, GetTableObjectsResponse } from "../models/models_0"; import { GetTableObjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetTemporaryGluePartitionCredentialsCommand.ts b/clients/client-lakeformation/src/commands/GetTemporaryGluePartitionCredentialsCommand.ts index 4d3135f477fa5..37b80bd64f645 100644 --- a/clients/client-lakeformation/src/commands/GetTemporaryGluePartitionCredentialsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetTemporaryGluePartitionCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetTemporaryGluePartitionCredentialsRequest, GetTemporaryGluePartitionCredentialsResponse, } from "../models/models_0"; diff --git a/clients/client-lakeformation/src/commands/GetTemporaryGlueTableCredentialsCommand.ts b/clients/client-lakeformation/src/commands/GetTemporaryGlueTableCredentialsCommand.ts index 80f87ab9d4e1c..89a916c24eaeb 100644 --- a/clients/client-lakeformation/src/commands/GetTemporaryGlueTableCredentialsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetTemporaryGlueTableCredentialsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetTemporaryGlueTableCredentialsRequest, GetTemporaryGlueTableCredentialsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { + GetTemporaryGlueTableCredentialsRequest, + GetTemporaryGlueTableCredentialsResponse, +} from "../models/models_0"; import { GetTemporaryGlueTableCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetWorkUnitResultsCommand.ts b/clients/client-lakeformation/src/commands/GetWorkUnitResultsCommand.ts index 6b2f1adffdb28..979084f7d6667 100644 --- a/clients/client-lakeformation/src/commands/GetWorkUnitResultsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetWorkUnitResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetWorkUnitResultsRequest, GetWorkUnitResultsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import { type GetWorkUnitResultsRequest, GetWorkUnitResultsResponse } from "../models/models_0"; import { GetWorkUnitResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GetWorkUnitsCommand.ts b/clients/client-lakeformation/src/commands/GetWorkUnitsCommand.ts index 066d690a01f29..30ad0d016c717 100644 --- a/clients/client-lakeformation/src/commands/GetWorkUnitsCommand.ts +++ b/clients/client-lakeformation/src/commands/GetWorkUnitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GetWorkUnitsRequest, GetWorkUnitsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GetWorkUnitsRequest, GetWorkUnitsResponse } from "../models/models_0"; import { GetWorkUnits } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/GrantPermissionsCommand.ts b/clients/client-lakeformation/src/commands/GrantPermissionsCommand.ts index e13ff16cb6a35..9fa2ac0130456 100644 --- a/clients/client-lakeformation/src/commands/GrantPermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/GrantPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { GrantPermissionsRequest, GrantPermissionsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { GrantPermissionsRequest, GrantPermissionsResponse } from "../models/models_0"; import { GrantPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/ListDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/ListDataCellsFilterCommand.ts index 594fcbd3bf8a7..1ada1d4a8491a 100644 --- a/clients/client-lakeformation/src/commands/ListDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/ListDataCellsFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { ListDataCellsFilterRequest, ListDataCellsFilterResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { ListDataCellsFilterRequest, ListDataCellsFilterResponse } from "../models/models_0"; import { ListDataCellsFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/ListLFTagExpressionsCommand.ts b/clients/client-lakeformation/src/commands/ListLFTagExpressionsCommand.ts index d917cd0624228..7bf88a1e99d2e 100644 --- a/clients/client-lakeformation/src/commands/ListLFTagExpressionsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListLFTagExpressionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { ListLFTagExpressionsRequest, ListLFTagExpressionsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { ListLFTagExpressionsRequest, ListLFTagExpressionsResponse } from "../models/models_0"; import { ListLFTagExpressions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/ListLFTagsCommand.ts b/clients/client-lakeformation/src/commands/ListLFTagsCommand.ts index 76e897ca3ad51..1e95834dc5580 100644 --- a/clients/client-lakeformation/src/commands/ListLFTagsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListLFTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { ListLFTagsRequest, ListLFTagsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { ListLFTagsRequest, ListLFTagsResponse } from "../models/models_0"; import { ListLFTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/ListLakeFormationOptInsCommand.ts b/clients/client-lakeformation/src/commands/ListLakeFormationOptInsCommand.ts index f67221a4b4f04..0d9159d562a32 100644 --- a/clients/client-lakeformation/src/commands/ListLakeFormationOptInsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListLakeFormationOptInsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { ListLakeFormationOptInsRequest, ListLakeFormationOptInsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { ListLakeFormationOptInsRequest, ListLakeFormationOptInsResponse } from "../models/models_0"; import { ListLakeFormationOptIns } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/ListPermissionsCommand.ts b/clients/client-lakeformation/src/commands/ListPermissionsCommand.ts index 7b14c1f0197cb..fd28a57b56c52 100644 --- a/clients/client-lakeformation/src/commands/ListPermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0"; import { ListPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/ListResourcesCommand.ts b/clients/client-lakeformation/src/commands/ListResourcesCommand.ts index d4f67965e185d..42de0b30b87d5 100644 --- a/clients/client-lakeformation/src/commands/ListResourcesCommand.ts +++ b/clients/client-lakeformation/src/commands/ListResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { ListResourcesRequest, ListResourcesResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { ListResourcesRequest, ListResourcesResponse } from "../models/models_0"; import { ListResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/ListTableStorageOptimizersCommand.ts b/clients/client-lakeformation/src/commands/ListTableStorageOptimizersCommand.ts index 070fbdbf67382..59774eb7ca9e0 100644 --- a/clients/client-lakeformation/src/commands/ListTableStorageOptimizersCommand.ts +++ b/clients/client-lakeformation/src/commands/ListTableStorageOptimizersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { ListTableStorageOptimizersRequest, ListTableStorageOptimizersResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { ListTableStorageOptimizersRequest, ListTableStorageOptimizersResponse } from "../models/models_0"; import { ListTableStorageOptimizers } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/ListTransactionsCommand.ts b/clients/client-lakeformation/src/commands/ListTransactionsCommand.ts index ccc453bbad436..823f5a6da05e6 100644 --- a/clients/client-lakeformation/src/commands/ListTransactionsCommand.ts +++ b/clients/client-lakeformation/src/commands/ListTransactionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { ListTransactionsRequest, ListTransactionsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { ListTransactionsRequest, ListTransactionsResponse } from "../models/models_0"; import { ListTransactions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/PutDataLakeSettingsCommand.ts b/clients/client-lakeformation/src/commands/PutDataLakeSettingsCommand.ts index 601a0894dbaaf..ac08e1668df60 100644 --- a/clients/client-lakeformation/src/commands/PutDataLakeSettingsCommand.ts +++ b/clients/client-lakeformation/src/commands/PutDataLakeSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { PutDataLakeSettingsRequest, PutDataLakeSettingsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { PutDataLakeSettingsRequest, PutDataLakeSettingsResponse } from "../models/models_0"; import { PutDataLakeSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/RegisterResourceCommand.ts b/clients/client-lakeformation/src/commands/RegisterResourceCommand.ts index 975aae529bf73..7a341d04de509 100644 --- a/clients/client-lakeformation/src/commands/RegisterResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/RegisterResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { RegisterResourceRequest, RegisterResourceResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { RegisterResourceRequest, RegisterResourceResponse } from "../models/models_0"; import { RegisterResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/RemoveLFTagsFromResourceCommand.ts b/clients/client-lakeformation/src/commands/RemoveLFTagsFromResourceCommand.ts index 413c30e4e2d92..1e77e12fead6c 100644 --- a/clients/client-lakeformation/src/commands/RemoveLFTagsFromResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/RemoveLFTagsFromResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { RemoveLFTagsFromResourceRequest, RemoveLFTagsFromResourceResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { RemoveLFTagsFromResourceRequest, RemoveLFTagsFromResourceResponse } from "../models/models_0"; import { RemoveLFTagsFromResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/RevokePermissionsCommand.ts b/clients/client-lakeformation/src/commands/RevokePermissionsCommand.ts index 0803eebc2b8da..f95398648dbd5 100644 --- a/clients/client-lakeformation/src/commands/RevokePermissionsCommand.ts +++ b/clients/client-lakeformation/src/commands/RevokePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { RevokePermissionsRequest, RevokePermissionsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { RevokePermissionsRequest, RevokePermissionsResponse } from "../models/models_0"; import { RevokePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/SearchDatabasesByLFTagsCommand.ts b/clients/client-lakeformation/src/commands/SearchDatabasesByLFTagsCommand.ts index 114a790b150ea..dc58f60b4cb6e 100644 --- a/clients/client-lakeformation/src/commands/SearchDatabasesByLFTagsCommand.ts +++ b/clients/client-lakeformation/src/commands/SearchDatabasesByLFTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { SearchDatabasesByLFTagsRequest, SearchDatabasesByLFTagsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { SearchDatabasesByLFTagsRequest, SearchDatabasesByLFTagsResponse } from "../models/models_0"; import { SearchDatabasesByLFTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/SearchTablesByLFTagsCommand.ts b/clients/client-lakeformation/src/commands/SearchTablesByLFTagsCommand.ts index 5ffd83340d47a..32537026bf23f 100644 --- a/clients/client-lakeformation/src/commands/SearchTablesByLFTagsCommand.ts +++ b/clients/client-lakeformation/src/commands/SearchTablesByLFTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { SearchTablesByLFTagsRequest, SearchTablesByLFTagsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { SearchTablesByLFTagsRequest, SearchTablesByLFTagsResponse } from "../models/models_0"; import { SearchTablesByLFTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/StartQueryPlanningCommand.ts b/clients/client-lakeformation/src/commands/StartQueryPlanningCommand.ts index face969aa775b..eb541cd109e0f 100644 --- a/clients/client-lakeformation/src/commands/StartQueryPlanningCommand.ts +++ b/clients/client-lakeformation/src/commands/StartQueryPlanningCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { StartQueryPlanningRequest, StartQueryPlanningResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { StartQueryPlanningRequest, StartQueryPlanningResponse } from "../models/models_0"; import { StartQueryPlanning } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/StartTransactionCommand.ts b/clients/client-lakeformation/src/commands/StartTransactionCommand.ts index aa3216b9c49bc..daaad96cc1e36 100644 --- a/clients/client-lakeformation/src/commands/StartTransactionCommand.ts +++ b/clients/client-lakeformation/src/commands/StartTransactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { StartTransactionRequest, StartTransactionResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { StartTransactionRequest, StartTransactionResponse } from "../models/models_0"; import { StartTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/UpdateDataCellsFilterCommand.ts b/clients/client-lakeformation/src/commands/UpdateDataCellsFilterCommand.ts index 2fe4ef3c45006..38bdb54631371 100644 --- a/clients/client-lakeformation/src/commands/UpdateDataCellsFilterCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateDataCellsFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { UpdateDataCellsFilterRequest, UpdateDataCellsFilterResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { UpdateDataCellsFilterRequest, UpdateDataCellsFilterResponse } from "../models/models_0"; import { UpdateDataCellsFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/UpdateLFTagCommand.ts b/clients/client-lakeformation/src/commands/UpdateLFTagCommand.ts index fdeb276593b39..eaa39752b03f1 100644 --- a/clients/client-lakeformation/src/commands/UpdateLFTagCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateLFTagCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { UpdateLFTagRequest, UpdateLFTagResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { UpdateLFTagRequest, UpdateLFTagResponse } from "../models/models_0"; import { UpdateLFTag } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/UpdateLFTagExpressionCommand.ts b/clients/client-lakeformation/src/commands/UpdateLFTagExpressionCommand.ts index bc0d33bc6cb9e..5b2dbf00102ed 100644 --- a/clients/client-lakeformation/src/commands/UpdateLFTagExpressionCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateLFTagExpressionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { UpdateLFTagExpressionRequest, UpdateLFTagExpressionResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { UpdateLFTagExpressionRequest, UpdateLFTagExpressionResponse } from "../models/models_0"; import { UpdateLFTagExpression } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.ts b/clients/client-lakeformation/src/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.ts index 1473881bbdeac..153af766fcb8b 100644 --- a/clients/client-lakeformation/src/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateLakeFormationIdentityCenterConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { UpdateLakeFormationIdentityCenterConfigurationRequest, UpdateLakeFormationIdentityCenterConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-lakeformation/src/commands/UpdateResourceCommand.ts b/clients/client-lakeformation/src/commands/UpdateResourceCommand.ts index 8fac311da922c..42949f20cadb6 100644 --- a/clients/client-lakeformation/src/commands/UpdateResourceCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { UpdateResourceRequest, UpdateResourceResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { UpdateResourceRequest, UpdateResourceResponse } from "../models/models_0"; import { UpdateResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/UpdateTableObjectsCommand.ts b/clients/client-lakeformation/src/commands/UpdateTableObjectsCommand.ts index 6ecb66be4543c..27051d3231e90 100644 --- a/clients/client-lakeformation/src/commands/UpdateTableObjectsCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateTableObjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { UpdateTableObjectsRequest, UpdateTableObjectsResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { UpdateTableObjectsRequest, UpdateTableObjectsResponse } from "../models/models_0"; import { UpdateTableObjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/commands/UpdateTableStorageOptimizerCommand.ts b/clients/client-lakeformation/src/commands/UpdateTableStorageOptimizerCommand.ts index 75943f7d92d69..28e4cd046948e 100644 --- a/clients/client-lakeformation/src/commands/UpdateTableStorageOptimizerCommand.ts +++ b/clients/client-lakeformation/src/commands/UpdateTableStorageOptimizerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; -import { UpdateTableStorageOptimizerRequest, UpdateTableStorageOptimizerResponse } from "../models/models_0"; +import type { LakeFormationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LakeFormationClient"; +import type { UpdateTableStorageOptimizerRequest, UpdateTableStorageOptimizerResponse } from "../models/models_0"; import { UpdateTableStorageOptimizer } from "../schemas/schemas_0"; /** diff --git a/clients/client-lakeformation/src/endpoint/EndpointParameters.ts b/clients/client-lakeformation/src/endpoint/EndpointParameters.ts index 01f4c329d8d4d..a6f36406f2e7e 100644 --- a/clients/client-lakeformation/src/endpoint/EndpointParameters.ts +++ b/clients/client-lakeformation/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-lakeformation/src/endpoint/endpointResolver.ts b/clients/client-lakeformation/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-lakeformation/src/endpoint/endpointResolver.ts +++ b/clients/client-lakeformation/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-lakeformation/src/extensionConfiguration.ts b/clients/client-lakeformation/src/extensionConfiguration.ts index 4ab0a0010db6e..ff9a1dd7d4180 100644 --- a/clients/client-lakeformation/src/extensionConfiguration.ts +++ b/clients/client-lakeformation/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-lakeformation/src/models/LakeFormationServiceException.ts b/clients/client-lakeformation/src/models/LakeFormationServiceException.ts index b5b5928d2f582..8ddef251e4ab7 100644 --- a/clients/client-lakeformation/src/models/LakeFormationServiceException.ts +++ b/clients/client-lakeformation/src/models/LakeFormationServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-lakeformation/src/models/errors.ts b/clients/client-lakeformation/src/models/errors.ts index f639be0d4431c..15007d344d4a0 100644 --- a/clients/client-lakeformation/src/models/errors.ts +++ b/clients/client-lakeformation/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LakeFormationServiceException as __BaseException } from "./LakeFormationServiceException"; diff --git a/clients/client-lakeformation/src/pagination/GetEffectivePermissionsForPathPaginator.ts b/clients/client-lakeformation/src/pagination/GetEffectivePermissionsForPathPaginator.ts index 54f79411bc76a..0e0881fa49c27 100644 --- a/clients/client-lakeformation/src/pagination/GetEffectivePermissionsForPathPaginator.ts +++ b/clients/client-lakeformation/src/pagination/GetEffectivePermissionsForPathPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetEffectivePermissionsForPathCommand, diff --git a/clients/client-lakeformation/src/pagination/GetTableObjectsPaginator.ts b/clients/client-lakeformation/src/pagination/GetTableObjectsPaginator.ts index ea8f40db5050c..7df42831d80f8 100644 --- a/clients/client-lakeformation/src/pagination/GetTableObjectsPaginator.ts +++ b/clients/client-lakeformation/src/pagination/GetTableObjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTableObjectsCommand, diff --git a/clients/client-lakeformation/src/pagination/GetWorkUnitsPaginator.ts b/clients/client-lakeformation/src/pagination/GetWorkUnitsPaginator.ts index 01b5ba564988d..163a862b1f10a 100644 --- a/clients/client-lakeformation/src/pagination/GetWorkUnitsPaginator.ts +++ b/clients/client-lakeformation/src/pagination/GetWorkUnitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetWorkUnitsCommand, diff --git a/clients/client-lakeformation/src/pagination/Interfaces.ts b/clients/client-lakeformation/src/pagination/Interfaces.ts index 224ddde22f203..aeeb03e24811a 100644 --- a/clients/client-lakeformation/src/pagination/Interfaces.ts +++ b/clients/client-lakeformation/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { LakeFormationClient } from "../LakeFormationClient"; diff --git a/clients/client-lakeformation/src/pagination/ListDataCellsFilterPaginator.ts b/clients/client-lakeformation/src/pagination/ListDataCellsFilterPaginator.ts index 27db88675277e..d17ef34956649 100644 --- a/clients/client-lakeformation/src/pagination/ListDataCellsFilterPaginator.ts +++ b/clients/client-lakeformation/src/pagination/ListDataCellsFilterPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataCellsFilterCommand, diff --git a/clients/client-lakeformation/src/pagination/ListLFTagExpressionsPaginator.ts b/clients/client-lakeformation/src/pagination/ListLFTagExpressionsPaginator.ts index 74301a3e93f90..f794b4d5be56d 100644 --- a/clients/client-lakeformation/src/pagination/ListLFTagExpressionsPaginator.ts +++ b/clients/client-lakeformation/src/pagination/ListLFTagExpressionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLFTagExpressionsCommand, diff --git a/clients/client-lakeformation/src/pagination/ListLFTagsPaginator.ts b/clients/client-lakeformation/src/pagination/ListLFTagsPaginator.ts index eab7c208d79ef..ba75cb0bec3de 100644 --- a/clients/client-lakeformation/src/pagination/ListLFTagsPaginator.ts +++ b/clients/client-lakeformation/src/pagination/ListLFTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLFTagsCommand, ListLFTagsCommandInput, ListLFTagsCommandOutput } from "../commands/ListLFTagsCommand"; import { LakeFormationClient } from "../LakeFormationClient"; diff --git a/clients/client-lakeformation/src/pagination/ListLakeFormationOptInsPaginator.ts b/clients/client-lakeformation/src/pagination/ListLakeFormationOptInsPaginator.ts index 259ff99871849..ab358f2417c08 100644 --- a/clients/client-lakeformation/src/pagination/ListLakeFormationOptInsPaginator.ts +++ b/clients/client-lakeformation/src/pagination/ListLakeFormationOptInsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLakeFormationOptInsCommand, diff --git a/clients/client-lakeformation/src/pagination/ListPermissionsPaginator.ts b/clients/client-lakeformation/src/pagination/ListPermissionsPaginator.ts index 42d6ca369a7ad..f337d0eb45f3c 100644 --- a/clients/client-lakeformation/src/pagination/ListPermissionsPaginator.ts +++ b/clients/client-lakeformation/src/pagination/ListPermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPermissionsCommand, diff --git a/clients/client-lakeformation/src/pagination/ListResourcesPaginator.ts b/clients/client-lakeformation/src/pagination/ListResourcesPaginator.ts index ceff8a824ca61..2bc1513e61b7b 100644 --- a/clients/client-lakeformation/src/pagination/ListResourcesPaginator.ts +++ b/clients/client-lakeformation/src/pagination/ListResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourcesCommand, diff --git a/clients/client-lakeformation/src/pagination/ListTableStorageOptimizersPaginator.ts b/clients/client-lakeformation/src/pagination/ListTableStorageOptimizersPaginator.ts index 0596847c621ee..06c4f68cf5262 100644 --- a/clients/client-lakeformation/src/pagination/ListTableStorageOptimizersPaginator.ts +++ b/clients/client-lakeformation/src/pagination/ListTableStorageOptimizersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTableStorageOptimizersCommand, diff --git a/clients/client-lakeformation/src/pagination/ListTransactionsPaginator.ts b/clients/client-lakeformation/src/pagination/ListTransactionsPaginator.ts index ac9d7d463ebaf..a7926f68ea749 100644 --- a/clients/client-lakeformation/src/pagination/ListTransactionsPaginator.ts +++ b/clients/client-lakeformation/src/pagination/ListTransactionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTransactionsCommand, diff --git a/clients/client-lakeformation/src/pagination/SearchDatabasesByLFTagsPaginator.ts b/clients/client-lakeformation/src/pagination/SearchDatabasesByLFTagsPaginator.ts index 94d9f88f7ffc2..3e011ae7164d9 100644 --- a/clients/client-lakeformation/src/pagination/SearchDatabasesByLFTagsPaginator.ts +++ b/clients/client-lakeformation/src/pagination/SearchDatabasesByLFTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchDatabasesByLFTagsCommand, diff --git a/clients/client-lakeformation/src/pagination/SearchTablesByLFTagsPaginator.ts b/clients/client-lakeformation/src/pagination/SearchTablesByLFTagsPaginator.ts index c9e8f9d9b75a5..9e45a88f6bff5 100644 --- a/clients/client-lakeformation/src/pagination/SearchTablesByLFTagsPaginator.ts +++ b/clients/client-lakeformation/src/pagination/SearchTablesByLFTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchTablesByLFTagsCommand, diff --git a/clients/client-lakeformation/src/runtimeConfig.browser.ts b/clients/client-lakeformation/src/runtimeConfig.browser.ts index f50b833e117fa..9482500fb932a 100644 --- a/clients/client-lakeformation/src/runtimeConfig.browser.ts +++ b/clients/client-lakeformation/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LakeFormationClientConfig } from "./LakeFormationClient"; + +import type { LakeFormationClientConfig } from "./LakeFormationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-lakeformation/src/runtimeConfig.native.ts b/clients/client-lakeformation/src/runtimeConfig.native.ts index 3f4b3ca20f47c..525c159d4737c 100644 --- a/clients/client-lakeformation/src/runtimeConfig.native.ts +++ b/clients/client-lakeformation/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LakeFormationClientConfig } from "./LakeFormationClient"; +import type { LakeFormationClientConfig } from "./LakeFormationClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-lakeformation/src/runtimeConfig.shared.ts b/clients/client-lakeformation/src/runtimeConfig.shared.ts index 8ff6827241969..1c1dd9b11aaac 100644 --- a/clients/client-lakeformation/src/runtimeConfig.shared.ts +++ b/clients/client-lakeformation/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLakeFormationHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LakeFormationClientConfig } from "./LakeFormationClient"; +import type { LakeFormationClientConfig } from "./LakeFormationClient"; /** * @internal diff --git a/clients/client-lakeformation/src/runtimeConfig.ts b/clients/client-lakeformation/src/runtimeConfig.ts index c09d8c47dcc09..45e8d20ea0dee 100644 --- a/clients/client-lakeformation/src/runtimeConfig.ts +++ b/clients/client-lakeformation/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LakeFormationClientConfig } from "./LakeFormationClient"; + +import type { LakeFormationClientConfig } from "./LakeFormationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-lakeformation/src/runtimeExtensions.ts b/clients/client-lakeformation/src/runtimeExtensions.ts index 6d046325e5e8d..f0cd934101797 100644 --- a/clients/client-lakeformation/src/runtimeExtensions.ts +++ b/clients/client-lakeformation/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LakeFormationExtensionConfiguration } from "./extensionConfiguration"; +import type { LakeFormationExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-lakeformation/src/schemas/schemas_0.ts b/clients/client-lakeformation/src/schemas/schemas_0.ts index e939148128704..b2116078e311c 100644 --- a/clients/client-lakeformation/src/schemas/schemas_0.ts +++ b/clients/client-lakeformation/src/schemas/schemas_0.ts @@ -432,7 +432,7 @@ const n0 = "com.amazonaws.lakeformation"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-lambda/package.json b/clients/client-lambda/package.json index 81b0c29fa42b6..45c04837776cf 100644 --- a/clients/client-lambda/package.json +++ b/clients/client-lambda/package.json @@ -32,7 +32,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -40,21 +40,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-lambda/src/Lambda.ts b/clients/client-lambda/src/Lambda.ts index 9e2c18cce10a1..f87f923a1687d 100644 --- a/clients/client-lambda/src/Lambda.ts +++ b/clients/client-lambda/src/Lambda.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddLayerVersionPermissionCommand, @@ -334,7 +334,7 @@ import { UpdateFunctionUrlConfigCommandInput, UpdateFunctionUrlConfigCommandOutput, } from "./commands/UpdateFunctionUrlConfigCommand"; -import { LambdaClient, LambdaClientConfig } from "./LambdaClient"; +import { LambdaClient } from "./LambdaClient"; const commands = { AddLayerVersionPermissionCommand, diff --git a/clients/client-lambda/src/LambdaClient.ts b/clients/client-lambda/src/LambdaClient.ts index 3bc425b327147..8b7fe32ee3f74 100644 --- a/clients/client-lambda/src/LambdaClient.ts +++ b/clients/client-lambda/src/LambdaClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLambdaHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -302,7 +311,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-lambda/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-lambda/src/auth/httpAuthExtensionConfiguration.ts index a2a621b853d11..8d3c8f951443a 100644 --- a/clients/client-lambda/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-lambda/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LambdaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LambdaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-lambda/src/auth/httpAuthSchemeProvider.ts b/clients/client-lambda/src/auth/httpAuthSchemeProvider.ts index 7677eacb2e0f4..4858ec376a112 100644 --- a/clients/client-lambda/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-lambda/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LambdaClientConfig, LambdaClientResolvedConfig } from "../LambdaClient"; +import { type LambdaClientResolvedConfig, LambdaClientConfig } from "../LambdaClient"; /** * @internal diff --git a/clients/client-lambda/src/commands/AddLayerVersionPermissionCommand.ts b/clients/client-lambda/src/commands/AddLayerVersionPermissionCommand.ts index ba9f4a283836f..4f5453bbc1b54 100644 --- a/clients/client-lambda/src/commands/AddLayerVersionPermissionCommand.ts +++ b/clients/client-lambda/src/commands/AddLayerVersionPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { AddLayerVersionPermissionRequest, AddLayerVersionPermissionResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { AddLayerVersionPermissionRequest, AddLayerVersionPermissionResponse } from "../models/models_0"; import { AddLayerVersionPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/AddPermissionCommand.ts b/clients/client-lambda/src/commands/AddPermissionCommand.ts index e7f4c51520864..0ec5545d2946c 100644 --- a/clients/client-lambda/src/commands/AddPermissionCommand.ts +++ b/clients/client-lambda/src/commands/AddPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { AddPermissionRequest, AddPermissionResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { AddPermissionRequest, AddPermissionResponse } from "../models/models_0"; import { AddPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/CreateAliasCommand.ts b/clients/client-lambda/src/commands/CreateAliasCommand.ts index 259cc8dc9ab31..689128a08c769 100644 --- a/clients/client-lambda/src/commands/CreateAliasCommand.ts +++ b/clients/client-lambda/src/commands/CreateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { AliasConfiguration, CreateAliasRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { AliasConfiguration, CreateAliasRequest } from "../models/models_0"; import { CreateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/CreateCapacityProviderCommand.ts b/clients/client-lambda/src/commands/CreateCapacityProviderCommand.ts index ac09d2cb6bb92..cc373e7779e67 100644 --- a/clients/client-lambda/src/commands/CreateCapacityProviderCommand.ts +++ b/clients/client-lambda/src/commands/CreateCapacityProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { CreateCapacityProviderRequest, CreateCapacityProviderResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { CreateCapacityProviderRequest, CreateCapacityProviderResponse } from "../models/models_0"; import { CreateCapacityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/CreateCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/CreateCodeSigningConfigCommand.ts index 926b4647e012b..f01df5ba68b9c 100644 --- a/clients/client-lambda/src/commands/CreateCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/CreateCodeSigningConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { CreateCodeSigningConfigRequest, CreateCodeSigningConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { CreateCodeSigningConfigRequest, CreateCodeSigningConfigResponse } from "../models/models_0"; import { CreateCodeSigningConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/CreateEventSourceMappingCommand.ts b/clients/client-lambda/src/commands/CreateEventSourceMappingCommand.ts index 644c2ed6f8f9d..3b3506671fc50 100644 --- a/clients/client-lambda/src/commands/CreateEventSourceMappingCommand.ts +++ b/clients/client-lambda/src/commands/CreateEventSourceMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { CreateEventSourceMappingRequest, EventSourceMappingConfiguration } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { CreateEventSourceMappingRequest, EventSourceMappingConfiguration } from "../models/models_0"; import { CreateEventSourceMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/CreateFunctionCommand.ts b/clients/client-lambda/src/commands/CreateFunctionCommand.ts index ddfe7118b32ba..845cdf5047d2b 100644 --- a/clients/client-lambda/src/commands/CreateFunctionCommand.ts +++ b/clients/client-lambda/src/commands/CreateFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { CreateFunctionRequest, FunctionConfiguration } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { CreateFunctionRequest, FunctionConfiguration } from "../models/models_0"; import { CreateFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/CreateFunctionUrlConfigCommand.ts b/clients/client-lambda/src/commands/CreateFunctionUrlConfigCommand.ts index 010d11a8c3510..15d6357df4a51 100644 --- a/clients/client-lambda/src/commands/CreateFunctionUrlConfigCommand.ts +++ b/clients/client-lambda/src/commands/CreateFunctionUrlConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { CreateFunctionUrlConfigRequest, CreateFunctionUrlConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { CreateFunctionUrlConfigRequest, CreateFunctionUrlConfigResponse } from "../models/models_0"; import { CreateFunctionUrlConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteAliasCommand.ts b/clients/client-lambda/src/commands/DeleteAliasCommand.ts index e1479fe8a7f38..d365aafeac9f8 100644 --- a/clients/client-lambda/src/commands/DeleteAliasCommand.ts +++ b/clients/client-lambda/src/commands/DeleteAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteAliasRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteAliasRequest } from "../models/models_0"; import { DeleteAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteCapacityProviderCommand.ts b/clients/client-lambda/src/commands/DeleteCapacityProviderCommand.ts index 0cc3b1609ed3c..f5118559d9494 100644 --- a/clients/client-lambda/src/commands/DeleteCapacityProviderCommand.ts +++ b/clients/client-lambda/src/commands/DeleteCapacityProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteCapacityProviderRequest, DeleteCapacityProviderResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteCapacityProviderRequest, DeleteCapacityProviderResponse } from "../models/models_0"; import { DeleteCapacityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/DeleteCodeSigningConfigCommand.ts index 13ef9e9ab25dd..0d6590677ac33 100644 --- a/clients/client-lambda/src/commands/DeleteCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteCodeSigningConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteCodeSigningConfigRequest, DeleteCodeSigningConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteCodeSigningConfigRequest, DeleteCodeSigningConfigResponse } from "../models/models_0"; import { DeleteCodeSigningConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteEventSourceMappingCommand.ts b/clients/client-lambda/src/commands/DeleteEventSourceMappingCommand.ts index d053016114847..f2e088df777ac 100644 --- a/clients/client-lambda/src/commands/DeleteEventSourceMappingCommand.ts +++ b/clients/client-lambda/src/commands/DeleteEventSourceMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteEventSourceMappingRequest, EventSourceMappingConfiguration } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteEventSourceMappingRequest, EventSourceMappingConfiguration } from "../models/models_0"; import { DeleteEventSourceMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteFunctionCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionCodeSigningConfigCommand.ts index d716fb3f54ea3..ae33be15de730 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionCodeSigningConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteFunctionCodeSigningConfigRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteFunctionCodeSigningConfigRequest } from "../models/models_0"; import { DeleteFunctionCodeSigningConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteFunctionCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionCommand.ts index 45df553f42eca..cd9f36b611952 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteFunctionRequest, DeleteFunctionResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteFunctionRequest, DeleteFunctionResponse } from "../models/models_0"; import { DeleteFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteFunctionConcurrencyCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionConcurrencyCommand.ts index 12dbb54a6e3f9..e06d49f2c112e 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionConcurrencyCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionConcurrencyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteFunctionConcurrencyRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteFunctionConcurrencyRequest } from "../models/models_0"; import { DeleteFunctionConcurrency } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteFunctionEventInvokeConfigCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionEventInvokeConfigCommand.ts index c82395fae3cb5..95fa3c2402d40 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionEventInvokeConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionEventInvokeConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteFunctionEventInvokeConfigRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteFunctionEventInvokeConfigRequest } from "../models/models_0"; import { DeleteFunctionEventInvokeConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteFunctionUrlConfigCommand.ts b/clients/client-lambda/src/commands/DeleteFunctionUrlConfigCommand.ts index 9a2315016eb12..97353c34a3589 100644 --- a/clients/client-lambda/src/commands/DeleteFunctionUrlConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteFunctionUrlConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteFunctionUrlConfigRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteFunctionUrlConfigRequest } from "../models/models_0"; import { DeleteFunctionUrlConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteLayerVersionCommand.ts b/clients/client-lambda/src/commands/DeleteLayerVersionCommand.ts index f4f7029ddd659..4404d170f62ee 100644 --- a/clients/client-lambda/src/commands/DeleteLayerVersionCommand.ts +++ b/clients/client-lambda/src/commands/DeleteLayerVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteLayerVersionRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteLayerVersionRequest } from "../models/models_0"; import { DeleteLayerVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/DeleteProvisionedConcurrencyConfigCommand.ts b/clients/client-lambda/src/commands/DeleteProvisionedConcurrencyConfigCommand.ts index 27fc8105bd2ba..8c8cbd1c75df5 100644 --- a/clients/client-lambda/src/commands/DeleteProvisionedConcurrencyConfigCommand.ts +++ b/clients/client-lambda/src/commands/DeleteProvisionedConcurrencyConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { DeleteProvisionedConcurrencyConfigRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { DeleteProvisionedConcurrencyConfigRequest } from "../models/models_0"; import { DeleteProvisionedConcurrencyConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetAccountSettingsCommand.ts b/clients/client-lambda/src/commands/GetAccountSettingsCommand.ts index 28b173b19fd98..0abed54f06c45 100644 --- a/clients/client-lambda/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-lambda/src/commands/GetAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0"; import { GetAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetAliasCommand.ts b/clients/client-lambda/src/commands/GetAliasCommand.ts index 3cb3f18f6db96..daafd0dbf7869 100644 --- a/clients/client-lambda/src/commands/GetAliasCommand.ts +++ b/clients/client-lambda/src/commands/GetAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { AliasConfiguration, GetAliasRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { AliasConfiguration, GetAliasRequest } from "../models/models_0"; import { GetAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetCapacityProviderCommand.ts b/clients/client-lambda/src/commands/GetCapacityProviderCommand.ts index 9bbfcff573520..dd7df5e41c9a1 100644 --- a/clients/client-lambda/src/commands/GetCapacityProviderCommand.ts +++ b/clients/client-lambda/src/commands/GetCapacityProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetCapacityProviderRequest, GetCapacityProviderResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetCapacityProviderRequest, GetCapacityProviderResponse } from "../models/models_0"; import { GetCapacityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/GetCodeSigningConfigCommand.ts index 50c2eedda6a55..b146f06c76b71 100644 --- a/clients/client-lambda/src/commands/GetCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetCodeSigningConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetCodeSigningConfigRequest, GetCodeSigningConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetCodeSigningConfigRequest, GetCodeSigningConfigResponse } from "../models/models_0"; import { GetCodeSigningConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetEventSourceMappingCommand.ts b/clients/client-lambda/src/commands/GetEventSourceMappingCommand.ts index f6b3bd9602c45..a327d8efef03d 100644 --- a/clients/client-lambda/src/commands/GetEventSourceMappingCommand.ts +++ b/clients/client-lambda/src/commands/GetEventSourceMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { EventSourceMappingConfiguration, GetEventSourceMappingRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { EventSourceMappingConfiguration, GetEventSourceMappingRequest } from "../models/models_0"; import { GetEventSourceMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetFunctionCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/GetFunctionCodeSigningConfigCommand.ts index 4dc0fe7e7454e..948b70528214f 100644 --- a/clients/client-lambda/src/commands/GetFunctionCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionCodeSigningConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetFunctionCodeSigningConfigRequest, GetFunctionCodeSigningConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetFunctionCodeSigningConfigRequest, GetFunctionCodeSigningConfigResponse } from "../models/models_0"; import { GetFunctionCodeSigningConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetFunctionCommand.ts b/clients/client-lambda/src/commands/GetFunctionCommand.ts index 25f06af07a79d..94640a5ae525e 100644 --- a/clients/client-lambda/src/commands/GetFunctionCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetFunctionRequest, GetFunctionResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetFunctionRequest, GetFunctionResponse } from "../models/models_0"; import { GetFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetFunctionConcurrencyCommand.ts b/clients/client-lambda/src/commands/GetFunctionConcurrencyCommand.ts index b8e5a182e973d..243df93fa1cd5 100644 --- a/clients/client-lambda/src/commands/GetFunctionConcurrencyCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionConcurrencyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetFunctionConcurrencyRequest, GetFunctionConcurrencyResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetFunctionConcurrencyRequest, GetFunctionConcurrencyResponse } from "../models/models_0"; import { GetFunctionConcurrency } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts b/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts index b22df44ba668c..921225fe270dc 100644 --- a/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { FunctionConfiguration, GetFunctionConfigurationRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { FunctionConfiguration, GetFunctionConfigurationRequest } from "../models/models_0"; import { GetFunctionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetFunctionEventInvokeConfigCommand.ts b/clients/client-lambda/src/commands/GetFunctionEventInvokeConfigCommand.ts index 22f5492f3c7e8..e9b932e7d28fb 100644 --- a/clients/client-lambda/src/commands/GetFunctionEventInvokeConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionEventInvokeConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { FunctionEventInvokeConfig, GetFunctionEventInvokeConfigRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { FunctionEventInvokeConfig, GetFunctionEventInvokeConfigRequest } from "../models/models_0"; import { GetFunctionEventInvokeConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetFunctionRecursionConfigCommand.ts b/clients/client-lambda/src/commands/GetFunctionRecursionConfigCommand.ts index 54c72fd16a1eb..0efe158eeb45a 100644 --- a/clients/client-lambda/src/commands/GetFunctionRecursionConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionRecursionConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetFunctionRecursionConfigRequest, GetFunctionRecursionConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetFunctionRecursionConfigRequest, GetFunctionRecursionConfigResponse } from "../models/models_0"; import { GetFunctionRecursionConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetFunctionScalingConfigCommand.ts b/clients/client-lambda/src/commands/GetFunctionScalingConfigCommand.ts index 297d71e79aa13..5ef1b1c5d4ae0 100644 --- a/clients/client-lambda/src/commands/GetFunctionScalingConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionScalingConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetFunctionScalingConfigRequest, GetFunctionScalingConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetFunctionScalingConfigRequest, GetFunctionScalingConfigResponse } from "../models/models_0"; import { GetFunctionScalingConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetFunctionUrlConfigCommand.ts b/clients/client-lambda/src/commands/GetFunctionUrlConfigCommand.ts index 9a453c381c9fa..22f3bc756213b 100644 --- a/clients/client-lambda/src/commands/GetFunctionUrlConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetFunctionUrlConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetFunctionUrlConfigRequest, GetFunctionUrlConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetFunctionUrlConfigRequest, GetFunctionUrlConfigResponse } from "../models/models_0"; import { GetFunctionUrlConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetLayerVersionByArnCommand.ts b/clients/client-lambda/src/commands/GetLayerVersionByArnCommand.ts index 093e2a41b99b7..33885908a4e57 100644 --- a/clients/client-lambda/src/commands/GetLayerVersionByArnCommand.ts +++ b/clients/client-lambda/src/commands/GetLayerVersionByArnCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetLayerVersionByArnRequest, GetLayerVersionResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetLayerVersionByArnRequest, GetLayerVersionResponse } from "../models/models_0"; import { GetLayerVersionByArn } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetLayerVersionCommand.ts b/clients/client-lambda/src/commands/GetLayerVersionCommand.ts index 44f251498fa88..2aa41c7e7392c 100644 --- a/clients/client-lambda/src/commands/GetLayerVersionCommand.ts +++ b/clients/client-lambda/src/commands/GetLayerVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetLayerVersionRequest, GetLayerVersionResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetLayerVersionRequest, GetLayerVersionResponse } from "../models/models_0"; import { GetLayerVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetLayerVersionPolicyCommand.ts b/clients/client-lambda/src/commands/GetLayerVersionPolicyCommand.ts index d2253b98c1452..192be0d6d3e93 100644 --- a/clients/client-lambda/src/commands/GetLayerVersionPolicyCommand.ts +++ b/clients/client-lambda/src/commands/GetLayerVersionPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetLayerVersionPolicyRequest, GetLayerVersionPolicyResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetLayerVersionPolicyRequest, GetLayerVersionPolicyResponse } from "../models/models_0"; import { GetLayerVersionPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetPolicyCommand.ts b/clients/client-lambda/src/commands/GetPolicyCommand.ts index 47e303cc684a9..9c595a1d64649 100644 --- a/clients/client-lambda/src/commands/GetPolicyCommand.ts +++ b/clients/client-lambda/src/commands/GetPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; import { GetPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetProvisionedConcurrencyConfigCommand.ts b/clients/client-lambda/src/commands/GetProvisionedConcurrencyConfigCommand.ts index 52e116ea5999e..15ca8a929f4a2 100644 --- a/clients/client-lambda/src/commands/GetProvisionedConcurrencyConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetProvisionedConcurrencyConfigCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetProvisionedConcurrencyConfigRequest, GetProvisionedConcurrencyConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { + GetProvisionedConcurrencyConfigRequest, + GetProvisionedConcurrencyConfigResponse, +} from "../models/models_0"; import { GetProvisionedConcurrencyConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/GetRuntimeManagementConfigCommand.ts b/clients/client-lambda/src/commands/GetRuntimeManagementConfigCommand.ts index d3d4307a7553e..bbc0751087344 100644 --- a/clients/client-lambda/src/commands/GetRuntimeManagementConfigCommand.ts +++ b/clients/client-lambda/src/commands/GetRuntimeManagementConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { GetRuntimeManagementConfigRequest, GetRuntimeManagementConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { GetRuntimeManagementConfigRequest, GetRuntimeManagementConfigResponse } from "../models/models_0"; import { GetRuntimeManagementConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/InvokeAsyncCommand.ts b/clients/client-lambda/src/commands/InvokeAsyncCommand.ts index 7c894a7091079..aad4fcd726911 100644 --- a/clients/client-lambda/src/commands/InvokeAsyncCommand.ts +++ b/clients/client-lambda/src/commands/InvokeAsyncCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { InvokeAsyncRequest, InvokeAsyncResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import { type InvokeAsyncResponse, InvokeAsyncRequest } from "../models/models_0"; import { InvokeAsync } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/InvokeCommand.ts b/clients/client-lambda/src/commands/InvokeCommand.ts index 98219c4989f58..91e22aa6adbf0 100644 --- a/clients/client-lambda/src/commands/InvokeCommand.ts +++ b/clients/client-lambda/src/commands/InvokeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; import { InvocationRequest, InvocationResponse } from "../models/models_0"; import { Invoke } from "../schemas/schemas_0"; diff --git a/clients/client-lambda/src/commands/InvokeWithResponseStreamCommand.ts b/clients/client-lambda/src/commands/InvokeWithResponseStreamCommand.ts index 171240b20107d..0a7a91e3b3a7d 100644 --- a/clients/client-lambda/src/commands/InvokeWithResponseStreamCommand.ts +++ b/clients/client-lambda/src/commands/InvokeWithResponseStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { InvokeWithResponseStreamRequest, InvokeWithResponseStreamResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import { type InvokeWithResponseStreamResponse, InvokeWithResponseStreamRequest } from "../models/models_0"; import { InvokeWithResponseStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListAliasesCommand.ts b/clients/client-lambda/src/commands/ListAliasesCommand.ts index 1b92976550e03..d3889293f86ec 100644 --- a/clients/client-lambda/src/commands/ListAliasesCommand.ts +++ b/clients/client-lambda/src/commands/ListAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListAliasesRequest, ListAliasesResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListAliasesRequest, ListAliasesResponse } from "../models/models_0"; import { ListAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListCapacityProvidersCommand.ts b/clients/client-lambda/src/commands/ListCapacityProvidersCommand.ts index d712a12d5d7f1..e944053aab5e3 100644 --- a/clients/client-lambda/src/commands/ListCapacityProvidersCommand.ts +++ b/clients/client-lambda/src/commands/ListCapacityProvidersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListCapacityProvidersRequest, ListCapacityProvidersResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListCapacityProvidersRequest, ListCapacityProvidersResponse } from "../models/models_0"; import { ListCapacityProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListCodeSigningConfigsCommand.ts b/clients/client-lambda/src/commands/ListCodeSigningConfigsCommand.ts index 8dd1063c5b583..99ce9aa7cffa3 100644 --- a/clients/client-lambda/src/commands/ListCodeSigningConfigsCommand.ts +++ b/clients/client-lambda/src/commands/ListCodeSigningConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListCodeSigningConfigsRequest, ListCodeSigningConfigsResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListCodeSigningConfigsRequest, ListCodeSigningConfigsResponse } from "../models/models_0"; import { ListCodeSigningConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListEventSourceMappingsCommand.ts b/clients/client-lambda/src/commands/ListEventSourceMappingsCommand.ts index cdb7d44a84cce..e721e71838110 100644 --- a/clients/client-lambda/src/commands/ListEventSourceMappingsCommand.ts +++ b/clients/client-lambda/src/commands/ListEventSourceMappingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListEventSourceMappingsRequest, ListEventSourceMappingsResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListEventSourceMappingsRequest, ListEventSourceMappingsResponse } from "../models/models_0"; import { ListEventSourceMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListFunctionEventInvokeConfigsCommand.ts b/clients/client-lambda/src/commands/ListFunctionEventInvokeConfigsCommand.ts index 8ce9f3eb80873..9bf068042246c 100644 --- a/clients/client-lambda/src/commands/ListFunctionEventInvokeConfigsCommand.ts +++ b/clients/client-lambda/src/commands/ListFunctionEventInvokeConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListFunctionEventInvokeConfigsRequest, ListFunctionEventInvokeConfigsResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListFunctionEventInvokeConfigsRequest, ListFunctionEventInvokeConfigsResponse } from "../models/models_0"; import { ListFunctionEventInvokeConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListFunctionUrlConfigsCommand.ts b/clients/client-lambda/src/commands/ListFunctionUrlConfigsCommand.ts index 123c54a91c464..ceb1ceec1f2e2 100644 --- a/clients/client-lambda/src/commands/ListFunctionUrlConfigsCommand.ts +++ b/clients/client-lambda/src/commands/ListFunctionUrlConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListFunctionUrlConfigsRequest, ListFunctionUrlConfigsResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListFunctionUrlConfigsRequest, ListFunctionUrlConfigsResponse } from "../models/models_0"; import { ListFunctionUrlConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListFunctionVersionsByCapacityProviderCommand.ts b/clients/client-lambda/src/commands/ListFunctionVersionsByCapacityProviderCommand.ts index 514062867dea9..441085ed12f3d 100644 --- a/clients/client-lambda/src/commands/ListFunctionVersionsByCapacityProviderCommand.ts +++ b/clients/client-lambda/src/commands/ListFunctionVersionsByCapacityProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListFunctionVersionsByCapacityProviderRequest, ListFunctionVersionsByCapacityProviderResponse, } from "../models/models_0"; diff --git a/clients/client-lambda/src/commands/ListFunctionsByCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/ListFunctionsByCodeSigningConfigCommand.ts index e39809f39aa16..b796676dba0b6 100644 --- a/clients/client-lambda/src/commands/ListFunctionsByCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/ListFunctionsByCodeSigningConfigCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListFunctionsByCodeSigningConfigRequest, ListFunctionsByCodeSigningConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { + ListFunctionsByCodeSigningConfigRequest, + ListFunctionsByCodeSigningConfigResponse, +} from "../models/models_0"; import { ListFunctionsByCodeSigningConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListFunctionsCommand.ts b/clients/client-lambda/src/commands/ListFunctionsCommand.ts index 8e999bb5e266c..7f4350b4afbac 100644 --- a/clients/client-lambda/src/commands/ListFunctionsCommand.ts +++ b/clients/client-lambda/src/commands/ListFunctionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListFunctionsRequest, ListFunctionsResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListFunctionsRequest, ListFunctionsResponse } from "../models/models_0"; import { ListFunctions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListLayerVersionsCommand.ts b/clients/client-lambda/src/commands/ListLayerVersionsCommand.ts index 89cebfc94bcb1..9aa5fdf86034c 100644 --- a/clients/client-lambda/src/commands/ListLayerVersionsCommand.ts +++ b/clients/client-lambda/src/commands/ListLayerVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListLayerVersionsRequest, ListLayerVersionsResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListLayerVersionsRequest, ListLayerVersionsResponse } from "../models/models_0"; import { ListLayerVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListLayersCommand.ts b/clients/client-lambda/src/commands/ListLayersCommand.ts index 13e8073be6acd..3451e7f0f3872 100644 --- a/clients/client-lambda/src/commands/ListLayersCommand.ts +++ b/clients/client-lambda/src/commands/ListLayersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListLayersRequest, ListLayersResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListLayersRequest, ListLayersResponse } from "../models/models_0"; import { ListLayers } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListProvisionedConcurrencyConfigsCommand.ts b/clients/client-lambda/src/commands/ListProvisionedConcurrencyConfigsCommand.ts index a88b3f10e3766..e4ce4df9d4a45 100644 --- a/clients/client-lambda/src/commands/ListProvisionedConcurrencyConfigsCommand.ts +++ b/clients/client-lambda/src/commands/ListProvisionedConcurrencyConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListProvisionedConcurrencyConfigsRequest, ListProvisionedConcurrencyConfigsResponse, } from "../models/models_0"; diff --git a/clients/client-lambda/src/commands/ListTagsCommand.ts b/clients/client-lambda/src/commands/ListTagsCommand.ts index 0f45e3b68af58..b65e4f3343918 100644 --- a/clients/client-lambda/src/commands/ListTagsCommand.ts +++ b/clients/client-lambda/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListTagsRequest, ListTagsResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListTagsRequest, ListTagsResponse } from "../models/models_0"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts b/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts index 11ea6f2b9123b..388b8d5ba595b 100644 --- a/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts +++ b/clients/client-lambda/src/commands/ListVersionsByFunctionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { ListVersionsByFunctionRequest, ListVersionsByFunctionResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { ListVersionsByFunctionRequest, ListVersionsByFunctionResponse } from "../models/models_0"; import { ListVersionsByFunction } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/PublishLayerVersionCommand.ts b/clients/client-lambda/src/commands/PublishLayerVersionCommand.ts index 149e95ca6fcab..377e0eadd8da8 100644 --- a/clients/client-lambda/src/commands/PublishLayerVersionCommand.ts +++ b/clients/client-lambda/src/commands/PublishLayerVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { PublishLayerVersionRequest, PublishLayerVersionResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { PublishLayerVersionRequest, PublishLayerVersionResponse } from "../models/models_0"; import { PublishLayerVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/PublishVersionCommand.ts b/clients/client-lambda/src/commands/PublishVersionCommand.ts index 4fc6c117937c5..d3aadbb3a663f 100644 --- a/clients/client-lambda/src/commands/PublishVersionCommand.ts +++ b/clients/client-lambda/src/commands/PublishVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { FunctionConfiguration, PublishVersionRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { FunctionConfiguration, PublishVersionRequest } from "../models/models_0"; import { PublishVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/PutFunctionCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/PutFunctionCodeSigningConfigCommand.ts index e48bc9c57dcaa..370e191c78761 100644 --- a/clients/client-lambda/src/commands/PutFunctionCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutFunctionCodeSigningConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { PutFunctionCodeSigningConfigRequest, PutFunctionCodeSigningConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { PutFunctionCodeSigningConfigRequest, PutFunctionCodeSigningConfigResponse } from "../models/models_0"; import { PutFunctionCodeSigningConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/PutFunctionConcurrencyCommand.ts b/clients/client-lambda/src/commands/PutFunctionConcurrencyCommand.ts index 1bff621cc23bf..1f82fd45297ba 100644 --- a/clients/client-lambda/src/commands/PutFunctionConcurrencyCommand.ts +++ b/clients/client-lambda/src/commands/PutFunctionConcurrencyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { Concurrency, PutFunctionConcurrencyRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { Concurrency, PutFunctionConcurrencyRequest } from "../models/models_0"; import { PutFunctionConcurrency } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/PutFunctionEventInvokeConfigCommand.ts b/clients/client-lambda/src/commands/PutFunctionEventInvokeConfigCommand.ts index abbb5e10d40d7..198a4612cbfb9 100644 --- a/clients/client-lambda/src/commands/PutFunctionEventInvokeConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutFunctionEventInvokeConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { FunctionEventInvokeConfig, PutFunctionEventInvokeConfigRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { FunctionEventInvokeConfig, PutFunctionEventInvokeConfigRequest } from "../models/models_0"; import { PutFunctionEventInvokeConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/PutFunctionRecursionConfigCommand.ts b/clients/client-lambda/src/commands/PutFunctionRecursionConfigCommand.ts index e8df61a9d9e4f..3a1f6e89cdd52 100644 --- a/clients/client-lambda/src/commands/PutFunctionRecursionConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutFunctionRecursionConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { PutFunctionRecursionConfigRequest, PutFunctionRecursionConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { PutFunctionRecursionConfigRequest, PutFunctionRecursionConfigResponse } from "../models/models_0"; import { PutFunctionRecursionConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/PutFunctionScalingConfigCommand.ts b/clients/client-lambda/src/commands/PutFunctionScalingConfigCommand.ts index 64f8e9772d230..6ae6b9f4b5095 100644 --- a/clients/client-lambda/src/commands/PutFunctionScalingConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutFunctionScalingConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { PutFunctionScalingConfigRequest, PutFunctionScalingConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { PutFunctionScalingConfigRequest, PutFunctionScalingConfigResponse } from "../models/models_0"; import { PutFunctionScalingConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/PutProvisionedConcurrencyConfigCommand.ts b/clients/client-lambda/src/commands/PutProvisionedConcurrencyConfigCommand.ts index 3edac86bed02c..3a34777bc8b48 100644 --- a/clients/client-lambda/src/commands/PutProvisionedConcurrencyConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutProvisionedConcurrencyConfigCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { PutProvisionedConcurrencyConfigRequest, PutProvisionedConcurrencyConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { + PutProvisionedConcurrencyConfigRequest, + PutProvisionedConcurrencyConfigResponse, +} from "../models/models_0"; import { PutProvisionedConcurrencyConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/PutRuntimeManagementConfigCommand.ts b/clients/client-lambda/src/commands/PutRuntimeManagementConfigCommand.ts index 990aed9d1e3c1..f16fe50d093a9 100644 --- a/clients/client-lambda/src/commands/PutRuntimeManagementConfigCommand.ts +++ b/clients/client-lambda/src/commands/PutRuntimeManagementConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { PutRuntimeManagementConfigRequest, PutRuntimeManagementConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { PutRuntimeManagementConfigRequest, PutRuntimeManagementConfigResponse } from "../models/models_0"; import { PutRuntimeManagementConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/RemoveLayerVersionPermissionCommand.ts b/clients/client-lambda/src/commands/RemoveLayerVersionPermissionCommand.ts index 2a0b863f3ec37..d9d93dcdf416a 100644 --- a/clients/client-lambda/src/commands/RemoveLayerVersionPermissionCommand.ts +++ b/clients/client-lambda/src/commands/RemoveLayerVersionPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { RemoveLayerVersionPermissionRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { RemoveLayerVersionPermissionRequest } from "../models/models_0"; import { RemoveLayerVersionPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/RemovePermissionCommand.ts b/clients/client-lambda/src/commands/RemovePermissionCommand.ts index a3d7374d6509e..beaad88e1c012 100644 --- a/clients/client-lambda/src/commands/RemovePermissionCommand.ts +++ b/clients/client-lambda/src/commands/RemovePermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { RemovePermissionRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { RemovePermissionRequest } from "../models/models_0"; import { RemovePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/TagResourceCommand.ts b/clients/client-lambda/src/commands/TagResourceCommand.ts index f9c95653e2942..5e265bfdca7e2 100644 --- a/clients/client-lambda/src/commands/TagResourceCommand.ts +++ b/clients/client-lambda/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { TagResourceRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/UntagResourceCommand.ts b/clients/client-lambda/src/commands/UntagResourceCommand.ts index 4dbf9a4aa016e..60a30e67b3ac0 100644 --- a/clients/client-lambda/src/commands/UntagResourceCommand.ts +++ b/clients/client-lambda/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { UntagResourceRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/UpdateAliasCommand.ts b/clients/client-lambda/src/commands/UpdateAliasCommand.ts index 4ff465b594191..fa62d79d7ed54 100644 --- a/clients/client-lambda/src/commands/UpdateAliasCommand.ts +++ b/clients/client-lambda/src/commands/UpdateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { AliasConfiguration, UpdateAliasRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { AliasConfiguration, UpdateAliasRequest } from "../models/models_0"; import { UpdateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/UpdateCapacityProviderCommand.ts b/clients/client-lambda/src/commands/UpdateCapacityProviderCommand.ts index af34b909e74fc..b368d2dbdc667 100644 --- a/clients/client-lambda/src/commands/UpdateCapacityProviderCommand.ts +++ b/clients/client-lambda/src/commands/UpdateCapacityProviderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { UpdateCapacityProviderRequest, UpdateCapacityProviderResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { UpdateCapacityProviderRequest, UpdateCapacityProviderResponse } from "../models/models_0"; import { UpdateCapacityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/UpdateCodeSigningConfigCommand.ts b/clients/client-lambda/src/commands/UpdateCodeSigningConfigCommand.ts index e17fda20c4076..c489fc0579a4c 100644 --- a/clients/client-lambda/src/commands/UpdateCodeSigningConfigCommand.ts +++ b/clients/client-lambda/src/commands/UpdateCodeSigningConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { UpdateCodeSigningConfigRequest, UpdateCodeSigningConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { UpdateCodeSigningConfigRequest, UpdateCodeSigningConfigResponse } from "../models/models_0"; import { UpdateCodeSigningConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/UpdateEventSourceMappingCommand.ts b/clients/client-lambda/src/commands/UpdateEventSourceMappingCommand.ts index bc3f4f68bd61d..94afab95f71df 100644 --- a/clients/client-lambda/src/commands/UpdateEventSourceMappingCommand.ts +++ b/clients/client-lambda/src/commands/UpdateEventSourceMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { EventSourceMappingConfiguration, UpdateEventSourceMappingRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { EventSourceMappingConfiguration, UpdateEventSourceMappingRequest } from "../models/models_0"; import { UpdateEventSourceMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts index efae3365856d7..25f6ac52278f8 100644 --- a/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts +++ b/clients/client-lambda/src/commands/UpdateFunctionCodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { FunctionConfiguration, UpdateFunctionCodeRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { FunctionConfiguration, UpdateFunctionCodeRequest } from "../models/models_0"; import { UpdateFunctionCode } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts index 8880559f66c38..71bc0a2725a69 100644 --- a/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts +++ b/clients/client-lambda/src/commands/UpdateFunctionConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { FunctionConfiguration, UpdateFunctionConfigurationRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { FunctionConfiguration, UpdateFunctionConfigurationRequest } from "../models/models_0"; import { UpdateFunctionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/UpdateFunctionEventInvokeConfigCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionEventInvokeConfigCommand.ts index 46786df58ae70..6a5ae73526af9 100644 --- a/clients/client-lambda/src/commands/UpdateFunctionEventInvokeConfigCommand.ts +++ b/clients/client-lambda/src/commands/UpdateFunctionEventInvokeConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { FunctionEventInvokeConfig, UpdateFunctionEventInvokeConfigRequest } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { FunctionEventInvokeConfig, UpdateFunctionEventInvokeConfigRequest } from "../models/models_0"; import { UpdateFunctionEventInvokeConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/commands/UpdateFunctionUrlConfigCommand.ts b/clients/client-lambda/src/commands/UpdateFunctionUrlConfigCommand.ts index f7f250ffe2443..9c65c66a2c7fd 100644 --- a/clients/client-lambda/src/commands/UpdateFunctionUrlConfigCommand.ts +++ b/clients/client-lambda/src/commands/UpdateFunctionUrlConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; -import { UpdateFunctionUrlConfigRequest, UpdateFunctionUrlConfigResponse } from "../models/models_0"; +import type { LambdaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LambdaClient"; +import type { UpdateFunctionUrlConfigRequest, UpdateFunctionUrlConfigResponse } from "../models/models_0"; import { UpdateFunctionUrlConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-lambda/src/endpoint/EndpointParameters.ts b/clients/client-lambda/src/endpoint/EndpointParameters.ts index fcdfd52d02be5..a5c63a152d3da 100644 --- a/clients/client-lambda/src/endpoint/EndpointParameters.ts +++ b/clients/client-lambda/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-lambda/src/endpoint/endpointResolver.ts b/clients/client-lambda/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-lambda/src/endpoint/endpointResolver.ts +++ b/clients/client-lambda/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-lambda/src/extensionConfiguration.ts b/clients/client-lambda/src/extensionConfiguration.ts index 0ac1682b93f5d..cef52707e0ef4 100644 --- a/clients/client-lambda/src/extensionConfiguration.ts +++ b/clients/client-lambda/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-lambda/src/models/LambdaServiceException.ts b/clients/client-lambda/src/models/LambdaServiceException.ts index 93e2521b9e478..cb9394571fd2d 100644 --- a/clients/client-lambda/src/models/LambdaServiceException.ts +++ b/clients/client-lambda/src/models/LambdaServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-lambda/src/models/errors.ts b/clients/client-lambda/src/models/errors.ts index 07b57cf5a04b0..df434d3161989 100644 --- a/clients/client-lambda/src/models/errors.ts +++ b/clients/client-lambda/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ThrottleReason } from "./enums"; import { LambdaServiceException as __BaseException } from "./LambdaServiceException"; diff --git a/clients/client-lambda/src/pagination/Interfaces.ts b/clients/client-lambda/src/pagination/Interfaces.ts index 022f6094eb951..14041e8d1a5f3 100644 --- a/clients/client-lambda/src/pagination/Interfaces.ts +++ b/clients/client-lambda/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { LambdaClient } from "../LambdaClient"; diff --git a/clients/client-lambda/src/pagination/ListAliasesPaginator.ts b/clients/client-lambda/src/pagination/ListAliasesPaginator.ts index 0a666a6d6cfbe..22fc2a8ce2589 100644 --- a/clients/client-lambda/src/pagination/ListAliasesPaginator.ts +++ b/clients/client-lambda/src/pagination/ListAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAliasesCommand, ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand"; import { LambdaClient } from "../LambdaClient"; diff --git a/clients/client-lambda/src/pagination/ListCapacityProvidersPaginator.ts b/clients/client-lambda/src/pagination/ListCapacityProvidersPaginator.ts index 771b70bc982f2..90d2a54d95b91 100644 --- a/clients/client-lambda/src/pagination/ListCapacityProvidersPaginator.ts +++ b/clients/client-lambda/src/pagination/ListCapacityProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCapacityProvidersCommand, diff --git a/clients/client-lambda/src/pagination/ListCodeSigningConfigsPaginator.ts b/clients/client-lambda/src/pagination/ListCodeSigningConfigsPaginator.ts index 724aa5405486f..f28371f83d3e7 100644 --- a/clients/client-lambda/src/pagination/ListCodeSigningConfigsPaginator.ts +++ b/clients/client-lambda/src/pagination/ListCodeSigningConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCodeSigningConfigsCommand, diff --git a/clients/client-lambda/src/pagination/ListEventSourceMappingsPaginator.ts b/clients/client-lambda/src/pagination/ListEventSourceMappingsPaginator.ts index 3e9e30459f980..80847eca25319 100644 --- a/clients/client-lambda/src/pagination/ListEventSourceMappingsPaginator.ts +++ b/clients/client-lambda/src/pagination/ListEventSourceMappingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventSourceMappingsCommand, diff --git a/clients/client-lambda/src/pagination/ListFunctionEventInvokeConfigsPaginator.ts b/clients/client-lambda/src/pagination/ListFunctionEventInvokeConfigsPaginator.ts index 22ad0f62d58ec..65b9cdf1f21cd 100644 --- a/clients/client-lambda/src/pagination/ListFunctionEventInvokeConfigsPaginator.ts +++ b/clients/client-lambda/src/pagination/ListFunctionEventInvokeConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFunctionEventInvokeConfigsCommand, diff --git a/clients/client-lambda/src/pagination/ListFunctionUrlConfigsPaginator.ts b/clients/client-lambda/src/pagination/ListFunctionUrlConfigsPaginator.ts index 73c8b39999416..59461df86b00d 100644 --- a/clients/client-lambda/src/pagination/ListFunctionUrlConfigsPaginator.ts +++ b/clients/client-lambda/src/pagination/ListFunctionUrlConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFunctionUrlConfigsCommand, diff --git a/clients/client-lambda/src/pagination/ListFunctionVersionsByCapacityProviderPaginator.ts b/clients/client-lambda/src/pagination/ListFunctionVersionsByCapacityProviderPaginator.ts index 5bc861c14b7a9..d55c896271dd0 100644 --- a/clients/client-lambda/src/pagination/ListFunctionVersionsByCapacityProviderPaginator.ts +++ b/clients/client-lambda/src/pagination/ListFunctionVersionsByCapacityProviderPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFunctionVersionsByCapacityProviderCommand, diff --git a/clients/client-lambda/src/pagination/ListFunctionsByCodeSigningConfigPaginator.ts b/clients/client-lambda/src/pagination/ListFunctionsByCodeSigningConfigPaginator.ts index c9adaf398e094..4c316aa21f5cd 100644 --- a/clients/client-lambda/src/pagination/ListFunctionsByCodeSigningConfigPaginator.ts +++ b/clients/client-lambda/src/pagination/ListFunctionsByCodeSigningConfigPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFunctionsByCodeSigningConfigCommand, diff --git a/clients/client-lambda/src/pagination/ListFunctionsPaginator.ts b/clients/client-lambda/src/pagination/ListFunctionsPaginator.ts index ead1ea818843b..245516660a69e 100644 --- a/clients/client-lambda/src/pagination/ListFunctionsPaginator.ts +++ b/clients/client-lambda/src/pagination/ListFunctionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFunctionsCommand, diff --git a/clients/client-lambda/src/pagination/ListLayerVersionsPaginator.ts b/clients/client-lambda/src/pagination/ListLayerVersionsPaginator.ts index 874f4eaf2b7fd..d32699aa8f4a8 100644 --- a/clients/client-lambda/src/pagination/ListLayerVersionsPaginator.ts +++ b/clients/client-lambda/src/pagination/ListLayerVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLayerVersionsCommand, diff --git a/clients/client-lambda/src/pagination/ListLayersPaginator.ts b/clients/client-lambda/src/pagination/ListLayersPaginator.ts index 335efadfc3f8a..0ab94f34c83b4 100644 --- a/clients/client-lambda/src/pagination/ListLayersPaginator.ts +++ b/clients/client-lambda/src/pagination/ListLayersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLayersCommand, ListLayersCommandInput, ListLayersCommandOutput } from "../commands/ListLayersCommand"; import { LambdaClient } from "../LambdaClient"; diff --git a/clients/client-lambda/src/pagination/ListProvisionedConcurrencyConfigsPaginator.ts b/clients/client-lambda/src/pagination/ListProvisionedConcurrencyConfigsPaginator.ts index dd2a5ad6424dd..452a8797cc12b 100644 --- a/clients/client-lambda/src/pagination/ListProvisionedConcurrencyConfigsPaginator.ts +++ b/clients/client-lambda/src/pagination/ListProvisionedConcurrencyConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProvisionedConcurrencyConfigsCommand, diff --git a/clients/client-lambda/src/pagination/ListVersionsByFunctionPaginator.ts b/clients/client-lambda/src/pagination/ListVersionsByFunctionPaginator.ts index c029c78939af8..3ff85a83f246d 100644 --- a/clients/client-lambda/src/pagination/ListVersionsByFunctionPaginator.ts +++ b/clients/client-lambda/src/pagination/ListVersionsByFunctionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVersionsByFunctionCommand, diff --git a/clients/client-lambda/src/runtimeConfig.browser.ts b/clients/client-lambda/src/runtimeConfig.browser.ts index 66610657316de..ee9de8df008c8 100644 --- a/clients/client-lambda/src/runtimeConfig.browser.ts +++ b/clients/client-lambda/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LambdaClientConfig } from "./LambdaClient"; + +import type { LambdaClientConfig } from "./LambdaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-lambda/src/runtimeConfig.native.ts b/clients/client-lambda/src/runtimeConfig.native.ts index 5ac3b2acc32cf..27e252554aec7 100644 --- a/clients/client-lambda/src/runtimeConfig.native.ts +++ b/clients/client-lambda/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LambdaClientConfig } from "./LambdaClient"; +import type { LambdaClientConfig } from "./LambdaClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-lambda/src/runtimeConfig.shared.ts b/clients/client-lambda/src/runtimeConfig.shared.ts index d82814010b6e6..1b2b3fa95abb5 100644 --- a/clients/client-lambda/src/runtimeConfig.shared.ts +++ b/clients/client-lambda/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLambdaHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LambdaClientConfig } from "./LambdaClient"; +import type { LambdaClientConfig } from "./LambdaClient"; /** * @internal diff --git a/clients/client-lambda/src/runtimeConfig.ts b/clients/client-lambda/src/runtimeConfig.ts index 50dbb4a296f7a..fefe4a6b492d2 100644 --- a/clients/client-lambda/src/runtimeConfig.ts +++ b/clients/client-lambda/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LambdaClientConfig } from "./LambdaClient"; + +import type { LambdaClientConfig } from "./LambdaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-lambda/src/runtimeExtensions.ts b/clients/client-lambda/src/runtimeExtensions.ts index 042b32905515a..39746c8cc6655 100644 --- a/clients/client-lambda/src/runtimeExtensions.ts +++ b/clients/client-lambda/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LambdaExtensionConfiguration } from "./extensionConfiguration"; +import type { LambdaExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-lambda/src/schemas/schemas_0.ts b/clients/client-lambda/src/schemas/schemas_0.ts index 6cbba5d47db02..e1f25833078cf 100644 --- a/clients/client-lambda/src/schemas/schemas_0.ts +++ b/clients/client-lambda/src/schemas/schemas_0.ts @@ -583,7 +583,7 @@ const n0 = "com.amazonaws.lambda"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-launch-wizard/package.json b/clients/client-launch-wizard/package.json index 05228cf3790e2..a2188526f1852 100644 --- a/clients/client-launch-wizard/package.json +++ b/clients/client-launch-wizard/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-launch-wizard/src/LaunchWizard.ts b/clients/client-launch-wizard/src/LaunchWizard.ts index c0288e178f395..50a7e0f497242 100644 --- a/clients/client-launch-wizard/src/LaunchWizard.ts +++ b/clients/client-launch-wizard/src/LaunchWizard.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateDeploymentCommand, @@ -54,7 +54,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { LaunchWizardClient, LaunchWizardClientConfig } from "./LaunchWizardClient"; +import { LaunchWizardClient } from "./LaunchWizardClient"; const commands = { CreateDeploymentCommand, diff --git a/clients/client-launch-wizard/src/LaunchWizardClient.ts b/clients/client-launch-wizard/src/LaunchWizardClient.ts index 4692c1d13919c..7ba72b41a9742 100644 --- a/clients/client-launch-wizard/src/LaunchWizardClient.ts +++ b/clients/client-launch-wizard/src/LaunchWizardClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLaunchWizardHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "./commands/CreateDeploymentCommand"; @@ -88,7 +97,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-launch-wizard/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-launch-wizard/src/auth/httpAuthExtensionConfiguration.ts index 991883e1b39bf..b422fe0425cc0 100644 --- a/clients/client-launch-wizard/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-launch-wizard/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LaunchWizardHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LaunchWizardHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-launch-wizard/src/auth/httpAuthSchemeProvider.ts b/clients/client-launch-wizard/src/auth/httpAuthSchemeProvider.ts index 90f69701400e2..0400413bfec5d 100644 --- a/clients/client-launch-wizard/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-launch-wizard/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LaunchWizardClientConfig, LaunchWizardClientResolvedConfig } from "../LaunchWizardClient"; +import { type LaunchWizardClientResolvedConfig, LaunchWizardClientConfig } from "../LaunchWizardClient"; /** * @internal diff --git a/clients/client-launch-wizard/src/commands/CreateDeploymentCommand.ts b/clients/client-launch-wizard/src/commands/CreateDeploymentCommand.ts index 490c99f64df58..866954bbd1730 100644 --- a/clients/client-launch-wizard/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-launch-wizard/src/commands/CreateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { CreateDeploymentInput, CreateDeploymentOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { CreateDeploymentInput, CreateDeploymentOutput } from "../models/models_0"; import { CreateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/DeleteDeploymentCommand.ts b/clients/client-launch-wizard/src/commands/DeleteDeploymentCommand.ts index a00104c87ac28..d588e5ffcb86d 100644 --- a/clients/client-launch-wizard/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-launch-wizard/src/commands/DeleteDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { DeleteDeploymentInput, DeleteDeploymentOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { DeleteDeploymentInput, DeleteDeploymentOutput } from "../models/models_0"; import { DeleteDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/GetDeploymentCommand.ts b/clients/client-launch-wizard/src/commands/GetDeploymentCommand.ts index bded9991080bc..48b7863b57c9b 100644 --- a/clients/client-launch-wizard/src/commands/GetDeploymentCommand.ts +++ b/clients/client-launch-wizard/src/commands/GetDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { GetDeploymentInput, GetDeploymentOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { GetDeploymentInput, GetDeploymentOutput } from "../models/models_0"; import { GetDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/GetWorkloadCommand.ts b/clients/client-launch-wizard/src/commands/GetWorkloadCommand.ts index ced8746901f57..0d0eaeee282cb 100644 --- a/clients/client-launch-wizard/src/commands/GetWorkloadCommand.ts +++ b/clients/client-launch-wizard/src/commands/GetWorkloadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { GetWorkloadInput, GetWorkloadOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { GetWorkloadInput, GetWorkloadOutput } from "../models/models_0"; import { GetWorkload } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/GetWorkloadDeploymentPatternCommand.ts b/clients/client-launch-wizard/src/commands/GetWorkloadDeploymentPatternCommand.ts index 1ed5b579bf1bd..e66ac40f32e84 100644 --- a/clients/client-launch-wizard/src/commands/GetWorkloadDeploymentPatternCommand.ts +++ b/clients/client-launch-wizard/src/commands/GetWorkloadDeploymentPatternCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { GetWorkloadDeploymentPatternInput, GetWorkloadDeploymentPatternOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { GetWorkloadDeploymentPatternInput, GetWorkloadDeploymentPatternOutput } from "../models/models_0"; import { GetWorkloadDeploymentPattern } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/ListDeploymentEventsCommand.ts b/clients/client-launch-wizard/src/commands/ListDeploymentEventsCommand.ts index 71d7b12a4e9ec..655e88872af7e 100644 --- a/clients/client-launch-wizard/src/commands/ListDeploymentEventsCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListDeploymentEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { ListDeploymentEventsInput, ListDeploymentEventsOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { ListDeploymentEventsInput, ListDeploymentEventsOutput } from "../models/models_0"; import { ListDeploymentEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/ListDeploymentsCommand.ts b/clients/client-launch-wizard/src/commands/ListDeploymentsCommand.ts index f8dc777a462fc..c86b78a83f444 100644 --- a/clients/client-launch-wizard/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { ListDeploymentsInput, ListDeploymentsOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { ListDeploymentsInput, ListDeploymentsOutput } from "../models/models_0"; import { ListDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/ListTagsForResourceCommand.ts b/clients/client-launch-wizard/src/commands/ListTagsForResourceCommand.ts index e13137f4070a0..c83c6219b97c0 100644 --- a/clients/client-launch-wizard/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/ListWorkloadDeploymentPatternsCommand.ts b/clients/client-launch-wizard/src/commands/ListWorkloadDeploymentPatternsCommand.ts index 94729269817d3..b76c8d39fc127 100644 --- a/clients/client-launch-wizard/src/commands/ListWorkloadDeploymentPatternsCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListWorkloadDeploymentPatternsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { ListWorkloadDeploymentPatternsInput, ListWorkloadDeploymentPatternsOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { ListWorkloadDeploymentPatternsInput, ListWorkloadDeploymentPatternsOutput } from "../models/models_0"; import { ListWorkloadDeploymentPatterns } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/ListWorkloadsCommand.ts b/clients/client-launch-wizard/src/commands/ListWorkloadsCommand.ts index 02d446f04f94b..c8223b438be9a 100644 --- a/clients/client-launch-wizard/src/commands/ListWorkloadsCommand.ts +++ b/clients/client-launch-wizard/src/commands/ListWorkloadsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { ListWorkloadsInput, ListWorkloadsOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { ListWorkloadsInput, ListWorkloadsOutput } from "../models/models_0"; import { ListWorkloads } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/TagResourceCommand.ts b/clients/client-launch-wizard/src/commands/TagResourceCommand.ts index ce5d710968a62..eb00d02a4aaab 100644 --- a/clients/client-launch-wizard/src/commands/TagResourceCommand.ts +++ b/clients/client-launch-wizard/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/commands/UntagResourceCommand.ts b/clients/client-launch-wizard/src/commands/UntagResourceCommand.ts index 4c12e05ed0be3..fbb1922617cd3 100644 --- a/clients/client-launch-wizard/src/commands/UntagResourceCommand.ts +++ b/clients/client-launch-wizard/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { LaunchWizardClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LaunchWizardClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-launch-wizard/src/endpoint/EndpointParameters.ts b/clients/client-launch-wizard/src/endpoint/EndpointParameters.ts index e99a2b1243505..0e6e93e4bfad2 100644 --- a/clients/client-launch-wizard/src/endpoint/EndpointParameters.ts +++ b/clients/client-launch-wizard/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-launch-wizard/src/endpoint/endpointResolver.ts b/clients/client-launch-wizard/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-launch-wizard/src/endpoint/endpointResolver.ts +++ b/clients/client-launch-wizard/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-launch-wizard/src/extensionConfiguration.ts b/clients/client-launch-wizard/src/extensionConfiguration.ts index 083aa2649b1c7..d85dfc205c478 100644 --- a/clients/client-launch-wizard/src/extensionConfiguration.ts +++ b/clients/client-launch-wizard/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-launch-wizard/src/models/LaunchWizardServiceException.ts b/clients/client-launch-wizard/src/models/LaunchWizardServiceException.ts index e547131d7ca01..cee4c09da3381 100644 --- a/clients/client-launch-wizard/src/models/LaunchWizardServiceException.ts +++ b/clients/client-launch-wizard/src/models/LaunchWizardServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-launch-wizard/src/models/errors.ts b/clients/client-launch-wizard/src/models/errors.ts index 54ca4dc094857..98b332e2b2541 100644 --- a/clients/client-launch-wizard/src/models/errors.ts +++ b/clients/client-launch-wizard/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LaunchWizardServiceException as __BaseException } from "./LaunchWizardServiceException"; diff --git a/clients/client-launch-wizard/src/pagination/Interfaces.ts b/clients/client-launch-wizard/src/pagination/Interfaces.ts index 2f1301a9aac3d..ee2746c761f95 100644 --- a/clients/client-launch-wizard/src/pagination/Interfaces.ts +++ b/clients/client-launch-wizard/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { LaunchWizardClient } from "../LaunchWizardClient"; diff --git a/clients/client-launch-wizard/src/pagination/ListDeploymentEventsPaginator.ts b/clients/client-launch-wizard/src/pagination/ListDeploymentEventsPaginator.ts index 28029db66b092..0b8ea0630c03c 100644 --- a/clients/client-launch-wizard/src/pagination/ListDeploymentEventsPaginator.ts +++ b/clients/client-launch-wizard/src/pagination/ListDeploymentEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeploymentEventsCommand, diff --git a/clients/client-launch-wizard/src/pagination/ListDeploymentsPaginator.ts b/clients/client-launch-wizard/src/pagination/ListDeploymentsPaginator.ts index 280b5529bd619..9782a6436e587 100644 --- a/clients/client-launch-wizard/src/pagination/ListDeploymentsPaginator.ts +++ b/clients/client-launch-wizard/src/pagination/ListDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeploymentsCommand, diff --git a/clients/client-launch-wizard/src/pagination/ListWorkloadDeploymentPatternsPaginator.ts b/clients/client-launch-wizard/src/pagination/ListWorkloadDeploymentPatternsPaginator.ts index 0a0abc6befb07..dd97a2d5f2392 100644 --- a/clients/client-launch-wizard/src/pagination/ListWorkloadDeploymentPatternsPaginator.ts +++ b/clients/client-launch-wizard/src/pagination/ListWorkloadDeploymentPatternsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkloadDeploymentPatternsCommand, diff --git a/clients/client-launch-wizard/src/pagination/ListWorkloadsPaginator.ts b/clients/client-launch-wizard/src/pagination/ListWorkloadsPaginator.ts index 62c898eb83e88..1e555ddb54d94 100644 --- a/clients/client-launch-wizard/src/pagination/ListWorkloadsPaginator.ts +++ b/clients/client-launch-wizard/src/pagination/ListWorkloadsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkloadsCommand, diff --git a/clients/client-launch-wizard/src/runtimeConfig.browser.ts b/clients/client-launch-wizard/src/runtimeConfig.browser.ts index 85475a49de44e..3e83095108e5e 100644 --- a/clients/client-launch-wizard/src/runtimeConfig.browser.ts +++ b/clients/client-launch-wizard/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LaunchWizardClientConfig } from "./LaunchWizardClient"; + +import type { LaunchWizardClientConfig } from "./LaunchWizardClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-launch-wizard/src/runtimeConfig.native.ts b/clients/client-launch-wizard/src/runtimeConfig.native.ts index f935ca5c98751..2ac7b4c4c6167 100644 --- a/clients/client-launch-wizard/src/runtimeConfig.native.ts +++ b/clients/client-launch-wizard/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LaunchWizardClientConfig } from "./LaunchWizardClient"; +import type { LaunchWizardClientConfig } from "./LaunchWizardClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-launch-wizard/src/runtimeConfig.shared.ts b/clients/client-launch-wizard/src/runtimeConfig.shared.ts index b2ee684e1e95c..d538c9a6f6d6f 100644 --- a/clients/client-launch-wizard/src/runtimeConfig.shared.ts +++ b/clients/client-launch-wizard/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLaunchWizardHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LaunchWizardClientConfig } from "./LaunchWizardClient"; +import type { LaunchWizardClientConfig } from "./LaunchWizardClient"; /** * @internal diff --git a/clients/client-launch-wizard/src/runtimeConfig.ts b/clients/client-launch-wizard/src/runtimeConfig.ts index 135667e6139c3..2f65cdfd62fc4 100644 --- a/clients/client-launch-wizard/src/runtimeConfig.ts +++ b/clients/client-launch-wizard/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LaunchWizardClientConfig } from "./LaunchWizardClient"; + +import type { LaunchWizardClientConfig } from "./LaunchWizardClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-launch-wizard/src/runtimeExtensions.ts b/clients/client-launch-wizard/src/runtimeExtensions.ts index 0bd35c30bf4ab..2e5bfa2b4dadb 100644 --- a/clients/client-launch-wizard/src/runtimeExtensions.ts +++ b/clients/client-launch-wizard/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LaunchWizardExtensionConfiguration } from "./extensionConfiguration"; +import type { LaunchWizardExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-launch-wizard/src/schemas/schemas_0.ts b/clients/client-launch-wizard/src/schemas/schemas_0.ts index 707a38cf32bbc..a85ccc5ab7e13 100644 --- a/clients/client-launch-wizard/src/schemas/schemas_0.ts +++ b/clients/client-launch-wizard/src/schemas/schemas_0.ts @@ -108,7 +108,7 @@ const n0 = "com.amazonaws.launchwizard"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-lex-model-building-service/package.json b/clients/client-lex-model-building-service/package.json index 0fde0015beff7..783f65f3cc274 100644 --- a/clients/client-lex-model-building-service/package.json +++ b/clients/client-lex-model-building-service/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-lex-model-building-service/src/LexModelBuildingService.ts b/clients/client-lex-model-building-service/src/LexModelBuildingService.ts index 5365c498a4501..a1a9a1904bc86 100644 --- a/clients/client-lex-model-building-service/src/LexModelBuildingService.ts +++ b/clients/client-lex-model-building-service/src/LexModelBuildingService.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateBotVersionCommand, @@ -152,7 +152,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { LexModelBuildingServiceClient, LexModelBuildingServiceClientConfig } from "./LexModelBuildingServiceClient"; +import { LexModelBuildingServiceClient } from "./LexModelBuildingServiceClient"; const commands = { CreateBotVersionCommand, diff --git a/clients/client-lex-model-building-service/src/LexModelBuildingServiceClient.ts b/clients/client-lex-model-building-service/src/LexModelBuildingServiceClient.ts index f4dd8ed52538c..f80438e02854b 100644 --- a/clients/client-lex-model-building-service/src/LexModelBuildingServiceClient.ts +++ b/clients/client-lex-model-building-service/src/LexModelBuildingServiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLexModelBuildingServiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateBotVersionCommandInput, CreateBotVersionCommandOutput } from "./commands/CreateBotVersionCommand"; @@ -136,7 +145,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-lex-model-building-service/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-lex-model-building-service/src/auth/httpAuthExtensionConfiguration.ts index a0e6653af766a..722bf3f43facd 100644 --- a/clients/client-lex-model-building-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-lex-model-building-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LexModelBuildingServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LexModelBuildingServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-lex-model-building-service/src/auth/httpAuthSchemeProvider.ts b/clients/client-lex-model-building-service/src/auth/httpAuthSchemeProvider.ts index a6cd21da71fc0..4daf982af9694 100644 --- a/clients/client-lex-model-building-service/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-lex-model-building-service/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type LexModelBuildingServiceClientResolvedConfig, LexModelBuildingServiceClientConfig, - LexModelBuildingServiceClientResolvedConfig, } from "../LexModelBuildingServiceClient"; /** diff --git a/clients/client-lex-model-building-service/src/commands/CreateBotVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/CreateBotVersionCommand.ts index b14ff9eee56de..166d281b8b446 100644 --- a/clients/client-lex-model-building-service/src/commands/CreateBotVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/CreateBotVersionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { CreateBotVersionRequest, CreateBotVersionResponse } from "../models/models_0"; +import type { CreateBotVersionRequest, CreateBotVersionResponse } from "../models/models_0"; import { CreateBotVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/CreateIntentVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/CreateIntentVersionCommand.ts index 2a10600395fee..33e7aa70e6acf 100644 --- a/clients/client-lex-model-building-service/src/commands/CreateIntentVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/CreateIntentVersionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { CreateIntentVersionRequest, CreateIntentVersionResponse } from "../models/models_0"; +import type { CreateIntentVersionRequest, CreateIntentVersionResponse } from "../models/models_0"; import { CreateIntentVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/CreateSlotTypeVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/CreateSlotTypeVersionCommand.ts index 0d642a4a1829f..e0c1afd77622d 100644 --- a/clients/client-lex-model-building-service/src/commands/CreateSlotTypeVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/CreateSlotTypeVersionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { CreateSlotTypeVersionRequest, CreateSlotTypeVersionResponse } from "../models/models_0"; +import type { CreateSlotTypeVersionRequest, CreateSlotTypeVersionResponse } from "../models/models_0"; import { CreateSlotTypeVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/DeleteBotAliasCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteBotAliasCommand.ts index b492cc41dc643..034e3fe60d062 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteBotAliasCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteBotAliasCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { DeleteBotAliasRequest } from "../models/models_0"; +import type { DeleteBotAliasRequest } from "../models/models_0"; import { DeleteBotAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/DeleteBotChannelAssociationCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteBotChannelAssociationCommand.ts index 0a3a96d2425a1..073408f2a24e7 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteBotChannelAssociationCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteBotChannelAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { DeleteBotChannelAssociationRequest } from "../models/models_0"; +import type { DeleteBotChannelAssociationRequest } from "../models/models_0"; import { DeleteBotChannelAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/DeleteBotCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteBotCommand.ts index 778d7cd2a7617..7f22b87a16346 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteBotCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteBotCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { DeleteBotRequest } from "../models/models_0"; +import type { DeleteBotRequest } from "../models/models_0"; import { DeleteBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/DeleteBotVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteBotVersionCommand.ts index a2d8c666a158c..c4db512ef7827 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteBotVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteBotVersionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { DeleteBotVersionRequest } from "../models/models_0"; +import type { DeleteBotVersionRequest } from "../models/models_0"; import { DeleteBotVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/DeleteIntentCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteIntentCommand.ts index 7e1928ba82648..d0a1b5a99f68a 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteIntentCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteIntentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { DeleteIntentRequest } from "../models/models_0"; +import type { DeleteIntentRequest } from "../models/models_0"; import { DeleteIntent } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/DeleteIntentVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteIntentVersionCommand.ts index 9b7f711be51fc..568e9c78500f2 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteIntentVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteIntentVersionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { DeleteIntentVersionRequest } from "../models/models_0"; +import type { DeleteIntentVersionRequest } from "../models/models_0"; import { DeleteIntentVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeCommand.ts index e5aefc7fa7d27..90ceb6570a612 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { DeleteSlotTypeRequest } from "../models/models_0"; +import type { DeleteSlotTypeRequest } from "../models/models_0"; import { DeleteSlotType } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeVersionCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeVersionCommand.ts index 43e7155d4e846..45939d53be05a 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeVersionCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteSlotTypeVersionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { DeleteSlotTypeVersionRequest } from "../models/models_0"; +import type { DeleteSlotTypeVersionRequest } from "../models/models_0"; import { DeleteSlotTypeVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/DeleteUtterancesCommand.ts b/clients/client-lex-model-building-service/src/commands/DeleteUtterancesCommand.ts index 4c786eb6b0fd5..b6c449a346e5c 100644 --- a/clients/client-lex-model-building-service/src/commands/DeleteUtterancesCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/DeleteUtterancesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { DeleteUtterancesRequest } from "../models/models_0"; +import type { DeleteUtterancesRequest } from "../models/models_0"; import { DeleteUtterances } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBotAliasCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotAliasCommand.ts index 1731eba98741c..fde3c4501f9ca 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotAliasCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotAliasCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBotAliasRequest, GetBotAliasResponse } from "../models/models_0"; +import type { GetBotAliasRequest, GetBotAliasResponse } from "../models/models_0"; import { GetBotAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBotAliasesCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotAliasesCommand.ts index 7be073dfaa47e..59647d7e78935 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotAliasesCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotAliasesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBotAliasesRequest, GetBotAliasesResponse } from "../models/models_0"; +import type { GetBotAliasesRequest, GetBotAliasesResponse } from "../models/models_0"; import { GetBotAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationCommand.ts index 429e8fe92a11a..b4a47b2df7ae3 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBotChannelAssociationRequest, GetBotChannelAssociationResponse } from "../models/models_0"; +import type { GetBotChannelAssociationRequest, GetBotChannelAssociationResponse } from "../models/models_0"; import { GetBotChannelAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationsCommand.ts index 2aff088dbae51..1d5e36c9c88f5 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotChannelAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBotChannelAssociationsRequest, GetBotChannelAssociationsResponse } from "../models/models_0"; +import type { GetBotChannelAssociationsRequest, GetBotChannelAssociationsResponse } from "../models/models_0"; import { GetBotChannelAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBotCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotCommand.ts index 9c92fe6690aab..9eedd007dfd2c 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBotRequest, GetBotResponse } from "../models/models_0"; +import type { GetBotRequest, GetBotResponse } from "../models/models_0"; import { GetBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBotVersionsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotVersionsCommand.ts index 1b4629311016e..03df2c51342e8 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotVersionsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBotVersionsRequest, GetBotVersionsResponse } from "../models/models_0"; +import type { GetBotVersionsRequest, GetBotVersionsResponse } from "../models/models_0"; import { GetBotVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBotsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBotsCommand.ts index ef7aeb1857f1e..0162ac290a266 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBotsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBotsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBotsRequest, GetBotsResponse } from "../models/models_0"; +import type { GetBotsRequest, GetBotsResponse } from "../models/models_0"; import { GetBots } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentCommand.ts index 89eecd9102ef5..0f8f2524a65a1 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBuiltinIntentRequest, GetBuiltinIntentResponse } from "../models/models_0"; +import type { GetBuiltinIntentRequest, GetBuiltinIntentResponse } from "../models/models_0"; import { GetBuiltinIntent } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentsCommand.ts index b9ab763c52033..321a40c9328e5 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBuiltinIntentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBuiltinIntentsRequest, GetBuiltinIntentsResponse } from "../models/models_0"; +import type { GetBuiltinIntentsRequest, GetBuiltinIntentsResponse } from "../models/models_0"; import { GetBuiltinIntents } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetBuiltinSlotTypesCommand.ts b/clients/client-lex-model-building-service/src/commands/GetBuiltinSlotTypesCommand.ts index 060034454e0cc..354366d3eb218 100644 --- a/clients/client-lex-model-building-service/src/commands/GetBuiltinSlotTypesCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetBuiltinSlotTypesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetBuiltinSlotTypesRequest, GetBuiltinSlotTypesResponse } from "../models/models_0"; +import type { GetBuiltinSlotTypesRequest, GetBuiltinSlotTypesResponse } from "../models/models_0"; import { GetBuiltinSlotTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetExportCommand.ts b/clients/client-lex-model-building-service/src/commands/GetExportCommand.ts index 3a391e54a79fc..f9b793a6587a7 100644 --- a/clients/client-lex-model-building-service/src/commands/GetExportCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetExportCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetExportRequest, GetExportResponse } from "../models/models_0"; +import type { GetExportRequest, GetExportResponse } from "../models/models_0"; import { GetExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetImportCommand.ts b/clients/client-lex-model-building-service/src/commands/GetImportCommand.ts index 27abaeeac3d3b..bd3c4b751679f 100644 --- a/clients/client-lex-model-building-service/src/commands/GetImportCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetImportCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetImportRequest, GetImportResponse } from "../models/models_0"; +import type { GetImportRequest, GetImportResponse } from "../models/models_0"; import { GetImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetIntentCommand.ts b/clients/client-lex-model-building-service/src/commands/GetIntentCommand.ts index 8c5bc710009e4..f585205ee2222 100644 --- a/clients/client-lex-model-building-service/src/commands/GetIntentCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetIntentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetIntentRequest, GetIntentResponse } from "../models/models_0"; +import type { GetIntentRequest, GetIntentResponse } from "../models/models_0"; import { GetIntent } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetIntentVersionsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetIntentVersionsCommand.ts index 953b2bdcf32ec..f607b5d60e505 100644 --- a/clients/client-lex-model-building-service/src/commands/GetIntentVersionsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetIntentVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetIntentVersionsRequest, GetIntentVersionsResponse } from "../models/models_0"; +import type { GetIntentVersionsRequest, GetIntentVersionsResponse } from "../models/models_0"; import { GetIntentVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetIntentsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetIntentsCommand.ts index cab2aaa07c94f..aa76361fae513 100644 --- a/clients/client-lex-model-building-service/src/commands/GetIntentsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetIntentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetIntentsRequest, GetIntentsResponse } from "../models/models_0"; +import type { GetIntentsRequest, GetIntentsResponse } from "../models/models_0"; import { GetIntents } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetMigrationCommand.ts b/clients/client-lex-model-building-service/src/commands/GetMigrationCommand.ts index 47712a6057ecd..f32cc0afe21af 100644 --- a/clients/client-lex-model-building-service/src/commands/GetMigrationCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetMigrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetMigrationRequest, GetMigrationResponse } from "../models/models_0"; +import type { GetMigrationRequest, GetMigrationResponse } from "../models/models_0"; import { GetMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetMigrationsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetMigrationsCommand.ts index e009609127996..eb5990d774af5 100644 --- a/clients/client-lex-model-building-service/src/commands/GetMigrationsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetMigrationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetMigrationsRequest, GetMigrationsResponse } from "../models/models_0"; +import type { GetMigrationsRequest, GetMigrationsResponse } from "../models/models_0"; import { GetMigrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetSlotTypeCommand.ts b/clients/client-lex-model-building-service/src/commands/GetSlotTypeCommand.ts index 188d4a33c6413..e301e4bc69b9b 100644 --- a/clients/client-lex-model-building-service/src/commands/GetSlotTypeCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetSlotTypeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetSlotTypeRequest, GetSlotTypeResponse } from "../models/models_0"; +import type { GetSlotTypeRequest, GetSlotTypeResponse } from "../models/models_0"; import { GetSlotType } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetSlotTypeVersionsCommand.ts b/clients/client-lex-model-building-service/src/commands/GetSlotTypeVersionsCommand.ts index 2a7e4da6ed2c9..e88baad4e3468 100644 --- a/clients/client-lex-model-building-service/src/commands/GetSlotTypeVersionsCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetSlotTypeVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetSlotTypeVersionsRequest, GetSlotTypeVersionsResponse } from "../models/models_0"; +import type { GetSlotTypeVersionsRequest, GetSlotTypeVersionsResponse } from "../models/models_0"; import { GetSlotTypeVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetSlotTypesCommand.ts b/clients/client-lex-model-building-service/src/commands/GetSlotTypesCommand.ts index 27db241f691f1..b139e8ebec5fe 100644 --- a/clients/client-lex-model-building-service/src/commands/GetSlotTypesCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetSlotTypesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetSlotTypesRequest, GetSlotTypesResponse } from "../models/models_0"; +import type { GetSlotTypesRequest, GetSlotTypesResponse } from "../models/models_0"; import { GetSlotTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/GetUtterancesViewCommand.ts b/clients/client-lex-model-building-service/src/commands/GetUtterancesViewCommand.ts index 69e2c9519dd6e..b2014bc70d0f2 100644 --- a/clients/client-lex-model-building-service/src/commands/GetUtterancesViewCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/GetUtterancesViewCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { GetUtterancesViewRequest, GetUtterancesViewResponse } from "../models/models_0"; +import type { GetUtterancesViewRequest, GetUtterancesViewResponse } from "../models/models_0"; import { GetUtterancesView } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/ListTagsForResourceCommand.ts b/clients/client-lex-model-building-service/src/commands/ListTagsForResourceCommand.ts index 0c1b47a86298e..e45180c57d18d 100644 --- a/clients/client-lex-model-building-service/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/PutBotAliasCommand.ts b/clients/client-lex-model-building-service/src/commands/PutBotAliasCommand.ts index d206b188b82f0..ab22bcecb9000 100644 --- a/clients/client-lex-model-building-service/src/commands/PutBotAliasCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/PutBotAliasCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { PutBotAliasRequest, PutBotAliasResponse } from "../models/models_0"; +import type { PutBotAliasRequest, PutBotAliasResponse } from "../models/models_0"; import { PutBotAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/PutBotCommand.ts b/clients/client-lex-model-building-service/src/commands/PutBotCommand.ts index af7e02d5cad3d..5bb41796e081d 100644 --- a/clients/client-lex-model-building-service/src/commands/PutBotCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/PutBotCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { PutBotRequest, PutBotResponse } from "../models/models_0"; +import type { PutBotRequest, PutBotResponse } from "../models/models_0"; import { PutBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/PutIntentCommand.ts b/clients/client-lex-model-building-service/src/commands/PutIntentCommand.ts index c5ecb90655556..4e67dcbb5a105 100644 --- a/clients/client-lex-model-building-service/src/commands/PutIntentCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/PutIntentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { PutIntentRequest, PutIntentResponse } from "../models/models_0"; +import type { PutIntentRequest, PutIntentResponse } from "../models/models_0"; import { PutIntent } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/PutSlotTypeCommand.ts b/clients/client-lex-model-building-service/src/commands/PutSlotTypeCommand.ts index fc924fbeb3d7a..01659a08da1ce 100644 --- a/clients/client-lex-model-building-service/src/commands/PutSlotTypeCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/PutSlotTypeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { PutSlotTypeRequest, PutSlotTypeResponse } from "../models/models_0"; +import type { PutSlotTypeRequest, PutSlotTypeResponse } from "../models/models_0"; import { PutSlotType } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/StartImportCommand.ts b/clients/client-lex-model-building-service/src/commands/StartImportCommand.ts index 531508a73361b..17de7699d14a8 100644 --- a/clients/client-lex-model-building-service/src/commands/StartImportCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/StartImportCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { StartImportRequest, StartImportResponse } from "../models/models_0"; +import type { StartImportRequest, StartImportResponse } from "../models/models_0"; import { StartImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/StartMigrationCommand.ts b/clients/client-lex-model-building-service/src/commands/StartMigrationCommand.ts index 7472ca9bf5af8..334be076b8e0e 100644 --- a/clients/client-lex-model-building-service/src/commands/StartMigrationCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/StartMigrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { StartMigrationRequest, StartMigrationResponse } from "../models/models_0"; +import type { StartMigrationRequest, StartMigrationResponse } from "../models/models_0"; import { StartMigration } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/TagResourceCommand.ts b/clients/client-lex-model-building-service/src/commands/TagResourceCommand.ts index 86c5f4851c6fe..68e98db849189 100644 --- a/clients/client-lex-model-building-service/src/commands/TagResourceCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/commands/UntagResourceCommand.ts b/clients/client-lex-model-building-service/src/commands/UntagResourceCommand.ts index 14c79a703087a..de4cb98244e59 100644 --- a/clients/client-lex-model-building-service/src/commands/UntagResourceCommand.ts +++ b/clients/client-lex-model-building-service/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexModelBuildingServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexModelBuildingServiceClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-model-building-service/src/endpoint/EndpointParameters.ts b/clients/client-lex-model-building-service/src/endpoint/EndpointParameters.ts index e5a39831ed79f..c4e9e45f4eb00 100644 --- a/clients/client-lex-model-building-service/src/endpoint/EndpointParameters.ts +++ b/clients/client-lex-model-building-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-lex-model-building-service/src/endpoint/endpointResolver.ts b/clients/client-lex-model-building-service/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-lex-model-building-service/src/endpoint/endpointResolver.ts +++ b/clients/client-lex-model-building-service/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-lex-model-building-service/src/extensionConfiguration.ts b/clients/client-lex-model-building-service/src/extensionConfiguration.ts index 29d1b5edd9b3d..33d44c13284cf 100644 --- a/clients/client-lex-model-building-service/src/extensionConfiguration.ts +++ b/clients/client-lex-model-building-service/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-lex-model-building-service/src/models/LexModelBuildingServiceServiceException.ts b/clients/client-lex-model-building-service/src/models/LexModelBuildingServiceServiceException.ts index b880829a46853..18a9cce994f5b 100644 --- a/clients/client-lex-model-building-service/src/models/LexModelBuildingServiceServiceException.ts +++ b/clients/client-lex-model-building-service/src/models/LexModelBuildingServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-lex-model-building-service/src/models/errors.ts b/clients/client-lex-model-building-service/src/models/errors.ts index b2ace1d669be5..e5179d9a9c803 100644 --- a/clients/client-lex-model-building-service/src/models/errors.ts +++ b/clients/client-lex-model-building-service/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ReferenceType } from "./enums"; import { LexModelBuildingServiceServiceException as __BaseException } from "./LexModelBuildingServiceServiceException"; diff --git a/clients/client-lex-model-building-service/src/pagination/GetBotAliasesPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetBotAliasesPaginator.ts index 880d3bd287cec..2c74a8503df2e 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetBotAliasesPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetBotAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBotAliasesCommand, diff --git a/clients/client-lex-model-building-service/src/pagination/GetBotChannelAssociationsPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetBotChannelAssociationsPaginator.ts index 0a2d040ed7e05..548e18c252714 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetBotChannelAssociationsPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetBotChannelAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBotChannelAssociationsCommand, diff --git a/clients/client-lex-model-building-service/src/pagination/GetBotVersionsPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetBotVersionsPaginator.ts index 1fdac0cb956b3..99f2c786f1ad3 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetBotVersionsPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetBotVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBotVersionsCommand, diff --git a/clients/client-lex-model-building-service/src/pagination/GetBotsPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetBotsPaginator.ts index 2a966280442e0..0b9af7391b7c0 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetBotsPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetBotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBotsCommand, GetBotsCommandInput, GetBotsCommandOutput } from "../commands/GetBotsCommand"; import { LexModelBuildingServiceClient } from "../LexModelBuildingServiceClient"; diff --git a/clients/client-lex-model-building-service/src/pagination/GetBuiltinIntentsPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetBuiltinIntentsPaginator.ts index c20b5ffdf7ca4..96263bc7fc9b7 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetBuiltinIntentsPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetBuiltinIntentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBuiltinIntentsCommand, diff --git a/clients/client-lex-model-building-service/src/pagination/GetBuiltinSlotTypesPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetBuiltinSlotTypesPaginator.ts index 7693e63d2ce89..fc0cd09597a68 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetBuiltinSlotTypesPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetBuiltinSlotTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetBuiltinSlotTypesCommand, diff --git a/clients/client-lex-model-building-service/src/pagination/GetIntentVersionsPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetIntentVersionsPaginator.ts index ab106abeebf19..b52e67df2d177 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetIntentVersionsPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetIntentVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIntentVersionsCommand, diff --git a/clients/client-lex-model-building-service/src/pagination/GetIntentsPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetIntentsPaginator.ts index 5778eccfb6902..c6415ecc3e35d 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetIntentsPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetIntentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetIntentsCommand, GetIntentsCommandInput, GetIntentsCommandOutput } from "../commands/GetIntentsCommand"; import { LexModelBuildingServiceClient } from "../LexModelBuildingServiceClient"; diff --git a/clients/client-lex-model-building-service/src/pagination/GetMigrationsPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetMigrationsPaginator.ts index 0929400e04c4a..2b0455fc8058a 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetMigrationsPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetMigrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetMigrationsCommand, diff --git a/clients/client-lex-model-building-service/src/pagination/GetSlotTypeVersionsPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetSlotTypeVersionsPaginator.ts index aba1df4ace628..0be4185fc991c 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetSlotTypeVersionsPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetSlotTypeVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSlotTypeVersionsCommand, diff --git a/clients/client-lex-model-building-service/src/pagination/GetSlotTypesPaginator.ts b/clients/client-lex-model-building-service/src/pagination/GetSlotTypesPaginator.ts index 74830737a5c65..c6ec8190b8cc6 100644 --- a/clients/client-lex-model-building-service/src/pagination/GetSlotTypesPaginator.ts +++ b/clients/client-lex-model-building-service/src/pagination/GetSlotTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSlotTypesCommand, diff --git a/clients/client-lex-model-building-service/src/pagination/Interfaces.ts b/clients/client-lex-model-building-service/src/pagination/Interfaces.ts index ad3041ee89a5a..e70b487ca73fc 100644 --- a/clients/client-lex-model-building-service/src/pagination/Interfaces.ts +++ b/clients/client-lex-model-building-service/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { LexModelBuildingServiceClient } from "../LexModelBuildingServiceClient"; diff --git a/clients/client-lex-model-building-service/src/runtimeConfig.browser.ts b/clients/client-lex-model-building-service/src/runtimeConfig.browser.ts index 4d43acce05486..8eaaa18d0b477 100644 --- a/clients/client-lex-model-building-service/src/runtimeConfig.browser.ts +++ b/clients/client-lex-model-building-service/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LexModelBuildingServiceClientConfig } from "./LexModelBuildingServiceClient"; + +import type { LexModelBuildingServiceClientConfig } from "./LexModelBuildingServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-lex-model-building-service/src/runtimeConfig.native.ts b/clients/client-lex-model-building-service/src/runtimeConfig.native.ts index 04b687a1c4cb4..73ff548c553f5 100644 --- a/clients/client-lex-model-building-service/src/runtimeConfig.native.ts +++ b/clients/client-lex-model-building-service/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LexModelBuildingServiceClientConfig } from "./LexModelBuildingServiceClient"; +import type { LexModelBuildingServiceClientConfig } from "./LexModelBuildingServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-lex-model-building-service/src/runtimeConfig.shared.ts b/clients/client-lex-model-building-service/src/runtimeConfig.shared.ts index 6c7cf37ee5cc2..322056261ccfd 100644 --- a/clients/client-lex-model-building-service/src/runtimeConfig.shared.ts +++ b/clients/client-lex-model-building-service/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLexModelBuildingServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LexModelBuildingServiceClientConfig } from "./LexModelBuildingServiceClient"; +import type { LexModelBuildingServiceClientConfig } from "./LexModelBuildingServiceClient"; /** * @internal diff --git a/clients/client-lex-model-building-service/src/runtimeConfig.ts b/clients/client-lex-model-building-service/src/runtimeConfig.ts index 7c2326d1aa222..1222a6bf3ced2 100644 --- a/clients/client-lex-model-building-service/src/runtimeConfig.ts +++ b/clients/client-lex-model-building-service/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LexModelBuildingServiceClientConfig } from "./LexModelBuildingServiceClient"; + +import type { LexModelBuildingServiceClientConfig } from "./LexModelBuildingServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-lex-model-building-service/src/runtimeExtensions.ts b/clients/client-lex-model-building-service/src/runtimeExtensions.ts index 0e575344f1287..25533ee5f3db4 100644 --- a/clients/client-lex-model-building-service/src/runtimeExtensions.ts +++ b/clients/client-lex-model-building-service/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LexModelBuildingServiceExtensionConfiguration } from "./extensionConfiguration"; +import type { LexModelBuildingServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-lex-model-building-service/src/schemas/schemas_0.ts b/clients/client-lex-model-building-service/src/schemas/schemas_0.ts index 3ec1af0b8c209..2682b6455a4c5 100644 --- a/clients/client-lex-model-building-service/src/schemas/schemas_0.ts +++ b/clients/client-lex-model-building-service/src/schemas/schemas_0.ts @@ -328,7 +328,7 @@ const n0 = "com.amazonaws.lexmodelbuildingservice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-lex-models-v2/package.json b/clients/client-lex-models-v2/package.json index 2b587febdbf35..5cb9c6f62910d 100644 --- a/clients/client-lex-models-v2/package.json +++ b/clients/client-lex-models-v2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-lex-models-v2/src/LexModelsV2.ts b/clients/client-lex-models-v2/src/LexModelsV2.ts index 0a08fab9e6b6f..37d6b38ba9b6c 100644 --- a/clients/client-lex-models-v2/src/LexModelsV2.ts +++ b/clients/client-lex-models-v2/src/LexModelsV2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchCreateCustomVocabularyItemCommand, @@ -456,7 +456,7 @@ import { UpdateTestSetCommandInput, UpdateTestSetCommandOutput, } from "./commands/UpdateTestSetCommand"; -import { LexModelsV2Client, LexModelsV2ClientConfig } from "./LexModelsV2Client"; +import { LexModelsV2Client } from "./LexModelsV2Client"; const commands = { BatchCreateCustomVocabularyItemCommand, diff --git a/clients/client-lex-models-v2/src/LexModelsV2Client.ts b/clients/client-lex-models-v2/src/LexModelsV2Client.ts index 342e0423d8b81..d1c1efc5e6152 100644 --- a/clients/client-lex-models-v2/src/LexModelsV2Client.ts +++ b/clients/client-lex-models-v2/src/LexModelsV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLexModelsV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -280,7 +289,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-lex-models-v2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-lex-models-v2/src/auth/httpAuthExtensionConfiguration.ts index fd8e67a04a92a..b665e9226016f 100644 --- a/clients/client-lex-models-v2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-lex-models-v2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LexModelsV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LexModelsV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-lex-models-v2/src/auth/httpAuthSchemeProvider.ts b/clients/client-lex-models-v2/src/auth/httpAuthSchemeProvider.ts index a554d0dd73cd1..3c5327e094bcf 100644 --- a/clients/client-lex-models-v2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-lex-models-v2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LexModelsV2ClientConfig, LexModelsV2ClientResolvedConfig } from "../LexModelsV2Client"; +import { type LexModelsV2ClientResolvedConfig, LexModelsV2ClientConfig } from "../LexModelsV2Client"; /** * @internal diff --git a/clients/client-lex-models-v2/src/commands/BatchCreateCustomVocabularyItemCommand.ts b/clients/client-lex-models-v2/src/commands/BatchCreateCustomVocabularyItemCommand.ts index b573d573a013b..7e60aeab32951 100644 --- a/clients/client-lex-models-v2/src/commands/BatchCreateCustomVocabularyItemCommand.ts +++ b/clients/client-lex-models-v2/src/commands/BatchCreateCustomVocabularyItemCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { BatchCreateCustomVocabularyItemRequest, BatchCreateCustomVocabularyItemResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { + BatchCreateCustomVocabularyItemRequest, + BatchCreateCustomVocabularyItemResponse, +} from "../models/models_0"; import { BatchCreateCustomVocabularyItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/BatchDeleteCustomVocabularyItemCommand.ts b/clients/client-lex-models-v2/src/commands/BatchDeleteCustomVocabularyItemCommand.ts index ab6e1788f8422..5bf6dec8003af 100644 --- a/clients/client-lex-models-v2/src/commands/BatchDeleteCustomVocabularyItemCommand.ts +++ b/clients/client-lex-models-v2/src/commands/BatchDeleteCustomVocabularyItemCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { BatchDeleteCustomVocabularyItemRequest, BatchDeleteCustomVocabularyItemResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { + BatchDeleteCustomVocabularyItemRequest, + BatchDeleteCustomVocabularyItemResponse, +} from "../models/models_0"; import { BatchDeleteCustomVocabularyItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/BatchUpdateCustomVocabularyItemCommand.ts b/clients/client-lex-models-v2/src/commands/BatchUpdateCustomVocabularyItemCommand.ts index 92606b6e6a5bb..a5013008e9146 100644 --- a/clients/client-lex-models-v2/src/commands/BatchUpdateCustomVocabularyItemCommand.ts +++ b/clients/client-lex-models-v2/src/commands/BatchUpdateCustomVocabularyItemCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { BatchUpdateCustomVocabularyItemRequest, BatchUpdateCustomVocabularyItemResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { + BatchUpdateCustomVocabularyItemRequest, + BatchUpdateCustomVocabularyItemResponse, +} from "../models/models_0"; import { BatchUpdateCustomVocabularyItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/BuildBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/BuildBotLocaleCommand.ts index 6b7e96aa02f8e..1a8edc9defecc 100644 --- a/clients/client-lex-models-v2/src/commands/BuildBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/BuildBotLocaleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { BuildBotLocaleRequest, BuildBotLocaleResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { BuildBotLocaleRequest, BuildBotLocaleResponse } from "../models/models_0"; import { BuildBotLocale } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateBotAliasCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotAliasCommand.ts index 326e7774cbb70..f64985fe24bac 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotAliasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateBotAliasRequest, CreateBotAliasResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateBotAliasRequest, CreateBotAliasResponse } from "../models/models_0"; import { CreateBotAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateBotCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotCommand.ts index aab0980747fb0..48155c0e2acc3 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateBotRequest, CreateBotResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateBotRequest, CreateBotResponse } from "../models/models_0"; import { CreateBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotLocaleCommand.ts index 981614332f090..bd864ca2f04df 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotLocaleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateBotLocaleRequest, CreateBotLocaleResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateBotLocaleRequest, CreateBotLocaleResponse } from "../models/models_0"; import { CreateBotLocale } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateBotReplicaCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotReplicaCommand.ts index d5709f4fbac0c..d6798d6eaa3e7 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotReplicaCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotReplicaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateBotReplicaRequest, CreateBotReplicaResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateBotReplicaRequest, CreateBotReplicaResponse } from "../models/models_0"; import { CreateBotReplica } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateBotVersionCommand.ts b/clients/client-lex-models-v2/src/commands/CreateBotVersionCommand.ts index be7620a2a5e7d..4840d32791e9c 100644 --- a/clients/client-lex-models-v2/src/commands/CreateBotVersionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateBotVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateBotVersionRequest, CreateBotVersionResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateBotVersionRequest, CreateBotVersionResponse } from "../models/models_0"; import { CreateBotVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateExportCommand.ts b/clients/client-lex-models-v2/src/commands/CreateExportCommand.ts index 8929884697aa3..d79781e934775 100644 --- a/clients/client-lex-models-v2/src/commands/CreateExportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateExportRequest, CreateExportResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateExportRequest, CreateExportResponse } from "../models/models_0"; import { CreateExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateIntentCommand.ts b/clients/client-lex-models-v2/src/commands/CreateIntentCommand.ts index 27e601d1f3b3c..dcf4bcb839b09 100644 --- a/clients/client-lex-models-v2/src/commands/CreateIntentCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateIntentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateIntentRequest, CreateIntentResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateIntentRequest, CreateIntentResponse } from "../models/models_1"; import { CreateIntent } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateResourcePolicyCommand.ts b/clients/client-lex-models-v2/src/commands/CreateResourcePolicyCommand.ts index cf5c4cb2be976..818917f4f627a 100644 --- a/clients/client-lex-models-v2/src/commands/CreateResourcePolicyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateResourcePolicyRequest, CreateResourcePolicyResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateResourcePolicyRequest, CreateResourcePolicyResponse } from "../models/models_0"; import { CreateResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateResourcePolicyStatementCommand.ts b/clients/client-lex-models-v2/src/commands/CreateResourcePolicyStatementCommand.ts index 6dcddbec9173a..1557007323a47 100644 --- a/clients/client-lex-models-v2/src/commands/CreateResourcePolicyStatementCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateResourcePolicyStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateResourcePolicyStatementRequest, CreateResourcePolicyStatementResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateResourcePolicyStatementRequest, CreateResourcePolicyStatementResponse } from "../models/models_0"; import { CreateResourcePolicyStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateSlotCommand.ts b/clients/client-lex-models-v2/src/commands/CreateSlotCommand.ts index 545a28e03a67a..56e806de5ace1 100644 --- a/clients/client-lex-models-v2/src/commands/CreateSlotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateSlotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateSlotRequest, CreateSlotResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateSlotRequest, CreateSlotResponse } from "../models/models_1"; import { CreateSlot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateSlotTypeCommand.ts b/clients/client-lex-models-v2/src/commands/CreateSlotTypeCommand.ts index f171b6cc15d9a..19056922f77d8 100644 --- a/clients/client-lex-models-v2/src/commands/CreateSlotTypeCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateSlotTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateSlotTypeRequest, CreateSlotTypeResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateSlotTypeRequest, CreateSlotTypeResponse } from "../models/models_0"; import { CreateSlotType } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateTestSetDiscrepancyReportCommand.ts b/clients/client-lex-models-v2/src/commands/CreateTestSetDiscrepancyReportCommand.ts index 1f5c807d7dfc5..2b57cfdc5b83f 100644 --- a/clients/client-lex-models-v2/src/commands/CreateTestSetDiscrepancyReportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateTestSetDiscrepancyReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateTestSetDiscrepancyReportRequest, CreateTestSetDiscrepancyReportResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateTestSetDiscrepancyReportRequest, CreateTestSetDiscrepancyReportResponse } from "../models/models_0"; import { CreateTestSetDiscrepancyReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/CreateUploadUrlCommand.ts b/clients/client-lex-models-v2/src/commands/CreateUploadUrlCommand.ts index fccdcb41b7acd..8999e7ac0d21f 100644 --- a/clients/client-lex-models-v2/src/commands/CreateUploadUrlCommand.ts +++ b/clients/client-lex-models-v2/src/commands/CreateUploadUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { CreateUploadUrlRequest, CreateUploadUrlResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { CreateUploadUrlRequest, CreateUploadUrlResponse } from "../models/models_0"; import { CreateUploadUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotAliasCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotAliasCommand.ts index 445287587a2f5..cae706ce667a0 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotAliasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteBotAliasRequest, DeleteBotAliasResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteBotAliasRequest, DeleteBotAliasResponse } from "../models/models_0"; import { DeleteBotAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotCommand.ts index 7aab200247a42..17e7d743f802b 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteBotRequest, DeleteBotResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteBotRequest, DeleteBotResponse } from "../models/models_0"; import { DeleteBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotLocaleCommand.ts index f5bae0220a281..412730721d400 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotLocaleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteBotLocaleRequest, DeleteBotLocaleResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteBotLocaleRequest, DeleteBotLocaleResponse } from "../models/models_0"; import { DeleteBotLocale } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotReplicaCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotReplicaCommand.ts index 1de651c960a70..d75d73bc64210 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotReplicaCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotReplicaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteBotReplicaRequest, DeleteBotReplicaResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteBotReplicaRequest, DeleteBotReplicaResponse } from "../models/models_0"; import { DeleteBotReplica } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteBotVersionCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteBotVersionCommand.ts index d5fb2afcc538d..6e92b716300c6 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteBotVersionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteBotVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteBotVersionRequest, DeleteBotVersionResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteBotVersionRequest, DeleteBotVersionResponse } from "../models/models_0"; import { DeleteBotVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteCustomVocabularyCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteCustomVocabularyCommand.ts index a2056891c6782..97024051ea38d 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteCustomVocabularyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteCustomVocabularyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteCustomVocabularyRequest, DeleteCustomVocabularyResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteCustomVocabularyRequest, DeleteCustomVocabularyResponse } from "../models/models_0"; import { DeleteCustomVocabulary } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteExportCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteExportCommand.ts index a2f63222668a7..38a8f165bd086 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteExportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteExportRequest, DeleteExportResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteExportRequest, DeleteExportResponse } from "../models/models_0"; import { DeleteExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteImportCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteImportCommand.ts index 08c06c000ae94..fd8850dd42e66 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteImportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteImportRequest, DeleteImportResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteImportRequest, DeleteImportResponse } from "../models/models_0"; import { DeleteImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteIntentCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteIntentCommand.ts index ff6fc0ab79e40..7f66b12f7aa63 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteIntentCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteIntentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteIntentRequest } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteIntentRequest } from "../models/models_0"; import { DeleteIntent } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyCommand.ts index 26e8967af9de6..46776c0a3027f 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyStatementCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyStatementCommand.ts index 767a0cbf1659a..2cf075c0c89d8 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyStatementCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteResourcePolicyStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteResourcePolicyStatementRequest, DeleteResourcePolicyStatementResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteResourcePolicyStatementRequest, DeleteResourcePolicyStatementResponse } from "../models/models_0"; import { DeleteResourcePolicyStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteSlotCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteSlotCommand.ts index bf9fad8a506e3..a1dc455db08bb 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteSlotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteSlotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteSlotRequest } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteSlotRequest } from "../models/models_0"; import { DeleteSlot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteSlotTypeCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteSlotTypeCommand.ts index 8dd13c5bcd85a..d9a049c4ea9b8 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteSlotTypeCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteSlotTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteSlotTypeRequest } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteSlotTypeRequest } from "../models/models_0"; import { DeleteSlotType } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteTestSetCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteTestSetCommand.ts index 2c017e5a5f86b..2b8c2b6b092fd 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteTestSetCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteTestSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteTestSetRequest } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteTestSetRequest } from "../models/models_0"; import { DeleteTestSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DeleteUtterancesCommand.ts b/clients/client-lex-models-v2/src/commands/DeleteUtterancesCommand.ts index 913511300c22e..d2bec9e2a6ffa 100644 --- a/clients/client-lex-models-v2/src/commands/DeleteUtterancesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DeleteUtterancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DeleteUtterancesRequest, DeleteUtterancesResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DeleteUtterancesRequest, DeleteUtterancesResponse } from "../models/models_0"; import { DeleteUtterances } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotAliasCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotAliasCommand.ts index 24694920339e4..2d463d9314e53 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotAliasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeBotAliasRequest, DescribeBotAliasResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeBotAliasRequest, DescribeBotAliasResponse } from "../models/models_0"; import { DescribeBotAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotCommand.ts index 2a18de123d402..35557f83e9d76 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeBotRequest, DescribeBotResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeBotRequest, DescribeBotResponse } from "../models/models_0"; import { DescribeBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotLocaleCommand.ts index 3eda98cdca0cd..e5e5db6f9b361 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotLocaleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeBotLocaleRequest, DescribeBotLocaleResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeBotLocaleRequest, DescribeBotLocaleResponse } from "../models/models_0"; import { DescribeBotLocale } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotRecommendationCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotRecommendationCommand.ts index d678cf97ae6a6..4a0f0fe12deea 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotRecommendationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotRecommendationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeBotRecommendationRequest, DescribeBotRecommendationResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeBotRecommendationRequest, DescribeBotRecommendationResponse } from "../models/models_0"; import { DescribeBotRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotReplicaCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotReplicaCommand.ts index c6d0c84bee413..88d6625e38234 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotReplicaCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotReplicaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeBotReplicaRequest, DescribeBotReplicaResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeBotReplicaRequest, DescribeBotReplicaResponse } from "../models/models_0"; import { DescribeBotReplica } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotResourceGenerationCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotResourceGenerationCommand.ts index 2b4db9efb07a0..3b65befe5a995 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotResourceGenerationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotResourceGenerationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeBotResourceGenerationRequest, DescribeBotResourceGenerationResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeBotResourceGenerationRequest, DescribeBotResourceGenerationResponse } from "../models/models_0"; import { DescribeBotResourceGeneration } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeBotVersionCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeBotVersionCommand.ts index 91e16c7dd6b8c..c48eb3f13170a 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeBotVersionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeBotVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeBotVersionRequest, DescribeBotVersionResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeBotVersionRequest, DescribeBotVersionResponse } from "../models/models_0"; import { DescribeBotVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeCustomVocabularyMetadataCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeCustomVocabularyMetadataCommand.ts index 4e5daa09d4d8f..8c1825fd179c2 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeCustomVocabularyMetadataCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeCustomVocabularyMetadataCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeCustomVocabularyMetadataRequest, DescribeCustomVocabularyMetadataResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { + DescribeCustomVocabularyMetadataRequest, + DescribeCustomVocabularyMetadataResponse, +} from "../models/models_0"; import { DescribeCustomVocabularyMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeExportCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeExportCommand.ts index dc0fff76850c3..416fc57d610f8 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeExportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeExportRequest, DescribeExportResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeExportRequest, DescribeExportResponse } from "../models/models_0"; import { DescribeExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeImportCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeImportCommand.ts index f33e97f7d1fb6..fecbe6b4389c9 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeImportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeImportRequest, DescribeImportResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeImportRequest, DescribeImportResponse } from "../models/models_0"; import { DescribeImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeIntentCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeIntentCommand.ts index 03e9fdf07588d..caa46171187a7 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeIntentCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeIntentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeIntentRequest } from "../models/models_0"; -import { DescribeIntentResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeIntentRequest } from "../models/models_0"; +import type { DescribeIntentResponse } from "../models/models_1"; import { DescribeIntent } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeResourcePolicyCommand.ts index ee7e66490fbeb..31c86bb1913e2 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; import { DescribeResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeSlotCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeSlotCommand.ts index 0e509478a0e40..246a6927fa364 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeSlotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeSlotCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeSlotRequest } from "../models/models_0"; -import { DescribeSlotResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeSlotRequest } from "../models/models_0"; +import type { DescribeSlotResponse } from "../models/models_1"; import { DescribeSlot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeSlotTypeCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeSlotTypeCommand.ts index 2f4e5eba3fb54..d7f971788a528 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeSlotTypeCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeSlotTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeSlotTypeRequest, DescribeSlotTypeResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeSlotTypeRequest, DescribeSlotTypeResponse } from "../models/models_0"; import { DescribeSlotType } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeTestExecutionCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeTestExecutionCommand.ts index 54fd2db1cdc49..1cff6755ba0b8 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeTestExecutionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeTestExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeTestExecutionRequest, DescribeTestExecutionResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeTestExecutionRequest, DescribeTestExecutionResponse } from "../models/models_0"; import { DescribeTestExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeTestSetCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeTestSetCommand.ts index 6c6574a895c72..241b936ba0246 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeTestSetCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeTestSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeTestSetRequest, DescribeTestSetResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeTestSetRequest, DescribeTestSetResponse } from "../models/models_0"; import { DescribeTestSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeTestSetDiscrepancyReportCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeTestSetDiscrepancyReportCommand.ts index 0fc5291269e26..03c560797f002 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeTestSetDiscrepancyReportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeTestSetDiscrepancyReportCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeTestSetDiscrepancyReportRequest, DescribeTestSetDiscrepancyReportResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { + DescribeTestSetDiscrepancyReportRequest, + DescribeTestSetDiscrepancyReportResponse, +} from "../models/models_0"; import { DescribeTestSetDiscrepancyReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/DescribeTestSetGenerationCommand.ts b/clients/client-lex-models-v2/src/commands/DescribeTestSetGenerationCommand.ts index 9c95c72f393a6..341ae55d5f7a4 100644 --- a/clients/client-lex-models-v2/src/commands/DescribeTestSetGenerationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/DescribeTestSetGenerationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { DescribeTestSetGenerationRequest, DescribeTestSetGenerationResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { DescribeTestSetGenerationRequest, DescribeTestSetGenerationResponse } from "../models/models_0"; import { DescribeTestSetGeneration } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/GenerateBotElementCommand.ts b/clients/client-lex-models-v2/src/commands/GenerateBotElementCommand.ts index b4b8aaf309f1b..da2df5d099dc7 100644 --- a/clients/client-lex-models-v2/src/commands/GenerateBotElementCommand.ts +++ b/clients/client-lex-models-v2/src/commands/GenerateBotElementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { GenerateBotElementRequest, GenerateBotElementResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { GenerateBotElementRequest, GenerateBotElementResponse } from "../models/models_0"; import { GenerateBotElement } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/GetTestExecutionArtifactsUrlCommand.ts b/clients/client-lex-models-v2/src/commands/GetTestExecutionArtifactsUrlCommand.ts index 47d0d80bad30f..a0e0fe832973d 100644 --- a/clients/client-lex-models-v2/src/commands/GetTestExecutionArtifactsUrlCommand.ts +++ b/clients/client-lex-models-v2/src/commands/GetTestExecutionArtifactsUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { GetTestExecutionArtifactsUrlRequest, GetTestExecutionArtifactsUrlResponse } from "../models/models_0"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { GetTestExecutionArtifactsUrlRequest, GetTestExecutionArtifactsUrlResponse } from "../models/models_0"; import { GetTestExecutionArtifactsUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListAggregatedUtterancesCommand.ts b/clients/client-lex-models-v2/src/commands/ListAggregatedUtterancesCommand.ts index 7c23a675358b3..5443edd5c28f9 100644 --- a/clients/client-lex-models-v2/src/commands/ListAggregatedUtterancesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListAggregatedUtterancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListAggregatedUtterancesRequest, ListAggregatedUtterancesResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListAggregatedUtterancesRequest, ListAggregatedUtterancesResponse } from "../models/models_1"; import { ListAggregatedUtterances } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBotAliasReplicasCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotAliasReplicasCommand.ts index 60878c05dcc13..9dda5503f60e2 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotAliasReplicasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotAliasReplicasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBotAliasReplicasRequest, ListBotAliasReplicasResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBotAliasReplicasRequest, ListBotAliasReplicasResponse } from "../models/models_1"; import { ListBotAliasReplicas } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBotAliasesCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotAliasesCommand.ts index cb214ce5dfc32..4f6bd0b254b9d 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotAliasesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBotAliasesRequest, ListBotAliasesResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBotAliasesRequest, ListBotAliasesResponse } from "../models/models_1"; import { ListBotAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBotLocalesCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotLocalesCommand.ts index a341e67264d3a..7f34c89cd6fe6 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotLocalesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotLocalesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBotLocalesRequest, ListBotLocalesResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBotLocalesRequest, ListBotLocalesResponse } from "../models/models_1"; import { ListBotLocales } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBotRecommendationsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotRecommendationsCommand.ts index b492a7b3b50c0..0306698ef10e4 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotRecommendationsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBotRecommendationsRequest, ListBotRecommendationsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBotRecommendationsRequest, ListBotRecommendationsResponse } from "../models/models_1"; import { ListBotRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBotReplicasCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotReplicasCommand.ts index 471998719bd1a..9e2fa3840e251 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotReplicasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotReplicasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBotReplicasRequest, ListBotReplicasResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBotReplicasRequest, ListBotReplicasResponse } from "../models/models_1"; import { ListBotReplicas } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBotResourceGenerationsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotResourceGenerationsCommand.ts index 4517a65e97f39..58b2447993bd1 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotResourceGenerationsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotResourceGenerationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBotResourceGenerationsRequest, ListBotResourceGenerationsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBotResourceGenerationsRequest, ListBotResourceGenerationsResponse } from "../models/models_1"; import { ListBotResourceGenerations } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBotVersionReplicasCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotVersionReplicasCommand.ts index 87b17a45f4c87..790babe3cb3c3 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotVersionReplicasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotVersionReplicasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBotVersionReplicasRequest, ListBotVersionReplicasResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBotVersionReplicasRequest, ListBotVersionReplicasResponse } from "../models/models_1"; import { ListBotVersionReplicas } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBotVersionsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotVersionsCommand.ts index d981dc2d8eac1..302f140d58cf6 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotVersionsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBotVersionsRequest, ListBotVersionsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBotVersionsRequest, ListBotVersionsResponse } from "../models/models_1"; import { ListBotVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBotsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBotsCommand.ts index 133b6336a710b..4d5347451d87b 100644 --- a/clients/client-lex-models-v2/src/commands/ListBotsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBotsRequest, ListBotsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBotsRequest, ListBotsResponse } from "../models/models_1"; import { ListBots } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBuiltInIntentsCommand.ts b/clients/client-lex-models-v2/src/commands/ListBuiltInIntentsCommand.ts index fea03d437adf3..a13fc7228703a 100644 --- a/clients/client-lex-models-v2/src/commands/ListBuiltInIntentsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBuiltInIntentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBuiltInIntentsRequest, ListBuiltInIntentsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBuiltInIntentsRequest, ListBuiltInIntentsResponse } from "../models/models_1"; import { ListBuiltInIntents } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListBuiltInSlotTypesCommand.ts b/clients/client-lex-models-v2/src/commands/ListBuiltInSlotTypesCommand.ts index b8cb79c98e6ad..d69fcfb9de0d6 100644 --- a/clients/client-lex-models-v2/src/commands/ListBuiltInSlotTypesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListBuiltInSlotTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListBuiltInSlotTypesRequest, ListBuiltInSlotTypesResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListBuiltInSlotTypesRequest, ListBuiltInSlotTypesResponse } from "../models/models_1"; import { ListBuiltInSlotTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListCustomVocabularyItemsCommand.ts b/clients/client-lex-models-v2/src/commands/ListCustomVocabularyItemsCommand.ts index a85e44507d4a2..13bed637ad90f 100644 --- a/clients/client-lex-models-v2/src/commands/ListCustomVocabularyItemsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListCustomVocabularyItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListCustomVocabularyItemsRequest, ListCustomVocabularyItemsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListCustomVocabularyItemsRequest, ListCustomVocabularyItemsResponse } from "../models/models_1"; import { ListCustomVocabularyItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListExportsCommand.ts b/clients/client-lex-models-v2/src/commands/ListExportsCommand.ts index 1b1f1cdb4b693..ff7c3390517b0 100644 --- a/clients/client-lex-models-v2/src/commands/ListExportsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListExportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListExportsRequest, ListExportsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListExportsRequest, ListExportsResponse } from "../models/models_1"; import { ListExports } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListImportsCommand.ts b/clients/client-lex-models-v2/src/commands/ListImportsCommand.ts index a52492c13717a..41fc58146fefb 100644 --- a/clients/client-lex-models-v2/src/commands/ListImportsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListImportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListImportsRequest, ListImportsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListImportsRequest, ListImportsResponse } from "../models/models_1"; import { ListImports } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListIntentMetricsCommand.ts b/clients/client-lex-models-v2/src/commands/ListIntentMetricsCommand.ts index ce9bea0e774c6..007caa72ba69c 100644 --- a/clients/client-lex-models-v2/src/commands/ListIntentMetricsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListIntentMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListIntentMetricsRequest, ListIntentMetricsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListIntentMetricsRequest, ListIntentMetricsResponse } from "../models/models_1"; import { ListIntentMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListIntentPathsCommand.ts b/clients/client-lex-models-v2/src/commands/ListIntentPathsCommand.ts index 05c5512a5323b..573cd84fb7904 100644 --- a/clients/client-lex-models-v2/src/commands/ListIntentPathsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListIntentPathsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListIntentPathsRequest, ListIntentPathsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListIntentPathsRequest, ListIntentPathsResponse } from "../models/models_1"; import { ListIntentPaths } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListIntentStageMetricsCommand.ts b/clients/client-lex-models-v2/src/commands/ListIntentStageMetricsCommand.ts index e10d4c086c207..f41f427a6e047 100644 --- a/clients/client-lex-models-v2/src/commands/ListIntentStageMetricsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListIntentStageMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListIntentStageMetricsRequest, ListIntentStageMetricsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListIntentStageMetricsRequest, ListIntentStageMetricsResponse } from "../models/models_1"; import { ListIntentStageMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListIntentsCommand.ts b/clients/client-lex-models-v2/src/commands/ListIntentsCommand.ts index 6057615912d4f..8f15008abcc42 100644 --- a/clients/client-lex-models-v2/src/commands/ListIntentsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListIntentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListIntentsRequest, ListIntentsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListIntentsRequest, ListIntentsResponse } from "../models/models_1"; import { ListIntents } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListRecommendedIntentsCommand.ts b/clients/client-lex-models-v2/src/commands/ListRecommendedIntentsCommand.ts index 4b5bf18005542..79e9fdcf3ea0f 100644 --- a/clients/client-lex-models-v2/src/commands/ListRecommendedIntentsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListRecommendedIntentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListRecommendedIntentsRequest, ListRecommendedIntentsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListRecommendedIntentsRequest, ListRecommendedIntentsResponse } from "../models/models_1"; import { ListRecommendedIntents } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListSessionAnalyticsDataCommand.ts b/clients/client-lex-models-v2/src/commands/ListSessionAnalyticsDataCommand.ts index 898e7f67ad4ef..9f575d0e393aa 100644 --- a/clients/client-lex-models-v2/src/commands/ListSessionAnalyticsDataCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListSessionAnalyticsDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListSessionAnalyticsDataRequest, ListSessionAnalyticsDataResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListSessionAnalyticsDataRequest, ListSessionAnalyticsDataResponse } from "../models/models_1"; import { ListSessionAnalyticsData } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListSessionMetricsCommand.ts b/clients/client-lex-models-v2/src/commands/ListSessionMetricsCommand.ts index 897de4324c36c..773898fa850fc 100644 --- a/clients/client-lex-models-v2/src/commands/ListSessionMetricsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListSessionMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListSessionMetricsRequest, ListSessionMetricsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListSessionMetricsRequest, ListSessionMetricsResponse } from "../models/models_1"; import { ListSessionMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListSlotTypesCommand.ts b/clients/client-lex-models-v2/src/commands/ListSlotTypesCommand.ts index 90e393ac57742..efe363afb5337 100644 --- a/clients/client-lex-models-v2/src/commands/ListSlotTypesCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListSlotTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListSlotTypesRequest, ListSlotTypesResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListSlotTypesRequest, ListSlotTypesResponse } from "../models/models_1"; import { ListSlotTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListSlotsCommand.ts b/clients/client-lex-models-v2/src/commands/ListSlotsCommand.ts index 93c6d7040b94f..d8aba2e4b09ef 100644 --- a/clients/client-lex-models-v2/src/commands/ListSlotsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListSlotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListSlotsRequest, ListSlotsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListSlotsRequest, ListSlotsResponse } from "../models/models_1"; import { ListSlots } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListTagsForResourceCommand.ts b/clients/client-lex-models-v2/src/commands/ListTagsForResourceCommand.ts index 1f408df8c1f15..ac4e25d90312a 100644 --- a/clients/client-lex-models-v2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListTestExecutionResultItemsCommand.ts b/clients/client-lex-models-v2/src/commands/ListTestExecutionResultItemsCommand.ts index fcb8145a21c94..b5ca1b55d1de1 100644 --- a/clients/client-lex-models-v2/src/commands/ListTestExecutionResultItemsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTestExecutionResultItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListTestExecutionResultItemsRequest, ListTestExecutionResultItemsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListTestExecutionResultItemsRequest, ListTestExecutionResultItemsResponse } from "../models/models_1"; import { ListTestExecutionResultItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListTestExecutionsCommand.ts b/clients/client-lex-models-v2/src/commands/ListTestExecutionsCommand.ts index 81c339b53f077..fa7535761c70b 100644 --- a/clients/client-lex-models-v2/src/commands/ListTestExecutionsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTestExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListTestExecutionsRequest, ListTestExecutionsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListTestExecutionsRequest, ListTestExecutionsResponse } from "../models/models_1"; import { ListTestExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListTestSetRecordsCommand.ts b/clients/client-lex-models-v2/src/commands/ListTestSetRecordsCommand.ts index 0e0e2f2d43295..46041228af16a 100644 --- a/clients/client-lex-models-v2/src/commands/ListTestSetRecordsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTestSetRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListTestSetRecordsRequest, ListTestSetRecordsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListTestSetRecordsRequest, ListTestSetRecordsResponse } from "../models/models_1"; import { ListTestSetRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListTestSetsCommand.ts b/clients/client-lex-models-v2/src/commands/ListTestSetsCommand.ts index d7a358542ff4c..438b0033412f3 100644 --- a/clients/client-lex-models-v2/src/commands/ListTestSetsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListTestSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListTestSetsRequest, ListTestSetsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListTestSetsRequest, ListTestSetsResponse } from "../models/models_1"; import { ListTestSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListUtteranceAnalyticsDataCommand.ts b/clients/client-lex-models-v2/src/commands/ListUtteranceAnalyticsDataCommand.ts index f1a42cfb9d448..5a9de7db9c83f 100644 --- a/clients/client-lex-models-v2/src/commands/ListUtteranceAnalyticsDataCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListUtteranceAnalyticsDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListUtteranceAnalyticsDataRequest, ListUtteranceAnalyticsDataResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListUtteranceAnalyticsDataRequest, ListUtteranceAnalyticsDataResponse } from "../models/models_1"; import { ListUtteranceAnalyticsData } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/ListUtteranceMetricsCommand.ts b/clients/client-lex-models-v2/src/commands/ListUtteranceMetricsCommand.ts index 07d183e3cff31..e6742f4ef429a 100644 --- a/clients/client-lex-models-v2/src/commands/ListUtteranceMetricsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/ListUtteranceMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { ListUtteranceMetricsRequest, ListUtteranceMetricsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { ListUtteranceMetricsRequest, ListUtteranceMetricsResponse } from "../models/models_1"; import { ListUtteranceMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/SearchAssociatedTranscriptsCommand.ts b/clients/client-lex-models-v2/src/commands/SearchAssociatedTranscriptsCommand.ts index bc139e2a768b2..2adbf9129157b 100644 --- a/clients/client-lex-models-v2/src/commands/SearchAssociatedTranscriptsCommand.ts +++ b/clients/client-lex-models-v2/src/commands/SearchAssociatedTranscriptsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { SearchAssociatedTranscriptsRequest, SearchAssociatedTranscriptsResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { SearchAssociatedTranscriptsRequest, SearchAssociatedTranscriptsResponse } from "../models/models_1"; import { SearchAssociatedTranscripts } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/StartBotRecommendationCommand.ts b/clients/client-lex-models-v2/src/commands/StartBotRecommendationCommand.ts index 759fead14bbf3..089c73cac56fe 100644 --- a/clients/client-lex-models-v2/src/commands/StartBotRecommendationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartBotRecommendationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { StartBotRecommendationRequest, StartBotRecommendationResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { StartBotRecommendationRequest, StartBotRecommendationResponse } from "../models/models_1"; import { StartBotRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/StartBotResourceGenerationCommand.ts b/clients/client-lex-models-v2/src/commands/StartBotResourceGenerationCommand.ts index b857946572ed9..0837fe457ab8d 100644 --- a/clients/client-lex-models-v2/src/commands/StartBotResourceGenerationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartBotResourceGenerationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { StartBotResourceGenerationRequest, StartBotResourceGenerationResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { StartBotResourceGenerationRequest, StartBotResourceGenerationResponse } from "../models/models_1"; import { StartBotResourceGeneration } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/StartImportCommand.ts b/clients/client-lex-models-v2/src/commands/StartImportCommand.ts index ac37b24f386f5..5f2dd6426be8a 100644 --- a/clients/client-lex-models-v2/src/commands/StartImportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { StartImportRequest, StartImportResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { StartImportRequest, StartImportResponse } from "../models/models_1"; import { StartImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/StartTestExecutionCommand.ts b/clients/client-lex-models-v2/src/commands/StartTestExecutionCommand.ts index ec0ed07c66245..3a850c6fb3be4 100644 --- a/clients/client-lex-models-v2/src/commands/StartTestExecutionCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartTestExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { StartTestExecutionRequest, StartTestExecutionResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { StartTestExecutionRequest, StartTestExecutionResponse } from "../models/models_1"; import { StartTestExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/StartTestSetGenerationCommand.ts b/clients/client-lex-models-v2/src/commands/StartTestSetGenerationCommand.ts index a2f21a1e978e5..0f57fdb5bfb3b 100644 --- a/clients/client-lex-models-v2/src/commands/StartTestSetGenerationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StartTestSetGenerationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { StartTestSetGenerationRequest, StartTestSetGenerationResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { StartTestSetGenerationRequest, StartTestSetGenerationResponse } from "../models/models_1"; import { StartTestSetGeneration } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/StopBotRecommendationCommand.ts b/clients/client-lex-models-v2/src/commands/StopBotRecommendationCommand.ts index 85d48e8d7ecc0..f0a1836463052 100644 --- a/clients/client-lex-models-v2/src/commands/StopBotRecommendationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/StopBotRecommendationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { StopBotRecommendationRequest, StopBotRecommendationResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { StopBotRecommendationRequest, StopBotRecommendationResponse } from "../models/models_1"; import { StopBotRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/TagResourceCommand.ts b/clients/client-lex-models-v2/src/commands/TagResourceCommand.ts index dd8c46d55c429..ae2d9a9b94bb2 100644 --- a/clients/client-lex-models-v2/src/commands/TagResourceCommand.ts +++ b/clients/client-lex-models-v2/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UntagResourceCommand.ts b/clients/client-lex-models-v2/src/commands/UntagResourceCommand.ts index cc30a79ea1c72..8a4f52d589461 100644 --- a/clients/client-lex-models-v2/src/commands/UntagResourceCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateBotAliasCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateBotAliasCommand.ts index c453241fc57ea..2b8f3dd0195d9 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateBotAliasCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateBotAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateBotAliasRequest, UpdateBotAliasResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateBotAliasRequest, UpdateBotAliasResponse } from "../models/models_1"; import { UpdateBotAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateBotCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateBotCommand.ts index 971cb1af1b109..f27f6733ae4a2 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateBotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateBotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateBotRequest, UpdateBotResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateBotRequest, UpdateBotResponse } from "../models/models_1"; import { UpdateBot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateBotLocaleCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateBotLocaleCommand.ts index 010aa2e965f4b..801a3932c041b 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateBotLocaleCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateBotLocaleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateBotLocaleRequest, UpdateBotLocaleResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateBotLocaleRequest, UpdateBotLocaleResponse } from "../models/models_1"; import { UpdateBotLocale } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateBotRecommendationCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateBotRecommendationCommand.ts index 0035184955d77..88f750008d16f 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateBotRecommendationCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateBotRecommendationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateBotRecommendationRequest, UpdateBotRecommendationResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateBotRecommendationRequest, UpdateBotRecommendationResponse } from "../models/models_1"; import { UpdateBotRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateExportCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateExportCommand.ts index d58a2c97e8d77..18ba960ed4502 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateExportCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateExportRequest, UpdateExportResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateExportRequest, UpdateExportResponse } from "../models/models_1"; import { UpdateExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateIntentCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateIntentCommand.ts index e980cfb0e58c8..3bf5ca85c6057 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateIntentCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateIntentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateIntentRequest, UpdateIntentResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateIntentRequest, UpdateIntentResponse } from "../models/models_1"; import { UpdateIntent } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateResourcePolicyCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateResourcePolicyCommand.ts index 71d990c638f48..49c27af242625 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateResourcePolicyCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateResourcePolicyRequest, UpdateResourcePolicyResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateResourcePolicyRequest, UpdateResourcePolicyResponse } from "../models/models_1"; import { UpdateResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateSlotCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateSlotCommand.ts index 4a4a9f42a5624..aa83e4b4226ba 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateSlotCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateSlotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateSlotRequest, UpdateSlotResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateSlotRequest, UpdateSlotResponse } from "../models/models_1"; import { UpdateSlot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateSlotTypeCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateSlotTypeCommand.ts index 103ab33637ffb..3c1d77c200d7d 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateSlotTypeCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateSlotTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateSlotTypeRequest, UpdateSlotTypeResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateSlotTypeRequest, UpdateSlotTypeResponse } from "../models/models_1"; import { UpdateSlotType } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/commands/UpdateTestSetCommand.ts b/clients/client-lex-models-v2/src/commands/UpdateTestSetCommand.ts index 5c3d038b1ec1b..d80d60f9be712 100644 --- a/clients/client-lex-models-v2/src/commands/UpdateTestSetCommand.ts +++ b/clients/client-lex-models-v2/src/commands/UpdateTestSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; -import { UpdateTestSetRequest, UpdateTestSetResponse } from "../models/models_1"; +import type { LexModelsV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexModelsV2Client"; +import type { UpdateTestSetRequest, UpdateTestSetResponse } from "../models/models_1"; import { UpdateTestSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-models-v2/src/endpoint/EndpointParameters.ts b/clients/client-lex-models-v2/src/endpoint/EndpointParameters.ts index e5a39831ed79f..c4e9e45f4eb00 100644 --- a/clients/client-lex-models-v2/src/endpoint/EndpointParameters.ts +++ b/clients/client-lex-models-v2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-lex-models-v2/src/endpoint/endpointResolver.ts b/clients/client-lex-models-v2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-lex-models-v2/src/endpoint/endpointResolver.ts +++ b/clients/client-lex-models-v2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-lex-models-v2/src/extensionConfiguration.ts b/clients/client-lex-models-v2/src/extensionConfiguration.ts index 3ada6f7abbe24..dd106ae04da08 100644 --- a/clients/client-lex-models-v2/src/extensionConfiguration.ts +++ b/clients/client-lex-models-v2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-lex-models-v2/src/models/LexModelsV2ServiceException.ts b/clients/client-lex-models-v2/src/models/LexModelsV2ServiceException.ts index 4439220e97c1c..f277d8aacf533 100644 --- a/clients/client-lex-models-v2/src/models/LexModelsV2ServiceException.ts +++ b/clients/client-lex-models-v2/src/models/LexModelsV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-lex-models-v2/src/models/errors.ts b/clients/client-lex-models-v2/src/models/errors.ts index 232733397b14e..7a70cb64df619 100644 --- a/clients/client-lex-models-v2/src/models/errors.ts +++ b/clients/client-lex-models-v2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LexModelsV2ServiceException as __BaseException } from "./LexModelsV2ServiceException"; diff --git a/clients/client-lex-models-v2/src/pagination/Interfaces.ts b/clients/client-lex-models-v2/src/pagination/Interfaces.ts index 775dd498ee92e..0d5f11a445ddb 100644 --- a/clients/client-lex-models-v2/src/pagination/Interfaces.ts +++ b/clients/client-lex-models-v2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { LexModelsV2Client } from "../LexModelsV2Client"; diff --git a/clients/client-lex-models-v2/src/pagination/ListAggregatedUtterancesPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListAggregatedUtterancesPaginator.ts index 99e8cf7c73729..b7079828fcd56 100644 --- a/clients/client-lex-models-v2/src/pagination/ListAggregatedUtterancesPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListAggregatedUtterancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAggregatedUtterancesCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListBotAliasReplicasPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBotAliasReplicasPaginator.ts index d5710db16cce3..99d10b0f4ef40 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBotAliasReplicasPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBotAliasReplicasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBotAliasReplicasCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListBotAliasesPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBotAliasesPaginator.ts index 50ff18986dee1..fb38168b8dd57 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBotAliasesPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBotAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBotAliasesCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListBotLocalesPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBotLocalesPaginator.ts index b950cecc36115..d314b88c5227c 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBotLocalesPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBotLocalesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBotLocalesCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListBotRecommendationsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBotRecommendationsPaginator.ts index 4e7d2ce7f9795..780c48f23a374 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBotRecommendationsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBotRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBotRecommendationsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListBotResourceGenerationsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBotResourceGenerationsPaginator.ts index d428699d80d3c..96239e1dc7cd0 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBotResourceGenerationsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBotResourceGenerationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBotResourceGenerationsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListBotVersionReplicasPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBotVersionReplicasPaginator.ts index 0971a397e4bf2..26a27b5c52301 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBotVersionReplicasPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBotVersionReplicasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBotVersionReplicasCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListBotVersionsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBotVersionsPaginator.ts index e2a7ce1a38bf6..9e0b5231462bc 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBotVersionsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBotVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBotVersionsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListBotsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBotsPaginator.ts index a9c6d4c32b671..6e21762eddab3 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBotsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBotsCommand, ListBotsCommandInput, ListBotsCommandOutput } from "../commands/ListBotsCommand"; import { LexModelsV2Client } from "../LexModelsV2Client"; diff --git a/clients/client-lex-models-v2/src/pagination/ListBuiltInIntentsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBuiltInIntentsPaginator.ts index 862186d89aa2c..3a025621d04eb 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBuiltInIntentsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBuiltInIntentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBuiltInIntentsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListBuiltInSlotTypesPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListBuiltInSlotTypesPaginator.ts index 19b3c14158e4e..bbe7eb6c28d38 100644 --- a/clients/client-lex-models-v2/src/pagination/ListBuiltInSlotTypesPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListBuiltInSlotTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBuiltInSlotTypesCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListCustomVocabularyItemsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListCustomVocabularyItemsPaginator.ts index 68214f47cc12c..46129b4515f26 100644 --- a/clients/client-lex-models-v2/src/pagination/ListCustomVocabularyItemsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListCustomVocabularyItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomVocabularyItemsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListExportsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListExportsPaginator.ts index 5768946215910..aa79bf661eb19 100644 --- a/clients/client-lex-models-v2/src/pagination/ListExportsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExportsCommand, ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand"; import { LexModelsV2Client } from "../LexModelsV2Client"; diff --git a/clients/client-lex-models-v2/src/pagination/ListImportsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListImportsPaginator.ts index bd7e24370db4e..b48de7a006954 100644 --- a/clients/client-lex-models-v2/src/pagination/ListImportsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListImportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImportsCommand, ListImportsCommandInput, ListImportsCommandOutput } from "../commands/ListImportsCommand"; import { LexModelsV2Client } from "../LexModelsV2Client"; diff --git a/clients/client-lex-models-v2/src/pagination/ListIntentMetricsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListIntentMetricsPaginator.ts index c0cfbd4c2e37b..1008acb243681 100644 --- a/clients/client-lex-models-v2/src/pagination/ListIntentMetricsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListIntentMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIntentMetricsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListIntentStageMetricsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListIntentStageMetricsPaginator.ts index 108e2db3f7de4..21d1e95657c03 100644 --- a/clients/client-lex-models-v2/src/pagination/ListIntentStageMetricsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListIntentStageMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIntentStageMetricsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListIntentsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListIntentsPaginator.ts index d5db0b66389f3..95c54d46b6d89 100644 --- a/clients/client-lex-models-v2/src/pagination/ListIntentsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListIntentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIntentsCommand, ListIntentsCommandInput, ListIntentsCommandOutput } from "../commands/ListIntentsCommand"; import { LexModelsV2Client } from "../LexModelsV2Client"; diff --git a/clients/client-lex-models-v2/src/pagination/ListRecommendedIntentsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListRecommendedIntentsPaginator.ts index 34aa5309748ec..42115654e47c5 100644 --- a/clients/client-lex-models-v2/src/pagination/ListRecommendedIntentsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListRecommendedIntentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendedIntentsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListSessionAnalyticsDataPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListSessionAnalyticsDataPaginator.ts index f0e1a81737a72..b1d394e49a81e 100644 --- a/clients/client-lex-models-v2/src/pagination/ListSessionAnalyticsDataPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListSessionAnalyticsDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSessionAnalyticsDataCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListSessionMetricsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListSessionMetricsPaginator.ts index eadb49d78bc76..9df81197e592d 100644 --- a/clients/client-lex-models-v2/src/pagination/ListSessionMetricsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListSessionMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSessionMetricsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListSlotTypesPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListSlotTypesPaginator.ts index 667b8cfe51c92..48b3f614ada7f 100644 --- a/clients/client-lex-models-v2/src/pagination/ListSlotTypesPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListSlotTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSlotTypesCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListSlotsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListSlotsPaginator.ts index 9b321166e28d1..6798aab620170 100644 --- a/clients/client-lex-models-v2/src/pagination/ListSlotsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListSlotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSlotsCommand, ListSlotsCommandInput, ListSlotsCommandOutput } from "../commands/ListSlotsCommand"; import { LexModelsV2Client } from "../LexModelsV2Client"; diff --git a/clients/client-lex-models-v2/src/pagination/ListTestExecutionResultItemsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListTestExecutionResultItemsPaginator.ts index 5e70e1dd46c0d..4ad5702a34fa1 100644 --- a/clients/client-lex-models-v2/src/pagination/ListTestExecutionResultItemsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListTestExecutionResultItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestExecutionResultItemsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListTestExecutionsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListTestExecutionsPaginator.ts index f0289a4274c0b..f04a0c0e530a1 100644 --- a/clients/client-lex-models-v2/src/pagination/ListTestExecutionsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListTestExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestExecutionsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListTestSetRecordsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListTestSetRecordsPaginator.ts index 9e44947c2a186..a91d2e53a6df7 100644 --- a/clients/client-lex-models-v2/src/pagination/ListTestSetRecordsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListTestSetRecordsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestSetRecordsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListTestSetsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListTestSetsPaginator.ts index 2ed339f05bdcd..899e3d3e6f516 100644 --- a/clients/client-lex-models-v2/src/pagination/ListTestSetsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListTestSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestSetsCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListUtteranceAnalyticsDataPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListUtteranceAnalyticsDataPaginator.ts index 7acb8b2b7b1f0..e27ff58ef790c 100644 --- a/clients/client-lex-models-v2/src/pagination/ListUtteranceAnalyticsDataPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListUtteranceAnalyticsDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUtteranceAnalyticsDataCommand, diff --git a/clients/client-lex-models-v2/src/pagination/ListUtteranceMetricsPaginator.ts b/clients/client-lex-models-v2/src/pagination/ListUtteranceMetricsPaginator.ts index ea4334bf4c88b..eb42c6457aca0 100644 --- a/clients/client-lex-models-v2/src/pagination/ListUtteranceMetricsPaginator.ts +++ b/clients/client-lex-models-v2/src/pagination/ListUtteranceMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUtteranceMetricsCommand, diff --git a/clients/client-lex-models-v2/src/runtimeConfig.browser.ts b/clients/client-lex-models-v2/src/runtimeConfig.browser.ts index 02bb8e237cd7d..4d1c4a859e024 100644 --- a/clients/client-lex-models-v2/src/runtimeConfig.browser.ts +++ b/clients/client-lex-models-v2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LexModelsV2ClientConfig } from "./LexModelsV2Client"; + +import type { LexModelsV2ClientConfig } from "./LexModelsV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-lex-models-v2/src/runtimeConfig.native.ts b/clients/client-lex-models-v2/src/runtimeConfig.native.ts index e1a73317f6cb6..3861201442961 100644 --- a/clients/client-lex-models-v2/src/runtimeConfig.native.ts +++ b/clients/client-lex-models-v2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LexModelsV2ClientConfig } from "./LexModelsV2Client"; +import type { LexModelsV2ClientConfig } from "./LexModelsV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-lex-models-v2/src/runtimeConfig.shared.ts b/clients/client-lex-models-v2/src/runtimeConfig.shared.ts index 5bd31fb4ab139..e972a7cb7f3cc 100644 --- a/clients/client-lex-models-v2/src/runtimeConfig.shared.ts +++ b/clients/client-lex-models-v2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLexModelsV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LexModelsV2ClientConfig } from "./LexModelsV2Client"; +import type { LexModelsV2ClientConfig } from "./LexModelsV2Client"; /** * @internal diff --git a/clients/client-lex-models-v2/src/runtimeConfig.ts b/clients/client-lex-models-v2/src/runtimeConfig.ts index 5e7353d7889d2..0d91621273138 100644 --- a/clients/client-lex-models-v2/src/runtimeConfig.ts +++ b/clients/client-lex-models-v2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LexModelsV2ClientConfig } from "./LexModelsV2Client"; + +import type { LexModelsV2ClientConfig } from "./LexModelsV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-lex-models-v2/src/runtimeExtensions.ts b/clients/client-lex-models-v2/src/runtimeExtensions.ts index dbec6673fe276..d46cde3255409 100644 --- a/clients/client-lex-models-v2/src/runtimeExtensions.ts +++ b/clients/client-lex-models-v2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LexModelsV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { LexModelsV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-lex-models-v2/src/schemas/schemas_0.ts b/clients/client-lex-models-v2/src/schemas/schemas_0.ts index 167fd00d54422..17e0c4f710fc6 100644 --- a/clients/client-lex-models-v2/src/schemas/schemas_0.ts +++ b/clients/client-lex-models-v2/src/schemas/schemas_0.ts @@ -1209,7 +1209,7 @@ const n0 = "com.amazonaws.lexmodelsv2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-lex-runtime-service/package.json b/clients/client-lex-runtime-service/package.json index 6a88552645e89..fd5306fca499e 100644 --- a/clients/client-lex-runtime-service/package.json +++ b/clients/client-lex-runtime-service/package.json @@ -34,26 +34,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-lex-runtime-service/src/LexRuntimeService.ts b/clients/client-lex-runtime-service/src/LexRuntimeService.ts index f4e869036c6ae..6228279e66608 100644 --- a/clients/client-lex-runtime-service/src/LexRuntimeService.ts +++ b/clients/client-lex-runtime-service/src/LexRuntimeService.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteSessionCommand, @@ -11,7 +11,7 @@ import { GetSessionCommand, GetSessionCommandInput, GetSessionCommandOutput } fr import { PostContentCommand, PostContentCommandInput, PostContentCommandOutput } from "./commands/PostContentCommand"; import { PostTextCommand, PostTextCommandInput, PostTextCommandOutput } from "./commands/PostTextCommand"; import { PutSessionCommand, PutSessionCommandInput, PutSessionCommandOutput } from "./commands/PutSessionCommand"; -import { LexRuntimeServiceClient, LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient"; +import { LexRuntimeServiceClient } from "./LexRuntimeServiceClient"; const commands = { DeleteSessionCommand, diff --git a/clients/client-lex-runtime-service/src/LexRuntimeServiceClient.ts b/clients/client-lex-runtime-service/src/LexRuntimeServiceClient.ts index 8199aa3af47ee..a4e099ecbd767 100644 --- a/clients/client-lex-runtime-service/src/LexRuntimeServiceClient.ts +++ b/clients/client-lex-runtime-service/src/LexRuntimeServiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLexRuntimeServiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DeleteSessionCommandInput, DeleteSessionCommandOutput } from "./commands/DeleteSessionCommand"; @@ -70,7 +79,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-lex-runtime-service/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-lex-runtime-service/src/auth/httpAuthExtensionConfiguration.ts index cc59fe9cbb302..01161c49bd094 100644 --- a/clients/client-lex-runtime-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-lex-runtime-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LexRuntimeServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LexRuntimeServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-lex-runtime-service/src/auth/httpAuthSchemeProvider.ts b/clients/client-lex-runtime-service/src/auth/httpAuthSchemeProvider.ts index 7030c8911847b..5e3fcb1399c7f 100644 --- a/clients/client-lex-runtime-service/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-lex-runtime-service/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LexRuntimeServiceClientConfig, LexRuntimeServiceClientResolvedConfig } from "../LexRuntimeServiceClient"; +import { type LexRuntimeServiceClientResolvedConfig, LexRuntimeServiceClientConfig } from "../LexRuntimeServiceClient"; /** * @internal diff --git a/clients/client-lex-runtime-service/src/commands/DeleteSessionCommand.ts b/clients/client-lex-runtime-service/src/commands/DeleteSessionCommand.ts index d4160c3dcf843..c2315365ff098 100644 --- a/clients/client-lex-runtime-service/src/commands/DeleteSessionCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/DeleteSessionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexRuntimeServiceClient"; -import { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0"; +import type { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0"; import { DeleteSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-runtime-service/src/commands/GetSessionCommand.ts b/clients/client-lex-runtime-service/src/commands/GetSessionCommand.ts index 6b1260c4b1b5f..cbd2ece9e6142 100644 --- a/clients/client-lex-runtime-service/src/commands/GetSessionCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/GetSessionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexRuntimeServiceClient"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_0"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_0"; import { GetSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-runtime-service/src/commands/PostContentCommand.ts b/clients/client-lex-runtime-service/src/commands/PostContentCommand.ts index 693ec4e949a4a..ef1e5799da414 100644 --- a/clients/client-lex-runtime-service/src/commands/PostContentCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/PostContentCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes, StreamingBlobPayloadOutputTypes, } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-lex-runtime-service/src/commands/PostTextCommand.ts b/clients/client-lex-runtime-service/src/commands/PostTextCommand.ts index 2d9d1ba1affbd..2d0456207f8d2 100644 --- a/clients/client-lex-runtime-service/src/commands/PostTextCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/PostTextCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexRuntimeServiceClient"; -import { PostTextRequest, PostTextResponse } from "../models/models_0"; +import type { PostTextRequest, PostTextResponse } from "../models/models_0"; import { PostText } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-runtime-service/src/commands/PutSessionCommand.ts b/clients/client-lex-runtime-service/src/commands/PutSessionCommand.ts index c70a1fe081197..cd65376737626 100644 --- a/clients/client-lex-runtime-service/src/commands/PutSessionCommand.ts +++ b/clients/client-lex-runtime-service/src/commands/PutSessionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LexRuntimeServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LexRuntimeServiceClient"; -import { PutSessionRequest, PutSessionResponse } from "../models/models_0"; +import { type PutSessionRequest, PutSessionResponse } from "../models/models_0"; import { PutSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-runtime-service/src/endpoint/EndpointParameters.ts b/clients/client-lex-runtime-service/src/endpoint/EndpointParameters.ts index e5a39831ed79f..c4e9e45f4eb00 100644 --- a/clients/client-lex-runtime-service/src/endpoint/EndpointParameters.ts +++ b/clients/client-lex-runtime-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-lex-runtime-service/src/endpoint/endpointResolver.ts b/clients/client-lex-runtime-service/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-lex-runtime-service/src/endpoint/endpointResolver.ts +++ b/clients/client-lex-runtime-service/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-lex-runtime-service/src/extensionConfiguration.ts b/clients/client-lex-runtime-service/src/extensionConfiguration.ts index 393daf8a3cc94..88b59268acd20 100644 --- a/clients/client-lex-runtime-service/src/extensionConfiguration.ts +++ b/clients/client-lex-runtime-service/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-lex-runtime-service/src/models/LexRuntimeServiceServiceException.ts b/clients/client-lex-runtime-service/src/models/LexRuntimeServiceServiceException.ts index 66cb7b3edeabe..23996945bc404 100644 --- a/clients/client-lex-runtime-service/src/models/LexRuntimeServiceServiceException.ts +++ b/clients/client-lex-runtime-service/src/models/LexRuntimeServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-lex-runtime-service/src/models/errors.ts b/clients/client-lex-runtime-service/src/models/errors.ts index 59dd91f0fd134..74632118a5255 100644 --- a/clients/client-lex-runtime-service/src/models/errors.ts +++ b/clients/client-lex-runtime-service/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LexRuntimeServiceServiceException as __BaseException } from "./LexRuntimeServiceServiceException"; diff --git a/clients/client-lex-runtime-service/src/runtimeConfig.browser.ts b/clients/client-lex-runtime-service/src/runtimeConfig.browser.ts index d50f2e964e611..39c17915f1d3a 100644 --- a/clients/client-lex-runtime-service/src/runtimeConfig.browser.ts +++ b/clients/client-lex-runtime-service/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient"; + +import type { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-lex-runtime-service/src/runtimeConfig.native.ts b/clients/client-lex-runtime-service/src/runtimeConfig.native.ts index 4e5f6cc7af6d3..0e7ab25f7f4b0 100644 --- a/clients/client-lex-runtime-service/src/runtimeConfig.native.ts +++ b/clients/client-lex-runtime-service/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient"; +import type { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-lex-runtime-service/src/runtimeConfig.shared.ts b/clients/client-lex-runtime-service/src/runtimeConfig.shared.ts index 0bb28a15ab51a..0649a1be38950 100644 --- a/clients/client-lex-runtime-service/src/runtimeConfig.shared.ts +++ b/clients/client-lex-runtime-service/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLexRuntimeServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient"; +import type { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient"; /** * @internal diff --git a/clients/client-lex-runtime-service/src/runtimeConfig.ts b/clients/client-lex-runtime-service/src/runtimeConfig.ts index 75d83565377f4..eb8bf78208a6d 100644 --- a/clients/client-lex-runtime-service/src/runtimeConfig.ts +++ b/clients/client-lex-runtime-service/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient"; + +import type { LexRuntimeServiceClientConfig } from "./LexRuntimeServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-lex-runtime-service/src/runtimeExtensions.ts b/clients/client-lex-runtime-service/src/runtimeExtensions.ts index 0b136920e3c6a..b5e5313051571 100644 --- a/clients/client-lex-runtime-service/src/runtimeExtensions.ts +++ b/clients/client-lex-runtime-service/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LexRuntimeServiceExtensionConfiguration } from "./extensionConfiguration"; +import type { LexRuntimeServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-lex-runtime-service/src/schemas/schemas_0.ts b/clients/client-lex-runtime-service/src/schemas/schemas_0.ts index 63215833fea82..441fbf1f0b71d 100644 --- a/clients/client-lex-runtime-service/src/schemas/schemas_0.ts +++ b/clients/client-lex-runtime-service/src/schemas/schemas_0.ts @@ -137,7 +137,7 @@ const n0 = "com.amazonaws.lexruntimeservice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-lex-runtime-v2/package.json b/clients/client-lex-runtime-v2/package.json index a02c321bdab77..d9e724acc7999 100644 --- a/clients/client-lex-runtime-v2/package.json +++ b/clients/client-lex-runtime-v2/package.json @@ -34,7 +34,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -42,21 +42,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-lex-runtime-v2/src/LexRuntimeV2.ts b/clients/client-lex-runtime-v2/src/LexRuntimeV2.ts index 00b55aa43a03d..99de49b01fe9b 100644 --- a/clients/client-lex-runtime-v2/src/LexRuntimeV2.ts +++ b/clients/client-lex-runtime-v2/src/LexRuntimeV2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteSessionCommand, @@ -24,7 +24,7 @@ import { StartConversationCommandInput, StartConversationCommandOutput, } from "./commands/StartConversationCommand"; -import { LexRuntimeV2Client, LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client"; +import { LexRuntimeV2Client } from "./LexRuntimeV2Client"; const commands = { DeleteSessionCommand, diff --git a/clients/client-lex-runtime-v2/src/LexRuntimeV2Client.ts b/clients/client-lex-runtime-v2/src/LexRuntimeV2Client.ts index cf2b5aec34f77..46693984a0ebb 100644 --- a/clients/client-lex-runtime-v2/src/LexRuntimeV2Client.ts +++ b/clients/client-lex-runtime-v2/src/LexRuntimeV2Client.ts @@ -1,25 +1,25 @@ // smithy-typescript generated code import { - EventStreamInputConfig, - EventStreamResolvedConfig, + type EventStreamInputConfig, + type EventStreamResolvedConfig, resolveEventStreamConfig, } from "@aws-sdk/middleware-eventstream"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -27,47 +27,56 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLexRuntimeV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DeleteSessionCommandInput, DeleteSessionCommandOutput } from "./commands/DeleteSessionCommand"; @@ -83,7 +92,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-lex-runtime-v2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-lex-runtime-v2/src/auth/httpAuthExtensionConfiguration.ts index aa287311f6788..0fa8f479d73fc 100644 --- a/clients/client-lex-runtime-v2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-lex-runtime-v2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LexRuntimeV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LexRuntimeV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-lex-runtime-v2/src/auth/httpAuthSchemeProvider.ts b/clients/client-lex-runtime-v2/src/auth/httpAuthSchemeProvider.ts index e16ae5e61c48d..1cef16f0d4eb3 100644 --- a/clients/client-lex-runtime-v2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-lex-runtime-v2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LexRuntimeV2ClientConfig, LexRuntimeV2ClientResolvedConfig } from "../LexRuntimeV2Client"; +import { type LexRuntimeV2ClientResolvedConfig, LexRuntimeV2ClientConfig } from "../LexRuntimeV2Client"; /** * @internal diff --git a/clients/client-lex-runtime-v2/src/commands/DeleteSessionCommand.ts b/clients/client-lex-runtime-v2/src/commands/DeleteSessionCommand.ts index 2787c7ac54d15..0ad2e3d4f12a4 100644 --- a/clients/client-lex-runtime-v2/src/commands/DeleteSessionCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/DeleteSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; -import { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0"; +import type { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; +import type { DeleteSessionRequest, DeleteSessionResponse } from "../models/models_0"; import { DeleteSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-runtime-v2/src/commands/GetSessionCommand.ts b/clients/client-lex-runtime-v2/src/commands/GetSessionCommand.ts index 51eb6f38c4654..266aa4d750711 100644 --- a/clients/client-lex-runtime-v2/src/commands/GetSessionCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/GetSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_0"; +import type { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_0"; import { GetSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-runtime-v2/src/commands/PutSessionCommand.ts b/clients/client-lex-runtime-v2/src/commands/PutSessionCommand.ts index 116fca23c2444..f58d05db68344 100644 --- a/clients/client-lex-runtime-v2/src/commands/PutSessionCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/PutSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; -import { PutSessionRequest, PutSessionResponse } from "../models/models_0"; +import type { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; +import { type PutSessionRequest, PutSessionResponse } from "../models/models_0"; import { PutSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-runtime-v2/src/commands/RecognizeTextCommand.ts b/clients/client-lex-runtime-v2/src/commands/RecognizeTextCommand.ts index 3ba7f58e4a0a9..517cff5efb453 100644 --- a/clients/client-lex-runtime-v2/src/commands/RecognizeTextCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/RecognizeTextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; -import { RecognizeTextRequest, RecognizeTextResponse } from "../models/models_0"; +import type { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; +import type { RecognizeTextRequest, RecognizeTextResponse } from "../models/models_0"; import { RecognizeText } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-runtime-v2/src/commands/RecognizeUtteranceCommand.ts b/clients/client-lex-runtime-v2/src/commands/RecognizeUtteranceCommand.ts index c165e8e6559dd..1664abb9f28c4 100644 --- a/clients/client-lex-runtime-v2/src/commands/RecognizeUtteranceCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/RecognizeUtteranceCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes, StreamingBlobPayloadOutputTypes, } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; +import type { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; import { RecognizeUtteranceRequest, RecognizeUtteranceResponse } from "../models/models_0"; import { RecognizeUtterance } from "../schemas/schemas_0"; diff --git a/clients/client-lex-runtime-v2/src/commands/StartConversationCommand.ts b/clients/client-lex-runtime-v2/src/commands/StartConversationCommand.ts index bcdaf83f2d76a..41e717d413e81 100644 --- a/clients/client-lex-runtime-v2/src/commands/StartConversationCommand.ts +++ b/clients/client-lex-runtime-v2/src/commands/StartConversationCommand.ts @@ -2,11 +2,11 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; -import { StartConversationRequest, StartConversationResponse } from "../models/models_0"; +import type { LexRuntimeV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LexRuntimeV2Client"; +import type { StartConversationRequest, StartConversationResponse } from "../models/models_0"; import { StartConversation } from "../schemas/schemas_0"; /** diff --git a/clients/client-lex-runtime-v2/src/endpoint/EndpointParameters.ts b/clients/client-lex-runtime-v2/src/endpoint/EndpointParameters.ts index e5a39831ed79f..c4e9e45f4eb00 100644 --- a/clients/client-lex-runtime-v2/src/endpoint/EndpointParameters.ts +++ b/clients/client-lex-runtime-v2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-lex-runtime-v2/src/endpoint/endpointResolver.ts b/clients/client-lex-runtime-v2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-lex-runtime-v2/src/endpoint/endpointResolver.ts +++ b/clients/client-lex-runtime-v2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-lex-runtime-v2/src/extensionConfiguration.ts b/clients/client-lex-runtime-v2/src/extensionConfiguration.ts index c492af206223a..ed45e1649d8ce 100644 --- a/clients/client-lex-runtime-v2/src/extensionConfiguration.ts +++ b/clients/client-lex-runtime-v2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-lex-runtime-v2/src/models/LexRuntimeV2ServiceException.ts b/clients/client-lex-runtime-v2/src/models/LexRuntimeV2ServiceException.ts index ae08aa9ab6363..f14c31bc45176 100644 --- a/clients/client-lex-runtime-v2/src/models/LexRuntimeV2ServiceException.ts +++ b/clients/client-lex-runtime-v2/src/models/LexRuntimeV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-lex-runtime-v2/src/models/errors.ts b/clients/client-lex-runtime-v2/src/models/errors.ts index 5e69f9ceb3e9f..91feea252e931 100644 --- a/clients/client-lex-runtime-v2/src/models/errors.ts +++ b/clients/client-lex-runtime-v2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LexRuntimeV2ServiceException as __BaseException } from "./LexRuntimeV2ServiceException"; diff --git a/clients/client-lex-runtime-v2/src/runtimeConfig.browser.ts b/clients/client-lex-runtime-v2/src/runtimeConfig.browser.ts index b633f8b80affb..8df934845148e 100644 --- a/clients/client-lex-runtime-v2/src/runtimeConfig.browser.ts +++ b/clients/client-lex-runtime-v2/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidFunction, invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client"; + +import type { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-lex-runtime-v2/src/runtimeConfig.native.ts b/clients/client-lex-runtime-v2/src/runtimeConfig.native.ts index 911ef83bbc73e..b194cf8615ef5 100644 --- a/clients/client-lex-runtime-v2/src/runtimeConfig.native.ts +++ b/clients/client-lex-runtime-v2/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { invalidFunction } from "@smithy/invalid-dependency"; -import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client"; +import type { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-lex-runtime-v2/src/runtimeConfig.shared.ts b/clients/client-lex-runtime-v2/src/runtimeConfig.shared.ts index c8b72099983e2..bf5fe8ec765b8 100644 --- a/clients/client-lex-runtime-v2/src/runtimeConfig.shared.ts +++ b/clients/client-lex-runtime-v2/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLexRuntimeV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client"; +import type { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client"; /** * @internal diff --git a/clients/client-lex-runtime-v2/src/runtimeConfig.ts b/clients/client-lex-runtime-v2/src/runtimeConfig.ts index db02057510c7a..8edb1b8ca79f1 100644 --- a/clients/client-lex-runtime-v2/src/runtimeConfig.ts +++ b/clients/client-lex-runtime-v2/src/runtimeConfig.ts @@ -17,13 +17,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttp2Handler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client"; + +import type { LexRuntimeV2ClientConfig } from "./LexRuntimeV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-lex-runtime-v2/src/runtimeExtensions.ts b/clients/client-lex-runtime-v2/src/runtimeExtensions.ts index d51d29249cba7..5f51e735deed1 100644 --- a/clients/client-lex-runtime-v2/src/runtimeExtensions.ts +++ b/clients/client-lex-runtime-v2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LexRuntimeV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { LexRuntimeV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-lex-runtime-v2/src/schemas/schemas_0.ts b/clients/client-lex-runtime-v2/src/schemas/schemas_0.ts index 72238acde39de..ee5298d9c2d99 100644 --- a/clients/client-lex-runtime-v2/src/schemas/schemas_0.ts +++ b/clients/client-lex-runtime-v2/src/schemas/schemas_0.ts @@ -171,7 +171,7 @@ const n0 = "com.amazonaws.lexruntimev2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-license-manager-linux-subscriptions/package.json b/clients/client-license-manager-linux-subscriptions/package.json index bf26fc07c6d46..98c32bbb11eac 100644 --- a/clients/client-license-manager-linux-subscriptions/package.json +++ b/clients/client-license-manager-linux-subscriptions/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-license-manager-linux-subscriptions/src/LicenseManagerLinuxSubscriptions.ts b/clients/client-license-manager-linux-subscriptions/src/LicenseManagerLinuxSubscriptions.ts index 273d0a1a3157b..ad7bfbbb9db7f 100644 --- a/clients/client-license-manager-linux-subscriptions/src/LicenseManagerLinuxSubscriptions.ts +++ b/clients/client-license-manager-linux-subscriptions/src/LicenseManagerLinuxSubscriptions.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeregisterSubscriptionProviderCommand, @@ -53,10 +53,7 @@ import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, } from "./commands/UpdateServiceSettingsCommand"; -import { - LicenseManagerLinuxSubscriptionsClient, - LicenseManagerLinuxSubscriptionsClientConfig, -} from "./LicenseManagerLinuxSubscriptionsClient"; +import { LicenseManagerLinuxSubscriptionsClient } from "./LicenseManagerLinuxSubscriptionsClient"; const commands = { DeregisterSubscriptionProviderCommand, diff --git a/clients/client-license-manager-linux-subscriptions/src/LicenseManagerLinuxSubscriptionsClient.ts b/clients/client-license-manager-linux-subscriptions/src/LicenseManagerLinuxSubscriptionsClient.ts index 87ca4d95f4983..8d1cc74e1e049 100644 --- a/clients/client-license-manager-linux-subscriptions/src/LicenseManagerLinuxSubscriptionsClient.ts +++ b/clients/client-license-manager-linux-subscriptions/src/LicenseManagerLinuxSubscriptionsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLicenseManagerLinuxSubscriptionsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -99,7 +108,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-license-manager-linux-subscriptions/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-license-manager-linux-subscriptions/src/auth/httpAuthExtensionConfiguration.ts index fb779cd47d0da..9eefbc7f1851d 100644 --- a/clients/client-license-manager-linux-subscriptions/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-license-manager-linux-subscriptions/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LicenseManagerLinuxSubscriptionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LicenseManagerLinuxSubscriptionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-license-manager-linux-subscriptions/src/auth/httpAuthSchemeProvider.ts b/clients/client-license-manager-linux-subscriptions/src/auth/httpAuthSchemeProvider.ts index 4c215c36aca65..428a0845cd995 100644 --- a/clients/client-license-manager-linux-subscriptions/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-license-manager-linux-subscriptions/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type LicenseManagerLinuxSubscriptionsClientResolvedConfig, LicenseManagerLinuxSubscriptionsClientConfig, - LicenseManagerLinuxSubscriptionsClientResolvedConfig, } from "../LicenseManagerLinuxSubscriptionsClient"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/DeregisterSubscriptionProviderCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/DeregisterSubscriptionProviderCommand.ts index 60aeeb56f8624..d7b754bd2c400 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/DeregisterSubscriptionProviderCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/DeregisterSubscriptionProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { DeregisterSubscriptionProviderRequest, DeregisterSubscriptionProviderResponse } from "../models/models_0"; +import type { DeregisterSubscriptionProviderRequest, DeregisterSubscriptionProviderResponse } from "../models/models_0"; import { DeregisterSubscriptionProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/GetRegisteredSubscriptionProviderCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/GetRegisteredSubscriptionProviderCommand.ts index 5ee81b5fb3a02..43ed3aaca9c4e 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/GetRegisteredSubscriptionProviderCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/GetRegisteredSubscriptionProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { +import type { GetRegisteredSubscriptionProviderRequest, GetRegisteredSubscriptionProviderResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/GetServiceSettingsCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/GetServiceSettingsCommand.ts index d32d879ef90a8..7f23eb784fd08 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/GetServiceSettingsCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/GetServiceSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { GetServiceSettingsRequest, GetServiceSettingsResponse } from "../models/models_0"; +import type { GetServiceSettingsRequest, GetServiceSettingsResponse } from "../models/models_0"; import { GetServiceSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionInstancesCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionInstancesCommand.ts index 88b0b12d24dcf..d70363ea65c66 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionInstancesCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionInstancesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { ListLinuxSubscriptionInstancesRequest, ListLinuxSubscriptionInstancesResponse } from "../models/models_0"; +import type { ListLinuxSubscriptionInstancesRequest, ListLinuxSubscriptionInstancesResponse } from "../models/models_0"; import { ListLinuxSubscriptionInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionsCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionsCommand.ts index e098e8646d984..4fcb80f407016 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionsCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/ListLinuxSubscriptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { ListLinuxSubscriptionsRequest, ListLinuxSubscriptionsResponse } from "../models/models_0"; +import type { ListLinuxSubscriptionsRequest, ListLinuxSubscriptionsResponse } from "../models/models_0"; import { ListLinuxSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/ListRegisteredSubscriptionProvidersCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/ListRegisteredSubscriptionProvidersCommand.ts index 509d8de776022..0d7887cff07ac 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/ListRegisteredSubscriptionProvidersCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/ListRegisteredSubscriptionProvidersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { +import type { ListRegisteredSubscriptionProvidersRequest, ListRegisteredSubscriptionProvidersResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/ListTagsForResourceCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/ListTagsForResourceCommand.ts index 5736ef83bccdb..6c85042d9c9cd 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/RegisterSubscriptionProviderCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/RegisterSubscriptionProviderCommand.ts index 471a848eb20d1..77d62a761ba24 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/RegisterSubscriptionProviderCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/RegisterSubscriptionProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { RegisterSubscriptionProviderRequest, RegisterSubscriptionProviderResponse } from "../models/models_0"; +import type { RegisterSubscriptionProviderRequest, RegisterSubscriptionProviderResponse } from "../models/models_0"; import { RegisterSubscriptionProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/TagResourceCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/TagResourceCommand.ts index ee904d3aefef8..cc9de63b4b06e 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/TagResourceCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/UntagResourceCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/UntagResourceCommand.ts index 4d81bdf946910..0c9ea8daf63cc 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/UntagResourceCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/commands/UpdateServiceSettingsCommand.ts b/clients/client-license-manager-linux-subscriptions/src/commands/UpdateServiceSettingsCommand.ts index dfb5b9ff1f29b..cb1d38daf4c66 100644 --- a/clients/client-license-manager-linux-subscriptions/src/commands/UpdateServiceSettingsCommand.ts +++ b/clients/client-license-manager-linux-subscriptions/src/commands/UpdateServiceSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerLinuxSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerLinuxSubscriptionsClient"; -import { UpdateServiceSettingsRequest, UpdateServiceSettingsResponse } from "../models/models_0"; +import type { UpdateServiceSettingsRequest, UpdateServiceSettingsResponse } from "../models/models_0"; import { UpdateServiceSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/endpoint/EndpointParameters.ts b/clients/client-license-manager-linux-subscriptions/src/endpoint/EndpointParameters.ts index ed0bf0ecafa27..cfd0928f71939 100644 --- a/clients/client-license-manager-linux-subscriptions/src/endpoint/EndpointParameters.ts +++ b/clients/client-license-manager-linux-subscriptions/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-license-manager-linux-subscriptions/src/endpoint/endpointResolver.ts b/clients/client-license-manager-linux-subscriptions/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-license-manager-linux-subscriptions/src/endpoint/endpointResolver.ts +++ b/clients/client-license-manager-linux-subscriptions/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-license-manager-linux-subscriptions/src/extensionConfiguration.ts b/clients/client-license-manager-linux-subscriptions/src/extensionConfiguration.ts index a42fef9cee77d..518d38af2bfcc 100644 --- a/clients/client-license-manager-linux-subscriptions/src/extensionConfiguration.ts +++ b/clients/client-license-manager-linux-subscriptions/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-license-manager-linux-subscriptions/src/models/LicenseManagerLinuxSubscriptionsServiceException.ts b/clients/client-license-manager-linux-subscriptions/src/models/LicenseManagerLinuxSubscriptionsServiceException.ts index 612938ba3e0b1..31b419b834bb1 100644 --- a/clients/client-license-manager-linux-subscriptions/src/models/LicenseManagerLinuxSubscriptionsServiceException.ts +++ b/clients/client-license-manager-linux-subscriptions/src/models/LicenseManagerLinuxSubscriptionsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-license-manager-linux-subscriptions/src/models/errors.ts b/clients/client-license-manager-linux-subscriptions/src/models/errors.ts index a7e33bf889797..da5bc28ae7adf 100644 --- a/clients/client-license-manager-linux-subscriptions/src/models/errors.ts +++ b/clients/client-license-manager-linux-subscriptions/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LicenseManagerLinuxSubscriptionsServiceException as __BaseException } from "./LicenseManagerLinuxSubscriptionsServiceException"; diff --git a/clients/client-license-manager-linux-subscriptions/src/pagination/Interfaces.ts b/clients/client-license-manager-linux-subscriptions/src/pagination/Interfaces.ts index 84d061498b3cc..ac5d7e37abd2f 100644 --- a/clients/client-license-manager-linux-subscriptions/src/pagination/Interfaces.ts +++ b/clients/client-license-manager-linux-subscriptions/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { LicenseManagerLinuxSubscriptionsClient } from "../LicenseManagerLinuxSubscriptionsClient"; diff --git a/clients/client-license-manager-linux-subscriptions/src/pagination/ListLinuxSubscriptionInstancesPaginator.ts b/clients/client-license-manager-linux-subscriptions/src/pagination/ListLinuxSubscriptionInstancesPaginator.ts index 5638336ee79f0..b3f89ed38e35f 100644 --- a/clients/client-license-manager-linux-subscriptions/src/pagination/ListLinuxSubscriptionInstancesPaginator.ts +++ b/clients/client-license-manager-linux-subscriptions/src/pagination/ListLinuxSubscriptionInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLinuxSubscriptionInstancesCommand, diff --git a/clients/client-license-manager-linux-subscriptions/src/pagination/ListLinuxSubscriptionsPaginator.ts b/clients/client-license-manager-linux-subscriptions/src/pagination/ListLinuxSubscriptionsPaginator.ts index 1378ff0db4ce4..a67e72366e432 100644 --- a/clients/client-license-manager-linux-subscriptions/src/pagination/ListLinuxSubscriptionsPaginator.ts +++ b/clients/client-license-manager-linux-subscriptions/src/pagination/ListLinuxSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLinuxSubscriptionsCommand, diff --git a/clients/client-license-manager-linux-subscriptions/src/pagination/ListRegisteredSubscriptionProvidersPaginator.ts b/clients/client-license-manager-linux-subscriptions/src/pagination/ListRegisteredSubscriptionProvidersPaginator.ts index 367593366096a..e41c2a821c0c5 100644 --- a/clients/client-license-manager-linux-subscriptions/src/pagination/ListRegisteredSubscriptionProvidersPaginator.ts +++ b/clients/client-license-manager-linux-subscriptions/src/pagination/ListRegisteredSubscriptionProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRegisteredSubscriptionProvidersCommand, diff --git a/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.browser.ts b/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.browser.ts index d20581a7abaea..85e2c498a36ed 100644 --- a/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.browser.ts +++ b/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLinuxSubscriptionsClient"; + +import type { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLinuxSubscriptionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.native.ts b/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.native.ts index 79bb488d08bb3..ea858a0743c23 100644 --- a/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.native.ts +++ b/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLinuxSubscriptionsClient"; +import type { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLinuxSubscriptionsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.shared.ts b/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.shared.ts index cf3f443c1507a..027e026b6ec5b 100644 --- a/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.shared.ts +++ b/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLicenseManagerLinuxSubscriptionsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLinuxSubscriptionsClient"; +import type { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLinuxSubscriptionsClient"; /** * @internal diff --git a/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.ts b/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.ts index 89d928e71adec..d1ea010818628 100644 --- a/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.ts +++ b/clients/client-license-manager-linux-subscriptions/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLinuxSubscriptionsClient"; + +import type { LicenseManagerLinuxSubscriptionsClientConfig } from "./LicenseManagerLinuxSubscriptionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-license-manager-linux-subscriptions/src/runtimeExtensions.ts b/clients/client-license-manager-linux-subscriptions/src/runtimeExtensions.ts index 9fc3019b3e4ff..f7ba156d7d95c 100644 --- a/clients/client-license-manager-linux-subscriptions/src/runtimeExtensions.ts +++ b/clients/client-license-manager-linux-subscriptions/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LicenseManagerLinuxSubscriptionsExtensionConfiguration } from "./extensionConfiguration"; +import type { LicenseManagerLinuxSubscriptionsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-license-manager-linux-subscriptions/src/schemas/schemas_0.ts b/clients/client-license-manager-linux-subscriptions/src/schemas/schemas_0.ts index d520840ef29d1..ed8c87c91c352 100644 --- a/clients/client-license-manager-linux-subscriptions/src/schemas/schemas_0.ts +++ b/clients/client-license-manager-linux-subscriptions/src/schemas/schemas_0.ts @@ -99,7 +99,7 @@ const n0 = "com.amazonaws.licensemanagerlinuxsubscriptions"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-license-manager-user-subscriptions/package.json b/clients/client-license-manager-user-subscriptions/package.json index ee441a1cade25..7ca6a94c15964 100644 --- a/clients/client-license-manager-user-subscriptions/package.json +++ b/clients/client-license-manager-user-subscriptions/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-license-manager-user-subscriptions/src/LicenseManagerUserSubscriptions.ts b/clients/client-license-manager-user-subscriptions/src/LicenseManagerUserSubscriptions.ts index f9f5cc23b2131..c78a7207b964b 100644 --- a/clients/client-license-manager-user-subscriptions/src/LicenseManagerUserSubscriptions.ts +++ b/clients/client-license-manager-user-subscriptions/src/LicenseManagerUserSubscriptions.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateUserCommand, @@ -83,10 +83,7 @@ import { UpdateIdentityProviderSettingsCommandInput, UpdateIdentityProviderSettingsCommandOutput, } from "./commands/UpdateIdentityProviderSettingsCommand"; -import { - LicenseManagerUserSubscriptionsClient, - LicenseManagerUserSubscriptionsClientConfig, -} from "./LicenseManagerUserSubscriptionsClient"; +import { LicenseManagerUserSubscriptionsClient } from "./LicenseManagerUserSubscriptionsClient"; const commands = { AssociateUserCommand, diff --git a/clients/client-license-manager-user-subscriptions/src/LicenseManagerUserSubscriptionsClient.ts b/clients/client-license-manager-user-subscriptions/src/LicenseManagerUserSubscriptionsClient.ts index 63a7d738931b5..d2cfb9e0bdfa2 100644 --- a/clients/client-license-manager-user-subscriptions/src/LicenseManagerUserSubscriptionsClient.ts +++ b/clients/client-license-manager-user-subscriptions/src/LicenseManagerUserSubscriptionsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLicenseManagerUserSubscriptionsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateUserCommandInput, AssociateUserCommandOutput } from "./commands/AssociateUserCommand"; @@ -117,7 +126,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-license-manager-user-subscriptions/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-license-manager-user-subscriptions/src/auth/httpAuthExtensionConfiguration.ts index 8736259c6af97..061d189d67cc4 100644 --- a/clients/client-license-manager-user-subscriptions/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-license-manager-user-subscriptions/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LicenseManagerUserSubscriptionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LicenseManagerUserSubscriptionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-license-manager-user-subscriptions/src/auth/httpAuthSchemeProvider.ts b/clients/client-license-manager-user-subscriptions/src/auth/httpAuthSchemeProvider.ts index fd87699012531..32cb47d6f4362 100644 --- a/clients/client-license-manager-user-subscriptions/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-license-manager-user-subscriptions/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type LicenseManagerUserSubscriptionsClientResolvedConfig, LicenseManagerUserSubscriptionsClientConfig, - LicenseManagerUserSubscriptionsClientResolvedConfig, } from "../LicenseManagerUserSubscriptionsClient"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/AssociateUserCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/AssociateUserCommand.ts index fa7b8c47af8c6..5bdec9110202d 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/AssociateUserCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/AssociateUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { AssociateUserRequest, AssociateUserResponse } from "../models/models_0"; +import type { AssociateUserRequest, AssociateUserResponse } from "../models/models_0"; import { AssociateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/CreateLicenseServerEndpointCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/CreateLicenseServerEndpointCommand.ts index 06c13219c8fcd..a2dc667ade362 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/CreateLicenseServerEndpointCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/CreateLicenseServerEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { CreateLicenseServerEndpointRequest, CreateLicenseServerEndpointResponse } from "../models/models_0"; +import type { CreateLicenseServerEndpointRequest, CreateLicenseServerEndpointResponse } from "../models/models_0"; import { CreateLicenseServerEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/DeleteLicenseServerEndpointCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/DeleteLicenseServerEndpointCommand.ts index 1e6e2972d9e3b..88086eb4b7e0b 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/DeleteLicenseServerEndpointCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/DeleteLicenseServerEndpointCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { DeleteLicenseServerEndpointRequest, DeleteLicenseServerEndpointResponse } from "../models/models_0"; +import type { DeleteLicenseServerEndpointRequest, DeleteLicenseServerEndpointResponse } from "../models/models_0"; import { DeleteLicenseServerEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/DeregisterIdentityProviderCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/DeregisterIdentityProviderCommand.ts index bd4dd5728baad..8a4ae9e955221 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/DeregisterIdentityProviderCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/DeregisterIdentityProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { DeregisterIdentityProviderRequest, DeregisterIdentityProviderResponse } from "../models/models_0"; +import type { DeregisterIdentityProviderRequest, DeregisterIdentityProviderResponse } from "../models/models_0"; import { DeregisterIdentityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/DisassociateUserCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/DisassociateUserCommand.ts index 5ad0acfb0ec43..8c2b383b46227 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/DisassociateUserCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/DisassociateUserCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { DisassociateUserRequest, DisassociateUserResponse } from "../models/models_0"; +import type { DisassociateUserRequest, DisassociateUserResponse } from "../models/models_0"; import { DisassociateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListIdentityProvidersCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListIdentityProvidersCommand.ts index c96df3641a6d6..f74bd3a81463c 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListIdentityProvidersCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListIdentityProvidersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0"; +import type { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0"; import { ListIdentityProviders } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListInstancesCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListInstancesCommand.ts index e11777ae4c560..59f4cf5d64a73 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListInstancesCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListInstancesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { ListInstancesRequest, ListInstancesResponse } from "../models/models_0"; +import type { ListInstancesRequest, ListInstancesResponse } from "../models/models_0"; import { ListInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListLicenseServerEndpointsCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListLicenseServerEndpointsCommand.ts index 79ab2eed0c4d7..9e81e59796b61 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListLicenseServerEndpointsCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListLicenseServerEndpointsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { ListLicenseServerEndpointsRequest, ListLicenseServerEndpointsResponse } from "../models/models_0"; +import type { ListLicenseServerEndpointsRequest, ListLicenseServerEndpointsResponse } from "../models/models_0"; import { ListLicenseServerEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListProductSubscriptionsCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListProductSubscriptionsCommand.ts index cb773fc5c10b6..2c5ddf5f0dce2 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListProductSubscriptionsCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListProductSubscriptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { ListProductSubscriptionsRequest, ListProductSubscriptionsResponse } from "../models/models_0"; +import type { ListProductSubscriptionsRequest, ListProductSubscriptionsResponse } from "../models/models_0"; import { ListProductSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListTagsForResourceCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListTagsForResourceCommand.ts index c210f12c4e696..9e0a5ff070d36 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/ListUserAssociationsCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/ListUserAssociationsCommand.ts index 16b978c70abfe..451e916c950ad 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/ListUserAssociationsCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/ListUserAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { ListUserAssociationsRequest, ListUserAssociationsResponse } from "../models/models_0"; +import type { ListUserAssociationsRequest, ListUserAssociationsResponse } from "../models/models_0"; import { ListUserAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/RegisterIdentityProviderCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/RegisterIdentityProviderCommand.ts index b00bb6d01afec..b136136be017a 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/RegisterIdentityProviderCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/RegisterIdentityProviderCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { RegisterIdentityProviderRequest, RegisterIdentityProviderResponse } from "../models/models_0"; +import type { RegisterIdentityProviderRequest, RegisterIdentityProviderResponse } from "../models/models_0"; import { RegisterIdentityProvider } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/StartProductSubscriptionCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/StartProductSubscriptionCommand.ts index c7fd3a2a12940..18307587d7809 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/StartProductSubscriptionCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/StartProductSubscriptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { StartProductSubscriptionRequest, StartProductSubscriptionResponse } from "../models/models_0"; +import type { StartProductSubscriptionRequest, StartProductSubscriptionResponse } from "../models/models_0"; import { StartProductSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/StopProductSubscriptionCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/StopProductSubscriptionCommand.ts index 88894dfc13e0a..8db751d24e8d4 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/StopProductSubscriptionCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/StopProductSubscriptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { StopProductSubscriptionRequest, StopProductSubscriptionResponse } from "../models/models_0"; +import type { StopProductSubscriptionRequest, StopProductSubscriptionResponse } from "../models/models_0"; import { StopProductSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/TagResourceCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/TagResourceCommand.ts index 6126b8462fa88..0bd0dca2bfe0c 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/TagResourceCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/UntagResourceCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/UntagResourceCommand.ts index e7c075e41b524..15c5f60580f3d 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/UntagResourceCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/commands/UpdateIdentityProviderSettingsCommand.ts b/clients/client-license-manager-user-subscriptions/src/commands/UpdateIdentityProviderSettingsCommand.ts index 7e4c07d73f3ad..915dc58717d09 100644 --- a/clients/client-license-manager-user-subscriptions/src/commands/UpdateIdentityProviderSettingsCommand.ts +++ b/clients/client-license-manager-user-subscriptions/src/commands/UpdateIdentityProviderSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { LicenseManagerUserSubscriptionsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../LicenseManagerUserSubscriptionsClient"; -import { UpdateIdentityProviderSettingsRequest, UpdateIdentityProviderSettingsResponse } from "../models/models_0"; +import type { UpdateIdentityProviderSettingsRequest, UpdateIdentityProviderSettingsResponse } from "../models/models_0"; import { UpdateIdentityProviderSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/endpoint/EndpointParameters.ts b/clients/client-license-manager-user-subscriptions/src/endpoint/EndpointParameters.ts index 9adf660e5db1c..fd7ee1575b346 100644 --- a/clients/client-license-manager-user-subscriptions/src/endpoint/EndpointParameters.ts +++ b/clients/client-license-manager-user-subscriptions/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-license-manager-user-subscriptions/src/endpoint/endpointResolver.ts b/clients/client-license-manager-user-subscriptions/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-license-manager-user-subscriptions/src/endpoint/endpointResolver.ts +++ b/clients/client-license-manager-user-subscriptions/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-license-manager-user-subscriptions/src/extensionConfiguration.ts b/clients/client-license-manager-user-subscriptions/src/extensionConfiguration.ts index b99fd5dcef0c9..7609f13ac0ba8 100644 --- a/clients/client-license-manager-user-subscriptions/src/extensionConfiguration.ts +++ b/clients/client-license-manager-user-subscriptions/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-license-manager-user-subscriptions/src/models/LicenseManagerUserSubscriptionsServiceException.ts b/clients/client-license-manager-user-subscriptions/src/models/LicenseManagerUserSubscriptionsServiceException.ts index ee96c7ac733da..4482117ed6d18 100644 --- a/clients/client-license-manager-user-subscriptions/src/models/LicenseManagerUserSubscriptionsServiceException.ts +++ b/clients/client-license-manager-user-subscriptions/src/models/LicenseManagerUserSubscriptionsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-license-manager-user-subscriptions/src/models/errors.ts b/clients/client-license-manager-user-subscriptions/src/models/errors.ts index a98bd51e880b1..cc525dfa699e2 100644 --- a/clients/client-license-manager-user-subscriptions/src/models/errors.ts +++ b/clients/client-license-manager-user-subscriptions/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LicenseManagerUserSubscriptionsServiceException as __BaseException } from "./LicenseManagerUserSubscriptionsServiceException"; diff --git a/clients/client-license-manager-user-subscriptions/src/pagination/Interfaces.ts b/clients/client-license-manager-user-subscriptions/src/pagination/Interfaces.ts index ed293f39579ad..ed26d4e5abc67 100644 --- a/clients/client-license-manager-user-subscriptions/src/pagination/Interfaces.ts +++ b/clients/client-license-manager-user-subscriptions/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { LicenseManagerUserSubscriptionsClient } from "../LicenseManagerUserSubscriptionsClient"; diff --git a/clients/client-license-manager-user-subscriptions/src/pagination/ListIdentityProvidersPaginator.ts b/clients/client-license-manager-user-subscriptions/src/pagination/ListIdentityProvidersPaginator.ts index 3439dace36093..d1eb6885f3ba3 100644 --- a/clients/client-license-manager-user-subscriptions/src/pagination/ListIdentityProvidersPaginator.ts +++ b/clients/client-license-manager-user-subscriptions/src/pagination/ListIdentityProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIdentityProvidersCommand, diff --git a/clients/client-license-manager-user-subscriptions/src/pagination/ListInstancesPaginator.ts b/clients/client-license-manager-user-subscriptions/src/pagination/ListInstancesPaginator.ts index 774816650a81e..f1afeb75a4e88 100644 --- a/clients/client-license-manager-user-subscriptions/src/pagination/ListInstancesPaginator.ts +++ b/clients/client-license-manager-user-subscriptions/src/pagination/ListInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstancesCommand, diff --git a/clients/client-license-manager-user-subscriptions/src/pagination/ListLicenseServerEndpointsPaginator.ts b/clients/client-license-manager-user-subscriptions/src/pagination/ListLicenseServerEndpointsPaginator.ts index 559f33264db27..06838c04b21df 100644 --- a/clients/client-license-manager-user-subscriptions/src/pagination/ListLicenseServerEndpointsPaginator.ts +++ b/clients/client-license-manager-user-subscriptions/src/pagination/ListLicenseServerEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLicenseServerEndpointsCommand, diff --git a/clients/client-license-manager-user-subscriptions/src/pagination/ListProductSubscriptionsPaginator.ts b/clients/client-license-manager-user-subscriptions/src/pagination/ListProductSubscriptionsPaginator.ts index 1081361894189..b5fb225a55e56 100644 --- a/clients/client-license-manager-user-subscriptions/src/pagination/ListProductSubscriptionsPaginator.ts +++ b/clients/client-license-manager-user-subscriptions/src/pagination/ListProductSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProductSubscriptionsCommand, diff --git a/clients/client-license-manager-user-subscriptions/src/pagination/ListUserAssociationsPaginator.ts b/clients/client-license-manager-user-subscriptions/src/pagination/ListUserAssociationsPaginator.ts index 1233f93689d8f..8025beac29e47 100644 --- a/clients/client-license-manager-user-subscriptions/src/pagination/ListUserAssociationsPaginator.ts +++ b/clients/client-license-manager-user-subscriptions/src/pagination/ListUserAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUserAssociationsCommand, diff --git a/clients/client-license-manager-user-subscriptions/src/runtimeConfig.browser.ts b/clients/client-license-manager-user-subscriptions/src/runtimeConfig.browser.ts index f65a630ff3914..b60c5fc91ef33 100644 --- a/clients/client-license-manager-user-subscriptions/src/runtimeConfig.browser.ts +++ b/clients/client-license-manager-user-subscriptions/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LicenseManagerUserSubscriptionsClientConfig } from "./LicenseManagerUserSubscriptionsClient"; + +import type { LicenseManagerUserSubscriptionsClientConfig } from "./LicenseManagerUserSubscriptionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-license-manager-user-subscriptions/src/runtimeConfig.native.ts b/clients/client-license-manager-user-subscriptions/src/runtimeConfig.native.ts index 56c0a973023a2..0592bb1dd5d98 100644 --- a/clients/client-license-manager-user-subscriptions/src/runtimeConfig.native.ts +++ b/clients/client-license-manager-user-subscriptions/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LicenseManagerUserSubscriptionsClientConfig } from "./LicenseManagerUserSubscriptionsClient"; +import type { LicenseManagerUserSubscriptionsClientConfig } from "./LicenseManagerUserSubscriptionsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-license-manager-user-subscriptions/src/runtimeConfig.shared.ts b/clients/client-license-manager-user-subscriptions/src/runtimeConfig.shared.ts index 8337c82b5e97f..e7a5859a76b6b 100644 --- a/clients/client-license-manager-user-subscriptions/src/runtimeConfig.shared.ts +++ b/clients/client-license-manager-user-subscriptions/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLicenseManagerUserSubscriptionsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LicenseManagerUserSubscriptionsClientConfig } from "./LicenseManagerUserSubscriptionsClient"; +import type { LicenseManagerUserSubscriptionsClientConfig } from "./LicenseManagerUserSubscriptionsClient"; /** * @internal diff --git a/clients/client-license-manager-user-subscriptions/src/runtimeConfig.ts b/clients/client-license-manager-user-subscriptions/src/runtimeConfig.ts index 77ee20afc3bb4..08a396eeb0551 100644 --- a/clients/client-license-manager-user-subscriptions/src/runtimeConfig.ts +++ b/clients/client-license-manager-user-subscriptions/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LicenseManagerUserSubscriptionsClientConfig } from "./LicenseManagerUserSubscriptionsClient"; + +import type { LicenseManagerUserSubscriptionsClientConfig } from "./LicenseManagerUserSubscriptionsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-license-manager-user-subscriptions/src/runtimeExtensions.ts b/clients/client-license-manager-user-subscriptions/src/runtimeExtensions.ts index 71a65a8022c19..73b727ec705cb 100644 --- a/clients/client-license-manager-user-subscriptions/src/runtimeExtensions.ts +++ b/clients/client-license-manager-user-subscriptions/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LicenseManagerUserSubscriptionsExtensionConfiguration } from "./extensionConfiguration"; +import type { LicenseManagerUserSubscriptionsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-license-manager-user-subscriptions/src/schemas/schemas_0.ts b/clients/client-license-manager-user-subscriptions/src/schemas/schemas_0.ts index fac8ac566f1c0..8c286d3cd0d04 100644 --- a/clients/client-license-manager-user-subscriptions/src/schemas/schemas_0.ts +++ b/clients/client-license-manager-user-subscriptions/src/schemas/schemas_0.ts @@ -151,7 +151,7 @@ const n0 = "com.amazonaws.licensemanagerusersubscriptions"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-license-manager/package.json b/clients/client-license-manager/package.json index 97ef6e8489e2e..f65b6627b7fe6 100644 --- a/clients/client-license-manager/package.json +++ b/clients/client-license-manager/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-license-manager/src/LicenseManager.ts b/clients/client-license-manager/src/LicenseManager.ts index 98d6bd40710ed..e88212b0e21f2 100644 --- a/clients/client-license-manager/src/LicenseManager.ts +++ b/clients/client-license-manager/src/LicenseManager.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptGrantCommand, AcceptGrantCommandInput, AcceptGrantCommandOutput } from "./commands/AcceptGrantCommand"; import { @@ -272,7 +272,7 @@ import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, } from "./commands/UpdateServiceSettingsCommand"; -import { LicenseManagerClient, LicenseManagerClientConfig } from "./LicenseManagerClient"; +import { LicenseManagerClient } from "./LicenseManagerClient"; const commands = { AcceptGrantCommand, diff --git a/clients/client-license-manager/src/LicenseManagerClient.ts b/clients/client-license-manager/src/LicenseManagerClient.ts index dfee822520029..acdedfc8cd3f6 100644 --- a/clients/client-license-manager/src/LicenseManagerClient.ts +++ b/clients/client-license-manager/src/LicenseManagerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLicenseManagerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptGrantCommandInput, AcceptGrantCommandOutput } from "./commands/AcceptGrantCommand"; @@ -249,7 +258,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-license-manager/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-license-manager/src/auth/httpAuthExtensionConfiguration.ts index e6f667ea59a94..592792f007dd3 100644 --- a/clients/client-license-manager/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-license-manager/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LicenseManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LicenseManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-license-manager/src/auth/httpAuthSchemeProvider.ts b/clients/client-license-manager/src/auth/httpAuthSchemeProvider.ts index 9b00fb3218763..a41a538414b4e 100644 --- a/clients/client-license-manager/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-license-manager/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LicenseManagerClientConfig, LicenseManagerClientResolvedConfig } from "../LicenseManagerClient"; +import { type LicenseManagerClientResolvedConfig, LicenseManagerClientConfig } from "../LicenseManagerClient"; /** * @internal diff --git a/clients/client-license-manager/src/commands/AcceptGrantCommand.ts b/clients/client-license-manager/src/commands/AcceptGrantCommand.ts index f94238ead17a4..5db034236ba7f 100644 --- a/clients/client-license-manager/src/commands/AcceptGrantCommand.ts +++ b/clients/client-license-manager/src/commands/AcceptGrantCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { AcceptGrantRequest, AcceptGrantResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { AcceptGrantRequest, AcceptGrantResponse } from "../models/models_0"; import { AcceptGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CheckInLicenseCommand.ts b/clients/client-license-manager/src/commands/CheckInLicenseCommand.ts index 0ae104e834bf0..34abe148dc7eb 100644 --- a/clients/client-license-manager/src/commands/CheckInLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/CheckInLicenseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CheckInLicenseRequest, CheckInLicenseResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CheckInLicenseRequest, CheckInLicenseResponse } from "../models/models_0"; import { CheckInLicense } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CheckoutBorrowLicenseCommand.ts b/clients/client-license-manager/src/commands/CheckoutBorrowLicenseCommand.ts index 1b9d8bf6e1d6e..c5912a140be8b 100644 --- a/clients/client-license-manager/src/commands/CheckoutBorrowLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/CheckoutBorrowLicenseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CheckoutBorrowLicenseRequest, CheckoutBorrowLicenseResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CheckoutBorrowLicenseRequest, CheckoutBorrowLicenseResponse } from "../models/models_0"; import { CheckoutBorrowLicense } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CheckoutLicenseCommand.ts b/clients/client-license-manager/src/commands/CheckoutLicenseCommand.ts index 2690b55bce37d..fba952ee0fd99 100644 --- a/clients/client-license-manager/src/commands/CheckoutLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/CheckoutLicenseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CheckoutLicenseRequest, CheckoutLicenseResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CheckoutLicenseRequest, CheckoutLicenseResponse } from "../models/models_0"; import { CheckoutLicense } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CreateGrantCommand.ts b/clients/client-license-manager/src/commands/CreateGrantCommand.ts index d619fedc10b6e..0d2aeeae51132 100644 --- a/clients/client-license-manager/src/commands/CreateGrantCommand.ts +++ b/clients/client-license-manager/src/commands/CreateGrantCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CreateGrantRequest, CreateGrantResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateGrantRequest, CreateGrantResponse } from "../models/models_0"; import { CreateGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CreateGrantVersionCommand.ts b/clients/client-license-manager/src/commands/CreateGrantVersionCommand.ts index ef3953222612c..adfa0ebb4d81e 100644 --- a/clients/client-license-manager/src/commands/CreateGrantVersionCommand.ts +++ b/clients/client-license-manager/src/commands/CreateGrantVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CreateGrantVersionRequest, CreateGrantVersionResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateGrantVersionRequest, CreateGrantVersionResponse } from "../models/models_0"; import { CreateGrantVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CreateLicenseAssetGroupCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseAssetGroupCommand.ts index 6d2fbacb5742e..a325a1de6103a 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseAssetGroupCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseAssetGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CreateLicenseAssetGroupRequest, CreateLicenseAssetGroupResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateLicenseAssetGroupRequest, CreateLicenseAssetGroupResponse } from "../models/models_0"; import { CreateLicenseAssetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CreateLicenseAssetRulesetCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseAssetRulesetCommand.ts index deaf701084a22..d4b0e26548e0f 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseAssetRulesetCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseAssetRulesetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CreateLicenseAssetRulesetRequest, CreateLicenseAssetRulesetResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateLicenseAssetRulesetRequest, CreateLicenseAssetRulesetResponse } from "../models/models_0"; import { CreateLicenseAssetRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CreateLicenseCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseCommand.ts index ed3370e7e4c09..9ed64060f09c1 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CreateLicenseRequest, CreateLicenseResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateLicenseRequest, CreateLicenseResponse } from "../models/models_0"; import { CreateLicense } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CreateLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseConfigurationCommand.ts index c521b797d1a82..64d8897b45f5e 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CreateLicenseConfigurationRequest, CreateLicenseConfigurationResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateLicenseConfigurationRequest, CreateLicenseConfigurationResponse } from "../models/models_0"; import { CreateLicenseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CreateLicenseConversionTaskForResourceCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseConversionTaskForResourceCommand.ts index c7948134cba1a..a61768ac91dca 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseConversionTaskForResourceCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseConversionTaskForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateLicenseConversionTaskForResourceRequest, CreateLicenseConversionTaskForResourceResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/CreateLicenseManagerReportGeneratorCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseManagerReportGeneratorCommand.ts index 05b493b72004e..b2fdd742dcd73 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseManagerReportGeneratorCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseManagerReportGeneratorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateLicenseManagerReportGeneratorRequest, CreateLicenseManagerReportGeneratorResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/CreateLicenseVersionCommand.ts b/clients/client-license-manager/src/commands/CreateLicenseVersionCommand.ts index ebc418dd86aeb..0a7b680d6a78e 100644 --- a/clients/client-license-manager/src/commands/CreateLicenseVersionCommand.ts +++ b/clients/client-license-manager/src/commands/CreateLicenseVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CreateLicenseVersionRequest, CreateLicenseVersionResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateLicenseVersionRequest, CreateLicenseVersionResponse } from "../models/models_0"; import { CreateLicenseVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/CreateTokenCommand.ts b/clients/client-license-manager/src/commands/CreateTokenCommand.ts index 35a20f90114c7..db57ec7fb7b1f 100644 --- a/clients/client-license-manager/src/commands/CreateTokenCommand.ts +++ b/clients/client-license-manager/src/commands/CreateTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { CreateTokenRequest, CreateTokenResponse } from "../models/models_0"; import { CreateToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/DeleteGrantCommand.ts b/clients/client-license-manager/src/commands/DeleteGrantCommand.ts index 074c61be5f8e7..2e189edc08418 100644 --- a/clients/client-license-manager/src/commands/DeleteGrantCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteGrantCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { DeleteGrantRequest, DeleteGrantResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { DeleteGrantRequest, DeleteGrantResponse } from "../models/models_0"; import { DeleteGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/DeleteLicenseAssetGroupCommand.ts b/clients/client-license-manager/src/commands/DeleteLicenseAssetGroupCommand.ts index 9111192c69ef0..aa6c14be40291 100644 --- a/clients/client-license-manager/src/commands/DeleteLicenseAssetGroupCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteLicenseAssetGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { DeleteLicenseAssetGroupRequest, DeleteLicenseAssetGroupResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { DeleteLicenseAssetGroupRequest, DeleteLicenseAssetGroupResponse } from "../models/models_0"; import { DeleteLicenseAssetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/DeleteLicenseAssetRulesetCommand.ts b/clients/client-license-manager/src/commands/DeleteLicenseAssetRulesetCommand.ts index 5fb6cf4ef5a45..417e88c2ef335 100644 --- a/clients/client-license-manager/src/commands/DeleteLicenseAssetRulesetCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteLicenseAssetRulesetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { DeleteLicenseAssetRulesetRequest, DeleteLicenseAssetRulesetResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { DeleteLicenseAssetRulesetRequest, DeleteLicenseAssetRulesetResponse } from "../models/models_0"; import { DeleteLicenseAssetRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/DeleteLicenseCommand.ts b/clients/client-license-manager/src/commands/DeleteLicenseCommand.ts index c871c03f0619f..22d8ce0bd6462 100644 --- a/clients/client-license-manager/src/commands/DeleteLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteLicenseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { DeleteLicenseRequest, DeleteLicenseResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { DeleteLicenseRequest, DeleteLicenseResponse } from "../models/models_0"; import { DeleteLicense } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/DeleteLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/DeleteLicenseConfigurationCommand.ts index c9755838ac3e1..6472c09975cd5 100644 --- a/clients/client-license-manager/src/commands/DeleteLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteLicenseConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { DeleteLicenseConfigurationRequest, DeleteLicenseConfigurationResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { DeleteLicenseConfigurationRequest, DeleteLicenseConfigurationResponse } from "../models/models_0"; import { DeleteLicenseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/DeleteLicenseManagerReportGeneratorCommand.ts b/clients/client-license-manager/src/commands/DeleteLicenseManagerReportGeneratorCommand.ts index 6102f7d76b655..6f715a3313ba3 100644 --- a/clients/client-license-manager/src/commands/DeleteLicenseManagerReportGeneratorCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteLicenseManagerReportGeneratorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { DeleteLicenseManagerReportGeneratorRequest, DeleteLicenseManagerReportGeneratorResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/DeleteTokenCommand.ts b/clients/client-license-manager/src/commands/DeleteTokenCommand.ts index 4221098737fd1..c7cad62cf0559 100644 --- a/clients/client-license-manager/src/commands/DeleteTokenCommand.ts +++ b/clients/client-license-manager/src/commands/DeleteTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { DeleteTokenRequest, DeleteTokenResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { DeleteTokenRequest, DeleteTokenResponse } from "../models/models_0"; import { DeleteToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ExtendLicenseConsumptionCommand.ts b/clients/client-license-manager/src/commands/ExtendLicenseConsumptionCommand.ts index 39870ccbea0d9..aa74a8efd2719 100644 --- a/clients/client-license-manager/src/commands/ExtendLicenseConsumptionCommand.ts +++ b/clients/client-license-manager/src/commands/ExtendLicenseConsumptionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ExtendLicenseConsumptionRequest, ExtendLicenseConsumptionResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ExtendLicenseConsumptionRequest, ExtendLicenseConsumptionResponse } from "../models/models_0"; import { ExtendLicenseConsumption } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetAccessTokenCommand.ts b/clients/client-license-manager/src/commands/GetAccessTokenCommand.ts index 4c8b7d297edf0..254f5df8f162f 100644 --- a/clients/client-license-manager/src/commands/GetAccessTokenCommand.ts +++ b/clients/client-license-manager/src/commands/GetAccessTokenCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetAccessTokenRequest, GetAccessTokenResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { GetAccessTokenRequest, GetAccessTokenResponse } from "../models/models_0"; import { GetAccessToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetGrantCommand.ts b/clients/client-license-manager/src/commands/GetGrantCommand.ts index 50fc118aaa7f1..6a8982020d922 100644 --- a/clients/client-license-manager/src/commands/GetGrantCommand.ts +++ b/clients/client-license-manager/src/commands/GetGrantCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetGrantRequest, GetGrantResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { GetGrantRequest, GetGrantResponse } from "../models/models_0"; import { GetGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetLicenseAssetGroupCommand.ts b/clients/client-license-manager/src/commands/GetLicenseAssetGroupCommand.ts index dd4849940f0d5..3ef56dabf65af 100644 --- a/clients/client-license-manager/src/commands/GetLicenseAssetGroupCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseAssetGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetLicenseAssetGroupRequest, GetLicenseAssetGroupResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { GetLicenseAssetGroupRequest, GetLicenseAssetGroupResponse } from "../models/models_0"; import { GetLicenseAssetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetLicenseAssetRulesetCommand.ts b/clients/client-license-manager/src/commands/GetLicenseAssetRulesetCommand.ts index f41d909fae99e..4e97261b754cb 100644 --- a/clients/client-license-manager/src/commands/GetLicenseAssetRulesetCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseAssetRulesetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetLicenseAssetRulesetRequest, GetLicenseAssetRulesetResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { GetLicenseAssetRulesetRequest, GetLicenseAssetRulesetResponse } from "../models/models_0"; import { GetLicenseAssetRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetLicenseCommand.ts b/clients/client-license-manager/src/commands/GetLicenseCommand.ts index 4bcfc1f2cc944..97bdcfd7dd908 100644 --- a/clients/client-license-manager/src/commands/GetLicenseCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetLicenseRequest, GetLicenseResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { GetLicenseRequest, GetLicenseResponse } from "../models/models_0"; import { GetLicense } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/GetLicenseConfigurationCommand.ts index ee118b7c4bc6b..5dbfa41ae05dd 100644 --- a/clients/client-license-manager/src/commands/GetLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetLicenseConfigurationRequest, GetLicenseConfigurationResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { GetLicenseConfigurationRequest, GetLicenseConfigurationResponse } from "../models/models_0"; import { GetLicenseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetLicenseConversionTaskCommand.ts b/clients/client-license-manager/src/commands/GetLicenseConversionTaskCommand.ts index a961e7c5378b6..b16db50927b0d 100644 --- a/clients/client-license-manager/src/commands/GetLicenseConversionTaskCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseConversionTaskCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetLicenseConversionTaskRequest, GetLicenseConversionTaskResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { GetLicenseConversionTaskRequest, GetLicenseConversionTaskResponse } from "../models/models_0"; import { GetLicenseConversionTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetLicenseManagerReportGeneratorCommand.ts b/clients/client-license-manager/src/commands/GetLicenseManagerReportGeneratorCommand.ts index 06130f41aab20..f66d92441feb6 100644 --- a/clients/client-license-manager/src/commands/GetLicenseManagerReportGeneratorCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseManagerReportGeneratorCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetLicenseManagerReportGeneratorRequest, GetLicenseManagerReportGeneratorResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { + GetLicenseManagerReportGeneratorRequest, + GetLicenseManagerReportGeneratorResponse, +} from "../models/models_0"; import { GetLicenseManagerReportGenerator } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetLicenseUsageCommand.ts b/clients/client-license-manager/src/commands/GetLicenseUsageCommand.ts index bb5bac2f2017b..93f90bdf79438 100644 --- a/clients/client-license-manager/src/commands/GetLicenseUsageCommand.ts +++ b/clients/client-license-manager/src/commands/GetLicenseUsageCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetLicenseUsageRequest, GetLicenseUsageResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { GetLicenseUsageRequest, GetLicenseUsageResponse } from "../models/models_0"; import { GetLicenseUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/GetServiceSettingsCommand.ts b/clients/client-license-manager/src/commands/GetServiceSettingsCommand.ts index 3eabaa63355a2..c5c214bd45b81 100644 --- a/clients/client-license-manager/src/commands/GetServiceSettingsCommand.ts +++ b/clients/client-license-manager/src/commands/GetServiceSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { GetServiceSettingsRequest, GetServiceSettingsResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { GetServiceSettingsRequest, GetServiceSettingsResponse } from "../models/models_0"; import { GetServiceSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListAssetsForLicenseAssetGroupCommand.ts b/clients/client-license-manager/src/commands/ListAssetsForLicenseAssetGroupCommand.ts index a8d63416d6834..a3cbf4d247fea 100644 --- a/clients/client-license-manager/src/commands/ListAssetsForLicenseAssetGroupCommand.ts +++ b/clients/client-license-manager/src/commands/ListAssetsForLicenseAssetGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListAssetsForLicenseAssetGroupRequest, ListAssetsForLicenseAssetGroupResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListAssetsForLicenseAssetGroupRequest, ListAssetsForLicenseAssetGroupResponse } from "../models/models_0"; import { ListAssetsForLicenseAssetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListAssociationsForLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/ListAssociationsForLicenseConfigurationCommand.ts index 814eda131ba3c..d81aee1fba775 100644 --- a/clients/client-license-manager/src/commands/ListAssociationsForLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/ListAssociationsForLicenseConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListAssociationsForLicenseConfigurationRequest, ListAssociationsForLicenseConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/ListDistributedGrantsCommand.ts b/clients/client-license-manager/src/commands/ListDistributedGrantsCommand.ts index 6aafdc7be0bcc..d9f48caf003de 100644 --- a/clients/client-license-manager/src/commands/ListDistributedGrantsCommand.ts +++ b/clients/client-license-manager/src/commands/ListDistributedGrantsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListDistributedGrantsRequest, ListDistributedGrantsResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListDistributedGrantsRequest, ListDistributedGrantsResponse } from "../models/models_0"; import { ListDistributedGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListFailuresForLicenseConfigurationOperationsCommand.ts b/clients/client-license-manager/src/commands/ListFailuresForLicenseConfigurationOperationsCommand.ts index a6d7c66c542dc..5308108fe6e58 100644 --- a/clients/client-license-manager/src/commands/ListFailuresForLicenseConfigurationOperationsCommand.ts +++ b/clients/client-license-manager/src/commands/ListFailuresForLicenseConfigurationOperationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListFailuresForLicenseConfigurationOperationsRequest, ListFailuresForLicenseConfigurationOperationsResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/ListLicenseAssetGroupsCommand.ts b/clients/client-license-manager/src/commands/ListLicenseAssetGroupsCommand.ts index b70a10fe53fc3..eb358b435f54f 100644 --- a/clients/client-license-manager/src/commands/ListLicenseAssetGroupsCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseAssetGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListLicenseAssetGroupsRequest, ListLicenseAssetGroupsResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListLicenseAssetGroupsRequest, ListLicenseAssetGroupsResponse } from "../models/models_0"; import { ListLicenseAssetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListLicenseAssetRulesetsCommand.ts b/clients/client-license-manager/src/commands/ListLicenseAssetRulesetsCommand.ts index 97ff00fdbe933..7b6c30dd38a6e 100644 --- a/clients/client-license-manager/src/commands/ListLicenseAssetRulesetsCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseAssetRulesetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListLicenseAssetRulesetsRequest, ListLicenseAssetRulesetsResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListLicenseAssetRulesetsRequest, ListLicenseAssetRulesetsResponse } from "../models/models_0"; import { ListLicenseAssetRulesets } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListLicenseConfigurationsCommand.ts b/clients/client-license-manager/src/commands/ListLicenseConfigurationsCommand.ts index 92816d67815ab..09da13128c798 100644 --- a/clients/client-license-manager/src/commands/ListLicenseConfigurationsCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseConfigurationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListLicenseConfigurationsRequest, ListLicenseConfigurationsResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListLicenseConfigurationsRequest, ListLicenseConfigurationsResponse } from "../models/models_0"; import { ListLicenseConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListLicenseConfigurationsForOrganizationCommand.ts b/clients/client-license-manager/src/commands/ListLicenseConfigurationsForOrganizationCommand.ts index 49f53a81d009e..699bb5a73ff97 100644 --- a/clients/client-license-manager/src/commands/ListLicenseConfigurationsForOrganizationCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseConfigurationsForOrganizationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListLicenseConfigurationsForOrganizationRequest, ListLicenseConfigurationsForOrganizationResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/ListLicenseConversionTasksCommand.ts b/clients/client-license-manager/src/commands/ListLicenseConversionTasksCommand.ts index ff99ff80dd822..a57e6b95966e4 100644 --- a/clients/client-license-manager/src/commands/ListLicenseConversionTasksCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseConversionTasksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListLicenseConversionTasksRequest, ListLicenseConversionTasksResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListLicenseConversionTasksRequest, ListLicenseConversionTasksResponse } from "../models/models_0"; import { ListLicenseConversionTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListLicenseManagerReportGeneratorsCommand.ts b/clients/client-license-manager/src/commands/ListLicenseManagerReportGeneratorsCommand.ts index 4fc3d24b77651..feb3114f92467 100644 --- a/clients/client-license-manager/src/commands/ListLicenseManagerReportGeneratorsCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseManagerReportGeneratorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListLicenseManagerReportGeneratorsRequest, ListLicenseManagerReportGeneratorsResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/ListLicenseSpecificationsForResourceCommand.ts b/clients/client-license-manager/src/commands/ListLicenseSpecificationsForResourceCommand.ts index 9b08f95377fc0..375f6dd6ffb9c 100644 --- a/clients/client-license-manager/src/commands/ListLicenseSpecificationsForResourceCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseSpecificationsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListLicenseSpecificationsForResourceRequest, ListLicenseSpecificationsForResourceResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/ListLicenseVersionsCommand.ts b/clients/client-license-manager/src/commands/ListLicenseVersionsCommand.ts index ab35ee6c6fbc8..b74287605a8f0 100644 --- a/clients/client-license-manager/src/commands/ListLicenseVersionsCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicenseVersionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListLicenseVersionsRequest, ListLicenseVersionsResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListLicenseVersionsRequest, ListLicenseVersionsResponse } from "../models/models_0"; import { ListLicenseVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListLicensesCommand.ts b/clients/client-license-manager/src/commands/ListLicensesCommand.ts index f9994a1d891a4..bbec835a2ab5b 100644 --- a/clients/client-license-manager/src/commands/ListLicensesCommand.ts +++ b/clients/client-license-manager/src/commands/ListLicensesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListLicensesRequest, ListLicensesResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListLicensesRequest, ListLicensesResponse } from "../models/models_0"; import { ListLicenses } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListReceivedGrantsCommand.ts b/clients/client-license-manager/src/commands/ListReceivedGrantsCommand.ts index c36486930aa55..ddab8d1da5aab 100644 --- a/clients/client-license-manager/src/commands/ListReceivedGrantsCommand.ts +++ b/clients/client-license-manager/src/commands/ListReceivedGrantsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListReceivedGrantsRequest, ListReceivedGrantsResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListReceivedGrantsRequest, ListReceivedGrantsResponse } from "../models/models_0"; import { ListReceivedGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListReceivedGrantsForOrganizationCommand.ts b/clients/client-license-manager/src/commands/ListReceivedGrantsForOrganizationCommand.ts index ea2ec01333752..acfff1fabd9b5 100644 --- a/clients/client-license-manager/src/commands/ListReceivedGrantsForOrganizationCommand.ts +++ b/clients/client-license-manager/src/commands/ListReceivedGrantsForOrganizationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListReceivedGrantsForOrganizationRequest, ListReceivedGrantsForOrganizationResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/ListReceivedLicensesCommand.ts b/clients/client-license-manager/src/commands/ListReceivedLicensesCommand.ts index 40612e301c257..ef1ebefa9b493 100644 --- a/clients/client-license-manager/src/commands/ListReceivedLicensesCommand.ts +++ b/clients/client-license-manager/src/commands/ListReceivedLicensesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListReceivedLicensesRequest, ListReceivedLicensesResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListReceivedLicensesRequest, ListReceivedLicensesResponse } from "../models/models_0"; import { ListReceivedLicenses } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListReceivedLicensesForOrganizationCommand.ts b/clients/client-license-manager/src/commands/ListReceivedLicensesForOrganizationCommand.ts index 68333e91d76b3..f7ae6a6239bf8 100644 --- a/clients/client-license-manager/src/commands/ListReceivedLicensesForOrganizationCommand.ts +++ b/clients/client-license-manager/src/commands/ListReceivedLicensesForOrganizationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListReceivedLicensesForOrganizationRequest, ListReceivedLicensesForOrganizationResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/ListResourceInventoryCommand.ts b/clients/client-license-manager/src/commands/ListResourceInventoryCommand.ts index a3eed225e3e4e..284f52cc2dd89 100644 --- a/clients/client-license-manager/src/commands/ListResourceInventoryCommand.ts +++ b/clients/client-license-manager/src/commands/ListResourceInventoryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListResourceInventoryRequest, ListResourceInventoryResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListResourceInventoryRequest, ListResourceInventoryResponse } from "../models/models_0"; import { ListResourceInventory } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListTagsForResourceCommand.ts b/clients/client-license-manager/src/commands/ListTagsForResourceCommand.ts index 02eb9aa0a78f3..8eccd168f35f5 100644 --- a/clients/client-license-manager/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-license-manager/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListTokensCommand.ts b/clients/client-license-manager/src/commands/ListTokensCommand.ts index 31ebf7f7d2958..f7c039d234e7e 100644 --- a/clients/client-license-manager/src/commands/ListTokensCommand.ts +++ b/clients/client-license-manager/src/commands/ListTokensCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListTokensRequest, ListTokensResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { ListTokensRequest, ListTokensResponse } from "../models/models_0"; import { ListTokens } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/ListUsageForLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/ListUsageForLicenseConfigurationCommand.ts index 55b66d01bea13..a2c555b560d0e 100644 --- a/clients/client-license-manager/src/commands/ListUsageForLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/ListUsageForLicenseConfigurationCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { ListUsageForLicenseConfigurationRequest, ListUsageForLicenseConfigurationResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { + ListUsageForLicenseConfigurationRequest, + ListUsageForLicenseConfigurationResponse, +} from "../models/models_0"; import { ListUsageForLicenseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/RejectGrantCommand.ts b/clients/client-license-manager/src/commands/RejectGrantCommand.ts index 58494eb4b0594..8966b129e6b36 100644 --- a/clients/client-license-manager/src/commands/RejectGrantCommand.ts +++ b/clients/client-license-manager/src/commands/RejectGrantCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { RejectGrantRequest, RejectGrantResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { RejectGrantRequest, RejectGrantResponse } from "../models/models_0"; import { RejectGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/TagResourceCommand.ts b/clients/client-license-manager/src/commands/TagResourceCommand.ts index 352418adb3479..1606e2c06debe 100644 --- a/clients/client-license-manager/src/commands/TagResourceCommand.ts +++ b/clients/client-license-manager/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/UntagResourceCommand.ts b/clients/client-license-manager/src/commands/UntagResourceCommand.ts index bf5f2c4ca3c1f..88be1e1bfbf4a 100644 --- a/clients/client-license-manager/src/commands/UntagResourceCommand.ts +++ b/clients/client-license-manager/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/UpdateLicenseAssetGroupCommand.ts b/clients/client-license-manager/src/commands/UpdateLicenseAssetGroupCommand.ts index eaa0e1e943f5b..8c59b27ff887d 100644 --- a/clients/client-license-manager/src/commands/UpdateLicenseAssetGroupCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateLicenseAssetGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { UpdateLicenseAssetGroupRequest, UpdateLicenseAssetGroupResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { UpdateLicenseAssetGroupRequest, UpdateLicenseAssetGroupResponse } from "../models/models_0"; import { UpdateLicenseAssetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/UpdateLicenseAssetRulesetCommand.ts b/clients/client-license-manager/src/commands/UpdateLicenseAssetRulesetCommand.ts index 1b620730a338c..311ee0e8f1d4c 100644 --- a/clients/client-license-manager/src/commands/UpdateLicenseAssetRulesetCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateLicenseAssetRulesetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { UpdateLicenseAssetRulesetRequest, UpdateLicenseAssetRulesetResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { UpdateLicenseAssetRulesetRequest, UpdateLicenseAssetRulesetResponse } from "../models/models_0"; import { UpdateLicenseAssetRuleset } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/UpdateLicenseConfigurationCommand.ts b/clients/client-license-manager/src/commands/UpdateLicenseConfigurationCommand.ts index 3c18f66159e10..4031522563d3b 100644 --- a/clients/client-license-manager/src/commands/UpdateLicenseConfigurationCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateLicenseConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { UpdateLicenseConfigurationRequest, UpdateLicenseConfigurationResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { UpdateLicenseConfigurationRequest, UpdateLicenseConfigurationResponse } from "../models/models_0"; import { UpdateLicenseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/commands/UpdateLicenseManagerReportGeneratorCommand.ts b/clients/client-license-manager/src/commands/UpdateLicenseManagerReportGeneratorCommand.ts index f1f29098ec617..087b3ad90c84e 100644 --- a/clients/client-license-manager/src/commands/UpdateLicenseManagerReportGeneratorCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateLicenseManagerReportGeneratorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { UpdateLicenseManagerReportGeneratorRequest, UpdateLicenseManagerReportGeneratorResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/UpdateLicenseSpecificationsForResourceCommand.ts b/clients/client-license-manager/src/commands/UpdateLicenseSpecificationsForResourceCommand.ts index ffdffe302738b..0ffd9d734060a 100644 --- a/clients/client-license-manager/src/commands/UpdateLicenseSpecificationsForResourceCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateLicenseSpecificationsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { UpdateLicenseSpecificationsForResourceRequest, UpdateLicenseSpecificationsForResourceResponse, } from "../models/models_0"; diff --git a/clients/client-license-manager/src/commands/UpdateServiceSettingsCommand.ts b/clients/client-license-manager/src/commands/UpdateServiceSettingsCommand.ts index 729a69cbd1c55..33286688ba287 100644 --- a/clients/client-license-manager/src/commands/UpdateServiceSettingsCommand.ts +++ b/clients/client-license-manager/src/commands/UpdateServiceSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LicenseManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LicenseManagerClient"; -import { UpdateServiceSettingsRequest, UpdateServiceSettingsResponse } from "../models/models_0"; +import type { + LicenseManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LicenseManagerClient"; +import type { UpdateServiceSettingsRequest, UpdateServiceSettingsResponse } from "../models/models_0"; import { UpdateServiceSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-license-manager/src/endpoint/EndpointParameters.ts b/clients/client-license-manager/src/endpoint/EndpointParameters.ts index 3dedd71c4d645..ad272130e62dc 100644 --- a/clients/client-license-manager/src/endpoint/EndpointParameters.ts +++ b/clients/client-license-manager/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-license-manager/src/endpoint/endpointResolver.ts b/clients/client-license-manager/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-license-manager/src/endpoint/endpointResolver.ts +++ b/clients/client-license-manager/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-license-manager/src/extensionConfiguration.ts b/clients/client-license-manager/src/extensionConfiguration.ts index b1f5f74c974d0..20a6496a5dc1e 100644 --- a/clients/client-license-manager/src/extensionConfiguration.ts +++ b/clients/client-license-manager/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-license-manager/src/models/LicenseManagerServiceException.ts b/clients/client-license-manager/src/models/LicenseManagerServiceException.ts index 5e3341c0bd67e..301c316630c2f 100644 --- a/clients/client-license-manager/src/models/LicenseManagerServiceException.ts +++ b/clients/client-license-manager/src/models/LicenseManagerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-license-manager/src/models/errors.ts b/clients/client-license-manager/src/models/errors.ts index 51a6541fc729a..a36e074694a4d 100644 --- a/clients/client-license-manager/src/models/errors.ts +++ b/clients/client-license-manager/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LicenseManagerServiceException as __BaseException } from "./LicenseManagerServiceException"; diff --git a/clients/client-license-manager/src/runtimeConfig.browser.ts b/clients/client-license-manager/src/runtimeConfig.browser.ts index 3713143ad9cd7..9e80c25f0c290 100644 --- a/clients/client-license-manager/src/runtimeConfig.browser.ts +++ b/clients/client-license-manager/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LicenseManagerClientConfig } from "./LicenseManagerClient"; + +import type { LicenseManagerClientConfig } from "./LicenseManagerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-license-manager/src/runtimeConfig.native.ts b/clients/client-license-manager/src/runtimeConfig.native.ts index 83c859893651a..2cbd8f57d3bcd 100644 --- a/clients/client-license-manager/src/runtimeConfig.native.ts +++ b/clients/client-license-manager/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LicenseManagerClientConfig } from "./LicenseManagerClient"; +import type { LicenseManagerClientConfig } from "./LicenseManagerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-license-manager/src/runtimeConfig.shared.ts b/clients/client-license-manager/src/runtimeConfig.shared.ts index f0988bc5dec4e..2144965e6bae1 100644 --- a/clients/client-license-manager/src/runtimeConfig.shared.ts +++ b/clients/client-license-manager/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLicenseManagerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LicenseManagerClientConfig } from "./LicenseManagerClient"; +import type { LicenseManagerClientConfig } from "./LicenseManagerClient"; /** * @internal diff --git a/clients/client-license-manager/src/runtimeConfig.ts b/clients/client-license-manager/src/runtimeConfig.ts index 1aa543ea4a230..2c210b96a2126 100644 --- a/clients/client-license-manager/src/runtimeConfig.ts +++ b/clients/client-license-manager/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LicenseManagerClientConfig } from "./LicenseManagerClient"; + +import type { LicenseManagerClientConfig } from "./LicenseManagerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-license-manager/src/runtimeExtensions.ts b/clients/client-license-manager/src/runtimeExtensions.ts index 270bf207ad809..3346f628d9e99 100644 --- a/clients/client-license-manager/src/runtimeExtensions.ts +++ b/clients/client-license-manager/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LicenseManagerExtensionConfiguration } from "./extensionConfiguration"; +import type { LicenseManagerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-license-manager/src/schemas/schemas_0.ts b/clients/client-license-manager/src/schemas/schemas_0.ts index 18101f06446c4..e48bb490f38b2 100644 --- a/clients/client-license-manager/src/schemas/schemas_0.ts +++ b/clients/client-license-manager/src/schemas/schemas_0.ts @@ -481,7 +481,7 @@ const n0 = "com.amazonaws.licensemanager"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-lightsail/package.json b/clients/client-lightsail/package.json index 4643e66d28870..a835973ffbc73 100644 --- a/clients/client-lightsail/package.json +++ b/clients/client-lightsail/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-lightsail/src/Lightsail.ts b/clients/client-lightsail/src/Lightsail.ts index ba018d681279e..fe03aa13f6794 100644 --- a/clients/client-lightsail/src/Lightsail.ts +++ b/clients/client-lightsail/src/Lightsail.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AllocateStaticIpCommand, @@ -711,7 +711,7 @@ import { UpdateRelationalDatabaseParametersCommandInput, UpdateRelationalDatabaseParametersCommandOutput, } from "./commands/UpdateRelationalDatabaseParametersCommand"; -import { LightsailClient, LightsailClientConfig } from "./LightsailClient"; +import { LightsailClient } from "./LightsailClient"; const commands = { AllocateStaticIpCommand, diff --git a/clients/client-lightsail/src/LightsailClient.ts b/clients/client-lightsail/src/LightsailClient.ts index 69075d3e3e983..eb6a0aa5dc364 100644 --- a/clients/client-lightsail/src/LightsailClient.ts +++ b/clients/client-lightsail/src/LightsailClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLightsailHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AllocateStaticIpCommandInput, AllocateStaticIpCommandOutput } from "./commands/AllocateStaticIpCommand"; @@ -459,7 +468,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-lightsail/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-lightsail/src/auth/httpAuthExtensionConfiguration.ts index 903b45aef8db8..93d8cc4fb0acf 100644 --- a/clients/client-lightsail/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-lightsail/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LightsailHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LightsailHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-lightsail/src/auth/httpAuthSchemeProvider.ts b/clients/client-lightsail/src/auth/httpAuthSchemeProvider.ts index 88c50ecf21552..d5450b869fed0 100644 --- a/clients/client-lightsail/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-lightsail/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LightsailClientConfig, LightsailClientResolvedConfig } from "../LightsailClient"; +import { type LightsailClientResolvedConfig, LightsailClientConfig } from "../LightsailClient"; /** * @internal diff --git a/clients/client-lightsail/src/commands/AllocateStaticIpCommand.ts b/clients/client-lightsail/src/commands/AllocateStaticIpCommand.ts index 4c8d222de6ecc..824668524b8a3 100644 --- a/clients/client-lightsail/src/commands/AllocateStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/AllocateStaticIpCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { AllocateStaticIpRequest, AllocateStaticIpResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { AllocateStaticIpRequest, AllocateStaticIpResult } from "../models/models_0"; import { AllocateStaticIp } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/AttachCertificateToDistributionCommand.ts b/clients/client-lightsail/src/commands/AttachCertificateToDistributionCommand.ts index d08b549ef7648..4cc3c9c75b9f7 100644 --- a/clients/client-lightsail/src/commands/AttachCertificateToDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/AttachCertificateToDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { AttachCertificateToDistributionRequest, AttachCertificateToDistributionResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { AttachCertificateToDistributionRequest, AttachCertificateToDistributionResult } from "../models/models_0"; import { AttachCertificateToDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/AttachDiskCommand.ts b/clients/client-lightsail/src/commands/AttachDiskCommand.ts index 821b0a9d33f97..7909eff04388a 100644 --- a/clients/client-lightsail/src/commands/AttachDiskCommand.ts +++ b/clients/client-lightsail/src/commands/AttachDiskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { AttachDiskRequest, AttachDiskResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { AttachDiskRequest, AttachDiskResult } from "../models/models_0"; import { AttachDisk } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/AttachInstancesToLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/AttachInstancesToLoadBalancerCommand.ts index ededae152f2d6..7daf518724a1d 100644 --- a/clients/client-lightsail/src/commands/AttachInstancesToLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/AttachInstancesToLoadBalancerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { AttachInstancesToLoadBalancerRequest, AttachInstancesToLoadBalancerResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { AttachInstancesToLoadBalancerRequest, AttachInstancesToLoadBalancerResult } from "../models/models_0"; import { AttachInstancesToLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/AttachLoadBalancerTlsCertificateCommand.ts b/clients/client-lightsail/src/commands/AttachLoadBalancerTlsCertificateCommand.ts index 96a919028c635..0c8a98508cded 100644 --- a/clients/client-lightsail/src/commands/AttachLoadBalancerTlsCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/AttachLoadBalancerTlsCertificateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { AttachLoadBalancerTlsCertificateRequest, AttachLoadBalancerTlsCertificateResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { + AttachLoadBalancerTlsCertificateRequest, + AttachLoadBalancerTlsCertificateResult, +} from "../models/models_0"; import { AttachLoadBalancerTlsCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/AttachStaticIpCommand.ts b/clients/client-lightsail/src/commands/AttachStaticIpCommand.ts index e6a6897cead7e..d0114e0d24b06 100644 --- a/clients/client-lightsail/src/commands/AttachStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/AttachStaticIpCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { AttachStaticIpRequest, AttachStaticIpResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { AttachStaticIpRequest, AttachStaticIpResult } from "../models/models_0"; import { AttachStaticIp } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CloseInstancePublicPortsCommand.ts b/clients/client-lightsail/src/commands/CloseInstancePublicPortsCommand.ts index adeeef468c940..2b3f60db91eb2 100644 --- a/clients/client-lightsail/src/commands/CloseInstancePublicPortsCommand.ts +++ b/clients/client-lightsail/src/commands/CloseInstancePublicPortsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CloseInstancePublicPortsRequest, CloseInstancePublicPortsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CloseInstancePublicPortsRequest, CloseInstancePublicPortsResult } from "../models/models_0"; import { CloseInstancePublicPorts } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CopySnapshotCommand.ts b/clients/client-lightsail/src/commands/CopySnapshotCommand.ts index f607f549c6268..e7b8bca762415 100644 --- a/clients/client-lightsail/src/commands/CopySnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CopySnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CopySnapshotRequest, CopySnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CopySnapshotRequest, CopySnapshotResult } from "../models/models_0"; import { CopySnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateBucketAccessKeyCommand.ts b/clients/client-lightsail/src/commands/CreateBucketAccessKeyCommand.ts index b41611803b890..e6e2a1d9d2e77 100644 --- a/clients/client-lightsail/src/commands/CreateBucketAccessKeyCommand.ts +++ b/clients/client-lightsail/src/commands/CreateBucketAccessKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateBucketAccessKeyRequest, CreateBucketAccessKeyResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateBucketAccessKeyRequest, CreateBucketAccessKeyResult } from "../models/models_0"; import { CreateBucketAccessKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateBucketCommand.ts b/clients/client-lightsail/src/commands/CreateBucketCommand.ts index 3d55e9ad28119..cd5612615dc4e 100644 --- a/clients/client-lightsail/src/commands/CreateBucketCommand.ts +++ b/clients/client-lightsail/src/commands/CreateBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateBucketRequest, CreateBucketResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateBucketRequest, CreateBucketResult } from "../models/models_0"; import { CreateBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateCertificateCommand.ts b/clients/client-lightsail/src/commands/CreateCertificateCommand.ts index 49a0ad004e2d0..8c2da9f55ee52 100644 --- a/clients/client-lightsail/src/commands/CreateCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/CreateCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateCertificateRequest, CreateCertificateResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateCertificateRequest, CreateCertificateResult } from "../models/models_0"; import { CreateCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateCloudFormationStackCommand.ts b/clients/client-lightsail/src/commands/CreateCloudFormationStackCommand.ts index 41f3673641a84..bb1b470c528af 100644 --- a/clients/client-lightsail/src/commands/CreateCloudFormationStackCommand.ts +++ b/clients/client-lightsail/src/commands/CreateCloudFormationStackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateCloudFormationStackRequest, CreateCloudFormationStackResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateCloudFormationStackRequest, CreateCloudFormationStackResult } from "../models/models_0"; import { CreateCloudFormationStack } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateContactMethodCommand.ts b/clients/client-lightsail/src/commands/CreateContactMethodCommand.ts index 36530622ffcfb..62924eeb31811 100644 --- a/clients/client-lightsail/src/commands/CreateContactMethodCommand.ts +++ b/clients/client-lightsail/src/commands/CreateContactMethodCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateContactMethodRequest, CreateContactMethodResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateContactMethodRequest, CreateContactMethodResult } from "../models/models_0"; import { CreateContactMethod } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateContainerServiceCommand.ts b/clients/client-lightsail/src/commands/CreateContainerServiceCommand.ts index ea355f1e2c3b1..f7cb4b436591b 100644 --- a/clients/client-lightsail/src/commands/CreateContainerServiceCommand.ts +++ b/clients/client-lightsail/src/commands/CreateContainerServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateContainerServiceRequest, CreateContainerServiceResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateContainerServiceRequest, CreateContainerServiceResult } from "../models/models_0"; import { CreateContainerService } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateContainerServiceDeploymentCommand.ts b/clients/client-lightsail/src/commands/CreateContainerServiceDeploymentCommand.ts index 9ac566dcfbebe..4651d636bc3d3 100644 --- a/clients/client-lightsail/src/commands/CreateContainerServiceDeploymentCommand.ts +++ b/clients/client-lightsail/src/commands/CreateContainerServiceDeploymentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateContainerServiceDeploymentRequest, CreateContainerServiceDeploymentResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { + CreateContainerServiceDeploymentRequest, + CreateContainerServiceDeploymentResult, +} from "../models/models_0"; import { CreateContainerServiceDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateContainerServiceRegistryLoginCommand.ts b/clients/client-lightsail/src/commands/CreateContainerServiceRegistryLoginCommand.ts index 67d5faa701476..da9c2be0a4eb9 100644 --- a/clients/client-lightsail/src/commands/CreateContainerServiceRegistryLoginCommand.ts +++ b/clients/client-lightsail/src/commands/CreateContainerServiceRegistryLoginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateContainerServiceRegistryLoginRequest, CreateContainerServiceRegistryLoginResult, } from "../models/models_0"; diff --git a/clients/client-lightsail/src/commands/CreateDiskCommand.ts b/clients/client-lightsail/src/commands/CreateDiskCommand.ts index 05f6161c4b109..f6978663f7276 100644 --- a/clients/client-lightsail/src/commands/CreateDiskCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDiskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateDiskRequest, CreateDiskResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateDiskRequest, CreateDiskResult } from "../models/models_0"; import { CreateDisk } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateDiskFromSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateDiskFromSnapshotCommand.ts index e284ae024c729..894a16acdefb4 100644 --- a/clients/client-lightsail/src/commands/CreateDiskFromSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDiskFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateDiskFromSnapshotRequest, CreateDiskFromSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateDiskFromSnapshotRequest, CreateDiskFromSnapshotResult } from "../models/models_0"; import { CreateDiskFromSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateDiskSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateDiskSnapshotCommand.ts index 597d070c8ced0..00f833ee94d56 100644 --- a/clients/client-lightsail/src/commands/CreateDiskSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDiskSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateDiskSnapshotRequest, CreateDiskSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateDiskSnapshotRequest, CreateDiskSnapshotResult } from "../models/models_0"; import { CreateDiskSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateDistributionCommand.ts b/clients/client-lightsail/src/commands/CreateDistributionCommand.ts index f2a3318671882..a755caefcfbc4 100644 --- a/clients/client-lightsail/src/commands/CreateDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateDistributionRequest, CreateDistributionResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateDistributionRequest, CreateDistributionResult } from "../models/models_0"; import { CreateDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateDomainCommand.ts b/clients/client-lightsail/src/commands/CreateDomainCommand.ts index 1beb5e408a0cd..a3d495f1ed511 100644 --- a/clients/client-lightsail/src/commands/CreateDomainCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateDomainRequest, CreateDomainResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateDomainRequest, CreateDomainResult } from "../models/models_0"; import { CreateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateDomainEntryCommand.ts b/clients/client-lightsail/src/commands/CreateDomainEntryCommand.ts index 1f6e0b409bac1..ebe3d6897530b 100644 --- a/clients/client-lightsail/src/commands/CreateDomainEntryCommand.ts +++ b/clients/client-lightsail/src/commands/CreateDomainEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateDomainEntryRequest, CreateDomainEntryResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateDomainEntryRequest, CreateDomainEntryResult } from "../models/models_0"; import { CreateDomainEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateGUISessionAccessDetailsCommand.ts b/clients/client-lightsail/src/commands/CreateGUISessionAccessDetailsCommand.ts index 4abfad2102a7c..cc1ad32f4d81a 100644 --- a/clients/client-lightsail/src/commands/CreateGUISessionAccessDetailsCommand.ts +++ b/clients/client-lightsail/src/commands/CreateGUISessionAccessDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateGUISessionAccessDetailsRequest, CreateGUISessionAccessDetailsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateGUISessionAccessDetailsRequest, CreateGUISessionAccessDetailsResult } from "../models/models_0"; import { CreateGUISessionAccessDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateInstanceSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateInstanceSnapshotCommand.ts index 2a5b9d20c962e..079df40fc0858 100644 --- a/clients/client-lightsail/src/commands/CreateInstanceSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateInstanceSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateInstanceSnapshotRequest, CreateInstanceSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateInstanceSnapshotRequest, CreateInstanceSnapshotResult } from "../models/models_0"; import { CreateInstanceSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateInstancesCommand.ts b/clients/client-lightsail/src/commands/CreateInstancesCommand.ts index ab45f7666dfbb..c435bc2d2f2a1 100644 --- a/clients/client-lightsail/src/commands/CreateInstancesCommand.ts +++ b/clients/client-lightsail/src/commands/CreateInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateInstancesRequest, CreateInstancesResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateInstancesRequest, CreateInstancesResult } from "../models/models_0"; import { CreateInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateInstancesFromSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateInstancesFromSnapshotCommand.ts index 00cf2e86c6164..3bc7b2bc5a759 100644 --- a/clients/client-lightsail/src/commands/CreateInstancesFromSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateInstancesFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateInstancesFromSnapshotRequest, CreateInstancesFromSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateInstancesFromSnapshotRequest, CreateInstancesFromSnapshotResult } from "../models/models_0"; import { CreateInstancesFromSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateKeyPairCommand.ts b/clients/client-lightsail/src/commands/CreateKeyPairCommand.ts index b58247911a983..74c384f2eff2c 100644 --- a/clients/client-lightsail/src/commands/CreateKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/CreateKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateKeyPairRequest, CreateKeyPairResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateKeyPairRequest, CreateKeyPairResult } from "../models/models_0"; import { CreateKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/CreateLoadBalancerCommand.ts index 53ff305573be0..1962c569daf56 100644 --- a/clients/client-lightsail/src/commands/CreateLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/CreateLoadBalancerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateLoadBalancerRequest, CreateLoadBalancerResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateLoadBalancerRequest, CreateLoadBalancerResult } from "../models/models_0"; import { CreateLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateLoadBalancerTlsCertificateCommand.ts b/clients/client-lightsail/src/commands/CreateLoadBalancerTlsCertificateCommand.ts index 0d876665c0541..83696f6cfffa0 100644 --- a/clients/client-lightsail/src/commands/CreateLoadBalancerTlsCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/CreateLoadBalancerTlsCertificateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateLoadBalancerTlsCertificateRequest, CreateLoadBalancerTlsCertificateResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { + CreateLoadBalancerTlsCertificateRequest, + CreateLoadBalancerTlsCertificateResult, +} from "../models/models_0"; import { CreateLoadBalancerTlsCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/CreateRelationalDatabaseCommand.ts index 95f8dec75ce02..6a325ba14fc56 100644 --- a/clients/client-lightsail/src/commands/CreateRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/CreateRelationalDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateRelationalDatabaseRequest, CreateRelationalDatabaseResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateRelationalDatabaseRequest, CreateRelationalDatabaseResult } from "../models/models_0"; import { CreateRelationalDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/CreateRelationalDatabaseFromSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateRelationalDatabaseFromSnapshotCommand.ts index 61e4c85083288..af83d2ab4777d 100644 --- a/clients/client-lightsail/src/commands/CreateRelationalDatabaseFromSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateRelationalDatabaseFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { CreateRelationalDatabaseFromSnapshotRequest, CreateRelationalDatabaseFromSnapshotResult, } from "../models/models_0"; diff --git a/clients/client-lightsail/src/commands/CreateRelationalDatabaseSnapshotCommand.ts b/clients/client-lightsail/src/commands/CreateRelationalDatabaseSnapshotCommand.ts index 0a44d7eb70966..20ae051227fde 100644 --- a/clients/client-lightsail/src/commands/CreateRelationalDatabaseSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/CreateRelationalDatabaseSnapshotCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { CreateRelationalDatabaseSnapshotRequest, CreateRelationalDatabaseSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { + CreateRelationalDatabaseSnapshotRequest, + CreateRelationalDatabaseSnapshotResult, +} from "../models/models_0"; import { CreateRelationalDatabaseSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteAlarmCommand.ts b/clients/client-lightsail/src/commands/DeleteAlarmCommand.ts index adecfa049ee5f..f6e14be2b2be3 100644 --- a/clients/client-lightsail/src/commands/DeleteAlarmCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteAlarmRequest, DeleteAlarmResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteAlarmRequest, DeleteAlarmResult } from "../models/models_0"; import { DeleteAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteAutoSnapshotCommand.ts b/clients/client-lightsail/src/commands/DeleteAutoSnapshotCommand.ts index da6eb6e3111c2..68b25a6a80cbb 100644 --- a/clients/client-lightsail/src/commands/DeleteAutoSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteAutoSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteAutoSnapshotRequest, DeleteAutoSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteAutoSnapshotRequest, DeleteAutoSnapshotResult } from "../models/models_0"; import { DeleteAutoSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteBucketAccessKeyCommand.ts b/clients/client-lightsail/src/commands/DeleteBucketAccessKeyCommand.ts index 58fbae7552b0c..20daab4931e3c 100644 --- a/clients/client-lightsail/src/commands/DeleteBucketAccessKeyCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteBucketAccessKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteBucketAccessKeyRequest, DeleteBucketAccessKeyResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteBucketAccessKeyRequest, DeleteBucketAccessKeyResult } from "../models/models_0"; import { DeleteBucketAccessKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteBucketCommand.ts b/clients/client-lightsail/src/commands/DeleteBucketCommand.ts index 60ef2cd8b0320..0f7ab76d29fa5 100644 --- a/clients/client-lightsail/src/commands/DeleteBucketCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteBucketRequest, DeleteBucketResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteBucketRequest, DeleteBucketResult } from "../models/models_0"; import { DeleteBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteCertificateCommand.ts b/clients/client-lightsail/src/commands/DeleteCertificateCommand.ts index a2b256cec3f4c..f5d336b675dee 100644 --- a/clients/client-lightsail/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteCertificateRequest, DeleteCertificateResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteCertificateRequest, DeleteCertificateResult } from "../models/models_0"; import { DeleteCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteContactMethodCommand.ts b/clients/client-lightsail/src/commands/DeleteContactMethodCommand.ts index 5b8a067d50353..136819d94d461 100644 --- a/clients/client-lightsail/src/commands/DeleteContactMethodCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteContactMethodCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteContactMethodRequest, DeleteContactMethodResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteContactMethodRequest, DeleteContactMethodResult } from "../models/models_0"; import { DeleteContactMethod } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteContainerImageCommand.ts b/clients/client-lightsail/src/commands/DeleteContainerImageCommand.ts index eb489ee8c062d..1c0a055989426 100644 --- a/clients/client-lightsail/src/commands/DeleteContainerImageCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteContainerImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteContainerImageRequest, DeleteContainerImageResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteContainerImageRequest, DeleteContainerImageResult } from "../models/models_0"; import { DeleteContainerImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteContainerServiceCommand.ts b/clients/client-lightsail/src/commands/DeleteContainerServiceCommand.ts index 9b6e6ff821c13..c2ed4c15d55b4 100644 --- a/clients/client-lightsail/src/commands/DeleteContainerServiceCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteContainerServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteContainerServiceRequest, DeleteContainerServiceResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteContainerServiceRequest, DeleteContainerServiceResult } from "../models/models_0"; import { DeleteContainerService } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteDiskCommand.ts b/clients/client-lightsail/src/commands/DeleteDiskCommand.ts index e65b3745623bc..0ca69c2278f3f 100644 --- a/clients/client-lightsail/src/commands/DeleteDiskCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDiskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteDiskRequest, DeleteDiskResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteDiskRequest, DeleteDiskResult } from "../models/models_0"; import { DeleteDisk } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteDiskSnapshotCommand.ts b/clients/client-lightsail/src/commands/DeleteDiskSnapshotCommand.ts index 49e6e4b8c3977..dbfe56b9e6e0c 100644 --- a/clients/client-lightsail/src/commands/DeleteDiskSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDiskSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteDiskSnapshotRequest, DeleteDiskSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteDiskSnapshotRequest, DeleteDiskSnapshotResult } from "../models/models_0"; import { DeleteDiskSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteDistributionCommand.ts b/clients/client-lightsail/src/commands/DeleteDistributionCommand.ts index 19577fbf1391d..ceb44275c8052 100644 --- a/clients/client-lightsail/src/commands/DeleteDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteDistributionRequest, DeleteDistributionResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteDistributionRequest, DeleteDistributionResult } from "../models/models_0"; import { DeleteDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteDomainCommand.ts b/clients/client-lightsail/src/commands/DeleteDomainCommand.ts index 6f7b3e4dd53b7..a1d681f911128 100644 --- a/clients/client-lightsail/src/commands/DeleteDomainCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteDomainRequest, DeleteDomainResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteDomainRequest, DeleteDomainResult } from "../models/models_0"; import { DeleteDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteDomainEntryCommand.ts b/clients/client-lightsail/src/commands/DeleteDomainEntryCommand.ts index 8d994f5b2d6c3..55f9541ccff23 100644 --- a/clients/client-lightsail/src/commands/DeleteDomainEntryCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteDomainEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteDomainEntryRequest, DeleteDomainEntryResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteDomainEntryRequest, DeleteDomainEntryResult } from "../models/models_0"; import { DeleteDomainEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteInstanceCommand.ts b/clients/client-lightsail/src/commands/DeleteInstanceCommand.ts index a6038dae56db0..b66e3f8eaaf36 100644 --- a/clients/client-lightsail/src/commands/DeleteInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteInstanceRequest, DeleteInstanceResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteInstanceRequest, DeleteInstanceResult } from "../models/models_0"; import { DeleteInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteInstanceSnapshotCommand.ts b/clients/client-lightsail/src/commands/DeleteInstanceSnapshotCommand.ts index 351a05b94f2ce..446b2a082f2b9 100644 --- a/clients/client-lightsail/src/commands/DeleteInstanceSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteInstanceSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteInstanceSnapshotRequest, DeleteInstanceSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteInstanceSnapshotRequest, DeleteInstanceSnapshotResult } from "../models/models_0"; import { DeleteInstanceSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteKeyPairCommand.ts b/clients/client-lightsail/src/commands/DeleteKeyPairCommand.ts index 235a1ca88e26c..e283be86787b7 100644 --- a/clients/client-lightsail/src/commands/DeleteKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteKeyPairRequest, DeleteKeyPairResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteKeyPairRequest, DeleteKeyPairResult } from "../models/models_0"; import { DeleteKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteKnownHostKeysCommand.ts b/clients/client-lightsail/src/commands/DeleteKnownHostKeysCommand.ts index 91bd34feae085..64f9c74a28847 100644 --- a/clients/client-lightsail/src/commands/DeleteKnownHostKeysCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteKnownHostKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteKnownHostKeysRequest, DeleteKnownHostKeysResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteKnownHostKeysRequest, DeleteKnownHostKeysResult } from "../models/models_0"; import { DeleteKnownHostKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/DeleteLoadBalancerCommand.ts index 29f21159a396f..0c25f1fab0b4b 100644 --- a/clients/client-lightsail/src/commands/DeleteLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteLoadBalancerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteLoadBalancerRequest, DeleteLoadBalancerResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteLoadBalancerRequest, DeleteLoadBalancerResult } from "../models/models_0"; import { DeleteLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteLoadBalancerTlsCertificateCommand.ts b/clients/client-lightsail/src/commands/DeleteLoadBalancerTlsCertificateCommand.ts index 59c0fcf252284..e5186bdf939d8 100644 --- a/clients/client-lightsail/src/commands/DeleteLoadBalancerTlsCertificateCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteLoadBalancerTlsCertificateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteLoadBalancerTlsCertificateRequest, DeleteLoadBalancerTlsCertificateResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { + DeleteLoadBalancerTlsCertificateRequest, + DeleteLoadBalancerTlsCertificateResult, +} from "../models/models_0"; import { DeleteLoadBalancerTlsCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/DeleteRelationalDatabaseCommand.ts index b6f878a51d768..181c50bb4f10c 100644 --- a/clients/client-lightsail/src/commands/DeleteRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteRelationalDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteRelationalDatabaseRequest, DeleteRelationalDatabaseResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DeleteRelationalDatabaseRequest, DeleteRelationalDatabaseResult } from "../models/models_0"; import { DeleteRelationalDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DeleteRelationalDatabaseSnapshotCommand.ts b/clients/client-lightsail/src/commands/DeleteRelationalDatabaseSnapshotCommand.ts index 5aa42d21fd411..c0a2d9d6666ec 100644 --- a/clients/client-lightsail/src/commands/DeleteRelationalDatabaseSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/DeleteRelationalDatabaseSnapshotCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DeleteRelationalDatabaseSnapshotRequest, DeleteRelationalDatabaseSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { + DeleteRelationalDatabaseSnapshotRequest, + DeleteRelationalDatabaseSnapshotResult, +} from "../models/models_0"; import { DeleteRelationalDatabaseSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DetachCertificateFromDistributionCommand.ts b/clients/client-lightsail/src/commands/DetachCertificateFromDistributionCommand.ts index 8953edcc9b0d0..9943731ce6b1e 100644 --- a/clients/client-lightsail/src/commands/DetachCertificateFromDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/DetachCertificateFromDistributionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DetachCertificateFromDistributionRequest, DetachCertificateFromDistributionResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { + DetachCertificateFromDistributionRequest, + DetachCertificateFromDistributionResult, +} from "../models/models_0"; import { DetachCertificateFromDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DetachDiskCommand.ts b/clients/client-lightsail/src/commands/DetachDiskCommand.ts index b974201edbb12..24d85c7518b61 100644 --- a/clients/client-lightsail/src/commands/DetachDiskCommand.ts +++ b/clients/client-lightsail/src/commands/DetachDiskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DetachDiskRequest, DetachDiskResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DetachDiskRequest, DetachDiskResult } from "../models/models_0"; import { DetachDisk } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DetachInstancesFromLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/DetachInstancesFromLoadBalancerCommand.ts index 754e8fb965268..a7910dc0bc865 100644 --- a/clients/client-lightsail/src/commands/DetachInstancesFromLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/DetachInstancesFromLoadBalancerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DetachInstancesFromLoadBalancerRequest, DetachInstancesFromLoadBalancerResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DetachInstancesFromLoadBalancerRequest, DetachInstancesFromLoadBalancerResult } from "../models/models_0"; import { DetachInstancesFromLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DetachStaticIpCommand.ts b/clients/client-lightsail/src/commands/DetachStaticIpCommand.ts index 369c1908e52b3..74273bf930f68 100644 --- a/clients/client-lightsail/src/commands/DetachStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/DetachStaticIpCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DetachStaticIpRequest, DetachStaticIpResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DetachStaticIpRequest, DetachStaticIpResult } from "../models/models_0"; import { DetachStaticIp } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DisableAddOnCommand.ts b/clients/client-lightsail/src/commands/DisableAddOnCommand.ts index e8826dbb1e1b2..64b9450b3cd9b 100644 --- a/clients/client-lightsail/src/commands/DisableAddOnCommand.ts +++ b/clients/client-lightsail/src/commands/DisableAddOnCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DisableAddOnRequest, DisableAddOnResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DisableAddOnRequest, DisableAddOnResult } from "../models/models_0"; import { DisableAddOn } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/DownloadDefaultKeyPairCommand.ts b/clients/client-lightsail/src/commands/DownloadDefaultKeyPairCommand.ts index 27ed8d8651a6d..918b422c33fdc 100644 --- a/clients/client-lightsail/src/commands/DownloadDefaultKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/DownloadDefaultKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { DownloadDefaultKeyPairRequest, DownloadDefaultKeyPairResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { DownloadDefaultKeyPairRequest, DownloadDefaultKeyPairResult } from "../models/models_0"; import { DownloadDefaultKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/EnableAddOnCommand.ts b/clients/client-lightsail/src/commands/EnableAddOnCommand.ts index d5961f8de3647..319c5719b2bf9 100644 --- a/clients/client-lightsail/src/commands/EnableAddOnCommand.ts +++ b/clients/client-lightsail/src/commands/EnableAddOnCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { EnableAddOnRequest, EnableAddOnResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { EnableAddOnRequest, EnableAddOnResult } from "../models/models_0"; import { EnableAddOn } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/ExportSnapshotCommand.ts b/clients/client-lightsail/src/commands/ExportSnapshotCommand.ts index de92a80692a4e..2662dcb4156b0 100644 --- a/clients/client-lightsail/src/commands/ExportSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/ExportSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { ExportSnapshotRequest, ExportSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { ExportSnapshotRequest, ExportSnapshotResult } from "../models/models_0"; import { ExportSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetActiveNamesCommand.ts b/clients/client-lightsail/src/commands/GetActiveNamesCommand.ts index 8e63dd8daf292..7b83c86277981 100644 --- a/clients/client-lightsail/src/commands/GetActiveNamesCommand.ts +++ b/clients/client-lightsail/src/commands/GetActiveNamesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetActiveNamesRequest, GetActiveNamesResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetActiveNamesRequest, GetActiveNamesResult } from "../models/models_0"; import { GetActiveNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetAlarmsCommand.ts b/clients/client-lightsail/src/commands/GetAlarmsCommand.ts index f3162dc215ae9..b4742e008bc8f 100644 --- a/clients/client-lightsail/src/commands/GetAlarmsCommand.ts +++ b/clients/client-lightsail/src/commands/GetAlarmsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetAlarmsRequest, GetAlarmsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetAlarmsRequest, GetAlarmsResult } from "../models/models_0"; import { GetAlarms } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetAutoSnapshotsCommand.ts b/clients/client-lightsail/src/commands/GetAutoSnapshotsCommand.ts index 4294f1dbcec01..00e2d848ad491 100644 --- a/clients/client-lightsail/src/commands/GetAutoSnapshotsCommand.ts +++ b/clients/client-lightsail/src/commands/GetAutoSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetAutoSnapshotsRequest, GetAutoSnapshotsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetAutoSnapshotsRequest, GetAutoSnapshotsResult } from "../models/models_0"; import { GetAutoSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetBlueprintsCommand.ts b/clients/client-lightsail/src/commands/GetBlueprintsCommand.ts index 75604f98c09c4..ce3c7c36effa6 100644 --- a/clients/client-lightsail/src/commands/GetBlueprintsCommand.ts +++ b/clients/client-lightsail/src/commands/GetBlueprintsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetBlueprintsRequest, GetBlueprintsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetBlueprintsRequest, GetBlueprintsResult } from "../models/models_0"; import { GetBlueprints } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetBucketAccessKeysCommand.ts b/clients/client-lightsail/src/commands/GetBucketAccessKeysCommand.ts index 3f777935af3b3..a5d4a16c5626b 100644 --- a/clients/client-lightsail/src/commands/GetBucketAccessKeysCommand.ts +++ b/clients/client-lightsail/src/commands/GetBucketAccessKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetBucketAccessKeysRequest, GetBucketAccessKeysResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetBucketAccessKeysRequest, GetBucketAccessKeysResult } from "../models/models_0"; import { GetBucketAccessKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetBucketBundlesCommand.ts b/clients/client-lightsail/src/commands/GetBucketBundlesCommand.ts index eef732644a97c..f50830acac002 100644 --- a/clients/client-lightsail/src/commands/GetBucketBundlesCommand.ts +++ b/clients/client-lightsail/src/commands/GetBucketBundlesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetBucketBundlesRequest, GetBucketBundlesResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetBucketBundlesRequest, GetBucketBundlesResult } from "../models/models_0"; import { GetBucketBundles } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetBucketMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetBucketMetricDataCommand.ts index 6a5144e01033f..c2a81bbf76e2e 100644 --- a/clients/client-lightsail/src/commands/GetBucketMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetBucketMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetBucketMetricDataRequest, GetBucketMetricDataResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetBucketMetricDataRequest, GetBucketMetricDataResult } from "../models/models_0"; import { GetBucketMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetBucketsCommand.ts b/clients/client-lightsail/src/commands/GetBucketsCommand.ts index ec3e378adb40e..89fc0a37fd9ab 100644 --- a/clients/client-lightsail/src/commands/GetBucketsCommand.ts +++ b/clients/client-lightsail/src/commands/GetBucketsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetBucketsRequest, GetBucketsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetBucketsRequest, GetBucketsResult } from "../models/models_0"; import { GetBuckets } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetBundlesCommand.ts b/clients/client-lightsail/src/commands/GetBundlesCommand.ts index a09e6c43de3ca..fe02a79a6deef 100644 --- a/clients/client-lightsail/src/commands/GetBundlesCommand.ts +++ b/clients/client-lightsail/src/commands/GetBundlesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetBundlesRequest, GetBundlesResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetBundlesRequest, GetBundlesResult } from "../models/models_0"; import { GetBundles } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetCertificatesCommand.ts b/clients/client-lightsail/src/commands/GetCertificatesCommand.ts index dda4bae79eeaf..e6473bce32958 100644 --- a/clients/client-lightsail/src/commands/GetCertificatesCommand.ts +++ b/clients/client-lightsail/src/commands/GetCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetCertificatesRequest, GetCertificatesResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetCertificatesRequest, GetCertificatesResult } from "../models/models_0"; import { GetCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetCloudFormationStackRecordsCommand.ts b/clients/client-lightsail/src/commands/GetCloudFormationStackRecordsCommand.ts index ca0daa4bfd0fa..13c3d3b28989d 100644 --- a/clients/client-lightsail/src/commands/GetCloudFormationStackRecordsCommand.ts +++ b/clients/client-lightsail/src/commands/GetCloudFormationStackRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetCloudFormationStackRecordsRequest, GetCloudFormationStackRecordsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetCloudFormationStackRecordsRequest, GetCloudFormationStackRecordsResult } from "../models/models_0"; import { GetCloudFormationStackRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetContactMethodsCommand.ts b/clients/client-lightsail/src/commands/GetContactMethodsCommand.ts index 85ff1c6c4be76..12974b31703b6 100644 --- a/clients/client-lightsail/src/commands/GetContactMethodsCommand.ts +++ b/clients/client-lightsail/src/commands/GetContactMethodsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetContactMethodsRequest, GetContactMethodsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetContactMethodsRequest, GetContactMethodsResult } from "../models/models_0"; import { GetContactMethods } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetContainerAPIMetadataCommand.ts b/clients/client-lightsail/src/commands/GetContainerAPIMetadataCommand.ts index 740b650276441..684f47b507b41 100644 --- a/clients/client-lightsail/src/commands/GetContainerAPIMetadataCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerAPIMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetContainerAPIMetadataRequest, GetContainerAPIMetadataResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetContainerAPIMetadataRequest, GetContainerAPIMetadataResult } from "../models/models_0"; import { GetContainerAPIMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetContainerImagesCommand.ts b/clients/client-lightsail/src/commands/GetContainerImagesCommand.ts index 3d0c58e8ee841..21d5e9accea1f 100644 --- a/clients/client-lightsail/src/commands/GetContainerImagesCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetContainerImagesRequest, GetContainerImagesResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetContainerImagesRequest, GetContainerImagesResult } from "../models/models_0"; import { GetContainerImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetContainerLogCommand.ts b/clients/client-lightsail/src/commands/GetContainerLogCommand.ts index 07de98fd652c7..5446041b3109f 100644 --- a/clients/client-lightsail/src/commands/GetContainerLogCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerLogCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetContainerLogRequest, GetContainerLogResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetContainerLogRequest, GetContainerLogResult } from "../models/models_0"; import { GetContainerLog } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetContainerServiceDeploymentsCommand.ts b/clients/client-lightsail/src/commands/GetContainerServiceDeploymentsCommand.ts index faba4cc6277e9..43920edf8e5e5 100644 --- a/clients/client-lightsail/src/commands/GetContainerServiceDeploymentsCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerServiceDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetContainerServiceDeploymentsRequest, GetContainerServiceDeploymentsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetContainerServiceDeploymentsRequest, GetContainerServiceDeploymentsResult } from "../models/models_0"; import { GetContainerServiceDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetContainerServiceMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetContainerServiceMetricDataCommand.ts index ac2df6ecefbe0..4579cc60887db 100644 --- a/clients/client-lightsail/src/commands/GetContainerServiceMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerServiceMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetContainerServiceMetricDataRequest, GetContainerServiceMetricDataResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetContainerServiceMetricDataRequest, GetContainerServiceMetricDataResult } from "../models/models_0"; import { GetContainerServiceMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetContainerServicePowersCommand.ts b/clients/client-lightsail/src/commands/GetContainerServicePowersCommand.ts index ee939b4611a15..e9d974a51d3fa 100644 --- a/clients/client-lightsail/src/commands/GetContainerServicePowersCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerServicePowersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetContainerServicePowersRequest, GetContainerServicePowersResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetContainerServicePowersRequest, GetContainerServicePowersResult } from "../models/models_0"; import { GetContainerServicePowers } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetContainerServicesCommand.ts b/clients/client-lightsail/src/commands/GetContainerServicesCommand.ts index d75dcd57eb70c..279a7f4bb21c5 100644 --- a/clients/client-lightsail/src/commands/GetContainerServicesCommand.ts +++ b/clients/client-lightsail/src/commands/GetContainerServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { ContainerServicesListResult, GetContainerServicesRequest } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { ContainerServicesListResult, GetContainerServicesRequest } from "../models/models_0"; import { GetContainerServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetCostEstimateCommand.ts b/clients/client-lightsail/src/commands/GetCostEstimateCommand.ts index 184399be2028d..954260c2bbb8b 100644 --- a/clients/client-lightsail/src/commands/GetCostEstimateCommand.ts +++ b/clients/client-lightsail/src/commands/GetCostEstimateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetCostEstimateRequest, GetCostEstimateResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetCostEstimateRequest, GetCostEstimateResult } from "../models/models_0"; import { GetCostEstimate } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDiskCommand.ts b/clients/client-lightsail/src/commands/GetDiskCommand.ts index 5e3c1776bc7bd..425be3bb80b34 100644 --- a/clients/client-lightsail/src/commands/GetDiskCommand.ts +++ b/clients/client-lightsail/src/commands/GetDiskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDiskRequest, GetDiskResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDiskRequest, GetDiskResult } from "../models/models_0"; import { GetDisk } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDiskSnapshotCommand.ts b/clients/client-lightsail/src/commands/GetDiskSnapshotCommand.ts index e944223cd4c1a..d66ed49527d18 100644 --- a/clients/client-lightsail/src/commands/GetDiskSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/GetDiskSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDiskSnapshotRequest, GetDiskSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDiskSnapshotRequest, GetDiskSnapshotResult } from "../models/models_0"; import { GetDiskSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDiskSnapshotsCommand.ts b/clients/client-lightsail/src/commands/GetDiskSnapshotsCommand.ts index 1ecda857cd638..2b5e515628aed 100644 --- a/clients/client-lightsail/src/commands/GetDiskSnapshotsCommand.ts +++ b/clients/client-lightsail/src/commands/GetDiskSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDiskSnapshotsRequest, GetDiskSnapshotsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDiskSnapshotsRequest, GetDiskSnapshotsResult } from "../models/models_0"; import { GetDiskSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDisksCommand.ts b/clients/client-lightsail/src/commands/GetDisksCommand.ts index 9bd283fcce434..85a1fa0404065 100644 --- a/clients/client-lightsail/src/commands/GetDisksCommand.ts +++ b/clients/client-lightsail/src/commands/GetDisksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDisksRequest, GetDisksResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDisksRequest, GetDisksResult } from "../models/models_0"; import { GetDisks } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDistributionBundlesCommand.ts b/clients/client-lightsail/src/commands/GetDistributionBundlesCommand.ts index 0b761637d3855..8fe6ed4736e40 100644 --- a/clients/client-lightsail/src/commands/GetDistributionBundlesCommand.ts +++ b/clients/client-lightsail/src/commands/GetDistributionBundlesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDistributionBundlesRequest, GetDistributionBundlesResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDistributionBundlesRequest, GetDistributionBundlesResult } from "../models/models_0"; import { GetDistributionBundles } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDistributionLatestCacheResetCommand.ts b/clients/client-lightsail/src/commands/GetDistributionLatestCacheResetCommand.ts index 61cab21a61e02..463ea00f2bec8 100644 --- a/clients/client-lightsail/src/commands/GetDistributionLatestCacheResetCommand.ts +++ b/clients/client-lightsail/src/commands/GetDistributionLatestCacheResetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDistributionLatestCacheResetRequest, GetDistributionLatestCacheResetResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDistributionLatestCacheResetRequest, GetDistributionLatestCacheResetResult } from "../models/models_0"; import { GetDistributionLatestCacheReset } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDistributionMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetDistributionMetricDataCommand.ts index ca190163c45af..748cc0529b966 100644 --- a/clients/client-lightsail/src/commands/GetDistributionMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetDistributionMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDistributionMetricDataRequest, GetDistributionMetricDataResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDistributionMetricDataRequest, GetDistributionMetricDataResult } from "../models/models_0"; import { GetDistributionMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDistributionsCommand.ts b/clients/client-lightsail/src/commands/GetDistributionsCommand.ts index c41440cf12f9a..12f0f59f28a95 100644 --- a/clients/client-lightsail/src/commands/GetDistributionsCommand.ts +++ b/clients/client-lightsail/src/commands/GetDistributionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDistributionsRequest, GetDistributionsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDistributionsRequest, GetDistributionsResult } from "../models/models_0"; import { GetDistributions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDomainCommand.ts b/clients/client-lightsail/src/commands/GetDomainCommand.ts index dfd0b4bab448c..ff4199348353d 100644 --- a/clients/client-lightsail/src/commands/GetDomainCommand.ts +++ b/clients/client-lightsail/src/commands/GetDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDomainRequest, GetDomainResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDomainRequest, GetDomainResult } from "../models/models_0"; import { GetDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetDomainsCommand.ts b/clients/client-lightsail/src/commands/GetDomainsCommand.ts index 1a6f17fe21569..37976e6a165a2 100644 --- a/clients/client-lightsail/src/commands/GetDomainsCommand.ts +++ b/clients/client-lightsail/src/commands/GetDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetDomainsRequest, GetDomainsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetDomainsRequest, GetDomainsResult } from "../models/models_0"; import { GetDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetExportSnapshotRecordsCommand.ts b/clients/client-lightsail/src/commands/GetExportSnapshotRecordsCommand.ts index 82f1898627a7a..0960cfd081f1d 100644 --- a/clients/client-lightsail/src/commands/GetExportSnapshotRecordsCommand.ts +++ b/clients/client-lightsail/src/commands/GetExportSnapshotRecordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetExportSnapshotRecordsRequest, GetExportSnapshotRecordsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetExportSnapshotRecordsRequest, GetExportSnapshotRecordsResult } from "../models/models_0"; import { GetExportSnapshotRecords } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetInstanceAccessDetailsCommand.ts b/clients/client-lightsail/src/commands/GetInstanceAccessDetailsCommand.ts index 8d5f85e362096..036b9a97cf963 100644 --- a/clients/client-lightsail/src/commands/GetInstanceAccessDetailsCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceAccessDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetInstanceAccessDetailsRequest, GetInstanceAccessDetailsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetInstanceAccessDetailsRequest, GetInstanceAccessDetailsResult } from "../models/models_0"; import { GetInstanceAccessDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetInstanceCommand.ts b/clients/client-lightsail/src/commands/GetInstanceCommand.ts index ebfd8b9310972..553c3b94c9287 100644 --- a/clients/client-lightsail/src/commands/GetInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetInstanceRequest, GetInstanceResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetInstanceRequest, GetInstanceResult } from "../models/models_0"; import { GetInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetInstanceMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetInstanceMetricDataCommand.ts index 1ff6902108ed0..a86b255c174e1 100644 --- a/clients/client-lightsail/src/commands/GetInstanceMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetInstanceMetricDataRequest, GetInstanceMetricDataResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetInstanceMetricDataRequest, GetInstanceMetricDataResult } from "../models/models_0"; import { GetInstanceMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetInstancePortStatesCommand.ts b/clients/client-lightsail/src/commands/GetInstancePortStatesCommand.ts index 1e1026a078905..9423e9a264988 100644 --- a/clients/client-lightsail/src/commands/GetInstancePortStatesCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstancePortStatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetInstancePortStatesRequest, GetInstancePortStatesResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetInstancePortStatesRequest, GetInstancePortStatesResult } from "../models/models_0"; import { GetInstancePortStates } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetInstanceSnapshotCommand.ts b/clients/client-lightsail/src/commands/GetInstanceSnapshotCommand.ts index 2c0b4d60a6121..ce402dd82f685 100644 --- a/clients/client-lightsail/src/commands/GetInstanceSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetInstanceSnapshotRequest, GetInstanceSnapshotResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetInstanceSnapshotRequest, GetInstanceSnapshotResult } from "../models/models_0"; import { GetInstanceSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetInstanceSnapshotsCommand.ts b/clients/client-lightsail/src/commands/GetInstanceSnapshotsCommand.ts index 668734ae3a0e1..0fea7b035c3ec 100644 --- a/clients/client-lightsail/src/commands/GetInstanceSnapshotsCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetInstanceSnapshotsRequest, GetInstanceSnapshotsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetInstanceSnapshotsRequest, GetInstanceSnapshotsResult } from "../models/models_0"; import { GetInstanceSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetInstanceStateCommand.ts b/clients/client-lightsail/src/commands/GetInstanceStateCommand.ts index 02c2849140c5d..57cc7938c1ac8 100644 --- a/clients/client-lightsail/src/commands/GetInstanceStateCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstanceStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetInstanceStateRequest, GetInstanceStateResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetInstanceStateRequest, GetInstanceStateResult } from "../models/models_0"; import { GetInstanceState } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetInstancesCommand.ts b/clients/client-lightsail/src/commands/GetInstancesCommand.ts index 7f156e055f2dd..3b8e4a79f6a04 100644 --- a/clients/client-lightsail/src/commands/GetInstancesCommand.ts +++ b/clients/client-lightsail/src/commands/GetInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetInstancesRequest, GetInstancesResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetInstancesRequest, GetInstancesResult } from "../models/models_0"; import { GetInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetKeyPairCommand.ts b/clients/client-lightsail/src/commands/GetKeyPairCommand.ts index cde346877d795..ee945853505fb 100644 --- a/clients/client-lightsail/src/commands/GetKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/GetKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetKeyPairRequest, GetKeyPairResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetKeyPairRequest, GetKeyPairResult } from "../models/models_0"; import { GetKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetKeyPairsCommand.ts b/clients/client-lightsail/src/commands/GetKeyPairsCommand.ts index 820c412df7d4a..b1bbd26bd5690 100644 --- a/clients/client-lightsail/src/commands/GetKeyPairsCommand.ts +++ b/clients/client-lightsail/src/commands/GetKeyPairsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetKeyPairsRequest, GetKeyPairsResult } from "../models/models_0"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetKeyPairsRequest, GetKeyPairsResult } from "../models/models_0"; import { GetKeyPairs } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetLoadBalancerCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancerCommand.ts index 8a24e3bab8125..99171f15ba115 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancerCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetLoadBalancerRequest } from "../models/models_0"; -import { GetLoadBalancerResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetLoadBalancerRequest } from "../models/models_0"; +import type { GetLoadBalancerResult } from "../models/models_1"; import { GetLoadBalancer } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetLoadBalancerMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancerMetricDataCommand.ts index 0663e9d5d8828..084546d2f9ab0 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancerMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancerMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetLoadBalancerMetricDataRequest, GetLoadBalancerMetricDataResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetLoadBalancerMetricDataRequest, GetLoadBalancerMetricDataResult } from "../models/models_1"; import { GetLoadBalancerMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetLoadBalancerTlsCertificatesCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancerTlsCertificatesCommand.ts index e0742a58a2eec..0462c0b8eed6d 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancerTlsCertificatesCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancerTlsCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetLoadBalancerTlsCertificatesRequest, GetLoadBalancerTlsCertificatesResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetLoadBalancerTlsCertificatesRequest, GetLoadBalancerTlsCertificatesResult } from "../models/models_1"; import { GetLoadBalancerTlsCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetLoadBalancerTlsPoliciesCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancerTlsPoliciesCommand.ts index f49c0aba83fb1..c54936af6f42f 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancerTlsPoliciesCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancerTlsPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetLoadBalancerTlsPoliciesRequest, GetLoadBalancerTlsPoliciesResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetLoadBalancerTlsPoliciesRequest, GetLoadBalancerTlsPoliciesResult } from "../models/models_1"; import { GetLoadBalancerTlsPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetLoadBalancersCommand.ts b/clients/client-lightsail/src/commands/GetLoadBalancersCommand.ts index 9bcb20492db2d..43ab5a3765eb5 100644 --- a/clients/client-lightsail/src/commands/GetLoadBalancersCommand.ts +++ b/clients/client-lightsail/src/commands/GetLoadBalancersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetLoadBalancersRequest, GetLoadBalancersResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetLoadBalancersRequest, GetLoadBalancersResult } from "../models/models_1"; import { GetLoadBalancers } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetOperationCommand.ts b/clients/client-lightsail/src/commands/GetOperationCommand.ts index 71c51277f20a6..c807d10fb6791 100644 --- a/clients/client-lightsail/src/commands/GetOperationCommand.ts +++ b/clients/client-lightsail/src/commands/GetOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetOperationRequest, GetOperationResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetOperationRequest, GetOperationResult } from "../models/models_1"; import { GetOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetOperationsCommand.ts b/clients/client-lightsail/src/commands/GetOperationsCommand.ts index af83b42d0486f..b989d998c667f 100644 --- a/clients/client-lightsail/src/commands/GetOperationsCommand.ts +++ b/clients/client-lightsail/src/commands/GetOperationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetOperationsRequest, GetOperationsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetOperationsRequest, GetOperationsResult } from "../models/models_1"; import { GetOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetOperationsForResourceCommand.ts b/clients/client-lightsail/src/commands/GetOperationsForResourceCommand.ts index a40bc785212bd..8944eb6cc0cb1 100644 --- a/clients/client-lightsail/src/commands/GetOperationsForResourceCommand.ts +++ b/clients/client-lightsail/src/commands/GetOperationsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetOperationsForResourceRequest, GetOperationsForResourceResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetOperationsForResourceRequest, GetOperationsForResourceResult } from "../models/models_1"; import { GetOperationsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRegionsCommand.ts b/clients/client-lightsail/src/commands/GetRegionsCommand.ts index 111dd4d5c9ec0..1ff2a597f19f6 100644 --- a/clients/client-lightsail/src/commands/GetRegionsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRegionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRegionsRequest, GetRegionsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRegionsRequest, GetRegionsResult } from "../models/models_1"; import { GetRegions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseBlueprintsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseBlueprintsCommand.ts index d30098694af71..495fcc3a6a6b1 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseBlueprintsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseBlueprintsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseBlueprintsRequest, GetRelationalDatabaseBlueprintsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseBlueprintsRequest, GetRelationalDatabaseBlueprintsResult } from "../models/models_1"; import { GetRelationalDatabaseBlueprints } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseBundlesCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseBundlesCommand.ts index b7a9738b36df8..abb3e676166a1 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseBundlesCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseBundlesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseBundlesRequest, GetRelationalDatabaseBundlesResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseBundlesRequest, GetRelationalDatabaseBundlesResult } from "../models/models_1"; import { GetRelationalDatabaseBundles } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseCommand.ts index ff479ead879bb..21e6bc1fb8769 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseRequest, GetRelationalDatabaseResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseRequest, GetRelationalDatabaseResult } from "../models/models_1"; import { GetRelationalDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseEventsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseEventsCommand.ts index b55071ece8872..ee83818429b7d 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseEventsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseEventsRequest, GetRelationalDatabaseEventsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseEventsRequest, GetRelationalDatabaseEventsResult } from "../models/models_1"; import { GetRelationalDatabaseEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseLogEventsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseLogEventsCommand.ts index 0580fab5175e2..2b10280c65ebc 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseLogEventsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseLogEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseLogEventsRequest, GetRelationalDatabaseLogEventsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseLogEventsRequest, GetRelationalDatabaseLogEventsResult } from "../models/models_1"; import { GetRelationalDatabaseLogEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseLogStreamsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseLogStreamsCommand.ts index 6b2177a49d82e..7b63e79ee43d9 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseLogStreamsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseLogStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseLogStreamsRequest, GetRelationalDatabaseLogStreamsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseLogStreamsRequest, GetRelationalDatabaseLogStreamsResult } from "../models/models_1"; import { GetRelationalDatabaseLogStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseMasterUserPasswordCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseMasterUserPasswordCommand.ts index 4a356a18ba6e9..aaf69d62ed4af 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseMasterUserPasswordCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseMasterUserPasswordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseMasterUserPasswordRequest, GetRelationalDatabaseMasterUserPasswordResult, } from "../models/models_1"; diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseMetricDataCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseMetricDataCommand.ts index fcb99deb52adf..ee8b5a105c37f 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseMetricDataCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseMetricDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseMetricDataRequest, GetRelationalDatabaseMetricDataResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseMetricDataRequest, GetRelationalDatabaseMetricDataResult } from "../models/models_1"; import { GetRelationalDatabaseMetricData } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseParametersCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseParametersCommand.ts index 35ad684615e74..3e9987f62cdf9 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseParametersCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseParametersRequest, GetRelationalDatabaseParametersResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseParametersRequest, GetRelationalDatabaseParametersResult } from "../models/models_1"; import { GetRelationalDatabaseParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotCommand.ts index 1f43c9422b286..84e28739b1abc 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseSnapshotRequest, GetRelationalDatabaseSnapshotResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseSnapshotRequest, GetRelationalDatabaseSnapshotResult } from "../models/models_1"; import { GetRelationalDatabaseSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotsCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotsCommand.ts index 8a83f8a5a4264..b66e79cd640a3 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotsCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabaseSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabaseSnapshotsRequest, GetRelationalDatabaseSnapshotsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabaseSnapshotsRequest, GetRelationalDatabaseSnapshotsResult } from "../models/models_1"; import { GetRelationalDatabaseSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetRelationalDatabasesCommand.ts b/clients/client-lightsail/src/commands/GetRelationalDatabasesCommand.ts index 072eb321a2c23..c1496418bd3d5 100644 --- a/clients/client-lightsail/src/commands/GetRelationalDatabasesCommand.ts +++ b/clients/client-lightsail/src/commands/GetRelationalDatabasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetRelationalDatabasesRequest, GetRelationalDatabasesResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetRelationalDatabasesRequest, GetRelationalDatabasesResult } from "../models/models_1"; import { GetRelationalDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetSetupHistoryCommand.ts b/clients/client-lightsail/src/commands/GetSetupHistoryCommand.ts index 2ae8bc20c72d4..c98259399fdda 100644 --- a/clients/client-lightsail/src/commands/GetSetupHistoryCommand.ts +++ b/clients/client-lightsail/src/commands/GetSetupHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetSetupHistoryRequest, GetSetupHistoryResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetSetupHistoryRequest, GetSetupHistoryResult } from "../models/models_1"; import { GetSetupHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetStaticIpCommand.ts b/clients/client-lightsail/src/commands/GetStaticIpCommand.ts index 4b5737720835b..8ec26afda14d1 100644 --- a/clients/client-lightsail/src/commands/GetStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/GetStaticIpCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetStaticIpRequest, GetStaticIpResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetStaticIpRequest, GetStaticIpResult } from "../models/models_1"; import { GetStaticIp } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/GetStaticIpsCommand.ts b/clients/client-lightsail/src/commands/GetStaticIpsCommand.ts index 8d9b19aa4d1b4..c4554fbd1a56c 100644 --- a/clients/client-lightsail/src/commands/GetStaticIpsCommand.ts +++ b/clients/client-lightsail/src/commands/GetStaticIpsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { GetStaticIpsRequest, GetStaticIpsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { GetStaticIpsRequest, GetStaticIpsResult } from "../models/models_1"; import { GetStaticIps } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/ImportKeyPairCommand.ts b/clients/client-lightsail/src/commands/ImportKeyPairCommand.ts index a1b0f63b9e668..412ec94b69cbd 100644 --- a/clients/client-lightsail/src/commands/ImportKeyPairCommand.ts +++ b/clients/client-lightsail/src/commands/ImportKeyPairCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { ImportKeyPairRequest, ImportKeyPairResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { ImportKeyPairRequest, ImportKeyPairResult } from "../models/models_1"; import { ImportKeyPair } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/IsVpcPeeredCommand.ts b/clients/client-lightsail/src/commands/IsVpcPeeredCommand.ts index 4d203c3d72588..83852903b2538 100644 --- a/clients/client-lightsail/src/commands/IsVpcPeeredCommand.ts +++ b/clients/client-lightsail/src/commands/IsVpcPeeredCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { IsVpcPeeredRequest, IsVpcPeeredResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { IsVpcPeeredRequest, IsVpcPeeredResult } from "../models/models_1"; import { IsVpcPeered } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/OpenInstancePublicPortsCommand.ts b/clients/client-lightsail/src/commands/OpenInstancePublicPortsCommand.ts index 92c167fc14dd2..60417d9854925 100644 --- a/clients/client-lightsail/src/commands/OpenInstancePublicPortsCommand.ts +++ b/clients/client-lightsail/src/commands/OpenInstancePublicPortsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { OpenInstancePublicPortsRequest, OpenInstancePublicPortsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { OpenInstancePublicPortsRequest, OpenInstancePublicPortsResult } from "../models/models_1"; import { OpenInstancePublicPorts } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/PeerVpcCommand.ts b/clients/client-lightsail/src/commands/PeerVpcCommand.ts index 6c7136c19b599..63cc37bc59780 100644 --- a/clients/client-lightsail/src/commands/PeerVpcCommand.ts +++ b/clients/client-lightsail/src/commands/PeerVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { PeerVpcRequest, PeerVpcResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { PeerVpcRequest, PeerVpcResult } from "../models/models_1"; import { PeerVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/PutAlarmCommand.ts b/clients/client-lightsail/src/commands/PutAlarmCommand.ts index 782d68822c609..4c6b44e5254e7 100644 --- a/clients/client-lightsail/src/commands/PutAlarmCommand.ts +++ b/clients/client-lightsail/src/commands/PutAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { PutAlarmRequest, PutAlarmResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { PutAlarmRequest, PutAlarmResult } from "../models/models_1"; import { PutAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/PutInstancePublicPortsCommand.ts b/clients/client-lightsail/src/commands/PutInstancePublicPortsCommand.ts index 26acc0fc4e1c2..9e6f98d53c017 100644 --- a/clients/client-lightsail/src/commands/PutInstancePublicPortsCommand.ts +++ b/clients/client-lightsail/src/commands/PutInstancePublicPortsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { PutInstancePublicPortsRequest, PutInstancePublicPortsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { PutInstancePublicPortsRequest, PutInstancePublicPortsResult } from "../models/models_1"; import { PutInstancePublicPorts } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/RebootInstanceCommand.ts b/clients/client-lightsail/src/commands/RebootInstanceCommand.ts index d7693c5b9d80b..0023e7ae2410b 100644 --- a/clients/client-lightsail/src/commands/RebootInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/RebootInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { RebootInstanceRequest, RebootInstanceResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { RebootInstanceRequest, RebootInstanceResult } from "../models/models_1"; import { RebootInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/RebootRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/RebootRelationalDatabaseCommand.ts index 7ac58eeb96af7..4c829d284c7cc 100644 --- a/clients/client-lightsail/src/commands/RebootRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/RebootRelationalDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { RebootRelationalDatabaseRequest, RebootRelationalDatabaseResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { RebootRelationalDatabaseRequest, RebootRelationalDatabaseResult } from "../models/models_1"; import { RebootRelationalDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/RegisterContainerImageCommand.ts b/clients/client-lightsail/src/commands/RegisterContainerImageCommand.ts index 3cd92d510ad76..2858e2c78985a 100644 --- a/clients/client-lightsail/src/commands/RegisterContainerImageCommand.ts +++ b/clients/client-lightsail/src/commands/RegisterContainerImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { RegisterContainerImageRequest, RegisterContainerImageResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { RegisterContainerImageRequest, RegisterContainerImageResult } from "../models/models_1"; import { RegisterContainerImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/ReleaseStaticIpCommand.ts b/clients/client-lightsail/src/commands/ReleaseStaticIpCommand.ts index 6992d52b1c079..85e6c64c67598 100644 --- a/clients/client-lightsail/src/commands/ReleaseStaticIpCommand.ts +++ b/clients/client-lightsail/src/commands/ReleaseStaticIpCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { ReleaseStaticIpRequest, ReleaseStaticIpResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { ReleaseStaticIpRequest, ReleaseStaticIpResult } from "../models/models_1"; import { ReleaseStaticIp } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/ResetDistributionCacheCommand.ts b/clients/client-lightsail/src/commands/ResetDistributionCacheCommand.ts index d2337f2a02ce9..1b72ebc7b38c4 100644 --- a/clients/client-lightsail/src/commands/ResetDistributionCacheCommand.ts +++ b/clients/client-lightsail/src/commands/ResetDistributionCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { ResetDistributionCacheRequest, ResetDistributionCacheResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { ResetDistributionCacheRequest, ResetDistributionCacheResult } from "../models/models_1"; import { ResetDistributionCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/SendContactMethodVerificationCommand.ts b/clients/client-lightsail/src/commands/SendContactMethodVerificationCommand.ts index dc254f18b4ca6..79fe4882345ac 100644 --- a/clients/client-lightsail/src/commands/SendContactMethodVerificationCommand.ts +++ b/clients/client-lightsail/src/commands/SendContactMethodVerificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { SendContactMethodVerificationRequest, SendContactMethodVerificationResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { SendContactMethodVerificationRequest, SendContactMethodVerificationResult } from "../models/models_1"; import { SendContactMethodVerification } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/SetIpAddressTypeCommand.ts b/clients/client-lightsail/src/commands/SetIpAddressTypeCommand.ts index 5ade6e56bd35d..547d8516330a7 100644 --- a/clients/client-lightsail/src/commands/SetIpAddressTypeCommand.ts +++ b/clients/client-lightsail/src/commands/SetIpAddressTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { SetIpAddressTypeRequest, SetIpAddressTypeResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { SetIpAddressTypeRequest, SetIpAddressTypeResult } from "../models/models_1"; import { SetIpAddressType } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/SetResourceAccessForBucketCommand.ts b/clients/client-lightsail/src/commands/SetResourceAccessForBucketCommand.ts index 155b3b2255879..1183e18575adb 100644 --- a/clients/client-lightsail/src/commands/SetResourceAccessForBucketCommand.ts +++ b/clients/client-lightsail/src/commands/SetResourceAccessForBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { SetResourceAccessForBucketRequest, SetResourceAccessForBucketResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { SetResourceAccessForBucketRequest, SetResourceAccessForBucketResult } from "../models/models_1"; import { SetResourceAccessForBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/SetupInstanceHttpsCommand.ts b/clients/client-lightsail/src/commands/SetupInstanceHttpsCommand.ts index b4ebaddcf6fa2..eaef9f06bcb8c 100644 --- a/clients/client-lightsail/src/commands/SetupInstanceHttpsCommand.ts +++ b/clients/client-lightsail/src/commands/SetupInstanceHttpsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { SetupInstanceHttpsRequest, SetupInstanceHttpsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { SetupInstanceHttpsRequest, SetupInstanceHttpsResult } from "../models/models_1"; import { SetupInstanceHttps } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/StartGUISessionCommand.ts b/clients/client-lightsail/src/commands/StartGUISessionCommand.ts index e80765fa0e64f..ec11cf6692317 100644 --- a/clients/client-lightsail/src/commands/StartGUISessionCommand.ts +++ b/clients/client-lightsail/src/commands/StartGUISessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { StartGUISessionRequest, StartGUISessionResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { StartGUISessionRequest, StartGUISessionResult } from "../models/models_1"; import { StartGUISession } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/StartInstanceCommand.ts b/clients/client-lightsail/src/commands/StartInstanceCommand.ts index 1c03eee46a253..21b34ab08ee55 100644 --- a/clients/client-lightsail/src/commands/StartInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/StartInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { StartInstanceRequest, StartInstanceResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { StartInstanceRequest, StartInstanceResult } from "../models/models_1"; import { StartInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/StartRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/StartRelationalDatabaseCommand.ts index 7cfed7b0282a5..63cf05f3ec530 100644 --- a/clients/client-lightsail/src/commands/StartRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/StartRelationalDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { StartRelationalDatabaseRequest, StartRelationalDatabaseResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { StartRelationalDatabaseRequest, StartRelationalDatabaseResult } from "../models/models_1"; import { StartRelationalDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/StopGUISessionCommand.ts b/clients/client-lightsail/src/commands/StopGUISessionCommand.ts index 8fdcd72f363e4..c58349525e3ae 100644 --- a/clients/client-lightsail/src/commands/StopGUISessionCommand.ts +++ b/clients/client-lightsail/src/commands/StopGUISessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { StopGUISessionRequest, StopGUISessionResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { StopGUISessionRequest, StopGUISessionResult } from "../models/models_1"; import { StopGUISession } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/StopInstanceCommand.ts b/clients/client-lightsail/src/commands/StopInstanceCommand.ts index e05ae78729a1d..c0cea0ee6ce5e 100644 --- a/clients/client-lightsail/src/commands/StopInstanceCommand.ts +++ b/clients/client-lightsail/src/commands/StopInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { StopInstanceRequest, StopInstanceResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { StopInstanceRequest, StopInstanceResult } from "../models/models_1"; import { StopInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/StopRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/StopRelationalDatabaseCommand.ts index 22ff7ca7b316b..769f17221c4ad 100644 --- a/clients/client-lightsail/src/commands/StopRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/StopRelationalDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { StopRelationalDatabaseRequest, StopRelationalDatabaseResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { StopRelationalDatabaseRequest, StopRelationalDatabaseResult } from "../models/models_1"; import { StopRelationalDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/TagResourceCommand.ts b/clients/client-lightsail/src/commands/TagResourceCommand.ts index cf8e539b07032..7ef948fd710e7 100644 --- a/clients/client-lightsail/src/commands/TagResourceCommand.ts +++ b/clients/client-lightsail/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { TagResourceRequest, TagResourceResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { TagResourceRequest, TagResourceResult } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/TestAlarmCommand.ts b/clients/client-lightsail/src/commands/TestAlarmCommand.ts index e85c7d2e589e3..d93eefe61f38a 100644 --- a/clients/client-lightsail/src/commands/TestAlarmCommand.ts +++ b/clients/client-lightsail/src/commands/TestAlarmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { TestAlarmRequest, TestAlarmResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { TestAlarmRequest, TestAlarmResult } from "../models/models_1"; import { TestAlarm } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UnpeerVpcCommand.ts b/clients/client-lightsail/src/commands/UnpeerVpcCommand.ts index f5be1fe327e5e..8ff1563ba81a0 100644 --- a/clients/client-lightsail/src/commands/UnpeerVpcCommand.ts +++ b/clients/client-lightsail/src/commands/UnpeerVpcCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UnpeerVpcRequest, UnpeerVpcResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UnpeerVpcRequest, UnpeerVpcResult } from "../models/models_1"; import { UnpeerVpc } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UntagResourceCommand.ts b/clients/client-lightsail/src/commands/UntagResourceCommand.ts index 82da08a5c252d..3a5a916ff43ab 100644 --- a/clients/client-lightsail/src/commands/UntagResourceCommand.ts +++ b/clients/client-lightsail/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UntagResourceRequest, UntagResourceResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UntagResourceRequest, UntagResourceResult } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateBucketBundleCommand.ts b/clients/client-lightsail/src/commands/UpdateBucketBundleCommand.ts index e57eda8b6cf0d..a2af9c108da40 100644 --- a/clients/client-lightsail/src/commands/UpdateBucketBundleCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateBucketBundleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UpdateBucketBundleRequest, UpdateBucketBundleResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateBucketBundleRequest, UpdateBucketBundleResult } from "../models/models_1"; import { UpdateBucketBundle } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateBucketCommand.ts b/clients/client-lightsail/src/commands/UpdateBucketCommand.ts index 75a32d3dd637c..88b9f05631857 100644 --- a/clients/client-lightsail/src/commands/UpdateBucketCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UpdateBucketRequest, UpdateBucketResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateBucketRequest, UpdateBucketResult } from "../models/models_1"; import { UpdateBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateContainerServiceCommand.ts b/clients/client-lightsail/src/commands/UpdateContainerServiceCommand.ts index 35b38de9aa239..86aa876d52e5c 100644 --- a/clients/client-lightsail/src/commands/UpdateContainerServiceCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateContainerServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UpdateContainerServiceRequest, UpdateContainerServiceResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateContainerServiceRequest, UpdateContainerServiceResult } from "../models/models_1"; import { UpdateContainerService } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateDistributionBundleCommand.ts b/clients/client-lightsail/src/commands/UpdateDistributionBundleCommand.ts index cdb7234a91afc..1e9a078775f93 100644 --- a/clients/client-lightsail/src/commands/UpdateDistributionBundleCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateDistributionBundleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UpdateDistributionBundleRequest, UpdateDistributionBundleResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateDistributionBundleRequest, UpdateDistributionBundleResult } from "../models/models_1"; import { UpdateDistributionBundle } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateDistributionCommand.ts b/clients/client-lightsail/src/commands/UpdateDistributionCommand.ts index bbbb138d9330a..f69d3683643b9 100644 --- a/clients/client-lightsail/src/commands/UpdateDistributionCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateDistributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UpdateDistributionRequest, UpdateDistributionResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateDistributionRequest, UpdateDistributionResult } from "../models/models_1"; import { UpdateDistribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateDomainEntryCommand.ts b/clients/client-lightsail/src/commands/UpdateDomainEntryCommand.ts index a11c3beb55925..a06446b120a07 100644 --- a/clients/client-lightsail/src/commands/UpdateDomainEntryCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateDomainEntryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UpdateDomainEntryRequest, UpdateDomainEntryResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateDomainEntryRequest, UpdateDomainEntryResult } from "../models/models_1"; import { UpdateDomainEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateInstanceMetadataOptionsCommand.ts b/clients/client-lightsail/src/commands/UpdateInstanceMetadataOptionsCommand.ts index 26714c235073c..0a4bd03d60ee8 100644 --- a/clients/client-lightsail/src/commands/UpdateInstanceMetadataOptionsCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateInstanceMetadataOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UpdateInstanceMetadataOptionsRequest, UpdateInstanceMetadataOptionsResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateInstanceMetadataOptionsRequest, UpdateInstanceMetadataOptionsResult } from "../models/models_1"; import { UpdateInstanceMetadataOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateLoadBalancerAttributeCommand.ts b/clients/client-lightsail/src/commands/UpdateLoadBalancerAttributeCommand.ts index fa4949c0552a2..795f1802beab1 100644 --- a/clients/client-lightsail/src/commands/UpdateLoadBalancerAttributeCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateLoadBalancerAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UpdateLoadBalancerAttributeRequest, UpdateLoadBalancerAttributeResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateLoadBalancerAttributeRequest, UpdateLoadBalancerAttributeResult } from "../models/models_1"; import { UpdateLoadBalancerAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateRelationalDatabaseCommand.ts b/clients/client-lightsail/src/commands/UpdateRelationalDatabaseCommand.ts index 00c277f902bb3..3f81d71ebd8e0 100644 --- a/clients/client-lightsail/src/commands/UpdateRelationalDatabaseCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateRelationalDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { UpdateRelationalDatabaseRequest, UpdateRelationalDatabaseResult } from "../models/models_1"; +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateRelationalDatabaseRequest, UpdateRelationalDatabaseResult } from "../models/models_1"; import { UpdateRelationalDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-lightsail/src/commands/UpdateRelationalDatabaseParametersCommand.ts b/clients/client-lightsail/src/commands/UpdateRelationalDatabaseParametersCommand.ts index 7f995b5d60228..4233fd35a5e81 100644 --- a/clients/client-lightsail/src/commands/UpdateRelationalDatabaseParametersCommand.ts +++ b/clients/client-lightsail/src/commands/UpdateRelationalDatabaseParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; -import { +import type { LightsailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LightsailClient"; +import type { UpdateRelationalDatabaseParametersRequest, UpdateRelationalDatabaseParametersResult, } from "../models/models_1"; diff --git a/clients/client-lightsail/src/endpoint/EndpointParameters.ts b/clients/client-lightsail/src/endpoint/EndpointParameters.ts index c4c55bac03660..067eaaf3a6bdc 100644 --- a/clients/client-lightsail/src/endpoint/EndpointParameters.ts +++ b/clients/client-lightsail/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-lightsail/src/endpoint/endpointResolver.ts b/clients/client-lightsail/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-lightsail/src/endpoint/endpointResolver.ts +++ b/clients/client-lightsail/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-lightsail/src/extensionConfiguration.ts b/clients/client-lightsail/src/extensionConfiguration.ts index 074500c5380c9..df6a9e319c1cb 100644 --- a/clients/client-lightsail/src/extensionConfiguration.ts +++ b/clients/client-lightsail/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-lightsail/src/models/LightsailServiceException.ts b/clients/client-lightsail/src/models/LightsailServiceException.ts index b48399e38c094..aeb30311947e4 100644 --- a/clients/client-lightsail/src/models/LightsailServiceException.ts +++ b/clients/client-lightsail/src/models/LightsailServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-lightsail/src/models/errors.ts b/clients/client-lightsail/src/models/errors.ts index 4ed290db07900..105b48068bbfd 100644 --- a/clients/client-lightsail/src/models/errors.ts +++ b/clients/client-lightsail/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LightsailServiceException as __BaseException } from "./LightsailServiceException"; diff --git a/clients/client-lightsail/src/runtimeConfig.browser.ts b/clients/client-lightsail/src/runtimeConfig.browser.ts index 43ee5d5a0bd72..3af91565afd6d 100644 --- a/clients/client-lightsail/src/runtimeConfig.browser.ts +++ b/clients/client-lightsail/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LightsailClientConfig } from "./LightsailClient"; + +import type { LightsailClientConfig } from "./LightsailClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-lightsail/src/runtimeConfig.native.ts b/clients/client-lightsail/src/runtimeConfig.native.ts index 296b2a4f3c90b..abc339b374014 100644 --- a/clients/client-lightsail/src/runtimeConfig.native.ts +++ b/clients/client-lightsail/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LightsailClientConfig } from "./LightsailClient"; +import type { LightsailClientConfig } from "./LightsailClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-lightsail/src/runtimeConfig.shared.ts b/clients/client-lightsail/src/runtimeConfig.shared.ts index 1ca27a1b7c54d..5e7341a328811 100644 --- a/clients/client-lightsail/src/runtimeConfig.shared.ts +++ b/clients/client-lightsail/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLightsailHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LightsailClientConfig } from "./LightsailClient"; +import type { LightsailClientConfig } from "./LightsailClient"; /** * @internal diff --git a/clients/client-lightsail/src/runtimeConfig.ts b/clients/client-lightsail/src/runtimeConfig.ts index 0862eb42ebd91..e7ba93e9169b8 100644 --- a/clients/client-lightsail/src/runtimeConfig.ts +++ b/clients/client-lightsail/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LightsailClientConfig } from "./LightsailClient"; + +import type { LightsailClientConfig } from "./LightsailClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-lightsail/src/runtimeExtensions.ts b/clients/client-lightsail/src/runtimeExtensions.ts index ce4eebd8c95ba..c81b0724d8cfa 100644 --- a/clients/client-lightsail/src/runtimeExtensions.ts +++ b/clients/client-lightsail/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LightsailExtensionConfiguration } from "./extensionConfiguration"; +import type { LightsailExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-lightsail/src/schemas/schemas_0.ts b/clients/client-lightsail/src/schemas/schemas_0.ts index 8aedec079b7eb..a0a2264c9fd8d 100644 --- a/clients/client-lightsail/src/schemas/schemas_0.ts +++ b/clients/client-lightsail/src/schemas/schemas_0.ts @@ -1182,7 +1182,7 @@ const n0 = "com.amazonaws.lightsail"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-location/package.json b/clients/client-location/package.json index 31ff91d1d924a..2c6ae76102a2d 100644 --- a/clients/client-location/package.json +++ b/clients/client-location/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-location/src/Location.ts b/clients/client-location/src/Location.ts index 740f2a4147d74..df67a1a13a338 100644 --- a/clients/client-location/src/Location.ts +++ b/clients/client-location/src/Location.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateTrackerConsumerCommand, @@ -242,7 +242,7 @@ import { VerifyDevicePositionCommandInput, VerifyDevicePositionCommandOutput, } from "./commands/VerifyDevicePositionCommand"; -import { LocationClient, LocationClientConfig } from "./LocationClient"; +import { LocationClient } from "./LocationClient"; const commands = { AssociateTrackerConsumerCommand, diff --git a/clients/client-location/src/LocationClient.ts b/clients/client-location/src/LocationClient.ts index 45fef86504974..90467b9f19721 100644 --- a/clients/client-location/src/LocationClient.ts +++ b/clients/client-location/src/LocationClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLocationHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -208,7 +217,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-location/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-location/src/auth/httpAuthExtensionConfiguration.ts index 7bf9b2d84eb65..939b94805aae6 100644 --- a/clients/client-location/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-location/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LocationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LocationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-location/src/auth/httpAuthSchemeProvider.ts b/clients/client-location/src/auth/httpAuthSchemeProvider.ts index b5a8a7797dec6..4e57b41ebb3ce 100644 --- a/clients/client-location/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-location/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LocationClientConfig, LocationClientResolvedConfig } from "../LocationClient"; +import { type LocationClientResolvedConfig, LocationClientConfig } from "../LocationClient"; /** * @internal diff --git a/clients/client-location/src/commands/AssociateTrackerConsumerCommand.ts b/clients/client-location/src/commands/AssociateTrackerConsumerCommand.ts index 8dd6df277405f..f5d10baea3aca 100644 --- a/clients/client-location/src/commands/AssociateTrackerConsumerCommand.ts +++ b/clients/client-location/src/commands/AssociateTrackerConsumerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { AssociateTrackerConsumerRequest, AssociateTrackerConsumerResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { AssociateTrackerConsumerRequest, AssociateTrackerConsumerResponse } from "../models/models_0"; import { AssociateTrackerConsumer } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/BatchDeleteDevicePositionHistoryCommand.ts b/clients/client-location/src/commands/BatchDeleteDevicePositionHistoryCommand.ts index 48edd1992d8fa..61669c78e749f 100644 --- a/clients/client-location/src/commands/BatchDeleteDevicePositionHistoryCommand.ts +++ b/clients/client-location/src/commands/BatchDeleteDevicePositionHistoryCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { BatchDeleteDevicePositionHistoryRequest, BatchDeleteDevicePositionHistoryResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { + BatchDeleteDevicePositionHistoryRequest, + BatchDeleteDevicePositionHistoryResponse, +} from "../models/models_0"; import { BatchDeleteDevicePositionHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/BatchDeleteGeofenceCommand.ts b/clients/client-location/src/commands/BatchDeleteGeofenceCommand.ts index 50290b53b74dc..b1f38dfeadd7f 100644 --- a/clients/client-location/src/commands/BatchDeleteGeofenceCommand.ts +++ b/clients/client-location/src/commands/BatchDeleteGeofenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { BatchDeleteGeofenceRequest, BatchDeleteGeofenceResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { BatchDeleteGeofenceRequest, BatchDeleteGeofenceResponse } from "../models/models_0"; import { BatchDeleteGeofence } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/BatchEvaluateGeofencesCommand.ts b/clients/client-location/src/commands/BatchEvaluateGeofencesCommand.ts index 06ca03ba14eb9..09f3e0977fcbf 100644 --- a/clients/client-location/src/commands/BatchEvaluateGeofencesCommand.ts +++ b/clients/client-location/src/commands/BatchEvaluateGeofencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { BatchEvaluateGeofencesRequest, BatchEvaluateGeofencesResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { BatchEvaluateGeofencesRequest, BatchEvaluateGeofencesResponse } from "../models/models_0"; import { BatchEvaluateGeofences } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/BatchGetDevicePositionCommand.ts b/clients/client-location/src/commands/BatchGetDevicePositionCommand.ts index 9179f6165d08f..b4c9fd389b8c4 100644 --- a/clients/client-location/src/commands/BatchGetDevicePositionCommand.ts +++ b/clients/client-location/src/commands/BatchGetDevicePositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { BatchGetDevicePositionRequest, BatchGetDevicePositionResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { BatchGetDevicePositionRequest, BatchGetDevicePositionResponse } from "../models/models_0"; import { BatchGetDevicePosition } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/BatchPutGeofenceCommand.ts b/clients/client-location/src/commands/BatchPutGeofenceCommand.ts index 01579a3b4c33e..cb8f09f900104 100644 --- a/clients/client-location/src/commands/BatchPutGeofenceCommand.ts +++ b/clients/client-location/src/commands/BatchPutGeofenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { BatchPutGeofenceRequest, BatchPutGeofenceResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { BatchPutGeofenceRequest, BatchPutGeofenceResponse } from "../models/models_0"; import { BatchPutGeofence } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/BatchUpdateDevicePositionCommand.ts b/clients/client-location/src/commands/BatchUpdateDevicePositionCommand.ts index 575e120c10d7a..77c241b6fa73d 100644 --- a/clients/client-location/src/commands/BatchUpdateDevicePositionCommand.ts +++ b/clients/client-location/src/commands/BatchUpdateDevicePositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { BatchUpdateDevicePositionRequest, BatchUpdateDevicePositionResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { BatchUpdateDevicePositionRequest, BatchUpdateDevicePositionResponse } from "../models/models_0"; import { BatchUpdateDevicePosition } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/CalculateRouteCommand.ts b/clients/client-location/src/commands/CalculateRouteCommand.ts index 77edaeb3cfa3f..b5ea7de216e5b 100644 --- a/clients/client-location/src/commands/CalculateRouteCommand.ts +++ b/clients/client-location/src/commands/CalculateRouteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { CalculateRouteRequest, CalculateRouteResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { CalculateRouteRequest, CalculateRouteResponse } from "../models/models_0"; import { CalculateRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/CalculateRouteMatrixCommand.ts b/clients/client-location/src/commands/CalculateRouteMatrixCommand.ts index acec4ee22b7fe..c687b42b068df 100644 --- a/clients/client-location/src/commands/CalculateRouteMatrixCommand.ts +++ b/clients/client-location/src/commands/CalculateRouteMatrixCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { CalculateRouteMatrixRequest, CalculateRouteMatrixResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { CalculateRouteMatrixRequest, CalculateRouteMatrixResponse } from "../models/models_0"; import { CalculateRouteMatrix } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/CreateGeofenceCollectionCommand.ts b/clients/client-location/src/commands/CreateGeofenceCollectionCommand.ts index dbefe3fbf96e2..3f910fb420c6f 100644 --- a/clients/client-location/src/commands/CreateGeofenceCollectionCommand.ts +++ b/clients/client-location/src/commands/CreateGeofenceCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { CreateGeofenceCollectionRequest, CreateGeofenceCollectionResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { CreateGeofenceCollectionRequest, CreateGeofenceCollectionResponse } from "../models/models_0"; import { CreateGeofenceCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/CreateKeyCommand.ts b/clients/client-location/src/commands/CreateKeyCommand.ts index 0c546455263a5..593aa8644219a 100644 --- a/clients/client-location/src/commands/CreateKeyCommand.ts +++ b/clients/client-location/src/commands/CreateKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { CreateKeyRequest, CreateKeyResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { CreateKeyRequest, CreateKeyResponse } from "../models/models_0"; import { CreateKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/CreateMapCommand.ts b/clients/client-location/src/commands/CreateMapCommand.ts index f4dc7c2bdac17..450760ecc6450 100644 --- a/clients/client-location/src/commands/CreateMapCommand.ts +++ b/clients/client-location/src/commands/CreateMapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { CreateMapRequest, CreateMapResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { CreateMapRequest, CreateMapResponse } from "../models/models_0"; import { CreateMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/CreatePlaceIndexCommand.ts b/clients/client-location/src/commands/CreatePlaceIndexCommand.ts index b29e04af235d9..31fa60dca0a3a 100644 --- a/clients/client-location/src/commands/CreatePlaceIndexCommand.ts +++ b/clients/client-location/src/commands/CreatePlaceIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { CreatePlaceIndexRequest, CreatePlaceIndexResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { CreatePlaceIndexRequest, CreatePlaceIndexResponse } from "../models/models_0"; import { CreatePlaceIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/CreateRouteCalculatorCommand.ts b/clients/client-location/src/commands/CreateRouteCalculatorCommand.ts index c5c0cdfd38e93..3612853a99193 100644 --- a/clients/client-location/src/commands/CreateRouteCalculatorCommand.ts +++ b/clients/client-location/src/commands/CreateRouteCalculatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { CreateRouteCalculatorRequest, CreateRouteCalculatorResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { CreateRouteCalculatorRequest, CreateRouteCalculatorResponse } from "../models/models_0"; import { CreateRouteCalculator } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/CreateTrackerCommand.ts b/clients/client-location/src/commands/CreateTrackerCommand.ts index bd1b867aa16dc..bb9a529bdc1b5 100644 --- a/clients/client-location/src/commands/CreateTrackerCommand.ts +++ b/clients/client-location/src/commands/CreateTrackerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { CreateTrackerRequest, CreateTrackerResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { CreateTrackerRequest, CreateTrackerResponse } from "../models/models_0"; import { CreateTracker } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DeleteGeofenceCollectionCommand.ts b/clients/client-location/src/commands/DeleteGeofenceCollectionCommand.ts index 3f3a8872464f9..a008a54a3c1b7 100644 --- a/clients/client-location/src/commands/DeleteGeofenceCollectionCommand.ts +++ b/clients/client-location/src/commands/DeleteGeofenceCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DeleteGeofenceCollectionRequest, DeleteGeofenceCollectionResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DeleteGeofenceCollectionRequest, DeleteGeofenceCollectionResponse } from "../models/models_0"; import { DeleteGeofenceCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DeleteKeyCommand.ts b/clients/client-location/src/commands/DeleteKeyCommand.ts index 65bed43c7d597..898fdf594773d 100644 --- a/clients/client-location/src/commands/DeleteKeyCommand.ts +++ b/clients/client-location/src/commands/DeleteKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DeleteKeyRequest, DeleteKeyResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DeleteKeyRequest, DeleteKeyResponse } from "../models/models_0"; import { DeleteKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DeleteMapCommand.ts b/clients/client-location/src/commands/DeleteMapCommand.ts index 35733824187ea..3bbb6231cb145 100644 --- a/clients/client-location/src/commands/DeleteMapCommand.ts +++ b/clients/client-location/src/commands/DeleteMapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DeleteMapRequest, DeleteMapResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DeleteMapRequest, DeleteMapResponse } from "../models/models_0"; import { DeleteMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DeletePlaceIndexCommand.ts b/clients/client-location/src/commands/DeletePlaceIndexCommand.ts index 7acc98e6f2aff..f9cbf42a47114 100644 --- a/clients/client-location/src/commands/DeletePlaceIndexCommand.ts +++ b/clients/client-location/src/commands/DeletePlaceIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DeletePlaceIndexRequest, DeletePlaceIndexResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DeletePlaceIndexRequest, DeletePlaceIndexResponse } from "../models/models_0"; import { DeletePlaceIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DeleteRouteCalculatorCommand.ts b/clients/client-location/src/commands/DeleteRouteCalculatorCommand.ts index e81d80bdcfa14..9a0f38a4bce54 100644 --- a/clients/client-location/src/commands/DeleteRouteCalculatorCommand.ts +++ b/clients/client-location/src/commands/DeleteRouteCalculatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DeleteRouteCalculatorRequest, DeleteRouteCalculatorResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DeleteRouteCalculatorRequest, DeleteRouteCalculatorResponse } from "../models/models_0"; import { DeleteRouteCalculator } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DeleteTrackerCommand.ts b/clients/client-location/src/commands/DeleteTrackerCommand.ts index 8f241f7566c61..00f1fe2997e5d 100644 --- a/clients/client-location/src/commands/DeleteTrackerCommand.ts +++ b/clients/client-location/src/commands/DeleteTrackerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DeleteTrackerRequest, DeleteTrackerResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DeleteTrackerRequest, DeleteTrackerResponse } from "../models/models_0"; import { DeleteTracker } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DescribeGeofenceCollectionCommand.ts b/clients/client-location/src/commands/DescribeGeofenceCollectionCommand.ts index 7cf256f4ecd69..ccb0e86038eed 100644 --- a/clients/client-location/src/commands/DescribeGeofenceCollectionCommand.ts +++ b/clients/client-location/src/commands/DescribeGeofenceCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DescribeGeofenceCollectionRequest, DescribeGeofenceCollectionResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DescribeGeofenceCollectionRequest, DescribeGeofenceCollectionResponse } from "../models/models_0"; import { DescribeGeofenceCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DescribeKeyCommand.ts b/clients/client-location/src/commands/DescribeKeyCommand.ts index 21c15b72130b0..e6642a9d8c0bf 100644 --- a/clients/client-location/src/commands/DescribeKeyCommand.ts +++ b/clients/client-location/src/commands/DescribeKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DescribeKeyRequest, DescribeKeyResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DescribeKeyRequest, DescribeKeyResponse } from "../models/models_0"; import { DescribeKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DescribeMapCommand.ts b/clients/client-location/src/commands/DescribeMapCommand.ts index e7e0446f17512..88dc912e172c5 100644 --- a/clients/client-location/src/commands/DescribeMapCommand.ts +++ b/clients/client-location/src/commands/DescribeMapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DescribeMapRequest, DescribeMapResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DescribeMapRequest, DescribeMapResponse } from "../models/models_0"; import { DescribeMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DescribePlaceIndexCommand.ts b/clients/client-location/src/commands/DescribePlaceIndexCommand.ts index cc19ac7a3905f..5a737832499b6 100644 --- a/clients/client-location/src/commands/DescribePlaceIndexCommand.ts +++ b/clients/client-location/src/commands/DescribePlaceIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DescribePlaceIndexRequest, DescribePlaceIndexResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DescribePlaceIndexRequest, DescribePlaceIndexResponse } from "../models/models_0"; import { DescribePlaceIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DescribeRouteCalculatorCommand.ts b/clients/client-location/src/commands/DescribeRouteCalculatorCommand.ts index 85ab58136414f..7414763442610 100644 --- a/clients/client-location/src/commands/DescribeRouteCalculatorCommand.ts +++ b/clients/client-location/src/commands/DescribeRouteCalculatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DescribeRouteCalculatorRequest, DescribeRouteCalculatorResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DescribeRouteCalculatorRequest, DescribeRouteCalculatorResponse } from "../models/models_0"; import { DescribeRouteCalculator } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DescribeTrackerCommand.ts b/clients/client-location/src/commands/DescribeTrackerCommand.ts index 029866f4068ec..47031fabb058f 100644 --- a/clients/client-location/src/commands/DescribeTrackerCommand.ts +++ b/clients/client-location/src/commands/DescribeTrackerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DescribeTrackerRequest, DescribeTrackerResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DescribeTrackerRequest, DescribeTrackerResponse } from "../models/models_0"; import { DescribeTracker } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/DisassociateTrackerConsumerCommand.ts b/clients/client-location/src/commands/DisassociateTrackerConsumerCommand.ts index 08128c82495b8..460e8bfaade63 100644 --- a/clients/client-location/src/commands/DisassociateTrackerConsumerCommand.ts +++ b/clients/client-location/src/commands/DisassociateTrackerConsumerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { DisassociateTrackerConsumerRequest, DisassociateTrackerConsumerResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { DisassociateTrackerConsumerRequest, DisassociateTrackerConsumerResponse } from "../models/models_0"; import { DisassociateTrackerConsumer } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ForecastGeofenceEventsCommand.ts b/clients/client-location/src/commands/ForecastGeofenceEventsCommand.ts index 61fc7fb023e77..41482fee25d78 100644 --- a/clients/client-location/src/commands/ForecastGeofenceEventsCommand.ts +++ b/clients/client-location/src/commands/ForecastGeofenceEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ForecastGeofenceEventsRequest, ForecastGeofenceEventsResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ForecastGeofenceEventsRequest, ForecastGeofenceEventsResponse } from "../models/models_0"; import { ForecastGeofenceEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/GetDevicePositionCommand.ts b/clients/client-location/src/commands/GetDevicePositionCommand.ts index 9d349f4aeb806..ec308d4321b0e 100644 --- a/clients/client-location/src/commands/GetDevicePositionCommand.ts +++ b/clients/client-location/src/commands/GetDevicePositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { GetDevicePositionRequest, GetDevicePositionResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { GetDevicePositionRequest, GetDevicePositionResponse } from "../models/models_0"; import { GetDevicePosition } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/GetDevicePositionHistoryCommand.ts b/clients/client-location/src/commands/GetDevicePositionHistoryCommand.ts index fe21b1b723245..c274de553c4a2 100644 --- a/clients/client-location/src/commands/GetDevicePositionHistoryCommand.ts +++ b/clients/client-location/src/commands/GetDevicePositionHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { GetDevicePositionHistoryRequest, GetDevicePositionHistoryResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { GetDevicePositionHistoryRequest, GetDevicePositionHistoryResponse } from "../models/models_0"; import { GetDevicePositionHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/GetGeofenceCommand.ts b/clients/client-location/src/commands/GetGeofenceCommand.ts index be04925730c80..a4d379e8b3220 100644 --- a/clients/client-location/src/commands/GetGeofenceCommand.ts +++ b/clients/client-location/src/commands/GetGeofenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { GetGeofenceRequest, GetGeofenceResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { GetGeofenceRequest, GetGeofenceResponse } from "../models/models_0"; import { GetGeofence } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/GetMapGlyphsCommand.ts b/clients/client-location/src/commands/GetMapGlyphsCommand.ts index ae8cb063a7018..49d57d0068944 100644 --- a/clients/client-location/src/commands/GetMapGlyphsCommand.ts +++ b/clients/client-location/src/commands/GetMapGlyphsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { GetMapGlyphsRequest, GetMapGlyphsResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import { type GetMapGlyphsRequest, GetMapGlyphsResponse } from "../models/models_0"; import { GetMapGlyphs } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/GetMapSpritesCommand.ts b/clients/client-location/src/commands/GetMapSpritesCommand.ts index fbb111f59f319..4d2f6ff0a187c 100644 --- a/clients/client-location/src/commands/GetMapSpritesCommand.ts +++ b/clients/client-location/src/commands/GetMapSpritesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { GetMapSpritesRequest, GetMapSpritesResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import { type GetMapSpritesRequest, GetMapSpritesResponse } from "../models/models_0"; import { GetMapSprites } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/GetMapStyleDescriptorCommand.ts b/clients/client-location/src/commands/GetMapStyleDescriptorCommand.ts index f1230d96f1445..2b922860638a6 100644 --- a/clients/client-location/src/commands/GetMapStyleDescriptorCommand.ts +++ b/clients/client-location/src/commands/GetMapStyleDescriptorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { GetMapStyleDescriptorRequest, GetMapStyleDescriptorResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import { type GetMapStyleDescriptorRequest, GetMapStyleDescriptorResponse } from "../models/models_0"; import { GetMapStyleDescriptor } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/GetMapTileCommand.ts b/clients/client-location/src/commands/GetMapTileCommand.ts index 38c15df56c467..68a4bee26d202 100644 --- a/clients/client-location/src/commands/GetMapTileCommand.ts +++ b/clients/client-location/src/commands/GetMapTileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { GetMapTileRequest, GetMapTileResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import { type GetMapTileRequest, GetMapTileResponse } from "../models/models_0"; import { GetMapTile } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/GetPlaceCommand.ts b/clients/client-location/src/commands/GetPlaceCommand.ts index 144b75a524115..ec42871d0e516 100644 --- a/clients/client-location/src/commands/GetPlaceCommand.ts +++ b/clients/client-location/src/commands/GetPlaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { GetPlaceRequest, GetPlaceResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { GetPlaceRequest, GetPlaceResponse } from "../models/models_0"; import { GetPlace } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListDevicePositionsCommand.ts b/clients/client-location/src/commands/ListDevicePositionsCommand.ts index 27e1640d1ca51..c3ba9cbb174f7 100644 --- a/clients/client-location/src/commands/ListDevicePositionsCommand.ts +++ b/clients/client-location/src/commands/ListDevicePositionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListDevicePositionsRequest, ListDevicePositionsResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListDevicePositionsRequest, ListDevicePositionsResponse } from "../models/models_0"; import { ListDevicePositions } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListGeofenceCollectionsCommand.ts b/clients/client-location/src/commands/ListGeofenceCollectionsCommand.ts index c4753e10320f1..c0bb38f71f93c 100644 --- a/clients/client-location/src/commands/ListGeofenceCollectionsCommand.ts +++ b/clients/client-location/src/commands/ListGeofenceCollectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListGeofenceCollectionsRequest, ListGeofenceCollectionsResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListGeofenceCollectionsRequest, ListGeofenceCollectionsResponse } from "../models/models_0"; import { ListGeofenceCollections } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListGeofencesCommand.ts b/clients/client-location/src/commands/ListGeofencesCommand.ts index a5a841448f673..7e7b18a775a9f 100644 --- a/clients/client-location/src/commands/ListGeofencesCommand.ts +++ b/clients/client-location/src/commands/ListGeofencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListGeofencesRequest, ListGeofencesResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListGeofencesRequest, ListGeofencesResponse } from "../models/models_0"; import { ListGeofences } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListKeysCommand.ts b/clients/client-location/src/commands/ListKeysCommand.ts index 4823a697a433e..5569f4ec16926 100644 --- a/clients/client-location/src/commands/ListKeysCommand.ts +++ b/clients/client-location/src/commands/ListKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListKeysRequest, ListKeysResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListKeysRequest, ListKeysResponse } from "../models/models_0"; import { ListKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListMapsCommand.ts b/clients/client-location/src/commands/ListMapsCommand.ts index 232ab0512c767..9e5866d05bb75 100644 --- a/clients/client-location/src/commands/ListMapsCommand.ts +++ b/clients/client-location/src/commands/ListMapsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListMapsRequest, ListMapsResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListMapsRequest, ListMapsResponse } from "../models/models_0"; import { ListMaps } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListPlaceIndexesCommand.ts b/clients/client-location/src/commands/ListPlaceIndexesCommand.ts index 49daf717a0dea..737213e42899b 100644 --- a/clients/client-location/src/commands/ListPlaceIndexesCommand.ts +++ b/clients/client-location/src/commands/ListPlaceIndexesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListPlaceIndexesRequest, ListPlaceIndexesResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListPlaceIndexesRequest, ListPlaceIndexesResponse } from "../models/models_0"; import { ListPlaceIndexes } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListRouteCalculatorsCommand.ts b/clients/client-location/src/commands/ListRouteCalculatorsCommand.ts index 4c26d79002381..0945053d52bf4 100644 --- a/clients/client-location/src/commands/ListRouteCalculatorsCommand.ts +++ b/clients/client-location/src/commands/ListRouteCalculatorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListRouteCalculatorsRequest, ListRouteCalculatorsResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListRouteCalculatorsRequest, ListRouteCalculatorsResponse } from "../models/models_0"; import { ListRouteCalculators } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListTagsForResourceCommand.ts b/clients/client-location/src/commands/ListTagsForResourceCommand.ts index 55de835e7c829..de82cd25278a0 100644 --- a/clients/client-location/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-location/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListTrackerConsumersCommand.ts b/clients/client-location/src/commands/ListTrackerConsumersCommand.ts index 2077254a264af..d9e72fe0ad02b 100644 --- a/clients/client-location/src/commands/ListTrackerConsumersCommand.ts +++ b/clients/client-location/src/commands/ListTrackerConsumersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListTrackerConsumersRequest, ListTrackerConsumersResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListTrackerConsumersRequest, ListTrackerConsumersResponse } from "../models/models_0"; import { ListTrackerConsumers } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/ListTrackersCommand.ts b/clients/client-location/src/commands/ListTrackersCommand.ts index ba59acbe9159c..adbef4a4b9b49 100644 --- a/clients/client-location/src/commands/ListTrackersCommand.ts +++ b/clients/client-location/src/commands/ListTrackersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { ListTrackersRequest, ListTrackersResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { ListTrackersRequest, ListTrackersResponse } from "../models/models_0"; import { ListTrackers } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/PutGeofenceCommand.ts b/clients/client-location/src/commands/PutGeofenceCommand.ts index 9efbae7cc28bb..68866a119846d 100644 --- a/clients/client-location/src/commands/PutGeofenceCommand.ts +++ b/clients/client-location/src/commands/PutGeofenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { PutGeofenceRequest, PutGeofenceResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { PutGeofenceRequest, PutGeofenceResponse } from "../models/models_0"; import { PutGeofence } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/SearchPlaceIndexForPositionCommand.ts b/clients/client-location/src/commands/SearchPlaceIndexForPositionCommand.ts index 3089e66ea1f92..c68760a7fcb75 100644 --- a/clients/client-location/src/commands/SearchPlaceIndexForPositionCommand.ts +++ b/clients/client-location/src/commands/SearchPlaceIndexForPositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { SearchPlaceIndexForPositionRequest, SearchPlaceIndexForPositionResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { SearchPlaceIndexForPositionRequest, SearchPlaceIndexForPositionResponse } from "../models/models_0"; import { SearchPlaceIndexForPosition } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/SearchPlaceIndexForSuggestionsCommand.ts b/clients/client-location/src/commands/SearchPlaceIndexForSuggestionsCommand.ts index 1ea7eab644972..0e1c8a1450d03 100644 --- a/clients/client-location/src/commands/SearchPlaceIndexForSuggestionsCommand.ts +++ b/clients/client-location/src/commands/SearchPlaceIndexForSuggestionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { SearchPlaceIndexForSuggestionsRequest, SearchPlaceIndexForSuggestionsResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { SearchPlaceIndexForSuggestionsRequest, SearchPlaceIndexForSuggestionsResponse } from "../models/models_0"; import { SearchPlaceIndexForSuggestions } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/SearchPlaceIndexForTextCommand.ts b/clients/client-location/src/commands/SearchPlaceIndexForTextCommand.ts index 9d3a4af76ecfa..1ff95b984cfb1 100644 --- a/clients/client-location/src/commands/SearchPlaceIndexForTextCommand.ts +++ b/clients/client-location/src/commands/SearchPlaceIndexForTextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { SearchPlaceIndexForTextRequest, SearchPlaceIndexForTextResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { SearchPlaceIndexForTextRequest, SearchPlaceIndexForTextResponse } from "../models/models_0"; import { SearchPlaceIndexForText } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/TagResourceCommand.ts b/clients/client-location/src/commands/TagResourceCommand.ts index 1342ad38d1b21..504c0aa404976 100644 --- a/clients/client-location/src/commands/TagResourceCommand.ts +++ b/clients/client-location/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/UntagResourceCommand.ts b/clients/client-location/src/commands/UntagResourceCommand.ts index 3ba7cf7fc155b..444ef8b9d7d20 100644 --- a/clients/client-location/src/commands/UntagResourceCommand.ts +++ b/clients/client-location/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/UpdateGeofenceCollectionCommand.ts b/clients/client-location/src/commands/UpdateGeofenceCollectionCommand.ts index ea8488aeab788..ed799268f5e3b 100644 --- a/clients/client-location/src/commands/UpdateGeofenceCollectionCommand.ts +++ b/clients/client-location/src/commands/UpdateGeofenceCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { UpdateGeofenceCollectionRequest, UpdateGeofenceCollectionResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { UpdateGeofenceCollectionRequest, UpdateGeofenceCollectionResponse } from "../models/models_0"; import { UpdateGeofenceCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/UpdateKeyCommand.ts b/clients/client-location/src/commands/UpdateKeyCommand.ts index 00f6f4968b456..4c8bec64153ee 100644 --- a/clients/client-location/src/commands/UpdateKeyCommand.ts +++ b/clients/client-location/src/commands/UpdateKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { UpdateKeyRequest, UpdateKeyResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { UpdateKeyRequest, UpdateKeyResponse } from "../models/models_0"; import { UpdateKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/UpdateMapCommand.ts b/clients/client-location/src/commands/UpdateMapCommand.ts index 1bf18a9db803a..386e3c195d4fb 100644 --- a/clients/client-location/src/commands/UpdateMapCommand.ts +++ b/clients/client-location/src/commands/UpdateMapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { UpdateMapRequest, UpdateMapResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { UpdateMapRequest, UpdateMapResponse } from "../models/models_0"; import { UpdateMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/UpdatePlaceIndexCommand.ts b/clients/client-location/src/commands/UpdatePlaceIndexCommand.ts index 01be2559575eb..4b01bae55961a 100644 --- a/clients/client-location/src/commands/UpdatePlaceIndexCommand.ts +++ b/clients/client-location/src/commands/UpdatePlaceIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { UpdatePlaceIndexRequest, UpdatePlaceIndexResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { UpdatePlaceIndexRequest, UpdatePlaceIndexResponse } from "../models/models_0"; import { UpdatePlaceIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/UpdateRouteCalculatorCommand.ts b/clients/client-location/src/commands/UpdateRouteCalculatorCommand.ts index 3fc48d6843921..32323fa2e05fe 100644 --- a/clients/client-location/src/commands/UpdateRouteCalculatorCommand.ts +++ b/clients/client-location/src/commands/UpdateRouteCalculatorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { UpdateRouteCalculatorRequest, UpdateRouteCalculatorResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { UpdateRouteCalculatorRequest, UpdateRouteCalculatorResponse } from "../models/models_0"; import { UpdateRouteCalculator } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/UpdateTrackerCommand.ts b/clients/client-location/src/commands/UpdateTrackerCommand.ts index 6283f058aa7c7..847a144702017 100644 --- a/clients/client-location/src/commands/UpdateTrackerCommand.ts +++ b/clients/client-location/src/commands/UpdateTrackerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { UpdateTrackerRequest, UpdateTrackerResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { UpdateTrackerRequest, UpdateTrackerResponse } from "../models/models_0"; import { UpdateTracker } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/commands/VerifyDevicePositionCommand.ts b/clients/client-location/src/commands/VerifyDevicePositionCommand.ts index ccb3245938fec..52115aa3b96b6 100644 --- a/clients/client-location/src/commands/VerifyDevicePositionCommand.ts +++ b/clients/client-location/src/commands/VerifyDevicePositionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; -import { VerifyDevicePositionRequest, VerifyDevicePositionResponse } from "../models/models_0"; +import type { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; +import type { VerifyDevicePositionRequest, VerifyDevicePositionResponse } from "../models/models_0"; import { VerifyDevicePosition } from "../schemas/schemas_0"; /** diff --git a/clients/client-location/src/endpoint/EndpointParameters.ts b/clients/client-location/src/endpoint/EndpointParameters.ts index 7d9061dfeb73b..44c01a46c42b1 100644 --- a/clients/client-location/src/endpoint/EndpointParameters.ts +++ b/clients/client-location/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-location/src/endpoint/endpointResolver.ts b/clients/client-location/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-location/src/endpoint/endpointResolver.ts +++ b/clients/client-location/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-location/src/extensionConfiguration.ts b/clients/client-location/src/extensionConfiguration.ts index 1a6bfb0b5f480..bb0e958acf2e0 100644 --- a/clients/client-location/src/extensionConfiguration.ts +++ b/clients/client-location/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-location/src/models/LocationServiceException.ts b/clients/client-location/src/models/LocationServiceException.ts index 029818bf6bacc..7083944665aa8 100644 --- a/clients/client-location/src/models/LocationServiceException.ts +++ b/clients/client-location/src/models/LocationServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-location/src/models/errors.ts b/clients/client-location/src/models/errors.ts index e88abd1cb62ca..993dcadc67e48 100644 --- a/clients/client-location/src/models/errors.ts +++ b/clients/client-location/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { LocationServiceException as __BaseException } from "./LocationServiceException"; diff --git a/clients/client-location/src/pagination/ForecastGeofenceEventsPaginator.ts b/clients/client-location/src/pagination/ForecastGeofenceEventsPaginator.ts index 02f7cbaae318a..51f5828dc565e 100644 --- a/clients/client-location/src/pagination/ForecastGeofenceEventsPaginator.ts +++ b/clients/client-location/src/pagination/ForecastGeofenceEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ForecastGeofenceEventsCommand, diff --git a/clients/client-location/src/pagination/GetDevicePositionHistoryPaginator.ts b/clients/client-location/src/pagination/GetDevicePositionHistoryPaginator.ts index 1e75834cbc36e..0874066ddca88 100644 --- a/clients/client-location/src/pagination/GetDevicePositionHistoryPaginator.ts +++ b/clients/client-location/src/pagination/GetDevicePositionHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetDevicePositionHistoryCommand, diff --git a/clients/client-location/src/pagination/Interfaces.ts b/clients/client-location/src/pagination/Interfaces.ts index be966af33a3cf..b4e6261a1de02 100644 --- a/clients/client-location/src/pagination/Interfaces.ts +++ b/clients/client-location/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { LocationClient } from "../LocationClient"; diff --git a/clients/client-location/src/pagination/ListDevicePositionsPaginator.ts b/clients/client-location/src/pagination/ListDevicePositionsPaginator.ts index e50c3e6f3a770..9df8bbb62f254 100644 --- a/clients/client-location/src/pagination/ListDevicePositionsPaginator.ts +++ b/clients/client-location/src/pagination/ListDevicePositionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDevicePositionsCommand, diff --git a/clients/client-location/src/pagination/ListGeofenceCollectionsPaginator.ts b/clients/client-location/src/pagination/ListGeofenceCollectionsPaginator.ts index a1e98233ffbb6..3c57b9e1b5c66 100644 --- a/clients/client-location/src/pagination/ListGeofenceCollectionsPaginator.ts +++ b/clients/client-location/src/pagination/ListGeofenceCollectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGeofenceCollectionsCommand, diff --git a/clients/client-location/src/pagination/ListGeofencesPaginator.ts b/clients/client-location/src/pagination/ListGeofencesPaginator.ts index 87c774d4f9c19..1d77e4f836a33 100644 --- a/clients/client-location/src/pagination/ListGeofencesPaginator.ts +++ b/clients/client-location/src/pagination/ListGeofencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGeofencesCommand, diff --git a/clients/client-location/src/pagination/ListKeysPaginator.ts b/clients/client-location/src/pagination/ListKeysPaginator.ts index 7f7e57fd494f9..e291e86418b79 100644 --- a/clients/client-location/src/pagination/ListKeysPaginator.ts +++ b/clients/client-location/src/pagination/ListKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKeysCommand, ListKeysCommandInput, ListKeysCommandOutput } from "../commands/ListKeysCommand"; import { LocationClient } from "../LocationClient"; diff --git a/clients/client-location/src/pagination/ListMapsPaginator.ts b/clients/client-location/src/pagination/ListMapsPaginator.ts index 3211d2695eea7..062451788d8de 100644 --- a/clients/client-location/src/pagination/ListMapsPaginator.ts +++ b/clients/client-location/src/pagination/ListMapsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMapsCommand, ListMapsCommandInput, ListMapsCommandOutput } from "../commands/ListMapsCommand"; import { LocationClient } from "../LocationClient"; diff --git a/clients/client-location/src/pagination/ListPlaceIndexesPaginator.ts b/clients/client-location/src/pagination/ListPlaceIndexesPaginator.ts index 8f277b5b47e82..4b5c306d81dbd 100644 --- a/clients/client-location/src/pagination/ListPlaceIndexesPaginator.ts +++ b/clients/client-location/src/pagination/ListPlaceIndexesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPlaceIndexesCommand, diff --git a/clients/client-location/src/pagination/ListRouteCalculatorsPaginator.ts b/clients/client-location/src/pagination/ListRouteCalculatorsPaginator.ts index 857670b85a70c..45f8de92c90fe 100644 --- a/clients/client-location/src/pagination/ListRouteCalculatorsPaginator.ts +++ b/clients/client-location/src/pagination/ListRouteCalculatorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRouteCalculatorsCommand, diff --git a/clients/client-location/src/pagination/ListTrackerConsumersPaginator.ts b/clients/client-location/src/pagination/ListTrackerConsumersPaginator.ts index a6ed2585afd1f..cbdf0aacba82c 100644 --- a/clients/client-location/src/pagination/ListTrackerConsumersPaginator.ts +++ b/clients/client-location/src/pagination/ListTrackerConsumersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrackerConsumersCommand, diff --git a/clients/client-location/src/pagination/ListTrackersPaginator.ts b/clients/client-location/src/pagination/ListTrackersPaginator.ts index 8fca10649641e..182efa1f09001 100644 --- a/clients/client-location/src/pagination/ListTrackersPaginator.ts +++ b/clients/client-location/src/pagination/ListTrackersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrackersCommand, diff --git a/clients/client-location/src/runtimeConfig.browser.ts b/clients/client-location/src/runtimeConfig.browser.ts index 3ac347e3279dc..152577d5acffe 100644 --- a/clients/client-location/src/runtimeConfig.browser.ts +++ b/clients/client-location/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LocationClientConfig } from "./LocationClient"; + +import type { LocationClientConfig } from "./LocationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-location/src/runtimeConfig.native.ts b/clients/client-location/src/runtimeConfig.native.ts index 7222706d6009f..d069854a9c7b4 100644 --- a/clients/client-location/src/runtimeConfig.native.ts +++ b/clients/client-location/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LocationClientConfig } from "./LocationClient"; +import type { LocationClientConfig } from "./LocationClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-location/src/runtimeConfig.shared.ts b/clients/client-location/src/runtimeConfig.shared.ts index ce8a134e406c4..b9c13426ba6d4 100644 --- a/clients/client-location/src/runtimeConfig.shared.ts +++ b/clients/client-location/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLocationHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LocationClientConfig } from "./LocationClient"; +import type { LocationClientConfig } from "./LocationClient"; /** * @internal diff --git a/clients/client-location/src/runtimeConfig.ts b/clients/client-location/src/runtimeConfig.ts index ae50473b545de..f399d1cccc064 100644 --- a/clients/client-location/src/runtimeConfig.ts +++ b/clients/client-location/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LocationClientConfig } from "./LocationClient"; + +import type { LocationClientConfig } from "./LocationClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-location/src/runtimeExtensions.ts b/clients/client-location/src/runtimeExtensions.ts index de2b1af4e109e..9668bbf0cda33 100644 --- a/clients/client-location/src/runtimeExtensions.ts +++ b/clients/client-location/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LocationExtensionConfiguration } from "./extensionConfiguration"; +import type { LocationExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-location/src/schemas/schemas_0.ts b/clients/client-location/src/schemas/schemas_0.ts index fe683747846c2..4b822d966834c 100644 --- a/clients/client-location/src/schemas/schemas_0.ts +++ b/clients/client-location/src/schemas/schemas_0.ts @@ -511,7 +511,7 @@ const n0 = "com.amazonaws.location"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-lookoutequipment/package.json b/clients/client-lookoutequipment/package.json index 7aea039499f27..b62fcf3f1adab 100644 --- a/clients/client-lookoutequipment/package.json +++ b/clients/client-lookoutequipment/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-lookoutequipment/src/LookoutEquipment.ts b/clients/client-lookoutequipment/src/LookoutEquipment.ts index 31afc97a4f198..5cc2b16bd40ff 100644 --- a/clients/client-lookoutequipment/src/LookoutEquipment.ts +++ b/clients/client-lookoutequipment/src/LookoutEquipment.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateDatasetCommand, @@ -215,7 +215,7 @@ import { UpdateRetrainingSchedulerCommandInput, UpdateRetrainingSchedulerCommandOutput, } from "./commands/UpdateRetrainingSchedulerCommand"; -import { LookoutEquipmentClient, LookoutEquipmentClientConfig } from "./LookoutEquipmentClient"; +import { LookoutEquipmentClient } from "./LookoutEquipmentClient"; const commands = { CreateDatasetCommand, diff --git a/clients/client-lookoutequipment/src/LookoutEquipmentClient.ts b/clients/client-lookoutequipment/src/LookoutEquipmentClient.ts index bd57811a7ff0a..17bb81e1db830 100644 --- a/clients/client-lookoutequipment/src/LookoutEquipmentClient.ts +++ b/clients/client-lookoutequipment/src/LookoutEquipmentClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultLookoutEquipmentHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateDatasetCommandInput, CreateDatasetCommandOutput } from "./commands/CreateDatasetCommand"; @@ -188,7 +197,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-lookoutequipment/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-lookoutequipment/src/auth/httpAuthExtensionConfiguration.ts index 8798157230708..7e18b1e321644 100644 --- a/clients/client-lookoutequipment/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-lookoutequipment/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { LookoutEquipmentHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { LookoutEquipmentHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-lookoutequipment/src/auth/httpAuthSchemeProvider.ts b/clients/client-lookoutequipment/src/auth/httpAuthSchemeProvider.ts index 88bca5b459a13..408ce491a34a1 100644 --- a/clients/client-lookoutequipment/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-lookoutequipment/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { LookoutEquipmentClientConfig, LookoutEquipmentClientResolvedConfig } from "../LookoutEquipmentClient"; +import { type LookoutEquipmentClientResolvedConfig, LookoutEquipmentClientConfig } from "../LookoutEquipmentClient"; /** * @internal diff --git a/clients/client-lookoutequipment/src/commands/CreateDatasetCommand.ts b/clients/client-lookoutequipment/src/commands/CreateDatasetCommand.ts index 9b8f1a51b265b..96e8229416204 100644 --- a/clients/client-lookoutequipment/src/commands/CreateDatasetCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateDatasetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; import { CreateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/CreateInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/CreateInferenceSchedulerCommand.ts index 2fd3ad315a858..4699fa1c994cb 100644 --- a/clients/client-lookoutequipment/src/commands/CreateInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateInferenceSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { CreateInferenceSchedulerRequest, CreateInferenceSchedulerResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { CreateInferenceSchedulerRequest, CreateInferenceSchedulerResponse } from "../models/models_0"; import { CreateInferenceScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/CreateLabelCommand.ts b/clients/client-lookoutequipment/src/commands/CreateLabelCommand.ts index e17caca14af5a..c10c3599e90b5 100644 --- a/clients/client-lookoutequipment/src/commands/CreateLabelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateLabelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { CreateLabelRequest, CreateLabelResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { CreateLabelRequest, CreateLabelResponse } from "../models/models_0"; import { CreateLabel } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/CreateLabelGroupCommand.ts b/clients/client-lookoutequipment/src/commands/CreateLabelGroupCommand.ts index dc674f40c9cbb..7648c273690a9 100644 --- a/clients/client-lookoutequipment/src/commands/CreateLabelGroupCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateLabelGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { CreateLabelGroupRequest, CreateLabelGroupResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { CreateLabelGroupRequest, CreateLabelGroupResponse } from "../models/models_0"; import { CreateLabelGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/CreateModelCommand.ts b/clients/client-lookoutequipment/src/commands/CreateModelCommand.ts index 74b2f34fa1fb4..50929eeea3ab9 100644 --- a/clients/client-lookoutequipment/src/commands/CreateModelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateModelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { CreateModelRequest, CreateModelResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { CreateModelRequest, CreateModelResponse } from "../models/models_0"; import { CreateModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/CreateRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/CreateRetrainingSchedulerCommand.ts index 4ddf08f848483..a7ff81c797097 100644 --- a/clients/client-lookoutequipment/src/commands/CreateRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/CreateRetrainingSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { CreateRetrainingSchedulerRequest, CreateRetrainingSchedulerResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { CreateRetrainingSchedulerRequest, CreateRetrainingSchedulerResponse } from "../models/models_0"; import { CreateRetrainingScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DeleteDatasetCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteDatasetCommand.ts index 03d407a3803b3..f72cea72e2a7f 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteDatasetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DeleteDatasetRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DeleteDatasetRequest } from "../models/models_0"; import { DeleteDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DeleteInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteInferenceSchedulerCommand.ts index 228d14accd7f1..42f0bae40bf32 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteInferenceSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DeleteInferenceSchedulerRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DeleteInferenceSchedulerRequest } from "../models/models_0"; import { DeleteInferenceScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DeleteLabelCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteLabelCommand.ts index d22679ef8f69d..9e8732c64c970 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteLabelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteLabelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DeleteLabelRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DeleteLabelRequest } from "../models/models_0"; import { DeleteLabel } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DeleteLabelGroupCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteLabelGroupCommand.ts index 53f13e89735b5..f231944a239a8 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteLabelGroupCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteLabelGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DeleteLabelGroupRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DeleteLabelGroupRequest } from "../models/models_0"; import { DeleteLabelGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DeleteModelCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteModelCommand.ts index d7689be783913..826afd0e92ce8 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteModelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteModelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DeleteModelRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DeleteModelRequest } from "../models/models_0"; import { DeleteModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteResourcePolicyCommand.ts index bf1ef416e031f..80461c0fb2f04 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DeleteResourcePolicyRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DeleteResourcePolicyRequest } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DeleteRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/DeleteRetrainingSchedulerCommand.ts index b6c0583d0c9c0..2510af3b20dce 100644 --- a/clients/client-lookoutequipment/src/commands/DeleteRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DeleteRetrainingSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DeleteRetrainingSchedulerRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DeleteRetrainingSchedulerRequest } from "../models/models_0"; import { DeleteRetrainingScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DescribeDataIngestionJobCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeDataIngestionJobCommand.ts index d66d2f7ab9037..e735310861988 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeDataIngestionJobCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeDataIngestionJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DescribeDataIngestionJobRequest, DescribeDataIngestionJobResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DescribeDataIngestionJobRequest, DescribeDataIngestionJobResponse } from "../models/models_0"; import { DescribeDataIngestionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DescribeDatasetCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeDatasetCommand.ts index 1f5308334bfba..6060944bec905 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeDatasetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; import { DescribeDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DescribeInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeInferenceSchedulerCommand.ts index 05317a93b841e..8e53d36b0cdcd 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeInferenceSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DescribeInferenceSchedulerRequest, DescribeInferenceSchedulerResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DescribeInferenceSchedulerRequest, DescribeInferenceSchedulerResponse } from "../models/models_0"; import { DescribeInferenceScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DescribeLabelCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeLabelCommand.ts index 411281f471c75..a56b42d259919 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeLabelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeLabelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DescribeLabelRequest, DescribeLabelResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DescribeLabelRequest, DescribeLabelResponse } from "../models/models_0"; import { DescribeLabel } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DescribeLabelGroupCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeLabelGroupCommand.ts index 12685f534284c..f3a7235f86e4c 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeLabelGroupCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeLabelGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DescribeLabelGroupRequest, DescribeLabelGroupResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DescribeLabelGroupRequest, DescribeLabelGroupResponse } from "../models/models_0"; import { DescribeLabelGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DescribeModelCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeModelCommand.ts index b319c2308d775..bd64bc6252fee 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeModelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeModelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DescribeModelRequest, DescribeModelResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DescribeModelRequest, DescribeModelResponse } from "../models/models_0"; import { DescribeModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DescribeModelVersionCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeModelVersionCommand.ts index efcbbc7e269a3..86adc2b68b74d 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeModelVersionCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeModelVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DescribeModelVersionRequest, DescribeModelVersionResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DescribeModelVersionRequest, DescribeModelVersionResponse } from "../models/models_0"; import { DescribeModelVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeResourcePolicyCommand.ts index 695ac54db62e7..fa1024ac9247d 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; import { DescribeResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/DescribeRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/DescribeRetrainingSchedulerCommand.ts index 8ecb47a244e09..0117d6899b3d5 100644 --- a/clients/client-lookoutequipment/src/commands/DescribeRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/DescribeRetrainingSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { DescribeRetrainingSchedulerRequest, DescribeRetrainingSchedulerResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { DescribeRetrainingSchedulerRequest, DescribeRetrainingSchedulerResponse } from "../models/models_0"; import { DescribeRetrainingScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ImportDatasetCommand.ts b/clients/client-lookoutequipment/src/commands/ImportDatasetCommand.ts index bbf4901689c3c..ab5c4d7f5a8be 100644 --- a/clients/client-lookoutequipment/src/commands/ImportDatasetCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ImportDatasetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ImportDatasetRequest, ImportDatasetResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ImportDatasetRequest, ImportDatasetResponse } from "../models/models_0"; import { ImportDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ImportModelVersionCommand.ts b/clients/client-lookoutequipment/src/commands/ImportModelVersionCommand.ts index 7a4fc7f37b4dc..e1c3a362a7b05 100644 --- a/clients/client-lookoutequipment/src/commands/ImportModelVersionCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ImportModelVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ImportModelVersionRequest, ImportModelVersionResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ImportModelVersionRequest, ImportModelVersionResponse } from "../models/models_0"; import { ImportModelVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListDataIngestionJobsCommand.ts b/clients/client-lookoutequipment/src/commands/ListDataIngestionJobsCommand.ts index 459827f12abe8..1ca43209739fc 100644 --- a/clients/client-lookoutequipment/src/commands/ListDataIngestionJobsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListDataIngestionJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListDataIngestionJobsRequest, ListDataIngestionJobsResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListDataIngestionJobsRequest, ListDataIngestionJobsResponse } from "../models/models_0"; import { ListDataIngestionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListDatasetsCommand.ts b/clients/client-lookoutequipment/src/commands/ListDatasetsCommand.ts index 422a2d06ab3ec..85d753e0c5eae 100644 --- a/clients/client-lookoutequipment/src/commands/ListDatasetsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListDatasetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; import { ListDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListInferenceEventsCommand.ts b/clients/client-lookoutequipment/src/commands/ListInferenceEventsCommand.ts index ac403637b408a..69cdb360bf5da 100644 --- a/clients/client-lookoutequipment/src/commands/ListInferenceEventsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListInferenceEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListInferenceEventsRequest, ListInferenceEventsResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListInferenceEventsRequest, ListInferenceEventsResponse } from "../models/models_0"; import { ListInferenceEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListInferenceExecutionsCommand.ts b/clients/client-lookoutequipment/src/commands/ListInferenceExecutionsCommand.ts index 7c686756fbbbb..908700c90cb88 100644 --- a/clients/client-lookoutequipment/src/commands/ListInferenceExecutionsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListInferenceExecutionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListInferenceExecutionsRequest, ListInferenceExecutionsResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListInferenceExecutionsRequest, ListInferenceExecutionsResponse } from "../models/models_0"; import { ListInferenceExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListInferenceSchedulersCommand.ts b/clients/client-lookoutequipment/src/commands/ListInferenceSchedulersCommand.ts index 831de605a3db9..87375ecc43102 100644 --- a/clients/client-lookoutequipment/src/commands/ListInferenceSchedulersCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListInferenceSchedulersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListInferenceSchedulersRequest, ListInferenceSchedulersResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListInferenceSchedulersRequest, ListInferenceSchedulersResponse } from "../models/models_0"; import { ListInferenceSchedulers } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListLabelGroupsCommand.ts b/clients/client-lookoutequipment/src/commands/ListLabelGroupsCommand.ts index b99d384f3ea23..025069826029b 100644 --- a/clients/client-lookoutequipment/src/commands/ListLabelGroupsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListLabelGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListLabelGroupsRequest, ListLabelGroupsResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListLabelGroupsRequest, ListLabelGroupsResponse } from "../models/models_0"; import { ListLabelGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListLabelsCommand.ts b/clients/client-lookoutequipment/src/commands/ListLabelsCommand.ts index 8eeaf4036f909..a6c5b68e7e1a4 100644 --- a/clients/client-lookoutequipment/src/commands/ListLabelsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListLabelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListLabelsRequest, ListLabelsResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListLabelsRequest, ListLabelsResponse } from "../models/models_0"; import { ListLabels } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListModelVersionsCommand.ts b/clients/client-lookoutequipment/src/commands/ListModelVersionsCommand.ts index 0d8678268c765..5aff981d11f07 100644 --- a/clients/client-lookoutequipment/src/commands/ListModelVersionsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListModelVersionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListModelVersionsRequest, ListModelVersionsResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListModelVersionsRequest, ListModelVersionsResponse } from "../models/models_0"; import { ListModelVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListModelsCommand.ts b/clients/client-lookoutequipment/src/commands/ListModelsCommand.ts index 7325fefc9e8e7..86f99fbce78f2 100644 --- a/clients/client-lookoutequipment/src/commands/ListModelsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListModelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListModelsRequest, ListModelsResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListModelsRequest, ListModelsResponse } from "../models/models_0"; import { ListModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListRetrainingSchedulersCommand.ts b/clients/client-lookoutequipment/src/commands/ListRetrainingSchedulersCommand.ts index 18ce578c9ba56..edb0e452d4df1 100644 --- a/clients/client-lookoutequipment/src/commands/ListRetrainingSchedulersCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListRetrainingSchedulersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListRetrainingSchedulersRequest, ListRetrainingSchedulersResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListRetrainingSchedulersRequest, ListRetrainingSchedulersResponse } from "../models/models_0"; import { ListRetrainingSchedulers } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListSensorStatisticsCommand.ts b/clients/client-lookoutequipment/src/commands/ListSensorStatisticsCommand.ts index 08652c5485b0b..ea68f93986e16 100644 --- a/clients/client-lookoutequipment/src/commands/ListSensorStatisticsCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListSensorStatisticsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListSensorStatisticsRequest, ListSensorStatisticsResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListSensorStatisticsRequest, ListSensorStatisticsResponse } from "../models/models_0"; import { ListSensorStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/ListTagsForResourceCommand.ts b/clients/client-lookoutequipment/src/commands/ListTagsForResourceCommand.ts index 96b326656ddff..648dce253b0b7 100644 --- a/clients/client-lookoutequipment/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-lookoutequipment/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/PutResourcePolicyCommand.ts b/clients/client-lookoutequipment/src/commands/PutResourcePolicyCommand.ts index 5728ae7222d0a..5fe701180beda 100644 --- a/clients/client-lookoutequipment/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-lookoutequipment/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/StartDataIngestionJobCommand.ts b/clients/client-lookoutequipment/src/commands/StartDataIngestionJobCommand.ts index d3d18d9d32942..103234e79a585 100644 --- a/clients/client-lookoutequipment/src/commands/StartDataIngestionJobCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StartDataIngestionJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { StartDataIngestionJobRequest, StartDataIngestionJobResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { StartDataIngestionJobRequest, StartDataIngestionJobResponse } from "../models/models_0"; import { StartDataIngestionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/StartInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/StartInferenceSchedulerCommand.ts index bc64adf4dcbfe..09653f0faeef5 100644 --- a/clients/client-lookoutequipment/src/commands/StartInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StartInferenceSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { StartInferenceSchedulerRequest, StartInferenceSchedulerResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { StartInferenceSchedulerRequest, StartInferenceSchedulerResponse } from "../models/models_0"; import { StartInferenceScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/StartRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/StartRetrainingSchedulerCommand.ts index 9a95ec0930986..9da803f3f7d9b 100644 --- a/clients/client-lookoutequipment/src/commands/StartRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StartRetrainingSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { StartRetrainingSchedulerRequest, StartRetrainingSchedulerResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { StartRetrainingSchedulerRequest, StartRetrainingSchedulerResponse } from "../models/models_0"; import { StartRetrainingScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/StopInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/StopInferenceSchedulerCommand.ts index 74fa396008433..a0299cc109b36 100644 --- a/clients/client-lookoutequipment/src/commands/StopInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StopInferenceSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { StopInferenceSchedulerRequest, StopInferenceSchedulerResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { StopInferenceSchedulerRequest, StopInferenceSchedulerResponse } from "../models/models_0"; import { StopInferenceScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/StopRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/StopRetrainingSchedulerCommand.ts index b08de50eb04f2..0748060808dcd 100644 --- a/clients/client-lookoutequipment/src/commands/StopRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/StopRetrainingSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { StopRetrainingSchedulerRequest, StopRetrainingSchedulerResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { StopRetrainingSchedulerRequest, StopRetrainingSchedulerResponse } from "../models/models_0"; import { StopRetrainingScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/TagResourceCommand.ts b/clients/client-lookoutequipment/src/commands/TagResourceCommand.ts index 74b6251d3af65..f09089c04bc19 100644 --- a/clients/client-lookoutequipment/src/commands/TagResourceCommand.ts +++ b/clients/client-lookoutequipment/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/UntagResourceCommand.ts b/clients/client-lookoutequipment/src/commands/UntagResourceCommand.ts index 141eb41192128..f8b79467a2ecd 100644 --- a/clients/client-lookoutequipment/src/commands/UntagResourceCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/UpdateActiveModelVersionCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateActiveModelVersionCommand.ts index f428bd45067ca..fbc68aa93e568 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateActiveModelVersionCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateActiveModelVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { UpdateActiveModelVersionRequest, UpdateActiveModelVersionResponse } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { UpdateActiveModelVersionRequest, UpdateActiveModelVersionResponse } from "../models/models_0"; import { UpdateActiveModelVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/UpdateInferenceSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateInferenceSchedulerCommand.ts index fed963b6c0ce3..5c35f10ba1f88 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateInferenceSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateInferenceSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { UpdateInferenceSchedulerRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { UpdateInferenceSchedulerRequest } from "../models/models_0"; import { UpdateInferenceScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/UpdateLabelGroupCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateLabelGroupCommand.ts index 74b5e54182efa..81fc132be0b4b 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateLabelGroupCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateLabelGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { UpdateLabelGroupRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { UpdateLabelGroupRequest } from "../models/models_0"; import { UpdateLabelGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/UpdateModelCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateModelCommand.ts index 36a1646dd1e00..0410108325fc4 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateModelCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateModelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { UpdateModelRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { UpdateModelRequest } from "../models/models_0"; import { UpdateModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/commands/UpdateRetrainingSchedulerCommand.ts b/clients/client-lookoutequipment/src/commands/UpdateRetrainingSchedulerCommand.ts index 0890869100075..3240515447fbf 100644 --- a/clients/client-lookoutequipment/src/commands/UpdateRetrainingSchedulerCommand.ts +++ b/clients/client-lookoutequipment/src/commands/UpdateRetrainingSchedulerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LookoutEquipmentClient"; -import { UpdateRetrainingSchedulerRequest } from "../models/models_0"; +import type { + LookoutEquipmentClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../LookoutEquipmentClient"; +import type { UpdateRetrainingSchedulerRequest } from "../models/models_0"; import { UpdateRetrainingScheduler } from "../schemas/schemas_0"; /** diff --git a/clients/client-lookoutequipment/src/endpoint/EndpointParameters.ts b/clients/client-lookoutequipment/src/endpoint/EndpointParameters.ts index 7396da3d38135..65727e13f46a8 100644 --- a/clients/client-lookoutequipment/src/endpoint/EndpointParameters.ts +++ b/clients/client-lookoutequipment/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-lookoutequipment/src/endpoint/endpointResolver.ts b/clients/client-lookoutequipment/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-lookoutequipment/src/endpoint/endpointResolver.ts +++ b/clients/client-lookoutequipment/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-lookoutequipment/src/extensionConfiguration.ts b/clients/client-lookoutequipment/src/extensionConfiguration.ts index af8e5821d62bc..50aaf45c8a7d0 100644 --- a/clients/client-lookoutequipment/src/extensionConfiguration.ts +++ b/clients/client-lookoutequipment/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-lookoutequipment/src/models/LookoutEquipmentServiceException.ts b/clients/client-lookoutequipment/src/models/LookoutEquipmentServiceException.ts index dac52b2b42b04..dbf7a75811d47 100644 --- a/clients/client-lookoutequipment/src/models/LookoutEquipmentServiceException.ts +++ b/clients/client-lookoutequipment/src/models/LookoutEquipmentServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-lookoutequipment/src/models/errors.ts b/clients/client-lookoutequipment/src/models/errors.ts index 83cb63f7c6fdf..6f26ff9716585 100644 --- a/clients/client-lookoutequipment/src/models/errors.ts +++ b/clients/client-lookoutequipment/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { LookoutEquipmentServiceException as __BaseException } from "./LookoutEquipmentServiceException"; diff --git a/clients/client-lookoutequipment/src/pagination/Interfaces.ts b/clients/client-lookoutequipment/src/pagination/Interfaces.ts index 52f0aae8dd1a6..edff5def1cddf 100644 --- a/clients/client-lookoutequipment/src/pagination/Interfaces.ts +++ b/clients/client-lookoutequipment/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { LookoutEquipmentClient } from "../LookoutEquipmentClient"; diff --git a/clients/client-lookoutequipment/src/pagination/ListDataIngestionJobsPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListDataIngestionJobsPaginator.ts index c06ed8088e594..2a1aa1b02c247 100644 --- a/clients/client-lookoutequipment/src/pagination/ListDataIngestionJobsPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListDataIngestionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataIngestionJobsCommand, diff --git a/clients/client-lookoutequipment/src/pagination/ListDatasetsPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListDatasetsPaginator.ts index ec8d0ca16272d..6b2c0dc86b029 100644 --- a/clients/client-lookoutequipment/src/pagination/ListDatasetsPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetsCommand, diff --git a/clients/client-lookoutequipment/src/pagination/ListInferenceEventsPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListInferenceEventsPaginator.ts index ba368a44e495d..f4cb4c895d6e4 100644 --- a/clients/client-lookoutequipment/src/pagination/ListInferenceEventsPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListInferenceEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInferenceEventsCommand, diff --git a/clients/client-lookoutequipment/src/pagination/ListInferenceExecutionsPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListInferenceExecutionsPaginator.ts index c0a2a9c270141..092731ecaac64 100644 --- a/clients/client-lookoutequipment/src/pagination/ListInferenceExecutionsPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListInferenceExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInferenceExecutionsCommand, diff --git a/clients/client-lookoutequipment/src/pagination/ListInferenceSchedulersPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListInferenceSchedulersPaginator.ts index fae705611c6aa..3544a636d3731 100644 --- a/clients/client-lookoutequipment/src/pagination/ListInferenceSchedulersPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListInferenceSchedulersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInferenceSchedulersCommand, diff --git a/clients/client-lookoutequipment/src/pagination/ListLabelGroupsPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListLabelGroupsPaginator.ts index 4204713b5f595..36e41f494d196 100644 --- a/clients/client-lookoutequipment/src/pagination/ListLabelGroupsPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListLabelGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLabelGroupsCommand, diff --git a/clients/client-lookoutequipment/src/pagination/ListLabelsPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListLabelsPaginator.ts index 22a82fc94f5bb..de59e241497ff 100644 --- a/clients/client-lookoutequipment/src/pagination/ListLabelsPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListLabelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLabelsCommand, ListLabelsCommandInput, ListLabelsCommandOutput } from "../commands/ListLabelsCommand"; import { LookoutEquipmentClient } from "../LookoutEquipmentClient"; diff --git a/clients/client-lookoutequipment/src/pagination/ListModelVersionsPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListModelVersionsPaginator.ts index d5e50c16dd955..9feac59b8d8fb 100644 --- a/clients/client-lookoutequipment/src/pagination/ListModelVersionsPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListModelVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelVersionsCommand, diff --git a/clients/client-lookoutequipment/src/pagination/ListModelsPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListModelsPaginator.ts index 73cfd9a66df66..73628cab5c875 100644 --- a/clients/client-lookoutequipment/src/pagination/ListModelsPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelsCommand, ListModelsCommandInput, ListModelsCommandOutput } from "../commands/ListModelsCommand"; import { LookoutEquipmentClient } from "../LookoutEquipmentClient"; diff --git a/clients/client-lookoutequipment/src/pagination/ListRetrainingSchedulersPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListRetrainingSchedulersPaginator.ts index 6b2dde5e22838..5a4bae11806af 100644 --- a/clients/client-lookoutequipment/src/pagination/ListRetrainingSchedulersPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListRetrainingSchedulersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRetrainingSchedulersCommand, diff --git a/clients/client-lookoutequipment/src/pagination/ListSensorStatisticsPaginator.ts b/clients/client-lookoutequipment/src/pagination/ListSensorStatisticsPaginator.ts index 67100fc69e7da..b2f8fd30d72ce 100644 --- a/clients/client-lookoutequipment/src/pagination/ListSensorStatisticsPaginator.ts +++ b/clients/client-lookoutequipment/src/pagination/ListSensorStatisticsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSensorStatisticsCommand, diff --git a/clients/client-lookoutequipment/src/runtimeConfig.browser.ts b/clients/client-lookoutequipment/src/runtimeConfig.browser.ts index a3d2bad8c6df3..4aeb5e01fd582 100644 --- a/clients/client-lookoutequipment/src/runtimeConfig.browser.ts +++ b/clients/client-lookoutequipment/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LookoutEquipmentClientConfig } from "./LookoutEquipmentClient"; + +import type { LookoutEquipmentClientConfig } from "./LookoutEquipmentClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-lookoutequipment/src/runtimeConfig.native.ts b/clients/client-lookoutequipment/src/runtimeConfig.native.ts index 26de4e2318ddc..f2e503a27331b 100644 --- a/clients/client-lookoutequipment/src/runtimeConfig.native.ts +++ b/clients/client-lookoutequipment/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { LookoutEquipmentClientConfig } from "./LookoutEquipmentClient"; +import type { LookoutEquipmentClientConfig } from "./LookoutEquipmentClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-lookoutequipment/src/runtimeConfig.shared.ts b/clients/client-lookoutequipment/src/runtimeConfig.shared.ts index 11e93d6dbf3ad..acd7339fdc809 100644 --- a/clients/client-lookoutequipment/src/runtimeConfig.shared.ts +++ b/clients/client-lookoutequipment/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultLookoutEquipmentHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { LookoutEquipmentClientConfig } from "./LookoutEquipmentClient"; +import type { LookoutEquipmentClientConfig } from "./LookoutEquipmentClient"; /** * @internal diff --git a/clients/client-lookoutequipment/src/runtimeConfig.ts b/clients/client-lookoutequipment/src/runtimeConfig.ts index b1e2d87238276..b1ec3e5bb3bf4 100644 --- a/clients/client-lookoutequipment/src/runtimeConfig.ts +++ b/clients/client-lookoutequipment/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { LookoutEquipmentClientConfig } from "./LookoutEquipmentClient"; + +import type { LookoutEquipmentClientConfig } from "./LookoutEquipmentClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-lookoutequipment/src/runtimeExtensions.ts b/clients/client-lookoutequipment/src/runtimeExtensions.ts index 1f04aa372f2ca..510d37635c66c 100644 --- a/clients/client-lookoutequipment/src/runtimeExtensions.ts +++ b/clients/client-lookoutequipment/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { LookoutEquipmentExtensionConfiguration } from "./extensionConfiguration"; +import type { LookoutEquipmentExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-lookoutequipment/src/schemas/schemas_0.ts b/clients/client-lookoutequipment/src/schemas/schemas_0.ts index 3b067a5a3c4af..15f136de1230e 100644 --- a/clients/client-lookoutequipment/src/schemas/schemas_0.ts +++ b/clients/client-lookoutequipment/src/schemas/schemas_0.ts @@ -351,7 +351,7 @@ const n0 = "com.amazonaws.lookoutequipment"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-m2/package.json b/clients/client-m2/package.json index 32ae51dd0e04b..fba185379600d 100644 --- a/clients/client-m2/package.json +++ b/clients/client-m2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-m2/src/M2.ts b/clients/client-m2/src/M2.ts index 3c7d632620b26..5e572b9c6a8d8 100644 --- a/clients/client-m2/src/M2.ts +++ b/clients/client-m2/src/M2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelBatchJobExecutionCommand, @@ -183,7 +183,7 @@ import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, } from "./commands/UpdateEnvironmentCommand"; -import { M2Client, M2ClientConfig } from "./M2Client"; +import { M2Client } from "./M2Client"; const commands = { CancelBatchJobExecutionCommand, diff --git a/clients/client-m2/src/M2Client.ts b/clients/client-m2/src/M2Client.ts index d040ff5f0279a..3939f4f9e1da5 100644 --- a/clients/client-m2/src/M2Client.ts +++ b/clients/client-m2/src/M2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultM2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -149,7 +158,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-m2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-m2/src/auth/httpAuthExtensionConfiguration.ts index c0e449d2006f9..3cb6f038b1ace 100644 --- a/clients/client-m2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-m2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { M2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { M2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-m2/src/auth/httpAuthSchemeProvider.ts b/clients/client-m2/src/auth/httpAuthSchemeProvider.ts index 35b358f191f1c..f7301eaa23f94 100644 --- a/clients/client-m2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-m2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { M2ClientConfig, M2ClientResolvedConfig } from "../M2Client"; +import { type M2ClientResolvedConfig, M2ClientConfig } from "../M2Client"; /** * @internal diff --git a/clients/client-m2/src/commands/CancelBatchJobExecutionCommand.ts b/clients/client-m2/src/commands/CancelBatchJobExecutionCommand.ts index 17f1797f97416..15e744a9fd90d 100644 --- a/clients/client-m2/src/commands/CancelBatchJobExecutionCommand.ts +++ b/clients/client-m2/src/commands/CancelBatchJobExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { CancelBatchJobExecutionRequest, CancelBatchJobExecutionResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { CancelBatchJobExecutionRequest, CancelBatchJobExecutionResponse } from "../models/models_0"; import { CancelBatchJobExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/CreateApplicationCommand.ts b/clients/client-m2/src/commands/CreateApplicationCommand.ts index f36dca1288e51..990a8a238aaac 100644 --- a/clients/client-m2/src/commands/CreateApplicationCommand.ts +++ b/clients/client-m2/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/CreateDataSetExportTaskCommand.ts b/clients/client-m2/src/commands/CreateDataSetExportTaskCommand.ts index ea20408e24c33..215a96f44a69f 100644 --- a/clients/client-m2/src/commands/CreateDataSetExportTaskCommand.ts +++ b/clients/client-m2/src/commands/CreateDataSetExportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { CreateDataSetExportTaskRequest, CreateDataSetExportTaskResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { CreateDataSetExportTaskRequest, CreateDataSetExportTaskResponse } from "../models/models_0"; import { CreateDataSetExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/CreateDataSetImportTaskCommand.ts b/clients/client-m2/src/commands/CreateDataSetImportTaskCommand.ts index a1ec6be5267ea..35c726fa38e35 100644 --- a/clients/client-m2/src/commands/CreateDataSetImportTaskCommand.ts +++ b/clients/client-m2/src/commands/CreateDataSetImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { CreateDataSetImportTaskRequest, CreateDataSetImportTaskResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { CreateDataSetImportTaskRequest, CreateDataSetImportTaskResponse } from "../models/models_0"; import { CreateDataSetImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/CreateDeploymentCommand.ts b/clients/client-m2/src/commands/CreateDeploymentCommand.ts index 636183966f266..f2ab2f130d319 100644 --- a/clients/client-m2/src/commands/CreateDeploymentCommand.ts +++ b/clients/client-m2/src/commands/CreateDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0"; import { CreateDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/CreateEnvironmentCommand.ts b/clients/client-m2/src/commands/CreateEnvironmentCommand.ts index 9f640811ca982..bf42c758ac7ca 100644 --- a/clients/client-m2/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/CreateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; import { CreateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/DeleteApplicationCommand.ts b/clients/client-m2/src/commands/DeleteApplicationCommand.ts index 6588bba6289b9..329b739acd00c 100644 --- a/clients/client-m2/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-m2/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/DeleteApplicationFromEnvironmentCommand.ts b/clients/client-m2/src/commands/DeleteApplicationFromEnvironmentCommand.ts index 3922a5363b1e3..de6a76c7fc558 100644 --- a/clients/client-m2/src/commands/DeleteApplicationFromEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/DeleteApplicationFromEnvironmentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { DeleteApplicationFromEnvironmentRequest, DeleteApplicationFromEnvironmentResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { + DeleteApplicationFromEnvironmentRequest, + DeleteApplicationFromEnvironmentResponse, +} from "../models/models_0"; import { DeleteApplicationFromEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/DeleteEnvironmentCommand.ts b/clients/client-m2/src/commands/DeleteEnvironmentCommand.ts index 7d0b9ac52f200..2bc4a5728a6f1 100644 --- a/clients/client-m2/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/DeleteEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; import { DeleteEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/GetApplicationCommand.ts b/clients/client-m2/src/commands/GetApplicationCommand.ts index d98f520963e0c..c78721e7169bd 100644 --- a/clients/client-m2/src/commands/GetApplicationCommand.ts +++ b/clients/client-m2/src/commands/GetApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/GetApplicationVersionCommand.ts b/clients/client-m2/src/commands/GetApplicationVersionCommand.ts index b3a360e8e39f5..55036e6bd1052 100644 --- a/clients/client-m2/src/commands/GetApplicationVersionCommand.ts +++ b/clients/client-m2/src/commands/GetApplicationVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { GetApplicationVersionRequest, GetApplicationVersionResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { GetApplicationVersionRequest, GetApplicationVersionResponse } from "../models/models_0"; import { GetApplicationVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/GetBatchJobExecutionCommand.ts b/clients/client-m2/src/commands/GetBatchJobExecutionCommand.ts index ade755116a512..bcdaf581cfa3b 100644 --- a/clients/client-m2/src/commands/GetBatchJobExecutionCommand.ts +++ b/clients/client-m2/src/commands/GetBatchJobExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { GetBatchJobExecutionRequest, GetBatchJobExecutionResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { GetBatchJobExecutionRequest, GetBatchJobExecutionResponse } from "../models/models_0"; import { GetBatchJobExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/GetDataSetDetailsCommand.ts b/clients/client-m2/src/commands/GetDataSetDetailsCommand.ts index 23feff2ff9f92..ebd587c44e6e7 100644 --- a/clients/client-m2/src/commands/GetDataSetDetailsCommand.ts +++ b/clients/client-m2/src/commands/GetDataSetDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { GetDataSetDetailsRequest, GetDataSetDetailsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { GetDataSetDetailsRequest, GetDataSetDetailsResponse } from "../models/models_0"; import { GetDataSetDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/GetDataSetExportTaskCommand.ts b/clients/client-m2/src/commands/GetDataSetExportTaskCommand.ts index c5f14b951a680..3c8203eb96682 100644 --- a/clients/client-m2/src/commands/GetDataSetExportTaskCommand.ts +++ b/clients/client-m2/src/commands/GetDataSetExportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { GetDataSetExportTaskRequest, GetDataSetExportTaskResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { GetDataSetExportTaskRequest, GetDataSetExportTaskResponse } from "../models/models_0"; import { GetDataSetExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/GetDataSetImportTaskCommand.ts b/clients/client-m2/src/commands/GetDataSetImportTaskCommand.ts index 2a290fad6c1a4..eca44b1efa946 100644 --- a/clients/client-m2/src/commands/GetDataSetImportTaskCommand.ts +++ b/clients/client-m2/src/commands/GetDataSetImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { GetDataSetImportTaskRequest, GetDataSetImportTaskResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { GetDataSetImportTaskRequest, GetDataSetImportTaskResponse } from "../models/models_0"; import { GetDataSetImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/GetDeploymentCommand.ts b/clients/client-m2/src/commands/GetDeploymentCommand.ts index 5b84a2092c504..774ee1930366f 100644 --- a/clients/client-m2/src/commands/GetDeploymentCommand.ts +++ b/clients/client-m2/src/commands/GetDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { GetDeploymentRequest, GetDeploymentResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { GetDeploymentRequest, GetDeploymentResponse } from "../models/models_0"; import { GetDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/GetEnvironmentCommand.ts b/clients/client-m2/src/commands/GetEnvironmentCommand.ts index c09663fa1c0a5..8a03cbe2f8f2f 100644 --- a/clients/client-m2/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/GetEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; import { GetEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/GetSignedBluinsightsUrlCommand.ts b/clients/client-m2/src/commands/GetSignedBluinsightsUrlCommand.ts index e6bd94d1a51a5..4a84047227028 100644 --- a/clients/client-m2/src/commands/GetSignedBluinsightsUrlCommand.ts +++ b/clients/client-m2/src/commands/GetSignedBluinsightsUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { GetSignedBluinsightsUrlResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { GetSignedBluinsightsUrlResponse } from "../models/models_0"; import { GetSignedBluinsightsUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListApplicationVersionsCommand.ts b/clients/client-m2/src/commands/ListApplicationVersionsCommand.ts index d890d78b0ce57..b78cc10d640b0 100644 --- a/clients/client-m2/src/commands/ListApplicationVersionsCommand.ts +++ b/clients/client-m2/src/commands/ListApplicationVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0"; import { ListApplicationVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListApplicationsCommand.ts b/clients/client-m2/src/commands/ListApplicationsCommand.ts index 49ba060b140cd..ea07cc504b10d 100644 --- a/clients/client-m2/src/commands/ListApplicationsCommand.ts +++ b/clients/client-m2/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListBatchJobDefinitionsCommand.ts b/clients/client-m2/src/commands/ListBatchJobDefinitionsCommand.ts index a21e324c9ba95..25b43c4d4858d 100644 --- a/clients/client-m2/src/commands/ListBatchJobDefinitionsCommand.ts +++ b/clients/client-m2/src/commands/ListBatchJobDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListBatchJobDefinitionsRequest, ListBatchJobDefinitionsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListBatchJobDefinitionsRequest, ListBatchJobDefinitionsResponse } from "../models/models_0"; import { ListBatchJobDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListBatchJobExecutionsCommand.ts b/clients/client-m2/src/commands/ListBatchJobExecutionsCommand.ts index 6ae1a0894276c..dbc0093336738 100644 --- a/clients/client-m2/src/commands/ListBatchJobExecutionsCommand.ts +++ b/clients/client-m2/src/commands/ListBatchJobExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListBatchJobExecutionsRequest, ListBatchJobExecutionsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListBatchJobExecutionsRequest, ListBatchJobExecutionsResponse } from "../models/models_0"; import { ListBatchJobExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListBatchJobRestartPointsCommand.ts b/clients/client-m2/src/commands/ListBatchJobRestartPointsCommand.ts index e668548874312..12401236296e9 100644 --- a/clients/client-m2/src/commands/ListBatchJobRestartPointsCommand.ts +++ b/clients/client-m2/src/commands/ListBatchJobRestartPointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListBatchJobRestartPointsRequest, ListBatchJobRestartPointsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListBatchJobRestartPointsRequest, ListBatchJobRestartPointsResponse } from "../models/models_0"; import { ListBatchJobRestartPoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListDataSetExportHistoryCommand.ts b/clients/client-m2/src/commands/ListDataSetExportHistoryCommand.ts index fb6639cb76bdf..2cc3f33da4d40 100644 --- a/clients/client-m2/src/commands/ListDataSetExportHistoryCommand.ts +++ b/clients/client-m2/src/commands/ListDataSetExportHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListDataSetExportHistoryRequest, ListDataSetExportHistoryResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListDataSetExportHistoryRequest, ListDataSetExportHistoryResponse } from "../models/models_0"; import { ListDataSetExportHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListDataSetImportHistoryCommand.ts b/clients/client-m2/src/commands/ListDataSetImportHistoryCommand.ts index cb999d6f900eb..0a309d58ec59f 100644 --- a/clients/client-m2/src/commands/ListDataSetImportHistoryCommand.ts +++ b/clients/client-m2/src/commands/ListDataSetImportHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListDataSetImportHistoryRequest, ListDataSetImportHistoryResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListDataSetImportHistoryRequest, ListDataSetImportHistoryResponse } from "../models/models_0"; import { ListDataSetImportHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListDataSetsCommand.ts b/clients/client-m2/src/commands/ListDataSetsCommand.ts index f49fdf0d6a622..b56a6f57f5e6e 100644 --- a/clients/client-m2/src/commands/ListDataSetsCommand.ts +++ b/clients/client-m2/src/commands/ListDataSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_0"; import { ListDataSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListDeploymentsCommand.ts b/clients/client-m2/src/commands/ListDeploymentsCommand.ts index d187d7073e89a..d84782813231c 100644 --- a/clients/client-m2/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-m2/src/commands/ListDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListDeploymentsRequest, ListDeploymentsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListDeploymentsRequest, ListDeploymentsResponse } from "../models/models_0"; import { ListDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListEngineVersionsCommand.ts b/clients/client-m2/src/commands/ListEngineVersionsCommand.ts index 02157dfc249e0..2282d9dfb3c50 100644 --- a/clients/client-m2/src/commands/ListEngineVersionsCommand.ts +++ b/clients/client-m2/src/commands/ListEngineVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListEngineVersionsRequest, ListEngineVersionsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListEngineVersionsRequest, ListEngineVersionsResponse } from "../models/models_0"; import { ListEngineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListEnvironmentsCommand.ts b/clients/client-m2/src/commands/ListEnvironmentsCommand.ts index 6512983633416..c157518395615 100644 --- a/clients/client-m2/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-m2/src/commands/ListEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; import { ListEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/ListTagsForResourceCommand.ts b/clients/client-m2/src/commands/ListTagsForResourceCommand.ts index 7bbac57017b24..e250e737647cc 100644 --- a/clients/client-m2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-m2/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/StartApplicationCommand.ts b/clients/client-m2/src/commands/StartApplicationCommand.ts index f74a64659a04b..4ab1b8b704698 100644 --- a/clients/client-m2/src/commands/StartApplicationCommand.ts +++ b/clients/client-m2/src/commands/StartApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { StartApplicationRequest, StartApplicationResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { StartApplicationRequest, StartApplicationResponse } from "../models/models_0"; import { StartApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/StartBatchJobCommand.ts b/clients/client-m2/src/commands/StartBatchJobCommand.ts index 94654eae1e519..e99463ac9b360 100644 --- a/clients/client-m2/src/commands/StartBatchJobCommand.ts +++ b/clients/client-m2/src/commands/StartBatchJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { StartBatchJobRequest, StartBatchJobResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { StartBatchJobRequest, StartBatchJobResponse } from "../models/models_0"; import { StartBatchJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/StopApplicationCommand.ts b/clients/client-m2/src/commands/StopApplicationCommand.ts index 657ab19e02702..ee7c2dcc8f9b0 100644 --- a/clients/client-m2/src/commands/StopApplicationCommand.ts +++ b/clients/client-m2/src/commands/StopApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { StopApplicationRequest, StopApplicationResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { StopApplicationRequest, StopApplicationResponse } from "../models/models_0"; import { StopApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/TagResourceCommand.ts b/clients/client-m2/src/commands/TagResourceCommand.ts index c82a4ce8a69bf..88e5a44f9d191 100644 --- a/clients/client-m2/src/commands/TagResourceCommand.ts +++ b/clients/client-m2/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/UntagResourceCommand.ts b/clients/client-m2/src/commands/UntagResourceCommand.ts index 98b7374315360..31d0f359db0b7 100644 --- a/clients/client-m2/src/commands/UntagResourceCommand.ts +++ b/clients/client-m2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/UpdateApplicationCommand.ts b/clients/client-m2/src/commands/UpdateApplicationCommand.ts index 53241c86f7f8f..8440be6caa3bc 100644 --- a/clients/client-m2/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-m2/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/commands/UpdateEnvironmentCommand.ts b/clients/client-m2/src/commands/UpdateEnvironmentCommand.ts index caeef0db79158..0b60518b5b533 100644 --- a/clients/client-m2/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-m2/src/commands/UpdateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; -import { UpdateEnvironmentRequest, UpdateEnvironmentResponse } from "../models/models_0"; +import type { M2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../M2Client"; +import type { UpdateEnvironmentRequest, UpdateEnvironmentResponse } from "../models/models_0"; import { UpdateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-m2/src/endpoint/EndpointParameters.ts b/clients/client-m2/src/endpoint/EndpointParameters.ts index 14db9d85216ef..4baff296a9425 100644 --- a/clients/client-m2/src/endpoint/EndpointParameters.ts +++ b/clients/client-m2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-m2/src/endpoint/endpointResolver.ts b/clients/client-m2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-m2/src/endpoint/endpointResolver.ts +++ b/clients/client-m2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-m2/src/extensionConfiguration.ts b/clients/client-m2/src/extensionConfiguration.ts index 55512219804ca..b7add9b6d732d 100644 --- a/clients/client-m2/src/extensionConfiguration.ts +++ b/clients/client-m2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-m2/src/models/M2ServiceException.ts b/clients/client-m2/src/models/M2ServiceException.ts index 5614955d57187..54c0e3e2ff963 100644 --- a/clients/client-m2/src/models/M2ServiceException.ts +++ b/clients/client-m2/src/models/M2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-m2/src/models/errors.ts b/clients/client-m2/src/models/errors.ts index 81695ea92bc33..0fc6d6c3c9faf 100644 --- a/clients/client-m2/src/models/errors.ts +++ b/clients/client-m2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { M2ServiceException as __BaseException } from "./M2ServiceException"; diff --git a/clients/client-m2/src/pagination/Interfaces.ts b/clients/client-m2/src/pagination/Interfaces.ts index c9697328b9826..0d543e4c538a0 100644 --- a/clients/client-m2/src/pagination/Interfaces.ts +++ b/clients/client-m2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { M2Client } from "../M2Client"; diff --git a/clients/client-m2/src/pagination/ListApplicationVersionsPaginator.ts b/clients/client-m2/src/pagination/ListApplicationVersionsPaginator.ts index 77b86fa09466f..d1fc53b27a143 100644 --- a/clients/client-m2/src/pagination/ListApplicationVersionsPaginator.ts +++ b/clients/client-m2/src/pagination/ListApplicationVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationVersionsCommand, diff --git a/clients/client-m2/src/pagination/ListApplicationsPaginator.ts b/clients/client-m2/src/pagination/ListApplicationsPaginator.ts index 5a14aa3c618d4..8aeccd21a1332 100644 --- a/clients/client-m2/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-m2/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-m2/src/pagination/ListBatchJobDefinitionsPaginator.ts b/clients/client-m2/src/pagination/ListBatchJobDefinitionsPaginator.ts index 02d70f155d370..38b4734dc74f7 100644 --- a/clients/client-m2/src/pagination/ListBatchJobDefinitionsPaginator.ts +++ b/clients/client-m2/src/pagination/ListBatchJobDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBatchJobDefinitionsCommand, diff --git a/clients/client-m2/src/pagination/ListBatchJobExecutionsPaginator.ts b/clients/client-m2/src/pagination/ListBatchJobExecutionsPaginator.ts index 11bb7e44546d3..283e005a172c4 100644 --- a/clients/client-m2/src/pagination/ListBatchJobExecutionsPaginator.ts +++ b/clients/client-m2/src/pagination/ListBatchJobExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBatchJobExecutionsCommand, diff --git a/clients/client-m2/src/pagination/ListDataSetExportHistoryPaginator.ts b/clients/client-m2/src/pagination/ListDataSetExportHistoryPaginator.ts index 59a151170c946..8cd7e8030a4dc 100644 --- a/clients/client-m2/src/pagination/ListDataSetExportHistoryPaginator.ts +++ b/clients/client-m2/src/pagination/ListDataSetExportHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSetExportHistoryCommand, diff --git a/clients/client-m2/src/pagination/ListDataSetImportHistoryPaginator.ts b/clients/client-m2/src/pagination/ListDataSetImportHistoryPaginator.ts index 6871b1b6cf49e..7c74dc2d1aeea 100644 --- a/clients/client-m2/src/pagination/ListDataSetImportHistoryPaginator.ts +++ b/clients/client-m2/src/pagination/ListDataSetImportHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSetImportHistoryCommand, diff --git a/clients/client-m2/src/pagination/ListDataSetsPaginator.ts b/clients/client-m2/src/pagination/ListDataSetsPaginator.ts index 3522398c93704..77a8d6d81546e 100644 --- a/clients/client-m2/src/pagination/ListDataSetsPaginator.ts +++ b/clients/client-m2/src/pagination/ListDataSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSetsCommand, diff --git a/clients/client-m2/src/pagination/ListDeploymentsPaginator.ts b/clients/client-m2/src/pagination/ListDeploymentsPaginator.ts index 165934492f2c3..e256454320721 100644 --- a/clients/client-m2/src/pagination/ListDeploymentsPaginator.ts +++ b/clients/client-m2/src/pagination/ListDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeploymentsCommand, diff --git a/clients/client-m2/src/pagination/ListEngineVersionsPaginator.ts b/clients/client-m2/src/pagination/ListEngineVersionsPaginator.ts index 775bf87e8c8fe..5c2dd953dfa05 100644 --- a/clients/client-m2/src/pagination/ListEngineVersionsPaginator.ts +++ b/clients/client-m2/src/pagination/ListEngineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEngineVersionsCommand, diff --git a/clients/client-m2/src/pagination/ListEnvironmentsPaginator.ts b/clients/client-m2/src/pagination/ListEnvironmentsPaginator.ts index 7bb01371efbc0..862687e2c913c 100644 --- a/clients/client-m2/src/pagination/ListEnvironmentsPaginator.ts +++ b/clients/client-m2/src/pagination/ListEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentsCommand, diff --git a/clients/client-m2/src/runtimeConfig.browser.ts b/clients/client-m2/src/runtimeConfig.browser.ts index c57638f6ed1fa..156e0f2f3f2a7 100644 --- a/clients/client-m2/src/runtimeConfig.browser.ts +++ b/clients/client-m2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { M2ClientConfig } from "./M2Client"; + +import type { M2ClientConfig } from "./M2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-m2/src/runtimeConfig.native.ts b/clients/client-m2/src/runtimeConfig.native.ts index ed55f7d86dfc7..64a183f2321ab 100644 --- a/clients/client-m2/src/runtimeConfig.native.ts +++ b/clients/client-m2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { M2ClientConfig } from "./M2Client"; +import type { M2ClientConfig } from "./M2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-m2/src/runtimeConfig.shared.ts b/clients/client-m2/src/runtimeConfig.shared.ts index 823522aebba4e..088b9c90dc1b5 100644 --- a/clients/client-m2/src/runtimeConfig.shared.ts +++ b/clients/client-m2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultM2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { M2ClientConfig } from "./M2Client"; +import type { M2ClientConfig } from "./M2Client"; /** * @internal diff --git a/clients/client-m2/src/runtimeConfig.ts b/clients/client-m2/src/runtimeConfig.ts index d1de98e3725a1..2adb2da156ed4 100644 --- a/clients/client-m2/src/runtimeConfig.ts +++ b/clients/client-m2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { M2ClientConfig } from "./M2Client"; + +import type { M2ClientConfig } from "./M2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-m2/src/runtimeExtensions.ts b/clients/client-m2/src/runtimeExtensions.ts index 8c9bc42cef648..dafab7b0e9cad 100644 --- a/clients/client-m2/src/runtimeExtensions.ts +++ b/clients/client-m2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { M2ExtensionConfiguration } from "./extensionConfiguration"; +import type { M2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-m2/src/schemas/schemas_0.ts b/clients/client-m2/src/schemas/schemas_0.ts index 0a4ec20803b04..bfbef874dffea 100644 --- a/clients/client-m2/src/schemas/schemas_0.ts +++ b/clients/client-m2/src/schemas/schemas_0.ts @@ -367,7 +367,7 @@ const n0 = "com.amazonaws.m2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-machine-learning/package.json b/clients/client-machine-learning/package.json index 3a4cf3bd7ed22..f045221757f0f 100644 --- a/clients/client-machine-learning/package.json +++ b/clients/client-machine-learning/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-machine-learning/src/MachineLearning.ts b/clients/client-machine-learning/src/MachineLearning.ts index 97a262f0463ae..d3b58a593c7dd 100644 --- a/clients/client-machine-learning/src/MachineLearning.ts +++ b/clients/client-machine-learning/src/MachineLearning.ts @@ -1,132 +1,140 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { AddTagsCommand, AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand"; +import { type AddTagsCommandInput, type AddTagsCommandOutput, AddTagsCommand } from "./commands/AddTagsCommand"; import { + type CreateBatchPredictionCommandInput, + type CreateBatchPredictionCommandOutput, CreateBatchPredictionCommand, - CreateBatchPredictionCommandInput, - CreateBatchPredictionCommandOutput, } from "./commands/CreateBatchPredictionCommand"; import { + type CreateDataSourceFromRDSCommandInput, + type CreateDataSourceFromRDSCommandOutput, CreateDataSourceFromRDSCommand, - CreateDataSourceFromRDSCommandInput, - CreateDataSourceFromRDSCommandOutput, } from "./commands/CreateDataSourceFromRDSCommand"; import { + type CreateDataSourceFromRedshiftCommandInput, + type CreateDataSourceFromRedshiftCommandOutput, CreateDataSourceFromRedshiftCommand, - CreateDataSourceFromRedshiftCommandInput, - CreateDataSourceFromRedshiftCommandOutput, } from "./commands/CreateDataSourceFromRedshiftCommand"; import { + type CreateDataSourceFromS3CommandInput, + type CreateDataSourceFromS3CommandOutput, CreateDataSourceFromS3Command, - CreateDataSourceFromS3CommandInput, - CreateDataSourceFromS3CommandOutput, } from "./commands/CreateDataSourceFromS3Command"; import { + type CreateEvaluationCommandInput, + type CreateEvaluationCommandOutput, CreateEvaluationCommand, - CreateEvaluationCommandInput, - CreateEvaluationCommandOutput, } from "./commands/CreateEvaluationCommand"; import { + type CreateMLModelCommandInput, + type CreateMLModelCommandOutput, CreateMLModelCommand, - CreateMLModelCommandInput, - CreateMLModelCommandOutput, } from "./commands/CreateMLModelCommand"; import { + type CreateRealtimeEndpointCommandInput, + type CreateRealtimeEndpointCommandOutput, CreateRealtimeEndpointCommand, - CreateRealtimeEndpointCommandInput, - CreateRealtimeEndpointCommandOutput, } from "./commands/CreateRealtimeEndpointCommand"; import { + type DeleteBatchPredictionCommandInput, + type DeleteBatchPredictionCommandOutput, DeleteBatchPredictionCommand, - DeleteBatchPredictionCommandInput, - DeleteBatchPredictionCommandOutput, } from "./commands/DeleteBatchPredictionCommand"; import { + type DeleteDataSourceCommandInput, + type DeleteDataSourceCommandOutput, DeleteDataSourceCommand, - DeleteDataSourceCommandInput, - DeleteDataSourceCommandOutput, } from "./commands/DeleteDataSourceCommand"; import { + type DeleteEvaluationCommandInput, + type DeleteEvaluationCommandOutput, DeleteEvaluationCommand, - DeleteEvaluationCommandInput, - DeleteEvaluationCommandOutput, } from "./commands/DeleteEvaluationCommand"; import { + type DeleteMLModelCommandInput, + type DeleteMLModelCommandOutput, DeleteMLModelCommand, - DeleteMLModelCommandInput, - DeleteMLModelCommandOutput, } from "./commands/DeleteMLModelCommand"; import { + type DeleteRealtimeEndpointCommandInput, + type DeleteRealtimeEndpointCommandOutput, DeleteRealtimeEndpointCommand, - DeleteRealtimeEndpointCommandInput, - DeleteRealtimeEndpointCommandOutput, } from "./commands/DeleteRealtimeEndpointCommand"; -import { DeleteTagsCommand, DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand"; import { + type DeleteTagsCommandInput, + type DeleteTagsCommandOutput, + DeleteTagsCommand, +} from "./commands/DeleteTagsCommand"; +import { + type DescribeBatchPredictionsCommandInput, + type DescribeBatchPredictionsCommandOutput, DescribeBatchPredictionsCommand, - DescribeBatchPredictionsCommandInput, - DescribeBatchPredictionsCommandOutput, } from "./commands/DescribeBatchPredictionsCommand"; import { + type DescribeDataSourcesCommandInput, + type DescribeDataSourcesCommandOutput, DescribeDataSourcesCommand, - DescribeDataSourcesCommandInput, - DescribeDataSourcesCommandOutput, } from "./commands/DescribeDataSourcesCommand"; import { + type DescribeEvaluationsCommandInput, + type DescribeEvaluationsCommandOutput, DescribeEvaluationsCommand, - DescribeEvaluationsCommandInput, - DescribeEvaluationsCommandOutput, } from "./commands/DescribeEvaluationsCommand"; import { + type DescribeMLModelsCommandInput, + type DescribeMLModelsCommandOutput, DescribeMLModelsCommand, - DescribeMLModelsCommandInput, - DescribeMLModelsCommandOutput, } from "./commands/DescribeMLModelsCommand"; import { + type DescribeTagsCommandInput, + type DescribeTagsCommandOutput, DescribeTagsCommand, - DescribeTagsCommandInput, - DescribeTagsCommandOutput, } from "./commands/DescribeTagsCommand"; import { + type GetBatchPredictionCommandInput, + type GetBatchPredictionCommandOutput, GetBatchPredictionCommand, - GetBatchPredictionCommandInput, - GetBatchPredictionCommandOutput, } from "./commands/GetBatchPredictionCommand"; import { + type GetDataSourceCommandInput, + type GetDataSourceCommandOutput, GetDataSourceCommand, - GetDataSourceCommandInput, - GetDataSourceCommandOutput, } from "./commands/GetDataSourceCommand"; import { + type GetEvaluationCommandInput, + type GetEvaluationCommandOutput, GetEvaluationCommand, - GetEvaluationCommandInput, - GetEvaluationCommandOutput, } from "./commands/GetEvaluationCommand"; -import { GetMLModelCommand, GetMLModelCommandInput, GetMLModelCommandOutput } from "./commands/GetMLModelCommand"; -import { PredictCommand, PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand"; import { + type GetMLModelCommandInput, + type GetMLModelCommandOutput, + GetMLModelCommand, +} from "./commands/GetMLModelCommand"; +import { type PredictCommandInput, type PredictCommandOutput, PredictCommand } from "./commands/PredictCommand"; +import { + type UpdateBatchPredictionCommandInput, + type UpdateBatchPredictionCommandOutput, UpdateBatchPredictionCommand, - UpdateBatchPredictionCommandInput, - UpdateBatchPredictionCommandOutput, } from "./commands/UpdateBatchPredictionCommand"; import { + type UpdateDataSourceCommandInput, + type UpdateDataSourceCommandOutput, UpdateDataSourceCommand, - UpdateDataSourceCommandInput, - UpdateDataSourceCommandOutput, } from "./commands/UpdateDataSourceCommand"; import { + type UpdateEvaluationCommandInput, + type UpdateEvaluationCommandOutput, UpdateEvaluationCommand, - UpdateEvaluationCommandInput, - UpdateEvaluationCommandOutput, } from "./commands/UpdateEvaluationCommand"; import { + type UpdateMLModelCommandInput, + type UpdateMLModelCommandOutput, UpdateMLModelCommand, - UpdateMLModelCommandInput, - UpdateMLModelCommandOutput, } from "./commands/UpdateMLModelCommand"; -import { MachineLearningClient, MachineLearningClientConfig } from "./MachineLearningClient"; +import { MachineLearningClient } from "./MachineLearningClient"; const commands = { AddTagsCommand, diff --git a/clients/client-machine-learning/src/MachineLearningClient.ts b/clients/client-machine-learning/src/MachineLearningClient.ts index f7570fcef4fdb..66760454d0ce7 100644 --- a/clients/client-machine-learning/src/MachineLearningClient.ts +++ b/clients/client-machine-learning/src/MachineLearningClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,103 +21,115 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMachineLearningHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand"; -import { +import type { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand"; +import type { CreateBatchPredictionCommandInput, CreateBatchPredictionCommandOutput, } from "./commands/CreateBatchPredictionCommand"; -import { +import type { CreateDataSourceFromRDSCommandInput, CreateDataSourceFromRDSCommandOutput, } from "./commands/CreateDataSourceFromRDSCommand"; -import { +import type { CreateDataSourceFromRedshiftCommandInput, CreateDataSourceFromRedshiftCommandOutput, } from "./commands/CreateDataSourceFromRedshiftCommand"; -import { +import type { CreateDataSourceFromS3CommandInput, CreateDataSourceFromS3CommandOutput, } from "./commands/CreateDataSourceFromS3Command"; -import { CreateEvaluationCommandInput, CreateEvaluationCommandOutput } from "./commands/CreateEvaluationCommand"; -import { CreateMLModelCommandInput, CreateMLModelCommandOutput } from "./commands/CreateMLModelCommand"; -import { +import type { CreateEvaluationCommandInput, CreateEvaluationCommandOutput } from "./commands/CreateEvaluationCommand"; +import type { CreateMLModelCommandInput, CreateMLModelCommandOutput } from "./commands/CreateMLModelCommand"; +import type { CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput, } from "./commands/CreateRealtimeEndpointCommand"; -import { +import type { DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput, } from "./commands/DeleteBatchPredictionCommand"; -import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand"; -import { DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput } from "./commands/DeleteEvaluationCommand"; -import { DeleteMLModelCommandInput, DeleteMLModelCommandOutput } from "./commands/DeleteMLModelCommand"; -import { +import type { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand"; +import type { DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput } from "./commands/DeleteEvaluationCommand"; +import type { DeleteMLModelCommandInput, DeleteMLModelCommandOutput } from "./commands/DeleteMLModelCommand"; +import type { DeleteRealtimeEndpointCommandInput, DeleteRealtimeEndpointCommandOutput, } from "./commands/DeleteRealtimeEndpointCommand"; -import { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand"; -import { +import type { DeleteTagsCommandInput, DeleteTagsCommandOutput } from "./commands/DeleteTagsCommand"; +import type { DescribeBatchPredictionsCommandInput, DescribeBatchPredictionsCommandOutput, } from "./commands/DescribeBatchPredictionsCommand"; -import { +import type { DescribeDataSourcesCommandInput, DescribeDataSourcesCommandOutput, } from "./commands/DescribeDataSourcesCommand"; -import { +import type { DescribeEvaluationsCommandInput, DescribeEvaluationsCommandOutput, } from "./commands/DescribeEvaluationsCommand"; -import { DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput } from "./commands/DescribeMLModelsCommand"; -import { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand"; -import { GetBatchPredictionCommandInput, GetBatchPredictionCommandOutput } from "./commands/GetBatchPredictionCommand"; -import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand"; -import { GetEvaluationCommandInput, GetEvaluationCommandOutput } from "./commands/GetEvaluationCommand"; -import { GetMLModelCommandInput, GetMLModelCommandOutput } from "./commands/GetMLModelCommand"; -import { PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand"; -import { +import type { DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput } from "./commands/DescribeMLModelsCommand"; +import type { DescribeTagsCommandInput, DescribeTagsCommandOutput } from "./commands/DescribeTagsCommand"; +import type { + GetBatchPredictionCommandInput, + GetBatchPredictionCommandOutput, +} from "./commands/GetBatchPredictionCommand"; +import type { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand"; +import type { GetEvaluationCommandInput, GetEvaluationCommandOutput } from "./commands/GetEvaluationCommand"; +import type { GetMLModelCommandInput, GetMLModelCommandOutput } from "./commands/GetMLModelCommand"; +import type { PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand"; +import type { UpdateBatchPredictionCommandInput, UpdateBatchPredictionCommandOutput, } from "./commands/UpdateBatchPredictionCommand"; -import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand"; -import { UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput } from "./commands/UpdateEvaluationCommand"; -import { UpdateMLModelCommandInput, UpdateMLModelCommandOutput } from "./commands/UpdateMLModelCommand"; +import type { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand"; +import type { UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput } from "./commands/UpdateEvaluationCommand"; +import type { UpdateMLModelCommandInput, UpdateMLModelCommandOutput } from "./commands/UpdateMLModelCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, @@ -125,7 +137,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-machine-learning/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-machine-learning/src/auth/httpAuthExtensionConfiguration.ts index 6ab5665f542ab..d684d76ea66bd 100644 --- a/clients/client-machine-learning/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-machine-learning/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MachineLearningHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MachineLearningHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-machine-learning/src/auth/httpAuthSchemeProvider.ts b/clients/client-machine-learning/src/auth/httpAuthSchemeProvider.ts index 427c147ab9ba8..e2df18058c165 100644 --- a/clients/client-machine-learning/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-machine-learning/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MachineLearningClientConfig, MachineLearningClientResolvedConfig } from "../MachineLearningClient"; +import { type MachineLearningClientResolvedConfig, MachineLearningClientConfig } from "../MachineLearningClient"; /** * @internal diff --git a/clients/client-machine-learning/src/commands/AddTagsCommand.ts b/clients/client-machine-learning/src/commands/AddTagsCommand.ts index f0ed70452e2de..d19dd87785127 100644 --- a/clients/client-machine-learning/src/commands/AddTagsCommand.ts +++ b/clients/client-machine-learning/src/commands/AddTagsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { AddTagsInput, AddTagsOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { AddTagsInput, AddTagsOutput } from "../models/models_0"; import { AddTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/CreateBatchPredictionCommand.ts b/clients/client-machine-learning/src/commands/CreateBatchPredictionCommand.ts index 34aaa2dea432c..0cffb996e2e42 100644 --- a/clients/client-machine-learning/src/commands/CreateBatchPredictionCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateBatchPredictionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { CreateBatchPredictionInput, CreateBatchPredictionOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { CreateBatchPredictionInput, CreateBatchPredictionOutput } from "../models/models_0"; import { CreateBatchPrediction } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts b/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts index dd02a72da5abd..db3fd64f4eeb1 100644 --- a/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateDataSourceFromRDSCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { CreateDataSourceFromRDSInput, CreateDataSourceFromRDSOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { CreateDataSourceFromRDSInput, CreateDataSourceFromRDSOutput } from "../models/models_0"; import { CreateDataSourceFromRDS } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts b/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts index 9dd8d1951aca5..6b6a2672697ab 100644 --- a/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateDataSourceFromRedshiftCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { CreateDataSourceFromRedshiftInput, CreateDataSourceFromRedshiftOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { CreateDataSourceFromRedshiftInput, CreateDataSourceFromRedshiftOutput } from "../models/models_0"; import { CreateDataSourceFromRedshift } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/CreateDataSourceFromS3Command.ts b/clients/client-machine-learning/src/commands/CreateDataSourceFromS3Command.ts index 23bd330b811a8..ee44c05aa1c19 100644 --- a/clients/client-machine-learning/src/commands/CreateDataSourceFromS3Command.ts +++ b/clients/client-machine-learning/src/commands/CreateDataSourceFromS3Command.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { CreateDataSourceFromS3Input, CreateDataSourceFromS3Output } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { CreateDataSourceFromS3Input, CreateDataSourceFromS3Output } from "../models/models_0"; import { CreateDataSourceFromS3 } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/CreateEvaluationCommand.ts b/clients/client-machine-learning/src/commands/CreateEvaluationCommand.ts index e3197b220ef1b..90567c41c6642 100644 --- a/clients/client-machine-learning/src/commands/CreateEvaluationCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateEvaluationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { CreateEvaluationInput, CreateEvaluationOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { CreateEvaluationInput, CreateEvaluationOutput } from "../models/models_0"; import { CreateEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/CreateMLModelCommand.ts b/clients/client-machine-learning/src/commands/CreateMLModelCommand.ts index 2972393329033..217fd9ba4cfd0 100644 --- a/clients/client-machine-learning/src/commands/CreateMLModelCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateMLModelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { CreateMLModelInput, CreateMLModelOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { CreateMLModelInput, CreateMLModelOutput } from "../models/models_0"; import { CreateMLModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/CreateRealtimeEndpointCommand.ts b/clients/client-machine-learning/src/commands/CreateRealtimeEndpointCommand.ts index dfb11133a9702..fd25e11982925 100644 --- a/clients/client-machine-learning/src/commands/CreateRealtimeEndpointCommand.ts +++ b/clients/client-machine-learning/src/commands/CreateRealtimeEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { CreateRealtimeEndpointInput, CreateRealtimeEndpointOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { CreateRealtimeEndpointInput, CreateRealtimeEndpointOutput } from "../models/models_0"; import { CreateRealtimeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DeleteBatchPredictionCommand.ts b/clients/client-machine-learning/src/commands/DeleteBatchPredictionCommand.ts index 7fbc30dc7b7d3..1fb576d818d7e 100644 --- a/clients/client-machine-learning/src/commands/DeleteBatchPredictionCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteBatchPredictionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DeleteBatchPredictionInput, DeleteBatchPredictionOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DeleteBatchPredictionInput, DeleteBatchPredictionOutput } from "../models/models_0"; import { DeleteBatchPrediction } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DeleteDataSourceCommand.ts b/clients/client-machine-learning/src/commands/DeleteDataSourceCommand.ts index f92ad4cbb7f66..1786c6bc13d8b 100644 --- a/clients/client-machine-learning/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteDataSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DeleteDataSourceInput, DeleteDataSourceOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DeleteDataSourceInput, DeleteDataSourceOutput } from "../models/models_0"; import { DeleteDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DeleteEvaluationCommand.ts b/clients/client-machine-learning/src/commands/DeleteEvaluationCommand.ts index bae07e897a40d..70c4be96ad8ea 100644 --- a/clients/client-machine-learning/src/commands/DeleteEvaluationCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteEvaluationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DeleteEvaluationInput, DeleteEvaluationOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DeleteEvaluationInput, DeleteEvaluationOutput } from "../models/models_0"; import { DeleteEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DeleteMLModelCommand.ts b/clients/client-machine-learning/src/commands/DeleteMLModelCommand.ts index 92a111ffae049..ea56ecea98643 100644 --- a/clients/client-machine-learning/src/commands/DeleteMLModelCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteMLModelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DeleteMLModelInput, DeleteMLModelOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DeleteMLModelInput, DeleteMLModelOutput } from "../models/models_0"; import { DeleteMLModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DeleteRealtimeEndpointCommand.ts b/clients/client-machine-learning/src/commands/DeleteRealtimeEndpointCommand.ts index bf843fb51870f..04a7802a8b236 100644 --- a/clients/client-machine-learning/src/commands/DeleteRealtimeEndpointCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteRealtimeEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DeleteRealtimeEndpointInput, DeleteRealtimeEndpointOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DeleteRealtimeEndpointInput, DeleteRealtimeEndpointOutput } from "../models/models_0"; import { DeleteRealtimeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DeleteTagsCommand.ts b/clients/client-machine-learning/src/commands/DeleteTagsCommand.ts index 1625866bfa1b3..23d5c6429429a 100644 --- a/clients/client-machine-learning/src/commands/DeleteTagsCommand.ts +++ b/clients/client-machine-learning/src/commands/DeleteTagsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DeleteTagsInput, DeleteTagsOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DeleteTagsInput, DeleteTagsOutput } from "../models/models_0"; import { DeleteTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DescribeBatchPredictionsCommand.ts b/clients/client-machine-learning/src/commands/DescribeBatchPredictionsCommand.ts index 45e79e3b7d1cb..c1655e0a108ed 100644 --- a/clients/client-machine-learning/src/commands/DescribeBatchPredictionsCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeBatchPredictionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DescribeBatchPredictionsInput, DescribeBatchPredictionsOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DescribeBatchPredictionsInput, DescribeBatchPredictionsOutput } from "../models/models_0"; import { DescribeBatchPredictions } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DescribeDataSourcesCommand.ts b/clients/client-machine-learning/src/commands/DescribeDataSourcesCommand.ts index a75ca09434e0b..7590109527dc8 100644 --- a/clients/client-machine-learning/src/commands/DescribeDataSourcesCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeDataSourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DescribeDataSourcesInput, DescribeDataSourcesOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DescribeDataSourcesInput, DescribeDataSourcesOutput } from "../models/models_0"; import { DescribeDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DescribeEvaluationsCommand.ts b/clients/client-machine-learning/src/commands/DescribeEvaluationsCommand.ts index d0746fee9752d..a48aca02526b7 100644 --- a/clients/client-machine-learning/src/commands/DescribeEvaluationsCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeEvaluationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DescribeEvaluationsInput, DescribeEvaluationsOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DescribeEvaluationsInput, DescribeEvaluationsOutput } from "../models/models_0"; import { DescribeEvaluations } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DescribeMLModelsCommand.ts b/clients/client-machine-learning/src/commands/DescribeMLModelsCommand.ts index 61e04de10b92a..b64da689744ae 100644 --- a/clients/client-machine-learning/src/commands/DescribeMLModelsCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeMLModelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DescribeMLModelsInput, DescribeMLModelsOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DescribeMLModelsInput, DescribeMLModelsOutput } from "../models/models_0"; import { DescribeMLModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/DescribeTagsCommand.ts b/clients/client-machine-learning/src/commands/DescribeTagsCommand.ts index 107d4aab81eda..266bceb66c352 100644 --- a/clients/client-machine-learning/src/commands/DescribeTagsCommand.ts +++ b/clients/client-machine-learning/src/commands/DescribeTagsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0"; import { DescribeTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/GetBatchPredictionCommand.ts b/clients/client-machine-learning/src/commands/GetBatchPredictionCommand.ts index ba68e4fda70fa..c260279fe72f7 100644 --- a/clients/client-machine-learning/src/commands/GetBatchPredictionCommand.ts +++ b/clients/client-machine-learning/src/commands/GetBatchPredictionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { GetBatchPredictionInput, GetBatchPredictionOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { GetBatchPredictionInput, GetBatchPredictionOutput } from "../models/models_0"; import { GetBatchPrediction } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/GetDataSourceCommand.ts b/clients/client-machine-learning/src/commands/GetDataSourceCommand.ts index 5828f99322fdf..c65c91eef77f2 100644 --- a/clients/client-machine-learning/src/commands/GetDataSourceCommand.ts +++ b/clients/client-machine-learning/src/commands/GetDataSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { GetDataSourceInput, GetDataSourceOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { GetDataSourceInput, GetDataSourceOutput } from "../models/models_0"; import { GetDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/GetEvaluationCommand.ts b/clients/client-machine-learning/src/commands/GetEvaluationCommand.ts index 903344ceaac40..9f8c25dc7c3d5 100644 --- a/clients/client-machine-learning/src/commands/GetEvaluationCommand.ts +++ b/clients/client-machine-learning/src/commands/GetEvaluationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { GetEvaluationInput, GetEvaluationOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { GetEvaluationInput, GetEvaluationOutput } from "../models/models_0"; import { GetEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/GetMLModelCommand.ts b/clients/client-machine-learning/src/commands/GetMLModelCommand.ts index 1f03ad4158655..cde61fde63eb5 100644 --- a/clients/client-machine-learning/src/commands/GetMLModelCommand.ts +++ b/clients/client-machine-learning/src/commands/GetMLModelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { GetMLModelInput, GetMLModelOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { GetMLModelInput, GetMLModelOutput } from "../models/models_0"; import { GetMLModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/PredictCommand.ts b/clients/client-machine-learning/src/commands/PredictCommand.ts index 3e6b8feded779..a026f29998d73 100644 --- a/clients/client-machine-learning/src/commands/PredictCommand.ts +++ b/clients/client-machine-learning/src/commands/PredictCommand.ts @@ -2,11 +2,15 @@ import { getPredictEndpointPlugin } from "@aws-sdk/middleware-sdk-machinelearning"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { PredictInput, PredictOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { PredictInput, PredictOutput } from "../models/models_0"; import { Predict } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/UpdateBatchPredictionCommand.ts b/clients/client-machine-learning/src/commands/UpdateBatchPredictionCommand.ts index 61c7b6cfeb3dd..347badabf6151 100644 --- a/clients/client-machine-learning/src/commands/UpdateBatchPredictionCommand.ts +++ b/clients/client-machine-learning/src/commands/UpdateBatchPredictionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { UpdateBatchPredictionInput, UpdateBatchPredictionOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { UpdateBatchPredictionInput, UpdateBatchPredictionOutput } from "../models/models_0"; import { UpdateBatchPrediction } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/UpdateDataSourceCommand.ts b/clients/client-machine-learning/src/commands/UpdateDataSourceCommand.ts index fd677c1e2be66..e11c4b889d23a 100644 --- a/clients/client-machine-learning/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-machine-learning/src/commands/UpdateDataSourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { UpdateDataSourceInput, UpdateDataSourceOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { UpdateDataSourceInput, UpdateDataSourceOutput } from "../models/models_0"; import { UpdateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/UpdateEvaluationCommand.ts b/clients/client-machine-learning/src/commands/UpdateEvaluationCommand.ts index d63b48445c942..30f9cd48a665a 100644 --- a/clients/client-machine-learning/src/commands/UpdateEvaluationCommand.ts +++ b/clients/client-machine-learning/src/commands/UpdateEvaluationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { UpdateEvaluationInput, UpdateEvaluationOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { UpdateEvaluationInput, UpdateEvaluationOutput } from "../models/models_0"; import { UpdateEvaluation } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/commands/UpdateMLModelCommand.ts b/clients/client-machine-learning/src/commands/UpdateMLModelCommand.ts index 849a4c7809d54..18e61e3d01da4 100644 --- a/clients/client-machine-learning/src/commands/UpdateMLModelCommand.ts +++ b/clients/client-machine-learning/src/commands/UpdateMLModelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { UpdateMLModelInput, UpdateMLModelOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { UpdateMLModelInput, UpdateMLModelOutput } from "../models/models_0"; import { UpdateMLModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-machine-learning/src/endpoint/EndpointParameters.ts b/clients/client-machine-learning/src/endpoint/EndpointParameters.ts index 554c886e81390..c4e43b1a6eca9 100644 --- a/clients/client-machine-learning/src/endpoint/EndpointParameters.ts +++ b/clients/client-machine-learning/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-machine-learning/src/endpoint/endpointResolver.ts b/clients/client-machine-learning/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-machine-learning/src/endpoint/endpointResolver.ts +++ b/clients/client-machine-learning/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-machine-learning/src/extensionConfiguration.ts b/clients/client-machine-learning/src/extensionConfiguration.ts index e6e5d1d59f749..5eafb2050c396 100644 --- a/clients/client-machine-learning/src/extensionConfiguration.ts +++ b/clients/client-machine-learning/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-machine-learning/src/models/MachineLearningServiceException.ts b/clients/client-machine-learning/src/models/MachineLearningServiceException.ts index b64ec53f74f2d..0e6f9c6c55128 100644 --- a/clients/client-machine-learning/src/models/MachineLearningServiceException.ts +++ b/clients/client-machine-learning/src/models/MachineLearningServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-machine-learning/src/models/errors.ts b/clients/client-machine-learning/src/models/errors.ts index 0eaf478b3f81c..154e5345069a1 100644 --- a/clients/client-machine-learning/src/models/errors.ts +++ b/clients/client-machine-learning/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException"; diff --git a/clients/client-machine-learning/src/models/models_0.ts b/clients/client-machine-learning/src/models/models_0.ts index 16d1ce2b2ccab..6777c01e926e2 100644 --- a/clients/client-machine-learning/src/models/models_0.ts +++ b/clients/client-machine-learning/src/models/models_0.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { +import type { Algorithm, BatchPredictionFilterVariable, DataSourceFilterVariable, diff --git a/clients/client-machine-learning/src/pagination/DescribeBatchPredictionsPaginator.ts b/clients/client-machine-learning/src/pagination/DescribeBatchPredictionsPaginator.ts index 5da06dc249389..b9d777712cf0c 100644 --- a/clients/client-machine-learning/src/pagination/DescribeBatchPredictionsPaginator.ts +++ b/clients/client-machine-learning/src/pagination/DescribeBatchPredictionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeBatchPredictionsCommand, diff --git a/clients/client-machine-learning/src/pagination/DescribeDataSourcesPaginator.ts b/clients/client-machine-learning/src/pagination/DescribeDataSourcesPaginator.ts index f9c8f79feda45..b220e84195b3c 100644 --- a/clients/client-machine-learning/src/pagination/DescribeDataSourcesPaginator.ts +++ b/clients/client-machine-learning/src/pagination/DescribeDataSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDataSourcesCommand, diff --git a/clients/client-machine-learning/src/pagination/DescribeEvaluationsPaginator.ts b/clients/client-machine-learning/src/pagination/DescribeEvaluationsPaginator.ts index e417dc423f67c..5d4467af5e247 100644 --- a/clients/client-machine-learning/src/pagination/DescribeEvaluationsPaginator.ts +++ b/clients/client-machine-learning/src/pagination/DescribeEvaluationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEvaluationsCommand, diff --git a/clients/client-machine-learning/src/pagination/DescribeMLModelsPaginator.ts b/clients/client-machine-learning/src/pagination/DescribeMLModelsPaginator.ts index 6c6d68f7af05b..b642ce9097965 100644 --- a/clients/client-machine-learning/src/pagination/DescribeMLModelsPaginator.ts +++ b/clients/client-machine-learning/src/pagination/DescribeMLModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMLModelsCommand, diff --git a/clients/client-machine-learning/src/pagination/Interfaces.ts b/clients/client-machine-learning/src/pagination/Interfaces.ts index c33393dabf3db..f28ee3cc9d7e6 100644 --- a/clients/client-machine-learning/src/pagination/Interfaces.ts +++ b/clients/client-machine-learning/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MachineLearningClient } from "../MachineLearningClient"; diff --git a/clients/client-machine-learning/src/runtimeConfig.browser.ts b/clients/client-machine-learning/src/runtimeConfig.browser.ts index 866e6ef2c3c7e..420281cfcf7f3 100644 --- a/clients/client-machine-learning/src/runtimeConfig.browser.ts +++ b/clients/client-machine-learning/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; + +import type { MachineLearningClientConfig } from "./MachineLearningClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-machine-learning/src/runtimeConfig.native.ts b/clients/client-machine-learning/src/runtimeConfig.native.ts index 413a354f50743..5503ffedfeae3 100644 --- a/clients/client-machine-learning/src/runtimeConfig.native.ts +++ b/clients/client-machine-learning/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; +import type { MachineLearningClientConfig } from "./MachineLearningClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-machine-learning/src/runtimeConfig.shared.ts b/clients/client-machine-learning/src/runtimeConfig.shared.ts index 1d76e8bbde668..63d504026c67d 100644 --- a/clients/client-machine-learning/src/runtimeConfig.shared.ts +++ b/clients/client-machine-learning/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMachineLearningHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; +import type { MachineLearningClientConfig } from "./MachineLearningClient"; /** * @internal diff --git a/clients/client-machine-learning/src/runtimeConfig.ts b/clients/client-machine-learning/src/runtimeConfig.ts index 25020c755248a..6711c3a059d52 100644 --- a/clients/client-machine-learning/src/runtimeConfig.ts +++ b/clients/client-machine-learning/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; + +import type { MachineLearningClientConfig } from "./MachineLearningClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-machine-learning/src/runtimeExtensions.ts b/clients/client-machine-learning/src/runtimeExtensions.ts index 79ed7a46cefdb..93c7b24f965d2 100644 --- a/clients/client-machine-learning/src/runtimeExtensions.ts +++ b/clients/client-machine-learning/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MachineLearningExtensionConfiguration } from "./extensionConfiguration"; +import type { MachineLearningExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-machine-learning/src/schemas/schemas_0.ts b/clients/client-machine-learning/src/schemas/schemas_0.ts index 86ad867826564..86f0d418d9de2 100644 --- a/clients/client-machine-learning/src/schemas/schemas_0.ts +++ b/clients/client-machine-learning/src/schemas/schemas_0.ts @@ -218,7 +218,7 @@ const n0 = "com.amazonaws.machinelearning"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-machine-learning/src/waiters/waitForBatchPredictionAvailable.ts b/clients/client-machine-learning/src/waiters/waitForBatchPredictionAvailable.ts index f6dce1a5062c7..07c1c4f4d9647 100644 --- a/clients/client-machine-learning/src/waiters/waitForBatchPredictionAvailable.ts +++ b/clients/client-machine-learning/src/waiters/waitForBatchPredictionAvailable.ts @@ -2,8 +2,8 @@ import { checkExceptions, createWaiter, WaiterConfiguration, WaiterResult, WaiterState } from "@smithy/util-waiter"; import { + type DescribeBatchPredictionsCommandInput, DescribeBatchPredictionsCommand, - DescribeBatchPredictionsCommandInput, } from "../commands/DescribeBatchPredictionsCommand"; import { MachineLearningClient } from "../MachineLearningClient"; diff --git a/clients/client-machine-learning/src/waiters/waitForDataSourceAvailable.ts b/clients/client-machine-learning/src/waiters/waitForDataSourceAvailable.ts index e780c0689cfed..dd8c24e25fb3a 100644 --- a/clients/client-machine-learning/src/waiters/waitForDataSourceAvailable.ts +++ b/clients/client-machine-learning/src/waiters/waitForDataSourceAvailable.ts @@ -1,7 +1,10 @@ // smithy-typescript generated code import { checkExceptions, createWaiter, WaiterConfiguration, WaiterResult, WaiterState } from "@smithy/util-waiter"; -import { DescribeDataSourcesCommand, DescribeDataSourcesCommandInput } from "../commands/DescribeDataSourcesCommand"; +import { + type DescribeDataSourcesCommandInput, + DescribeDataSourcesCommand, +} from "../commands/DescribeDataSourcesCommand"; import { MachineLearningClient } from "../MachineLearningClient"; const checkState = async ( diff --git a/clients/client-machine-learning/src/waiters/waitForEvaluationAvailable.ts b/clients/client-machine-learning/src/waiters/waitForEvaluationAvailable.ts index b84e7409c4b1b..27b8f9f71cbc0 100644 --- a/clients/client-machine-learning/src/waiters/waitForEvaluationAvailable.ts +++ b/clients/client-machine-learning/src/waiters/waitForEvaluationAvailable.ts @@ -1,7 +1,10 @@ // smithy-typescript generated code import { checkExceptions, createWaiter, WaiterConfiguration, WaiterResult, WaiterState } from "@smithy/util-waiter"; -import { DescribeEvaluationsCommand, DescribeEvaluationsCommandInput } from "../commands/DescribeEvaluationsCommand"; +import { + type DescribeEvaluationsCommandInput, + DescribeEvaluationsCommand, +} from "../commands/DescribeEvaluationsCommand"; import { MachineLearningClient } from "../MachineLearningClient"; const checkState = async ( diff --git a/clients/client-machine-learning/src/waiters/waitForMLModelAvailable.ts b/clients/client-machine-learning/src/waiters/waitForMLModelAvailable.ts index 77287d8ac224d..93905ea637606 100644 --- a/clients/client-machine-learning/src/waiters/waitForMLModelAvailable.ts +++ b/clients/client-machine-learning/src/waiters/waitForMLModelAvailable.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { checkExceptions, createWaiter, WaiterConfiguration, WaiterResult, WaiterState } from "@smithy/util-waiter"; -import { DescribeMLModelsCommand, DescribeMLModelsCommandInput } from "../commands/DescribeMLModelsCommand"; +import { type DescribeMLModelsCommandInput, DescribeMLModelsCommand } from "../commands/DescribeMLModelsCommand"; import { MachineLearningClient } from "../MachineLearningClient"; const checkState = async ( diff --git a/clients/client-macie2/package.json b/clients/client-macie2/package.json index 528ab5805c8e8..f8afd70f254c9 100644 --- a/clients/client-macie2/package.json +++ b/clients/client-macie2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-macie2/src/Macie2.ts b/clients/client-macie2/src/Macie2.ts index 8d4a99b13724d..29534d21398c8 100644 --- a/clients/client-macie2/src/Macie2.ts +++ b/clients/client-macie2/src/Macie2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptInvitationCommand, @@ -387,7 +387,7 @@ import { UpdateSensitivityInspectionTemplateCommandInput, UpdateSensitivityInspectionTemplateCommandOutput, } from "./commands/UpdateSensitivityInspectionTemplateCommand"; -import { Macie2Client, Macie2ClientConfig } from "./Macie2Client"; +import { Macie2Client } from "./Macie2Client"; const commands = { AcceptInvitationCommand, diff --git a/clients/client-macie2/src/Macie2Client.ts b/clients/client-macie2/src/Macie2Client.ts index 593329d924920..7f901e065d0e5 100644 --- a/clients/client-macie2/src/Macie2Client.ts +++ b/clients/client-macie2/src/Macie2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMacie2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptInvitationCommandInput, AcceptInvitationCommandOutput } from "./commands/AcceptInvitationCommand"; @@ -298,7 +307,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-macie2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-macie2/src/auth/httpAuthExtensionConfiguration.ts index 8955059f038e0..f0b62865703cb 100644 --- a/clients/client-macie2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-macie2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Macie2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Macie2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-macie2/src/auth/httpAuthSchemeProvider.ts b/clients/client-macie2/src/auth/httpAuthSchemeProvider.ts index 2309872dc50c7..7c7dfba8bc8fd 100644 --- a/clients/client-macie2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-macie2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { Macie2ClientConfig, Macie2ClientResolvedConfig } from "../Macie2Client"; +import { type Macie2ClientResolvedConfig, Macie2ClientConfig } from "../Macie2Client"; /** * @internal diff --git a/clients/client-macie2/src/commands/AcceptInvitationCommand.ts b/clients/client-macie2/src/commands/AcceptInvitationCommand.ts index ee854ac5b04e4..922dade29b082 100644 --- a/clients/client-macie2/src/commands/AcceptInvitationCommand.ts +++ b/clients/client-macie2/src/commands/AcceptInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { AcceptInvitationRequest, AcceptInvitationResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { AcceptInvitationRequest, AcceptInvitationResponse } from "../models/models_0"; import { AcceptInvitation } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/BatchGetCustomDataIdentifiersCommand.ts b/clients/client-macie2/src/commands/BatchGetCustomDataIdentifiersCommand.ts index b600bc7d032ae..7437da4307766 100644 --- a/clients/client-macie2/src/commands/BatchGetCustomDataIdentifiersCommand.ts +++ b/clients/client-macie2/src/commands/BatchGetCustomDataIdentifiersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { BatchGetCustomDataIdentifiersRequest, BatchGetCustomDataIdentifiersResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { BatchGetCustomDataIdentifiersRequest, BatchGetCustomDataIdentifiersResponse } from "../models/models_0"; import { BatchGetCustomDataIdentifiers } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.ts b/clients/client-macie2/src/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.ts index 707f812599623..794ff96228622 100644 --- a/clients/client-macie2/src/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.ts +++ b/clients/client-macie2/src/commands/BatchUpdateAutomatedDiscoveryAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { BatchUpdateAutomatedDiscoveryAccountsRequest, BatchUpdateAutomatedDiscoveryAccountsResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/CreateAllowListCommand.ts b/clients/client-macie2/src/commands/CreateAllowListCommand.ts index d2f446b834e6b..0eeeb3644e764 100644 --- a/clients/client-macie2/src/commands/CreateAllowListCommand.ts +++ b/clients/client-macie2/src/commands/CreateAllowListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { CreateAllowListRequest, CreateAllowListResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { CreateAllowListRequest, CreateAllowListResponse } from "../models/models_0"; import { CreateAllowList } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/CreateClassificationJobCommand.ts b/clients/client-macie2/src/commands/CreateClassificationJobCommand.ts index a43dfdf39c50a..669b8674434a1 100644 --- a/clients/client-macie2/src/commands/CreateClassificationJobCommand.ts +++ b/clients/client-macie2/src/commands/CreateClassificationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { CreateClassificationJobRequest, CreateClassificationJobResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { CreateClassificationJobRequest, CreateClassificationJobResponse } from "../models/models_0"; import { CreateClassificationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/CreateCustomDataIdentifierCommand.ts b/clients/client-macie2/src/commands/CreateCustomDataIdentifierCommand.ts index a833596c53c5e..e731e2c017d50 100644 --- a/clients/client-macie2/src/commands/CreateCustomDataIdentifierCommand.ts +++ b/clients/client-macie2/src/commands/CreateCustomDataIdentifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { CreateCustomDataIdentifierRequest, CreateCustomDataIdentifierResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { CreateCustomDataIdentifierRequest, CreateCustomDataIdentifierResponse } from "../models/models_0"; import { CreateCustomDataIdentifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/CreateFindingsFilterCommand.ts b/clients/client-macie2/src/commands/CreateFindingsFilterCommand.ts index b7a20c5702b22..15a9a69a88221 100644 --- a/clients/client-macie2/src/commands/CreateFindingsFilterCommand.ts +++ b/clients/client-macie2/src/commands/CreateFindingsFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { CreateFindingsFilterRequest, CreateFindingsFilterResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { CreateFindingsFilterRequest, CreateFindingsFilterResponse } from "../models/models_0"; import { CreateFindingsFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/CreateInvitationsCommand.ts b/clients/client-macie2/src/commands/CreateInvitationsCommand.ts index dbcdabaaf48e0..d66461eac4b54 100644 --- a/clients/client-macie2/src/commands/CreateInvitationsCommand.ts +++ b/clients/client-macie2/src/commands/CreateInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { CreateInvitationsRequest, CreateInvitationsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { CreateInvitationsRequest, CreateInvitationsResponse } from "../models/models_0"; import { CreateInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/CreateMemberCommand.ts b/clients/client-macie2/src/commands/CreateMemberCommand.ts index b83ed2a2ec39b..1db634617e67f 100644 --- a/clients/client-macie2/src/commands/CreateMemberCommand.ts +++ b/clients/client-macie2/src/commands/CreateMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { CreateMemberRequest, CreateMemberResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { CreateMemberRequest, CreateMemberResponse } from "../models/models_0"; import { CreateMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/CreateSampleFindingsCommand.ts b/clients/client-macie2/src/commands/CreateSampleFindingsCommand.ts index 659dc15d4e6bb..ff9643bc34c55 100644 --- a/clients/client-macie2/src/commands/CreateSampleFindingsCommand.ts +++ b/clients/client-macie2/src/commands/CreateSampleFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { CreateSampleFindingsRequest, CreateSampleFindingsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { CreateSampleFindingsRequest, CreateSampleFindingsResponse } from "../models/models_0"; import { CreateSampleFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DeclineInvitationsCommand.ts b/clients/client-macie2/src/commands/DeclineInvitationsCommand.ts index 219ca8c309625..c2cc1ef385e2c 100644 --- a/clients/client-macie2/src/commands/DeclineInvitationsCommand.ts +++ b/clients/client-macie2/src/commands/DeclineInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DeclineInvitationsRequest, DeclineInvitationsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DeclineInvitationsRequest, DeclineInvitationsResponse } from "../models/models_0"; import { DeclineInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DeleteAllowListCommand.ts b/clients/client-macie2/src/commands/DeleteAllowListCommand.ts index bd27ada81c163..0f653be83bc57 100644 --- a/clients/client-macie2/src/commands/DeleteAllowListCommand.ts +++ b/clients/client-macie2/src/commands/DeleteAllowListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DeleteAllowListRequest, DeleteAllowListResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DeleteAllowListRequest, DeleteAllowListResponse } from "../models/models_0"; import { DeleteAllowList } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DeleteCustomDataIdentifierCommand.ts b/clients/client-macie2/src/commands/DeleteCustomDataIdentifierCommand.ts index 3d741e411b71d..8b54676111c0e 100644 --- a/clients/client-macie2/src/commands/DeleteCustomDataIdentifierCommand.ts +++ b/clients/client-macie2/src/commands/DeleteCustomDataIdentifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DeleteCustomDataIdentifierRequest, DeleteCustomDataIdentifierResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DeleteCustomDataIdentifierRequest, DeleteCustomDataIdentifierResponse } from "../models/models_0"; import { DeleteCustomDataIdentifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DeleteFindingsFilterCommand.ts b/clients/client-macie2/src/commands/DeleteFindingsFilterCommand.ts index f243c93c41428..6101b72423c8d 100644 --- a/clients/client-macie2/src/commands/DeleteFindingsFilterCommand.ts +++ b/clients/client-macie2/src/commands/DeleteFindingsFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DeleteFindingsFilterRequest, DeleteFindingsFilterResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DeleteFindingsFilterRequest, DeleteFindingsFilterResponse } from "../models/models_0"; import { DeleteFindingsFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DeleteInvitationsCommand.ts b/clients/client-macie2/src/commands/DeleteInvitationsCommand.ts index 078e1d0fd81ef..ef7d7aa52d75b 100644 --- a/clients/client-macie2/src/commands/DeleteInvitationsCommand.ts +++ b/clients/client-macie2/src/commands/DeleteInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DeleteInvitationsRequest, DeleteInvitationsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DeleteInvitationsRequest, DeleteInvitationsResponse } from "../models/models_0"; import { DeleteInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DeleteMemberCommand.ts b/clients/client-macie2/src/commands/DeleteMemberCommand.ts index ad883fb7ad71c..8dc362287e732 100644 --- a/clients/client-macie2/src/commands/DeleteMemberCommand.ts +++ b/clients/client-macie2/src/commands/DeleteMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DeleteMemberRequest, DeleteMemberResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DeleteMemberRequest, DeleteMemberResponse } from "../models/models_0"; import { DeleteMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DescribeBucketsCommand.ts b/clients/client-macie2/src/commands/DescribeBucketsCommand.ts index 8ed975686b32b..b35e94e6f674b 100644 --- a/clients/client-macie2/src/commands/DescribeBucketsCommand.ts +++ b/clients/client-macie2/src/commands/DescribeBucketsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DescribeBucketsRequest, DescribeBucketsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DescribeBucketsRequest, DescribeBucketsResponse } from "../models/models_0"; import { DescribeBuckets } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DescribeClassificationJobCommand.ts b/clients/client-macie2/src/commands/DescribeClassificationJobCommand.ts index e696e078ce070..5daea9acecdf0 100644 --- a/clients/client-macie2/src/commands/DescribeClassificationJobCommand.ts +++ b/clients/client-macie2/src/commands/DescribeClassificationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DescribeClassificationJobRequest, DescribeClassificationJobResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DescribeClassificationJobRequest, DescribeClassificationJobResponse } from "../models/models_0"; import { DescribeClassificationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-macie2/src/commands/DescribeOrganizationConfigurationCommand.ts index 8b9b3a93a1c3a..2941bd5899311 100644 --- a/clients/client-macie2/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DescribeOrganizationConfigurationRequest, DescribeOrganizationConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/DisableMacieCommand.ts b/clients/client-macie2/src/commands/DisableMacieCommand.ts index aff59150c362c..14fab2073e454 100644 --- a/clients/client-macie2/src/commands/DisableMacieCommand.ts +++ b/clients/client-macie2/src/commands/DisableMacieCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DisableMacieRequest, DisableMacieResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DisableMacieRequest, DisableMacieResponse } from "../models/models_0"; import { DisableMacie } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DisableOrganizationAdminAccountCommand.ts b/clients/client-macie2/src/commands/DisableOrganizationAdminAccountCommand.ts index c7dcc13941023..24b96402aa8e1 100644 --- a/clients/client-macie2/src/commands/DisableOrganizationAdminAccountCommand.ts +++ b/clients/client-macie2/src/commands/DisableOrganizationAdminAccountCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DisableOrganizationAdminAccountRequest, DisableOrganizationAdminAccountResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { + DisableOrganizationAdminAccountRequest, + DisableOrganizationAdminAccountResponse, +} from "../models/models_0"; import { DisableOrganizationAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DisassociateFromAdministratorAccountCommand.ts b/clients/client-macie2/src/commands/DisassociateFromAdministratorAccountCommand.ts index 920f5c5294ca2..790b454fe9a95 100644 --- a/clients/client-macie2/src/commands/DisassociateFromAdministratorAccountCommand.ts +++ b/clients/client-macie2/src/commands/DisassociateFromAdministratorAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DisassociateFromAdministratorAccountRequest, DisassociateFromAdministratorAccountResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/DisassociateFromMasterAccountCommand.ts b/clients/client-macie2/src/commands/DisassociateFromMasterAccountCommand.ts index 5cc7553956113..31f668152f079 100644 --- a/clients/client-macie2/src/commands/DisassociateFromMasterAccountCommand.ts +++ b/clients/client-macie2/src/commands/DisassociateFromMasterAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DisassociateFromMasterAccountRequest, DisassociateFromMasterAccountResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DisassociateFromMasterAccountRequest, DisassociateFromMasterAccountResponse } from "../models/models_0"; import { DisassociateFromMasterAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/DisassociateMemberCommand.ts b/clients/client-macie2/src/commands/DisassociateMemberCommand.ts index e5f5c5dfa4e67..27d370cb87a54 100644 --- a/clients/client-macie2/src/commands/DisassociateMemberCommand.ts +++ b/clients/client-macie2/src/commands/DisassociateMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { DisassociateMemberRequest, DisassociateMemberResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { DisassociateMemberRequest, DisassociateMemberResponse } from "../models/models_0"; import { DisassociateMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/EnableMacieCommand.ts b/clients/client-macie2/src/commands/EnableMacieCommand.ts index 08dbf4a4bc454..761d8840e8b6c 100644 --- a/clients/client-macie2/src/commands/EnableMacieCommand.ts +++ b/clients/client-macie2/src/commands/EnableMacieCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { EnableMacieRequest, EnableMacieResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { EnableMacieRequest, EnableMacieResponse } from "../models/models_0"; import { EnableMacie } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/EnableOrganizationAdminAccountCommand.ts b/clients/client-macie2/src/commands/EnableOrganizationAdminAccountCommand.ts index c0b61846c8795..e9b55a3edbbf8 100644 --- a/clients/client-macie2/src/commands/EnableOrganizationAdminAccountCommand.ts +++ b/clients/client-macie2/src/commands/EnableOrganizationAdminAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { EnableOrganizationAdminAccountRequest, EnableOrganizationAdminAccountResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { EnableOrganizationAdminAccountRequest, EnableOrganizationAdminAccountResponse } from "../models/models_0"; import { EnableOrganizationAdminAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetAdministratorAccountCommand.ts b/clients/client-macie2/src/commands/GetAdministratorAccountCommand.ts index d02d0155b7c3d..602952ec7785a 100644 --- a/clients/client-macie2/src/commands/GetAdministratorAccountCommand.ts +++ b/clients/client-macie2/src/commands/GetAdministratorAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetAdministratorAccountRequest, GetAdministratorAccountResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetAdministratorAccountRequest, GetAdministratorAccountResponse } from "../models/models_0"; import { GetAdministratorAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetAllowListCommand.ts b/clients/client-macie2/src/commands/GetAllowListCommand.ts index 0cf3f9cc5a885..a5e9dcf71bbbc 100644 --- a/clients/client-macie2/src/commands/GetAllowListCommand.ts +++ b/clients/client-macie2/src/commands/GetAllowListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetAllowListRequest, GetAllowListResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetAllowListRequest, GetAllowListResponse } from "../models/models_0"; import { GetAllowList } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetAutomatedDiscoveryConfigurationCommand.ts b/clients/client-macie2/src/commands/GetAutomatedDiscoveryConfigurationCommand.ts index 1c3e85b523bea..e0e3f4f93d0a6 100644 --- a/clients/client-macie2/src/commands/GetAutomatedDiscoveryConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/GetAutomatedDiscoveryConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetAutomatedDiscoveryConfigurationRequest, GetAutomatedDiscoveryConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/GetBucketStatisticsCommand.ts b/clients/client-macie2/src/commands/GetBucketStatisticsCommand.ts index ac294f0c56b90..3d9e11feb25b7 100644 --- a/clients/client-macie2/src/commands/GetBucketStatisticsCommand.ts +++ b/clients/client-macie2/src/commands/GetBucketStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetBucketStatisticsRequest, GetBucketStatisticsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetBucketStatisticsRequest, GetBucketStatisticsResponse } from "../models/models_0"; import { GetBucketStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetClassificationExportConfigurationCommand.ts b/clients/client-macie2/src/commands/GetClassificationExportConfigurationCommand.ts index 100ba6d4bd3f7..4af2b73c0b2d1 100644 --- a/clients/client-macie2/src/commands/GetClassificationExportConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/GetClassificationExportConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetClassificationExportConfigurationRequest, GetClassificationExportConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/GetClassificationScopeCommand.ts b/clients/client-macie2/src/commands/GetClassificationScopeCommand.ts index 25d48612bbf57..375c22cadd2a9 100644 --- a/clients/client-macie2/src/commands/GetClassificationScopeCommand.ts +++ b/clients/client-macie2/src/commands/GetClassificationScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetClassificationScopeRequest, GetClassificationScopeResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetClassificationScopeRequest, GetClassificationScopeResponse } from "../models/models_0"; import { GetClassificationScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetCustomDataIdentifierCommand.ts b/clients/client-macie2/src/commands/GetCustomDataIdentifierCommand.ts index e273920421aaa..42086753ccaa1 100644 --- a/clients/client-macie2/src/commands/GetCustomDataIdentifierCommand.ts +++ b/clients/client-macie2/src/commands/GetCustomDataIdentifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetCustomDataIdentifierRequest, GetCustomDataIdentifierResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetCustomDataIdentifierRequest, GetCustomDataIdentifierResponse } from "../models/models_0"; import { GetCustomDataIdentifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetFindingStatisticsCommand.ts b/clients/client-macie2/src/commands/GetFindingStatisticsCommand.ts index 81be019704e16..13b94a9926c13 100644 --- a/clients/client-macie2/src/commands/GetFindingStatisticsCommand.ts +++ b/clients/client-macie2/src/commands/GetFindingStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetFindingStatisticsRequest, GetFindingStatisticsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetFindingStatisticsRequest, GetFindingStatisticsResponse } from "../models/models_0"; import { GetFindingStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetFindingsCommand.ts b/clients/client-macie2/src/commands/GetFindingsCommand.ts index 9124aa96c9ab6..a98d9839b451a 100644 --- a/clients/client-macie2/src/commands/GetFindingsCommand.ts +++ b/clients/client-macie2/src/commands/GetFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetFindingsRequest, GetFindingsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetFindingsRequest, GetFindingsResponse } from "../models/models_0"; import { GetFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetFindingsFilterCommand.ts b/clients/client-macie2/src/commands/GetFindingsFilterCommand.ts index c0221a2ff3ac8..54e89474e6935 100644 --- a/clients/client-macie2/src/commands/GetFindingsFilterCommand.ts +++ b/clients/client-macie2/src/commands/GetFindingsFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetFindingsFilterRequest, GetFindingsFilterResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetFindingsFilterRequest, GetFindingsFilterResponse } from "../models/models_0"; import { GetFindingsFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetFindingsPublicationConfigurationCommand.ts b/clients/client-macie2/src/commands/GetFindingsPublicationConfigurationCommand.ts index 0a42d8c4e4bfe..721e8708996b3 100644 --- a/clients/client-macie2/src/commands/GetFindingsPublicationConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/GetFindingsPublicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetFindingsPublicationConfigurationRequest, GetFindingsPublicationConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/GetInvitationsCountCommand.ts b/clients/client-macie2/src/commands/GetInvitationsCountCommand.ts index 7e781bf4cf058..c03bd69ff006c 100644 --- a/clients/client-macie2/src/commands/GetInvitationsCountCommand.ts +++ b/clients/client-macie2/src/commands/GetInvitationsCountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetInvitationsCountRequest, GetInvitationsCountResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetInvitationsCountRequest, GetInvitationsCountResponse } from "../models/models_0"; import { GetInvitationsCount } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetMacieSessionCommand.ts b/clients/client-macie2/src/commands/GetMacieSessionCommand.ts index c8158ebc6fbb0..153710fe352ac 100644 --- a/clients/client-macie2/src/commands/GetMacieSessionCommand.ts +++ b/clients/client-macie2/src/commands/GetMacieSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetMacieSessionRequest, GetMacieSessionResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetMacieSessionRequest, GetMacieSessionResponse } from "../models/models_0"; import { GetMacieSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetMasterAccountCommand.ts b/clients/client-macie2/src/commands/GetMasterAccountCommand.ts index 62309e94d2b07..5cddc4e91e87b 100644 --- a/clients/client-macie2/src/commands/GetMasterAccountCommand.ts +++ b/clients/client-macie2/src/commands/GetMasterAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetMasterAccountRequest, GetMasterAccountResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetMasterAccountRequest, GetMasterAccountResponse } from "../models/models_0"; import { GetMasterAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetMemberCommand.ts b/clients/client-macie2/src/commands/GetMemberCommand.ts index 61a5b3956c52d..329952bba5e84 100644 --- a/clients/client-macie2/src/commands/GetMemberCommand.ts +++ b/clients/client-macie2/src/commands/GetMemberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetMemberRequest, GetMemberResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetMemberRequest, GetMemberResponse } from "../models/models_0"; import { GetMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetResourceProfileCommand.ts b/clients/client-macie2/src/commands/GetResourceProfileCommand.ts index b501204551e03..274a14c0dea80 100644 --- a/clients/client-macie2/src/commands/GetResourceProfileCommand.ts +++ b/clients/client-macie2/src/commands/GetResourceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetResourceProfileRequest, GetResourceProfileResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetResourceProfileRequest, GetResourceProfileResponse } from "../models/models_0"; import { GetResourceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetRevealConfigurationCommand.ts b/clients/client-macie2/src/commands/GetRevealConfigurationCommand.ts index 4c7bdb8998f49..b9a325ad22594 100644 --- a/clients/client-macie2/src/commands/GetRevealConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/GetRevealConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetRevealConfigurationRequest, GetRevealConfigurationResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetRevealConfigurationRequest, GetRevealConfigurationResponse } from "../models/models_0"; import { GetRevealConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesAvailabilityCommand.ts b/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesAvailabilityCommand.ts index aa579b1b2f0c1..b1ff2c8825015 100644 --- a/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesAvailabilityCommand.ts +++ b/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesAvailabilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetSensitiveDataOccurrencesAvailabilityRequest, GetSensitiveDataOccurrencesAvailabilityResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesCommand.ts b/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesCommand.ts index f8d488428bdc8..50c7b98d6e74a 100644 --- a/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesCommand.ts +++ b/clients/client-macie2/src/commands/GetSensitiveDataOccurrencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetSensitiveDataOccurrencesRequest, GetSensitiveDataOccurrencesResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetSensitiveDataOccurrencesRequest, GetSensitiveDataOccurrencesResponse } from "../models/models_0"; import { GetSensitiveDataOccurrences } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetSensitivityInspectionTemplateCommand.ts b/clients/client-macie2/src/commands/GetSensitivityInspectionTemplateCommand.ts index 3083d90b8fa71..fafaa716df143 100644 --- a/clients/client-macie2/src/commands/GetSensitivityInspectionTemplateCommand.ts +++ b/clients/client-macie2/src/commands/GetSensitivityInspectionTemplateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetSensitivityInspectionTemplateRequest, GetSensitivityInspectionTemplateResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { + GetSensitivityInspectionTemplateRequest, + GetSensitivityInspectionTemplateResponse, +} from "../models/models_0"; import { GetSensitivityInspectionTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetUsageStatisticsCommand.ts b/clients/client-macie2/src/commands/GetUsageStatisticsCommand.ts index e8a10c485d9e0..88c9580610b2b 100644 --- a/clients/client-macie2/src/commands/GetUsageStatisticsCommand.ts +++ b/clients/client-macie2/src/commands/GetUsageStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetUsageStatisticsRequest, GetUsageStatisticsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetUsageStatisticsRequest, GetUsageStatisticsResponse } from "../models/models_0"; import { GetUsageStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/GetUsageTotalsCommand.ts b/clients/client-macie2/src/commands/GetUsageTotalsCommand.ts index e8ce215bd56ed..4c94a97904a59 100644 --- a/clients/client-macie2/src/commands/GetUsageTotalsCommand.ts +++ b/clients/client-macie2/src/commands/GetUsageTotalsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { GetUsageTotalsRequest, GetUsageTotalsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { GetUsageTotalsRequest, GetUsageTotalsResponse } from "../models/models_0"; import { GetUsageTotals } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListAllowListsCommand.ts b/clients/client-macie2/src/commands/ListAllowListsCommand.ts index 07f18886a586e..3d5d318516e55 100644 --- a/clients/client-macie2/src/commands/ListAllowListsCommand.ts +++ b/clients/client-macie2/src/commands/ListAllowListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListAllowListsRequest, ListAllowListsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListAllowListsRequest, ListAllowListsResponse } from "../models/models_0"; import { ListAllowLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListAutomatedDiscoveryAccountsCommand.ts b/clients/client-macie2/src/commands/ListAutomatedDiscoveryAccountsCommand.ts index 952658847f8bf..c788c45cfcddd 100644 --- a/clients/client-macie2/src/commands/ListAutomatedDiscoveryAccountsCommand.ts +++ b/clients/client-macie2/src/commands/ListAutomatedDiscoveryAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListAutomatedDiscoveryAccountsRequest, ListAutomatedDiscoveryAccountsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListAutomatedDiscoveryAccountsRequest, ListAutomatedDiscoveryAccountsResponse } from "../models/models_0"; import { ListAutomatedDiscoveryAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListClassificationJobsCommand.ts b/clients/client-macie2/src/commands/ListClassificationJobsCommand.ts index 0a2ad390947cf..31d09ec6a0225 100644 --- a/clients/client-macie2/src/commands/ListClassificationJobsCommand.ts +++ b/clients/client-macie2/src/commands/ListClassificationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListClassificationJobsRequest, ListClassificationJobsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListClassificationJobsRequest, ListClassificationJobsResponse } from "../models/models_0"; import { ListClassificationJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListClassificationScopesCommand.ts b/clients/client-macie2/src/commands/ListClassificationScopesCommand.ts index b2b1bbef703d7..c8b6d5ba3892e 100644 --- a/clients/client-macie2/src/commands/ListClassificationScopesCommand.ts +++ b/clients/client-macie2/src/commands/ListClassificationScopesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListClassificationScopesRequest, ListClassificationScopesResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListClassificationScopesRequest, ListClassificationScopesResponse } from "../models/models_0"; import { ListClassificationScopes } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListCustomDataIdentifiersCommand.ts b/clients/client-macie2/src/commands/ListCustomDataIdentifiersCommand.ts index 99c2eec7cf02f..256bfb65e3418 100644 --- a/clients/client-macie2/src/commands/ListCustomDataIdentifiersCommand.ts +++ b/clients/client-macie2/src/commands/ListCustomDataIdentifiersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListCustomDataIdentifiersRequest, ListCustomDataIdentifiersResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListCustomDataIdentifiersRequest, ListCustomDataIdentifiersResponse } from "../models/models_0"; import { ListCustomDataIdentifiers } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListFindingsCommand.ts b/clients/client-macie2/src/commands/ListFindingsCommand.ts index d9c784f828f51..53615b9203ad6 100644 --- a/clients/client-macie2/src/commands/ListFindingsCommand.ts +++ b/clients/client-macie2/src/commands/ListFindingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListFindingsRequest, ListFindingsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListFindingsRequest, ListFindingsResponse } from "../models/models_0"; import { ListFindings } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListFindingsFiltersCommand.ts b/clients/client-macie2/src/commands/ListFindingsFiltersCommand.ts index 83d534e141594..ceca3abab0b14 100644 --- a/clients/client-macie2/src/commands/ListFindingsFiltersCommand.ts +++ b/clients/client-macie2/src/commands/ListFindingsFiltersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListFindingsFiltersRequest, ListFindingsFiltersResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListFindingsFiltersRequest, ListFindingsFiltersResponse } from "../models/models_0"; import { ListFindingsFilters } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListInvitationsCommand.ts b/clients/client-macie2/src/commands/ListInvitationsCommand.ts index 12975842b5250..f9102eded68e4 100644 --- a/clients/client-macie2/src/commands/ListInvitationsCommand.ts +++ b/clients/client-macie2/src/commands/ListInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_0"; import { ListInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListManagedDataIdentifiersCommand.ts b/clients/client-macie2/src/commands/ListManagedDataIdentifiersCommand.ts index 62aae2c7c0c9f..7099b303c14b2 100644 --- a/clients/client-macie2/src/commands/ListManagedDataIdentifiersCommand.ts +++ b/clients/client-macie2/src/commands/ListManagedDataIdentifiersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListManagedDataIdentifiersRequest, ListManagedDataIdentifiersResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListManagedDataIdentifiersRequest, ListManagedDataIdentifiersResponse } from "../models/models_0"; import { ListManagedDataIdentifiers } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListMembersCommand.ts b/clients/client-macie2/src/commands/ListMembersCommand.ts index 00408c341190d..3b8c141e7711e 100644 --- a/clients/client-macie2/src/commands/ListMembersCommand.ts +++ b/clients/client-macie2/src/commands/ListMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListMembersRequest, ListMembersResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListMembersRequest, ListMembersResponse } from "../models/models_0"; import { ListMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListOrganizationAdminAccountsCommand.ts b/clients/client-macie2/src/commands/ListOrganizationAdminAccountsCommand.ts index 42956992b59ea..0a9625c4a8a1c 100644 --- a/clients/client-macie2/src/commands/ListOrganizationAdminAccountsCommand.ts +++ b/clients/client-macie2/src/commands/ListOrganizationAdminAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_0"; import { ListOrganizationAdminAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListResourceProfileArtifactsCommand.ts b/clients/client-macie2/src/commands/ListResourceProfileArtifactsCommand.ts index aff8df4fe13b3..d807835a726d6 100644 --- a/clients/client-macie2/src/commands/ListResourceProfileArtifactsCommand.ts +++ b/clients/client-macie2/src/commands/ListResourceProfileArtifactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListResourceProfileArtifactsRequest, ListResourceProfileArtifactsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListResourceProfileArtifactsRequest, ListResourceProfileArtifactsResponse } from "../models/models_0"; import { ListResourceProfileArtifacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListResourceProfileDetectionsCommand.ts b/clients/client-macie2/src/commands/ListResourceProfileDetectionsCommand.ts index 5eeea99e47e5b..508200b3dd2e0 100644 --- a/clients/client-macie2/src/commands/ListResourceProfileDetectionsCommand.ts +++ b/clients/client-macie2/src/commands/ListResourceProfileDetectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListResourceProfileDetectionsRequest, ListResourceProfileDetectionsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListResourceProfileDetectionsRequest, ListResourceProfileDetectionsResponse } from "../models/models_0"; import { ListResourceProfileDetections } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/ListSensitivityInspectionTemplatesCommand.ts b/clients/client-macie2/src/commands/ListSensitivityInspectionTemplatesCommand.ts index 3954061b91935..ab98011060bef 100644 --- a/clients/client-macie2/src/commands/ListSensitivityInspectionTemplatesCommand.ts +++ b/clients/client-macie2/src/commands/ListSensitivityInspectionTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListSensitivityInspectionTemplatesRequest, ListSensitivityInspectionTemplatesResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/ListTagsForResourceCommand.ts b/clients/client-macie2/src/commands/ListTagsForResourceCommand.ts index 0fd5142bfe8c6..b5f104c687ed3 100644 --- a/clients/client-macie2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-macie2/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/PutClassificationExportConfigurationCommand.ts b/clients/client-macie2/src/commands/PutClassificationExportConfigurationCommand.ts index ddceff2932e78..14047dd8525c4 100644 --- a/clients/client-macie2/src/commands/PutClassificationExportConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/PutClassificationExportConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { PutClassificationExportConfigurationRequest, PutClassificationExportConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/PutFindingsPublicationConfigurationCommand.ts b/clients/client-macie2/src/commands/PutFindingsPublicationConfigurationCommand.ts index 5ca6d9dfe5f8d..4d0529a9e0493 100644 --- a/clients/client-macie2/src/commands/PutFindingsPublicationConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/PutFindingsPublicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { PutFindingsPublicationConfigurationRequest, PutFindingsPublicationConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/SearchResourcesCommand.ts b/clients/client-macie2/src/commands/SearchResourcesCommand.ts index 7c3a0f6321b93..56ff663f5b113 100644 --- a/clients/client-macie2/src/commands/SearchResourcesCommand.ts +++ b/clients/client-macie2/src/commands/SearchResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { SearchResourcesRequest, SearchResourcesResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { SearchResourcesRequest, SearchResourcesResponse } from "../models/models_0"; import { SearchResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/TagResourceCommand.ts b/clients/client-macie2/src/commands/TagResourceCommand.ts index d1f7aa0d01d45..1df096f6eaff2 100644 --- a/clients/client-macie2/src/commands/TagResourceCommand.ts +++ b/clients/client-macie2/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/TestCustomDataIdentifierCommand.ts b/clients/client-macie2/src/commands/TestCustomDataIdentifierCommand.ts index 28f173477f2da..177f57192627f 100644 --- a/clients/client-macie2/src/commands/TestCustomDataIdentifierCommand.ts +++ b/clients/client-macie2/src/commands/TestCustomDataIdentifierCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { TestCustomDataIdentifierRequest, TestCustomDataIdentifierResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { TestCustomDataIdentifierRequest, TestCustomDataIdentifierResponse } from "../models/models_0"; import { TestCustomDataIdentifier } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UntagResourceCommand.ts b/clients/client-macie2/src/commands/UntagResourceCommand.ts index 67b67ad954de6..03611d7af0eac 100644 --- a/clients/client-macie2/src/commands/UntagResourceCommand.ts +++ b/clients/client-macie2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateAllowListCommand.ts b/clients/client-macie2/src/commands/UpdateAllowListCommand.ts index c8ef787a057f0..01172124387b8 100644 --- a/clients/client-macie2/src/commands/UpdateAllowListCommand.ts +++ b/clients/client-macie2/src/commands/UpdateAllowListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateAllowListRequest, UpdateAllowListResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateAllowListRequest, UpdateAllowListResponse } from "../models/models_0"; import { UpdateAllowList } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateAutomatedDiscoveryConfigurationCommand.ts b/clients/client-macie2/src/commands/UpdateAutomatedDiscoveryConfigurationCommand.ts index a990d921f2fe2..8f72476db45e9 100644 --- a/clients/client-macie2/src/commands/UpdateAutomatedDiscoveryConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/UpdateAutomatedDiscoveryConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateAutomatedDiscoveryConfigurationRequest, UpdateAutomatedDiscoveryConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-macie2/src/commands/UpdateClassificationJobCommand.ts b/clients/client-macie2/src/commands/UpdateClassificationJobCommand.ts index bda1d60671732..1e3c14a3a402f 100644 --- a/clients/client-macie2/src/commands/UpdateClassificationJobCommand.ts +++ b/clients/client-macie2/src/commands/UpdateClassificationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateClassificationJobRequest, UpdateClassificationJobResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateClassificationJobRequest, UpdateClassificationJobResponse } from "../models/models_0"; import { UpdateClassificationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateClassificationScopeCommand.ts b/clients/client-macie2/src/commands/UpdateClassificationScopeCommand.ts index dac5e298f3180..148f509be5a28 100644 --- a/clients/client-macie2/src/commands/UpdateClassificationScopeCommand.ts +++ b/clients/client-macie2/src/commands/UpdateClassificationScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateClassificationScopeRequest, UpdateClassificationScopeResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateClassificationScopeRequest, UpdateClassificationScopeResponse } from "../models/models_0"; import { UpdateClassificationScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateFindingsFilterCommand.ts b/clients/client-macie2/src/commands/UpdateFindingsFilterCommand.ts index bc0d1d4f9710b..a5c81ae86d3bd 100644 --- a/clients/client-macie2/src/commands/UpdateFindingsFilterCommand.ts +++ b/clients/client-macie2/src/commands/UpdateFindingsFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateFindingsFilterRequest, UpdateFindingsFilterResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateFindingsFilterRequest, UpdateFindingsFilterResponse } from "../models/models_0"; import { UpdateFindingsFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateMacieSessionCommand.ts b/clients/client-macie2/src/commands/UpdateMacieSessionCommand.ts index 0053e4b18f3a3..88ee9134a4632 100644 --- a/clients/client-macie2/src/commands/UpdateMacieSessionCommand.ts +++ b/clients/client-macie2/src/commands/UpdateMacieSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateMacieSessionRequest, UpdateMacieSessionResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateMacieSessionRequest, UpdateMacieSessionResponse } from "../models/models_0"; import { UpdateMacieSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateMemberSessionCommand.ts b/clients/client-macie2/src/commands/UpdateMemberSessionCommand.ts index 689e76deae26c..2548f4d41fa5c 100644 --- a/clients/client-macie2/src/commands/UpdateMemberSessionCommand.ts +++ b/clients/client-macie2/src/commands/UpdateMemberSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateMemberSessionRequest, UpdateMemberSessionResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateMemberSessionRequest, UpdateMemberSessionResponse } from "../models/models_0"; import { UpdateMemberSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-macie2/src/commands/UpdateOrganizationConfigurationCommand.ts index 09c665500aafa..4d9b40cfc7764 100644 --- a/clients/client-macie2/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateOrganizationConfigurationRequest, UpdateOrganizationConfigurationResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { + UpdateOrganizationConfigurationRequest, + UpdateOrganizationConfigurationResponse, +} from "../models/models_0"; import { UpdateOrganizationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateResourceProfileCommand.ts b/clients/client-macie2/src/commands/UpdateResourceProfileCommand.ts index fd8f1881b3d59..6248d95183b9a 100644 --- a/clients/client-macie2/src/commands/UpdateResourceProfileCommand.ts +++ b/clients/client-macie2/src/commands/UpdateResourceProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateResourceProfileRequest, UpdateResourceProfileResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateResourceProfileRequest, UpdateResourceProfileResponse } from "../models/models_0"; import { UpdateResourceProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateResourceProfileDetectionsCommand.ts b/clients/client-macie2/src/commands/UpdateResourceProfileDetectionsCommand.ts index 9245d7e3813b3..71a37227b9bbc 100644 --- a/clients/client-macie2/src/commands/UpdateResourceProfileDetectionsCommand.ts +++ b/clients/client-macie2/src/commands/UpdateResourceProfileDetectionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateResourceProfileDetectionsRequest, UpdateResourceProfileDetectionsResponse } from "../models/models_0"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { + UpdateResourceProfileDetectionsRequest, + UpdateResourceProfileDetectionsResponse, +} from "../models/models_0"; import { UpdateResourceProfileDetections } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateRevealConfigurationCommand.ts b/clients/client-macie2/src/commands/UpdateRevealConfigurationCommand.ts index e7b44c80d6006..8d570cce04b80 100644 --- a/clients/client-macie2/src/commands/UpdateRevealConfigurationCommand.ts +++ b/clients/client-macie2/src/commands/UpdateRevealConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { UpdateRevealConfigurationRequest, UpdateRevealConfigurationResponse } from "../models/models_1"; +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateRevealConfigurationRequest, UpdateRevealConfigurationResponse } from "../models/models_1"; import { UpdateRevealConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-macie2/src/commands/UpdateSensitivityInspectionTemplateCommand.ts b/clients/client-macie2/src/commands/UpdateSensitivityInspectionTemplateCommand.ts index 7ec37152c46ea..efb9be0b1ec99 100644 --- a/clients/client-macie2/src/commands/UpdateSensitivityInspectionTemplateCommand.ts +++ b/clients/client-macie2/src/commands/UpdateSensitivityInspectionTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; -import { +import type { Macie2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Macie2Client"; +import type { UpdateSensitivityInspectionTemplateRequest, UpdateSensitivityInspectionTemplateResponse, } from "../models/models_1"; diff --git a/clients/client-macie2/src/endpoint/EndpointParameters.ts b/clients/client-macie2/src/endpoint/EndpointParameters.ts index 49bdc4a3f1960..40b5ec44dec82 100644 --- a/clients/client-macie2/src/endpoint/EndpointParameters.ts +++ b/clients/client-macie2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-macie2/src/endpoint/endpointResolver.ts b/clients/client-macie2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-macie2/src/endpoint/endpointResolver.ts +++ b/clients/client-macie2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-macie2/src/extensionConfiguration.ts b/clients/client-macie2/src/extensionConfiguration.ts index 4477ab24da84f..ab1773f2c2584 100644 --- a/clients/client-macie2/src/extensionConfiguration.ts +++ b/clients/client-macie2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-macie2/src/models/Macie2ServiceException.ts b/clients/client-macie2/src/models/Macie2ServiceException.ts index 2750d8b26861c..8679c761cc576 100644 --- a/clients/client-macie2/src/models/Macie2ServiceException.ts +++ b/clients/client-macie2/src/models/Macie2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-macie2/src/models/errors.ts b/clients/client-macie2/src/models/errors.ts index 2fd4b2f8f3e42..c6682db489602 100644 --- a/clients/client-macie2/src/models/errors.ts +++ b/clients/client-macie2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { Macie2ServiceException as __BaseException } from "./Macie2ServiceException"; diff --git a/clients/client-macie2/src/pagination/DescribeBucketsPaginator.ts b/clients/client-macie2/src/pagination/DescribeBucketsPaginator.ts index 1a4581f840093..719353170aebf 100644 --- a/clients/client-macie2/src/pagination/DescribeBucketsPaginator.ts +++ b/clients/client-macie2/src/pagination/DescribeBucketsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeBucketsCommand, diff --git a/clients/client-macie2/src/pagination/GetUsageStatisticsPaginator.ts b/clients/client-macie2/src/pagination/GetUsageStatisticsPaginator.ts index e4a59565c840e..e76864b0be00f 100644 --- a/clients/client-macie2/src/pagination/GetUsageStatisticsPaginator.ts +++ b/clients/client-macie2/src/pagination/GetUsageStatisticsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetUsageStatisticsCommand, diff --git a/clients/client-macie2/src/pagination/Interfaces.ts b/clients/client-macie2/src/pagination/Interfaces.ts index 07d58f064d6a0..f8b1826409ba5 100644 --- a/clients/client-macie2/src/pagination/Interfaces.ts +++ b/clients/client-macie2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Macie2Client } from "../Macie2Client"; diff --git a/clients/client-macie2/src/pagination/ListAllowListsPaginator.ts b/clients/client-macie2/src/pagination/ListAllowListsPaginator.ts index 53a53353db10b..581ac72749d1e 100644 --- a/clients/client-macie2/src/pagination/ListAllowListsPaginator.ts +++ b/clients/client-macie2/src/pagination/ListAllowListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAllowListsCommand, diff --git a/clients/client-macie2/src/pagination/ListAutomatedDiscoveryAccountsPaginator.ts b/clients/client-macie2/src/pagination/ListAutomatedDiscoveryAccountsPaginator.ts index 7994a6294daf3..67f15f5d19b86 100644 --- a/clients/client-macie2/src/pagination/ListAutomatedDiscoveryAccountsPaginator.ts +++ b/clients/client-macie2/src/pagination/ListAutomatedDiscoveryAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAutomatedDiscoveryAccountsCommand, diff --git a/clients/client-macie2/src/pagination/ListClassificationJobsPaginator.ts b/clients/client-macie2/src/pagination/ListClassificationJobsPaginator.ts index aed2431ae95a9..9a224c898bd46 100644 --- a/clients/client-macie2/src/pagination/ListClassificationJobsPaginator.ts +++ b/clients/client-macie2/src/pagination/ListClassificationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClassificationJobsCommand, diff --git a/clients/client-macie2/src/pagination/ListClassificationScopesPaginator.ts b/clients/client-macie2/src/pagination/ListClassificationScopesPaginator.ts index 5143d7883346d..a710858eec118 100644 --- a/clients/client-macie2/src/pagination/ListClassificationScopesPaginator.ts +++ b/clients/client-macie2/src/pagination/ListClassificationScopesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClassificationScopesCommand, diff --git a/clients/client-macie2/src/pagination/ListCustomDataIdentifiersPaginator.ts b/clients/client-macie2/src/pagination/ListCustomDataIdentifiersPaginator.ts index 0838debee96c4..adb11e9244817 100644 --- a/clients/client-macie2/src/pagination/ListCustomDataIdentifiersPaginator.ts +++ b/clients/client-macie2/src/pagination/ListCustomDataIdentifiersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomDataIdentifiersCommand, diff --git a/clients/client-macie2/src/pagination/ListFindingsFiltersPaginator.ts b/clients/client-macie2/src/pagination/ListFindingsFiltersPaginator.ts index 5512808736e0b..f782e6e323fe2 100644 --- a/clients/client-macie2/src/pagination/ListFindingsFiltersPaginator.ts +++ b/clients/client-macie2/src/pagination/ListFindingsFiltersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFindingsFiltersCommand, diff --git a/clients/client-macie2/src/pagination/ListFindingsPaginator.ts b/clients/client-macie2/src/pagination/ListFindingsPaginator.ts index f35981da7970b..7511340078284 100644 --- a/clients/client-macie2/src/pagination/ListFindingsPaginator.ts +++ b/clients/client-macie2/src/pagination/ListFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFindingsCommand, diff --git a/clients/client-macie2/src/pagination/ListInvitationsPaginator.ts b/clients/client-macie2/src/pagination/ListInvitationsPaginator.ts index 8011fc7a34662..1e0f3d3693b65 100644 --- a/clients/client-macie2/src/pagination/ListInvitationsPaginator.ts +++ b/clients/client-macie2/src/pagination/ListInvitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInvitationsCommand, diff --git a/clients/client-macie2/src/pagination/ListManagedDataIdentifiersPaginator.ts b/clients/client-macie2/src/pagination/ListManagedDataIdentifiersPaginator.ts index 2d922f276f9eb..0e1985f9f1c11 100644 --- a/clients/client-macie2/src/pagination/ListManagedDataIdentifiersPaginator.ts +++ b/clients/client-macie2/src/pagination/ListManagedDataIdentifiersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedDataIdentifiersCommand, diff --git a/clients/client-macie2/src/pagination/ListMembersPaginator.ts b/clients/client-macie2/src/pagination/ListMembersPaginator.ts index ce0cb37409741..cbeafd7edfe94 100644 --- a/clients/client-macie2/src/pagination/ListMembersPaginator.ts +++ b/clients/client-macie2/src/pagination/ListMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMembersCommand, ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand"; import { Macie2Client } from "../Macie2Client"; diff --git a/clients/client-macie2/src/pagination/ListOrganizationAdminAccountsPaginator.ts b/clients/client-macie2/src/pagination/ListOrganizationAdminAccountsPaginator.ts index 0f8c3ad54bd02..499419645c060 100644 --- a/clients/client-macie2/src/pagination/ListOrganizationAdminAccountsPaginator.ts +++ b/clients/client-macie2/src/pagination/ListOrganizationAdminAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationAdminAccountsCommand, diff --git a/clients/client-macie2/src/pagination/ListResourceProfileArtifactsPaginator.ts b/clients/client-macie2/src/pagination/ListResourceProfileArtifactsPaginator.ts index 86d78a5648fa7..39c9751d7d4f5 100644 --- a/clients/client-macie2/src/pagination/ListResourceProfileArtifactsPaginator.ts +++ b/clients/client-macie2/src/pagination/ListResourceProfileArtifactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceProfileArtifactsCommand, diff --git a/clients/client-macie2/src/pagination/ListResourceProfileDetectionsPaginator.ts b/clients/client-macie2/src/pagination/ListResourceProfileDetectionsPaginator.ts index 22207963112d4..039869b7752be 100644 --- a/clients/client-macie2/src/pagination/ListResourceProfileDetectionsPaginator.ts +++ b/clients/client-macie2/src/pagination/ListResourceProfileDetectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceProfileDetectionsCommand, diff --git a/clients/client-macie2/src/pagination/ListSensitivityInspectionTemplatesPaginator.ts b/clients/client-macie2/src/pagination/ListSensitivityInspectionTemplatesPaginator.ts index 835364905c283..512023132258d 100644 --- a/clients/client-macie2/src/pagination/ListSensitivityInspectionTemplatesPaginator.ts +++ b/clients/client-macie2/src/pagination/ListSensitivityInspectionTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSensitivityInspectionTemplatesCommand, diff --git a/clients/client-macie2/src/pagination/SearchResourcesPaginator.ts b/clients/client-macie2/src/pagination/SearchResourcesPaginator.ts index 0f6d951650541..8286044ca8bf2 100644 --- a/clients/client-macie2/src/pagination/SearchResourcesPaginator.ts +++ b/clients/client-macie2/src/pagination/SearchResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchResourcesCommand, diff --git a/clients/client-macie2/src/runtimeConfig.browser.ts b/clients/client-macie2/src/runtimeConfig.browser.ts index 50727028f1954..5a7dc50ce5e45 100644 --- a/clients/client-macie2/src/runtimeConfig.browser.ts +++ b/clients/client-macie2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Macie2ClientConfig } from "./Macie2Client"; + +import type { Macie2ClientConfig } from "./Macie2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-macie2/src/runtimeConfig.native.ts b/clients/client-macie2/src/runtimeConfig.native.ts index 3f9c7618d4376..5ecd53bb27f47 100644 --- a/clients/client-macie2/src/runtimeConfig.native.ts +++ b/clients/client-macie2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Macie2ClientConfig } from "./Macie2Client"; +import type { Macie2ClientConfig } from "./Macie2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-macie2/src/runtimeConfig.shared.ts b/clients/client-macie2/src/runtimeConfig.shared.ts index a3f9be212c436..245ef0d1b1e11 100644 --- a/clients/client-macie2/src/runtimeConfig.shared.ts +++ b/clients/client-macie2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMacie2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Macie2ClientConfig } from "./Macie2Client"; +import type { Macie2ClientConfig } from "./Macie2Client"; /** * @internal diff --git a/clients/client-macie2/src/runtimeConfig.ts b/clients/client-macie2/src/runtimeConfig.ts index c6838b2785108..c3cdd100f6958 100644 --- a/clients/client-macie2/src/runtimeConfig.ts +++ b/clients/client-macie2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Macie2ClientConfig } from "./Macie2Client"; + +import type { Macie2ClientConfig } from "./Macie2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-macie2/src/runtimeExtensions.ts b/clients/client-macie2/src/runtimeExtensions.ts index af8f3ea567fdd..d35802fa1b1fb 100644 --- a/clients/client-macie2/src/runtimeExtensions.ts +++ b/clients/client-macie2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Macie2ExtensionConfiguration } from "./extensionConfiguration"; +import type { Macie2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-macie2/src/schemas/schemas_0.ts b/clients/client-macie2/src/schemas/schemas_0.ts index 3fc8c3e1bf0d9..8a1cbb4891156 100644 --- a/clients/client-macie2/src/schemas/schemas_0.ts +++ b/clients/client-macie2/src/schemas/schemas_0.ts @@ -797,7 +797,7 @@ const n0 = "com.amazonaws.macie2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-mailmanager/package.json b/clients/client-mailmanager/package.json index 00d30642e411a..a9bb306ff9175 100644 --- a/clients/client-mailmanager/package.json +++ b/clients/client-mailmanager/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mailmanager/src/MailManager.ts b/clients/client-mailmanager/src/MailManager.ts index f1395cf324283..05556cf1812ed 100644 --- a/clients/client-mailmanager/src/MailManager.ts +++ b/clients/client-mailmanager/src/MailManager.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAddonInstanceCommand, @@ -270,7 +270,7 @@ import { UpdateTrafficPolicyCommandInput, UpdateTrafficPolicyCommandOutput, } from "./commands/UpdateTrafficPolicyCommand"; -import { MailManagerClient, MailManagerClientConfig } from "./MailManagerClient"; +import { MailManagerClient } from "./MailManagerClient"; const commands = { CreateAddonInstanceCommand, diff --git a/clients/client-mailmanager/src/MailManagerClient.ts b/clients/client-mailmanager/src/MailManagerClient.ts index 8c6f980e4b2e5..a44ec7dd7cff2 100644 --- a/clients/client-mailmanager/src/MailManagerClient.ts +++ b/clients/client-mailmanager/src/MailManagerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMailManagerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -193,7 +202,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mailmanager/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mailmanager/src/auth/httpAuthExtensionConfiguration.ts index c19b0f673f134..a3acc1ab0555f 100644 --- a/clients/client-mailmanager/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mailmanager/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MailManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MailManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mailmanager/src/auth/httpAuthSchemeProvider.ts b/clients/client-mailmanager/src/auth/httpAuthSchemeProvider.ts index 1f5d2af3e496e..7da7cf318c810 100644 --- a/clients/client-mailmanager/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mailmanager/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MailManagerClientConfig, MailManagerClientResolvedConfig } from "../MailManagerClient"; +import { type MailManagerClientResolvedConfig, MailManagerClientConfig } from "../MailManagerClient"; /** * @internal diff --git a/clients/client-mailmanager/src/commands/CreateAddonInstanceCommand.ts b/clients/client-mailmanager/src/commands/CreateAddonInstanceCommand.ts index 70716fd383466..2399a2f38a886 100644 --- a/clients/client-mailmanager/src/commands/CreateAddonInstanceCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateAddonInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { CreateAddonInstanceRequest, CreateAddonInstanceResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { CreateAddonInstanceRequest, CreateAddonInstanceResponse } from "../models/models_0"; import { CreateAddonInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/CreateAddonSubscriptionCommand.ts b/clients/client-mailmanager/src/commands/CreateAddonSubscriptionCommand.ts index 0584d628f1271..263aa6cf402ec 100644 --- a/clients/client-mailmanager/src/commands/CreateAddonSubscriptionCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateAddonSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { CreateAddonSubscriptionRequest, CreateAddonSubscriptionResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { CreateAddonSubscriptionRequest, CreateAddonSubscriptionResponse } from "../models/models_0"; import { CreateAddonSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/CreateAddressListCommand.ts b/clients/client-mailmanager/src/commands/CreateAddressListCommand.ts index 4d188d02acad9..ba1b662ccdd54 100644 --- a/clients/client-mailmanager/src/commands/CreateAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateAddressListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { CreateAddressListRequest, CreateAddressListResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { CreateAddressListRequest, CreateAddressListResponse } from "../models/models_0"; import { CreateAddressList } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/CreateAddressListImportJobCommand.ts b/clients/client-mailmanager/src/commands/CreateAddressListImportJobCommand.ts index b2ed3ed4a43f7..141e192f8a44c 100644 --- a/clients/client-mailmanager/src/commands/CreateAddressListImportJobCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateAddressListImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { CreateAddressListImportJobRequest, CreateAddressListImportJobResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { CreateAddressListImportJobRequest, CreateAddressListImportJobResponse } from "../models/models_0"; import { CreateAddressListImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/CreateArchiveCommand.ts b/clients/client-mailmanager/src/commands/CreateArchiveCommand.ts index e3db4d341df9f..e9effde23e8a2 100644 --- a/clients/client-mailmanager/src/commands/CreateArchiveCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { CreateArchiveRequest, CreateArchiveResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { CreateArchiveRequest, CreateArchiveResponse } from "../models/models_0"; import { CreateArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/CreateIngressPointCommand.ts b/clients/client-mailmanager/src/commands/CreateIngressPointCommand.ts index 6adcb38dee5e5..9bc2fee1e605b 100644 --- a/clients/client-mailmanager/src/commands/CreateIngressPointCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateIngressPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { CreateIngressPointRequest, CreateIngressPointResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { CreateIngressPointRequest, CreateIngressPointResponse } from "../models/models_0"; import { CreateIngressPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/CreateRelayCommand.ts b/clients/client-mailmanager/src/commands/CreateRelayCommand.ts index 61a5768817dc2..a3ca66d992401 100644 --- a/clients/client-mailmanager/src/commands/CreateRelayCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateRelayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { CreateRelayRequest, CreateRelayResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { CreateRelayRequest, CreateRelayResponse } from "../models/models_0"; import { CreateRelay } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/CreateRuleSetCommand.ts b/clients/client-mailmanager/src/commands/CreateRuleSetCommand.ts index 6b3e8139e305e..85b46a4011ec3 100644 --- a/clients/client-mailmanager/src/commands/CreateRuleSetCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateRuleSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { CreateRuleSetRequest, CreateRuleSetResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { CreateRuleSetRequest, CreateRuleSetResponse } from "../models/models_0"; import { CreateRuleSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/CreateTrafficPolicyCommand.ts b/clients/client-mailmanager/src/commands/CreateTrafficPolicyCommand.ts index 1dd23003fa3d7..78aa182946371 100644 --- a/clients/client-mailmanager/src/commands/CreateTrafficPolicyCommand.ts +++ b/clients/client-mailmanager/src/commands/CreateTrafficPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { CreateTrafficPolicyRequest, CreateTrafficPolicyResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { CreateTrafficPolicyRequest, CreateTrafficPolicyResponse } from "../models/models_0"; import { CreateTrafficPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/DeleteAddonInstanceCommand.ts b/clients/client-mailmanager/src/commands/DeleteAddonInstanceCommand.ts index 83259b38a940d..db462a18496f9 100644 --- a/clients/client-mailmanager/src/commands/DeleteAddonInstanceCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteAddonInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { DeleteAddonInstanceRequest, DeleteAddonInstanceResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { DeleteAddonInstanceRequest, DeleteAddonInstanceResponse } from "../models/models_0"; import { DeleteAddonInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/DeleteAddonSubscriptionCommand.ts b/clients/client-mailmanager/src/commands/DeleteAddonSubscriptionCommand.ts index b0cf3ec0834c1..faa98fcb0ecbf 100644 --- a/clients/client-mailmanager/src/commands/DeleteAddonSubscriptionCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteAddonSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { DeleteAddonSubscriptionRequest, DeleteAddonSubscriptionResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { DeleteAddonSubscriptionRequest, DeleteAddonSubscriptionResponse } from "../models/models_0"; import { DeleteAddonSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/DeleteAddressListCommand.ts b/clients/client-mailmanager/src/commands/DeleteAddressListCommand.ts index c2e2ada7653cc..8f1c7ba417858 100644 --- a/clients/client-mailmanager/src/commands/DeleteAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteAddressListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { DeleteAddressListRequest, DeleteAddressListResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { DeleteAddressListRequest, DeleteAddressListResponse } from "../models/models_0"; import { DeleteAddressList } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/DeleteArchiveCommand.ts b/clients/client-mailmanager/src/commands/DeleteArchiveCommand.ts index cb6cf9cf60d63..ac9e5c9323794 100644 --- a/clients/client-mailmanager/src/commands/DeleteArchiveCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { DeleteArchiveRequest, DeleteArchiveResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { DeleteArchiveRequest, DeleteArchiveResponse } from "../models/models_0"; import { DeleteArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/DeleteIngressPointCommand.ts b/clients/client-mailmanager/src/commands/DeleteIngressPointCommand.ts index 14d5390a15464..858d6bee55f68 100644 --- a/clients/client-mailmanager/src/commands/DeleteIngressPointCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteIngressPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { DeleteIngressPointRequest, DeleteIngressPointResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { DeleteIngressPointRequest, DeleteIngressPointResponse } from "../models/models_0"; import { DeleteIngressPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/DeleteRelayCommand.ts b/clients/client-mailmanager/src/commands/DeleteRelayCommand.ts index 09993bbf94a90..1badf5e8d8e4d 100644 --- a/clients/client-mailmanager/src/commands/DeleteRelayCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteRelayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { DeleteRelayRequest, DeleteRelayResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { DeleteRelayRequest, DeleteRelayResponse } from "../models/models_0"; import { DeleteRelay } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/DeleteRuleSetCommand.ts b/clients/client-mailmanager/src/commands/DeleteRuleSetCommand.ts index 1786212e33da7..a0990ccfe9a0c 100644 --- a/clients/client-mailmanager/src/commands/DeleteRuleSetCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteRuleSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { DeleteRuleSetRequest, DeleteRuleSetResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { DeleteRuleSetRequest, DeleteRuleSetResponse } from "../models/models_0"; import { DeleteRuleSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/DeleteTrafficPolicyCommand.ts b/clients/client-mailmanager/src/commands/DeleteTrafficPolicyCommand.ts index c0d8dbb01c0d0..d994039fce70a 100644 --- a/clients/client-mailmanager/src/commands/DeleteTrafficPolicyCommand.ts +++ b/clients/client-mailmanager/src/commands/DeleteTrafficPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { DeleteTrafficPolicyRequest, DeleteTrafficPolicyResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { DeleteTrafficPolicyRequest, DeleteTrafficPolicyResponse } from "../models/models_0"; import { DeleteTrafficPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/DeregisterMemberFromAddressListCommand.ts b/clients/client-mailmanager/src/commands/DeregisterMemberFromAddressListCommand.ts index 3f30a39230bdc..17ed52d79fb72 100644 --- a/clients/client-mailmanager/src/commands/DeregisterMemberFromAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/DeregisterMemberFromAddressListCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { DeregisterMemberFromAddressListRequest, DeregisterMemberFromAddressListResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { + DeregisterMemberFromAddressListRequest, + DeregisterMemberFromAddressListResponse, +} from "../models/models_0"; import { DeregisterMemberFromAddressList } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetAddonInstanceCommand.ts b/clients/client-mailmanager/src/commands/GetAddonInstanceCommand.ts index 94c95a02b8db7..caf671bd8b0eb 100644 --- a/clients/client-mailmanager/src/commands/GetAddonInstanceCommand.ts +++ b/clients/client-mailmanager/src/commands/GetAddonInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetAddonInstanceRequest, GetAddonInstanceResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetAddonInstanceRequest, GetAddonInstanceResponse } from "../models/models_0"; import { GetAddonInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetAddonSubscriptionCommand.ts b/clients/client-mailmanager/src/commands/GetAddonSubscriptionCommand.ts index ef878b4c7b09f..354ad2dae5442 100644 --- a/clients/client-mailmanager/src/commands/GetAddonSubscriptionCommand.ts +++ b/clients/client-mailmanager/src/commands/GetAddonSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetAddonSubscriptionRequest, GetAddonSubscriptionResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetAddonSubscriptionRequest, GetAddonSubscriptionResponse } from "../models/models_0"; import { GetAddonSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetAddressListCommand.ts b/clients/client-mailmanager/src/commands/GetAddressListCommand.ts index d489ffd4a70e0..dcc2f3dcf70ea 100644 --- a/clients/client-mailmanager/src/commands/GetAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/GetAddressListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetAddressListRequest, GetAddressListResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetAddressListRequest, GetAddressListResponse } from "../models/models_0"; import { GetAddressList } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetAddressListImportJobCommand.ts b/clients/client-mailmanager/src/commands/GetAddressListImportJobCommand.ts index 392c59f757831..e768c79a1baea 100644 --- a/clients/client-mailmanager/src/commands/GetAddressListImportJobCommand.ts +++ b/clients/client-mailmanager/src/commands/GetAddressListImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetAddressListImportJobRequest, GetAddressListImportJobResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetAddressListImportJobRequest, GetAddressListImportJobResponse } from "../models/models_0"; import { GetAddressListImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetArchiveCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveCommand.ts index 4e0bf406bd1c3..c85b0dbc0e001 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetArchiveRequest, GetArchiveResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetArchiveRequest, GetArchiveResponse } from "../models/models_0"; import { GetArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetArchiveExportCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveExportCommand.ts index 8cfea5806d704..4cebfd9a6cde8 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveExportCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetArchiveExportRequest, GetArchiveExportResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetArchiveExportRequest, GetArchiveExportResponse } from "../models/models_0"; import { GetArchiveExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetArchiveMessageCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveMessageCommand.ts index 36379360a04f6..b77f6679e4f84 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveMessageCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetArchiveMessageRequest, GetArchiveMessageResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetArchiveMessageRequest, GetArchiveMessageResponse } from "../models/models_0"; import { GetArchiveMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetArchiveMessageContentCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveMessageContentCommand.ts index 7e67ef9088b1d..bb259e0ae4532 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveMessageContentCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveMessageContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetArchiveMessageContentRequest, GetArchiveMessageContentResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetArchiveMessageContentRequest, GetArchiveMessageContentResponse } from "../models/models_0"; import { GetArchiveMessageContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetArchiveSearchCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveSearchCommand.ts index 4a14bafb2c531..56534f6329478 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveSearchCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveSearchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetArchiveSearchRequest, GetArchiveSearchResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetArchiveSearchRequest, GetArchiveSearchResponse } from "../models/models_0"; import { GetArchiveSearch } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetArchiveSearchResultsCommand.ts b/clients/client-mailmanager/src/commands/GetArchiveSearchResultsCommand.ts index d6d07f36ff3d6..061389f4f2cc5 100644 --- a/clients/client-mailmanager/src/commands/GetArchiveSearchResultsCommand.ts +++ b/clients/client-mailmanager/src/commands/GetArchiveSearchResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetArchiveSearchResultsRequest, GetArchiveSearchResultsResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetArchiveSearchResultsRequest, GetArchiveSearchResultsResponse } from "../models/models_0"; import { GetArchiveSearchResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetIngressPointCommand.ts b/clients/client-mailmanager/src/commands/GetIngressPointCommand.ts index 8984355f565bf..7f830d88db6c9 100644 --- a/clients/client-mailmanager/src/commands/GetIngressPointCommand.ts +++ b/clients/client-mailmanager/src/commands/GetIngressPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetIngressPointRequest, GetIngressPointResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetIngressPointRequest, GetIngressPointResponse } from "../models/models_0"; import { GetIngressPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetMemberOfAddressListCommand.ts b/clients/client-mailmanager/src/commands/GetMemberOfAddressListCommand.ts index d733ebaafe899..8dca25dea2f6c 100644 --- a/clients/client-mailmanager/src/commands/GetMemberOfAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/GetMemberOfAddressListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetMemberOfAddressListRequest, GetMemberOfAddressListResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetMemberOfAddressListRequest, GetMemberOfAddressListResponse } from "../models/models_0"; import { GetMemberOfAddressList } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetRelayCommand.ts b/clients/client-mailmanager/src/commands/GetRelayCommand.ts index 6d6ad44083932..a970aa5111f9a 100644 --- a/clients/client-mailmanager/src/commands/GetRelayCommand.ts +++ b/clients/client-mailmanager/src/commands/GetRelayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetRelayRequest, GetRelayResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetRelayRequest, GetRelayResponse } from "../models/models_0"; import { GetRelay } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetRuleSetCommand.ts b/clients/client-mailmanager/src/commands/GetRuleSetCommand.ts index a24013ae90a68..80d2fb67e21ad 100644 --- a/clients/client-mailmanager/src/commands/GetRuleSetCommand.ts +++ b/clients/client-mailmanager/src/commands/GetRuleSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetRuleSetRequest, GetRuleSetResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetRuleSetRequest, GetRuleSetResponse } from "../models/models_0"; import { GetRuleSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/GetTrafficPolicyCommand.ts b/clients/client-mailmanager/src/commands/GetTrafficPolicyCommand.ts index b37e56b4cea4c..02a8df0179a37 100644 --- a/clients/client-mailmanager/src/commands/GetTrafficPolicyCommand.ts +++ b/clients/client-mailmanager/src/commands/GetTrafficPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { GetTrafficPolicyRequest, GetTrafficPolicyResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { GetTrafficPolicyRequest, GetTrafficPolicyResponse } from "../models/models_0"; import { GetTrafficPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListAddonInstancesCommand.ts b/clients/client-mailmanager/src/commands/ListAddonInstancesCommand.ts index 913721a58906d..36d4786fe4cb9 100644 --- a/clients/client-mailmanager/src/commands/ListAddonInstancesCommand.ts +++ b/clients/client-mailmanager/src/commands/ListAddonInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListAddonInstancesRequest, ListAddonInstancesResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListAddonInstancesRequest, ListAddonInstancesResponse } from "../models/models_0"; import { ListAddonInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListAddonSubscriptionsCommand.ts b/clients/client-mailmanager/src/commands/ListAddonSubscriptionsCommand.ts index 34b651915889c..30c78442c59da 100644 --- a/clients/client-mailmanager/src/commands/ListAddonSubscriptionsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListAddonSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListAddonSubscriptionsRequest, ListAddonSubscriptionsResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListAddonSubscriptionsRequest, ListAddonSubscriptionsResponse } from "../models/models_0"; import { ListAddonSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListAddressListImportJobsCommand.ts b/clients/client-mailmanager/src/commands/ListAddressListImportJobsCommand.ts index 5b0233a85ded1..2f77d71cf0445 100644 --- a/clients/client-mailmanager/src/commands/ListAddressListImportJobsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListAddressListImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListAddressListImportJobsRequest, ListAddressListImportJobsResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListAddressListImportJobsRequest, ListAddressListImportJobsResponse } from "../models/models_0"; import { ListAddressListImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListAddressListsCommand.ts b/clients/client-mailmanager/src/commands/ListAddressListsCommand.ts index 1a2fefa28c021..6384db07d6851 100644 --- a/clients/client-mailmanager/src/commands/ListAddressListsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListAddressListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListAddressListsRequest, ListAddressListsResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListAddressListsRequest, ListAddressListsResponse } from "../models/models_0"; import { ListAddressLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListArchiveExportsCommand.ts b/clients/client-mailmanager/src/commands/ListArchiveExportsCommand.ts index f233719a7cafe..01aa7c3556eb9 100644 --- a/clients/client-mailmanager/src/commands/ListArchiveExportsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListArchiveExportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListArchiveExportsRequest, ListArchiveExportsResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListArchiveExportsRequest, ListArchiveExportsResponse } from "../models/models_0"; import { ListArchiveExports } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListArchiveSearchesCommand.ts b/clients/client-mailmanager/src/commands/ListArchiveSearchesCommand.ts index afa09a4209b94..69f7c1d343bb4 100644 --- a/clients/client-mailmanager/src/commands/ListArchiveSearchesCommand.ts +++ b/clients/client-mailmanager/src/commands/ListArchiveSearchesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListArchiveSearchesRequest, ListArchiveSearchesResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListArchiveSearchesRequest, ListArchiveSearchesResponse } from "../models/models_0"; import { ListArchiveSearches } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListArchivesCommand.ts b/clients/client-mailmanager/src/commands/ListArchivesCommand.ts index e0326131b1b49..1a44356424ece 100644 --- a/clients/client-mailmanager/src/commands/ListArchivesCommand.ts +++ b/clients/client-mailmanager/src/commands/ListArchivesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListArchivesRequest, ListArchivesResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListArchivesRequest, ListArchivesResponse } from "../models/models_0"; import { ListArchives } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListIngressPointsCommand.ts b/clients/client-mailmanager/src/commands/ListIngressPointsCommand.ts index 624853704f444..5505572b921f0 100644 --- a/clients/client-mailmanager/src/commands/ListIngressPointsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListIngressPointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListIngressPointsRequest, ListIngressPointsResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListIngressPointsRequest, ListIngressPointsResponse } from "../models/models_0"; import { ListIngressPoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListMembersOfAddressListCommand.ts b/clients/client-mailmanager/src/commands/ListMembersOfAddressListCommand.ts index 3ed048886453d..10acc92817eda 100644 --- a/clients/client-mailmanager/src/commands/ListMembersOfAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/ListMembersOfAddressListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListMembersOfAddressListRequest, ListMembersOfAddressListResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListMembersOfAddressListRequest, ListMembersOfAddressListResponse } from "../models/models_0"; import { ListMembersOfAddressList } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListRelaysCommand.ts b/clients/client-mailmanager/src/commands/ListRelaysCommand.ts index 39dd0a1e4cab8..a30e48bbbdfda 100644 --- a/clients/client-mailmanager/src/commands/ListRelaysCommand.ts +++ b/clients/client-mailmanager/src/commands/ListRelaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListRelaysRequest, ListRelaysResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListRelaysRequest, ListRelaysResponse } from "../models/models_0"; import { ListRelays } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListRuleSetsCommand.ts b/clients/client-mailmanager/src/commands/ListRuleSetsCommand.ts index 7566981a2b5eb..2394b684bffe5 100644 --- a/clients/client-mailmanager/src/commands/ListRuleSetsCommand.ts +++ b/clients/client-mailmanager/src/commands/ListRuleSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListRuleSetsRequest, ListRuleSetsResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListRuleSetsRequest, ListRuleSetsResponse } from "../models/models_0"; import { ListRuleSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListTagsForResourceCommand.ts b/clients/client-mailmanager/src/commands/ListTagsForResourceCommand.ts index 9258b67fcb82f..3a8c84f579875 100644 --- a/clients/client-mailmanager/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mailmanager/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/ListTrafficPoliciesCommand.ts b/clients/client-mailmanager/src/commands/ListTrafficPoliciesCommand.ts index 52a790ff040ea..fb72aa15f48df 100644 --- a/clients/client-mailmanager/src/commands/ListTrafficPoliciesCommand.ts +++ b/clients/client-mailmanager/src/commands/ListTrafficPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { ListTrafficPoliciesRequest, ListTrafficPoliciesResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { ListTrafficPoliciesRequest, ListTrafficPoliciesResponse } from "../models/models_0"; import { ListTrafficPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/RegisterMemberToAddressListCommand.ts b/clients/client-mailmanager/src/commands/RegisterMemberToAddressListCommand.ts index 018cc61a9cf90..96f369f637c1e 100644 --- a/clients/client-mailmanager/src/commands/RegisterMemberToAddressListCommand.ts +++ b/clients/client-mailmanager/src/commands/RegisterMemberToAddressListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { RegisterMemberToAddressListRequest, RegisterMemberToAddressListResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { RegisterMemberToAddressListRequest, RegisterMemberToAddressListResponse } from "../models/models_0"; import { RegisterMemberToAddressList } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/StartAddressListImportJobCommand.ts b/clients/client-mailmanager/src/commands/StartAddressListImportJobCommand.ts index 542610f7e8e73..8e10ff15e0e9b 100644 --- a/clients/client-mailmanager/src/commands/StartAddressListImportJobCommand.ts +++ b/clients/client-mailmanager/src/commands/StartAddressListImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { StartAddressListImportJobRequest, StartAddressListImportJobResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { StartAddressListImportJobRequest, StartAddressListImportJobResponse } from "../models/models_0"; import { StartAddressListImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/StartArchiveExportCommand.ts b/clients/client-mailmanager/src/commands/StartArchiveExportCommand.ts index d6cc3d326d337..e051a725814ea 100644 --- a/clients/client-mailmanager/src/commands/StartArchiveExportCommand.ts +++ b/clients/client-mailmanager/src/commands/StartArchiveExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { StartArchiveExportRequest, StartArchiveExportResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { StartArchiveExportRequest, StartArchiveExportResponse } from "../models/models_0"; import { StartArchiveExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/StartArchiveSearchCommand.ts b/clients/client-mailmanager/src/commands/StartArchiveSearchCommand.ts index d05310b16894d..7761fa42e5c12 100644 --- a/clients/client-mailmanager/src/commands/StartArchiveSearchCommand.ts +++ b/clients/client-mailmanager/src/commands/StartArchiveSearchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { StartArchiveSearchRequest, StartArchiveSearchResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { StartArchiveSearchRequest, StartArchiveSearchResponse } from "../models/models_0"; import { StartArchiveSearch } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/StopAddressListImportJobCommand.ts b/clients/client-mailmanager/src/commands/StopAddressListImportJobCommand.ts index 54bdb0e41a32c..50bc1201ea2b5 100644 --- a/clients/client-mailmanager/src/commands/StopAddressListImportJobCommand.ts +++ b/clients/client-mailmanager/src/commands/StopAddressListImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { StopAddressListImportJobRequest, StopAddressListImportJobResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { StopAddressListImportJobRequest, StopAddressListImportJobResponse } from "../models/models_0"; import { StopAddressListImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/StopArchiveExportCommand.ts b/clients/client-mailmanager/src/commands/StopArchiveExportCommand.ts index b756cbcf4293d..c528b94cad105 100644 --- a/clients/client-mailmanager/src/commands/StopArchiveExportCommand.ts +++ b/clients/client-mailmanager/src/commands/StopArchiveExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { StopArchiveExportRequest, StopArchiveExportResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { StopArchiveExportRequest, StopArchiveExportResponse } from "../models/models_0"; import { StopArchiveExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/StopArchiveSearchCommand.ts b/clients/client-mailmanager/src/commands/StopArchiveSearchCommand.ts index 442ce29294789..84ecc0f0af189 100644 --- a/clients/client-mailmanager/src/commands/StopArchiveSearchCommand.ts +++ b/clients/client-mailmanager/src/commands/StopArchiveSearchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { StopArchiveSearchRequest, StopArchiveSearchResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { StopArchiveSearchRequest, StopArchiveSearchResponse } from "../models/models_0"; import { StopArchiveSearch } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/TagResourceCommand.ts b/clients/client-mailmanager/src/commands/TagResourceCommand.ts index 8fffa75b4ae81..c6b41e3cb8083 100644 --- a/clients/client-mailmanager/src/commands/TagResourceCommand.ts +++ b/clients/client-mailmanager/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/UntagResourceCommand.ts b/clients/client-mailmanager/src/commands/UntagResourceCommand.ts index 6f8edb80460a1..d38d234789c94 100644 --- a/clients/client-mailmanager/src/commands/UntagResourceCommand.ts +++ b/clients/client-mailmanager/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/UpdateArchiveCommand.ts b/clients/client-mailmanager/src/commands/UpdateArchiveCommand.ts index 08ab8e01a1b94..36bb2e9c6e42a 100644 --- a/clients/client-mailmanager/src/commands/UpdateArchiveCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { UpdateArchiveRequest, UpdateArchiveResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { UpdateArchiveRequest, UpdateArchiveResponse } from "../models/models_0"; import { UpdateArchive } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/UpdateIngressPointCommand.ts b/clients/client-mailmanager/src/commands/UpdateIngressPointCommand.ts index 1bcf0ae43e7a0..76aa083de18df 100644 --- a/clients/client-mailmanager/src/commands/UpdateIngressPointCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateIngressPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { UpdateIngressPointRequest, UpdateIngressPointResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { UpdateIngressPointRequest, UpdateIngressPointResponse } from "../models/models_0"; import { UpdateIngressPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/UpdateRelayCommand.ts b/clients/client-mailmanager/src/commands/UpdateRelayCommand.ts index 06656193dc029..0ef78e7a72d60 100644 --- a/clients/client-mailmanager/src/commands/UpdateRelayCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateRelayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { UpdateRelayRequest, UpdateRelayResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { UpdateRelayRequest, UpdateRelayResponse } from "../models/models_0"; import { UpdateRelay } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/UpdateRuleSetCommand.ts b/clients/client-mailmanager/src/commands/UpdateRuleSetCommand.ts index 296a3b0bd7cb8..dd7d2f4173bca 100644 --- a/clients/client-mailmanager/src/commands/UpdateRuleSetCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateRuleSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { UpdateRuleSetRequest, UpdateRuleSetResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { UpdateRuleSetRequest, UpdateRuleSetResponse } from "../models/models_0"; import { UpdateRuleSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/commands/UpdateTrafficPolicyCommand.ts b/clients/client-mailmanager/src/commands/UpdateTrafficPolicyCommand.ts index 73acbca69841d..a831b02dc8073 100644 --- a/clients/client-mailmanager/src/commands/UpdateTrafficPolicyCommand.ts +++ b/clients/client-mailmanager/src/commands/UpdateTrafficPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; -import { UpdateTrafficPolicyRequest, UpdateTrafficPolicyResponse } from "../models/models_0"; +import type { MailManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MailManagerClient"; +import type { UpdateTrafficPolicyRequest, UpdateTrafficPolicyResponse } from "../models/models_0"; import { UpdateTrafficPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mailmanager/src/endpoint/EndpointParameters.ts b/clients/client-mailmanager/src/endpoint/EndpointParameters.ts index d56e54a561aad..d7ebbd3ef1299 100644 --- a/clients/client-mailmanager/src/endpoint/EndpointParameters.ts +++ b/clients/client-mailmanager/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mailmanager/src/endpoint/endpointResolver.ts b/clients/client-mailmanager/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mailmanager/src/endpoint/endpointResolver.ts +++ b/clients/client-mailmanager/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mailmanager/src/extensionConfiguration.ts b/clients/client-mailmanager/src/extensionConfiguration.ts index 0dbc8737d7293..06d00ac44a7a5 100644 --- a/clients/client-mailmanager/src/extensionConfiguration.ts +++ b/clients/client-mailmanager/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mailmanager/src/models/MailManagerServiceException.ts b/clients/client-mailmanager/src/models/MailManagerServiceException.ts index 14f741fa03054..6b84fe5fc35c1 100644 --- a/clients/client-mailmanager/src/models/MailManagerServiceException.ts +++ b/clients/client-mailmanager/src/models/MailManagerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mailmanager/src/models/errors.ts b/clients/client-mailmanager/src/models/errors.ts index 6158b41922d53..71fd5db2d40f7 100644 --- a/clients/client-mailmanager/src/models/errors.ts +++ b/clients/client-mailmanager/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MailManagerServiceException as __BaseException } from "./MailManagerServiceException"; diff --git a/clients/client-mailmanager/src/pagination/Interfaces.ts b/clients/client-mailmanager/src/pagination/Interfaces.ts index 4c55c9a88ea81..37d7c9537e73a 100644 --- a/clients/client-mailmanager/src/pagination/Interfaces.ts +++ b/clients/client-mailmanager/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MailManagerClient } from "../MailManagerClient"; diff --git a/clients/client-mailmanager/src/pagination/ListAddonInstancesPaginator.ts b/clients/client-mailmanager/src/pagination/ListAddonInstancesPaginator.ts index 8d5355b695183..2e957a8229fb0 100644 --- a/clients/client-mailmanager/src/pagination/ListAddonInstancesPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListAddonInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAddonInstancesCommand, diff --git a/clients/client-mailmanager/src/pagination/ListAddonSubscriptionsPaginator.ts b/clients/client-mailmanager/src/pagination/ListAddonSubscriptionsPaginator.ts index 0af41d3bf5740..f55736fcf7aaa 100644 --- a/clients/client-mailmanager/src/pagination/ListAddonSubscriptionsPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListAddonSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAddonSubscriptionsCommand, diff --git a/clients/client-mailmanager/src/pagination/ListAddressListImportJobsPaginator.ts b/clients/client-mailmanager/src/pagination/ListAddressListImportJobsPaginator.ts index ec532d87d47da..60cc148607faa 100644 --- a/clients/client-mailmanager/src/pagination/ListAddressListImportJobsPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListAddressListImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAddressListImportJobsCommand, diff --git a/clients/client-mailmanager/src/pagination/ListAddressListsPaginator.ts b/clients/client-mailmanager/src/pagination/ListAddressListsPaginator.ts index ea525f54bde23..788e2421eee44 100644 --- a/clients/client-mailmanager/src/pagination/ListAddressListsPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListAddressListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAddressListsCommand, diff --git a/clients/client-mailmanager/src/pagination/ListArchiveExportsPaginator.ts b/clients/client-mailmanager/src/pagination/ListArchiveExportsPaginator.ts index 6cbb14011479d..4868cf7b42856 100644 --- a/clients/client-mailmanager/src/pagination/ListArchiveExportsPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListArchiveExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListArchiveExportsCommand, diff --git a/clients/client-mailmanager/src/pagination/ListArchiveSearchesPaginator.ts b/clients/client-mailmanager/src/pagination/ListArchiveSearchesPaginator.ts index be246d5e87432..671f97b73584d 100644 --- a/clients/client-mailmanager/src/pagination/ListArchiveSearchesPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListArchiveSearchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListArchiveSearchesCommand, diff --git a/clients/client-mailmanager/src/pagination/ListArchivesPaginator.ts b/clients/client-mailmanager/src/pagination/ListArchivesPaginator.ts index 5f1e745713af2..0446335078f0f 100644 --- a/clients/client-mailmanager/src/pagination/ListArchivesPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListArchivesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListArchivesCommand, diff --git a/clients/client-mailmanager/src/pagination/ListIngressPointsPaginator.ts b/clients/client-mailmanager/src/pagination/ListIngressPointsPaginator.ts index 181c815db2309..4d17463f3b2fe 100644 --- a/clients/client-mailmanager/src/pagination/ListIngressPointsPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListIngressPointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIngressPointsCommand, diff --git a/clients/client-mailmanager/src/pagination/ListMembersOfAddressListPaginator.ts b/clients/client-mailmanager/src/pagination/ListMembersOfAddressListPaginator.ts index d424edbc08773..5ef9b795e5c54 100644 --- a/clients/client-mailmanager/src/pagination/ListMembersOfAddressListPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListMembersOfAddressListPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMembersOfAddressListCommand, diff --git a/clients/client-mailmanager/src/pagination/ListRelaysPaginator.ts b/clients/client-mailmanager/src/pagination/ListRelaysPaginator.ts index 4ab7050075ede..658a56bd8d35e 100644 --- a/clients/client-mailmanager/src/pagination/ListRelaysPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListRelaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRelaysCommand, ListRelaysCommandInput, ListRelaysCommandOutput } from "../commands/ListRelaysCommand"; import { MailManagerClient } from "../MailManagerClient"; diff --git a/clients/client-mailmanager/src/pagination/ListRuleSetsPaginator.ts b/clients/client-mailmanager/src/pagination/ListRuleSetsPaginator.ts index ba5e67ed6b447..d0bbc1b80a310 100644 --- a/clients/client-mailmanager/src/pagination/ListRuleSetsPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListRuleSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRuleSetsCommand, diff --git a/clients/client-mailmanager/src/pagination/ListTrafficPoliciesPaginator.ts b/clients/client-mailmanager/src/pagination/ListTrafficPoliciesPaginator.ts index c0900c0306072..55dcd96a7db54 100644 --- a/clients/client-mailmanager/src/pagination/ListTrafficPoliciesPaginator.ts +++ b/clients/client-mailmanager/src/pagination/ListTrafficPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrafficPoliciesCommand, diff --git a/clients/client-mailmanager/src/runtimeConfig.browser.ts b/clients/client-mailmanager/src/runtimeConfig.browser.ts index 7ea4c8e1c6b42..5fc335781b3ad 100644 --- a/clients/client-mailmanager/src/runtimeConfig.browser.ts +++ b/clients/client-mailmanager/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MailManagerClientConfig } from "./MailManagerClient"; + +import type { MailManagerClientConfig } from "./MailManagerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mailmanager/src/runtimeConfig.native.ts b/clients/client-mailmanager/src/runtimeConfig.native.ts index 7825e9fc97b43..5b267868a4e45 100644 --- a/clients/client-mailmanager/src/runtimeConfig.native.ts +++ b/clients/client-mailmanager/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MailManagerClientConfig } from "./MailManagerClient"; +import type { MailManagerClientConfig } from "./MailManagerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mailmanager/src/runtimeConfig.shared.ts b/clients/client-mailmanager/src/runtimeConfig.shared.ts index 6992a6ac44f24..33430a70d98df 100644 --- a/clients/client-mailmanager/src/runtimeConfig.shared.ts +++ b/clients/client-mailmanager/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMailManagerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MailManagerClientConfig } from "./MailManagerClient"; +import type { MailManagerClientConfig } from "./MailManagerClient"; /** * @internal diff --git a/clients/client-mailmanager/src/runtimeConfig.ts b/clients/client-mailmanager/src/runtimeConfig.ts index 4e71daf4961c4..bd29db58d87fa 100644 --- a/clients/client-mailmanager/src/runtimeConfig.ts +++ b/clients/client-mailmanager/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MailManagerClientConfig } from "./MailManagerClient"; + +import type { MailManagerClientConfig } from "./MailManagerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mailmanager/src/runtimeExtensions.ts b/clients/client-mailmanager/src/runtimeExtensions.ts index d42b4ed685f58..8ed5594f10a5c 100644 --- a/clients/client-mailmanager/src/runtimeExtensions.ts +++ b/clients/client-mailmanager/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MailManagerExtensionConfiguration } from "./extensionConfiguration"; +import type { MailManagerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mailmanager/src/schemas/schemas_0.ts b/clients/client-mailmanager/src/schemas/schemas_0.ts index 482dd0a1787cf..e415d451d472d 100644 --- a/clients/client-mailmanager/src/schemas/schemas_0.ts +++ b/clients/client-mailmanager/src/schemas/schemas_0.ts @@ -457,7 +457,7 @@ const n0 = "com.amazonaws.mailmanager"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-managedblockchain-query/package.json b/clients/client-managedblockchain-query/package.json index 4e70bebb9991e..3fc863621907c 100644 --- a/clients/client-managedblockchain-query/package.json +++ b/clients/client-managedblockchain-query/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-managedblockchain-query/src/ManagedBlockchainQuery.ts b/clients/client-managedblockchain-query/src/ManagedBlockchainQuery.ts index 002d7ef1b6459..21876790e44f3 100644 --- a/clients/client-managedblockchain-query/src/ManagedBlockchainQuery.ts +++ b/clients/client-managedblockchain-query/src/ManagedBlockchainQuery.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetTokenBalanceCommand, @@ -47,7 +47,7 @@ import { ListTransactionsCommandInput, ListTransactionsCommandOutput, } from "./commands/ListTransactionsCommand"; -import { ManagedBlockchainQueryClient, ManagedBlockchainQueryClientConfig } from "./ManagedBlockchainQueryClient"; +import { ManagedBlockchainQueryClient } from "./ManagedBlockchainQueryClient"; const commands = { BatchGetTokenBalanceCommand, diff --git a/clients/client-managedblockchain-query/src/ManagedBlockchainQueryClient.ts b/clients/client-managedblockchain-query/src/ManagedBlockchainQueryClient.ts index d9bed6355a558..0f04c0acb23b2 100644 --- a/clients/client-managedblockchain-query/src/ManagedBlockchainQueryClient.ts +++ b/clients/client-managedblockchain-query/src/ManagedBlockchainQueryClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultManagedBlockchainQueryHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -82,7 +91,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-managedblockchain-query/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-managedblockchain-query/src/auth/httpAuthExtensionConfiguration.ts index cb14d61dd2053..a0bc2b36e6cdb 100644 --- a/clients/client-managedblockchain-query/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-managedblockchain-query/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ManagedBlockchainQueryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ManagedBlockchainQueryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-managedblockchain-query/src/auth/httpAuthSchemeProvider.ts b/clients/client-managedblockchain-query/src/auth/httpAuthSchemeProvider.ts index 7a579dedb4a01..d967df514fc79 100644 --- a/clients/client-managedblockchain-query/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-managedblockchain-query/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ManagedBlockchainQueryClientResolvedConfig, ManagedBlockchainQueryClientConfig, - ManagedBlockchainQueryClientResolvedConfig, } from "../ManagedBlockchainQueryClient"; /** diff --git a/clients/client-managedblockchain-query/src/commands/BatchGetTokenBalanceCommand.ts b/clients/client-managedblockchain-query/src/commands/BatchGetTokenBalanceCommand.ts index e9015b2f6008e..10a5cfc8f534d 100644 --- a/clients/client-managedblockchain-query/src/commands/BatchGetTokenBalanceCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/BatchGetTokenBalanceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainQueryClient"; -import { BatchGetTokenBalanceInput, BatchGetTokenBalanceOutput } from "../models/models_0"; +import type { BatchGetTokenBalanceInput, BatchGetTokenBalanceOutput } from "../models/models_0"; import { BatchGetTokenBalance } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain-query/src/commands/GetAssetContractCommand.ts b/clients/client-managedblockchain-query/src/commands/GetAssetContractCommand.ts index b87cfdb68d578..387edb0eb4cc0 100644 --- a/clients/client-managedblockchain-query/src/commands/GetAssetContractCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/GetAssetContractCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainQueryClient"; -import { GetAssetContractInput, GetAssetContractOutput } from "../models/models_0"; +import type { GetAssetContractInput, GetAssetContractOutput } from "../models/models_0"; import { GetAssetContract } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain-query/src/commands/GetTokenBalanceCommand.ts b/clients/client-managedblockchain-query/src/commands/GetTokenBalanceCommand.ts index 885b6dc819ebe..1647a16c91453 100644 --- a/clients/client-managedblockchain-query/src/commands/GetTokenBalanceCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/GetTokenBalanceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainQueryClient"; -import { GetTokenBalanceInput, GetTokenBalanceOutput } from "../models/models_0"; +import type { GetTokenBalanceInput, GetTokenBalanceOutput } from "../models/models_0"; import { GetTokenBalance } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain-query/src/commands/GetTransactionCommand.ts b/clients/client-managedblockchain-query/src/commands/GetTransactionCommand.ts index b409827d4c7b6..2ffc899498676 100644 --- a/clients/client-managedblockchain-query/src/commands/GetTransactionCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/GetTransactionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainQueryClient"; -import { GetTransactionInput, GetTransactionOutput } from "../models/models_0"; +import type { GetTransactionInput, GetTransactionOutput } from "../models/models_0"; import { GetTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain-query/src/commands/ListAssetContractsCommand.ts b/clients/client-managedblockchain-query/src/commands/ListAssetContractsCommand.ts index a117e9241b6f0..4fa03138d6b99 100644 --- a/clients/client-managedblockchain-query/src/commands/ListAssetContractsCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListAssetContractsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainQueryClient"; -import { ListAssetContractsInput, ListAssetContractsOutput } from "../models/models_0"; +import type { ListAssetContractsInput, ListAssetContractsOutput } from "../models/models_0"; import { ListAssetContracts } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain-query/src/commands/ListFilteredTransactionEventsCommand.ts b/clients/client-managedblockchain-query/src/commands/ListFilteredTransactionEventsCommand.ts index 55484354ce0c2..974ff9d28d873 100644 --- a/clients/client-managedblockchain-query/src/commands/ListFilteredTransactionEventsCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListFilteredTransactionEventsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainQueryClient"; -import { ListFilteredTransactionEventsInput, ListFilteredTransactionEventsOutput } from "../models/models_0"; +import type { ListFilteredTransactionEventsInput, ListFilteredTransactionEventsOutput } from "../models/models_0"; import { ListFilteredTransactionEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain-query/src/commands/ListTokenBalancesCommand.ts b/clients/client-managedblockchain-query/src/commands/ListTokenBalancesCommand.ts index cf7d9a2f05101..ec354d8311b19 100644 --- a/clients/client-managedblockchain-query/src/commands/ListTokenBalancesCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListTokenBalancesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainQueryClient"; -import { ListTokenBalancesInput, ListTokenBalancesOutput } from "../models/models_0"; +import type { ListTokenBalancesInput, ListTokenBalancesOutput } from "../models/models_0"; import { ListTokenBalances } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain-query/src/commands/ListTransactionEventsCommand.ts b/clients/client-managedblockchain-query/src/commands/ListTransactionEventsCommand.ts index 1763e3d4fb5e6..d78eed132df9b 100644 --- a/clients/client-managedblockchain-query/src/commands/ListTransactionEventsCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListTransactionEventsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainQueryClient"; -import { ListTransactionEventsInput, ListTransactionEventsOutput } from "../models/models_0"; +import type { ListTransactionEventsInput, ListTransactionEventsOutput } from "../models/models_0"; import { ListTransactionEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain-query/src/commands/ListTransactionsCommand.ts b/clients/client-managedblockchain-query/src/commands/ListTransactionsCommand.ts index 3ea5cad5c2a35..b8f968274a8b7 100644 --- a/clients/client-managedblockchain-query/src/commands/ListTransactionsCommand.ts +++ b/clients/client-managedblockchain-query/src/commands/ListTransactionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainQueryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainQueryClient"; -import { ListTransactionsInput, ListTransactionsOutput } from "../models/models_0"; +import type { ListTransactionsInput, ListTransactionsOutput } from "../models/models_0"; import { ListTransactions } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain-query/src/endpoint/EndpointParameters.ts b/clients/client-managedblockchain-query/src/endpoint/EndpointParameters.ts index 472b907e05a9f..5ad459727cf6a 100644 --- a/clients/client-managedblockchain-query/src/endpoint/EndpointParameters.ts +++ b/clients/client-managedblockchain-query/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-managedblockchain-query/src/endpoint/endpointResolver.ts b/clients/client-managedblockchain-query/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-managedblockchain-query/src/endpoint/endpointResolver.ts +++ b/clients/client-managedblockchain-query/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-managedblockchain-query/src/extensionConfiguration.ts b/clients/client-managedblockchain-query/src/extensionConfiguration.ts index 6c7924830e288..259ac17cb11fa 100644 --- a/clients/client-managedblockchain-query/src/extensionConfiguration.ts +++ b/clients/client-managedblockchain-query/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-managedblockchain-query/src/models/ManagedBlockchainQueryServiceException.ts b/clients/client-managedblockchain-query/src/models/ManagedBlockchainQueryServiceException.ts index 5de1eaa666212..e5855bb5c8df8 100644 --- a/clients/client-managedblockchain-query/src/models/ManagedBlockchainQueryServiceException.ts +++ b/clients/client-managedblockchain-query/src/models/ManagedBlockchainQueryServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-managedblockchain-query/src/models/errors.ts b/clients/client-managedblockchain-query/src/models/errors.ts index 48db083127a24..65b4e903c86ae 100644 --- a/clients/client-managedblockchain-query/src/models/errors.ts +++ b/clients/client-managedblockchain-query/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ResourceType, ValidationExceptionReason } from "./enums"; import { ManagedBlockchainQueryServiceException as __BaseException } from "./ManagedBlockchainQueryServiceException"; diff --git a/clients/client-managedblockchain-query/src/pagination/Interfaces.ts b/clients/client-managedblockchain-query/src/pagination/Interfaces.ts index 53db2fdb1ae30..1fbbadb14f450 100644 --- a/clients/client-managedblockchain-query/src/pagination/Interfaces.ts +++ b/clients/client-managedblockchain-query/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ManagedBlockchainQueryClient } from "../ManagedBlockchainQueryClient"; diff --git a/clients/client-managedblockchain-query/src/pagination/ListAssetContractsPaginator.ts b/clients/client-managedblockchain-query/src/pagination/ListAssetContractsPaginator.ts index 78e9f278142c9..a73b3355a40b0 100644 --- a/clients/client-managedblockchain-query/src/pagination/ListAssetContractsPaginator.ts +++ b/clients/client-managedblockchain-query/src/pagination/ListAssetContractsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetContractsCommand, diff --git a/clients/client-managedblockchain-query/src/pagination/ListFilteredTransactionEventsPaginator.ts b/clients/client-managedblockchain-query/src/pagination/ListFilteredTransactionEventsPaginator.ts index 4bf6646f83a80..d1d5aaf3c580b 100644 --- a/clients/client-managedblockchain-query/src/pagination/ListFilteredTransactionEventsPaginator.ts +++ b/clients/client-managedblockchain-query/src/pagination/ListFilteredTransactionEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFilteredTransactionEventsCommand, diff --git a/clients/client-managedblockchain-query/src/pagination/ListTokenBalancesPaginator.ts b/clients/client-managedblockchain-query/src/pagination/ListTokenBalancesPaginator.ts index c41868f799208..82023bf9e308d 100644 --- a/clients/client-managedblockchain-query/src/pagination/ListTokenBalancesPaginator.ts +++ b/clients/client-managedblockchain-query/src/pagination/ListTokenBalancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTokenBalancesCommand, diff --git a/clients/client-managedblockchain-query/src/pagination/ListTransactionEventsPaginator.ts b/clients/client-managedblockchain-query/src/pagination/ListTransactionEventsPaginator.ts index 2538b63049e08..a011180cabff9 100644 --- a/clients/client-managedblockchain-query/src/pagination/ListTransactionEventsPaginator.ts +++ b/clients/client-managedblockchain-query/src/pagination/ListTransactionEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTransactionEventsCommand, diff --git a/clients/client-managedblockchain-query/src/pagination/ListTransactionsPaginator.ts b/clients/client-managedblockchain-query/src/pagination/ListTransactionsPaginator.ts index 41c6d1faca74e..6cf333a5ceebe 100644 --- a/clients/client-managedblockchain-query/src/pagination/ListTransactionsPaginator.ts +++ b/clients/client-managedblockchain-query/src/pagination/ListTransactionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTransactionsCommand, diff --git a/clients/client-managedblockchain-query/src/runtimeConfig.browser.ts b/clients/client-managedblockchain-query/src/runtimeConfig.browser.ts index 3938ff209f5d8..0c88d7e561aa0 100644 --- a/clients/client-managedblockchain-query/src/runtimeConfig.browser.ts +++ b/clients/client-managedblockchain-query/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ManagedBlockchainQueryClientConfig } from "./ManagedBlockchainQueryClient"; + +import type { ManagedBlockchainQueryClientConfig } from "./ManagedBlockchainQueryClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-managedblockchain-query/src/runtimeConfig.native.ts b/clients/client-managedblockchain-query/src/runtimeConfig.native.ts index 640e6b01bd45f..ab5115b1cd642 100644 --- a/clients/client-managedblockchain-query/src/runtimeConfig.native.ts +++ b/clients/client-managedblockchain-query/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ManagedBlockchainQueryClientConfig } from "./ManagedBlockchainQueryClient"; +import type { ManagedBlockchainQueryClientConfig } from "./ManagedBlockchainQueryClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-managedblockchain-query/src/runtimeConfig.shared.ts b/clients/client-managedblockchain-query/src/runtimeConfig.shared.ts index 7268b0ac79d08..8345e92f9fad3 100644 --- a/clients/client-managedblockchain-query/src/runtimeConfig.shared.ts +++ b/clients/client-managedblockchain-query/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultManagedBlockchainQueryHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ManagedBlockchainQueryClientConfig } from "./ManagedBlockchainQueryClient"; +import type { ManagedBlockchainQueryClientConfig } from "./ManagedBlockchainQueryClient"; /** * @internal diff --git a/clients/client-managedblockchain-query/src/runtimeConfig.ts b/clients/client-managedblockchain-query/src/runtimeConfig.ts index 9ae0918d1f3fc..712ee8e344acd 100644 --- a/clients/client-managedblockchain-query/src/runtimeConfig.ts +++ b/clients/client-managedblockchain-query/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ManagedBlockchainQueryClientConfig } from "./ManagedBlockchainQueryClient"; + +import type { ManagedBlockchainQueryClientConfig } from "./ManagedBlockchainQueryClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-managedblockchain-query/src/runtimeExtensions.ts b/clients/client-managedblockchain-query/src/runtimeExtensions.ts index 61579882327fd..13821f8864391 100644 --- a/clients/client-managedblockchain-query/src/runtimeExtensions.ts +++ b/clients/client-managedblockchain-query/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ManagedBlockchainQueryExtensionConfiguration } from "./extensionConfiguration"; +import type { ManagedBlockchainQueryExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-managedblockchain-query/src/schemas/schemas_0.ts b/clients/client-managedblockchain-query/src/schemas/schemas_0.ts index 90462ae14cf57..4c940fdd56480 100644 --- a/clients/client-managedblockchain-query/src/schemas/schemas_0.ts +++ b/clients/client-managedblockchain-query/src/schemas/schemas_0.ts @@ -151,7 +151,7 @@ const n0 = "com.amazonaws.managedblockchainquery"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-managedblockchain/package.json b/clients/client-managedblockchain/package.json index b527d8d306367..bbce97053d6cd 100644 --- a/clients/client-managedblockchain/package.json +++ b/clients/client-managedblockchain/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-managedblockchain/src/ManagedBlockchain.ts b/clients/client-managedblockchain/src/ManagedBlockchain.ts index 9b62a83f4919b..99dd090cfab73 100644 --- a/clients/client-managedblockchain/src/ManagedBlockchain.ts +++ b/clients/client-managedblockchain/src/ManagedBlockchain.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAccessorCommand, @@ -93,7 +93,7 @@ import { VoteOnProposalCommandInput, VoteOnProposalCommandOutput, } from "./commands/VoteOnProposalCommand"; -import { ManagedBlockchainClient, ManagedBlockchainClientConfig } from "./ManagedBlockchainClient"; +import { ManagedBlockchainClient } from "./ManagedBlockchainClient"; const commands = { CreateAccessorCommand, diff --git a/clients/client-managedblockchain/src/ManagedBlockchainClient.ts b/clients/client-managedblockchain/src/ManagedBlockchainClient.ts index 1086edb806cd0..245d0c3b74f28 100644 --- a/clients/client-managedblockchain/src/ManagedBlockchainClient.ts +++ b/clients/client-managedblockchain/src/ManagedBlockchainClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultManagedBlockchainHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateAccessorCommandInput, CreateAccessorCommandOutput } from "./commands/CreateAccessorCommand"; @@ -94,7 +103,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-managedblockchain/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-managedblockchain/src/auth/httpAuthExtensionConfiguration.ts index 7f2296cc1a896..022d0e375a479 100644 --- a/clients/client-managedblockchain/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-managedblockchain/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ManagedBlockchainHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ManagedBlockchainHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-managedblockchain/src/auth/httpAuthSchemeProvider.ts b/clients/client-managedblockchain/src/auth/httpAuthSchemeProvider.ts index d39059f964de6..f60f3453f41b4 100644 --- a/clients/client-managedblockchain/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-managedblockchain/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ManagedBlockchainClientConfig, ManagedBlockchainClientResolvedConfig } from "../ManagedBlockchainClient"; +import { type ManagedBlockchainClientResolvedConfig, ManagedBlockchainClientConfig } from "../ManagedBlockchainClient"; /** * @internal diff --git a/clients/client-managedblockchain/src/commands/CreateAccessorCommand.ts b/clients/client-managedblockchain/src/commands/CreateAccessorCommand.ts index aaf6c2202d60c..c333c9ad9278d 100644 --- a/clients/client-managedblockchain/src/commands/CreateAccessorCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateAccessorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { CreateAccessorInput, CreateAccessorOutput } from "../models/models_0"; +import type { CreateAccessorInput, CreateAccessorOutput } from "../models/models_0"; import { CreateAccessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/CreateMemberCommand.ts b/clients/client-managedblockchain/src/commands/CreateMemberCommand.ts index 307e88895028e..943de6bfc0aeb 100644 --- a/clients/client-managedblockchain/src/commands/CreateMemberCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateMemberCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { CreateMemberInput, CreateMemberOutput } from "../models/models_0"; +import type { CreateMemberInput, CreateMemberOutput } from "../models/models_0"; import { CreateMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/CreateNetworkCommand.ts b/clients/client-managedblockchain/src/commands/CreateNetworkCommand.ts index 55fa66ea94dbf..1bf448c890d79 100644 --- a/clients/client-managedblockchain/src/commands/CreateNetworkCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateNetworkCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { CreateNetworkInput, CreateNetworkOutput } from "../models/models_0"; +import type { CreateNetworkInput, CreateNetworkOutput } from "../models/models_0"; import { CreateNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/CreateNodeCommand.ts b/clients/client-managedblockchain/src/commands/CreateNodeCommand.ts index 72094cfb570b6..114eee4f1fbbb 100644 --- a/clients/client-managedblockchain/src/commands/CreateNodeCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateNodeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { CreateNodeInput, CreateNodeOutput } from "../models/models_0"; +import type { CreateNodeInput, CreateNodeOutput } from "../models/models_0"; import { CreateNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/CreateProposalCommand.ts b/clients/client-managedblockchain/src/commands/CreateProposalCommand.ts index 0315f6b72c07a..8203dad62081c 100644 --- a/clients/client-managedblockchain/src/commands/CreateProposalCommand.ts +++ b/clients/client-managedblockchain/src/commands/CreateProposalCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { CreateProposalInput, CreateProposalOutput } from "../models/models_0"; +import type { CreateProposalInput, CreateProposalOutput } from "../models/models_0"; import { CreateProposal } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/DeleteAccessorCommand.ts b/clients/client-managedblockchain/src/commands/DeleteAccessorCommand.ts index 9827b95f2af06..4dbcccbf00784 100644 --- a/clients/client-managedblockchain/src/commands/DeleteAccessorCommand.ts +++ b/clients/client-managedblockchain/src/commands/DeleteAccessorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { DeleteAccessorInput, DeleteAccessorOutput } from "../models/models_0"; +import type { DeleteAccessorInput, DeleteAccessorOutput } from "../models/models_0"; import { DeleteAccessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/DeleteMemberCommand.ts b/clients/client-managedblockchain/src/commands/DeleteMemberCommand.ts index bf406e8250045..242e9fdefd1dd 100644 --- a/clients/client-managedblockchain/src/commands/DeleteMemberCommand.ts +++ b/clients/client-managedblockchain/src/commands/DeleteMemberCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { DeleteMemberInput, DeleteMemberOutput } from "../models/models_0"; +import type { DeleteMemberInput, DeleteMemberOutput } from "../models/models_0"; import { DeleteMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/DeleteNodeCommand.ts b/clients/client-managedblockchain/src/commands/DeleteNodeCommand.ts index 4a830f81d6109..7781e5310c46c 100644 --- a/clients/client-managedblockchain/src/commands/DeleteNodeCommand.ts +++ b/clients/client-managedblockchain/src/commands/DeleteNodeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { DeleteNodeInput, DeleteNodeOutput } from "../models/models_0"; +import type { DeleteNodeInput, DeleteNodeOutput } from "../models/models_0"; import { DeleteNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/GetAccessorCommand.ts b/clients/client-managedblockchain/src/commands/GetAccessorCommand.ts index 398e249033b56..36cf5b70a459f 100644 --- a/clients/client-managedblockchain/src/commands/GetAccessorCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetAccessorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { GetAccessorInput, GetAccessorOutput } from "../models/models_0"; +import type { GetAccessorInput, GetAccessorOutput } from "../models/models_0"; import { GetAccessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/GetMemberCommand.ts b/clients/client-managedblockchain/src/commands/GetMemberCommand.ts index 1d44a04615ada..78606e2d6edfd 100644 --- a/clients/client-managedblockchain/src/commands/GetMemberCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetMemberCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { GetMemberInput, GetMemberOutput } from "../models/models_0"; +import type { GetMemberInput, GetMemberOutput } from "../models/models_0"; import { GetMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/GetNetworkCommand.ts b/clients/client-managedblockchain/src/commands/GetNetworkCommand.ts index c064a6d9b3034..ebf955388fd0e 100644 --- a/clients/client-managedblockchain/src/commands/GetNetworkCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetNetworkCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { GetNetworkInput, GetNetworkOutput } from "../models/models_0"; +import type { GetNetworkInput, GetNetworkOutput } from "../models/models_0"; import { GetNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/GetNodeCommand.ts b/clients/client-managedblockchain/src/commands/GetNodeCommand.ts index c7996f679e929..b081aa37b2dc8 100644 --- a/clients/client-managedblockchain/src/commands/GetNodeCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetNodeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { GetNodeInput, GetNodeOutput } from "../models/models_0"; +import type { GetNodeInput, GetNodeOutput } from "../models/models_0"; import { GetNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/GetProposalCommand.ts b/clients/client-managedblockchain/src/commands/GetProposalCommand.ts index 659e3624829ee..e919ba15254ef 100644 --- a/clients/client-managedblockchain/src/commands/GetProposalCommand.ts +++ b/clients/client-managedblockchain/src/commands/GetProposalCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { GetProposalInput, GetProposalOutput } from "../models/models_0"; +import type { GetProposalInput, GetProposalOutput } from "../models/models_0"; import { GetProposal } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/ListAccessorsCommand.ts b/clients/client-managedblockchain/src/commands/ListAccessorsCommand.ts index 6917f0a15d447..d741810be82c9 100644 --- a/clients/client-managedblockchain/src/commands/ListAccessorsCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListAccessorsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { ListAccessorsInput, ListAccessorsOutput } from "../models/models_0"; +import type { ListAccessorsInput, ListAccessorsOutput } from "../models/models_0"; import { ListAccessors } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/ListInvitationsCommand.ts b/clients/client-managedblockchain/src/commands/ListInvitationsCommand.ts index 056c88763c499..df34f88e6ce20 100644 --- a/clients/client-managedblockchain/src/commands/ListInvitationsCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListInvitationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { ListInvitationsInput, ListInvitationsOutput } from "../models/models_0"; +import type { ListInvitationsInput, ListInvitationsOutput } from "../models/models_0"; import { ListInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/ListMembersCommand.ts b/clients/client-managedblockchain/src/commands/ListMembersCommand.ts index 170fd6dde2de0..c449971de74c5 100644 --- a/clients/client-managedblockchain/src/commands/ListMembersCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListMembersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { ListMembersInput, ListMembersOutput } from "../models/models_0"; +import type { ListMembersInput, ListMembersOutput } from "../models/models_0"; import { ListMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/ListNetworksCommand.ts b/clients/client-managedblockchain/src/commands/ListNetworksCommand.ts index e9155d9664495..25712becb42d2 100644 --- a/clients/client-managedblockchain/src/commands/ListNetworksCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListNetworksCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { ListNetworksInput, ListNetworksOutput } from "../models/models_0"; +import type { ListNetworksInput, ListNetworksOutput } from "../models/models_0"; import { ListNetworks } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/ListNodesCommand.ts b/clients/client-managedblockchain/src/commands/ListNodesCommand.ts index 4d65fa3b4607b..98835f073a661 100644 --- a/clients/client-managedblockchain/src/commands/ListNodesCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListNodesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { ListNodesInput, ListNodesOutput } from "../models/models_0"; +import type { ListNodesInput, ListNodesOutput } from "../models/models_0"; import { ListNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/ListProposalVotesCommand.ts b/clients/client-managedblockchain/src/commands/ListProposalVotesCommand.ts index 84d71d474e59e..915c28764a726 100644 --- a/clients/client-managedblockchain/src/commands/ListProposalVotesCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListProposalVotesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { ListProposalVotesInput, ListProposalVotesOutput } from "../models/models_0"; +import type { ListProposalVotesInput, ListProposalVotesOutput } from "../models/models_0"; import { ListProposalVotes } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/ListProposalsCommand.ts b/clients/client-managedblockchain/src/commands/ListProposalsCommand.ts index 3b60ff0b38ac5..f58214ac96712 100644 --- a/clients/client-managedblockchain/src/commands/ListProposalsCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListProposalsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { ListProposalsInput, ListProposalsOutput } from "../models/models_0"; +import type { ListProposalsInput, ListProposalsOutput } from "../models/models_0"; import { ListProposals } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/ListTagsForResourceCommand.ts b/clients/client-managedblockchain/src/commands/ListTagsForResourceCommand.ts index fa7cab3d02d2c..7989953246364 100644 --- a/clients/client-managedblockchain/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-managedblockchain/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/RejectInvitationCommand.ts b/clients/client-managedblockchain/src/commands/RejectInvitationCommand.ts index 383096e53006a..d33448272f4fa 100644 --- a/clients/client-managedblockchain/src/commands/RejectInvitationCommand.ts +++ b/clients/client-managedblockchain/src/commands/RejectInvitationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { RejectInvitationInput, RejectInvitationOutput } from "../models/models_0"; +import type { RejectInvitationInput, RejectInvitationOutput } from "../models/models_0"; import { RejectInvitation } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/TagResourceCommand.ts b/clients/client-managedblockchain/src/commands/TagResourceCommand.ts index e801bbe7b1ee7..960ccd844f2e3 100644 --- a/clients/client-managedblockchain/src/commands/TagResourceCommand.ts +++ b/clients/client-managedblockchain/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/UntagResourceCommand.ts b/clients/client-managedblockchain/src/commands/UntagResourceCommand.ts index 881e67eada1dd..ca0e589ac3d2f 100644 --- a/clients/client-managedblockchain/src/commands/UntagResourceCommand.ts +++ b/clients/client-managedblockchain/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/UpdateMemberCommand.ts b/clients/client-managedblockchain/src/commands/UpdateMemberCommand.ts index 19942f758e7dc..ece17922cfc30 100644 --- a/clients/client-managedblockchain/src/commands/UpdateMemberCommand.ts +++ b/clients/client-managedblockchain/src/commands/UpdateMemberCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { UpdateMemberInput, UpdateMemberOutput } from "../models/models_0"; +import type { UpdateMemberInput, UpdateMemberOutput } from "../models/models_0"; import { UpdateMember } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/UpdateNodeCommand.ts b/clients/client-managedblockchain/src/commands/UpdateNodeCommand.ts index 6e8afed991c37..d2a6783bb38e8 100644 --- a/clients/client-managedblockchain/src/commands/UpdateNodeCommand.ts +++ b/clients/client-managedblockchain/src/commands/UpdateNodeCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { UpdateNodeInput, UpdateNodeOutput } from "../models/models_0"; +import type { UpdateNodeInput, UpdateNodeOutput } from "../models/models_0"; import { UpdateNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/commands/VoteOnProposalCommand.ts b/clients/client-managedblockchain/src/commands/VoteOnProposalCommand.ts index 7a94f3794136a..e93ccecd7ba2e 100644 --- a/clients/client-managedblockchain/src/commands/VoteOnProposalCommand.ts +++ b/clients/client-managedblockchain/src/commands/VoteOnProposalCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ManagedBlockchainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../ManagedBlockchainClient"; -import { VoteOnProposalInput, VoteOnProposalOutput } from "../models/models_0"; +import type { VoteOnProposalInput, VoteOnProposalOutput } from "../models/models_0"; import { VoteOnProposal } from "../schemas/schemas_0"; /** diff --git a/clients/client-managedblockchain/src/endpoint/EndpointParameters.ts b/clients/client-managedblockchain/src/endpoint/EndpointParameters.ts index 809b0d815a57f..81ca6ebeadb07 100644 --- a/clients/client-managedblockchain/src/endpoint/EndpointParameters.ts +++ b/clients/client-managedblockchain/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-managedblockchain/src/endpoint/endpointResolver.ts b/clients/client-managedblockchain/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-managedblockchain/src/endpoint/endpointResolver.ts +++ b/clients/client-managedblockchain/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-managedblockchain/src/extensionConfiguration.ts b/clients/client-managedblockchain/src/extensionConfiguration.ts index 8d84c5b1d904c..de1b0e4ab698a 100644 --- a/clients/client-managedblockchain/src/extensionConfiguration.ts +++ b/clients/client-managedblockchain/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-managedblockchain/src/models/ManagedBlockchainServiceException.ts b/clients/client-managedblockchain/src/models/ManagedBlockchainServiceException.ts index e1b4da1abe3e3..e4a182dae4263 100644 --- a/clients/client-managedblockchain/src/models/ManagedBlockchainServiceException.ts +++ b/clients/client-managedblockchain/src/models/ManagedBlockchainServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-managedblockchain/src/models/errors.ts b/clients/client-managedblockchain/src/models/errors.ts index bfaf39d377ffc..e8b0748e1d2b2 100644 --- a/clients/client-managedblockchain/src/models/errors.ts +++ b/clients/client-managedblockchain/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ManagedBlockchainServiceException as __BaseException } from "./ManagedBlockchainServiceException"; diff --git a/clients/client-managedblockchain/src/pagination/Interfaces.ts b/clients/client-managedblockchain/src/pagination/Interfaces.ts index b980b36c62efb..d64509f869947 100644 --- a/clients/client-managedblockchain/src/pagination/Interfaces.ts +++ b/clients/client-managedblockchain/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ManagedBlockchainClient } from "../ManagedBlockchainClient"; diff --git a/clients/client-managedblockchain/src/pagination/ListAccessorsPaginator.ts b/clients/client-managedblockchain/src/pagination/ListAccessorsPaginator.ts index a62ade801480e..24ba62c956049 100644 --- a/clients/client-managedblockchain/src/pagination/ListAccessorsPaginator.ts +++ b/clients/client-managedblockchain/src/pagination/ListAccessorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessorsCommand, diff --git a/clients/client-managedblockchain/src/pagination/ListInvitationsPaginator.ts b/clients/client-managedblockchain/src/pagination/ListInvitationsPaginator.ts index eb92859e44025..d5adcd5d5aa68 100644 --- a/clients/client-managedblockchain/src/pagination/ListInvitationsPaginator.ts +++ b/clients/client-managedblockchain/src/pagination/ListInvitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInvitationsCommand, diff --git a/clients/client-managedblockchain/src/pagination/ListMembersPaginator.ts b/clients/client-managedblockchain/src/pagination/ListMembersPaginator.ts index 7216918d04b55..53b9e1889a4fd 100644 --- a/clients/client-managedblockchain/src/pagination/ListMembersPaginator.ts +++ b/clients/client-managedblockchain/src/pagination/ListMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMembersCommand, ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand"; import { ManagedBlockchainClient } from "../ManagedBlockchainClient"; diff --git a/clients/client-managedblockchain/src/pagination/ListNetworksPaginator.ts b/clients/client-managedblockchain/src/pagination/ListNetworksPaginator.ts index c0eec6ea69a28..dd70511698805 100644 --- a/clients/client-managedblockchain/src/pagination/ListNetworksPaginator.ts +++ b/clients/client-managedblockchain/src/pagination/ListNetworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNetworksCommand, diff --git a/clients/client-managedblockchain/src/pagination/ListNodesPaginator.ts b/clients/client-managedblockchain/src/pagination/ListNodesPaginator.ts index 59899cfcc0e0a..dbdb67416c709 100644 --- a/clients/client-managedblockchain/src/pagination/ListNodesPaginator.ts +++ b/clients/client-managedblockchain/src/pagination/ListNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNodesCommand, ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand"; import { ManagedBlockchainClient } from "../ManagedBlockchainClient"; diff --git a/clients/client-managedblockchain/src/pagination/ListProposalVotesPaginator.ts b/clients/client-managedblockchain/src/pagination/ListProposalVotesPaginator.ts index b0aef69e070cd..da8997356a2d4 100644 --- a/clients/client-managedblockchain/src/pagination/ListProposalVotesPaginator.ts +++ b/clients/client-managedblockchain/src/pagination/ListProposalVotesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProposalVotesCommand, diff --git a/clients/client-managedblockchain/src/pagination/ListProposalsPaginator.ts b/clients/client-managedblockchain/src/pagination/ListProposalsPaginator.ts index b30dbe222a8c3..0a7f5d136d9d6 100644 --- a/clients/client-managedblockchain/src/pagination/ListProposalsPaginator.ts +++ b/clients/client-managedblockchain/src/pagination/ListProposalsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProposalsCommand, diff --git a/clients/client-managedblockchain/src/runtimeConfig.browser.ts b/clients/client-managedblockchain/src/runtimeConfig.browser.ts index 2329af4269b1a..a950377c9af01 100644 --- a/clients/client-managedblockchain/src/runtimeConfig.browser.ts +++ b/clients/client-managedblockchain/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient"; + +import type { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-managedblockchain/src/runtimeConfig.native.ts b/clients/client-managedblockchain/src/runtimeConfig.native.ts index 031c6a2cfe0a6..c5b2dd10f3bac 100644 --- a/clients/client-managedblockchain/src/runtimeConfig.native.ts +++ b/clients/client-managedblockchain/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient"; +import type { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-managedblockchain/src/runtimeConfig.shared.ts b/clients/client-managedblockchain/src/runtimeConfig.shared.ts index 8da5ce81830c4..69d1dc878351a 100644 --- a/clients/client-managedblockchain/src/runtimeConfig.shared.ts +++ b/clients/client-managedblockchain/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultManagedBlockchainHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient"; +import type { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient"; /** * @internal diff --git a/clients/client-managedblockchain/src/runtimeConfig.ts b/clients/client-managedblockchain/src/runtimeConfig.ts index 91d60d3a9fc3c..7c38d1b7dfa75 100644 --- a/clients/client-managedblockchain/src/runtimeConfig.ts +++ b/clients/client-managedblockchain/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient"; + +import type { ManagedBlockchainClientConfig } from "./ManagedBlockchainClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-managedblockchain/src/runtimeExtensions.ts b/clients/client-managedblockchain/src/runtimeExtensions.ts index 5106fb880634e..cd636f3f90ffc 100644 --- a/clients/client-managedblockchain/src/runtimeExtensions.ts +++ b/clients/client-managedblockchain/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ManagedBlockchainExtensionConfiguration } from "./extensionConfiguration"; +import type { ManagedBlockchainExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-managedblockchain/src/schemas/schemas_0.ts b/clients/client-managedblockchain/src/schemas/schemas_0.ts index 0e62db416df56..a2424965bbbd5 100644 --- a/clients/client-managedblockchain/src/schemas/schemas_0.ts +++ b/clients/client-managedblockchain/src/schemas/schemas_0.ts @@ -230,7 +230,7 @@ const n0 = "com.amazonaws.managedblockchain"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-marketplace-agreement/package.json b/clients/client-marketplace-agreement/package.json index 8e66964cb98e6..c1a4e181f5ceb 100644 --- a/clients/client-marketplace-agreement/package.json +++ b/clients/client-marketplace-agreement/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-marketplace-agreement/src/MarketplaceAgreement.ts b/clients/client-marketplace-agreement/src/MarketplaceAgreement.ts index ba325d4d7b051..cb23d1767551e 100644 --- a/clients/client-marketplace-agreement/src/MarketplaceAgreement.ts +++ b/clients/client-marketplace-agreement/src/MarketplaceAgreement.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DescribeAgreementCommand, @@ -17,7 +17,7 @@ import { SearchAgreementsCommandInput, SearchAgreementsCommandOutput, } from "./commands/SearchAgreementsCommand"; -import { MarketplaceAgreementClient, MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient"; +import { MarketplaceAgreementClient } from "./MarketplaceAgreementClient"; const commands = { DescribeAgreementCommand, diff --git a/clients/client-marketplace-agreement/src/MarketplaceAgreementClient.ts b/clients/client-marketplace-agreement/src/MarketplaceAgreementClient.ts index 33483785e6bd4..1ddbd20471f5c 100644 --- a/clients/client-marketplace-agreement/src/MarketplaceAgreementClient.ts +++ b/clients/client-marketplace-agreement/src/MarketplaceAgreementClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMarketplaceAgreementHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DescribeAgreementCommandInput, DescribeAgreementCommandOutput } from "./commands/DescribeAgreementCommand"; @@ -67,7 +76,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-marketplace-agreement/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-marketplace-agreement/src/auth/httpAuthExtensionConfiguration.ts index c46d919f09b3f..33e051f699d78 100644 --- a/clients/client-marketplace-agreement/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-marketplace-agreement/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MarketplaceAgreementHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MarketplaceAgreementHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-marketplace-agreement/src/auth/httpAuthSchemeProvider.ts b/clients/client-marketplace-agreement/src/auth/httpAuthSchemeProvider.ts index e24f36b9a6c98..4cbd59cdb92c8 100644 --- a/clients/client-marketplace-agreement/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-marketplace-agreement/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type MarketplaceAgreementClientResolvedConfig, MarketplaceAgreementClientConfig, - MarketplaceAgreementClientResolvedConfig, } from "../MarketplaceAgreementClient"; /** diff --git a/clients/client-marketplace-agreement/src/commands/DescribeAgreementCommand.ts b/clients/client-marketplace-agreement/src/commands/DescribeAgreementCommand.ts index d248e72f3ede7..da6d5199d5d2e 100644 --- a/clients/client-marketplace-agreement/src/commands/DescribeAgreementCommand.ts +++ b/clients/client-marketplace-agreement/src/commands/DescribeAgreementCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceAgreementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceAgreementClient"; -import { DescribeAgreementInput, DescribeAgreementOutput } from "../models/models_0"; +import type { DescribeAgreementInput, DescribeAgreementOutput } from "../models/models_0"; import { DescribeAgreement } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-agreement/src/commands/GetAgreementTermsCommand.ts b/clients/client-marketplace-agreement/src/commands/GetAgreementTermsCommand.ts index 55c0b51594bf0..f740fb286d578 100644 --- a/clients/client-marketplace-agreement/src/commands/GetAgreementTermsCommand.ts +++ b/clients/client-marketplace-agreement/src/commands/GetAgreementTermsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceAgreementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceAgreementClient"; -import { GetAgreementTermsInput, GetAgreementTermsOutput } from "../models/models_0"; +import type { GetAgreementTermsInput, GetAgreementTermsOutput } from "../models/models_0"; import { GetAgreementTerms } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-agreement/src/commands/SearchAgreementsCommand.ts b/clients/client-marketplace-agreement/src/commands/SearchAgreementsCommand.ts index a27140fc8112e..41f4a81e20bf3 100644 --- a/clients/client-marketplace-agreement/src/commands/SearchAgreementsCommand.ts +++ b/clients/client-marketplace-agreement/src/commands/SearchAgreementsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceAgreementClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceAgreementClient"; -import { SearchAgreementsInput, SearchAgreementsOutput } from "../models/models_0"; +import type { SearchAgreementsInput, SearchAgreementsOutput } from "../models/models_0"; import { SearchAgreements } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-agreement/src/endpoint/EndpointParameters.ts b/clients/client-marketplace-agreement/src/endpoint/EndpointParameters.ts index c0320203c2737..5a21199cee08b 100644 --- a/clients/client-marketplace-agreement/src/endpoint/EndpointParameters.ts +++ b/clients/client-marketplace-agreement/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-marketplace-agreement/src/endpoint/endpointResolver.ts b/clients/client-marketplace-agreement/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-marketplace-agreement/src/endpoint/endpointResolver.ts +++ b/clients/client-marketplace-agreement/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-marketplace-agreement/src/extensionConfiguration.ts b/clients/client-marketplace-agreement/src/extensionConfiguration.ts index ac9516c4e229d..dd5f4012518e5 100644 --- a/clients/client-marketplace-agreement/src/extensionConfiguration.ts +++ b/clients/client-marketplace-agreement/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-marketplace-agreement/src/models/MarketplaceAgreementServiceException.ts b/clients/client-marketplace-agreement/src/models/MarketplaceAgreementServiceException.ts index 244fe81c2f824..ee99cbbc1fb9e 100644 --- a/clients/client-marketplace-agreement/src/models/MarketplaceAgreementServiceException.ts +++ b/clients/client-marketplace-agreement/src/models/MarketplaceAgreementServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-marketplace-agreement/src/models/errors.ts b/clients/client-marketplace-agreement/src/models/errors.ts index 1401285f72568..74e211f42c4bf 100644 --- a/clients/client-marketplace-agreement/src/models/errors.ts +++ b/clients/client-marketplace-agreement/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ResourceType, ValidationExceptionReason } from "./enums"; import { MarketplaceAgreementServiceException as __BaseException } from "./MarketplaceAgreementServiceException"; diff --git a/clients/client-marketplace-agreement/src/pagination/GetAgreementTermsPaginator.ts b/clients/client-marketplace-agreement/src/pagination/GetAgreementTermsPaginator.ts index 02d21b577db35..fc52b744eb7ae 100644 --- a/clients/client-marketplace-agreement/src/pagination/GetAgreementTermsPaginator.ts +++ b/clients/client-marketplace-agreement/src/pagination/GetAgreementTermsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAgreementTermsCommand, diff --git a/clients/client-marketplace-agreement/src/pagination/Interfaces.ts b/clients/client-marketplace-agreement/src/pagination/Interfaces.ts index 878c04c31207e..24fce709d0523 100644 --- a/clients/client-marketplace-agreement/src/pagination/Interfaces.ts +++ b/clients/client-marketplace-agreement/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MarketplaceAgreementClient } from "../MarketplaceAgreementClient"; diff --git a/clients/client-marketplace-agreement/src/pagination/SearchAgreementsPaginator.ts b/clients/client-marketplace-agreement/src/pagination/SearchAgreementsPaginator.ts index cc57abd1b8998..1ee9a116d1987 100644 --- a/clients/client-marketplace-agreement/src/pagination/SearchAgreementsPaginator.ts +++ b/clients/client-marketplace-agreement/src/pagination/SearchAgreementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchAgreementsCommand, diff --git a/clients/client-marketplace-agreement/src/runtimeConfig.browser.ts b/clients/client-marketplace-agreement/src/runtimeConfig.browser.ts index 9714ae52c952d..f035ba37d0ac6 100644 --- a/clients/client-marketplace-agreement/src/runtimeConfig.browser.ts +++ b/clients/client-marketplace-agreement/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient"; + +import type { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-marketplace-agreement/src/runtimeConfig.native.ts b/clients/client-marketplace-agreement/src/runtimeConfig.native.ts index a84126cb5d402..77e247fc99b70 100644 --- a/clients/client-marketplace-agreement/src/runtimeConfig.native.ts +++ b/clients/client-marketplace-agreement/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient"; +import type { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-marketplace-agreement/src/runtimeConfig.shared.ts b/clients/client-marketplace-agreement/src/runtimeConfig.shared.ts index 61d416f10273a..b96d8a6d436cf 100644 --- a/clients/client-marketplace-agreement/src/runtimeConfig.shared.ts +++ b/clients/client-marketplace-agreement/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMarketplaceAgreementHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient"; +import type { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient"; /** * @internal diff --git a/clients/client-marketplace-agreement/src/runtimeConfig.ts b/clients/client-marketplace-agreement/src/runtimeConfig.ts index 7fd898d39867a..317853c5423a2 100644 --- a/clients/client-marketplace-agreement/src/runtimeConfig.ts +++ b/clients/client-marketplace-agreement/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient"; + +import type { MarketplaceAgreementClientConfig } from "./MarketplaceAgreementClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-marketplace-agreement/src/runtimeExtensions.ts b/clients/client-marketplace-agreement/src/runtimeExtensions.ts index 4d859e9b9ed93..249b11a5eff98 100644 --- a/clients/client-marketplace-agreement/src/runtimeExtensions.ts +++ b/clients/client-marketplace-agreement/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MarketplaceAgreementExtensionConfiguration } from "./extensionConfiguration"; +import type { MarketplaceAgreementExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-marketplace-agreement/src/schemas/schemas_0.ts b/clients/client-marketplace-agreement/src/schemas/schemas_0.ts index cbe75538d267d..d8efbc0417f8e 100644 --- a/clients/client-marketplace-agreement/src/schemas/schemas_0.ts +++ b/clients/client-marketplace-agreement/src/schemas/schemas_0.ts @@ -145,7 +145,7 @@ const n0 = "com.amazonaws.marketplaceagreement"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-marketplace-catalog/package.json b/clients/client-marketplace-catalog/package.json index 4d632c2f5bfe5..4554ebd930320 100644 --- a/clients/client-marketplace-catalog/package.json +++ b/clients/client-marketplace-catalog/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-marketplace-catalog/src/MarketplaceCatalog.ts b/clients/client-marketplace-catalog/src/MarketplaceCatalog.ts index b5432e34cc228..fb3dd70d051ab 100644 --- a/clients/client-marketplace-catalog/src/MarketplaceCatalog.ts +++ b/clients/client-marketplace-catalog/src/MarketplaceCatalog.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchDescribeEntitiesCommand, @@ -63,7 +63,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { MarketplaceCatalogClient, MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient"; +import { MarketplaceCatalogClient } from "./MarketplaceCatalogClient"; const commands = { BatchDescribeEntitiesCommand, diff --git a/clients/client-marketplace-catalog/src/MarketplaceCatalogClient.ts b/clients/client-marketplace-catalog/src/MarketplaceCatalogClient.ts index 585b4b124bf7a..83aef1236a4d5 100644 --- a/clients/client-marketplace-catalog/src/MarketplaceCatalogClient.ts +++ b/clients/client-marketplace-catalog/src/MarketplaceCatalogClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMarketplaceCatalogHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -86,7 +95,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-marketplace-catalog/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-marketplace-catalog/src/auth/httpAuthExtensionConfiguration.ts index c844017e22f66..2c5d7c95973b0 100644 --- a/clients/client-marketplace-catalog/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-marketplace-catalog/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MarketplaceCatalogHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MarketplaceCatalogHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-marketplace-catalog/src/auth/httpAuthSchemeProvider.ts b/clients/client-marketplace-catalog/src/auth/httpAuthSchemeProvider.ts index 6052e42be8bb2..40f189945e332 100644 --- a/clients/client-marketplace-catalog/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-marketplace-catalog/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MarketplaceCatalogClientConfig, MarketplaceCatalogClientResolvedConfig } from "../MarketplaceCatalogClient"; +import { + type MarketplaceCatalogClientResolvedConfig, + MarketplaceCatalogClientConfig, +} from "../MarketplaceCatalogClient"; /** * @internal diff --git a/clients/client-marketplace-catalog/src/commands/BatchDescribeEntitiesCommand.ts b/clients/client-marketplace-catalog/src/commands/BatchDescribeEntitiesCommand.ts index b35fe56c22c85..f8233f3ba482e 100644 --- a/clients/client-marketplace-catalog/src/commands/BatchDescribeEntitiesCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/BatchDescribeEntitiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { BatchDescribeEntitiesRequest, BatchDescribeEntitiesResponse } from "../models/models_0"; +import type { BatchDescribeEntitiesRequest, BatchDescribeEntitiesResponse } from "../models/models_0"; import { BatchDescribeEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/CancelChangeSetCommand.ts b/clients/client-marketplace-catalog/src/commands/CancelChangeSetCommand.ts index 26397a9fa389c..88c96bd18c94a 100644 --- a/clients/client-marketplace-catalog/src/commands/CancelChangeSetCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/CancelChangeSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { CancelChangeSetRequest, CancelChangeSetResponse } from "../models/models_0"; +import type { CancelChangeSetRequest, CancelChangeSetResponse } from "../models/models_0"; import { CancelChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-marketplace-catalog/src/commands/DeleteResourcePolicyCommand.ts index b5eb2f1f86f4f..50341d7850834 100644 --- a/clients/client-marketplace-catalog/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/DeleteResourcePolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/DescribeChangeSetCommand.ts b/clients/client-marketplace-catalog/src/commands/DescribeChangeSetCommand.ts index ff3288c809c7a..d1510480b9455 100644 --- a/clients/client-marketplace-catalog/src/commands/DescribeChangeSetCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/DescribeChangeSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { DescribeChangeSetRequest, DescribeChangeSetResponse } from "../models/models_0"; +import type { DescribeChangeSetRequest, DescribeChangeSetResponse } from "../models/models_0"; import { DescribeChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/DescribeEntityCommand.ts b/clients/client-marketplace-catalog/src/commands/DescribeEntityCommand.ts index c1c8b686014b5..0cac82cac7562 100644 --- a/clients/client-marketplace-catalog/src/commands/DescribeEntityCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/DescribeEntityCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { DescribeEntityRequest, DescribeEntityResponse } from "../models/models_0"; +import type { DescribeEntityRequest, DescribeEntityResponse } from "../models/models_0"; import { DescribeEntity } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/GetResourcePolicyCommand.ts b/clients/client-marketplace-catalog/src/commands/GetResourcePolicyCommand.ts index 5487a87304e42..94b24288d2670 100644 --- a/clients/client-marketplace-catalog/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/GetResourcePolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/ListChangeSetsCommand.ts b/clients/client-marketplace-catalog/src/commands/ListChangeSetsCommand.ts index f104a65e433a4..419473019e9fc 100644 --- a/clients/client-marketplace-catalog/src/commands/ListChangeSetsCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/ListChangeSetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { ListChangeSetsRequest, ListChangeSetsResponse } from "../models/models_0"; +import type { ListChangeSetsRequest, ListChangeSetsResponse } from "../models/models_0"; import { ListChangeSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/ListEntitiesCommand.ts b/clients/client-marketplace-catalog/src/commands/ListEntitiesCommand.ts index 9d1eafe0e544e..eb2a70ed98bf8 100644 --- a/clients/client-marketplace-catalog/src/commands/ListEntitiesCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/ListEntitiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { ListEntitiesRequest, ListEntitiesResponse } from "../models/models_0"; +import type { ListEntitiesRequest, ListEntitiesResponse } from "../models/models_0"; import { ListEntities } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/ListTagsForResourceCommand.ts b/clients/client-marketplace-catalog/src/commands/ListTagsForResourceCommand.ts index bc3e314a8a956..5e1949c2ca634 100644 --- a/clients/client-marketplace-catalog/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/PutResourcePolicyCommand.ts b/clients/client-marketplace-catalog/src/commands/PutResourcePolicyCommand.ts index 794334d375b8a..9e3e3d3afedca 100644 --- a/clients/client-marketplace-catalog/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/PutResourcePolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/StartChangeSetCommand.ts b/clients/client-marketplace-catalog/src/commands/StartChangeSetCommand.ts index 1be312891a611..946eace12a61e 100644 --- a/clients/client-marketplace-catalog/src/commands/StartChangeSetCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/StartChangeSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { StartChangeSetRequest, StartChangeSetResponse } from "../models/models_0"; +import type { StartChangeSetRequest, StartChangeSetResponse } from "../models/models_0"; import { StartChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/TagResourceCommand.ts b/clients/client-marketplace-catalog/src/commands/TagResourceCommand.ts index 60325feaf9e4b..927f5829a2427 100644 --- a/clients/client-marketplace-catalog/src/commands/TagResourceCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/commands/UntagResourceCommand.ts b/clients/client-marketplace-catalog/src/commands/UntagResourceCommand.ts index 7c9e5cde9af81..0f5db9a349ff7 100644 --- a/clients/client-marketplace-catalog/src/commands/UntagResourceCommand.ts +++ b/clients/client-marketplace-catalog/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCatalogClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-catalog/src/endpoint/EndpointParameters.ts b/clients/client-marketplace-catalog/src/endpoint/EndpointParameters.ts index c0320203c2737..5a21199cee08b 100644 --- a/clients/client-marketplace-catalog/src/endpoint/EndpointParameters.ts +++ b/clients/client-marketplace-catalog/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-marketplace-catalog/src/endpoint/endpointResolver.ts b/clients/client-marketplace-catalog/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-marketplace-catalog/src/endpoint/endpointResolver.ts +++ b/clients/client-marketplace-catalog/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-marketplace-catalog/src/extensionConfiguration.ts b/clients/client-marketplace-catalog/src/extensionConfiguration.ts index 5ae6f25f0ea4d..81b850314256a 100644 --- a/clients/client-marketplace-catalog/src/extensionConfiguration.ts +++ b/clients/client-marketplace-catalog/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-marketplace-catalog/src/models/MarketplaceCatalogServiceException.ts b/clients/client-marketplace-catalog/src/models/MarketplaceCatalogServiceException.ts index e9244282532e4..48a4585d4aa3c 100644 --- a/clients/client-marketplace-catalog/src/models/MarketplaceCatalogServiceException.ts +++ b/clients/client-marketplace-catalog/src/models/MarketplaceCatalogServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-marketplace-catalog/src/models/errors.ts b/clients/client-marketplace-catalog/src/models/errors.ts index 8fbf93376062a..bdf1e96bf4f7a 100644 --- a/clients/client-marketplace-catalog/src/models/errors.ts +++ b/clients/client-marketplace-catalog/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MarketplaceCatalogServiceException as __BaseException } from "./MarketplaceCatalogServiceException"; diff --git a/clients/client-marketplace-catalog/src/pagination/Interfaces.ts b/clients/client-marketplace-catalog/src/pagination/Interfaces.ts index 19adf6f8d2177..68480fa8d0157 100644 --- a/clients/client-marketplace-catalog/src/pagination/Interfaces.ts +++ b/clients/client-marketplace-catalog/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MarketplaceCatalogClient } from "../MarketplaceCatalogClient"; diff --git a/clients/client-marketplace-catalog/src/pagination/ListChangeSetsPaginator.ts b/clients/client-marketplace-catalog/src/pagination/ListChangeSetsPaginator.ts index cf0e292daa9bb..d6739a5cf66ae 100644 --- a/clients/client-marketplace-catalog/src/pagination/ListChangeSetsPaginator.ts +++ b/clients/client-marketplace-catalog/src/pagination/ListChangeSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChangeSetsCommand, diff --git a/clients/client-marketplace-catalog/src/pagination/ListEntitiesPaginator.ts b/clients/client-marketplace-catalog/src/pagination/ListEntitiesPaginator.ts index 953809e20d3db..d95940f402ad0 100644 --- a/clients/client-marketplace-catalog/src/pagination/ListEntitiesPaginator.ts +++ b/clients/client-marketplace-catalog/src/pagination/ListEntitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntitiesCommand, diff --git a/clients/client-marketplace-catalog/src/runtimeConfig.browser.ts b/clients/client-marketplace-catalog/src/runtimeConfig.browser.ts index 8ead3f660e3e3..a15006db851d4 100644 --- a/clients/client-marketplace-catalog/src/runtimeConfig.browser.ts +++ b/clients/client-marketplace-catalog/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient"; + +import type { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-marketplace-catalog/src/runtimeConfig.native.ts b/clients/client-marketplace-catalog/src/runtimeConfig.native.ts index 8998317fd246a..51df915937f40 100644 --- a/clients/client-marketplace-catalog/src/runtimeConfig.native.ts +++ b/clients/client-marketplace-catalog/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient"; +import type { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-marketplace-catalog/src/runtimeConfig.shared.ts b/clients/client-marketplace-catalog/src/runtimeConfig.shared.ts index 18b4726109752..363b1389df26f 100644 --- a/clients/client-marketplace-catalog/src/runtimeConfig.shared.ts +++ b/clients/client-marketplace-catalog/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMarketplaceCatalogHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient"; +import type { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient"; /** * @internal diff --git a/clients/client-marketplace-catalog/src/runtimeConfig.ts b/clients/client-marketplace-catalog/src/runtimeConfig.ts index b9afd153f3370..b85db713ee509 100644 --- a/clients/client-marketplace-catalog/src/runtimeConfig.ts +++ b/clients/client-marketplace-catalog/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient"; + +import type { MarketplaceCatalogClientConfig } from "./MarketplaceCatalogClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-marketplace-catalog/src/runtimeExtensions.ts b/clients/client-marketplace-catalog/src/runtimeExtensions.ts index f0c90994d73d6..6f45a53bce772 100644 --- a/clients/client-marketplace-catalog/src/runtimeExtensions.ts +++ b/clients/client-marketplace-catalog/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MarketplaceCatalogExtensionConfiguration } from "./extensionConfiguration"; +import type { MarketplaceCatalogExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-marketplace-catalog/src/schemas/schemas_0.ts b/clients/client-marketplace-catalog/src/schemas/schemas_0.ts index d25a9c618b3aa..aa07f4e200e53 100644 --- a/clients/client-marketplace-catalog/src/schemas/schemas_0.ts +++ b/clients/client-marketplace-catalog/src/schemas/schemas_0.ts @@ -237,7 +237,7 @@ const n0 = "com.amazonaws.marketplacecatalog"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-marketplace-commerce-analytics/package.json b/clients/client-marketplace-commerce-analytics/package.json index da645e2c6cc8a..af267627ec6dd 100644 --- a/clients/client-marketplace-commerce-analytics/package.json +++ b/clients/client-marketplace-commerce-analytics/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-marketplace-commerce-analytics/src/MarketplaceCommerceAnalytics.ts b/clients/client-marketplace-commerce-analytics/src/MarketplaceCommerceAnalytics.ts index 241da7c68348a..be2a162ff162e 100644 --- a/clients/client-marketplace-commerce-analytics/src/MarketplaceCommerceAnalytics.ts +++ b/clients/client-marketplace-commerce-analytics/src/MarketplaceCommerceAnalytics.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GenerateDataSetCommand, @@ -12,10 +12,7 @@ import { StartSupportDataExportCommandInput, StartSupportDataExportCommandOutput, } from "./commands/StartSupportDataExportCommand"; -import { - MarketplaceCommerceAnalyticsClient, - MarketplaceCommerceAnalyticsClientConfig, -} from "./MarketplaceCommerceAnalyticsClient"; +import { MarketplaceCommerceAnalyticsClient } from "./MarketplaceCommerceAnalyticsClient"; const commands = { GenerateDataSetCommand, diff --git a/clients/client-marketplace-commerce-analytics/src/MarketplaceCommerceAnalyticsClient.ts b/clients/client-marketplace-commerce-analytics/src/MarketplaceCommerceAnalyticsClient.ts index fb8a3fa15297a..6d843e8421285 100644 --- a/clients/client-marketplace-commerce-analytics/src/MarketplaceCommerceAnalyticsClient.ts +++ b/clients/client-marketplace-commerce-analytics/src/MarketplaceCommerceAnalyticsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMarketplaceCommerceAnalyticsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GenerateDataSetCommandInput, GenerateDataSetCommandOutput } from "./commands/GenerateDataSetCommand"; @@ -69,7 +78,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-marketplace-commerce-analytics/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-marketplace-commerce-analytics/src/auth/httpAuthExtensionConfiguration.ts index fa4cd7dba17bb..e27cad7e15bce 100644 --- a/clients/client-marketplace-commerce-analytics/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-marketplace-commerce-analytics/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MarketplaceCommerceAnalyticsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MarketplaceCommerceAnalyticsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-marketplace-commerce-analytics/src/auth/httpAuthSchemeProvider.ts b/clients/client-marketplace-commerce-analytics/src/auth/httpAuthSchemeProvider.ts index bc17b711ce84f..b50d244d5954c 100644 --- a/clients/client-marketplace-commerce-analytics/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-marketplace-commerce-analytics/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type MarketplaceCommerceAnalyticsClientResolvedConfig, MarketplaceCommerceAnalyticsClientConfig, - MarketplaceCommerceAnalyticsClientResolvedConfig, } from "../MarketplaceCommerceAnalyticsClient"; /** diff --git a/clients/client-marketplace-commerce-analytics/src/commands/GenerateDataSetCommand.ts b/clients/client-marketplace-commerce-analytics/src/commands/GenerateDataSetCommand.ts index 614bcb956accc..86bc4456b9d99 100644 --- a/clients/client-marketplace-commerce-analytics/src/commands/GenerateDataSetCommand.ts +++ b/clients/client-marketplace-commerce-analytics/src/commands/GenerateDataSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCommerceAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCommerceAnalyticsClient"; -import { GenerateDataSetRequest, GenerateDataSetResult } from "../models/models_0"; +import type { GenerateDataSetRequest, GenerateDataSetResult } from "../models/models_0"; import { GenerateDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-commerce-analytics/src/commands/StartSupportDataExportCommand.ts b/clients/client-marketplace-commerce-analytics/src/commands/StartSupportDataExportCommand.ts index 2f779de71699f..34f13782f4aa4 100644 --- a/clients/client-marketplace-commerce-analytics/src/commands/StartSupportDataExportCommand.ts +++ b/clients/client-marketplace-commerce-analytics/src/commands/StartSupportDataExportCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceCommerceAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceCommerceAnalyticsClient"; -import { StartSupportDataExportRequest, StartSupportDataExportResult } from "../models/models_0"; +import type { StartSupportDataExportRequest, StartSupportDataExportResult } from "../models/models_0"; import { StartSupportDataExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-commerce-analytics/src/endpoint/EndpointParameters.ts b/clients/client-marketplace-commerce-analytics/src/endpoint/EndpointParameters.ts index c0e39279fcf7c..d4915ac8d39e6 100644 --- a/clients/client-marketplace-commerce-analytics/src/endpoint/EndpointParameters.ts +++ b/clients/client-marketplace-commerce-analytics/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-marketplace-commerce-analytics/src/endpoint/endpointResolver.ts b/clients/client-marketplace-commerce-analytics/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-marketplace-commerce-analytics/src/endpoint/endpointResolver.ts +++ b/clients/client-marketplace-commerce-analytics/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-marketplace-commerce-analytics/src/extensionConfiguration.ts b/clients/client-marketplace-commerce-analytics/src/extensionConfiguration.ts index 0414b67d9ab62..a8352f044977e 100644 --- a/clients/client-marketplace-commerce-analytics/src/extensionConfiguration.ts +++ b/clients/client-marketplace-commerce-analytics/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-marketplace-commerce-analytics/src/models/MarketplaceCommerceAnalyticsServiceException.ts b/clients/client-marketplace-commerce-analytics/src/models/MarketplaceCommerceAnalyticsServiceException.ts index d22225bf185e0..4a4772f0e4e3e 100644 --- a/clients/client-marketplace-commerce-analytics/src/models/MarketplaceCommerceAnalyticsServiceException.ts +++ b/clients/client-marketplace-commerce-analytics/src/models/MarketplaceCommerceAnalyticsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-marketplace-commerce-analytics/src/models/errors.ts b/clients/client-marketplace-commerce-analytics/src/models/errors.ts index 5dec060e5b377..f5809849b79fb 100644 --- a/clients/client-marketplace-commerce-analytics/src/models/errors.ts +++ b/clients/client-marketplace-commerce-analytics/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MarketplaceCommerceAnalyticsServiceException as __BaseException } from "./MarketplaceCommerceAnalyticsServiceException"; diff --git a/clients/client-marketplace-commerce-analytics/src/runtimeConfig.browser.ts b/clients/client-marketplace-commerce-analytics/src/runtimeConfig.browser.ts index 51c7b52a170dc..37a0558be8e4d 100644 --- a/clients/client-marketplace-commerce-analytics/src/runtimeConfig.browser.ts +++ b/clients/client-marketplace-commerce-analytics/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceCommerceAnalyticsClientConfig } from "./MarketplaceCommerceAnalyticsClient"; + +import type { MarketplaceCommerceAnalyticsClientConfig } from "./MarketplaceCommerceAnalyticsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-marketplace-commerce-analytics/src/runtimeConfig.native.ts b/clients/client-marketplace-commerce-analytics/src/runtimeConfig.native.ts index 1364252824732..d619d1b53ac75 100644 --- a/clients/client-marketplace-commerce-analytics/src/runtimeConfig.native.ts +++ b/clients/client-marketplace-commerce-analytics/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MarketplaceCommerceAnalyticsClientConfig } from "./MarketplaceCommerceAnalyticsClient"; +import type { MarketplaceCommerceAnalyticsClientConfig } from "./MarketplaceCommerceAnalyticsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-marketplace-commerce-analytics/src/runtimeConfig.shared.ts b/clients/client-marketplace-commerce-analytics/src/runtimeConfig.shared.ts index f0e6800b32cfc..ba5c54df085a8 100644 --- a/clients/client-marketplace-commerce-analytics/src/runtimeConfig.shared.ts +++ b/clients/client-marketplace-commerce-analytics/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMarketplaceCommerceAnalyticsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MarketplaceCommerceAnalyticsClientConfig } from "./MarketplaceCommerceAnalyticsClient"; +import type { MarketplaceCommerceAnalyticsClientConfig } from "./MarketplaceCommerceAnalyticsClient"; /** * @internal diff --git a/clients/client-marketplace-commerce-analytics/src/runtimeConfig.ts b/clients/client-marketplace-commerce-analytics/src/runtimeConfig.ts index 39f7ed6a6ffd5..3e8d01c47de51 100644 --- a/clients/client-marketplace-commerce-analytics/src/runtimeConfig.ts +++ b/clients/client-marketplace-commerce-analytics/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceCommerceAnalyticsClientConfig } from "./MarketplaceCommerceAnalyticsClient"; + +import type { MarketplaceCommerceAnalyticsClientConfig } from "./MarketplaceCommerceAnalyticsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-marketplace-commerce-analytics/src/runtimeExtensions.ts b/clients/client-marketplace-commerce-analytics/src/runtimeExtensions.ts index 501b957cf9f9b..56126b18d3baf 100644 --- a/clients/client-marketplace-commerce-analytics/src/runtimeExtensions.ts +++ b/clients/client-marketplace-commerce-analytics/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MarketplaceCommerceAnalyticsExtensionConfiguration } from "./extensionConfiguration"; +import type { MarketplaceCommerceAnalyticsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-marketplace-commerce-analytics/src/schemas/schemas_0.ts b/clients/client-marketplace-commerce-analytics/src/schemas/schemas_0.ts index 9e512d60b73c2..599d3c52ae6fd 100644 --- a/clients/client-marketplace-commerce-analytics/src/schemas/schemas_0.ts +++ b/clients/client-marketplace-commerce-analytics/src/schemas/schemas_0.ts @@ -22,7 +22,7 @@ const n0 = "com.amazonaws.marketplacecommerceanalytics"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { MarketplaceCommerceAnalyticsException as __MarketplaceCommerceAnalyticsException } from "../models/errors"; import { MarketplaceCommerceAnalyticsServiceException as __MarketplaceCommerceAnalyticsServiceException } from "../models/MarketplaceCommerceAnalyticsServiceException"; diff --git a/clients/client-marketplace-deployment/package.json b/clients/client-marketplace-deployment/package.json index ad939224c1744..3d542a1f158c6 100644 --- a/clients/client-marketplace-deployment/package.json +++ b/clients/client-marketplace-deployment/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-marketplace-deployment/src/MarketplaceDeployment.ts b/clients/client-marketplace-deployment/src/MarketplaceDeployment.ts index 338c6a0ed61f0..bd7867f34fb3e 100644 --- a/clients/client-marketplace-deployment/src/MarketplaceDeployment.ts +++ b/clients/client-marketplace-deployment/src/MarketplaceDeployment.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ListTagsForResourceCommand, @@ -18,7 +18,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { MarketplaceDeploymentClient, MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient"; +import { MarketplaceDeploymentClient } from "./MarketplaceDeploymentClient"; const commands = { ListTagsForResourceCommand, diff --git a/clients/client-marketplace-deployment/src/MarketplaceDeploymentClient.ts b/clients/client-marketplace-deployment/src/MarketplaceDeploymentClient.ts index 9f6cbad90c457..79f12b1541a98 100644 --- a/clients/client-marketplace-deployment/src/MarketplaceDeploymentClient.ts +++ b/clients/client-marketplace-deployment/src/MarketplaceDeploymentClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMarketplaceDeploymentHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -74,7 +83,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-marketplace-deployment/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-marketplace-deployment/src/auth/httpAuthExtensionConfiguration.ts index 6907dccdbeb76..f2f7a41464a90 100644 --- a/clients/client-marketplace-deployment/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-marketplace-deployment/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MarketplaceDeploymentHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MarketplaceDeploymentHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-marketplace-deployment/src/auth/httpAuthSchemeProvider.ts b/clients/client-marketplace-deployment/src/auth/httpAuthSchemeProvider.ts index e0baeea3b9273..21ce202cc60ba 100644 --- a/clients/client-marketplace-deployment/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-marketplace-deployment/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type MarketplaceDeploymentClientResolvedConfig, MarketplaceDeploymentClientConfig, - MarketplaceDeploymentClientResolvedConfig, } from "../MarketplaceDeploymentClient"; /** diff --git a/clients/client-marketplace-deployment/src/commands/ListTagsForResourceCommand.ts b/clients/client-marketplace-deployment/src/commands/ListTagsForResourceCommand.ts index a7c39d34391db..6e4232c5eb645 100644 --- a/clients/client-marketplace-deployment/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-marketplace-deployment/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceDeploymentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceDeploymentClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-deployment/src/commands/PutDeploymentParameterCommand.ts b/clients/client-marketplace-deployment/src/commands/PutDeploymentParameterCommand.ts index 293a82e25d61f..ced6be1c764c8 100644 --- a/clients/client-marketplace-deployment/src/commands/PutDeploymentParameterCommand.ts +++ b/clients/client-marketplace-deployment/src/commands/PutDeploymentParameterCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceDeploymentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceDeploymentClient"; -import { PutDeploymentParameterRequest, PutDeploymentParameterResponse } from "../models/models_0"; +import type { PutDeploymentParameterRequest, PutDeploymentParameterResponse } from "../models/models_0"; import { PutDeploymentParameter } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-deployment/src/commands/TagResourceCommand.ts b/clients/client-marketplace-deployment/src/commands/TagResourceCommand.ts index 1cbdf0c95d04a..8b319da5b83c1 100644 --- a/clients/client-marketplace-deployment/src/commands/TagResourceCommand.ts +++ b/clients/client-marketplace-deployment/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceDeploymentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceDeploymentClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-deployment/src/commands/UntagResourceCommand.ts b/clients/client-marketplace-deployment/src/commands/UntagResourceCommand.ts index 39b799c1314a4..6c2af52641e9d 100644 --- a/clients/client-marketplace-deployment/src/commands/UntagResourceCommand.ts +++ b/clients/client-marketplace-deployment/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceDeploymentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceDeploymentClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-deployment/src/endpoint/EndpointParameters.ts b/clients/client-marketplace-deployment/src/endpoint/EndpointParameters.ts index c0320203c2737..5a21199cee08b 100644 --- a/clients/client-marketplace-deployment/src/endpoint/EndpointParameters.ts +++ b/clients/client-marketplace-deployment/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-marketplace-deployment/src/endpoint/endpointResolver.ts b/clients/client-marketplace-deployment/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-marketplace-deployment/src/endpoint/endpointResolver.ts +++ b/clients/client-marketplace-deployment/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-marketplace-deployment/src/extensionConfiguration.ts b/clients/client-marketplace-deployment/src/extensionConfiguration.ts index bcb9a2bec32ee..0f31a6f45583a 100644 --- a/clients/client-marketplace-deployment/src/extensionConfiguration.ts +++ b/clients/client-marketplace-deployment/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-marketplace-deployment/src/models/MarketplaceDeploymentServiceException.ts b/clients/client-marketplace-deployment/src/models/MarketplaceDeploymentServiceException.ts index 6658c85a41da4..55ea5aeba5a6d 100644 --- a/clients/client-marketplace-deployment/src/models/MarketplaceDeploymentServiceException.ts +++ b/clients/client-marketplace-deployment/src/models/MarketplaceDeploymentServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-marketplace-deployment/src/models/errors.ts b/clients/client-marketplace-deployment/src/models/errors.ts index 4df2a1d171ed0..fe2aa43b6580d 100644 --- a/clients/client-marketplace-deployment/src/models/errors.ts +++ b/clients/client-marketplace-deployment/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MarketplaceDeploymentServiceException as __BaseException } from "./MarketplaceDeploymentServiceException"; diff --git a/clients/client-marketplace-deployment/src/runtimeConfig.browser.ts b/clients/client-marketplace-deployment/src/runtimeConfig.browser.ts index fddadfc28ac43..e473f44ba807a 100644 --- a/clients/client-marketplace-deployment/src/runtimeConfig.browser.ts +++ b/clients/client-marketplace-deployment/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient"; + +import type { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-marketplace-deployment/src/runtimeConfig.native.ts b/clients/client-marketplace-deployment/src/runtimeConfig.native.ts index 46f85a241e2c5..4e24b12542189 100644 --- a/clients/client-marketplace-deployment/src/runtimeConfig.native.ts +++ b/clients/client-marketplace-deployment/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient"; +import type { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-marketplace-deployment/src/runtimeConfig.shared.ts b/clients/client-marketplace-deployment/src/runtimeConfig.shared.ts index 2af03a18ccf17..a8911f63ee1bd 100644 --- a/clients/client-marketplace-deployment/src/runtimeConfig.shared.ts +++ b/clients/client-marketplace-deployment/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMarketplaceDeploymentHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient"; +import type { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient"; /** * @internal diff --git a/clients/client-marketplace-deployment/src/runtimeConfig.ts b/clients/client-marketplace-deployment/src/runtimeConfig.ts index 086a86d297884..5647cb3ca1658 100644 --- a/clients/client-marketplace-deployment/src/runtimeConfig.ts +++ b/clients/client-marketplace-deployment/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient"; + +import type { MarketplaceDeploymentClientConfig } from "./MarketplaceDeploymentClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-marketplace-deployment/src/runtimeExtensions.ts b/clients/client-marketplace-deployment/src/runtimeExtensions.ts index 0eb858cf002ad..9f5f9eaf2de78 100644 --- a/clients/client-marketplace-deployment/src/runtimeExtensions.ts +++ b/clients/client-marketplace-deployment/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MarketplaceDeploymentExtensionConfiguration } from "./extensionConfiguration"; +import type { MarketplaceDeploymentExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-marketplace-deployment/src/schemas/schemas_0.ts b/clients/client-marketplace-deployment/src/schemas/schemas_0.ts index 52bb4045001fb..af0ece5fc44ec 100644 --- a/clients/client-marketplace-deployment/src/schemas/schemas_0.ts +++ b/clients/client-marketplace-deployment/src/schemas/schemas_0.ts @@ -45,7 +45,7 @@ const n0 = "com.amazonaws.marketplacedeployment"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-marketplace-entitlement-service/package.json b/clients/client-marketplace-entitlement-service/package.json index ac01e884dd78c..a97aa0a43d008 100644 --- a/clients/client-marketplace-entitlement-service/package.json +++ b/clients/client-marketplace-entitlement-service/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-marketplace-entitlement-service/src/MarketplaceEntitlementService.ts b/clients/client-marketplace-entitlement-service/src/MarketplaceEntitlementService.ts index 9a32993a1f1e4..2dbb0f3ec8db1 100644 --- a/clients/client-marketplace-entitlement-service/src/MarketplaceEntitlementService.ts +++ b/clients/client-marketplace-entitlement-service/src/MarketplaceEntitlementService.ts @@ -1,16 +1,13 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetEntitlementsCommand, GetEntitlementsCommandInput, GetEntitlementsCommandOutput, } from "./commands/GetEntitlementsCommand"; -import { - MarketplaceEntitlementServiceClient, - MarketplaceEntitlementServiceClientConfig, -} from "./MarketplaceEntitlementServiceClient"; +import { MarketplaceEntitlementServiceClient } from "./MarketplaceEntitlementServiceClient"; const commands = { GetEntitlementsCommand, diff --git a/clients/client-marketplace-entitlement-service/src/MarketplaceEntitlementServiceClient.ts b/clients/client-marketplace-entitlement-service/src/MarketplaceEntitlementServiceClient.ts index a70666160bdd2..632d6941a27f5 100644 --- a/clients/client-marketplace-entitlement-service/src/MarketplaceEntitlementServiceClient.ts +++ b/clients/client-marketplace-entitlement-service/src/MarketplaceEntitlementServiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMarketplaceEntitlementServiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetEntitlementsCommandInput, GetEntitlementsCommandOutput } from "./commands/GetEntitlementsCommand"; @@ -65,7 +74,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-marketplace-entitlement-service/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-marketplace-entitlement-service/src/auth/httpAuthExtensionConfiguration.ts index 35417e44391af..9d1bde1c013a6 100644 --- a/clients/client-marketplace-entitlement-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-marketplace-entitlement-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MarketplaceEntitlementServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MarketplaceEntitlementServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-marketplace-entitlement-service/src/auth/httpAuthSchemeProvider.ts b/clients/client-marketplace-entitlement-service/src/auth/httpAuthSchemeProvider.ts index 509dbdbc2def6..0b7777d227d4a 100644 --- a/clients/client-marketplace-entitlement-service/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-marketplace-entitlement-service/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type MarketplaceEntitlementServiceClientResolvedConfig, MarketplaceEntitlementServiceClientConfig, - MarketplaceEntitlementServiceClientResolvedConfig, } from "../MarketplaceEntitlementServiceClient"; /** diff --git a/clients/client-marketplace-entitlement-service/src/commands/GetEntitlementsCommand.ts b/clients/client-marketplace-entitlement-service/src/commands/GetEntitlementsCommand.ts index 224643cb43831..3182d520b034d 100644 --- a/clients/client-marketplace-entitlement-service/src/commands/GetEntitlementsCommand.ts +++ b/clients/client-marketplace-entitlement-service/src/commands/GetEntitlementsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceEntitlementServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceEntitlementServiceClient"; -import { GetEntitlementsRequest, GetEntitlementsResult } from "../models/models_0"; +import type { GetEntitlementsRequest, GetEntitlementsResult } from "../models/models_0"; import { GetEntitlements } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-entitlement-service/src/endpoint/EndpointParameters.ts b/clients/client-marketplace-entitlement-service/src/endpoint/EndpointParameters.ts index f993a6fcb2e4e..b873abababaa3 100644 --- a/clients/client-marketplace-entitlement-service/src/endpoint/EndpointParameters.ts +++ b/clients/client-marketplace-entitlement-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-marketplace-entitlement-service/src/endpoint/endpointResolver.ts b/clients/client-marketplace-entitlement-service/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-marketplace-entitlement-service/src/endpoint/endpointResolver.ts +++ b/clients/client-marketplace-entitlement-service/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-marketplace-entitlement-service/src/extensionConfiguration.ts b/clients/client-marketplace-entitlement-service/src/extensionConfiguration.ts index 54babb48b223b..f5c9138c1d9da 100644 --- a/clients/client-marketplace-entitlement-service/src/extensionConfiguration.ts +++ b/clients/client-marketplace-entitlement-service/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-marketplace-entitlement-service/src/models/MarketplaceEntitlementServiceServiceException.ts b/clients/client-marketplace-entitlement-service/src/models/MarketplaceEntitlementServiceServiceException.ts index b506408bf93c8..54967d810d055 100644 --- a/clients/client-marketplace-entitlement-service/src/models/MarketplaceEntitlementServiceServiceException.ts +++ b/clients/client-marketplace-entitlement-service/src/models/MarketplaceEntitlementServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-marketplace-entitlement-service/src/models/errors.ts b/clients/client-marketplace-entitlement-service/src/models/errors.ts index 85f82c827dd7b..2ccc2e7ca321b 100644 --- a/clients/client-marketplace-entitlement-service/src/models/errors.ts +++ b/clients/client-marketplace-entitlement-service/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MarketplaceEntitlementServiceServiceException as __BaseException } from "./MarketplaceEntitlementServiceServiceException"; diff --git a/clients/client-marketplace-entitlement-service/src/pagination/GetEntitlementsPaginator.ts b/clients/client-marketplace-entitlement-service/src/pagination/GetEntitlementsPaginator.ts index 7a8d20789223b..f1f4cee8c4bde 100644 --- a/clients/client-marketplace-entitlement-service/src/pagination/GetEntitlementsPaginator.ts +++ b/clients/client-marketplace-entitlement-service/src/pagination/GetEntitlementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetEntitlementsCommand, diff --git a/clients/client-marketplace-entitlement-service/src/pagination/Interfaces.ts b/clients/client-marketplace-entitlement-service/src/pagination/Interfaces.ts index 3a32f93550e04..57dc96672bead 100644 --- a/clients/client-marketplace-entitlement-service/src/pagination/Interfaces.ts +++ b/clients/client-marketplace-entitlement-service/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MarketplaceEntitlementServiceClient } from "../MarketplaceEntitlementServiceClient"; diff --git a/clients/client-marketplace-entitlement-service/src/runtimeConfig.browser.ts b/clients/client-marketplace-entitlement-service/src/runtimeConfig.browser.ts index 8388a1d036dca..a7dfc5e3e656e 100644 --- a/clients/client-marketplace-entitlement-service/src/runtimeConfig.browser.ts +++ b/clients/client-marketplace-entitlement-service/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient"; + +import type { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-marketplace-entitlement-service/src/runtimeConfig.native.ts b/clients/client-marketplace-entitlement-service/src/runtimeConfig.native.ts index cac738486f376..f3346ef620bd9 100644 --- a/clients/client-marketplace-entitlement-service/src/runtimeConfig.native.ts +++ b/clients/client-marketplace-entitlement-service/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient"; +import type { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-marketplace-entitlement-service/src/runtimeConfig.shared.ts b/clients/client-marketplace-entitlement-service/src/runtimeConfig.shared.ts index ffdd8bec3fde7..97ed953cb1ac6 100644 --- a/clients/client-marketplace-entitlement-service/src/runtimeConfig.shared.ts +++ b/clients/client-marketplace-entitlement-service/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMarketplaceEntitlementServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient"; +import type { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient"; /** * @internal diff --git a/clients/client-marketplace-entitlement-service/src/runtimeConfig.ts b/clients/client-marketplace-entitlement-service/src/runtimeConfig.ts index 6d701990a45b6..2db57e315627a 100644 --- a/clients/client-marketplace-entitlement-service/src/runtimeConfig.ts +++ b/clients/client-marketplace-entitlement-service/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient"; + +import type { MarketplaceEntitlementServiceClientConfig } from "./MarketplaceEntitlementServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-marketplace-entitlement-service/src/runtimeExtensions.ts b/clients/client-marketplace-entitlement-service/src/runtimeExtensions.ts index 8c4424f82b24a..305a38c78e138 100644 --- a/clients/client-marketplace-entitlement-service/src/runtimeExtensions.ts +++ b/clients/client-marketplace-entitlement-service/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MarketplaceEntitlementServiceExtensionConfiguration } from "./extensionConfiguration"; +import type { MarketplaceEntitlementServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-marketplace-entitlement-service/src/schemas/schemas_0.ts b/clients/client-marketplace-entitlement-service/src/schemas/schemas_0.ts index 0629343e33aeb..d456ffbab4890 100644 --- a/clients/client-marketplace-entitlement-service/src/schemas/schemas_0.ts +++ b/clients/client-marketplace-entitlement-service/src/schemas/schemas_0.ts @@ -31,7 +31,7 @@ const n0 = "com.amazonaws.marketplaceentitlementservice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-marketplace-metering/package.json b/clients/client-marketplace-metering/package.json index 5bb34016f91c9..ac4d0b3227863 100644 --- a/clients/client-marketplace-metering/package.json +++ b/clients/client-marketplace-metering/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-marketplace-metering/src/MarketplaceMetering.ts b/clients/client-marketplace-metering/src/MarketplaceMetering.ts index e474e0b1e6e02..83056e7979805 100644 --- a/clients/client-marketplace-metering/src/MarketplaceMetering.ts +++ b/clients/client-marketplace-metering/src/MarketplaceMetering.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchMeterUsageCommand, @@ -18,7 +18,7 @@ import { ResolveCustomerCommandInput, ResolveCustomerCommandOutput, } from "./commands/ResolveCustomerCommand"; -import { MarketplaceMeteringClient, MarketplaceMeteringClientConfig } from "./MarketplaceMeteringClient"; +import { MarketplaceMeteringClient } from "./MarketplaceMeteringClient"; const commands = { BatchMeterUsageCommand, diff --git a/clients/client-marketplace-metering/src/MarketplaceMeteringClient.ts b/clients/client-marketplace-metering/src/MarketplaceMeteringClient.ts index 2d61e8264d637..129d1cab83b86 100644 --- a/clients/client-marketplace-metering/src/MarketplaceMeteringClient.ts +++ b/clients/client-marketplace-metering/src/MarketplaceMeteringClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMarketplaceMeteringHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchMeterUsageCommandInput, BatchMeterUsageCommandOutput } from "./commands/BatchMeterUsageCommand"; @@ -68,7 +77,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-marketplace-metering/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-marketplace-metering/src/auth/httpAuthExtensionConfiguration.ts index 0026b278a45e7..5268eb102b4b5 100644 --- a/clients/client-marketplace-metering/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-marketplace-metering/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MarketplaceMeteringHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MarketplaceMeteringHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-marketplace-metering/src/auth/httpAuthSchemeProvider.ts b/clients/client-marketplace-metering/src/auth/httpAuthSchemeProvider.ts index 67192fd5cc7de..b2a46c488ea3f 100644 --- a/clients/client-marketplace-metering/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-marketplace-metering/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MarketplaceMeteringClientConfig, MarketplaceMeteringClientResolvedConfig } from "../MarketplaceMeteringClient"; +import { + type MarketplaceMeteringClientResolvedConfig, + MarketplaceMeteringClientConfig, +} from "../MarketplaceMeteringClient"; /** * @internal diff --git a/clients/client-marketplace-metering/src/commands/BatchMeterUsageCommand.ts b/clients/client-marketplace-metering/src/commands/BatchMeterUsageCommand.ts index 997276ad0aaa0..0d59d7cb12b13 100644 --- a/clients/client-marketplace-metering/src/commands/BatchMeterUsageCommand.ts +++ b/clients/client-marketplace-metering/src/commands/BatchMeterUsageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceMeteringClient"; -import { BatchMeterUsageRequest, BatchMeterUsageResult } from "../models/models_0"; +import type { BatchMeterUsageRequest, BatchMeterUsageResult } from "../models/models_0"; import { BatchMeterUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-metering/src/commands/MeterUsageCommand.ts b/clients/client-marketplace-metering/src/commands/MeterUsageCommand.ts index b1a854323ea5b..25ec1dd7377ad 100644 --- a/clients/client-marketplace-metering/src/commands/MeterUsageCommand.ts +++ b/clients/client-marketplace-metering/src/commands/MeterUsageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceMeteringClient"; -import { MeterUsageRequest, MeterUsageResult } from "../models/models_0"; +import type { MeterUsageRequest, MeterUsageResult } from "../models/models_0"; import { MeterUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-metering/src/commands/RegisterUsageCommand.ts b/clients/client-marketplace-metering/src/commands/RegisterUsageCommand.ts index 69a02469c4d2c..2b3df22331162 100644 --- a/clients/client-marketplace-metering/src/commands/RegisterUsageCommand.ts +++ b/clients/client-marketplace-metering/src/commands/RegisterUsageCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceMeteringClient"; -import { RegisterUsageRequest, RegisterUsageResult } from "../models/models_0"; +import type { RegisterUsageRequest, RegisterUsageResult } from "../models/models_0"; import { RegisterUsage } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-metering/src/commands/ResolveCustomerCommand.ts b/clients/client-marketplace-metering/src/commands/ResolveCustomerCommand.ts index 43bb18ee8b27e..c7419dea84cb5 100644 --- a/clients/client-marketplace-metering/src/commands/ResolveCustomerCommand.ts +++ b/clients/client-marketplace-metering/src/commands/ResolveCustomerCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceMeteringClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceMeteringClient"; -import { ResolveCustomerRequest, ResolveCustomerResult } from "../models/models_0"; +import type { ResolveCustomerRequest, ResolveCustomerResult } from "../models/models_0"; import { ResolveCustomer } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-metering/src/endpoint/EndpointParameters.ts b/clients/client-marketplace-metering/src/endpoint/EndpointParameters.ts index f993a6fcb2e4e..b873abababaa3 100644 --- a/clients/client-marketplace-metering/src/endpoint/EndpointParameters.ts +++ b/clients/client-marketplace-metering/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-marketplace-metering/src/endpoint/endpointResolver.ts b/clients/client-marketplace-metering/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-marketplace-metering/src/endpoint/endpointResolver.ts +++ b/clients/client-marketplace-metering/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-marketplace-metering/src/extensionConfiguration.ts b/clients/client-marketplace-metering/src/extensionConfiguration.ts index 8b247c3193f34..1950e66448fe6 100644 --- a/clients/client-marketplace-metering/src/extensionConfiguration.ts +++ b/clients/client-marketplace-metering/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-marketplace-metering/src/models/MarketplaceMeteringServiceException.ts b/clients/client-marketplace-metering/src/models/MarketplaceMeteringServiceException.ts index 8299b11947c0e..e846ea4881154 100644 --- a/clients/client-marketplace-metering/src/models/MarketplaceMeteringServiceException.ts +++ b/clients/client-marketplace-metering/src/models/MarketplaceMeteringServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-marketplace-metering/src/models/errors.ts b/clients/client-marketplace-metering/src/models/errors.ts index e708f05c6e08e..16af4014d761d 100644 --- a/clients/client-marketplace-metering/src/models/errors.ts +++ b/clients/client-marketplace-metering/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MarketplaceMeteringServiceException as __BaseException } from "./MarketplaceMeteringServiceException"; diff --git a/clients/client-marketplace-metering/src/runtimeConfig.browser.ts b/clients/client-marketplace-metering/src/runtimeConfig.browser.ts index e47c7256b5b55..c8218eb14aca8 100644 --- a/clients/client-marketplace-metering/src/runtimeConfig.browser.ts +++ b/clients/client-marketplace-metering/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceMeteringClientConfig } from "./MarketplaceMeteringClient"; + +import type { MarketplaceMeteringClientConfig } from "./MarketplaceMeteringClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-marketplace-metering/src/runtimeConfig.native.ts b/clients/client-marketplace-metering/src/runtimeConfig.native.ts index bddaccc2e8b37..944808950a02b 100644 --- a/clients/client-marketplace-metering/src/runtimeConfig.native.ts +++ b/clients/client-marketplace-metering/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MarketplaceMeteringClientConfig } from "./MarketplaceMeteringClient"; +import type { MarketplaceMeteringClientConfig } from "./MarketplaceMeteringClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-marketplace-metering/src/runtimeConfig.shared.ts b/clients/client-marketplace-metering/src/runtimeConfig.shared.ts index 02dd1cf9bd144..24f7f6172c3fa 100644 --- a/clients/client-marketplace-metering/src/runtimeConfig.shared.ts +++ b/clients/client-marketplace-metering/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMarketplaceMeteringHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MarketplaceMeteringClientConfig } from "./MarketplaceMeteringClient"; +import type { MarketplaceMeteringClientConfig } from "./MarketplaceMeteringClient"; /** * @internal diff --git a/clients/client-marketplace-metering/src/runtimeConfig.ts b/clients/client-marketplace-metering/src/runtimeConfig.ts index 3cbe6bd2c8919..32153d1ac8e06 100644 --- a/clients/client-marketplace-metering/src/runtimeConfig.ts +++ b/clients/client-marketplace-metering/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceMeteringClientConfig } from "./MarketplaceMeteringClient"; + +import type { MarketplaceMeteringClientConfig } from "./MarketplaceMeteringClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-marketplace-metering/src/runtimeExtensions.ts b/clients/client-marketplace-metering/src/runtimeExtensions.ts index dca8ff12c059f..dac8015b59bf2 100644 --- a/clients/client-marketplace-metering/src/runtimeExtensions.ts +++ b/clients/client-marketplace-metering/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MarketplaceMeteringExtensionConfiguration } from "./extensionConfiguration"; +import type { MarketplaceMeteringExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-marketplace-metering/src/schemas/schemas_0.ts b/clients/client-marketplace-metering/src/schemas/schemas_0.ts index 5d90ec1b8306e..48b72241febee 100644 --- a/clients/client-marketplace-metering/src/schemas/schemas_0.ts +++ b/clients/client-marketplace-metering/src/schemas/schemas_0.ts @@ -70,7 +70,7 @@ const n0 = "com.amazonaws.marketplacemetering"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { CustomerNotEntitledException as __CustomerNotEntitledException, diff --git a/clients/client-marketplace-reporting/package.json b/clients/client-marketplace-reporting/package.json index b17d4a0717907..4eaa2c990ae4e 100644 --- a/clients/client-marketplace-reporting/package.json +++ b/clients/client-marketplace-reporting/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-marketplace-reporting/src/MarketplaceReporting.ts b/clients/client-marketplace-reporting/src/MarketplaceReporting.ts index 4a6ba675953f9..76918aa01b799 100644 --- a/clients/client-marketplace-reporting/src/MarketplaceReporting.ts +++ b/clients/client-marketplace-reporting/src/MarketplaceReporting.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetBuyerDashboardCommand, GetBuyerDashboardCommandInput, GetBuyerDashboardCommandOutput, } from "./commands/GetBuyerDashboardCommand"; -import { MarketplaceReportingClient, MarketplaceReportingClientConfig } from "./MarketplaceReportingClient"; +import { MarketplaceReportingClient } from "./MarketplaceReportingClient"; const commands = { GetBuyerDashboardCommand, diff --git a/clients/client-marketplace-reporting/src/MarketplaceReportingClient.ts b/clients/client-marketplace-reporting/src/MarketplaceReportingClient.ts index 46ee7de8ff3cc..affff65e1a4a5 100644 --- a/clients/client-marketplace-reporting/src/MarketplaceReportingClient.ts +++ b/clients/client-marketplace-reporting/src/MarketplaceReportingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMarketplaceReportingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetBuyerDashboardCommandInput, GetBuyerDashboardCommandOutput } from "./commands/GetBuyerDashboardCommand"; @@ -65,7 +74,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-marketplace-reporting/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-marketplace-reporting/src/auth/httpAuthExtensionConfiguration.ts index 031bb6b0d8ab1..4e2b57d77f3c5 100644 --- a/clients/client-marketplace-reporting/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-marketplace-reporting/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MarketplaceReportingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MarketplaceReportingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-marketplace-reporting/src/auth/httpAuthSchemeProvider.ts b/clients/client-marketplace-reporting/src/auth/httpAuthSchemeProvider.ts index 8ecbd17821679..178d0b088e92d 100644 --- a/clients/client-marketplace-reporting/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-marketplace-reporting/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type MarketplaceReportingClientResolvedConfig, MarketplaceReportingClientConfig, - MarketplaceReportingClientResolvedConfig, } from "../MarketplaceReportingClient"; /** diff --git a/clients/client-marketplace-reporting/src/commands/GetBuyerDashboardCommand.ts b/clients/client-marketplace-reporting/src/commands/GetBuyerDashboardCommand.ts index 066124a3d6ce8..90f92d960ffe9 100644 --- a/clients/client-marketplace-reporting/src/commands/GetBuyerDashboardCommand.ts +++ b/clients/client-marketplace-reporting/src/commands/GetBuyerDashboardCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MarketplaceReportingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MarketplaceReportingClient"; -import { GetBuyerDashboardInput, GetBuyerDashboardOutput } from "../models/models_0"; +import type { GetBuyerDashboardInput, GetBuyerDashboardOutput } from "../models/models_0"; import { GetBuyerDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-marketplace-reporting/src/endpoint/EndpointParameters.ts b/clients/client-marketplace-reporting/src/endpoint/EndpointParameters.ts index c0320203c2737..5a21199cee08b 100644 --- a/clients/client-marketplace-reporting/src/endpoint/EndpointParameters.ts +++ b/clients/client-marketplace-reporting/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-marketplace-reporting/src/endpoint/endpointResolver.ts b/clients/client-marketplace-reporting/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-marketplace-reporting/src/endpoint/endpointResolver.ts +++ b/clients/client-marketplace-reporting/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-marketplace-reporting/src/extensionConfiguration.ts b/clients/client-marketplace-reporting/src/extensionConfiguration.ts index bef0c821b9bd6..e46f9bfdd3f23 100644 --- a/clients/client-marketplace-reporting/src/extensionConfiguration.ts +++ b/clients/client-marketplace-reporting/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-marketplace-reporting/src/models/MarketplaceReportingServiceException.ts b/clients/client-marketplace-reporting/src/models/MarketplaceReportingServiceException.ts index da9b018621dfd..fe58c8cdec45e 100644 --- a/clients/client-marketplace-reporting/src/models/MarketplaceReportingServiceException.ts +++ b/clients/client-marketplace-reporting/src/models/MarketplaceReportingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-marketplace-reporting/src/models/errors.ts b/clients/client-marketplace-reporting/src/models/errors.ts index 5f540395781b7..064d765f8c155 100644 --- a/clients/client-marketplace-reporting/src/models/errors.ts +++ b/clients/client-marketplace-reporting/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MarketplaceReportingServiceException as __BaseException } from "./MarketplaceReportingServiceException"; diff --git a/clients/client-marketplace-reporting/src/runtimeConfig.browser.ts b/clients/client-marketplace-reporting/src/runtimeConfig.browser.ts index 0c7758df9363e..9aa871bb8ef7c 100644 --- a/clients/client-marketplace-reporting/src/runtimeConfig.browser.ts +++ b/clients/client-marketplace-reporting/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceReportingClientConfig } from "./MarketplaceReportingClient"; + +import type { MarketplaceReportingClientConfig } from "./MarketplaceReportingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-marketplace-reporting/src/runtimeConfig.native.ts b/clients/client-marketplace-reporting/src/runtimeConfig.native.ts index 7aa08a491cbde..ee8afb02ca785 100644 --- a/clients/client-marketplace-reporting/src/runtimeConfig.native.ts +++ b/clients/client-marketplace-reporting/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MarketplaceReportingClientConfig } from "./MarketplaceReportingClient"; +import type { MarketplaceReportingClientConfig } from "./MarketplaceReportingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-marketplace-reporting/src/runtimeConfig.shared.ts b/clients/client-marketplace-reporting/src/runtimeConfig.shared.ts index 60d826e92c749..e07977ab879b1 100644 --- a/clients/client-marketplace-reporting/src/runtimeConfig.shared.ts +++ b/clients/client-marketplace-reporting/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMarketplaceReportingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MarketplaceReportingClientConfig } from "./MarketplaceReportingClient"; +import type { MarketplaceReportingClientConfig } from "./MarketplaceReportingClient"; /** * @internal diff --git a/clients/client-marketplace-reporting/src/runtimeConfig.ts b/clients/client-marketplace-reporting/src/runtimeConfig.ts index 105eb64eebaaa..8fe8feacdb525 100644 --- a/clients/client-marketplace-reporting/src/runtimeConfig.ts +++ b/clients/client-marketplace-reporting/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MarketplaceReportingClientConfig } from "./MarketplaceReportingClient"; + +import type { MarketplaceReportingClientConfig } from "./MarketplaceReportingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-marketplace-reporting/src/runtimeExtensions.ts b/clients/client-marketplace-reporting/src/runtimeExtensions.ts index 826ef2876e76a..85d13fb40a3c4 100644 --- a/clients/client-marketplace-reporting/src/runtimeExtensions.ts +++ b/clients/client-marketplace-reporting/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MarketplaceReportingExtensionConfiguration } from "./extensionConfiguration"; +import type { MarketplaceReportingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-marketplace-reporting/src/schemas/schemas_0.ts b/clients/client-marketplace-reporting/src/schemas/schemas_0.ts index 0416caf52ec8b..1365581df47cd 100644 --- a/clients/client-marketplace-reporting/src/schemas/schemas_0.ts +++ b/clients/client-marketplace-reporting/src/schemas/schemas_0.ts @@ -19,7 +19,7 @@ const n0 = "com.amazonaws.marketplacereporting"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-mediaconnect/package.json b/clients/client-mediaconnect/package.json index 49209791c9a76..a6435477b46c1 100644 --- a/clients/client-mediaconnect/package.json +++ b/clients/client-mediaconnect/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mediaconnect/src/MediaConnect.ts b/clients/client-mediaconnect/src/MediaConnect.ts index 5082f881f837a..0e1244ff62d27 100644 --- a/clients/client-mediaconnect/src/MediaConnect.ts +++ b/clients/client-mediaconnect/src/MediaConnect.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddBridgeOutputsCommand, @@ -380,7 +380,7 @@ import { UpdateRouterOutputCommandInput, UpdateRouterOutputCommandOutput, } from "./commands/UpdateRouterOutputCommand"; -import { MediaConnectClient, MediaConnectClientConfig } from "./MediaConnectClient"; +import { MediaConnectClient } from "./MediaConnectClient"; const commands = { AddBridgeOutputsCommand, diff --git a/clients/client-mediaconnect/src/MediaConnectClient.ts b/clients/client-mediaconnect/src/MediaConnectClient.ts index 42572aa90026c..ee2ce6f5fe924 100644 --- a/clients/client-mediaconnect/src/MediaConnectClient.ts +++ b/clients/client-mediaconnect/src/MediaConnectClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMediaConnectHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput } from "./commands/AddBridgeOutputsCommand"; @@ -233,7 +242,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mediaconnect/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mediaconnect/src/auth/httpAuthExtensionConfiguration.ts index e15858e532ea6..7ff6a6169e95c 100644 --- a/clients/client-mediaconnect/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mediaconnect/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MediaConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MediaConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mediaconnect/src/auth/httpAuthSchemeProvider.ts b/clients/client-mediaconnect/src/auth/httpAuthSchemeProvider.ts index 019b50df3977f..d52a0d86dbd67 100644 --- a/clients/client-mediaconnect/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mediaconnect/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MediaConnectClientConfig, MediaConnectClientResolvedConfig } from "../MediaConnectClient"; +import { type MediaConnectClientResolvedConfig, MediaConnectClientConfig } from "../MediaConnectClient"; /** * @internal diff --git a/clients/client-mediaconnect/src/commands/AddBridgeOutputsCommand.ts b/clients/client-mediaconnect/src/commands/AddBridgeOutputsCommand.ts index 53e7f37bb814d..a97cfad5ca925 100644 --- a/clients/client-mediaconnect/src/commands/AddBridgeOutputsCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddBridgeOutputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { AddBridgeOutputsRequest, AddBridgeOutputsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { AddBridgeOutputsRequest, AddBridgeOutputsResponse } from "../models/models_0"; import { AddBridgeOutputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/AddBridgeSourcesCommand.ts b/clients/client-mediaconnect/src/commands/AddBridgeSourcesCommand.ts index 0030dd7c771a0..4c9587fa71843 100644 --- a/clients/client-mediaconnect/src/commands/AddBridgeSourcesCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddBridgeSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { AddBridgeSourcesRequest, AddBridgeSourcesResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { AddBridgeSourcesRequest, AddBridgeSourcesResponse } from "../models/models_0"; import { AddBridgeSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/AddFlowMediaStreamsCommand.ts b/clients/client-mediaconnect/src/commands/AddFlowMediaStreamsCommand.ts index ab9d4327da340..4ebee341b01e9 100644 --- a/clients/client-mediaconnect/src/commands/AddFlowMediaStreamsCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddFlowMediaStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { AddFlowMediaStreamsRequest, AddFlowMediaStreamsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { AddFlowMediaStreamsRequest, AddFlowMediaStreamsResponse } from "../models/models_0"; import { AddFlowMediaStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/AddFlowOutputsCommand.ts b/clients/client-mediaconnect/src/commands/AddFlowOutputsCommand.ts index c2805b6fa42e3..bac383b8bb1eb 100644 --- a/clients/client-mediaconnect/src/commands/AddFlowOutputsCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddFlowOutputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { AddFlowOutputsRequest, AddFlowOutputsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { AddFlowOutputsRequest, AddFlowOutputsResponse } from "../models/models_0"; import { AddFlowOutputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/AddFlowSourcesCommand.ts b/clients/client-mediaconnect/src/commands/AddFlowSourcesCommand.ts index 8c4ad885ccfd1..16d7178481bef 100644 --- a/clients/client-mediaconnect/src/commands/AddFlowSourcesCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddFlowSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { AddFlowSourcesRequest, AddFlowSourcesResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { AddFlowSourcesRequest, AddFlowSourcesResponse } from "../models/models_0"; import { AddFlowSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/AddFlowVpcInterfacesCommand.ts b/clients/client-mediaconnect/src/commands/AddFlowVpcInterfacesCommand.ts index db8a8f7874bf1..40a57772c62af 100644 --- a/clients/client-mediaconnect/src/commands/AddFlowVpcInterfacesCommand.ts +++ b/clients/client-mediaconnect/src/commands/AddFlowVpcInterfacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { AddFlowVpcInterfacesRequest, AddFlowVpcInterfacesResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { AddFlowVpcInterfacesRequest, AddFlowVpcInterfacesResponse } from "../models/models_0"; import { AddFlowVpcInterfaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/BatchGetRouterInputCommand.ts b/clients/client-mediaconnect/src/commands/BatchGetRouterInputCommand.ts index c9e2dfacfb6d3..451d01dc4ca85 100644 --- a/clients/client-mediaconnect/src/commands/BatchGetRouterInputCommand.ts +++ b/clients/client-mediaconnect/src/commands/BatchGetRouterInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { BatchGetRouterInputRequest, BatchGetRouterInputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { BatchGetRouterInputRequest, BatchGetRouterInputResponse } from "../models/models_0"; import { BatchGetRouterInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/BatchGetRouterNetworkInterfaceCommand.ts b/clients/client-mediaconnect/src/commands/BatchGetRouterNetworkInterfaceCommand.ts index 51c864adf0632..cf9f7206523bd 100644 --- a/clients/client-mediaconnect/src/commands/BatchGetRouterNetworkInterfaceCommand.ts +++ b/clients/client-mediaconnect/src/commands/BatchGetRouterNetworkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { BatchGetRouterNetworkInterfaceRequest, BatchGetRouterNetworkInterfaceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { BatchGetRouterNetworkInterfaceRequest, BatchGetRouterNetworkInterfaceResponse } from "../models/models_0"; import { BatchGetRouterNetworkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/BatchGetRouterOutputCommand.ts b/clients/client-mediaconnect/src/commands/BatchGetRouterOutputCommand.ts index 40e58de847f53..56a063cce4e65 100644 --- a/clients/client-mediaconnect/src/commands/BatchGetRouterOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/BatchGetRouterOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { BatchGetRouterOutputRequest, BatchGetRouterOutputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { BatchGetRouterOutputRequest, BatchGetRouterOutputResponse } from "../models/models_0"; import { BatchGetRouterOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/CreateBridgeCommand.ts b/clients/client-mediaconnect/src/commands/CreateBridgeCommand.ts index c19022e527716..be7ec8bba6a77 100644 --- a/clients/client-mediaconnect/src/commands/CreateBridgeCommand.ts +++ b/clients/client-mediaconnect/src/commands/CreateBridgeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { CreateBridgeRequest, CreateBridgeResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { CreateBridgeRequest, CreateBridgeResponse } from "../models/models_0"; import { CreateBridge } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/CreateFlowCommand.ts b/clients/client-mediaconnect/src/commands/CreateFlowCommand.ts index 8fc95c940a719..53a35f5222d29 100644 --- a/clients/client-mediaconnect/src/commands/CreateFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/CreateFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { CreateFlowRequest, CreateFlowResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { CreateFlowRequest, CreateFlowResponse } from "../models/models_0"; import { CreateFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/CreateGatewayCommand.ts b/clients/client-mediaconnect/src/commands/CreateGatewayCommand.ts index f63763ef7796e..db94babc66e0c 100644 --- a/clients/client-mediaconnect/src/commands/CreateGatewayCommand.ts +++ b/clients/client-mediaconnect/src/commands/CreateGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { CreateGatewayRequest, CreateGatewayResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { CreateGatewayRequest, CreateGatewayResponse } from "../models/models_0"; import { CreateGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/CreateRouterInputCommand.ts b/clients/client-mediaconnect/src/commands/CreateRouterInputCommand.ts index 9411841cba02d..e2a2c245dd54e 100644 --- a/clients/client-mediaconnect/src/commands/CreateRouterInputCommand.ts +++ b/clients/client-mediaconnect/src/commands/CreateRouterInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { CreateRouterInputRequest, CreateRouterInputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { CreateRouterInputRequest, CreateRouterInputResponse } from "../models/models_0"; import { CreateRouterInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/CreateRouterNetworkInterfaceCommand.ts b/clients/client-mediaconnect/src/commands/CreateRouterNetworkInterfaceCommand.ts index cfe775b3a66ed..13b4c061cc122 100644 --- a/clients/client-mediaconnect/src/commands/CreateRouterNetworkInterfaceCommand.ts +++ b/clients/client-mediaconnect/src/commands/CreateRouterNetworkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { CreateRouterNetworkInterfaceRequest, CreateRouterNetworkInterfaceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { CreateRouterNetworkInterfaceRequest, CreateRouterNetworkInterfaceResponse } from "../models/models_0"; import { CreateRouterNetworkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/CreateRouterOutputCommand.ts b/clients/client-mediaconnect/src/commands/CreateRouterOutputCommand.ts index a9a435569bfe2..56fa211353c7a 100644 --- a/clients/client-mediaconnect/src/commands/CreateRouterOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/CreateRouterOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { CreateRouterOutputRequest, CreateRouterOutputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { CreateRouterOutputRequest, CreateRouterOutputResponse } from "../models/models_0"; import { CreateRouterOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DeleteBridgeCommand.ts b/clients/client-mediaconnect/src/commands/DeleteBridgeCommand.ts index 3cf4a236683ea..31a1b355dc652 100644 --- a/clients/client-mediaconnect/src/commands/DeleteBridgeCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeleteBridgeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DeleteBridgeRequest, DeleteBridgeResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DeleteBridgeRequest, DeleteBridgeResponse } from "../models/models_0"; import { DeleteBridge } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DeleteFlowCommand.ts b/clients/client-mediaconnect/src/commands/DeleteFlowCommand.ts index e63e7881e0a18..098cecadf5e19 100644 --- a/clients/client-mediaconnect/src/commands/DeleteFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeleteFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0"; import { DeleteFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DeleteGatewayCommand.ts b/clients/client-mediaconnect/src/commands/DeleteGatewayCommand.ts index 97c142e276bf0..96ddbaadb3dbf 100644 --- a/clients/client-mediaconnect/src/commands/DeleteGatewayCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeleteGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DeleteGatewayRequest, DeleteGatewayResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DeleteGatewayRequest, DeleteGatewayResponse } from "../models/models_0"; import { DeleteGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DeleteRouterInputCommand.ts b/clients/client-mediaconnect/src/commands/DeleteRouterInputCommand.ts index 337a5a03cdf2a..189989421a192 100644 --- a/clients/client-mediaconnect/src/commands/DeleteRouterInputCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeleteRouterInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DeleteRouterInputRequest, DeleteRouterInputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DeleteRouterInputRequest, DeleteRouterInputResponse } from "../models/models_0"; import { DeleteRouterInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DeleteRouterNetworkInterfaceCommand.ts b/clients/client-mediaconnect/src/commands/DeleteRouterNetworkInterfaceCommand.ts index d199599323f8c..d0be6c71f587d 100644 --- a/clients/client-mediaconnect/src/commands/DeleteRouterNetworkInterfaceCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeleteRouterNetworkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DeleteRouterNetworkInterfaceRequest, DeleteRouterNetworkInterfaceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DeleteRouterNetworkInterfaceRequest, DeleteRouterNetworkInterfaceResponse } from "../models/models_0"; import { DeleteRouterNetworkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DeleteRouterOutputCommand.ts b/clients/client-mediaconnect/src/commands/DeleteRouterOutputCommand.ts index f031d4bbe0127..f42badf2d94ee 100644 --- a/clients/client-mediaconnect/src/commands/DeleteRouterOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeleteRouterOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DeleteRouterOutputRequest, DeleteRouterOutputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DeleteRouterOutputRequest, DeleteRouterOutputResponse } from "../models/models_0"; import { DeleteRouterOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DeregisterGatewayInstanceCommand.ts b/clients/client-mediaconnect/src/commands/DeregisterGatewayInstanceCommand.ts index 2499c73f67fc1..e4c265db379c4 100644 --- a/clients/client-mediaconnect/src/commands/DeregisterGatewayInstanceCommand.ts +++ b/clients/client-mediaconnect/src/commands/DeregisterGatewayInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DeregisterGatewayInstanceRequest, DeregisterGatewayInstanceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DeregisterGatewayInstanceRequest, DeregisterGatewayInstanceResponse } from "../models/models_0"; import { DeregisterGatewayInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DescribeBridgeCommand.ts b/clients/client-mediaconnect/src/commands/DescribeBridgeCommand.ts index f690aaa732dad..5464521dd8c45 100644 --- a/clients/client-mediaconnect/src/commands/DescribeBridgeCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeBridgeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DescribeBridgeRequest, DescribeBridgeResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DescribeBridgeRequest, DescribeBridgeResponse } from "../models/models_0"; import { DescribeBridge } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DescribeFlowCommand.ts b/clients/client-mediaconnect/src/commands/DescribeFlowCommand.ts index 4723717204a32..5ac1003bb5c1b 100644 --- a/clients/client-mediaconnect/src/commands/DescribeFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0"; import { DescribeFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DescribeFlowSourceMetadataCommand.ts b/clients/client-mediaconnect/src/commands/DescribeFlowSourceMetadataCommand.ts index 137298f5ee50f..038392b21ade0 100644 --- a/clients/client-mediaconnect/src/commands/DescribeFlowSourceMetadataCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeFlowSourceMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DescribeFlowSourceMetadataRequest, DescribeFlowSourceMetadataResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DescribeFlowSourceMetadataRequest, DescribeFlowSourceMetadataResponse } from "../models/models_0"; import { DescribeFlowSourceMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DescribeFlowSourceThumbnailCommand.ts b/clients/client-mediaconnect/src/commands/DescribeFlowSourceThumbnailCommand.ts index f517a216dc644..bdd96e2b3a984 100644 --- a/clients/client-mediaconnect/src/commands/DescribeFlowSourceThumbnailCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeFlowSourceThumbnailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DescribeFlowSourceThumbnailRequest, DescribeFlowSourceThumbnailResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DescribeFlowSourceThumbnailRequest, DescribeFlowSourceThumbnailResponse } from "../models/models_0"; import { DescribeFlowSourceThumbnail } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DescribeGatewayCommand.ts b/clients/client-mediaconnect/src/commands/DescribeGatewayCommand.ts index 8c70775fd0410..0e732704e1d80 100644 --- a/clients/client-mediaconnect/src/commands/DescribeGatewayCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DescribeGatewayRequest, DescribeGatewayResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DescribeGatewayRequest, DescribeGatewayResponse } from "../models/models_0"; import { DescribeGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DescribeGatewayInstanceCommand.ts b/clients/client-mediaconnect/src/commands/DescribeGatewayInstanceCommand.ts index bedf767ee1208..b61ef04ce9052 100644 --- a/clients/client-mediaconnect/src/commands/DescribeGatewayInstanceCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeGatewayInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DescribeGatewayInstanceRequest, DescribeGatewayInstanceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DescribeGatewayInstanceRequest, DescribeGatewayInstanceResponse } from "../models/models_0"; import { DescribeGatewayInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DescribeOfferingCommand.ts b/clients/client-mediaconnect/src/commands/DescribeOfferingCommand.ts index 5f62f0ddb4001..f4a82772b224f 100644 --- a/clients/client-mediaconnect/src/commands/DescribeOfferingCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DescribeOfferingRequest, DescribeOfferingResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DescribeOfferingRequest, DescribeOfferingResponse } from "../models/models_0"; import { DescribeOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/DescribeReservationCommand.ts b/clients/client-mediaconnect/src/commands/DescribeReservationCommand.ts index 6c8594a50063e..97fde157ae0ae 100644 --- a/clients/client-mediaconnect/src/commands/DescribeReservationCommand.ts +++ b/clients/client-mediaconnect/src/commands/DescribeReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { DescribeReservationRequest, DescribeReservationResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { DescribeReservationRequest, DescribeReservationResponse } from "../models/models_0"; import { DescribeReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/GetRouterInputCommand.ts b/clients/client-mediaconnect/src/commands/GetRouterInputCommand.ts index 1268c1ca93af7..2aaf3dfdae564 100644 --- a/clients/client-mediaconnect/src/commands/GetRouterInputCommand.ts +++ b/clients/client-mediaconnect/src/commands/GetRouterInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { GetRouterInputRequest, GetRouterInputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { GetRouterInputRequest, GetRouterInputResponse } from "../models/models_0"; import { GetRouterInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/GetRouterInputSourceMetadataCommand.ts b/clients/client-mediaconnect/src/commands/GetRouterInputSourceMetadataCommand.ts index 75a1a67c13b94..a762b43eeb643 100644 --- a/clients/client-mediaconnect/src/commands/GetRouterInputSourceMetadataCommand.ts +++ b/clients/client-mediaconnect/src/commands/GetRouterInputSourceMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { GetRouterInputSourceMetadataRequest, GetRouterInputSourceMetadataResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { GetRouterInputSourceMetadataRequest, GetRouterInputSourceMetadataResponse } from "../models/models_0"; import { GetRouterInputSourceMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/GetRouterInputThumbnailCommand.ts b/clients/client-mediaconnect/src/commands/GetRouterInputThumbnailCommand.ts index 7afc815f771a6..a0a24bac6e8ac 100644 --- a/clients/client-mediaconnect/src/commands/GetRouterInputThumbnailCommand.ts +++ b/clients/client-mediaconnect/src/commands/GetRouterInputThumbnailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { GetRouterInputThumbnailRequest, GetRouterInputThumbnailResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { GetRouterInputThumbnailRequest, GetRouterInputThumbnailResponse } from "../models/models_0"; import { GetRouterInputThumbnail } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/GetRouterNetworkInterfaceCommand.ts b/clients/client-mediaconnect/src/commands/GetRouterNetworkInterfaceCommand.ts index c5f1e6f77c543..b932f89270660 100644 --- a/clients/client-mediaconnect/src/commands/GetRouterNetworkInterfaceCommand.ts +++ b/clients/client-mediaconnect/src/commands/GetRouterNetworkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { GetRouterNetworkInterfaceRequest, GetRouterNetworkInterfaceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { GetRouterNetworkInterfaceRequest, GetRouterNetworkInterfaceResponse } from "../models/models_0"; import { GetRouterNetworkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/GetRouterOutputCommand.ts b/clients/client-mediaconnect/src/commands/GetRouterOutputCommand.ts index d0fbd750b637e..b2ddd655aae53 100644 --- a/clients/client-mediaconnect/src/commands/GetRouterOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/GetRouterOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { GetRouterOutputRequest, GetRouterOutputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { GetRouterOutputRequest, GetRouterOutputResponse } from "../models/models_0"; import { GetRouterOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/GrantFlowEntitlementsCommand.ts b/clients/client-mediaconnect/src/commands/GrantFlowEntitlementsCommand.ts index 4a3ea4127dacd..3ff5b19584a33 100644 --- a/clients/client-mediaconnect/src/commands/GrantFlowEntitlementsCommand.ts +++ b/clients/client-mediaconnect/src/commands/GrantFlowEntitlementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { GrantFlowEntitlementsRequest, GrantFlowEntitlementsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { GrantFlowEntitlementsRequest, GrantFlowEntitlementsResponse } from "../models/models_0"; import { GrantFlowEntitlements } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListBridgesCommand.ts b/clients/client-mediaconnect/src/commands/ListBridgesCommand.ts index 76d7d03cf3b05..a967b401e3a46 100644 --- a/clients/client-mediaconnect/src/commands/ListBridgesCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListBridgesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListBridgesRequest, ListBridgesResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListBridgesRequest, ListBridgesResponse } from "../models/models_0"; import { ListBridges } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListEntitlementsCommand.ts b/clients/client-mediaconnect/src/commands/ListEntitlementsCommand.ts index d25e473a81500..c5cbbc9a7b739 100644 --- a/clients/client-mediaconnect/src/commands/ListEntitlementsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListEntitlementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListEntitlementsRequest, ListEntitlementsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListEntitlementsRequest, ListEntitlementsResponse } from "../models/models_0"; import { ListEntitlements } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListFlowsCommand.ts b/clients/client-mediaconnect/src/commands/ListFlowsCommand.ts index 598c32857dcd2..5bf8146d2f187 100644 --- a/clients/client-mediaconnect/src/commands/ListFlowsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListFlowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListFlowsRequest, ListFlowsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListFlowsRequest, ListFlowsResponse } from "../models/models_0"; import { ListFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListGatewayInstancesCommand.ts b/clients/client-mediaconnect/src/commands/ListGatewayInstancesCommand.ts index 42ace3061d213..b7c4d9b0be9b8 100644 --- a/clients/client-mediaconnect/src/commands/ListGatewayInstancesCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListGatewayInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListGatewayInstancesRequest, ListGatewayInstancesResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListGatewayInstancesRequest, ListGatewayInstancesResponse } from "../models/models_0"; import { ListGatewayInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListGatewaysCommand.ts b/clients/client-mediaconnect/src/commands/ListGatewaysCommand.ts index fba2311667526..51e187265cb24 100644 --- a/clients/client-mediaconnect/src/commands/ListGatewaysCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListGatewaysRequest, ListGatewaysResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListGatewaysRequest, ListGatewaysResponse } from "../models/models_0"; import { ListGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListOfferingsCommand.ts b/clients/client-mediaconnect/src/commands/ListOfferingsCommand.ts index d2a2702964af6..86ab03bc68611 100644 --- a/clients/client-mediaconnect/src/commands/ListOfferingsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListOfferingsRequest, ListOfferingsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListOfferingsRequest, ListOfferingsResponse } from "../models/models_0"; import { ListOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListReservationsCommand.ts b/clients/client-mediaconnect/src/commands/ListReservationsCommand.ts index 32492b25a556c..66f53dded6572 100644 --- a/clients/client-mediaconnect/src/commands/ListReservationsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListReservationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListReservationsRequest, ListReservationsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListReservationsRequest, ListReservationsResponse } from "../models/models_0"; import { ListReservations } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListRouterInputsCommand.ts b/clients/client-mediaconnect/src/commands/ListRouterInputsCommand.ts index 95ff4cb8f55a1..a196c5f72a232 100644 --- a/clients/client-mediaconnect/src/commands/ListRouterInputsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListRouterInputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListRouterInputsRequest, ListRouterInputsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListRouterInputsRequest, ListRouterInputsResponse } from "../models/models_0"; import { ListRouterInputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListRouterNetworkInterfacesCommand.ts b/clients/client-mediaconnect/src/commands/ListRouterNetworkInterfacesCommand.ts index edb3a4fd76c23..50f597979ad9b 100644 --- a/clients/client-mediaconnect/src/commands/ListRouterNetworkInterfacesCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListRouterNetworkInterfacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListRouterNetworkInterfacesRequest, ListRouterNetworkInterfacesResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListRouterNetworkInterfacesRequest, ListRouterNetworkInterfacesResponse } from "../models/models_0"; import { ListRouterNetworkInterfaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListRouterOutputsCommand.ts b/clients/client-mediaconnect/src/commands/ListRouterOutputsCommand.ts index 746bd1743b1e0..196c4557064ba 100644 --- a/clients/client-mediaconnect/src/commands/ListRouterOutputsCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListRouterOutputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListRouterOutputsRequest, ListRouterOutputsResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListRouterOutputsRequest, ListRouterOutputsResponse } from "../models/models_0"; import { ListRouterOutputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListTagsForGlobalResourceCommand.ts b/clients/client-mediaconnect/src/commands/ListTagsForGlobalResourceCommand.ts index fe72506532f2b..750521bc6c2b7 100644 --- a/clients/client-mediaconnect/src/commands/ListTagsForGlobalResourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListTagsForGlobalResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListTagsForGlobalResourceRequest, ListTagsForGlobalResourceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListTagsForGlobalResourceRequest, ListTagsForGlobalResourceResponse } from "../models/models_0"; import { ListTagsForGlobalResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediaconnect/src/commands/ListTagsForResourceCommand.ts index cd68575381589..44457339f3357 100644 --- a/clients/client-mediaconnect/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/PurchaseOfferingCommand.ts b/clients/client-mediaconnect/src/commands/PurchaseOfferingCommand.ts index d4e0b22fdeb33..e19c6276ed19b 100644 --- a/clients/client-mediaconnect/src/commands/PurchaseOfferingCommand.ts +++ b/clients/client-mediaconnect/src/commands/PurchaseOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { PurchaseOfferingRequest, PurchaseOfferingResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { PurchaseOfferingRequest, PurchaseOfferingResponse } from "../models/models_0"; import { PurchaseOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/RemoveBridgeOutputCommand.ts b/clients/client-mediaconnect/src/commands/RemoveBridgeOutputCommand.ts index 3622edb9e6b41..4cee01c6ffee3 100644 --- a/clients/client-mediaconnect/src/commands/RemoveBridgeOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveBridgeOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { RemoveBridgeOutputRequest, RemoveBridgeOutputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { RemoveBridgeOutputRequest, RemoveBridgeOutputResponse } from "../models/models_0"; import { RemoveBridgeOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/RemoveBridgeSourceCommand.ts b/clients/client-mediaconnect/src/commands/RemoveBridgeSourceCommand.ts index ae6804a6fe765..5f5485cfd9d38 100644 --- a/clients/client-mediaconnect/src/commands/RemoveBridgeSourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveBridgeSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { RemoveBridgeSourceRequest, RemoveBridgeSourceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { RemoveBridgeSourceRequest, RemoveBridgeSourceResponse } from "../models/models_0"; import { RemoveBridgeSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/RemoveFlowMediaStreamCommand.ts b/clients/client-mediaconnect/src/commands/RemoveFlowMediaStreamCommand.ts index 2acafa3cb24a3..86405bdbc3f9f 100644 --- a/clients/client-mediaconnect/src/commands/RemoveFlowMediaStreamCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveFlowMediaStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { RemoveFlowMediaStreamRequest, RemoveFlowMediaStreamResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { RemoveFlowMediaStreamRequest, RemoveFlowMediaStreamResponse } from "../models/models_0"; import { RemoveFlowMediaStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/RemoveFlowOutputCommand.ts b/clients/client-mediaconnect/src/commands/RemoveFlowOutputCommand.ts index d7b12dc6ce102..d28c7acb12ccd 100644 --- a/clients/client-mediaconnect/src/commands/RemoveFlowOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveFlowOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { RemoveFlowOutputRequest, RemoveFlowOutputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { RemoveFlowOutputRequest, RemoveFlowOutputResponse } from "../models/models_0"; import { RemoveFlowOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/RemoveFlowSourceCommand.ts b/clients/client-mediaconnect/src/commands/RemoveFlowSourceCommand.ts index 46eb0808cf3f2..d78ae98824a0b 100644 --- a/clients/client-mediaconnect/src/commands/RemoveFlowSourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveFlowSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { RemoveFlowSourceRequest, RemoveFlowSourceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { RemoveFlowSourceRequest, RemoveFlowSourceResponse } from "../models/models_0"; import { RemoveFlowSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/RemoveFlowVpcInterfaceCommand.ts b/clients/client-mediaconnect/src/commands/RemoveFlowVpcInterfaceCommand.ts index 0b41dd9ef746d..cc88481e05ac3 100644 --- a/clients/client-mediaconnect/src/commands/RemoveFlowVpcInterfaceCommand.ts +++ b/clients/client-mediaconnect/src/commands/RemoveFlowVpcInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { RemoveFlowVpcInterfaceRequest, RemoveFlowVpcInterfaceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { RemoveFlowVpcInterfaceRequest, RemoveFlowVpcInterfaceResponse } from "../models/models_0"; import { RemoveFlowVpcInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/RestartRouterInputCommand.ts b/clients/client-mediaconnect/src/commands/RestartRouterInputCommand.ts index 9319785805322..47dec0645b84d 100644 --- a/clients/client-mediaconnect/src/commands/RestartRouterInputCommand.ts +++ b/clients/client-mediaconnect/src/commands/RestartRouterInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { RestartRouterInputRequest, RestartRouterInputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { RestartRouterInputRequest, RestartRouterInputResponse } from "../models/models_0"; import { RestartRouterInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/RestartRouterOutputCommand.ts b/clients/client-mediaconnect/src/commands/RestartRouterOutputCommand.ts index 0dbe38c9da94b..802faa80a8b2b 100644 --- a/clients/client-mediaconnect/src/commands/RestartRouterOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/RestartRouterOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { RestartRouterOutputRequest, RestartRouterOutputResponse } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { RestartRouterOutputRequest, RestartRouterOutputResponse } from "../models/models_1"; import { RestartRouterOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/RevokeFlowEntitlementCommand.ts b/clients/client-mediaconnect/src/commands/RevokeFlowEntitlementCommand.ts index cb4bc1e27dcc5..8e1eacd8be175 100644 --- a/clients/client-mediaconnect/src/commands/RevokeFlowEntitlementCommand.ts +++ b/clients/client-mediaconnect/src/commands/RevokeFlowEntitlementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { RevokeFlowEntitlementRequest, RevokeFlowEntitlementResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { RevokeFlowEntitlementRequest, RevokeFlowEntitlementResponse } from "../models/models_0"; import { RevokeFlowEntitlement } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/StartFlowCommand.ts b/clients/client-mediaconnect/src/commands/StartFlowCommand.ts index 882703349aa61..13bbeff35de79 100644 --- a/clients/client-mediaconnect/src/commands/StartFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/StartFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { StartFlowRequest, StartFlowResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { StartFlowRequest, StartFlowResponse } from "../models/models_0"; import { StartFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/StartRouterInputCommand.ts b/clients/client-mediaconnect/src/commands/StartRouterInputCommand.ts index cdfb543989b9c..d3f2ee47828ee 100644 --- a/clients/client-mediaconnect/src/commands/StartRouterInputCommand.ts +++ b/clients/client-mediaconnect/src/commands/StartRouterInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { StartRouterInputRequest, StartRouterInputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { StartRouterInputRequest, StartRouterInputResponse } from "../models/models_0"; import { StartRouterInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/StartRouterOutputCommand.ts b/clients/client-mediaconnect/src/commands/StartRouterOutputCommand.ts index 3fe893a8ff035..d7fbb49bfb572 100644 --- a/clients/client-mediaconnect/src/commands/StartRouterOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/StartRouterOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { StartRouterOutputRequest, StartRouterOutputResponse } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { StartRouterOutputRequest, StartRouterOutputResponse } from "../models/models_1"; import { StartRouterOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/StopFlowCommand.ts b/clients/client-mediaconnect/src/commands/StopFlowCommand.ts index 5031107eeb1ef..f585ab7670a93 100644 --- a/clients/client-mediaconnect/src/commands/StopFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/StopFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { StopFlowRequest, StopFlowResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { StopFlowRequest, StopFlowResponse } from "../models/models_0"; import { StopFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/StopRouterInputCommand.ts b/clients/client-mediaconnect/src/commands/StopRouterInputCommand.ts index 27c43e6fea607..606a4446f4da3 100644 --- a/clients/client-mediaconnect/src/commands/StopRouterInputCommand.ts +++ b/clients/client-mediaconnect/src/commands/StopRouterInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { StopRouterInputRequest, StopRouterInputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { StopRouterInputRequest, StopRouterInputResponse } from "../models/models_0"; import { StopRouterInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/StopRouterOutputCommand.ts b/clients/client-mediaconnect/src/commands/StopRouterOutputCommand.ts index 27ffe71de1a73..7bf375a17593b 100644 --- a/clients/client-mediaconnect/src/commands/StopRouterOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/StopRouterOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { StopRouterOutputRequest, StopRouterOutputResponse } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { StopRouterOutputRequest, StopRouterOutputResponse } from "../models/models_1"; import { StopRouterOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/TagGlobalResourceCommand.ts b/clients/client-mediaconnect/src/commands/TagGlobalResourceCommand.ts index b2548823f1288..77b6dddd8f821 100644 --- a/clients/client-mediaconnect/src/commands/TagGlobalResourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/TagGlobalResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { TagGlobalResourceRequest } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { TagGlobalResourceRequest } from "../models/models_1"; import { TagGlobalResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/TagResourceCommand.ts b/clients/client-mediaconnect/src/commands/TagResourceCommand.ts index 07690d4248469..b9fc9c5229c0f 100644 --- a/clients/client-mediaconnect/src/commands/TagResourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { TagResourceRequest } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { TagResourceRequest } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/TakeRouterInputCommand.ts b/clients/client-mediaconnect/src/commands/TakeRouterInputCommand.ts index 79c057c88c9db..322757b4bb012 100644 --- a/clients/client-mediaconnect/src/commands/TakeRouterInputCommand.ts +++ b/clients/client-mediaconnect/src/commands/TakeRouterInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { TakeRouterInputRequest, TakeRouterInputResponse } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { TakeRouterInputRequest, TakeRouterInputResponse } from "../models/models_1"; import { TakeRouterInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UntagGlobalResourceCommand.ts b/clients/client-mediaconnect/src/commands/UntagGlobalResourceCommand.ts index 340540936274d..fe1f75f382c1f 100644 --- a/clients/client-mediaconnect/src/commands/UntagGlobalResourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UntagGlobalResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UntagGlobalResourceRequest } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UntagGlobalResourceRequest } from "../models/models_1"; import { UntagGlobalResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UntagResourceCommand.ts b/clients/client-mediaconnect/src/commands/UntagResourceCommand.ts index 3ff4cc46416a4..a578cf72d1975 100644 --- a/clients/client-mediaconnect/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UntagResourceRequest } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UntagResourceRequest } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateBridgeCommand.ts b/clients/client-mediaconnect/src/commands/UpdateBridgeCommand.ts index 413c8fbbce592..354f060d3b690 100644 --- a/clients/client-mediaconnect/src/commands/UpdateBridgeCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateBridgeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateBridgeRequest, UpdateBridgeResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateBridgeRequest, UpdateBridgeResponse } from "../models/models_0"; import { UpdateBridge } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateBridgeOutputCommand.ts b/clients/client-mediaconnect/src/commands/UpdateBridgeOutputCommand.ts index f30ad84d347e0..02600751b8173 100644 --- a/clients/client-mediaconnect/src/commands/UpdateBridgeOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateBridgeOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateBridgeOutputRequest, UpdateBridgeOutputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateBridgeOutputRequest, UpdateBridgeOutputResponse } from "../models/models_0"; import { UpdateBridgeOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateBridgeSourceCommand.ts b/clients/client-mediaconnect/src/commands/UpdateBridgeSourceCommand.ts index c06b704c646eb..0401ca1331711 100644 --- a/clients/client-mediaconnect/src/commands/UpdateBridgeSourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateBridgeSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateBridgeSourceRequest, UpdateBridgeSourceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateBridgeSourceRequest, UpdateBridgeSourceResponse } from "../models/models_0"; import { UpdateBridgeSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateBridgeStateCommand.ts b/clients/client-mediaconnect/src/commands/UpdateBridgeStateCommand.ts index 3134935687822..656062b565994 100644 --- a/clients/client-mediaconnect/src/commands/UpdateBridgeStateCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateBridgeStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateBridgeStateRequest, UpdateBridgeStateResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateBridgeStateRequest, UpdateBridgeStateResponse } from "../models/models_0"; import { UpdateBridgeState } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowCommand.ts index dc0d66a6b8308..ef02f64950e10 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateFlowRequest, UpdateFlowResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateFlowRequest, UpdateFlowResponse } from "../models/models_0"; import { UpdateFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowEntitlementCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowEntitlementCommand.ts index 6e2e1a71d945f..3d07bab3e116c 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowEntitlementCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowEntitlementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateFlowEntitlementRequest, UpdateFlowEntitlementResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateFlowEntitlementRequest, UpdateFlowEntitlementResponse } from "../models/models_0"; import { UpdateFlowEntitlement } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowMediaStreamCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowMediaStreamCommand.ts index 6b0628ab5f9ab..ab2925def7e52 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowMediaStreamCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowMediaStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateFlowMediaStreamRequest, UpdateFlowMediaStreamResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateFlowMediaStreamRequest, UpdateFlowMediaStreamResponse } from "../models/models_0"; import { UpdateFlowMediaStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowOutputCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowOutputCommand.ts index 749dcbf5014ad..44b0dd9ef8302 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateFlowOutputRequest, UpdateFlowOutputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateFlowOutputRequest, UpdateFlowOutputResponse } from "../models/models_0"; import { UpdateFlowOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateFlowSourceCommand.ts b/clients/client-mediaconnect/src/commands/UpdateFlowSourceCommand.ts index f09d4d6bd016d..67055cfab3033 100644 --- a/clients/client-mediaconnect/src/commands/UpdateFlowSourceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateFlowSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateFlowSourceRequest, UpdateFlowSourceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateFlowSourceRequest, UpdateFlowSourceResponse } from "../models/models_0"; import { UpdateFlowSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateGatewayInstanceCommand.ts b/clients/client-mediaconnect/src/commands/UpdateGatewayInstanceCommand.ts index 8434f2b6237b4..d017489d28c25 100644 --- a/clients/client-mediaconnect/src/commands/UpdateGatewayInstanceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateGatewayInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateGatewayInstanceRequest, UpdateGatewayInstanceResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateGatewayInstanceRequest, UpdateGatewayInstanceResponse } from "../models/models_0"; import { UpdateGatewayInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateRouterInputCommand.ts b/clients/client-mediaconnect/src/commands/UpdateRouterInputCommand.ts index e39dcc5e2bd4d..da319643798a1 100644 --- a/clients/client-mediaconnect/src/commands/UpdateRouterInputCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateRouterInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateRouterInputRequest, UpdateRouterInputResponse } from "../models/models_0"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateRouterInputRequest, UpdateRouterInputResponse } from "../models/models_0"; import { UpdateRouterInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateRouterNetworkInterfaceCommand.ts b/clients/client-mediaconnect/src/commands/UpdateRouterNetworkInterfaceCommand.ts index db791f8e3840c..a29a508db8ab2 100644 --- a/clients/client-mediaconnect/src/commands/UpdateRouterNetworkInterfaceCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateRouterNetworkInterfaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateRouterNetworkInterfaceRequest, UpdateRouterNetworkInterfaceResponse } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateRouterNetworkInterfaceRequest, UpdateRouterNetworkInterfaceResponse } from "../models/models_1"; import { UpdateRouterNetworkInterface } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/commands/UpdateRouterOutputCommand.ts b/clients/client-mediaconnect/src/commands/UpdateRouterOutputCommand.ts index b79d97dac255f..46e6099bfeb46 100644 --- a/clients/client-mediaconnect/src/commands/UpdateRouterOutputCommand.ts +++ b/clients/client-mediaconnect/src/commands/UpdateRouterOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; -import { UpdateRouterOutputRequest, UpdateRouterOutputResponse } from "../models/models_1"; +import type { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient"; +import type { UpdateRouterOutputRequest, UpdateRouterOutputResponse } from "../models/models_1"; import { UpdateRouterOutput } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconnect/src/endpoint/EndpointParameters.ts b/clients/client-mediaconnect/src/endpoint/EndpointParameters.ts index 7f9d8a702062c..febd880168bfc 100644 --- a/clients/client-mediaconnect/src/endpoint/EndpointParameters.ts +++ b/clients/client-mediaconnect/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mediaconnect/src/endpoint/endpointResolver.ts b/clients/client-mediaconnect/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mediaconnect/src/endpoint/endpointResolver.ts +++ b/clients/client-mediaconnect/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mediaconnect/src/extensionConfiguration.ts b/clients/client-mediaconnect/src/extensionConfiguration.ts index 5f8626ace8f70..eb935b1cac1de 100644 --- a/clients/client-mediaconnect/src/extensionConfiguration.ts +++ b/clients/client-mediaconnect/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mediaconnect/src/models/MediaConnectServiceException.ts b/clients/client-mediaconnect/src/models/MediaConnectServiceException.ts index 4600c933060d0..f0a55a5fc4281 100644 --- a/clients/client-mediaconnect/src/models/MediaConnectServiceException.ts +++ b/clients/client-mediaconnect/src/models/MediaConnectServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mediaconnect/src/models/errors.ts b/clients/client-mediaconnect/src/models/errors.ts index e2ab43b66586e..dc6fd4403017b 100644 --- a/clients/client-mediaconnect/src/models/errors.ts +++ b/clients/client-mediaconnect/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MediaConnectServiceException as __BaseException } from "./MediaConnectServiceException"; diff --git a/clients/client-mediaconnect/src/pagination/Interfaces.ts b/clients/client-mediaconnect/src/pagination/Interfaces.ts index a37f27229c5bc..43d7e0c516636 100644 --- a/clients/client-mediaconnect/src/pagination/Interfaces.ts +++ b/clients/client-mediaconnect/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MediaConnectClient } from "../MediaConnectClient"; diff --git a/clients/client-mediaconnect/src/pagination/ListBridgesPaginator.ts b/clients/client-mediaconnect/src/pagination/ListBridgesPaginator.ts index 7f89b56f5f8c7..0b8780403f7e0 100644 --- a/clients/client-mediaconnect/src/pagination/ListBridgesPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListBridgesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBridgesCommand, ListBridgesCommandInput, ListBridgesCommandOutput } from "../commands/ListBridgesCommand"; import { MediaConnectClient } from "../MediaConnectClient"; diff --git a/clients/client-mediaconnect/src/pagination/ListEntitlementsPaginator.ts b/clients/client-mediaconnect/src/pagination/ListEntitlementsPaginator.ts index 6f6268e991852..e7147d61a3bc4 100644 --- a/clients/client-mediaconnect/src/pagination/ListEntitlementsPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListEntitlementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEntitlementsCommand, diff --git a/clients/client-mediaconnect/src/pagination/ListFlowsPaginator.ts b/clients/client-mediaconnect/src/pagination/ListFlowsPaginator.ts index 6f20474eb63b3..112bdd5481456 100644 --- a/clients/client-mediaconnect/src/pagination/ListFlowsPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListFlowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFlowsCommand, ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand"; import { MediaConnectClient } from "../MediaConnectClient"; diff --git a/clients/client-mediaconnect/src/pagination/ListGatewayInstancesPaginator.ts b/clients/client-mediaconnect/src/pagination/ListGatewayInstancesPaginator.ts index 9363d7b7be83a..0185b09873fac 100644 --- a/clients/client-mediaconnect/src/pagination/ListGatewayInstancesPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListGatewayInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGatewayInstancesCommand, diff --git a/clients/client-mediaconnect/src/pagination/ListGatewaysPaginator.ts b/clients/client-mediaconnect/src/pagination/ListGatewaysPaginator.ts index 23d88b0f4bd69..f0698d9de91f6 100644 --- a/clients/client-mediaconnect/src/pagination/ListGatewaysPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGatewaysCommand, diff --git a/clients/client-mediaconnect/src/pagination/ListOfferingsPaginator.ts b/clients/client-mediaconnect/src/pagination/ListOfferingsPaginator.ts index 3c89afa143bf1..bc4aa21ce081a 100644 --- a/clients/client-mediaconnect/src/pagination/ListOfferingsPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOfferingsCommand, diff --git a/clients/client-mediaconnect/src/pagination/ListReservationsPaginator.ts b/clients/client-mediaconnect/src/pagination/ListReservationsPaginator.ts index ac23e76d46f61..638385cb156c1 100644 --- a/clients/client-mediaconnect/src/pagination/ListReservationsPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListReservationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReservationsCommand, diff --git a/clients/client-mediaconnect/src/pagination/ListRouterInputsPaginator.ts b/clients/client-mediaconnect/src/pagination/ListRouterInputsPaginator.ts index 3aee5f6989eb3..fa68d22daf437 100644 --- a/clients/client-mediaconnect/src/pagination/ListRouterInputsPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListRouterInputsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRouterInputsCommand, diff --git a/clients/client-mediaconnect/src/pagination/ListRouterNetworkInterfacesPaginator.ts b/clients/client-mediaconnect/src/pagination/ListRouterNetworkInterfacesPaginator.ts index d7ff92754e0d1..f7d18dd361743 100644 --- a/clients/client-mediaconnect/src/pagination/ListRouterNetworkInterfacesPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListRouterNetworkInterfacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRouterNetworkInterfacesCommand, diff --git a/clients/client-mediaconnect/src/pagination/ListRouterOutputsPaginator.ts b/clients/client-mediaconnect/src/pagination/ListRouterOutputsPaginator.ts index b903089b14979..9a952a524c123 100644 --- a/clients/client-mediaconnect/src/pagination/ListRouterOutputsPaginator.ts +++ b/clients/client-mediaconnect/src/pagination/ListRouterOutputsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRouterOutputsCommand, diff --git a/clients/client-mediaconnect/src/runtimeConfig.browser.ts b/clients/client-mediaconnect/src/runtimeConfig.browser.ts index 1d8852d5b951a..5c7b0dc69a8d7 100644 --- a/clients/client-mediaconnect/src/runtimeConfig.browser.ts +++ b/clients/client-mediaconnect/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaConnectClientConfig } from "./MediaConnectClient"; + +import type { MediaConnectClientConfig } from "./MediaConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mediaconnect/src/runtimeConfig.native.ts b/clients/client-mediaconnect/src/runtimeConfig.native.ts index b2ff6262b4f3d..6376d893c5973 100644 --- a/clients/client-mediaconnect/src/runtimeConfig.native.ts +++ b/clients/client-mediaconnect/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MediaConnectClientConfig } from "./MediaConnectClient"; +import type { MediaConnectClientConfig } from "./MediaConnectClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mediaconnect/src/runtimeConfig.shared.ts b/clients/client-mediaconnect/src/runtimeConfig.shared.ts index 481bfe4a28423..1ab0c0126efa7 100644 --- a/clients/client-mediaconnect/src/runtimeConfig.shared.ts +++ b/clients/client-mediaconnect/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMediaConnectHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MediaConnectClientConfig } from "./MediaConnectClient"; +import type { MediaConnectClientConfig } from "./MediaConnectClient"; /** * @internal diff --git a/clients/client-mediaconnect/src/runtimeConfig.ts b/clients/client-mediaconnect/src/runtimeConfig.ts index 17395b8fe92a1..4848df8c49a3d 100644 --- a/clients/client-mediaconnect/src/runtimeConfig.ts +++ b/clients/client-mediaconnect/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaConnectClientConfig } from "./MediaConnectClient"; + +import type { MediaConnectClientConfig } from "./MediaConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mediaconnect/src/runtimeExtensions.ts b/clients/client-mediaconnect/src/runtimeExtensions.ts index 0e9786685ff6b..89b87da6b7a46 100644 --- a/clients/client-mediaconnect/src/runtimeExtensions.ts +++ b/clients/client-mediaconnect/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MediaConnectExtensionConfiguration } from "./extensionConfiguration"; +import type { MediaConnectExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mediaconnect/src/schemas/schemas_0.ts b/clients/client-mediaconnect/src/schemas/schemas_0.ts index 77abdeb996f87..77f406ed8f7a4 100644 --- a/clients/client-mediaconnect/src/schemas/schemas_0.ts +++ b/clients/client-mediaconnect/src/schemas/schemas_0.ts @@ -1099,7 +1099,7 @@ const n0 = "com.amazonaws.mediaconnect"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-mediaconvert/package.json b/clients/client-mediaconvert/package.json index 271a171b3291b..ed572e12be6bb 100644 --- a/clients/client-mediaconvert/package.json +++ b/clients/client-mediaconvert/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mediaconvert/src/MediaConvert.ts b/clients/client-mediaconvert/src/MediaConvert.ts index a5bf706131eec..72f7884669c29 100644 --- a/clients/client-mediaconvert/src/MediaConvert.ts +++ b/clients/client-mediaconvert/src/MediaConvert.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateCertificateCommand, @@ -108,7 +108,7 @@ import { UpdatePresetCommandOutput, } from "./commands/UpdatePresetCommand"; import { UpdateQueueCommand, UpdateQueueCommandInput, UpdateQueueCommandOutput } from "./commands/UpdateQueueCommand"; -import { MediaConvertClient, MediaConvertClientConfig } from "./MediaConvertClient"; +import { MediaConvertClient } from "./MediaConvertClient"; const commands = { AssociateCertificateCommand, diff --git a/clients/client-mediaconvert/src/MediaConvertClient.ts b/clients/client-mediaconvert/src/MediaConvertClient.ts index 29899de2d3813..158f88be94f30 100644 --- a/clients/client-mediaconvert/src/MediaConvertClient.ts +++ b/clients/client-mediaconvert/src/MediaConvertClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMediaConvertHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -113,7 +122,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mediaconvert/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mediaconvert/src/auth/httpAuthExtensionConfiguration.ts index 173f6833dd22b..50e457eb6242f 100644 --- a/clients/client-mediaconvert/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mediaconvert/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MediaConvertHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MediaConvertHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mediaconvert/src/auth/httpAuthSchemeProvider.ts b/clients/client-mediaconvert/src/auth/httpAuthSchemeProvider.ts index 30de048bda85d..9d0413700e263 100644 --- a/clients/client-mediaconvert/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mediaconvert/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MediaConvertClientConfig, MediaConvertClientResolvedConfig } from "../MediaConvertClient"; +import { type MediaConvertClientResolvedConfig, MediaConvertClientConfig } from "../MediaConvertClient"; /** * @internal diff --git a/clients/client-mediaconvert/src/commands/AssociateCertificateCommand.ts b/clients/client-mediaconvert/src/commands/AssociateCertificateCommand.ts index 8fe18fe7d99d4..fee6d2dbe86f8 100644 --- a/clients/client-mediaconvert/src/commands/AssociateCertificateCommand.ts +++ b/clients/client-mediaconvert/src/commands/AssociateCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { AssociateCertificateRequest, AssociateCertificateResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { AssociateCertificateRequest, AssociateCertificateResponse } from "../models/models_0"; import { AssociateCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/CancelJobCommand.ts b/clients/client-mediaconvert/src/commands/CancelJobCommand.ts index eefb7ef698db5..75be2deb60b57 100644 --- a/clients/client-mediaconvert/src/commands/CancelJobCommand.ts +++ b/clients/client-mediaconvert/src/commands/CancelJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { CancelJobRequest, CancelJobResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { CancelJobRequest, CancelJobResponse } from "../models/models_0"; import { CancelJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/CreateJobCommand.ts b/clients/client-mediaconvert/src/commands/CreateJobCommand.ts index e628473a610ec..2cb270799d52f 100644 --- a/clients/client-mediaconvert/src/commands/CreateJobCommand.ts +++ b/clients/client-mediaconvert/src/commands/CreateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { CreateJobRequest, CreateJobResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { CreateJobRequest, CreateJobResponse } from "../models/models_0"; import { CreateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/CreateJobTemplateCommand.ts b/clients/client-mediaconvert/src/commands/CreateJobTemplateCommand.ts index 4087d8db6133c..0390633a84439 100644 --- a/clients/client-mediaconvert/src/commands/CreateJobTemplateCommand.ts +++ b/clients/client-mediaconvert/src/commands/CreateJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { CreateJobTemplateRequest, CreateJobTemplateResponse } from "../models/models_0"; import { CreateJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/CreatePresetCommand.ts b/clients/client-mediaconvert/src/commands/CreatePresetCommand.ts index 82da463107c34..b7176307f1b7d 100644 --- a/clients/client-mediaconvert/src/commands/CreatePresetCommand.ts +++ b/clients/client-mediaconvert/src/commands/CreatePresetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { CreatePresetRequest, CreatePresetResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { CreatePresetRequest, CreatePresetResponse } from "../models/models_0"; import { CreatePreset } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/CreateQueueCommand.ts b/clients/client-mediaconvert/src/commands/CreateQueueCommand.ts index 50e1a12fd679b..6743b179aab2f 100644 --- a/clients/client-mediaconvert/src/commands/CreateQueueCommand.ts +++ b/clients/client-mediaconvert/src/commands/CreateQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { CreateQueueRequest, CreateQueueResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { CreateQueueRequest, CreateQueueResponse } from "../models/models_0"; import { CreateQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/CreateResourceShareCommand.ts b/clients/client-mediaconvert/src/commands/CreateResourceShareCommand.ts index d7e41a7af19cc..adc2de6b2d1f8 100644 --- a/clients/client-mediaconvert/src/commands/CreateResourceShareCommand.ts +++ b/clients/client-mediaconvert/src/commands/CreateResourceShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { CreateResourceShareRequest, CreateResourceShareResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { CreateResourceShareRequest, CreateResourceShareResponse } from "../models/models_0"; import { CreateResourceShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/DeleteJobTemplateCommand.ts b/clients/client-mediaconvert/src/commands/DeleteJobTemplateCommand.ts index 61c9e160e855e..0af0eeee61ee7 100644 --- a/clients/client-mediaconvert/src/commands/DeleteJobTemplateCommand.ts +++ b/clients/client-mediaconvert/src/commands/DeleteJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { DeleteJobTemplateRequest, DeleteJobTemplateResponse } from "../models/models_0"; import { DeleteJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/DeletePolicyCommand.ts b/clients/client-mediaconvert/src/commands/DeletePolicyCommand.ts index a4d7d80f277d5..484c981cb4c3c 100644 --- a/clients/client-mediaconvert/src/commands/DeletePolicyCommand.ts +++ b/clients/client-mediaconvert/src/commands/DeletePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { DeletePolicyRequest, DeletePolicyResponse } from "../models/models_0"; import { DeletePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/DeletePresetCommand.ts b/clients/client-mediaconvert/src/commands/DeletePresetCommand.ts index 507a30c030687..823f86929d10b 100644 --- a/clients/client-mediaconvert/src/commands/DeletePresetCommand.ts +++ b/clients/client-mediaconvert/src/commands/DeletePresetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { DeletePresetRequest, DeletePresetResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { DeletePresetRequest, DeletePresetResponse } from "../models/models_0"; import { DeletePreset } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/DeleteQueueCommand.ts b/clients/client-mediaconvert/src/commands/DeleteQueueCommand.ts index c114f2b7f1662..ad1ed140d22f1 100644 --- a/clients/client-mediaconvert/src/commands/DeleteQueueCommand.ts +++ b/clients/client-mediaconvert/src/commands/DeleteQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_0"; import { DeleteQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/DescribeEndpointsCommand.ts b/clients/client-mediaconvert/src/commands/DescribeEndpointsCommand.ts index 349a3a6d123f4..8a82e0fc1fa9f 100644 --- a/clients/client-mediaconvert/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-mediaconvert/src/commands/DescribeEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0"; import { DescribeEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/DisassociateCertificateCommand.ts b/clients/client-mediaconvert/src/commands/DisassociateCertificateCommand.ts index 20c077267637c..0e901df602bbb 100644 --- a/clients/client-mediaconvert/src/commands/DisassociateCertificateCommand.ts +++ b/clients/client-mediaconvert/src/commands/DisassociateCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { DisassociateCertificateRequest, DisassociateCertificateResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { DisassociateCertificateRequest, DisassociateCertificateResponse } from "../models/models_0"; import { DisassociateCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/GetJobCommand.ts b/clients/client-mediaconvert/src/commands/GetJobCommand.ts index d34a82de98afe..d1f54c7568212 100644 --- a/clients/client-mediaconvert/src/commands/GetJobCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { GetJobRequest, GetJobResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { GetJobRequest, GetJobResponse } from "../models/models_0"; import { GetJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/GetJobTemplateCommand.ts b/clients/client-mediaconvert/src/commands/GetJobTemplateCommand.ts index 77faf05d215c5..0929eca744980 100644 --- a/clients/client-mediaconvert/src/commands/GetJobTemplateCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { GetJobTemplateRequest, GetJobTemplateResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { GetJobTemplateRequest, GetJobTemplateResponse } from "../models/models_0"; import { GetJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/GetJobsQueryResultsCommand.ts b/clients/client-mediaconvert/src/commands/GetJobsQueryResultsCommand.ts index f4318ee636052..2ecfe52afd436 100644 --- a/clients/client-mediaconvert/src/commands/GetJobsQueryResultsCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetJobsQueryResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { GetJobsQueryResultsRequest, GetJobsQueryResultsResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { GetJobsQueryResultsRequest, GetJobsQueryResultsResponse } from "../models/models_0"; import { GetJobsQueryResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/GetPolicyCommand.ts b/clients/client-mediaconvert/src/commands/GetPolicyCommand.ts index c59c7ca0903f3..2ee1334c8b1a2 100644 --- a/clients/client-mediaconvert/src/commands/GetPolicyCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; import { GetPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/GetPresetCommand.ts b/clients/client-mediaconvert/src/commands/GetPresetCommand.ts index e4ddaca707b94..aa43091a0e061 100644 --- a/clients/client-mediaconvert/src/commands/GetPresetCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetPresetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { GetPresetRequest, GetPresetResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { GetPresetRequest, GetPresetResponse } from "../models/models_0"; import { GetPreset } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/GetQueueCommand.ts b/clients/client-mediaconvert/src/commands/GetQueueCommand.ts index c5b6181eeb528..cdaea6e70fb5b 100644 --- a/clients/client-mediaconvert/src/commands/GetQueueCommand.ts +++ b/clients/client-mediaconvert/src/commands/GetQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { GetQueueRequest, GetQueueResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { GetQueueRequest, GetQueueResponse } from "../models/models_0"; import { GetQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/ListJobTemplatesCommand.ts b/clients/client-mediaconvert/src/commands/ListJobTemplatesCommand.ts index 1c684914ddd65..f8edcef1e6208 100644 --- a/clients/client-mediaconvert/src/commands/ListJobTemplatesCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListJobTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { ListJobTemplatesRequest, ListJobTemplatesResponse } from "../models/models_0"; import { ListJobTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/ListJobsCommand.ts b/clients/client-mediaconvert/src/commands/ListJobsCommand.ts index 023e6f0bc7aee..f5077fda6fffb 100644 --- a/clients/client-mediaconvert/src/commands/ListJobsCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { ListJobsRequest, ListJobsResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { ListJobsRequest, ListJobsResponse } from "../models/models_0"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/ListPresetsCommand.ts b/clients/client-mediaconvert/src/commands/ListPresetsCommand.ts index 43bc5d7d24d86..a1518c31ccb1c 100644 --- a/clients/client-mediaconvert/src/commands/ListPresetsCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListPresetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { ListPresetsRequest, ListPresetsResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { ListPresetsRequest, ListPresetsResponse } from "../models/models_0"; import { ListPresets } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/ListQueuesCommand.ts b/clients/client-mediaconvert/src/commands/ListQueuesCommand.ts index 8e5883a82f70d..ea4d5160d328a 100644 --- a/clients/client-mediaconvert/src/commands/ListQueuesCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { ListQueuesRequest, ListQueuesResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { ListQueuesRequest, ListQueuesResponse } from "../models/models_0"; import { ListQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediaconvert/src/commands/ListTagsForResourceCommand.ts index 661100f743065..ab558d98a621e 100644 --- a/clients/client-mediaconvert/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/ListVersionsCommand.ts b/clients/client-mediaconvert/src/commands/ListVersionsCommand.ts index a99bf64849306..a3a707175b631 100644 --- a/clients/client-mediaconvert/src/commands/ListVersionsCommand.ts +++ b/clients/client-mediaconvert/src/commands/ListVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { ListVersionsRequest, ListVersionsResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { ListVersionsRequest, ListVersionsResponse } from "../models/models_0"; import { ListVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/ProbeCommand.ts b/clients/client-mediaconvert/src/commands/ProbeCommand.ts index bd6fb6fd26868..4a8f275158024 100644 --- a/clients/client-mediaconvert/src/commands/ProbeCommand.ts +++ b/clients/client-mediaconvert/src/commands/ProbeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { ProbeRequest, ProbeResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { ProbeRequest, ProbeResponse } from "../models/models_0"; import { Probe } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/PutPolicyCommand.ts b/clients/client-mediaconvert/src/commands/PutPolicyCommand.ts index fbc2386dd85d7..1e2e6f348fb4a 100644 --- a/clients/client-mediaconvert/src/commands/PutPolicyCommand.ts +++ b/clients/client-mediaconvert/src/commands/PutPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { PutPolicyRequest, PutPolicyResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { PutPolicyRequest, PutPolicyResponse } from "../models/models_0"; import { PutPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/SearchJobsCommand.ts b/clients/client-mediaconvert/src/commands/SearchJobsCommand.ts index 4bf00cd71482b..5d59370898ff3 100644 --- a/clients/client-mediaconvert/src/commands/SearchJobsCommand.ts +++ b/clients/client-mediaconvert/src/commands/SearchJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { SearchJobsRequest, SearchJobsResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { SearchJobsRequest, SearchJobsResponse } from "../models/models_0"; import { SearchJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/StartJobsQueryCommand.ts b/clients/client-mediaconvert/src/commands/StartJobsQueryCommand.ts index d5cc3aa826840..164391587ffff 100644 --- a/clients/client-mediaconvert/src/commands/StartJobsQueryCommand.ts +++ b/clients/client-mediaconvert/src/commands/StartJobsQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { StartJobsQueryRequest, StartJobsQueryResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { StartJobsQueryRequest, StartJobsQueryResponse } from "../models/models_0"; import { StartJobsQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/TagResourceCommand.ts b/clients/client-mediaconvert/src/commands/TagResourceCommand.ts index a7be200dc99e9..abc94bed784c6 100644 --- a/clients/client-mediaconvert/src/commands/TagResourceCommand.ts +++ b/clients/client-mediaconvert/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/UntagResourceCommand.ts b/clients/client-mediaconvert/src/commands/UntagResourceCommand.ts index eefb7499b97d6..6b2fd15973f0e 100644 --- a/clients/client-mediaconvert/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediaconvert/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/UpdateJobTemplateCommand.ts b/clients/client-mediaconvert/src/commands/UpdateJobTemplateCommand.ts index 3bdf74070fd0d..418a1cf9e11d4 100644 --- a/clients/client-mediaconvert/src/commands/UpdateJobTemplateCommand.ts +++ b/clients/client-mediaconvert/src/commands/UpdateJobTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { UpdateJobTemplateRequest, UpdateJobTemplateResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { UpdateJobTemplateRequest, UpdateJobTemplateResponse } from "../models/models_0"; import { UpdateJobTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/UpdatePresetCommand.ts b/clients/client-mediaconvert/src/commands/UpdatePresetCommand.ts index 27d97bbca823a..92108bd03e3b2 100644 --- a/clients/client-mediaconvert/src/commands/UpdatePresetCommand.ts +++ b/clients/client-mediaconvert/src/commands/UpdatePresetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { UpdatePresetRequest, UpdatePresetResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { UpdatePresetRequest, UpdatePresetResponse } from "../models/models_0"; import { UpdatePreset } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/commands/UpdateQueueCommand.ts b/clients/client-mediaconvert/src/commands/UpdateQueueCommand.ts index 65d1d5656db80..058d020726ab9 100644 --- a/clients/client-mediaconvert/src/commands/UpdateQueueCommand.ts +++ b/clients/client-mediaconvert/src/commands/UpdateQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; -import { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_0"; +import type { MediaConvertClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConvertClient"; +import type { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_0"; import { UpdateQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediaconvert/src/endpoint/EndpointParameters.ts b/clients/client-mediaconvert/src/endpoint/EndpointParameters.ts index 747139f093864..acb5dcb2f8210 100644 --- a/clients/client-mediaconvert/src/endpoint/EndpointParameters.ts +++ b/clients/client-mediaconvert/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mediaconvert/src/endpoint/endpointResolver.ts b/clients/client-mediaconvert/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mediaconvert/src/endpoint/endpointResolver.ts +++ b/clients/client-mediaconvert/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mediaconvert/src/extensionConfiguration.ts b/clients/client-mediaconvert/src/extensionConfiguration.ts index 246f3af45d347..d47454c414bdf 100644 --- a/clients/client-mediaconvert/src/extensionConfiguration.ts +++ b/clients/client-mediaconvert/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mediaconvert/src/models/MediaConvertServiceException.ts b/clients/client-mediaconvert/src/models/MediaConvertServiceException.ts index 3ad6e026a0489..bef4374d71d59 100644 --- a/clients/client-mediaconvert/src/models/MediaConvertServiceException.ts +++ b/clients/client-mediaconvert/src/models/MediaConvertServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mediaconvert/src/models/errors.ts b/clients/client-mediaconvert/src/models/errors.ts index 6a5b8c60d5baa..79ccb37423e23 100644 --- a/clients/client-mediaconvert/src/models/errors.ts +++ b/clients/client-mediaconvert/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MediaConvertServiceException as __BaseException } from "./MediaConvertServiceException"; diff --git a/clients/client-mediaconvert/src/pagination/DescribeEndpointsPaginator.ts b/clients/client-mediaconvert/src/pagination/DescribeEndpointsPaginator.ts index 13cd53b742a27..a30dbc422298c 100644 --- a/clients/client-mediaconvert/src/pagination/DescribeEndpointsPaginator.ts +++ b/clients/client-mediaconvert/src/pagination/DescribeEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEndpointsCommand, diff --git a/clients/client-mediaconvert/src/pagination/Interfaces.ts b/clients/client-mediaconvert/src/pagination/Interfaces.ts index 16dd21c96eec7..ea8d3b1b5e67e 100644 --- a/clients/client-mediaconvert/src/pagination/Interfaces.ts +++ b/clients/client-mediaconvert/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MediaConvertClient } from "../MediaConvertClient"; diff --git a/clients/client-mediaconvert/src/pagination/ListJobTemplatesPaginator.ts b/clients/client-mediaconvert/src/pagination/ListJobTemplatesPaginator.ts index a24f5a2802b38..57f5efad132ad 100644 --- a/clients/client-mediaconvert/src/pagination/ListJobTemplatesPaginator.ts +++ b/clients/client-mediaconvert/src/pagination/ListJobTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobTemplatesCommand, diff --git a/clients/client-mediaconvert/src/pagination/ListJobsPaginator.ts b/clients/client-mediaconvert/src/pagination/ListJobsPaginator.ts index 7a5989f5106f6..064f82205d1c7 100644 --- a/clients/client-mediaconvert/src/pagination/ListJobsPaginator.ts +++ b/clients/client-mediaconvert/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { MediaConvertClient } from "../MediaConvertClient"; diff --git a/clients/client-mediaconvert/src/pagination/ListPresetsPaginator.ts b/clients/client-mediaconvert/src/pagination/ListPresetsPaginator.ts index 4ab54c1393868..0663d40a0dcf7 100644 --- a/clients/client-mediaconvert/src/pagination/ListPresetsPaginator.ts +++ b/clients/client-mediaconvert/src/pagination/ListPresetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPresetsCommand, ListPresetsCommandInput, ListPresetsCommandOutput } from "../commands/ListPresetsCommand"; import { MediaConvertClient } from "../MediaConvertClient"; diff --git a/clients/client-mediaconvert/src/pagination/ListQueuesPaginator.ts b/clients/client-mediaconvert/src/pagination/ListQueuesPaginator.ts index 97205a5d15224..79bc3556aff26 100644 --- a/clients/client-mediaconvert/src/pagination/ListQueuesPaginator.ts +++ b/clients/client-mediaconvert/src/pagination/ListQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueuesCommand, ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand"; import { MediaConvertClient } from "../MediaConvertClient"; diff --git a/clients/client-mediaconvert/src/pagination/ListVersionsPaginator.ts b/clients/client-mediaconvert/src/pagination/ListVersionsPaginator.ts index 9b0e9cf659a7e..7047bd8226389 100644 --- a/clients/client-mediaconvert/src/pagination/ListVersionsPaginator.ts +++ b/clients/client-mediaconvert/src/pagination/ListVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVersionsCommand, diff --git a/clients/client-mediaconvert/src/pagination/SearchJobsPaginator.ts b/clients/client-mediaconvert/src/pagination/SearchJobsPaginator.ts index bb1b6665911fa..65a4eb9a510ea 100644 --- a/clients/client-mediaconvert/src/pagination/SearchJobsPaginator.ts +++ b/clients/client-mediaconvert/src/pagination/SearchJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchJobsCommand, SearchJobsCommandInput, SearchJobsCommandOutput } from "../commands/SearchJobsCommand"; import { MediaConvertClient } from "../MediaConvertClient"; diff --git a/clients/client-mediaconvert/src/runtimeConfig.browser.ts b/clients/client-mediaconvert/src/runtimeConfig.browser.ts index 42c53a2d8e1f1..b9ad513897fb8 100644 --- a/clients/client-mediaconvert/src/runtimeConfig.browser.ts +++ b/clients/client-mediaconvert/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaConvertClientConfig } from "./MediaConvertClient"; + +import type { MediaConvertClientConfig } from "./MediaConvertClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mediaconvert/src/runtimeConfig.native.ts b/clients/client-mediaconvert/src/runtimeConfig.native.ts index a6608429e8ec4..eb8f002a92524 100644 --- a/clients/client-mediaconvert/src/runtimeConfig.native.ts +++ b/clients/client-mediaconvert/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MediaConvertClientConfig } from "./MediaConvertClient"; +import type { MediaConvertClientConfig } from "./MediaConvertClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mediaconvert/src/runtimeConfig.shared.ts b/clients/client-mediaconvert/src/runtimeConfig.shared.ts index 3d8724b7abffc..e5be942c8a2dc 100644 --- a/clients/client-mediaconvert/src/runtimeConfig.shared.ts +++ b/clients/client-mediaconvert/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMediaConvertHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MediaConvertClientConfig } from "./MediaConvertClient"; +import type { MediaConvertClientConfig } from "./MediaConvertClient"; /** * @internal diff --git a/clients/client-mediaconvert/src/runtimeConfig.ts b/clients/client-mediaconvert/src/runtimeConfig.ts index f42f5c45dbbec..79c937d631909 100644 --- a/clients/client-mediaconvert/src/runtimeConfig.ts +++ b/clients/client-mediaconvert/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaConvertClientConfig } from "./MediaConvertClient"; + +import type { MediaConvertClientConfig } from "./MediaConvertClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mediaconvert/src/runtimeExtensions.ts b/clients/client-mediaconvert/src/runtimeExtensions.ts index 50a457ca2bb2d..6b46c04cf8dae 100644 --- a/clients/client-mediaconvert/src/runtimeExtensions.ts +++ b/clients/client-mediaconvert/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MediaConvertExtensionConfiguration } from "./extensionConfiguration"; +import type { MediaConvertExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mediaconvert/src/schemas/schemas_0.ts b/clients/client-mediaconvert/src/schemas/schemas_0.ts index 783e3207860f3..1264ff925b8f2 100644 --- a/clients/client-mediaconvert/src/schemas/schemas_0.ts +++ b/clients/client-mediaconvert/src/schemas/schemas_0.ts @@ -1785,7 +1785,7 @@ const n0 = "com.amazonaws.mediaconvert"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-medialive/package.json b/clients/client-medialive/package.json index 4a6bb631fe18e..4bc195ebc2fd6 100644 --- a/clients/client-medialive/package.json +++ b/clients/client-medialive/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-medialive/src/MediaLive.ts b/clients/client-medialive/src/MediaLive.ts index 5498e7ef1f477..0d0f31aacbabf 100644 --- a/clients/client-medialive/src/MediaLive.ts +++ b/clients/client-medialive/src/MediaLive.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptInputDeviceTransferCommand, @@ -553,7 +553,7 @@ import { UpdateSdiSourceCommandInput, UpdateSdiSourceCommandOutput, } from "./commands/UpdateSdiSourceCommand"; -import { MediaLiveClient, MediaLiveClientConfig } from "./MediaLiveClient"; +import { MediaLiveClient } from "./MediaLiveClient"; const commands = { AcceptInputDeviceTransferCommand, diff --git a/clients/client-medialive/src/MediaLiveClient.ts b/clients/client-medialive/src/MediaLiveClient.ts index 5fcb45a6c19ec..ab0b0f2cbe51f 100644 --- a/clients/client-medialive/src/MediaLiveClient.ts +++ b/clients/client-medialive/src/MediaLiveClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMediaLiveHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -350,7 +359,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-medialive/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-medialive/src/auth/httpAuthExtensionConfiguration.ts index 07940100bbc9d..f78bdfb0c0ceb 100644 --- a/clients/client-medialive/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-medialive/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MediaLiveHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MediaLiveHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-medialive/src/auth/httpAuthSchemeProvider.ts b/clients/client-medialive/src/auth/httpAuthSchemeProvider.ts index 793a1a1fe3afa..f9223531279cd 100644 --- a/clients/client-medialive/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-medialive/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MediaLiveClientConfig, MediaLiveClientResolvedConfig } from "../MediaLiveClient"; +import { type MediaLiveClientResolvedConfig, MediaLiveClientConfig } from "../MediaLiveClient"; /** * @internal diff --git a/clients/client-medialive/src/commands/AcceptInputDeviceTransferCommand.ts b/clients/client-medialive/src/commands/AcceptInputDeviceTransferCommand.ts index a59c01b3bfb95..6dc5fc491fc38 100644 --- a/clients/client-medialive/src/commands/AcceptInputDeviceTransferCommand.ts +++ b/clients/client-medialive/src/commands/AcceptInputDeviceTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { AcceptInputDeviceTransferRequest, AcceptInputDeviceTransferResponse } from "../models/models_0"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { AcceptInputDeviceTransferRequest, AcceptInputDeviceTransferResponse } from "../models/models_0"; import { AcceptInputDeviceTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/BatchDeleteCommand.ts b/clients/client-medialive/src/commands/BatchDeleteCommand.ts index 150c83f45befd..a7048029d1ba5 100644 --- a/clients/client-medialive/src/commands/BatchDeleteCommand.ts +++ b/clients/client-medialive/src/commands/BatchDeleteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { BatchDeleteRequest, BatchDeleteResponse } from "../models/models_0"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { BatchDeleteRequest, BatchDeleteResponse } from "../models/models_0"; import { BatchDelete } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/BatchStartCommand.ts b/clients/client-medialive/src/commands/BatchStartCommand.ts index 16367fc13b655..c2acb9c12870f 100644 --- a/clients/client-medialive/src/commands/BatchStartCommand.ts +++ b/clients/client-medialive/src/commands/BatchStartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { BatchStartRequest, BatchStartResponse } from "../models/models_0"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { BatchStartRequest, BatchStartResponse } from "../models/models_0"; import { BatchStart } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/BatchStopCommand.ts b/clients/client-medialive/src/commands/BatchStopCommand.ts index eb73c2bfb59e5..86fc6b9dcef73 100644 --- a/clients/client-medialive/src/commands/BatchStopCommand.ts +++ b/clients/client-medialive/src/commands/BatchStopCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { BatchStopRequest, BatchStopResponse } from "../models/models_0"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { BatchStopRequest, BatchStopResponse } from "../models/models_0"; import { BatchStop } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/BatchUpdateScheduleCommand.ts b/clients/client-medialive/src/commands/BatchUpdateScheduleCommand.ts index 284337102ec38..9d21c305588dd 100644 --- a/clients/client-medialive/src/commands/BatchUpdateScheduleCommand.ts +++ b/clients/client-medialive/src/commands/BatchUpdateScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { BatchUpdateScheduleRequest, BatchUpdateScheduleResponse } from "../models/models_0"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { BatchUpdateScheduleRequest, BatchUpdateScheduleResponse } from "../models/models_0"; import { BatchUpdateSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CancelInputDeviceTransferCommand.ts b/clients/client-medialive/src/commands/CancelInputDeviceTransferCommand.ts index beebefc600c96..a125ceb81996d 100644 --- a/clients/client-medialive/src/commands/CancelInputDeviceTransferCommand.ts +++ b/clients/client-medialive/src/commands/CancelInputDeviceTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CancelInputDeviceTransferRequest, CancelInputDeviceTransferResponse } from "../models/models_0"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CancelInputDeviceTransferRequest, CancelInputDeviceTransferResponse } from "../models/models_0"; import { CancelInputDeviceTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ClaimDeviceCommand.ts b/clients/client-medialive/src/commands/ClaimDeviceCommand.ts index df090deff3875..dbe9e128e94ff 100644 --- a/clients/client-medialive/src/commands/ClaimDeviceCommand.ts +++ b/clients/client-medialive/src/commands/ClaimDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ClaimDeviceRequest, ClaimDeviceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ClaimDeviceRequest, ClaimDeviceResponse } from "../models/models_1"; import { ClaimDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateChannelCommand.ts b/clients/client-medialive/src/commands/CreateChannelCommand.ts index 23c36232e1fe9..c090554c2c01d 100644 --- a/clients/client-medialive/src/commands/CreateChannelCommand.ts +++ b/clients/client-medialive/src/commands/CreateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateChannelRequest, CreateChannelResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateChannelRequest, CreateChannelResponse } from "../models/models_1"; import { CreateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateChannelPlacementGroupCommand.ts b/clients/client-medialive/src/commands/CreateChannelPlacementGroupCommand.ts index b5f708be67404..f4efb1f1c13d5 100644 --- a/clients/client-medialive/src/commands/CreateChannelPlacementGroupCommand.ts +++ b/clients/client-medialive/src/commands/CreateChannelPlacementGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateChannelPlacementGroupRequest, CreateChannelPlacementGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateChannelPlacementGroupRequest, CreateChannelPlacementGroupResponse } from "../models/models_1"; import { CreateChannelPlacementGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateCommand.ts b/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateCommand.ts index 72d194d7f00f9..168cc9f560398 100644 --- a/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateCommand.ts +++ b/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateCloudWatchAlarmTemplateRequest, CreateCloudWatchAlarmTemplateResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateCloudWatchAlarmTemplateRequest, CreateCloudWatchAlarmTemplateResponse } from "../models/models_1"; import { CreateCloudWatchAlarmTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateGroupCommand.ts b/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateGroupCommand.ts index d877de8f8b5d3..3690819bf22f1 100644 --- a/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/CreateCloudWatchAlarmTemplateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateCloudWatchAlarmTemplateGroupRequest, CreateCloudWatchAlarmTemplateGroupResponse, } from "../models/models_1"; diff --git a/clients/client-medialive/src/commands/CreateClusterCommand.ts b/clients/client-medialive/src/commands/CreateClusterCommand.ts index 99a36be856387..5cdebcca1c43b 100644 --- a/clients/client-medialive/src/commands/CreateClusterCommand.ts +++ b/clients/client-medialive/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_1"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateCommand.ts b/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateCommand.ts index 93163f5eb2905..a4cdad03fbeef 100644 --- a/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateCommand.ts +++ b/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateEventBridgeRuleTemplateRequest, CreateEventBridgeRuleTemplateResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateEventBridgeRuleTemplateRequest, CreateEventBridgeRuleTemplateResponse } from "../models/models_1"; import { CreateEventBridgeRuleTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateGroupCommand.ts b/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateGroupCommand.ts index 944af17d159d1..d77af305f353c 100644 --- a/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/CreateEventBridgeRuleTemplateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateEventBridgeRuleTemplateGroupRequest, CreateEventBridgeRuleTemplateGroupResponse, } from "../models/models_1"; diff --git a/clients/client-medialive/src/commands/CreateInputCommand.ts b/clients/client-medialive/src/commands/CreateInputCommand.ts index 97bfdd091a14a..d3217921b4b64 100644 --- a/clients/client-medialive/src/commands/CreateInputCommand.ts +++ b/clients/client-medialive/src/commands/CreateInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateInputRequest, CreateInputResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateInputRequest, CreateInputResponse } from "../models/models_1"; import { CreateInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateInputSecurityGroupCommand.ts b/clients/client-medialive/src/commands/CreateInputSecurityGroupCommand.ts index 66599adebb4b6..a6cf513cf9157 100644 --- a/clients/client-medialive/src/commands/CreateInputSecurityGroupCommand.ts +++ b/clients/client-medialive/src/commands/CreateInputSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateInputSecurityGroupRequest, CreateInputSecurityGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateInputSecurityGroupRequest, CreateInputSecurityGroupResponse } from "../models/models_1"; import { CreateInputSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateMultiplexCommand.ts b/clients/client-medialive/src/commands/CreateMultiplexCommand.ts index 7675508eb11a5..2579f544d2d2b 100644 --- a/clients/client-medialive/src/commands/CreateMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/CreateMultiplexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateMultiplexRequest, CreateMultiplexResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateMultiplexRequest, CreateMultiplexResponse } from "../models/models_1"; import { CreateMultiplex } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateMultiplexProgramCommand.ts b/clients/client-medialive/src/commands/CreateMultiplexProgramCommand.ts index 4f7892ae6cd0f..3c7d482fc1458 100644 --- a/clients/client-medialive/src/commands/CreateMultiplexProgramCommand.ts +++ b/clients/client-medialive/src/commands/CreateMultiplexProgramCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateMultiplexProgramRequest, CreateMultiplexProgramResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateMultiplexProgramRequest, CreateMultiplexProgramResponse } from "../models/models_1"; import { CreateMultiplexProgram } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateNetworkCommand.ts b/clients/client-medialive/src/commands/CreateNetworkCommand.ts index 1e62b46791907..1f9ffdf907858 100644 --- a/clients/client-medialive/src/commands/CreateNetworkCommand.ts +++ b/clients/client-medialive/src/commands/CreateNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateNetworkRequest, CreateNetworkResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateNetworkRequest, CreateNetworkResponse } from "../models/models_1"; import { CreateNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateNodeCommand.ts b/clients/client-medialive/src/commands/CreateNodeCommand.ts index 1fe52bfe8f978..841e22df6ab0e 100644 --- a/clients/client-medialive/src/commands/CreateNodeCommand.ts +++ b/clients/client-medialive/src/commands/CreateNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateNodeRequest, CreateNodeResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateNodeRequest, CreateNodeResponse } from "../models/models_1"; import { CreateNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateNodeRegistrationScriptCommand.ts b/clients/client-medialive/src/commands/CreateNodeRegistrationScriptCommand.ts index 642ceb8b0056e..a3671ba82bc06 100644 --- a/clients/client-medialive/src/commands/CreateNodeRegistrationScriptCommand.ts +++ b/clients/client-medialive/src/commands/CreateNodeRegistrationScriptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateNodeRegistrationScriptRequest, CreateNodeRegistrationScriptResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateNodeRegistrationScriptRequest, CreateNodeRegistrationScriptResponse } from "../models/models_1"; import { CreateNodeRegistrationScript } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreatePartnerInputCommand.ts b/clients/client-medialive/src/commands/CreatePartnerInputCommand.ts index f5b222ae0a2d8..eee264e7aa895 100644 --- a/clients/client-medialive/src/commands/CreatePartnerInputCommand.ts +++ b/clients/client-medialive/src/commands/CreatePartnerInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreatePartnerInputRequest, CreatePartnerInputResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreatePartnerInputRequest, CreatePartnerInputResponse } from "../models/models_1"; import { CreatePartnerInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateSdiSourceCommand.ts b/clients/client-medialive/src/commands/CreateSdiSourceCommand.ts index e79e496e21e1a..b5056f65110d2 100644 --- a/clients/client-medialive/src/commands/CreateSdiSourceCommand.ts +++ b/clients/client-medialive/src/commands/CreateSdiSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateSdiSourceRequest, CreateSdiSourceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateSdiSourceRequest, CreateSdiSourceResponse } from "../models/models_1"; import { CreateSdiSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateSignalMapCommand.ts b/clients/client-medialive/src/commands/CreateSignalMapCommand.ts index 7a86c8bb2fa12..b1d4fccc3a3d4 100644 --- a/clients/client-medialive/src/commands/CreateSignalMapCommand.ts +++ b/clients/client-medialive/src/commands/CreateSignalMapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateSignalMapRequest, CreateSignalMapResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateSignalMapRequest, CreateSignalMapResponse } from "../models/models_1"; import { CreateSignalMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/CreateTagsCommand.ts b/clients/client-medialive/src/commands/CreateTagsCommand.ts index 09798136628c5..2e17c1ca08944 100644 --- a/clients/client-medialive/src/commands/CreateTagsCommand.ts +++ b/clients/client-medialive/src/commands/CreateTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { CreateTagsRequest } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { CreateTagsRequest } from "../models/models_1"; import { CreateTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteChannelCommand.ts b/clients/client-medialive/src/commands/DeleteChannelCommand.ts index fcfd7c80bca88..22fd9666e6102 100644 --- a/clients/client-medialive/src/commands/DeleteChannelCommand.ts +++ b/clients/client-medialive/src/commands/DeleteChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_1"; import { DeleteChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteChannelPlacementGroupCommand.ts b/clients/client-medialive/src/commands/DeleteChannelPlacementGroupCommand.ts index 8ed910dabaefd..2915cde60a52d 100644 --- a/clients/client-medialive/src/commands/DeleteChannelPlacementGroupCommand.ts +++ b/clients/client-medialive/src/commands/DeleteChannelPlacementGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteChannelPlacementGroupRequest, DeleteChannelPlacementGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteChannelPlacementGroupRequest, DeleteChannelPlacementGroupResponse } from "../models/models_1"; import { DeleteChannelPlacementGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateCommand.ts b/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateCommand.ts index 1a6f3a20a4b13..9942d2fbe7db8 100644 --- a/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateCommand.ts +++ b/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteCloudWatchAlarmTemplateRequest } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteCloudWatchAlarmTemplateRequest } from "../models/models_1"; import { DeleteCloudWatchAlarmTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateGroupCommand.ts b/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateGroupCommand.ts index a1bf322eec4a2..1aec737702921 100644 --- a/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/DeleteCloudWatchAlarmTemplateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteCloudWatchAlarmTemplateGroupRequest } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteCloudWatchAlarmTemplateGroupRequest } from "../models/models_1"; import { DeleteCloudWatchAlarmTemplateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteClusterCommand.ts b/clients/client-medialive/src/commands/DeleteClusterCommand.ts index b5535128f19e8..1525cd2204649 100644 --- a/clients/client-medialive/src/commands/DeleteClusterCommand.ts +++ b/clients/client-medialive/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_1"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateCommand.ts b/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateCommand.ts index 43dd653424c2a..c64b79f21ba40 100644 --- a/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateCommand.ts +++ b/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteEventBridgeRuleTemplateRequest } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteEventBridgeRuleTemplateRequest } from "../models/models_1"; import { DeleteEventBridgeRuleTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateGroupCommand.ts b/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateGroupCommand.ts index be89ff9c785c4..206171b762549 100644 --- a/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/DeleteEventBridgeRuleTemplateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteEventBridgeRuleTemplateGroupRequest } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteEventBridgeRuleTemplateGroupRequest } from "../models/models_1"; import { DeleteEventBridgeRuleTemplateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteInputCommand.ts b/clients/client-medialive/src/commands/DeleteInputCommand.ts index 2dfa88e21b566..ef3608638bf54 100644 --- a/clients/client-medialive/src/commands/DeleteInputCommand.ts +++ b/clients/client-medialive/src/commands/DeleteInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteInputRequest, DeleteInputResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteInputRequest, DeleteInputResponse } from "../models/models_1"; import { DeleteInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteInputSecurityGroupCommand.ts b/clients/client-medialive/src/commands/DeleteInputSecurityGroupCommand.ts index 3dc6c1da9bba1..59e71389934e2 100644 --- a/clients/client-medialive/src/commands/DeleteInputSecurityGroupCommand.ts +++ b/clients/client-medialive/src/commands/DeleteInputSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteInputSecurityGroupRequest, DeleteInputSecurityGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteInputSecurityGroupRequest, DeleteInputSecurityGroupResponse } from "../models/models_1"; import { DeleteInputSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteMultiplexCommand.ts b/clients/client-medialive/src/commands/DeleteMultiplexCommand.ts index ef332ce3f23f1..3a0e82d0488ce 100644 --- a/clients/client-medialive/src/commands/DeleteMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/DeleteMultiplexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteMultiplexRequest, DeleteMultiplexResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteMultiplexRequest, DeleteMultiplexResponse } from "../models/models_1"; import { DeleteMultiplex } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteMultiplexProgramCommand.ts b/clients/client-medialive/src/commands/DeleteMultiplexProgramCommand.ts index a94cfa778af1a..870234567125f 100644 --- a/clients/client-medialive/src/commands/DeleteMultiplexProgramCommand.ts +++ b/clients/client-medialive/src/commands/DeleteMultiplexProgramCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteMultiplexProgramRequest, DeleteMultiplexProgramResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteMultiplexProgramRequest, DeleteMultiplexProgramResponse } from "../models/models_1"; import { DeleteMultiplexProgram } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteNetworkCommand.ts b/clients/client-medialive/src/commands/DeleteNetworkCommand.ts index 096673a434571..305fbc5797a5f 100644 --- a/clients/client-medialive/src/commands/DeleteNetworkCommand.ts +++ b/clients/client-medialive/src/commands/DeleteNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteNetworkRequest, DeleteNetworkResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteNetworkRequest, DeleteNetworkResponse } from "../models/models_1"; import { DeleteNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteNodeCommand.ts b/clients/client-medialive/src/commands/DeleteNodeCommand.ts index a0112b7980e52..c194a7c03b8dc 100644 --- a/clients/client-medialive/src/commands/DeleteNodeCommand.ts +++ b/clients/client-medialive/src/commands/DeleteNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteNodeRequest, DeleteNodeResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteNodeRequest, DeleteNodeResponse } from "../models/models_1"; import { DeleteNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteReservationCommand.ts b/clients/client-medialive/src/commands/DeleteReservationCommand.ts index 70c093b0c99f6..01e4ffa7ac9f0 100644 --- a/clients/client-medialive/src/commands/DeleteReservationCommand.ts +++ b/clients/client-medialive/src/commands/DeleteReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteReservationRequest, DeleteReservationResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteReservationRequest, DeleteReservationResponse } from "../models/models_1"; import { DeleteReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteScheduleCommand.ts b/clients/client-medialive/src/commands/DeleteScheduleCommand.ts index 7e2ef07246377..ad8143a9f6bd6 100644 --- a/clients/client-medialive/src/commands/DeleteScheduleCommand.ts +++ b/clients/client-medialive/src/commands/DeleteScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteScheduleRequest, DeleteScheduleResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteScheduleRequest, DeleteScheduleResponse } from "../models/models_1"; import { DeleteSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteSdiSourceCommand.ts b/clients/client-medialive/src/commands/DeleteSdiSourceCommand.ts index c50ad95d1c4da..dc757d6fd24ae 100644 --- a/clients/client-medialive/src/commands/DeleteSdiSourceCommand.ts +++ b/clients/client-medialive/src/commands/DeleteSdiSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteSdiSourceRequest, DeleteSdiSourceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteSdiSourceRequest, DeleteSdiSourceResponse } from "../models/models_1"; import { DeleteSdiSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteSignalMapCommand.ts b/clients/client-medialive/src/commands/DeleteSignalMapCommand.ts index 099c8f1732b9f..7db6e5174e50b 100644 --- a/clients/client-medialive/src/commands/DeleteSignalMapCommand.ts +++ b/clients/client-medialive/src/commands/DeleteSignalMapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteSignalMapRequest } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteSignalMapRequest } from "../models/models_1"; import { DeleteSignalMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DeleteTagsCommand.ts b/clients/client-medialive/src/commands/DeleteTagsCommand.ts index c07f33b5cdb9b..22298f24650a2 100644 --- a/clients/client-medialive/src/commands/DeleteTagsCommand.ts +++ b/clients/client-medialive/src/commands/DeleteTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DeleteTagsRequest } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DeleteTagsRequest } from "../models/models_1"; import { DeleteTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeAccountConfigurationCommand.ts b/clients/client-medialive/src/commands/DescribeAccountConfigurationCommand.ts index d89e036ab8e42..697c4da861dea 100644 --- a/clients/client-medialive/src/commands/DescribeAccountConfigurationCommand.ts +++ b/clients/client-medialive/src/commands/DescribeAccountConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeAccountConfigurationRequest, DescribeAccountConfigurationResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeAccountConfigurationRequest, DescribeAccountConfigurationResponse } from "../models/models_1"; import { DescribeAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeChannelCommand.ts b/clients/client-medialive/src/commands/DescribeChannelCommand.ts index c6f5c4534d724..cdb840276f725 100644 --- a/clients/client-medialive/src/commands/DescribeChannelCommand.ts +++ b/clients/client-medialive/src/commands/DescribeChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_1"; import { DescribeChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeChannelPlacementGroupCommand.ts b/clients/client-medialive/src/commands/DescribeChannelPlacementGroupCommand.ts index 5e4089ca67e61..5d83a17396567 100644 --- a/clients/client-medialive/src/commands/DescribeChannelPlacementGroupCommand.ts +++ b/clients/client-medialive/src/commands/DescribeChannelPlacementGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeChannelPlacementGroupRequest, DescribeChannelPlacementGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeChannelPlacementGroupRequest, DescribeChannelPlacementGroupResponse } from "../models/models_1"; import { DescribeChannelPlacementGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeClusterCommand.ts b/clients/client-medialive/src/commands/DescribeClusterCommand.ts index 620f34d8ece25..8dadba6fec328 100644 --- a/clients/client-medialive/src/commands/DescribeClusterCommand.ts +++ b/clients/client-medialive/src/commands/DescribeClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_1"; import { DescribeCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeInputCommand.ts b/clients/client-medialive/src/commands/DescribeInputCommand.ts index ccb484a806a72..2431940feac04 100644 --- a/clients/client-medialive/src/commands/DescribeInputCommand.ts +++ b/clients/client-medialive/src/commands/DescribeInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeInputRequest, DescribeInputResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeInputRequest, DescribeInputResponse } from "../models/models_1"; import { DescribeInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeInputDeviceCommand.ts b/clients/client-medialive/src/commands/DescribeInputDeviceCommand.ts index e4a30f19f5091..ef3781f1331fd 100644 --- a/clients/client-medialive/src/commands/DescribeInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/DescribeInputDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeInputDeviceRequest, DescribeInputDeviceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeInputDeviceRequest, DescribeInputDeviceResponse } from "../models/models_1"; import { DescribeInputDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeInputDeviceThumbnailCommand.ts b/clients/client-medialive/src/commands/DescribeInputDeviceThumbnailCommand.ts index 3daf356e0074b..fa89f44f3cb49 100644 --- a/clients/client-medialive/src/commands/DescribeInputDeviceThumbnailCommand.ts +++ b/clients/client-medialive/src/commands/DescribeInputDeviceThumbnailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeInputDeviceThumbnailRequest, DescribeInputDeviceThumbnailResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import { type DescribeInputDeviceThumbnailRequest, DescribeInputDeviceThumbnailResponse } from "../models/models_1"; import { DescribeInputDeviceThumbnail } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeInputSecurityGroupCommand.ts b/clients/client-medialive/src/commands/DescribeInputSecurityGroupCommand.ts index 620421feef013..090f7f60ad3ca 100644 --- a/clients/client-medialive/src/commands/DescribeInputSecurityGroupCommand.ts +++ b/clients/client-medialive/src/commands/DescribeInputSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeInputSecurityGroupRequest, DescribeInputSecurityGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeInputSecurityGroupRequest, DescribeInputSecurityGroupResponse } from "../models/models_1"; import { DescribeInputSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeMultiplexCommand.ts b/clients/client-medialive/src/commands/DescribeMultiplexCommand.ts index b374f9a35417a..ff2b8af1f240b 100644 --- a/clients/client-medialive/src/commands/DescribeMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/DescribeMultiplexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeMultiplexRequest, DescribeMultiplexResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeMultiplexRequest, DescribeMultiplexResponse } from "../models/models_1"; import { DescribeMultiplex } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeMultiplexProgramCommand.ts b/clients/client-medialive/src/commands/DescribeMultiplexProgramCommand.ts index 601cd58bad01c..d63d4465630d3 100644 --- a/clients/client-medialive/src/commands/DescribeMultiplexProgramCommand.ts +++ b/clients/client-medialive/src/commands/DescribeMultiplexProgramCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeMultiplexProgramRequest, DescribeMultiplexProgramResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeMultiplexProgramRequest, DescribeMultiplexProgramResponse } from "../models/models_1"; import { DescribeMultiplexProgram } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeNetworkCommand.ts b/clients/client-medialive/src/commands/DescribeNetworkCommand.ts index 6856d2fdef9b9..f0d0b5de57a3b 100644 --- a/clients/client-medialive/src/commands/DescribeNetworkCommand.ts +++ b/clients/client-medialive/src/commands/DescribeNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeNetworkRequest, DescribeNetworkResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeNetworkRequest, DescribeNetworkResponse } from "../models/models_1"; import { DescribeNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeNodeCommand.ts b/clients/client-medialive/src/commands/DescribeNodeCommand.ts index 4d838ec28a095..adf0dd9691cc9 100644 --- a/clients/client-medialive/src/commands/DescribeNodeCommand.ts +++ b/clients/client-medialive/src/commands/DescribeNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeNodeRequest, DescribeNodeResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeNodeRequest, DescribeNodeResponse } from "../models/models_1"; import { DescribeNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeOfferingCommand.ts b/clients/client-medialive/src/commands/DescribeOfferingCommand.ts index 5b648c6747b7b..43fa594c243b7 100644 --- a/clients/client-medialive/src/commands/DescribeOfferingCommand.ts +++ b/clients/client-medialive/src/commands/DescribeOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeOfferingRequest, DescribeOfferingResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeOfferingRequest, DescribeOfferingResponse } from "../models/models_1"; import { DescribeOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeReservationCommand.ts b/clients/client-medialive/src/commands/DescribeReservationCommand.ts index 6a81e1ad7187f..92f79ec10d387 100644 --- a/clients/client-medialive/src/commands/DescribeReservationCommand.ts +++ b/clients/client-medialive/src/commands/DescribeReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeReservationRequest, DescribeReservationResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeReservationRequest, DescribeReservationResponse } from "../models/models_1"; import { DescribeReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeScheduleCommand.ts b/clients/client-medialive/src/commands/DescribeScheduleCommand.ts index f17d6f1941c6c..c01a3d5ed1e84 100644 --- a/clients/client-medialive/src/commands/DescribeScheduleCommand.ts +++ b/clients/client-medialive/src/commands/DescribeScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeScheduleRequest, DescribeScheduleResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeScheduleRequest, DescribeScheduleResponse } from "../models/models_1"; import { DescribeSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeSdiSourceCommand.ts b/clients/client-medialive/src/commands/DescribeSdiSourceCommand.ts index 00cc1c7fad052..fda4b5d44a061 100644 --- a/clients/client-medialive/src/commands/DescribeSdiSourceCommand.ts +++ b/clients/client-medialive/src/commands/DescribeSdiSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeSdiSourceRequest, DescribeSdiSourceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeSdiSourceRequest, DescribeSdiSourceResponse } from "../models/models_1"; import { DescribeSdiSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/DescribeThumbnailsCommand.ts b/clients/client-medialive/src/commands/DescribeThumbnailsCommand.ts index 929e714818eae..28d73b795feaa 100644 --- a/clients/client-medialive/src/commands/DescribeThumbnailsCommand.ts +++ b/clients/client-medialive/src/commands/DescribeThumbnailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { DescribeThumbnailsRequest, DescribeThumbnailsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { DescribeThumbnailsRequest, DescribeThumbnailsResponse } from "../models/models_1"; import { DescribeThumbnails } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateCommand.ts b/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateCommand.ts index 89bbf3f5f3bef..6b534efd33bcd 100644 --- a/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateCommand.ts +++ b/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { GetCloudWatchAlarmTemplateRequest, GetCloudWatchAlarmTemplateResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { GetCloudWatchAlarmTemplateRequest, GetCloudWatchAlarmTemplateResponse } from "../models/models_1"; import { GetCloudWatchAlarmTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateGroupCommand.ts b/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateGroupCommand.ts index f832b6266bcfb..c400fd5b9e996 100644 --- a/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/GetCloudWatchAlarmTemplateGroupCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { GetCloudWatchAlarmTemplateGroupRequest, GetCloudWatchAlarmTemplateGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { + GetCloudWatchAlarmTemplateGroupRequest, + GetCloudWatchAlarmTemplateGroupResponse, +} from "../models/models_1"; import { GetCloudWatchAlarmTemplateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateCommand.ts b/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateCommand.ts index 3a8b0ef509bf7..1c9bc97827f1b 100644 --- a/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateCommand.ts +++ b/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { GetEventBridgeRuleTemplateRequest, GetEventBridgeRuleTemplateResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { GetEventBridgeRuleTemplateRequest, GetEventBridgeRuleTemplateResponse } from "../models/models_1"; import { GetEventBridgeRuleTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateGroupCommand.ts b/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateGroupCommand.ts index 04884ac5fab79..95dc1736b37d0 100644 --- a/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/GetEventBridgeRuleTemplateGroupCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { GetEventBridgeRuleTemplateGroupRequest, GetEventBridgeRuleTemplateGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { + GetEventBridgeRuleTemplateGroupRequest, + GetEventBridgeRuleTemplateGroupResponse, +} from "../models/models_1"; import { GetEventBridgeRuleTemplateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/GetSignalMapCommand.ts b/clients/client-medialive/src/commands/GetSignalMapCommand.ts index 9fabf13a8c861..2c74be9569730 100644 --- a/clients/client-medialive/src/commands/GetSignalMapCommand.ts +++ b/clients/client-medialive/src/commands/GetSignalMapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { GetSignalMapRequest, GetSignalMapResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { GetSignalMapRequest, GetSignalMapResponse } from "../models/models_1"; import { GetSignalMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListAlertsCommand.ts b/clients/client-medialive/src/commands/ListAlertsCommand.ts index e35dd8297d8ba..9f563084e1336 100644 --- a/clients/client-medialive/src/commands/ListAlertsCommand.ts +++ b/clients/client-medialive/src/commands/ListAlertsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListAlertsRequest, ListAlertsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListAlertsRequest, ListAlertsResponse } from "../models/models_1"; import { ListAlerts } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListChannelPlacementGroupsCommand.ts b/clients/client-medialive/src/commands/ListChannelPlacementGroupsCommand.ts index cfdc2d98fd1fb..4ebad356f2c57 100644 --- a/clients/client-medialive/src/commands/ListChannelPlacementGroupsCommand.ts +++ b/clients/client-medialive/src/commands/ListChannelPlacementGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListChannelPlacementGroupsRequest, ListChannelPlacementGroupsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListChannelPlacementGroupsRequest, ListChannelPlacementGroupsResponse } from "../models/models_1"; import { ListChannelPlacementGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListChannelsCommand.ts b/clients/client-medialive/src/commands/ListChannelsCommand.ts index 9cb3b31d750c9..fedada1e54fa0 100644 --- a/clients/client-medialive/src/commands/ListChannelsCommand.ts +++ b/clients/client-medialive/src/commands/ListChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListChannelsRequest, ListChannelsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListChannelsRequest, ListChannelsResponse } from "../models/models_1"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplateGroupsCommand.ts b/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplateGroupsCommand.ts index ea82ce752f222..5800b56ec65ac 100644 --- a/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplateGroupsCommand.ts +++ b/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplateGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListCloudWatchAlarmTemplateGroupsRequest, ListCloudWatchAlarmTemplateGroupsResponse, } from "../models/models_1"; diff --git a/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplatesCommand.ts b/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplatesCommand.ts index f1b44cf8cb683..aa4efcf677034 100644 --- a/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplatesCommand.ts +++ b/clients/client-medialive/src/commands/ListCloudWatchAlarmTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListCloudWatchAlarmTemplatesRequest, ListCloudWatchAlarmTemplatesResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListCloudWatchAlarmTemplatesRequest, ListCloudWatchAlarmTemplatesResponse } from "../models/models_1"; import { ListCloudWatchAlarmTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListClusterAlertsCommand.ts b/clients/client-medialive/src/commands/ListClusterAlertsCommand.ts index 929e9d1deb5a2..0b19f806e85e1 100644 --- a/clients/client-medialive/src/commands/ListClusterAlertsCommand.ts +++ b/clients/client-medialive/src/commands/ListClusterAlertsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListClusterAlertsRequest, ListClusterAlertsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListClusterAlertsRequest, ListClusterAlertsResponse } from "../models/models_1"; import { ListClusterAlerts } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListClustersCommand.ts b/clients/client-medialive/src/commands/ListClustersCommand.ts index 4dbebe20a446c..7bc3839cee97c 100644 --- a/clients/client-medialive/src/commands/ListClustersCommand.ts +++ b/clients/client-medialive/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListClustersRequest, ListClustersResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListClustersRequest, ListClustersResponse } from "../models/models_1"; import { ListClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListEventBridgeRuleTemplateGroupsCommand.ts b/clients/client-medialive/src/commands/ListEventBridgeRuleTemplateGroupsCommand.ts index 7dc9cec8163fc..f69ba56c73183 100644 --- a/clients/client-medialive/src/commands/ListEventBridgeRuleTemplateGroupsCommand.ts +++ b/clients/client-medialive/src/commands/ListEventBridgeRuleTemplateGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListEventBridgeRuleTemplateGroupsRequest, ListEventBridgeRuleTemplateGroupsResponse, } from "../models/models_1"; diff --git a/clients/client-medialive/src/commands/ListEventBridgeRuleTemplatesCommand.ts b/clients/client-medialive/src/commands/ListEventBridgeRuleTemplatesCommand.ts index c786ceb8d1508..2ae8ec986605e 100644 --- a/clients/client-medialive/src/commands/ListEventBridgeRuleTemplatesCommand.ts +++ b/clients/client-medialive/src/commands/ListEventBridgeRuleTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListEventBridgeRuleTemplatesRequest, ListEventBridgeRuleTemplatesResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListEventBridgeRuleTemplatesRequest, ListEventBridgeRuleTemplatesResponse } from "../models/models_1"; import { ListEventBridgeRuleTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListInputDeviceTransfersCommand.ts b/clients/client-medialive/src/commands/ListInputDeviceTransfersCommand.ts index ab4227cba8018..5dc42edf63178 100644 --- a/clients/client-medialive/src/commands/ListInputDeviceTransfersCommand.ts +++ b/clients/client-medialive/src/commands/ListInputDeviceTransfersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListInputDeviceTransfersRequest, ListInputDeviceTransfersResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListInputDeviceTransfersRequest, ListInputDeviceTransfersResponse } from "../models/models_1"; import { ListInputDeviceTransfers } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListInputDevicesCommand.ts b/clients/client-medialive/src/commands/ListInputDevicesCommand.ts index 60375f7fcdc64..e7a668cb1e632 100644 --- a/clients/client-medialive/src/commands/ListInputDevicesCommand.ts +++ b/clients/client-medialive/src/commands/ListInputDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListInputDevicesRequest, ListInputDevicesResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListInputDevicesRequest, ListInputDevicesResponse } from "../models/models_1"; import { ListInputDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListInputSecurityGroupsCommand.ts b/clients/client-medialive/src/commands/ListInputSecurityGroupsCommand.ts index 00a9a6b287646..bef44c9baa8d7 100644 --- a/clients/client-medialive/src/commands/ListInputSecurityGroupsCommand.ts +++ b/clients/client-medialive/src/commands/ListInputSecurityGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListInputSecurityGroupsRequest, ListInputSecurityGroupsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListInputSecurityGroupsRequest, ListInputSecurityGroupsResponse } from "../models/models_1"; import { ListInputSecurityGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListInputsCommand.ts b/clients/client-medialive/src/commands/ListInputsCommand.ts index ced77a62ca73b..aee9e1d0885cf 100644 --- a/clients/client-medialive/src/commands/ListInputsCommand.ts +++ b/clients/client-medialive/src/commands/ListInputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListInputsRequest, ListInputsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListInputsRequest, ListInputsResponse } from "../models/models_1"; import { ListInputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListMultiplexAlertsCommand.ts b/clients/client-medialive/src/commands/ListMultiplexAlertsCommand.ts index 8c27c49f27971..4bb99b461c468 100644 --- a/clients/client-medialive/src/commands/ListMultiplexAlertsCommand.ts +++ b/clients/client-medialive/src/commands/ListMultiplexAlertsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListMultiplexAlertsRequest, ListMultiplexAlertsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListMultiplexAlertsRequest, ListMultiplexAlertsResponse } from "../models/models_1"; import { ListMultiplexAlerts } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListMultiplexProgramsCommand.ts b/clients/client-medialive/src/commands/ListMultiplexProgramsCommand.ts index 639868d5a0bae..0f1826a274f8a 100644 --- a/clients/client-medialive/src/commands/ListMultiplexProgramsCommand.ts +++ b/clients/client-medialive/src/commands/ListMultiplexProgramsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListMultiplexProgramsRequest, ListMultiplexProgramsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListMultiplexProgramsRequest, ListMultiplexProgramsResponse } from "../models/models_1"; import { ListMultiplexPrograms } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListMultiplexesCommand.ts b/clients/client-medialive/src/commands/ListMultiplexesCommand.ts index 4893d9c0c81af..cfe45ffeb07f8 100644 --- a/clients/client-medialive/src/commands/ListMultiplexesCommand.ts +++ b/clients/client-medialive/src/commands/ListMultiplexesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListMultiplexesRequest, ListMultiplexesResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListMultiplexesRequest, ListMultiplexesResponse } from "../models/models_1"; import { ListMultiplexes } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListNetworksCommand.ts b/clients/client-medialive/src/commands/ListNetworksCommand.ts index a85bf3f7d60bd..09c5428290a2a 100644 --- a/clients/client-medialive/src/commands/ListNetworksCommand.ts +++ b/clients/client-medialive/src/commands/ListNetworksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListNetworksRequest, ListNetworksResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListNetworksRequest, ListNetworksResponse } from "../models/models_1"; import { ListNetworks } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListNodesCommand.ts b/clients/client-medialive/src/commands/ListNodesCommand.ts index 19705b3c80823..5f066b0922746 100644 --- a/clients/client-medialive/src/commands/ListNodesCommand.ts +++ b/clients/client-medialive/src/commands/ListNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListNodesRequest, ListNodesResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListNodesRequest, ListNodesResponse } from "../models/models_1"; import { ListNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListOfferingsCommand.ts b/clients/client-medialive/src/commands/ListOfferingsCommand.ts index 28755a82b9004..adc39458e9488 100644 --- a/clients/client-medialive/src/commands/ListOfferingsCommand.ts +++ b/clients/client-medialive/src/commands/ListOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListOfferingsRequest, ListOfferingsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListOfferingsRequest, ListOfferingsResponse } from "../models/models_1"; import { ListOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListReservationsCommand.ts b/clients/client-medialive/src/commands/ListReservationsCommand.ts index f551621595aa7..eb83b9f4648ff 100644 --- a/clients/client-medialive/src/commands/ListReservationsCommand.ts +++ b/clients/client-medialive/src/commands/ListReservationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListReservationsRequest, ListReservationsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListReservationsRequest, ListReservationsResponse } from "../models/models_1"; import { ListReservations } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListSdiSourcesCommand.ts b/clients/client-medialive/src/commands/ListSdiSourcesCommand.ts index 3b9a087f8b12d..cca7f036ffdb2 100644 --- a/clients/client-medialive/src/commands/ListSdiSourcesCommand.ts +++ b/clients/client-medialive/src/commands/ListSdiSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListSdiSourcesRequest, ListSdiSourcesResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListSdiSourcesRequest, ListSdiSourcesResponse } from "../models/models_1"; import { ListSdiSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListSignalMapsCommand.ts b/clients/client-medialive/src/commands/ListSignalMapsCommand.ts index 319ad7a3f7bb3..8d1a4b93c3c5a 100644 --- a/clients/client-medialive/src/commands/ListSignalMapsCommand.ts +++ b/clients/client-medialive/src/commands/ListSignalMapsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListSignalMapsRequest, ListSignalMapsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListSignalMapsRequest, ListSignalMapsResponse } from "../models/models_1"; import { ListSignalMaps } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListTagsForResourceCommand.ts b/clients/client-medialive/src/commands/ListTagsForResourceCommand.ts index 109129584d03a..436cac78f9781 100644 --- a/clients/client-medialive/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-medialive/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/ListVersionsCommand.ts b/clients/client-medialive/src/commands/ListVersionsCommand.ts index cb69189756345..e2753d0bb3faf 100644 --- a/clients/client-medialive/src/commands/ListVersionsCommand.ts +++ b/clients/client-medialive/src/commands/ListVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { ListVersionsRequest, ListVersionsResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { ListVersionsRequest, ListVersionsResponse } from "../models/models_1"; import { ListVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/PurchaseOfferingCommand.ts b/clients/client-medialive/src/commands/PurchaseOfferingCommand.ts index 22ab954100cec..953153c824f23 100644 --- a/clients/client-medialive/src/commands/PurchaseOfferingCommand.ts +++ b/clients/client-medialive/src/commands/PurchaseOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { PurchaseOfferingRequest, PurchaseOfferingResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { PurchaseOfferingRequest, PurchaseOfferingResponse } from "../models/models_1"; import { PurchaseOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/RebootInputDeviceCommand.ts b/clients/client-medialive/src/commands/RebootInputDeviceCommand.ts index 597ddf498de4d..84fbe4e27dade 100644 --- a/clients/client-medialive/src/commands/RebootInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/RebootInputDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { RebootInputDeviceRequest, RebootInputDeviceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { RebootInputDeviceRequest, RebootInputDeviceResponse } from "../models/models_1"; import { RebootInputDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/RejectInputDeviceTransferCommand.ts b/clients/client-medialive/src/commands/RejectInputDeviceTransferCommand.ts index 325a1ee3e8213..360f41cdadc13 100644 --- a/clients/client-medialive/src/commands/RejectInputDeviceTransferCommand.ts +++ b/clients/client-medialive/src/commands/RejectInputDeviceTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { RejectInputDeviceTransferRequest, RejectInputDeviceTransferResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { RejectInputDeviceTransferRequest, RejectInputDeviceTransferResponse } from "../models/models_1"; import { RejectInputDeviceTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/RestartChannelPipelinesCommand.ts b/clients/client-medialive/src/commands/RestartChannelPipelinesCommand.ts index 2b4efca67d546..81b870b1bdaa8 100644 --- a/clients/client-medialive/src/commands/RestartChannelPipelinesCommand.ts +++ b/clients/client-medialive/src/commands/RestartChannelPipelinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { RestartChannelPipelinesRequest, RestartChannelPipelinesResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { RestartChannelPipelinesRequest, RestartChannelPipelinesResponse } from "../models/models_1"; import { RestartChannelPipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/StartChannelCommand.ts b/clients/client-medialive/src/commands/StartChannelCommand.ts index b35b02e8a225f..0b7592c487b01 100644 --- a/clients/client-medialive/src/commands/StartChannelCommand.ts +++ b/clients/client-medialive/src/commands/StartChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { StartChannelRequest, StartChannelResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StartChannelRequest, StartChannelResponse } from "../models/models_1"; import { StartChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/StartDeleteMonitorDeploymentCommand.ts b/clients/client-medialive/src/commands/StartDeleteMonitorDeploymentCommand.ts index 7fb125ef00225..fb577aa402b9e 100644 --- a/clients/client-medialive/src/commands/StartDeleteMonitorDeploymentCommand.ts +++ b/clients/client-medialive/src/commands/StartDeleteMonitorDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { StartDeleteMonitorDeploymentRequest, StartDeleteMonitorDeploymentResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StartDeleteMonitorDeploymentRequest, StartDeleteMonitorDeploymentResponse } from "../models/models_1"; import { StartDeleteMonitorDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/StartInputDeviceCommand.ts b/clients/client-medialive/src/commands/StartInputDeviceCommand.ts index bed18956e6f61..596dc309c0f1b 100644 --- a/clients/client-medialive/src/commands/StartInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/StartInputDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { StartInputDeviceRequest, StartInputDeviceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StartInputDeviceRequest, StartInputDeviceResponse } from "../models/models_1"; import { StartInputDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/StartInputDeviceMaintenanceWindowCommand.ts b/clients/client-medialive/src/commands/StartInputDeviceMaintenanceWindowCommand.ts index e89b907969828..8f20b8aa41c35 100644 --- a/clients/client-medialive/src/commands/StartInputDeviceMaintenanceWindowCommand.ts +++ b/clients/client-medialive/src/commands/StartInputDeviceMaintenanceWindowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StartInputDeviceMaintenanceWindowRequest, StartInputDeviceMaintenanceWindowResponse, } from "../models/models_1"; diff --git a/clients/client-medialive/src/commands/StartMonitorDeploymentCommand.ts b/clients/client-medialive/src/commands/StartMonitorDeploymentCommand.ts index 9d1196a6060a9..36c5f2b399745 100644 --- a/clients/client-medialive/src/commands/StartMonitorDeploymentCommand.ts +++ b/clients/client-medialive/src/commands/StartMonitorDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { StartMonitorDeploymentRequest, StartMonitorDeploymentResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StartMonitorDeploymentRequest, StartMonitorDeploymentResponse } from "../models/models_1"; import { StartMonitorDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/StartMultiplexCommand.ts b/clients/client-medialive/src/commands/StartMultiplexCommand.ts index b1014cab7c243..ee52fb92e7b23 100644 --- a/clients/client-medialive/src/commands/StartMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/StartMultiplexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { StartMultiplexRequest, StartMultiplexResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StartMultiplexRequest, StartMultiplexResponse } from "../models/models_1"; import { StartMultiplex } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/StartUpdateSignalMapCommand.ts b/clients/client-medialive/src/commands/StartUpdateSignalMapCommand.ts index 7c8ea205522ca..4f5a700bbde06 100644 --- a/clients/client-medialive/src/commands/StartUpdateSignalMapCommand.ts +++ b/clients/client-medialive/src/commands/StartUpdateSignalMapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { StartUpdateSignalMapRequest, StartUpdateSignalMapResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StartUpdateSignalMapRequest, StartUpdateSignalMapResponse } from "../models/models_1"; import { StartUpdateSignalMap } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/StopChannelCommand.ts b/clients/client-medialive/src/commands/StopChannelCommand.ts index c1db976cb2761..9b393bb03174d 100644 --- a/clients/client-medialive/src/commands/StopChannelCommand.ts +++ b/clients/client-medialive/src/commands/StopChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { StopChannelRequest, StopChannelResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StopChannelRequest, StopChannelResponse } from "../models/models_1"; import { StopChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/StopInputDeviceCommand.ts b/clients/client-medialive/src/commands/StopInputDeviceCommand.ts index 50b8e2a46708f..26724394d63fd 100644 --- a/clients/client-medialive/src/commands/StopInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/StopInputDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { StopInputDeviceRequest, StopInputDeviceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StopInputDeviceRequest, StopInputDeviceResponse } from "../models/models_1"; import { StopInputDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/StopMultiplexCommand.ts b/clients/client-medialive/src/commands/StopMultiplexCommand.ts index c905ff9fd95e2..23fd8f512dca9 100644 --- a/clients/client-medialive/src/commands/StopMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/StopMultiplexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { StopMultiplexRequest, StopMultiplexResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { StopMultiplexRequest, StopMultiplexResponse } from "../models/models_1"; import { StopMultiplex } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/TransferInputDeviceCommand.ts b/clients/client-medialive/src/commands/TransferInputDeviceCommand.ts index d01bd80960b84..5f4b3652c1969 100644 --- a/clients/client-medialive/src/commands/TransferInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/TransferInputDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { TransferInputDeviceRequest, TransferInputDeviceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { TransferInputDeviceRequest, TransferInputDeviceResponse } from "../models/models_1"; import { TransferInputDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateAccountConfigurationCommand.ts b/clients/client-medialive/src/commands/UpdateAccountConfigurationCommand.ts index af32b73a21522..389c3606736f4 100644 --- a/clients/client-medialive/src/commands/UpdateAccountConfigurationCommand.ts +++ b/clients/client-medialive/src/commands/UpdateAccountConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateAccountConfigurationRequest, UpdateAccountConfigurationResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateAccountConfigurationRequest, UpdateAccountConfigurationResponse } from "../models/models_1"; import { UpdateAccountConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateChannelClassCommand.ts b/clients/client-medialive/src/commands/UpdateChannelClassCommand.ts index fa7649cce1b28..b1d81bc117d4c 100644 --- a/clients/client-medialive/src/commands/UpdateChannelClassCommand.ts +++ b/clients/client-medialive/src/commands/UpdateChannelClassCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateChannelClassRequest, UpdateChannelClassResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateChannelClassRequest, UpdateChannelClassResponse } from "../models/models_1"; import { UpdateChannelClass } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateChannelCommand.ts b/clients/client-medialive/src/commands/UpdateChannelCommand.ts index 0ea8218be76f8..ac4cef861b48b 100644 --- a/clients/client-medialive/src/commands/UpdateChannelCommand.ts +++ b/clients/client-medialive/src/commands/UpdateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_1"; import { UpdateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateChannelPlacementGroupCommand.ts b/clients/client-medialive/src/commands/UpdateChannelPlacementGroupCommand.ts index b0b485732f6bf..d6f696a358a9a 100644 --- a/clients/client-medialive/src/commands/UpdateChannelPlacementGroupCommand.ts +++ b/clients/client-medialive/src/commands/UpdateChannelPlacementGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateChannelPlacementGroupRequest, UpdateChannelPlacementGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateChannelPlacementGroupRequest, UpdateChannelPlacementGroupResponse } from "../models/models_1"; import { UpdateChannelPlacementGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateCommand.ts b/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateCommand.ts index 5278d91c0e347..3648d9c6580ab 100644 --- a/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateCommand.ts +++ b/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateCloudWatchAlarmTemplateRequest, UpdateCloudWatchAlarmTemplateResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateCloudWatchAlarmTemplateRequest, UpdateCloudWatchAlarmTemplateResponse } from "../models/models_1"; import { UpdateCloudWatchAlarmTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateGroupCommand.ts b/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateGroupCommand.ts index 686a9539e822c..3358eb01a513d 100644 --- a/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/UpdateCloudWatchAlarmTemplateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateCloudWatchAlarmTemplateGroupRequest, UpdateCloudWatchAlarmTemplateGroupResponse, } from "../models/models_1"; diff --git a/clients/client-medialive/src/commands/UpdateClusterCommand.ts b/clients/client-medialive/src/commands/UpdateClusterCommand.ts index 9ca665825819f..05dd5091fd3ee 100644 --- a/clients/client-medialive/src/commands/UpdateClusterCommand.ts +++ b/clients/client-medialive/src/commands/UpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_1"; import { UpdateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateCommand.ts b/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateCommand.ts index bfe243fc56bc0..61a96b931a545 100644 --- a/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateCommand.ts +++ b/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateEventBridgeRuleTemplateRequest, UpdateEventBridgeRuleTemplateResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateEventBridgeRuleTemplateRequest, UpdateEventBridgeRuleTemplateResponse } from "../models/models_1"; import { UpdateEventBridgeRuleTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateGroupCommand.ts b/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateGroupCommand.ts index e5ffaf7dd161d..2b2f75072636e 100644 --- a/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateGroupCommand.ts +++ b/clients/client-medialive/src/commands/UpdateEventBridgeRuleTemplateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateEventBridgeRuleTemplateGroupRequest, UpdateEventBridgeRuleTemplateGroupResponse, } from "../models/models_1"; diff --git a/clients/client-medialive/src/commands/UpdateInputCommand.ts b/clients/client-medialive/src/commands/UpdateInputCommand.ts index 9a4d955933aa5..30d60de285968 100644 --- a/clients/client-medialive/src/commands/UpdateInputCommand.ts +++ b/clients/client-medialive/src/commands/UpdateInputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateInputRequest, UpdateInputResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateInputRequest, UpdateInputResponse } from "../models/models_1"; import { UpdateInput } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateInputDeviceCommand.ts b/clients/client-medialive/src/commands/UpdateInputDeviceCommand.ts index 3c4657e58fbfa..d78d31011e879 100644 --- a/clients/client-medialive/src/commands/UpdateInputDeviceCommand.ts +++ b/clients/client-medialive/src/commands/UpdateInputDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateInputDeviceRequest, UpdateInputDeviceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateInputDeviceRequest, UpdateInputDeviceResponse } from "../models/models_1"; import { UpdateInputDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateInputSecurityGroupCommand.ts b/clients/client-medialive/src/commands/UpdateInputSecurityGroupCommand.ts index 32efe38239d83..cc2f93d5cd25c 100644 --- a/clients/client-medialive/src/commands/UpdateInputSecurityGroupCommand.ts +++ b/clients/client-medialive/src/commands/UpdateInputSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateInputSecurityGroupRequest, UpdateInputSecurityGroupResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateInputSecurityGroupRequest, UpdateInputSecurityGroupResponse } from "../models/models_1"; import { UpdateInputSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateMultiplexCommand.ts b/clients/client-medialive/src/commands/UpdateMultiplexCommand.ts index d6d3430ab4bc6..6b6e5c1f8d109 100644 --- a/clients/client-medialive/src/commands/UpdateMultiplexCommand.ts +++ b/clients/client-medialive/src/commands/UpdateMultiplexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateMultiplexRequest, UpdateMultiplexResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateMultiplexRequest, UpdateMultiplexResponse } from "../models/models_1"; import { UpdateMultiplex } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateMultiplexProgramCommand.ts b/clients/client-medialive/src/commands/UpdateMultiplexProgramCommand.ts index 7ac48761c8bf2..396b6071273e8 100644 --- a/clients/client-medialive/src/commands/UpdateMultiplexProgramCommand.ts +++ b/clients/client-medialive/src/commands/UpdateMultiplexProgramCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateMultiplexProgramRequest, UpdateMultiplexProgramResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateMultiplexProgramRequest, UpdateMultiplexProgramResponse } from "../models/models_1"; import { UpdateMultiplexProgram } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateNetworkCommand.ts b/clients/client-medialive/src/commands/UpdateNetworkCommand.ts index 0c1f6633d9ce2..53b3345a4044b 100644 --- a/clients/client-medialive/src/commands/UpdateNetworkCommand.ts +++ b/clients/client-medialive/src/commands/UpdateNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateNetworkRequest, UpdateNetworkResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateNetworkRequest, UpdateNetworkResponse } from "../models/models_1"; import { UpdateNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateNodeCommand.ts b/clients/client-medialive/src/commands/UpdateNodeCommand.ts index a67f3570a7276..463dc13b878aa 100644 --- a/clients/client-medialive/src/commands/UpdateNodeCommand.ts +++ b/clients/client-medialive/src/commands/UpdateNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateNodeRequest, UpdateNodeResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateNodeRequest, UpdateNodeResponse } from "../models/models_1"; import { UpdateNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateNodeStateCommand.ts b/clients/client-medialive/src/commands/UpdateNodeStateCommand.ts index eab714ab776a2..81ad9b43e6713 100644 --- a/clients/client-medialive/src/commands/UpdateNodeStateCommand.ts +++ b/clients/client-medialive/src/commands/UpdateNodeStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateNodeStateRequest, UpdateNodeStateResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateNodeStateRequest, UpdateNodeStateResponse } from "../models/models_1"; import { UpdateNodeState } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateReservationCommand.ts b/clients/client-medialive/src/commands/UpdateReservationCommand.ts index 0d791344e5b7e..57ca3bd4d3d4b 100644 --- a/clients/client-medialive/src/commands/UpdateReservationCommand.ts +++ b/clients/client-medialive/src/commands/UpdateReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateReservationRequest, UpdateReservationResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateReservationRequest, UpdateReservationResponse } from "../models/models_1"; import { UpdateReservation } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/commands/UpdateSdiSourceCommand.ts b/clients/client-medialive/src/commands/UpdateSdiSourceCommand.ts index 33185302b1aef..87e3722ade79b 100644 --- a/clients/client-medialive/src/commands/UpdateSdiSourceCommand.ts +++ b/clients/client-medialive/src/commands/UpdateSdiSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; -import { UpdateSdiSourceRequest, UpdateSdiSourceResponse } from "../models/models_1"; +import type { MediaLiveClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaLiveClient"; +import type { UpdateSdiSourceRequest, UpdateSdiSourceResponse } from "../models/models_1"; import { UpdateSdiSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-medialive/src/endpoint/EndpointParameters.ts b/clients/client-medialive/src/endpoint/EndpointParameters.ts index 669d4cf7488b1..7ce5e73d47c05 100644 --- a/clients/client-medialive/src/endpoint/EndpointParameters.ts +++ b/clients/client-medialive/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-medialive/src/endpoint/endpointResolver.ts b/clients/client-medialive/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-medialive/src/endpoint/endpointResolver.ts +++ b/clients/client-medialive/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-medialive/src/extensionConfiguration.ts b/clients/client-medialive/src/extensionConfiguration.ts index 2da6b3941b2b0..f230098d1e2ac 100644 --- a/clients/client-medialive/src/extensionConfiguration.ts +++ b/clients/client-medialive/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-medialive/src/models/MediaLiveServiceException.ts b/clients/client-medialive/src/models/MediaLiveServiceException.ts index bd3565abb2cea..fadb1302e6e2e 100644 --- a/clients/client-medialive/src/models/MediaLiveServiceException.ts +++ b/clients/client-medialive/src/models/MediaLiveServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-medialive/src/models/errors.ts b/clients/client-medialive/src/models/errors.ts index 632f301ce2f32..02d2ce227920f 100644 --- a/clients/client-medialive/src/models/errors.ts +++ b/clients/client-medialive/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MediaLiveServiceException as __BaseException } from "./MediaLiveServiceException"; import { ValidationError } from "./models_0"; diff --git a/clients/client-medialive/src/pagination/DescribeSchedulePaginator.ts b/clients/client-medialive/src/pagination/DescribeSchedulePaginator.ts index eb550aebb16dd..20bb5207bc80c 100644 --- a/clients/client-medialive/src/pagination/DescribeSchedulePaginator.ts +++ b/clients/client-medialive/src/pagination/DescribeSchedulePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeScheduleCommand, diff --git a/clients/client-medialive/src/pagination/Interfaces.ts b/clients/client-medialive/src/pagination/Interfaces.ts index 18a9977c0062a..fb0573263d3f2 100644 --- a/clients/client-medialive/src/pagination/Interfaces.ts +++ b/clients/client-medialive/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MediaLiveClient } from "../MediaLiveClient"; diff --git a/clients/client-medialive/src/pagination/ListAlertsPaginator.ts b/clients/client-medialive/src/pagination/ListAlertsPaginator.ts index 9fd5360d426a7..eacb8e09db82d 100644 --- a/clients/client-medialive/src/pagination/ListAlertsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListAlertsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAlertsCommand, ListAlertsCommandInput, ListAlertsCommandOutput } from "../commands/ListAlertsCommand"; import { MediaLiveClient } from "../MediaLiveClient"; diff --git a/clients/client-medialive/src/pagination/ListChannelPlacementGroupsPaginator.ts b/clients/client-medialive/src/pagination/ListChannelPlacementGroupsPaginator.ts index ba7caf5b84c3f..b30761be673e7 100644 --- a/clients/client-medialive/src/pagination/ListChannelPlacementGroupsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListChannelPlacementGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelPlacementGroupsCommand, diff --git a/clients/client-medialive/src/pagination/ListChannelsPaginator.ts b/clients/client-medialive/src/pagination/ListChannelsPaginator.ts index 55d31c202827d..e907005b5989d 100644 --- a/clients/client-medialive/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelsCommand, diff --git a/clients/client-medialive/src/pagination/ListCloudWatchAlarmTemplateGroupsPaginator.ts b/clients/client-medialive/src/pagination/ListCloudWatchAlarmTemplateGroupsPaginator.ts index 3cd229a513b6f..385aa5a7a0f98 100644 --- a/clients/client-medialive/src/pagination/ListCloudWatchAlarmTemplateGroupsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListCloudWatchAlarmTemplateGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCloudWatchAlarmTemplateGroupsCommand, diff --git a/clients/client-medialive/src/pagination/ListCloudWatchAlarmTemplatesPaginator.ts b/clients/client-medialive/src/pagination/ListCloudWatchAlarmTemplatesPaginator.ts index 08b8fe99bc22d..9b113c1672dec 100644 --- a/clients/client-medialive/src/pagination/ListCloudWatchAlarmTemplatesPaginator.ts +++ b/clients/client-medialive/src/pagination/ListCloudWatchAlarmTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCloudWatchAlarmTemplatesCommand, diff --git a/clients/client-medialive/src/pagination/ListClusterAlertsPaginator.ts b/clients/client-medialive/src/pagination/ListClusterAlertsPaginator.ts index 63334d1ab300a..b285284218516 100644 --- a/clients/client-medialive/src/pagination/ListClusterAlertsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListClusterAlertsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClusterAlertsCommand, diff --git a/clients/client-medialive/src/pagination/ListClustersPaginator.ts b/clients/client-medialive/src/pagination/ListClustersPaginator.ts index f4fd94c91dc54..4fe5e54aa2a08 100644 --- a/clients/client-medialive/src/pagination/ListClustersPaginator.ts +++ b/clients/client-medialive/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-medialive/src/pagination/ListEventBridgeRuleTemplateGroupsPaginator.ts b/clients/client-medialive/src/pagination/ListEventBridgeRuleTemplateGroupsPaginator.ts index be0fb9e5bb570..e0bbbe0934731 100644 --- a/clients/client-medialive/src/pagination/ListEventBridgeRuleTemplateGroupsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListEventBridgeRuleTemplateGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventBridgeRuleTemplateGroupsCommand, diff --git a/clients/client-medialive/src/pagination/ListEventBridgeRuleTemplatesPaginator.ts b/clients/client-medialive/src/pagination/ListEventBridgeRuleTemplatesPaginator.ts index 2ee78f560e34d..77118ad4af40a 100644 --- a/clients/client-medialive/src/pagination/ListEventBridgeRuleTemplatesPaginator.ts +++ b/clients/client-medialive/src/pagination/ListEventBridgeRuleTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventBridgeRuleTemplatesCommand, diff --git a/clients/client-medialive/src/pagination/ListInputDeviceTransfersPaginator.ts b/clients/client-medialive/src/pagination/ListInputDeviceTransfersPaginator.ts index df459f45f20bb..c4f1cb9e0e8c4 100644 --- a/clients/client-medialive/src/pagination/ListInputDeviceTransfersPaginator.ts +++ b/clients/client-medialive/src/pagination/ListInputDeviceTransfersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInputDeviceTransfersCommand, diff --git a/clients/client-medialive/src/pagination/ListInputDevicesPaginator.ts b/clients/client-medialive/src/pagination/ListInputDevicesPaginator.ts index 18bf1ddaac093..4a042990b780e 100644 --- a/clients/client-medialive/src/pagination/ListInputDevicesPaginator.ts +++ b/clients/client-medialive/src/pagination/ListInputDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInputDevicesCommand, diff --git a/clients/client-medialive/src/pagination/ListInputSecurityGroupsPaginator.ts b/clients/client-medialive/src/pagination/ListInputSecurityGroupsPaginator.ts index 8171015e737a2..77984983a1530 100644 --- a/clients/client-medialive/src/pagination/ListInputSecurityGroupsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListInputSecurityGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInputSecurityGroupsCommand, diff --git a/clients/client-medialive/src/pagination/ListInputsPaginator.ts b/clients/client-medialive/src/pagination/ListInputsPaginator.ts index 7a5558258fe2b..580f0d6469128 100644 --- a/clients/client-medialive/src/pagination/ListInputsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListInputsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInputsCommand, ListInputsCommandInput, ListInputsCommandOutput } from "../commands/ListInputsCommand"; import { MediaLiveClient } from "../MediaLiveClient"; diff --git a/clients/client-medialive/src/pagination/ListMultiplexAlertsPaginator.ts b/clients/client-medialive/src/pagination/ListMultiplexAlertsPaginator.ts index baed032b45764..e79db3dfd7ba6 100644 --- a/clients/client-medialive/src/pagination/ListMultiplexAlertsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListMultiplexAlertsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMultiplexAlertsCommand, diff --git a/clients/client-medialive/src/pagination/ListMultiplexProgramsPaginator.ts b/clients/client-medialive/src/pagination/ListMultiplexProgramsPaginator.ts index d7faa51f595d5..f08b7e2636f5f 100644 --- a/clients/client-medialive/src/pagination/ListMultiplexProgramsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListMultiplexProgramsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMultiplexProgramsCommand, diff --git a/clients/client-medialive/src/pagination/ListMultiplexesPaginator.ts b/clients/client-medialive/src/pagination/ListMultiplexesPaginator.ts index 2e1a7b2b5f3c1..7785c5ce87453 100644 --- a/clients/client-medialive/src/pagination/ListMultiplexesPaginator.ts +++ b/clients/client-medialive/src/pagination/ListMultiplexesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMultiplexesCommand, diff --git a/clients/client-medialive/src/pagination/ListNetworksPaginator.ts b/clients/client-medialive/src/pagination/ListNetworksPaginator.ts index 8ad0b92476289..e4785074d0aae 100644 --- a/clients/client-medialive/src/pagination/ListNetworksPaginator.ts +++ b/clients/client-medialive/src/pagination/ListNetworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNetworksCommand, diff --git a/clients/client-medialive/src/pagination/ListNodesPaginator.ts b/clients/client-medialive/src/pagination/ListNodesPaginator.ts index ba111a1e1527b..18778bf6ffad0 100644 --- a/clients/client-medialive/src/pagination/ListNodesPaginator.ts +++ b/clients/client-medialive/src/pagination/ListNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNodesCommand, ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand"; import { MediaLiveClient } from "../MediaLiveClient"; diff --git a/clients/client-medialive/src/pagination/ListOfferingsPaginator.ts b/clients/client-medialive/src/pagination/ListOfferingsPaginator.ts index 607ee3b544f9b..0b31a6d73c6fc 100644 --- a/clients/client-medialive/src/pagination/ListOfferingsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOfferingsCommand, diff --git a/clients/client-medialive/src/pagination/ListReservationsPaginator.ts b/clients/client-medialive/src/pagination/ListReservationsPaginator.ts index abfe51d34fc3b..8bba1e305754a 100644 --- a/clients/client-medialive/src/pagination/ListReservationsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListReservationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReservationsCommand, diff --git a/clients/client-medialive/src/pagination/ListSdiSourcesPaginator.ts b/clients/client-medialive/src/pagination/ListSdiSourcesPaginator.ts index 6969b8068bdaa..a50d544812b3b 100644 --- a/clients/client-medialive/src/pagination/ListSdiSourcesPaginator.ts +++ b/clients/client-medialive/src/pagination/ListSdiSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSdiSourcesCommand, diff --git a/clients/client-medialive/src/pagination/ListSignalMapsPaginator.ts b/clients/client-medialive/src/pagination/ListSignalMapsPaginator.ts index 422362396ce09..552ca5e8f4f4c 100644 --- a/clients/client-medialive/src/pagination/ListSignalMapsPaginator.ts +++ b/clients/client-medialive/src/pagination/ListSignalMapsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSignalMapsCommand, diff --git a/clients/client-medialive/src/runtimeConfig.browser.ts b/clients/client-medialive/src/runtimeConfig.browser.ts index 55ef08a846736..efa52b3b829c9 100644 --- a/clients/client-medialive/src/runtimeConfig.browser.ts +++ b/clients/client-medialive/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaLiveClientConfig } from "./MediaLiveClient"; + +import type { MediaLiveClientConfig } from "./MediaLiveClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-medialive/src/runtimeConfig.native.ts b/clients/client-medialive/src/runtimeConfig.native.ts index e772d7d6acc7e..cb357514243de 100644 --- a/clients/client-medialive/src/runtimeConfig.native.ts +++ b/clients/client-medialive/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MediaLiveClientConfig } from "./MediaLiveClient"; +import type { MediaLiveClientConfig } from "./MediaLiveClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-medialive/src/runtimeConfig.shared.ts b/clients/client-medialive/src/runtimeConfig.shared.ts index 98597ec81a3ac..79f8177afd93a 100644 --- a/clients/client-medialive/src/runtimeConfig.shared.ts +++ b/clients/client-medialive/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMediaLiveHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MediaLiveClientConfig } from "./MediaLiveClient"; +import type { MediaLiveClientConfig } from "./MediaLiveClient"; /** * @internal diff --git a/clients/client-medialive/src/runtimeConfig.ts b/clients/client-medialive/src/runtimeConfig.ts index a62e45a22c0c6..9becfa6848a48 100644 --- a/clients/client-medialive/src/runtimeConfig.ts +++ b/clients/client-medialive/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaLiveClientConfig } from "./MediaLiveClient"; + +import type { MediaLiveClientConfig } from "./MediaLiveClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-medialive/src/runtimeExtensions.ts b/clients/client-medialive/src/runtimeExtensions.ts index 0d498b0295482..1393050db37fc 100644 --- a/clients/client-medialive/src/runtimeExtensions.ts +++ b/clients/client-medialive/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MediaLiveExtensionConfiguration } from "./extensionConfiguration"; +import type { MediaLiveExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-medialive/src/schemas/schemas_0.ts b/clients/client-medialive/src/schemas/schemas_0.ts index d75b6a8c7774e..d2a7a77c00ec6 100644 --- a/clients/client-medialive/src/schemas/schemas_0.ts +++ b/clients/client-medialive/src/schemas/schemas_0.ts @@ -2406,7 +2406,7 @@ const n0 = "com.amazonaws.medialive"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-mediapackage-vod/package.json b/clients/client-mediapackage-vod/package.json index 0b93805826b02..b8d636cda9ad5 100644 --- a/clients/client-mediapackage-vod/package.json +++ b/clients/client-mediapackage-vod/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mediapackage-vod/src/MediaPackageVod.ts b/clients/client-mediapackage-vod/src/MediaPackageVod.ts index 5f5ee21438a7d..11c12ae390bae 100644 --- a/clients/client-mediapackage-vod/src/MediaPackageVod.ts +++ b/clients/client-mediapackage-vod/src/MediaPackageVod.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ConfigureLogsCommand, @@ -71,7 +71,7 @@ import { UpdatePackagingGroupCommandInput, UpdatePackagingGroupCommandOutput, } from "./commands/UpdatePackagingGroupCommand"; -import { MediaPackageVodClient, MediaPackageVodClientConfig } from "./MediaPackageVodClient"; +import { MediaPackageVodClient } from "./MediaPackageVodClient"; const commands = { ConfigureLogsCommand, diff --git a/clients/client-mediapackage-vod/src/MediaPackageVodClient.ts b/clients/client-mediapackage-vod/src/MediaPackageVodClient.ts index 98eda208cc2a7..82222bfd6f9df 100644 --- a/clients/client-mediapackage-vod/src/MediaPackageVodClient.ts +++ b/clients/client-mediapackage-vod/src/MediaPackageVodClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMediaPackageVodHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { ConfigureLogsCommandInput, ConfigureLogsCommandOutput } from "./commands/ConfigureLogsCommand"; @@ -111,7 +120,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mediapackage-vod/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mediapackage-vod/src/auth/httpAuthExtensionConfiguration.ts index 38db14fd04807..e60b7a23f4dfe 100644 --- a/clients/client-mediapackage-vod/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mediapackage-vod/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MediaPackageVodHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MediaPackageVodHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mediapackage-vod/src/auth/httpAuthSchemeProvider.ts b/clients/client-mediapackage-vod/src/auth/httpAuthSchemeProvider.ts index e052ebef90c6f..e853cc60318c8 100644 --- a/clients/client-mediapackage-vod/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mediapackage-vod/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MediaPackageVodClientConfig, MediaPackageVodClientResolvedConfig } from "../MediaPackageVodClient"; +import { type MediaPackageVodClientResolvedConfig, MediaPackageVodClientConfig } from "../MediaPackageVodClient"; /** * @internal diff --git a/clients/client-mediapackage-vod/src/commands/ConfigureLogsCommand.ts b/clients/client-mediapackage-vod/src/commands/ConfigureLogsCommand.ts index ec88f8b4f4778..8823845470225 100644 --- a/clients/client-mediapackage-vod/src/commands/ConfigureLogsCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ConfigureLogsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { ConfigureLogsRequest, ConfigureLogsResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { ConfigureLogsRequest, ConfigureLogsResponse } from "../models/models_0"; import { ConfigureLogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/CreateAssetCommand.ts b/clients/client-mediapackage-vod/src/commands/CreateAssetCommand.ts index eac40d3a102d3..5c0ee9f80867d 100644 --- a/clients/client-mediapackage-vod/src/commands/CreateAssetCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/CreateAssetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { CreateAssetRequest, CreateAssetResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { CreateAssetRequest, CreateAssetResponse } from "../models/models_0"; import { CreateAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/CreatePackagingConfigurationCommand.ts b/clients/client-mediapackage-vod/src/commands/CreatePackagingConfigurationCommand.ts index d4f2f1ae34c9c..cde0213318d58 100644 --- a/clients/client-mediapackage-vod/src/commands/CreatePackagingConfigurationCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/CreatePackagingConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { CreatePackagingConfigurationRequest, CreatePackagingConfigurationResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { CreatePackagingConfigurationRequest, CreatePackagingConfigurationResponse } from "../models/models_0"; import { CreatePackagingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/CreatePackagingGroupCommand.ts b/clients/client-mediapackage-vod/src/commands/CreatePackagingGroupCommand.ts index f64e5af496338..0b067169ed4a4 100644 --- a/clients/client-mediapackage-vod/src/commands/CreatePackagingGroupCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/CreatePackagingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { CreatePackagingGroupRequest, CreatePackagingGroupResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { CreatePackagingGroupRequest, CreatePackagingGroupResponse } from "../models/models_0"; import { CreatePackagingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/DeleteAssetCommand.ts b/clients/client-mediapackage-vod/src/commands/DeleteAssetCommand.ts index 83767ccfa1cba..a6ad36da59e8a 100644 --- a/clients/client-mediapackage-vod/src/commands/DeleteAssetCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DeleteAssetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { DeleteAssetRequest, DeleteAssetResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { DeleteAssetRequest, DeleteAssetResponse } from "../models/models_0"; import { DeleteAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/DeletePackagingConfigurationCommand.ts b/clients/client-mediapackage-vod/src/commands/DeletePackagingConfigurationCommand.ts index 45e3dcd0e6e3a..28d8a7ec82f11 100644 --- a/clients/client-mediapackage-vod/src/commands/DeletePackagingConfigurationCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DeletePackagingConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { DeletePackagingConfigurationRequest, DeletePackagingConfigurationResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { DeletePackagingConfigurationRequest, DeletePackagingConfigurationResponse } from "../models/models_0"; import { DeletePackagingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/DeletePackagingGroupCommand.ts b/clients/client-mediapackage-vod/src/commands/DeletePackagingGroupCommand.ts index a6a8ef95b02a3..d400e7cf5e183 100644 --- a/clients/client-mediapackage-vod/src/commands/DeletePackagingGroupCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DeletePackagingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { DeletePackagingGroupRequest, DeletePackagingGroupResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { DeletePackagingGroupRequest, DeletePackagingGroupResponse } from "../models/models_0"; import { DeletePackagingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/DescribeAssetCommand.ts b/clients/client-mediapackage-vod/src/commands/DescribeAssetCommand.ts index 7a5081e5f8134..46819956bbf5c 100644 --- a/clients/client-mediapackage-vod/src/commands/DescribeAssetCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DescribeAssetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { DescribeAssetRequest, DescribeAssetResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { DescribeAssetRequest, DescribeAssetResponse } from "../models/models_0"; import { DescribeAsset } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/DescribePackagingConfigurationCommand.ts b/clients/client-mediapackage-vod/src/commands/DescribePackagingConfigurationCommand.ts index 15704c892a339..5bbf053480229 100644 --- a/clients/client-mediapackage-vod/src/commands/DescribePackagingConfigurationCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DescribePackagingConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { DescribePackagingConfigurationRequest, DescribePackagingConfigurationResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { DescribePackagingConfigurationRequest, DescribePackagingConfigurationResponse } from "../models/models_0"; import { DescribePackagingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/DescribePackagingGroupCommand.ts b/clients/client-mediapackage-vod/src/commands/DescribePackagingGroupCommand.ts index 43905f3ed3adf..407ddae8a1583 100644 --- a/clients/client-mediapackage-vod/src/commands/DescribePackagingGroupCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/DescribePackagingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { DescribePackagingGroupRequest, DescribePackagingGroupResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { DescribePackagingGroupRequest, DescribePackagingGroupResponse } from "../models/models_0"; import { DescribePackagingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/ListAssetsCommand.ts b/clients/client-mediapackage-vod/src/commands/ListAssetsCommand.ts index ba2a6ae696356..08407d1cf43d4 100644 --- a/clients/client-mediapackage-vod/src/commands/ListAssetsCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ListAssetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { ListAssetsRequest, ListAssetsResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { ListAssetsRequest, ListAssetsResponse } from "../models/models_0"; import { ListAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/ListPackagingConfigurationsCommand.ts b/clients/client-mediapackage-vod/src/commands/ListPackagingConfigurationsCommand.ts index 3ca33ef9154ca..92e2711dc2bd3 100644 --- a/clients/client-mediapackage-vod/src/commands/ListPackagingConfigurationsCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ListPackagingConfigurationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { ListPackagingConfigurationsRequest, ListPackagingConfigurationsResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { ListPackagingConfigurationsRequest, ListPackagingConfigurationsResponse } from "../models/models_0"; import { ListPackagingConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/ListPackagingGroupsCommand.ts b/clients/client-mediapackage-vod/src/commands/ListPackagingGroupsCommand.ts index 9a9cf40511181..e0f2ae5e3d552 100644 --- a/clients/client-mediapackage-vod/src/commands/ListPackagingGroupsCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ListPackagingGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { ListPackagingGroupsRequest, ListPackagingGroupsResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { ListPackagingGroupsRequest, ListPackagingGroupsResponse } from "../models/models_0"; import { ListPackagingGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediapackage-vod/src/commands/ListTagsForResourceCommand.ts index e0def51c123fa..3c0503613bde3 100644 --- a/clients/client-mediapackage-vod/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/TagResourceCommand.ts b/clients/client-mediapackage-vod/src/commands/TagResourceCommand.ts index 39b51bd34b85c..8c7bb95bfb496 100644 --- a/clients/client-mediapackage-vod/src/commands/TagResourceCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { TagResourceRequest } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/UntagResourceCommand.ts b/clients/client-mediapackage-vod/src/commands/UntagResourceCommand.ts index 07bc33063cebe..a2d48c3451899 100644 --- a/clients/client-mediapackage-vod/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { UntagResourceRequest } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/commands/UpdatePackagingGroupCommand.ts b/clients/client-mediapackage-vod/src/commands/UpdatePackagingGroupCommand.ts index cec130f49a23e..568796f59f2a3 100644 --- a/clients/client-mediapackage-vod/src/commands/UpdatePackagingGroupCommand.ts +++ b/clients/client-mediapackage-vod/src/commands/UpdatePackagingGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageVodClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageVodClient"; -import { UpdatePackagingGroupRequest, UpdatePackagingGroupResponse } from "../models/models_0"; +import type { + MediaPackageVodClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageVodClient"; +import type { UpdatePackagingGroupRequest, UpdatePackagingGroupResponse } from "../models/models_0"; import { UpdatePackagingGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage-vod/src/endpoint/EndpointParameters.ts b/clients/client-mediapackage-vod/src/endpoint/EndpointParameters.ts index 5406f6b8f85f0..bdc3a3c13f5c2 100644 --- a/clients/client-mediapackage-vod/src/endpoint/EndpointParameters.ts +++ b/clients/client-mediapackage-vod/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mediapackage-vod/src/endpoint/endpointResolver.ts b/clients/client-mediapackage-vod/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mediapackage-vod/src/endpoint/endpointResolver.ts +++ b/clients/client-mediapackage-vod/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mediapackage-vod/src/extensionConfiguration.ts b/clients/client-mediapackage-vod/src/extensionConfiguration.ts index 38a32749212d8..12a9dac4d1921 100644 --- a/clients/client-mediapackage-vod/src/extensionConfiguration.ts +++ b/clients/client-mediapackage-vod/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mediapackage-vod/src/models/MediaPackageVodServiceException.ts b/clients/client-mediapackage-vod/src/models/MediaPackageVodServiceException.ts index 7eae7d1916d3f..df3adb6a98559 100644 --- a/clients/client-mediapackage-vod/src/models/MediaPackageVodServiceException.ts +++ b/clients/client-mediapackage-vod/src/models/MediaPackageVodServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mediapackage-vod/src/models/errors.ts b/clients/client-mediapackage-vod/src/models/errors.ts index 028f1ff2966f7..a24d7c116c3c8 100644 --- a/clients/client-mediapackage-vod/src/models/errors.ts +++ b/clients/client-mediapackage-vod/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MediaPackageVodServiceException as __BaseException } from "./MediaPackageVodServiceException"; diff --git a/clients/client-mediapackage-vod/src/pagination/Interfaces.ts b/clients/client-mediapackage-vod/src/pagination/Interfaces.ts index b96cc27eb9fe9..59252ed6311f2 100644 --- a/clients/client-mediapackage-vod/src/pagination/Interfaces.ts +++ b/clients/client-mediapackage-vod/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MediaPackageVodClient } from "../MediaPackageVodClient"; diff --git a/clients/client-mediapackage-vod/src/pagination/ListAssetsPaginator.ts b/clients/client-mediapackage-vod/src/pagination/ListAssetsPaginator.ts index 17750e8c8c6e1..8f03ffcff846e 100644 --- a/clients/client-mediapackage-vod/src/pagination/ListAssetsPaginator.ts +++ b/clients/client-mediapackage-vod/src/pagination/ListAssetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetsCommand, ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand"; import { MediaPackageVodClient } from "../MediaPackageVodClient"; diff --git a/clients/client-mediapackage-vod/src/pagination/ListPackagingConfigurationsPaginator.ts b/clients/client-mediapackage-vod/src/pagination/ListPackagingConfigurationsPaginator.ts index dccfd4b73226c..a807623a6d359 100644 --- a/clients/client-mediapackage-vod/src/pagination/ListPackagingConfigurationsPaginator.ts +++ b/clients/client-mediapackage-vod/src/pagination/ListPackagingConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPackagingConfigurationsCommand, diff --git a/clients/client-mediapackage-vod/src/pagination/ListPackagingGroupsPaginator.ts b/clients/client-mediapackage-vod/src/pagination/ListPackagingGroupsPaginator.ts index f860bb131c5ab..0706a975647a2 100644 --- a/clients/client-mediapackage-vod/src/pagination/ListPackagingGroupsPaginator.ts +++ b/clients/client-mediapackage-vod/src/pagination/ListPackagingGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPackagingGroupsCommand, diff --git a/clients/client-mediapackage-vod/src/runtimeConfig.browser.ts b/clients/client-mediapackage-vod/src/runtimeConfig.browser.ts index 57b6ae76fdcb0..e9aef4c992610 100644 --- a/clients/client-mediapackage-vod/src/runtimeConfig.browser.ts +++ b/clients/client-mediapackage-vod/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaPackageVodClientConfig } from "./MediaPackageVodClient"; + +import type { MediaPackageVodClientConfig } from "./MediaPackageVodClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mediapackage-vod/src/runtimeConfig.native.ts b/clients/client-mediapackage-vod/src/runtimeConfig.native.ts index 7ec8e919304f6..c10b9f64004b8 100644 --- a/clients/client-mediapackage-vod/src/runtimeConfig.native.ts +++ b/clients/client-mediapackage-vod/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MediaPackageVodClientConfig } from "./MediaPackageVodClient"; +import type { MediaPackageVodClientConfig } from "./MediaPackageVodClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mediapackage-vod/src/runtimeConfig.shared.ts b/clients/client-mediapackage-vod/src/runtimeConfig.shared.ts index faf6024b5835f..1614d04ae0e34 100644 --- a/clients/client-mediapackage-vod/src/runtimeConfig.shared.ts +++ b/clients/client-mediapackage-vod/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMediaPackageVodHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MediaPackageVodClientConfig } from "./MediaPackageVodClient"; +import type { MediaPackageVodClientConfig } from "./MediaPackageVodClient"; /** * @internal diff --git a/clients/client-mediapackage-vod/src/runtimeConfig.ts b/clients/client-mediapackage-vod/src/runtimeConfig.ts index ebe6d99cc5c00..e1a6f0fd011d2 100644 --- a/clients/client-mediapackage-vod/src/runtimeConfig.ts +++ b/clients/client-mediapackage-vod/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaPackageVodClientConfig } from "./MediaPackageVodClient"; + +import type { MediaPackageVodClientConfig } from "./MediaPackageVodClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mediapackage-vod/src/runtimeExtensions.ts b/clients/client-mediapackage-vod/src/runtimeExtensions.ts index edaf13158572b..f023684131623 100644 --- a/clients/client-mediapackage-vod/src/runtimeExtensions.ts +++ b/clients/client-mediapackage-vod/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MediaPackageVodExtensionConfiguration } from "./extensionConfiguration"; +import type { MediaPackageVodExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mediapackage-vod/src/schemas/schemas_0.ts b/clients/client-mediapackage-vod/src/schemas/schemas_0.ts index 4147039aa51eb..4d9836b311e53 100644 --- a/clients/client-mediapackage-vod/src/schemas/schemas_0.ts +++ b/clients/client-mediapackage-vod/src/schemas/schemas_0.ts @@ -206,7 +206,7 @@ const n0 = "com.amazonaws.mediapackagevod"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-mediapackage/package.json b/clients/client-mediapackage/package.json index 0850a71da519e..ecbe3313f2156 100644 --- a/clients/client-mediapackage/package.json +++ b/clients/client-mediapackage/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mediapackage/src/MediaPackage.ts b/clients/client-mediapackage/src/MediaPackage.ts index 7d550bd1a25a1..59ad080380ab6 100644 --- a/clients/client-mediapackage/src/MediaPackage.ts +++ b/clients/client-mediapackage/src/MediaPackage.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ConfigureLogsCommand, @@ -93,7 +93,7 @@ import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput, } from "./commands/UpdateOriginEndpointCommand"; -import { MediaPackageClient, MediaPackageClientConfig } from "./MediaPackageClient"; +import { MediaPackageClient } from "./MediaPackageClient"; const commands = { ConfigureLogsCommand, diff --git a/clients/client-mediapackage/src/MediaPackageClient.ts b/clients/client-mediapackage/src/MediaPackageClient.ts index 72737b46c4063..388eaffbed429 100644 --- a/clients/client-mediapackage/src/MediaPackageClient.ts +++ b/clients/client-mediapackage/src/MediaPackageClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMediaPackageHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { ConfigureLogsCommandInput, ConfigureLogsCommandOutput } from "./commands/ConfigureLogsCommand"; @@ -107,7 +116,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mediapackage/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mediapackage/src/auth/httpAuthExtensionConfiguration.ts index 0136a89cb51d2..aaef78ce5b22e 100644 --- a/clients/client-mediapackage/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mediapackage/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MediaPackageHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MediaPackageHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mediapackage/src/auth/httpAuthSchemeProvider.ts b/clients/client-mediapackage/src/auth/httpAuthSchemeProvider.ts index c61709ce3e873..164091f0f032e 100644 --- a/clients/client-mediapackage/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mediapackage/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MediaPackageClientConfig, MediaPackageClientResolvedConfig } from "../MediaPackageClient"; +import { type MediaPackageClientResolvedConfig, MediaPackageClientConfig } from "../MediaPackageClient"; /** * @internal diff --git a/clients/client-mediapackage/src/commands/ConfigureLogsCommand.ts b/clients/client-mediapackage/src/commands/ConfigureLogsCommand.ts index 7708a517d0653..cd20bef29e52a 100644 --- a/clients/client-mediapackage/src/commands/ConfigureLogsCommand.ts +++ b/clients/client-mediapackage/src/commands/ConfigureLogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { ConfigureLogsRequest, ConfigureLogsResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { ConfigureLogsRequest, ConfigureLogsResponse } from "../models/models_0"; import { ConfigureLogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/CreateChannelCommand.ts b/clients/client-mediapackage/src/commands/CreateChannelCommand.ts index ce882bc5609e9..7e202acd90853 100644 --- a/clients/client-mediapackage/src/commands/CreateChannelCommand.ts +++ b/clients/client-mediapackage/src/commands/CreateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; import { CreateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/CreateHarvestJobCommand.ts b/clients/client-mediapackage/src/commands/CreateHarvestJobCommand.ts index 01a7d03e66486..48cb54fd56570 100644 --- a/clients/client-mediapackage/src/commands/CreateHarvestJobCommand.ts +++ b/clients/client-mediapackage/src/commands/CreateHarvestJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { CreateHarvestJobRequest, CreateHarvestJobResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { CreateHarvestJobRequest, CreateHarvestJobResponse } from "../models/models_0"; import { CreateHarvestJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/CreateOriginEndpointCommand.ts b/clients/client-mediapackage/src/commands/CreateOriginEndpointCommand.ts index 3953ad2394bf8..16c55a3e081b8 100644 --- a/clients/client-mediapackage/src/commands/CreateOriginEndpointCommand.ts +++ b/clients/client-mediapackage/src/commands/CreateOriginEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { CreateOriginEndpointRequest, CreateOriginEndpointResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { CreateOriginEndpointRequest, CreateOriginEndpointResponse } from "../models/models_0"; import { CreateOriginEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/DeleteChannelCommand.ts b/clients/client-mediapackage/src/commands/DeleteChannelCommand.ts index 66145c9ee7622..49d114706adb4 100644 --- a/clients/client-mediapackage/src/commands/DeleteChannelCommand.ts +++ b/clients/client-mediapackage/src/commands/DeleteChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0"; import { DeleteChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/DeleteOriginEndpointCommand.ts b/clients/client-mediapackage/src/commands/DeleteOriginEndpointCommand.ts index c7ce0895db512..f0f8faa80262e 100644 --- a/clients/client-mediapackage/src/commands/DeleteOriginEndpointCommand.ts +++ b/clients/client-mediapackage/src/commands/DeleteOriginEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { DeleteOriginEndpointRequest, DeleteOriginEndpointResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { DeleteOriginEndpointRequest, DeleteOriginEndpointResponse } from "../models/models_0"; import { DeleteOriginEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/DescribeChannelCommand.ts b/clients/client-mediapackage/src/commands/DescribeChannelCommand.ts index 8302e898eb440..860dcef167968 100644 --- a/clients/client-mediapackage/src/commands/DescribeChannelCommand.ts +++ b/clients/client-mediapackage/src/commands/DescribeChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0"; import { DescribeChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/DescribeHarvestJobCommand.ts b/clients/client-mediapackage/src/commands/DescribeHarvestJobCommand.ts index 4d345a3751031..bb6b1764ea200 100644 --- a/clients/client-mediapackage/src/commands/DescribeHarvestJobCommand.ts +++ b/clients/client-mediapackage/src/commands/DescribeHarvestJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { DescribeHarvestJobRequest, DescribeHarvestJobResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { DescribeHarvestJobRequest, DescribeHarvestJobResponse } from "../models/models_0"; import { DescribeHarvestJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/DescribeOriginEndpointCommand.ts b/clients/client-mediapackage/src/commands/DescribeOriginEndpointCommand.ts index 70b063355593b..475cff3f4dec2 100644 --- a/clients/client-mediapackage/src/commands/DescribeOriginEndpointCommand.ts +++ b/clients/client-mediapackage/src/commands/DescribeOriginEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { DescribeOriginEndpointRequest, DescribeOriginEndpointResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { DescribeOriginEndpointRequest, DescribeOriginEndpointResponse } from "../models/models_0"; import { DescribeOriginEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/ListChannelsCommand.ts b/clients/client-mediapackage/src/commands/ListChannelsCommand.ts index c58e97a554152..d7dcf6bc6a1b8 100644 --- a/clients/client-mediapackage/src/commands/ListChannelsCommand.ts +++ b/clients/client-mediapackage/src/commands/ListChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/ListHarvestJobsCommand.ts b/clients/client-mediapackage/src/commands/ListHarvestJobsCommand.ts index 83abedc373ab6..8f7f166b59bf3 100644 --- a/clients/client-mediapackage/src/commands/ListHarvestJobsCommand.ts +++ b/clients/client-mediapackage/src/commands/ListHarvestJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { ListHarvestJobsRequest, ListHarvestJobsResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { ListHarvestJobsRequest, ListHarvestJobsResponse } from "../models/models_0"; import { ListHarvestJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/ListOriginEndpointsCommand.ts b/clients/client-mediapackage/src/commands/ListOriginEndpointsCommand.ts index 0a10f16db26a8..2918d5b0316f2 100644 --- a/clients/client-mediapackage/src/commands/ListOriginEndpointsCommand.ts +++ b/clients/client-mediapackage/src/commands/ListOriginEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { ListOriginEndpointsRequest, ListOriginEndpointsResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { ListOriginEndpointsRequest, ListOriginEndpointsResponse } from "../models/models_0"; import { ListOriginEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediapackage/src/commands/ListTagsForResourceCommand.ts index 1fbeca4d09485..aba32210bb3a7 100644 --- a/clients/client-mediapackage/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediapackage/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/RotateChannelCredentialsCommand.ts b/clients/client-mediapackage/src/commands/RotateChannelCredentialsCommand.ts index 36f684f7486f4..d47afeda04dc9 100644 --- a/clients/client-mediapackage/src/commands/RotateChannelCredentialsCommand.ts +++ b/clients/client-mediapackage/src/commands/RotateChannelCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { RotateChannelCredentialsRequest, RotateChannelCredentialsResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { RotateChannelCredentialsRequest, RotateChannelCredentialsResponse } from "../models/models_0"; import { RotateChannelCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/RotateIngestEndpointCredentialsCommand.ts b/clients/client-mediapackage/src/commands/RotateIngestEndpointCredentialsCommand.ts index 86266dbc95006..d295f33c9c6d6 100644 --- a/clients/client-mediapackage/src/commands/RotateIngestEndpointCredentialsCommand.ts +++ b/clients/client-mediapackage/src/commands/RotateIngestEndpointCredentialsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { RotateIngestEndpointCredentialsRequest, RotateIngestEndpointCredentialsResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { + RotateIngestEndpointCredentialsRequest, + RotateIngestEndpointCredentialsResponse, +} from "../models/models_0"; import { RotateIngestEndpointCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/TagResourceCommand.ts b/clients/client-mediapackage/src/commands/TagResourceCommand.ts index 463b9c674c820..1447f904ff155 100644 --- a/clients/client-mediapackage/src/commands/TagResourceCommand.ts +++ b/clients/client-mediapackage/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { TagResourceRequest } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/UntagResourceCommand.ts b/clients/client-mediapackage/src/commands/UntagResourceCommand.ts index cccfed3ded76e..d2d2e331dfb77 100644 --- a/clients/client-mediapackage/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediapackage/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { UntagResourceRequest } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/UpdateChannelCommand.ts b/clients/client-mediapackage/src/commands/UpdateChannelCommand.ts index 4115d6306122a..fe46029bcfd58 100644 --- a/clients/client-mediapackage/src/commands/UpdateChannelCommand.ts +++ b/clients/client-mediapackage/src/commands/UpdateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; import { UpdateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/commands/UpdateOriginEndpointCommand.ts b/clients/client-mediapackage/src/commands/UpdateOriginEndpointCommand.ts index dc343eeaecd87..c6db571abdb11 100644 --- a/clients/client-mediapackage/src/commands/UpdateOriginEndpointCommand.ts +++ b/clients/client-mediapackage/src/commands/UpdateOriginEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; -import { UpdateOriginEndpointRequest, UpdateOriginEndpointResponse } from "../models/models_0"; +import type { MediaPackageClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageClient"; +import type { UpdateOriginEndpointRequest, UpdateOriginEndpointResponse } from "../models/models_0"; import { UpdateOriginEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackage/src/endpoint/EndpointParameters.ts b/clients/client-mediapackage/src/endpoint/EndpointParameters.ts index 29679be105c5c..338160187f939 100644 --- a/clients/client-mediapackage/src/endpoint/EndpointParameters.ts +++ b/clients/client-mediapackage/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mediapackage/src/endpoint/endpointResolver.ts b/clients/client-mediapackage/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mediapackage/src/endpoint/endpointResolver.ts +++ b/clients/client-mediapackage/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mediapackage/src/extensionConfiguration.ts b/clients/client-mediapackage/src/extensionConfiguration.ts index 4e0898248e9a5..c77628e332bd1 100644 --- a/clients/client-mediapackage/src/extensionConfiguration.ts +++ b/clients/client-mediapackage/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mediapackage/src/models/MediaPackageServiceException.ts b/clients/client-mediapackage/src/models/MediaPackageServiceException.ts index 3f0fb413b6e1c..b51480b69e246 100644 --- a/clients/client-mediapackage/src/models/MediaPackageServiceException.ts +++ b/clients/client-mediapackage/src/models/MediaPackageServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mediapackage/src/models/errors.ts b/clients/client-mediapackage/src/models/errors.ts index 2ebf065165642..da4a3743bb4f1 100644 --- a/clients/client-mediapackage/src/models/errors.ts +++ b/clients/client-mediapackage/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MediaPackageServiceException as __BaseException } from "./MediaPackageServiceException"; diff --git a/clients/client-mediapackage/src/pagination/Interfaces.ts b/clients/client-mediapackage/src/pagination/Interfaces.ts index 57b75532ea8a2..dd65dfac49576 100644 --- a/clients/client-mediapackage/src/pagination/Interfaces.ts +++ b/clients/client-mediapackage/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MediaPackageClient } from "../MediaPackageClient"; diff --git a/clients/client-mediapackage/src/pagination/ListChannelsPaginator.ts b/clients/client-mediapackage/src/pagination/ListChannelsPaginator.ts index 787595acddd39..d055f0743b234 100644 --- a/clients/client-mediapackage/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-mediapackage/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelsCommand, diff --git a/clients/client-mediapackage/src/pagination/ListHarvestJobsPaginator.ts b/clients/client-mediapackage/src/pagination/ListHarvestJobsPaginator.ts index c559fea131f69..021423bcafa3f 100644 --- a/clients/client-mediapackage/src/pagination/ListHarvestJobsPaginator.ts +++ b/clients/client-mediapackage/src/pagination/ListHarvestJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHarvestJobsCommand, diff --git a/clients/client-mediapackage/src/pagination/ListOriginEndpointsPaginator.ts b/clients/client-mediapackage/src/pagination/ListOriginEndpointsPaginator.ts index 4e18509ed48ba..d80fc3a3f86fe 100644 --- a/clients/client-mediapackage/src/pagination/ListOriginEndpointsPaginator.ts +++ b/clients/client-mediapackage/src/pagination/ListOriginEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOriginEndpointsCommand, diff --git a/clients/client-mediapackage/src/runtimeConfig.browser.ts b/clients/client-mediapackage/src/runtimeConfig.browser.ts index 139431101c243..50779bada4a4e 100644 --- a/clients/client-mediapackage/src/runtimeConfig.browser.ts +++ b/clients/client-mediapackage/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaPackageClientConfig } from "./MediaPackageClient"; + +import type { MediaPackageClientConfig } from "./MediaPackageClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mediapackage/src/runtimeConfig.native.ts b/clients/client-mediapackage/src/runtimeConfig.native.ts index 053bae3fc8f56..1f5d5b08000dd 100644 --- a/clients/client-mediapackage/src/runtimeConfig.native.ts +++ b/clients/client-mediapackage/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MediaPackageClientConfig } from "./MediaPackageClient"; +import type { MediaPackageClientConfig } from "./MediaPackageClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mediapackage/src/runtimeConfig.shared.ts b/clients/client-mediapackage/src/runtimeConfig.shared.ts index a8398e48c1d71..4b6273c1e753b 100644 --- a/clients/client-mediapackage/src/runtimeConfig.shared.ts +++ b/clients/client-mediapackage/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMediaPackageHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MediaPackageClientConfig } from "./MediaPackageClient"; +import type { MediaPackageClientConfig } from "./MediaPackageClient"; /** * @internal diff --git a/clients/client-mediapackage/src/runtimeConfig.ts b/clients/client-mediapackage/src/runtimeConfig.ts index 8e9a92219ea3a..e265667c46f11 100644 --- a/clients/client-mediapackage/src/runtimeConfig.ts +++ b/clients/client-mediapackage/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaPackageClientConfig } from "./MediaPackageClient"; + +import type { MediaPackageClientConfig } from "./MediaPackageClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mediapackage/src/runtimeExtensions.ts b/clients/client-mediapackage/src/runtimeExtensions.ts index 5a7fb0b1ba549..3ad922371e76c 100644 --- a/clients/client-mediapackage/src/runtimeExtensions.ts +++ b/clients/client-mediapackage/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MediaPackageExtensionConfiguration } from "./extensionConfiguration"; +import type { MediaPackageExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mediapackage/src/schemas/schemas_0.ts b/clients/client-mediapackage/src/schemas/schemas_0.ts index 60d5bfc37b0fd..ee73dc6e0e047 100644 --- a/clients/client-mediapackage/src/schemas/schemas_0.ts +++ b/clients/client-mediapackage/src/schemas/schemas_0.ts @@ -253,7 +253,7 @@ const n0 = "com.amazonaws.mediapackage"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-mediapackagev2/package.json b/clients/client-mediapackagev2/package.json index 8184ef9d70235..b3ed935d9b26f 100644 --- a/clients/client-mediapackagev2/package.json +++ b/clients/client-mediapackagev2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mediapackagev2/src/MediaPackageV2.ts b/clients/client-mediapackagev2/src/MediaPackageV2.ts index 7f64423f9782b..bf22af6299154 100644 --- a/clients/client-mediapackagev2/src/MediaPackageV2.ts +++ b/clients/client-mediapackagev2/src/MediaPackageV2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelHarvestJobCommand, @@ -144,7 +144,7 @@ import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput, } from "./commands/UpdateOriginEndpointCommand"; -import { MediaPackageV2Client, MediaPackageV2ClientConfig } from "./MediaPackageV2Client"; +import { MediaPackageV2Client } from "./MediaPackageV2Client"; const commands = { CancelHarvestJobCommand, diff --git a/clients/client-mediapackagev2/src/MediaPackageV2Client.ts b/clients/client-mediapackagev2/src/MediaPackageV2Client.ts index 41ee9202be273..77d3026d3f5db 100644 --- a/clients/client-mediapackagev2/src/MediaPackageV2Client.ts +++ b/clients/client-mediapackagev2/src/MediaPackageV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMediaPackageV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelHarvestJobCommandInput, CancelHarvestJobCommandOutput } from "./commands/CancelHarvestJobCommand"; @@ -124,7 +133,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mediapackagev2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mediapackagev2/src/auth/httpAuthExtensionConfiguration.ts index c130b8edbd9ab..ac6885ebd4434 100644 --- a/clients/client-mediapackagev2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mediapackagev2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MediaPackageV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MediaPackageV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mediapackagev2/src/auth/httpAuthSchemeProvider.ts b/clients/client-mediapackagev2/src/auth/httpAuthSchemeProvider.ts index 04643bc58a8e7..fd5569eec86f6 100644 --- a/clients/client-mediapackagev2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mediapackagev2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MediaPackageV2ClientConfig, MediaPackageV2ClientResolvedConfig } from "../MediaPackageV2Client"; +import { type MediaPackageV2ClientResolvedConfig, MediaPackageV2ClientConfig } from "../MediaPackageV2Client"; /** * @internal diff --git a/clients/client-mediapackagev2/src/commands/CancelHarvestJobCommand.ts b/clients/client-mediapackagev2/src/commands/CancelHarvestJobCommand.ts index 3bdf572112cf2..17828d2746d90 100644 --- a/clients/client-mediapackagev2/src/commands/CancelHarvestJobCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CancelHarvestJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { CancelHarvestJobRequest, CancelHarvestJobResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { CancelHarvestJobRequest, CancelHarvestJobResponse } from "../models/models_0"; import { CancelHarvestJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/CreateChannelCommand.ts b/clients/client-mediapackagev2/src/commands/CreateChannelCommand.ts index 11562d88877dd..e4e7053da6213 100644 --- a/clients/client-mediapackagev2/src/commands/CreateChannelCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CreateChannelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; import { CreateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/CreateChannelGroupCommand.ts b/clients/client-mediapackagev2/src/commands/CreateChannelGroupCommand.ts index a9604ea6c6d8c..6c17a17051ea8 100644 --- a/clients/client-mediapackagev2/src/commands/CreateChannelGroupCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CreateChannelGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { CreateChannelGroupRequest, CreateChannelGroupResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { CreateChannelGroupRequest, CreateChannelGroupResponse } from "../models/models_0"; import { CreateChannelGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/CreateHarvestJobCommand.ts b/clients/client-mediapackagev2/src/commands/CreateHarvestJobCommand.ts index 2857dda752d86..ce2f75eb53375 100644 --- a/clients/client-mediapackagev2/src/commands/CreateHarvestJobCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CreateHarvestJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { CreateHarvestJobRequest, CreateHarvestJobResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { CreateHarvestJobRequest, CreateHarvestJobResponse } from "../models/models_0"; import { CreateHarvestJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/CreateOriginEndpointCommand.ts b/clients/client-mediapackagev2/src/commands/CreateOriginEndpointCommand.ts index fcf99af57c68b..5c1b45f77a04c 100644 --- a/clients/client-mediapackagev2/src/commands/CreateOriginEndpointCommand.ts +++ b/clients/client-mediapackagev2/src/commands/CreateOriginEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { CreateOriginEndpointRequest, CreateOriginEndpointResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { CreateOriginEndpointRequest, CreateOriginEndpointResponse } from "../models/models_0"; import { CreateOriginEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/DeleteChannelCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteChannelCommand.ts index daf72d6ce4d9f..38b6db8e2545d 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteChannelCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteChannelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0"; import { DeleteChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/DeleteChannelGroupCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteChannelGroupCommand.ts index d3661652d0e67..919cb90c67552 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteChannelGroupCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteChannelGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { DeleteChannelGroupRequest, DeleteChannelGroupResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { DeleteChannelGroupRequest, DeleteChannelGroupResponse } from "../models/models_0"; import { DeleteChannelGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/DeleteChannelPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteChannelPolicyCommand.ts index 3db9e95fe9a0c..bbac1f8cfcc06 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteChannelPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteChannelPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { DeleteChannelPolicyRequest, DeleteChannelPolicyResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { DeleteChannelPolicyRequest, DeleteChannelPolicyResponse } from "../models/models_0"; import { DeleteChannelPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointCommand.ts index c088a2bb75a33..b8600e4528d2c 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { DeleteOriginEndpointRequest, DeleteOriginEndpointResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { DeleteOriginEndpointRequest, DeleteOriginEndpointResponse } from "../models/models_0"; import { DeleteOriginEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointPolicyCommand.ts index d08493cfe99b4..7b8d9d72cb74e 100644 --- a/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/DeleteOriginEndpointPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { DeleteOriginEndpointPolicyRequest, DeleteOriginEndpointPolicyResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { DeleteOriginEndpointPolicyRequest, DeleteOriginEndpointPolicyResponse } from "../models/models_0"; import { DeleteOriginEndpointPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/GetChannelCommand.ts b/clients/client-mediapackagev2/src/commands/GetChannelCommand.ts index feb55b6fca43b..329a195367b64 100644 --- a/clients/client-mediapackagev2/src/commands/GetChannelCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetChannelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { GetChannelRequest, GetChannelResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { GetChannelRequest, GetChannelResponse } from "../models/models_0"; import { GetChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/GetChannelGroupCommand.ts b/clients/client-mediapackagev2/src/commands/GetChannelGroupCommand.ts index 8da6786348a35..163fb3ab9ded7 100644 --- a/clients/client-mediapackagev2/src/commands/GetChannelGroupCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetChannelGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { GetChannelGroupRequest, GetChannelGroupResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { GetChannelGroupRequest, GetChannelGroupResponse } from "../models/models_0"; import { GetChannelGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/GetChannelPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/GetChannelPolicyCommand.ts index f16d95ff64a0d..a2ab3044bf652 100644 --- a/clients/client-mediapackagev2/src/commands/GetChannelPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetChannelPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { GetChannelPolicyRequest, GetChannelPolicyResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { GetChannelPolicyRequest, GetChannelPolicyResponse } from "../models/models_0"; import { GetChannelPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/GetHarvestJobCommand.ts b/clients/client-mediapackagev2/src/commands/GetHarvestJobCommand.ts index 1aef82f547add..8886d51e46a49 100644 --- a/clients/client-mediapackagev2/src/commands/GetHarvestJobCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetHarvestJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { GetHarvestJobRequest, GetHarvestJobResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { GetHarvestJobRequest, GetHarvestJobResponse } from "../models/models_0"; import { GetHarvestJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/GetOriginEndpointCommand.ts b/clients/client-mediapackagev2/src/commands/GetOriginEndpointCommand.ts index 3c285d8cea3ab..bc040b9729477 100644 --- a/clients/client-mediapackagev2/src/commands/GetOriginEndpointCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetOriginEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { GetOriginEndpointRequest, GetOriginEndpointResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { GetOriginEndpointRequest, GetOriginEndpointResponse } from "../models/models_0"; import { GetOriginEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/GetOriginEndpointPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/GetOriginEndpointPolicyCommand.ts index 23e978bbe1877..63edf9249ba01 100644 --- a/clients/client-mediapackagev2/src/commands/GetOriginEndpointPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/GetOriginEndpointPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { GetOriginEndpointPolicyRequest, GetOriginEndpointPolicyResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { GetOriginEndpointPolicyRequest, GetOriginEndpointPolicyResponse } from "../models/models_0"; import { GetOriginEndpointPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/ListChannelGroupsCommand.ts b/clients/client-mediapackagev2/src/commands/ListChannelGroupsCommand.ts index 8d49a59e661fe..126de7afd2de3 100644 --- a/clients/client-mediapackagev2/src/commands/ListChannelGroupsCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListChannelGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { ListChannelGroupsRequest, ListChannelGroupsResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { ListChannelGroupsRequest, ListChannelGroupsResponse } from "../models/models_0"; import { ListChannelGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/ListChannelsCommand.ts b/clients/client-mediapackagev2/src/commands/ListChannelsCommand.ts index c12eb2b2f4372..624f7374019f1 100644 --- a/clients/client-mediapackagev2/src/commands/ListChannelsCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListChannelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/ListHarvestJobsCommand.ts b/clients/client-mediapackagev2/src/commands/ListHarvestJobsCommand.ts index 97244a06e61d2..73ebb006155bb 100644 --- a/clients/client-mediapackagev2/src/commands/ListHarvestJobsCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListHarvestJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { ListHarvestJobsRequest, ListHarvestJobsResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { ListHarvestJobsRequest, ListHarvestJobsResponse } from "../models/models_0"; import { ListHarvestJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/ListOriginEndpointsCommand.ts b/clients/client-mediapackagev2/src/commands/ListOriginEndpointsCommand.ts index f5bbcc92b2737..34fcafd73aecb 100644 --- a/clients/client-mediapackagev2/src/commands/ListOriginEndpointsCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListOriginEndpointsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { ListOriginEndpointsRequest, ListOriginEndpointsResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { ListOriginEndpointsRequest, ListOriginEndpointsResponse } from "../models/models_0"; import { ListOriginEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediapackagev2/src/commands/ListTagsForResourceCommand.ts index 7855aebf93748..fa6d3cf27e3d6 100644 --- a/clients/client-mediapackagev2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/PutChannelPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/PutChannelPolicyCommand.ts index 5590ce4c462bd..ca2a0be8f3715 100644 --- a/clients/client-mediapackagev2/src/commands/PutChannelPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/PutChannelPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { PutChannelPolicyRequest, PutChannelPolicyResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { PutChannelPolicyRequest, PutChannelPolicyResponse } from "../models/models_0"; import { PutChannelPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/PutOriginEndpointPolicyCommand.ts b/clients/client-mediapackagev2/src/commands/PutOriginEndpointPolicyCommand.ts index 6302ba712eb39..6b533d2799886 100644 --- a/clients/client-mediapackagev2/src/commands/PutOriginEndpointPolicyCommand.ts +++ b/clients/client-mediapackagev2/src/commands/PutOriginEndpointPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { PutOriginEndpointPolicyRequest, PutOriginEndpointPolicyResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { PutOriginEndpointPolicyRequest, PutOriginEndpointPolicyResponse } from "../models/models_0"; import { PutOriginEndpointPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/ResetChannelStateCommand.ts b/clients/client-mediapackagev2/src/commands/ResetChannelStateCommand.ts index 639c16cfa4869..d45cce4f35f39 100644 --- a/clients/client-mediapackagev2/src/commands/ResetChannelStateCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ResetChannelStateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { ResetChannelStateRequest, ResetChannelStateResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { ResetChannelStateRequest, ResetChannelStateResponse } from "../models/models_0"; import { ResetChannelState } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/ResetOriginEndpointStateCommand.ts b/clients/client-mediapackagev2/src/commands/ResetOriginEndpointStateCommand.ts index 769fe7b01855d..e1ec5019ad7a1 100644 --- a/clients/client-mediapackagev2/src/commands/ResetOriginEndpointStateCommand.ts +++ b/clients/client-mediapackagev2/src/commands/ResetOriginEndpointStateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { ResetOriginEndpointStateRequest, ResetOriginEndpointStateResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { ResetOriginEndpointStateRequest, ResetOriginEndpointStateResponse } from "../models/models_0"; import { ResetOriginEndpointState } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/TagResourceCommand.ts b/clients/client-mediapackagev2/src/commands/TagResourceCommand.ts index 91ecd298cb23f..cffa2711a9814 100644 --- a/clients/client-mediapackagev2/src/commands/TagResourceCommand.ts +++ b/clients/client-mediapackagev2/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { TagResourceRequest } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/UntagResourceCommand.ts b/clients/client-mediapackagev2/src/commands/UntagResourceCommand.ts index 5aa004c0aebed..b4859ea77fe09 100644 --- a/clients/client-mediapackagev2/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediapackagev2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { UntagResourceRequest } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/UpdateChannelCommand.ts b/clients/client-mediapackagev2/src/commands/UpdateChannelCommand.ts index 94e52cdfdf85b..634def3e6efb7 100644 --- a/clients/client-mediapackagev2/src/commands/UpdateChannelCommand.ts +++ b/clients/client-mediapackagev2/src/commands/UpdateChannelCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; import { UpdateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/UpdateChannelGroupCommand.ts b/clients/client-mediapackagev2/src/commands/UpdateChannelGroupCommand.ts index 6e1834ca9a8af..4223c84856e3a 100644 --- a/clients/client-mediapackagev2/src/commands/UpdateChannelGroupCommand.ts +++ b/clients/client-mediapackagev2/src/commands/UpdateChannelGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { UpdateChannelGroupRequest, UpdateChannelGroupResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { UpdateChannelGroupRequest, UpdateChannelGroupResponse } from "../models/models_0"; import { UpdateChannelGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/commands/UpdateOriginEndpointCommand.ts b/clients/client-mediapackagev2/src/commands/UpdateOriginEndpointCommand.ts index 9d2f1b4c80c7a..c0bf4c3f6c608 100644 --- a/clients/client-mediapackagev2/src/commands/UpdateOriginEndpointCommand.ts +++ b/clients/client-mediapackagev2/src/commands/UpdateOriginEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaPackageV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaPackageV2Client"; -import { UpdateOriginEndpointRequest, UpdateOriginEndpointResponse } from "../models/models_0"; +import type { + MediaPackageV2ClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaPackageV2Client"; +import type { UpdateOriginEndpointRequest, UpdateOriginEndpointResponse } from "../models/models_0"; import { UpdateOriginEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediapackagev2/src/endpoint/EndpointParameters.ts b/clients/client-mediapackagev2/src/endpoint/EndpointParameters.ts index 173961056fdc9..da0fd45e82e29 100644 --- a/clients/client-mediapackagev2/src/endpoint/EndpointParameters.ts +++ b/clients/client-mediapackagev2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mediapackagev2/src/endpoint/endpointResolver.ts b/clients/client-mediapackagev2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mediapackagev2/src/endpoint/endpointResolver.ts +++ b/clients/client-mediapackagev2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mediapackagev2/src/extensionConfiguration.ts b/clients/client-mediapackagev2/src/extensionConfiguration.ts index b6e82a6a44263..612a03c8dc369 100644 --- a/clients/client-mediapackagev2/src/extensionConfiguration.ts +++ b/clients/client-mediapackagev2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mediapackagev2/src/models/MediaPackageV2ServiceException.ts b/clients/client-mediapackagev2/src/models/MediaPackageV2ServiceException.ts index 79dbd254aab1d..5433d4e413f40 100644 --- a/clients/client-mediapackagev2/src/models/MediaPackageV2ServiceException.ts +++ b/clients/client-mediapackagev2/src/models/MediaPackageV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mediapackagev2/src/models/errors.ts b/clients/client-mediapackagev2/src/models/errors.ts index fd2445413d160..0d1061700107c 100644 --- a/clients/client-mediapackagev2/src/models/errors.ts +++ b/clients/client-mediapackagev2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConflictExceptionType, ResourceTypeNotFound, ValidationExceptionType } from "./enums"; import { MediaPackageV2ServiceException as __BaseException } from "./MediaPackageV2ServiceException"; diff --git a/clients/client-mediapackagev2/src/pagination/Interfaces.ts b/clients/client-mediapackagev2/src/pagination/Interfaces.ts index 28e0b9aa38b9a..69136c1f0c572 100644 --- a/clients/client-mediapackagev2/src/pagination/Interfaces.ts +++ b/clients/client-mediapackagev2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MediaPackageV2Client } from "../MediaPackageV2Client"; diff --git a/clients/client-mediapackagev2/src/pagination/ListChannelGroupsPaginator.ts b/clients/client-mediapackagev2/src/pagination/ListChannelGroupsPaginator.ts index de4c714cbc2d6..4618b3203eedf 100644 --- a/clients/client-mediapackagev2/src/pagination/ListChannelGroupsPaginator.ts +++ b/clients/client-mediapackagev2/src/pagination/ListChannelGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelGroupsCommand, diff --git a/clients/client-mediapackagev2/src/pagination/ListChannelsPaginator.ts b/clients/client-mediapackagev2/src/pagination/ListChannelsPaginator.ts index 04fbccbd4e93a..483a41b71e2fd 100644 --- a/clients/client-mediapackagev2/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-mediapackagev2/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelsCommand, diff --git a/clients/client-mediapackagev2/src/pagination/ListHarvestJobsPaginator.ts b/clients/client-mediapackagev2/src/pagination/ListHarvestJobsPaginator.ts index 945c52ad99ee4..29488cb729762 100644 --- a/clients/client-mediapackagev2/src/pagination/ListHarvestJobsPaginator.ts +++ b/clients/client-mediapackagev2/src/pagination/ListHarvestJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHarvestJobsCommand, diff --git a/clients/client-mediapackagev2/src/pagination/ListOriginEndpointsPaginator.ts b/clients/client-mediapackagev2/src/pagination/ListOriginEndpointsPaginator.ts index 1f4aaafd8c0a2..b93816bb51281 100644 --- a/clients/client-mediapackagev2/src/pagination/ListOriginEndpointsPaginator.ts +++ b/clients/client-mediapackagev2/src/pagination/ListOriginEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOriginEndpointsCommand, diff --git a/clients/client-mediapackagev2/src/runtimeConfig.browser.ts b/clients/client-mediapackagev2/src/runtimeConfig.browser.ts index 5e3ee90f1f18b..29437f9573c6c 100644 --- a/clients/client-mediapackagev2/src/runtimeConfig.browser.ts +++ b/clients/client-mediapackagev2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaPackageV2ClientConfig } from "./MediaPackageV2Client"; + +import type { MediaPackageV2ClientConfig } from "./MediaPackageV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mediapackagev2/src/runtimeConfig.native.ts b/clients/client-mediapackagev2/src/runtimeConfig.native.ts index e7028349cd9b9..d200e3e855605 100644 --- a/clients/client-mediapackagev2/src/runtimeConfig.native.ts +++ b/clients/client-mediapackagev2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MediaPackageV2ClientConfig } from "./MediaPackageV2Client"; +import type { MediaPackageV2ClientConfig } from "./MediaPackageV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mediapackagev2/src/runtimeConfig.shared.ts b/clients/client-mediapackagev2/src/runtimeConfig.shared.ts index 9e1086ce5887b..adb1338af371b 100644 --- a/clients/client-mediapackagev2/src/runtimeConfig.shared.ts +++ b/clients/client-mediapackagev2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMediaPackageV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MediaPackageV2ClientConfig } from "./MediaPackageV2Client"; +import type { MediaPackageV2ClientConfig } from "./MediaPackageV2Client"; /** * @internal diff --git a/clients/client-mediapackagev2/src/runtimeConfig.ts b/clients/client-mediapackagev2/src/runtimeConfig.ts index 3c791377f49db..8f47d5865523e 100644 --- a/clients/client-mediapackagev2/src/runtimeConfig.ts +++ b/clients/client-mediapackagev2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaPackageV2ClientConfig } from "./MediaPackageV2Client"; + +import type { MediaPackageV2ClientConfig } from "./MediaPackageV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mediapackagev2/src/runtimeExtensions.ts b/clients/client-mediapackagev2/src/runtimeExtensions.ts index 4a87d51744e1b..76763292edc08 100644 --- a/clients/client-mediapackagev2/src/runtimeExtensions.ts +++ b/clients/client-mediapackagev2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MediaPackageV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { MediaPackageV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mediapackagev2/src/schemas/schemas_0.ts b/clients/client-mediapackagev2/src/schemas/schemas_0.ts index 124e8705d97bc..8c0c23b6151d4 100644 --- a/clients/client-mediapackagev2/src/schemas/schemas_0.ts +++ b/clients/client-mediapackagev2/src/schemas/schemas_0.ts @@ -296,7 +296,7 @@ const n0 = "com.amazonaws.mediapackagev2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-mediastore-data/package.json b/clients/client-mediastore-data/package.json index 35c360bf8bfa0..b568c7baab769 100644 --- a/clients/client-mediastore-data/package.json +++ b/clients/client-mediastore-data/package.json @@ -34,26 +34,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mediastore-data/src/MediaStoreData.ts b/clients/client-mediastore-data/src/MediaStoreData.ts index 1a4fe38aabc9e..ec30de572567f 100644 --- a/clients/client-mediastore-data/src/MediaStoreData.ts +++ b/clients/client-mediastore-data/src/MediaStoreData.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteObjectCommand, @@ -15,7 +15,7 @@ import { import { GetObjectCommand, GetObjectCommandInput, GetObjectCommandOutput } from "./commands/GetObjectCommand"; import { ListItemsCommand, ListItemsCommandInput, ListItemsCommandOutput } from "./commands/ListItemsCommand"; import { PutObjectCommand, PutObjectCommandInput, PutObjectCommandOutput } from "./commands/PutObjectCommand"; -import { MediaStoreDataClient, MediaStoreDataClientConfig } from "./MediaStoreDataClient"; +import { MediaStoreDataClient } from "./MediaStoreDataClient"; const commands = { DeleteObjectCommand, diff --git a/clients/client-mediastore-data/src/MediaStoreDataClient.ts b/clients/client-mediastore-data/src/MediaStoreDataClient.ts index 2d8ac407907bb..22467969e7548 100644 --- a/clients/client-mediastore-data/src/MediaStoreDataClient.ts +++ b/clients/client-mediastore-data/src/MediaStoreDataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMediaStoreDataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DeleteObjectCommandInput, DeleteObjectCommandOutput } from "./commands/DeleteObjectCommand"; @@ -70,7 +79,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mediastore-data/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mediastore-data/src/auth/httpAuthExtensionConfiguration.ts index 2558a5264ff5e..bc865f3d99e48 100644 --- a/clients/client-mediastore-data/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mediastore-data/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MediaStoreDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MediaStoreDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mediastore-data/src/auth/httpAuthSchemeProvider.ts b/clients/client-mediastore-data/src/auth/httpAuthSchemeProvider.ts index 95d76f3c98526..fc27d0629c174 100644 --- a/clients/client-mediastore-data/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mediastore-data/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MediaStoreDataClientConfig, MediaStoreDataClientResolvedConfig } from "../MediaStoreDataClient"; +import { type MediaStoreDataClientResolvedConfig, MediaStoreDataClientConfig } from "../MediaStoreDataClient"; /** * @internal diff --git a/clients/client-mediastore-data/src/commands/DeleteObjectCommand.ts b/clients/client-mediastore-data/src/commands/DeleteObjectCommand.ts index 9deeecbc2039f..12a4344758594 100644 --- a/clients/client-mediastore-data/src/commands/DeleteObjectCommand.ts +++ b/clients/client-mediastore-data/src/commands/DeleteObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreDataClient"; -import { DeleteObjectRequest, DeleteObjectResponse } from "../models/models_0"; +import type { + MediaStoreDataClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaStoreDataClient"; +import type { DeleteObjectRequest, DeleteObjectResponse } from "../models/models_0"; import { DeleteObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore-data/src/commands/DescribeObjectCommand.ts b/clients/client-mediastore-data/src/commands/DescribeObjectCommand.ts index 07e6b04f93c75..1d840a1c806da 100644 --- a/clients/client-mediastore-data/src/commands/DescribeObjectCommand.ts +++ b/clients/client-mediastore-data/src/commands/DescribeObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreDataClient"; -import { DescribeObjectRequest, DescribeObjectResponse } from "../models/models_0"; +import type { + MediaStoreDataClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaStoreDataClient"; +import type { DescribeObjectRequest, DescribeObjectResponse } from "../models/models_0"; import { DescribeObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore-data/src/commands/GetObjectCommand.ts b/clients/client-mediastore-data/src/commands/GetObjectCommand.ts index f05496048e3e5..78d33a93acc70 100644 --- a/clients/client-mediastore-data/src/commands/GetObjectCommand.ts +++ b/clients/client-mediastore-data/src/commands/GetObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreDataClient"; -import { GetObjectRequest, GetObjectResponse } from "../models/models_0"; +import type { + MediaStoreDataClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaStoreDataClient"; +import { type GetObjectRequest, GetObjectResponse } from "../models/models_0"; import { GetObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore-data/src/commands/ListItemsCommand.ts b/clients/client-mediastore-data/src/commands/ListItemsCommand.ts index 0c2daafa656d2..ca401daa98a28 100644 --- a/clients/client-mediastore-data/src/commands/ListItemsCommand.ts +++ b/clients/client-mediastore-data/src/commands/ListItemsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreDataClient"; -import { ListItemsRequest, ListItemsResponse } from "../models/models_0"; +import type { + MediaStoreDataClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaStoreDataClient"; +import type { ListItemsRequest, ListItemsResponse } from "../models/models_0"; import { ListItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore-data/src/commands/PutObjectCommand.ts b/clients/client-mediastore-data/src/commands/PutObjectCommand.ts index 341e059c9bed5..cfdc1e3216a34 100644 --- a/clients/client-mediastore-data/src/commands/PutObjectCommand.ts +++ b/clients/client-mediastore-data/src/commands/PutObjectCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreDataClient"; -import { PutObjectRequest, PutObjectResponse } from "../models/models_0"; +import type { + MediaStoreDataClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MediaStoreDataClient"; +import { type PutObjectResponse, PutObjectRequest } from "../models/models_0"; import { PutObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore-data/src/endpoint/EndpointParameters.ts b/clients/client-mediastore-data/src/endpoint/EndpointParameters.ts index ef83aa2c3c5bb..afd18b1ee1171 100644 --- a/clients/client-mediastore-data/src/endpoint/EndpointParameters.ts +++ b/clients/client-mediastore-data/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mediastore-data/src/endpoint/endpointResolver.ts b/clients/client-mediastore-data/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mediastore-data/src/endpoint/endpointResolver.ts +++ b/clients/client-mediastore-data/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mediastore-data/src/extensionConfiguration.ts b/clients/client-mediastore-data/src/extensionConfiguration.ts index fd24ee587d0a7..12edc25f15a37 100644 --- a/clients/client-mediastore-data/src/extensionConfiguration.ts +++ b/clients/client-mediastore-data/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mediastore-data/src/models/MediaStoreDataServiceException.ts b/clients/client-mediastore-data/src/models/MediaStoreDataServiceException.ts index 7048832bafc4d..50d432621eaba 100644 --- a/clients/client-mediastore-data/src/models/MediaStoreDataServiceException.ts +++ b/clients/client-mediastore-data/src/models/MediaStoreDataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mediastore-data/src/models/errors.ts b/clients/client-mediastore-data/src/models/errors.ts index bf86ea2bf05d2..4a1c2c4a17f84 100644 --- a/clients/client-mediastore-data/src/models/errors.ts +++ b/clients/client-mediastore-data/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MediaStoreDataServiceException as __BaseException } from "./MediaStoreDataServiceException"; diff --git a/clients/client-mediastore-data/src/pagination/Interfaces.ts b/clients/client-mediastore-data/src/pagination/Interfaces.ts index 61b3be6f3bd47..c9f4616227fda 100644 --- a/clients/client-mediastore-data/src/pagination/Interfaces.ts +++ b/clients/client-mediastore-data/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MediaStoreDataClient } from "../MediaStoreDataClient"; diff --git a/clients/client-mediastore-data/src/pagination/ListItemsPaginator.ts b/clients/client-mediastore-data/src/pagination/ListItemsPaginator.ts index 2a0e82278b1b2..69defe0c95e53 100644 --- a/clients/client-mediastore-data/src/pagination/ListItemsPaginator.ts +++ b/clients/client-mediastore-data/src/pagination/ListItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListItemsCommand, ListItemsCommandInput, ListItemsCommandOutput } from "../commands/ListItemsCommand"; import { MediaStoreDataClient } from "../MediaStoreDataClient"; diff --git a/clients/client-mediastore-data/src/runtimeConfig.browser.ts b/clients/client-mediastore-data/src/runtimeConfig.browser.ts index dc44c59355078..016c5ff06833b 100644 --- a/clients/client-mediastore-data/src/runtimeConfig.browser.ts +++ b/clients/client-mediastore-data/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaStoreDataClientConfig } from "./MediaStoreDataClient"; + +import type { MediaStoreDataClientConfig } from "./MediaStoreDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mediastore-data/src/runtimeConfig.native.ts b/clients/client-mediastore-data/src/runtimeConfig.native.ts index e1da901cf5990..0a1b8bc2c30b9 100644 --- a/clients/client-mediastore-data/src/runtimeConfig.native.ts +++ b/clients/client-mediastore-data/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MediaStoreDataClientConfig } from "./MediaStoreDataClient"; +import type { MediaStoreDataClientConfig } from "./MediaStoreDataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mediastore-data/src/runtimeConfig.shared.ts b/clients/client-mediastore-data/src/runtimeConfig.shared.ts index 62548fd1cfa24..46de92f3e02da 100644 --- a/clients/client-mediastore-data/src/runtimeConfig.shared.ts +++ b/clients/client-mediastore-data/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMediaStoreDataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MediaStoreDataClientConfig } from "./MediaStoreDataClient"; +import type { MediaStoreDataClientConfig } from "./MediaStoreDataClient"; /** * @internal diff --git a/clients/client-mediastore-data/src/runtimeConfig.ts b/clients/client-mediastore-data/src/runtimeConfig.ts index c0f1ac19d45cc..081372fcffe79 100644 --- a/clients/client-mediastore-data/src/runtimeConfig.ts +++ b/clients/client-mediastore-data/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaStoreDataClientConfig } from "./MediaStoreDataClient"; + +import type { MediaStoreDataClientConfig } from "./MediaStoreDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mediastore-data/src/runtimeExtensions.ts b/clients/client-mediastore-data/src/runtimeExtensions.ts index ed55bea546ded..7551f539c93a9 100644 --- a/clients/client-mediastore-data/src/runtimeExtensions.ts +++ b/clients/client-mediastore-data/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MediaStoreDataExtensionConfiguration } from "./extensionConfiguration"; +import type { MediaStoreDataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mediastore-data/src/schemas/schemas_0.ts b/clients/client-mediastore-data/src/schemas/schemas_0.ts index 5e1d47ac8281c..6958214307310 100644 --- a/clients/client-mediastore-data/src/schemas/schemas_0.ts +++ b/clients/client-mediastore-data/src/schemas/schemas_0.ts @@ -59,7 +59,7 @@ const n0 = "com.amazonaws.mediastoredata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-mediastore/package.json b/clients/client-mediastore/package.json index 559a482434354..237d5a53c79de 100644 --- a/clients/client-mediastore/package.json +++ b/clients/client-mediastore/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mediastore/src/MediaStore.ts b/clients/client-mediastore/src/MediaStore.ts index 45da4ac476067..fda9871d9e842 100644 --- a/clients/client-mediastore/src/MediaStore.ts +++ b/clients/client-mediastore/src/MediaStore.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateContainerCommand, @@ -103,7 +103,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { MediaStoreClient, MediaStoreClientConfig } from "./MediaStoreClient"; +import { MediaStoreClient } from "./MediaStoreClient"; const commands = { CreateContainerCommand, diff --git a/clients/client-mediastore/src/MediaStoreClient.ts b/clients/client-mediastore/src/MediaStoreClient.ts index 99cabb619281f..bac91d8ee2576 100644 --- a/clients/client-mediastore/src/MediaStoreClient.ts +++ b/clients/client-mediastore/src/MediaStoreClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMediaStoreHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateContainerCommandInput, CreateContainerCommandOutput } from "./commands/CreateContainerCommand"; @@ -94,7 +103,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mediastore/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mediastore/src/auth/httpAuthExtensionConfiguration.ts index 9351979497b90..e6ebe838d6946 100644 --- a/clients/client-mediastore/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mediastore/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MediaStoreHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MediaStoreHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mediastore/src/auth/httpAuthSchemeProvider.ts b/clients/client-mediastore/src/auth/httpAuthSchemeProvider.ts index 1258eef2afcef..5f53d0a1be73b 100644 --- a/clients/client-mediastore/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mediastore/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MediaStoreClientConfig, MediaStoreClientResolvedConfig } from "../MediaStoreClient"; +import { type MediaStoreClientResolvedConfig, MediaStoreClientConfig } from "../MediaStoreClient"; /** * @internal diff --git a/clients/client-mediastore/src/commands/CreateContainerCommand.ts b/clients/client-mediastore/src/commands/CreateContainerCommand.ts index 7449acca8ae5c..a1c3db4d510ca 100644 --- a/clients/client-mediastore/src/commands/CreateContainerCommand.ts +++ b/clients/client-mediastore/src/commands/CreateContainerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { CreateContainerInput, CreateContainerOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { CreateContainerInput, CreateContainerOutput } from "../models/models_0"; import { CreateContainer } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/DeleteContainerCommand.ts b/clients/client-mediastore/src/commands/DeleteContainerCommand.ts index d6a3ca42dac4c..66ba8765b9d10 100644 --- a/clients/client-mediastore/src/commands/DeleteContainerCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteContainerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { DeleteContainerInput, DeleteContainerOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { DeleteContainerInput, DeleteContainerOutput } from "../models/models_0"; import { DeleteContainer } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/DeleteContainerPolicyCommand.ts b/clients/client-mediastore/src/commands/DeleteContainerPolicyCommand.ts index d6d67c9f6a6bd..a332ac19a5628 100644 --- a/clients/client-mediastore/src/commands/DeleteContainerPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteContainerPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { DeleteContainerPolicyInput, DeleteContainerPolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { DeleteContainerPolicyInput, DeleteContainerPolicyOutput } from "../models/models_0"; import { DeleteContainerPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/DeleteCorsPolicyCommand.ts b/clients/client-mediastore/src/commands/DeleteCorsPolicyCommand.ts index b109e335876b2..11c3aa3a632d5 100644 --- a/clients/client-mediastore/src/commands/DeleteCorsPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteCorsPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { DeleteCorsPolicyInput, DeleteCorsPolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { DeleteCorsPolicyInput, DeleteCorsPolicyOutput } from "../models/models_0"; import { DeleteCorsPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-mediastore/src/commands/DeleteLifecyclePolicyCommand.ts index 126231821a6fa..d0fefce50fa14 100644 --- a/clients/client-mediastore/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { DeleteLifecyclePolicyInput, DeleteLifecyclePolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { DeleteLifecyclePolicyInput, DeleteLifecyclePolicyOutput } from "../models/models_0"; import { DeleteLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/DeleteMetricPolicyCommand.ts b/clients/client-mediastore/src/commands/DeleteMetricPolicyCommand.ts index a3c98e08ee02b..4058f05380e0e 100644 --- a/clients/client-mediastore/src/commands/DeleteMetricPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/DeleteMetricPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { DeleteMetricPolicyInput, DeleteMetricPolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { DeleteMetricPolicyInput, DeleteMetricPolicyOutput } from "../models/models_0"; import { DeleteMetricPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/DescribeContainerCommand.ts b/clients/client-mediastore/src/commands/DescribeContainerCommand.ts index 56ef86afdaf44..144a0ce0359b1 100644 --- a/clients/client-mediastore/src/commands/DescribeContainerCommand.ts +++ b/clients/client-mediastore/src/commands/DescribeContainerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { DescribeContainerInput, DescribeContainerOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { DescribeContainerInput, DescribeContainerOutput } from "../models/models_0"; import { DescribeContainer } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/GetContainerPolicyCommand.ts b/clients/client-mediastore/src/commands/GetContainerPolicyCommand.ts index 30025aac7bf99..68f54bce6eb71 100644 --- a/clients/client-mediastore/src/commands/GetContainerPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/GetContainerPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { GetContainerPolicyInput, GetContainerPolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { GetContainerPolicyInput, GetContainerPolicyOutput } from "../models/models_0"; import { GetContainerPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/GetCorsPolicyCommand.ts b/clients/client-mediastore/src/commands/GetCorsPolicyCommand.ts index 7b8b84c47665b..b5d5dd0e3dd45 100644 --- a/clients/client-mediastore/src/commands/GetCorsPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/GetCorsPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { GetCorsPolicyInput, GetCorsPolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { GetCorsPolicyInput, GetCorsPolicyOutput } from "../models/models_0"; import { GetCorsPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/GetLifecyclePolicyCommand.ts b/clients/client-mediastore/src/commands/GetLifecyclePolicyCommand.ts index 7ac3eb494169e..fcdfc210197c2 100644 --- a/clients/client-mediastore/src/commands/GetLifecyclePolicyCommand.ts +++ b/clients/client-mediastore/src/commands/GetLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { GetLifecyclePolicyInput, GetLifecyclePolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { GetLifecyclePolicyInput, GetLifecyclePolicyOutput } from "../models/models_0"; import { GetLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/GetMetricPolicyCommand.ts b/clients/client-mediastore/src/commands/GetMetricPolicyCommand.ts index 5e403980779d8..a4c972ab3f0e8 100644 --- a/clients/client-mediastore/src/commands/GetMetricPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/GetMetricPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { GetMetricPolicyInput, GetMetricPolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { GetMetricPolicyInput, GetMetricPolicyOutput } from "../models/models_0"; import { GetMetricPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/ListContainersCommand.ts b/clients/client-mediastore/src/commands/ListContainersCommand.ts index 25b118da4335f..c517aab7bd462 100644 --- a/clients/client-mediastore/src/commands/ListContainersCommand.ts +++ b/clients/client-mediastore/src/commands/ListContainersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { ListContainersInput, ListContainersOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { ListContainersInput, ListContainersOutput } from "../models/models_0"; import { ListContainers } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediastore/src/commands/ListTagsForResourceCommand.ts index 550ef541da0b0..429651075259c 100644 --- a/clients/client-mediastore/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediastore/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/PutContainerPolicyCommand.ts b/clients/client-mediastore/src/commands/PutContainerPolicyCommand.ts index 5d57d034fffda..e856b01f3191b 100644 --- a/clients/client-mediastore/src/commands/PutContainerPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/PutContainerPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { PutContainerPolicyInput, PutContainerPolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { PutContainerPolicyInput, PutContainerPolicyOutput } from "../models/models_0"; import { PutContainerPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/PutCorsPolicyCommand.ts b/clients/client-mediastore/src/commands/PutCorsPolicyCommand.ts index 666613409749f..543d2720ffaf4 100644 --- a/clients/client-mediastore/src/commands/PutCorsPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/PutCorsPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { PutCorsPolicyInput, PutCorsPolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { PutCorsPolicyInput, PutCorsPolicyOutput } from "../models/models_0"; import { PutCorsPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/PutLifecyclePolicyCommand.ts b/clients/client-mediastore/src/commands/PutLifecyclePolicyCommand.ts index 1cd226f3b3a20..c7ad9b766d2e1 100644 --- a/clients/client-mediastore/src/commands/PutLifecyclePolicyCommand.ts +++ b/clients/client-mediastore/src/commands/PutLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { PutLifecyclePolicyInput, PutLifecyclePolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { PutLifecyclePolicyInput, PutLifecyclePolicyOutput } from "../models/models_0"; import { PutLifecyclePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/PutMetricPolicyCommand.ts b/clients/client-mediastore/src/commands/PutMetricPolicyCommand.ts index 8a1d8032e50ea..16706e47a1cbb 100644 --- a/clients/client-mediastore/src/commands/PutMetricPolicyCommand.ts +++ b/clients/client-mediastore/src/commands/PutMetricPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { PutMetricPolicyInput, PutMetricPolicyOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { PutMetricPolicyInput, PutMetricPolicyOutput } from "../models/models_0"; import { PutMetricPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/StartAccessLoggingCommand.ts b/clients/client-mediastore/src/commands/StartAccessLoggingCommand.ts index 9a642690a4111..e13f8a997aa77 100644 --- a/clients/client-mediastore/src/commands/StartAccessLoggingCommand.ts +++ b/clients/client-mediastore/src/commands/StartAccessLoggingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { StartAccessLoggingInput, StartAccessLoggingOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { StartAccessLoggingInput, StartAccessLoggingOutput } from "../models/models_0"; import { StartAccessLogging } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/StopAccessLoggingCommand.ts b/clients/client-mediastore/src/commands/StopAccessLoggingCommand.ts index c12548738f6d5..09278dd155339 100644 --- a/clients/client-mediastore/src/commands/StopAccessLoggingCommand.ts +++ b/clients/client-mediastore/src/commands/StopAccessLoggingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { StopAccessLoggingInput, StopAccessLoggingOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { StopAccessLoggingInput, StopAccessLoggingOutput } from "../models/models_0"; import { StopAccessLogging } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/TagResourceCommand.ts b/clients/client-mediastore/src/commands/TagResourceCommand.ts index 4f4a5d127a3dc..337a6350a50fd 100644 --- a/clients/client-mediastore/src/commands/TagResourceCommand.ts +++ b/clients/client-mediastore/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/commands/UntagResourceCommand.ts b/clients/client-mediastore/src/commands/UntagResourceCommand.ts index 4688a90fc70c7..7531c3d10baae 100644 --- a/clients/client-mediastore/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediastore/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { MediaStoreClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaStoreClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediastore/src/endpoint/EndpointParameters.ts b/clients/client-mediastore/src/endpoint/EndpointParameters.ts index ef83aa2c3c5bb..afd18b1ee1171 100644 --- a/clients/client-mediastore/src/endpoint/EndpointParameters.ts +++ b/clients/client-mediastore/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mediastore/src/endpoint/endpointResolver.ts b/clients/client-mediastore/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mediastore/src/endpoint/endpointResolver.ts +++ b/clients/client-mediastore/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mediastore/src/extensionConfiguration.ts b/clients/client-mediastore/src/extensionConfiguration.ts index c9f792b55e1b8..d1375ae8dd3b8 100644 --- a/clients/client-mediastore/src/extensionConfiguration.ts +++ b/clients/client-mediastore/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mediastore/src/models/MediaStoreServiceException.ts b/clients/client-mediastore/src/models/MediaStoreServiceException.ts index a6c61cdff171b..63618e3c93444 100644 --- a/clients/client-mediastore/src/models/MediaStoreServiceException.ts +++ b/clients/client-mediastore/src/models/MediaStoreServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mediastore/src/models/errors.ts b/clients/client-mediastore/src/models/errors.ts index 1c77fe5a76be5..229392ec7d9d6 100644 --- a/clients/client-mediastore/src/models/errors.ts +++ b/clients/client-mediastore/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MediaStoreServiceException as __BaseException } from "./MediaStoreServiceException"; diff --git a/clients/client-mediastore/src/pagination/Interfaces.ts b/clients/client-mediastore/src/pagination/Interfaces.ts index ac6f89083b51c..a929e82674fdb 100644 --- a/clients/client-mediastore/src/pagination/Interfaces.ts +++ b/clients/client-mediastore/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MediaStoreClient } from "../MediaStoreClient"; diff --git a/clients/client-mediastore/src/pagination/ListContainersPaginator.ts b/clients/client-mediastore/src/pagination/ListContainersPaginator.ts index 259002deea4f1..27940bcc75267 100644 --- a/clients/client-mediastore/src/pagination/ListContainersPaginator.ts +++ b/clients/client-mediastore/src/pagination/ListContainersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContainersCommand, diff --git a/clients/client-mediastore/src/runtimeConfig.browser.ts b/clients/client-mediastore/src/runtimeConfig.browser.ts index 6a68adbad6c38..236214bd04df5 100644 --- a/clients/client-mediastore/src/runtimeConfig.browser.ts +++ b/clients/client-mediastore/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaStoreClientConfig } from "./MediaStoreClient"; + +import type { MediaStoreClientConfig } from "./MediaStoreClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mediastore/src/runtimeConfig.native.ts b/clients/client-mediastore/src/runtimeConfig.native.ts index db5a9bf01ed23..a6ab300389fe2 100644 --- a/clients/client-mediastore/src/runtimeConfig.native.ts +++ b/clients/client-mediastore/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MediaStoreClientConfig } from "./MediaStoreClient"; +import type { MediaStoreClientConfig } from "./MediaStoreClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mediastore/src/runtimeConfig.shared.ts b/clients/client-mediastore/src/runtimeConfig.shared.ts index 2dfaded0bf909..0c01f70625762 100644 --- a/clients/client-mediastore/src/runtimeConfig.shared.ts +++ b/clients/client-mediastore/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMediaStoreHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MediaStoreClientConfig } from "./MediaStoreClient"; +import type { MediaStoreClientConfig } from "./MediaStoreClient"; /** * @internal diff --git a/clients/client-mediastore/src/runtimeConfig.ts b/clients/client-mediastore/src/runtimeConfig.ts index bc5e1acbc3fa4..5e64b17acf56e 100644 --- a/clients/client-mediastore/src/runtimeConfig.ts +++ b/clients/client-mediastore/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaStoreClientConfig } from "./MediaStoreClient"; + +import type { MediaStoreClientConfig } from "./MediaStoreClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mediastore/src/runtimeExtensions.ts b/clients/client-mediastore/src/runtimeExtensions.ts index 4e1ceb96bc270..f30273da0b035 100644 --- a/clients/client-mediastore/src/runtimeExtensions.ts +++ b/clients/client-mediastore/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MediaStoreExtensionConfiguration } from "./extensionConfiguration"; +import type { MediaStoreExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mediastore/src/schemas/schemas_0.ts b/clients/client-mediastore/src/schemas/schemas_0.ts index 4338ab61b7b2b..19ff7b4a350e7 100644 --- a/clients/client-mediastore/src/schemas/schemas_0.ts +++ b/clients/client-mediastore/src/schemas/schemas_0.ts @@ -110,7 +110,7 @@ const n0 = "com.amazonaws.mediastore"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ContainerInUseException as __ContainerInUseException, diff --git a/clients/client-mediatailor/package.json b/clients/client-mediatailor/package.json index 7662dba115e1f..24955ca4bfe19 100644 --- a/clients/client-mediatailor/package.json +++ b/clients/client-mediatailor/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mediatailor/src/MediaTailor.ts b/clients/client-mediatailor/src/MediaTailor.ts index 76dbb842e0180..bd766ccfadb2f 100644 --- a/clients/client-mediatailor/src/MediaTailor.ts +++ b/clients/client-mediatailor/src/MediaTailor.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ConfigureLogsForChannelCommand, @@ -210,7 +210,7 @@ import { UpdateVodSourceCommandInput, UpdateVodSourceCommandOutput, } from "./commands/UpdateVodSourceCommand"; -import { MediaTailorClient, MediaTailorClientConfig } from "./MediaTailorClient"; +import { MediaTailorClient } from "./MediaTailorClient"; const commands = { ConfigureLogsForChannelCommand, diff --git a/clients/client-mediatailor/src/MediaTailorClient.ts b/clients/client-mediatailor/src/MediaTailorClient.ts index 63faa121ae28e..b16058b58f546 100644 --- a/clients/client-mediatailor/src/MediaTailorClient.ts +++ b/clients/client-mediatailor/src/MediaTailorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMediaTailorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -159,7 +168,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mediatailor/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mediatailor/src/auth/httpAuthExtensionConfiguration.ts index 31aa1d1680588..87920dc411e6f 100644 --- a/clients/client-mediatailor/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mediatailor/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MediaTailorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MediaTailorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mediatailor/src/auth/httpAuthSchemeProvider.ts b/clients/client-mediatailor/src/auth/httpAuthSchemeProvider.ts index d246b4cd6ba98..a684297e45464 100644 --- a/clients/client-mediatailor/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mediatailor/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MediaTailorClientConfig, MediaTailorClientResolvedConfig } from "../MediaTailorClient"; +import { type MediaTailorClientResolvedConfig, MediaTailorClientConfig } from "../MediaTailorClient"; /** * @internal diff --git a/clients/client-mediatailor/src/commands/ConfigureLogsForChannelCommand.ts b/clients/client-mediatailor/src/commands/ConfigureLogsForChannelCommand.ts index 043dca03ce26d..2ff4b6632dc5a 100644 --- a/clients/client-mediatailor/src/commands/ConfigureLogsForChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/ConfigureLogsForChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { ConfigureLogsForChannelRequest, ConfigureLogsForChannelResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ConfigureLogsForChannelRequest, ConfigureLogsForChannelResponse } from "../models/models_0"; import { ConfigureLogsForChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/ConfigureLogsForPlaybackConfigurationCommand.ts b/clients/client-mediatailor/src/commands/ConfigureLogsForPlaybackConfigurationCommand.ts index e12ad5c3e705a..8c5fd06ce2800 100644 --- a/clients/client-mediatailor/src/commands/ConfigureLogsForPlaybackConfigurationCommand.ts +++ b/clients/client-mediatailor/src/commands/ConfigureLogsForPlaybackConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ConfigureLogsForPlaybackConfigurationRequest, ConfigureLogsForPlaybackConfigurationResponse, } from "../models/models_0"; diff --git a/clients/client-mediatailor/src/commands/CreateChannelCommand.ts b/clients/client-mediatailor/src/commands/CreateChannelCommand.ts index 6960a1cbaab98..4243b4d7509ae 100644 --- a/clients/client-mediatailor/src/commands/CreateChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { CreateChannelRequest, CreateChannelResponse } from "../models/models_0"; import { CreateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/CreateLiveSourceCommand.ts b/clients/client-mediatailor/src/commands/CreateLiveSourceCommand.ts index 45307935e76fe..27632ae0cbd08 100644 --- a/clients/client-mediatailor/src/commands/CreateLiveSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateLiveSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { CreateLiveSourceRequest, CreateLiveSourceResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { CreateLiveSourceRequest, CreateLiveSourceResponse } from "../models/models_0"; import { CreateLiveSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/CreatePrefetchScheduleCommand.ts b/clients/client-mediatailor/src/commands/CreatePrefetchScheduleCommand.ts index c0499aae94012..3e1534ac04d40 100644 --- a/clients/client-mediatailor/src/commands/CreatePrefetchScheduleCommand.ts +++ b/clients/client-mediatailor/src/commands/CreatePrefetchScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { CreatePrefetchScheduleRequest, CreatePrefetchScheduleResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { CreatePrefetchScheduleRequest, CreatePrefetchScheduleResponse } from "../models/models_0"; import { CreatePrefetchSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/CreateProgramCommand.ts b/clients/client-mediatailor/src/commands/CreateProgramCommand.ts index 291b193cc197f..9bca75f1d0fc8 100644 --- a/clients/client-mediatailor/src/commands/CreateProgramCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateProgramCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { CreateProgramRequest, CreateProgramResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { CreateProgramRequest, CreateProgramResponse } from "../models/models_0"; import { CreateProgram } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/CreateSourceLocationCommand.ts b/clients/client-mediatailor/src/commands/CreateSourceLocationCommand.ts index 63b55144f9a6e..65724c950234b 100644 --- a/clients/client-mediatailor/src/commands/CreateSourceLocationCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateSourceLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { CreateSourceLocationRequest, CreateSourceLocationResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { CreateSourceLocationRequest, CreateSourceLocationResponse } from "../models/models_0"; import { CreateSourceLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/CreateVodSourceCommand.ts b/clients/client-mediatailor/src/commands/CreateVodSourceCommand.ts index 5212ba598faf6..b4743107f78bd 100644 --- a/clients/client-mediatailor/src/commands/CreateVodSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/CreateVodSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { CreateVodSourceRequest, CreateVodSourceResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { CreateVodSourceRequest, CreateVodSourceResponse } from "../models/models_0"; import { CreateVodSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DeleteChannelCommand.ts b/clients/client-mediatailor/src/commands/DeleteChannelCommand.ts index 7c32cd0432964..7c240dafa7adb 100644 --- a/clients/client-mediatailor/src/commands/DeleteChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DeleteChannelRequest, DeleteChannelResponse } from "../models/models_0"; import { DeleteChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DeleteChannelPolicyCommand.ts b/clients/client-mediatailor/src/commands/DeleteChannelPolicyCommand.ts index ec7cf5cc4a3af..d642aad12028d 100644 --- a/clients/client-mediatailor/src/commands/DeleteChannelPolicyCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteChannelPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DeleteChannelPolicyRequest, DeleteChannelPolicyResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DeleteChannelPolicyRequest, DeleteChannelPolicyResponse } from "../models/models_0"; import { DeleteChannelPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DeleteLiveSourceCommand.ts b/clients/client-mediatailor/src/commands/DeleteLiveSourceCommand.ts index 192fc128dce63..e217f4bd580c3 100644 --- a/clients/client-mediatailor/src/commands/DeleteLiveSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteLiveSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DeleteLiveSourceRequest, DeleteLiveSourceResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DeleteLiveSourceRequest, DeleteLiveSourceResponse } from "../models/models_0"; import { DeleteLiveSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DeletePlaybackConfigurationCommand.ts b/clients/client-mediatailor/src/commands/DeletePlaybackConfigurationCommand.ts index 0e576c0d4b3fb..c2decde263480 100644 --- a/clients/client-mediatailor/src/commands/DeletePlaybackConfigurationCommand.ts +++ b/clients/client-mediatailor/src/commands/DeletePlaybackConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DeletePlaybackConfigurationRequest, DeletePlaybackConfigurationResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DeletePlaybackConfigurationRequest, DeletePlaybackConfigurationResponse } from "../models/models_0"; import { DeletePlaybackConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DeletePrefetchScheduleCommand.ts b/clients/client-mediatailor/src/commands/DeletePrefetchScheduleCommand.ts index 4fd7905deec16..17488ee79a789 100644 --- a/clients/client-mediatailor/src/commands/DeletePrefetchScheduleCommand.ts +++ b/clients/client-mediatailor/src/commands/DeletePrefetchScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DeletePrefetchScheduleRequest, DeletePrefetchScheduleResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DeletePrefetchScheduleRequest, DeletePrefetchScheduleResponse } from "../models/models_0"; import { DeletePrefetchSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DeleteProgramCommand.ts b/clients/client-mediatailor/src/commands/DeleteProgramCommand.ts index d8c6b739ea62e..3f1958b84a32c 100644 --- a/clients/client-mediatailor/src/commands/DeleteProgramCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteProgramCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DeleteProgramRequest, DeleteProgramResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DeleteProgramRequest, DeleteProgramResponse } from "../models/models_0"; import { DeleteProgram } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DeleteSourceLocationCommand.ts b/clients/client-mediatailor/src/commands/DeleteSourceLocationCommand.ts index 3cb9ec7867ae8..a4d571ccfb388 100644 --- a/clients/client-mediatailor/src/commands/DeleteSourceLocationCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteSourceLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DeleteSourceLocationRequest, DeleteSourceLocationResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DeleteSourceLocationRequest, DeleteSourceLocationResponse } from "../models/models_0"; import { DeleteSourceLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DeleteVodSourceCommand.ts b/clients/client-mediatailor/src/commands/DeleteVodSourceCommand.ts index 1744f8715655e..4dea1058e5dc0 100644 --- a/clients/client-mediatailor/src/commands/DeleteVodSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/DeleteVodSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DeleteVodSourceRequest, DeleteVodSourceResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DeleteVodSourceRequest, DeleteVodSourceResponse } from "../models/models_0"; import { DeleteVodSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DescribeChannelCommand.ts b/clients/client-mediatailor/src/commands/DescribeChannelCommand.ts index fe5c660c04f16..ac5a4a8ed6a05 100644 --- a/clients/client-mediatailor/src/commands/DescribeChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DescribeChannelRequest, DescribeChannelResponse } from "../models/models_0"; import { DescribeChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DescribeLiveSourceCommand.ts b/clients/client-mediatailor/src/commands/DescribeLiveSourceCommand.ts index 031eeb8a2ba5e..d4472051fc29d 100644 --- a/clients/client-mediatailor/src/commands/DescribeLiveSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeLiveSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DescribeLiveSourceRequest, DescribeLiveSourceResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DescribeLiveSourceRequest, DescribeLiveSourceResponse } from "../models/models_0"; import { DescribeLiveSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DescribeProgramCommand.ts b/clients/client-mediatailor/src/commands/DescribeProgramCommand.ts index f25f0473fa0e9..135d49adc6d98 100644 --- a/clients/client-mediatailor/src/commands/DescribeProgramCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeProgramCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DescribeProgramRequest, DescribeProgramResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DescribeProgramRequest, DescribeProgramResponse } from "../models/models_0"; import { DescribeProgram } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DescribeSourceLocationCommand.ts b/clients/client-mediatailor/src/commands/DescribeSourceLocationCommand.ts index 0d26fbde5702a..863533a42a588 100644 --- a/clients/client-mediatailor/src/commands/DescribeSourceLocationCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeSourceLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DescribeSourceLocationRequest, DescribeSourceLocationResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DescribeSourceLocationRequest, DescribeSourceLocationResponse } from "../models/models_0"; import { DescribeSourceLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/DescribeVodSourceCommand.ts b/clients/client-mediatailor/src/commands/DescribeVodSourceCommand.ts index ddaff72700925..ae912f28a97df 100644 --- a/clients/client-mediatailor/src/commands/DescribeVodSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/DescribeVodSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { DescribeVodSourceRequest, DescribeVodSourceResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { DescribeVodSourceRequest, DescribeVodSourceResponse } from "../models/models_0"; import { DescribeVodSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/GetChannelPolicyCommand.ts b/clients/client-mediatailor/src/commands/GetChannelPolicyCommand.ts index 7ad06591dc39d..b3ded7014304c 100644 --- a/clients/client-mediatailor/src/commands/GetChannelPolicyCommand.ts +++ b/clients/client-mediatailor/src/commands/GetChannelPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { GetChannelPolicyRequest, GetChannelPolicyResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { GetChannelPolicyRequest, GetChannelPolicyResponse } from "../models/models_0"; import { GetChannelPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/GetChannelScheduleCommand.ts b/clients/client-mediatailor/src/commands/GetChannelScheduleCommand.ts index 1a851a985dc75..2aca597ff6d7f 100644 --- a/clients/client-mediatailor/src/commands/GetChannelScheduleCommand.ts +++ b/clients/client-mediatailor/src/commands/GetChannelScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { GetChannelScheduleRequest, GetChannelScheduleResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { GetChannelScheduleRequest, GetChannelScheduleResponse } from "../models/models_0"; import { GetChannelSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/GetPlaybackConfigurationCommand.ts b/clients/client-mediatailor/src/commands/GetPlaybackConfigurationCommand.ts index 8680525b84e92..98bcc1cc6c305 100644 --- a/clients/client-mediatailor/src/commands/GetPlaybackConfigurationCommand.ts +++ b/clients/client-mediatailor/src/commands/GetPlaybackConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { GetPlaybackConfigurationRequest, GetPlaybackConfigurationResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { GetPlaybackConfigurationRequest, GetPlaybackConfigurationResponse } from "../models/models_0"; import { GetPlaybackConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/GetPrefetchScheduleCommand.ts b/clients/client-mediatailor/src/commands/GetPrefetchScheduleCommand.ts index a78f0e49d0430..693695bc87541 100644 --- a/clients/client-mediatailor/src/commands/GetPrefetchScheduleCommand.ts +++ b/clients/client-mediatailor/src/commands/GetPrefetchScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { GetPrefetchScheduleRequest, GetPrefetchScheduleResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { GetPrefetchScheduleRequest, GetPrefetchScheduleResponse } from "../models/models_0"; import { GetPrefetchSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/ListAlertsCommand.ts b/clients/client-mediatailor/src/commands/ListAlertsCommand.ts index 515f0a934113e..a237371403120 100644 --- a/clients/client-mediatailor/src/commands/ListAlertsCommand.ts +++ b/clients/client-mediatailor/src/commands/ListAlertsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { ListAlertsRequest, ListAlertsResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ListAlertsRequest, ListAlertsResponse } from "../models/models_0"; import { ListAlerts } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/ListChannelsCommand.ts b/clients/client-mediatailor/src/commands/ListChannelsCommand.ts index a6cd222c5983c..ba9fb4934e594 100644 --- a/clients/client-mediatailor/src/commands/ListChannelsCommand.ts +++ b/clients/client-mediatailor/src/commands/ListChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/ListLiveSourcesCommand.ts b/clients/client-mediatailor/src/commands/ListLiveSourcesCommand.ts index a3779ca6d6721..bcd763beb1098 100644 --- a/clients/client-mediatailor/src/commands/ListLiveSourcesCommand.ts +++ b/clients/client-mediatailor/src/commands/ListLiveSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { ListLiveSourcesRequest, ListLiveSourcesResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ListLiveSourcesRequest, ListLiveSourcesResponse } from "../models/models_0"; import { ListLiveSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/ListPlaybackConfigurationsCommand.ts b/clients/client-mediatailor/src/commands/ListPlaybackConfigurationsCommand.ts index 56680177cfc1f..0efa86b21f1b7 100644 --- a/clients/client-mediatailor/src/commands/ListPlaybackConfigurationsCommand.ts +++ b/clients/client-mediatailor/src/commands/ListPlaybackConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { ListPlaybackConfigurationsRequest, ListPlaybackConfigurationsResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ListPlaybackConfigurationsRequest, ListPlaybackConfigurationsResponse } from "../models/models_0"; import { ListPlaybackConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/ListPrefetchSchedulesCommand.ts b/clients/client-mediatailor/src/commands/ListPrefetchSchedulesCommand.ts index a563f5eaa77b4..9ecee4879a036 100644 --- a/clients/client-mediatailor/src/commands/ListPrefetchSchedulesCommand.ts +++ b/clients/client-mediatailor/src/commands/ListPrefetchSchedulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { ListPrefetchSchedulesRequest, ListPrefetchSchedulesResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ListPrefetchSchedulesRequest, ListPrefetchSchedulesResponse } from "../models/models_0"; import { ListPrefetchSchedules } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/ListSourceLocationsCommand.ts b/clients/client-mediatailor/src/commands/ListSourceLocationsCommand.ts index 077410f0dfb5a..1292f1c986cbf 100644 --- a/clients/client-mediatailor/src/commands/ListSourceLocationsCommand.ts +++ b/clients/client-mediatailor/src/commands/ListSourceLocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { ListSourceLocationsRequest, ListSourceLocationsResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ListSourceLocationsRequest, ListSourceLocationsResponse } from "../models/models_0"; import { ListSourceLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/ListTagsForResourceCommand.ts b/clients/client-mediatailor/src/commands/ListTagsForResourceCommand.ts index 8e89c8429325a..d09c6f19d0528 100644 --- a/clients/client-mediatailor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mediatailor/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/ListVodSourcesCommand.ts b/clients/client-mediatailor/src/commands/ListVodSourcesCommand.ts index 9de61868f95fa..65cc519c6f6c0 100644 --- a/clients/client-mediatailor/src/commands/ListVodSourcesCommand.ts +++ b/clients/client-mediatailor/src/commands/ListVodSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { ListVodSourcesRequest, ListVodSourcesResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { ListVodSourcesRequest, ListVodSourcesResponse } from "../models/models_0"; import { ListVodSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/PutChannelPolicyCommand.ts b/clients/client-mediatailor/src/commands/PutChannelPolicyCommand.ts index 5f279a38ae421..31b0438848992 100644 --- a/clients/client-mediatailor/src/commands/PutChannelPolicyCommand.ts +++ b/clients/client-mediatailor/src/commands/PutChannelPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { PutChannelPolicyRequest, PutChannelPolicyResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { PutChannelPolicyRequest, PutChannelPolicyResponse } from "../models/models_0"; import { PutChannelPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/PutPlaybackConfigurationCommand.ts b/clients/client-mediatailor/src/commands/PutPlaybackConfigurationCommand.ts index 2ee56c0459bbb..078e3bc41982e 100644 --- a/clients/client-mediatailor/src/commands/PutPlaybackConfigurationCommand.ts +++ b/clients/client-mediatailor/src/commands/PutPlaybackConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { PutPlaybackConfigurationRequest, PutPlaybackConfigurationResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { PutPlaybackConfigurationRequest, PutPlaybackConfigurationResponse } from "../models/models_0"; import { PutPlaybackConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/StartChannelCommand.ts b/clients/client-mediatailor/src/commands/StartChannelCommand.ts index fb5fc1fdf1fdb..6350b672565aa 100644 --- a/clients/client-mediatailor/src/commands/StartChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/StartChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { StartChannelRequest, StartChannelResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { StartChannelRequest, StartChannelResponse } from "../models/models_0"; import { StartChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/StopChannelCommand.ts b/clients/client-mediatailor/src/commands/StopChannelCommand.ts index 70bc710c69ed7..2ccb50745e1ee 100644 --- a/clients/client-mediatailor/src/commands/StopChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/StopChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { StopChannelRequest, StopChannelResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { StopChannelRequest, StopChannelResponse } from "../models/models_0"; import { StopChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/TagResourceCommand.ts b/clients/client-mediatailor/src/commands/TagResourceCommand.ts index 3805946cd6ec7..b1596eb43906e 100644 --- a/clients/client-mediatailor/src/commands/TagResourceCommand.ts +++ b/clients/client-mediatailor/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { TagResourceRequest } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/UntagResourceCommand.ts b/clients/client-mediatailor/src/commands/UntagResourceCommand.ts index 2a8fee9a66f12..865e22d37565b 100644 --- a/clients/client-mediatailor/src/commands/UntagResourceCommand.ts +++ b/clients/client-mediatailor/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { UntagResourceRequest } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/UpdateChannelCommand.ts b/clients/client-mediatailor/src/commands/UpdateChannelCommand.ts index 2b29a09d9c392..3f1a20c3c681d 100644 --- a/clients/client-mediatailor/src/commands/UpdateChannelCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { UpdateChannelRequest, UpdateChannelResponse } from "../models/models_0"; import { UpdateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/UpdateLiveSourceCommand.ts b/clients/client-mediatailor/src/commands/UpdateLiveSourceCommand.ts index 908943fc3948b..0ace15680f08d 100644 --- a/clients/client-mediatailor/src/commands/UpdateLiveSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateLiveSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { UpdateLiveSourceRequest, UpdateLiveSourceResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { UpdateLiveSourceRequest, UpdateLiveSourceResponse } from "../models/models_0"; import { UpdateLiveSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/UpdateProgramCommand.ts b/clients/client-mediatailor/src/commands/UpdateProgramCommand.ts index 6f110b6ff92f4..69b7d2e9338db 100644 --- a/clients/client-mediatailor/src/commands/UpdateProgramCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateProgramCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { UpdateProgramRequest, UpdateProgramResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { UpdateProgramRequest, UpdateProgramResponse } from "../models/models_0"; import { UpdateProgram } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/UpdateSourceLocationCommand.ts b/clients/client-mediatailor/src/commands/UpdateSourceLocationCommand.ts index ad478c626fc08..be5d258d24252 100644 --- a/clients/client-mediatailor/src/commands/UpdateSourceLocationCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateSourceLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { UpdateSourceLocationRequest, UpdateSourceLocationResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { UpdateSourceLocationRequest, UpdateSourceLocationResponse } from "../models/models_0"; import { UpdateSourceLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/commands/UpdateVodSourceCommand.ts b/clients/client-mediatailor/src/commands/UpdateVodSourceCommand.ts index 4d4ab14b6a491..8798a2666ce40 100644 --- a/clients/client-mediatailor/src/commands/UpdateVodSourceCommand.ts +++ b/clients/client-mediatailor/src/commands/UpdateVodSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; -import { UpdateVodSourceRequest, UpdateVodSourceResponse } from "../models/models_0"; +import type { MediaTailorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaTailorClient"; +import type { UpdateVodSourceRequest, UpdateVodSourceResponse } from "../models/models_0"; import { UpdateVodSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mediatailor/src/endpoint/EndpointParameters.ts b/clients/client-mediatailor/src/endpoint/EndpointParameters.ts index b1fdce0c2ae98..c33e4c90d60e3 100644 --- a/clients/client-mediatailor/src/endpoint/EndpointParameters.ts +++ b/clients/client-mediatailor/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mediatailor/src/endpoint/endpointResolver.ts b/clients/client-mediatailor/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mediatailor/src/endpoint/endpointResolver.ts +++ b/clients/client-mediatailor/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mediatailor/src/extensionConfiguration.ts b/clients/client-mediatailor/src/extensionConfiguration.ts index 946d51096e2fe..0b5cef4cccbbf 100644 --- a/clients/client-mediatailor/src/extensionConfiguration.ts +++ b/clients/client-mediatailor/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mediatailor/src/models/MediaTailorServiceException.ts b/clients/client-mediatailor/src/models/MediaTailorServiceException.ts index 91c89b024f2f4..3a8d33b3ebb41 100644 --- a/clients/client-mediatailor/src/models/MediaTailorServiceException.ts +++ b/clients/client-mediatailor/src/models/MediaTailorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mediatailor/src/models/errors.ts b/clients/client-mediatailor/src/models/errors.ts index e180710a26597..6d079305be79e 100644 --- a/clients/client-mediatailor/src/models/errors.ts +++ b/clients/client-mediatailor/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MediaTailorServiceException as __BaseException } from "./MediaTailorServiceException"; diff --git a/clients/client-mediatailor/src/pagination/GetChannelSchedulePaginator.ts b/clients/client-mediatailor/src/pagination/GetChannelSchedulePaginator.ts index 91218c018b7fe..5a78eaef773a5 100644 --- a/clients/client-mediatailor/src/pagination/GetChannelSchedulePaginator.ts +++ b/clients/client-mediatailor/src/pagination/GetChannelSchedulePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetChannelScheduleCommand, diff --git a/clients/client-mediatailor/src/pagination/Interfaces.ts b/clients/client-mediatailor/src/pagination/Interfaces.ts index 6fc9d90b67bdc..ae928f61b8410 100644 --- a/clients/client-mediatailor/src/pagination/Interfaces.ts +++ b/clients/client-mediatailor/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MediaTailorClient } from "../MediaTailorClient"; diff --git a/clients/client-mediatailor/src/pagination/ListAlertsPaginator.ts b/clients/client-mediatailor/src/pagination/ListAlertsPaginator.ts index d0038fdd36f6c..656258e1d74b1 100644 --- a/clients/client-mediatailor/src/pagination/ListAlertsPaginator.ts +++ b/clients/client-mediatailor/src/pagination/ListAlertsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAlertsCommand, ListAlertsCommandInput, ListAlertsCommandOutput } from "../commands/ListAlertsCommand"; import { MediaTailorClient } from "../MediaTailorClient"; diff --git a/clients/client-mediatailor/src/pagination/ListChannelsPaginator.ts b/clients/client-mediatailor/src/pagination/ListChannelsPaginator.ts index caa1504ad621c..ba528a3e9e44a 100644 --- a/clients/client-mediatailor/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-mediatailor/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelsCommand, diff --git a/clients/client-mediatailor/src/pagination/ListLiveSourcesPaginator.ts b/clients/client-mediatailor/src/pagination/ListLiveSourcesPaginator.ts index 6b8d0321b9b8e..7f3ca5f6461e2 100644 --- a/clients/client-mediatailor/src/pagination/ListLiveSourcesPaginator.ts +++ b/clients/client-mediatailor/src/pagination/ListLiveSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLiveSourcesCommand, diff --git a/clients/client-mediatailor/src/pagination/ListPlaybackConfigurationsPaginator.ts b/clients/client-mediatailor/src/pagination/ListPlaybackConfigurationsPaginator.ts index 25fe1315c2603..4e93c3f03d143 100644 --- a/clients/client-mediatailor/src/pagination/ListPlaybackConfigurationsPaginator.ts +++ b/clients/client-mediatailor/src/pagination/ListPlaybackConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPlaybackConfigurationsCommand, diff --git a/clients/client-mediatailor/src/pagination/ListPrefetchSchedulesPaginator.ts b/clients/client-mediatailor/src/pagination/ListPrefetchSchedulesPaginator.ts index 7b1d750590202..da68dbe42819d 100644 --- a/clients/client-mediatailor/src/pagination/ListPrefetchSchedulesPaginator.ts +++ b/clients/client-mediatailor/src/pagination/ListPrefetchSchedulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPrefetchSchedulesCommand, diff --git a/clients/client-mediatailor/src/pagination/ListSourceLocationsPaginator.ts b/clients/client-mediatailor/src/pagination/ListSourceLocationsPaginator.ts index 8b5ad3c495aab..d47501de240e7 100644 --- a/clients/client-mediatailor/src/pagination/ListSourceLocationsPaginator.ts +++ b/clients/client-mediatailor/src/pagination/ListSourceLocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSourceLocationsCommand, diff --git a/clients/client-mediatailor/src/pagination/ListVodSourcesPaginator.ts b/clients/client-mediatailor/src/pagination/ListVodSourcesPaginator.ts index 4c0caba17f07e..efb28a9d7d222 100644 --- a/clients/client-mediatailor/src/pagination/ListVodSourcesPaginator.ts +++ b/clients/client-mediatailor/src/pagination/ListVodSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVodSourcesCommand, diff --git a/clients/client-mediatailor/src/runtimeConfig.browser.ts b/clients/client-mediatailor/src/runtimeConfig.browser.ts index b94f61ba7dca9..4a8d01c54b5b8 100644 --- a/clients/client-mediatailor/src/runtimeConfig.browser.ts +++ b/clients/client-mediatailor/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaTailorClientConfig } from "./MediaTailorClient"; + +import type { MediaTailorClientConfig } from "./MediaTailorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mediatailor/src/runtimeConfig.native.ts b/clients/client-mediatailor/src/runtimeConfig.native.ts index 08c4293ae9a17..c066d0438ee20 100644 --- a/clients/client-mediatailor/src/runtimeConfig.native.ts +++ b/clients/client-mediatailor/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MediaTailorClientConfig } from "./MediaTailorClient"; +import type { MediaTailorClientConfig } from "./MediaTailorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mediatailor/src/runtimeConfig.shared.ts b/clients/client-mediatailor/src/runtimeConfig.shared.ts index c505279f9803b..dd2c01427997f 100644 --- a/clients/client-mediatailor/src/runtimeConfig.shared.ts +++ b/clients/client-mediatailor/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMediaTailorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MediaTailorClientConfig } from "./MediaTailorClient"; +import type { MediaTailorClientConfig } from "./MediaTailorClient"; /** * @internal diff --git a/clients/client-mediatailor/src/runtimeConfig.ts b/clients/client-mediatailor/src/runtimeConfig.ts index 9ed5e40432794..55a0781feb91e 100644 --- a/clients/client-mediatailor/src/runtimeConfig.ts +++ b/clients/client-mediatailor/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MediaTailorClientConfig } from "./MediaTailorClient"; + +import type { MediaTailorClientConfig } from "./MediaTailorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mediatailor/src/runtimeExtensions.ts b/clients/client-mediatailor/src/runtimeExtensions.ts index 92ac1426b5672..0880d8e855476 100644 --- a/clients/client-mediatailor/src/runtimeExtensions.ts +++ b/clients/client-mediatailor/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MediaTailorExtensionConfiguration } from "./extensionConfiguration"; +import type { MediaTailorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mediatailor/src/schemas/schemas_0.ts b/clients/client-mediatailor/src/schemas/schemas_0.ts index 4b43b97e66fa4..6b01bfc20bcd9 100644 --- a/clients/client-mediatailor/src/schemas/schemas_0.ts +++ b/clients/client-mediatailor/src/schemas/schemas_0.ts @@ -345,7 +345,7 @@ const n0 = "com.amazonaws.mediatailor"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-medical-imaging/package.json b/clients/client-medical-imaging/package.json index 3d7b16116e812..0b2baa7f2e255 100644 --- a/clients/client-medical-imaging/package.json +++ b/clients/client-medical-imaging/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-medical-imaging/src/MedicalImaging.ts b/clients/client-medical-imaging/src/MedicalImaging.ts index 9670a543b464a..e93530a501eec 100644 --- a/clients/client-medical-imaging/src/MedicalImaging.ts +++ b/clients/client-medical-imaging/src/MedicalImaging.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CopyImageSetCommand, @@ -84,7 +84,7 @@ import { UpdateImageSetMetadataCommandInput, UpdateImageSetMetadataCommandOutput, } from "./commands/UpdateImageSetMetadataCommand"; -import { MedicalImagingClient, MedicalImagingClientConfig } from "./MedicalImagingClient"; +import { MedicalImagingClient } from "./MedicalImagingClient"; const commands = { CopyImageSetCommand, diff --git a/clients/client-medical-imaging/src/MedicalImagingClient.ts b/clients/client-medical-imaging/src/MedicalImagingClient.ts index 9227e8eadac6d..5fe77835d9d58 100644 --- a/clients/client-medical-imaging/src/MedicalImagingClient.ts +++ b/clients/client-medical-imaging/src/MedicalImagingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMedicalImagingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CopyImageSetCommandInput, CopyImageSetCommandOutput } from "./commands/CopyImageSetCommand"; @@ -101,7 +110,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-medical-imaging/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-medical-imaging/src/auth/httpAuthExtensionConfiguration.ts index f5d3c43f9debe..c8f8fb6f04fbb 100644 --- a/clients/client-medical-imaging/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-medical-imaging/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MedicalImagingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MedicalImagingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-medical-imaging/src/auth/httpAuthSchemeProvider.ts b/clients/client-medical-imaging/src/auth/httpAuthSchemeProvider.ts index b98affa9da3c8..7a94bc41abc0f 100644 --- a/clients/client-medical-imaging/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-medical-imaging/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MedicalImagingClientConfig, MedicalImagingClientResolvedConfig } from "../MedicalImagingClient"; +import { type MedicalImagingClientResolvedConfig, MedicalImagingClientConfig } from "../MedicalImagingClient"; /** * @internal diff --git a/clients/client-medical-imaging/src/commands/CopyImageSetCommand.ts b/clients/client-medical-imaging/src/commands/CopyImageSetCommand.ts index 87691dddefd86..f981f6c67a9a0 100644 --- a/clients/client-medical-imaging/src/commands/CopyImageSetCommand.ts +++ b/clients/client-medical-imaging/src/commands/CopyImageSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { CopyImageSetRequest, CopyImageSetResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { CopyImageSetRequest, CopyImageSetResponse } from "../models/models_0"; import { CopyImageSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/CreateDatastoreCommand.ts b/clients/client-medical-imaging/src/commands/CreateDatastoreCommand.ts index 51c1558b990ec..7dcc2ddf1c3d6 100644 --- a/clients/client-medical-imaging/src/commands/CreateDatastoreCommand.ts +++ b/clients/client-medical-imaging/src/commands/CreateDatastoreCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { CreateDatastoreRequest, CreateDatastoreResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { CreateDatastoreRequest, CreateDatastoreResponse } from "../models/models_0"; import { CreateDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/DeleteDatastoreCommand.ts b/clients/client-medical-imaging/src/commands/DeleteDatastoreCommand.ts index fcbd538f28c7f..961ec025c00b3 100644 --- a/clients/client-medical-imaging/src/commands/DeleteDatastoreCommand.ts +++ b/clients/client-medical-imaging/src/commands/DeleteDatastoreCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { DeleteDatastoreRequest, DeleteDatastoreResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { DeleteDatastoreRequest, DeleteDatastoreResponse } from "../models/models_0"; import { DeleteDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/DeleteImageSetCommand.ts b/clients/client-medical-imaging/src/commands/DeleteImageSetCommand.ts index dd87be7ee2c6c..946da5f4dd657 100644 --- a/clients/client-medical-imaging/src/commands/DeleteImageSetCommand.ts +++ b/clients/client-medical-imaging/src/commands/DeleteImageSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { DeleteImageSetRequest, DeleteImageSetResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { DeleteImageSetRequest, DeleteImageSetResponse } from "../models/models_0"; import { DeleteImageSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/GetDICOMImportJobCommand.ts b/clients/client-medical-imaging/src/commands/GetDICOMImportJobCommand.ts index f58fe68db34fb..0e01e5ebc67f9 100644 --- a/clients/client-medical-imaging/src/commands/GetDICOMImportJobCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetDICOMImportJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { GetDICOMImportJobRequest, GetDICOMImportJobResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { GetDICOMImportJobRequest, GetDICOMImportJobResponse } from "../models/models_0"; import { GetDICOMImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/GetDatastoreCommand.ts b/clients/client-medical-imaging/src/commands/GetDatastoreCommand.ts index f20d7124bbd25..51df89311fffe 100644 --- a/clients/client-medical-imaging/src/commands/GetDatastoreCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetDatastoreCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { GetDatastoreRequest, GetDatastoreResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { GetDatastoreRequest, GetDatastoreResponse } from "../models/models_0"; import { GetDatastore } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/GetImageFrameCommand.ts b/clients/client-medical-imaging/src/commands/GetImageFrameCommand.ts index 19aba2236b739..bfcfcd8e9360d 100644 --- a/clients/client-medical-imaging/src/commands/GetImageFrameCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetImageFrameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { GetImageFrameRequest, GetImageFrameResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import { type GetImageFrameRequest, GetImageFrameResponse } from "../models/models_0"; import { GetImageFrame } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/GetImageSetCommand.ts b/clients/client-medical-imaging/src/commands/GetImageSetCommand.ts index 9be6eb328373c..df17518d51a58 100644 --- a/clients/client-medical-imaging/src/commands/GetImageSetCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetImageSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { GetImageSetRequest, GetImageSetResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { GetImageSetRequest, GetImageSetResponse } from "../models/models_0"; import { GetImageSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/GetImageSetMetadataCommand.ts b/clients/client-medical-imaging/src/commands/GetImageSetMetadataCommand.ts index 1a811f1a39566..976c89fb10ced 100644 --- a/clients/client-medical-imaging/src/commands/GetImageSetMetadataCommand.ts +++ b/clients/client-medical-imaging/src/commands/GetImageSetMetadataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { GetImageSetMetadataRequest, GetImageSetMetadataResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import { type GetImageSetMetadataRequest, GetImageSetMetadataResponse } from "../models/models_0"; import { GetImageSetMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/ListDICOMImportJobsCommand.ts b/clients/client-medical-imaging/src/commands/ListDICOMImportJobsCommand.ts index 09d01ea28f745..ac5e4af338063 100644 --- a/clients/client-medical-imaging/src/commands/ListDICOMImportJobsCommand.ts +++ b/clients/client-medical-imaging/src/commands/ListDICOMImportJobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { ListDICOMImportJobsRequest, ListDICOMImportJobsResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { ListDICOMImportJobsRequest, ListDICOMImportJobsResponse } from "../models/models_0"; import { ListDICOMImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/ListDatastoresCommand.ts b/clients/client-medical-imaging/src/commands/ListDatastoresCommand.ts index 17db3bac6842f..1455496df3776 100644 --- a/clients/client-medical-imaging/src/commands/ListDatastoresCommand.ts +++ b/clients/client-medical-imaging/src/commands/ListDatastoresCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { ListDatastoresRequest, ListDatastoresResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { ListDatastoresRequest, ListDatastoresResponse } from "../models/models_0"; import { ListDatastores } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/ListImageSetVersionsCommand.ts b/clients/client-medical-imaging/src/commands/ListImageSetVersionsCommand.ts index 2d9cbc6b1d5c5..873d61f88fbc3 100644 --- a/clients/client-medical-imaging/src/commands/ListImageSetVersionsCommand.ts +++ b/clients/client-medical-imaging/src/commands/ListImageSetVersionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { ListImageSetVersionsRequest, ListImageSetVersionsResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { ListImageSetVersionsRequest, ListImageSetVersionsResponse } from "../models/models_0"; import { ListImageSetVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/ListTagsForResourceCommand.ts b/clients/client-medical-imaging/src/commands/ListTagsForResourceCommand.ts index 8e7a5562695a4..1202d0011658f 100644 --- a/clients/client-medical-imaging/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-medical-imaging/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/SearchImageSetsCommand.ts b/clients/client-medical-imaging/src/commands/SearchImageSetsCommand.ts index d28699d75b61b..a23dcf53cd8d6 100644 --- a/clients/client-medical-imaging/src/commands/SearchImageSetsCommand.ts +++ b/clients/client-medical-imaging/src/commands/SearchImageSetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { SearchImageSetsRequest, SearchImageSetsResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { SearchImageSetsRequest, SearchImageSetsResponse } from "../models/models_0"; import { SearchImageSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/StartDICOMImportJobCommand.ts b/clients/client-medical-imaging/src/commands/StartDICOMImportJobCommand.ts index 6336201423342..ddb73301fd8f1 100644 --- a/clients/client-medical-imaging/src/commands/StartDICOMImportJobCommand.ts +++ b/clients/client-medical-imaging/src/commands/StartDICOMImportJobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { StartDICOMImportJobRequest, StartDICOMImportJobResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { StartDICOMImportJobRequest, StartDICOMImportJobResponse } from "../models/models_0"; import { StartDICOMImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/TagResourceCommand.ts b/clients/client-medical-imaging/src/commands/TagResourceCommand.ts index 3f62f57953c7c..34519b800cf09 100644 --- a/clients/client-medical-imaging/src/commands/TagResourceCommand.ts +++ b/clients/client-medical-imaging/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/UntagResourceCommand.ts b/clients/client-medical-imaging/src/commands/UntagResourceCommand.ts index 14be25dbe4e77..431b4cf61177f 100644 --- a/clients/client-medical-imaging/src/commands/UntagResourceCommand.ts +++ b/clients/client-medical-imaging/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/commands/UpdateImageSetMetadataCommand.ts b/clients/client-medical-imaging/src/commands/UpdateImageSetMetadataCommand.ts index 13dab66e8bdec..777c1960b1622 100644 --- a/clients/client-medical-imaging/src/commands/UpdateImageSetMetadataCommand.ts +++ b/clients/client-medical-imaging/src/commands/UpdateImageSetMetadataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MedicalImagingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MedicalImagingClient"; -import { UpdateImageSetMetadataRequest, UpdateImageSetMetadataResponse } from "../models/models_0"; +import type { + MedicalImagingClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MedicalImagingClient"; +import type { UpdateImageSetMetadataRequest, UpdateImageSetMetadataResponse } from "../models/models_0"; import { UpdateImageSetMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-medical-imaging/src/endpoint/EndpointParameters.ts b/clients/client-medical-imaging/src/endpoint/EndpointParameters.ts index 29f8c2523778c..ac936472ba17a 100644 --- a/clients/client-medical-imaging/src/endpoint/EndpointParameters.ts +++ b/clients/client-medical-imaging/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-medical-imaging/src/endpoint/endpointResolver.ts b/clients/client-medical-imaging/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-medical-imaging/src/endpoint/endpointResolver.ts +++ b/clients/client-medical-imaging/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-medical-imaging/src/extensionConfiguration.ts b/clients/client-medical-imaging/src/extensionConfiguration.ts index f052ea51a763e..15d0fc26c7a9f 100644 --- a/clients/client-medical-imaging/src/extensionConfiguration.ts +++ b/clients/client-medical-imaging/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-medical-imaging/src/models/MedicalImagingServiceException.ts b/clients/client-medical-imaging/src/models/MedicalImagingServiceException.ts index 22572adfe7d13..c72d110bb7f71 100644 --- a/clients/client-medical-imaging/src/models/MedicalImagingServiceException.ts +++ b/clients/client-medical-imaging/src/models/MedicalImagingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-medical-imaging/src/models/errors.ts b/clients/client-medical-imaging/src/models/errors.ts index 59e7ace265eef..b66ad6d913f70 100644 --- a/clients/client-medical-imaging/src/models/errors.ts +++ b/clients/client-medical-imaging/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MedicalImagingServiceException as __BaseException } from "./MedicalImagingServiceException"; diff --git a/clients/client-medical-imaging/src/pagination/Interfaces.ts b/clients/client-medical-imaging/src/pagination/Interfaces.ts index 2b4990e570df2..cb2283dab76d0 100644 --- a/clients/client-medical-imaging/src/pagination/Interfaces.ts +++ b/clients/client-medical-imaging/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MedicalImagingClient } from "../MedicalImagingClient"; diff --git a/clients/client-medical-imaging/src/pagination/ListDICOMImportJobsPaginator.ts b/clients/client-medical-imaging/src/pagination/ListDICOMImportJobsPaginator.ts index 0db5c5b859b40..449bcac8c02a9 100644 --- a/clients/client-medical-imaging/src/pagination/ListDICOMImportJobsPaginator.ts +++ b/clients/client-medical-imaging/src/pagination/ListDICOMImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDICOMImportJobsCommand, diff --git a/clients/client-medical-imaging/src/pagination/ListDatastoresPaginator.ts b/clients/client-medical-imaging/src/pagination/ListDatastoresPaginator.ts index 1be6693a41bea..10bfeffa75f26 100644 --- a/clients/client-medical-imaging/src/pagination/ListDatastoresPaginator.ts +++ b/clients/client-medical-imaging/src/pagination/ListDatastoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatastoresCommand, diff --git a/clients/client-medical-imaging/src/pagination/ListImageSetVersionsPaginator.ts b/clients/client-medical-imaging/src/pagination/ListImageSetVersionsPaginator.ts index 7ae6cfaf0f2a9..40ce77ec9b997 100644 --- a/clients/client-medical-imaging/src/pagination/ListImageSetVersionsPaginator.ts +++ b/clients/client-medical-imaging/src/pagination/ListImageSetVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImageSetVersionsCommand, diff --git a/clients/client-medical-imaging/src/pagination/SearchImageSetsPaginator.ts b/clients/client-medical-imaging/src/pagination/SearchImageSetsPaginator.ts index 2e14098b51380..16c2bffca4f32 100644 --- a/clients/client-medical-imaging/src/pagination/SearchImageSetsPaginator.ts +++ b/clients/client-medical-imaging/src/pagination/SearchImageSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchImageSetsCommand, diff --git a/clients/client-medical-imaging/src/runtimeConfig.browser.ts b/clients/client-medical-imaging/src/runtimeConfig.browser.ts index 645219bbdd5ae..958b90e6d62e1 100644 --- a/clients/client-medical-imaging/src/runtimeConfig.browser.ts +++ b/clients/client-medical-imaging/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MedicalImagingClientConfig } from "./MedicalImagingClient"; + +import type { MedicalImagingClientConfig } from "./MedicalImagingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-medical-imaging/src/runtimeConfig.native.ts b/clients/client-medical-imaging/src/runtimeConfig.native.ts index f56cc064dac49..fc558885c8d0b 100644 --- a/clients/client-medical-imaging/src/runtimeConfig.native.ts +++ b/clients/client-medical-imaging/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MedicalImagingClientConfig } from "./MedicalImagingClient"; +import type { MedicalImagingClientConfig } from "./MedicalImagingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-medical-imaging/src/runtimeConfig.shared.ts b/clients/client-medical-imaging/src/runtimeConfig.shared.ts index 4f33c0802ff7a..16d34b02ef8f2 100644 --- a/clients/client-medical-imaging/src/runtimeConfig.shared.ts +++ b/clients/client-medical-imaging/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMedicalImagingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MedicalImagingClientConfig } from "./MedicalImagingClient"; +import type { MedicalImagingClientConfig } from "./MedicalImagingClient"; /** * @internal diff --git a/clients/client-medical-imaging/src/runtimeConfig.ts b/clients/client-medical-imaging/src/runtimeConfig.ts index cc4608cfb3558..b12cb83c74fa8 100644 --- a/clients/client-medical-imaging/src/runtimeConfig.ts +++ b/clients/client-medical-imaging/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MedicalImagingClientConfig } from "./MedicalImagingClient"; + +import type { MedicalImagingClientConfig } from "./MedicalImagingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-medical-imaging/src/runtimeExtensions.ts b/clients/client-medical-imaging/src/runtimeExtensions.ts index 9a7eba3104171..fd046080d5bbc 100644 --- a/clients/client-medical-imaging/src/runtimeExtensions.ts +++ b/clients/client-medical-imaging/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MedicalImagingExtensionConfiguration } from "./extensionConfiguration"; +import type { MedicalImagingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-medical-imaging/src/schemas/schemas_0.ts b/clients/client-medical-imaging/src/schemas/schemas_0.ts index 80f5af139dbd6..fcf19da18e25b 100644 --- a/clients/client-medical-imaging/src/schemas/schemas_0.ts +++ b/clients/client-medical-imaging/src/schemas/schemas_0.ts @@ -196,7 +196,7 @@ const n0 = "com.amazonaws.medicalimaging"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-memorydb/package.json b/clients/client-memorydb/package.json index a57b613c6cc5b..0328eace55b68 100644 --- a/clients/client-memorydb/package.json +++ b/clients/client-memorydb/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-memorydb/src/MemoryDB.ts b/clients/client-memorydb/src/MemoryDB.ts index 9fe2a831ca803..09ed695cc6621 100644 --- a/clients/client-memorydb/src/MemoryDB.ts +++ b/clients/client-memorydb/src/MemoryDB.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchUpdateClusterCommand, @@ -195,7 +195,7 @@ import { UpdateSubnetGroupCommandOutput, } from "./commands/UpdateSubnetGroupCommand"; import { UpdateUserCommand, UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand"; -import { MemoryDBClient, MemoryDBClientConfig } from "./MemoryDBClient"; +import { MemoryDBClient } from "./MemoryDBClient"; const commands = { BatchUpdateClusterCommand, diff --git a/clients/client-memorydb/src/MemoryDBClient.ts b/clients/client-memorydb/src/MemoryDBClient.ts index dd51f07a9e38e..747b2ec9acd82 100644 --- a/clients/client-memorydb/src/MemoryDBClient.ts +++ b/clients/client-memorydb/src/MemoryDBClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMemoryDBHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchUpdateClusterCommandInput, BatchUpdateClusterCommandOutput } from "./commands/BatchUpdateClusterCommand"; @@ -166,7 +175,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-memorydb/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-memorydb/src/auth/httpAuthExtensionConfiguration.ts index ae76884f59971..5dafe1cc199ce 100644 --- a/clients/client-memorydb/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-memorydb/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MemoryDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MemoryDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-memorydb/src/auth/httpAuthSchemeProvider.ts b/clients/client-memorydb/src/auth/httpAuthSchemeProvider.ts index 57840957316d4..13522298451ac 100644 --- a/clients/client-memorydb/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-memorydb/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MemoryDBClientConfig, MemoryDBClientResolvedConfig } from "../MemoryDBClient"; +import { type MemoryDBClientResolvedConfig, MemoryDBClientConfig } from "../MemoryDBClient"; /** * @internal diff --git a/clients/client-memorydb/src/commands/BatchUpdateClusterCommand.ts b/clients/client-memorydb/src/commands/BatchUpdateClusterCommand.ts index fd35121b24376..b29ebd74050be 100644 --- a/clients/client-memorydb/src/commands/BatchUpdateClusterCommand.ts +++ b/clients/client-memorydb/src/commands/BatchUpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { BatchUpdateClusterRequest, BatchUpdateClusterResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { BatchUpdateClusterRequest, BatchUpdateClusterResponse } from "../models/models_0"; import { BatchUpdateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/CopySnapshotCommand.ts b/clients/client-memorydb/src/commands/CopySnapshotCommand.ts index 3c139c846764f..792757b5acdac 100644 --- a/clients/client-memorydb/src/commands/CopySnapshotCommand.ts +++ b/clients/client-memorydb/src/commands/CopySnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { CopySnapshotRequest, CopySnapshotResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { CopySnapshotRequest, CopySnapshotResponse } from "../models/models_0"; import { CopySnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/CreateACLCommand.ts b/clients/client-memorydb/src/commands/CreateACLCommand.ts index 696255032ca67..94d5cf245dbe9 100644 --- a/clients/client-memorydb/src/commands/CreateACLCommand.ts +++ b/clients/client-memorydb/src/commands/CreateACLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { CreateACLRequest, CreateACLResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { CreateACLRequest, CreateACLResponse } from "../models/models_0"; import { CreateACL } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/CreateClusterCommand.ts b/clients/client-memorydb/src/commands/CreateClusterCommand.ts index 89ad45ba30d08..27feab8b01344 100644 --- a/clients/client-memorydb/src/commands/CreateClusterCommand.ts +++ b/clients/client-memorydb/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/CreateMultiRegionClusterCommand.ts b/clients/client-memorydb/src/commands/CreateMultiRegionClusterCommand.ts index becd134f46297..2fac939e84a95 100644 --- a/clients/client-memorydb/src/commands/CreateMultiRegionClusterCommand.ts +++ b/clients/client-memorydb/src/commands/CreateMultiRegionClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { CreateMultiRegionClusterRequest, CreateMultiRegionClusterResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { CreateMultiRegionClusterRequest, CreateMultiRegionClusterResponse } from "../models/models_0"; import { CreateMultiRegionCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/CreateParameterGroupCommand.ts b/clients/client-memorydb/src/commands/CreateParameterGroupCommand.ts index 4973ef8bea76d..c4552b884b512 100644 --- a/clients/client-memorydb/src/commands/CreateParameterGroupCommand.ts +++ b/clients/client-memorydb/src/commands/CreateParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { CreateParameterGroupRequest, CreateParameterGroupResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { CreateParameterGroupRequest, CreateParameterGroupResponse } from "../models/models_0"; import { CreateParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/CreateSnapshotCommand.ts b/clients/client-memorydb/src/commands/CreateSnapshotCommand.ts index 67888cc8e904d..ea0281b7fca79 100644 --- a/clients/client-memorydb/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-memorydb/src/commands/CreateSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { CreateSnapshotRequest, CreateSnapshotResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { CreateSnapshotRequest, CreateSnapshotResponse } from "../models/models_0"; import { CreateSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/CreateSubnetGroupCommand.ts b/clients/client-memorydb/src/commands/CreateSubnetGroupCommand.ts index d86bdc3127577..55341c62a83b4 100644 --- a/clients/client-memorydb/src/commands/CreateSubnetGroupCommand.ts +++ b/clients/client-memorydb/src/commands/CreateSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { CreateSubnetGroupRequest, CreateSubnetGroupResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { CreateSubnetGroupRequest, CreateSubnetGroupResponse } from "../models/models_0"; import { CreateSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/CreateUserCommand.ts b/clients/client-memorydb/src/commands/CreateUserCommand.ts index 9c812fc0f38f5..5290ac8c04b44 100644 --- a/clients/client-memorydb/src/commands/CreateUserCommand.ts +++ b/clients/client-memorydb/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DeleteACLCommand.ts b/clients/client-memorydb/src/commands/DeleteACLCommand.ts index 9fc0eafc51aa8..42d8e831e6824 100644 --- a/clients/client-memorydb/src/commands/DeleteACLCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteACLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DeleteACLRequest, DeleteACLResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DeleteACLRequest, DeleteACLResponse } from "../models/models_0"; import { DeleteACL } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DeleteClusterCommand.ts b/clients/client-memorydb/src/commands/DeleteClusterCommand.ts index 1a44a60f5c66c..20c5f38bf0014 100644 --- a/clients/client-memorydb/src/commands/DeleteClusterCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DeleteMultiRegionClusterCommand.ts b/clients/client-memorydb/src/commands/DeleteMultiRegionClusterCommand.ts index 8136cebd21bfb..fc65c6a5ec9ad 100644 --- a/clients/client-memorydb/src/commands/DeleteMultiRegionClusterCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteMultiRegionClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DeleteMultiRegionClusterRequest, DeleteMultiRegionClusterResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DeleteMultiRegionClusterRequest, DeleteMultiRegionClusterResponse } from "../models/models_0"; import { DeleteMultiRegionCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DeleteParameterGroupCommand.ts b/clients/client-memorydb/src/commands/DeleteParameterGroupCommand.ts index c5550de96785b..8ab19c0c3248c 100644 --- a/clients/client-memorydb/src/commands/DeleteParameterGroupCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DeleteParameterGroupRequest, DeleteParameterGroupResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DeleteParameterGroupRequest, DeleteParameterGroupResponse } from "../models/models_0"; import { DeleteParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DeleteSnapshotCommand.ts b/clients/client-memorydb/src/commands/DeleteSnapshotCommand.ts index ef9b83440eac7..9517e3cb2ee81 100644 --- a/clients/client-memorydb/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DeleteSnapshotRequest, DeleteSnapshotResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DeleteSnapshotRequest, DeleteSnapshotResponse } from "../models/models_0"; import { DeleteSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DeleteSubnetGroupCommand.ts b/clients/client-memorydb/src/commands/DeleteSubnetGroupCommand.ts index caa9f13281e21..5f54368a67e13 100644 --- a/clients/client-memorydb/src/commands/DeleteSubnetGroupCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DeleteSubnetGroupRequest, DeleteSubnetGroupResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DeleteSubnetGroupRequest, DeleteSubnetGroupResponse } from "../models/models_0"; import { DeleteSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DeleteUserCommand.ts b/clients/client-memorydb/src/commands/DeleteUserCommand.ts index e23f826cb9f08..8d93e1a9e6a29 100644 --- a/clients/client-memorydb/src/commands/DeleteUserCommand.ts +++ b/clients/client-memorydb/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeACLsCommand.ts b/clients/client-memorydb/src/commands/DescribeACLsCommand.ts index 90c1062e617f3..d300e48d1d025 100644 --- a/clients/client-memorydb/src/commands/DescribeACLsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeACLsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeACLsRequest, DescribeACLsResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeACLsRequest, DescribeACLsResponse } from "../models/models_0"; import { DescribeACLs } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeClustersCommand.ts b/clients/client-memorydb/src/commands/DescribeClustersCommand.ts index 8eb46877516cd..cbdca8ce6aef7 100644 --- a/clients/client-memorydb/src/commands/DescribeClustersCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0"; import { DescribeClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeEngineVersionsCommand.ts b/clients/client-memorydb/src/commands/DescribeEngineVersionsCommand.ts index b5dd1326b0083..f4707e0585d54 100644 --- a/clients/client-memorydb/src/commands/DescribeEngineVersionsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeEngineVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeEngineVersionsRequest, DescribeEngineVersionsResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeEngineVersionsRequest, DescribeEngineVersionsResponse } from "../models/models_0"; import { DescribeEngineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeEventsCommand.ts b/clients/client-memorydb/src/commands/DescribeEventsCommand.ts index 231ca5185b006..591f7751c0034 100644 --- a/clients/client-memorydb/src/commands/DescribeEventsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeEventsRequest, DescribeEventsResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeEventsRequest, DescribeEventsResponse } from "../models/models_0"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeMultiRegionClustersCommand.ts b/clients/client-memorydb/src/commands/DescribeMultiRegionClustersCommand.ts index fa778e688c231..f3f3492b36118 100644 --- a/clients/client-memorydb/src/commands/DescribeMultiRegionClustersCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeMultiRegionClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeMultiRegionClustersRequest, DescribeMultiRegionClustersResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeMultiRegionClustersRequest, DescribeMultiRegionClustersResponse } from "../models/models_0"; import { DescribeMultiRegionClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeMultiRegionParameterGroupsCommand.ts b/clients/client-memorydb/src/commands/DescribeMultiRegionParameterGroupsCommand.ts index 221f8abc66f24..12986ac6f25a4 100644 --- a/clients/client-memorydb/src/commands/DescribeMultiRegionParameterGroupsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeMultiRegionParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeMultiRegionParameterGroupsRequest, DescribeMultiRegionParameterGroupsResponse, } from "../models/models_0"; diff --git a/clients/client-memorydb/src/commands/DescribeMultiRegionParametersCommand.ts b/clients/client-memorydb/src/commands/DescribeMultiRegionParametersCommand.ts index 760315d6639a4..b6af7676c35fa 100644 --- a/clients/client-memorydb/src/commands/DescribeMultiRegionParametersCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeMultiRegionParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeMultiRegionParametersRequest, DescribeMultiRegionParametersResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeMultiRegionParametersRequest, DescribeMultiRegionParametersResponse } from "../models/models_0"; import { DescribeMultiRegionParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeParameterGroupsCommand.ts b/clients/client-memorydb/src/commands/DescribeParameterGroupsCommand.ts index 30f3b8bbe649f..0f69a509c77f6 100644 --- a/clients/client-memorydb/src/commands/DescribeParameterGroupsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeParameterGroupsRequest, DescribeParameterGroupsResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeParameterGroupsRequest, DescribeParameterGroupsResponse } from "../models/models_0"; import { DescribeParameterGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeParametersCommand.ts b/clients/client-memorydb/src/commands/DescribeParametersCommand.ts index 99163afe8f350..11e279acaabf4 100644 --- a/clients/client-memorydb/src/commands/DescribeParametersCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeParametersRequest, DescribeParametersResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeParametersRequest, DescribeParametersResponse } from "../models/models_0"; import { DescribeParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeReservedNodesCommand.ts b/clients/client-memorydb/src/commands/DescribeReservedNodesCommand.ts index a09eee9faf46f..90b5769008009 100644 --- a/clients/client-memorydb/src/commands/DescribeReservedNodesCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeReservedNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeReservedNodesRequest, DescribeReservedNodesResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeReservedNodesRequest, DescribeReservedNodesResponse } from "../models/models_0"; import { DescribeReservedNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeReservedNodesOfferingsCommand.ts b/clients/client-memorydb/src/commands/DescribeReservedNodesOfferingsCommand.ts index b273133c860ff..4271de21658ee 100644 --- a/clients/client-memorydb/src/commands/DescribeReservedNodesOfferingsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeReservedNodesOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeReservedNodesOfferingsRequest, DescribeReservedNodesOfferingsResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeReservedNodesOfferingsRequest, DescribeReservedNodesOfferingsResponse } from "../models/models_0"; import { DescribeReservedNodesOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeServiceUpdatesCommand.ts b/clients/client-memorydb/src/commands/DescribeServiceUpdatesCommand.ts index 1567d807fee20..4778f63239740 100644 --- a/clients/client-memorydb/src/commands/DescribeServiceUpdatesCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeServiceUpdatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeServiceUpdatesRequest, DescribeServiceUpdatesResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeServiceUpdatesRequest, DescribeServiceUpdatesResponse } from "../models/models_0"; import { DescribeServiceUpdates } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeSnapshotsCommand.ts b/clients/client-memorydb/src/commands/DescribeSnapshotsCommand.ts index 5136d20425cd8..71aa9c97cdbf9 100644 --- a/clients/client-memorydb/src/commands/DescribeSnapshotsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeSnapshotsRequest, DescribeSnapshotsResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeSnapshotsRequest, DescribeSnapshotsResponse } from "../models/models_0"; import { DescribeSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeSubnetGroupsCommand.ts b/clients/client-memorydb/src/commands/DescribeSubnetGroupsCommand.ts index bbc68481fc8f2..8eb37f0a63ae3 100644 --- a/clients/client-memorydb/src/commands/DescribeSubnetGroupsCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeSubnetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeSubnetGroupsRequest, DescribeSubnetGroupsResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeSubnetGroupsRequest, DescribeSubnetGroupsResponse } from "../models/models_0"; import { DescribeSubnetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/DescribeUsersCommand.ts b/clients/client-memorydb/src/commands/DescribeUsersCommand.ts index 5bda37a757194..56843aadb3506 100644 --- a/clients/client-memorydb/src/commands/DescribeUsersCommand.ts +++ b/clients/client-memorydb/src/commands/DescribeUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { DescribeUsersRequest, DescribeUsersResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { DescribeUsersRequest, DescribeUsersResponse } from "../models/models_0"; import { DescribeUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/FailoverShardCommand.ts b/clients/client-memorydb/src/commands/FailoverShardCommand.ts index d74a13632c710..12deda55a08bb 100644 --- a/clients/client-memorydb/src/commands/FailoverShardCommand.ts +++ b/clients/client-memorydb/src/commands/FailoverShardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { FailoverShardRequest, FailoverShardResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { FailoverShardRequest, FailoverShardResponse } from "../models/models_0"; import { FailoverShard } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/ListAllowedMultiRegionClusterUpdatesCommand.ts b/clients/client-memorydb/src/commands/ListAllowedMultiRegionClusterUpdatesCommand.ts index 20d83f397c0b4..486ab1b2940ae 100644 --- a/clients/client-memorydb/src/commands/ListAllowedMultiRegionClusterUpdatesCommand.ts +++ b/clients/client-memorydb/src/commands/ListAllowedMultiRegionClusterUpdatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { ListAllowedMultiRegionClusterUpdatesRequest, ListAllowedMultiRegionClusterUpdatesResponse, } from "../models/models_0"; diff --git a/clients/client-memorydb/src/commands/ListAllowedNodeTypeUpdatesCommand.ts b/clients/client-memorydb/src/commands/ListAllowedNodeTypeUpdatesCommand.ts index 7c5481950ce32..79d11a7d6581f 100644 --- a/clients/client-memorydb/src/commands/ListAllowedNodeTypeUpdatesCommand.ts +++ b/clients/client-memorydb/src/commands/ListAllowedNodeTypeUpdatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { ListAllowedNodeTypeUpdatesRequest, ListAllowedNodeTypeUpdatesResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { ListAllowedNodeTypeUpdatesRequest, ListAllowedNodeTypeUpdatesResponse } from "../models/models_0"; import { ListAllowedNodeTypeUpdates } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/ListTagsCommand.ts b/clients/client-memorydb/src/commands/ListTagsCommand.ts index a948c93dc9d35..480f17b4d75a7 100644 --- a/clients/client-memorydb/src/commands/ListTagsCommand.ts +++ b/clients/client-memorydb/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { ListTagsRequest, ListTagsResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { ListTagsRequest, ListTagsResponse } from "../models/models_0"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/PurchaseReservedNodesOfferingCommand.ts b/clients/client-memorydb/src/commands/PurchaseReservedNodesOfferingCommand.ts index 57876128ef732..d6bd04fce6725 100644 --- a/clients/client-memorydb/src/commands/PurchaseReservedNodesOfferingCommand.ts +++ b/clients/client-memorydb/src/commands/PurchaseReservedNodesOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { PurchaseReservedNodesOfferingRequest, PurchaseReservedNodesOfferingResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { PurchaseReservedNodesOfferingRequest, PurchaseReservedNodesOfferingResponse } from "../models/models_0"; import { PurchaseReservedNodesOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/ResetParameterGroupCommand.ts b/clients/client-memorydb/src/commands/ResetParameterGroupCommand.ts index bbfed4cc1b655..ea473a3d60fc0 100644 --- a/clients/client-memorydb/src/commands/ResetParameterGroupCommand.ts +++ b/clients/client-memorydb/src/commands/ResetParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { ResetParameterGroupRequest, ResetParameterGroupResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { ResetParameterGroupRequest, ResetParameterGroupResponse } from "../models/models_0"; import { ResetParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/TagResourceCommand.ts b/clients/client-memorydb/src/commands/TagResourceCommand.ts index 3282fe90bf963..d27360f70f162 100644 --- a/clients/client-memorydb/src/commands/TagResourceCommand.ts +++ b/clients/client-memorydb/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/UntagResourceCommand.ts b/clients/client-memorydb/src/commands/UntagResourceCommand.ts index 82862882688c4..f3e6e30a65582 100644 --- a/clients/client-memorydb/src/commands/UntagResourceCommand.ts +++ b/clients/client-memorydb/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/UpdateACLCommand.ts b/clients/client-memorydb/src/commands/UpdateACLCommand.ts index b95edb11a30a2..2e355945fce92 100644 --- a/clients/client-memorydb/src/commands/UpdateACLCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateACLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { UpdateACLRequest, UpdateACLResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { UpdateACLRequest, UpdateACLResponse } from "../models/models_0"; import { UpdateACL } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/UpdateClusterCommand.ts b/clients/client-memorydb/src/commands/UpdateClusterCommand.ts index 19838d7fbe58f..5a5aae1ba94b7 100644 --- a/clients/client-memorydb/src/commands/UpdateClusterCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; import { UpdateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/UpdateMultiRegionClusterCommand.ts b/clients/client-memorydb/src/commands/UpdateMultiRegionClusterCommand.ts index a1937a61f5efe..3ea95435a8ad9 100644 --- a/clients/client-memorydb/src/commands/UpdateMultiRegionClusterCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateMultiRegionClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { UpdateMultiRegionClusterRequest, UpdateMultiRegionClusterResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { UpdateMultiRegionClusterRequest, UpdateMultiRegionClusterResponse } from "../models/models_0"; import { UpdateMultiRegionCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/UpdateParameterGroupCommand.ts b/clients/client-memorydb/src/commands/UpdateParameterGroupCommand.ts index f73a50878be0a..a1dcc8e536231 100644 --- a/clients/client-memorydb/src/commands/UpdateParameterGroupCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { UpdateParameterGroupRequest, UpdateParameterGroupResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { UpdateParameterGroupRequest, UpdateParameterGroupResponse } from "../models/models_0"; import { UpdateParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/UpdateSubnetGroupCommand.ts b/clients/client-memorydb/src/commands/UpdateSubnetGroupCommand.ts index 1405722e33f8f..b7618c069a324 100644 --- a/clients/client-memorydb/src/commands/UpdateSubnetGroupCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { UpdateSubnetGroupRequest, UpdateSubnetGroupResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { UpdateSubnetGroupRequest, UpdateSubnetGroupResponse } from "../models/models_0"; import { UpdateSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/commands/UpdateUserCommand.ts b/clients/client-memorydb/src/commands/UpdateUserCommand.ts index 1ba76936b7ae2..e5efcb0e4f60f 100644 --- a/clients/client-memorydb/src/commands/UpdateUserCommand.ts +++ b/clients/client-memorydb/src/commands/UpdateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; +import type { MemoryDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MemoryDBClient"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; import { UpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-memorydb/src/endpoint/EndpointParameters.ts b/clients/client-memorydb/src/endpoint/EndpointParameters.ts index 7bfae2619d34d..77f71e0c09760 100644 --- a/clients/client-memorydb/src/endpoint/EndpointParameters.ts +++ b/clients/client-memorydb/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-memorydb/src/endpoint/endpointResolver.ts b/clients/client-memorydb/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-memorydb/src/endpoint/endpointResolver.ts +++ b/clients/client-memorydb/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-memorydb/src/extensionConfiguration.ts b/clients/client-memorydb/src/extensionConfiguration.ts index 20a82d55cc441..008ab5ce59509 100644 --- a/clients/client-memorydb/src/extensionConfiguration.ts +++ b/clients/client-memorydb/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-memorydb/src/models/MemoryDBServiceException.ts b/clients/client-memorydb/src/models/MemoryDBServiceException.ts index eb5de0147a79d..9fccecdd309c4 100644 --- a/clients/client-memorydb/src/models/MemoryDBServiceException.ts +++ b/clients/client-memorydb/src/models/MemoryDBServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-memorydb/src/models/errors.ts b/clients/client-memorydb/src/models/errors.ts index ef6c83c12c635..1d70751836175 100644 --- a/clients/client-memorydb/src/models/errors.ts +++ b/clients/client-memorydb/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MemoryDBServiceException as __BaseException } from "./MemoryDBServiceException"; diff --git a/clients/client-memorydb/src/pagination/DescribeACLsPaginator.ts b/clients/client-memorydb/src/pagination/DescribeACLsPaginator.ts index 19b4127b777ea..99bb43c1b76dc 100644 --- a/clients/client-memorydb/src/pagination/DescribeACLsPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeACLsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeACLsCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeClustersPaginator.ts b/clients/client-memorydb/src/pagination/DescribeClustersPaginator.ts index de121c431a3f8..38a7c81399a7a 100644 --- a/clients/client-memorydb/src/pagination/DescribeClustersPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClustersCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeEngineVersionsPaginator.ts b/clients/client-memorydb/src/pagination/DescribeEngineVersionsPaginator.ts index be91d9ea2572d..fdae0fd4c4283 100644 --- a/clients/client-memorydb/src/pagination/DescribeEngineVersionsPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeEngineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEngineVersionsCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeEventsPaginator.ts b/clients/client-memorydb/src/pagination/DescribeEventsPaginator.ts index 81f9eda129893..ca333dd3605c1 100644 --- a/clients/client-memorydb/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeMultiRegionClustersPaginator.ts b/clients/client-memorydb/src/pagination/DescribeMultiRegionClustersPaginator.ts index 79769006a858b..e160805a0c828 100644 --- a/clients/client-memorydb/src/pagination/DescribeMultiRegionClustersPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeMultiRegionClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMultiRegionClustersCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeParameterGroupsPaginator.ts b/clients/client-memorydb/src/pagination/DescribeParameterGroupsPaginator.ts index 9bb86b4becdb9..223bd927eb486 100644 --- a/clients/client-memorydb/src/pagination/DescribeParameterGroupsPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeParameterGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeParameterGroupsCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeParametersPaginator.ts b/clients/client-memorydb/src/pagination/DescribeParametersPaginator.ts index 4e2eaadb7c588..843e762ee451a 100644 --- a/clients/client-memorydb/src/pagination/DescribeParametersPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeParametersCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeReservedNodesOfferingsPaginator.ts b/clients/client-memorydb/src/pagination/DescribeReservedNodesOfferingsPaginator.ts index b063d8dd6625f..255ed20e69bd5 100644 --- a/clients/client-memorydb/src/pagination/DescribeReservedNodesOfferingsPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeReservedNodesOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedNodesOfferingsCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeReservedNodesPaginator.ts b/clients/client-memorydb/src/pagination/DescribeReservedNodesPaginator.ts index 190a89bc0bff6..c32f8d7250fdd 100644 --- a/clients/client-memorydb/src/pagination/DescribeReservedNodesPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeReservedNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedNodesCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeServiceUpdatesPaginator.ts b/clients/client-memorydb/src/pagination/DescribeServiceUpdatesPaginator.ts index 9204859699017..989d702e0780c 100644 --- a/clients/client-memorydb/src/pagination/DescribeServiceUpdatesPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeServiceUpdatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeServiceUpdatesCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeSnapshotsPaginator.ts b/clients/client-memorydb/src/pagination/DescribeSnapshotsPaginator.ts index 3fc5d77dba1ad..2ab469fe8f4b4 100644 --- a/clients/client-memorydb/src/pagination/DescribeSnapshotsPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSnapshotsCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeSubnetGroupsPaginator.ts b/clients/client-memorydb/src/pagination/DescribeSubnetGroupsPaginator.ts index de4b0b6ad35e2..4a00fa96d1877 100644 --- a/clients/client-memorydb/src/pagination/DescribeSubnetGroupsPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeSubnetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSubnetGroupsCommand, diff --git a/clients/client-memorydb/src/pagination/DescribeUsersPaginator.ts b/clients/client-memorydb/src/pagination/DescribeUsersPaginator.ts index e0db5c13b46eb..44cbe2ec2871c 100644 --- a/clients/client-memorydb/src/pagination/DescribeUsersPaginator.ts +++ b/clients/client-memorydb/src/pagination/DescribeUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeUsersCommand, diff --git a/clients/client-memorydb/src/pagination/Interfaces.ts b/clients/client-memorydb/src/pagination/Interfaces.ts index 02bceab26707e..5f63b6528f341 100644 --- a/clients/client-memorydb/src/pagination/Interfaces.ts +++ b/clients/client-memorydb/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MemoryDBClient } from "../MemoryDBClient"; diff --git a/clients/client-memorydb/src/runtimeConfig.browser.ts b/clients/client-memorydb/src/runtimeConfig.browser.ts index 1542be3d33a11..23e927f472675 100644 --- a/clients/client-memorydb/src/runtimeConfig.browser.ts +++ b/clients/client-memorydb/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MemoryDBClientConfig } from "./MemoryDBClient"; + +import type { MemoryDBClientConfig } from "./MemoryDBClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-memorydb/src/runtimeConfig.native.ts b/clients/client-memorydb/src/runtimeConfig.native.ts index 22936f9d397d4..4d7628e99c241 100644 --- a/clients/client-memorydb/src/runtimeConfig.native.ts +++ b/clients/client-memorydb/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MemoryDBClientConfig } from "./MemoryDBClient"; +import type { MemoryDBClientConfig } from "./MemoryDBClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-memorydb/src/runtimeConfig.shared.ts b/clients/client-memorydb/src/runtimeConfig.shared.ts index b7a7d802701a6..535dfef2d8a8f 100644 --- a/clients/client-memorydb/src/runtimeConfig.shared.ts +++ b/clients/client-memorydb/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMemoryDBHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MemoryDBClientConfig } from "./MemoryDBClient"; +import type { MemoryDBClientConfig } from "./MemoryDBClient"; /** * @internal diff --git a/clients/client-memorydb/src/runtimeConfig.ts b/clients/client-memorydb/src/runtimeConfig.ts index 903fa5ec1c8f8..ec113fd5bb3e9 100644 --- a/clients/client-memorydb/src/runtimeConfig.ts +++ b/clients/client-memorydb/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MemoryDBClientConfig } from "./MemoryDBClient"; + +import type { MemoryDBClientConfig } from "./MemoryDBClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-memorydb/src/runtimeExtensions.ts b/clients/client-memorydb/src/runtimeExtensions.ts index c83b2f967206d..d2fc2d7ec9d22 100644 --- a/clients/client-memorydb/src/runtimeExtensions.ts +++ b/clients/client-memorydb/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MemoryDBExtensionConfiguration } from "./extensionConfiguration"; +import type { MemoryDBExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-memorydb/src/schemas/schemas_0.ts b/clients/client-memorydb/src/schemas/schemas_0.ts index 586cc49eb09c8..32a6ee1abeece 100644 --- a/clients/client-memorydb/src/schemas/schemas_0.ts +++ b/clients/client-memorydb/src/schemas/schemas_0.ts @@ -418,7 +418,7 @@ const n0 = "com.amazonaws.memorydb"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ACLAlreadyExistsFault as __ACLAlreadyExistsFault, diff --git a/clients/client-mgn/package.json b/clients/client-mgn/package.json index 68dd22b52ae52..d6a7e85d7d5b2 100644 --- a/clients/client-mgn/package.json +++ b/clients/client-mgn/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mgn/src/Mgn.ts b/clients/client-mgn/src/Mgn.ts index 02a3d726caa40..f9e06305e4314 100644 --- a/clients/client-mgn/src/Mgn.ts +++ b/clients/client-mgn/src/Mgn.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ArchiveApplicationCommand, @@ -304,7 +304,7 @@ import { UpdateSourceServerReplicationTypeCommandOutput, } from "./commands/UpdateSourceServerReplicationTypeCommand"; import { UpdateWaveCommand, UpdateWaveCommandInput, UpdateWaveCommandOutput } from "./commands/UpdateWaveCommand"; -import { MgnClient, MgnClientConfig } from "./MgnClient"; +import { MgnClient } from "./MgnClient"; const commands = { ArchiveApplicationCommand, diff --git a/clients/client-mgn/src/MgnClient.ts b/clients/client-mgn/src/MgnClient.ts index 74905f10765c7..4a93c9ad8d09a 100644 --- a/clients/client-mgn/src/MgnClient.ts +++ b/clients/client-mgn/src/MgnClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMgnHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { ArchiveApplicationCommandInput, ArchiveApplicationCommandOutput } from "./commands/ArchiveApplicationCommand"; @@ -233,7 +242,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mgn/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mgn/src/auth/httpAuthExtensionConfiguration.ts index 85ba0000aba90..cb98de6f83f7b 100644 --- a/clients/client-mgn/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mgn/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MgnHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MgnHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mgn/src/auth/httpAuthSchemeProvider.ts b/clients/client-mgn/src/auth/httpAuthSchemeProvider.ts index 3dc4bd74db509..a21b840f6fd24 100644 --- a/clients/client-mgn/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mgn/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MgnClientConfig, MgnClientResolvedConfig } from "../MgnClient"; +import { type MgnClientResolvedConfig, MgnClientConfig } from "../MgnClient"; /** * @internal diff --git a/clients/client-mgn/src/commands/ArchiveApplicationCommand.ts b/clients/client-mgn/src/commands/ArchiveApplicationCommand.ts index 2ea4275426875..8489be00f11f6 100644 --- a/clients/client-mgn/src/commands/ArchiveApplicationCommand.ts +++ b/clients/client-mgn/src/commands/ArchiveApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { Application, ArchiveApplicationRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { Application, ArchiveApplicationRequest } from "../models/models_0"; import { ArchiveApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ArchiveWaveCommand.ts b/clients/client-mgn/src/commands/ArchiveWaveCommand.ts index a03b722fe751e..f29dacd6085ee 100644 --- a/clients/client-mgn/src/commands/ArchiveWaveCommand.ts +++ b/clients/client-mgn/src/commands/ArchiveWaveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ArchiveWaveRequest, Wave } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ArchiveWaveRequest, Wave } from "../models/models_0"; import { ArchiveWave } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/AssociateApplicationsCommand.ts b/clients/client-mgn/src/commands/AssociateApplicationsCommand.ts index 62e74ea40339b..b12d3cef8f868 100644 --- a/clients/client-mgn/src/commands/AssociateApplicationsCommand.ts +++ b/clients/client-mgn/src/commands/AssociateApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { AssociateApplicationsRequest, AssociateApplicationsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { AssociateApplicationsRequest, AssociateApplicationsResponse } from "../models/models_0"; import { AssociateApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/AssociateSourceServersCommand.ts b/clients/client-mgn/src/commands/AssociateSourceServersCommand.ts index 88740035c6c26..b5c4f336e1b31 100644 --- a/clients/client-mgn/src/commands/AssociateSourceServersCommand.ts +++ b/clients/client-mgn/src/commands/AssociateSourceServersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { AssociateSourceServersRequest, AssociateSourceServersResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { AssociateSourceServersRequest, AssociateSourceServersResponse } from "../models/models_0"; import { AssociateSourceServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ChangeServerLifeCycleStateCommand.ts b/clients/client-mgn/src/commands/ChangeServerLifeCycleStateCommand.ts index 1f0e98ea254fc..29544d63598fd 100644 --- a/clients/client-mgn/src/commands/ChangeServerLifeCycleStateCommand.ts +++ b/clients/client-mgn/src/commands/ChangeServerLifeCycleStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ChangeServerLifeCycleStateRequest, SourceServer } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ChangeServerLifeCycleStateRequest, SourceServer } from "../models/models_0"; import { ChangeServerLifeCycleState } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/CreateApplicationCommand.ts b/clients/client-mgn/src/commands/CreateApplicationCommand.ts index 36cb0698a9b98..570ef06a80253 100644 --- a/clients/client-mgn/src/commands/CreateApplicationCommand.ts +++ b/clients/client-mgn/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { Application, CreateApplicationRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { Application, CreateApplicationRequest } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/CreateConnectorCommand.ts b/clients/client-mgn/src/commands/CreateConnectorCommand.ts index 19ddf01b8b9db..1cd01f4636722 100644 --- a/clients/client-mgn/src/commands/CreateConnectorCommand.ts +++ b/clients/client-mgn/src/commands/CreateConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { Connector, CreateConnectorRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { Connector, CreateConnectorRequest } from "../models/models_0"; import { CreateConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/CreateLaunchConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/CreateLaunchConfigurationTemplateCommand.ts index ff254e122196d..e23b60b2ae261 100644 --- a/clients/client-mgn/src/commands/CreateLaunchConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/CreateLaunchConfigurationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { CreateLaunchConfigurationTemplateRequest, LaunchConfigurationTemplate } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { CreateLaunchConfigurationTemplateRequest, LaunchConfigurationTemplate } from "../models/models_0"; import { CreateLaunchConfigurationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/CreateReplicationConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/CreateReplicationConfigurationTemplateCommand.ts index 3c619daa56ff1..21d31014a32fb 100644 --- a/clients/client-mgn/src/commands/CreateReplicationConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/CreateReplicationConfigurationTemplateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { CreateReplicationConfigurationTemplateRequest, ReplicationConfigurationTemplate } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { + CreateReplicationConfigurationTemplateRequest, + ReplicationConfigurationTemplate, +} from "../models/models_0"; import { CreateReplicationConfigurationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/CreateWaveCommand.ts b/clients/client-mgn/src/commands/CreateWaveCommand.ts index 6a693c917b4cd..f20f32a7b6601 100644 --- a/clients/client-mgn/src/commands/CreateWaveCommand.ts +++ b/clients/client-mgn/src/commands/CreateWaveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { CreateWaveRequest, Wave } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { CreateWaveRequest, Wave } from "../models/models_0"; import { CreateWave } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DeleteApplicationCommand.ts b/clients/client-mgn/src/commands/DeleteApplicationCommand.ts index 9867d1f00775e..3775121ce1a11 100644 --- a/clients/client-mgn/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-mgn/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DeleteConnectorCommand.ts b/clients/client-mgn/src/commands/DeleteConnectorCommand.ts index 2226fba0ed71e..18e718dc3284e 100644 --- a/clients/client-mgn/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-mgn/src/commands/DeleteConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DeleteConnectorRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DeleteConnectorRequest } from "../models/models_0"; import { DeleteConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DeleteJobCommand.ts b/clients/client-mgn/src/commands/DeleteJobCommand.ts index d5468d3529a1b..45c041170231e 100644 --- a/clients/client-mgn/src/commands/DeleteJobCommand.ts +++ b/clients/client-mgn/src/commands/DeleteJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DeleteJobRequest, DeleteJobResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DeleteJobRequest, DeleteJobResponse } from "../models/models_0"; import { DeleteJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DeleteLaunchConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/DeleteLaunchConfigurationTemplateCommand.ts index 1c1b75c88ca82..04907f23967b5 100644 --- a/clients/client-mgn/src/commands/DeleteLaunchConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/DeleteLaunchConfigurationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DeleteLaunchConfigurationTemplateRequest, DeleteLaunchConfigurationTemplateResponse, } from "../models/models_0"; diff --git a/clients/client-mgn/src/commands/DeleteReplicationConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/DeleteReplicationConfigurationTemplateCommand.ts index 64dd5c160489f..de8c5be3aba8d 100644 --- a/clients/client-mgn/src/commands/DeleteReplicationConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/DeleteReplicationConfigurationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DeleteReplicationConfigurationTemplateRequest, DeleteReplicationConfigurationTemplateResponse, } from "../models/models_0"; diff --git a/clients/client-mgn/src/commands/DeleteSourceServerCommand.ts b/clients/client-mgn/src/commands/DeleteSourceServerCommand.ts index 711cad7917749..5657c57979ea9 100644 --- a/clients/client-mgn/src/commands/DeleteSourceServerCommand.ts +++ b/clients/client-mgn/src/commands/DeleteSourceServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DeleteSourceServerRequest, DeleteSourceServerResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DeleteSourceServerRequest, DeleteSourceServerResponse } from "../models/models_0"; import { DeleteSourceServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DeleteVcenterClientCommand.ts b/clients/client-mgn/src/commands/DeleteVcenterClientCommand.ts index 1dded03fc8899..cbaef9a6bf5f3 100644 --- a/clients/client-mgn/src/commands/DeleteVcenterClientCommand.ts +++ b/clients/client-mgn/src/commands/DeleteVcenterClientCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DeleteVcenterClientRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DeleteVcenterClientRequest } from "../models/models_0"; import { DeleteVcenterClient } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DeleteWaveCommand.ts b/clients/client-mgn/src/commands/DeleteWaveCommand.ts index a0c384a17a6f0..9d0781533e224 100644 --- a/clients/client-mgn/src/commands/DeleteWaveCommand.ts +++ b/clients/client-mgn/src/commands/DeleteWaveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DeleteWaveRequest, DeleteWaveResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DeleteWaveRequest, DeleteWaveResponse } from "../models/models_0"; import { DeleteWave } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DescribeJobLogItemsCommand.ts b/clients/client-mgn/src/commands/DescribeJobLogItemsCommand.ts index de17e16cabe6f..dbf179f860832 100644 --- a/clients/client-mgn/src/commands/DescribeJobLogItemsCommand.ts +++ b/clients/client-mgn/src/commands/DescribeJobLogItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DescribeJobLogItemsRequest, DescribeJobLogItemsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DescribeJobLogItemsRequest, DescribeJobLogItemsResponse } from "../models/models_0"; import { DescribeJobLogItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DescribeJobsCommand.ts b/clients/client-mgn/src/commands/DescribeJobsCommand.ts index cf52b9780c456..470df825bc501 100644 --- a/clients/client-mgn/src/commands/DescribeJobsCommand.ts +++ b/clients/client-mgn/src/commands/DescribeJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DescribeJobsRequest, DescribeJobsResponse } from "../models/models_0"; import { DescribeJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts b/clients/client-mgn/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts index 18118bacc0a51..7b1754ecb3fa7 100644 --- a/clients/client-mgn/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts +++ b/clients/client-mgn/src/commands/DescribeLaunchConfigurationTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DescribeLaunchConfigurationTemplatesRequest, DescribeLaunchConfigurationTemplatesResponse, } from "../models/models_0"; diff --git a/clients/client-mgn/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts b/clients/client-mgn/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts index bf3238c73eac5..bbbb190ff00e4 100644 --- a/clients/client-mgn/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts +++ b/clients/client-mgn/src/commands/DescribeReplicationConfigurationTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DescribeReplicationConfigurationTemplatesRequest, DescribeReplicationConfigurationTemplatesResponse, } from "../models/models_0"; diff --git a/clients/client-mgn/src/commands/DescribeSourceServersCommand.ts b/clients/client-mgn/src/commands/DescribeSourceServersCommand.ts index c50bcf5dbb7fe..63f2c7b4d4020 100644 --- a/clients/client-mgn/src/commands/DescribeSourceServersCommand.ts +++ b/clients/client-mgn/src/commands/DescribeSourceServersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DescribeSourceServersRequest, DescribeSourceServersResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DescribeSourceServersRequest, DescribeSourceServersResponse } from "../models/models_0"; import { DescribeSourceServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DescribeVcenterClientsCommand.ts b/clients/client-mgn/src/commands/DescribeVcenterClientsCommand.ts index 8ac0389d00745..8eac1c1dc287a 100644 --- a/clients/client-mgn/src/commands/DescribeVcenterClientsCommand.ts +++ b/clients/client-mgn/src/commands/DescribeVcenterClientsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DescribeVcenterClientsRequest, DescribeVcenterClientsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DescribeVcenterClientsRequest, DescribeVcenterClientsResponse } from "../models/models_0"; import { DescribeVcenterClients } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DisassociateApplicationsCommand.ts b/clients/client-mgn/src/commands/DisassociateApplicationsCommand.ts index 3e3403f7a7494..90fc134eaabdb 100644 --- a/clients/client-mgn/src/commands/DisassociateApplicationsCommand.ts +++ b/clients/client-mgn/src/commands/DisassociateApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DisassociateApplicationsRequest, DisassociateApplicationsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DisassociateApplicationsRequest, DisassociateApplicationsResponse } from "../models/models_0"; import { DisassociateApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DisassociateSourceServersCommand.ts b/clients/client-mgn/src/commands/DisassociateSourceServersCommand.ts index 278fd27012e2d..f32b58e85c547 100644 --- a/clients/client-mgn/src/commands/DisassociateSourceServersCommand.ts +++ b/clients/client-mgn/src/commands/DisassociateSourceServersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DisassociateSourceServersRequest, DisassociateSourceServersResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DisassociateSourceServersRequest, DisassociateSourceServersResponse } from "../models/models_0"; import { DisassociateSourceServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/DisconnectFromServiceCommand.ts b/clients/client-mgn/src/commands/DisconnectFromServiceCommand.ts index dc16825a3309b..e99203b878723 100644 --- a/clients/client-mgn/src/commands/DisconnectFromServiceCommand.ts +++ b/clients/client-mgn/src/commands/DisconnectFromServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { DisconnectFromServiceRequest, SourceServer } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { DisconnectFromServiceRequest, SourceServer } from "../models/models_0"; import { DisconnectFromService } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/FinalizeCutoverCommand.ts b/clients/client-mgn/src/commands/FinalizeCutoverCommand.ts index d1632b6e87d0e..cd5c7485e635a 100644 --- a/clients/client-mgn/src/commands/FinalizeCutoverCommand.ts +++ b/clients/client-mgn/src/commands/FinalizeCutoverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { FinalizeCutoverRequest, SourceServer } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { FinalizeCutoverRequest, SourceServer } from "../models/models_0"; import { FinalizeCutover } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/GetLaunchConfigurationCommand.ts b/clients/client-mgn/src/commands/GetLaunchConfigurationCommand.ts index f9fc499addc91..f0b4527de340c 100644 --- a/clients/client-mgn/src/commands/GetLaunchConfigurationCommand.ts +++ b/clients/client-mgn/src/commands/GetLaunchConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { GetLaunchConfigurationRequest, LaunchConfiguration } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { GetLaunchConfigurationRequest, LaunchConfiguration } from "../models/models_0"; import { GetLaunchConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/GetReplicationConfigurationCommand.ts b/clients/client-mgn/src/commands/GetReplicationConfigurationCommand.ts index f6c48b8705899..56665e8e0d614 100644 --- a/clients/client-mgn/src/commands/GetReplicationConfigurationCommand.ts +++ b/clients/client-mgn/src/commands/GetReplicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { GetReplicationConfigurationRequest, ReplicationConfiguration } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { GetReplicationConfigurationRequest, ReplicationConfiguration } from "../models/models_0"; import { GetReplicationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/InitializeServiceCommand.ts b/clients/client-mgn/src/commands/InitializeServiceCommand.ts index 5717fbc0752a0..a311db7ff2f14 100644 --- a/clients/client-mgn/src/commands/InitializeServiceCommand.ts +++ b/clients/client-mgn/src/commands/InitializeServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { InitializeServiceRequest, InitializeServiceResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { InitializeServiceRequest, InitializeServiceResponse } from "../models/models_0"; import { InitializeService } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListApplicationsCommand.ts b/clients/client-mgn/src/commands/ListApplicationsCommand.ts index 431d44e164f0d..229669168e8b2 100644 --- a/clients/client-mgn/src/commands/ListApplicationsCommand.ts +++ b/clients/client-mgn/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListConnectorsCommand.ts b/clients/client-mgn/src/commands/ListConnectorsCommand.ts index 68d6be2022308..0ff524fe21eec 100644 --- a/clients/client-mgn/src/commands/ListConnectorsCommand.ts +++ b/clients/client-mgn/src/commands/ListConnectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; import { ListConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListExportErrorsCommand.ts b/clients/client-mgn/src/commands/ListExportErrorsCommand.ts index 4656137184ad5..e9b740c2cccc5 100644 --- a/clients/client-mgn/src/commands/ListExportErrorsCommand.ts +++ b/clients/client-mgn/src/commands/ListExportErrorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListExportErrorsRequest, ListExportErrorsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListExportErrorsRequest, ListExportErrorsResponse } from "../models/models_0"; import { ListExportErrors } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListExportsCommand.ts b/clients/client-mgn/src/commands/ListExportsCommand.ts index fb664c2ac050d..1c6957d1c342a 100644 --- a/clients/client-mgn/src/commands/ListExportsCommand.ts +++ b/clients/client-mgn/src/commands/ListExportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListExportsRequest, ListExportsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListExportsRequest, ListExportsResponse } from "../models/models_0"; import { ListExports } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListImportErrorsCommand.ts b/clients/client-mgn/src/commands/ListImportErrorsCommand.ts index 3fd79563a6725..aef78dd4c2098 100644 --- a/clients/client-mgn/src/commands/ListImportErrorsCommand.ts +++ b/clients/client-mgn/src/commands/ListImportErrorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListImportErrorsRequest, ListImportErrorsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListImportErrorsRequest, ListImportErrorsResponse } from "../models/models_0"; import { ListImportErrors } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListImportsCommand.ts b/clients/client-mgn/src/commands/ListImportsCommand.ts index cc0f57071252c..8018d4447383b 100644 --- a/clients/client-mgn/src/commands/ListImportsCommand.ts +++ b/clients/client-mgn/src/commands/ListImportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListImportsRequest, ListImportsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListImportsRequest, ListImportsResponse } from "../models/models_0"; import { ListImports } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListManagedAccountsCommand.ts b/clients/client-mgn/src/commands/ListManagedAccountsCommand.ts index 6c02cbe0f3a96..dea27ae2e9013 100644 --- a/clients/client-mgn/src/commands/ListManagedAccountsCommand.ts +++ b/clients/client-mgn/src/commands/ListManagedAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListManagedAccountsRequest, ListManagedAccountsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListManagedAccountsRequest, ListManagedAccountsResponse } from "../models/models_0"; import { ListManagedAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListSourceServerActionsCommand.ts b/clients/client-mgn/src/commands/ListSourceServerActionsCommand.ts index b41cb4abf88ab..3a631ebfe980f 100644 --- a/clients/client-mgn/src/commands/ListSourceServerActionsCommand.ts +++ b/clients/client-mgn/src/commands/ListSourceServerActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListSourceServerActionsRequest, ListSourceServerActionsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListSourceServerActionsRequest, ListSourceServerActionsResponse } from "../models/models_0"; import { ListSourceServerActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListTagsForResourceCommand.ts b/clients/client-mgn/src/commands/ListTagsForResourceCommand.ts index 4cdd08a3e4edb..588d46290318a 100644 --- a/clients/client-mgn/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mgn/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListTemplateActionsCommand.ts b/clients/client-mgn/src/commands/ListTemplateActionsCommand.ts index 81ba0b292a9bd..c8100e55e49c7 100644 --- a/clients/client-mgn/src/commands/ListTemplateActionsCommand.ts +++ b/clients/client-mgn/src/commands/ListTemplateActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListTemplateActionsRequest, ListTemplateActionsResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListTemplateActionsRequest, ListTemplateActionsResponse } from "../models/models_0"; import { ListTemplateActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ListWavesCommand.ts b/clients/client-mgn/src/commands/ListWavesCommand.ts index 96939db6a0214..b94073c583696 100644 --- a/clients/client-mgn/src/commands/ListWavesCommand.ts +++ b/clients/client-mgn/src/commands/ListWavesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ListWavesRequest, ListWavesResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ListWavesRequest, ListWavesResponse } from "../models/models_0"; import { ListWaves } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/MarkAsArchivedCommand.ts b/clients/client-mgn/src/commands/MarkAsArchivedCommand.ts index d3d4b2da1aaa1..8c6973b3512a0 100644 --- a/clients/client-mgn/src/commands/MarkAsArchivedCommand.ts +++ b/clients/client-mgn/src/commands/MarkAsArchivedCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { MarkAsArchivedRequest, SourceServer } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { MarkAsArchivedRequest, SourceServer } from "../models/models_0"; import { MarkAsArchived } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/PauseReplicationCommand.ts b/clients/client-mgn/src/commands/PauseReplicationCommand.ts index 6ea850dd8d9a3..d61d2b441b40d 100644 --- a/clients/client-mgn/src/commands/PauseReplicationCommand.ts +++ b/clients/client-mgn/src/commands/PauseReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { PauseReplicationRequest, SourceServer } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { PauseReplicationRequest, SourceServer } from "../models/models_0"; import { PauseReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/PutSourceServerActionCommand.ts b/clients/client-mgn/src/commands/PutSourceServerActionCommand.ts index 25533986d3cf4..53aea0e3a514b 100644 --- a/clients/client-mgn/src/commands/PutSourceServerActionCommand.ts +++ b/clients/client-mgn/src/commands/PutSourceServerActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { PutSourceServerActionRequest, SourceServerActionDocument } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { PutSourceServerActionRequest, SourceServerActionDocument } from "../models/models_0"; import { PutSourceServerAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/PutTemplateActionCommand.ts b/clients/client-mgn/src/commands/PutTemplateActionCommand.ts index e0652d599da1e..32fb9fcd2f415 100644 --- a/clients/client-mgn/src/commands/PutTemplateActionCommand.ts +++ b/clients/client-mgn/src/commands/PutTemplateActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { PutTemplateActionRequest, TemplateActionDocument } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { PutTemplateActionRequest, TemplateActionDocument } from "../models/models_0"; import { PutTemplateAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/RemoveSourceServerActionCommand.ts b/clients/client-mgn/src/commands/RemoveSourceServerActionCommand.ts index acc12b07079db..e1d700b0e0529 100644 --- a/clients/client-mgn/src/commands/RemoveSourceServerActionCommand.ts +++ b/clients/client-mgn/src/commands/RemoveSourceServerActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { RemoveSourceServerActionRequest, RemoveSourceServerActionResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { RemoveSourceServerActionRequest, RemoveSourceServerActionResponse } from "../models/models_0"; import { RemoveSourceServerAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/RemoveTemplateActionCommand.ts b/clients/client-mgn/src/commands/RemoveTemplateActionCommand.ts index d418e32310d14..7abe8d61fa25b 100644 --- a/clients/client-mgn/src/commands/RemoveTemplateActionCommand.ts +++ b/clients/client-mgn/src/commands/RemoveTemplateActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { RemoveTemplateActionRequest, RemoveTemplateActionResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { RemoveTemplateActionRequest, RemoveTemplateActionResponse } from "../models/models_0"; import { RemoveTemplateAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/ResumeReplicationCommand.ts b/clients/client-mgn/src/commands/ResumeReplicationCommand.ts index 45456907a12f0..f248b778b23e5 100644 --- a/clients/client-mgn/src/commands/ResumeReplicationCommand.ts +++ b/clients/client-mgn/src/commands/ResumeReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ResumeReplicationRequest, SourceServer } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ResumeReplicationRequest, SourceServer } from "../models/models_0"; import { ResumeReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/RetryDataReplicationCommand.ts b/clients/client-mgn/src/commands/RetryDataReplicationCommand.ts index 11b5050b27991..fa8430b989e11 100644 --- a/clients/client-mgn/src/commands/RetryDataReplicationCommand.ts +++ b/clients/client-mgn/src/commands/RetryDataReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { RetryDataReplicationRequest, SourceServer } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { RetryDataReplicationRequest, SourceServer } from "../models/models_0"; import { RetryDataReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/StartCutoverCommand.ts b/clients/client-mgn/src/commands/StartCutoverCommand.ts index 22fbd0ec38315..1f8a018c13ebb 100644 --- a/clients/client-mgn/src/commands/StartCutoverCommand.ts +++ b/clients/client-mgn/src/commands/StartCutoverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { StartCutoverRequest, StartCutoverResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { StartCutoverRequest, StartCutoverResponse } from "../models/models_0"; import { StartCutover } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/StartExportCommand.ts b/clients/client-mgn/src/commands/StartExportCommand.ts index 08ae8a2139125..8afbfee8f3e14 100644 --- a/clients/client-mgn/src/commands/StartExportCommand.ts +++ b/clients/client-mgn/src/commands/StartExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { StartExportRequest, StartExportResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { StartExportRequest, StartExportResponse } from "../models/models_0"; import { StartExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/StartImportCommand.ts b/clients/client-mgn/src/commands/StartImportCommand.ts index 6bd3c8d34fb8c..248e5160360d9 100644 --- a/clients/client-mgn/src/commands/StartImportCommand.ts +++ b/clients/client-mgn/src/commands/StartImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { StartImportRequest, StartImportResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { StartImportRequest, StartImportResponse } from "../models/models_0"; import { StartImport } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/StartReplicationCommand.ts b/clients/client-mgn/src/commands/StartReplicationCommand.ts index 216c9a7fe0c27..2919c2cc21a54 100644 --- a/clients/client-mgn/src/commands/StartReplicationCommand.ts +++ b/clients/client-mgn/src/commands/StartReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { SourceServer, StartReplicationRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { SourceServer, StartReplicationRequest } from "../models/models_0"; import { StartReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/StartTestCommand.ts b/clients/client-mgn/src/commands/StartTestCommand.ts index ea9171f3484c0..120ab67da366f 100644 --- a/clients/client-mgn/src/commands/StartTestCommand.ts +++ b/clients/client-mgn/src/commands/StartTestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { StartTestRequest, StartTestResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { StartTestRequest, StartTestResponse } from "../models/models_0"; import { StartTest } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/StopReplicationCommand.ts b/clients/client-mgn/src/commands/StopReplicationCommand.ts index 7d68f540f1318..58c1352c75381 100644 --- a/clients/client-mgn/src/commands/StopReplicationCommand.ts +++ b/clients/client-mgn/src/commands/StopReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { SourceServer, StopReplicationRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { SourceServer, StopReplicationRequest } from "../models/models_0"; import { StopReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/TagResourceCommand.ts b/clients/client-mgn/src/commands/TagResourceCommand.ts index 03046327a702e..1496c846eab1c 100644 --- a/clients/client-mgn/src/commands/TagResourceCommand.ts +++ b/clients/client-mgn/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { TagResourceRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/TerminateTargetInstancesCommand.ts b/clients/client-mgn/src/commands/TerminateTargetInstancesCommand.ts index a123a785a6176..f870a655b0cd1 100644 --- a/clients/client-mgn/src/commands/TerminateTargetInstancesCommand.ts +++ b/clients/client-mgn/src/commands/TerminateTargetInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { TerminateTargetInstancesRequest, TerminateTargetInstancesResponse } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { TerminateTargetInstancesRequest, TerminateTargetInstancesResponse } from "../models/models_0"; import { TerminateTargetInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UnarchiveApplicationCommand.ts b/clients/client-mgn/src/commands/UnarchiveApplicationCommand.ts index af8ee5118db41..aacd3375fd880 100644 --- a/clients/client-mgn/src/commands/UnarchiveApplicationCommand.ts +++ b/clients/client-mgn/src/commands/UnarchiveApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { Application, UnarchiveApplicationRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { Application, UnarchiveApplicationRequest } from "../models/models_0"; import { UnarchiveApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UnarchiveWaveCommand.ts b/clients/client-mgn/src/commands/UnarchiveWaveCommand.ts index 5af523bf9c6fa..41b0498fff701 100644 --- a/clients/client-mgn/src/commands/UnarchiveWaveCommand.ts +++ b/clients/client-mgn/src/commands/UnarchiveWaveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { UnarchiveWaveRequest, Wave } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { UnarchiveWaveRequest, Wave } from "../models/models_0"; import { UnarchiveWave } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UntagResourceCommand.ts b/clients/client-mgn/src/commands/UntagResourceCommand.ts index f60b4990e7e29..9176172054851 100644 --- a/clients/client-mgn/src/commands/UntagResourceCommand.ts +++ b/clients/client-mgn/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { UntagResourceRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UpdateApplicationCommand.ts b/clients/client-mgn/src/commands/UpdateApplicationCommand.ts index cda8a574a1a38..02f63d40ce8e1 100644 --- a/clients/client-mgn/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-mgn/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { Application, UpdateApplicationRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { Application, UpdateApplicationRequest } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UpdateConnectorCommand.ts b/clients/client-mgn/src/commands/UpdateConnectorCommand.ts index 114c3bce5c9db..a309ab3a610ae 100644 --- a/clients/client-mgn/src/commands/UpdateConnectorCommand.ts +++ b/clients/client-mgn/src/commands/UpdateConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { Connector, UpdateConnectorRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { Connector, UpdateConnectorRequest } from "../models/models_0"; import { UpdateConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UpdateLaunchConfigurationCommand.ts b/clients/client-mgn/src/commands/UpdateLaunchConfigurationCommand.ts index ae9abc51637c4..3a995ae473997 100644 --- a/clients/client-mgn/src/commands/UpdateLaunchConfigurationCommand.ts +++ b/clients/client-mgn/src/commands/UpdateLaunchConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { LaunchConfiguration, UpdateLaunchConfigurationRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { LaunchConfiguration, UpdateLaunchConfigurationRequest } from "../models/models_0"; import { UpdateLaunchConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UpdateLaunchConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/UpdateLaunchConfigurationTemplateCommand.ts index 8d3da6b57d1fd..0fb72dacd7ece 100644 --- a/clients/client-mgn/src/commands/UpdateLaunchConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/UpdateLaunchConfigurationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { LaunchConfigurationTemplate, UpdateLaunchConfigurationTemplateRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { LaunchConfigurationTemplate, UpdateLaunchConfigurationTemplateRequest } from "../models/models_0"; import { UpdateLaunchConfigurationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UpdateReplicationConfigurationCommand.ts b/clients/client-mgn/src/commands/UpdateReplicationConfigurationCommand.ts index 18af18c89a306..33aba140d1d55 100644 --- a/clients/client-mgn/src/commands/UpdateReplicationConfigurationCommand.ts +++ b/clients/client-mgn/src/commands/UpdateReplicationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ReplicationConfiguration, UpdateReplicationConfigurationRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { ReplicationConfiguration, UpdateReplicationConfigurationRequest } from "../models/models_0"; import { UpdateReplicationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UpdateReplicationConfigurationTemplateCommand.ts b/clients/client-mgn/src/commands/UpdateReplicationConfigurationTemplateCommand.ts index 6e0af87d536f0..685fb1cc88f77 100644 --- a/clients/client-mgn/src/commands/UpdateReplicationConfigurationTemplateCommand.ts +++ b/clients/client-mgn/src/commands/UpdateReplicationConfigurationTemplateCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { ReplicationConfigurationTemplate, UpdateReplicationConfigurationTemplateRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { + ReplicationConfigurationTemplate, + UpdateReplicationConfigurationTemplateRequest, +} from "../models/models_0"; import { UpdateReplicationConfigurationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UpdateSourceServerCommand.ts b/clients/client-mgn/src/commands/UpdateSourceServerCommand.ts index 285ffcbd9a3ad..9619967d6c003 100644 --- a/clients/client-mgn/src/commands/UpdateSourceServerCommand.ts +++ b/clients/client-mgn/src/commands/UpdateSourceServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { SourceServer, UpdateSourceServerRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { SourceServer, UpdateSourceServerRequest } from "../models/models_0"; import { UpdateSourceServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UpdateSourceServerReplicationTypeCommand.ts b/clients/client-mgn/src/commands/UpdateSourceServerReplicationTypeCommand.ts index 912110f93598e..fcd1a23ae38a5 100644 --- a/clients/client-mgn/src/commands/UpdateSourceServerReplicationTypeCommand.ts +++ b/clients/client-mgn/src/commands/UpdateSourceServerReplicationTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { SourceServer, UpdateSourceServerReplicationTypeRequest } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { SourceServer, UpdateSourceServerReplicationTypeRequest } from "../models/models_0"; import { UpdateSourceServerReplicationType } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/commands/UpdateWaveCommand.ts b/clients/client-mgn/src/commands/UpdateWaveCommand.ts index 26f62760322ba..a4827ba4dd204 100644 --- a/clients/client-mgn/src/commands/UpdateWaveCommand.ts +++ b/clients/client-mgn/src/commands/UpdateWaveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; -import { UpdateWaveRequest, Wave } from "../models/models_0"; +import type { MgnClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MgnClient"; +import type { UpdateWaveRequest, Wave } from "../models/models_0"; import { UpdateWave } from "../schemas/schemas_0"; /** diff --git a/clients/client-mgn/src/endpoint/EndpointParameters.ts b/clients/client-mgn/src/endpoint/EndpointParameters.ts index ddb0ce27f6c39..ea92a8f26a327 100644 --- a/clients/client-mgn/src/endpoint/EndpointParameters.ts +++ b/clients/client-mgn/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mgn/src/endpoint/endpointResolver.ts b/clients/client-mgn/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mgn/src/endpoint/endpointResolver.ts +++ b/clients/client-mgn/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mgn/src/extensionConfiguration.ts b/clients/client-mgn/src/extensionConfiguration.ts index 415cb2b7d9028..dbcb357f0d08f 100644 --- a/clients/client-mgn/src/extensionConfiguration.ts +++ b/clients/client-mgn/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mgn/src/models/MgnServiceException.ts b/clients/client-mgn/src/models/MgnServiceException.ts index 37584c74bee2e..8a26e4775dcb4 100644 --- a/clients/client-mgn/src/models/MgnServiceException.ts +++ b/clients/client-mgn/src/models/MgnServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mgn/src/models/errors.ts b/clients/client-mgn/src/models/errors.ts index 8e80531e733f2..855605a855b20 100644 --- a/clients/client-mgn/src/models/errors.ts +++ b/clients/client-mgn/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { MgnServiceException as __BaseException } from "./MgnServiceException"; diff --git a/clients/client-mgn/src/pagination/DescribeJobLogItemsPaginator.ts b/clients/client-mgn/src/pagination/DescribeJobLogItemsPaginator.ts index 893aa306ad9c9..6e75f22bb5203 100644 --- a/clients/client-mgn/src/pagination/DescribeJobLogItemsPaginator.ts +++ b/clients/client-mgn/src/pagination/DescribeJobLogItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeJobLogItemsCommand, diff --git a/clients/client-mgn/src/pagination/DescribeJobsPaginator.ts b/clients/client-mgn/src/pagination/DescribeJobsPaginator.ts index d382b1a0470e7..54ac3dccebbd1 100644 --- a/clients/client-mgn/src/pagination/DescribeJobsPaginator.ts +++ b/clients/client-mgn/src/pagination/DescribeJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeJobsCommand, diff --git a/clients/client-mgn/src/pagination/DescribeLaunchConfigurationTemplatesPaginator.ts b/clients/client-mgn/src/pagination/DescribeLaunchConfigurationTemplatesPaginator.ts index 4ca0ff63b58d6..34a81e3477a50 100644 --- a/clients/client-mgn/src/pagination/DescribeLaunchConfigurationTemplatesPaginator.ts +++ b/clients/client-mgn/src/pagination/DescribeLaunchConfigurationTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeLaunchConfigurationTemplatesCommand, diff --git a/clients/client-mgn/src/pagination/DescribeReplicationConfigurationTemplatesPaginator.ts b/clients/client-mgn/src/pagination/DescribeReplicationConfigurationTemplatesPaginator.ts index c006186d5dcbf..3e42cf8fed80c 100644 --- a/clients/client-mgn/src/pagination/DescribeReplicationConfigurationTemplatesPaginator.ts +++ b/clients/client-mgn/src/pagination/DescribeReplicationConfigurationTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReplicationConfigurationTemplatesCommand, diff --git a/clients/client-mgn/src/pagination/DescribeSourceServersPaginator.ts b/clients/client-mgn/src/pagination/DescribeSourceServersPaginator.ts index 12242832ef3db..3a3930af9c0cd 100644 --- a/clients/client-mgn/src/pagination/DescribeSourceServersPaginator.ts +++ b/clients/client-mgn/src/pagination/DescribeSourceServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSourceServersCommand, diff --git a/clients/client-mgn/src/pagination/DescribeVcenterClientsPaginator.ts b/clients/client-mgn/src/pagination/DescribeVcenterClientsPaginator.ts index 0cd4971e66403..4ddff8a745e7b 100644 --- a/clients/client-mgn/src/pagination/DescribeVcenterClientsPaginator.ts +++ b/clients/client-mgn/src/pagination/DescribeVcenterClientsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVcenterClientsCommand, diff --git a/clients/client-mgn/src/pagination/Interfaces.ts b/clients/client-mgn/src/pagination/Interfaces.ts index c14fcf873b913..238686ee804b3 100644 --- a/clients/client-mgn/src/pagination/Interfaces.ts +++ b/clients/client-mgn/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MgnClient } from "../MgnClient"; diff --git a/clients/client-mgn/src/pagination/ListApplicationsPaginator.ts b/clients/client-mgn/src/pagination/ListApplicationsPaginator.ts index f9955e191850f..d6eec17257ee5 100644 --- a/clients/client-mgn/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-mgn/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-mgn/src/pagination/ListConnectorsPaginator.ts b/clients/client-mgn/src/pagination/ListConnectorsPaginator.ts index 469f0caeeb588..da939aebbbbd4 100644 --- a/clients/client-mgn/src/pagination/ListConnectorsPaginator.ts +++ b/clients/client-mgn/src/pagination/ListConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectorsCommand, diff --git a/clients/client-mgn/src/pagination/ListExportErrorsPaginator.ts b/clients/client-mgn/src/pagination/ListExportErrorsPaginator.ts index 821e21cd1ce08..a76b4f81b3544 100644 --- a/clients/client-mgn/src/pagination/ListExportErrorsPaginator.ts +++ b/clients/client-mgn/src/pagination/ListExportErrorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExportErrorsCommand, diff --git a/clients/client-mgn/src/pagination/ListExportsPaginator.ts b/clients/client-mgn/src/pagination/ListExportsPaginator.ts index 38403ac275d5a..ab7906a30dadb 100644 --- a/clients/client-mgn/src/pagination/ListExportsPaginator.ts +++ b/clients/client-mgn/src/pagination/ListExportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExportsCommand, ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand"; import { MgnClient } from "../MgnClient"; diff --git a/clients/client-mgn/src/pagination/ListImportErrorsPaginator.ts b/clients/client-mgn/src/pagination/ListImportErrorsPaginator.ts index 1c2bc24048972..4f00d28d7c423 100644 --- a/clients/client-mgn/src/pagination/ListImportErrorsPaginator.ts +++ b/clients/client-mgn/src/pagination/ListImportErrorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImportErrorsCommand, diff --git a/clients/client-mgn/src/pagination/ListImportsPaginator.ts b/clients/client-mgn/src/pagination/ListImportsPaginator.ts index 6b349b2b82cd3..cfa050a32a876 100644 --- a/clients/client-mgn/src/pagination/ListImportsPaginator.ts +++ b/clients/client-mgn/src/pagination/ListImportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImportsCommand, ListImportsCommandInput, ListImportsCommandOutput } from "../commands/ListImportsCommand"; import { MgnClient } from "../MgnClient"; diff --git a/clients/client-mgn/src/pagination/ListManagedAccountsPaginator.ts b/clients/client-mgn/src/pagination/ListManagedAccountsPaginator.ts index a1a760a6da07a..93f01733f03fd 100644 --- a/clients/client-mgn/src/pagination/ListManagedAccountsPaginator.ts +++ b/clients/client-mgn/src/pagination/ListManagedAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedAccountsCommand, diff --git a/clients/client-mgn/src/pagination/ListSourceServerActionsPaginator.ts b/clients/client-mgn/src/pagination/ListSourceServerActionsPaginator.ts index ca5765581b0fe..809d199c36374 100644 --- a/clients/client-mgn/src/pagination/ListSourceServerActionsPaginator.ts +++ b/clients/client-mgn/src/pagination/ListSourceServerActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSourceServerActionsCommand, diff --git a/clients/client-mgn/src/pagination/ListTemplateActionsPaginator.ts b/clients/client-mgn/src/pagination/ListTemplateActionsPaginator.ts index 79b457ec01e0f..b37b0bda4398a 100644 --- a/clients/client-mgn/src/pagination/ListTemplateActionsPaginator.ts +++ b/clients/client-mgn/src/pagination/ListTemplateActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplateActionsCommand, diff --git a/clients/client-mgn/src/pagination/ListWavesPaginator.ts b/clients/client-mgn/src/pagination/ListWavesPaginator.ts index cee91bc70035a..237f3c02ec52a 100644 --- a/clients/client-mgn/src/pagination/ListWavesPaginator.ts +++ b/clients/client-mgn/src/pagination/ListWavesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWavesCommand, ListWavesCommandInput, ListWavesCommandOutput } from "../commands/ListWavesCommand"; import { MgnClient } from "../MgnClient"; diff --git a/clients/client-mgn/src/runtimeConfig.browser.ts b/clients/client-mgn/src/runtimeConfig.browser.ts index 00f727e791ac6..43a3632a1c70e 100644 --- a/clients/client-mgn/src/runtimeConfig.browser.ts +++ b/clients/client-mgn/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MgnClientConfig } from "./MgnClient"; + +import type { MgnClientConfig } from "./MgnClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mgn/src/runtimeConfig.native.ts b/clients/client-mgn/src/runtimeConfig.native.ts index e1441328f723f..0d89df2ec8e89 100644 --- a/clients/client-mgn/src/runtimeConfig.native.ts +++ b/clients/client-mgn/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MgnClientConfig } from "./MgnClient"; +import type { MgnClientConfig } from "./MgnClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mgn/src/runtimeConfig.shared.ts b/clients/client-mgn/src/runtimeConfig.shared.ts index 1fdce9bf5dd6f..1b9732cdc05d6 100644 --- a/clients/client-mgn/src/runtimeConfig.shared.ts +++ b/clients/client-mgn/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMgnHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MgnClientConfig } from "./MgnClient"; +import type { MgnClientConfig } from "./MgnClient"; /** * @internal diff --git a/clients/client-mgn/src/runtimeConfig.ts b/clients/client-mgn/src/runtimeConfig.ts index ab98760f6ac95..495eee63a72f3 100644 --- a/clients/client-mgn/src/runtimeConfig.ts +++ b/clients/client-mgn/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MgnClientConfig } from "./MgnClient"; + +import type { MgnClientConfig } from "./MgnClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mgn/src/runtimeExtensions.ts b/clients/client-mgn/src/runtimeExtensions.ts index 2b15aaaaafd2c..62c461e10e278 100644 --- a/clients/client-mgn/src/runtimeExtensions.ts +++ b/clients/client-mgn/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MgnExtensionConfiguration } from "./extensionConfiguration"; +import type { MgnExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mgn/src/schemas/schemas_0.ts b/clients/client-mgn/src/schemas/schemas_0.ts index 03b8e5e61945b..6b2831e31d095 100644 --- a/clients/client-mgn/src/schemas/schemas_0.ts +++ b/clients/client-mgn/src/schemas/schemas_0.ts @@ -522,7 +522,7 @@ const n0 = "com.amazonaws.mgn"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-migration-hub-refactor-spaces/package.json b/clients/client-migration-hub-refactor-spaces/package.json index 8a074fdb8456f..e9fab48755c02 100644 --- a/clients/client-migration-hub-refactor-spaces/package.json +++ b/clients/client-migration-hub-refactor-spaces/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-migration-hub-refactor-spaces/src/MigrationHubRefactorSpaces.ts b/clients/client-migration-hub-refactor-spaces/src/MigrationHubRefactorSpaces.ts index e2fe4236d7662..530d59f29c871 100644 --- a/clients/client-migration-hub-refactor-spaces/src/MigrationHubRefactorSpaces.ts +++ b/clients/client-migration-hub-refactor-spaces/src/MigrationHubRefactorSpaces.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateApplicationCommand, @@ -94,10 +94,7 @@ import { UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdateRouteCommand, UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand"; -import { - MigrationHubRefactorSpacesClient, - MigrationHubRefactorSpacesClientConfig, -} from "./MigrationHubRefactorSpacesClient"; +import { MigrationHubRefactorSpacesClient } from "./MigrationHubRefactorSpacesClient"; const commands = { CreateApplicationCommand, diff --git a/clients/client-migration-hub-refactor-spaces/src/MigrationHubRefactorSpacesClient.ts b/clients/client-migration-hub-refactor-spaces/src/MigrationHubRefactorSpacesClient.ts index a7cd1e01b93fc..dd8f9f0da3552 100644 --- a/clients/client-migration-hub-refactor-spaces/src/MigrationHubRefactorSpacesClient.ts +++ b/clients/client-migration-hub-refactor-spaces/src/MigrationHubRefactorSpacesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMigrationHubRefactorSpacesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand"; @@ -97,7 +106,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-migration-hub-refactor-spaces/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-migration-hub-refactor-spaces/src/auth/httpAuthExtensionConfiguration.ts index 0d5c600fb0596..a3aca855e6bf9 100644 --- a/clients/client-migration-hub-refactor-spaces/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-migration-hub-refactor-spaces/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MigrationHubRefactorSpacesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MigrationHubRefactorSpacesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-migration-hub-refactor-spaces/src/auth/httpAuthSchemeProvider.ts b/clients/client-migration-hub-refactor-spaces/src/auth/httpAuthSchemeProvider.ts index 33186e8a1b2f8..e6885948ffcb2 100644 --- a/clients/client-migration-hub-refactor-spaces/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-migration-hub-refactor-spaces/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type MigrationHubRefactorSpacesClientResolvedConfig, MigrationHubRefactorSpacesClientConfig, - MigrationHubRefactorSpacesClientResolvedConfig, } from "../MigrationHubRefactorSpacesClient"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/CreateApplicationCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/CreateApplicationCommand.ts index 35e8f8798f259..992d4d2c23da9 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/CreateApplicationCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/CreateApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/CreateEnvironmentCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/CreateEnvironmentCommand.ts index a942ea5e68f80..3f1c837b98dff 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/CreateEnvironmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; +import type { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; import { CreateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/CreateRouteCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/CreateRouteCommand.ts index 3f8fd8442088f..a7aaa5cd7c4fe 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/CreateRouteCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/CreateRouteCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { CreateRouteRequest, CreateRouteResponse } from "../models/models_0"; +import type { CreateRouteRequest, CreateRouteResponse } from "../models/models_0"; import { CreateRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/CreateServiceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/CreateServiceCommand.ts index 97f605f5cb7cf..ff1bb3a156dbe 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/CreateServiceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/CreateServiceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; +import type { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; import { CreateService } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteApplicationCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteApplicationCommand.ts index f7a960b02eff0..5e7c76061002c 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteEnvironmentCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteEnvironmentCommand.ts index 39ac8cb366270..0ba01233126f5 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteEnvironmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; +import type { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; import { DeleteEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteResourcePolicyCommand.ts index c604e40ff64f3..5f58b3d3161af 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteResourcePolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteRouteCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteRouteCommand.ts index 1edfa3f09e3de..2e6b8262522c8 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteRouteCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteRouteCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { DeleteRouteRequest, DeleteRouteResponse } from "../models/models_0"; +import type { DeleteRouteRequest, DeleteRouteResponse } from "../models/models_0"; import { DeleteRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteServiceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteServiceCommand.ts index ea0398ef51930..2f142ec4613f4 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/DeleteServiceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/DeleteServiceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; +import type { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; import { DeleteService } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetApplicationCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetApplicationCommand.ts index 3a4e88daa9951..e72120028656d 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetApplicationCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; +import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetEnvironmentCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetEnvironmentCommand.ts index b2c717a270311..5080da92ad57b 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetEnvironmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; +import type { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; import { GetEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetResourcePolicyCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetResourcePolicyCommand.ts index 9c85285271814..ab01daab86cb3 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetResourcePolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetRouteCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetRouteCommand.ts index dfadf787d0e77..3320a0f61a4bf 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetRouteCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetRouteCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { GetRouteRequest, GetRouteResponse } from "../models/models_0"; +import type { GetRouteRequest, GetRouteResponse } from "../models/models_0"; import { GetRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/GetServiceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/GetServiceCommand.ts index 8e33ad358ba95..55186c9265cfa 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/GetServiceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/GetServiceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { GetServiceRequest, GetServiceResponse } from "../models/models_0"; +import type { GetServiceRequest, GetServiceResponse } from "../models/models_0"; import { GetService } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListApplicationsCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListApplicationsCommand.ts index 67e1b71ddd4c4..88c6465621b87 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListApplicationsCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListApplicationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentVpcsCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentVpcsCommand.ts index 6759d7e090c6e..8705fbcb32aa6 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentVpcsCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentVpcsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { ListEnvironmentVpcsRequest, ListEnvironmentVpcsResponse } from "../models/models_0"; +import type { ListEnvironmentVpcsRequest, ListEnvironmentVpcsResponse } from "../models/models_0"; import { ListEnvironmentVpcs } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentsCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentsCommand.ts index c1486a187fcc8..d359c3233349d 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListEnvironmentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; +import type { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; import { ListEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListRoutesCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListRoutesCommand.ts index 648ea544d6507..1566ac4015113 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListRoutesCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListRoutesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { ListRoutesRequest, ListRoutesResponse } from "../models/models_0"; +import type { ListRoutesRequest, ListRoutesResponse } from "../models/models_0"; import { ListRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListServicesCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListServicesCommand.ts index 4794692ab34ab..e6bbc60ad371a 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListServicesCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListServicesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { ListServicesRequest, ListServicesResponse } from "../models/models_0"; +import type { ListServicesRequest, ListServicesResponse } from "../models/models_0"; import { ListServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/ListTagsForResourceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/ListTagsForResourceCommand.ts index 14887a70c05c1..39aaea5e85ecd 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/PutResourcePolicyCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/PutResourcePolicyCommand.ts index 90ba5d9766299..c37c22393b493 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/PutResourcePolicyCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/TagResourceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/TagResourceCommand.ts index 47ce1fa37f7fb..6aa9039743185 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/TagResourceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/UntagResourceCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/UntagResourceCommand.ts index c06bd3c70d795..9b310f0a4eaab 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/UntagResourceCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/commands/UpdateRouteCommand.ts b/clients/client-migration-hub-refactor-spaces/src/commands/UpdateRouteCommand.ts index feb36a7576843..91771888c09f9 100644 --- a/clients/client-migration-hub-refactor-spaces/src/commands/UpdateRouteCommand.ts +++ b/clients/client-migration-hub-refactor-spaces/src/commands/UpdateRouteCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubRefactorSpacesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubRefactorSpacesClient"; -import { UpdateRouteRequest, UpdateRouteResponse } from "../models/models_0"; +import type { UpdateRouteRequest, UpdateRouteResponse } from "../models/models_0"; import { UpdateRoute } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/endpoint/EndpointParameters.ts b/clients/client-migration-hub-refactor-spaces/src/endpoint/EndpointParameters.ts index 3eb3f469d6ec7..ce4a1575b6fc3 100644 --- a/clients/client-migration-hub-refactor-spaces/src/endpoint/EndpointParameters.ts +++ b/clients/client-migration-hub-refactor-spaces/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-migration-hub-refactor-spaces/src/endpoint/endpointResolver.ts b/clients/client-migration-hub-refactor-spaces/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-migration-hub-refactor-spaces/src/endpoint/endpointResolver.ts +++ b/clients/client-migration-hub-refactor-spaces/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-migration-hub-refactor-spaces/src/extensionConfiguration.ts b/clients/client-migration-hub-refactor-spaces/src/extensionConfiguration.ts index ff85a1b887c1f..4f330d7b42386 100644 --- a/clients/client-migration-hub-refactor-spaces/src/extensionConfiguration.ts +++ b/clients/client-migration-hub-refactor-spaces/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-migration-hub-refactor-spaces/src/models/MigrationHubRefactorSpacesServiceException.ts b/clients/client-migration-hub-refactor-spaces/src/models/MigrationHubRefactorSpacesServiceException.ts index ef43527b89fe9..8958d95d6467c 100644 --- a/clients/client-migration-hub-refactor-spaces/src/models/MigrationHubRefactorSpacesServiceException.ts +++ b/clients/client-migration-hub-refactor-spaces/src/models/MigrationHubRefactorSpacesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-migration-hub-refactor-spaces/src/models/errors.ts b/clients/client-migration-hub-refactor-spaces/src/models/errors.ts index f7b13c95f61d9..adf1788afc629 100644 --- a/clients/client-migration-hub-refactor-spaces/src/models/errors.ts +++ b/clients/client-migration-hub-refactor-spaces/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MigrationHubRefactorSpacesServiceException as __BaseException } from "./MigrationHubRefactorSpacesServiceException"; diff --git a/clients/client-migration-hub-refactor-spaces/src/pagination/Interfaces.ts b/clients/client-migration-hub-refactor-spaces/src/pagination/Interfaces.ts index 9477513055175..f301c9fe8ff2b 100644 --- a/clients/client-migration-hub-refactor-spaces/src/pagination/Interfaces.ts +++ b/clients/client-migration-hub-refactor-spaces/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MigrationHubRefactorSpacesClient } from "../MigrationHubRefactorSpacesClient"; diff --git a/clients/client-migration-hub-refactor-spaces/src/pagination/ListApplicationsPaginator.ts b/clients/client-migration-hub-refactor-spaces/src/pagination/ListApplicationsPaginator.ts index 432859cb9823b..69dfc1ef205f1 100644 --- a/clients/client-migration-hub-refactor-spaces/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-migration-hub-refactor-spaces/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-migration-hub-refactor-spaces/src/pagination/ListEnvironmentVpcsPaginator.ts b/clients/client-migration-hub-refactor-spaces/src/pagination/ListEnvironmentVpcsPaginator.ts index e5022ba0eb1ad..f084ad0650834 100644 --- a/clients/client-migration-hub-refactor-spaces/src/pagination/ListEnvironmentVpcsPaginator.ts +++ b/clients/client-migration-hub-refactor-spaces/src/pagination/ListEnvironmentVpcsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentVpcsCommand, diff --git a/clients/client-migration-hub-refactor-spaces/src/pagination/ListEnvironmentsPaginator.ts b/clients/client-migration-hub-refactor-spaces/src/pagination/ListEnvironmentsPaginator.ts index 9472501d9c140..8b7f03814c8d4 100644 --- a/clients/client-migration-hub-refactor-spaces/src/pagination/ListEnvironmentsPaginator.ts +++ b/clients/client-migration-hub-refactor-spaces/src/pagination/ListEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentsCommand, diff --git a/clients/client-migration-hub-refactor-spaces/src/pagination/ListRoutesPaginator.ts b/clients/client-migration-hub-refactor-spaces/src/pagination/ListRoutesPaginator.ts index fa3dedfa81a35..c8d8609ad513b 100644 --- a/clients/client-migration-hub-refactor-spaces/src/pagination/ListRoutesPaginator.ts +++ b/clients/client-migration-hub-refactor-spaces/src/pagination/ListRoutesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoutesCommand, ListRoutesCommandInput, ListRoutesCommandOutput } from "../commands/ListRoutesCommand"; import { MigrationHubRefactorSpacesClient } from "../MigrationHubRefactorSpacesClient"; diff --git a/clients/client-migration-hub-refactor-spaces/src/pagination/ListServicesPaginator.ts b/clients/client-migration-hub-refactor-spaces/src/pagination/ListServicesPaginator.ts index 894c2faf8d137..3c9898de4d341 100644 --- a/clients/client-migration-hub-refactor-spaces/src/pagination/ListServicesPaginator.ts +++ b/clients/client-migration-hub-refactor-spaces/src/pagination/ListServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicesCommand, diff --git a/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.browser.ts b/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.browser.ts index be5bbee153e6c..35cf2676852a2 100644 --- a/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.browser.ts +++ b/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient"; + +import type { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.native.ts b/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.native.ts index b2f0ae2b72c84..b94aedb44397d 100644 --- a/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.native.ts +++ b/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient"; +import type { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.shared.ts b/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.shared.ts index 32b39ab35ef95..6bcb21cb03357 100644 --- a/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.shared.ts +++ b/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMigrationHubRefactorSpacesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient"; +import type { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient"; /** * @internal diff --git a/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.ts b/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.ts index c744623d1aa30..d70fef09fc530 100644 --- a/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.ts +++ b/clients/client-migration-hub-refactor-spaces/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient"; + +import type { MigrationHubRefactorSpacesClientConfig } from "./MigrationHubRefactorSpacesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-migration-hub-refactor-spaces/src/runtimeExtensions.ts b/clients/client-migration-hub-refactor-spaces/src/runtimeExtensions.ts index 4a86d2c56acdb..76284c586d19e 100644 --- a/clients/client-migration-hub-refactor-spaces/src/runtimeExtensions.ts +++ b/clients/client-migration-hub-refactor-spaces/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MigrationHubRefactorSpacesExtensionConfiguration } from "./extensionConfiguration"; +import type { MigrationHubRefactorSpacesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-migration-hub-refactor-spaces/src/schemas/schemas_0.ts b/clients/client-migration-hub-refactor-spaces/src/schemas/schemas_0.ts index 87d2f5cc64504..2ec538564f65a 100644 --- a/clients/client-migration-hub-refactor-spaces/src/schemas/schemas_0.ts +++ b/clients/client-migration-hub-refactor-spaces/src/schemas/schemas_0.ts @@ -184,7 +184,7 @@ const n0 = "com.amazonaws.migrationhubrefactorspaces"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-migration-hub/package.json b/clients/client-migration-hub/package.json index 5b7195099600d..24731a9b6bf81 100644 --- a/clients/client-migration-hub/package.json +++ b/clients/client-migration-hub/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-migration-hub/src/MigrationHub.ts b/clients/client-migration-hub/src/MigrationHub.ts index 9d602f4dafd65..29f08249c650c 100644 --- a/clients/client-migration-hub/src/MigrationHub.ts +++ b/clients/client-migration-hub/src/MigrationHub.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateCreatedArtifactCommand, @@ -107,7 +107,7 @@ import { PutResourceAttributesCommandInput, PutResourceAttributesCommandOutput, } from "./commands/PutResourceAttributesCommand"; -import { MigrationHubClient, MigrationHubClientConfig } from "./MigrationHubClient"; +import { MigrationHubClient } from "./MigrationHubClient"; const commands = { AssociateCreatedArtifactCommand, diff --git a/clients/client-migration-hub/src/MigrationHubClient.ts b/clients/client-migration-hub/src/MigrationHubClient.ts index 97eab13770238..705c3b74038e0 100644 --- a/clients/client-migration-hub/src/MigrationHubClient.ts +++ b/clients/client-migration-hub/src/MigrationHubClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMigrationHubHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -145,7 +154,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-migration-hub/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-migration-hub/src/auth/httpAuthExtensionConfiguration.ts index 250a81648602e..1cc9af1fb9463 100644 --- a/clients/client-migration-hub/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-migration-hub/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MigrationHubHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MigrationHubHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-migration-hub/src/auth/httpAuthSchemeProvider.ts b/clients/client-migration-hub/src/auth/httpAuthSchemeProvider.ts index 60c5df9d2b803..c13e089340409 100644 --- a/clients/client-migration-hub/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-migration-hub/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MigrationHubClientConfig, MigrationHubClientResolvedConfig } from "../MigrationHubClient"; +import { type MigrationHubClientResolvedConfig, MigrationHubClientConfig } from "../MigrationHubClient"; /** * @internal diff --git a/clients/client-migration-hub/src/commands/AssociateCreatedArtifactCommand.ts b/clients/client-migration-hub/src/commands/AssociateCreatedArtifactCommand.ts index 8e7d554ac24d6..735882c8037c9 100644 --- a/clients/client-migration-hub/src/commands/AssociateCreatedArtifactCommand.ts +++ b/clients/client-migration-hub/src/commands/AssociateCreatedArtifactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { AssociateCreatedArtifactRequest, AssociateCreatedArtifactResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { AssociateCreatedArtifactRequest, AssociateCreatedArtifactResult } from "../models/models_0"; import { AssociateCreatedArtifact } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/AssociateDiscoveredResourceCommand.ts b/clients/client-migration-hub/src/commands/AssociateDiscoveredResourceCommand.ts index c69cffeafb931..4108f22498aca 100644 --- a/clients/client-migration-hub/src/commands/AssociateDiscoveredResourceCommand.ts +++ b/clients/client-migration-hub/src/commands/AssociateDiscoveredResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { AssociateDiscoveredResourceRequest, AssociateDiscoveredResourceResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { AssociateDiscoveredResourceRequest, AssociateDiscoveredResourceResult } from "../models/models_0"; import { AssociateDiscoveredResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/AssociateSourceResourceCommand.ts b/clients/client-migration-hub/src/commands/AssociateSourceResourceCommand.ts index 40f7f2086887c..64cce4653f8eb 100644 --- a/clients/client-migration-hub/src/commands/AssociateSourceResourceCommand.ts +++ b/clients/client-migration-hub/src/commands/AssociateSourceResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { AssociateSourceResourceRequest, AssociateSourceResourceResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { AssociateSourceResourceRequest, AssociateSourceResourceResult } from "../models/models_0"; import { AssociateSourceResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/CreateProgressUpdateStreamCommand.ts b/clients/client-migration-hub/src/commands/CreateProgressUpdateStreamCommand.ts index 62e5b49849542..a18a0f0398538 100644 --- a/clients/client-migration-hub/src/commands/CreateProgressUpdateStreamCommand.ts +++ b/clients/client-migration-hub/src/commands/CreateProgressUpdateStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { CreateProgressUpdateStreamRequest, CreateProgressUpdateStreamResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { CreateProgressUpdateStreamRequest, CreateProgressUpdateStreamResult } from "../models/models_0"; import { CreateProgressUpdateStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/DeleteProgressUpdateStreamCommand.ts b/clients/client-migration-hub/src/commands/DeleteProgressUpdateStreamCommand.ts index c956950b98216..b74464748eae1 100644 --- a/clients/client-migration-hub/src/commands/DeleteProgressUpdateStreamCommand.ts +++ b/clients/client-migration-hub/src/commands/DeleteProgressUpdateStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { DeleteProgressUpdateStreamRequest, DeleteProgressUpdateStreamResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { DeleteProgressUpdateStreamRequest, DeleteProgressUpdateStreamResult } from "../models/models_0"; import { DeleteProgressUpdateStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/DescribeApplicationStateCommand.ts b/clients/client-migration-hub/src/commands/DescribeApplicationStateCommand.ts index 761cd56188289..fc1254d25886e 100644 --- a/clients/client-migration-hub/src/commands/DescribeApplicationStateCommand.ts +++ b/clients/client-migration-hub/src/commands/DescribeApplicationStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { DescribeApplicationStateRequest, DescribeApplicationStateResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { DescribeApplicationStateRequest, DescribeApplicationStateResult } from "../models/models_0"; import { DescribeApplicationState } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/DescribeMigrationTaskCommand.ts b/clients/client-migration-hub/src/commands/DescribeMigrationTaskCommand.ts index 7ef4bacea53fc..20d077b3f5fae 100644 --- a/clients/client-migration-hub/src/commands/DescribeMigrationTaskCommand.ts +++ b/clients/client-migration-hub/src/commands/DescribeMigrationTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { DescribeMigrationTaskRequest, DescribeMigrationTaskResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { DescribeMigrationTaskRequest, DescribeMigrationTaskResult } from "../models/models_0"; import { DescribeMigrationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/DisassociateCreatedArtifactCommand.ts b/clients/client-migration-hub/src/commands/DisassociateCreatedArtifactCommand.ts index 5c2c93f669b3c..c1ddffa30dbb6 100644 --- a/clients/client-migration-hub/src/commands/DisassociateCreatedArtifactCommand.ts +++ b/clients/client-migration-hub/src/commands/DisassociateCreatedArtifactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { DisassociateCreatedArtifactRequest, DisassociateCreatedArtifactResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { DisassociateCreatedArtifactRequest, DisassociateCreatedArtifactResult } from "../models/models_0"; import { DisassociateCreatedArtifact } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/DisassociateDiscoveredResourceCommand.ts b/clients/client-migration-hub/src/commands/DisassociateDiscoveredResourceCommand.ts index 63a3eed9543da..ba96bff8ce803 100644 --- a/clients/client-migration-hub/src/commands/DisassociateDiscoveredResourceCommand.ts +++ b/clients/client-migration-hub/src/commands/DisassociateDiscoveredResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { DisassociateDiscoveredResourceRequest, DisassociateDiscoveredResourceResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { DisassociateDiscoveredResourceRequest, DisassociateDiscoveredResourceResult } from "../models/models_0"; import { DisassociateDiscoveredResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/DisassociateSourceResourceCommand.ts b/clients/client-migration-hub/src/commands/DisassociateSourceResourceCommand.ts index ad570c541b388..071a0f2a48a8e 100644 --- a/clients/client-migration-hub/src/commands/DisassociateSourceResourceCommand.ts +++ b/clients/client-migration-hub/src/commands/DisassociateSourceResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { DisassociateSourceResourceRequest, DisassociateSourceResourceResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { DisassociateSourceResourceRequest, DisassociateSourceResourceResult } from "../models/models_0"; import { DisassociateSourceResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/ImportMigrationTaskCommand.ts b/clients/client-migration-hub/src/commands/ImportMigrationTaskCommand.ts index 32b8c3241a279..e81d51d221e72 100644 --- a/clients/client-migration-hub/src/commands/ImportMigrationTaskCommand.ts +++ b/clients/client-migration-hub/src/commands/ImportMigrationTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { ImportMigrationTaskRequest, ImportMigrationTaskResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { ImportMigrationTaskRequest, ImportMigrationTaskResult } from "../models/models_0"; import { ImportMigrationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/ListApplicationStatesCommand.ts b/clients/client-migration-hub/src/commands/ListApplicationStatesCommand.ts index 3ff85e7faf3a4..a45109955dd07 100644 --- a/clients/client-migration-hub/src/commands/ListApplicationStatesCommand.ts +++ b/clients/client-migration-hub/src/commands/ListApplicationStatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { ListApplicationStatesRequest, ListApplicationStatesResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { ListApplicationStatesRequest, ListApplicationStatesResult } from "../models/models_0"; import { ListApplicationStates } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/ListCreatedArtifactsCommand.ts b/clients/client-migration-hub/src/commands/ListCreatedArtifactsCommand.ts index 2a83f62e0264b..0bd5266209b8a 100644 --- a/clients/client-migration-hub/src/commands/ListCreatedArtifactsCommand.ts +++ b/clients/client-migration-hub/src/commands/ListCreatedArtifactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { ListCreatedArtifactsRequest, ListCreatedArtifactsResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { ListCreatedArtifactsRequest, ListCreatedArtifactsResult } from "../models/models_0"; import { ListCreatedArtifacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/ListDiscoveredResourcesCommand.ts b/clients/client-migration-hub/src/commands/ListDiscoveredResourcesCommand.ts index 4599014be7cc0..630ae9be991e6 100644 --- a/clients/client-migration-hub/src/commands/ListDiscoveredResourcesCommand.ts +++ b/clients/client-migration-hub/src/commands/ListDiscoveredResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { ListDiscoveredResourcesRequest, ListDiscoveredResourcesResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { ListDiscoveredResourcesRequest, ListDiscoveredResourcesResult } from "../models/models_0"; import { ListDiscoveredResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/ListMigrationTaskUpdatesCommand.ts b/clients/client-migration-hub/src/commands/ListMigrationTaskUpdatesCommand.ts index 32a74466cd283..98e76b8697a79 100644 --- a/clients/client-migration-hub/src/commands/ListMigrationTaskUpdatesCommand.ts +++ b/clients/client-migration-hub/src/commands/ListMigrationTaskUpdatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { ListMigrationTaskUpdatesRequest, ListMigrationTaskUpdatesResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { ListMigrationTaskUpdatesRequest, ListMigrationTaskUpdatesResult } from "../models/models_0"; import { ListMigrationTaskUpdates } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/ListMigrationTasksCommand.ts b/clients/client-migration-hub/src/commands/ListMigrationTasksCommand.ts index 493b103c08d60..15fc6589a77c4 100644 --- a/clients/client-migration-hub/src/commands/ListMigrationTasksCommand.ts +++ b/clients/client-migration-hub/src/commands/ListMigrationTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { ListMigrationTasksRequest, ListMigrationTasksResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { ListMigrationTasksRequest, ListMigrationTasksResult } from "../models/models_0"; import { ListMigrationTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/ListProgressUpdateStreamsCommand.ts b/clients/client-migration-hub/src/commands/ListProgressUpdateStreamsCommand.ts index 2c4275ddd5caa..4a6bf51cb2e0a 100644 --- a/clients/client-migration-hub/src/commands/ListProgressUpdateStreamsCommand.ts +++ b/clients/client-migration-hub/src/commands/ListProgressUpdateStreamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { ListProgressUpdateStreamsRequest, ListProgressUpdateStreamsResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { ListProgressUpdateStreamsRequest, ListProgressUpdateStreamsResult } from "../models/models_0"; import { ListProgressUpdateStreams } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/ListSourceResourcesCommand.ts b/clients/client-migration-hub/src/commands/ListSourceResourcesCommand.ts index 20436007c131e..9bbca33481395 100644 --- a/clients/client-migration-hub/src/commands/ListSourceResourcesCommand.ts +++ b/clients/client-migration-hub/src/commands/ListSourceResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { ListSourceResourcesRequest, ListSourceResourcesResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { ListSourceResourcesRequest, ListSourceResourcesResult } from "../models/models_0"; import { ListSourceResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/NotifyApplicationStateCommand.ts b/clients/client-migration-hub/src/commands/NotifyApplicationStateCommand.ts index 039e67f807e78..fa098e35928a0 100644 --- a/clients/client-migration-hub/src/commands/NotifyApplicationStateCommand.ts +++ b/clients/client-migration-hub/src/commands/NotifyApplicationStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { NotifyApplicationStateRequest, NotifyApplicationStateResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { NotifyApplicationStateRequest, NotifyApplicationStateResult } from "../models/models_0"; import { NotifyApplicationState } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/NotifyMigrationTaskStateCommand.ts b/clients/client-migration-hub/src/commands/NotifyMigrationTaskStateCommand.ts index 99bbd28b75d41..aba1fd466298c 100644 --- a/clients/client-migration-hub/src/commands/NotifyMigrationTaskStateCommand.ts +++ b/clients/client-migration-hub/src/commands/NotifyMigrationTaskStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { NotifyMigrationTaskStateRequest, NotifyMigrationTaskStateResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { NotifyMigrationTaskStateRequest, NotifyMigrationTaskStateResult } from "../models/models_0"; import { NotifyMigrationTaskState } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/commands/PutResourceAttributesCommand.ts b/clients/client-migration-hub/src/commands/PutResourceAttributesCommand.ts index 5a7b20f08823f..1a5394239817f 100644 --- a/clients/client-migration-hub/src/commands/PutResourceAttributesCommand.ts +++ b/clients/client-migration-hub/src/commands/PutResourceAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; -import { PutResourceAttributesRequest, PutResourceAttributesResult } from "../models/models_0"; +import type { MigrationHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MigrationHubClient"; +import type { PutResourceAttributesRequest, PutResourceAttributesResult } from "../models/models_0"; import { PutResourceAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-migration-hub/src/endpoint/EndpointParameters.ts b/clients/client-migration-hub/src/endpoint/EndpointParameters.ts index 5f7278da819d4..569588d3ffa52 100644 --- a/clients/client-migration-hub/src/endpoint/EndpointParameters.ts +++ b/clients/client-migration-hub/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-migration-hub/src/endpoint/endpointResolver.ts b/clients/client-migration-hub/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-migration-hub/src/endpoint/endpointResolver.ts +++ b/clients/client-migration-hub/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-migration-hub/src/extensionConfiguration.ts b/clients/client-migration-hub/src/extensionConfiguration.ts index 68a5bf9528dab..55f3610a1fcd8 100644 --- a/clients/client-migration-hub/src/extensionConfiguration.ts +++ b/clients/client-migration-hub/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-migration-hub/src/models/MigrationHubServiceException.ts b/clients/client-migration-hub/src/models/MigrationHubServiceException.ts index fba1a18a39595..ca102969a43f7 100644 --- a/clients/client-migration-hub/src/models/MigrationHubServiceException.ts +++ b/clients/client-migration-hub/src/models/MigrationHubServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-migration-hub/src/models/errors.ts b/clients/client-migration-hub/src/models/errors.ts index da19c11567f82..aa4ab5038df47 100644 --- a/clients/client-migration-hub/src/models/errors.ts +++ b/clients/client-migration-hub/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MigrationHubServiceException as __BaseException } from "./MigrationHubServiceException"; diff --git a/clients/client-migration-hub/src/pagination/Interfaces.ts b/clients/client-migration-hub/src/pagination/Interfaces.ts index d02ac86b373ff..d784b8367faed 100644 --- a/clients/client-migration-hub/src/pagination/Interfaces.ts +++ b/clients/client-migration-hub/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MigrationHubClient } from "../MigrationHubClient"; diff --git a/clients/client-migration-hub/src/pagination/ListApplicationStatesPaginator.ts b/clients/client-migration-hub/src/pagination/ListApplicationStatesPaginator.ts index cfbfd1b1ae702..e781c3ab24d9f 100644 --- a/clients/client-migration-hub/src/pagination/ListApplicationStatesPaginator.ts +++ b/clients/client-migration-hub/src/pagination/ListApplicationStatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationStatesCommand, diff --git a/clients/client-migration-hub/src/pagination/ListCreatedArtifactsPaginator.ts b/clients/client-migration-hub/src/pagination/ListCreatedArtifactsPaginator.ts index 6438e61c62478..275bea63b0fbe 100644 --- a/clients/client-migration-hub/src/pagination/ListCreatedArtifactsPaginator.ts +++ b/clients/client-migration-hub/src/pagination/ListCreatedArtifactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCreatedArtifactsCommand, diff --git a/clients/client-migration-hub/src/pagination/ListDiscoveredResourcesPaginator.ts b/clients/client-migration-hub/src/pagination/ListDiscoveredResourcesPaginator.ts index 29bf4d8609bbf..3a02f733dcb7a 100644 --- a/clients/client-migration-hub/src/pagination/ListDiscoveredResourcesPaginator.ts +++ b/clients/client-migration-hub/src/pagination/ListDiscoveredResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDiscoveredResourcesCommand, diff --git a/clients/client-migration-hub/src/pagination/ListMigrationTaskUpdatesPaginator.ts b/clients/client-migration-hub/src/pagination/ListMigrationTaskUpdatesPaginator.ts index f95e45b996505..294d8c7d3670a 100644 --- a/clients/client-migration-hub/src/pagination/ListMigrationTaskUpdatesPaginator.ts +++ b/clients/client-migration-hub/src/pagination/ListMigrationTaskUpdatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMigrationTaskUpdatesCommand, diff --git a/clients/client-migration-hub/src/pagination/ListMigrationTasksPaginator.ts b/clients/client-migration-hub/src/pagination/ListMigrationTasksPaginator.ts index b199851d70e95..df0694ba8460b 100644 --- a/clients/client-migration-hub/src/pagination/ListMigrationTasksPaginator.ts +++ b/clients/client-migration-hub/src/pagination/ListMigrationTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMigrationTasksCommand, diff --git a/clients/client-migration-hub/src/pagination/ListProgressUpdateStreamsPaginator.ts b/clients/client-migration-hub/src/pagination/ListProgressUpdateStreamsPaginator.ts index a596796fb059b..1f4fee23b74c6 100644 --- a/clients/client-migration-hub/src/pagination/ListProgressUpdateStreamsPaginator.ts +++ b/clients/client-migration-hub/src/pagination/ListProgressUpdateStreamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProgressUpdateStreamsCommand, diff --git a/clients/client-migration-hub/src/pagination/ListSourceResourcesPaginator.ts b/clients/client-migration-hub/src/pagination/ListSourceResourcesPaginator.ts index a903035721191..ca142c62f0862 100644 --- a/clients/client-migration-hub/src/pagination/ListSourceResourcesPaginator.ts +++ b/clients/client-migration-hub/src/pagination/ListSourceResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSourceResourcesCommand, diff --git a/clients/client-migration-hub/src/runtimeConfig.browser.ts b/clients/client-migration-hub/src/runtimeConfig.browser.ts index 026b5345dbe08..5f99b1d01c2bc 100644 --- a/clients/client-migration-hub/src/runtimeConfig.browser.ts +++ b/clients/client-migration-hub/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubClientConfig } from "./MigrationHubClient"; + +import type { MigrationHubClientConfig } from "./MigrationHubClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-migration-hub/src/runtimeConfig.native.ts b/clients/client-migration-hub/src/runtimeConfig.native.ts index a783f7ba90a2b..8591620685d90 100644 --- a/clients/client-migration-hub/src/runtimeConfig.native.ts +++ b/clients/client-migration-hub/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MigrationHubClientConfig } from "./MigrationHubClient"; +import type { MigrationHubClientConfig } from "./MigrationHubClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-migration-hub/src/runtimeConfig.shared.ts b/clients/client-migration-hub/src/runtimeConfig.shared.ts index 1ff9846816cd6..3e8ebabb128ac 100644 --- a/clients/client-migration-hub/src/runtimeConfig.shared.ts +++ b/clients/client-migration-hub/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMigrationHubHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MigrationHubClientConfig } from "./MigrationHubClient"; +import type { MigrationHubClientConfig } from "./MigrationHubClient"; /** * @internal diff --git a/clients/client-migration-hub/src/runtimeConfig.ts b/clients/client-migration-hub/src/runtimeConfig.ts index ed7dbd5950fc1..3551aecc1dcf3 100644 --- a/clients/client-migration-hub/src/runtimeConfig.ts +++ b/clients/client-migration-hub/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubClientConfig } from "./MigrationHubClient"; + +import type { MigrationHubClientConfig } from "./MigrationHubClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-migration-hub/src/runtimeExtensions.ts b/clients/client-migration-hub/src/runtimeExtensions.ts index b381f3a9573ea..e0b239fbe17bf 100644 --- a/clients/client-migration-hub/src/runtimeExtensions.ts +++ b/clients/client-migration-hub/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MigrationHubExtensionConfiguration } from "./extensionConfiguration"; +import type { MigrationHubExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-migration-hub/src/schemas/schemas_0.ts b/clients/client-migration-hub/src/schemas/schemas_0.ts index 95d69e9611b04..4bf9d308e6dbd 100644 --- a/clients/client-migration-hub/src/schemas/schemas_0.ts +++ b/clients/client-migration-hub/src/schemas/schemas_0.ts @@ -128,7 +128,7 @@ const n0 = "com.amazonaws.migrationhub"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-migrationhub-config/package.json b/clients/client-migrationhub-config/package.json index 746e282353cb7..d8b763ef25f69 100644 --- a/clients/client-migrationhub-config/package.json +++ b/clients/client-migrationhub-config/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-migrationhub-config/src/MigrationHubConfig.ts b/clients/client-migrationhub-config/src/MigrationHubConfig.ts index 77a1d623b2e71..76cc4dc9f048c 100644 --- a/clients/client-migrationhub-config/src/MigrationHubConfig.ts +++ b/clients/client-migrationhub-config/src/MigrationHubConfig.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateHomeRegionControlCommand, @@ -22,7 +22,7 @@ import { GetHomeRegionCommandInput, GetHomeRegionCommandOutput, } from "./commands/GetHomeRegionCommand"; -import { MigrationHubConfigClient, MigrationHubConfigClientConfig } from "./MigrationHubConfigClient"; +import { MigrationHubConfigClient } from "./MigrationHubConfigClient"; const commands = { CreateHomeRegionControlCommand, diff --git a/clients/client-migrationhub-config/src/MigrationHubConfigClient.ts b/clients/client-migrationhub-config/src/MigrationHubConfigClient.ts index 3bd2b4b00f70b..7766aabf6ed2b 100644 --- a/clients/client-migrationhub-config/src/MigrationHubConfigClient.ts +++ b/clients/client-migrationhub-config/src/MigrationHubConfigClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMigrationHubConfigHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -77,7 +86,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-migrationhub-config/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-migrationhub-config/src/auth/httpAuthExtensionConfiguration.ts index 0121137bfe143..6b57b5c1c0181 100644 --- a/clients/client-migrationhub-config/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-migrationhub-config/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MigrationHubConfigHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MigrationHubConfigHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-migrationhub-config/src/auth/httpAuthSchemeProvider.ts b/clients/client-migrationhub-config/src/auth/httpAuthSchemeProvider.ts index 360c299bad07c..2a656d60762d5 100644 --- a/clients/client-migrationhub-config/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-migrationhub-config/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MigrationHubConfigClientConfig, MigrationHubConfigClientResolvedConfig } from "../MigrationHubConfigClient"; +import { + type MigrationHubConfigClientResolvedConfig, + MigrationHubConfigClientConfig, +} from "../MigrationHubConfigClient"; /** * @internal diff --git a/clients/client-migrationhub-config/src/commands/CreateHomeRegionControlCommand.ts b/clients/client-migrationhub-config/src/commands/CreateHomeRegionControlCommand.ts index 8dc49f6a211dd..13a5fbfe18c61 100644 --- a/clients/client-migrationhub-config/src/commands/CreateHomeRegionControlCommand.ts +++ b/clients/client-migrationhub-config/src/commands/CreateHomeRegionControlCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubConfigClient"; -import { CreateHomeRegionControlRequest, CreateHomeRegionControlResult } from "../models/models_0"; +import type { CreateHomeRegionControlRequest, CreateHomeRegionControlResult } from "../models/models_0"; import { CreateHomeRegionControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhub-config/src/commands/DeleteHomeRegionControlCommand.ts b/clients/client-migrationhub-config/src/commands/DeleteHomeRegionControlCommand.ts index 73eba1919d54a..92aa94702cff9 100644 --- a/clients/client-migrationhub-config/src/commands/DeleteHomeRegionControlCommand.ts +++ b/clients/client-migrationhub-config/src/commands/DeleteHomeRegionControlCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubConfigClient"; -import { DeleteHomeRegionControlRequest, DeleteHomeRegionControlResult } from "../models/models_0"; +import type { DeleteHomeRegionControlRequest, DeleteHomeRegionControlResult } from "../models/models_0"; import { DeleteHomeRegionControl } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhub-config/src/commands/DescribeHomeRegionControlsCommand.ts b/clients/client-migrationhub-config/src/commands/DescribeHomeRegionControlsCommand.ts index 44b0b4a184a8f..3905bf6c34453 100644 --- a/clients/client-migrationhub-config/src/commands/DescribeHomeRegionControlsCommand.ts +++ b/clients/client-migrationhub-config/src/commands/DescribeHomeRegionControlsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubConfigClient"; -import { DescribeHomeRegionControlsRequest, DescribeHomeRegionControlsResult } from "../models/models_0"; +import type { DescribeHomeRegionControlsRequest, DescribeHomeRegionControlsResult } from "../models/models_0"; import { DescribeHomeRegionControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhub-config/src/commands/GetHomeRegionCommand.ts b/clients/client-migrationhub-config/src/commands/GetHomeRegionCommand.ts index 7bcab83015843..4f7233664a7c6 100644 --- a/clients/client-migrationhub-config/src/commands/GetHomeRegionCommand.ts +++ b/clients/client-migrationhub-config/src/commands/GetHomeRegionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubConfigClient"; -import { GetHomeRegionRequest, GetHomeRegionResult } from "../models/models_0"; +import type { GetHomeRegionRequest, GetHomeRegionResult } from "../models/models_0"; import { GetHomeRegion } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhub-config/src/endpoint/EndpointParameters.ts b/clients/client-migrationhub-config/src/endpoint/EndpointParameters.ts index 5f7278da819d4..569588d3ffa52 100644 --- a/clients/client-migrationhub-config/src/endpoint/EndpointParameters.ts +++ b/clients/client-migrationhub-config/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-migrationhub-config/src/endpoint/endpointResolver.ts b/clients/client-migrationhub-config/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-migrationhub-config/src/endpoint/endpointResolver.ts +++ b/clients/client-migrationhub-config/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-migrationhub-config/src/extensionConfiguration.ts b/clients/client-migrationhub-config/src/extensionConfiguration.ts index b68cf324626b0..561d1e11f7a72 100644 --- a/clients/client-migrationhub-config/src/extensionConfiguration.ts +++ b/clients/client-migrationhub-config/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-migrationhub-config/src/models/MigrationHubConfigServiceException.ts b/clients/client-migrationhub-config/src/models/MigrationHubConfigServiceException.ts index e947a326855e0..5eedfd6cf2b3b 100644 --- a/clients/client-migrationhub-config/src/models/MigrationHubConfigServiceException.ts +++ b/clients/client-migrationhub-config/src/models/MigrationHubConfigServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-migrationhub-config/src/models/errors.ts b/clients/client-migrationhub-config/src/models/errors.ts index 396433a8f24e1..bfb6b27454b1c 100644 --- a/clients/client-migrationhub-config/src/models/errors.ts +++ b/clients/client-migrationhub-config/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MigrationHubConfigServiceException as __BaseException } from "./MigrationHubConfigServiceException"; diff --git a/clients/client-migrationhub-config/src/pagination/DescribeHomeRegionControlsPaginator.ts b/clients/client-migrationhub-config/src/pagination/DescribeHomeRegionControlsPaginator.ts index 841718e8768d3..3f22c9faa8b52 100644 --- a/clients/client-migrationhub-config/src/pagination/DescribeHomeRegionControlsPaginator.ts +++ b/clients/client-migrationhub-config/src/pagination/DescribeHomeRegionControlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeHomeRegionControlsCommand, diff --git a/clients/client-migrationhub-config/src/pagination/Interfaces.ts b/clients/client-migrationhub-config/src/pagination/Interfaces.ts index 1023fe96cdc63..ed6617df58844 100644 --- a/clients/client-migrationhub-config/src/pagination/Interfaces.ts +++ b/clients/client-migrationhub-config/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MigrationHubConfigClient } from "../MigrationHubConfigClient"; diff --git a/clients/client-migrationhub-config/src/runtimeConfig.browser.ts b/clients/client-migrationhub-config/src/runtimeConfig.browser.ts index cc382ec300341..39686fea05f56 100644 --- a/clients/client-migrationhub-config/src/runtimeConfig.browser.ts +++ b/clients/client-migrationhub-config/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubConfigClientConfig } from "./MigrationHubConfigClient"; + +import type { MigrationHubConfigClientConfig } from "./MigrationHubConfigClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-migrationhub-config/src/runtimeConfig.native.ts b/clients/client-migrationhub-config/src/runtimeConfig.native.ts index 5b97272cbd2ab..22e585122b2ad 100644 --- a/clients/client-migrationhub-config/src/runtimeConfig.native.ts +++ b/clients/client-migrationhub-config/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MigrationHubConfigClientConfig } from "./MigrationHubConfigClient"; +import type { MigrationHubConfigClientConfig } from "./MigrationHubConfigClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-migrationhub-config/src/runtimeConfig.shared.ts b/clients/client-migrationhub-config/src/runtimeConfig.shared.ts index 9d5a27d3e53e9..54a4334af5157 100644 --- a/clients/client-migrationhub-config/src/runtimeConfig.shared.ts +++ b/clients/client-migrationhub-config/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMigrationHubConfigHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MigrationHubConfigClientConfig } from "./MigrationHubConfigClient"; +import type { MigrationHubConfigClientConfig } from "./MigrationHubConfigClient"; /** * @internal diff --git a/clients/client-migrationhub-config/src/runtimeConfig.ts b/clients/client-migrationhub-config/src/runtimeConfig.ts index 85d0aaae59484..bb85185e69fdb 100644 --- a/clients/client-migrationhub-config/src/runtimeConfig.ts +++ b/clients/client-migrationhub-config/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubConfigClientConfig } from "./MigrationHubConfigClient"; + +import type { MigrationHubConfigClientConfig } from "./MigrationHubConfigClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-migrationhub-config/src/runtimeExtensions.ts b/clients/client-migrationhub-config/src/runtimeExtensions.ts index 7404bdb13e0a9..5610eb77753ea 100644 --- a/clients/client-migrationhub-config/src/runtimeExtensions.ts +++ b/clients/client-migrationhub-config/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MigrationHubConfigExtensionConfiguration } from "./extensionConfiguration"; +import type { MigrationHubConfigExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-migrationhub-config/src/schemas/schemas_0.ts b/clients/client-migrationhub-config/src/schemas/schemas_0.ts index a803d504345d7..c0e4ec5e93d14 100644 --- a/clients/client-migrationhub-config/src/schemas/schemas_0.ts +++ b/clients/client-migrationhub-config/src/schemas/schemas_0.ts @@ -40,7 +40,7 @@ const n0 = "com.amazonaws.migrationhubconfig"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-migrationhuborchestrator/package.json b/clients/client-migrationhuborchestrator/package.json index 93344c5a8d4dc..cb4d5104d689f 100644 --- a/clients/client-migrationhuborchestrator/package.json +++ b/clients/client-migrationhuborchestrator/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-migrationhuborchestrator/src/MigrationHubOrchestrator.ts b/clients/client-migrationhuborchestrator/src/MigrationHubOrchestrator.ts index 6d0d87122ff81..42312b5f22d12 100644 --- a/clients/client-migrationhuborchestrator/src/MigrationHubOrchestrator.ts +++ b/clients/client-migrationhuborchestrator/src/MigrationHubOrchestrator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateTemplateCommand, @@ -141,7 +141,7 @@ import { UpdateWorkflowStepGroupCommandInput, UpdateWorkflowStepGroupCommandOutput, } from "./commands/UpdateWorkflowStepGroupCommand"; -import { MigrationHubOrchestratorClient, MigrationHubOrchestratorClientConfig } from "./MigrationHubOrchestratorClient"; +import { MigrationHubOrchestratorClient } from "./MigrationHubOrchestratorClient"; const commands = { CreateTemplateCommand, diff --git a/clients/client-migrationhuborchestrator/src/MigrationHubOrchestratorClient.ts b/clients/client-migrationhuborchestrator/src/MigrationHubOrchestratorClient.ts index 854f1b5e3ab5d..8d5d96ab4b0f6 100644 --- a/clients/client-migrationhuborchestrator/src/MigrationHubOrchestratorClient.ts +++ b/clients/client-migrationhuborchestrator/src/MigrationHubOrchestratorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMigrationHubOrchestratorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateTemplateCommandInput, CreateTemplateCommandOutput } from "./commands/CreateTemplateCommand"; @@ -119,7 +128,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-migrationhuborchestrator/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-migrationhuborchestrator/src/auth/httpAuthExtensionConfiguration.ts index 9dc08636f2424..f4c764642cea2 100644 --- a/clients/client-migrationhuborchestrator/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-migrationhuborchestrator/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MigrationHubOrchestratorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MigrationHubOrchestratorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-migrationhuborchestrator/src/auth/httpAuthSchemeProvider.ts b/clients/client-migrationhuborchestrator/src/auth/httpAuthSchemeProvider.ts index 02ce06c6ab04d..b96848491afb9 100644 --- a/clients/client-migrationhuborchestrator/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-migrationhuborchestrator/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type MigrationHubOrchestratorClientResolvedConfig, MigrationHubOrchestratorClientConfig, - MigrationHubOrchestratorClientResolvedConfig, } from "../MigrationHubOrchestratorClient"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/CreateTemplateCommand.ts b/clients/client-migrationhuborchestrator/src/commands/CreateTemplateCommand.ts index 3d3523e160b1c..68f2abdccff65 100644 --- a/clients/client-migrationhuborchestrator/src/commands/CreateTemplateCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/CreateTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_0"; +import type { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_0"; import { CreateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowCommand.ts index d25e6866baa6a..23c35430727a3 100644 --- a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { CreateMigrationWorkflowRequest, CreateMigrationWorkflowResponse } from "../models/models_0"; +import type { CreateMigrationWorkflowRequest, CreateMigrationWorkflowResponse } from "../models/models_0"; import { CreateWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepCommand.ts index c8af7fdba6d79..800d7f9e3d461 100644 --- a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { CreateWorkflowStepRequest, CreateWorkflowStepResponse } from "../models/models_0"; +import type { CreateWorkflowStepRequest, CreateWorkflowStepResponse } from "../models/models_0"; import { CreateWorkflowStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepGroupCommand.ts index 681bc4223be32..17a9ccd342fc1 100644 --- a/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/CreateWorkflowStepGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { CreateWorkflowStepGroupRequest, CreateWorkflowStepGroupResponse } from "../models/models_0"; +import type { CreateWorkflowStepGroupRequest, CreateWorkflowStepGroupResponse } from "../models/models_0"; import { CreateWorkflowStepGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/DeleteTemplateCommand.ts b/clients/client-migrationhuborchestrator/src/commands/DeleteTemplateCommand.ts index 053f243004fb8..4aa5cfd98e409 100644 --- a/clients/client-migrationhuborchestrator/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/DeleteTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { DeleteTemplateRequest, DeleteTemplateResponse } from "../models/models_0"; +import type { DeleteTemplateRequest, DeleteTemplateResponse } from "../models/models_0"; import { DeleteTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowCommand.ts index 543202e9c9b4d..14e4ea76f88ee 100644 --- a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { DeleteMigrationWorkflowRequest, DeleteMigrationWorkflowResponse } from "../models/models_0"; +import type { DeleteMigrationWorkflowRequest, DeleteMigrationWorkflowResponse } from "../models/models_0"; import { DeleteWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepCommand.ts index 4473ec626ec63..e765aa0fea109 100644 --- a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { DeleteWorkflowStepRequest, DeleteWorkflowStepResponse } from "../models/models_0"; +import type { DeleteWorkflowStepRequest, DeleteWorkflowStepResponse } from "../models/models_0"; import { DeleteWorkflowStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepGroupCommand.ts index 6c6cd8e113332..37ced71aa09bc 100644 --- a/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/DeleteWorkflowStepGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { DeleteWorkflowStepGroupRequest, DeleteWorkflowStepGroupResponse } from "../models/models_0"; +import type { DeleteWorkflowStepGroupRequest, DeleteWorkflowStepGroupResponse } from "../models/models_0"; import { DeleteWorkflowStepGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/GetTemplateCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetTemplateCommand.ts index e325466d8ca28..56737427e10e0 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetTemplateCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { GetMigrationWorkflowTemplateRequest, GetMigrationWorkflowTemplateResponse } from "../models/models_0"; +import type { GetMigrationWorkflowTemplateRequest, GetMigrationWorkflowTemplateResponse } from "../models/models_0"; import { GetTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepCommand.ts index 5b5811d1a9e03..5f3ee78ffdac6 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { GetTemplateStepRequest, GetTemplateStepResponse } from "../models/models_0"; +import type { GetTemplateStepRequest, GetTemplateStepResponse } from "../models/models_0"; import { GetTemplateStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepGroupCommand.ts index a959210f59b9b..87ba7cc9a1db9 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetTemplateStepGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { GetTemplateStepGroupRequest, GetTemplateStepGroupResponse } from "../models/models_0"; +import type { GetTemplateStepGroupRequest, GetTemplateStepGroupResponse } from "../models/models_0"; import { GetTemplateStepGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowCommand.ts index 227da73a25169..c70138f767ad9 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { GetMigrationWorkflowRequest, GetMigrationWorkflowResponse } from "../models/models_0"; +import type { GetMigrationWorkflowRequest, GetMigrationWorkflowResponse } from "../models/models_0"; import { GetWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepCommand.ts index 116b9fe46cced..bf1e284cac7e8 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { GetWorkflowStepRequest, GetWorkflowStepResponse } from "../models/models_0"; +import type { GetWorkflowStepRequest, GetWorkflowStepResponse } from "../models/models_0"; import { GetWorkflowStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepGroupCommand.ts index 9bb56fadede6d..a3a720afb33f4 100644 --- a/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/GetWorkflowStepGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { GetWorkflowStepGroupRequest, GetWorkflowStepGroupResponse } from "../models/models_0"; +import type { GetWorkflowStepGroupRequest, GetWorkflowStepGroupResponse } from "../models/models_0"; import { GetWorkflowStepGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/ListPluginsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListPluginsCommand.ts index 786d0e83ca04d..2dce1b4ddc18b 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListPluginsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListPluginsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { ListPluginsRequest, ListPluginsResponse } from "../models/models_0"; +import type { ListPluginsRequest, ListPluginsResponse } from "../models/models_0"; import { ListPlugins } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/ListTagsForResourceCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListTagsForResourceCommand.ts index 8425f88bf03c4..e3d25fa57d3af 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListTagsForResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepGroupsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepGroupsCommand.ts index 0e26f34c33667..f92a927e952fe 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepGroupsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepGroupsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { ListTemplateStepGroupsRequest, ListTemplateStepGroupsResponse } from "../models/models_0"; +import type { ListTemplateStepGroupsRequest, ListTemplateStepGroupsResponse } from "../models/models_0"; import { ListTemplateStepGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepsCommand.ts index 4cf3905e76fdf..0bd650d88a3ab 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListTemplateStepsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { ListTemplateStepsRequest, ListTemplateStepsResponse } from "../models/models_0"; +import type { ListTemplateStepsRequest, ListTemplateStepsResponse } from "../models/models_0"; import { ListTemplateSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/ListTemplatesCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListTemplatesCommand.ts index 76e6efbb1351d..9e3e22995ae37 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListTemplatesCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListTemplatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { ListMigrationWorkflowTemplatesRequest, ListMigrationWorkflowTemplatesResponse } from "../models/models_0"; +import type { ListMigrationWorkflowTemplatesRequest, ListMigrationWorkflowTemplatesResponse } from "../models/models_0"; import { ListTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepGroupsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepGroupsCommand.ts index 34acab65726ad..14999bc8a93cf 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepGroupsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepGroupsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { ListWorkflowStepGroupsRequest, ListWorkflowStepGroupsResponse } from "../models/models_0"; +import type { ListWorkflowStepGroupsRequest, ListWorkflowStepGroupsResponse } from "../models/models_0"; import { ListWorkflowStepGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepsCommand.ts index 96fb82ac9c792..9b6303c54171a 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowStepsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { ListWorkflowStepsRequest, ListWorkflowStepsResponse } from "../models/models_0"; +import type { ListWorkflowStepsRequest, ListWorkflowStepsResponse } from "../models/models_0"; import { ListWorkflowSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowsCommand.ts b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowsCommand.ts index d0b5a80771cdd..f812e9b6756ac 100644 --- a/clients/client-migrationhuborchestrator/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/ListWorkflowsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { ListMigrationWorkflowsRequest, ListMigrationWorkflowsResponse } from "../models/models_0"; +import type { ListMigrationWorkflowsRequest, ListMigrationWorkflowsResponse } from "../models/models_0"; import { ListWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/RetryWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/RetryWorkflowStepCommand.ts index 747b0a56ef90b..6ecea4ee14ce6 100644 --- a/clients/client-migrationhuborchestrator/src/commands/RetryWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/RetryWorkflowStepCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { RetryWorkflowStepRequest, RetryWorkflowStepResponse } from "../models/models_0"; +import type { RetryWorkflowStepRequest, RetryWorkflowStepResponse } from "../models/models_0"; import { RetryWorkflowStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/StartWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/StartWorkflowCommand.ts index 9f3e9fd3b62ac..3d05e26ca2990 100644 --- a/clients/client-migrationhuborchestrator/src/commands/StartWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/StartWorkflowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { StartMigrationWorkflowRequest, StartMigrationWorkflowResponse } from "../models/models_0"; +import type { StartMigrationWorkflowRequest, StartMigrationWorkflowResponse } from "../models/models_0"; import { StartWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/StopWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/StopWorkflowCommand.ts index 20cf7f8c0c1a6..3529b46a5bd87 100644 --- a/clients/client-migrationhuborchestrator/src/commands/StopWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/StopWorkflowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { StopMigrationWorkflowRequest, StopMigrationWorkflowResponse } from "../models/models_0"; +import type { StopMigrationWorkflowRequest, StopMigrationWorkflowResponse } from "../models/models_0"; import { StopWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/TagResourceCommand.ts b/clients/client-migrationhuborchestrator/src/commands/TagResourceCommand.ts index be131faa0016a..dc8b02301736f 100644 --- a/clients/client-migrationhuborchestrator/src/commands/TagResourceCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/TagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/UntagResourceCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UntagResourceCommand.ts index cd1d7ee5eecf0..05bec5bb8c1bb 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UntagResourceCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UntagResourceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/UpdateTemplateCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UpdateTemplateCommand.ts index 755ed59f68987..0cca6877ca15a 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UpdateTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_0"; +import type { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_0"; import { UpdateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowCommand.ts index 1f5dcba4b66d8..50fc46bb0d2f4 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { UpdateMigrationWorkflowRequest, UpdateMigrationWorkflowResponse } from "../models/models_0"; +import type { UpdateMigrationWorkflowRequest, UpdateMigrationWorkflowResponse } from "../models/models_0"; import { UpdateWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepCommand.ts index 7f0a2257c0c0a..cc3d77e0f4110 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { UpdateWorkflowStepRequest, UpdateWorkflowStepResponse } from "../models/models_0"; +import type { UpdateWorkflowStepRequest, UpdateWorkflowStepResponse } from "../models/models_0"; import { UpdateWorkflowStep } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepGroupCommand.ts b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepGroupCommand.ts index 4c3912dade28c..4258f190afef3 100644 --- a/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepGroupCommand.ts +++ b/clients/client-migrationhuborchestrator/src/commands/UpdateWorkflowStepGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubOrchestratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubOrchestratorClient"; -import { UpdateWorkflowStepGroupRequest, UpdateWorkflowStepGroupResponse } from "../models/models_0"; +import type { UpdateWorkflowStepGroupRequest, UpdateWorkflowStepGroupResponse } from "../models/models_0"; import { UpdateWorkflowStepGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhuborchestrator/src/endpoint/EndpointParameters.ts b/clients/client-migrationhuborchestrator/src/endpoint/EndpointParameters.ts index 677a759aff6c7..658462d2d1aa1 100644 --- a/clients/client-migrationhuborchestrator/src/endpoint/EndpointParameters.ts +++ b/clients/client-migrationhuborchestrator/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-migrationhuborchestrator/src/endpoint/endpointResolver.ts b/clients/client-migrationhuborchestrator/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-migrationhuborchestrator/src/endpoint/endpointResolver.ts +++ b/clients/client-migrationhuborchestrator/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-migrationhuborchestrator/src/extensionConfiguration.ts b/clients/client-migrationhuborchestrator/src/extensionConfiguration.ts index 23e64d2b877b2..45b6a6e459414 100644 --- a/clients/client-migrationhuborchestrator/src/extensionConfiguration.ts +++ b/clients/client-migrationhuborchestrator/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-migrationhuborchestrator/src/models/MigrationHubOrchestratorServiceException.ts b/clients/client-migrationhuborchestrator/src/models/MigrationHubOrchestratorServiceException.ts index 76069eaf9fee1..1fe3374b26b9b 100644 --- a/clients/client-migrationhuborchestrator/src/models/MigrationHubOrchestratorServiceException.ts +++ b/clients/client-migrationhuborchestrator/src/models/MigrationHubOrchestratorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-migrationhuborchestrator/src/models/errors.ts b/clients/client-migrationhuborchestrator/src/models/errors.ts index f4081a73a807d..c5815abaf3083 100644 --- a/clients/client-migrationhuborchestrator/src/models/errors.ts +++ b/clients/client-migrationhuborchestrator/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MigrationHubOrchestratorServiceException as __BaseException } from "./MigrationHubOrchestratorServiceException"; diff --git a/clients/client-migrationhuborchestrator/src/pagination/Interfaces.ts b/clients/client-migrationhuborchestrator/src/pagination/Interfaces.ts index e04fcf77fe577..0bbf31ca9ea7a 100644 --- a/clients/client-migrationhuborchestrator/src/pagination/Interfaces.ts +++ b/clients/client-migrationhuborchestrator/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MigrationHubOrchestratorClient } from "../MigrationHubOrchestratorClient"; diff --git a/clients/client-migrationhuborchestrator/src/pagination/ListPluginsPaginator.ts b/clients/client-migrationhuborchestrator/src/pagination/ListPluginsPaginator.ts index 3ccc60630061a..a474d644f2198 100644 --- a/clients/client-migrationhuborchestrator/src/pagination/ListPluginsPaginator.ts +++ b/clients/client-migrationhuborchestrator/src/pagination/ListPluginsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPluginsCommand, ListPluginsCommandInput, ListPluginsCommandOutput } from "../commands/ListPluginsCommand"; import { MigrationHubOrchestratorClient } from "../MigrationHubOrchestratorClient"; diff --git a/clients/client-migrationhuborchestrator/src/pagination/ListTemplateStepGroupsPaginator.ts b/clients/client-migrationhuborchestrator/src/pagination/ListTemplateStepGroupsPaginator.ts index fcb2eebd1a4f7..69660eaf5d2dd 100644 --- a/clients/client-migrationhuborchestrator/src/pagination/ListTemplateStepGroupsPaginator.ts +++ b/clients/client-migrationhuborchestrator/src/pagination/ListTemplateStepGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplateStepGroupsCommand, diff --git a/clients/client-migrationhuborchestrator/src/pagination/ListTemplateStepsPaginator.ts b/clients/client-migrationhuborchestrator/src/pagination/ListTemplateStepsPaginator.ts index ad979f33286ae..3e11b484207c5 100644 --- a/clients/client-migrationhuborchestrator/src/pagination/ListTemplateStepsPaginator.ts +++ b/clients/client-migrationhuborchestrator/src/pagination/ListTemplateStepsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplateStepsCommand, diff --git a/clients/client-migrationhuborchestrator/src/pagination/ListTemplatesPaginator.ts b/clients/client-migrationhuborchestrator/src/pagination/ListTemplatesPaginator.ts index 70b341042833b..3e70a2ac07237 100644 --- a/clients/client-migrationhuborchestrator/src/pagination/ListTemplatesPaginator.ts +++ b/clients/client-migrationhuborchestrator/src/pagination/ListTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplatesCommand, diff --git a/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowStepGroupsPaginator.ts b/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowStepGroupsPaginator.ts index 4e4a2379bf444..609b7fe930ad7 100644 --- a/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowStepGroupsPaginator.ts +++ b/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowStepGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowStepGroupsCommand, diff --git a/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowStepsPaginator.ts b/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowStepsPaginator.ts index b7146257670e5..850aa456805cf 100644 --- a/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowStepsPaginator.ts +++ b/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowStepsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowStepsCommand, diff --git a/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowsPaginator.ts b/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowsPaginator.ts index e54221d9a8126..7768554735d1f 100644 --- a/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowsPaginator.ts +++ b/clients/client-migrationhuborchestrator/src/pagination/ListWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowsCommand, diff --git a/clients/client-migrationhuborchestrator/src/runtimeConfig.browser.ts b/clients/client-migrationhuborchestrator/src/runtimeConfig.browser.ts index 5cb7953068611..e18f0f1c97650 100644 --- a/clients/client-migrationhuborchestrator/src/runtimeConfig.browser.ts +++ b/clients/client-migrationhuborchestrator/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubOrchestratorClientConfig } from "./MigrationHubOrchestratorClient"; + +import type { MigrationHubOrchestratorClientConfig } from "./MigrationHubOrchestratorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-migrationhuborchestrator/src/runtimeConfig.native.ts b/clients/client-migrationhuborchestrator/src/runtimeConfig.native.ts index f072322cc1984..d00a4511a6528 100644 --- a/clients/client-migrationhuborchestrator/src/runtimeConfig.native.ts +++ b/clients/client-migrationhuborchestrator/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MigrationHubOrchestratorClientConfig } from "./MigrationHubOrchestratorClient"; +import type { MigrationHubOrchestratorClientConfig } from "./MigrationHubOrchestratorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-migrationhuborchestrator/src/runtimeConfig.shared.ts b/clients/client-migrationhuborchestrator/src/runtimeConfig.shared.ts index 823862aee6167..f127747cc5b0d 100644 --- a/clients/client-migrationhuborchestrator/src/runtimeConfig.shared.ts +++ b/clients/client-migrationhuborchestrator/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMigrationHubOrchestratorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MigrationHubOrchestratorClientConfig } from "./MigrationHubOrchestratorClient"; +import type { MigrationHubOrchestratorClientConfig } from "./MigrationHubOrchestratorClient"; /** * @internal diff --git a/clients/client-migrationhuborchestrator/src/runtimeConfig.ts b/clients/client-migrationhuborchestrator/src/runtimeConfig.ts index 9f176e828beb1..a4d72fa24ff0b 100644 --- a/clients/client-migrationhuborchestrator/src/runtimeConfig.ts +++ b/clients/client-migrationhuborchestrator/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubOrchestratorClientConfig } from "./MigrationHubOrchestratorClient"; + +import type { MigrationHubOrchestratorClientConfig } from "./MigrationHubOrchestratorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-migrationhuborchestrator/src/runtimeExtensions.ts b/clients/client-migrationhuborchestrator/src/runtimeExtensions.ts index 53b98bd3bfdac..59cfa761de715 100644 --- a/clients/client-migrationhuborchestrator/src/runtimeExtensions.ts +++ b/clients/client-migrationhuborchestrator/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MigrationHubOrchestratorExtensionConfiguration } from "./extensionConfiguration"; +import type { MigrationHubOrchestratorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-migrationhuborchestrator/src/schemas/schemas_0.ts b/clients/client-migrationhuborchestrator/src/schemas/schemas_0.ts index 8aad1d46dfb91..9f4c3fbef1aa1 100644 --- a/clients/client-migrationhuborchestrator/src/schemas/schemas_0.ts +++ b/clients/client-migrationhuborchestrator/src/schemas/schemas_0.ts @@ -219,7 +219,7 @@ const n0 = "com.amazonaws.migrationhuborchestrator"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-migrationhubstrategy/package.json b/clients/client-migrationhubstrategy/package.json index e6c277b1e6591..8bf1f41d3ff2f 100644 --- a/clients/client-migrationhubstrategy/package.json +++ b/clients/client-migrationhubstrategy/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-migrationhubstrategy/src/MigrationHubStrategy.ts b/clients/client-migrationhubstrategy/src/MigrationHubStrategy.ts index 82bb3c69ddd32..c8907c264b42d 100644 --- a/clients/client-migrationhubstrategy/src/MigrationHubStrategy.ts +++ b/clients/client-migrationhubstrategy/src/MigrationHubStrategy.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetApplicationComponentDetailsCommand, @@ -108,7 +108,7 @@ import { UpdateServerConfigCommandInput, UpdateServerConfigCommandOutput, } from "./commands/UpdateServerConfigCommand"; -import { MigrationHubStrategyClient, MigrationHubStrategyClientConfig } from "./MigrationHubStrategyClient"; +import { MigrationHubStrategyClient } from "./MigrationHubStrategyClient"; const commands = { GetApplicationComponentDetailsCommand, diff --git a/clients/client-migrationhubstrategy/src/MigrationHubStrategyClient.ts b/clients/client-migrationhubstrategy/src/MigrationHubStrategyClient.ts index 76c4e4cad1f67..d0c2a85bdeec4 100644 --- a/clients/client-migrationhubstrategy/src/MigrationHubStrategyClient.ts +++ b/clients/client-migrationhubstrategy/src/MigrationHubStrategyClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMigrationHubStrategyHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -125,7 +134,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-migrationhubstrategy/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-migrationhubstrategy/src/auth/httpAuthExtensionConfiguration.ts index a241f2a394609..de669a2b5f68b 100644 --- a/clients/client-migrationhubstrategy/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-migrationhubstrategy/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MigrationHubStrategyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MigrationHubStrategyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-migrationhubstrategy/src/auth/httpAuthSchemeProvider.ts b/clients/client-migrationhubstrategy/src/auth/httpAuthSchemeProvider.ts index c6f5e16675476..7e58534471c89 100644 --- a/clients/client-migrationhubstrategy/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-migrationhubstrategy/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type MigrationHubStrategyClientResolvedConfig, MigrationHubStrategyClientConfig, - MigrationHubStrategyClientResolvedConfig, } from "../MigrationHubStrategyClient"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentDetailsCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentDetailsCommand.ts index b82cbf076750d..7f3e5e63890a1 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentDetailsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentDetailsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { GetApplicationComponentDetailsRequest, GetApplicationComponentDetailsResponse } from "../models/models_0"; +import type { GetApplicationComponentDetailsRequest, GetApplicationComponentDetailsResponse } from "../models/models_0"; import { GetApplicationComponentDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentStrategiesCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentStrategiesCommand.ts index bc7a380c85254..23f6b9f33ba79 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentStrategiesCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetApplicationComponentStrategiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { +import type { GetApplicationComponentStrategiesRequest, GetApplicationComponentStrategiesResponse, } from "../models/models_0"; diff --git a/clients/client-migrationhubstrategy/src/commands/GetAssessmentCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetAssessmentCommand.ts index 1128cdd366e85..6efa8f851ef30 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetAssessmentCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetAssessmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { GetAssessmentRequest, GetAssessmentResponse } from "../models/models_0"; +import type { GetAssessmentRequest, GetAssessmentResponse } from "../models/models_0"; import { GetAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/GetImportFileTaskCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetImportFileTaskCommand.ts index f0bbcc343bd5f..7ca4ec7b571d9 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetImportFileTaskCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetImportFileTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { GetImportFileTaskRequest, GetImportFileTaskResponse } from "../models/models_0"; +import type { GetImportFileTaskRequest, GetImportFileTaskResponse } from "../models/models_0"; import { GetImportFileTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/GetLatestAssessmentIdCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetLatestAssessmentIdCommand.ts index 2f360ae6976fb..e4d3767dddbd6 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetLatestAssessmentIdCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetLatestAssessmentIdCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { GetLatestAssessmentIdRequest, GetLatestAssessmentIdResponse } from "../models/models_0"; +import type { GetLatestAssessmentIdRequest, GetLatestAssessmentIdResponse } from "../models/models_0"; import { GetLatestAssessmentId } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/GetPortfolioPreferencesCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetPortfolioPreferencesCommand.ts index 16e34bafa2bd2..0a4b496f05921 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetPortfolioPreferencesCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetPortfolioPreferencesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { GetPortfolioPreferencesRequest, GetPortfolioPreferencesResponse } from "../models/models_0"; +import type { GetPortfolioPreferencesRequest, GetPortfolioPreferencesResponse } from "../models/models_0"; import { GetPortfolioPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/GetPortfolioSummaryCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetPortfolioSummaryCommand.ts index a3fb8cf01d663..ac5e5438718c7 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetPortfolioSummaryCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetPortfolioSummaryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { GetPortfolioSummaryRequest, GetPortfolioSummaryResponse } from "../models/models_0"; +import type { GetPortfolioSummaryRequest, GetPortfolioSummaryResponse } from "../models/models_0"; import { GetPortfolioSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/GetRecommendationReportDetailsCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetRecommendationReportDetailsCommand.ts index fb36023969747..395796c422456 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetRecommendationReportDetailsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetRecommendationReportDetailsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { GetRecommendationReportDetailsRequest, GetRecommendationReportDetailsResponse } from "../models/models_0"; +import type { GetRecommendationReportDetailsRequest, GetRecommendationReportDetailsResponse } from "../models/models_0"; import { GetRecommendationReportDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/GetServerDetailsCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetServerDetailsCommand.ts index fbc3db9f32c4e..443429d6ec230 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetServerDetailsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetServerDetailsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { GetServerDetailsRequest, GetServerDetailsResponse } from "../models/models_0"; +import type { GetServerDetailsRequest, GetServerDetailsResponse } from "../models/models_0"; import { GetServerDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/GetServerStrategiesCommand.ts b/clients/client-migrationhubstrategy/src/commands/GetServerStrategiesCommand.ts index e5fcae135c16c..b65f6b8f73659 100644 --- a/clients/client-migrationhubstrategy/src/commands/GetServerStrategiesCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/GetServerStrategiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { GetServerStrategiesRequest, GetServerStrategiesResponse } from "../models/models_0"; +import type { GetServerStrategiesRequest, GetServerStrategiesResponse } from "../models/models_0"; import { GetServerStrategies } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/ListAnalyzableServersCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListAnalyzableServersCommand.ts index cf69427e7de57..895cbb29fc2e9 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListAnalyzableServersCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListAnalyzableServersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { ListAnalyzableServersRequest, ListAnalyzableServersResponse } from "../models/models_0"; +import type { ListAnalyzableServersRequest, ListAnalyzableServersResponse } from "../models/models_0"; import { ListAnalyzableServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/ListApplicationComponentsCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListApplicationComponentsCommand.ts index 7e0602a349e06..f6874f3b67f97 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListApplicationComponentsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListApplicationComponentsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { ListApplicationComponentsRequest, ListApplicationComponentsResponse } from "../models/models_0"; +import type { ListApplicationComponentsRequest, ListApplicationComponentsResponse } from "../models/models_0"; import { ListApplicationComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/ListCollectorsCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListCollectorsCommand.ts index 355afc43257d9..7b9cd41325222 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListCollectorsCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListCollectorsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { ListCollectorsRequest, ListCollectorsResponse } from "../models/models_0"; +import type { ListCollectorsRequest, ListCollectorsResponse } from "../models/models_0"; import { ListCollectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/ListImportFileTaskCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListImportFileTaskCommand.ts index cfc90190bc3df..5406f0aa22901 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListImportFileTaskCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListImportFileTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { ListImportFileTaskRequest, ListImportFileTaskResponse } from "../models/models_0"; +import type { ListImportFileTaskRequest, ListImportFileTaskResponse } from "../models/models_0"; import { ListImportFileTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/ListServersCommand.ts b/clients/client-migrationhubstrategy/src/commands/ListServersCommand.ts index 473dd56be89dd..6bbb82469c860 100644 --- a/clients/client-migrationhubstrategy/src/commands/ListServersCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/ListServersCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { ListServersRequest, ListServersResponse } from "../models/models_0"; +import type { ListServersRequest, ListServersResponse } from "../models/models_0"; import { ListServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/PutPortfolioPreferencesCommand.ts b/clients/client-migrationhubstrategy/src/commands/PutPortfolioPreferencesCommand.ts index 470049ff5696a..ff48b944a1fe5 100644 --- a/clients/client-migrationhubstrategy/src/commands/PutPortfolioPreferencesCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/PutPortfolioPreferencesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { PutPortfolioPreferencesRequest, PutPortfolioPreferencesResponse } from "../models/models_0"; +import type { PutPortfolioPreferencesRequest, PutPortfolioPreferencesResponse } from "../models/models_0"; import { PutPortfolioPreferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/StartAssessmentCommand.ts b/clients/client-migrationhubstrategy/src/commands/StartAssessmentCommand.ts index 3c2ebcf1c65cc..0714b67dbfe07 100644 --- a/clients/client-migrationhubstrategy/src/commands/StartAssessmentCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/StartAssessmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { StartAssessmentRequest, StartAssessmentResponse } from "../models/models_0"; +import type { StartAssessmentRequest, StartAssessmentResponse } from "../models/models_0"; import { StartAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/StartImportFileTaskCommand.ts b/clients/client-migrationhubstrategy/src/commands/StartImportFileTaskCommand.ts index 0e878a62ed101..d8d0b8d210ade 100644 --- a/clients/client-migrationhubstrategy/src/commands/StartImportFileTaskCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/StartImportFileTaskCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { StartImportFileTaskRequest, StartImportFileTaskResponse } from "../models/models_0"; +import type { StartImportFileTaskRequest, StartImportFileTaskResponse } from "../models/models_0"; import { StartImportFileTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/StartRecommendationReportGenerationCommand.ts b/clients/client-migrationhubstrategy/src/commands/StartRecommendationReportGenerationCommand.ts index 55c9e399166c8..5b24c2c2bc972 100644 --- a/clients/client-migrationhubstrategy/src/commands/StartRecommendationReportGenerationCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/StartRecommendationReportGenerationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { +import type { StartRecommendationReportGenerationRequest, StartRecommendationReportGenerationResponse, } from "../models/models_0"; diff --git a/clients/client-migrationhubstrategy/src/commands/StopAssessmentCommand.ts b/clients/client-migrationhubstrategy/src/commands/StopAssessmentCommand.ts index 726abe5c4999b..93c910e5a14f2 100644 --- a/clients/client-migrationhubstrategy/src/commands/StopAssessmentCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/StopAssessmentCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { StopAssessmentRequest, StopAssessmentResponse } from "../models/models_0"; +import type { StopAssessmentRequest, StopAssessmentResponse } from "../models/models_0"; import { StopAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/UpdateApplicationComponentConfigCommand.ts b/clients/client-migrationhubstrategy/src/commands/UpdateApplicationComponentConfigCommand.ts index a0c67bd0d8b86..d9e2fd61c2ad1 100644 --- a/clients/client-migrationhubstrategy/src/commands/UpdateApplicationComponentConfigCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/UpdateApplicationComponentConfigCommand.ts @@ -1,15 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { UpdateApplicationComponentConfigRequest, UpdateApplicationComponentConfigResponse } from "../models/models_0"; +import type { + UpdateApplicationComponentConfigRequest, + UpdateApplicationComponentConfigResponse, +} from "../models/models_0"; import { UpdateApplicationComponentConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/commands/UpdateServerConfigCommand.ts b/clients/client-migrationhubstrategy/src/commands/UpdateServerConfigCommand.ts index 8fca39b8c2e46..c487527bd0e97 100644 --- a/clients/client-migrationhubstrategy/src/commands/UpdateServerConfigCommand.ts +++ b/clients/client-migrationhubstrategy/src/commands/UpdateServerConfigCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { MigrationHubStrategyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, } from "../MigrationHubStrategyClient"; -import { UpdateServerConfigRequest, UpdateServerConfigResponse } from "../models/models_0"; +import type { UpdateServerConfigRequest, UpdateServerConfigResponse } from "../models/models_0"; import { UpdateServerConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-migrationhubstrategy/src/endpoint/EndpointParameters.ts b/clients/client-migrationhubstrategy/src/endpoint/EndpointParameters.ts index 46fca248fc2a4..080c30bda6bfa 100644 --- a/clients/client-migrationhubstrategy/src/endpoint/EndpointParameters.ts +++ b/clients/client-migrationhubstrategy/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-migrationhubstrategy/src/endpoint/endpointResolver.ts b/clients/client-migrationhubstrategy/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-migrationhubstrategy/src/endpoint/endpointResolver.ts +++ b/clients/client-migrationhubstrategy/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-migrationhubstrategy/src/extensionConfiguration.ts b/clients/client-migrationhubstrategy/src/extensionConfiguration.ts index 9049feb120f41..06302f7118fda 100644 --- a/clients/client-migrationhubstrategy/src/extensionConfiguration.ts +++ b/clients/client-migrationhubstrategy/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-migrationhubstrategy/src/models/MigrationHubStrategyServiceException.ts b/clients/client-migrationhubstrategy/src/models/MigrationHubStrategyServiceException.ts index 6a37b8d54fcbc..22a350a7c8c12 100644 --- a/clients/client-migrationhubstrategy/src/models/MigrationHubStrategyServiceException.ts +++ b/clients/client-migrationhubstrategy/src/models/MigrationHubStrategyServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-migrationhubstrategy/src/models/errors.ts b/clients/client-migrationhubstrategy/src/models/errors.ts index 84c000717b9da..b124c0f694d56 100644 --- a/clients/client-migrationhubstrategy/src/models/errors.ts +++ b/clients/client-migrationhubstrategy/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MigrationHubStrategyServiceException as __BaseException } from "./MigrationHubStrategyServiceException"; diff --git a/clients/client-migrationhubstrategy/src/pagination/GetServerDetailsPaginator.ts b/clients/client-migrationhubstrategy/src/pagination/GetServerDetailsPaginator.ts index 7e21c1a8bd03c..7cf1361a94714 100644 --- a/clients/client-migrationhubstrategy/src/pagination/GetServerDetailsPaginator.ts +++ b/clients/client-migrationhubstrategy/src/pagination/GetServerDetailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetServerDetailsCommand, diff --git a/clients/client-migrationhubstrategy/src/pagination/Interfaces.ts b/clients/client-migrationhubstrategy/src/pagination/Interfaces.ts index dc8541622e647..9ce97c09d266a 100644 --- a/clients/client-migrationhubstrategy/src/pagination/Interfaces.ts +++ b/clients/client-migrationhubstrategy/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MigrationHubStrategyClient } from "../MigrationHubStrategyClient"; diff --git a/clients/client-migrationhubstrategy/src/pagination/ListAnalyzableServersPaginator.ts b/clients/client-migrationhubstrategy/src/pagination/ListAnalyzableServersPaginator.ts index 4caed7e545dfe..287b01f4fd7af 100644 --- a/clients/client-migrationhubstrategy/src/pagination/ListAnalyzableServersPaginator.ts +++ b/clients/client-migrationhubstrategy/src/pagination/ListAnalyzableServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAnalyzableServersCommand, diff --git a/clients/client-migrationhubstrategy/src/pagination/ListApplicationComponentsPaginator.ts b/clients/client-migrationhubstrategy/src/pagination/ListApplicationComponentsPaginator.ts index 96580f4aa1044..bf52d1ff49421 100644 --- a/clients/client-migrationhubstrategy/src/pagination/ListApplicationComponentsPaginator.ts +++ b/clients/client-migrationhubstrategy/src/pagination/ListApplicationComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationComponentsCommand, diff --git a/clients/client-migrationhubstrategy/src/pagination/ListCollectorsPaginator.ts b/clients/client-migrationhubstrategy/src/pagination/ListCollectorsPaginator.ts index c4d5a5cf2b3e7..300d9ecb6a407 100644 --- a/clients/client-migrationhubstrategy/src/pagination/ListCollectorsPaginator.ts +++ b/clients/client-migrationhubstrategy/src/pagination/ListCollectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCollectorsCommand, diff --git a/clients/client-migrationhubstrategy/src/pagination/ListImportFileTaskPaginator.ts b/clients/client-migrationhubstrategy/src/pagination/ListImportFileTaskPaginator.ts index f0ddbf572befa..67b523505ed99 100644 --- a/clients/client-migrationhubstrategy/src/pagination/ListImportFileTaskPaginator.ts +++ b/clients/client-migrationhubstrategy/src/pagination/ListImportFileTaskPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImportFileTaskCommand, diff --git a/clients/client-migrationhubstrategy/src/pagination/ListServersPaginator.ts b/clients/client-migrationhubstrategy/src/pagination/ListServersPaginator.ts index 7338c30437790..743c910abf56c 100644 --- a/clients/client-migrationhubstrategy/src/pagination/ListServersPaginator.ts +++ b/clients/client-migrationhubstrategy/src/pagination/ListServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServersCommand, ListServersCommandInput, ListServersCommandOutput } from "../commands/ListServersCommand"; import { MigrationHubStrategyClient } from "../MigrationHubStrategyClient"; diff --git a/clients/client-migrationhubstrategy/src/runtimeConfig.browser.ts b/clients/client-migrationhubstrategy/src/runtimeConfig.browser.ts index 8bfd92e96b4a6..a152590a0fbba 100644 --- a/clients/client-migrationhubstrategy/src/runtimeConfig.browser.ts +++ b/clients/client-migrationhubstrategy/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubStrategyClientConfig } from "./MigrationHubStrategyClient"; + +import type { MigrationHubStrategyClientConfig } from "./MigrationHubStrategyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-migrationhubstrategy/src/runtimeConfig.native.ts b/clients/client-migrationhubstrategy/src/runtimeConfig.native.ts index fa5be353d216c..448927c6465a1 100644 --- a/clients/client-migrationhubstrategy/src/runtimeConfig.native.ts +++ b/clients/client-migrationhubstrategy/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MigrationHubStrategyClientConfig } from "./MigrationHubStrategyClient"; +import type { MigrationHubStrategyClientConfig } from "./MigrationHubStrategyClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-migrationhubstrategy/src/runtimeConfig.shared.ts b/clients/client-migrationhubstrategy/src/runtimeConfig.shared.ts index e5c337af960d9..76dd894649c21 100644 --- a/clients/client-migrationhubstrategy/src/runtimeConfig.shared.ts +++ b/clients/client-migrationhubstrategy/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMigrationHubStrategyHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MigrationHubStrategyClientConfig } from "./MigrationHubStrategyClient"; +import type { MigrationHubStrategyClientConfig } from "./MigrationHubStrategyClient"; /** * @internal diff --git a/clients/client-migrationhubstrategy/src/runtimeConfig.ts b/clients/client-migrationhubstrategy/src/runtimeConfig.ts index 5b4e4a3571e93..dfffc8fb9b616 100644 --- a/clients/client-migrationhubstrategy/src/runtimeConfig.ts +++ b/clients/client-migrationhubstrategy/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MigrationHubStrategyClientConfig } from "./MigrationHubStrategyClient"; + +import type { MigrationHubStrategyClientConfig } from "./MigrationHubStrategyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-migrationhubstrategy/src/runtimeExtensions.ts b/clients/client-migrationhubstrategy/src/runtimeExtensions.ts index f0c9d76ded256..ff861027188eb 100644 --- a/clients/client-migrationhubstrategy/src/runtimeExtensions.ts +++ b/clients/client-migrationhubstrategy/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MigrationHubStrategyExtensionConfiguration } from "./extensionConfiguration"; +import type { MigrationHubStrategyExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-migrationhubstrategy/src/schemas/schemas_0.ts b/clients/client-migrationhubstrategy/src/schemas/schemas_0.ts index be61c1759fbf3..cc4680c8df6d9 100644 --- a/clients/client-migrationhubstrategy/src/schemas/schemas_0.ts +++ b/clients/client-migrationhubstrategy/src/schemas/schemas_0.ts @@ -337,7 +337,7 @@ const n0 = "com.amazonaws.migrationhubstrategy"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-mpa/package.json b/clients/client-mpa/package.json index 53a4e29ed83dc..081b8895231a1 100644 --- a/clients/client-mpa/package.json +++ b/clients/client-mpa/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mpa/src/MPA.ts b/clients/client-mpa/src/MPA.ts index c8d9dd115927d..d14f60acaf59f 100644 --- a/clients/client-mpa/src/MPA.ts +++ b/clients/client-mpa/src/MPA.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelSessionCommand, @@ -99,7 +99,7 @@ import { UpdateApprovalTeamCommandInput, UpdateApprovalTeamCommandOutput, } from "./commands/UpdateApprovalTeamCommand"; -import { MPAClient, MPAClientConfig } from "./MPAClient"; +import { MPAClient } from "./MPAClient"; const commands = { CancelSessionCommand, diff --git a/clients/client-mpa/src/MPAClient.ts b/clients/client-mpa/src/MPAClient.ts index 8bf0c81ce7888..5eb0d08906143 100644 --- a/clients/client-mpa/src/MPAClient.ts +++ b/clients/client-mpa/src/MPAClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMPAHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelSessionCommandInput, CancelSessionCommandOutput } from "./commands/CancelSessionCommand"; @@ -106,7 +115,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mpa/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mpa/src/auth/httpAuthExtensionConfiguration.ts index 131c843526545..46eb89c38faf6 100644 --- a/clients/client-mpa/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mpa/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MPAHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MPAHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mpa/src/auth/httpAuthSchemeProvider.ts b/clients/client-mpa/src/auth/httpAuthSchemeProvider.ts index f6f77c4346fcb..f346feaf1202f 100644 --- a/clients/client-mpa/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mpa/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MPAClientConfig, MPAClientResolvedConfig } from "../MPAClient"; +import { type MPAClientResolvedConfig, MPAClientConfig } from "../MPAClient"; /** * @internal diff --git a/clients/client-mpa/src/commands/CancelSessionCommand.ts b/clients/client-mpa/src/commands/CancelSessionCommand.ts index c9ee20d05e509..26dd26f1d747e 100644 --- a/clients/client-mpa/src/commands/CancelSessionCommand.ts +++ b/clients/client-mpa/src/commands/CancelSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelSessionRequest, CancelSessionResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { CancelSessionRequest, CancelSessionResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { CancelSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/CreateApprovalTeamCommand.ts b/clients/client-mpa/src/commands/CreateApprovalTeamCommand.ts index cb0ff6a571662..1da54b1c47e96 100644 --- a/clients/client-mpa/src/commands/CreateApprovalTeamCommand.ts +++ b/clients/client-mpa/src/commands/CreateApprovalTeamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApprovalTeamRequest, CreateApprovalTeamResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { CreateApprovalTeamRequest, CreateApprovalTeamResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { CreateApprovalTeam } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/CreateIdentitySourceCommand.ts b/clients/client-mpa/src/commands/CreateIdentitySourceCommand.ts index 421b9a2ea6630..2d6bc773467b3 100644 --- a/clients/client-mpa/src/commands/CreateIdentitySourceCommand.ts +++ b/clients/client-mpa/src/commands/CreateIdentitySourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIdentitySourceRequest, CreateIdentitySourceResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { CreateIdentitySourceRequest, CreateIdentitySourceResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { CreateIdentitySource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/DeleteIdentitySourceCommand.ts b/clients/client-mpa/src/commands/DeleteIdentitySourceCommand.ts index 7d74dec29666e..b59eada14b0b2 100644 --- a/clients/client-mpa/src/commands/DeleteIdentitySourceCommand.ts +++ b/clients/client-mpa/src/commands/DeleteIdentitySourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentitySourceRequest } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { DeleteIdentitySourceRequest } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { DeleteIdentitySource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/DeleteInactiveApprovalTeamVersionCommand.ts b/clients/client-mpa/src/commands/DeleteInactiveApprovalTeamVersionCommand.ts index 7418f5b35e234..096a6b83735c3 100644 --- a/clients/client-mpa/src/commands/DeleteInactiveApprovalTeamVersionCommand.ts +++ b/clients/client-mpa/src/commands/DeleteInactiveApprovalTeamVersionCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteInactiveApprovalTeamVersionRequest, DeleteInactiveApprovalTeamVersionResponse, } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { DeleteInactiveApprovalTeamVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/GetApprovalTeamCommand.ts b/clients/client-mpa/src/commands/GetApprovalTeamCommand.ts index 1959b06dd9a52..e3b74609eaf59 100644 --- a/clients/client-mpa/src/commands/GetApprovalTeamCommand.ts +++ b/clients/client-mpa/src/commands/GetApprovalTeamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApprovalTeamRequest, GetApprovalTeamResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { GetApprovalTeamRequest, GetApprovalTeamResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { GetApprovalTeam } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/GetIdentitySourceCommand.ts b/clients/client-mpa/src/commands/GetIdentitySourceCommand.ts index 37ac634739d8d..566d148ed552b 100644 --- a/clients/client-mpa/src/commands/GetIdentitySourceCommand.ts +++ b/clients/client-mpa/src/commands/GetIdentitySourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentitySourceRequest, GetIdentitySourceResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { GetIdentitySourceRequest, GetIdentitySourceResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { GetIdentitySource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/GetPolicyVersionCommand.ts b/clients/client-mpa/src/commands/GetPolicyVersionCommand.ts index cd825efe35f6b..9d1751d06b04f 100644 --- a/clients/client-mpa/src/commands/GetPolicyVersionCommand.ts +++ b/clients/client-mpa/src/commands/GetPolicyVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPolicyVersionRequest, GetPolicyVersionResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { GetPolicyVersionRequest, GetPolicyVersionResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { GetPolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/GetResourcePolicyCommand.ts b/clients/client-mpa/src/commands/GetResourcePolicyCommand.ts index e98bb33ab74eb..94e503620c1b2 100644 --- a/clients/client-mpa/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-mpa/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/GetSessionCommand.ts b/clients/client-mpa/src/commands/GetSessionCommand.ts index b77622b9bfc7f..4625f30f44b23 100644 --- a/clients/client-mpa/src/commands/GetSessionCommand.ts +++ b/clients/client-mpa/src/commands/GetSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { GetSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/ListApprovalTeamsCommand.ts b/clients/client-mpa/src/commands/ListApprovalTeamsCommand.ts index 20b2dca0f2f19..de1cf882782f8 100644 --- a/clients/client-mpa/src/commands/ListApprovalTeamsCommand.ts +++ b/clients/client-mpa/src/commands/ListApprovalTeamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApprovalTeamsRequest, ListApprovalTeamsResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { ListApprovalTeamsRequest, ListApprovalTeamsResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { ListApprovalTeams } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/ListIdentitySourcesCommand.ts b/clients/client-mpa/src/commands/ListIdentitySourcesCommand.ts index e69aa9ce23df6..d561e14d0c0df 100644 --- a/clients/client-mpa/src/commands/ListIdentitySourcesCommand.ts +++ b/clients/client-mpa/src/commands/ListIdentitySourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentitySourcesRequest, ListIdentitySourcesResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { ListIdentitySourcesRequest, ListIdentitySourcesResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { ListIdentitySources } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/ListPoliciesCommand.ts b/clients/client-mpa/src/commands/ListPoliciesCommand.ts index cd1045a7b45f2..41d0c2cb816c0 100644 --- a/clients/client-mpa/src/commands/ListPoliciesCommand.ts +++ b/clients/client-mpa/src/commands/ListPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { ListPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/ListPolicyVersionsCommand.ts b/clients/client-mpa/src/commands/ListPolicyVersionsCommand.ts index 3afb66d01162a..003f6b9c42015 100644 --- a/clients/client-mpa/src/commands/ListPolicyVersionsCommand.ts +++ b/clients/client-mpa/src/commands/ListPolicyVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPolicyVersionsRequest, ListPolicyVersionsResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { ListPolicyVersionsRequest, ListPolicyVersionsResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { ListPolicyVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/ListResourcePoliciesCommand.ts b/clients/client-mpa/src/commands/ListResourcePoliciesCommand.ts index 83c841b384c9b..da14f56de1e98 100644 --- a/clients/client-mpa/src/commands/ListResourcePoliciesCommand.ts +++ b/clients/client-mpa/src/commands/ListResourcePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcePoliciesRequest, ListResourcePoliciesResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { ListResourcePoliciesRequest, ListResourcePoliciesResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { ListResourcePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/ListSessionsCommand.ts b/clients/client-mpa/src/commands/ListSessionsCommand.ts index 657288bcada97..ac18390a5726c 100644 --- a/clients/client-mpa/src/commands/ListSessionsCommand.ts +++ b/clients/client-mpa/src/commands/ListSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { ListSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/ListTagsForResourceCommand.ts b/clients/client-mpa/src/commands/ListTagsForResourceCommand.ts index c0457351ace20..bba8c2900cf14 100644 --- a/clients/client-mpa/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mpa/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/StartActiveApprovalTeamDeletionCommand.ts b/clients/client-mpa/src/commands/StartActiveApprovalTeamDeletionCommand.ts index 13041a268ecdc..859d031be9076 100644 --- a/clients/client-mpa/src/commands/StartActiveApprovalTeamDeletionCommand.ts +++ b/clients/client-mpa/src/commands/StartActiveApprovalTeamDeletionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartActiveApprovalTeamDeletionRequest, StartActiveApprovalTeamDeletionResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { + StartActiveApprovalTeamDeletionRequest, + StartActiveApprovalTeamDeletionResponse, +} from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { StartActiveApprovalTeamDeletion } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/TagResourceCommand.ts b/clients/client-mpa/src/commands/TagResourceCommand.ts index 7fe82e5d7853b..eeec0ebbe19a6 100644 --- a/clients/client-mpa/src/commands/TagResourceCommand.ts +++ b/clients/client-mpa/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/UntagResourceCommand.ts b/clients/client-mpa/src/commands/UntagResourceCommand.ts index cb42bf8145231..9ec7fbb8fec93 100644 --- a/clients/client-mpa/src/commands/UntagResourceCommand.ts +++ b/clients/client-mpa/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/commands/UpdateApprovalTeamCommand.ts b/clients/client-mpa/src/commands/UpdateApprovalTeamCommand.ts index f1db1edec490c..450147e1739ed 100644 --- a/clients/client-mpa/src/commands/UpdateApprovalTeamCommand.ts +++ b/clients/client-mpa/src/commands/UpdateApprovalTeamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApprovalTeamRequest, UpdateApprovalTeamResponse } from "../models/models_0"; -import { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; +import type { UpdateApprovalTeamRequest, UpdateApprovalTeamResponse } from "../models/models_0"; +import type { MPAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MPAClient"; import { UpdateApprovalTeam } from "../schemas/schemas_0"; /** diff --git a/clients/client-mpa/src/endpoint/EndpointParameters.ts b/clients/client-mpa/src/endpoint/EndpointParameters.ts index 433f2c0db63c2..a4c8572ec626a 100644 --- a/clients/client-mpa/src/endpoint/EndpointParameters.ts +++ b/clients/client-mpa/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mpa/src/endpoint/endpointResolver.ts b/clients/client-mpa/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-mpa/src/endpoint/endpointResolver.ts +++ b/clients/client-mpa/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mpa/src/extensionConfiguration.ts b/clients/client-mpa/src/extensionConfiguration.ts index b4031c6ae3207..46bca54f2bfa5 100644 --- a/clients/client-mpa/src/extensionConfiguration.ts +++ b/clients/client-mpa/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mpa/src/models/MPAServiceException.ts b/clients/client-mpa/src/models/MPAServiceException.ts index c7739030ef772..f35cfeb1f8c8c 100644 --- a/clients/client-mpa/src/models/MPAServiceException.ts +++ b/clients/client-mpa/src/models/MPAServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mpa/src/models/errors.ts b/clients/client-mpa/src/models/errors.ts index 14b9e8a19e048..cf16656e5223e 100644 --- a/clients/client-mpa/src/models/errors.ts +++ b/clients/client-mpa/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MPAServiceException as __BaseException } from "./MPAServiceException"; diff --git a/clients/client-mpa/src/pagination/Interfaces.ts b/clients/client-mpa/src/pagination/Interfaces.ts index dcda56ed03ae7..f11054835d12d 100644 --- a/clients/client-mpa/src/pagination/Interfaces.ts +++ b/clients/client-mpa/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MPAClient } from "../MPAClient"; diff --git a/clients/client-mpa/src/pagination/ListApprovalTeamsPaginator.ts b/clients/client-mpa/src/pagination/ListApprovalTeamsPaginator.ts index da541d5c8e752..935010cb0b688 100644 --- a/clients/client-mpa/src/pagination/ListApprovalTeamsPaginator.ts +++ b/clients/client-mpa/src/pagination/ListApprovalTeamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApprovalTeamsCommand, diff --git a/clients/client-mpa/src/pagination/ListIdentitySourcesPaginator.ts b/clients/client-mpa/src/pagination/ListIdentitySourcesPaginator.ts index 2737dd4029fce..e73622b94bddd 100644 --- a/clients/client-mpa/src/pagination/ListIdentitySourcesPaginator.ts +++ b/clients/client-mpa/src/pagination/ListIdentitySourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIdentitySourcesCommand, diff --git a/clients/client-mpa/src/pagination/ListPoliciesPaginator.ts b/clients/client-mpa/src/pagination/ListPoliciesPaginator.ts index ec3791aa214c3..332f2a24e2568 100644 --- a/clients/client-mpa/src/pagination/ListPoliciesPaginator.ts +++ b/clients/client-mpa/src/pagination/ListPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPoliciesCommand, diff --git a/clients/client-mpa/src/pagination/ListPolicyVersionsPaginator.ts b/clients/client-mpa/src/pagination/ListPolicyVersionsPaginator.ts index c3c966dbde931..d7854284489da 100644 --- a/clients/client-mpa/src/pagination/ListPolicyVersionsPaginator.ts +++ b/clients/client-mpa/src/pagination/ListPolicyVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPolicyVersionsCommand, diff --git a/clients/client-mpa/src/pagination/ListResourcePoliciesPaginator.ts b/clients/client-mpa/src/pagination/ListResourcePoliciesPaginator.ts index 886572a3a4db2..c3eaa18ad656f 100644 --- a/clients/client-mpa/src/pagination/ListResourcePoliciesPaginator.ts +++ b/clients/client-mpa/src/pagination/ListResourcePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourcePoliciesCommand, diff --git a/clients/client-mpa/src/pagination/ListSessionsPaginator.ts b/clients/client-mpa/src/pagination/ListSessionsPaginator.ts index 1dffff7736e2d..b98152b78f9f1 100644 --- a/clients/client-mpa/src/pagination/ListSessionsPaginator.ts +++ b/clients/client-mpa/src/pagination/ListSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSessionsCommand, diff --git a/clients/client-mpa/src/runtimeConfig.browser.ts b/clients/client-mpa/src/runtimeConfig.browser.ts index d82e62229f22c..c4c7dbe98695c 100644 --- a/clients/client-mpa/src/runtimeConfig.browser.ts +++ b/clients/client-mpa/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MPAClientConfig } from "./MPAClient"; + +import type { MPAClientConfig } from "./MPAClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mpa/src/runtimeConfig.native.ts b/clients/client-mpa/src/runtimeConfig.native.ts index 48e95f0a07bd1..9570bc2f643f3 100644 --- a/clients/client-mpa/src/runtimeConfig.native.ts +++ b/clients/client-mpa/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MPAClientConfig } from "./MPAClient"; +import type { MPAClientConfig } from "./MPAClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mpa/src/runtimeConfig.shared.ts b/clients/client-mpa/src/runtimeConfig.shared.ts index 92dda3e08b5fc..0333ec97359f9 100644 --- a/clients/client-mpa/src/runtimeConfig.shared.ts +++ b/clients/client-mpa/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMPAHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MPAClientConfig } from "./MPAClient"; +import type { MPAClientConfig } from "./MPAClient"; /** * @internal diff --git a/clients/client-mpa/src/runtimeConfig.ts b/clients/client-mpa/src/runtimeConfig.ts index a3dfc0f5a0b4c..19182f70e4f50 100644 --- a/clients/client-mpa/src/runtimeConfig.ts +++ b/clients/client-mpa/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MPAClientConfig } from "./MPAClient"; + +import type { MPAClientConfig } from "./MPAClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mpa/src/runtimeExtensions.ts b/clients/client-mpa/src/runtimeExtensions.ts index b3670628cd4dc..b97f514abd34e 100644 --- a/clients/client-mpa/src/runtimeExtensions.ts +++ b/clients/client-mpa/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MPAExtensionConfiguration } from "./extensionConfiguration"; +import type { MPAExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mpa/src/schemas/schemas_0.ts b/clients/client-mpa/src/schemas/schemas_0.ts index 8303a80f4eaaf..da74313f87900 100644 --- a/clients/client-mpa/src/schemas/schemas_0.ts +++ b/clients/client-mpa/src/schemas/schemas_0.ts @@ -189,7 +189,7 @@ const n0 = "com.amazonaws.mpa"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-mq/package.json b/clients/client-mq/package.json index 51648e94feec1..485b8b316b336 100644 --- a/clients/client-mq/package.json +++ b/clients/client-mq/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mq/src/Mq.ts b/clients/client-mq/src/Mq.ts index 8c31709338cfe..dce582ef53c70 100644 --- a/clients/client-mq/src/Mq.ts +++ b/clients/client-mq/src/Mq.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateBrokerCommand, @@ -86,7 +86,7 @@ import { UpdateConfigurationCommandOutput, } from "./commands/UpdateConfigurationCommand"; import { UpdateUserCommand, UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand"; -import { MqClient, MqClientConfig } from "./MqClient"; +import { MqClient } from "./MqClient"; const commands = { CreateBrokerCommand, diff --git a/clients/client-mq/src/MqClient.ts b/clients/client-mq/src/MqClient.ts index 1335a562839fe..ac3c9df5c13cc 100644 --- a/clients/client-mq/src/MqClient.ts +++ b/clients/client-mq/src/MqClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMqHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateBrokerCommandInput, CreateBrokerCommandOutput } from "./commands/CreateBrokerCommand"; @@ -112,7 +121,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mq/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mq/src/auth/httpAuthExtensionConfiguration.ts index 34ef21d3118c6..b2315df47f621 100644 --- a/clients/client-mq/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mq/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MqHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MqHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mq/src/auth/httpAuthSchemeProvider.ts b/clients/client-mq/src/auth/httpAuthSchemeProvider.ts index 07394de700b59..765021f68e3e3 100644 --- a/clients/client-mq/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mq/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MqClientConfig, MqClientResolvedConfig } from "../MqClient"; +import { type MqClientResolvedConfig, MqClientConfig } from "../MqClient"; /** * @internal diff --git a/clients/client-mq/src/commands/CreateBrokerCommand.ts b/clients/client-mq/src/commands/CreateBrokerCommand.ts index eb8b1fc771fa7..a5a51bb0e3e1d 100644 --- a/clients/client-mq/src/commands/CreateBrokerCommand.ts +++ b/clients/client-mq/src/commands/CreateBrokerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBrokerRequest, CreateBrokerResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { CreateBrokerRequest, CreateBrokerResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { CreateBroker } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/CreateConfigurationCommand.ts b/clients/client-mq/src/commands/CreateConfigurationCommand.ts index bc447125525e2..d859f1840eed3 100644 --- a/clients/client-mq/src/commands/CreateConfigurationCommand.ts +++ b/clients/client-mq/src/commands/CreateConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfigurationRequest, CreateConfigurationResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { CreateConfigurationRequest, CreateConfigurationResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { CreateConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/CreateTagsCommand.ts b/clients/client-mq/src/commands/CreateTagsCommand.ts index 3821d1c7b86de..da2544d9773a0 100644 --- a/clients/client-mq/src/commands/CreateTagsCommand.ts +++ b/clients/client-mq/src/commands/CreateTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTagsRequest } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { CreateTagsRequest } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { CreateTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/CreateUserCommand.ts b/clients/client-mq/src/commands/CreateUserCommand.ts index 2cc9b60de7c25..c345715942e0c 100644 --- a/clients/client-mq/src/commands/CreateUserCommand.ts +++ b/clients/client-mq/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DeleteBrokerCommand.ts b/clients/client-mq/src/commands/DeleteBrokerCommand.ts index 269dd42fe0bc5..78d947bcde83b 100644 --- a/clients/client-mq/src/commands/DeleteBrokerCommand.ts +++ b/clients/client-mq/src/commands/DeleteBrokerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBrokerRequest, DeleteBrokerResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DeleteBrokerRequest, DeleteBrokerResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DeleteBroker } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DeleteConfigurationCommand.ts b/clients/client-mq/src/commands/DeleteConfigurationCommand.ts index 5979e17e2db00..0809069cccbce 100644 --- a/clients/client-mq/src/commands/DeleteConfigurationCommand.ts +++ b/clients/client-mq/src/commands/DeleteConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationRequest, DeleteConfigurationResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DeleteConfigurationRequest, DeleteConfigurationResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DeleteConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DeleteTagsCommand.ts b/clients/client-mq/src/commands/DeleteTagsCommand.ts index 46f045c988936..6ac31dcf836ce 100644 --- a/clients/client-mq/src/commands/DeleteTagsCommand.ts +++ b/clients/client-mq/src/commands/DeleteTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagsRequest } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DeleteTagsRequest } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DeleteTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DeleteUserCommand.ts b/clients/client-mq/src/commands/DeleteUserCommand.ts index ac778b805cd8d..618f942a301cf 100644 --- a/clients/client-mq/src/commands/DeleteUserCommand.ts +++ b/clients/client-mq/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DescribeBrokerCommand.ts b/clients/client-mq/src/commands/DescribeBrokerCommand.ts index b4c776c31219a..e7b46c9d073df 100644 --- a/clients/client-mq/src/commands/DescribeBrokerCommand.ts +++ b/clients/client-mq/src/commands/DescribeBrokerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBrokerRequest, DescribeBrokerResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DescribeBrokerRequest, DescribeBrokerResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DescribeBroker } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DescribeBrokerEngineTypesCommand.ts b/clients/client-mq/src/commands/DescribeBrokerEngineTypesCommand.ts index b6dd677f48f4b..0122744c5bd64 100644 --- a/clients/client-mq/src/commands/DescribeBrokerEngineTypesCommand.ts +++ b/clients/client-mq/src/commands/DescribeBrokerEngineTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBrokerEngineTypesRequest, DescribeBrokerEngineTypesResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DescribeBrokerEngineTypesRequest, DescribeBrokerEngineTypesResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DescribeBrokerEngineTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DescribeBrokerInstanceOptionsCommand.ts b/clients/client-mq/src/commands/DescribeBrokerInstanceOptionsCommand.ts index ea61d0d925071..3b8f1188db531 100644 --- a/clients/client-mq/src/commands/DescribeBrokerInstanceOptionsCommand.ts +++ b/clients/client-mq/src/commands/DescribeBrokerInstanceOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBrokerInstanceOptionsRequest, DescribeBrokerInstanceOptionsResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DescribeBrokerInstanceOptionsRequest, DescribeBrokerInstanceOptionsResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DescribeBrokerInstanceOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DescribeConfigurationCommand.ts b/clients/client-mq/src/commands/DescribeConfigurationCommand.ts index ab7237ce71c80..888d2ba541ea3 100644 --- a/clients/client-mq/src/commands/DescribeConfigurationCommand.ts +++ b/clients/client-mq/src/commands/DescribeConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConfigurationRequest, DescribeConfigurationResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DescribeConfigurationRequest, DescribeConfigurationResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DescribeConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DescribeConfigurationRevisionCommand.ts b/clients/client-mq/src/commands/DescribeConfigurationRevisionCommand.ts index c1a0e4dbd7325..4715ab4344383 100644 --- a/clients/client-mq/src/commands/DescribeConfigurationRevisionCommand.ts +++ b/clients/client-mq/src/commands/DescribeConfigurationRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConfigurationRevisionRequest, DescribeConfigurationRevisionResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DescribeConfigurationRevisionRequest, DescribeConfigurationRevisionResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DescribeConfigurationRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/DescribeUserCommand.ts b/clients/client-mq/src/commands/DescribeUserCommand.ts index b679202d2db9b..bbe1ff975fa79 100644 --- a/clients/client-mq/src/commands/DescribeUserCommand.ts +++ b/clients/client-mq/src/commands/DescribeUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserRequest, DescribeUserResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { DescribeUserRequest, DescribeUserResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { DescribeUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/ListBrokersCommand.ts b/clients/client-mq/src/commands/ListBrokersCommand.ts index 6ad5c6ffa1c68..25890ff08dc69 100644 --- a/clients/client-mq/src/commands/ListBrokersCommand.ts +++ b/clients/client-mq/src/commands/ListBrokersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBrokersRequest, ListBrokersResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { ListBrokersRequest, ListBrokersResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { ListBrokers } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/ListConfigurationRevisionsCommand.ts b/clients/client-mq/src/commands/ListConfigurationRevisionsCommand.ts index a51c75c2e5235..fd94030c56921 100644 --- a/clients/client-mq/src/commands/ListConfigurationRevisionsCommand.ts +++ b/clients/client-mq/src/commands/ListConfigurationRevisionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationRevisionsRequest, ListConfigurationRevisionsResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { ListConfigurationRevisionsRequest, ListConfigurationRevisionsResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { ListConfigurationRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/ListConfigurationsCommand.ts b/clients/client-mq/src/commands/ListConfigurationsCommand.ts index a79c020953599..fd1d3f9890be5 100644 --- a/clients/client-mq/src/commands/ListConfigurationsCommand.ts +++ b/clients/client-mq/src/commands/ListConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { ListConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/ListTagsCommand.ts b/clients/client-mq/src/commands/ListTagsCommand.ts index f718214a2cb64..79b8a51f5a084 100644 --- a/clients/client-mq/src/commands/ListTagsCommand.ts +++ b/clients/client-mq/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsRequest, ListTagsResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { ListTagsRequest, ListTagsResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/ListUsersCommand.ts b/clients/client-mq/src/commands/ListUsersCommand.ts index c7befba9d3535..de5ab65dfb242 100644 --- a/clients/client-mq/src/commands/ListUsersCommand.ts +++ b/clients/client-mq/src/commands/ListUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/PromoteCommand.ts b/clients/client-mq/src/commands/PromoteCommand.ts index 99fddb82a27fa..844176bae0713 100644 --- a/clients/client-mq/src/commands/PromoteCommand.ts +++ b/clients/client-mq/src/commands/PromoteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PromoteRequest, PromoteResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { PromoteRequest, PromoteResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { Promote } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/RebootBrokerCommand.ts b/clients/client-mq/src/commands/RebootBrokerCommand.ts index 87971dfe8f034..0c72424a7388c 100644 --- a/clients/client-mq/src/commands/RebootBrokerCommand.ts +++ b/clients/client-mq/src/commands/RebootBrokerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootBrokerRequest, RebootBrokerResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { RebootBrokerRequest, RebootBrokerResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { RebootBroker } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/UpdateBrokerCommand.ts b/clients/client-mq/src/commands/UpdateBrokerCommand.ts index 4d5d4270008bf..6e30a2eef67fd 100644 --- a/clients/client-mq/src/commands/UpdateBrokerCommand.ts +++ b/clients/client-mq/src/commands/UpdateBrokerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBrokerRequest, UpdateBrokerResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { UpdateBrokerRequest, UpdateBrokerResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { UpdateBroker } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/UpdateConfigurationCommand.ts b/clients/client-mq/src/commands/UpdateConfigurationCommand.ts index 0471f237b3e48..57cbdd1df15e7 100644 --- a/clients/client-mq/src/commands/UpdateConfigurationCommand.ts +++ b/clients/client-mq/src/commands/UpdateConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfigurationRequest, UpdateConfigurationResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { UpdateConfigurationRequest, UpdateConfigurationResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { UpdateConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/commands/UpdateUserCommand.ts b/clients/client-mq/src/commands/UpdateUserCommand.ts index d57e1f65700ef..2fb3e956b8eed 100644 --- a/clients/client-mq/src/commands/UpdateUserCommand.ts +++ b/clients/client-mq/src/commands/UpdateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; -import { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; +import type { MqClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MqClient"; import { UpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-mq/src/endpoint/EndpointParameters.ts b/clients/client-mq/src/endpoint/EndpointParameters.ts index 2c57895c7c666..447522f2aacdb 100644 --- a/clients/client-mq/src/endpoint/EndpointParameters.ts +++ b/clients/client-mq/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mq/src/endpoint/endpointResolver.ts b/clients/client-mq/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mq/src/endpoint/endpointResolver.ts +++ b/clients/client-mq/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mq/src/extensionConfiguration.ts b/clients/client-mq/src/extensionConfiguration.ts index 1d198b53dabbd..83f1e9bf20650 100644 --- a/clients/client-mq/src/extensionConfiguration.ts +++ b/clients/client-mq/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mq/src/models/MqServiceException.ts b/clients/client-mq/src/models/MqServiceException.ts index 118c9d9ec6e30..ed732e314b9d6 100644 --- a/clients/client-mq/src/models/MqServiceException.ts +++ b/clients/client-mq/src/models/MqServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mq/src/models/errors.ts b/clients/client-mq/src/models/errors.ts index 1cf2f66f41b99..e0e4b32ce4ffb 100644 --- a/clients/client-mq/src/models/errors.ts +++ b/clients/client-mq/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MqServiceException as __BaseException } from "./MqServiceException"; diff --git a/clients/client-mq/src/pagination/Interfaces.ts b/clients/client-mq/src/pagination/Interfaces.ts index 27d90a7b41988..f80633469a739 100644 --- a/clients/client-mq/src/pagination/Interfaces.ts +++ b/clients/client-mq/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MqClient } from "../MqClient"; diff --git a/clients/client-mq/src/pagination/ListBrokersPaginator.ts b/clients/client-mq/src/pagination/ListBrokersPaginator.ts index 714c3650cf4af..5623a7672a285 100644 --- a/clients/client-mq/src/pagination/ListBrokersPaginator.ts +++ b/clients/client-mq/src/pagination/ListBrokersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBrokersCommand, ListBrokersCommandInput, ListBrokersCommandOutput } from "../commands/ListBrokersCommand"; import { MqClient } from "../MqClient"; diff --git a/clients/client-mq/src/runtimeConfig.browser.ts b/clients/client-mq/src/runtimeConfig.browser.ts index c941be8a5680d..13b494f37f6cc 100644 --- a/clients/client-mq/src/runtimeConfig.browser.ts +++ b/clients/client-mq/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MqClientConfig } from "./MqClient"; + +import type { MqClientConfig } from "./MqClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mq/src/runtimeConfig.native.ts b/clients/client-mq/src/runtimeConfig.native.ts index e4e2340fd583e..381d7058540bf 100644 --- a/clients/client-mq/src/runtimeConfig.native.ts +++ b/clients/client-mq/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MqClientConfig } from "./MqClient"; +import type { MqClientConfig } from "./MqClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mq/src/runtimeConfig.shared.ts b/clients/client-mq/src/runtimeConfig.shared.ts index 36c10262bc14a..0129adf29dabe 100644 --- a/clients/client-mq/src/runtimeConfig.shared.ts +++ b/clients/client-mq/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMqHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MqClientConfig } from "./MqClient"; +import type { MqClientConfig } from "./MqClient"; /** * @internal diff --git a/clients/client-mq/src/runtimeConfig.ts b/clients/client-mq/src/runtimeConfig.ts index 6d3e4496f3180..4f707e9ae8cb8 100644 --- a/clients/client-mq/src/runtimeConfig.ts +++ b/clients/client-mq/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MqClientConfig } from "./MqClient"; + +import type { MqClientConfig } from "./MqClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mq/src/runtimeExtensions.ts b/clients/client-mq/src/runtimeExtensions.ts index 88e8015cf9767..3c075873bf840 100644 --- a/clients/client-mq/src/runtimeExtensions.ts +++ b/clients/client-mq/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MqExtensionConfiguration } from "./extensionConfiguration"; +import type { MqExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mq/src/schemas/schemas_0.ts b/clients/client-mq/src/schemas/schemas_0.ts index 30bcc08274d6b..88db74a165122 100644 --- a/clients/client-mq/src/schemas/schemas_0.ts +++ b/clients/client-mq/src/schemas/schemas_0.ts @@ -316,7 +316,7 @@ const n0 = "com.amazonaws.mq"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-mturk/package.json b/clients/client-mturk/package.json index 08632478c8164..6bf1ac7ca824b 100644 --- a/clients/client-mturk/package.json +++ b/clients/client-mturk/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mturk/src/MTurk.ts b/clients/client-mturk/src/MTurk.ts index 7220852c5866c..4a6066c16880d 100644 --- a/clients/client-mturk/src/MTurk.ts +++ b/clients/client-mturk/src/MTurk.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptQualificationRequestCommand, @@ -177,7 +177,7 @@ import { UpdateQualificationTypeCommandInput, UpdateQualificationTypeCommandOutput, } from "./commands/UpdateQualificationTypeCommand"; -import { MTurkClient, MTurkClientConfig } from "./MTurkClient"; +import { MTurkClient } from "./MTurkClient"; const commands = { AcceptQualificationRequestCommand, diff --git a/clients/client-mturk/src/MTurkClient.ts b/clients/client-mturk/src/MTurkClient.ts index bb82a9aae1461..036362fee6d8f 100644 --- a/clients/client-mturk/src/MTurkClient.ts +++ b/clients/client-mturk/src/MTurkClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMTurkHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -166,7 +175,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mturk/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mturk/src/auth/httpAuthExtensionConfiguration.ts index 40511050c2155..c5c04c74a1573 100644 --- a/clients/client-mturk/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mturk/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MTurkHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MTurkHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mturk/src/auth/httpAuthSchemeProvider.ts b/clients/client-mturk/src/auth/httpAuthSchemeProvider.ts index 2f65caee19262..a279e74d73d32 100644 --- a/clients/client-mturk/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mturk/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MTurkClientConfig, MTurkClientResolvedConfig } from "../MTurkClient"; +import { type MTurkClientResolvedConfig, MTurkClientConfig } from "../MTurkClient"; /** * @internal diff --git a/clients/client-mturk/src/commands/AcceptQualificationRequestCommand.ts b/clients/client-mturk/src/commands/AcceptQualificationRequestCommand.ts index 3e5272e3ade30..126d4d7968e91 100644 --- a/clients/client-mturk/src/commands/AcceptQualificationRequestCommand.ts +++ b/clients/client-mturk/src/commands/AcceptQualificationRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptQualificationRequestRequest, AcceptQualificationRequestResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { AcceptQualificationRequestRequest, AcceptQualificationRequestResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { AcceptQualificationRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ApproveAssignmentCommand.ts b/clients/client-mturk/src/commands/ApproveAssignmentCommand.ts index 3a1c9a49e8bbe..d579f3cdc254a 100644 --- a/clients/client-mturk/src/commands/ApproveAssignmentCommand.ts +++ b/clients/client-mturk/src/commands/ApproveAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApproveAssignmentRequest, ApproveAssignmentResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ApproveAssignmentRequest, ApproveAssignmentResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ApproveAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/AssociateQualificationWithWorkerCommand.ts b/clients/client-mturk/src/commands/AssociateQualificationWithWorkerCommand.ts index 5bfd901b0c5b5..41e95d48da44b 100644 --- a/clients/client-mturk/src/commands/AssociateQualificationWithWorkerCommand.ts +++ b/clients/client-mturk/src/commands/AssociateQualificationWithWorkerCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateQualificationWithWorkerRequest, AssociateQualificationWithWorkerResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { + AssociateQualificationWithWorkerRequest, + AssociateQualificationWithWorkerResponse, +} from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { AssociateQualificationWithWorker } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/CreateAdditionalAssignmentsForHITCommand.ts b/clients/client-mturk/src/commands/CreateAdditionalAssignmentsForHITCommand.ts index 6a9ff4fe2aea5..6ee69720b29fa 100644 --- a/clients/client-mturk/src/commands/CreateAdditionalAssignmentsForHITCommand.ts +++ b/clients/client-mturk/src/commands/CreateAdditionalAssignmentsForHITCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateAdditionalAssignmentsForHITRequest, CreateAdditionalAssignmentsForHITResponse, } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { CreateAdditionalAssignmentsForHIT } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/CreateHITCommand.ts b/clients/client-mturk/src/commands/CreateHITCommand.ts index 7256bfdecacee..6dc631e1080da 100644 --- a/clients/client-mturk/src/commands/CreateHITCommand.ts +++ b/clients/client-mturk/src/commands/CreateHITCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHITRequest, CreateHITResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { CreateHITRequest, CreateHITResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { CreateHIT } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/CreateHITTypeCommand.ts b/clients/client-mturk/src/commands/CreateHITTypeCommand.ts index e2c6d5c8be99b..35207fffa1e3d 100644 --- a/clients/client-mturk/src/commands/CreateHITTypeCommand.ts +++ b/clients/client-mturk/src/commands/CreateHITTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHITTypeRequest, CreateHITTypeResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { CreateHITTypeRequest, CreateHITTypeResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { CreateHITType } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/CreateHITWithHITTypeCommand.ts b/clients/client-mturk/src/commands/CreateHITWithHITTypeCommand.ts index f2fa58a1e611d..e630ade431edb 100644 --- a/clients/client-mturk/src/commands/CreateHITWithHITTypeCommand.ts +++ b/clients/client-mturk/src/commands/CreateHITWithHITTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHITWithHITTypeRequest, CreateHITWithHITTypeResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { CreateHITWithHITTypeRequest, CreateHITWithHITTypeResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { CreateHITWithHITType } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/CreateQualificationTypeCommand.ts b/clients/client-mturk/src/commands/CreateQualificationTypeCommand.ts index d298fb5afa259..3801a91a5fcea 100644 --- a/clients/client-mturk/src/commands/CreateQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/CreateQualificationTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQualificationTypeRequest, CreateQualificationTypeResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { CreateQualificationTypeRequest, CreateQualificationTypeResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { CreateQualificationType } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/CreateWorkerBlockCommand.ts b/clients/client-mturk/src/commands/CreateWorkerBlockCommand.ts index 94a214b113625..c357e9bea0a00 100644 --- a/clients/client-mturk/src/commands/CreateWorkerBlockCommand.ts +++ b/clients/client-mturk/src/commands/CreateWorkerBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkerBlockRequest, CreateWorkerBlockResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { CreateWorkerBlockRequest, CreateWorkerBlockResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { CreateWorkerBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/DeleteHITCommand.ts b/clients/client-mturk/src/commands/DeleteHITCommand.ts index fc430ff8a3ede..8f1dbbc712678 100644 --- a/clients/client-mturk/src/commands/DeleteHITCommand.ts +++ b/clients/client-mturk/src/commands/DeleteHITCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHITRequest, DeleteHITResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { DeleteHITRequest, DeleteHITResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { DeleteHIT } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/DeleteQualificationTypeCommand.ts b/clients/client-mturk/src/commands/DeleteQualificationTypeCommand.ts index f7c19cbbd3257..e94e9c8a955d0 100644 --- a/clients/client-mturk/src/commands/DeleteQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/DeleteQualificationTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQualificationTypeRequest, DeleteQualificationTypeResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { DeleteQualificationTypeRequest, DeleteQualificationTypeResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { DeleteQualificationType } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/DeleteWorkerBlockCommand.ts b/clients/client-mturk/src/commands/DeleteWorkerBlockCommand.ts index 4a3a14c075571..36dd57c931e03 100644 --- a/clients/client-mturk/src/commands/DeleteWorkerBlockCommand.ts +++ b/clients/client-mturk/src/commands/DeleteWorkerBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkerBlockRequest, DeleteWorkerBlockResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { DeleteWorkerBlockRequest, DeleteWorkerBlockResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { DeleteWorkerBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/DisassociateQualificationFromWorkerCommand.ts b/clients/client-mturk/src/commands/DisassociateQualificationFromWorkerCommand.ts index 51e74c6334f68..d23db879aa144 100644 --- a/clients/client-mturk/src/commands/DisassociateQualificationFromWorkerCommand.ts +++ b/clients/client-mturk/src/commands/DisassociateQualificationFromWorkerCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateQualificationFromWorkerRequest, DisassociateQualificationFromWorkerResponse, } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { DisassociateQualificationFromWorker } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/GetAccountBalanceCommand.ts b/clients/client-mturk/src/commands/GetAccountBalanceCommand.ts index 02c520faaa69e..05f55bcb1f3ea 100644 --- a/clients/client-mturk/src/commands/GetAccountBalanceCommand.ts +++ b/clients/client-mturk/src/commands/GetAccountBalanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountBalanceRequest, GetAccountBalanceResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { GetAccountBalanceRequest, GetAccountBalanceResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { GetAccountBalance } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/GetAssignmentCommand.ts b/clients/client-mturk/src/commands/GetAssignmentCommand.ts index aa8e00d2e00ac..273d2fc33237f 100644 --- a/clients/client-mturk/src/commands/GetAssignmentCommand.ts +++ b/clients/client-mturk/src/commands/GetAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssignmentRequest, GetAssignmentResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { GetAssignmentRequest, GetAssignmentResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { GetAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/GetFileUploadURLCommand.ts b/clients/client-mturk/src/commands/GetFileUploadURLCommand.ts index 1d5935d07e8f1..ce623ba38f219 100644 --- a/clients/client-mturk/src/commands/GetFileUploadURLCommand.ts +++ b/clients/client-mturk/src/commands/GetFileUploadURLCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFileUploadURLRequest, GetFileUploadURLResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { GetFileUploadURLRequest, GetFileUploadURLResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { GetFileUploadURL } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/GetHITCommand.ts b/clients/client-mturk/src/commands/GetHITCommand.ts index 0375d4037c8c6..e4132d3cb9e39 100644 --- a/clients/client-mturk/src/commands/GetHITCommand.ts +++ b/clients/client-mturk/src/commands/GetHITCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHITRequest, GetHITResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { GetHITRequest, GetHITResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { GetHIT } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/GetQualificationScoreCommand.ts b/clients/client-mturk/src/commands/GetQualificationScoreCommand.ts index 2f739cff1ebdf..5f5f9c614600b 100644 --- a/clients/client-mturk/src/commands/GetQualificationScoreCommand.ts +++ b/clients/client-mturk/src/commands/GetQualificationScoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQualificationScoreRequest, GetQualificationScoreResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { GetQualificationScoreRequest, GetQualificationScoreResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { GetQualificationScore } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/GetQualificationTypeCommand.ts b/clients/client-mturk/src/commands/GetQualificationTypeCommand.ts index b45d3d81aec90..5164cae375834 100644 --- a/clients/client-mturk/src/commands/GetQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/GetQualificationTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQualificationTypeRequest, GetQualificationTypeResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { GetQualificationTypeRequest, GetQualificationTypeResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { GetQualificationType } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListAssignmentsForHITCommand.ts b/clients/client-mturk/src/commands/ListAssignmentsForHITCommand.ts index a193e5b2653fb..9e4bf4c655218 100644 --- a/clients/client-mturk/src/commands/ListAssignmentsForHITCommand.ts +++ b/clients/client-mturk/src/commands/ListAssignmentsForHITCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssignmentsForHITRequest, ListAssignmentsForHITResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ListAssignmentsForHITRequest, ListAssignmentsForHITResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListAssignmentsForHIT } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListBonusPaymentsCommand.ts b/clients/client-mturk/src/commands/ListBonusPaymentsCommand.ts index 65a7a819b7b99..5edd2b9d551c6 100644 --- a/clients/client-mturk/src/commands/ListBonusPaymentsCommand.ts +++ b/clients/client-mturk/src/commands/ListBonusPaymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBonusPaymentsRequest, ListBonusPaymentsResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ListBonusPaymentsRequest, ListBonusPaymentsResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListBonusPayments } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListHITsCommand.ts b/clients/client-mturk/src/commands/ListHITsCommand.ts index a2275b7ac4772..1fa3ebdf762ae 100644 --- a/clients/client-mturk/src/commands/ListHITsCommand.ts +++ b/clients/client-mturk/src/commands/ListHITsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHITsRequest, ListHITsResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ListHITsRequest, ListHITsResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListHITs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListHITsForQualificationTypeCommand.ts b/clients/client-mturk/src/commands/ListHITsForQualificationTypeCommand.ts index 9f866e2c3e61a..5c30208a1f0ab 100644 --- a/clients/client-mturk/src/commands/ListHITsForQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/ListHITsForQualificationTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHITsForQualificationTypeRequest, ListHITsForQualificationTypeResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ListHITsForQualificationTypeRequest, ListHITsForQualificationTypeResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListHITsForQualificationType } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListQualificationRequestsCommand.ts b/clients/client-mturk/src/commands/ListQualificationRequestsCommand.ts index 16b86b1fc998b..a76b10e529d48 100644 --- a/clients/client-mturk/src/commands/ListQualificationRequestsCommand.ts +++ b/clients/client-mturk/src/commands/ListQualificationRequestsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQualificationRequestsRequest, ListQualificationRequestsResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ListQualificationRequestsRequest, ListQualificationRequestsResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListQualificationRequests } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListQualificationTypesCommand.ts b/clients/client-mturk/src/commands/ListQualificationTypesCommand.ts index 70e1e418e1c10..b4241dfc6b1eb 100644 --- a/clients/client-mturk/src/commands/ListQualificationTypesCommand.ts +++ b/clients/client-mturk/src/commands/ListQualificationTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQualificationTypesRequest, ListQualificationTypesResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ListQualificationTypesRequest, ListQualificationTypesResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListQualificationTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListReviewPolicyResultsForHITCommand.ts b/clients/client-mturk/src/commands/ListReviewPolicyResultsForHITCommand.ts index 1b49c20e11d27..fe1ad13c606bf 100644 --- a/clients/client-mturk/src/commands/ListReviewPolicyResultsForHITCommand.ts +++ b/clients/client-mturk/src/commands/ListReviewPolicyResultsForHITCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReviewPolicyResultsForHITRequest, ListReviewPolicyResultsForHITResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ListReviewPolicyResultsForHITRequest, ListReviewPolicyResultsForHITResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListReviewPolicyResultsForHIT } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListReviewableHITsCommand.ts b/clients/client-mturk/src/commands/ListReviewableHITsCommand.ts index 93c38410b2868..29379b99c3cff 100644 --- a/clients/client-mturk/src/commands/ListReviewableHITsCommand.ts +++ b/clients/client-mturk/src/commands/ListReviewableHITsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReviewableHITsRequest, ListReviewableHITsResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ListReviewableHITsRequest, ListReviewableHITsResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListReviewableHITs } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListWorkerBlocksCommand.ts b/clients/client-mturk/src/commands/ListWorkerBlocksCommand.ts index 3feb8b8b21ec5..5f786cf5dde82 100644 --- a/clients/client-mturk/src/commands/ListWorkerBlocksCommand.ts +++ b/clients/client-mturk/src/commands/ListWorkerBlocksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkerBlocksRequest, ListWorkerBlocksResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { ListWorkerBlocksRequest, ListWorkerBlocksResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListWorkerBlocks } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/ListWorkersWithQualificationTypeCommand.ts b/clients/client-mturk/src/commands/ListWorkersWithQualificationTypeCommand.ts index ba5e65c8bd915..9f170cbb6cf92 100644 --- a/clients/client-mturk/src/commands/ListWorkersWithQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/ListWorkersWithQualificationTypeCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkersWithQualificationTypeRequest, ListWorkersWithQualificationTypeResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { + ListWorkersWithQualificationTypeRequest, + ListWorkersWithQualificationTypeResponse, +} from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { ListWorkersWithQualificationType } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/NotifyWorkersCommand.ts b/clients/client-mturk/src/commands/NotifyWorkersCommand.ts index db805fe7dba36..ff9ba24d31cc6 100644 --- a/clients/client-mturk/src/commands/NotifyWorkersCommand.ts +++ b/clients/client-mturk/src/commands/NotifyWorkersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NotifyWorkersRequest, NotifyWorkersResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { NotifyWorkersRequest, NotifyWorkersResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { NotifyWorkers } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/RejectAssignmentCommand.ts b/clients/client-mturk/src/commands/RejectAssignmentCommand.ts index 4652e2c2f7d18..e55b557dc540b 100644 --- a/clients/client-mturk/src/commands/RejectAssignmentCommand.ts +++ b/clients/client-mturk/src/commands/RejectAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectAssignmentRequest, RejectAssignmentResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { RejectAssignmentRequest, RejectAssignmentResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { RejectAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/RejectQualificationRequestCommand.ts b/clients/client-mturk/src/commands/RejectQualificationRequestCommand.ts index 24951fafc5dc7..bc801cf264510 100644 --- a/clients/client-mturk/src/commands/RejectQualificationRequestCommand.ts +++ b/clients/client-mturk/src/commands/RejectQualificationRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectQualificationRequestRequest, RejectQualificationRequestResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { RejectQualificationRequestRequest, RejectQualificationRequestResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { RejectQualificationRequest } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/SendBonusCommand.ts b/clients/client-mturk/src/commands/SendBonusCommand.ts index b0ffadc153dcb..d9fcbc242b13a 100644 --- a/clients/client-mturk/src/commands/SendBonusCommand.ts +++ b/clients/client-mturk/src/commands/SendBonusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendBonusRequest, SendBonusResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { SendBonusRequest, SendBonusResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { SendBonus } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/SendTestEventNotificationCommand.ts b/clients/client-mturk/src/commands/SendTestEventNotificationCommand.ts index f1ff946e5d86c..f70c9b3c9cbcd 100644 --- a/clients/client-mturk/src/commands/SendTestEventNotificationCommand.ts +++ b/clients/client-mturk/src/commands/SendTestEventNotificationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendTestEventNotificationRequest, SendTestEventNotificationResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { SendTestEventNotificationRequest, SendTestEventNotificationResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { SendTestEventNotification } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/UpdateExpirationForHITCommand.ts b/clients/client-mturk/src/commands/UpdateExpirationForHITCommand.ts index 683fae242d4d4..e0a3de5d75beb 100644 --- a/clients/client-mturk/src/commands/UpdateExpirationForHITCommand.ts +++ b/clients/client-mturk/src/commands/UpdateExpirationForHITCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateExpirationForHITRequest, UpdateExpirationForHITResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { UpdateExpirationForHITRequest, UpdateExpirationForHITResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { UpdateExpirationForHIT } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/UpdateHITReviewStatusCommand.ts b/clients/client-mturk/src/commands/UpdateHITReviewStatusCommand.ts index 4ba560bc87269..88a8268e2408d 100644 --- a/clients/client-mturk/src/commands/UpdateHITReviewStatusCommand.ts +++ b/clients/client-mturk/src/commands/UpdateHITReviewStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHITReviewStatusRequest, UpdateHITReviewStatusResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { UpdateHITReviewStatusRequest, UpdateHITReviewStatusResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { UpdateHITReviewStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/UpdateHITTypeOfHITCommand.ts b/clients/client-mturk/src/commands/UpdateHITTypeOfHITCommand.ts index 1129ca8d2a6e6..c46d6f17f2f79 100644 --- a/clients/client-mturk/src/commands/UpdateHITTypeOfHITCommand.ts +++ b/clients/client-mturk/src/commands/UpdateHITTypeOfHITCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHITTypeOfHITRequest, UpdateHITTypeOfHITResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { UpdateHITTypeOfHITRequest, UpdateHITTypeOfHITResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { UpdateHITTypeOfHIT } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/UpdateNotificationSettingsCommand.ts b/clients/client-mturk/src/commands/UpdateNotificationSettingsCommand.ts index 3f6fe0ae8f764..088526379f473 100644 --- a/clients/client-mturk/src/commands/UpdateNotificationSettingsCommand.ts +++ b/clients/client-mturk/src/commands/UpdateNotificationSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNotificationSettingsRequest, UpdateNotificationSettingsResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { UpdateNotificationSettingsRequest, UpdateNotificationSettingsResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { UpdateNotificationSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/commands/UpdateQualificationTypeCommand.ts b/clients/client-mturk/src/commands/UpdateQualificationTypeCommand.ts index 32b2e58e71dbe..aa3b0dc3ea8de 100644 --- a/clients/client-mturk/src/commands/UpdateQualificationTypeCommand.ts +++ b/clients/client-mturk/src/commands/UpdateQualificationTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQualificationTypeRequest, UpdateQualificationTypeResponse } from "../models/models_0"; -import { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; +import type { UpdateQualificationTypeRequest, UpdateQualificationTypeResponse } from "../models/models_0"; +import type { MTurkClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MTurkClient"; import { UpdateQualificationType } from "../schemas/schemas_0"; /** diff --git a/clients/client-mturk/src/endpoint/EndpointParameters.ts b/clients/client-mturk/src/endpoint/EndpointParameters.ts index 6f77f1f2c8e77..9562e12ec2d50 100644 --- a/clients/client-mturk/src/endpoint/EndpointParameters.ts +++ b/clients/client-mturk/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mturk/src/endpoint/endpointResolver.ts b/clients/client-mturk/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mturk/src/endpoint/endpointResolver.ts +++ b/clients/client-mturk/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mturk/src/extensionConfiguration.ts b/clients/client-mturk/src/extensionConfiguration.ts index 3c9e75408199f..673cb11b2ab5a 100644 --- a/clients/client-mturk/src/extensionConfiguration.ts +++ b/clients/client-mturk/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mturk/src/models/MTurkServiceException.ts b/clients/client-mturk/src/models/MTurkServiceException.ts index baf413409d7d8..2e3301ae1ce1c 100644 --- a/clients/client-mturk/src/models/MTurkServiceException.ts +++ b/clients/client-mturk/src/models/MTurkServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mturk/src/models/errors.ts b/clients/client-mturk/src/models/errors.ts index 4680c886879f1..8502260792c2f 100644 --- a/clients/client-mturk/src/models/errors.ts +++ b/clients/client-mturk/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MTurkServiceException as __BaseException } from "./MTurkServiceException"; diff --git a/clients/client-mturk/src/pagination/Interfaces.ts b/clients/client-mturk/src/pagination/Interfaces.ts index 23e79557aee61..b884520dbccb4 100644 --- a/clients/client-mturk/src/pagination/Interfaces.ts +++ b/clients/client-mturk/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MTurkClient } from "../MTurkClient"; diff --git a/clients/client-mturk/src/pagination/ListAssignmentsForHITPaginator.ts b/clients/client-mturk/src/pagination/ListAssignmentsForHITPaginator.ts index 97acf036b36bd..b78155f2411fe 100644 --- a/clients/client-mturk/src/pagination/ListAssignmentsForHITPaginator.ts +++ b/clients/client-mturk/src/pagination/ListAssignmentsForHITPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssignmentsForHITCommand, diff --git a/clients/client-mturk/src/pagination/ListBonusPaymentsPaginator.ts b/clients/client-mturk/src/pagination/ListBonusPaymentsPaginator.ts index e66d6dc46e99d..41f5ef29e2615 100644 --- a/clients/client-mturk/src/pagination/ListBonusPaymentsPaginator.ts +++ b/clients/client-mturk/src/pagination/ListBonusPaymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBonusPaymentsCommand, diff --git a/clients/client-mturk/src/pagination/ListHITsForQualificationTypePaginator.ts b/clients/client-mturk/src/pagination/ListHITsForQualificationTypePaginator.ts index d317598f407e3..be08ab14527e7 100644 --- a/clients/client-mturk/src/pagination/ListHITsForQualificationTypePaginator.ts +++ b/clients/client-mturk/src/pagination/ListHITsForQualificationTypePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHITsForQualificationTypeCommand, diff --git a/clients/client-mturk/src/pagination/ListHITsPaginator.ts b/clients/client-mturk/src/pagination/ListHITsPaginator.ts index 76c28d25f88d9..1b94e119742f5 100644 --- a/clients/client-mturk/src/pagination/ListHITsPaginator.ts +++ b/clients/client-mturk/src/pagination/ListHITsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHITsCommand, ListHITsCommandInput, ListHITsCommandOutput } from "../commands/ListHITsCommand"; import { MTurkClient } from "../MTurkClient"; diff --git a/clients/client-mturk/src/pagination/ListQualificationRequestsPaginator.ts b/clients/client-mturk/src/pagination/ListQualificationRequestsPaginator.ts index 005f22ca6f0f1..7c76873bd2967 100644 --- a/clients/client-mturk/src/pagination/ListQualificationRequestsPaginator.ts +++ b/clients/client-mturk/src/pagination/ListQualificationRequestsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQualificationRequestsCommand, diff --git a/clients/client-mturk/src/pagination/ListQualificationTypesPaginator.ts b/clients/client-mturk/src/pagination/ListQualificationTypesPaginator.ts index 6e38594cde570..c65c0576096f8 100644 --- a/clients/client-mturk/src/pagination/ListQualificationTypesPaginator.ts +++ b/clients/client-mturk/src/pagination/ListQualificationTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQualificationTypesCommand, diff --git a/clients/client-mturk/src/pagination/ListReviewPolicyResultsForHITPaginator.ts b/clients/client-mturk/src/pagination/ListReviewPolicyResultsForHITPaginator.ts index b77d3ca8ed0bc..ecf416c1167c4 100644 --- a/clients/client-mturk/src/pagination/ListReviewPolicyResultsForHITPaginator.ts +++ b/clients/client-mturk/src/pagination/ListReviewPolicyResultsForHITPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReviewPolicyResultsForHITCommand, diff --git a/clients/client-mturk/src/pagination/ListReviewableHITsPaginator.ts b/clients/client-mturk/src/pagination/ListReviewableHITsPaginator.ts index dffd086a30372..2f41ce4f8ce99 100644 --- a/clients/client-mturk/src/pagination/ListReviewableHITsPaginator.ts +++ b/clients/client-mturk/src/pagination/ListReviewableHITsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReviewableHITsCommand, diff --git a/clients/client-mturk/src/pagination/ListWorkerBlocksPaginator.ts b/clients/client-mturk/src/pagination/ListWorkerBlocksPaginator.ts index 6970450ef6bc7..5021d6637b289 100644 --- a/clients/client-mturk/src/pagination/ListWorkerBlocksPaginator.ts +++ b/clients/client-mturk/src/pagination/ListWorkerBlocksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkerBlocksCommand, diff --git a/clients/client-mturk/src/pagination/ListWorkersWithQualificationTypePaginator.ts b/clients/client-mturk/src/pagination/ListWorkersWithQualificationTypePaginator.ts index b907c67708c28..49dd3b1bf5050 100644 --- a/clients/client-mturk/src/pagination/ListWorkersWithQualificationTypePaginator.ts +++ b/clients/client-mturk/src/pagination/ListWorkersWithQualificationTypePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkersWithQualificationTypeCommand, diff --git a/clients/client-mturk/src/runtimeConfig.browser.ts b/clients/client-mturk/src/runtimeConfig.browser.ts index 3fa516e881ff0..e21680d72cda6 100644 --- a/clients/client-mturk/src/runtimeConfig.browser.ts +++ b/clients/client-mturk/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MTurkClientConfig } from "./MTurkClient"; + +import type { MTurkClientConfig } from "./MTurkClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mturk/src/runtimeConfig.native.ts b/clients/client-mturk/src/runtimeConfig.native.ts index dfe6ae46b6f61..54562b5b8379b 100644 --- a/clients/client-mturk/src/runtimeConfig.native.ts +++ b/clients/client-mturk/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MTurkClientConfig } from "./MTurkClient"; +import type { MTurkClientConfig } from "./MTurkClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mturk/src/runtimeConfig.shared.ts b/clients/client-mturk/src/runtimeConfig.shared.ts index fea79d92785d6..ea15ffc3a4a78 100644 --- a/clients/client-mturk/src/runtimeConfig.shared.ts +++ b/clients/client-mturk/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMTurkHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MTurkClientConfig } from "./MTurkClient"; +import type { MTurkClientConfig } from "./MTurkClient"; /** * @internal diff --git a/clients/client-mturk/src/runtimeConfig.ts b/clients/client-mturk/src/runtimeConfig.ts index 0661761c5b941..06cf5ff3d5e74 100644 --- a/clients/client-mturk/src/runtimeConfig.ts +++ b/clients/client-mturk/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MTurkClientConfig } from "./MTurkClient"; + +import type { MTurkClientConfig } from "./MTurkClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mturk/src/runtimeExtensions.ts b/clients/client-mturk/src/runtimeExtensions.ts index e1e53d26e5dc7..b5e4d03de3b8e 100644 --- a/clients/client-mturk/src/runtimeExtensions.ts +++ b/clients/client-mturk/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MTurkExtensionConfiguration } from "./extensionConfiguration"; +import type { MTurkExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mturk/src/schemas/schemas_0.ts b/clients/client-mturk/src/schemas/schemas_0.ts index 7f4ea94774e4e..6a71c8206017e 100644 --- a/clients/client-mturk/src/schemas/schemas_0.ts +++ b/clients/client-mturk/src/schemas/schemas_0.ts @@ -282,7 +282,7 @@ const n0 = "com.amazonaws.mturk"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { RequestError as __RequestError, ServiceFault as __ServiceFault } from "../models/errors"; import { MTurkServiceException as __MTurkServiceException } from "../models/MTurkServiceException"; diff --git a/clients/client-mwaa-serverless/package.json b/clients/client-mwaa-serverless/package.json index 738156ff77a25..24df171488c08 100644 --- a/clients/client-mwaa-serverless/package.json +++ b/clients/client-mwaa-serverless/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mwaa-serverless/src/MWAAServerless.ts b/clients/client-mwaa-serverless/src/MWAAServerless.ts index bda470b7bbb3a..c61bc8a9542fc 100644 --- a/clients/client-mwaa-serverless/src/MWAAServerless.ts +++ b/clients/client-mwaa-serverless/src/MWAAServerless.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateWorkflowCommand, @@ -69,7 +69,7 @@ import { UpdateWorkflowCommandInput, UpdateWorkflowCommandOutput, } from "./commands/UpdateWorkflowCommand"; -import { MWAAServerlessClient, MWAAServerlessClientConfig } from "./MWAAServerlessClient"; +import { MWAAServerlessClient } from "./MWAAServerlessClient"; const commands = { CreateWorkflowCommand, diff --git a/clients/client-mwaa-serverless/src/MWAAServerlessClient.ts b/clients/client-mwaa-serverless/src/MWAAServerlessClient.ts index 07dbe40552ef7..bbacbb8379d67 100644 --- a/clients/client-mwaa-serverless/src/MWAAServerlessClient.ts +++ b/clients/client-mwaa-serverless/src/MWAAServerlessClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMWAAServerlessHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateWorkflowCommandInput, CreateWorkflowCommandOutput } from "./commands/CreateWorkflowCommand"; @@ -85,7 +94,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mwaa-serverless/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mwaa-serverless/src/auth/httpAuthExtensionConfiguration.ts index 67148f094daf8..9238c0f542ae4 100644 --- a/clients/client-mwaa-serverless/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mwaa-serverless/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MWAAServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MWAAServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mwaa-serverless/src/auth/httpAuthSchemeProvider.ts b/clients/client-mwaa-serverless/src/auth/httpAuthSchemeProvider.ts index 61302e4e6bf66..c8634c4a525ef 100644 --- a/clients/client-mwaa-serverless/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mwaa-serverless/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MWAAServerlessClientConfig, MWAAServerlessClientResolvedConfig } from "../MWAAServerlessClient"; +import { type MWAAServerlessClientResolvedConfig, MWAAServerlessClientConfig } from "../MWAAServerlessClient"; /** * @internal diff --git a/clients/client-mwaa-serverless/src/commands/CreateWorkflowCommand.ts b/clients/client-mwaa-serverless/src/commands/CreateWorkflowCommand.ts index bff77e87a73f4..09afaf6fc719c 100644 --- a/clients/client-mwaa-serverless/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/CreateWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { CreateWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/DeleteWorkflowCommand.ts b/clients/client-mwaa-serverless/src/commands/DeleteWorkflowCommand.ts index ab4600e52c424..4132c6f8bde76 100644 --- a/clients/client-mwaa-serverless/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/DeleteWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { DeleteWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/GetTaskInstanceCommand.ts b/clients/client-mwaa-serverless/src/commands/GetTaskInstanceCommand.ts index 440439237c994..d9a656d07e330 100644 --- a/clients/client-mwaa-serverless/src/commands/GetTaskInstanceCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/GetTaskInstanceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTaskInstanceRequest, GetTaskInstanceResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { GetTaskInstanceRequest, GetTaskInstanceResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { GetTaskInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/GetWorkflowCommand.ts b/clients/client-mwaa-serverless/src/commands/GetWorkflowCommand.ts index 293639aa872e7..d26d501903635 100644 --- a/clients/client-mwaa-serverless/src/commands/GetWorkflowCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/GetWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { GetWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/GetWorkflowRunCommand.ts b/clients/client-mwaa-serverless/src/commands/GetWorkflowRunCommand.ts index 35b2ba596e5cb..cc2775fa387e3 100644 --- a/clients/client-mwaa-serverless/src/commands/GetWorkflowRunCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/GetWorkflowRunCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkflowRunRequest, GetWorkflowRunResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { GetWorkflowRunRequest, GetWorkflowRunResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { GetWorkflowRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/ListTagsForResourceCommand.ts b/clients/client-mwaa-serverless/src/commands/ListTagsForResourceCommand.ts index 3aed45c4e2b77..e007bbf464ff8 100644 --- a/clients/client-mwaa-serverless/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/ListTaskInstancesCommand.ts b/clients/client-mwaa-serverless/src/commands/ListTaskInstancesCommand.ts index b2e349be3b872..f301018efd6db 100644 --- a/clients/client-mwaa-serverless/src/commands/ListTaskInstancesCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/ListTaskInstancesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTaskInstancesRequest, ListTaskInstancesResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { ListTaskInstancesRequest, ListTaskInstancesResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { ListTaskInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/ListWorkflowRunsCommand.ts b/clients/client-mwaa-serverless/src/commands/ListWorkflowRunsCommand.ts index c518c1ac2ce9b..bf18fad4462bf 100644 --- a/clients/client-mwaa-serverless/src/commands/ListWorkflowRunsCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/ListWorkflowRunsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowRunsRequest, ListWorkflowRunsResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { ListWorkflowRunsRequest, ListWorkflowRunsResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { ListWorkflowRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/ListWorkflowVersionsCommand.ts b/clients/client-mwaa-serverless/src/commands/ListWorkflowVersionsCommand.ts index 4854539c9275f..c189ba8a3a4f3 100644 --- a/clients/client-mwaa-serverless/src/commands/ListWorkflowVersionsCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/ListWorkflowVersionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowVersionsRequest, ListWorkflowVersionsResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { ListWorkflowVersionsRequest, ListWorkflowVersionsResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { ListWorkflowVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/ListWorkflowsCommand.ts b/clients/client-mwaa-serverless/src/commands/ListWorkflowsCommand.ts index 43fbed2801f44..7828bc706c5a9 100644 --- a/clients/client-mwaa-serverless/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/ListWorkflowsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { ListWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/StartWorkflowRunCommand.ts b/clients/client-mwaa-serverless/src/commands/StartWorkflowRunCommand.ts index b30ac7e1a119c..2d1c052b61ff6 100644 --- a/clients/client-mwaa-serverless/src/commands/StartWorkflowRunCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/StartWorkflowRunCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartWorkflowRunRequest, StartWorkflowRunResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { StartWorkflowRunRequest, StartWorkflowRunResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { StartWorkflowRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/StopWorkflowRunCommand.ts b/clients/client-mwaa-serverless/src/commands/StopWorkflowRunCommand.ts index 2dbc55543b538..766ebd3ab959c 100644 --- a/clients/client-mwaa-serverless/src/commands/StopWorkflowRunCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/StopWorkflowRunCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopWorkflowRunRequest, StopWorkflowRunResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { StopWorkflowRunRequest, StopWorkflowRunResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { StopWorkflowRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/TagResourceCommand.ts b/clients/client-mwaa-serverless/src/commands/TagResourceCommand.ts index 3def259fd7a28..391fa089fcade 100644 --- a/clients/client-mwaa-serverless/src/commands/TagResourceCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/UntagResourceCommand.ts b/clients/client-mwaa-serverless/src/commands/UntagResourceCommand.ts index 3ade423fad998..99d1c22a245a8 100644 --- a/clients/client-mwaa-serverless/src/commands/UntagResourceCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/commands/UpdateWorkflowCommand.ts b/clients/client-mwaa-serverless/src/commands/UpdateWorkflowCommand.ts index b3ea308fc4c92..0959e60c0d274 100644 --- a/clients/client-mwaa-serverless/src/commands/UpdateWorkflowCommand.ts +++ b/clients/client-mwaa-serverless/src/commands/UpdateWorkflowCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkflowRequest, UpdateWorkflowResponse } from "../models/models_0"; -import { MWAAServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAServerlessClient"; +import type { UpdateWorkflowRequest, UpdateWorkflowResponse } from "../models/models_0"; +import type { + MWAAServerlessClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MWAAServerlessClient"; import { UpdateWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa-serverless/src/endpoint/EndpointParameters.ts b/clients/client-mwaa-serverless/src/endpoint/EndpointParameters.ts index c904adb5486f8..305bbf60ad7d3 100644 --- a/clients/client-mwaa-serverless/src/endpoint/EndpointParameters.ts +++ b/clients/client-mwaa-serverless/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mwaa-serverless/src/endpoint/endpointResolver.ts b/clients/client-mwaa-serverless/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-mwaa-serverless/src/endpoint/endpointResolver.ts +++ b/clients/client-mwaa-serverless/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mwaa-serverless/src/extensionConfiguration.ts b/clients/client-mwaa-serverless/src/extensionConfiguration.ts index 84fa63c8a129e..aaf0161668a52 100644 --- a/clients/client-mwaa-serverless/src/extensionConfiguration.ts +++ b/clients/client-mwaa-serverless/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mwaa-serverless/src/models/MWAAServerlessServiceException.ts b/clients/client-mwaa-serverless/src/models/MWAAServerlessServiceException.ts index c2c52bdb78086..b9497477ece0c 100644 --- a/clients/client-mwaa-serverless/src/models/MWAAServerlessServiceException.ts +++ b/clients/client-mwaa-serverless/src/models/MWAAServerlessServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mwaa-serverless/src/models/errors.ts b/clients/client-mwaa-serverless/src/models/errors.ts index 2fd7b53607077..0a3ac90e98c61 100644 --- a/clients/client-mwaa-serverless/src/models/errors.ts +++ b/clients/client-mwaa-serverless/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-mwaa-serverless/src/pagination/Interfaces.ts b/clients/client-mwaa-serverless/src/pagination/Interfaces.ts index 245c5a81f01fa..54ce0e0b6c2db 100644 --- a/clients/client-mwaa-serverless/src/pagination/Interfaces.ts +++ b/clients/client-mwaa-serverless/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MWAAServerlessClient } from "../MWAAServerlessClient"; diff --git a/clients/client-mwaa-serverless/src/pagination/ListTaskInstancesPaginator.ts b/clients/client-mwaa-serverless/src/pagination/ListTaskInstancesPaginator.ts index 081e20b8a3592..79de2f3aec420 100644 --- a/clients/client-mwaa-serverless/src/pagination/ListTaskInstancesPaginator.ts +++ b/clients/client-mwaa-serverless/src/pagination/ListTaskInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTaskInstancesCommand, diff --git a/clients/client-mwaa-serverless/src/pagination/ListWorkflowRunsPaginator.ts b/clients/client-mwaa-serverless/src/pagination/ListWorkflowRunsPaginator.ts index 95314ace0e0d0..e2e8cb5d15461 100644 --- a/clients/client-mwaa-serverless/src/pagination/ListWorkflowRunsPaginator.ts +++ b/clients/client-mwaa-serverless/src/pagination/ListWorkflowRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowRunsCommand, diff --git a/clients/client-mwaa-serverless/src/pagination/ListWorkflowVersionsPaginator.ts b/clients/client-mwaa-serverless/src/pagination/ListWorkflowVersionsPaginator.ts index cf18dcfa914be..c30cc8c24ac24 100644 --- a/clients/client-mwaa-serverless/src/pagination/ListWorkflowVersionsPaginator.ts +++ b/clients/client-mwaa-serverless/src/pagination/ListWorkflowVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowVersionsCommand, diff --git a/clients/client-mwaa-serverless/src/pagination/ListWorkflowsPaginator.ts b/clients/client-mwaa-serverless/src/pagination/ListWorkflowsPaginator.ts index f194a6f327bee..03c12dbc001ea 100644 --- a/clients/client-mwaa-serverless/src/pagination/ListWorkflowsPaginator.ts +++ b/clients/client-mwaa-serverless/src/pagination/ListWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowsCommand, diff --git a/clients/client-mwaa-serverless/src/runtimeConfig.browser.ts b/clients/client-mwaa-serverless/src/runtimeConfig.browser.ts index 763ed0ab23c69..5f7c9b0148b3c 100644 --- a/clients/client-mwaa-serverless/src/runtimeConfig.browser.ts +++ b/clients/client-mwaa-serverless/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MWAAServerlessClientConfig } from "./MWAAServerlessClient"; + +import type { MWAAServerlessClientConfig } from "./MWAAServerlessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mwaa-serverless/src/runtimeConfig.native.ts b/clients/client-mwaa-serverless/src/runtimeConfig.native.ts index 0a7ced218bb95..5dd5475cd8c6a 100644 --- a/clients/client-mwaa-serverless/src/runtimeConfig.native.ts +++ b/clients/client-mwaa-serverless/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MWAAServerlessClientConfig } from "./MWAAServerlessClient"; +import type { MWAAServerlessClientConfig } from "./MWAAServerlessClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mwaa-serverless/src/runtimeConfig.shared.ts b/clients/client-mwaa-serverless/src/runtimeConfig.shared.ts index 020d5f3405771..c9c8b6aa2d96b 100644 --- a/clients/client-mwaa-serverless/src/runtimeConfig.shared.ts +++ b/clients/client-mwaa-serverless/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMWAAServerlessHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MWAAServerlessClientConfig } from "./MWAAServerlessClient"; +import type { MWAAServerlessClientConfig } from "./MWAAServerlessClient"; /** * @internal diff --git a/clients/client-mwaa-serverless/src/runtimeConfig.ts b/clients/client-mwaa-serverless/src/runtimeConfig.ts index 1a7472e01e785..4f16582e81258 100644 --- a/clients/client-mwaa-serverless/src/runtimeConfig.ts +++ b/clients/client-mwaa-serverless/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MWAAServerlessClientConfig } from "./MWAAServerlessClient"; + +import type { MWAAServerlessClientConfig } from "./MWAAServerlessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mwaa-serverless/src/runtimeExtensions.ts b/clients/client-mwaa-serverless/src/runtimeExtensions.ts index 345d720992334..3d07578a81a52 100644 --- a/clients/client-mwaa-serverless/src/runtimeExtensions.ts +++ b/clients/client-mwaa-serverless/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MWAAServerlessExtensionConfiguration } from "./extensionConfiguration"; +import type { MWAAServerlessExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mwaa-serverless/src/schemas/schemas_0.ts b/clients/client-mwaa-serverless/src/schemas/schemas_0.ts index a1175edcce434..f5f9b27f134a4 100644 --- a/clients/client-mwaa-serverless/src/schemas/schemas_0.ts +++ b/clients/client-mwaa-serverless/src/schemas/schemas_0.ts @@ -147,7 +147,7 @@ const n0 = "com.amazonaws.mwaaserverless"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-mwaa/package.json b/clients/client-mwaa/package.json index cc7a6573136cc..6f8b19541aa5c 100644 --- a/clients/client-mwaa/package.json +++ b/clients/client-mwaa/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-mwaa/src/MWAA.ts b/clients/client-mwaa/src/MWAA.ts index 13ab86ba27568..8a4c15bce28c9 100644 --- a/clients/client-mwaa/src/MWAA.ts +++ b/clients/client-mwaa/src/MWAA.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateCliTokenCommand, @@ -58,7 +58,7 @@ import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput, } from "./commands/UpdateEnvironmentCommand"; -import { MWAAClient, MWAAClientConfig } from "./MWAAClient"; +import { MWAAClient } from "./MWAAClient"; const commands = { CreateCliTokenCommand, diff --git a/clients/client-mwaa/src/MWAAClient.ts b/clients/client-mwaa/src/MWAAClient.ts index 38d7022c68e60..a39ad46f933ac 100644 --- a/clients/client-mwaa/src/MWAAClient.ts +++ b/clients/client-mwaa/src/MWAAClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMWAAHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateCliTokenCommandInput, CreateCliTokenCommandOutput } from "./commands/CreateCliTokenCommand"; @@ -82,7 +91,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-mwaa/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-mwaa/src/auth/httpAuthExtensionConfiguration.ts index 833c61afa1dc9..f3a9a06ee5da6 100644 --- a/clients/client-mwaa/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-mwaa/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MWAAHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MWAAHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-mwaa/src/auth/httpAuthSchemeProvider.ts b/clients/client-mwaa/src/auth/httpAuthSchemeProvider.ts index a8c9820392749..53ccc0e43ac3c 100644 --- a/clients/client-mwaa/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-mwaa/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MWAAClientConfig, MWAAClientResolvedConfig } from "../MWAAClient"; +import { type MWAAClientResolvedConfig, MWAAClientConfig } from "../MWAAClient"; /** * @internal diff --git a/clients/client-mwaa/src/commands/CreateCliTokenCommand.ts b/clients/client-mwaa/src/commands/CreateCliTokenCommand.ts index b9912d02ea3e8..bc887e81bae5a 100644 --- a/clients/client-mwaa/src/commands/CreateCliTokenCommand.ts +++ b/clients/client-mwaa/src/commands/CreateCliTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCliTokenRequest, CreateCliTokenResponse } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { CreateCliTokenRequest, CreateCliTokenResponse } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { CreateCliToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/CreateEnvironmentCommand.ts b/clients/client-mwaa/src/commands/CreateEnvironmentCommand.ts index ab122503e3387..fe27523b47b6d 100644 --- a/clients/client-mwaa/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-mwaa/src/commands/CreateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentInput, CreateEnvironmentOutput } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { CreateEnvironmentInput, CreateEnvironmentOutput } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { CreateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/CreateWebLoginTokenCommand.ts b/clients/client-mwaa/src/commands/CreateWebLoginTokenCommand.ts index 1d7cd42f4dcf7..53a9662c817ce 100644 --- a/clients/client-mwaa/src/commands/CreateWebLoginTokenCommand.ts +++ b/clients/client-mwaa/src/commands/CreateWebLoginTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebLoginTokenRequest, CreateWebLoginTokenResponse } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { CreateWebLoginTokenRequest, CreateWebLoginTokenResponse } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { CreateWebLoginToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/DeleteEnvironmentCommand.ts b/clients/client-mwaa/src/commands/DeleteEnvironmentCommand.ts index b71f7cbd8ea70..90b6e7d5107fe 100644 --- a/clients/client-mwaa/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-mwaa/src/commands/DeleteEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentInput, DeleteEnvironmentOutput } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { DeleteEnvironmentInput, DeleteEnvironmentOutput } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { DeleteEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/GetEnvironmentCommand.ts b/clients/client-mwaa/src/commands/GetEnvironmentCommand.ts index fbeb126d49519..edd31cb992d13 100644 --- a/clients/client-mwaa/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-mwaa/src/commands/GetEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentInput, GetEnvironmentOutput } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { GetEnvironmentInput, GetEnvironmentOutput } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { GetEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/InvokeRestApiCommand.ts b/clients/client-mwaa/src/commands/InvokeRestApiCommand.ts index 6fda5d4e3a8a5..12dadfe82b12a 100644 --- a/clients/client-mwaa/src/commands/InvokeRestApiCommand.ts +++ b/clients/client-mwaa/src/commands/InvokeRestApiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeRestApiRequest, InvokeRestApiResponse } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { InvokeRestApiRequest, InvokeRestApiResponse } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { InvokeRestApi } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/ListEnvironmentsCommand.ts b/clients/client-mwaa/src/commands/ListEnvironmentsCommand.ts index 31b487b86fdb2..ddca4f36c1e45 100644 --- a/clients/client-mwaa/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-mwaa/src/commands/ListEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentsInput, ListEnvironmentsOutput } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { ListEnvironmentsInput, ListEnvironmentsOutput } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { ListEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/ListTagsForResourceCommand.ts b/clients/client-mwaa/src/commands/ListTagsForResourceCommand.ts index 670b351cc6839..6e52a0015d316 100644 --- a/clients/client-mwaa/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-mwaa/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/PublishMetricsCommand.ts b/clients/client-mwaa/src/commands/PublishMetricsCommand.ts index 21c3d4e26d476..479db5e34d39d 100644 --- a/clients/client-mwaa/src/commands/PublishMetricsCommand.ts +++ b/clients/client-mwaa/src/commands/PublishMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishMetricsInput, PublishMetricsOutput } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { PublishMetricsInput, PublishMetricsOutput } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { PublishMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/TagResourceCommand.ts b/clients/client-mwaa/src/commands/TagResourceCommand.ts index 873fa58eebc79..2365dd0af8b97 100644 --- a/clients/client-mwaa/src/commands/TagResourceCommand.ts +++ b/clients/client-mwaa/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/UntagResourceCommand.ts b/clients/client-mwaa/src/commands/UntagResourceCommand.ts index 2b626a4eb4e4f..d350a2ef09fef 100644 --- a/clients/client-mwaa/src/commands/UntagResourceCommand.ts +++ b/clients/client-mwaa/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/commands/UpdateEnvironmentCommand.ts b/clients/client-mwaa/src/commands/UpdateEnvironmentCommand.ts index f48161e47bbb4..8d446177b4f82 100644 --- a/clients/client-mwaa/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-mwaa/src/commands/UpdateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentInput, UpdateEnvironmentOutput } from "../models/models_0"; -import { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; +import type { UpdateEnvironmentInput, UpdateEnvironmentOutput } from "../models/models_0"; +import type { MWAAClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MWAAClient"; import { UpdateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-mwaa/src/endpoint/EndpointParameters.ts b/clients/client-mwaa/src/endpoint/EndpointParameters.ts index 79f0db1e59874..8ff3492626eed 100644 --- a/clients/client-mwaa/src/endpoint/EndpointParameters.ts +++ b/clients/client-mwaa/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-mwaa/src/endpoint/endpointResolver.ts b/clients/client-mwaa/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-mwaa/src/endpoint/endpointResolver.ts +++ b/clients/client-mwaa/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-mwaa/src/extensionConfiguration.ts b/clients/client-mwaa/src/extensionConfiguration.ts index e932467dcc59a..0938265a074d9 100644 --- a/clients/client-mwaa/src/extensionConfiguration.ts +++ b/clients/client-mwaa/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-mwaa/src/models/MWAAServiceException.ts b/clients/client-mwaa/src/models/MWAAServiceException.ts index cfdde1f9d6fe8..ea90f8733f75c 100644 --- a/clients/client-mwaa/src/models/MWAAServiceException.ts +++ b/clients/client-mwaa/src/models/MWAAServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-mwaa/src/models/errors.ts b/clients/client-mwaa/src/models/errors.ts index ca6943b2c2346..9aec5b6cfdf93 100644 --- a/clients/client-mwaa/src/models/errors.ts +++ b/clients/client-mwaa/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { DocumentType as __DocumentType } from "@smithy/types"; import { MWAAServiceException as __BaseException } from "./MWAAServiceException"; diff --git a/clients/client-mwaa/src/pagination/Interfaces.ts b/clients/client-mwaa/src/pagination/Interfaces.ts index f3d185ca51e47..cb817c8a22b64 100644 --- a/clients/client-mwaa/src/pagination/Interfaces.ts +++ b/clients/client-mwaa/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { MWAAClient } from "../MWAAClient"; diff --git a/clients/client-mwaa/src/pagination/ListEnvironmentsPaginator.ts b/clients/client-mwaa/src/pagination/ListEnvironmentsPaginator.ts index 98669ce7fa8d0..d78ff8f4481d9 100644 --- a/clients/client-mwaa/src/pagination/ListEnvironmentsPaginator.ts +++ b/clients/client-mwaa/src/pagination/ListEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentsCommand, diff --git a/clients/client-mwaa/src/runtimeConfig.browser.ts b/clients/client-mwaa/src/runtimeConfig.browser.ts index 5e73e29611fca..bf91c689a9630 100644 --- a/clients/client-mwaa/src/runtimeConfig.browser.ts +++ b/clients/client-mwaa/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MWAAClientConfig } from "./MWAAClient"; + +import type { MWAAClientConfig } from "./MWAAClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-mwaa/src/runtimeConfig.native.ts b/clients/client-mwaa/src/runtimeConfig.native.ts index b6cdb9300a233..ce8e99d7a052d 100644 --- a/clients/client-mwaa/src/runtimeConfig.native.ts +++ b/clients/client-mwaa/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MWAAClientConfig } from "./MWAAClient"; +import type { MWAAClientConfig } from "./MWAAClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-mwaa/src/runtimeConfig.shared.ts b/clients/client-mwaa/src/runtimeConfig.shared.ts index 8a900ed704ecb..888d8587a13c1 100644 --- a/clients/client-mwaa/src/runtimeConfig.shared.ts +++ b/clients/client-mwaa/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMWAAHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MWAAClientConfig } from "./MWAAClient"; +import type { MWAAClientConfig } from "./MWAAClient"; /** * @internal diff --git a/clients/client-mwaa/src/runtimeConfig.ts b/clients/client-mwaa/src/runtimeConfig.ts index c71da8d65ec99..ea3e538542046 100644 --- a/clients/client-mwaa/src/runtimeConfig.ts +++ b/clients/client-mwaa/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MWAAClientConfig } from "./MWAAClient"; + +import type { MWAAClientConfig } from "./MWAAClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-mwaa/src/runtimeExtensions.ts b/clients/client-mwaa/src/runtimeExtensions.ts index a8629df23ec78..92770c66d3222 100644 --- a/clients/client-mwaa/src/runtimeExtensions.ts +++ b/clients/client-mwaa/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MWAAExtensionConfiguration } from "./extensionConfiguration"; +import type { MWAAExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-mwaa/src/schemas/schemas_0.ts b/clients/client-mwaa/src/schemas/schemas_0.ts index ec8856ed70f69..77d361e12f75e 100644 --- a/clients/client-mwaa/src/schemas/schemas_0.ts +++ b/clients/client-mwaa/src/schemas/schemas_0.ts @@ -143,7 +143,7 @@ const n0 = "com.amazonaws.mwaa"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-neptune-graph/package.json b/clients/client-neptune-graph/package.json index 61dac99dec214..f1813b2fb04b5 100644 --- a/clients/client-neptune-graph/package.json +++ b/clients/client-neptune-graph/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-neptune-graph/src/NeptuneGraph.ts b/clients/client-neptune-graph/src/NeptuneGraph.ts index 4602c8a5f8670..2add77b8469b4 100644 --- a/clients/client-neptune-graph/src/NeptuneGraph.ts +++ b/clients/client-neptune-graph/src/NeptuneGraph.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelExportTaskCommand, @@ -124,7 +124,7 @@ import { UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdateGraphCommand, UpdateGraphCommandInput, UpdateGraphCommandOutput } from "./commands/UpdateGraphCommand"; -import { NeptuneGraphClient, NeptuneGraphClientConfig } from "./NeptuneGraphClient"; +import { NeptuneGraphClient } from "./NeptuneGraphClient"; const commands = { CancelExportTaskCommand, diff --git a/clients/client-neptune-graph/src/NeptuneGraphClient.ts b/clients/client-neptune-graph/src/NeptuneGraphClient.ts index cbde64c8adaef..354573feb761d 100644 --- a/clients/client-neptune-graph/src/NeptuneGraphClient.ts +++ b/clients/client-neptune-graph/src/NeptuneGraphClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultNeptuneGraphHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelExportTaskCommandInput, CancelExportTaskCommandOutput } from "./commands/CancelExportTaskCommand"; @@ -126,7 +135,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-neptune-graph/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-neptune-graph/src/auth/httpAuthExtensionConfiguration.ts index b3b3d0eed45d3..50d9f08ad3941 100644 --- a/clients/client-neptune-graph/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-neptune-graph/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { NeptuneGraphHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { NeptuneGraphHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-neptune-graph/src/auth/httpAuthSchemeProvider.ts b/clients/client-neptune-graph/src/auth/httpAuthSchemeProvider.ts index 6fd425ec6a6f3..7742c88da0442 100644 --- a/clients/client-neptune-graph/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-neptune-graph/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { NeptuneGraphClientConfig, NeptuneGraphClientResolvedConfig } from "../NeptuneGraphClient"; +import { type NeptuneGraphClientResolvedConfig, NeptuneGraphClientConfig } from "../NeptuneGraphClient"; /** * @internal diff --git a/clients/client-neptune-graph/src/commands/CancelExportTaskCommand.ts b/clients/client-neptune-graph/src/commands/CancelExportTaskCommand.ts index 9ab76108babab..a8ed71650d30c 100644 --- a/clients/client-neptune-graph/src/commands/CancelExportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/CancelExportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelExportTaskInput, CancelExportTaskOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { CancelExportTaskInput, CancelExportTaskOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { CancelExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/CancelImportTaskCommand.ts b/clients/client-neptune-graph/src/commands/CancelImportTaskCommand.ts index 2434b66f63e79..e9f4c081f6068 100644 --- a/clients/client-neptune-graph/src/commands/CancelImportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/CancelImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelImportTaskInput, CancelImportTaskOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { CancelImportTaskInput, CancelImportTaskOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { CancelImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/CancelQueryCommand.ts b/clients/client-neptune-graph/src/commands/CancelQueryCommand.ts index 23e3fda476c12..8bd9376bbe2b2 100644 --- a/clients/client-neptune-graph/src/commands/CancelQueryCommand.ts +++ b/clients/client-neptune-graph/src/commands/CancelQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelQueryInput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { CancelQueryInput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { CancelQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/CreateGraphCommand.ts b/clients/client-neptune-graph/src/commands/CreateGraphCommand.ts index 75da8296c8797..bdfcc38789fc6 100644 --- a/clients/client-neptune-graph/src/commands/CreateGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/CreateGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGraphInput, CreateGraphOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { CreateGraphInput, CreateGraphOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { CreateGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/CreateGraphSnapshotCommand.ts b/clients/client-neptune-graph/src/commands/CreateGraphSnapshotCommand.ts index ffc8d7f81b7b7..ee3a70ec52b17 100644 --- a/clients/client-neptune-graph/src/commands/CreateGraphSnapshotCommand.ts +++ b/clients/client-neptune-graph/src/commands/CreateGraphSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGraphSnapshotInput, CreateGraphSnapshotOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { CreateGraphSnapshotInput, CreateGraphSnapshotOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { CreateGraphSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/CreateGraphUsingImportTaskCommand.ts b/clients/client-neptune-graph/src/commands/CreateGraphUsingImportTaskCommand.ts index fbc4debff5740..7442967e7ca28 100644 --- a/clients/client-neptune-graph/src/commands/CreateGraphUsingImportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/CreateGraphUsingImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGraphUsingImportTaskInput, CreateGraphUsingImportTaskOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { CreateGraphUsingImportTaskInput, CreateGraphUsingImportTaskOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { CreateGraphUsingImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/CreatePrivateGraphEndpointCommand.ts b/clients/client-neptune-graph/src/commands/CreatePrivateGraphEndpointCommand.ts index 05fbe2003d170..fa269d5434a6a 100644 --- a/clients/client-neptune-graph/src/commands/CreatePrivateGraphEndpointCommand.ts +++ b/clients/client-neptune-graph/src/commands/CreatePrivateGraphEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePrivateGraphEndpointInput, CreatePrivateGraphEndpointOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { CreatePrivateGraphEndpointInput, CreatePrivateGraphEndpointOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { CreatePrivateGraphEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/DeleteGraphCommand.ts b/clients/client-neptune-graph/src/commands/DeleteGraphCommand.ts index f82ff232e2300..63e21e1dd3eb3 100644 --- a/clients/client-neptune-graph/src/commands/DeleteGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/DeleteGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGraphInput, DeleteGraphOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { DeleteGraphInput, DeleteGraphOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { DeleteGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/DeleteGraphSnapshotCommand.ts b/clients/client-neptune-graph/src/commands/DeleteGraphSnapshotCommand.ts index 71ff17a039e17..4bccc435fef5a 100644 --- a/clients/client-neptune-graph/src/commands/DeleteGraphSnapshotCommand.ts +++ b/clients/client-neptune-graph/src/commands/DeleteGraphSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGraphSnapshotInput, DeleteGraphSnapshotOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { DeleteGraphSnapshotInput, DeleteGraphSnapshotOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { DeleteGraphSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/DeletePrivateGraphEndpointCommand.ts b/clients/client-neptune-graph/src/commands/DeletePrivateGraphEndpointCommand.ts index 153bf53a73da6..bd80eff0229ef 100644 --- a/clients/client-neptune-graph/src/commands/DeletePrivateGraphEndpointCommand.ts +++ b/clients/client-neptune-graph/src/commands/DeletePrivateGraphEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePrivateGraphEndpointInput, DeletePrivateGraphEndpointOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { DeletePrivateGraphEndpointInput, DeletePrivateGraphEndpointOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { DeletePrivateGraphEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/ExecuteQueryCommand.ts b/clients/client-neptune-graph/src/commands/ExecuteQueryCommand.ts index 2c961fe8542d0..b339a3bda002a 100644 --- a/clients/client-neptune-graph/src/commands/ExecuteQueryCommand.ts +++ b/clients/client-neptune-graph/src/commands/ExecuteQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteQueryInput, ExecuteQueryOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import { type ExecuteQueryInput, ExecuteQueryOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { ExecuteQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/GetExportTaskCommand.ts b/clients/client-neptune-graph/src/commands/GetExportTaskCommand.ts index 6f91bbc0cd4ab..36e4a4c906ac3 100644 --- a/clients/client-neptune-graph/src/commands/GetExportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetExportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExportTaskInput, GetExportTaskOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { GetExportTaskInput, GetExportTaskOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { GetExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/GetGraphCommand.ts b/clients/client-neptune-graph/src/commands/GetGraphCommand.ts index 2aef0311ffb79..c831ba1a3181f 100644 --- a/clients/client-neptune-graph/src/commands/GetGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGraphInput, GetGraphOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { GetGraphInput, GetGraphOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { GetGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/GetGraphSnapshotCommand.ts b/clients/client-neptune-graph/src/commands/GetGraphSnapshotCommand.ts index 1a81a72859492..e3ae731128df8 100644 --- a/clients/client-neptune-graph/src/commands/GetGraphSnapshotCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetGraphSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGraphSnapshotInput, GetGraphSnapshotOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { GetGraphSnapshotInput, GetGraphSnapshotOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { GetGraphSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/GetGraphSummaryCommand.ts b/clients/client-neptune-graph/src/commands/GetGraphSummaryCommand.ts index 8cd5eed567d8a..a808c9dae58f2 100644 --- a/clients/client-neptune-graph/src/commands/GetGraphSummaryCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetGraphSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGraphSummaryInput, GetGraphSummaryOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { GetGraphSummaryInput, GetGraphSummaryOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { GetGraphSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/GetImportTaskCommand.ts b/clients/client-neptune-graph/src/commands/GetImportTaskCommand.ts index 0f79cade27d7d..149b7de64887e 100644 --- a/clients/client-neptune-graph/src/commands/GetImportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImportTaskInput, GetImportTaskOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { GetImportTaskInput, GetImportTaskOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { GetImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/GetPrivateGraphEndpointCommand.ts b/clients/client-neptune-graph/src/commands/GetPrivateGraphEndpointCommand.ts index d6ea7cd195233..f033f1f8e75a0 100644 --- a/clients/client-neptune-graph/src/commands/GetPrivateGraphEndpointCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetPrivateGraphEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPrivateGraphEndpointInput, GetPrivateGraphEndpointOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { GetPrivateGraphEndpointInput, GetPrivateGraphEndpointOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { GetPrivateGraphEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/GetQueryCommand.ts b/clients/client-neptune-graph/src/commands/GetQueryCommand.ts index 83626503812f1..7d3f92b419c48 100644 --- a/clients/client-neptune-graph/src/commands/GetQueryCommand.ts +++ b/clients/client-neptune-graph/src/commands/GetQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueryInput, GetQueryOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { GetQueryInput, GetQueryOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { GetQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/ListExportTasksCommand.ts b/clients/client-neptune-graph/src/commands/ListExportTasksCommand.ts index a9dd3dab8a966..fec2b6579ee41 100644 --- a/clients/client-neptune-graph/src/commands/ListExportTasksCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListExportTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExportTasksInput, ListExportTasksOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { ListExportTasksInput, ListExportTasksOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { ListExportTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/ListGraphSnapshotsCommand.ts b/clients/client-neptune-graph/src/commands/ListGraphSnapshotsCommand.ts index cfc22c8661370..5972e4bdc678e 100644 --- a/clients/client-neptune-graph/src/commands/ListGraphSnapshotsCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListGraphSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGraphSnapshotsInput, ListGraphSnapshotsOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { ListGraphSnapshotsInput, ListGraphSnapshotsOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { ListGraphSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/ListGraphsCommand.ts b/clients/client-neptune-graph/src/commands/ListGraphsCommand.ts index 6e0fc5207d6a2..027a6bfa8011a 100644 --- a/clients/client-neptune-graph/src/commands/ListGraphsCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListGraphsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGraphsInput, ListGraphsOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { ListGraphsInput, ListGraphsOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { ListGraphs } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/ListImportTasksCommand.ts b/clients/client-neptune-graph/src/commands/ListImportTasksCommand.ts index 1e2e8a09d8999..deea992dfce38 100644 --- a/clients/client-neptune-graph/src/commands/ListImportTasksCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListImportTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImportTasksInput, ListImportTasksOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { ListImportTasksInput, ListImportTasksOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { ListImportTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/ListPrivateGraphEndpointsCommand.ts b/clients/client-neptune-graph/src/commands/ListPrivateGraphEndpointsCommand.ts index 9f7e029279e5f..bdd75b29f3b8e 100644 --- a/clients/client-neptune-graph/src/commands/ListPrivateGraphEndpointsCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListPrivateGraphEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPrivateGraphEndpointsInput, ListPrivateGraphEndpointsOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { ListPrivateGraphEndpointsInput, ListPrivateGraphEndpointsOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { ListPrivateGraphEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/ListQueriesCommand.ts b/clients/client-neptune-graph/src/commands/ListQueriesCommand.ts index 8aec65fee39a7..bc85f845aa2cf 100644 --- a/clients/client-neptune-graph/src/commands/ListQueriesCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListQueriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueriesInput, ListQueriesOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { ListQueriesInput, ListQueriesOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { ListQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/ListTagsForResourceCommand.ts b/clients/client-neptune-graph/src/commands/ListTagsForResourceCommand.ts index ebbbba45991fb..fc3ba7f7af59d 100644 --- a/clients/client-neptune-graph/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-neptune-graph/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/ResetGraphCommand.ts b/clients/client-neptune-graph/src/commands/ResetGraphCommand.ts index 2217af9d4b336..4312115afa8a3 100644 --- a/clients/client-neptune-graph/src/commands/ResetGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/ResetGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetGraphInput, ResetGraphOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { ResetGraphInput, ResetGraphOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { ResetGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/RestoreGraphFromSnapshotCommand.ts b/clients/client-neptune-graph/src/commands/RestoreGraphFromSnapshotCommand.ts index 1769dc87f544a..129ff1cbc0a91 100644 --- a/clients/client-neptune-graph/src/commands/RestoreGraphFromSnapshotCommand.ts +++ b/clients/client-neptune-graph/src/commands/RestoreGraphFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreGraphFromSnapshotInput, RestoreGraphFromSnapshotOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { RestoreGraphFromSnapshotInput, RestoreGraphFromSnapshotOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { RestoreGraphFromSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/StartExportTaskCommand.ts b/clients/client-neptune-graph/src/commands/StartExportTaskCommand.ts index df6aa83cba1df..b303021b0c12e 100644 --- a/clients/client-neptune-graph/src/commands/StartExportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/StartExportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartExportTaskInput, StartExportTaskOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { StartExportTaskInput, StartExportTaskOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { StartExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/StartGraphCommand.ts b/clients/client-neptune-graph/src/commands/StartGraphCommand.ts index 3c0e96effcf0a..512a8d34ff913 100644 --- a/clients/client-neptune-graph/src/commands/StartGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/StartGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartGraphInput, StartGraphOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { StartGraphInput, StartGraphOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { StartGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/StartImportTaskCommand.ts b/clients/client-neptune-graph/src/commands/StartImportTaskCommand.ts index 0e1b0ffd3e55f..b6970134bd312 100644 --- a/clients/client-neptune-graph/src/commands/StartImportTaskCommand.ts +++ b/clients/client-neptune-graph/src/commands/StartImportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartImportTaskInput, StartImportTaskOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { StartImportTaskInput, StartImportTaskOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { StartImportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/StopGraphCommand.ts b/clients/client-neptune-graph/src/commands/StopGraphCommand.ts index 157a52f41cd5e..8d0ec5b4dddbb 100644 --- a/clients/client-neptune-graph/src/commands/StopGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/StopGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopGraphInput, StopGraphOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { StopGraphInput, StopGraphOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { StopGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/TagResourceCommand.ts b/clients/client-neptune-graph/src/commands/TagResourceCommand.ts index 750d8bf973628..a2d847e5e34a0 100644 --- a/clients/client-neptune-graph/src/commands/TagResourceCommand.ts +++ b/clients/client-neptune-graph/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/UntagResourceCommand.ts b/clients/client-neptune-graph/src/commands/UntagResourceCommand.ts index a35097a2c018b..fcedbee8f86b8 100644 --- a/clients/client-neptune-graph/src/commands/UntagResourceCommand.ts +++ b/clients/client-neptune-graph/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/commands/UpdateGraphCommand.ts b/clients/client-neptune-graph/src/commands/UpdateGraphCommand.ts index a98eb38da5368..cd1fd8655ae83 100644 --- a/clients/client-neptune-graph/src/commands/UpdateGraphCommand.ts +++ b/clients/client-neptune-graph/src/commands/UpdateGraphCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGraphInput, UpdateGraphOutput } from "../models/models_0"; -import { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; +import type { UpdateGraphInput, UpdateGraphOutput } from "../models/models_0"; +import type { NeptuneGraphClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneGraphClient"; import { UpdateGraph } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune-graph/src/endpoint/EndpointParameters.ts b/clients/client-neptune-graph/src/endpoint/EndpointParameters.ts index 554070bb6483a..8bb8b173140b1 100644 --- a/clients/client-neptune-graph/src/endpoint/EndpointParameters.ts +++ b/clients/client-neptune-graph/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-neptune-graph/src/endpoint/endpointResolver.ts b/clients/client-neptune-graph/src/endpoint/endpointResolver.ts index 73609ea7b260a..bf96b393604a9 100644 --- a/clients/client-neptune-graph/src/endpoint/endpointResolver.ts +++ b/clients/client-neptune-graph/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-neptune-graph/src/extensionConfiguration.ts b/clients/client-neptune-graph/src/extensionConfiguration.ts index 6bdbcd7dcd5c0..008fa91e5601e 100644 --- a/clients/client-neptune-graph/src/extensionConfiguration.ts +++ b/clients/client-neptune-graph/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-neptune-graph/src/models/NeptuneGraphServiceException.ts b/clients/client-neptune-graph/src/models/NeptuneGraphServiceException.ts index 7532107eeca4f..b0697ba3e67b8 100644 --- a/clients/client-neptune-graph/src/models/NeptuneGraphServiceException.ts +++ b/clients/client-neptune-graph/src/models/NeptuneGraphServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-neptune-graph/src/models/errors.ts b/clients/client-neptune-graph/src/models/errors.ts index ffb8cf938f176..f4ae89acd593f 100644 --- a/clients/client-neptune-graph/src/models/errors.ts +++ b/clients/client-neptune-graph/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConflictExceptionReason, UnprocessableExceptionReason, ValidationExceptionReason } from "./enums"; import { NeptuneGraphServiceException as __BaseException } from "./NeptuneGraphServiceException"; diff --git a/clients/client-neptune-graph/src/pagination/Interfaces.ts b/clients/client-neptune-graph/src/pagination/Interfaces.ts index 8a3be96a72681..4f0e610bde8b2 100644 --- a/clients/client-neptune-graph/src/pagination/Interfaces.ts +++ b/clients/client-neptune-graph/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { NeptuneGraphClient } from "../NeptuneGraphClient"; diff --git a/clients/client-neptune-graph/src/pagination/ListExportTasksPaginator.ts b/clients/client-neptune-graph/src/pagination/ListExportTasksPaginator.ts index 2e5509d5c2ee0..25a58665b72f6 100644 --- a/clients/client-neptune-graph/src/pagination/ListExportTasksPaginator.ts +++ b/clients/client-neptune-graph/src/pagination/ListExportTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExportTasksCommand, diff --git a/clients/client-neptune-graph/src/pagination/ListGraphSnapshotsPaginator.ts b/clients/client-neptune-graph/src/pagination/ListGraphSnapshotsPaginator.ts index a73f94d64e2cf..6e209b1ca748c 100644 --- a/clients/client-neptune-graph/src/pagination/ListGraphSnapshotsPaginator.ts +++ b/clients/client-neptune-graph/src/pagination/ListGraphSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGraphSnapshotsCommand, diff --git a/clients/client-neptune-graph/src/pagination/ListGraphsPaginator.ts b/clients/client-neptune-graph/src/pagination/ListGraphsPaginator.ts index d24c70ebbbe87..f9cd671a2ad1d 100644 --- a/clients/client-neptune-graph/src/pagination/ListGraphsPaginator.ts +++ b/clients/client-neptune-graph/src/pagination/ListGraphsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGraphsCommand, ListGraphsCommandInput, ListGraphsCommandOutput } from "../commands/ListGraphsCommand"; import { NeptuneGraphClient } from "../NeptuneGraphClient"; diff --git a/clients/client-neptune-graph/src/pagination/ListImportTasksPaginator.ts b/clients/client-neptune-graph/src/pagination/ListImportTasksPaginator.ts index b9746f6848475..219b77ff5c3ce 100644 --- a/clients/client-neptune-graph/src/pagination/ListImportTasksPaginator.ts +++ b/clients/client-neptune-graph/src/pagination/ListImportTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImportTasksCommand, diff --git a/clients/client-neptune-graph/src/pagination/ListPrivateGraphEndpointsPaginator.ts b/clients/client-neptune-graph/src/pagination/ListPrivateGraphEndpointsPaginator.ts index 9e70a589dd619..9d4903b006f95 100644 --- a/clients/client-neptune-graph/src/pagination/ListPrivateGraphEndpointsPaginator.ts +++ b/clients/client-neptune-graph/src/pagination/ListPrivateGraphEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPrivateGraphEndpointsCommand, diff --git a/clients/client-neptune-graph/src/runtimeConfig.browser.ts b/clients/client-neptune-graph/src/runtimeConfig.browser.ts index fb07f213b9830..1bee9be143ad5 100644 --- a/clients/client-neptune-graph/src/runtimeConfig.browser.ts +++ b/clients/client-neptune-graph/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NeptuneGraphClientConfig } from "./NeptuneGraphClient"; + +import type { NeptuneGraphClientConfig } from "./NeptuneGraphClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-neptune-graph/src/runtimeConfig.native.ts b/clients/client-neptune-graph/src/runtimeConfig.native.ts index 9ee5daa9e21b6..22b5a4029375c 100644 --- a/clients/client-neptune-graph/src/runtimeConfig.native.ts +++ b/clients/client-neptune-graph/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { NeptuneGraphClientConfig } from "./NeptuneGraphClient"; +import type { NeptuneGraphClientConfig } from "./NeptuneGraphClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-neptune-graph/src/runtimeConfig.shared.ts b/clients/client-neptune-graph/src/runtimeConfig.shared.ts index 704aa42a02b7e..78cdd10545855 100644 --- a/clients/client-neptune-graph/src/runtimeConfig.shared.ts +++ b/clients/client-neptune-graph/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultNeptuneGraphHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { NeptuneGraphClientConfig } from "./NeptuneGraphClient"; +import type { NeptuneGraphClientConfig } from "./NeptuneGraphClient"; /** * @internal diff --git a/clients/client-neptune-graph/src/runtimeConfig.ts b/clients/client-neptune-graph/src/runtimeConfig.ts index 527ec2d61b197..7b6568e8b1c5b 100644 --- a/clients/client-neptune-graph/src/runtimeConfig.ts +++ b/clients/client-neptune-graph/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NeptuneGraphClientConfig } from "./NeptuneGraphClient"; + +import type { NeptuneGraphClientConfig } from "./NeptuneGraphClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-neptune-graph/src/runtimeExtensions.ts b/clients/client-neptune-graph/src/runtimeExtensions.ts index 23a7d7f17f6ac..f945aa4f4ce47 100644 --- a/clients/client-neptune-graph/src/runtimeExtensions.ts +++ b/clients/client-neptune-graph/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { NeptuneGraphExtensionConfiguration } from "./extensionConfiguration"; +import type { NeptuneGraphExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-neptune-graph/src/schemas/schemas_0.ts b/clients/client-neptune-graph/src/schemas/schemas_0.ts index 9227c5fa3502f..3a01c0d2cb903 100644 --- a/clients/client-neptune-graph/src/schemas/schemas_0.ts +++ b/clients/client-neptune-graph/src/schemas/schemas_0.ts @@ -264,7 +264,7 @@ const n0 = "com.amazonaws.neptunegraph"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-neptune/package.json b/clients/client-neptune/package.json index 583f452e6fe8a..14e61b2fe59a2 100644 --- a/clients/client-neptune/package.json +++ b/clients/client-neptune/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-neptune/src/Neptune.ts b/clients/client-neptune/src/Neptune.ts index 790b10eaa4139..4271fa76c4ab9 100644 --- a/clients/client-neptune/src/Neptune.ts +++ b/clients/client-neptune/src/Neptune.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddRoleToDBClusterCommand, @@ -352,7 +352,7 @@ import { SwitchoverGlobalClusterCommandInput, SwitchoverGlobalClusterCommandOutput, } from "./commands/SwitchoverGlobalClusterCommand"; -import { NeptuneClient, NeptuneClientConfig } from "./NeptuneClient"; +import { NeptuneClient } from "./NeptuneClient"; const commands = { AddRoleToDBClusterCommand, diff --git a/clients/client-neptune/src/NeptuneClient.ts b/clients/client-neptune/src/NeptuneClient.ts index 62357687f5f35..413a0e161b9c5 100644 --- a/clients/client-neptune/src/NeptuneClient.ts +++ b/clients/client-neptune/src/NeptuneClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultNeptuneHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddRoleToDBClusterCommandInput, AddRoleToDBClusterCommandOutput } from "./commands/AddRoleToDBClusterCommand"; @@ -302,7 +311,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-neptune/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-neptune/src/auth/httpAuthExtensionConfiguration.ts index 56660bdb29b66..ea68bcca91588 100644 --- a/clients/client-neptune/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-neptune/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { NeptuneHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { NeptuneHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-neptune/src/auth/httpAuthSchemeProvider.ts b/clients/client-neptune/src/auth/httpAuthSchemeProvider.ts index 5674ea5ab3107..98a5d7db6745b 100644 --- a/clients/client-neptune/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-neptune/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { NeptuneClientConfig, NeptuneClientResolvedConfig } from "../NeptuneClient"; +import { type NeptuneClientResolvedConfig, NeptuneClientConfig } from "../NeptuneClient"; /** * @internal diff --git a/clients/client-neptune/src/commands/AddRoleToDBClusterCommand.ts b/clients/client-neptune/src/commands/AddRoleToDBClusterCommand.ts index 87dfbc2507367..dd136c0109d6d 100644 --- a/clients/client-neptune/src/commands/AddRoleToDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/AddRoleToDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddRoleToDBClusterMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { AddRoleToDBClusterMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { AddRoleToDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/AddSourceIdentifierToSubscriptionCommand.ts b/clients/client-neptune/src/commands/AddSourceIdentifierToSubscriptionCommand.ts index 3b2dcb4b899f7..08764b45bb2cf 100644 --- a/clients/client-neptune/src/commands/AddSourceIdentifierToSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/AddSourceIdentifierToSubscriptionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddSourceIdentifierToSubscriptionMessage, AddSourceIdentifierToSubscriptionResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { + AddSourceIdentifierToSubscriptionMessage, + AddSourceIdentifierToSubscriptionResult, +} from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { AddSourceIdentifierToSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/AddTagsToResourceCommand.ts b/clients/client-neptune/src/commands/AddTagsToResourceCommand.ts index cce2b842484ae..b49b97df953f7 100644 --- a/clients/client-neptune/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-neptune/src/commands/AddTagsToResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToResourceMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { AddTagsToResourceMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { AddTagsToResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-neptune/src/commands/ApplyPendingMaintenanceActionCommand.ts index f8167933b806a..bdfd534d6c1c5 100644 --- a/clients/client-neptune/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-neptune/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplyPendingMaintenanceActionMessage, ApplyPendingMaintenanceActionResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { ApplyPendingMaintenanceActionMessage, ApplyPendingMaintenanceActionResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ApplyPendingMaintenanceAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CopyDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/CopyDBClusterParameterGroupCommand.ts index de3b1593e260a..0f7fc053a545d 100644 --- a/clients/client-neptune/src/commands/CopyDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/CopyDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDBClusterParameterGroupMessage, CopyDBClusterParameterGroupResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CopyDBClusterParameterGroupMessage, CopyDBClusterParameterGroupResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CopyDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CopyDBClusterSnapshotCommand.ts b/clients/client-neptune/src/commands/CopyDBClusterSnapshotCommand.ts index 8f1606f521153..6122970398aac 100644 --- a/clients/client-neptune/src/commands/CopyDBClusterSnapshotCommand.ts +++ b/clients/client-neptune/src/commands/CopyDBClusterSnapshotCommand.ts @@ -2,11 +2,11 @@ import { getCrossRegionPresignedUrlPlugin } from "@aws-sdk/middleware-sdk-rds"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDBClusterSnapshotMessage, CopyDBClusterSnapshotResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CopyDBClusterSnapshotMessage, CopyDBClusterSnapshotResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CopyDBClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CopyDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/CopyDBParameterGroupCommand.ts index 9fb9c46b47628..11308d4005bb7 100644 --- a/clients/client-neptune/src/commands/CopyDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/CopyDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDBParameterGroupMessage, CopyDBParameterGroupResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CopyDBParameterGroupMessage, CopyDBParameterGroupResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CopyDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CreateDBClusterCommand.ts b/clients/client-neptune/src/commands/CreateDBClusterCommand.ts index 4af14ac47f982..f5eefda2a6b46 100644 --- a/clients/client-neptune/src/commands/CreateDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBClusterCommand.ts @@ -2,11 +2,11 @@ import { getCrossRegionPresignedUrlPlugin } from "@aws-sdk/middleware-sdk-rds"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterMessage, CreateDBClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CreateDBClusterMessage, CreateDBClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CreateDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CreateDBClusterEndpointCommand.ts b/clients/client-neptune/src/commands/CreateDBClusterEndpointCommand.ts index ddfec4bff2450..1f36803ae9984 100644 --- a/clients/client-neptune/src/commands/CreateDBClusterEndpointCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBClusterEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterEndpointMessage, CreateDBClusterEndpointOutput } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CreateDBClusterEndpointMessage, CreateDBClusterEndpointOutput } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CreateDBClusterEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CreateDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/CreateDBClusterParameterGroupCommand.ts index 92cd4a7749434..c2ce4b79621c7 100644 --- a/clients/client-neptune/src/commands/CreateDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterParameterGroupMessage, CreateDBClusterParameterGroupResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CreateDBClusterParameterGroupMessage, CreateDBClusterParameterGroupResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CreateDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CreateDBClusterSnapshotCommand.ts b/clients/client-neptune/src/commands/CreateDBClusterSnapshotCommand.ts index 69fc2c7efed51..7430f976489e6 100644 --- a/clients/client-neptune/src/commands/CreateDBClusterSnapshotCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterSnapshotMessage, CreateDBClusterSnapshotResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CreateDBClusterSnapshotMessage, CreateDBClusterSnapshotResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CreateDBClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CreateDBInstanceCommand.ts b/clients/client-neptune/src/commands/CreateDBInstanceCommand.ts index a6ba544687661..12376e60ee0d7 100644 --- a/clients/client-neptune/src/commands/CreateDBInstanceCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBInstanceMessage, CreateDBInstanceResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CreateDBInstanceMessage, CreateDBInstanceResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CreateDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CreateDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/CreateDBParameterGroupCommand.ts index cf5d97c279286..1ff64665e4275 100644 --- a/clients/client-neptune/src/commands/CreateDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBParameterGroupMessage, CreateDBParameterGroupResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CreateDBParameterGroupMessage, CreateDBParameterGroupResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CreateDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CreateDBSubnetGroupCommand.ts b/clients/client-neptune/src/commands/CreateDBSubnetGroupCommand.ts index 4dc4885a41593..47365c6527fea 100644 --- a/clients/client-neptune/src/commands/CreateDBSubnetGroupCommand.ts +++ b/clients/client-neptune/src/commands/CreateDBSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBSubnetGroupMessage, CreateDBSubnetGroupResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CreateDBSubnetGroupMessage, CreateDBSubnetGroupResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CreateDBSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-neptune/src/commands/CreateEventSubscriptionCommand.ts index 414a6ffefec91..e0a82b5893393 100644 --- a/clients/client-neptune/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/CreateEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventSubscriptionMessage, CreateEventSubscriptionResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CreateEventSubscriptionMessage, CreateEventSubscriptionResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CreateEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/CreateGlobalClusterCommand.ts b/clients/client-neptune/src/commands/CreateGlobalClusterCommand.ts index 029089f9e3272..4ffc31855082e 100644 --- a/clients/client-neptune/src/commands/CreateGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/CreateGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGlobalClusterMessage, CreateGlobalClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { CreateGlobalClusterMessage, CreateGlobalClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { CreateGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DeleteDBClusterCommand.ts b/clients/client-neptune/src/commands/DeleteDBClusterCommand.ts index b8a3c29599e03..64221bb0ed477 100644 --- a/clients/client-neptune/src/commands/DeleteDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterMessage, DeleteDBClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DeleteDBClusterMessage, DeleteDBClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DeleteDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DeleteDBClusterEndpointCommand.ts b/clients/client-neptune/src/commands/DeleteDBClusterEndpointCommand.ts index eb22f566812a7..a90a607e860fe 100644 --- a/clients/client-neptune/src/commands/DeleteDBClusterEndpointCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBClusterEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterEndpointMessage, DeleteDBClusterEndpointOutput } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DeleteDBClusterEndpointMessage, DeleteDBClusterEndpointOutput } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DeleteDBClusterEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DeleteDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/DeleteDBClusterParameterGroupCommand.ts index c0d27d040e3a3..cc45bc886fd90 100644 --- a/clients/client-neptune/src/commands/DeleteDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterParameterGroupMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DeleteDBClusterParameterGroupMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DeleteDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DeleteDBClusterSnapshotCommand.ts b/clients/client-neptune/src/commands/DeleteDBClusterSnapshotCommand.ts index 64aa6f470b2a8..df04d149c57ec 100644 --- a/clients/client-neptune/src/commands/DeleteDBClusterSnapshotCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterSnapshotMessage, DeleteDBClusterSnapshotResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DeleteDBClusterSnapshotMessage, DeleteDBClusterSnapshotResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DeleteDBClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DeleteDBInstanceCommand.ts b/clients/client-neptune/src/commands/DeleteDBInstanceCommand.ts index 542da16f62980..d1d7d1ef50903 100644 --- a/clients/client-neptune/src/commands/DeleteDBInstanceCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBInstanceMessage, DeleteDBInstanceResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DeleteDBInstanceMessage, DeleteDBInstanceResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DeleteDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DeleteDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/DeleteDBParameterGroupCommand.ts index 0f1e3e5738b34..761796e570b32 100644 --- a/clients/client-neptune/src/commands/DeleteDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBParameterGroupMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DeleteDBParameterGroupMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DeleteDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DeleteDBSubnetGroupCommand.ts b/clients/client-neptune/src/commands/DeleteDBSubnetGroupCommand.ts index fb93d21ca7525..d47122a284a96 100644 --- a/clients/client-neptune/src/commands/DeleteDBSubnetGroupCommand.ts +++ b/clients/client-neptune/src/commands/DeleteDBSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBSubnetGroupMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DeleteDBSubnetGroupMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DeleteDBSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-neptune/src/commands/DeleteEventSubscriptionCommand.ts index fd6a715b74344..f0f61339c66fa 100644 --- a/clients/client-neptune/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/DeleteEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventSubscriptionMessage, DeleteEventSubscriptionResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DeleteEventSubscriptionMessage, DeleteEventSubscriptionResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DeleteEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DeleteGlobalClusterCommand.ts b/clients/client-neptune/src/commands/DeleteGlobalClusterCommand.ts index 79c77cfe5b959..048302171a7c3 100644 --- a/clients/client-neptune/src/commands/DeleteGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/DeleteGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGlobalClusterMessage, DeleteGlobalClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DeleteGlobalClusterMessage, DeleteGlobalClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DeleteGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBClusterEndpointsCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterEndpointsCommand.ts index db7c1bc251518..ad27106f501f1 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterEndpointsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterEndpointMessage, DescribeDBClusterEndpointsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBClusterEndpointMessage, DescribeDBClusterEndpointsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBClusterEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBClusterParameterGroupsCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterParameterGroupsCommand.ts index 362626ce81a5e..f6d1fb349a522 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterParameterGroupsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupsMessage, DescribeDBClusterParameterGroupsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBClusterParameterGroupsMessage, DescribeDBClusterParameterGroupsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBClusterParameterGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBClusterParametersCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterParametersCommand.ts index 32bc7fdf3f81d..57e731bdd1519 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterParametersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupDetails, DescribeDBClusterParametersMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBClusterParameterGroupDetails, DescribeDBClusterParametersMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBClusterParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts index f371fc45af2d1..143691150e804 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDBClusterSnapshotAttributesMessage, DescribeDBClusterSnapshotAttributesResult, } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBClusterSnapshotAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBClusterSnapshotsCommand.ts b/clients/client-neptune/src/commands/DescribeDBClusterSnapshotsCommand.ts index f20845df04573..1b5c2f42fd224 100644 --- a/clients/client-neptune/src/commands/DescribeDBClusterSnapshotsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClusterSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBClusterSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBClustersCommand.ts b/clients/client-neptune/src/commands/DescribeDBClustersCommand.ts index ac6203312f44c..ff5bfb8deeeab 100644 --- a/clients/client-neptune/src/commands/DescribeDBClustersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterMessage, DescribeDBClustersMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBClusterMessage, DescribeDBClustersMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBEngineVersionsCommand.ts b/clients/client-neptune/src/commands/DescribeDBEngineVersionsCommand.ts index 76c5c2109dba6..4a84163eba87f 100644 --- a/clients/client-neptune/src/commands/DescribeDBEngineVersionsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBEngineVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBEngineVersionMessage, DescribeDBEngineVersionsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBEngineVersionMessage, DescribeDBEngineVersionsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBEngineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBInstancesCommand.ts b/clients/client-neptune/src/commands/DescribeDBInstancesCommand.ts index 8642494075dac..d24d855909bf7 100644 --- a/clients/client-neptune/src/commands/DescribeDBInstancesCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBInstanceMessage, DescribeDBInstancesMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBInstanceMessage, DescribeDBInstancesMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBParameterGroupsCommand.ts b/clients/client-neptune/src/commands/DescribeDBParameterGroupsCommand.ts index a3848af6974cc..cc9da29da20a1 100644 --- a/clients/client-neptune/src/commands/DescribeDBParameterGroupsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBParameterGroupsMessage, DescribeDBParameterGroupsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBParameterGroupsMessage, DescribeDBParameterGroupsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBParameterGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBParametersCommand.ts b/clients/client-neptune/src/commands/DescribeDBParametersCommand.ts index 7b19e676b57a2..565e78e3b95c2 100644 --- a/clients/client-neptune/src/commands/DescribeDBParametersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBParameterGroupDetails, DescribeDBParametersMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBParameterGroupDetails, DescribeDBParametersMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeDBSubnetGroupsCommand.ts b/clients/client-neptune/src/commands/DescribeDBSubnetGroupsCommand.ts index 3982749900f68..d40d073df70d0 100644 --- a/clients/client-neptune/src/commands/DescribeDBSubnetGroupsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeDBSubnetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBSubnetGroupMessage, DescribeDBSubnetGroupsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBSubnetGroupMessage, DescribeDBSubnetGroupsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeDBSubnetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeEngineDefaultClusterParametersCommand.ts b/clients/client-neptune/src/commands/DescribeEngineDefaultClusterParametersCommand.ts index 67940f9154a66..18249e78d1f7c 100644 --- a/clients/client-neptune/src/commands/DescribeEngineDefaultClusterParametersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEngineDefaultClusterParametersCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeEngineDefaultClusterParametersMessage, DescribeEngineDefaultClusterParametersResult, } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeEngineDefaultClusterParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeEngineDefaultParametersCommand.ts b/clients/client-neptune/src/commands/DescribeEngineDefaultParametersCommand.ts index 8936f8274ae51..4ab30ee4331c8 100644 --- a/clients/client-neptune/src/commands/DescribeEngineDefaultParametersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEngineDefaultParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEngineDefaultParametersMessage, DescribeEngineDefaultParametersResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DescribeEngineDefaultParametersMessage, DescribeEngineDefaultParametersResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeEngineDefaultParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-neptune/src/commands/DescribeEventCategoriesCommand.ts index 8a90fd68077dc..2fdaebd84f502 100644 --- a/clients/client-neptune/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEventCategoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeEventCategories } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-neptune/src/commands/DescribeEventSubscriptionsCommand.ts index 3f29df7d2105f..d924896f185c6 100644 --- a/clients/client-neptune/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEventSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventSubscriptionsMessage, EventSubscriptionsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DescribeEventSubscriptionsMessage, EventSubscriptionsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeEventSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeEventsCommand.ts b/clients/client-neptune/src/commands/DescribeEventsCommand.ts index c58627f59163e..bd73b9dfacf39 100644 --- a/clients/client-neptune/src/commands/DescribeEventsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsMessage, EventsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DescribeEventsMessage, EventsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeGlobalClustersCommand.ts b/clients/client-neptune/src/commands/DescribeGlobalClustersCommand.ts index 3d2074b1796a7..47cb0663ef390 100644 --- a/clients/client-neptune/src/commands/DescribeGlobalClustersCommand.ts +++ b/clients/client-neptune/src/commands/DescribeGlobalClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGlobalClustersMessage, GlobalClustersMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DescribeGlobalClustersMessage, GlobalClustersMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeGlobalClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts b/clients/client-neptune/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts index b5f65cf694c02..f208eef35f4e9 100644 --- a/clients/client-neptune/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrderableDBInstanceOptionsMessage, OrderableDBInstanceOptionsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DescribeOrderableDBInstanceOptionsMessage, OrderableDBInstanceOptionsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeOrderableDBInstanceOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribePendingMaintenanceActionsCommand.ts b/clients/client-neptune/src/commands/DescribePendingMaintenanceActionsCommand.ts index 78766398f2f22..77819548fc371 100644 --- a/clients/client-neptune/src/commands/DescribePendingMaintenanceActionsCommand.ts +++ b/clients/client-neptune/src/commands/DescribePendingMaintenanceActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePendingMaintenanceActionsMessage, PendingMaintenanceActionsMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DescribePendingMaintenanceActionsMessage, PendingMaintenanceActionsMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribePendingMaintenanceActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/DescribeValidDBInstanceModificationsCommand.ts b/clients/client-neptune/src/commands/DescribeValidDBInstanceModificationsCommand.ts index f66367e76849b..0c07b1de615fd 100644 --- a/clients/client-neptune/src/commands/DescribeValidDBInstanceModificationsCommand.ts +++ b/clients/client-neptune/src/commands/DescribeValidDBInstanceModificationsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeValidDBInstanceModificationsMessage, DescribeValidDBInstanceModificationsResult, } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { DescribeValidDBInstanceModifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/FailoverDBClusterCommand.ts b/clients/client-neptune/src/commands/FailoverDBClusterCommand.ts index faff1f0cd23cd..3193869e7a8c7 100644 --- a/clients/client-neptune/src/commands/FailoverDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/FailoverDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FailoverDBClusterMessage, FailoverDBClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { FailoverDBClusterMessage, FailoverDBClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { FailoverDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/FailoverGlobalClusterCommand.ts b/clients/client-neptune/src/commands/FailoverGlobalClusterCommand.ts index e50459286cbd1..4727d21805592 100644 --- a/clients/client-neptune/src/commands/FailoverGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/FailoverGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FailoverGlobalClusterMessage, FailoverGlobalClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { FailoverGlobalClusterMessage, FailoverGlobalClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { FailoverGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ListTagsForResourceCommand.ts b/clients/client-neptune/src/commands/ListTagsForResourceCommand.ts index ebbaf420f9c2b..0c42482bcb044 100644 --- a/clients/client-neptune/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-neptune/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceMessage, TagListMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { ListTagsForResourceMessage, TagListMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ModifyDBClusterCommand.ts b/clients/client-neptune/src/commands/ModifyDBClusterCommand.ts index 481e2665526c2..de7c36e89f310 100644 --- a/clients/client-neptune/src/commands/ModifyDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBClusterMessage, ModifyDBClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { ModifyDBClusterMessage, ModifyDBClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ModifyDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ModifyDBClusterEndpointCommand.ts b/clients/client-neptune/src/commands/ModifyDBClusterEndpointCommand.ts index ae378a334f5a0..82cf50152b02d 100644 --- a/clients/client-neptune/src/commands/ModifyDBClusterEndpointCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBClusterEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBClusterEndpointMessage, ModifyDBClusterEndpointOutput } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { ModifyDBClusterEndpointMessage, ModifyDBClusterEndpointOutput } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ModifyDBClusterEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ModifyDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/ModifyDBClusterParameterGroupCommand.ts index 6b18e6642f3e5..1c03a3658da2a 100644 --- a/clients/client-neptune/src/commands/ModifyDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupNameMessage, ModifyDBClusterParameterGroupMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBClusterParameterGroupNameMessage, ModifyDBClusterParameterGroupMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ModifyDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts b/clients/client-neptune/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts index 602522a8c874c..f9cd1239c19f7 100644 --- a/clients/client-neptune/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBClusterSnapshotAttributeMessage, ModifyDBClusterSnapshotAttributeResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { + ModifyDBClusterSnapshotAttributeMessage, + ModifyDBClusterSnapshotAttributeResult, +} from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ModifyDBClusterSnapshotAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ModifyDBInstanceCommand.ts b/clients/client-neptune/src/commands/ModifyDBInstanceCommand.ts index c4ec7463a168a..b3fafab650e51 100644 --- a/clients/client-neptune/src/commands/ModifyDBInstanceCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBInstanceMessage, ModifyDBInstanceResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { ModifyDBInstanceMessage, ModifyDBInstanceResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ModifyDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ModifyDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/ModifyDBParameterGroupCommand.ts index 51c5509379666..8e29386f1a7a8 100644 --- a/clients/client-neptune/src/commands/ModifyDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBParameterGroupNameMessage, ModifyDBParameterGroupMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBParameterGroupNameMessage, ModifyDBParameterGroupMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ModifyDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ModifyDBSubnetGroupCommand.ts b/clients/client-neptune/src/commands/ModifyDBSubnetGroupCommand.ts index 5b2098315f81d..8adac78683448 100644 --- a/clients/client-neptune/src/commands/ModifyDBSubnetGroupCommand.ts +++ b/clients/client-neptune/src/commands/ModifyDBSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBSubnetGroupMessage, ModifyDBSubnetGroupResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { ModifyDBSubnetGroupMessage, ModifyDBSubnetGroupResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ModifyDBSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-neptune/src/commands/ModifyEventSubscriptionCommand.ts index c79ac8e6abc73..44de41ebab064 100644 --- a/clients/client-neptune/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/ModifyEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ModifyEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ModifyGlobalClusterCommand.ts b/clients/client-neptune/src/commands/ModifyGlobalClusterCommand.ts index 03643ee2f73bd..024a21156c374 100644 --- a/clients/client-neptune/src/commands/ModifyGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/ModifyGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyGlobalClusterMessage, ModifyGlobalClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { ModifyGlobalClusterMessage, ModifyGlobalClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ModifyGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/PromoteReadReplicaDBClusterCommand.ts b/clients/client-neptune/src/commands/PromoteReadReplicaDBClusterCommand.ts index 4a72be96e62f0..64c9a2cd93f9e 100644 --- a/clients/client-neptune/src/commands/PromoteReadReplicaDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/PromoteReadReplicaDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PromoteReadReplicaDBClusterMessage, PromoteReadReplicaDBClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { PromoteReadReplicaDBClusterMessage, PromoteReadReplicaDBClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { PromoteReadReplicaDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/RebootDBInstanceCommand.ts b/clients/client-neptune/src/commands/RebootDBInstanceCommand.ts index 117ada3ba729b..52767b40bf6f3 100644 --- a/clients/client-neptune/src/commands/RebootDBInstanceCommand.ts +++ b/clients/client-neptune/src/commands/RebootDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootDBInstanceMessage, RebootDBInstanceResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { RebootDBInstanceMessage, RebootDBInstanceResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { RebootDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/RemoveFromGlobalClusterCommand.ts b/clients/client-neptune/src/commands/RemoveFromGlobalClusterCommand.ts index c360ba8c0f3d6..7a2208332cabb 100644 --- a/clients/client-neptune/src/commands/RemoveFromGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/RemoveFromGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveFromGlobalClusterMessage, RemoveFromGlobalClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { RemoveFromGlobalClusterMessage, RemoveFromGlobalClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { RemoveFromGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/RemoveRoleFromDBClusterCommand.ts b/clients/client-neptune/src/commands/RemoveRoleFromDBClusterCommand.ts index a33052866edcd..3baf005172c16 100644 --- a/clients/client-neptune/src/commands/RemoveRoleFromDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/RemoveRoleFromDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveRoleFromDBClusterMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { RemoveRoleFromDBClusterMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { RemoveRoleFromDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts b/clients/client-neptune/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts index 1fa3791414248..1cba0d3d24d44 100644 --- a/clients/client-neptune/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts +++ b/clients/client-neptune/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RemoveSourceIdentifierFromSubscriptionMessage, RemoveSourceIdentifierFromSubscriptionResult, } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { RemoveSourceIdentifierFromSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-neptune/src/commands/RemoveTagsFromResourceCommand.ts index edd615c3cdab6..67ac59c23d123 100644 --- a/clients/client-neptune/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-neptune/src/commands/RemoveTagsFromResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromResourceMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { RemoveTagsFromResourceMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { RemoveTagsFromResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ResetDBClusterParameterGroupCommand.ts b/clients/client-neptune/src/commands/ResetDBClusterParameterGroupCommand.ts index c63012652ed92..95fb09c51f4b9 100644 --- a/clients/client-neptune/src/commands/ResetDBClusterParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/ResetDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupNameMessage, ResetDBClusterParameterGroupMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBClusterParameterGroupNameMessage, ResetDBClusterParameterGroupMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ResetDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/ResetDBParameterGroupCommand.ts b/clients/client-neptune/src/commands/ResetDBParameterGroupCommand.ts index 0275f0f88488d..06d4c9f60d5ec 100644 --- a/clients/client-neptune/src/commands/ResetDBParameterGroupCommand.ts +++ b/clients/client-neptune/src/commands/ResetDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBParameterGroupNameMessage, ResetDBParameterGroupMessage } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { DBParameterGroupNameMessage, ResetDBParameterGroupMessage } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { ResetDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/RestoreDBClusterFromSnapshotCommand.ts b/clients/client-neptune/src/commands/RestoreDBClusterFromSnapshotCommand.ts index 3c8bc1af9cb0f..a0abf8fd71b9f 100644 --- a/clients/client-neptune/src/commands/RestoreDBClusterFromSnapshotCommand.ts +++ b/clients/client-neptune/src/commands/RestoreDBClusterFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBClusterFromSnapshotMessage, RestoreDBClusterFromSnapshotResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { RestoreDBClusterFromSnapshotMessage, RestoreDBClusterFromSnapshotResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { RestoreDBClusterFromSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/RestoreDBClusterToPointInTimeCommand.ts b/clients/client-neptune/src/commands/RestoreDBClusterToPointInTimeCommand.ts index 9436d1353e761..20311dd19aa47 100644 --- a/clients/client-neptune/src/commands/RestoreDBClusterToPointInTimeCommand.ts +++ b/clients/client-neptune/src/commands/RestoreDBClusterToPointInTimeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBClusterToPointInTimeMessage, RestoreDBClusterToPointInTimeResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { RestoreDBClusterToPointInTimeMessage, RestoreDBClusterToPointInTimeResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { RestoreDBClusterToPointInTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/StartDBClusterCommand.ts b/clients/client-neptune/src/commands/StartDBClusterCommand.ts index 361907e67a86a..3b67dee46a11c 100644 --- a/clients/client-neptune/src/commands/StartDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/StartDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDBClusterMessage, StartDBClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { StartDBClusterMessage, StartDBClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { StartDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/StopDBClusterCommand.ts b/clients/client-neptune/src/commands/StopDBClusterCommand.ts index f72d41121122f..b7b7507df796f 100644 --- a/clients/client-neptune/src/commands/StopDBClusterCommand.ts +++ b/clients/client-neptune/src/commands/StopDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDBClusterMessage, StopDBClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { StopDBClusterMessage, StopDBClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { StopDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/commands/SwitchoverGlobalClusterCommand.ts b/clients/client-neptune/src/commands/SwitchoverGlobalClusterCommand.ts index 05aedb631e65e..57e92151ec369 100644 --- a/clients/client-neptune/src/commands/SwitchoverGlobalClusterCommand.ts +++ b/clients/client-neptune/src/commands/SwitchoverGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SwitchoverGlobalClusterMessage, SwitchoverGlobalClusterResult } from "../models/models_0"; -import { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; +import type { SwitchoverGlobalClusterMessage, SwitchoverGlobalClusterResult } from "../models/models_0"; +import type { NeptuneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptuneClient"; import { SwitchoverGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptune/src/endpoint/EndpointParameters.ts b/clients/client-neptune/src/endpoint/EndpointParameters.ts index 1dc6b89669c6b..1e9774efc5621 100644 --- a/clients/client-neptune/src/endpoint/EndpointParameters.ts +++ b/clients/client-neptune/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-neptune/src/endpoint/endpointResolver.ts b/clients/client-neptune/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-neptune/src/endpoint/endpointResolver.ts +++ b/clients/client-neptune/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-neptune/src/extensionConfiguration.ts b/clients/client-neptune/src/extensionConfiguration.ts index ff9138c99c0fb..3fba731bffd4a 100644 --- a/clients/client-neptune/src/extensionConfiguration.ts +++ b/clients/client-neptune/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-neptune/src/models/NeptuneServiceException.ts b/clients/client-neptune/src/models/NeptuneServiceException.ts index 6034e8ed26132..c64bf7141eeb1 100644 --- a/clients/client-neptune/src/models/NeptuneServiceException.ts +++ b/clients/client-neptune/src/models/NeptuneServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-neptune/src/models/errors.ts b/clients/client-neptune/src/models/errors.ts index dc54671a3bedb..594c97d2122cf 100644 --- a/clients/client-neptune/src/models/errors.ts +++ b/clients/client-neptune/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { NeptuneServiceException as __BaseException } from "./NeptuneServiceException"; diff --git a/clients/client-neptune/src/pagination/DescribeDBClusterEndpointsPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBClusterEndpointsPaginator.ts index 757d5ca9c880a..de1cc2a4765ca 100644 --- a/clients/client-neptune/src/pagination/DescribeDBClusterEndpointsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBClusterEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterEndpointsCommand, diff --git a/clients/client-neptune/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts index 3ae2ccbb407d9..076ed52c3c48d 100644 --- a/clients/client-neptune/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterParameterGroupsCommand, diff --git a/clients/client-neptune/src/pagination/DescribeDBClusterParametersPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBClusterParametersPaginator.ts index 661937759ce8f..25e6786ecffd1 100644 --- a/clients/client-neptune/src/pagination/DescribeDBClusterParametersPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBClusterParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterParametersCommand, diff --git a/clients/client-neptune/src/pagination/DescribeDBClusterSnapshotsPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBClusterSnapshotsPaginator.ts index 6e9155b57d484..e79519ec3bcac 100644 --- a/clients/client-neptune/src/pagination/DescribeDBClusterSnapshotsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBClusterSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterSnapshotsCommand, diff --git a/clients/client-neptune/src/pagination/DescribeDBClustersPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBClustersPaginator.ts index 2321f13d57b30..173d269c56da3 100644 --- a/clients/client-neptune/src/pagination/DescribeDBClustersPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClustersCommand, diff --git a/clients/client-neptune/src/pagination/DescribeDBEngineVersionsPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBEngineVersionsPaginator.ts index b85bbc7df0177..48ad8c4aa5089 100644 --- a/clients/client-neptune/src/pagination/DescribeDBEngineVersionsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBEngineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBEngineVersionsCommand, diff --git a/clients/client-neptune/src/pagination/DescribeDBInstancesPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBInstancesPaginator.ts index fd81393cfef21..49e8521b7035d 100644 --- a/clients/client-neptune/src/pagination/DescribeDBInstancesPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBInstancesCommand, diff --git a/clients/client-neptune/src/pagination/DescribeDBParameterGroupsPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBParameterGroupsPaginator.ts index 0f30b2f4694fa..33a7fd442d6c0 100644 --- a/clients/client-neptune/src/pagination/DescribeDBParameterGroupsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBParameterGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBParameterGroupsCommand, diff --git a/clients/client-neptune/src/pagination/DescribeDBParametersPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBParametersPaginator.ts index 04f093bba7d06..94cd2ab5198bd 100644 --- a/clients/client-neptune/src/pagination/DescribeDBParametersPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBParametersCommand, diff --git a/clients/client-neptune/src/pagination/DescribeDBSubnetGroupsPaginator.ts b/clients/client-neptune/src/pagination/DescribeDBSubnetGroupsPaginator.ts index 6013a46c79f1e..350432c3cd3c7 100644 --- a/clients/client-neptune/src/pagination/DescribeDBSubnetGroupsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeDBSubnetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBSubnetGroupsCommand, diff --git a/clients/client-neptune/src/pagination/DescribeEngineDefaultParametersPaginator.ts b/clients/client-neptune/src/pagination/DescribeEngineDefaultParametersPaginator.ts index 0f3364c8653fe..c8465af7835b9 100644 --- a/clients/client-neptune/src/pagination/DescribeEngineDefaultParametersPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeEngineDefaultParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEngineDefaultParametersCommand, diff --git a/clients/client-neptune/src/pagination/DescribeEventSubscriptionsPaginator.ts b/clients/client-neptune/src/pagination/DescribeEventSubscriptionsPaginator.ts index 185cea3f6d989..d8df335685080 100644 --- a/clients/client-neptune/src/pagination/DescribeEventSubscriptionsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeEventSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventSubscriptionsCommand, diff --git a/clients/client-neptune/src/pagination/DescribeEventsPaginator.ts b/clients/client-neptune/src/pagination/DescribeEventsPaginator.ts index c4f12a5ad1bf4..5de3770863095 100644 --- a/clients/client-neptune/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsCommand, diff --git a/clients/client-neptune/src/pagination/DescribeGlobalClustersPaginator.ts b/clients/client-neptune/src/pagination/DescribeGlobalClustersPaginator.ts index d6263a89024cf..9d23b19eefc8b 100644 --- a/clients/client-neptune/src/pagination/DescribeGlobalClustersPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeGlobalClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGlobalClustersCommand, diff --git a/clients/client-neptune/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts b/clients/client-neptune/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts index c3ee6901d986c..fe001d59ded89 100644 --- a/clients/client-neptune/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrderableDBInstanceOptionsCommand, diff --git a/clients/client-neptune/src/pagination/DescribePendingMaintenanceActionsPaginator.ts b/clients/client-neptune/src/pagination/DescribePendingMaintenanceActionsPaginator.ts index 9e2a08c2289e7..a20cc55751bb8 100644 --- a/clients/client-neptune/src/pagination/DescribePendingMaintenanceActionsPaginator.ts +++ b/clients/client-neptune/src/pagination/DescribePendingMaintenanceActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePendingMaintenanceActionsCommand, diff --git a/clients/client-neptune/src/pagination/Interfaces.ts b/clients/client-neptune/src/pagination/Interfaces.ts index 49ba63626b129..0fca2a19aca38 100644 --- a/clients/client-neptune/src/pagination/Interfaces.ts +++ b/clients/client-neptune/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { NeptuneClient } from "../NeptuneClient"; diff --git a/clients/client-neptune/src/runtimeConfig.browser.ts b/clients/client-neptune/src/runtimeConfig.browser.ts index 14ea2cf23e6f9..0bf8d1562755b 100644 --- a/clients/client-neptune/src/runtimeConfig.browser.ts +++ b/clients/client-neptune/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NeptuneClientConfig } from "./NeptuneClient"; + +import type { NeptuneClientConfig } from "./NeptuneClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-neptune/src/runtimeConfig.native.ts b/clients/client-neptune/src/runtimeConfig.native.ts index d64c68dd343bf..206a4e503599b 100644 --- a/clients/client-neptune/src/runtimeConfig.native.ts +++ b/clients/client-neptune/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { NeptuneClientConfig } from "./NeptuneClient"; +import type { NeptuneClientConfig } from "./NeptuneClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-neptune/src/runtimeConfig.shared.ts b/clients/client-neptune/src/runtimeConfig.shared.ts index e0bbc3ee08910..9babf9cb993a9 100644 --- a/clients/client-neptune/src/runtimeConfig.shared.ts +++ b/clients/client-neptune/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultNeptuneHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { NeptuneClientConfig } from "./NeptuneClient"; +import type { NeptuneClientConfig } from "./NeptuneClient"; /** * @internal diff --git a/clients/client-neptune/src/runtimeConfig.ts b/clients/client-neptune/src/runtimeConfig.ts index 5c1d21b87150c..46453a1c32e0e 100644 --- a/clients/client-neptune/src/runtimeConfig.ts +++ b/clients/client-neptune/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NeptuneClientConfig } from "./NeptuneClient"; + +import type { NeptuneClientConfig } from "./NeptuneClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-neptune/src/runtimeExtensions.ts b/clients/client-neptune/src/runtimeExtensions.ts index 5ef96640249c5..b044d076d8ccb 100644 --- a/clients/client-neptune/src/runtimeExtensions.ts +++ b/clients/client-neptune/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { NeptuneExtensionConfiguration } from "./extensionConfiguration"; +import type { NeptuneExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-neptune/src/schemas/schemas_0.ts b/clients/client-neptune/src/schemas/schemas_0.ts index 51b317eb65128..6ddf6e7636b3c 100644 --- a/clients/client-neptune/src/schemas/schemas_0.ts +++ b/clients/client-neptune/src/schemas/schemas_0.ts @@ -643,7 +643,7 @@ const n0 = "com.amazonaws.neptune"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-neptunedata/package.json b/clients/client-neptunedata/package.json index 01e921d7347e0..29b0acbb17f3a 100644 --- a/clients/client-neptunedata/package.json +++ b/clients/client-neptunedata/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-neptunedata/src/Neptunedata.ts b/clients/client-neptunedata/src/Neptunedata.ts index d1062b023c1af..b3e8ac759e3e6 100644 --- a/clients/client-neptunedata/src/Neptunedata.ts +++ b/clients/client-neptunedata/src/Neptunedata.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelGremlinQueryCommand, @@ -217,7 +217,7 @@ import { StartMLModelTransformJobCommandInput, StartMLModelTransformJobCommandOutput, } from "./commands/StartMLModelTransformJobCommand"; -import { NeptunedataClient, NeptunedataClientConfig } from "./NeptunedataClient"; +import { NeptunedataClient } from "./NeptunedataClient"; const commands = { CancelGremlinQueryCommand, diff --git a/clients/client-neptunedata/src/NeptunedataClient.ts b/clients/client-neptunedata/src/NeptunedataClient.ts index e0ed0a75a6865..a8290e86513cc 100644 --- a/clients/client-neptunedata/src/NeptunedataClient.ts +++ b/clients/client-neptunedata/src/NeptunedataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultNeptunedataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelGremlinQueryCommandInput, CancelGremlinQueryCommandOutput } from "./commands/CancelGremlinQueryCommand"; @@ -194,7 +203,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-neptunedata/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-neptunedata/src/auth/httpAuthExtensionConfiguration.ts index 26577250a11c8..1ba993cfc28a0 100644 --- a/clients/client-neptunedata/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-neptunedata/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { NeptunedataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { NeptunedataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-neptunedata/src/auth/httpAuthSchemeProvider.ts b/clients/client-neptunedata/src/auth/httpAuthSchemeProvider.ts index bf9f9cddde0bb..8c31caf117f6e 100644 --- a/clients/client-neptunedata/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-neptunedata/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { NeptunedataClientConfig, NeptunedataClientResolvedConfig } from "../NeptunedataClient"; +import { type NeptunedataClientResolvedConfig, NeptunedataClientConfig } from "../NeptunedataClient"; /** * @internal diff --git a/clients/client-neptunedata/src/commands/CancelGremlinQueryCommand.ts b/clients/client-neptunedata/src/commands/CancelGremlinQueryCommand.ts index f4cbef65dc4fb..062f2e4c5915f 100644 --- a/clients/client-neptunedata/src/commands/CancelGremlinQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelGremlinQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelGremlinQueryInput, CancelGremlinQueryOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { CancelGremlinQueryInput, CancelGremlinQueryOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { CancelGremlinQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/CancelLoaderJobCommand.ts b/clients/client-neptunedata/src/commands/CancelLoaderJobCommand.ts index 169d073b69f75..3c957585cf428 100644 --- a/clients/client-neptunedata/src/commands/CancelLoaderJobCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelLoaderJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelLoaderJobInput, CancelLoaderJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { CancelLoaderJobInput, CancelLoaderJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { CancelLoaderJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/CancelMLDataProcessingJobCommand.ts b/clients/client-neptunedata/src/commands/CancelMLDataProcessingJobCommand.ts index 5149670085fe0..aaafe87763fe4 100644 --- a/clients/client-neptunedata/src/commands/CancelMLDataProcessingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelMLDataProcessingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMLDataProcessingJobInput, CancelMLDataProcessingJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { CancelMLDataProcessingJobInput, CancelMLDataProcessingJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { CancelMLDataProcessingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/CancelMLModelTrainingJobCommand.ts b/clients/client-neptunedata/src/commands/CancelMLModelTrainingJobCommand.ts index d53e696ea636c..62c3417783eb0 100644 --- a/clients/client-neptunedata/src/commands/CancelMLModelTrainingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelMLModelTrainingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMLModelTrainingJobInput, CancelMLModelTrainingJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { CancelMLModelTrainingJobInput, CancelMLModelTrainingJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { CancelMLModelTrainingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/CancelMLModelTransformJobCommand.ts b/clients/client-neptunedata/src/commands/CancelMLModelTransformJobCommand.ts index d8e6a4dfb8703..e36058475f8ca 100644 --- a/clients/client-neptunedata/src/commands/CancelMLModelTransformJobCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelMLModelTransformJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMLModelTransformJobInput, CancelMLModelTransformJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { CancelMLModelTransformJobInput, CancelMLModelTransformJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { CancelMLModelTransformJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/CancelOpenCypherQueryCommand.ts b/clients/client-neptunedata/src/commands/CancelOpenCypherQueryCommand.ts index 6a8bf37d8d14a..33808338fd522 100644 --- a/clients/client-neptunedata/src/commands/CancelOpenCypherQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/CancelOpenCypherQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelOpenCypherQueryInput, CancelOpenCypherQueryOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { CancelOpenCypherQueryInput, CancelOpenCypherQueryOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { CancelOpenCypherQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/CreateMLEndpointCommand.ts b/clients/client-neptunedata/src/commands/CreateMLEndpointCommand.ts index 6a7003c25d3fe..56d7e1ce2e0dd 100644 --- a/clients/client-neptunedata/src/commands/CreateMLEndpointCommand.ts +++ b/clients/client-neptunedata/src/commands/CreateMLEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMLEndpointInput, CreateMLEndpointOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { CreateMLEndpointInput, CreateMLEndpointOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { CreateMLEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/DeleteMLEndpointCommand.ts b/clients/client-neptunedata/src/commands/DeleteMLEndpointCommand.ts index b19797d4e5f75..d5b74ebc18fa9 100644 --- a/clients/client-neptunedata/src/commands/DeleteMLEndpointCommand.ts +++ b/clients/client-neptunedata/src/commands/DeleteMLEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMLEndpointInput, DeleteMLEndpointOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { DeleteMLEndpointInput, DeleteMLEndpointOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { DeleteMLEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/DeletePropertygraphStatisticsCommand.ts b/clients/client-neptunedata/src/commands/DeletePropertygraphStatisticsCommand.ts index 1c65866ea81b6..0db18626f6553 100644 --- a/clients/client-neptunedata/src/commands/DeletePropertygraphStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/DeletePropertygraphStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePropertygraphStatisticsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { DeletePropertygraphStatisticsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { DeletePropertygraphStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/DeleteSparqlStatisticsCommand.ts b/clients/client-neptunedata/src/commands/DeleteSparqlStatisticsCommand.ts index 423a278ab6147..f2e54905cd33a 100644 --- a/clients/client-neptunedata/src/commands/DeleteSparqlStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/DeleteSparqlStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSparqlStatisticsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { DeleteSparqlStatisticsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { DeleteSparqlStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ExecuteFastResetCommand.ts b/clients/client-neptunedata/src/commands/ExecuteFastResetCommand.ts index 07df2ae329432..fc23c43b2a838 100644 --- a/clients/client-neptunedata/src/commands/ExecuteFastResetCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteFastResetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteFastResetInput, ExecuteFastResetOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ExecuteFastResetInput, ExecuteFastResetOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ExecuteFastReset } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ExecuteGremlinExplainQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteGremlinExplainQueryCommand.ts index 15db920848466..be9870ccda1ba 100644 --- a/clients/client-neptunedata/src/commands/ExecuteGremlinExplainQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteGremlinExplainQueryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteGremlinExplainQueryInput, ExecuteGremlinExplainQueryOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import { type ExecuteGremlinExplainQueryInput, ExecuteGremlinExplainQueryOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ExecuteGremlinExplainQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ExecuteGremlinProfileQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteGremlinProfileQueryCommand.ts index 2fdd268b589a0..274df913d2c54 100644 --- a/clients/client-neptunedata/src/commands/ExecuteGremlinProfileQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteGremlinProfileQueryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteGremlinProfileQueryInput, ExecuteGremlinProfileQueryOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import { type ExecuteGremlinProfileQueryInput, ExecuteGremlinProfileQueryOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ExecuteGremlinProfileQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ExecuteGremlinQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteGremlinQueryCommand.ts index c0e8d6cfa8ef8..a55a746468348 100644 --- a/clients/client-neptunedata/src/commands/ExecuteGremlinQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteGremlinQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteGremlinQueryInput, ExecuteGremlinQueryOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ExecuteGremlinQueryInput, ExecuteGremlinQueryOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ExecuteGremlinQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ExecuteOpenCypherExplainQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteOpenCypherExplainQueryCommand.ts index 8cd56fc5c0fdb..b188cf7140849 100644 --- a/clients/client-neptunedata/src/commands/ExecuteOpenCypherExplainQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteOpenCypherExplainQueryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteOpenCypherExplainQueryInput, ExecuteOpenCypherExplainQueryOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import { type ExecuteOpenCypherExplainQueryInput, ExecuteOpenCypherExplainQueryOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ExecuteOpenCypherExplainQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ExecuteOpenCypherQueryCommand.ts b/clients/client-neptunedata/src/commands/ExecuteOpenCypherQueryCommand.ts index c886621aa8d0e..a6ee1a162dbb2 100644 --- a/clients/client-neptunedata/src/commands/ExecuteOpenCypherQueryCommand.ts +++ b/clients/client-neptunedata/src/commands/ExecuteOpenCypherQueryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteOpenCypherQueryInput, ExecuteOpenCypherQueryOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ExecuteOpenCypherQueryInput, ExecuteOpenCypherQueryOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ExecuteOpenCypherQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetEngineStatusCommand.ts b/clients/client-neptunedata/src/commands/GetEngineStatusCommand.ts index 5169ccf64ebeb..5e273ed49597f 100644 --- a/clients/client-neptunedata/src/commands/GetEngineStatusCommand.ts +++ b/clients/client-neptunedata/src/commands/GetEngineStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEngineStatusOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetEngineStatusOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetEngineStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetGremlinQueryStatusCommand.ts b/clients/client-neptunedata/src/commands/GetGremlinQueryStatusCommand.ts index d64168bb586a4..4ef757effab93 100644 --- a/clients/client-neptunedata/src/commands/GetGremlinQueryStatusCommand.ts +++ b/clients/client-neptunedata/src/commands/GetGremlinQueryStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGremlinQueryStatusInput, GetGremlinQueryStatusOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetGremlinQueryStatusInput, GetGremlinQueryStatusOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetGremlinQueryStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetLoaderJobStatusCommand.ts b/clients/client-neptunedata/src/commands/GetLoaderJobStatusCommand.ts index 2789da951a1ae..7d6d607f10c95 100644 --- a/clients/client-neptunedata/src/commands/GetLoaderJobStatusCommand.ts +++ b/clients/client-neptunedata/src/commands/GetLoaderJobStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLoaderJobStatusInput, GetLoaderJobStatusOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetLoaderJobStatusInput, GetLoaderJobStatusOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetLoaderJobStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetMLDataProcessingJobCommand.ts b/clients/client-neptunedata/src/commands/GetMLDataProcessingJobCommand.ts index 60f9939fc9c8c..7d71515cd8cf6 100644 --- a/clients/client-neptunedata/src/commands/GetMLDataProcessingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/GetMLDataProcessingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMLDataProcessingJobInput, GetMLDataProcessingJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetMLDataProcessingJobInput, GetMLDataProcessingJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetMLDataProcessingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetMLEndpointCommand.ts b/clients/client-neptunedata/src/commands/GetMLEndpointCommand.ts index 8eae2de48aa6c..52d60d1c1d4ad 100644 --- a/clients/client-neptunedata/src/commands/GetMLEndpointCommand.ts +++ b/clients/client-neptunedata/src/commands/GetMLEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMLEndpointInput, GetMLEndpointOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetMLEndpointInput, GetMLEndpointOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetMLEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetMLModelTrainingJobCommand.ts b/clients/client-neptunedata/src/commands/GetMLModelTrainingJobCommand.ts index 9b43d06af7c0b..7f4ac2a22c419 100644 --- a/clients/client-neptunedata/src/commands/GetMLModelTrainingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/GetMLModelTrainingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMLModelTrainingJobInput, GetMLModelTrainingJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetMLModelTrainingJobInput, GetMLModelTrainingJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetMLModelTrainingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetMLModelTransformJobCommand.ts b/clients/client-neptunedata/src/commands/GetMLModelTransformJobCommand.ts index 0e7ce8c4ce640..53ca05e595e9e 100644 --- a/clients/client-neptunedata/src/commands/GetMLModelTransformJobCommand.ts +++ b/clients/client-neptunedata/src/commands/GetMLModelTransformJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMLModelTransformJobInput, GetMLModelTransformJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetMLModelTransformJobInput, GetMLModelTransformJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetMLModelTransformJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetOpenCypherQueryStatusCommand.ts b/clients/client-neptunedata/src/commands/GetOpenCypherQueryStatusCommand.ts index f3c886c5f617f..5c9dd1c269b96 100644 --- a/clients/client-neptunedata/src/commands/GetOpenCypherQueryStatusCommand.ts +++ b/clients/client-neptunedata/src/commands/GetOpenCypherQueryStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOpenCypherQueryStatusInput, GetOpenCypherQueryStatusOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetOpenCypherQueryStatusInput, GetOpenCypherQueryStatusOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetOpenCypherQueryStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetPropertygraphStatisticsCommand.ts b/clients/client-neptunedata/src/commands/GetPropertygraphStatisticsCommand.ts index 626f0dfc9ee41..9fccd7838f70b 100644 --- a/clients/client-neptunedata/src/commands/GetPropertygraphStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/GetPropertygraphStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPropertygraphStatisticsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetPropertygraphStatisticsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetPropertygraphStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetPropertygraphStreamCommand.ts b/clients/client-neptunedata/src/commands/GetPropertygraphStreamCommand.ts index 34a56e32a4555..9c3d7c6b0ebf6 100644 --- a/clients/client-neptunedata/src/commands/GetPropertygraphStreamCommand.ts +++ b/clients/client-neptunedata/src/commands/GetPropertygraphStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPropertygraphStreamInput, GetPropertygraphStreamOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetPropertygraphStreamInput, GetPropertygraphStreamOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetPropertygraphStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetPropertygraphSummaryCommand.ts b/clients/client-neptunedata/src/commands/GetPropertygraphSummaryCommand.ts index 479cdc1d02c96..47e8e4010c1d3 100644 --- a/clients/client-neptunedata/src/commands/GetPropertygraphSummaryCommand.ts +++ b/clients/client-neptunedata/src/commands/GetPropertygraphSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPropertygraphSummaryInput, GetPropertygraphSummaryOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetPropertygraphSummaryInput, GetPropertygraphSummaryOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetPropertygraphSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetRDFGraphSummaryCommand.ts b/clients/client-neptunedata/src/commands/GetRDFGraphSummaryCommand.ts index 735ab509b88a5..7f17d46ee5592 100644 --- a/clients/client-neptunedata/src/commands/GetRDFGraphSummaryCommand.ts +++ b/clients/client-neptunedata/src/commands/GetRDFGraphSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRDFGraphSummaryInput, GetRDFGraphSummaryOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetRDFGraphSummaryInput, GetRDFGraphSummaryOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetRDFGraphSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetSparqlStatisticsCommand.ts b/clients/client-neptunedata/src/commands/GetSparqlStatisticsCommand.ts index 2cb974c9dc0e7..4990cf019175f 100644 --- a/clients/client-neptunedata/src/commands/GetSparqlStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/GetSparqlStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSparqlStatisticsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetSparqlStatisticsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetSparqlStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/GetSparqlStreamCommand.ts b/clients/client-neptunedata/src/commands/GetSparqlStreamCommand.ts index 02f1242163323..46da02a9b67a6 100644 --- a/clients/client-neptunedata/src/commands/GetSparqlStreamCommand.ts +++ b/clients/client-neptunedata/src/commands/GetSparqlStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSparqlStreamInput, GetSparqlStreamOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { GetSparqlStreamInput, GetSparqlStreamOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { GetSparqlStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ListGremlinQueriesCommand.ts b/clients/client-neptunedata/src/commands/ListGremlinQueriesCommand.ts index 53de25ee698af..b55ca74a1bcd2 100644 --- a/clients/client-neptunedata/src/commands/ListGremlinQueriesCommand.ts +++ b/clients/client-neptunedata/src/commands/ListGremlinQueriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGremlinQueriesInput, ListGremlinQueriesOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ListGremlinQueriesInput, ListGremlinQueriesOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ListGremlinQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ListLoaderJobsCommand.ts b/clients/client-neptunedata/src/commands/ListLoaderJobsCommand.ts index 3c82f1a540027..1224d792a65c7 100644 --- a/clients/client-neptunedata/src/commands/ListLoaderJobsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListLoaderJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLoaderJobsInput, ListLoaderJobsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ListLoaderJobsInput, ListLoaderJobsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ListLoaderJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ListMLDataProcessingJobsCommand.ts b/clients/client-neptunedata/src/commands/ListMLDataProcessingJobsCommand.ts index 2e006d2f74f77..bcf14dbb92394 100644 --- a/clients/client-neptunedata/src/commands/ListMLDataProcessingJobsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListMLDataProcessingJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMLDataProcessingJobsInput, ListMLDataProcessingJobsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ListMLDataProcessingJobsInput, ListMLDataProcessingJobsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ListMLDataProcessingJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ListMLEndpointsCommand.ts b/clients/client-neptunedata/src/commands/ListMLEndpointsCommand.ts index f86380c17ebbd..eea6485a69ca7 100644 --- a/clients/client-neptunedata/src/commands/ListMLEndpointsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListMLEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMLEndpointsInput, ListMLEndpointsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ListMLEndpointsInput, ListMLEndpointsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ListMLEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ListMLModelTrainingJobsCommand.ts b/clients/client-neptunedata/src/commands/ListMLModelTrainingJobsCommand.ts index 017376570a02f..8fb5f7349e33c 100644 --- a/clients/client-neptunedata/src/commands/ListMLModelTrainingJobsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListMLModelTrainingJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMLModelTrainingJobsInput, ListMLModelTrainingJobsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ListMLModelTrainingJobsInput, ListMLModelTrainingJobsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ListMLModelTrainingJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ListMLModelTransformJobsCommand.ts b/clients/client-neptunedata/src/commands/ListMLModelTransformJobsCommand.ts index 83e9a7a9b0244..6be31a313a0e2 100644 --- a/clients/client-neptunedata/src/commands/ListMLModelTransformJobsCommand.ts +++ b/clients/client-neptunedata/src/commands/ListMLModelTransformJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMLModelTransformJobsInput, ListMLModelTransformJobsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ListMLModelTransformJobsInput, ListMLModelTransformJobsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ListMLModelTransformJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ListOpenCypherQueriesCommand.ts b/clients/client-neptunedata/src/commands/ListOpenCypherQueriesCommand.ts index cb723824d6f2d..c15e146f8ebfa 100644 --- a/clients/client-neptunedata/src/commands/ListOpenCypherQueriesCommand.ts +++ b/clients/client-neptunedata/src/commands/ListOpenCypherQueriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOpenCypherQueriesInput, ListOpenCypherQueriesOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ListOpenCypherQueriesInput, ListOpenCypherQueriesOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ListOpenCypherQueries } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ManagePropertygraphStatisticsCommand.ts b/clients/client-neptunedata/src/commands/ManagePropertygraphStatisticsCommand.ts index da03ae0d7ae19..ca1989f7b8c5b 100644 --- a/clients/client-neptunedata/src/commands/ManagePropertygraphStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/ManagePropertygraphStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ManagePropertygraphStatisticsInput, ManagePropertygraphStatisticsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ManagePropertygraphStatisticsInput, ManagePropertygraphStatisticsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ManagePropertygraphStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/ManageSparqlStatisticsCommand.ts b/clients/client-neptunedata/src/commands/ManageSparqlStatisticsCommand.ts index 6518b452fb340..bc6e06263b4a2 100644 --- a/clients/client-neptunedata/src/commands/ManageSparqlStatisticsCommand.ts +++ b/clients/client-neptunedata/src/commands/ManageSparqlStatisticsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ManageSparqlStatisticsInput, ManageSparqlStatisticsOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { ManageSparqlStatisticsInput, ManageSparqlStatisticsOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { ManageSparqlStatistics } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/StartLoaderJobCommand.ts b/clients/client-neptunedata/src/commands/StartLoaderJobCommand.ts index 697b0573203ca..b1af9519b297f 100644 --- a/clients/client-neptunedata/src/commands/StartLoaderJobCommand.ts +++ b/clients/client-neptunedata/src/commands/StartLoaderJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartLoaderJobInput, StartLoaderJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { StartLoaderJobInput, StartLoaderJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { StartLoaderJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/StartMLDataProcessingJobCommand.ts b/clients/client-neptunedata/src/commands/StartMLDataProcessingJobCommand.ts index e2a58e0c8a030..b2cb822e1ff1d 100644 --- a/clients/client-neptunedata/src/commands/StartMLDataProcessingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/StartMLDataProcessingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMLDataProcessingJobInput, StartMLDataProcessingJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { StartMLDataProcessingJobInput, StartMLDataProcessingJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { StartMLDataProcessingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/StartMLModelTrainingJobCommand.ts b/clients/client-neptunedata/src/commands/StartMLModelTrainingJobCommand.ts index cabf03e3188dd..ef7d6ce89ab95 100644 --- a/clients/client-neptunedata/src/commands/StartMLModelTrainingJobCommand.ts +++ b/clients/client-neptunedata/src/commands/StartMLModelTrainingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMLModelTrainingJobInput, StartMLModelTrainingJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { StartMLModelTrainingJobInput, StartMLModelTrainingJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { StartMLModelTrainingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/commands/StartMLModelTransformJobCommand.ts b/clients/client-neptunedata/src/commands/StartMLModelTransformJobCommand.ts index b830bb95f1b3b..bcdd30573f121 100644 --- a/clients/client-neptunedata/src/commands/StartMLModelTransformJobCommand.ts +++ b/clients/client-neptunedata/src/commands/StartMLModelTransformJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMLModelTransformJobInput, StartMLModelTransformJobOutput } from "../models/models_0"; -import { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; +import type { StartMLModelTransformJobInput, StartMLModelTransformJobOutput } from "../models/models_0"; +import type { NeptunedataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NeptunedataClient"; import { StartMLModelTransformJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-neptunedata/src/endpoint/EndpointParameters.ts b/clients/client-neptunedata/src/endpoint/EndpointParameters.ts index 9ca02f463705f..27a47e1475d8b 100644 --- a/clients/client-neptunedata/src/endpoint/EndpointParameters.ts +++ b/clients/client-neptunedata/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-neptunedata/src/endpoint/endpointResolver.ts b/clients/client-neptunedata/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-neptunedata/src/endpoint/endpointResolver.ts +++ b/clients/client-neptunedata/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-neptunedata/src/extensionConfiguration.ts b/clients/client-neptunedata/src/extensionConfiguration.ts index d1fc949d42e78..f089207f372c7 100644 --- a/clients/client-neptunedata/src/extensionConfiguration.ts +++ b/clients/client-neptunedata/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-neptunedata/src/models/NeptunedataServiceException.ts b/clients/client-neptunedata/src/models/NeptunedataServiceException.ts index 64d5e6365d8e5..2d043f3a8d71d 100644 --- a/clients/client-neptunedata/src/models/NeptunedataServiceException.ts +++ b/clients/client-neptunedata/src/models/NeptunedataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-neptunedata/src/models/errors.ts b/clients/client-neptunedata/src/models/errors.ts index bac4fa46dbd4b..3c78354128da3 100644 --- a/clients/client-neptunedata/src/models/errors.ts +++ b/clients/client-neptunedata/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { NeptunedataServiceException as __BaseException } from "./NeptunedataServiceException"; diff --git a/clients/client-neptunedata/src/runtimeConfig.browser.ts b/clients/client-neptunedata/src/runtimeConfig.browser.ts index e3d1c7c3d1bdc..2b59ea4129d9a 100644 --- a/clients/client-neptunedata/src/runtimeConfig.browser.ts +++ b/clients/client-neptunedata/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NeptunedataClientConfig } from "./NeptunedataClient"; + +import type { NeptunedataClientConfig } from "./NeptunedataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-neptunedata/src/runtimeConfig.native.ts b/clients/client-neptunedata/src/runtimeConfig.native.ts index 6fb0c29c3e55d..d25b6bfaca162 100644 --- a/clients/client-neptunedata/src/runtimeConfig.native.ts +++ b/clients/client-neptunedata/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { NeptunedataClientConfig } from "./NeptunedataClient"; +import type { NeptunedataClientConfig } from "./NeptunedataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-neptunedata/src/runtimeConfig.shared.ts b/clients/client-neptunedata/src/runtimeConfig.shared.ts index f2c17b34c4c8b..453236a9e13c3 100644 --- a/clients/client-neptunedata/src/runtimeConfig.shared.ts +++ b/clients/client-neptunedata/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultNeptunedataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { NeptunedataClientConfig } from "./NeptunedataClient"; +import type { NeptunedataClientConfig } from "./NeptunedataClient"; /** * @internal diff --git a/clients/client-neptunedata/src/runtimeConfig.ts b/clients/client-neptunedata/src/runtimeConfig.ts index d910aa5744e12..99eb805df6944 100644 --- a/clients/client-neptunedata/src/runtimeConfig.ts +++ b/clients/client-neptunedata/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NeptunedataClientConfig } from "./NeptunedataClient"; + +import type { NeptunedataClientConfig } from "./NeptunedataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-neptunedata/src/runtimeExtensions.ts b/clients/client-neptunedata/src/runtimeExtensions.ts index 37c3e8cf392bb..45ecb287a11a1 100644 --- a/clients/client-neptunedata/src/runtimeExtensions.ts +++ b/clients/client-neptunedata/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { NeptunedataExtensionConfiguration } from "./extensionConfiguration"; +import type { NeptunedataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-neptunedata/src/schemas/schemas_0.ts b/clients/client-neptunedata/src/schemas/schemas_0.ts index 52902e4248790..44c043b4f1c09 100644 --- a/clients/client-neptunedata/src/schemas/schemas_0.ts +++ b/clients/client-neptunedata/src/schemas/schemas_0.ts @@ -393,7 +393,7 @@ const n0 = "com.amazonaws.neptunedata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-network-firewall/package.json b/clients/client-network-firewall/package.json index aadd1b4d466a9..5a9f026474300 100644 --- a/clients/client-network-firewall/package.json +++ b/clients/client-network-firewall/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-network-firewall/src/NetworkFirewall.ts b/clients/client-network-firewall/src/NetworkFirewall.ts index d5cd8cb7bb3bb..cc2d18597776d 100644 --- a/clients/client-network-firewall/src/NetworkFirewall.ts +++ b/clients/client-network-firewall/src/NetworkFirewall.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptNetworkFirewallTransitGatewayAttachmentCommand, @@ -377,7 +377,7 @@ import { UpdateTLSInspectionConfigurationCommandInput, UpdateTLSInspectionConfigurationCommandOutput, } from "./commands/UpdateTLSInspectionConfigurationCommand"; -import { NetworkFirewallClient, NetworkFirewallClientConfig } from "./NetworkFirewallClient"; +import { NetworkFirewallClient } from "./NetworkFirewallClient"; const commands = { AcceptNetworkFirewallTransitGatewayAttachmentCommand, diff --git a/clients/client-network-firewall/src/NetworkFirewallClient.ts b/clients/client-network-firewall/src/NetworkFirewallClient.ts index 6efa69840d870..16ee1b1c21be3 100644 --- a/clients/client-network-firewall/src/NetworkFirewallClient.ts +++ b/clients/client-network-firewall/src/NetworkFirewallClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultNetworkFirewallHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -305,7 +314,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-network-firewall/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-network-firewall/src/auth/httpAuthExtensionConfiguration.ts index a08a743761dc5..881b80fa075ee 100644 --- a/clients/client-network-firewall/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-network-firewall/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { NetworkFirewallHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { NetworkFirewallHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-network-firewall/src/auth/httpAuthSchemeProvider.ts b/clients/client-network-firewall/src/auth/httpAuthSchemeProvider.ts index 569040ba74162..def67cb502ddd 100644 --- a/clients/client-network-firewall/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-network-firewall/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { NetworkFirewallClientConfig, NetworkFirewallClientResolvedConfig } from "../NetworkFirewallClient"; +import { type NetworkFirewallClientResolvedConfig, NetworkFirewallClientConfig } from "../NetworkFirewallClient"; /** * @internal diff --git a/clients/client-network-firewall/src/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.ts b/clients/client-network-firewall/src/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.ts index 407ab4e09dc52..29840780ca3f5 100644 --- a/clients/client-network-firewall/src/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.ts +++ b/clients/client-network-firewall/src/commands/AcceptNetworkFirewallTransitGatewayAttachmentCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AcceptNetworkFirewallTransitGatewayAttachmentRequest, AcceptNetworkFirewallTransitGatewayAttachmentResponse, } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { AcceptNetworkFirewallTransitGatewayAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/AssociateAvailabilityZonesCommand.ts b/clients/client-network-firewall/src/commands/AssociateAvailabilityZonesCommand.ts index 3e181fd2cd4d6..1a4f70ba5328c 100644 --- a/clients/client-network-firewall/src/commands/AssociateAvailabilityZonesCommand.ts +++ b/clients/client-network-firewall/src/commands/AssociateAvailabilityZonesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAvailabilityZonesRequest, AssociateAvailabilityZonesResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { AssociateAvailabilityZonesRequest, AssociateAvailabilityZonesResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { AssociateAvailabilityZones } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/AssociateFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/AssociateFirewallPolicyCommand.ts index 525f5174fa9b1..45fe53573b44d 100644 --- a/clients/client-network-firewall/src/commands/AssociateFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/AssociateFirewallPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateFirewallPolicyRequest, AssociateFirewallPolicyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { AssociateFirewallPolicyRequest, AssociateFirewallPolicyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { AssociateFirewallPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/AssociateSubnetsCommand.ts b/clients/client-network-firewall/src/commands/AssociateSubnetsCommand.ts index ec5940d763f6b..b7289ce8432ce 100644 --- a/clients/client-network-firewall/src/commands/AssociateSubnetsCommand.ts +++ b/clients/client-network-firewall/src/commands/AssociateSubnetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSubnetsRequest, AssociateSubnetsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { AssociateSubnetsRequest, AssociateSubnetsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { AssociateSubnets } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/AttachRuleGroupsToProxyConfigurationCommand.ts b/clients/client-network-firewall/src/commands/AttachRuleGroupsToProxyConfigurationCommand.ts index 296c4c69ce750..9139e12ad6d86 100644 --- a/clients/client-network-firewall/src/commands/AttachRuleGroupsToProxyConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/AttachRuleGroupsToProxyConfigurationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AttachRuleGroupsToProxyConfigurationRequest, AttachRuleGroupsToProxyConfigurationResponse, } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { AttachRuleGroupsToProxyConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/CreateFirewallCommand.ts b/clients/client-network-firewall/src/commands/CreateFirewallCommand.ts index 2de6e254d2f1c..7d3e3e8419400 100644 --- a/clients/client-network-firewall/src/commands/CreateFirewallCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateFirewallCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFirewallRequest, CreateFirewallResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { CreateFirewallRequest, CreateFirewallResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { CreateFirewall } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/CreateFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/CreateFirewallPolicyCommand.ts index 0cbfe13e90ea4..d35d8bd8f3f0e 100644 --- a/clients/client-network-firewall/src/commands/CreateFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateFirewallPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFirewallPolicyRequest, CreateFirewallPolicyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { CreateFirewallPolicyRequest, CreateFirewallPolicyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { CreateFirewallPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/CreateProxyCommand.ts b/clients/client-network-firewall/src/commands/CreateProxyCommand.ts index d894fe55767ba..049d08cbb7c4c 100644 --- a/clients/client-network-firewall/src/commands/CreateProxyCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateProxyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProxyRequest, CreateProxyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { CreateProxyRequest, CreateProxyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { CreateProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/CreateProxyConfigurationCommand.ts b/clients/client-network-firewall/src/commands/CreateProxyConfigurationCommand.ts index e392f7018401c..92977ebd5ca1b 100644 --- a/clients/client-network-firewall/src/commands/CreateProxyConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateProxyConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProxyConfigurationRequest, CreateProxyConfigurationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { CreateProxyConfigurationRequest, CreateProxyConfigurationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { CreateProxyConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/CreateProxyRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/CreateProxyRuleGroupCommand.ts index 1ffde69e8928e..cec014fbfbb96 100644 --- a/clients/client-network-firewall/src/commands/CreateProxyRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateProxyRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProxyRuleGroupRequest, CreateProxyRuleGroupResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { CreateProxyRuleGroupRequest, CreateProxyRuleGroupResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { CreateProxyRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/CreateProxyRulesCommand.ts b/clients/client-network-firewall/src/commands/CreateProxyRulesCommand.ts index db6c4a2c2a9e1..aaf1c2892ce87 100644 --- a/clients/client-network-firewall/src/commands/CreateProxyRulesCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateProxyRulesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProxyRulesRequest, CreateProxyRulesResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { CreateProxyRulesRequest, CreateProxyRulesResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { CreateProxyRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/CreateRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/CreateRuleGroupCommand.ts index a12c193ad70b5..8c6ba891f983e 100644 --- a/clients/client-network-firewall/src/commands/CreateRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleGroupRequest, CreateRuleGroupResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { CreateRuleGroupRequest, CreateRuleGroupResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { CreateRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/CreateTLSInspectionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/CreateTLSInspectionConfigurationCommand.ts index d4d562dd8960f..f2f16151a485c 100644 --- a/clients/client-network-firewall/src/commands/CreateTLSInspectionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateTLSInspectionConfigurationCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTLSInspectionConfigurationRequest, CreateTLSInspectionConfigurationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + CreateTLSInspectionConfigurationRequest, + CreateTLSInspectionConfigurationResponse, +} from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { CreateTLSInspectionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/CreateVpcEndpointAssociationCommand.ts b/clients/client-network-firewall/src/commands/CreateVpcEndpointAssociationCommand.ts index 8b75f00d4b2d8..56d8c74459b93 100644 --- a/clients/client-network-firewall/src/commands/CreateVpcEndpointAssociationCommand.ts +++ b/clients/client-network-firewall/src/commands/CreateVpcEndpointAssociationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcEndpointAssociationRequest, CreateVpcEndpointAssociationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { CreateVpcEndpointAssociationRequest, CreateVpcEndpointAssociationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { CreateVpcEndpointAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteFirewallCommand.ts b/clients/client-network-firewall/src/commands/DeleteFirewallCommand.ts index 4583b9f4546d6..bbc69457b9ebc 100644 --- a/clients/client-network-firewall/src/commands/DeleteFirewallCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteFirewallCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFirewallRequest, DeleteFirewallResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DeleteFirewallRequest, DeleteFirewallResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteFirewall } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/DeleteFirewallPolicyCommand.ts index 218926b4a390b..ddef153942f54 100644 --- a/clients/client-network-firewall/src/commands/DeleteFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteFirewallPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFirewallPolicyRequest, DeleteFirewallPolicyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DeleteFirewallPolicyRequest, DeleteFirewallPolicyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteFirewallPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.ts b/clients/client-network-firewall/src/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.ts index dcd4ddb509d79..4d131866a4ad2 100644 --- a/clients/client-network-firewall/src/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteNetworkFirewallTransitGatewayAttachmentCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteNetworkFirewallTransitGatewayAttachmentRequest, DeleteNetworkFirewallTransitGatewayAttachmentResponse, } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteNetworkFirewallTransitGatewayAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteProxyCommand.ts b/clients/client-network-firewall/src/commands/DeleteProxyCommand.ts index 22bc5751ddb7a..06423346116d6 100644 --- a/clients/client-network-firewall/src/commands/DeleteProxyCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteProxyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProxyRequest, DeleteProxyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DeleteProxyRequest, DeleteProxyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteProxyConfigurationCommand.ts b/clients/client-network-firewall/src/commands/DeleteProxyConfigurationCommand.ts index 095b7d5f24445..aa05a511b5118 100644 --- a/clients/client-network-firewall/src/commands/DeleteProxyConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteProxyConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProxyConfigurationRequest, DeleteProxyConfigurationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DeleteProxyConfigurationRequest, DeleteProxyConfigurationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteProxyConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteProxyRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/DeleteProxyRuleGroupCommand.ts index 05df5dc8023be..67c2ecd591757 100644 --- a/clients/client-network-firewall/src/commands/DeleteProxyRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteProxyRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProxyRuleGroupRequest, DeleteProxyRuleGroupResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DeleteProxyRuleGroupRequest, DeleteProxyRuleGroupResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteProxyRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteProxyRulesCommand.ts b/clients/client-network-firewall/src/commands/DeleteProxyRulesCommand.ts index d6e014eac92e0..7fd157d683c51 100644 --- a/clients/client-network-firewall/src/commands/DeleteProxyRulesCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteProxyRulesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProxyRulesRequest, DeleteProxyRulesResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DeleteProxyRulesRequest, DeleteProxyRulesResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteProxyRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-network-firewall/src/commands/DeleteResourcePolicyCommand.ts index 6201f63e494a3..75400e9a2780a 100644 --- a/clients/client-network-firewall/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/DeleteRuleGroupCommand.ts index cba157609f2e6..a20ae4c2d0bd5 100644 --- a/clients/client-network-firewall/src/commands/DeleteRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleGroupRequest, DeleteRuleGroupResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DeleteRuleGroupRequest, DeleteRuleGroupResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteTLSInspectionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/DeleteTLSInspectionConfigurationCommand.ts index 9472f8c7ac6e4..bfacc544c8fd1 100644 --- a/clients/client-network-firewall/src/commands/DeleteTLSInspectionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteTLSInspectionConfigurationCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTLSInspectionConfigurationRequest, DeleteTLSInspectionConfigurationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + DeleteTLSInspectionConfigurationRequest, + DeleteTLSInspectionConfigurationResponse, +} from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteTLSInspectionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DeleteVpcEndpointAssociationCommand.ts b/clients/client-network-firewall/src/commands/DeleteVpcEndpointAssociationCommand.ts index 29e9bcd3ec1c6..dd72d7ecbb535 100644 --- a/clients/client-network-firewall/src/commands/DeleteVpcEndpointAssociationCommand.ts +++ b/clients/client-network-firewall/src/commands/DeleteVpcEndpointAssociationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcEndpointAssociationRequest, DeleteVpcEndpointAssociationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DeleteVpcEndpointAssociationRequest, DeleteVpcEndpointAssociationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DeleteVpcEndpointAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeFirewallCommand.ts b/clients/client-network-firewall/src/commands/DescribeFirewallCommand.ts index 1d91dc9089e75..e3d19bf9083eb 100644 --- a/clients/client-network-firewall/src/commands/DescribeFirewallCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeFirewallCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFirewallRequest, DescribeFirewallResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeFirewallRequest, DescribeFirewallResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeFirewall } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeFirewallMetadataCommand.ts b/clients/client-network-firewall/src/commands/DescribeFirewallMetadataCommand.ts index bc9b912a660a7..0a58d26f93065 100644 --- a/clients/client-network-firewall/src/commands/DescribeFirewallMetadataCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeFirewallMetadataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFirewallMetadataRequest, DescribeFirewallMetadataResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeFirewallMetadataRequest, DescribeFirewallMetadataResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeFirewallMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/DescribeFirewallPolicyCommand.ts index ad7a9141cd346..224768f743941 100644 --- a/clients/client-network-firewall/src/commands/DescribeFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeFirewallPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFirewallPolicyRequest, DescribeFirewallPolicyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeFirewallPolicyRequest, DescribeFirewallPolicyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeFirewallPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeFlowOperationCommand.ts b/clients/client-network-firewall/src/commands/DescribeFlowOperationCommand.ts index f16c58c459a53..104ce45242dce 100644 --- a/clients/client-network-firewall/src/commands/DescribeFlowOperationCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeFlowOperationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFlowOperationRequest, DescribeFlowOperationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeFlowOperationRequest, DescribeFlowOperationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeFlowOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeLoggingConfigurationCommand.ts b/clients/client-network-firewall/src/commands/DescribeLoggingConfigurationCommand.ts index 1712fba735e44..ac2f7f290d61a 100644 --- a/clients/client-network-firewall/src/commands/DescribeLoggingConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeLoggingConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoggingConfigurationRequest, DescribeLoggingConfigurationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeLoggingConfigurationRequest, DescribeLoggingConfigurationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeProxyCommand.ts b/clients/client-network-firewall/src/commands/DescribeProxyCommand.ts index 0e930f74a2fc2..e9caba66a0945 100644 --- a/clients/client-network-firewall/src/commands/DescribeProxyCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeProxyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProxyRequest, DescribeProxyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeProxyRequest, DescribeProxyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeProxyConfigurationCommand.ts b/clients/client-network-firewall/src/commands/DescribeProxyConfigurationCommand.ts index 6898336698298..388b3f9c54b84 100644 --- a/clients/client-network-firewall/src/commands/DescribeProxyConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeProxyConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProxyConfigurationRequest, DescribeProxyConfigurationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeProxyConfigurationRequest, DescribeProxyConfigurationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeProxyConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeProxyRuleCommand.ts b/clients/client-network-firewall/src/commands/DescribeProxyRuleCommand.ts index 45884a3d299b8..d264b1e745db1 100644 --- a/clients/client-network-firewall/src/commands/DescribeProxyRuleCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeProxyRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProxyRuleRequest, DescribeProxyRuleResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeProxyRuleRequest, DescribeProxyRuleResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeProxyRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeProxyRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/DescribeProxyRuleGroupCommand.ts index ea30a5004d838..bb4db986f6bca 100644 --- a/clients/client-network-firewall/src/commands/DescribeProxyRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeProxyRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProxyRuleGroupRequest, DescribeProxyRuleGroupResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeProxyRuleGroupRequest, DescribeProxyRuleGroupResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeProxyRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-network-firewall/src/commands/DescribeResourcePolicyCommand.ts index 9997b551fefb5..c0a65e6da0a9f 100644 --- a/clients/client-network-firewall/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeResourcePolicyRequest, DescribeResourcePolicyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/DescribeRuleGroupCommand.ts index 68e31d8402a70..77a6a62bd2638 100644 --- a/clients/client-network-firewall/src/commands/DescribeRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRuleGroupRequest, DescribeRuleGroupResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeRuleGroupRequest, DescribeRuleGroupResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeRuleGroupMetadataCommand.ts b/clients/client-network-firewall/src/commands/DescribeRuleGroupMetadataCommand.ts index 09731718d3ad3..45fd807423464 100644 --- a/clients/client-network-firewall/src/commands/DescribeRuleGroupMetadataCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeRuleGroupMetadataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRuleGroupMetadataRequest, DescribeRuleGroupMetadataResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeRuleGroupMetadataRequest, DescribeRuleGroupMetadataResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeRuleGroupMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeRuleGroupSummaryCommand.ts b/clients/client-network-firewall/src/commands/DescribeRuleGroupSummaryCommand.ts index 7416212baec8a..e7ae1d00a22d7 100644 --- a/clients/client-network-firewall/src/commands/DescribeRuleGroupSummaryCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeRuleGroupSummaryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRuleGroupSummaryRequest, DescribeRuleGroupSummaryResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeRuleGroupSummaryRequest, DescribeRuleGroupSummaryResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeRuleGroupSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeTLSInspectionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/DescribeTLSInspectionConfigurationCommand.ts index 4e196effb0de4..1c11077b4ec30 100644 --- a/clients/client-network-firewall/src/commands/DescribeTLSInspectionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeTLSInspectionConfigurationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTLSInspectionConfigurationRequest, DescribeTLSInspectionConfigurationResponse, } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeTLSInspectionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DescribeVpcEndpointAssociationCommand.ts b/clients/client-network-firewall/src/commands/DescribeVpcEndpointAssociationCommand.ts index 5c1935c20fd83..844ce82ed5128 100644 --- a/clients/client-network-firewall/src/commands/DescribeVpcEndpointAssociationCommand.ts +++ b/clients/client-network-firewall/src/commands/DescribeVpcEndpointAssociationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcEndpointAssociationRequest, DescribeVpcEndpointAssociationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DescribeVpcEndpointAssociationRequest, DescribeVpcEndpointAssociationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DescribeVpcEndpointAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DetachRuleGroupsFromProxyConfigurationCommand.ts b/clients/client-network-firewall/src/commands/DetachRuleGroupsFromProxyConfigurationCommand.ts index 2cdfbda1ea7e9..8e5bcc3577f58 100644 --- a/clients/client-network-firewall/src/commands/DetachRuleGroupsFromProxyConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/DetachRuleGroupsFromProxyConfigurationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DetachRuleGroupsFromProxyConfigurationRequest, DetachRuleGroupsFromProxyConfigurationResponse, } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DetachRuleGroupsFromProxyConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DisassociateAvailabilityZonesCommand.ts b/clients/client-network-firewall/src/commands/DisassociateAvailabilityZonesCommand.ts index e7bb718d0ea2a..7a2415d07aa62 100644 --- a/clients/client-network-firewall/src/commands/DisassociateAvailabilityZonesCommand.ts +++ b/clients/client-network-firewall/src/commands/DisassociateAvailabilityZonesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateAvailabilityZonesRequest, DisassociateAvailabilityZonesResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DisassociateAvailabilityZonesRequest, DisassociateAvailabilityZonesResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DisassociateAvailabilityZones } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/DisassociateSubnetsCommand.ts b/clients/client-network-firewall/src/commands/DisassociateSubnetsCommand.ts index 10b5ca06f01cb..36834972951e0 100644 --- a/clients/client-network-firewall/src/commands/DisassociateSubnetsCommand.ts +++ b/clients/client-network-firewall/src/commands/DisassociateSubnetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateSubnetsRequest, DisassociateSubnetsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { DisassociateSubnetsRequest, DisassociateSubnetsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { DisassociateSubnets } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/GetAnalysisReportResultsCommand.ts b/clients/client-network-firewall/src/commands/GetAnalysisReportResultsCommand.ts index 273c05b474e00..0d5c2280d141a 100644 --- a/clients/client-network-firewall/src/commands/GetAnalysisReportResultsCommand.ts +++ b/clients/client-network-firewall/src/commands/GetAnalysisReportResultsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnalysisReportResultsRequest, GetAnalysisReportResultsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { GetAnalysisReportResultsRequest, GetAnalysisReportResultsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { GetAnalysisReportResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListAnalysisReportsCommand.ts b/clients/client-network-firewall/src/commands/ListAnalysisReportsCommand.ts index 8bdf0729176f9..e8248bd9a9c17 100644 --- a/clients/client-network-firewall/src/commands/ListAnalysisReportsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListAnalysisReportsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnalysisReportsRequest, ListAnalysisReportsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListAnalysisReportsRequest, ListAnalysisReportsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListAnalysisReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListFirewallPoliciesCommand.ts b/clients/client-network-firewall/src/commands/ListFirewallPoliciesCommand.ts index 96b34cc9bc6ba..57eee563dcbd9 100644 --- a/clients/client-network-firewall/src/commands/ListFirewallPoliciesCommand.ts +++ b/clients/client-network-firewall/src/commands/ListFirewallPoliciesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallPoliciesRequest, ListFirewallPoliciesResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListFirewallPoliciesRequest, ListFirewallPoliciesResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListFirewallPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListFirewallsCommand.ts b/clients/client-network-firewall/src/commands/ListFirewallsCommand.ts index 7e18684d21a18..088cab8bdb2dc 100644 --- a/clients/client-network-firewall/src/commands/ListFirewallsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListFirewallsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallsRequest, ListFirewallsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListFirewallsRequest, ListFirewallsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListFirewalls } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListFlowOperationResultsCommand.ts b/clients/client-network-firewall/src/commands/ListFlowOperationResultsCommand.ts index 8ac5c67512204..7642c33d10ef9 100644 --- a/clients/client-network-firewall/src/commands/ListFlowOperationResultsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListFlowOperationResultsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowOperationResultsRequest, ListFlowOperationResultsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListFlowOperationResultsRequest, ListFlowOperationResultsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListFlowOperationResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListFlowOperationsCommand.ts b/clients/client-network-firewall/src/commands/ListFlowOperationsCommand.ts index de26d8f4b5116..057c8baada42e 100644 --- a/clients/client-network-firewall/src/commands/ListFlowOperationsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListFlowOperationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowOperationsRequest, ListFlowOperationsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListFlowOperationsRequest, ListFlowOperationsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListFlowOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListProxiesCommand.ts b/clients/client-network-firewall/src/commands/ListProxiesCommand.ts index 729cb0eb16a65..2bb267ea07f7a 100644 --- a/clients/client-network-firewall/src/commands/ListProxiesCommand.ts +++ b/clients/client-network-firewall/src/commands/ListProxiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProxiesRequest, ListProxiesResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListProxiesRequest, ListProxiesResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListProxies } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListProxyConfigurationsCommand.ts b/clients/client-network-firewall/src/commands/ListProxyConfigurationsCommand.ts index f680b972bf202..caa0002fe259f 100644 --- a/clients/client-network-firewall/src/commands/ListProxyConfigurationsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListProxyConfigurationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProxyConfigurationsRequest, ListProxyConfigurationsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListProxyConfigurationsRequest, ListProxyConfigurationsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListProxyConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListProxyRuleGroupsCommand.ts b/clients/client-network-firewall/src/commands/ListProxyRuleGroupsCommand.ts index b577a93111066..da30adcb6c621 100644 --- a/clients/client-network-firewall/src/commands/ListProxyRuleGroupsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListProxyRuleGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProxyRuleGroupsRequest, ListProxyRuleGroupsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListProxyRuleGroupsRequest, ListProxyRuleGroupsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListProxyRuleGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListRuleGroupsCommand.ts b/clients/client-network-firewall/src/commands/ListRuleGroupsCommand.ts index da68fb66964a1..dfc35c9c4b7d2 100644 --- a/clients/client-network-firewall/src/commands/ListRuleGroupsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListRuleGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRuleGroupsRequest, ListRuleGroupsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListRuleGroupsRequest, ListRuleGroupsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListRuleGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListTLSInspectionConfigurationsCommand.ts b/clients/client-network-firewall/src/commands/ListTLSInspectionConfigurationsCommand.ts index 57c714b675ffb..d3eceb0a6f2cd 100644 --- a/clients/client-network-firewall/src/commands/ListTLSInspectionConfigurationsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListTLSInspectionConfigurationsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTLSInspectionConfigurationsRequest, ListTLSInspectionConfigurationsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + ListTLSInspectionConfigurationsRequest, + ListTLSInspectionConfigurationsResponse, +} from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListTLSInspectionConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListTagsForResourceCommand.ts b/clients/client-network-firewall/src/commands/ListTagsForResourceCommand.ts index 02dd2f8d8b961..0e43f765eddb2 100644 --- a/clients/client-network-firewall/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-network-firewall/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/ListVpcEndpointAssociationsCommand.ts b/clients/client-network-firewall/src/commands/ListVpcEndpointAssociationsCommand.ts index 3317f5513dcf4..093852c9ca434 100644 --- a/clients/client-network-firewall/src/commands/ListVpcEndpointAssociationsCommand.ts +++ b/clients/client-network-firewall/src/commands/ListVpcEndpointAssociationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcEndpointAssociationsRequest, ListVpcEndpointAssociationsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { ListVpcEndpointAssociationsRequest, ListVpcEndpointAssociationsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { ListVpcEndpointAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/PutResourcePolicyCommand.ts b/clients/client-network-firewall/src/commands/PutResourcePolicyCommand.ts index a8de966a61c50..358b74582f784 100644 --- a/clients/client-network-firewall/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.ts b/clients/client-network-firewall/src/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.ts index baeee0cd5b481..abb38e34b1407 100644 --- a/clients/client-network-firewall/src/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.ts +++ b/clients/client-network-firewall/src/commands/RejectNetworkFirewallTransitGatewayAttachmentCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RejectNetworkFirewallTransitGatewayAttachmentRequest, RejectNetworkFirewallTransitGatewayAttachmentResponse, } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { RejectNetworkFirewallTransitGatewayAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/StartAnalysisReportCommand.ts b/clients/client-network-firewall/src/commands/StartAnalysisReportCommand.ts index c6bd32a681f1e..32d4ae6f804a4 100644 --- a/clients/client-network-firewall/src/commands/StartAnalysisReportCommand.ts +++ b/clients/client-network-firewall/src/commands/StartAnalysisReportCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAnalysisReportRequest, StartAnalysisReportResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { StartAnalysisReportRequest, StartAnalysisReportResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { StartAnalysisReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/StartFlowCaptureCommand.ts b/clients/client-network-firewall/src/commands/StartFlowCaptureCommand.ts index e1689d7bf2b7b..b8e7febbd3691 100644 --- a/clients/client-network-firewall/src/commands/StartFlowCaptureCommand.ts +++ b/clients/client-network-firewall/src/commands/StartFlowCaptureCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFlowCaptureRequest, StartFlowCaptureResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { StartFlowCaptureRequest, StartFlowCaptureResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { StartFlowCapture } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/StartFlowFlushCommand.ts b/clients/client-network-firewall/src/commands/StartFlowFlushCommand.ts index a75eacfd6f718..204b598bd6792 100644 --- a/clients/client-network-firewall/src/commands/StartFlowFlushCommand.ts +++ b/clients/client-network-firewall/src/commands/StartFlowFlushCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFlowFlushRequest, StartFlowFlushResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { StartFlowFlushRequest, StartFlowFlushResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { StartFlowFlush } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/TagResourceCommand.ts b/clients/client-network-firewall/src/commands/TagResourceCommand.ts index 17a09f20488fe..c607740f66e36 100644 --- a/clients/client-network-firewall/src/commands/TagResourceCommand.ts +++ b/clients/client-network-firewall/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UntagResourceCommand.ts b/clients/client-network-firewall/src/commands/UntagResourceCommand.ts index 65080b442039c..abaee46d4f7f1 100644 --- a/clients/client-network-firewall/src/commands/UntagResourceCommand.ts +++ b/clients/client-network-firewall/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateAvailabilityZoneChangeProtectionCommand.ts b/clients/client-network-firewall/src/commands/UpdateAvailabilityZoneChangeProtectionCommand.ts index 8e6ed4bee44fa..d6accbf8a2bd9 100644 --- a/clients/client-network-firewall/src/commands/UpdateAvailabilityZoneChangeProtectionCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateAvailabilityZoneChangeProtectionCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateAvailabilityZoneChangeProtectionRequest, UpdateAvailabilityZoneChangeProtectionResponse, } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateAvailabilityZoneChangeProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallAnalysisSettingsCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallAnalysisSettingsCommand.ts index d161d2619ca9d..5dd8747a965fc 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallAnalysisSettingsCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallAnalysisSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFirewallAnalysisSettingsRequest, UpdateFirewallAnalysisSettingsResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateFirewallAnalysisSettingsRequest, UpdateFirewallAnalysisSettingsResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateFirewallAnalysisSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallDeleteProtectionCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallDeleteProtectionCommand.ts index 1843f8b3c1cc4..878d6e32645a1 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallDeleteProtectionCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallDeleteProtectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFirewallDeleteProtectionRequest, UpdateFirewallDeleteProtectionResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateFirewallDeleteProtectionRequest, UpdateFirewallDeleteProtectionResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateFirewallDeleteProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallDescriptionCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallDescriptionCommand.ts index 5959656ad9e72..4b1aac0022448 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallDescriptionCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallDescriptionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFirewallDescriptionRequest, UpdateFirewallDescriptionResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateFirewallDescriptionRequest, UpdateFirewallDescriptionResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateFirewallDescription } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallEncryptionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallEncryptionConfigurationCommand.ts index 14593b6a6d936..ce3fe6e9b8680 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallEncryptionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallEncryptionConfigurationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateFirewallEncryptionConfigurationRequest, UpdateFirewallEncryptionConfigurationResponse, } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateFirewallEncryptionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallPolicyChangeProtectionCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallPolicyChangeProtectionCommand.ts index 98112189eab85..cc93fca23e1d6 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallPolicyChangeProtectionCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallPolicyChangeProtectionCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateFirewallPolicyChangeProtectionRequest, UpdateFirewallPolicyChangeProtectionResponse, } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateFirewallPolicyChangeProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateFirewallPolicyCommand.ts b/clients/client-network-firewall/src/commands/UpdateFirewallPolicyCommand.ts index 85dab46eb8e1b..f77f0d5d66ccf 100644 --- a/clients/client-network-firewall/src/commands/UpdateFirewallPolicyCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateFirewallPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFirewallPolicyRequest, UpdateFirewallPolicyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateFirewallPolicyRequest, UpdateFirewallPolicyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateFirewallPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateLoggingConfigurationCommand.ts b/clients/client-network-firewall/src/commands/UpdateLoggingConfigurationCommand.ts index a1a444150e8d7..e9c6a9fa01d14 100644 --- a/clients/client-network-firewall/src/commands/UpdateLoggingConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateLoggingConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLoggingConfigurationRequest, UpdateLoggingConfigurationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateLoggingConfigurationRequest, UpdateLoggingConfigurationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateLoggingConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateProxyCommand.ts b/clients/client-network-firewall/src/commands/UpdateProxyCommand.ts index 7ce7607f1f814..b3f57ef3beea1 100644 --- a/clients/client-network-firewall/src/commands/UpdateProxyCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateProxyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProxyRequest, UpdateProxyResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateProxyRequest, UpdateProxyResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateProxyConfigurationCommand.ts b/clients/client-network-firewall/src/commands/UpdateProxyConfigurationCommand.ts index cc7a15dc0e65b..d26e021074795 100644 --- a/clients/client-network-firewall/src/commands/UpdateProxyConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateProxyConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProxyConfigurationRequest, UpdateProxyConfigurationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateProxyConfigurationRequest, UpdateProxyConfigurationResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateProxyConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateProxyRuleCommand.ts b/clients/client-network-firewall/src/commands/UpdateProxyRuleCommand.ts index fcc9a39a447a3..b807665888331 100644 --- a/clients/client-network-firewall/src/commands/UpdateProxyRuleCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateProxyRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProxyRuleRequest, UpdateProxyRuleResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateProxyRuleRequest, UpdateProxyRuleResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateProxyRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateProxyRuleGroupPrioritiesCommand.ts b/clients/client-network-firewall/src/commands/UpdateProxyRuleGroupPrioritiesCommand.ts index 26f9094756181..3a320dc03008f 100644 --- a/clients/client-network-firewall/src/commands/UpdateProxyRuleGroupPrioritiesCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateProxyRuleGroupPrioritiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProxyRuleGroupPrioritiesRequest, UpdateProxyRuleGroupPrioritiesResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateProxyRuleGroupPrioritiesRequest, UpdateProxyRuleGroupPrioritiesResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateProxyRuleGroupPriorities } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateProxyRulePrioritiesCommand.ts b/clients/client-network-firewall/src/commands/UpdateProxyRulePrioritiesCommand.ts index 9b0f108d180f7..84cfb03fa59d1 100644 --- a/clients/client-network-firewall/src/commands/UpdateProxyRulePrioritiesCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateProxyRulePrioritiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProxyRulePrioritiesRequest, UpdateProxyRulePrioritiesResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateProxyRulePrioritiesRequest, UpdateProxyRulePrioritiesResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateProxyRulePriorities } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateRuleGroupCommand.ts b/clients/client-network-firewall/src/commands/UpdateRuleGroupCommand.ts index 0cffa48f5c931..6d277bc1543b4 100644 --- a/clients/client-network-firewall/src/commands/UpdateRuleGroupCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleGroupRequest, UpdateRuleGroupResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateRuleGroupRequest, UpdateRuleGroupResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateSubnetChangeProtectionCommand.ts b/clients/client-network-firewall/src/commands/UpdateSubnetChangeProtectionCommand.ts index d949f0bd14d3a..607d355910ff6 100644 --- a/clients/client-network-firewall/src/commands/UpdateSubnetChangeProtectionCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateSubnetChangeProtectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubnetChangeProtectionRequest, UpdateSubnetChangeProtectionResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { UpdateSubnetChangeProtectionRequest, UpdateSubnetChangeProtectionResponse } from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateSubnetChangeProtection } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/commands/UpdateTLSInspectionConfigurationCommand.ts b/clients/client-network-firewall/src/commands/UpdateTLSInspectionConfigurationCommand.ts index abc8faacc25cc..293659f6827b4 100644 --- a/clients/client-network-firewall/src/commands/UpdateTLSInspectionConfigurationCommand.ts +++ b/clients/client-network-firewall/src/commands/UpdateTLSInspectionConfigurationCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTLSInspectionConfigurationRequest, UpdateTLSInspectionConfigurationResponse } from "../models/models_0"; -import { NetworkFirewallClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkFirewallClient"; +import type { + UpdateTLSInspectionConfigurationRequest, + UpdateTLSInspectionConfigurationResponse, +} from "../models/models_0"; +import type { + NetworkFirewallClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkFirewallClient"; import { UpdateTLSInspectionConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-network-firewall/src/endpoint/EndpointParameters.ts b/clients/client-network-firewall/src/endpoint/EndpointParameters.ts index 3a3c65200af8e..bb517383c31ef 100644 --- a/clients/client-network-firewall/src/endpoint/EndpointParameters.ts +++ b/clients/client-network-firewall/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-network-firewall/src/endpoint/endpointResolver.ts b/clients/client-network-firewall/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-network-firewall/src/endpoint/endpointResolver.ts +++ b/clients/client-network-firewall/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-network-firewall/src/extensionConfiguration.ts b/clients/client-network-firewall/src/extensionConfiguration.ts index 51594637c6e3f..44def09ec17d8 100644 --- a/clients/client-network-firewall/src/extensionConfiguration.ts +++ b/clients/client-network-firewall/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-network-firewall/src/models/NetworkFirewallServiceException.ts b/clients/client-network-firewall/src/models/NetworkFirewallServiceException.ts index 4d451ba49463d..0264153972a0d 100644 --- a/clients/client-network-firewall/src/models/NetworkFirewallServiceException.ts +++ b/clients/client-network-firewall/src/models/NetworkFirewallServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-network-firewall/src/models/errors.ts b/clients/client-network-firewall/src/models/errors.ts index 408e4135e8dc4..10abce5eebc35 100644 --- a/clients/client-network-firewall/src/models/errors.ts +++ b/clients/client-network-firewall/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { NetworkFirewallServiceException as __BaseException } from "./NetworkFirewallServiceException"; diff --git a/clients/client-network-firewall/src/pagination/GetAnalysisReportResultsPaginator.ts b/clients/client-network-firewall/src/pagination/GetAnalysisReportResultsPaginator.ts index ad5ee5e74dc5c..c9afe1ab44b25 100644 --- a/clients/client-network-firewall/src/pagination/GetAnalysisReportResultsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/GetAnalysisReportResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAnalysisReportResultsCommand, diff --git a/clients/client-network-firewall/src/pagination/Interfaces.ts b/clients/client-network-firewall/src/pagination/Interfaces.ts index febb8a116eaae..f344f07d7f770 100644 --- a/clients/client-network-firewall/src/pagination/Interfaces.ts +++ b/clients/client-network-firewall/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { NetworkFirewallClient } from "../NetworkFirewallClient"; diff --git a/clients/client-network-firewall/src/pagination/ListAnalysisReportsPaginator.ts b/clients/client-network-firewall/src/pagination/ListAnalysisReportsPaginator.ts index 55e04f4987768..8f40ff6d70096 100644 --- a/clients/client-network-firewall/src/pagination/ListAnalysisReportsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListAnalysisReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAnalysisReportsCommand, diff --git a/clients/client-network-firewall/src/pagination/ListFirewallPoliciesPaginator.ts b/clients/client-network-firewall/src/pagination/ListFirewallPoliciesPaginator.ts index 0915307e7f7dd..4509e78ccbbea 100644 --- a/clients/client-network-firewall/src/pagination/ListFirewallPoliciesPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListFirewallPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallPoliciesCommand, diff --git a/clients/client-network-firewall/src/pagination/ListFirewallsPaginator.ts b/clients/client-network-firewall/src/pagination/ListFirewallsPaginator.ts index 17cfa39762a60..8cf823028514d 100644 --- a/clients/client-network-firewall/src/pagination/ListFirewallsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListFirewallsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallsCommand, diff --git a/clients/client-network-firewall/src/pagination/ListFlowOperationResultsPaginator.ts b/clients/client-network-firewall/src/pagination/ListFlowOperationResultsPaginator.ts index 6bc13dccff632..4662f2abfbaa3 100644 --- a/clients/client-network-firewall/src/pagination/ListFlowOperationResultsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListFlowOperationResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFlowOperationResultsCommand, diff --git a/clients/client-network-firewall/src/pagination/ListFlowOperationsPaginator.ts b/clients/client-network-firewall/src/pagination/ListFlowOperationsPaginator.ts index 50679483b778d..2bc8f501efc77 100644 --- a/clients/client-network-firewall/src/pagination/ListFlowOperationsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListFlowOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFlowOperationsCommand, diff --git a/clients/client-network-firewall/src/pagination/ListProxiesPaginator.ts b/clients/client-network-firewall/src/pagination/ListProxiesPaginator.ts index be84283af307d..19e5b56e5e0e4 100644 --- a/clients/client-network-firewall/src/pagination/ListProxiesPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListProxiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProxiesCommand, ListProxiesCommandInput, ListProxiesCommandOutput } from "../commands/ListProxiesCommand"; import { NetworkFirewallClient } from "../NetworkFirewallClient"; diff --git a/clients/client-network-firewall/src/pagination/ListProxyConfigurationsPaginator.ts b/clients/client-network-firewall/src/pagination/ListProxyConfigurationsPaginator.ts index b82106e03828b..e1491e296acb3 100644 --- a/clients/client-network-firewall/src/pagination/ListProxyConfigurationsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListProxyConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProxyConfigurationsCommand, diff --git a/clients/client-network-firewall/src/pagination/ListProxyRuleGroupsPaginator.ts b/clients/client-network-firewall/src/pagination/ListProxyRuleGroupsPaginator.ts index 4552d9afcc85a..7b38c0ece1159 100644 --- a/clients/client-network-firewall/src/pagination/ListProxyRuleGroupsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListProxyRuleGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProxyRuleGroupsCommand, diff --git a/clients/client-network-firewall/src/pagination/ListRuleGroupsPaginator.ts b/clients/client-network-firewall/src/pagination/ListRuleGroupsPaginator.ts index 6262d34a06777..97a8e569e3f03 100644 --- a/clients/client-network-firewall/src/pagination/ListRuleGroupsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListRuleGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRuleGroupsCommand, diff --git a/clients/client-network-firewall/src/pagination/ListTLSInspectionConfigurationsPaginator.ts b/clients/client-network-firewall/src/pagination/ListTLSInspectionConfigurationsPaginator.ts index df229a820bee4..a6719adb53df7 100644 --- a/clients/client-network-firewall/src/pagination/ListTLSInspectionConfigurationsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListTLSInspectionConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTLSInspectionConfigurationsCommand, diff --git a/clients/client-network-firewall/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-network-firewall/src/pagination/ListTagsForResourcePaginator.ts index 4f9a375ec08bf..c970a902c6ce0 100644 --- a/clients/client-network-firewall/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-network-firewall/src/pagination/ListVpcEndpointAssociationsPaginator.ts b/clients/client-network-firewall/src/pagination/ListVpcEndpointAssociationsPaginator.ts index 22300e4cc1ee6..6f912d6b34acc 100644 --- a/clients/client-network-firewall/src/pagination/ListVpcEndpointAssociationsPaginator.ts +++ b/clients/client-network-firewall/src/pagination/ListVpcEndpointAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVpcEndpointAssociationsCommand, diff --git a/clients/client-network-firewall/src/runtimeConfig.browser.ts b/clients/client-network-firewall/src/runtimeConfig.browser.ts index a0f2d3bd223a9..364cbf5350433 100644 --- a/clients/client-network-firewall/src/runtimeConfig.browser.ts +++ b/clients/client-network-firewall/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NetworkFirewallClientConfig } from "./NetworkFirewallClient"; + +import type { NetworkFirewallClientConfig } from "./NetworkFirewallClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-network-firewall/src/runtimeConfig.native.ts b/clients/client-network-firewall/src/runtimeConfig.native.ts index 100416c6ca897..675fe3e77bb52 100644 --- a/clients/client-network-firewall/src/runtimeConfig.native.ts +++ b/clients/client-network-firewall/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { NetworkFirewallClientConfig } from "./NetworkFirewallClient"; +import type { NetworkFirewallClientConfig } from "./NetworkFirewallClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-network-firewall/src/runtimeConfig.shared.ts b/clients/client-network-firewall/src/runtimeConfig.shared.ts index 2588b0f999ada..7debd6b36337d 100644 --- a/clients/client-network-firewall/src/runtimeConfig.shared.ts +++ b/clients/client-network-firewall/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultNetworkFirewallHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { NetworkFirewallClientConfig } from "./NetworkFirewallClient"; +import type { NetworkFirewallClientConfig } from "./NetworkFirewallClient"; /** * @internal diff --git a/clients/client-network-firewall/src/runtimeConfig.ts b/clients/client-network-firewall/src/runtimeConfig.ts index c5baa139871ca..38b453b6a333a 100644 --- a/clients/client-network-firewall/src/runtimeConfig.ts +++ b/clients/client-network-firewall/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NetworkFirewallClientConfig } from "./NetworkFirewallClient"; + +import type { NetworkFirewallClientConfig } from "./NetworkFirewallClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-network-firewall/src/runtimeExtensions.ts b/clients/client-network-firewall/src/runtimeExtensions.ts index bff58a49a00ef..6cdeacae3dfd8 100644 --- a/clients/client-network-firewall/src/runtimeExtensions.ts +++ b/clients/client-network-firewall/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { NetworkFirewallExtensionConfiguration } from "./extensionConfiguration"; +import type { NetworkFirewallExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-network-firewall/src/schemas/schemas_0.ts b/clients/client-network-firewall/src/schemas/schemas_0.ts index f6b0da3856818..6e6a76c4dcc1d 100644 --- a/clients/client-network-firewall/src/schemas/schemas_0.ts +++ b/clients/client-network-firewall/src/schemas/schemas_0.ts @@ -596,7 +596,7 @@ const n0 = "com.amazonaws.networkfirewall"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-networkflowmonitor/package.json b/clients/client-networkflowmonitor/package.json index abb012cd4e6bc..9955e6c5f4c9b 100644 --- a/clients/client-networkflowmonitor/package.json +++ b/clients/client-networkflowmonitor/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-networkflowmonitor/src/NetworkFlowMonitor.ts b/clients/client-networkflowmonitor/src/NetworkFlowMonitor.ts index e5e433e52eb34..ce941af4ff2b8 100644 --- a/clients/client-networkflowmonitor/src/NetworkFlowMonitor.ts +++ b/clients/client-networkflowmonitor/src/NetworkFlowMonitor.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateMonitorCommand, @@ -99,7 +99,7 @@ import { UpdateMonitorCommandOutput, } from "./commands/UpdateMonitorCommand"; import { UpdateScopeCommand, UpdateScopeCommandInput, UpdateScopeCommandOutput } from "./commands/UpdateScopeCommand"; -import { NetworkFlowMonitorClient, NetworkFlowMonitorClientConfig } from "./NetworkFlowMonitorClient"; +import { NetworkFlowMonitorClient } from "./NetworkFlowMonitorClient"; const commands = { CreateMonitorCommand, diff --git a/clients/client-networkflowmonitor/src/NetworkFlowMonitorClient.ts b/clients/client-networkflowmonitor/src/NetworkFlowMonitorClient.ts index 948fb1d661b49..1d3835b8d575f 100644 --- a/clients/client-networkflowmonitor/src/NetworkFlowMonitorClient.ts +++ b/clients/client-networkflowmonitor/src/NetworkFlowMonitorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultNetworkFlowMonitorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "./commands/CreateMonitorCommand"; @@ -128,7 +137,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-networkflowmonitor/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-networkflowmonitor/src/auth/httpAuthExtensionConfiguration.ts index 836635c2b72d1..5edc184b7ab5e 100644 --- a/clients/client-networkflowmonitor/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-networkflowmonitor/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { NetworkFlowMonitorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { NetworkFlowMonitorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-networkflowmonitor/src/auth/httpAuthSchemeProvider.ts b/clients/client-networkflowmonitor/src/auth/httpAuthSchemeProvider.ts index dafcaf97ea1c9..408211729d0a1 100644 --- a/clients/client-networkflowmonitor/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-networkflowmonitor/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { NetworkFlowMonitorClientConfig, NetworkFlowMonitorClientResolvedConfig } from "../NetworkFlowMonitorClient"; +import { + type NetworkFlowMonitorClientResolvedConfig, + NetworkFlowMonitorClientConfig, +} from "../NetworkFlowMonitorClient"; /** * @internal diff --git a/clients/client-networkflowmonitor/src/commands/CreateMonitorCommand.ts b/clients/client-networkflowmonitor/src/commands/CreateMonitorCommand.ts index 156a045a7488b..be519d91ac135 100644 --- a/clients/client-networkflowmonitor/src/commands/CreateMonitorCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/CreateMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0"; -import { +import type { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/CreateScopeCommand.ts b/clients/client-networkflowmonitor/src/commands/CreateScopeCommand.ts index cdbf5f5ec1a01..5402a5e7bff28 100644 --- a/clients/client-networkflowmonitor/src/commands/CreateScopeCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/CreateScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScopeInput, CreateScopeOutput } from "../models/models_0"; -import { +import type { CreateScopeInput, CreateScopeOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/DeleteMonitorCommand.ts b/clients/client-networkflowmonitor/src/commands/DeleteMonitorCommand.ts index 8d2c0aa6837f0..1d704c47b465f 100644 --- a/clients/client-networkflowmonitor/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/DeleteMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0"; -import { +import type { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/DeleteScopeCommand.ts b/clients/client-networkflowmonitor/src/commands/DeleteScopeCommand.ts index 4ea892b6d74aa..2f47c9be90df0 100644 --- a/clients/client-networkflowmonitor/src/commands/DeleteScopeCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/DeleteScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScopeInput, DeleteScopeOutput } from "../models/models_0"; -import { +import type { DeleteScopeInput, DeleteScopeOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/GetMonitorCommand.ts b/clients/client-networkflowmonitor/src/commands/GetMonitorCommand.ts index 956846b524189..9dfd2330b4d60 100644 --- a/clients/client-networkflowmonitor/src/commands/GetMonitorCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMonitorInput, GetMonitorOutput } from "../models/models_0"; -import { +import type { GetMonitorInput, GetMonitorOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryResultsMonitorTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryResultsMonitorTopContributorsCommand.ts index b40e9b4fccf85..9607c618e8bac 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryResultsMonitorTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryResultsMonitorTopContributorsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetQueryResultsMonitorTopContributorsInput, GetQueryResultsMonitorTopContributorsOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsCommand.ts index 49cf90a209942..6a5467ff5fd63 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetQueryResultsWorkloadInsightsTopContributorsInput, GetQueryResultsWorkloadInsightsTopContributorsOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsDataCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsDataCommand.ts index 2eb43a97e26e5..f4462e8ac14e5 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsDataCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryResultsWorkloadInsightsTopContributorsDataCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetQueryResultsWorkloadInsightsTopContributorsDataInput, GetQueryResultsWorkloadInsightsTopContributorsDataOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryStatusMonitorTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryStatusMonitorTopContributorsCommand.ts index 7dbe5fa5290b1..d01540acc8f63 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryStatusMonitorTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryStatusMonitorTopContributorsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetQueryStatusMonitorTopContributorsInput, GetQueryStatusMonitorTopContributorsOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsCommand.ts index c68527d7a99c1..fdd9f2e31e3c2 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetQueryStatusWorkloadInsightsTopContributorsInput, GetQueryStatusWorkloadInsightsTopContributorsOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsDataCommand.ts b/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsDataCommand.ts index 2d0d2b5b554da..d52e0f95b1c60 100644 --- a/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsDataCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetQueryStatusWorkloadInsightsTopContributorsDataCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetQueryStatusWorkloadInsightsTopContributorsDataInput, GetQueryStatusWorkloadInsightsTopContributorsDataOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/GetScopeCommand.ts b/clients/client-networkflowmonitor/src/commands/GetScopeCommand.ts index 223a8d49676d5..5f76ca1b904e5 100644 --- a/clients/client-networkflowmonitor/src/commands/GetScopeCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/GetScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetScopeInput, GetScopeOutput } from "../models/models_0"; -import { +import type { GetScopeInput, GetScopeOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/ListMonitorsCommand.ts b/clients/client-networkflowmonitor/src/commands/ListMonitorsCommand.ts index 4b0360ac5d6c2..4a2dd67558109 100644 --- a/clients/client-networkflowmonitor/src/commands/ListMonitorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/ListMonitorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0"; -import { +import type { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/ListScopesCommand.ts b/clients/client-networkflowmonitor/src/commands/ListScopesCommand.ts index ea375f32f8394..6b71fb0720143 100644 --- a/clients/client-networkflowmonitor/src/commands/ListScopesCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/ListScopesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScopesInput, ListScopesOutput } from "../models/models_0"; -import { +import type { ListScopesInput, ListScopesOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/ListTagsForResourceCommand.ts b/clients/client-networkflowmonitor/src/commands/ListTagsForResourceCommand.ts index b3df1f0d02f4a..4a86607600a54 100644 --- a/clients/client-networkflowmonitor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/StartQueryMonitorTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/StartQueryMonitorTopContributorsCommand.ts index 6f1e1e8ce6f0e..dda2ffbd95368 100644 --- a/clients/client-networkflowmonitor/src/commands/StartQueryMonitorTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StartQueryMonitorTopContributorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartQueryMonitorTopContributorsInput, StartQueryMonitorTopContributorsOutput } from "../models/models_0"; -import { +import type { StartQueryMonitorTopContributorsInput, StartQueryMonitorTopContributorsOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsCommand.ts index d3bf00999297b..d624c3db86ebd 100644 --- a/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartQueryWorkloadInsightsTopContributorsInput, StartQueryWorkloadInsightsTopContributorsOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsDataCommand.ts b/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsDataCommand.ts index b1018d28d177b..82777e0eecbf2 100644 --- a/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsDataCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StartQueryWorkloadInsightsTopContributorsDataCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartQueryWorkloadInsightsTopContributorsDataInput, StartQueryWorkloadInsightsTopContributorsDataOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/StopQueryMonitorTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/StopQueryMonitorTopContributorsCommand.ts index e754683cdb9d9..f357114ad3dd0 100644 --- a/clients/client-networkflowmonitor/src/commands/StopQueryMonitorTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StopQueryMonitorTopContributorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopQueryMonitorTopContributorsInput, StopQueryMonitorTopContributorsOutput } from "../models/models_0"; -import { +import type { StopQueryMonitorTopContributorsInput, StopQueryMonitorTopContributorsOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsCommand.ts b/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsCommand.ts index 5b7c3c32efe7b..01310ad7e06b8 100644 --- a/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StopQueryWorkloadInsightsTopContributorsInput, StopQueryWorkloadInsightsTopContributorsOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsDataCommand.ts b/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsDataCommand.ts index 78817beb11f62..ea43da99b5eb1 100644 --- a/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsDataCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/StopQueryWorkloadInsightsTopContributorsDataCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StopQueryWorkloadInsightsTopContributorsDataInput, StopQueryWorkloadInsightsTopContributorsDataOutput, } from "../models/models_0"; -import { +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/TagResourceCommand.ts b/clients/client-networkflowmonitor/src/commands/TagResourceCommand.ts index d8c6559d168f0..b03e6d2cbb82c 100644 --- a/clients/client-networkflowmonitor/src/commands/TagResourceCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; -import { +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/UntagResourceCommand.ts b/clients/client-networkflowmonitor/src/commands/UntagResourceCommand.ts index 9b120e8a17653..f819bc6acb5e1 100644 --- a/clients/client-networkflowmonitor/src/commands/UntagResourceCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; -import { +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/UpdateMonitorCommand.ts b/clients/client-networkflowmonitor/src/commands/UpdateMonitorCommand.ts index 4e3ad09a412ff..613bfa07e1755 100644 --- a/clients/client-networkflowmonitor/src/commands/UpdateMonitorCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/UpdateMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0"; -import { +import type { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/commands/UpdateScopeCommand.ts b/clients/client-networkflowmonitor/src/commands/UpdateScopeCommand.ts index 5ee32aeab90a2..5020d9c4a2972 100644 --- a/clients/client-networkflowmonitor/src/commands/UpdateScopeCommand.ts +++ b/clients/client-networkflowmonitor/src/commands/UpdateScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScopeInput, UpdateScopeOutput } from "../models/models_0"; -import { +import type { UpdateScopeInput, UpdateScopeOutput } from "../models/models_0"; +import type { NetworkFlowMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-networkflowmonitor/src/endpoint/EndpointParameters.ts b/clients/client-networkflowmonitor/src/endpoint/EndpointParameters.ts index 132f1c99117ea..3d462719830af 100644 --- a/clients/client-networkflowmonitor/src/endpoint/EndpointParameters.ts +++ b/clients/client-networkflowmonitor/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-networkflowmonitor/src/endpoint/endpointResolver.ts b/clients/client-networkflowmonitor/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-networkflowmonitor/src/endpoint/endpointResolver.ts +++ b/clients/client-networkflowmonitor/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-networkflowmonitor/src/extensionConfiguration.ts b/clients/client-networkflowmonitor/src/extensionConfiguration.ts index e812fb90006ae..2332a9be70602 100644 --- a/clients/client-networkflowmonitor/src/extensionConfiguration.ts +++ b/clients/client-networkflowmonitor/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-networkflowmonitor/src/models/NetworkFlowMonitorServiceException.ts b/clients/client-networkflowmonitor/src/models/NetworkFlowMonitorServiceException.ts index dfeeb3811d905..682162331da63 100644 --- a/clients/client-networkflowmonitor/src/models/NetworkFlowMonitorServiceException.ts +++ b/clients/client-networkflowmonitor/src/models/NetworkFlowMonitorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-networkflowmonitor/src/models/errors.ts b/clients/client-networkflowmonitor/src/models/errors.ts index 365426aeff623..c80b70184cff6 100644 --- a/clients/client-networkflowmonitor/src/models/errors.ts +++ b/clients/client-networkflowmonitor/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { NetworkFlowMonitorServiceException as __BaseException } from "./NetworkFlowMonitorServiceException"; diff --git a/clients/client-networkflowmonitor/src/pagination/GetQueryResultsMonitorTopContributorsPaginator.ts b/clients/client-networkflowmonitor/src/pagination/GetQueryResultsMonitorTopContributorsPaginator.ts index fcbc9da6811a7..f011c75fb7568 100644 --- a/clients/client-networkflowmonitor/src/pagination/GetQueryResultsMonitorTopContributorsPaginator.ts +++ b/clients/client-networkflowmonitor/src/pagination/GetQueryResultsMonitorTopContributorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetQueryResultsMonitorTopContributorsCommand, diff --git a/clients/client-networkflowmonitor/src/pagination/GetQueryResultsWorkloadInsightsTopContributorsDataPaginator.ts b/clients/client-networkflowmonitor/src/pagination/GetQueryResultsWorkloadInsightsTopContributorsDataPaginator.ts index 443ef8640f436..1a9ebab1656ec 100644 --- a/clients/client-networkflowmonitor/src/pagination/GetQueryResultsWorkloadInsightsTopContributorsDataPaginator.ts +++ b/clients/client-networkflowmonitor/src/pagination/GetQueryResultsWorkloadInsightsTopContributorsDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetQueryResultsWorkloadInsightsTopContributorsDataCommand, diff --git a/clients/client-networkflowmonitor/src/pagination/GetQueryResultsWorkloadInsightsTopContributorsPaginator.ts b/clients/client-networkflowmonitor/src/pagination/GetQueryResultsWorkloadInsightsTopContributorsPaginator.ts index 8818c56942d0e..6fa6dab53aebf 100644 --- a/clients/client-networkflowmonitor/src/pagination/GetQueryResultsWorkloadInsightsTopContributorsPaginator.ts +++ b/clients/client-networkflowmonitor/src/pagination/GetQueryResultsWorkloadInsightsTopContributorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetQueryResultsWorkloadInsightsTopContributorsCommand, diff --git a/clients/client-networkflowmonitor/src/pagination/Interfaces.ts b/clients/client-networkflowmonitor/src/pagination/Interfaces.ts index 9f775024281fc..3a364d8135a16 100644 --- a/clients/client-networkflowmonitor/src/pagination/Interfaces.ts +++ b/clients/client-networkflowmonitor/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { NetworkFlowMonitorClient } from "../NetworkFlowMonitorClient"; diff --git a/clients/client-networkflowmonitor/src/pagination/ListMonitorsPaginator.ts b/clients/client-networkflowmonitor/src/pagination/ListMonitorsPaginator.ts index e05a33ad62469..69d18a85983f7 100644 --- a/clients/client-networkflowmonitor/src/pagination/ListMonitorsPaginator.ts +++ b/clients/client-networkflowmonitor/src/pagination/ListMonitorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitorsCommand, diff --git a/clients/client-networkflowmonitor/src/pagination/ListScopesPaginator.ts b/clients/client-networkflowmonitor/src/pagination/ListScopesPaginator.ts index ffcb94f64745c..58aef0a65e906 100644 --- a/clients/client-networkflowmonitor/src/pagination/ListScopesPaginator.ts +++ b/clients/client-networkflowmonitor/src/pagination/ListScopesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListScopesCommand, ListScopesCommandInput, ListScopesCommandOutput } from "../commands/ListScopesCommand"; import { NetworkFlowMonitorClient } from "../NetworkFlowMonitorClient"; diff --git a/clients/client-networkflowmonitor/src/runtimeConfig.browser.ts b/clients/client-networkflowmonitor/src/runtimeConfig.browser.ts index 74d83f6ddca6f..fa7e9d70ba4f6 100644 --- a/clients/client-networkflowmonitor/src/runtimeConfig.browser.ts +++ b/clients/client-networkflowmonitor/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NetworkFlowMonitorClientConfig } from "./NetworkFlowMonitorClient"; + +import type { NetworkFlowMonitorClientConfig } from "./NetworkFlowMonitorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-networkflowmonitor/src/runtimeConfig.native.ts b/clients/client-networkflowmonitor/src/runtimeConfig.native.ts index cfebd8b77e8e7..69c28da1e191f 100644 --- a/clients/client-networkflowmonitor/src/runtimeConfig.native.ts +++ b/clients/client-networkflowmonitor/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { NetworkFlowMonitorClientConfig } from "./NetworkFlowMonitorClient"; +import type { NetworkFlowMonitorClientConfig } from "./NetworkFlowMonitorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-networkflowmonitor/src/runtimeConfig.shared.ts b/clients/client-networkflowmonitor/src/runtimeConfig.shared.ts index c719f2df72012..41ef0fcd8f093 100644 --- a/clients/client-networkflowmonitor/src/runtimeConfig.shared.ts +++ b/clients/client-networkflowmonitor/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultNetworkFlowMonitorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { NetworkFlowMonitorClientConfig } from "./NetworkFlowMonitorClient"; +import type { NetworkFlowMonitorClientConfig } from "./NetworkFlowMonitorClient"; /** * @internal diff --git a/clients/client-networkflowmonitor/src/runtimeConfig.ts b/clients/client-networkflowmonitor/src/runtimeConfig.ts index d5dc09080e51a..b560e8694753e 100644 --- a/clients/client-networkflowmonitor/src/runtimeConfig.ts +++ b/clients/client-networkflowmonitor/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NetworkFlowMonitorClientConfig } from "./NetworkFlowMonitorClient"; + +import type { NetworkFlowMonitorClientConfig } from "./NetworkFlowMonitorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-networkflowmonitor/src/runtimeExtensions.ts b/clients/client-networkflowmonitor/src/runtimeExtensions.ts index 48183dde00d17..738db1f9f8759 100644 --- a/clients/client-networkflowmonitor/src/runtimeExtensions.ts +++ b/clients/client-networkflowmonitor/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { NetworkFlowMonitorExtensionConfiguration } from "./extensionConfiguration"; +import type { NetworkFlowMonitorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-networkflowmonitor/src/schemas/schemas_0.ts b/clients/client-networkflowmonitor/src/schemas/schemas_0.ts index 1fb6cb41ba616..732f2d33a312f 100644 --- a/clients/client-networkflowmonitor/src/schemas/schemas_0.ts +++ b/clients/client-networkflowmonitor/src/schemas/schemas_0.ts @@ -192,7 +192,7 @@ const n0 = "com.amazonaws.networkflowmonitor"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-networkmanager/package.json b/clients/client-networkmanager/package.json index edcb3348c35d9..f4e98102dfe40 100644 --- a/clients/client-networkmanager/package.json +++ b/clients/client-networkmanager/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-networkmanager/src/NetworkManager.ts b/clients/client-networkmanager/src/NetworkManager.ts index c24b99795c143..b8d26d9fdec97 100644 --- a/clients/client-networkmanager/src/NetworkManager.ts +++ b/clients/client-networkmanager/src/NetworkManager.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptAttachmentCommand, @@ -437,7 +437,7 @@ import { UpdateVpcAttachmentCommandInput, UpdateVpcAttachmentCommandOutput, } from "./commands/UpdateVpcAttachmentCommand"; -import { NetworkManagerClient, NetworkManagerClientConfig } from "./NetworkManagerClient"; +import { NetworkManagerClient } from "./NetworkManagerClient"; const commands = { AcceptAttachmentCommand, diff --git a/clients/client-networkmanager/src/NetworkManagerClient.ts b/clients/client-networkmanager/src/NetworkManagerClient.ts index deaaf96a4fde0..797ddd0b3708b 100644 --- a/clients/client-networkmanager/src/NetworkManagerClient.ts +++ b/clients/client-networkmanager/src/NetworkManagerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultNetworkManagerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptAttachmentCommandInput, AcceptAttachmentCommandOutput } from "./commands/AcceptAttachmentCommand"; @@ -321,7 +330,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-networkmanager/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-networkmanager/src/auth/httpAuthExtensionConfiguration.ts index 97520f1fbd946..69d7441106931 100644 --- a/clients/client-networkmanager/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-networkmanager/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { NetworkManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { NetworkManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-networkmanager/src/auth/httpAuthSchemeProvider.ts b/clients/client-networkmanager/src/auth/httpAuthSchemeProvider.ts index af085f478e675..2700b48361020 100644 --- a/clients/client-networkmanager/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-networkmanager/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { NetworkManagerClientConfig, NetworkManagerClientResolvedConfig } from "../NetworkManagerClient"; +import { type NetworkManagerClientResolvedConfig, NetworkManagerClientConfig } from "../NetworkManagerClient"; /** * @internal diff --git a/clients/client-networkmanager/src/commands/AcceptAttachmentCommand.ts b/clients/client-networkmanager/src/commands/AcceptAttachmentCommand.ts index 9554519034d70..7a4d051eb5b1d 100644 --- a/clients/client-networkmanager/src/commands/AcceptAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/AcceptAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptAttachmentRequest, AcceptAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { AcceptAttachmentRequest, AcceptAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { AcceptAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/AssociateConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/AssociateConnectPeerCommand.ts index 8faeb58958665..9d5b8afb6d983 100644 --- a/clients/client-networkmanager/src/commands/AssociateConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/AssociateConnectPeerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateConnectPeerRequest, AssociateConnectPeerResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { AssociateConnectPeerRequest, AssociateConnectPeerResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { AssociateConnectPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/AssociateCustomerGatewayCommand.ts b/clients/client-networkmanager/src/commands/AssociateCustomerGatewayCommand.ts index 5fde5074fe16e..52b50770a2d4c 100644 --- a/clients/client-networkmanager/src/commands/AssociateCustomerGatewayCommand.ts +++ b/clients/client-networkmanager/src/commands/AssociateCustomerGatewayCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateCustomerGatewayRequest, AssociateCustomerGatewayResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { AssociateCustomerGatewayRequest, AssociateCustomerGatewayResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { AssociateCustomerGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/AssociateLinkCommand.ts b/clients/client-networkmanager/src/commands/AssociateLinkCommand.ts index 4b5b1252ce442..e7ad92c934889 100644 --- a/clients/client-networkmanager/src/commands/AssociateLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/AssociateLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateLinkRequest, AssociateLinkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { AssociateLinkRequest, AssociateLinkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { AssociateLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/AssociateTransitGatewayConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/AssociateTransitGatewayConnectPeerCommand.ts index 7b68aef02908b..4c63f2eaa75eb 100644 --- a/clients/client-networkmanager/src/commands/AssociateTransitGatewayConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/AssociateTransitGatewayConnectPeerCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateTransitGatewayConnectPeerRequest, AssociateTransitGatewayConnectPeerResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { AssociateTransitGatewayConnectPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateConnectAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateConnectAttachmentCommand.ts index 60971b34d7d39..d82808fb6519e 100644 --- a/clients/client-networkmanager/src/commands/CreateConnectAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateConnectAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectAttachmentRequest, CreateConnectAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateConnectAttachmentRequest, CreateConnectAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateConnectAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/CreateConnectPeerCommand.ts index 1643329cfa65c..34f1e3fdde1c7 100644 --- a/clients/client-networkmanager/src/commands/CreateConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateConnectPeerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectPeerRequest, CreateConnectPeerResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateConnectPeerRequest, CreateConnectPeerResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateConnectPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateConnectionCommand.ts b/clients/client-networkmanager/src/commands/CreateConnectionCommand.ts index 919008f2143fd..b5322e7c47702 100644 --- a/clients/client-networkmanager/src/commands/CreateConnectionCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateCoreNetworkCommand.ts b/clients/client-networkmanager/src/commands/CreateCoreNetworkCommand.ts index 57be3f2b17c6a..e25e8fda4c4da 100644 --- a/clients/client-networkmanager/src/commands/CreateCoreNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateCoreNetworkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCoreNetworkRequest, CreateCoreNetworkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateCoreNetworkRequest, CreateCoreNetworkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateCoreNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateCoreNetworkPrefixListAssociationCommand.ts b/clients/client-networkmanager/src/commands/CreateCoreNetworkPrefixListAssociationCommand.ts index 9bf92fb34d543..d54e35ad49445 100644 --- a/clients/client-networkmanager/src/commands/CreateCoreNetworkPrefixListAssociationCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateCoreNetworkPrefixListAssociationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateCoreNetworkPrefixListAssociationRequest, CreateCoreNetworkPrefixListAssociationResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateCoreNetworkPrefixListAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateDeviceCommand.ts b/clients/client-networkmanager/src/commands/CreateDeviceCommand.ts index 5a1076720b214..863339f396b7b 100644 --- a/clients/client-networkmanager/src/commands/CreateDeviceCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateDeviceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeviceRequest, CreateDeviceResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateDeviceRequest, CreateDeviceResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateDirectConnectGatewayAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateDirectConnectGatewayAttachmentCommand.ts index 298c7b0cdf4d6..c278a972f6fa4 100644 --- a/clients/client-networkmanager/src/commands/CreateDirectConnectGatewayAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateDirectConnectGatewayAttachmentCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateDirectConnectGatewayAttachmentRequest, CreateDirectConnectGatewayAttachmentResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateDirectConnectGatewayAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateGlobalNetworkCommand.ts b/clients/client-networkmanager/src/commands/CreateGlobalNetworkCommand.ts index a0c9d0ac0035b..8513266bb3893 100644 --- a/clients/client-networkmanager/src/commands/CreateGlobalNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateGlobalNetworkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGlobalNetworkRequest, CreateGlobalNetworkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateGlobalNetworkRequest, CreateGlobalNetworkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateGlobalNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateLinkCommand.ts b/clients/client-networkmanager/src/commands/CreateLinkCommand.ts index d430354770450..26e82665c228f 100644 --- a/clients/client-networkmanager/src/commands/CreateLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLinkRequest, CreateLinkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateLinkRequest, CreateLinkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateSiteCommand.ts b/clients/client-networkmanager/src/commands/CreateSiteCommand.ts index aa91366bfa6df..b4cbea556ae24 100644 --- a/clients/client-networkmanager/src/commands/CreateSiteCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateSiteCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSiteRequest, CreateSiteResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateSiteRequest, CreateSiteResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateSite } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateSiteToSiteVpnAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateSiteToSiteVpnAttachmentCommand.ts index 6a143fb10deae..0a9c9eac2005a 100644 --- a/clients/client-networkmanager/src/commands/CreateSiteToSiteVpnAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateSiteToSiteVpnAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSiteToSiteVpnAttachmentRequest, CreateSiteToSiteVpnAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateSiteToSiteVpnAttachmentRequest, CreateSiteToSiteVpnAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateSiteToSiteVpnAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateTransitGatewayPeeringCommand.ts b/clients/client-networkmanager/src/commands/CreateTransitGatewayPeeringCommand.ts index cd52829399277..781d0634713a5 100644 --- a/clients/client-networkmanager/src/commands/CreateTransitGatewayPeeringCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateTransitGatewayPeeringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransitGatewayPeeringRequest, CreateTransitGatewayPeeringResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateTransitGatewayPeeringRequest, CreateTransitGatewayPeeringResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateTransitGatewayPeering } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateTransitGatewayRouteTableAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateTransitGatewayRouteTableAttachmentCommand.ts index a5fcfcc97d61b..4a4a87bbb299e 100644 --- a/clients/client-networkmanager/src/commands/CreateTransitGatewayRouteTableAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateTransitGatewayRouteTableAttachmentCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateTransitGatewayRouteTableAttachmentRequest, CreateTransitGatewayRouteTableAttachmentResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateTransitGatewayRouteTableAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/CreateVpcAttachmentCommand.ts b/clients/client-networkmanager/src/commands/CreateVpcAttachmentCommand.ts index 68b7cf20fec30..1d4cd9192315b 100644 --- a/clients/client-networkmanager/src/commands/CreateVpcAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/CreateVpcAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcAttachmentRequest, CreateVpcAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { CreateVpcAttachmentRequest, CreateVpcAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { CreateVpcAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteAttachmentCommand.ts b/clients/client-networkmanager/src/commands/DeleteAttachmentCommand.ts index efbdf248b0a5d..7fdf7f21ba8d6 100644 --- a/clients/client-networkmanager/src/commands/DeleteAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAttachmentRequest, DeleteAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteAttachmentRequest, DeleteAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/DeleteConnectPeerCommand.ts index 1f997e3d3f639..801ad2676beb2 100644 --- a/clients/client-networkmanager/src/commands/DeleteConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteConnectPeerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectPeerRequest, DeleteConnectPeerResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteConnectPeerRequest, DeleteConnectPeerResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteConnectPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteConnectionCommand.ts b/clients/client-networkmanager/src/commands/DeleteConnectionCommand.ts index e8ad783507a9f..36d36a548de6b 100644 --- a/clients/client-networkmanager/src/commands/DeleteConnectionCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteConnectionRequest, DeleteConnectionResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteCoreNetworkCommand.ts b/clients/client-networkmanager/src/commands/DeleteCoreNetworkCommand.ts index 52453da5f1cb8..129e304380009 100644 --- a/clients/client-networkmanager/src/commands/DeleteCoreNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteCoreNetworkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCoreNetworkRequest, DeleteCoreNetworkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteCoreNetworkRequest, DeleteCoreNetworkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteCoreNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteCoreNetworkPolicyVersionCommand.ts b/clients/client-networkmanager/src/commands/DeleteCoreNetworkPolicyVersionCommand.ts index f3d715070c2bf..982dbc9797291 100644 --- a/clients/client-networkmanager/src/commands/DeleteCoreNetworkPolicyVersionCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteCoreNetworkPolicyVersionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCoreNetworkPolicyVersionRequest, DeleteCoreNetworkPolicyVersionResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteCoreNetworkPolicyVersionRequest, DeleteCoreNetworkPolicyVersionResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteCoreNetworkPolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteCoreNetworkPrefixListAssociationCommand.ts b/clients/client-networkmanager/src/commands/DeleteCoreNetworkPrefixListAssociationCommand.ts index 7c0aeba3c21ea..503372d87686b 100644 --- a/clients/client-networkmanager/src/commands/DeleteCoreNetworkPrefixListAssociationCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteCoreNetworkPrefixListAssociationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteCoreNetworkPrefixListAssociationRequest, DeleteCoreNetworkPrefixListAssociationResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteCoreNetworkPrefixListAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteDeviceCommand.ts b/clients/client-networkmanager/src/commands/DeleteDeviceCommand.ts index 050f64f66a22c..782d778a1f371 100644 --- a/clients/client-networkmanager/src/commands/DeleteDeviceCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteDeviceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteGlobalNetworkCommand.ts b/clients/client-networkmanager/src/commands/DeleteGlobalNetworkCommand.ts index 909859a22a192..c5a27c360645f 100644 --- a/clients/client-networkmanager/src/commands/DeleteGlobalNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteGlobalNetworkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGlobalNetworkRequest, DeleteGlobalNetworkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteGlobalNetworkRequest, DeleteGlobalNetworkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteGlobalNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteLinkCommand.ts b/clients/client-networkmanager/src/commands/DeleteLinkCommand.ts index 6b62f7a15597a..1a399306b1dc5 100644 --- a/clients/client-networkmanager/src/commands/DeleteLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLinkRequest, DeleteLinkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteLinkRequest, DeleteLinkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeletePeeringCommand.ts b/clients/client-networkmanager/src/commands/DeletePeeringCommand.ts index 04675b0ce3c89..822d915d82a66 100644 --- a/clients/client-networkmanager/src/commands/DeletePeeringCommand.ts +++ b/clients/client-networkmanager/src/commands/DeletePeeringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePeeringRequest, DeletePeeringResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeletePeeringRequest, DeletePeeringResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeletePeering } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-networkmanager/src/commands/DeleteResourcePolicyCommand.ts index 6b1fc33e6a9d5..6bd23377aa222 100644 --- a/clients/client-networkmanager/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeleteSiteCommand.ts b/clients/client-networkmanager/src/commands/DeleteSiteCommand.ts index 570c9986a236f..bd615a4d4f078 100644 --- a/clients/client-networkmanager/src/commands/DeleteSiteCommand.ts +++ b/clients/client-networkmanager/src/commands/DeleteSiteCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSiteRequest, DeleteSiteResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeleteSiteRequest, DeleteSiteResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeleteSite } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DeregisterTransitGatewayCommand.ts b/clients/client-networkmanager/src/commands/DeregisterTransitGatewayCommand.ts index e484c4386a477..1af1b0ff98c0c 100644 --- a/clients/client-networkmanager/src/commands/DeregisterTransitGatewayCommand.ts +++ b/clients/client-networkmanager/src/commands/DeregisterTransitGatewayCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterTransitGatewayRequest, DeregisterTransitGatewayResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DeregisterTransitGatewayRequest, DeregisterTransitGatewayResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DeregisterTransitGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DescribeGlobalNetworksCommand.ts b/clients/client-networkmanager/src/commands/DescribeGlobalNetworksCommand.ts index 97da4c79a1652..d2bad0571e9c8 100644 --- a/clients/client-networkmanager/src/commands/DescribeGlobalNetworksCommand.ts +++ b/clients/client-networkmanager/src/commands/DescribeGlobalNetworksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGlobalNetworksRequest, DescribeGlobalNetworksResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DescribeGlobalNetworksRequest, DescribeGlobalNetworksResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DescribeGlobalNetworks } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DisassociateConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/DisassociateConnectPeerCommand.ts index 4d1f82dc34fd3..b9efaa48d8693 100644 --- a/clients/client-networkmanager/src/commands/DisassociateConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/DisassociateConnectPeerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateConnectPeerRequest, DisassociateConnectPeerResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DisassociateConnectPeerRequest, DisassociateConnectPeerResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DisassociateConnectPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DisassociateCustomerGatewayCommand.ts b/clients/client-networkmanager/src/commands/DisassociateCustomerGatewayCommand.ts index b36322d54fe29..c88094605bbd0 100644 --- a/clients/client-networkmanager/src/commands/DisassociateCustomerGatewayCommand.ts +++ b/clients/client-networkmanager/src/commands/DisassociateCustomerGatewayCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateCustomerGatewayRequest, DisassociateCustomerGatewayResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DisassociateCustomerGatewayRequest, DisassociateCustomerGatewayResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DisassociateCustomerGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DisassociateLinkCommand.ts b/clients/client-networkmanager/src/commands/DisassociateLinkCommand.ts index d391c90d1eeb5..3a275fbdb9f20 100644 --- a/clients/client-networkmanager/src/commands/DisassociateLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/DisassociateLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateLinkRequest, DisassociateLinkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { DisassociateLinkRequest, DisassociateLinkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DisassociateLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/DisassociateTransitGatewayConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/DisassociateTransitGatewayConnectPeerCommand.ts index 2f0cbb04ac47d..4c3d29eba6131 100644 --- a/clients/client-networkmanager/src/commands/DisassociateTransitGatewayConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/DisassociateTransitGatewayConnectPeerCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateTransitGatewayConnectPeerRequest, DisassociateTransitGatewayConnectPeerResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { DisassociateTransitGatewayConnectPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ExecuteCoreNetworkChangeSetCommand.ts b/clients/client-networkmanager/src/commands/ExecuteCoreNetworkChangeSetCommand.ts index 35ff86dc1686a..714b8a5eea87f 100644 --- a/clients/client-networkmanager/src/commands/ExecuteCoreNetworkChangeSetCommand.ts +++ b/clients/client-networkmanager/src/commands/ExecuteCoreNetworkChangeSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteCoreNetworkChangeSetRequest, ExecuteCoreNetworkChangeSetResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { ExecuteCoreNetworkChangeSetRequest, ExecuteCoreNetworkChangeSetResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ExecuteCoreNetworkChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetConnectAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetConnectAttachmentCommand.ts index d92d37497cec7..471945ca864d9 100644 --- a/clients/client-networkmanager/src/commands/GetConnectAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetConnectAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectAttachmentRequest, GetConnectAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetConnectAttachmentRequest, GetConnectAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetConnectAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetConnectPeerAssociationsCommand.ts b/clients/client-networkmanager/src/commands/GetConnectPeerAssociationsCommand.ts index de434f87cbe74..10916fc3dd8cf 100644 --- a/clients/client-networkmanager/src/commands/GetConnectPeerAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetConnectPeerAssociationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectPeerAssociationsRequest, GetConnectPeerAssociationsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetConnectPeerAssociationsRequest, GetConnectPeerAssociationsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetConnectPeerAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetConnectPeerCommand.ts b/clients/client-networkmanager/src/commands/GetConnectPeerCommand.ts index d802d2d9f199f..87b704808b2e1 100644 --- a/clients/client-networkmanager/src/commands/GetConnectPeerCommand.ts +++ b/clients/client-networkmanager/src/commands/GetConnectPeerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectPeerRequest, GetConnectPeerResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetConnectPeerRequest, GetConnectPeerResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetConnectPeer } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetConnectionsCommand.ts b/clients/client-networkmanager/src/commands/GetConnectionsCommand.ts index 5d9ee7d8b7dd1..b4fce6a7a7f07 100644 --- a/clients/client-networkmanager/src/commands/GetConnectionsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetConnectionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionsRequest, GetConnectionsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetConnectionsRequest, GetConnectionsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetCoreNetworkChangeEventsCommand.ts b/clients/client-networkmanager/src/commands/GetCoreNetworkChangeEventsCommand.ts index b0b354a6d8c95..74294a07629dc 100644 --- a/clients/client-networkmanager/src/commands/GetCoreNetworkChangeEventsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCoreNetworkChangeEventsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCoreNetworkChangeEventsRequest, GetCoreNetworkChangeEventsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetCoreNetworkChangeEventsRequest, GetCoreNetworkChangeEventsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetCoreNetworkChangeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetCoreNetworkChangeSetCommand.ts b/clients/client-networkmanager/src/commands/GetCoreNetworkChangeSetCommand.ts index fd5e7197a1cf3..a66c713581d5d 100644 --- a/clients/client-networkmanager/src/commands/GetCoreNetworkChangeSetCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCoreNetworkChangeSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCoreNetworkChangeSetRequest, GetCoreNetworkChangeSetResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetCoreNetworkChangeSetRequest, GetCoreNetworkChangeSetResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetCoreNetworkChangeSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetCoreNetworkCommand.ts b/clients/client-networkmanager/src/commands/GetCoreNetworkCommand.ts index 5c66f0287f0a4..3712606395b27 100644 --- a/clients/client-networkmanager/src/commands/GetCoreNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCoreNetworkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCoreNetworkRequest, GetCoreNetworkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetCoreNetworkRequest, GetCoreNetworkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetCoreNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetCoreNetworkPolicyCommand.ts b/clients/client-networkmanager/src/commands/GetCoreNetworkPolicyCommand.ts index 374f92b6c61f1..02165698fa04d 100644 --- a/clients/client-networkmanager/src/commands/GetCoreNetworkPolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCoreNetworkPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCoreNetworkPolicyRequest, GetCoreNetworkPolicyResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetCoreNetworkPolicyRequest, GetCoreNetworkPolicyResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetCoreNetworkPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetCustomerGatewayAssociationsCommand.ts b/clients/client-networkmanager/src/commands/GetCustomerGatewayAssociationsCommand.ts index 1120eab601394..5f6f7f380b3e2 100644 --- a/clients/client-networkmanager/src/commands/GetCustomerGatewayAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetCustomerGatewayAssociationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCustomerGatewayAssociationsRequest, GetCustomerGatewayAssociationsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetCustomerGatewayAssociationsRequest, GetCustomerGatewayAssociationsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetCustomerGatewayAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetDevicesCommand.ts b/clients/client-networkmanager/src/commands/GetDevicesCommand.ts index d16431f65b5f4..4f4cee2a227f7 100644 --- a/clients/client-networkmanager/src/commands/GetDevicesCommand.ts +++ b/clients/client-networkmanager/src/commands/GetDevicesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDevicesRequest, GetDevicesResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetDevicesRequest, GetDevicesResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetDirectConnectGatewayAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetDirectConnectGatewayAttachmentCommand.ts index 4a6dad52db668..5888a0b5b0bbc 100644 --- a/clients/client-networkmanager/src/commands/GetDirectConnectGatewayAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetDirectConnectGatewayAttachmentCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetDirectConnectGatewayAttachmentRequest, GetDirectConnectGatewayAttachmentResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetDirectConnectGatewayAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetLinkAssociationsCommand.ts b/clients/client-networkmanager/src/commands/GetLinkAssociationsCommand.ts index 1c3bed66ee184..0ebeaf7cadaeb 100644 --- a/clients/client-networkmanager/src/commands/GetLinkAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetLinkAssociationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLinkAssociationsRequest, GetLinkAssociationsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetLinkAssociationsRequest, GetLinkAssociationsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetLinkAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetLinksCommand.ts b/clients/client-networkmanager/src/commands/GetLinksCommand.ts index 1f89bf16bd126..5a021a089a2f5 100644 --- a/clients/client-networkmanager/src/commands/GetLinksCommand.ts +++ b/clients/client-networkmanager/src/commands/GetLinksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLinksRequest, GetLinksResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetLinksRequest, GetLinksResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetNetworkResourceCountsCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkResourceCountsCommand.ts index 45859ad96277f..c5e1929c3104a 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkResourceCountsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkResourceCountsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNetworkResourceCountsRequest, GetNetworkResourceCountsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetNetworkResourceCountsRequest, GetNetworkResourceCountsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetNetworkResourceCounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetNetworkResourceRelationshipsCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkResourceRelationshipsCommand.ts index dbf7149fbdd9e..af0dcdfbf4071 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkResourceRelationshipsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkResourceRelationshipsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNetworkResourceRelationshipsRequest, GetNetworkResourceRelationshipsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + GetNetworkResourceRelationshipsRequest, + GetNetworkResourceRelationshipsResponse, +} from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetNetworkResourceRelationships } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetNetworkResourcesCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkResourcesCommand.ts index 1493f442c3b2d..0d7ef3ba091dd 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkResourcesCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNetworkResourcesRequest, GetNetworkResourcesResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetNetworkResourcesRequest, GetNetworkResourcesResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetNetworkResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetNetworkRoutesCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkRoutesCommand.ts index df1c5ee8ccfd4..c59069540d1d0 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkRoutesCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkRoutesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNetworkRoutesRequest, GetNetworkRoutesResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetNetworkRoutesRequest, GetNetworkRoutesResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetNetworkRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetNetworkTelemetryCommand.ts b/clients/client-networkmanager/src/commands/GetNetworkTelemetryCommand.ts index e6d99794fcc6b..4e4b602bc46ee 100644 --- a/clients/client-networkmanager/src/commands/GetNetworkTelemetryCommand.ts +++ b/clients/client-networkmanager/src/commands/GetNetworkTelemetryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNetworkTelemetryRequest, GetNetworkTelemetryResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetNetworkTelemetryRequest, GetNetworkTelemetryResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetNetworkTelemetry } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetResourcePolicyCommand.ts b/clients/client-networkmanager/src/commands/GetResourcePolicyCommand.ts index ab886e88b69c9..7822d29856949 100644 --- a/clients/client-networkmanager/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetRouteAnalysisCommand.ts b/clients/client-networkmanager/src/commands/GetRouteAnalysisCommand.ts index d960fa72847a1..15d0813af2e81 100644 --- a/clients/client-networkmanager/src/commands/GetRouteAnalysisCommand.ts +++ b/clients/client-networkmanager/src/commands/GetRouteAnalysisCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRouteAnalysisRequest, GetRouteAnalysisResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetRouteAnalysisRequest, GetRouteAnalysisResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetRouteAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetSiteToSiteVpnAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetSiteToSiteVpnAttachmentCommand.ts index bb3983e922b56..fa9f2c080ed3a 100644 --- a/clients/client-networkmanager/src/commands/GetSiteToSiteVpnAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetSiteToSiteVpnAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSiteToSiteVpnAttachmentRequest, GetSiteToSiteVpnAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetSiteToSiteVpnAttachmentRequest, GetSiteToSiteVpnAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetSiteToSiteVpnAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetSitesCommand.ts b/clients/client-networkmanager/src/commands/GetSitesCommand.ts index 5e9fd1ae4313b..e0c034341f912 100644 --- a/clients/client-networkmanager/src/commands/GetSitesCommand.ts +++ b/clients/client-networkmanager/src/commands/GetSitesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSitesRequest, GetSitesResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetSitesRequest, GetSitesResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetSites } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetTransitGatewayConnectPeerAssociationsCommand.ts b/clients/client-networkmanager/src/commands/GetTransitGatewayConnectPeerAssociationsCommand.ts index 44846c62b8bbe..bb1ac44f02b6c 100644 --- a/clients/client-networkmanager/src/commands/GetTransitGatewayConnectPeerAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetTransitGatewayConnectPeerAssociationsCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayConnectPeerAssociationsRequest, GetTransitGatewayConnectPeerAssociationsResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetTransitGatewayConnectPeerAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetTransitGatewayPeeringCommand.ts b/clients/client-networkmanager/src/commands/GetTransitGatewayPeeringCommand.ts index 4d108d5d164fc..3618531a16628 100644 --- a/clients/client-networkmanager/src/commands/GetTransitGatewayPeeringCommand.ts +++ b/clients/client-networkmanager/src/commands/GetTransitGatewayPeeringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTransitGatewayPeeringRequest, GetTransitGatewayPeeringResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetTransitGatewayPeeringRequest, GetTransitGatewayPeeringResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetTransitGatewayPeering } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetTransitGatewayRegistrationsCommand.ts b/clients/client-networkmanager/src/commands/GetTransitGatewayRegistrationsCommand.ts index 55b0017f149d7..0d22107a7b343 100644 --- a/clients/client-networkmanager/src/commands/GetTransitGatewayRegistrationsCommand.ts +++ b/clients/client-networkmanager/src/commands/GetTransitGatewayRegistrationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTransitGatewayRegistrationsRequest, GetTransitGatewayRegistrationsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetTransitGatewayRegistrationsRequest, GetTransitGatewayRegistrationsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetTransitGatewayRegistrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetTransitGatewayRouteTableAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetTransitGatewayRouteTableAttachmentCommand.ts index d5f388e13bd8e..d3606475eb077 100644 --- a/clients/client-networkmanager/src/commands/GetTransitGatewayRouteTableAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetTransitGatewayRouteTableAttachmentCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTransitGatewayRouteTableAttachmentRequest, GetTransitGatewayRouteTableAttachmentResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetTransitGatewayRouteTableAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/GetVpcAttachmentCommand.ts b/clients/client-networkmanager/src/commands/GetVpcAttachmentCommand.ts index 096bc527db2d2..6167896877cf0 100644 --- a/clients/client-networkmanager/src/commands/GetVpcAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/GetVpcAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVpcAttachmentRequest, GetVpcAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { GetVpcAttachmentRequest, GetVpcAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { GetVpcAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListAttachmentRoutingPolicyAssociationsCommand.ts b/clients/client-networkmanager/src/commands/ListAttachmentRoutingPolicyAssociationsCommand.ts index e0eaf830a8bfc..9b1328af4bb28 100644 --- a/clients/client-networkmanager/src/commands/ListAttachmentRoutingPolicyAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/ListAttachmentRoutingPolicyAssociationsCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAttachmentRoutingPolicyAssociationsRequest, ListAttachmentRoutingPolicyAssociationsResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListAttachmentRoutingPolicyAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListAttachmentsCommand.ts b/clients/client-networkmanager/src/commands/ListAttachmentsCommand.ts index 410bbadd6c8e5..e1c92d9fc2715 100644 --- a/clients/client-networkmanager/src/commands/ListAttachmentsCommand.ts +++ b/clients/client-networkmanager/src/commands/ListAttachmentsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAttachmentsRequest, ListAttachmentsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { ListAttachmentsRequest, ListAttachmentsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListAttachments } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListConnectPeersCommand.ts b/clients/client-networkmanager/src/commands/ListConnectPeersCommand.ts index 492eae83dd991..f16463a86a716 100644 --- a/clients/client-networkmanager/src/commands/ListConnectPeersCommand.ts +++ b/clients/client-networkmanager/src/commands/ListConnectPeersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectPeersRequest, ListConnectPeersResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { ListConnectPeersRequest, ListConnectPeersResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListConnectPeers } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListCoreNetworkPolicyVersionsCommand.ts b/clients/client-networkmanager/src/commands/ListCoreNetworkPolicyVersionsCommand.ts index 809083a007c3e..edd90256ca89a 100644 --- a/clients/client-networkmanager/src/commands/ListCoreNetworkPolicyVersionsCommand.ts +++ b/clients/client-networkmanager/src/commands/ListCoreNetworkPolicyVersionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCoreNetworkPolicyVersionsRequest, ListCoreNetworkPolicyVersionsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { ListCoreNetworkPolicyVersionsRequest, ListCoreNetworkPolicyVersionsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListCoreNetworkPolicyVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListCoreNetworkPrefixListAssociationsCommand.ts b/clients/client-networkmanager/src/commands/ListCoreNetworkPrefixListAssociationsCommand.ts index 285516b72c5e7..e4eefbde2f234 100644 --- a/clients/client-networkmanager/src/commands/ListCoreNetworkPrefixListAssociationsCommand.ts +++ b/clients/client-networkmanager/src/commands/ListCoreNetworkPrefixListAssociationsCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCoreNetworkPrefixListAssociationsRequest, ListCoreNetworkPrefixListAssociationsResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListCoreNetworkPrefixListAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListCoreNetworkRoutingInformationCommand.ts b/clients/client-networkmanager/src/commands/ListCoreNetworkRoutingInformationCommand.ts index 44437aed1531f..19d1df0bb8b1b 100644 --- a/clients/client-networkmanager/src/commands/ListCoreNetworkRoutingInformationCommand.ts +++ b/clients/client-networkmanager/src/commands/ListCoreNetworkRoutingInformationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCoreNetworkRoutingInformationRequest, ListCoreNetworkRoutingInformationResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListCoreNetworkRoutingInformation } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListCoreNetworksCommand.ts b/clients/client-networkmanager/src/commands/ListCoreNetworksCommand.ts index c60d6d41df6fe..ff468e92553e8 100644 --- a/clients/client-networkmanager/src/commands/ListCoreNetworksCommand.ts +++ b/clients/client-networkmanager/src/commands/ListCoreNetworksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCoreNetworksRequest, ListCoreNetworksResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { ListCoreNetworksRequest, ListCoreNetworksResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListCoreNetworks } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListOrganizationServiceAccessStatusCommand.ts b/clients/client-networkmanager/src/commands/ListOrganizationServiceAccessStatusCommand.ts index 21fe82ffe644f..47c2d1b9f3e7e 100644 --- a/clients/client-networkmanager/src/commands/ListOrganizationServiceAccessStatusCommand.ts +++ b/clients/client-networkmanager/src/commands/ListOrganizationServiceAccessStatusCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListOrganizationServiceAccessStatusRequest, ListOrganizationServiceAccessStatusResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListOrganizationServiceAccessStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListPeeringsCommand.ts b/clients/client-networkmanager/src/commands/ListPeeringsCommand.ts index 00b8d23d60366..445c057e59e22 100644 --- a/clients/client-networkmanager/src/commands/ListPeeringsCommand.ts +++ b/clients/client-networkmanager/src/commands/ListPeeringsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPeeringsRequest, ListPeeringsResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { ListPeeringsRequest, ListPeeringsResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListPeerings } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/ListTagsForResourceCommand.ts b/clients/client-networkmanager/src/commands/ListTagsForResourceCommand.ts index f8a3abedfd3ab..4335418c845f0 100644 --- a/clients/client-networkmanager/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-networkmanager/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/PutAttachmentRoutingPolicyLabelCommand.ts b/clients/client-networkmanager/src/commands/PutAttachmentRoutingPolicyLabelCommand.ts index f6a07fbca5e94..fccbd68b70003 100644 --- a/clients/client-networkmanager/src/commands/PutAttachmentRoutingPolicyLabelCommand.ts +++ b/clients/client-networkmanager/src/commands/PutAttachmentRoutingPolicyLabelCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAttachmentRoutingPolicyLabelRequest, PutAttachmentRoutingPolicyLabelResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + PutAttachmentRoutingPolicyLabelRequest, + PutAttachmentRoutingPolicyLabelResponse, +} from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { PutAttachmentRoutingPolicyLabel } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/PutCoreNetworkPolicyCommand.ts b/clients/client-networkmanager/src/commands/PutCoreNetworkPolicyCommand.ts index c463cfa8f1a1b..dd85403ef122c 100644 --- a/clients/client-networkmanager/src/commands/PutCoreNetworkPolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/PutCoreNetworkPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutCoreNetworkPolicyRequest, PutCoreNetworkPolicyResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { PutCoreNetworkPolicyRequest, PutCoreNetworkPolicyResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { PutCoreNetworkPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/PutResourcePolicyCommand.ts b/clients/client-networkmanager/src/commands/PutResourcePolicyCommand.ts index 15c69c3c6b57e..17cd84db1938c 100644 --- a/clients/client-networkmanager/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-networkmanager/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/RegisterTransitGatewayCommand.ts b/clients/client-networkmanager/src/commands/RegisterTransitGatewayCommand.ts index ff6c58c8cd3cc..981bcbd8f04ab 100644 --- a/clients/client-networkmanager/src/commands/RegisterTransitGatewayCommand.ts +++ b/clients/client-networkmanager/src/commands/RegisterTransitGatewayCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterTransitGatewayRequest, RegisterTransitGatewayResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { RegisterTransitGatewayRequest, RegisterTransitGatewayResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { RegisterTransitGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/RejectAttachmentCommand.ts b/clients/client-networkmanager/src/commands/RejectAttachmentCommand.ts index 81bdb14a5cd2b..16e6bc320fbec 100644 --- a/clients/client-networkmanager/src/commands/RejectAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/RejectAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectAttachmentRequest, RejectAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { RejectAttachmentRequest, RejectAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { RejectAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/RemoveAttachmentRoutingPolicyLabelCommand.ts b/clients/client-networkmanager/src/commands/RemoveAttachmentRoutingPolicyLabelCommand.ts index 93771be5fcc18..76e0dec2c9a8d 100644 --- a/clients/client-networkmanager/src/commands/RemoveAttachmentRoutingPolicyLabelCommand.ts +++ b/clients/client-networkmanager/src/commands/RemoveAttachmentRoutingPolicyLabelCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RemoveAttachmentRoutingPolicyLabelRequest, RemoveAttachmentRoutingPolicyLabelResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { RemoveAttachmentRoutingPolicyLabel } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/RestoreCoreNetworkPolicyVersionCommand.ts b/clients/client-networkmanager/src/commands/RestoreCoreNetworkPolicyVersionCommand.ts index 9d58436a0c3ab..320bcc04cb90a 100644 --- a/clients/client-networkmanager/src/commands/RestoreCoreNetworkPolicyVersionCommand.ts +++ b/clients/client-networkmanager/src/commands/RestoreCoreNetworkPolicyVersionCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreCoreNetworkPolicyVersionRequest, RestoreCoreNetworkPolicyVersionResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + RestoreCoreNetworkPolicyVersionRequest, + RestoreCoreNetworkPolicyVersionResponse, +} from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { RestoreCoreNetworkPolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/StartOrganizationServiceAccessUpdateCommand.ts b/clients/client-networkmanager/src/commands/StartOrganizationServiceAccessUpdateCommand.ts index e2cbfccffa856..82e438856afab 100644 --- a/clients/client-networkmanager/src/commands/StartOrganizationServiceAccessUpdateCommand.ts +++ b/clients/client-networkmanager/src/commands/StartOrganizationServiceAccessUpdateCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartOrganizationServiceAccessUpdateRequest, StartOrganizationServiceAccessUpdateResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { StartOrganizationServiceAccessUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/StartRouteAnalysisCommand.ts b/clients/client-networkmanager/src/commands/StartRouteAnalysisCommand.ts index 13259af32a830..ff9c84429a1b4 100644 --- a/clients/client-networkmanager/src/commands/StartRouteAnalysisCommand.ts +++ b/clients/client-networkmanager/src/commands/StartRouteAnalysisCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRouteAnalysisRequest, StartRouteAnalysisResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { StartRouteAnalysisRequest, StartRouteAnalysisResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { StartRouteAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/TagResourceCommand.ts b/clients/client-networkmanager/src/commands/TagResourceCommand.ts index 6c6e23e017d7e..24f818b8d55fe 100644 --- a/clients/client-networkmanager/src/commands/TagResourceCommand.ts +++ b/clients/client-networkmanager/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UntagResourceCommand.ts b/clients/client-networkmanager/src/commands/UntagResourceCommand.ts index edb563995efcb..3f55b30c194ca 100644 --- a/clients/client-networkmanager/src/commands/UntagResourceCommand.ts +++ b/clients/client-networkmanager/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UpdateConnectionCommand.ts b/clients/client-networkmanager/src/commands/UpdateConnectionCommand.ts index 8bd109d83d7f4..801d54843b682 100644 --- a/clients/client-networkmanager/src/commands/UpdateConnectionCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateConnectionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { UpdateConnectionRequest, UpdateConnectionResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UpdateConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UpdateCoreNetworkCommand.ts b/clients/client-networkmanager/src/commands/UpdateCoreNetworkCommand.ts index 2335c6bd13a81..a95a836dce2dc 100644 --- a/clients/client-networkmanager/src/commands/UpdateCoreNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateCoreNetworkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCoreNetworkRequest, UpdateCoreNetworkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { UpdateCoreNetworkRequest, UpdateCoreNetworkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UpdateCoreNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UpdateDeviceCommand.ts b/clients/client-networkmanager/src/commands/UpdateDeviceCommand.ts index d1c4135de90de..f2167a9ee02c7 100644 --- a/clients/client-networkmanager/src/commands/UpdateDeviceCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateDeviceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeviceRequest, UpdateDeviceResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { UpdateDeviceRequest, UpdateDeviceResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UpdateDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UpdateDirectConnectGatewayAttachmentCommand.ts b/clients/client-networkmanager/src/commands/UpdateDirectConnectGatewayAttachmentCommand.ts index 3c43a75e28d7d..89f572dd3c09b 100644 --- a/clients/client-networkmanager/src/commands/UpdateDirectConnectGatewayAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateDirectConnectGatewayAttachmentCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateDirectConnectGatewayAttachmentRequest, UpdateDirectConnectGatewayAttachmentResponse, } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UpdateDirectConnectGatewayAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UpdateGlobalNetworkCommand.ts b/clients/client-networkmanager/src/commands/UpdateGlobalNetworkCommand.ts index d918e50fccdc0..b9771958e7dbc 100644 --- a/clients/client-networkmanager/src/commands/UpdateGlobalNetworkCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateGlobalNetworkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlobalNetworkRequest, UpdateGlobalNetworkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { UpdateGlobalNetworkRequest, UpdateGlobalNetworkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UpdateGlobalNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UpdateLinkCommand.ts b/clients/client-networkmanager/src/commands/UpdateLinkCommand.ts index a92fbe22465dc..cd7656c9bd4ee 100644 --- a/clients/client-networkmanager/src/commands/UpdateLinkCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateLinkCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLinkRequest, UpdateLinkResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { UpdateLinkRequest, UpdateLinkResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UpdateLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UpdateNetworkResourceMetadataCommand.ts b/clients/client-networkmanager/src/commands/UpdateNetworkResourceMetadataCommand.ts index 89905a5058fde..ec6818df9fe7a 100644 --- a/clients/client-networkmanager/src/commands/UpdateNetworkResourceMetadataCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateNetworkResourceMetadataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNetworkResourceMetadataRequest, UpdateNetworkResourceMetadataResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { UpdateNetworkResourceMetadataRequest, UpdateNetworkResourceMetadataResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UpdateNetworkResourceMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UpdateSiteCommand.ts b/clients/client-networkmanager/src/commands/UpdateSiteCommand.ts index 9fdb4c1c5ac06..689f50db4a59f 100644 --- a/clients/client-networkmanager/src/commands/UpdateSiteCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateSiteCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSiteRequest, UpdateSiteResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { UpdateSiteRequest, UpdateSiteResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UpdateSite } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/commands/UpdateVpcAttachmentCommand.ts b/clients/client-networkmanager/src/commands/UpdateVpcAttachmentCommand.ts index 615e7f898030b..d28ba2d0b016b 100644 --- a/clients/client-networkmanager/src/commands/UpdateVpcAttachmentCommand.ts +++ b/clients/client-networkmanager/src/commands/UpdateVpcAttachmentCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVpcAttachmentRequest, UpdateVpcAttachmentResponse } from "../models/models_0"; -import { NetworkManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkManagerClient"; +import type { UpdateVpcAttachmentRequest, UpdateVpcAttachmentResponse } from "../models/models_0"; +import type { + NetworkManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkManagerClient"; import { UpdateVpcAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmanager/src/endpoint/EndpointParameters.ts b/clients/client-networkmanager/src/endpoint/EndpointParameters.ts index e13c266c27442..7deda6f6652ac 100644 --- a/clients/client-networkmanager/src/endpoint/EndpointParameters.ts +++ b/clients/client-networkmanager/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-networkmanager/src/endpoint/endpointResolver.ts b/clients/client-networkmanager/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-networkmanager/src/endpoint/endpointResolver.ts +++ b/clients/client-networkmanager/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-networkmanager/src/extensionConfiguration.ts b/clients/client-networkmanager/src/extensionConfiguration.ts index 5533b93e108c0..875c9b828d111 100644 --- a/clients/client-networkmanager/src/extensionConfiguration.ts +++ b/clients/client-networkmanager/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-networkmanager/src/models/NetworkManagerServiceException.ts b/clients/client-networkmanager/src/models/NetworkManagerServiceException.ts index d7bb8b1509ded..fe2290d1bd235 100644 --- a/clients/client-networkmanager/src/models/NetworkManagerServiceException.ts +++ b/clients/client-networkmanager/src/models/NetworkManagerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-networkmanager/src/models/errors.ts b/clients/client-networkmanager/src/models/errors.ts index 1b30fc367514a..dc4d8b8e9e029 100644 --- a/clients/client-networkmanager/src/models/errors.ts +++ b/clients/client-networkmanager/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { CoreNetworkPolicyError, ValidationExceptionField } from "./models_0"; diff --git a/clients/client-networkmanager/src/pagination/DescribeGlobalNetworksPaginator.ts b/clients/client-networkmanager/src/pagination/DescribeGlobalNetworksPaginator.ts index 1f39b6d25952d..1e17b3f703b35 100644 --- a/clients/client-networkmanager/src/pagination/DescribeGlobalNetworksPaginator.ts +++ b/clients/client-networkmanager/src/pagination/DescribeGlobalNetworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGlobalNetworksCommand, diff --git a/clients/client-networkmanager/src/pagination/GetConnectPeerAssociationsPaginator.ts b/clients/client-networkmanager/src/pagination/GetConnectPeerAssociationsPaginator.ts index 9d1bc17110b1a..546f171253882 100644 --- a/clients/client-networkmanager/src/pagination/GetConnectPeerAssociationsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetConnectPeerAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetConnectPeerAssociationsCommand, diff --git a/clients/client-networkmanager/src/pagination/GetConnectionsPaginator.ts b/clients/client-networkmanager/src/pagination/GetConnectionsPaginator.ts index 20f4186fdaf6b..9ffaae4f4e12b 100644 --- a/clients/client-networkmanager/src/pagination/GetConnectionsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetConnectionsCommand, diff --git a/clients/client-networkmanager/src/pagination/GetCoreNetworkChangeEventsPaginator.ts b/clients/client-networkmanager/src/pagination/GetCoreNetworkChangeEventsPaginator.ts index fa1905ee97e07..74b50b374a8c4 100644 --- a/clients/client-networkmanager/src/pagination/GetCoreNetworkChangeEventsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetCoreNetworkChangeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCoreNetworkChangeEventsCommand, diff --git a/clients/client-networkmanager/src/pagination/GetCoreNetworkChangeSetPaginator.ts b/clients/client-networkmanager/src/pagination/GetCoreNetworkChangeSetPaginator.ts index 6113e26239fb5..848d8211eb0d8 100644 --- a/clients/client-networkmanager/src/pagination/GetCoreNetworkChangeSetPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetCoreNetworkChangeSetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCoreNetworkChangeSetCommand, diff --git a/clients/client-networkmanager/src/pagination/GetCustomerGatewayAssociationsPaginator.ts b/clients/client-networkmanager/src/pagination/GetCustomerGatewayAssociationsPaginator.ts index 9cbe5f04a8933..e5ec93d5c9edc 100644 --- a/clients/client-networkmanager/src/pagination/GetCustomerGatewayAssociationsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetCustomerGatewayAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCustomerGatewayAssociationsCommand, diff --git a/clients/client-networkmanager/src/pagination/GetDevicesPaginator.ts b/clients/client-networkmanager/src/pagination/GetDevicesPaginator.ts index 9eac23fbfc671..bf9634e60bf06 100644 --- a/clients/client-networkmanager/src/pagination/GetDevicesPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetDevicesCommand, GetDevicesCommandInput, GetDevicesCommandOutput } from "../commands/GetDevicesCommand"; import { NetworkManagerClient } from "../NetworkManagerClient"; diff --git a/clients/client-networkmanager/src/pagination/GetLinkAssociationsPaginator.ts b/clients/client-networkmanager/src/pagination/GetLinkAssociationsPaginator.ts index 3eb0862d03e20..8048d1d327bb2 100644 --- a/clients/client-networkmanager/src/pagination/GetLinkAssociationsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetLinkAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetLinkAssociationsCommand, diff --git a/clients/client-networkmanager/src/pagination/GetLinksPaginator.ts b/clients/client-networkmanager/src/pagination/GetLinksPaginator.ts index f432daa22ca0c..ded7f3a39d308 100644 --- a/clients/client-networkmanager/src/pagination/GetLinksPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetLinksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetLinksCommand, GetLinksCommandInput, GetLinksCommandOutput } from "../commands/GetLinksCommand"; import { NetworkManagerClient } from "../NetworkManagerClient"; diff --git a/clients/client-networkmanager/src/pagination/GetNetworkResourceCountsPaginator.ts b/clients/client-networkmanager/src/pagination/GetNetworkResourceCountsPaginator.ts index debab0b93d6dc..2cdf931ad5223 100644 --- a/clients/client-networkmanager/src/pagination/GetNetworkResourceCountsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetNetworkResourceCountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetNetworkResourceCountsCommand, diff --git a/clients/client-networkmanager/src/pagination/GetNetworkResourceRelationshipsPaginator.ts b/clients/client-networkmanager/src/pagination/GetNetworkResourceRelationshipsPaginator.ts index b0fd7a8d57b95..216635ebb3a1a 100644 --- a/clients/client-networkmanager/src/pagination/GetNetworkResourceRelationshipsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetNetworkResourceRelationshipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetNetworkResourceRelationshipsCommand, diff --git a/clients/client-networkmanager/src/pagination/GetNetworkResourcesPaginator.ts b/clients/client-networkmanager/src/pagination/GetNetworkResourcesPaginator.ts index 77fc8cb3bdac3..214438a718d78 100644 --- a/clients/client-networkmanager/src/pagination/GetNetworkResourcesPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetNetworkResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetNetworkResourcesCommand, diff --git a/clients/client-networkmanager/src/pagination/GetNetworkTelemetryPaginator.ts b/clients/client-networkmanager/src/pagination/GetNetworkTelemetryPaginator.ts index 08de852280565..c6e9c3d260063 100644 --- a/clients/client-networkmanager/src/pagination/GetNetworkTelemetryPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetNetworkTelemetryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetNetworkTelemetryCommand, diff --git a/clients/client-networkmanager/src/pagination/GetSitesPaginator.ts b/clients/client-networkmanager/src/pagination/GetSitesPaginator.ts index b38528e6dbfeb..c43b064699f16 100644 --- a/clients/client-networkmanager/src/pagination/GetSitesPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetSitesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSitesCommand, GetSitesCommandInput, GetSitesCommandOutput } from "../commands/GetSitesCommand"; import { NetworkManagerClient } from "../NetworkManagerClient"; diff --git a/clients/client-networkmanager/src/pagination/GetTransitGatewayConnectPeerAssociationsPaginator.ts b/clients/client-networkmanager/src/pagination/GetTransitGatewayConnectPeerAssociationsPaginator.ts index 73f85fcce13b4..4317d6b9f7e61 100644 --- a/clients/client-networkmanager/src/pagination/GetTransitGatewayConnectPeerAssociationsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetTransitGatewayConnectPeerAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTransitGatewayConnectPeerAssociationsCommand, diff --git a/clients/client-networkmanager/src/pagination/GetTransitGatewayRegistrationsPaginator.ts b/clients/client-networkmanager/src/pagination/GetTransitGatewayRegistrationsPaginator.ts index 5974dd584aa39..e49d1544ef549 100644 --- a/clients/client-networkmanager/src/pagination/GetTransitGatewayRegistrationsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/GetTransitGatewayRegistrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTransitGatewayRegistrationsCommand, diff --git a/clients/client-networkmanager/src/pagination/Interfaces.ts b/clients/client-networkmanager/src/pagination/Interfaces.ts index ecbcb56f88e03..49a1f9e6692c3 100644 --- a/clients/client-networkmanager/src/pagination/Interfaces.ts +++ b/clients/client-networkmanager/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { NetworkManagerClient } from "../NetworkManagerClient"; diff --git a/clients/client-networkmanager/src/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.ts b/clients/client-networkmanager/src/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.ts index 679c0ffc5cacc..dfd417a0a816a 100644 --- a/clients/client-networkmanager/src/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/ListAttachmentRoutingPolicyAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttachmentRoutingPolicyAssociationsCommand, diff --git a/clients/client-networkmanager/src/pagination/ListAttachmentsPaginator.ts b/clients/client-networkmanager/src/pagination/ListAttachmentsPaginator.ts index 2b935f826c717..1e6b3068fe24c 100644 --- a/clients/client-networkmanager/src/pagination/ListAttachmentsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/ListAttachmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttachmentsCommand, diff --git a/clients/client-networkmanager/src/pagination/ListConnectPeersPaginator.ts b/clients/client-networkmanager/src/pagination/ListConnectPeersPaginator.ts index b21f2075acc7f..cc53cdbaeb43c 100644 --- a/clients/client-networkmanager/src/pagination/ListConnectPeersPaginator.ts +++ b/clients/client-networkmanager/src/pagination/ListConnectPeersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectPeersCommand, diff --git a/clients/client-networkmanager/src/pagination/ListCoreNetworkPolicyVersionsPaginator.ts b/clients/client-networkmanager/src/pagination/ListCoreNetworkPolicyVersionsPaginator.ts index 8f192c668e726..c374d0ab9d6cb 100644 --- a/clients/client-networkmanager/src/pagination/ListCoreNetworkPolicyVersionsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/ListCoreNetworkPolicyVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCoreNetworkPolicyVersionsCommand, diff --git a/clients/client-networkmanager/src/pagination/ListCoreNetworkPrefixListAssociationsPaginator.ts b/clients/client-networkmanager/src/pagination/ListCoreNetworkPrefixListAssociationsPaginator.ts index 6c9f401356ae8..f34ea1c1f818f 100644 --- a/clients/client-networkmanager/src/pagination/ListCoreNetworkPrefixListAssociationsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/ListCoreNetworkPrefixListAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCoreNetworkPrefixListAssociationsCommand, diff --git a/clients/client-networkmanager/src/pagination/ListCoreNetworkRoutingInformationPaginator.ts b/clients/client-networkmanager/src/pagination/ListCoreNetworkRoutingInformationPaginator.ts index b8a412075a3b4..90f2ec4db17ce 100644 --- a/clients/client-networkmanager/src/pagination/ListCoreNetworkRoutingInformationPaginator.ts +++ b/clients/client-networkmanager/src/pagination/ListCoreNetworkRoutingInformationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCoreNetworkRoutingInformationCommand, diff --git a/clients/client-networkmanager/src/pagination/ListCoreNetworksPaginator.ts b/clients/client-networkmanager/src/pagination/ListCoreNetworksPaginator.ts index 2752d895d459b..f54d826cd9f98 100644 --- a/clients/client-networkmanager/src/pagination/ListCoreNetworksPaginator.ts +++ b/clients/client-networkmanager/src/pagination/ListCoreNetworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCoreNetworksCommand, diff --git a/clients/client-networkmanager/src/pagination/ListPeeringsPaginator.ts b/clients/client-networkmanager/src/pagination/ListPeeringsPaginator.ts index 42e7e79cc5533..7d01a8154054e 100644 --- a/clients/client-networkmanager/src/pagination/ListPeeringsPaginator.ts +++ b/clients/client-networkmanager/src/pagination/ListPeeringsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPeeringsCommand, diff --git a/clients/client-networkmanager/src/runtimeConfig.browser.ts b/clients/client-networkmanager/src/runtimeConfig.browser.ts index cb9cf31b71cc9..c9840ecc40f71 100644 --- a/clients/client-networkmanager/src/runtimeConfig.browser.ts +++ b/clients/client-networkmanager/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NetworkManagerClientConfig } from "./NetworkManagerClient"; + +import type { NetworkManagerClientConfig } from "./NetworkManagerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-networkmanager/src/runtimeConfig.native.ts b/clients/client-networkmanager/src/runtimeConfig.native.ts index 915b903a0be42..5e66e268853ef 100644 --- a/clients/client-networkmanager/src/runtimeConfig.native.ts +++ b/clients/client-networkmanager/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { NetworkManagerClientConfig } from "./NetworkManagerClient"; +import type { NetworkManagerClientConfig } from "./NetworkManagerClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-networkmanager/src/runtimeConfig.shared.ts b/clients/client-networkmanager/src/runtimeConfig.shared.ts index d6a0f9f7d68ba..c59265ca322b4 100644 --- a/clients/client-networkmanager/src/runtimeConfig.shared.ts +++ b/clients/client-networkmanager/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultNetworkManagerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { NetworkManagerClientConfig } from "./NetworkManagerClient"; +import type { NetworkManagerClientConfig } from "./NetworkManagerClient"; /** * @internal diff --git a/clients/client-networkmanager/src/runtimeConfig.ts b/clients/client-networkmanager/src/runtimeConfig.ts index 92c0d73cd88f6..0bda2c4d41e70 100644 --- a/clients/client-networkmanager/src/runtimeConfig.ts +++ b/clients/client-networkmanager/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NetworkManagerClientConfig } from "./NetworkManagerClient"; + +import type { NetworkManagerClientConfig } from "./NetworkManagerClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-networkmanager/src/runtimeExtensions.ts b/clients/client-networkmanager/src/runtimeExtensions.ts index b3477ea8bc5f0..7b026258437e2 100644 --- a/clients/client-networkmanager/src/runtimeExtensions.ts +++ b/clients/client-networkmanager/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { NetworkManagerExtensionConfiguration } from "./extensionConfiguration"; +import type { NetworkManagerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-networkmanager/src/schemas/schemas_0.ts b/clients/client-networkmanager/src/schemas/schemas_0.ts index 8c17911984cd8..cae95d9e1e16c 100644 --- a/clients/client-networkmanager/src/schemas/schemas_0.ts +++ b/clients/client-networkmanager/src/schemas/schemas_0.ts @@ -692,7 +692,7 @@ const n0 = "com.amazonaws.networkmanager"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-networkmonitor/package.json b/clients/client-networkmonitor/package.json index 9aa81011b3920..7cfed38393851 100644 --- a/clients/client-networkmonitor/package.json +++ b/clients/client-networkmonitor/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-networkmonitor/src/NetworkMonitor.ts b/clients/client-networkmonitor/src/NetworkMonitor.ts index 1eb6afb6ffcf8..39c409d6b5b77 100644 --- a/clients/client-networkmonitor/src/NetworkMonitor.ts +++ b/clients/client-networkmonitor/src/NetworkMonitor.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateMonitorCommand, @@ -38,7 +38,7 @@ import { UpdateMonitorCommandOutput, } from "./commands/UpdateMonitorCommand"; import { UpdateProbeCommand, UpdateProbeCommandInput, UpdateProbeCommandOutput } from "./commands/UpdateProbeCommand"; -import { NetworkMonitorClient, NetworkMonitorClientConfig } from "./NetworkMonitorClient"; +import { NetworkMonitorClient } from "./NetworkMonitorClient"; const commands = { CreateMonitorCommand, diff --git a/clients/client-networkmonitor/src/NetworkMonitorClient.ts b/clients/client-networkmonitor/src/NetworkMonitorClient.ts index f1d7d7945e249..c9081ea2c7855 100644 --- a/clients/client-networkmonitor/src/NetworkMonitorClient.ts +++ b/clients/client-networkmonitor/src/NetworkMonitorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultNetworkMonitorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "./commands/CreateMonitorCommand"; @@ -79,7 +88,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-networkmonitor/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-networkmonitor/src/auth/httpAuthExtensionConfiguration.ts index 0493a200ffa7b..81a4a89a67d52 100644 --- a/clients/client-networkmonitor/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-networkmonitor/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { NetworkMonitorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { NetworkMonitorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-networkmonitor/src/auth/httpAuthSchemeProvider.ts b/clients/client-networkmonitor/src/auth/httpAuthSchemeProvider.ts index 8448cd0d875dd..6fb645216f147 100644 --- a/clients/client-networkmonitor/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-networkmonitor/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { NetworkMonitorClientConfig, NetworkMonitorClientResolvedConfig } from "../NetworkMonitorClient"; +import { type NetworkMonitorClientResolvedConfig, NetworkMonitorClientConfig } from "../NetworkMonitorClient"; /** * @internal diff --git a/clients/client-networkmonitor/src/commands/CreateMonitorCommand.ts b/clients/client-networkmonitor/src/commands/CreateMonitorCommand.ts index cb3a1dc72398d..cc7857940c69a 100644 --- a/clients/client-networkmonitor/src/commands/CreateMonitorCommand.ts +++ b/clients/client-networkmonitor/src/commands/CreateMonitorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { CreateMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/CreateProbeCommand.ts b/clients/client-networkmonitor/src/commands/CreateProbeCommand.ts index 468ea420ae39f..dc62881cf0fc8 100644 --- a/clients/client-networkmonitor/src/commands/CreateProbeCommand.ts +++ b/clients/client-networkmonitor/src/commands/CreateProbeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProbeInput, CreateProbeOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { CreateProbeInput, CreateProbeOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { CreateProbe } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/DeleteMonitorCommand.ts b/clients/client-networkmonitor/src/commands/DeleteMonitorCommand.ts index e6d22176f4d2b..a61a0beea423c 100644 --- a/clients/client-networkmonitor/src/commands/DeleteMonitorCommand.ts +++ b/clients/client-networkmonitor/src/commands/DeleteMonitorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { DeleteMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/DeleteProbeCommand.ts b/clients/client-networkmonitor/src/commands/DeleteProbeCommand.ts index df9634648f9aa..cd93a4747c494 100644 --- a/clients/client-networkmonitor/src/commands/DeleteProbeCommand.ts +++ b/clients/client-networkmonitor/src/commands/DeleteProbeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProbeInput, DeleteProbeOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { DeleteProbeInput, DeleteProbeOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { DeleteProbe } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/GetMonitorCommand.ts b/clients/client-networkmonitor/src/commands/GetMonitorCommand.ts index 06aaf099a6862..0b60b2ba2ee0d 100644 --- a/clients/client-networkmonitor/src/commands/GetMonitorCommand.ts +++ b/clients/client-networkmonitor/src/commands/GetMonitorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMonitorInput, GetMonitorOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { GetMonitorInput, GetMonitorOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { GetMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/GetProbeCommand.ts b/clients/client-networkmonitor/src/commands/GetProbeCommand.ts index ec3f513326f35..4d06d96e338c3 100644 --- a/clients/client-networkmonitor/src/commands/GetProbeCommand.ts +++ b/clients/client-networkmonitor/src/commands/GetProbeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProbeInput, GetProbeOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { GetProbeInput, GetProbeOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { GetProbe } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/ListMonitorsCommand.ts b/clients/client-networkmonitor/src/commands/ListMonitorsCommand.ts index 473ad47e6cc86..b5077c0ea5245 100644 --- a/clients/client-networkmonitor/src/commands/ListMonitorsCommand.ts +++ b/clients/client-networkmonitor/src/commands/ListMonitorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { ListMonitors } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/ListTagsForResourceCommand.ts b/clients/client-networkmonitor/src/commands/ListTagsForResourceCommand.ts index 7e83cd33ee390..2cf9a105d83d1 100644 --- a/clients/client-networkmonitor/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-networkmonitor/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/TagResourceCommand.ts b/clients/client-networkmonitor/src/commands/TagResourceCommand.ts index 1dbb00ce6b9f3..1fb8071429fd4 100644 --- a/clients/client-networkmonitor/src/commands/TagResourceCommand.ts +++ b/clients/client-networkmonitor/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/UntagResourceCommand.ts b/clients/client-networkmonitor/src/commands/UntagResourceCommand.ts index 0fdc6151ac861..e8e12f79e8b5b 100644 --- a/clients/client-networkmonitor/src/commands/UntagResourceCommand.ts +++ b/clients/client-networkmonitor/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/UpdateMonitorCommand.ts b/clients/client-networkmonitor/src/commands/UpdateMonitorCommand.ts index 2a4248c8cf399..45d63c90bf2fc 100644 --- a/clients/client-networkmonitor/src/commands/UpdateMonitorCommand.ts +++ b/clients/client-networkmonitor/src/commands/UpdateMonitorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { UpdateMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/commands/UpdateProbeCommand.ts b/clients/client-networkmonitor/src/commands/UpdateProbeCommand.ts index e4284846d1d88..d4d9f417ee4a6 100644 --- a/clients/client-networkmonitor/src/commands/UpdateProbeCommand.ts +++ b/clients/client-networkmonitor/src/commands/UpdateProbeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProbeInput, UpdateProbeOutput } from "../models/models_0"; -import { NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NetworkMonitorClient"; +import type { UpdateProbeInput, UpdateProbeOutput } from "../models/models_0"; +import type { + NetworkMonitorClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../NetworkMonitorClient"; import { UpdateProbe } from "../schemas/schemas_0"; /** diff --git a/clients/client-networkmonitor/src/endpoint/EndpointParameters.ts b/clients/client-networkmonitor/src/endpoint/EndpointParameters.ts index 4c5b587ab1ae5..d7bfb30129aef 100644 --- a/clients/client-networkmonitor/src/endpoint/EndpointParameters.ts +++ b/clients/client-networkmonitor/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-networkmonitor/src/endpoint/endpointResolver.ts b/clients/client-networkmonitor/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-networkmonitor/src/endpoint/endpointResolver.ts +++ b/clients/client-networkmonitor/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-networkmonitor/src/extensionConfiguration.ts b/clients/client-networkmonitor/src/extensionConfiguration.ts index 5eb020551b10c..db87c26766f5f 100644 --- a/clients/client-networkmonitor/src/extensionConfiguration.ts +++ b/clients/client-networkmonitor/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-networkmonitor/src/models/NetworkMonitorServiceException.ts b/clients/client-networkmonitor/src/models/NetworkMonitorServiceException.ts index b3905b54de3f1..05f67ba2aeb1e 100644 --- a/clients/client-networkmonitor/src/models/NetworkMonitorServiceException.ts +++ b/clients/client-networkmonitor/src/models/NetworkMonitorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-networkmonitor/src/models/errors.ts b/clients/client-networkmonitor/src/models/errors.ts index c998d969c485d..618cbef86e44b 100644 --- a/clients/client-networkmonitor/src/models/errors.ts +++ b/clients/client-networkmonitor/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { NetworkMonitorServiceException as __BaseException } from "./NetworkMonitorServiceException"; diff --git a/clients/client-networkmonitor/src/pagination/Interfaces.ts b/clients/client-networkmonitor/src/pagination/Interfaces.ts index 2e0fb655ca666..57659e8c6c479 100644 --- a/clients/client-networkmonitor/src/pagination/Interfaces.ts +++ b/clients/client-networkmonitor/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { NetworkMonitorClient } from "../NetworkMonitorClient"; diff --git a/clients/client-networkmonitor/src/pagination/ListMonitorsPaginator.ts b/clients/client-networkmonitor/src/pagination/ListMonitorsPaginator.ts index 7a542b0d48aff..73b6a7b9c6a65 100644 --- a/clients/client-networkmonitor/src/pagination/ListMonitorsPaginator.ts +++ b/clients/client-networkmonitor/src/pagination/ListMonitorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitorsCommand, diff --git a/clients/client-networkmonitor/src/runtimeConfig.browser.ts b/clients/client-networkmonitor/src/runtimeConfig.browser.ts index b76341da5d175..4b50ce4406127 100644 --- a/clients/client-networkmonitor/src/runtimeConfig.browser.ts +++ b/clients/client-networkmonitor/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NetworkMonitorClientConfig } from "./NetworkMonitorClient"; + +import type { NetworkMonitorClientConfig } from "./NetworkMonitorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-networkmonitor/src/runtimeConfig.native.ts b/clients/client-networkmonitor/src/runtimeConfig.native.ts index 000db5091d26a..301bf5131af70 100644 --- a/clients/client-networkmonitor/src/runtimeConfig.native.ts +++ b/clients/client-networkmonitor/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { NetworkMonitorClientConfig } from "./NetworkMonitorClient"; +import type { NetworkMonitorClientConfig } from "./NetworkMonitorClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-networkmonitor/src/runtimeConfig.shared.ts b/clients/client-networkmonitor/src/runtimeConfig.shared.ts index ad070e8f31bbd..1dc4009695724 100644 --- a/clients/client-networkmonitor/src/runtimeConfig.shared.ts +++ b/clients/client-networkmonitor/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultNetworkMonitorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { NetworkMonitorClientConfig } from "./NetworkMonitorClient"; +import type { NetworkMonitorClientConfig } from "./NetworkMonitorClient"; /** * @internal diff --git a/clients/client-networkmonitor/src/runtimeConfig.ts b/clients/client-networkmonitor/src/runtimeConfig.ts index ac09997973537..19eb21bf7bf44 100644 --- a/clients/client-networkmonitor/src/runtimeConfig.ts +++ b/clients/client-networkmonitor/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NetworkMonitorClientConfig } from "./NetworkMonitorClient"; + +import type { NetworkMonitorClientConfig } from "./NetworkMonitorClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-networkmonitor/src/runtimeExtensions.ts b/clients/client-networkmonitor/src/runtimeExtensions.ts index 124dfb232035e..d3d8b66cbf5b0 100644 --- a/clients/client-networkmonitor/src/runtimeExtensions.ts +++ b/clients/client-networkmonitor/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { NetworkMonitorExtensionConfiguration } from "./extensionConfiguration"; +import type { NetworkMonitorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-networkmonitor/src/schemas/schemas_0.ts b/clients/client-networkmonitor/src/schemas/schemas_0.ts index 972000bcae770..38e5c94ba8404 100644 --- a/clients/client-networkmonitor/src/schemas/schemas_0.ts +++ b/clients/client-networkmonitor/src/schemas/schemas_0.ts @@ -85,7 +85,7 @@ const n0 = "com.amazonaws.networkmonitor"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-notifications/package.json b/clients/client-notifications/package.json index 6cc5e2fa89198..9aae0cd24ffe0 100644 --- a/clients/client-notifications/package.json +++ b/clients/client-notifications/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-notifications/src/Notifications.ts b/clients/client-notifications/src/Notifications.ts index b2f31118feea6..460e6fc75135c 100644 --- a/clients/client-notifications/src/Notifications.ts +++ b/clients/client-notifications/src/Notifications.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateChannelCommand, @@ -193,7 +193,7 @@ import { UpdateNotificationConfigurationCommandInput, UpdateNotificationConfigurationCommandOutput, } from "./commands/UpdateNotificationConfigurationCommand"; -import { NotificationsClient, NotificationsClientConfig } from "./NotificationsClient"; +import { NotificationsClient } from "./NotificationsClient"; const commands = { AssociateChannelCommand, diff --git a/clients/client-notifications/src/NotificationsClient.ts b/clients/client-notifications/src/NotificationsClient.ts index 1dcd5389a8843..3d50e74a60e09 100644 --- a/clients/client-notifications/src/NotificationsClient.ts +++ b/clients/client-notifications/src/NotificationsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultNotificationsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateChannelCommandInput, AssociateChannelCommandOutput } from "./commands/AssociateChannelCommand"; @@ -190,7 +199,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-notifications/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-notifications/src/auth/httpAuthExtensionConfiguration.ts index b72c40f120a60..703b9927f9fee 100644 --- a/clients/client-notifications/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-notifications/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { NotificationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { NotificationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-notifications/src/auth/httpAuthSchemeProvider.ts b/clients/client-notifications/src/auth/httpAuthSchemeProvider.ts index ac6edf6e45407..6c3c1b0d94707 100644 --- a/clients/client-notifications/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-notifications/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { NotificationsClientConfig, NotificationsClientResolvedConfig } from "../NotificationsClient"; +import { type NotificationsClientResolvedConfig, NotificationsClientConfig } from "../NotificationsClient"; /** * @internal diff --git a/clients/client-notifications/src/commands/AssociateChannelCommand.ts b/clients/client-notifications/src/commands/AssociateChannelCommand.ts index baa267b71c639..0e9151eb529f9 100644 --- a/clients/client-notifications/src/commands/AssociateChannelCommand.ts +++ b/clients/client-notifications/src/commands/AssociateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateChannelRequest, AssociateChannelResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { AssociateChannelRequest, AssociateChannelResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { AssociateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/AssociateManagedNotificationAccountContactCommand.ts b/clients/client-notifications/src/commands/AssociateManagedNotificationAccountContactCommand.ts index 015d3cbb30dfe..817ededccec41 100644 --- a/clients/client-notifications/src/commands/AssociateManagedNotificationAccountContactCommand.ts +++ b/clients/client-notifications/src/commands/AssociateManagedNotificationAccountContactCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateManagedNotificationAccountContactRequest, AssociateManagedNotificationAccountContactResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { AssociateManagedNotificationAccountContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/AssociateManagedNotificationAdditionalChannelCommand.ts b/clients/client-notifications/src/commands/AssociateManagedNotificationAdditionalChannelCommand.ts index 73fdea41155e4..c20b8d9f2b49f 100644 --- a/clients/client-notifications/src/commands/AssociateManagedNotificationAdditionalChannelCommand.ts +++ b/clients/client-notifications/src/commands/AssociateManagedNotificationAdditionalChannelCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateManagedNotificationAdditionalChannelRequest, AssociateManagedNotificationAdditionalChannelResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { AssociateManagedNotificationAdditionalChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/AssociateOrganizationalUnitCommand.ts b/clients/client-notifications/src/commands/AssociateOrganizationalUnitCommand.ts index 9f809e2b6f185..a916124c352c9 100644 --- a/clients/client-notifications/src/commands/AssociateOrganizationalUnitCommand.ts +++ b/clients/client-notifications/src/commands/AssociateOrganizationalUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateOrganizationalUnitRequest, AssociateOrganizationalUnitResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { AssociateOrganizationalUnitRequest, AssociateOrganizationalUnitResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { AssociateOrganizationalUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/CreateEventRuleCommand.ts b/clients/client-notifications/src/commands/CreateEventRuleCommand.ts index d9ae061755073..995e4166f0b57 100644 --- a/clients/client-notifications/src/commands/CreateEventRuleCommand.ts +++ b/clients/client-notifications/src/commands/CreateEventRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventRuleRequest, CreateEventRuleResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { CreateEventRuleRequest, CreateEventRuleResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { CreateEventRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/CreateNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/CreateNotificationConfigurationCommand.ts index c1b5b62d55706..6098c8349b348 100644 --- a/clients/client-notifications/src/commands/CreateNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/CreateNotificationConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNotificationConfigurationRequest, CreateNotificationConfigurationResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { + CreateNotificationConfigurationRequest, + CreateNotificationConfigurationResponse, +} from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { CreateNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/DeleteEventRuleCommand.ts b/clients/client-notifications/src/commands/DeleteEventRuleCommand.ts index 388a94cc6b8ca..b2ad4cb8b1687 100644 --- a/clients/client-notifications/src/commands/DeleteEventRuleCommand.ts +++ b/clients/client-notifications/src/commands/DeleteEventRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventRuleRequest, DeleteEventRuleResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { DeleteEventRuleRequest, DeleteEventRuleResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { DeleteEventRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/DeleteNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/DeleteNotificationConfigurationCommand.ts index ff3c9b255492c..facb2f96ef6e1 100644 --- a/clients/client-notifications/src/commands/DeleteNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/DeleteNotificationConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNotificationConfigurationRequest, DeleteNotificationConfigurationResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { + DeleteNotificationConfigurationRequest, + DeleteNotificationConfigurationResponse, +} from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { DeleteNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/DeregisterNotificationHubCommand.ts b/clients/client-notifications/src/commands/DeregisterNotificationHubCommand.ts index 4075a412d860c..72df0f8743235 100644 --- a/clients/client-notifications/src/commands/DeregisterNotificationHubCommand.ts +++ b/clients/client-notifications/src/commands/DeregisterNotificationHubCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterNotificationHubRequest, DeregisterNotificationHubResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { DeregisterNotificationHubRequest, DeregisterNotificationHubResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { DeregisterNotificationHub } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/DisableNotificationsAccessForOrganizationCommand.ts b/clients/client-notifications/src/commands/DisableNotificationsAccessForOrganizationCommand.ts index 3c024ceea2a7d..07c263215f7d6 100644 --- a/clients/client-notifications/src/commands/DisableNotificationsAccessForOrganizationCommand.ts +++ b/clients/client-notifications/src/commands/DisableNotificationsAccessForOrganizationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisableNotificationsAccessForOrganizationRequest, DisableNotificationsAccessForOrganizationResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { DisableNotificationsAccessForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/DisassociateChannelCommand.ts b/clients/client-notifications/src/commands/DisassociateChannelCommand.ts index 89462ab3c39b9..eff7dbae86d95 100644 --- a/clients/client-notifications/src/commands/DisassociateChannelCommand.ts +++ b/clients/client-notifications/src/commands/DisassociateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateChannelRequest, DisassociateChannelResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { DisassociateChannelRequest, DisassociateChannelResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { DisassociateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/DisassociateManagedNotificationAccountContactCommand.ts b/clients/client-notifications/src/commands/DisassociateManagedNotificationAccountContactCommand.ts index 0a900c9e6e5d0..f69dc5c1c2696 100644 --- a/clients/client-notifications/src/commands/DisassociateManagedNotificationAccountContactCommand.ts +++ b/clients/client-notifications/src/commands/DisassociateManagedNotificationAccountContactCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateManagedNotificationAccountContactRequest, DisassociateManagedNotificationAccountContactResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { DisassociateManagedNotificationAccountContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/DisassociateManagedNotificationAdditionalChannelCommand.ts b/clients/client-notifications/src/commands/DisassociateManagedNotificationAdditionalChannelCommand.ts index 21369d0aea960..8ede65aaa7945 100644 --- a/clients/client-notifications/src/commands/DisassociateManagedNotificationAdditionalChannelCommand.ts +++ b/clients/client-notifications/src/commands/DisassociateManagedNotificationAdditionalChannelCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateManagedNotificationAdditionalChannelRequest, DisassociateManagedNotificationAdditionalChannelResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { DisassociateManagedNotificationAdditionalChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/DisassociateOrganizationalUnitCommand.ts b/clients/client-notifications/src/commands/DisassociateOrganizationalUnitCommand.ts index 62e92016ad405..f29cef69b724c 100644 --- a/clients/client-notifications/src/commands/DisassociateOrganizationalUnitCommand.ts +++ b/clients/client-notifications/src/commands/DisassociateOrganizationalUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateOrganizationalUnitRequest, DisassociateOrganizationalUnitResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { DisassociateOrganizationalUnitRequest, DisassociateOrganizationalUnitResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { DisassociateOrganizationalUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/EnableNotificationsAccessForOrganizationCommand.ts b/clients/client-notifications/src/commands/EnableNotificationsAccessForOrganizationCommand.ts index d2c52df9a9bbf..a2e99c6e7b8a8 100644 --- a/clients/client-notifications/src/commands/EnableNotificationsAccessForOrganizationCommand.ts +++ b/clients/client-notifications/src/commands/EnableNotificationsAccessForOrganizationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { EnableNotificationsAccessForOrganizationRequest, EnableNotificationsAccessForOrganizationResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { EnableNotificationsAccessForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/GetEventRuleCommand.ts b/clients/client-notifications/src/commands/GetEventRuleCommand.ts index 0136ff767d843..82a0e0ee0af1b 100644 --- a/clients/client-notifications/src/commands/GetEventRuleCommand.ts +++ b/clients/client-notifications/src/commands/GetEventRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventRuleRequest, GetEventRuleResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { GetEventRuleRequest, GetEventRuleResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { GetEventRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/GetManagedNotificationChildEventCommand.ts b/clients/client-notifications/src/commands/GetManagedNotificationChildEventCommand.ts index 39f709882ae51..ba3e5bea158c0 100644 --- a/clients/client-notifications/src/commands/GetManagedNotificationChildEventCommand.ts +++ b/clients/client-notifications/src/commands/GetManagedNotificationChildEventCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedNotificationChildEventRequest, GetManagedNotificationChildEventResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { + GetManagedNotificationChildEventRequest, + GetManagedNotificationChildEventResponse, +} from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { GetManagedNotificationChildEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/GetManagedNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/GetManagedNotificationConfigurationCommand.ts index 6fad2aa4a600d..d49cabf2403fb 100644 --- a/clients/client-notifications/src/commands/GetManagedNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/GetManagedNotificationConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetManagedNotificationConfigurationRequest, GetManagedNotificationConfigurationResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { GetManagedNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/GetManagedNotificationEventCommand.ts b/clients/client-notifications/src/commands/GetManagedNotificationEventCommand.ts index 5174ce327ff72..3d8c3ec6c077f 100644 --- a/clients/client-notifications/src/commands/GetManagedNotificationEventCommand.ts +++ b/clients/client-notifications/src/commands/GetManagedNotificationEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedNotificationEventRequest, GetManagedNotificationEventResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { GetManagedNotificationEventRequest, GetManagedNotificationEventResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { GetManagedNotificationEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/GetNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/GetNotificationConfigurationCommand.ts index c6840fd92af85..8f8ff3f5d9f37 100644 --- a/clients/client-notifications/src/commands/GetNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/GetNotificationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNotificationConfigurationRequest, GetNotificationConfigurationResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { GetNotificationConfigurationRequest, GetNotificationConfigurationResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { GetNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/GetNotificationEventCommand.ts b/clients/client-notifications/src/commands/GetNotificationEventCommand.ts index df22302221171..301d81148ef5c 100644 --- a/clients/client-notifications/src/commands/GetNotificationEventCommand.ts +++ b/clients/client-notifications/src/commands/GetNotificationEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNotificationEventRequest, GetNotificationEventResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { GetNotificationEventRequest, GetNotificationEventResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { GetNotificationEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/GetNotificationsAccessForOrganizationCommand.ts b/clients/client-notifications/src/commands/GetNotificationsAccessForOrganizationCommand.ts index a5c8cb4f00c24..026b19f16ea2d 100644 --- a/clients/client-notifications/src/commands/GetNotificationsAccessForOrganizationCommand.ts +++ b/clients/client-notifications/src/commands/GetNotificationsAccessForOrganizationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetNotificationsAccessForOrganizationRequest, GetNotificationsAccessForOrganizationResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { GetNotificationsAccessForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListChannelsCommand.ts b/clients/client-notifications/src/commands/ListChannelsCommand.ts index b8d546c546bd4..9b5331ea164e6 100644 --- a/clients/client-notifications/src/commands/ListChannelsCommand.ts +++ b/clients/client-notifications/src/commands/ListChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { ListChannelsRequest, ListChannelsResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListEventRulesCommand.ts b/clients/client-notifications/src/commands/ListEventRulesCommand.ts index 6a2c854656fdf..93369b5442f55 100644 --- a/clients/client-notifications/src/commands/ListEventRulesCommand.ts +++ b/clients/client-notifications/src/commands/ListEventRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventRulesRequest, ListEventRulesResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { ListEventRulesRequest, ListEventRulesResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListEventRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListManagedNotificationChannelAssociationsCommand.ts b/clients/client-notifications/src/commands/ListManagedNotificationChannelAssociationsCommand.ts index 4dc535b40a89c..2391dae15ae5b 100644 --- a/clients/client-notifications/src/commands/ListManagedNotificationChannelAssociationsCommand.ts +++ b/clients/client-notifications/src/commands/ListManagedNotificationChannelAssociationsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListManagedNotificationChannelAssociationsRequest, ListManagedNotificationChannelAssociationsResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListManagedNotificationChannelAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListManagedNotificationChildEventsCommand.ts b/clients/client-notifications/src/commands/ListManagedNotificationChildEventsCommand.ts index 7c7bffd8d4564..194a913e51b61 100644 --- a/clients/client-notifications/src/commands/ListManagedNotificationChildEventsCommand.ts +++ b/clients/client-notifications/src/commands/ListManagedNotificationChildEventsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListManagedNotificationChildEventsRequest, ListManagedNotificationChildEventsResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListManagedNotificationChildEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListManagedNotificationConfigurationsCommand.ts b/clients/client-notifications/src/commands/ListManagedNotificationConfigurationsCommand.ts index 84878dc804327..8da297b9b4dd8 100644 --- a/clients/client-notifications/src/commands/ListManagedNotificationConfigurationsCommand.ts +++ b/clients/client-notifications/src/commands/ListManagedNotificationConfigurationsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListManagedNotificationConfigurationsRequest, ListManagedNotificationConfigurationsResponse, } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListManagedNotificationConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListManagedNotificationEventsCommand.ts b/clients/client-notifications/src/commands/ListManagedNotificationEventsCommand.ts index 3c2fa02edc244..97d9282ead227 100644 --- a/clients/client-notifications/src/commands/ListManagedNotificationEventsCommand.ts +++ b/clients/client-notifications/src/commands/ListManagedNotificationEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListManagedNotificationEventsRequest, ListManagedNotificationEventsResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { ListManagedNotificationEventsRequest, ListManagedNotificationEventsResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListManagedNotificationEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListMemberAccountsCommand.ts b/clients/client-notifications/src/commands/ListMemberAccountsCommand.ts index b6625dda114cb..35fb593c94bfe 100644 --- a/clients/client-notifications/src/commands/ListMemberAccountsCommand.ts +++ b/clients/client-notifications/src/commands/ListMemberAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMemberAccountsRequest, ListMemberAccountsResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { ListMemberAccountsRequest, ListMemberAccountsResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListMemberAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListNotificationConfigurationsCommand.ts b/clients/client-notifications/src/commands/ListNotificationConfigurationsCommand.ts index 1087f70a25812..99068a7429619 100644 --- a/clients/client-notifications/src/commands/ListNotificationConfigurationsCommand.ts +++ b/clients/client-notifications/src/commands/ListNotificationConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotificationConfigurationsRequest, ListNotificationConfigurationsResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { ListNotificationConfigurationsRequest, ListNotificationConfigurationsResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListNotificationConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListNotificationEventsCommand.ts b/clients/client-notifications/src/commands/ListNotificationEventsCommand.ts index 328dc8f6d3eb1..4991d36e722ab 100644 --- a/clients/client-notifications/src/commands/ListNotificationEventsCommand.ts +++ b/clients/client-notifications/src/commands/ListNotificationEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotificationEventsRequest, ListNotificationEventsResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { ListNotificationEventsRequest, ListNotificationEventsResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListNotificationEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListNotificationHubsCommand.ts b/clients/client-notifications/src/commands/ListNotificationHubsCommand.ts index af47650946b03..0507fecbe22e1 100644 --- a/clients/client-notifications/src/commands/ListNotificationHubsCommand.ts +++ b/clients/client-notifications/src/commands/ListNotificationHubsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotificationHubsRequest, ListNotificationHubsResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { ListNotificationHubsRequest, ListNotificationHubsResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListNotificationHubs } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListOrganizationalUnitsCommand.ts b/clients/client-notifications/src/commands/ListOrganizationalUnitsCommand.ts index 7a76a667fcd4d..68821061c7d08 100644 --- a/clients/client-notifications/src/commands/ListOrganizationalUnitsCommand.ts +++ b/clients/client-notifications/src/commands/ListOrganizationalUnitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOrganizationalUnitsRequest, ListOrganizationalUnitsResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { ListOrganizationalUnitsRequest, ListOrganizationalUnitsResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListOrganizationalUnits } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/ListTagsForResourceCommand.ts b/clients/client-notifications/src/commands/ListTagsForResourceCommand.ts index f2f60faf8cbcd..5595cccb296de 100644 --- a/clients/client-notifications/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-notifications/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/RegisterNotificationHubCommand.ts b/clients/client-notifications/src/commands/RegisterNotificationHubCommand.ts index 17f997d8371ff..adcc072724d85 100644 --- a/clients/client-notifications/src/commands/RegisterNotificationHubCommand.ts +++ b/clients/client-notifications/src/commands/RegisterNotificationHubCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterNotificationHubRequest, RegisterNotificationHubResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { RegisterNotificationHubRequest, RegisterNotificationHubResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { RegisterNotificationHub } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/TagResourceCommand.ts b/clients/client-notifications/src/commands/TagResourceCommand.ts index 0880f7f3f3ff6..73b56444dff87 100644 --- a/clients/client-notifications/src/commands/TagResourceCommand.ts +++ b/clients/client-notifications/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/UntagResourceCommand.ts b/clients/client-notifications/src/commands/UntagResourceCommand.ts index fa363231c939d..b209034deaa93 100644 --- a/clients/client-notifications/src/commands/UntagResourceCommand.ts +++ b/clients/client-notifications/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/UpdateEventRuleCommand.ts b/clients/client-notifications/src/commands/UpdateEventRuleCommand.ts index 32114bc3fdcb3..825830e84a496 100644 --- a/clients/client-notifications/src/commands/UpdateEventRuleCommand.ts +++ b/clients/client-notifications/src/commands/UpdateEventRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEventRuleRequest, UpdateEventRuleResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { UpdateEventRuleRequest, UpdateEventRuleResponse } from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { UpdateEventRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/commands/UpdateNotificationConfigurationCommand.ts b/clients/client-notifications/src/commands/UpdateNotificationConfigurationCommand.ts index aaf33b151e34a..b62e533d9ae77 100644 --- a/clients/client-notifications/src/commands/UpdateNotificationConfigurationCommand.ts +++ b/clients/client-notifications/src/commands/UpdateNotificationConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNotificationConfigurationRequest, UpdateNotificationConfigurationResponse } from "../models/models_0"; -import { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; +import type { + UpdateNotificationConfigurationRequest, + UpdateNotificationConfigurationResponse, +} from "../models/models_0"; +import type { NotificationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../NotificationsClient"; import { UpdateNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-notifications/src/endpoint/EndpointParameters.ts b/clients/client-notifications/src/endpoint/EndpointParameters.ts index 00a3213c1f8df..f0dde8c964182 100644 --- a/clients/client-notifications/src/endpoint/EndpointParameters.ts +++ b/clients/client-notifications/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-notifications/src/endpoint/endpointResolver.ts b/clients/client-notifications/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-notifications/src/endpoint/endpointResolver.ts +++ b/clients/client-notifications/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-notifications/src/extensionConfiguration.ts b/clients/client-notifications/src/extensionConfiguration.ts index f0770524f2ac1..6482b069e0b5a 100644 --- a/clients/client-notifications/src/extensionConfiguration.ts +++ b/clients/client-notifications/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-notifications/src/models/NotificationsServiceException.ts b/clients/client-notifications/src/models/NotificationsServiceException.ts index ed02ee9e7bbe0..c539689349087 100644 --- a/clients/client-notifications/src/models/NotificationsServiceException.ts +++ b/clients/client-notifications/src/models/NotificationsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-notifications/src/models/errors.ts b/clients/client-notifications/src/models/errors.ts index 377e68dc494b4..c35495ea0a897 100644 --- a/clients/client-notifications/src/models/errors.ts +++ b/clients/client-notifications/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-notifications/src/pagination/Interfaces.ts b/clients/client-notifications/src/pagination/Interfaces.ts index 310da62ebd4ad..29b6ba3b77757 100644 --- a/clients/client-notifications/src/pagination/Interfaces.ts +++ b/clients/client-notifications/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { NotificationsClient } from "../NotificationsClient"; diff --git a/clients/client-notifications/src/pagination/ListChannelsPaginator.ts b/clients/client-notifications/src/pagination/ListChannelsPaginator.ts index 88796449f4f36..d2b8a0f132ffe 100644 --- a/clients/client-notifications/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelsCommand, diff --git a/clients/client-notifications/src/pagination/ListEventRulesPaginator.ts b/clients/client-notifications/src/pagination/ListEventRulesPaginator.ts index 174eb44bbc4ec..93b3177fb278b 100644 --- a/clients/client-notifications/src/pagination/ListEventRulesPaginator.ts +++ b/clients/client-notifications/src/pagination/ListEventRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventRulesCommand, diff --git a/clients/client-notifications/src/pagination/ListManagedNotificationChannelAssociationsPaginator.ts b/clients/client-notifications/src/pagination/ListManagedNotificationChannelAssociationsPaginator.ts index 2a657e4646f31..6ed9b36e426c9 100644 --- a/clients/client-notifications/src/pagination/ListManagedNotificationChannelAssociationsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListManagedNotificationChannelAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedNotificationChannelAssociationsCommand, diff --git a/clients/client-notifications/src/pagination/ListManagedNotificationChildEventsPaginator.ts b/clients/client-notifications/src/pagination/ListManagedNotificationChildEventsPaginator.ts index 151dce42debad..62348eda71e45 100644 --- a/clients/client-notifications/src/pagination/ListManagedNotificationChildEventsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListManagedNotificationChildEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedNotificationChildEventsCommand, diff --git a/clients/client-notifications/src/pagination/ListManagedNotificationConfigurationsPaginator.ts b/clients/client-notifications/src/pagination/ListManagedNotificationConfigurationsPaginator.ts index 1ead1b425137a..f1e41fdaed851 100644 --- a/clients/client-notifications/src/pagination/ListManagedNotificationConfigurationsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListManagedNotificationConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedNotificationConfigurationsCommand, diff --git a/clients/client-notifications/src/pagination/ListManagedNotificationEventsPaginator.ts b/clients/client-notifications/src/pagination/ListManagedNotificationEventsPaginator.ts index 597af7b9735f6..fd61e3e00d7c0 100644 --- a/clients/client-notifications/src/pagination/ListManagedNotificationEventsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListManagedNotificationEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedNotificationEventsCommand, diff --git a/clients/client-notifications/src/pagination/ListMemberAccountsPaginator.ts b/clients/client-notifications/src/pagination/ListMemberAccountsPaginator.ts index cb63d458e7afe..7514003728f36 100644 --- a/clients/client-notifications/src/pagination/ListMemberAccountsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListMemberAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMemberAccountsCommand, diff --git a/clients/client-notifications/src/pagination/ListNotificationConfigurationsPaginator.ts b/clients/client-notifications/src/pagination/ListNotificationConfigurationsPaginator.ts index 24aaac34d0f19..f1f6af7bd7427 100644 --- a/clients/client-notifications/src/pagination/ListNotificationConfigurationsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListNotificationConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotificationConfigurationsCommand, diff --git a/clients/client-notifications/src/pagination/ListNotificationEventsPaginator.ts b/clients/client-notifications/src/pagination/ListNotificationEventsPaginator.ts index f4be981172e5a..21e3240694a0e 100644 --- a/clients/client-notifications/src/pagination/ListNotificationEventsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListNotificationEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotificationEventsCommand, diff --git a/clients/client-notifications/src/pagination/ListNotificationHubsPaginator.ts b/clients/client-notifications/src/pagination/ListNotificationHubsPaginator.ts index 9a1764ce9858e..85c840a7d31bd 100644 --- a/clients/client-notifications/src/pagination/ListNotificationHubsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListNotificationHubsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotificationHubsCommand, diff --git a/clients/client-notifications/src/pagination/ListOrganizationalUnitsPaginator.ts b/clients/client-notifications/src/pagination/ListOrganizationalUnitsPaginator.ts index 516440e2c76ae..814d98be69962 100644 --- a/clients/client-notifications/src/pagination/ListOrganizationalUnitsPaginator.ts +++ b/clients/client-notifications/src/pagination/ListOrganizationalUnitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationalUnitsCommand, diff --git a/clients/client-notifications/src/runtimeConfig.browser.ts b/clients/client-notifications/src/runtimeConfig.browser.ts index 23899ffa238bb..2f1b54ff258d1 100644 --- a/clients/client-notifications/src/runtimeConfig.browser.ts +++ b/clients/client-notifications/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NotificationsClientConfig } from "./NotificationsClient"; + +import type { NotificationsClientConfig } from "./NotificationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-notifications/src/runtimeConfig.native.ts b/clients/client-notifications/src/runtimeConfig.native.ts index a96a91b44cd4c..10b5609e8bb67 100644 --- a/clients/client-notifications/src/runtimeConfig.native.ts +++ b/clients/client-notifications/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { NotificationsClientConfig } from "./NotificationsClient"; +import type { NotificationsClientConfig } from "./NotificationsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-notifications/src/runtimeConfig.shared.ts b/clients/client-notifications/src/runtimeConfig.shared.ts index b908884a29395..dffbb0f101338 100644 --- a/clients/client-notifications/src/runtimeConfig.shared.ts +++ b/clients/client-notifications/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultNotificationsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { NotificationsClientConfig } from "./NotificationsClient"; +import type { NotificationsClientConfig } from "./NotificationsClient"; /** * @internal diff --git a/clients/client-notifications/src/runtimeConfig.ts b/clients/client-notifications/src/runtimeConfig.ts index e39e9862655e7..28c60ac9298f6 100644 --- a/clients/client-notifications/src/runtimeConfig.ts +++ b/clients/client-notifications/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NotificationsClientConfig } from "./NotificationsClient"; + +import type { NotificationsClientConfig } from "./NotificationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-notifications/src/runtimeExtensions.ts b/clients/client-notifications/src/runtimeExtensions.ts index 961e49f6e1db9..5565aac6c5166 100644 --- a/clients/client-notifications/src/runtimeExtensions.ts +++ b/clients/client-notifications/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { NotificationsExtensionConfiguration } from "./extensionConfiguration"; +import type { NotificationsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-notifications/src/schemas/schemas_0.ts b/clients/client-notifications/src/schemas/schemas_0.ts index 7fe2e207d5529..3a49f7bfe89c6 100644 --- a/clients/client-notifications/src/schemas/schemas_0.ts +++ b/clients/client-notifications/src/schemas/schemas_0.ts @@ -291,7 +291,7 @@ const n0 = "com.amazonaws.notifications"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-notificationscontacts/package.json b/clients/client-notificationscontacts/package.json index 39c429a65119b..f888521ae0c61 100644 --- a/clients/client-notificationscontacts/package.json +++ b/clients/client-notificationscontacts/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-notificationscontacts/src/NotificationsContacts.ts b/clients/client-notificationscontacts/src/NotificationsContacts.ts index 56f9b23d71aef..1a173e4d67540 100644 --- a/clients/client-notificationscontacts/src/NotificationsContacts.ts +++ b/clients/client-notificationscontacts/src/NotificationsContacts.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ActivateEmailContactCommand, @@ -43,7 +43,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { NotificationsContactsClient, NotificationsContactsClientConfig } from "./NotificationsContactsClient"; +import { NotificationsContactsClient } from "./NotificationsContactsClient"; const commands = { ActivateEmailContactCommand, diff --git a/clients/client-notificationscontacts/src/NotificationsContactsClient.ts b/clients/client-notificationscontacts/src/NotificationsContactsClient.ts index 9eda87cd21e3d..3d3a18fe6c115 100644 --- a/clients/client-notificationscontacts/src/NotificationsContactsClient.ts +++ b/clients/client-notificationscontacts/src/NotificationsContactsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultNotificationsContactsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -79,7 +88,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-notificationscontacts/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-notificationscontacts/src/auth/httpAuthExtensionConfiguration.ts index 944b7d6c87650..8674f6123b8ba 100644 --- a/clients/client-notificationscontacts/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-notificationscontacts/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { NotificationsContactsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { NotificationsContactsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-notificationscontacts/src/auth/httpAuthSchemeProvider.ts b/clients/client-notificationscontacts/src/auth/httpAuthSchemeProvider.ts index 623001b3a1086..7ab335b34c06b 100644 --- a/clients/client-notificationscontacts/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-notificationscontacts/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type NotificationsContactsClientResolvedConfig, NotificationsContactsClientConfig, - NotificationsContactsClientResolvedConfig, } from "../NotificationsContactsClient"; /** diff --git a/clients/client-notificationscontacts/src/commands/ActivateEmailContactCommand.ts b/clients/client-notificationscontacts/src/commands/ActivateEmailContactCommand.ts index 5e4490219eb13..193a6900bb15e 100644 --- a/clients/client-notificationscontacts/src/commands/ActivateEmailContactCommand.ts +++ b/clients/client-notificationscontacts/src/commands/ActivateEmailContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateEmailContactRequest, ActivateEmailContactResponse } from "../models/models_0"; -import { +import type { ActivateEmailContactRequest, ActivateEmailContactResponse } from "../models/models_0"; +import type { NotificationsContactsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-notificationscontacts/src/commands/CreateEmailContactCommand.ts b/clients/client-notificationscontacts/src/commands/CreateEmailContactCommand.ts index 984797401beee..ab10d94937b3b 100644 --- a/clients/client-notificationscontacts/src/commands/CreateEmailContactCommand.ts +++ b/clients/client-notificationscontacts/src/commands/CreateEmailContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEmailContactRequest, CreateEmailContactResponse } from "../models/models_0"; -import { +import type { CreateEmailContactRequest, CreateEmailContactResponse } from "../models/models_0"; +import type { NotificationsContactsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-notificationscontacts/src/commands/DeleteEmailContactCommand.ts b/clients/client-notificationscontacts/src/commands/DeleteEmailContactCommand.ts index 20bd79216ba09..10d79f5110b3b 100644 --- a/clients/client-notificationscontacts/src/commands/DeleteEmailContactCommand.ts +++ b/clients/client-notificationscontacts/src/commands/DeleteEmailContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEmailContactRequest, DeleteEmailContactResponse } from "../models/models_0"; -import { +import type { DeleteEmailContactRequest, DeleteEmailContactResponse } from "../models/models_0"; +import type { NotificationsContactsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-notificationscontacts/src/commands/GetEmailContactCommand.ts b/clients/client-notificationscontacts/src/commands/GetEmailContactCommand.ts index 16e0ae549ccc6..b47ef80ea1952 100644 --- a/clients/client-notificationscontacts/src/commands/GetEmailContactCommand.ts +++ b/clients/client-notificationscontacts/src/commands/GetEmailContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEmailContactRequest, GetEmailContactResponse } from "../models/models_0"; -import { +import type { GetEmailContactRequest, GetEmailContactResponse } from "../models/models_0"; +import type { NotificationsContactsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-notificationscontacts/src/commands/ListEmailContactsCommand.ts b/clients/client-notificationscontacts/src/commands/ListEmailContactsCommand.ts index 0559f109213c8..ae3386b5c1442 100644 --- a/clients/client-notificationscontacts/src/commands/ListEmailContactsCommand.ts +++ b/clients/client-notificationscontacts/src/commands/ListEmailContactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEmailContactsRequest, ListEmailContactsResponse } from "../models/models_0"; -import { +import type { ListEmailContactsRequest, ListEmailContactsResponse } from "../models/models_0"; +import type { NotificationsContactsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-notificationscontacts/src/commands/ListTagsForResourceCommand.ts b/clients/client-notificationscontacts/src/commands/ListTagsForResourceCommand.ts index ad8d3cf0fcbc7..75065ca64331c 100644 --- a/clients/client-notificationscontacts/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-notificationscontacts/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { NotificationsContactsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-notificationscontacts/src/commands/SendActivationCodeCommand.ts b/clients/client-notificationscontacts/src/commands/SendActivationCodeCommand.ts index 1ed37760fdeb4..d1ff45f8d3abb 100644 --- a/clients/client-notificationscontacts/src/commands/SendActivationCodeCommand.ts +++ b/clients/client-notificationscontacts/src/commands/SendActivationCodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendActivationCodeRequest, SendActivationCodeResponse } from "../models/models_0"; -import { +import type { SendActivationCodeRequest, SendActivationCodeResponse } from "../models/models_0"; +import type { NotificationsContactsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-notificationscontacts/src/commands/TagResourceCommand.ts b/clients/client-notificationscontacts/src/commands/TagResourceCommand.ts index 5fec5b1a152ee..4841587d06a93 100644 --- a/clients/client-notificationscontacts/src/commands/TagResourceCommand.ts +++ b/clients/client-notificationscontacts/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { NotificationsContactsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-notificationscontacts/src/commands/UntagResourceCommand.ts b/clients/client-notificationscontacts/src/commands/UntagResourceCommand.ts index 82ccc2dfb131b..e660d1e35adca 100644 --- a/clients/client-notificationscontacts/src/commands/UntagResourceCommand.ts +++ b/clients/client-notificationscontacts/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { NotificationsContactsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-notificationscontacts/src/endpoint/EndpointParameters.ts b/clients/client-notificationscontacts/src/endpoint/EndpointParameters.ts index 3737655c9b616..837d424b53d81 100644 --- a/clients/client-notificationscontacts/src/endpoint/EndpointParameters.ts +++ b/clients/client-notificationscontacts/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-notificationscontacts/src/endpoint/endpointResolver.ts b/clients/client-notificationscontacts/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-notificationscontacts/src/endpoint/endpointResolver.ts +++ b/clients/client-notificationscontacts/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-notificationscontacts/src/extensionConfiguration.ts b/clients/client-notificationscontacts/src/extensionConfiguration.ts index 72c19a611b7cd..b4e447971663e 100644 --- a/clients/client-notificationscontacts/src/extensionConfiguration.ts +++ b/clients/client-notificationscontacts/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-notificationscontacts/src/models/NotificationsContactsServiceException.ts b/clients/client-notificationscontacts/src/models/NotificationsContactsServiceException.ts index 0ff3f3437c1b2..18ede44a3233c 100644 --- a/clients/client-notificationscontacts/src/models/NotificationsContactsServiceException.ts +++ b/clients/client-notificationscontacts/src/models/NotificationsContactsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-notificationscontacts/src/models/errors.ts b/clients/client-notificationscontacts/src/models/errors.ts index ab302d10ba2e4..ee51e482c5a61 100644 --- a/clients/client-notificationscontacts/src/models/errors.ts +++ b/clients/client-notificationscontacts/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-notificationscontacts/src/pagination/Interfaces.ts b/clients/client-notificationscontacts/src/pagination/Interfaces.ts index 77f059fb7f930..413f7a629da15 100644 --- a/clients/client-notificationscontacts/src/pagination/Interfaces.ts +++ b/clients/client-notificationscontacts/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { NotificationsContactsClient } from "../NotificationsContactsClient"; diff --git a/clients/client-notificationscontacts/src/pagination/ListEmailContactsPaginator.ts b/clients/client-notificationscontacts/src/pagination/ListEmailContactsPaginator.ts index 4224e33fe901a..4474eddbf60d9 100644 --- a/clients/client-notificationscontacts/src/pagination/ListEmailContactsPaginator.ts +++ b/clients/client-notificationscontacts/src/pagination/ListEmailContactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEmailContactsCommand, diff --git a/clients/client-notificationscontacts/src/runtimeConfig.browser.ts b/clients/client-notificationscontacts/src/runtimeConfig.browser.ts index 5c9f062006483..bf9494a5b0bda 100644 --- a/clients/client-notificationscontacts/src/runtimeConfig.browser.ts +++ b/clients/client-notificationscontacts/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NotificationsContactsClientConfig } from "./NotificationsContactsClient"; + +import type { NotificationsContactsClientConfig } from "./NotificationsContactsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-notificationscontacts/src/runtimeConfig.native.ts b/clients/client-notificationscontacts/src/runtimeConfig.native.ts index c39dd18c7bc55..8f1b1388e603f 100644 --- a/clients/client-notificationscontacts/src/runtimeConfig.native.ts +++ b/clients/client-notificationscontacts/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { NotificationsContactsClientConfig } from "./NotificationsContactsClient"; +import type { NotificationsContactsClientConfig } from "./NotificationsContactsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-notificationscontacts/src/runtimeConfig.shared.ts b/clients/client-notificationscontacts/src/runtimeConfig.shared.ts index 95f3b3b486ded..c234127019bd2 100644 --- a/clients/client-notificationscontacts/src/runtimeConfig.shared.ts +++ b/clients/client-notificationscontacts/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultNotificationsContactsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { NotificationsContactsClientConfig } from "./NotificationsContactsClient"; +import type { NotificationsContactsClientConfig } from "./NotificationsContactsClient"; /** * @internal diff --git a/clients/client-notificationscontacts/src/runtimeConfig.ts b/clients/client-notificationscontacts/src/runtimeConfig.ts index 81b1da2f8ad94..a1e39b3e4db86 100644 --- a/clients/client-notificationscontacts/src/runtimeConfig.ts +++ b/clients/client-notificationscontacts/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { NotificationsContactsClientConfig } from "./NotificationsContactsClient"; + +import type { NotificationsContactsClientConfig } from "./NotificationsContactsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-notificationscontacts/src/runtimeExtensions.ts b/clients/client-notificationscontacts/src/runtimeExtensions.ts index 5948781173896..fe1a7ac9a73ce 100644 --- a/clients/client-notificationscontacts/src/runtimeExtensions.ts +++ b/clients/client-notificationscontacts/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { NotificationsContactsExtensionConfiguration } from "./extensionConfiguration"; +import type { NotificationsContactsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-notificationscontacts/src/schemas/schemas_0.ts b/clients/client-notificationscontacts/src/schemas/schemas_0.ts index 82f8d9f8051f7..1a5b7adda9b64 100644 --- a/clients/client-notificationscontacts/src/schemas/schemas_0.ts +++ b/clients/client-notificationscontacts/src/schemas/schemas_0.ts @@ -74,7 +74,7 @@ const n0 = "com.amazonaws.notificationscontacts"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-oam/package.json b/clients/client-oam/package.json index a6db6e515cc16..d214abc7c5b89 100644 --- a/clients/client-oam/package.json +++ b/clients/client-oam/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-oam/src/OAM.ts b/clients/client-oam/src/OAM.ts index a923bca7b57e6..6db20764ad2c9 100644 --- a/clients/client-oam/src/OAM.ts +++ b/clients/client-oam/src/OAM.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateLinkCommand, CreateLinkCommandInput, CreateLinkCommandOutput } from "./commands/CreateLinkCommand"; import { CreateSinkCommand, CreateSinkCommandInput, CreateSinkCommandOutput } from "./commands/CreateSinkCommand"; @@ -37,7 +37,7 @@ import { UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdateLinkCommand, UpdateLinkCommandInput, UpdateLinkCommandOutput } from "./commands/UpdateLinkCommand"; -import { OAMClient, OAMClientConfig } from "./OAMClient"; +import { OAMClient } from "./OAMClient"; const commands = { CreateLinkCommand, diff --git a/clients/client-oam/src/OAMClient.ts b/clients/client-oam/src/OAMClient.ts index 1b4bd10c57f41..854d81ec6c265 100644 --- a/clients/client-oam/src/OAMClient.ts +++ b/clients/client-oam/src/OAMClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultOAMHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateLinkCommandInput, CreateLinkCommandOutput } from "./commands/CreateLinkCommand"; @@ -82,7 +91,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-oam/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-oam/src/auth/httpAuthExtensionConfiguration.ts index fc4d0f3f82fbd..96669658c633b 100644 --- a/clients/client-oam/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-oam/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { OAMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { OAMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-oam/src/auth/httpAuthSchemeProvider.ts b/clients/client-oam/src/auth/httpAuthSchemeProvider.ts index 680cb381c8ee8..d029e060c7a37 100644 --- a/clients/client-oam/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-oam/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { OAMClientConfig, OAMClientResolvedConfig } from "../OAMClient"; +import { type OAMClientResolvedConfig, OAMClientConfig } from "../OAMClient"; /** * @internal diff --git a/clients/client-oam/src/commands/CreateLinkCommand.ts b/clients/client-oam/src/commands/CreateLinkCommand.ts index 2913c6fbbdd4b..2e4b57f0a8522 100644 --- a/clients/client-oam/src/commands/CreateLinkCommand.ts +++ b/clients/client-oam/src/commands/CreateLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLinkInput, CreateLinkOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { CreateLinkInput, CreateLinkOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { CreateLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/CreateSinkCommand.ts b/clients/client-oam/src/commands/CreateSinkCommand.ts index 49edc6a8949c9..69d2948c2c00f 100644 --- a/clients/client-oam/src/commands/CreateSinkCommand.ts +++ b/clients/client-oam/src/commands/CreateSinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSinkInput, CreateSinkOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { CreateSinkInput, CreateSinkOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { CreateSink } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/DeleteLinkCommand.ts b/clients/client-oam/src/commands/DeleteLinkCommand.ts index 39df5d3cfc6c1..fff9ce195e48a 100644 --- a/clients/client-oam/src/commands/DeleteLinkCommand.ts +++ b/clients/client-oam/src/commands/DeleteLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLinkInput, DeleteLinkOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { DeleteLinkInput, DeleteLinkOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { DeleteLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/DeleteSinkCommand.ts b/clients/client-oam/src/commands/DeleteSinkCommand.ts index c8064cd6d1dc5..b54e9832ef267 100644 --- a/clients/client-oam/src/commands/DeleteSinkCommand.ts +++ b/clients/client-oam/src/commands/DeleteSinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSinkInput, DeleteSinkOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { DeleteSinkInput, DeleteSinkOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { DeleteSink } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/GetLinkCommand.ts b/clients/client-oam/src/commands/GetLinkCommand.ts index 1785279df8bb2..fbe7fc4b7a5e2 100644 --- a/clients/client-oam/src/commands/GetLinkCommand.ts +++ b/clients/client-oam/src/commands/GetLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLinkInput, GetLinkOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { GetLinkInput, GetLinkOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { GetLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/GetSinkCommand.ts b/clients/client-oam/src/commands/GetSinkCommand.ts index f9c024e9dcbe4..ed5cbdcf4f558 100644 --- a/clients/client-oam/src/commands/GetSinkCommand.ts +++ b/clients/client-oam/src/commands/GetSinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSinkInput, GetSinkOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { GetSinkInput, GetSinkOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { GetSink } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/GetSinkPolicyCommand.ts b/clients/client-oam/src/commands/GetSinkPolicyCommand.ts index 611d0ea545342..c7c113023668d 100644 --- a/clients/client-oam/src/commands/GetSinkPolicyCommand.ts +++ b/clients/client-oam/src/commands/GetSinkPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSinkPolicyInput, GetSinkPolicyOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { GetSinkPolicyInput, GetSinkPolicyOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { GetSinkPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/ListAttachedLinksCommand.ts b/clients/client-oam/src/commands/ListAttachedLinksCommand.ts index 46888249ee09b..aab4426b803d6 100644 --- a/clients/client-oam/src/commands/ListAttachedLinksCommand.ts +++ b/clients/client-oam/src/commands/ListAttachedLinksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAttachedLinksInput, ListAttachedLinksOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { ListAttachedLinksInput, ListAttachedLinksOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { ListAttachedLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/ListLinksCommand.ts b/clients/client-oam/src/commands/ListLinksCommand.ts index e490df5adefc2..e3b5a81f3d775 100644 --- a/clients/client-oam/src/commands/ListLinksCommand.ts +++ b/clients/client-oam/src/commands/ListLinksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLinksInput, ListLinksOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { ListLinksInput, ListLinksOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { ListLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/ListSinksCommand.ts b/clients/client-oam/src/commands/ListSinksCommand.ts index 389538aea0cb2..8d100bc01f345 100644 --- a/clients/client-oam/src/commands/ListSinksCommand.ts +++ b/clients/client-oam/src/commands/ListSinksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSinksInput, ListSinksOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { ListSinksInput, ListSinksOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { ListSinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/ListTagsForResourceCommand.ts b/clients/client-oam/src/commands/ListTagsForResourceCommand.ts index 6774608edd8c4..88e061fdea005 100644 --- a/clients/client-oam/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-oam/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/PutSinkPolicyCommand.ts b/clients/client-oam/src/commands/PutSinkPolicyCommand.ts index 0104adc241a08..cfe97fc6ea026 100644 --- a/clients/client-oam/src/commands/PutSinkPolicyCommand.ts +++ b/clients/client-oam/src/commands/PutSinkPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSinkPolicyInput, PutSinkPolicyOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { PutSinkPolicyInput, PutSinkPolicyOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { PutSinkPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/TagResourceCommand.ts b/clients/client-oam/src/commands/TagResourceCommand.ts index e145b56bca6f4..34e499fd17e57 100644 --- a/clients/client-oam/src/commands/TagResourceCommand.ts +++ b/clients/client-oam/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/UntagResourceCommand.ts b/clients/client-oam/src/commands/UntagResourceCommand.ts index 33104dac1812d..2ff314cde9adf 100644 --- a/clients/client-oam/src/commands/UntagResourceCommand.ts +++ b/clients/client-oam/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/commands/UpdateLinkCommand.ts b/clients/client-oam/src/commands/UpdateLinkCommand.ts index 9087560d7d94e..7235b158a2e3a 100644 --- a/clients/client-oam/src/commands/UpdateLinkCommand.ts +++ b/clients/client-oam/src/commands/UpdateLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLinkInput, UpdateLinkOutput } from "../models/models_0"; -import { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; +import type { UpdateLinkInput, UpdateLinkOutput } from "../models/models_0"; +import type { OAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OAMClient"; import { UpdateLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-oam/src/endpoint/EndpointParameters.ts b/clients/client-oam/src/endpoint/EndpointParameters.ts index 230877d4d8e5b..cad44ec2145eb 100644 --- a/clients/client-oam/src/endpoint/EndpointParameters.ts +++ b/clients/client-oam/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-oam/src/endpoint/endpointResolver.ts b/clients/client-oam/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-oam/src/endpoint/endpointResolver.ts +++ b/clients/client-oam/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-oam/src/extensionConfiguration.ts b/clients/client-oam/src/extensionConfiguration.ts index a49f29b809b2b..56c7ce56cd40f 100644 --- a/clients/client-oam/src/extensionConfiguration.ts +++ b/clients/client-oam/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-oam/src/models/OAMServiceException.ts b/clients/client-oam/src/models/OAMServiceException.ts index fe6b940f8cd3e..b10612daff27b 100644 --- a/clients/client-oam/src/models/OAMServiceException.ts +++ b/clients/client-oam/src/models/OAMServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-oam/src/models/errors.ts b/clients/client-oam/src/models/errors.ts index eb682c456cc1d..3381980ed7b76 100644 --- a/clients/client-oam/src/models/errors.ts +++ b/clients/client-oam/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { OAMServiceException as __BaseException } from "./OAMServiceException"; diff --git a/clients/client-oam/src/pagination/Interfaces.ts b/clients/client-oam/src/pagination/Interfaces.ts index 670e619bd918e..f556a75eb4456 100644 --- a/clients/client-oam/src/pagination/Interfaces.ts +++ b/clients/client-oam/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { OAMClient } from "../OAMClient"; diff --git a/clients/client-oam/src/pagination/ListAttachedLinksPaginator.ts b/clients/client-oam/src/pagination/ListAttachedLinksPaginator.ts index 60c145b8235fa..455146138cd03 100644 --- a/clients/client-oam/src/pagination/ListAttachedLinksPaginator.ts +++ b/clients/client-oam/src/pagination/ListAttachedLinksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttachedLinksCommand, diff --git a/clients/client-oam/src/pagination/ListLinksPaginator.ts b/clients/client-oam/src/pagination/ListLinksPaginator.ts index 0bf7f5357a642..a9b1f2f536622 100644 --- a/clients/client-oam/src/pagination/ListLinksPaginator.ts +++ b/clients/client-oam/src/pagination/ListLinksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLinksCommand, ListLinksCommandInput, ListLinksCommandOutput } from "../commands/ListLinksCommand"; import { OAMClient } from "../OAMClient"; diff --git a/clients/client-oam/src/pagination/ListSinksPaginator.ts b/clients/client-oam/src/pagination/ListSinksPaginator.ts index 1084567f183b1..ebeb6af1272aa 100644 --- a/clients/client-oam/src/pagination/ListSinksPaginator.ts +++ b/clients/client-oam/src/pagination/ListSinksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSinksCommand, ListSinksCommandInput, ListSinksCommandOutput } from "../commands/ListSinksCommand"; import { OAMClient } from "../OAMClient"; diff --git a/clients/client-oam/src/runtimeConfig.browser.ts b/clients/client-oam/src/runtimeConfig.browser.ts index c57874acaa702..cc966f8fffd9c 100644 --- a/clients/client-oam/src/runtimeConfig.browser.ts +++ b/clients/client-oam/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OAMClientConfig } from "./OAMClient"; + +import type { OAMClientConfig } from "./OAMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-oam/src/runtimeConfig.native.ts b/clients/client-oam/src/runtimeConfig.native.ts index aef9da4da1165..3e6848b1d8c31 100644 --- a/clients/client-oam/src/runtimeConfig.native.ts +++ b/clients/client-oam/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { OAMClientConfig } from "./OAMClient"; +import type { OAMClientConfig } from "./OAMClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-oam/src/runtimeConfig.shared.ts b/clients/client-oam/src/runtimeConfig.shared.ts index f95ef4061424e..efce8ed898054 100644 --- a/clients/client-oam/src/runtimeConfig.shared.ts +++ b/clients/client-oam/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultOAMHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { OAMClientConfig } from "./OAMClient"; +import type { OAMClientConfig } from "./OAMClient"; /** * @internal diff --git a/clients/client-oam/src/runtimeConfig.ts b/clients/client-oam/src/runtimeConfig.ts index 0d18388496c89..881df514dd023 100644 --- a/clients/client-oam/src/runtimeConfig.ts +++ b/clients/client-oam/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OAMClientConfig } from "./OAMClient"; + +import type { OAMClientConfig } from "./OAMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-oam/src/runtimeExtensions.ts b/clients/client-oam/src/runtimeExtensions.ts index 3892f7db8b3bd..ee12152492200 100644 --- a/clients/client-oam/src/runtimeExtensions.ts +++ b/clients/client-oam/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { OAMExtensionConfiguration } from "./extensionConfiguration"; +import type { OAMExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-oam/src/schemas/schemas_0.ts b/clients/client-oam/src/schemas/schemas_0.ts index a559659526bf0..2653ea0230ba4 100644 --- a/clients/client-oam/src/schemas/schemas_0.ts +++ b/clients/client-oam/src/schemas/schemas_0.ts @@ -97,7 +97,7 @@ const n0 = "com.amazonaws.oam"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-observabilityadmin/package.json b/clients/client-observabilityadmin/package.json index dd199c65f4a88..b282461380dd0 100644 --- a/clients/client-observabilityadmin/package.json +++ b/clients/client-observabilityadmin/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-observabilityadmin/src/ObservabilityAdmin.ts b/clients/client-observabilityadmin/src/ObservabilityAdmin.ts index 2e957140b2c01..05e3f02b8cdd2 100644 --- a/clients/client-observabilityadmin/src/ObservabilityAdmin.ts +++ b/clients/client-observabilityadmin/src/ObservabilityAdmin.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateCentralizationRuleForOrganizationCommand, @@ -143,7 +143,7 @@ import { UpdateTelemetryRuleForOrganizationCommandInput, UpdateTelemetryRuleForOrganizationCommandOutput, } from "./commands/UpdateTelemetryRuleForOrganizationCommand"; -import { ObservabilityAdminClient, ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"; +import { ObservabilityAdminClient } from "./ObservabilityAdminClient"; const commands = { CreateCentralizationRuleForOrganizationCommand, diff --git a/clients/client-observabilityadmin/src/ObservabilityAdminClient.ts b/clients/client-observabilityadmin/src/ObservabilityAdminClient.ts index 9e557a8622c6b..6f4dc855dfb74 100644 --- a/clients/client-observabilityadmin/src/ObservabilityAdminClient.ts +++ b/clients/client-observabilityadmin/src/ObservabilityAdminClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultObservabilityAdminHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -168,7 +177,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-observabilityadmin/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-observabilityadmin/src/auth/httpAuthExtensionConfiguration.ts index 9ff1ff751dbd0..41d03c65a31dc 100644 --- a/clients/client-observabilityadmin/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-observabilityadmin/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ObservabilityAdminHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ObservabilityAdminHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-observabilityadmin/src/auth/httpAuthSchemeProvider.ts b/clients/client-observabilityadmin/src/auth/httpAuthSchemeProvider.ts index 15a6565977d4a..256dd3ac5cfdb 100644 --- a/clients/client-observabilityadmin/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-observabilityadmin/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ObservabilityAdminClientConfig, ObservabilityAdminClientResolvedConfig } from "../ObservabilityAdminClient"; +import { + type ObservabilityAdminClientResolvedConfig, + ObservabilityAdminClientConfig, +} from "../ObservabilityAdminClient"; /** * @internal diff --git a/clients/client-observabilityadmin/src/commands/CreateCentralizationRuleForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/CreateCentralizationRuleForOrganizationCommand.ts index c3002e9f2dda5..cb0588464d006 100644 --- a/clients/client-observabilityadmin/src/commands/CreateCentralizationRuleForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/CreateCentralizationRuleForOrganizationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateCentralizationRuleForOrganizationInput, CreateCentralizationRuleForOrganizationOutput, } from "../models/models_0"; -import { +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/CreateTelemetryRuleCommand.ts b/clients/client-observabilityadmin/src/commands/CreateTelemetryRuleCommand.ts index 079199a376400..2478c0200c375 100644 --- a/clients/client-observabilityadmin/src/commands/CreateTelemetryRuleCommand.ts +++ b/clients/client-observabilityadmin/src/commands/CreateTelemetryRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTelemetryRuleInput, CreateTelemetryRuleOutput } from "../models/models_0"; -import { +import type { CreateTelemetryRuleInput, CreateTelemetryRuleOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/CreateTelemetryRuleForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/CreateTelemetryRuleForOrganizationCommand.ts index d7ded146bba19..713292540ee6d 100644 --- a/clients/client-observabilityadmin/src/commands/CreateTelemetryRuleForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/CreateTelemetryRuleForOrganizationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTelemetryRuleForOrganizationInput, CreateTelemetryRuleForOrganizationOutput } from "../models/models_0"; -import { +import type { + CreateTelemetryRuleForOrganizationInput, + CreateTelemetryRuleForOrganizationOutput, +} from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/DeleteCentralizationRuleForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/DeleteCentralizationRuleForOrganizationCommand.ts index 3069a584811cb..8998a3793e459 100644 --- a/clients/client-observabilityadmin/src/commands/DeleteCentralizationRuleForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/DeleteCentralizationRuleForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCentralizationRuleForOrganizationInput } from "../models/models_0"; -import { +import type { DeleteCentralizationRuleForOrganizationInput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/DeleteTelemetryRuleCommand.ts b/clients/client-observabilityadmin/src/commands/DeleteTelemetryRuleCommand.ts index c5360252c4d8b..77af5740d6da3 100644 --- a/clients/client-observabilityadmin/src/commands/DeleteTelemetryRuleCommand.ts +++ b/clients/client-observabilityadmin/src/commands/DeleteTelemetryRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTelemetryRuleInput } from "../models/models_0"; -import { +import type { DeleteTelemetryRuleInput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/DeleteTelemetryRuleForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/DeleteTelemetryRuleForOrganizationCommand.ts index f7188ba6cfcf6..61d801984a7a2 100644 --- a/clients/client-observabilityadmin/src/commands/DeleteTelemetryRuleForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/DeleteTelemetryRuleForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTelemetryRuleForOrganizationInput } from "../models/models_0"; -import { +import type { DeleteTelemetryRuleForOrganizationInput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/GetCentralizationRuleForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/GetCentralizationRuleForOrganizationCommand.ts index 3423c6f2e8813..cd55fb36f93cf 100644 --- a/clients/client-observabilityadmin/src/commands/GetCentralizationRuleForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/GetCentralizationRuleForOrganizationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCentralizationRuleForOrganizationInput, GetCentralizationRuleForOrganizationOutput, } from "../models/models_0"; -import { +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/GetTelemetryEnrichmentStatusCommand.ts b/clients/client-observabilityadmin/src/commands/GetTelemetryEnrichmentStatusCommand.ts index 7e93957b5990e..0a7a62a381ed0 100644 --- a/clients/client-observabilityadmin/src/commands/GetTelemetryEnrichmentStatusCommand.ts +++ b/clients/client-observabilityadmin/src/commands/GetTelemetryEnrichmentStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTelemetryEnrichmentStatusOutput } from "../models/models_0"; -import { +import type { GetTelemetryEnrichmentStatusOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusCommand.ts b/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusCommand.ts index 900b23e1a655b..f4783c6432bb5 100644 --- a/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusCommand.ts +++ b/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTelemetryEvaluationStatusOutput } from "../models/models_0"; -import { +import type { GetTelemetryEvaluationStatusOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusForOrganizationCommand.ts index 3b0c281b68de8..41c66f61d74e9 100644 --- a/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/GetTelemetryEvaluationStatusForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTelemetryEvaluationStatusForOrganizationOutput } from "../models/models_0"; -import { +import type { GetTelemetryEvaluationStatusForOrganizationOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/GetTelemetryRuleCommand.ts b/clients/client-observabilityadmin/src/commands/GetTelemetryRuleCommand.ts index 519a640ac8832..265b00bdcc23f 100644 --- a/clients/client-observabilityadmin/src/commands/GetTelemetryRuleCommand.ts +++ b/clients/client-observabilityadmin/src/commands/GetTelemetryRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTelemetryRuleInput, GetTelemetryRuleOutput } from "../models/models_0"; -import { +import type { GetTelemetryRuleInput, GetTelemetryRuleOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/GetTelemetryRuleForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/GetTelemetryRuleForOrganizationCommand.ts index c230503cb7bda..1add23c82e4e3 100644 --- a/clients/client-observabilityadmin/src/commands/GetTelemetryRuleForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/GetTelemetryRuleForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTelemetryRuleForOrganizationInput, GetTelemetryRuleForOrganizationOutput } from "../models/models_0"; -import { +import type { GetTelemetryRuleForOrganizationInput, GetTelemetryRuleForOrganizationOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/ListCentralizationRulesForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/ListCentralizationRulesForOrganizationCommand.ts index 416655a22034b..0286ff9664a93 100644 --- a/clients/client-observabilityadmin/src/commands/ListCentralizationRulesForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/ListCentralizationRulesForOrganizationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCentralizationRulesForOrganizationInput, ListCentralizationRulesForOrganizationOutput, } from "../models/models_0"; -import { +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/ListResourceTelemetryCommand.ts b/clients/client-observabilityadmin/src/commands/ListResourceTelemetryCommand.ts index 89af52dba12b7..044e1e2027740 100644 --- a/clients/client-observabilityadmin/src/commands/ListResourceTelemetryCommand.ts +++ b/clients/client-observabilityadmin/src/commands/ListResourceTelemetryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceTelemetryInput, ListResourceTelemetryOutput } from "../models/models_0"; -import { +import type { ListResourceTelemetryInput, ListResourceTelemetryOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/ListResourceTelemetryForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/ListResourceTelemetryForOrganizationCommand.ts index c56233ace5d51..5e0956257cd0b 100644 --- a/clients/client-observabilityadmin/src/commands/ListResourceTelemetryForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/ListResourceTelemetryForOrganizationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListResourceTelemetryForOrganizationInput, ListResourceTelemetryForOrganizationOutput, } from "../models/models_0"; -import { +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/ListTagsForResourceCommand.ts b/clients/client-observabilityadmin/src/commands/ListTagsForResourceCommand.ts index 34bef650366b9..1e4519a2525de 100644 --- a/clients/client-observabilityadmin/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-observabilityadmin/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/ListTelemetryRulesCommand.ts b/clients/client-observabilityadmin/src/commands/ListTelemetryRulesCommand.ts index 97aad56b5cd74..00bb248f1064b 100644 --- a/clients/client-observabilityadmin/src/commands/ListTelemetryRulesCommand.ts +++ b/clients/client-observabilityadmin/src/commands/ListTelemetryRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTelemetryRulesInput, ListTelemetryRulesOutput } from "../models/models_0"; -import { +import type { ListTelemetryRulesInput, ListTelemetryRulesOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/ListTelemetryRulesForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/ListTelemetryRulesForOrganizationCommand.ts index 5ba5af5d813aa..981aa4ffc7f13 100644 --- a/clients/client-observabilityadmin/src/commands/ListTelemetryRulesForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/ListTelemetryRulesForOrganizationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTelemetryRulesForOrganizationInput, ListTelemetryRulesForOrganizationOutput } from "../models/models_0"; -import { +import type { + ListTelemetryRulesForOrganizationInput, + ListTelemetryRulesForOrganizationOutput, +} from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/StartTelemetryEnrichmentCommand.ts b/clients/client-observabilityadmin/src/commands/StartTelemetryEnrichmentCommand.ts index 225be240add88..0db4b577825bf 100644 --- a/clients/client-observabilityadmin/src/commands/StartTelemetryEnrichmentCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StartTelemetryEnrichmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTelemetryEnrichmentOutput } from "../models/models_0"; -import { +import type { StartTelemetryEnrichmentOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationCommand.ts b/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationCommand.ts index 7c59ceeaf0906..4b3d3b75e28ba 100644 --- a/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationForOrganizationCommand.ts index d678e9d949e9e..64510b3b53b2d 100644 --- a/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StartTelemetryEvaluationForOrganizationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/StopTelemetryEnrichmentCommand.ts b/clients/client-observabilityadmin/src/commands/StopTelemetryEnrichmentCommand.ts index 4a5c1100d3531..7c2bc8ba5eb16 100644 --- a/clients/client-observabilityadmin/src/commands/StopTelemetryEnrichmentCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StopTelemetryEnrichmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopTelemetryEnrichmentOutput } from "../models/models_0"; -import { +import type { StopTelemetryEnrichmentOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationCommand.ts b/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationCommand.ts index 7107f30c5e9f8..61366b651c559 100644 --- a/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationForOrganizationCommand.ts index dad54a42db959..24ab3780f8e22 100644 --- a/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/StopTelemetryEvaluationForOrganizationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/TagResourceCommand.ts b/clients/client-observabilityadmin/src/commands/TagResourceCommand.ts index 465afe75b78c8..3da5db1538922 100644 --- a/clients/client-observabilityadmin/src/commands/TagResourceCommand.ts +++ b/clients/client-observabilityadmin/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput } from "../models/models_0"; -import { +import type { TagResourceInput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/UntagResourceCommand.ts b/clients/client-observabilityadmin/src/commands/UntagResourceCommand.ts index 0048f60e2af6f..b8d1e9dbc6dc1 100644 --- a/clients/client-observabilityadmin/src/commands/UntagResourceCommand.ts +++ b/clients/client-observabilityadmin/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput } from "../models/models_0"; -import { +import type { UntagResourceInput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/UpdateCentralizationRuleForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/UpdateCentralizationRuleForOrganizationCommand.ts index 37ff578e4f108..c8229b2f7c4d2 100644 --- a/clients/client-observabilityadmin/src/commands/UpdateCentralizationRuleForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/UpdateCentralizationRuleForOrganizationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateCentralizationRuleForOrganizationInput, UpdateCentralizationRuleForOrganizationOutput, } from "../models/models_0"; -import { +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/UpdateTelemetryRuleCommand.ts b/clients/client-observabilityadmin/src/commands/UpdateTelemetryRuleCommand.ts index f15a583439093..053ebb5c8e3b4 100644 --- a/clients/client-observabilityadmin/src/commands/UpdateTelemetryRuleCommand.ts +++ b/clients/client-observabilityadmin/src/commands/UpdateTelemetryRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTelemetryRuleInput, UpdateTelemetryRuleOutput } from "../models/models_0"; -import { +import type { UpdateTelemetryRuleInput, UpdateTelemetryRuleOutput } from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/commands/UpdateTelemetryRuleForOrganizationCommand.ts b/clients/client-observabilityadmin/src/commands/UpdateTelemetryRuleForOrganizationCommand.ts index 6811f9b8c35bf..d13c9cc8d7683 100644 --- a/clients/client-observabilityadmin/src/commands/UpdateTelemetryRuleForOrganizationCommand.ts +++ b/clients/client-observabilityadmin/src/commands/UpdateTelemetryRuleForOrganizationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTelemetryRuleForOrganizationInput, UpdateTelemetryRuleForOrganizationOutput } from "../models/models_0"; -import { +import type { + UpdateTelemetryRuleForOrganizationInput, + UpdateTelemetryRuleForOrganizationOutput, +} from "../models/models_0"; +import type { ObservabilityAdminClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-observabilityadmin/src/endpoint/EndpointParameters.ts b/clients/client-observabilityadmin/src/endpoint/EndpointParameters.ts index 5b247ee546aae..6e0f67eb1a768 100644 --- a/clients/client-observabilityadmin/src/endpoint/EndpointParameters.ts +++ b/clients/client-observabilityadmin/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-observabilityadmin/src/endpoint/endpointResolver.ts b/clients/client-observabilityadmin/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-observabilityadmin/src/endpoint/endpointResolver.ts +++ b/clients/client-observabilityadmin/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-observabilityadmin/src/extensionConfiguration.ts b/clients/client-observabilityadmin/src/extensionConfiguration.ts index 887bf65efb84c..eb4d12526ac4b 100644 --- a/clients/client-observabilityadmin/src/extensionConfiguration.ts +++ b/clients/client-observabilityadmin/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-observabilityadmin/src/models/ObservabilityAdminServiceException.ts b/clients/client-observabilityadmin/src/models/ObservabilityAdminServiceException.ts index 44a3e7f13d033..084ec5c91b681 100644 --- a/clients/client-observabilityadmin/src/models/ObservabilityAdminServiceException.ts +++ b/clients/client-observabilityadmin/src/models/ObservabilityAdminServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-observabilityadmin/src/models/errors.ts b/clients/client-observabilityadmin/src/models/errors.ts index 93a060295bb2e..d6065e7e12ecd 100644 --- a/clients/client-observabilityadmin/src/models/errors.ts +++ b/clients/client-observabilityadmin/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ObservabilityAdminServiceException as __BaseException } from "./ObservabilityAdminServiceException"; diff --git a/clients/client-observabilityadmin/src/pagination/Interfaces.ts b/clients/client-observabilityadmin/src/pagination/Interfaces.ts index ba9c4ac529be2..108b9736e963c 100644 --- a/clients/client-observabilityadmin/src/pagination/Interfaces.ts +++ b/clients/client-observabilityadmin/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ObservabilityAdminClient } from "../ObservabilityAdminClient"; diff --git a/clients/client-observabilityadmin/src/pagination/ListCentralizationRulesForOrganizationPaginator.ts b/clients/client-observabilityadmin/src/pagination/ListCentralizationRulesForOrganizationPaginator.ts index 5d6faa5c2781e..accd29e6ac795 100644 --- a/clients/client-observabilityadmin/src/pagination/ListCentralizationRulesForOrganizationPaginator.ts +++ b/clients/client-observabilityadmin/src/pagination/ListCentralizationRulesForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCentralizationRulesForOrganizationCommand, diff --git a/clients/client-observabilityadmin/src/pagination/ListResourceTelemetryForOrganizationPaginator.ts b/clients/client-observabilityadmin/src/pagination/ListResourceTelemetryForOrganizationPaginator.ts index dd86575d63fcf..16d277dba419d 100644 --- a/clients/client-observabilityadmin/src/pagination/ListResourceTelemetryForOrganizationPaginator.ts +++ b/clients/client-observabilityadmin/src/pagination/ListResourceTelemetryForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceTelemetryForOrganizationCommand, diff --git a/clients/client-observabilityadmin/src/pagination/ListResourceTelemetryPaginator.ts b/clients/client-observabilityadmin/src/pagination/ListResourceTelemetryPaginator.ts index 73eb7ee6f77a2..0c6b4cb434851 100644 --- a/clients/client-observabilityadmin/src/pagination/ListResourceTelemetryPaginator.ts +++ b/clients/client-observabilityadmin/src/pagination/ListResourceTelemetryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceTelemetryCommand, diff --git a/clients/client-observabilityadmin/src/pagination/ListTelemetryRulesForOrganizationPaginator.ts b/clients/client-observabilityadmin/src/pagination/ListTelemetryRulesForOrganizationPaginator.ts index aefe3e6a22b7f..b53e2733c4c16 100644 --- a/clients/client-observabilityadmin/src/pagination/ListTelemetryRulesForOrganizationPaginator.ts +++ b/clients/client-observabilityadmin/src/pagination/ListTelemetryRulesForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTelemetryRulesForOrganizationCommand, diff --git a/clients/client-observabilityadmin/src/pagination/ListTelemetryRulesPaginator.ts b/clients/client-observabilityadmin/src/pagination/ListTelemetryRulesPaginator.ts index 78536a1e5c985..f1b8593c3b4ed 100644 --- a/clients/client-observabilityadmin/src/pagination/ListTelemetryRulesPaginator.ts +++ b/clients/client-observabilityadmin/src/pagination/ListTelemetryRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTelemetryRulesCommand, diff --git a/clients/client-observabilityadmin/src/runtimeConfig.browser.ts b/clients/client-observabilityadmin/src/runtimeConfig.browser.ts index 7ff1689598c77..2aeb0b76f4936 100644 --- a/clients/client-observabilityadmin/src/runtimeConfig.browser.ts +++ b/clients/client-observabilityadmin/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"; + +import type { ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-observabilityadmin/src/runtimeConfig.native.ts b/clients/client-observabilityadmin/src/runtimeConfig.native.ts index 45df0018a73bb..9e4c585446c0d 100644 --- a/clients/client-observabilityadmin/src/runtimeConfig.native.ts +++ b/clients/client-observabilityadmin/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"; +import type { ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-observabilityadmin/src/runtimeConfig.shared.ts b/clients/client-observabilityadmin/src/runtimeConfig.shared.ts index c19d2b4f07d59..b0cee70587f5b 100644 --- a/clients/client-observabilityadmin/src/runtimeConfig.shared.ts +++ b/clients/client-observabilityadmin/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultObservabilityAdminHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"; +import type { ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"; /** * @internal diff --git a/clients/client-observabilityadmin/src/runtimeConfig.ts b/clients/client-observabilityadmin/src/runtimeConfig.ts index 040a3ba46f322..63c2fd8fd054d 100644 --- a/clients/client-observabilityadmin/src/runtimeConfig.ts +++ b/clients/client-observabilityadmin/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"; + +import type { ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-observabilityadmin/src/runtimeExtensions.ts b/clients/client-observabilityadmin/src/runtimeExtensions.ts index 0280b6e2084cf..e5d676515d72d 100644 --- a/clients/client-observabilityadmin/src/runtimeExtensions.ts +++ b/clients/client-observabilityadmin/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ObservabilityAdminExtensionConfiguration } from "./extensionConfiguration"; +import type { ObservabilityAdminExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-observabilityadmin/src/schemas/schemas_0.ts b/clients/client-observabilityadmin/src/schemas/schemas_0.ts index ac02f193e9695..c7b7ceafe4357 100644 --- a/clients/client-observabilityadmin/src/schemas/schemas_0.ts +++ b/clients/client-observabilityadmin/src/schemas/schemas_0.ts @@ -156,7 +156,7 @@ const n0 = "com.amazonaws.observabilityadmin"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-odb/package.json b/clients/client-odb/package.json index 409cf24d56770..08acba1a9cf54 100644 --- a/clients/client-odb/package.json +++ b/clients/client-odb/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-odb/src/Odb.ts b/clients/client-odb/src/Odb.ts index ea0d708304bcf..f4172308f3166 100644 --- a/clients/client-odb/src/Odb.ts +++ b/clients/client-odb/src/Odb.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptMarketplaceRegistrationCommand, @@ -193,7 +193,7 @@ import { UpdateOdbPeeringConnectionCommandInput, UpdateOdbPeeringConnectionCommandOutput, } from "./commands/UpdateOdbPeeringConnectionCommand"; -import { OdbClient, OdbClientConfig } from "./OdbClient"; +import { OdbClient } from "./OdbClient"; const commands = { AcceptMarketplaceRegistrationCommand, diff --git a/clients/client-odb/src/OdbClient.ts b/clients/client-odb/src/OdbClient.ts index 7f20405fa7c92..4854ca9b1dfd7 100644 --- a/clients/client-odb/src/OdbClient.ts +++ b/clients/client-odb/src/OdbClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultOdbHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -179,7 +188,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-odb/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-odb/src/auth/httpAuthExtensionConfiguration.ts index 24a3c4101d92f..f42bc75d04b20 100644 --- a/clients/client-odb/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-odb/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { OdbHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { OdbHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-odb/src/auth/httpAuthSchemeProvider.ts b/clients/client-odb/src/auth/httpAuthSchemeProvider.ts index f371d3a87b1bd..a328ea11439b1 100644 --- a/clients/client-odb/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-odb/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { OdbClientConfig, OdbClientResolvedConfig } from "../OdbClient"; +import { type OdbClientResolvedConfig, OdbClientConfig } from "../OdbClient"; /** * @internal diff --git a/clients/client-odb/src/commands/AcceptMarketplaceRegistrationCommand.ts b/clients/client-odb/src/commands/AcceptMarketplaceRegistrationCommand.ts index ed8ba262a4160..b23ea28b20af3 100644 --- a/clients/client-odb/src/commands/AcceptMarketplaceRegistrationCommand.ts +++ b/clients/client-odb/src/commands/AcceptMarketplaceRegistrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptMarketplaceRegistrationInput, AcceptMarketplaceRegistrationOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { AcceptMarketplaceRegistrationInput, AcceptMarketplaceRegistrationOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { AcceptMarketplaceRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/AssociateIamRoleToResourceCommand.ts b/clients/client-odb/src/commands/AssociateIamRoleToResourceCommand.ts index dca662672744a..3b29bb5a9c494 100644 --- a/clients/client-odb/src/commands/AssociateIamRoleToResourceCommand.ts +++ b/clients/client-odb/src/commands/AssociateIamRoleToResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateIamRoleToResourceInput, AssociateIamRoleToResourceOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { AssociateIamRoleToResourceInput, AssociateIamRoleToResourceOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { AssociateIamRoleToResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/CreateCloudAutonomousVmClusterCommand.ts b/clients/client-odb/src/commands/CreateCloudAutonomousVmClusterCommand.ts index 6fdfb87221704..1decf42000f7f 100644 --- a/clients/client-odb/src/commands/CreateCloudAutonomousVmClusterCommand.ts +++ b/clients/client-odb/src/commands/CreateCloudAutonomousVmClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCloudAutonomousVmClusterInput, CreateCloudAutonomousVmClusterOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { CreateCloudAutonomousVmClusterInput, CreateCloudAutonomousVmClusterOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { CreateCloudAutonomousVmCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/CreateCloudExadataInfrastructureCommand.ts b/clients/client-odb/src/commands/CreateCloudExadataInfrastructureCommand.ts index adce0ec9f82ac..e0b909812485e 100644 --- a/clients/client-odb/src/commands/CreateCloudExadataInfrastructureCommand.ts +++ b/clients/client-odb/src/commands/CreateCloudExadataInfrastructureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCloudExadataInfrastructureInput, CreateCloudExadataInfrastructureOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { CreateCloudExadataInfrastructureInput, CreateCloudExadataInfrastructureOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { CreateCloudExadataInfrastructure } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/CreateCloudVmClusterCommand.ts b/clients/client-odb/src/commands/CreateCloudVmClusterCommand.ts index 6c6932b4aee1d..91dde4dc21f7b 100644 --- a/clients/client-odb/src/commands/CreateCloudVmClusterCommand.ts +++ b/clients/client-odb/src/commands/CreateCloudVmClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCloudVmClusterInput, CreateCloudVmClusterOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { CreateCloudVmClusterInput, CreateCloudVmClusterOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { CreateCloudVmCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/CreateOdbNetworkCommand.ts b/clients/client-odb/src/commands/CreateOdbNetworkCommand.ts index 592be1e6318d6..2c4eca5db096c 100644 --- a/clients/client-odb/src/commands/CreateOdbNetworkCommand.ts +++ b/clients/client-odb/src/commands/CreateOdbNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOdbNetworkInput, CreateOdbNetworkOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { CreateOdbNetworkInput, CreateOdbNetworkOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { CreateOdbNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/CreateOdbPeeringConnectionCommand.ts b/clients/client-odb/src/commands/CreateOdbPeeringConnectionCommand.ts index 0a7b128b0f75b..64c027d8d87b5 100644 --- a/clients/client-odb/src/commands/CreateOdbPeeringConnectionCommand.ts +++ b/clients/client-odb/src/commands/CreateOdbPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOdbPeeringConnectionInput, CreateOdbPeeringConnectionOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { CreateOdbPeeringConnectionInput, CreateOdbPeeringConnectionOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { CreateOdbPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/DeleteCloudAutonomousVmClusterCommand.ts b/clients/client-odb/src/commands/DeleteCloudAutonomousVmClusterCommand.ts index 4129885b7cab7..7c99086ec0eda 100644 --- a/clients/client-odb/src/commands/DeleteCloudAutonomousVmClusterCommand.ts +++ b/clients/client-odb/src/commands/DeleteCloudAutonomousVmClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCloudAutonomousVmClusterInput, DeleteCloudAutonomousVmClusterOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { DeleteCloudAutonomousVmClusterInput, DeleteCloudAutonomousVmClusterOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { DeleteCloudAutonomousVmCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/DeleteCloudExadataInfrastructureCommand.ts b/clients/client-odb/src/commands/DeleteCloudExadataInfrastructureCommand.ts index c909015b53dd0..bc7247cef220e 100644 --- a/clients/client-odb/src/commands/DeleteCloudExadataInfrastructureCommand.ts +++ b/clients/client-odb/src/commands/DeleteCloudExadataInfrastructureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCloudExadataInfrastructureInput, DeleteCloudExadataInfrastructureOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { DeleteCloudExadataInfrastructureInput, DeleteCloudExadataInfrastructureOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { DeleteCloudExadataInfrastructure } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/DeleteCloudVmClusterCommand.ts b/clients/client-odb/src/commands/DeleteCloudVmClusterCommand.ts index d0ca878cdb74a..72b6f8e391b24 100644 --- a/clients/client-odb/src/commands/DeleteCloudVmClusterCommand.ts +++ b/clients/client-odb/src/commands/DeleteCloudVmClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCloudVmClusterInput, DeleteCloudVmClusterOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { DeleteCloudVmClusterInput, DeleteCloudVmClusterOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { DeleteCloudVmCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/DeleteOdbNetworkCommand.ts b/clients/client-odb/src/commands/DeleteOdbNetworkCommand.ts index 7ebc44c44f414..368149eaec9d5 100644 --- a/clients/client-odb/src/commands/DeleteOdbNetworkCommand.ts +++ b/clients/client-odb/src/commands/DeleteOdbNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOdbNetworkInput, DeleteOdbNetworkOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { DeleteOdbNetworkInput, DeleteOdbNetworkOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { DeleteOdbNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/DeleteOdbPeeringConnectionCommand.ts b/clients/client-odb/src/commands/DeleteOdbPeeringConnectionCommand.ts index b0a941c748674..a9fed8d40d662 100644 --- a/clients/client-odb/src/commands/DeleteOdbPeeringConnectionCommand.ts +++ b/clients/client-odb/src/commands/DeleteOdbPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOdbPeeringConnectionInput, DeleteOdbPeeringConnectionOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { DeleteOdbPeeringConnectionInput, DeleteOdbPeeringConnectionOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { DeleteOdbPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/DisassociateIamRoleFromResourceCommand.ts b/clients/client-odb/src/commands/DisassociateIamRoleFromResourceCommand.ts index aeea1930b6f42..1891866b3c066 100644 --- a/clients/client-odb/src/commands/DisassociateIamRoleFromResourceCommand.ts +++ b/clients/client-odb/src/commands/DisassociateIamRoleFromResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateIamRoleFromResourceInput, DisassociateIamRoleFromResourceOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { DisassociateIamRoleFromResourceInput, DisassociateIamRoleFromResourceOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { DisassociateIamRoleFromResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/GetCloudAutonomousVmClusterCommand.ts b/clients/client-odb/src/commands/GetCloudAutonomousVmClusterCommand.ts index f4c630ddbf661..eb7deedfd6d1a 100644 --- a/clients/client-odb/src/commands/GetCloudAutonomousVmClusterCommand.ts +++ b/clients/client-odb/src/commands/GetCloudAutonomousVmClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCloudAutonomousVmClusterInput, GetCloudAutonomousVmClusterOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { GetCloudAutonomousVmClusterInput, GetCloudAutonomousVmClusterOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { GetCloudAutonomousVmCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/GetCloudExadataInfrastructureCommand.ts b/clients/client-odb/src/commands/GetCloudExadataInfrastructureCommand.ts index d81e2bf9b8731..4d9b1db3f59f8 100644 --- a/clients/client-odb/src/commands/GetCloudExadataInfrastructureCommand.ts +++ b/clients/client-odb/src/commands/GetCloudExadataInfrastructureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCloudExadataInfrastructureInput, GetCloudExadataInfrastructureOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { GetCloudExadataInfrastructureInput, GetCloudExadataInfrastructureOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { GetCloudExadataInfrastructure } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.ts b/clients/client-odb/src/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.ts index 59c98a2ebab69..095c4a776bd02 100644 --- a/clients/client-odb/src/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.ts +++ b/clients/client-odb/src/commands/GetCloudExadataInfrastructureUnallocatedResourcesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCloudExadataInfrastructureUnallocatedResourcesInput, GetCloudExadataInfrastructureUnallocatedResourcesOutput, } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { GetCloudExadataInfrastructureUnallocatedResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/GetCloudVmClusterCommand.ts b/clients/client-odb/src/commands/GetCloudVmClusterCommand.ts index 85955c61398bf..2f1b6ec3494f6 100644 --- a/clients/client-odb/src/commands/GetCloudVmClusterCommand.ts +++ b/clients/client-odb/src/commands/GetCloudVmClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCloudVmClusterInput, GetCloudVmClusterOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { GetCloudVmClusterInput, GetCloudVmClusterOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { GetCloudVmCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/GetDbNodeCommand.ts b/clients/client-odb/src/commands/GetDbNodeCommand.ts index 08665ec1c2cfb..a39e85d570ab7 100644 --- a/clients/client-odb/src/commands/GetDbNodeCommand.ts +++ b/clients/client-odb/src/commands/GetDbNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDbNodeInput, GetDbNodeOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { GetDbNodeInput, GetDbNodeOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { GetDbNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/GetDbServerCommand.ts b/clients/client-odb/src/commands/GetDbServerCommand.ts index 29baea83ad2d1..4817b5b93ad1f 100644 --- a/clients/client-odb/src/commands/GetDbServerCommand.ts +++ b/clients/client-odb/src/commands/GetDbServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDbServerInput, GetDbServerOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { GetDbServerInput, GetDbServerOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { GetDbServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/GetOciOnboardingStatusCommand.ts b/clients/client-odb/src/commands/GetOciOnboardingStatusCommand.ts index ee1242e50cd78..509ba9e7b569a 100644 --- a/clients/client-odb/src/commands/GetOciOnboardingStatusCommand.ts +++ b/clients/client-odb/src/commands/GetOciOnboardingStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOciOnboardingStatusInput, GetOciOnboardingStatusOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { GetOciOnboardingStatusInput, GetOciOnboardingStatusOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { GetOciOnboardingStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/GetOdbNetworkCommand.ts b/clients/client-odb/src/commands/GetOdbNetworkCommand.ts index a97246962e7c7..328f7bc7028f1 100644 --- a/clients/client-odb/src/commands/GetOdbNetworkCommand.ts +++ b/clients/client-odb/src/commands/GetOdbNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOdbNetworkInput, GetOdbNetworkOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { GetOdbNetworkInput, GetOdbNetworkOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { GetOdbNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/GetOdbPeeringConnectionCommand.ts b/clients/client-odb/src/commands/GetOdbPeeringConnectionCommand.ts index e54a25472829c..8fd189512c5a2 100644 --- a/clients/client-odb/src/commands/GetOdbPeeringConnectionCommand.ts +++ b/clients/client-odb/src/commands/GetOdbPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOdbPeeringConnectionInput, GetOdbPeeringConnectionOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { GetOdbPeeringConnectionInput, GetOdbPeeringConnectionOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { GetOdbPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/InitializeServiceCommand.ts b/clients/client-odb/src/commands/InitializeServiceCommand.ts index 2cef5bd634faa..0011029d1406f 100644 --- a/clients/client-odb/src/commands/InitializeServiceCommand.ts +++ b/clients/client-odb/src/commands/InitializeServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InitializeServiceInput, InitializeServiceOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { InitializeServiceInput, InitializeServiceOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { InitializeService } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListAutonomousVirtualMachinesCommand.ts b/clients/client-odb/src/commands/ListAutonomousVirtualMachinesCommand.ts index 94b06b03bb67d..69255196342f0 100644 --- a/clients/client-odb/src/commands/ListAutonomousVirtualMachinesCommand.ts +++ b/clients/client-odb/src/commands/ListAutonomousVirtualMachinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutonomousVirtualMachinesInput, ListAutonomousVirtualMachinesOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListAutonomousVirtualMachinesInput, ListAutonomousVirtualMachinesOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListAutonomousVirtualMachines } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListCloudAutonomousVmClustersCommand.ts b/clients/client-odb/src/commands/ListCloudAutonomousVmClustersCommand.ts index 5074630f53982..415c90cf34dee 100644 --- a/clients/client-odb/src/commands/ListCloudAutonomousVmClustersCommand.ts +++ b/clients/client-odb/src/commands/ListCloudAutonomousVmClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCloudAutonomousVmClustersInput, ListCloudAutonomousVmClustersOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListCloudAutonomousVmClustersInput, ListCloudAutonomousVmClustersOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListCloudAutonomousVmClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListCloudExadataInfrastructuresCommand.ts b/clients/client-odb/src/commands/ListCloudExadataInfrastructuresCommand.ts index 4ec429b9674f8..ba25d0d2cc14f 100644 --- a/clients/client-odb/src/commands/ListCloudExadataInfrastructuresCommand.ts +++ b/clients/client-odb/src/commands/ListCloudExadataInfrastructuresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCloudExadataInfrastructuresInput, ListCloudExadataInfrastructuresOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListCloudExadataInfrastructuresInput, ListCloudExadataInfrastructuresOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListCloudExadataInfrastructures } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListCloudVmClustersCommand.ts b/clients/client-odb/src/commands/ListCloudVmClustersCommand.ts index 92dbff980785a..3f21bffd6c0cc 100644 --- a/clients/client-odb/src/commands/ListCloudVmClustersCommand.ts +++ b/clients/client-odb/src/commands/ListCloudVmClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCloudVmClustersInput, ListCloudVmClustersOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListCloudVmClustersInput, ListCloudVmClustersOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListCloudVmClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListDbNodesCommand.ts b/clients/client-odb/src/commands/ListDbNodesCommand.ts index 1074060d09c53..0d4205ac1e925 100644 --- a/clients/client-odb/src/commands/ListDbNodesCommand.ts +++ b/clients/client-odb/src/commands/ListDbNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDbNodesInput, ListDbNodesOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListDbNodesInput, ListDbNodesOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListDbNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListDbServersCommand.ts b/clients/client-odb/src/commands/ListDbServersCommand.ts index 3f2c5fbe41eb3..a4982b0e3bc69 100644 --- a/clients/client-odb/src/commands/ListDbServersCommand.ts +++ b/clients/client-odb/src/commands/ListDbServersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDbServersInput, ListDbServersOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListDbServersInput, ListDbServersOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListDbServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListDbSystemShapesCommand.ts b/clients/client-odb/src/commands/ListDbSystemShapesCommand.ts index eedbbc4a9d0ec..2a0d15e1a49b6 100644 --- a/clients/client-odb/src/commands/ListDbSystemShapesCommand.ts +++ b/clients/client-odb/src/commands/ListDbSystemShapesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDbSystemShapesInput, ListDbSystemShapesOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListDbSystemShapesInput, ListDbSystemShapesOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListDbSystemShapes } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListGiVersionsCommand.ts b/clients/client-odb/src/commands/ListGiVersionsCommand.ts index 205918bde7757..2026e231bc430 100644 --- a/clients/client-odb/src/commands/ListGiVersionsCommand.ts +++ b/clients/client-odb/src/commands/ListGiVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGiVersionsInput, ListGiVersionsOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListGiVersionsInput, ListGiVersionsOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListGiVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListOdbNetworksCommand.ts b/clients/client-odb/src/commands/ListOdbNetworksCommand.ts index ee62cb1e67402..06e67ebd1ca6e 100644 --- a/clients/client-odb/src/commands/ListOdbNetworksCommand.ts +++ b/clients/client-odb/src/commands/ListOdbNetworksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOdbNetworksInput, ListOdbNetworksOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListOdbNetworksInput, ListOdbNetworksOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListOdbNetworks } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListOdbPeeringConnectionsCommand.ts b/clients/client-odb/src/commands/ListOdbPeeringConnectionsCommand.ts index d7f207a60e8ac..fe52be3b8d1a0 100644 --- a/clients/client-odb/src/commands/ListOdbPeeringConnectionsCommand.ts +++ b/clients/client-odb/src/commands/ListOdbPeeringConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOdbPeeringConnectionsInput, ListOdbPeeringConnectionsOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListOdbPeeringConnectionsInput, ListOdbPeeringConnectionsOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListOdbPeeringConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListSystemVersionsCommand.ts b/clients/client-odb/src/commands/ListSystemVersionsCommand.ts index ce2a246470993..71a5f722f414d 100644 --- a/clients/client-odb/src/commands/ListSystemVersionsCommand.ts +++ b/clients/client-odb/src/commands/ListSystemVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSystemVersionsInput, ListSystemVersionsOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListSystemVersionsInput, ListSystemVersionsOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListSystemVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/ListTagsForResourceCommand.ts b/clients/client-odb/src/commands/ListTagsForResourceCommand.ts index e54334094948b..316dd508b9da6 100644 --- a/clients/client-odb/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-odb/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/RebootDbNodeCommand.ts b/clients/client-odb/src/commands/RebootDbNodeCommand.ts index cf94649a59561..ae022476dd94d 100644 --- a/clients/client-odb/src/commands/RebootDbNodeCommand.ts +++ b/clients/client-odb/src/commands/RebootDbNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootDbNodeInput, RebootDbNodeOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { RebootDbNodeInput, RebootDbNodeOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { RebootDbNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/StartDbNodeCommand.ts b/clients/client-odb/src/commands/StartDbNodeCommand.ts index b3ebcb2f94b4b..81a3d1834065d 100644 --- a/clients/client-odb/src/commands/StartDbNodeCommand.ts +++ b/clients/client-odb/src/commands/StartDbNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDbNodeInput, StartDbNodeOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { StartDbNodeInput, StartDbNodeOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { StartDbNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/StopDbNodeCommand.ts b/clients/client-odb/src/commands/StopDbNodeCommand.ts index 7c35c00674ba5..22168e493de64 100644 --- a/clients/client-odb/src/commands/StopDbNodeCommand.ts +++ b/clients/client-odb/src/commands/StopDbNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDbNodeInput, StopDbNodeOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { StopDbNodeInput, StopDbNodeOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { StopDbNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/TagResourceCommand.ts b/clients/client-odb/src/commands/TagResourceCommand.ts index bdaf794d01162..3ab53bd2c0918 100644 --- a/clients/client-odb/src/commands/TagResourceCommand.ts +++ b/clients/client-odb/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/UntagResourceCommand.ts b/clients/client-odb/src/commands/UntagResourceCommand.ts index bef6301cef664..1a200fc0f406f 100644 --- a/clients/client-odb/src/commands/UntagResourceCommand.ts +++ b/clients/client-odb/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/UpdateCloudExadataInfrastructureCommand.ts b/clients/client-odb/src/commands/UpdateCloudExadataInfrastructureCommand.ts index 6843dee0ca53b..1211b8d223cb3 100644 --- a/clients/client-odb/src/commands/UpdateCloudExadataInfrastructureCommand.ts +++ b/clients/client-odb/src/commands/UpdateCloudExadataInfrastructureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCloudExadataInfrastructureInput, UpdateCloudExadataInfrastructureOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { UpdateCloudExadataInfrastructureInput, UpdateCloudExadataInfrastructureOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { UpdateCloudExadataInfrastructure } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/UpdateOdbNetworkCommand.ts b/clients/client-odb/src/commands/UpdateOdbNetworkCommand.ts index 5b5159f4e19e3..265063c9b94f2 100644 --- a/clients/client-odb/src/commands/UpdateOdbNetworkCommand.ts +++ b/clients/client-odb/src/commands/UpdateOdbNetworkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOdbNetworkInput, UpdateOdbNetworkOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { UpdateOdbNetworkInput, UpdateOdbNetworkOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { UpdateOdbNetwork } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/commands/UpdateOdbPeeringConnectionCommand.ts b/clients/client-odb/src/commands/UpdateOdbPeeringConnectionCommand.ts index 3372414b6e8a9..fe5a0b3efcd8d 100644 --- a/clients/client-odb/src/commands/UpdateOdbPeeringConnectionCommand.ts +++ b/clients/client-odb/src/commands/UpdateOdbPeeringConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOdbPeeringConnectionInput, UpdateOdbPeeringConnectionOutput } from "../models/models_0"; -import { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; +import type { UpdateOdbPeeringConnectionInput, UpdateOdbPeeringConnectionOutput } from "../models/models_0"; +import type { OdbClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OdbClient"; import { UpdateOdbPeeringConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-odb/src/endpoint/EndpointParameters.ts b/clients/client-odb/src/endpoint/EndpointParameters.ts index 9e4b01d580f0b..eb2b545db9f60 100644 --- a/clients/client-odb/src/endpoint/EndpointParameters.ts +++ b/clients/client-odb/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-odb/src/endpoint/endpointResolver.ts b/clients/client-odb/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-odb/src/endpoint/endpointResolver.ts +++ b/clients/client-odb/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-odb/src/extensionConfiguration.ts b/clients/client-odb/src/extensionConfiguration.ts index dbd24fbb19840..6d80f53f9b918 100644 --- a/clients/client-odb/src/extensionConfiguration.ts +++ b/clients/client-odb/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-odb/src/models/OdbServiceException.ts b/clients/client-odb/src/models/OdbServiceException.ts index 31b5b2d3cc94f..9777917eee5fe 100644 --- a/clients/client-odb/src/models/OdbServiceException.ts +++ b/clients/client-odb/src/models/OdbServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-odb/src/models/errors.ts b/clients/client-odb/src/models/errors.ts index aa823e4ca3809..f3c7482e014a8 100644 --- a/clients/client-odb/src/models/errors.ts +++ b/clients/client-odb/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-odb/src/pagination/Interfaces.ts b/clients/client-odb/src/pagination/Interfaces.ts index bc01a5b4e0250..6ff228f9de438 100644 --- a/clients/client-odb/src/pagination/Interfaces.ts +++ b/clients/client-odb/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { OdbClient } from "../OdbClient"; diff --git a/clients/client-odb/src/pagination/ListAutonomousVirtualMachinesPaginator.ts b/clients/client-odb/src/pagination/ListAutonomousVirtualMachinesPaginator.ts index 300b8764312af..efb53d5da160f 100644 --- a/clients/client-odb/src/pagination/ListAutonomousVirtualMachinesPaginator.ts +++ b/clients/client-odb/src/pagination/ListAutonomousVirtualMachinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAutonomousVirtualMachinesCommand, diff --git a/clients/client-odb/src/pagination/ListCloudAutonomousVmClustersPaginator.ts b/clients/client-odb/src/pagination/ListCloudAutonomousVmClustersPaginator.ts index c5061b228339d..5afb3b7d36d78 100644 --- a/clients/client-odb/src/pagination/ListCloudAutonomousVmClustersPaginator.ts +++ b/clients/client-odb/src/pagination/ListCloudAutonomousVmClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCloudAutonomousVmClustersCommand, diff --git a/clients/client-odb/src/pagination/ListCloudExadataInfrastructuresPaginator.ts b/clients/client-odb/src/pagination/ListCloudExadataInfrastructuresPaginator.ts index b7817ccbb3984..2caa1127732fe 100644 --- a/clients/client-odb/src/pagination/ListCloudExadataInfrastructuresPaginator.ts +++ b/clients/client-odb/src/pagination/ListCloudExadataInfrastructuresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCloudExadataInfrastructuresCommand, diff --git a/clients/client-odb/src/pagination/ListCloudVmClustersPaginator.ts b/clients/client-odb/src/pagination/ListCloudVmClustersPaginator.ts index 040f8652c8ae7..99eea5fb11037 100644 --- a/clients/client-odb/src/pagination/ListCloudVmClustersPaginator.ts +++ b/clients/client-odb/src/pagination/ListCloudVmClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCloudVmClustersCommand, diff --git a/clients/client-odb/src/pagination/ListDbNodesPaginator.ts b/clients/client-odb/src/pagination/ListDbNodesPaginator.ts index 80cca6c91c147..33840f0a4464e 100644 --- a/clients/client-odb/src/pagination/ListDbNodesPaginator.ts +++ b/clients/client-odb/src/pagination/ListDbNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDbNodesCommand, ListDbNodesCommandInput, ListDbNodesCommandOutput } from "../commands/ListDbNodesCommand"; import { OdbClient } from "../OdbClient"; diff --git a/clients/client-odb/src/pagination/ListDbServersPaginator.ts b/clients/client-odb/src/pagination/ListDbServersPaginator.ts index 9db4df38127c6..56da3de4538fa 100644 --- a/clients/client-odb/src/pagination/ListDbServersPaginator.ts +++ b/clients/client-odb/src/pagination/ListDbServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDbServersCommand, diff --git a/clients/client-odb/src/pagination/ListDbSystemShapesPaginator.ts b/clients/client-odb/src/pagination/ListDbSystemShapesPaginator.ts index 9937ec296fae8..22fa81ab78303 100644 --- a/clients/client-odb/src/pagination/ListDbSystemShapesPaginator.ts +++ b/clients/client-odb/src/pagination/ListDbSystemShapesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDbSystemShapesCommand, diff --git a/clients/client-odb/src/pagination/ListGiVersionsPaginator.ts b/clients/client-odb/src/pagination/ListGiVersionsPaginator.ts index df8fce77540fe..f97f80327305e 100644 --- a/clients/client-odb/src/pagination/ListGiVersionsPaginator.ts +++ b/clients/client-odb/src/pagination/ListGiVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGiVersionsCommand, diff --git a/clients/client-odb/src/pagination/ListOdbNetworksPaginator.ts b/clients/client-odb/src/pagination/ListOdbNetworksPaginator.ts index f7b73a4aff621..85ec60800cd28 100644 --- a/clients/client-odb/src/pagination/ListOdbNetworksPaginator.ts +++ b/clients/client-odb/src/pagination/ListOdbNetworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOdbNetworksCommand, diff --git a/clients/client-odb/src/pagination/ListOdbPeeringConnectionsPaginator.ts b/clients/client-odb/src/pagination/ListOdbPeeringConnectionsPaginator.ts index a6026b1dd6992..cf3933af01e8d 100644 --- a/clients/client-odb/src/pagination/ListOdbPeeringConnectionsPaginator.ts +++ b/clients/client-odb/src/pagination/ListOdbPeeringConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOdbPeeringConnectionsCommand, diff --git a/clients/client-odb/src/pagination/ListSystemVersionsPaginator.ts b/clients/client-odb/src/pagination/ListSystemVersionsPaginator.ts index e603b3d70ca8a..2d737f99adde9 100644 --- a/clients/client-odb/src/pagination/ListSystemVersionsPaginator.ts +++ b/clients/client-odb/src/pagination/ListSystemVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSystemVersionsCommand, diff --git a/clients/client-odb/src/runtimeConfig.browser.ts b/clients/client-odb/src/runtimeConfig.browser.ts index b915308da3545..28f842790c828 100644 --- a/clients/client-odb/src/runtimeConfig.browser.ts +++ b/clients/client-odb/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OdbClientConfig } from "./OdbClient"; + +import type { OdbClientConfig } from "./OdbClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-odb/src/runtimeConfig.native.ts b/clients/client-odb/src/runtimeConfig.native.ts index 3ac2400ea7c6b..67188baecd11b 100644 --- a/clients/client-odb/src/runtimeConfig.native.ts +++ b/clients/client-odb/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { OdbClientConfig } from "./OdbClient"; +import type { OdbClientConfig } from "./OdbClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-odb/src/runtimeConfig.shared.ts b/clients/client-odb/src/runtimeConfig.shared.ts index bab51d3eb2bbc..858b041b51226 100644 --- a/clients/client-odb/src/runtimeConfig.shared.ts +++ b/clients/client-odb/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultOdbHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { OdbClientConfig } from "./OdbClient"; +import type { OdbClientConfig } from "./OdbClient"; /** * @internal diff --git a/clients/client-odb/src/runtimeConfig.ts b/clients/client-odb/src/runtimeConfig.ts index 6a03ce9bf6e3d..14772c47ef5a0 100644 --- a/clients/client-odb/src/runtimeConfig.ts +++ b/clients/client-odb/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OdbClientConfig } from "./OdbClient"; + +import type { OdbClientConfig } from "./OdbClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-odb/src/runtimeExtensions.ts b/clients/client-odb/src/runtimeExtensions.ts index a1ed2ad418fa6..0f2339263d97d 100644 --- a/clients/client-odb/src/runtimeExtensions.ts +++ b/clients/client-odb/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { OdbExtensionConfiguration } from "./extensionConfiguration"; +import type { OdbExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-odb/src/schemas/schemas_0.ts b/clients/client-odb/src/schemas/schemas_0.ts index 7b1f2c6e809d8..f0d57db7ebb2f 100644 --- a/clients/client-odb/src/schemas/schemas_0.ts +++ b/clients/client-odb/src/schemas/schemas_0.ts @@ -470,7 +470,7 @@ const n0 = "com.amazonaws.odb"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-omics/package.json b/clients/client-omics/package.json index 873e030e78a10..0353c6e2517de 100644 --- a/clients/client-omics/package.json +++ b/clients/client-omics/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-omics/src/Omics.ts b/clients/client-omics/src/Omics.ts index 2a02ca6268e6a..1a1db88e558a3 100644 --- a/clients/client-omics/src/Omics.ts +++ b/clients/client-omics/src/Omics.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AbortMultipartReadSetUploadCommand, @@ -418,7 +418,7 @@ import { UploadReadSetPartCommandInput, UploadReadSetPartCommandOutput, } from "./commands/UploadReadSetPartCommand"; -import { OmicsClient, OmicsClientConfig } from "./OmicsClient"; +import { OmicsClient } from "./OmicsClient"; const commands = { AbortMultipartReadSetUploadCommand, diff --git a/clients/client-omics/src/OmicsClient.ts b/clients/client-omics/src/OmicsClient.ts index a84d3f7be9124..d013ffa014d0b 100644 --- a/clients/client-omics/src/OmicsClient.ts +++ b/clients/client-omics/src/OmicsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultOmicsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -302,7 +311,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-omics/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-omics/src/auth/httpAuthExtensionConfiguration.ts index 66ee471f09409..a532c9a586575 100644 --- a/clients/client-omics/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-omics/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { OmicsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { OmicsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-omics/src/auth/httpAuthSchemeProvider.ts b/clients/client-omics/src/auth/httpAuthSchemeProvider.ts index 8797632d8462d..e4ab59c0b5a55 100644 --- a/clients/client-omics/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-omics/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { OmicsClientConfig, OmicsClientResolvedConfig } from "../OmicsClient"; +import { type OmicsClientResolvedConfig, OmicsClientConfig } from "../OmicsClient"; /** * @internal diff --git a/clients/client-omics/src/commands/AbortMultipartReadSetUploadCommand.ts b/clients/client-omics/src/commands/AbortMultipartReadSetUploadCommand.ts index 719d7136fe93e..6dd82bffd2780 100644 --- a/clients/client-omics/src/commands/AbortMultipartReadSetUploadCommand.ts +++ b/clients/client-omics/src/commands/AbortMultipartReadSetUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AbortMultipartReadSetUploadRequest, AbortMultipartReadSetUploadResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { AbortMultipartReadSetUploadRequest, AbortMultipartReadSetUploadResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { AbortMultipartReadSetUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/AcceptShareCommand.ts b/clients/client-omics/src/commands/AcceptShareCommand.ts index 407d8bca5162d..8aeca9335c913 100644 --- a/clients/client-omics/src/commands/AcceptShareCommand.ts +++ b/clients/client-omics/src/commands/AcceptShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptShareRequest, AcceptShareResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { AcceptShareRequest, AcceptShareResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { AcceptShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/BatchDeleteReadSetCommand.ts b/clients/client-omics/src/commands/BatchDeleteReadSetCommand.ts index 4a48fc7da148e..9aed351b86b30 100644 --- a/clients/client-omics/src/commands/BatchDeleteReadSetCommand.ts +++ b/clients/client-omics/src/commands/BatchDeleteReadSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteReadSetRequest, BatchDeleteReadSetResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { BatchDeleteReadSetRequest, BatchDeleteReadSetResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { BatchDeleteReadSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CancelAnnotationImportJobCommand.ts b/clients/client-omics/src/commands/CancelAnnotationImportJobCommand.ts index 63c42ba4cf9bf..528535d407d77 100644 --- a/clients/client-omics/src/commands/CancelAnnotationImportJobCommand.ts +++ b/clients/client-omics/src/commands/CancelAnnotationImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelAnnotationImportRequest, CancelAnnotationImportResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CancelAnnotationImportRequest, CancelAnnotationImportResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CancelAnnotationImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CancelRunCommand.ts b/clients/client-omics/src/commands/CancelRunCommand.ts index d4f15e16c8bb6..0f2863b74d6d6 100644 --- a/clients/client-omics/src/commands/CancelRunCommand.ts +++ b/clients/client-omics/src/commands/CancelRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelRunRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CancelRunRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CancelRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CancelVariantImportJobCommand.ts b/clients/client-omics/src/commands/CancelVariantImportJobCommand.ts index ad1051f17d76b..da7876a2fddf3 100644 --- a/clients/client-omics/src/commands/CancelVariantImportJobCommand.ts +++ b/clients/client-omics/src/commands/CancelVariantImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelVariantImportRequest, CancelVariantImportResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CancelVariantImportRequest, CancelVariantImportResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CancelVariantImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CompleteMultipartReadSetUploadCommand.ts b/clients/client-omics/src/commands/CompleteMultipartReadSetUploadCommand.ts index 4a3b76b79cc47..39fefff395209 100644 --- a/clients/client-omics/src/commands/CompleteMultipartReadSetUploadCommand.ts +++ b/clients/client-omics/src/commands/CompleteMultipartReadSetUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteMultipartReadSetUploadRequest, CompleteMultipartReadSetUploadResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CompleteMultipartReadSetUploadRequest, CompleteMultipartReadSetUploadResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CompleteMultipartReadSetUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateAnnotationStoreCommand.ts b/clients/client-omics/src/commands/CreateAnnotationStoreCommand.ts index a4706d9575482..3be88ea50b8ec 100644 --- a/clients/client-omics/src/commands/CreateAnnotationStoreCommand.ts +++ b/clients/client-omics/src/commands/CreateAnnotationStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnnotationStoreRequest, CreateAnnotationStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateAnnotationStoreRequest, CreateAnnotationStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateAnnotationStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateAnnotationStoreVersionCommand.ts b/clients/client-omics/src/commands/CreateAnnotationStoreVersionCommand.ts index 8ef418651741f..de32c32869d7d 100644 --- a/clients/client-omics/src/commands/CreateAnnotationStoreVersionCommand.ts +++ b/clients/client-omics/src/commands/CreateAnnotationStoreVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnnotationStoreVersionRequest, CreateAnnotationStoreVersionResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateAnnotationStoreVersionRequest, CreateAnnotationStoreVersionResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateAnnotationStoreVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateMultipartReadSetUploadCommand.ts b/clients/client-omics/src/commands/CreateMultipartReadSetUploadCommand.ts index 5b9c5ccccb3df..f0843d9645d9d 100644 --- a/clients/client-omics/src/commands/CreateMultipartReadSetUploadCommand.ts +++ b/clients/client-omics/src/commands/CreateMultipartReadSetUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMultipartReadSetUploadRequest, CreateMultipartReadSetUploadResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateMultipartReadSetUploadRequest, CreateMultipartReadSetUploadResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateMultipartReadSetUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateReferenceStoreCommand.ts b/clients/client-omics/src/commands/CreateReferenceStoreCommand.ts index 0e2fba3731470..877b3bc704bd8 100644 --- a/clients/client-omics/src/commands/CreateReferenceStoreCommand.ts +++ b/clients/client-omics/src/commands/CreateReferenceStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReferenceStoreRequest, CreateReferenceStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateReferenceStoreRequest, CreateReferenceStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateReferenceStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateRunCacheCommand.ts b/clients/client-omics/src/commands/CreateRunCacheCommand.ts index b76e664ac9345..99f4cb1621b0b 100644 --- a/clients/client-omics/src/commands/CreateRunCacheCommand.ts +++ b/clients/client-omics/src/commands/CreateRunCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRunCacheRequest, CreateRunCacheResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateRunCacheRequest, CreateRunCacheResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateRunCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateRunGroupCommand.ts b/clients/client-omics/src/commands/CreateRunGroupCommand.ts index 221ece33d737b..bcc47ff1ab0f4 100644 --- a/clients/client-omics/src/commands/CreateRunGroupCommand.ts +++ b/clients/client-omics/src/commands/CreateRunGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRunGroupRequest, CreateRunGroupResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateRunGroupRequest, CreateRunGroupResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateRunGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateSequenceStoreCommand.ts b/clients/client-omics/src/commands/CreateSequenceStoreCommand.ts index fbe17cf8d5589..d8bfe06317fca 100644 --- a/clients/client-omics/src/commands/CreateSequenceStoreCommand.ts +++ b/clients/client-omics/src/commands/CreateSequenceStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSequenceStoreRequest, CreateSequenceStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateSequenceStoreRequest, CreateSequenceStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateSequenceStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateShareCommand.ts b/clients/client-omics/src/commands/CreateShareCommand.ts index 2471cd05ac57f..5e763c2e46710 100644 --- a/clients/client-omics/src/commands/CreateShareCommand.ts +++ b/clients/client-omics/src/commands/CreateShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateShareRequest, CreateShareResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateShareRequest, CreateShareResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateVariantStoreCommand.ts b/clients/client-omics/src/commands/CreateVariantStoreCommand.ts index 988800179e191..65353eef5207a 100644 --- a/clients/client-omics/src/commands/CreateVariantStoreCommand.ts +++ b/clients/client-omics/src/commands/CreateVariantStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVariantStoreRequest, CreateVariantStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateVariantStoreRequest, CreateVariantStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateVariantStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateWorkflowCommand.ts b/clients/client-omics/src/commands/CreateWorkflowCommand.ts index bc8aa639e7fe4..0161f28972c4e 100644 --- a/clients/client-omics/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-omics/src/commands/CreateWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/CreateWorkflowVersionCommand.ts b/clients/client-omics/src/commands/CreateWorkflowVersionCommand.ts index e8ef99a033223..9c576da0cf347 100644 --- a/clients/client-omics/src/commands/CreateWorkflowVersionCommand.ts +++ b/clients/client-omics/src/commands/CreateWorkflowVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkflowVersionRequest, CreateWorkflowVersionResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { CreateWorkflowVersionRequest, CreateWorkflowVersionResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { CreateWorkflowVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteAnnotationStoreCommand.ts b/clients/client-omics/src/commands/DeleteAnnotationStoreCommand.ts index bfcf1dd4f521d..172ebb87c5367 100644 --- a/clients/client-omics/src/commands/DeleteAnnotationStoreCommand.ts +++ b/clients/client-omics/src/commands/DeleteAnnotationStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnnotationStoreRequest, DeleteAnnotationStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteAnnotationStoreRequest, DeleteAnnotationStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteAnnotationStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteAnnotationStoreVersionsCommand.ts b/clients/client-omics/src/commands/DeleteAnnotationStoreVersionsCommand.ts index 9a6863ce3bebf..c8fa9924a58ab 100644 --- a/clients/client-omics/src/commands/DeleteAnnotationStoreVersionsCommand.ts +++ b/clients/client-omics/src/commands/DeleteAnnotationStoreVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnnotationStoreVersionsRequest, DeleteAnnotationStoreVersionsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteAnnotationStoreVersionsRequest, DeleteAnnotationStoreVersionsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteAnnotationStoreVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteReferenceCommand.ts b/clients/client-omics/src/commands/DeleteReferenceCommand.ts index 2ec5616d3106c..e7b044126cdb8 100644 --- a/clients/client-omics/src/commands/DeleteReferenceCommand.ts +++ b/clients/client-omics/src/commands/DeleteReferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReferenceRequest, DeleteReferenceResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteReferenceRequest, DeleteReferenceResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteReference } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteReferenceStoreCommand.ts b/clients/client-omics/src/commands/DeleteReferenceStoreCommand.ts index a7e4db8571074..9acaab0a89ee1 100644 --- a/clients/client-omics/src/commands/DeleteReferenceStoreCommand.ts +++ b/clients/client-omics/src/commands/DeleteReferenceStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReferenceStoreRequest, DeleteReferenceStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteReferenceStoreRequest, DeleteReferenceStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteReferenceStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteRunCacheCommand.ts b/clients/client-omics/src/commands/DeleteRunCacheCommand.ts index 672098a630358..1b52583d9138a 100644 --- a/clients/client-omics/src/commands/DeleteRunCacheCommand.ts +++ b/clients/client-omics/src/commands/DeleteRunCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRunCacheRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteRunCacheRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteRunCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteRunCommand.ts b/clients/client-omics/src/commands/DeleteRunCommand.ts index fc2977e037f36..a8fc1efb8ec64 100644 --- a/clients/client-omics/src/commands/DeleteRunCommand.ts +++ b/clients/client-omics/src/commands/DeleteRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRunRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteRunRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteRunGroupCommand.ts b/clients/client-omics/src/commands/DeleteRunGroupCommand.ts index 830ce089ae1a7..6f33f39de19e3 100644 --- a/clients/client-omics/src/commands/DeleteRunGroupCommand.ts +++ b/clients/client-omics/src/commands/DeleteRunGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRunGroupRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteRunGroupRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteRunGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteS3AccessPolicyCommand.ts b/clients/client-omics/src/commands/DeleteS3AccessPolicyCommand.ts index 73b1a6ec6a0dd..1c10f9c889023 100644 --- a/clients/client-omics/src/commands/DeleteS3AccessPolicyCommand.ts +++ b/clients/client-omics/src/commands/DeleteS3AccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteS3AccessPolicyRequest, DeleteS3AccessPolicyResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteS3AccessPolicyRequest, DeleteS3AccessPolicyResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteS3AccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteSequenceStoreCommand.ts b/clients/client-omics/src/commands/DeleteSequenceStoreCommand.ts index 224532613069d..c5cc817149dd2 100644 --- a/clients/client-omics/src/commands/DeleteSequenceStoreCommand.ts +++ b/clients/client-omics/src/commands/DeleteSequenceStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSequenceStoreRequest, DeleteSequenceStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteSequenceStoreRequest, DeleteSequenceStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteSequenceStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteShareCommand.ts b/clients/client-omics/src/commands/DeleteShareCommand.ts index 7fb32012fa729..2ad754f5eff60 100644 --- a/clients/client-omics/src/commands/DeleteShareCommand.ts +++ b/clients/client-omics/src/commands/DeleteShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteShareRequest, DeleteShareResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteShareRequest, DeleteShareResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteVariantStoreCommand.ts b/clients/client-omics/src/commands/DeleteVariantStoreCommand.ts index 56326faf0f59b..4b3d4d06bc3e8 100644 --- a/clients/client-omics/src/commands/DeleteVariantStoreCommand.ts +++ b/clients/client-omics/src/commands/DeleteVariantStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVariantStoreRequest, DeleteVariantStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteVariantStoreRequest, DeleteVariantStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteVariantStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteWorkflowCommand.ts b/clients/client-omics/src/commands/DeleteWorkflowCommand.ts index 73cddfcaef94f..d9cf24b25fa6d 100644 --- a/clients/client-omics/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-omics/src/commands/DeleteWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkflowRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteWorkflowRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/DeleteWorkflowVersionCommand.ts b/clients/client-omics/src/commands/DeleteWorkflowVersionCommand.ts index 37edaeee4aa6c..36a05a5a6c1c5 100644 --- a/clients/client-omics/src/commands/DeleteWorkflowVersionCommand.ts +++ b/clients/client-omics/src/commands/DeleteWorkflowVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkflowVersionRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { DeleteWorkflowVersionRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { DeleteWorkflowVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetAnnotationImportJobCommand.ts b/clients/client-omics/src/commands/GetAnnotationImportJobCommand.ts index 7a71bb3dadfd5..267af43db6c19 100644 --- a/clients/client-omics/src/commands/GetAnnotationImportJobCommand.ts +++ b/clients/client-omics/src/commands/GetAnnotationImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnnotationImportRequest, GetAnnotationImportResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetAnnotationImportRequest, GetAnnotationImportResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetAnnotationImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetAnnotationStoreCommand.ts b/clients/client-omics/src/commands/GetAnnotationStoreCommand.ts index 07d70ab0d30ba..e1ee38e1016c8 100644 --- a/clients/client-omics/src/commands/GetAnnotationStoreCommand.ts +++ b/clients/client-omics/src/commands/GetAnnotationStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnnotationStoreRequest, GetAnnotationStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetAnnotationStoreRequest, GetAnnotationStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetAnnotationStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetAnnotationStoreVersionCommand.ts b/clients/client-omics/src/commands/GetAnnotationStoreVersionCommand.ts index 3483081db478e..f90587289325a 100644 --- a/clients/client-omics/src/commands/GetAnnotationStoreVersionCommand.ts +++ b/clients/client-omics/src/commands/GetAnnotationStoreVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnnotationStoreVersionRequest, GetAnnotationStoreVersionResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetAnnotationStoreVersionRequest, GetAnnotationStoreVersionResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetAnnotationStoreVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetReadSetActivationJobCommand.ts b/clients/client-omics/src/commands/GetReadSetActivationJobCommand.ts index 1e190cab3ebda..e871db86facac 100644 --- a/clients/client-omics/src/commands/GetReadSetActivationJobCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetActivationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReadSetActivationJobRequest, GetReadSetActivationJobResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetReadSetActivationJobRequest, GetReadSetActivationJobResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetReadSetActivationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetReadSetCommand.ts b/clients/client-omics/src/commands/GetReadSetCommand.ts index 10aabf6577406..38137e19765c4 100644 --- a/clients/client-omics/src/commands/GetReadSetCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReadSetRequest, GetReadSetResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import { type GetReadSetRequest, GetReadSetResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetReadSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetReadSetExportJobCommand.ts b/clients/client-omics/src/commands/GetReadSetExportJobCommand.ts index 03d0957af9f0c..58f3dbb7a086d 100644 --- a/clients/client-omics/src/commands/GetReadSetExportJobCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReadSetExportJobRequest, GetReadSetExportJobResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetReadSetExportJobRequest, GetReadSetExportJobResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetReadSetExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetReadSetImportJobCommand.ts b/clients/client-omics/src/commands/GetReadSetImportJobCommand.ts index c0b96660a395f..4632bdf7e513e 100644 --- a/clients/client-omics/src/commands/GetReadSetImportJobCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReadSetImportJobRequest, GetReadSetImportJobResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetReadSetImportJobRequest, GetReadSetImportJobResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetReadSetImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetReadSetMetadataCommand.ts b/clients/client-omics/src/commands/GetReadSetMetadataCommand.ts index a6209c01f3143..178edcaa2e6eb 100644 --- a/clients/client-omics/src/commands/GetReadSetMetadataCommand.ts +++ b/clients/client-omics/src/commands/GetReadSetMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReadSetMetadataRequest, GetReadSetMetadataResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetReadSetMetadataRequest, GetReadSetMetadataResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetReadSetMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetReferenceCommand.ts b/clients/client-omics/src/commands/GetReferenceCommand.ts index c1c0d7479fd66..173664664ca8e 100644 --- a/clients/client-omics/src/commands/GetReferenceCommand.ts +++ b/clients/client-omics/src/commands/GetReferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReferenceRequest, GetReferenceResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import { type GetReferenceRequest, GetReferenceResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetReference } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetReferenceImportJobCommand.ts b/clients/client-omics/src/commands/GetReferenceImportJobCommand.ts index 1782562b6a297..0689a7e8c652b 100644 --- a/clients/client-omics/src/commands/GetReferenceImportJobCommand.ts +++ b/clients/client-omics/src/commands/GetReferenceImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReferenceImportJobRequest, GetReferenceImportJobResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetReferenceImportJobRequest, GetReferenceImportJobResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetReferenceImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetReferenceMetadataCommand.ts b/clients/client-omics/src/commands/GetReferenceMetadataCommand.ts index 562f7decd4ce6..1f46a9b583a4a 100644 --- a/clients/client-omics/src/commands/GetReferenceMetadataCommand.ts +++ b/clients/client-omics/src/commands/GetReferenceMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReferenceMetadataRequest, GetReferenceMetadataResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetReferenceMetadataRequest, GetReferenceMetadataResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetReferenceMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetReferenceStoreCommand.ts b/clients/client-omics/src/commands/GetReferenceStoreCommand.ts index d4d3b45d56cc7..59e31ac7efe65 100644 --- a/clients/client-omics/src/commands/GetReferenceStoreCommand.ts +++ b/clients/client-omics/src/commands/GetReferenceStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReferenceStoreRequest, GetReferenceStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetReferenceStoreRequest, GetReferenceStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetReferenceStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetRunCacheCommand.ts b/clients/client-omics/src/commands/GetRunCacheCommand.ts index 7a093da534585..6f00c40cac53c 100644 --- a/clients/client-omics/src/commands/GetRunCacheCommand.ts +++ b/clients/client-omics/src/commands/GetRunCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRunCacheRequest, GetRunCacheResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetRunCacheRequest, GetRunCacheResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetRunCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetRunCommand.ts b/clients/client-omics/src/commands/GetRunCommand.ts index 3a4bbd8e323cf..d8fa30dfaafd2 100644 --- a/clients/client-omics/src/commands/GetRunCommand.ts +++ b/clients/client-omics/src/commands/GetRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRunRequest, GetRunResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetRunRequest, GetRunResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetRunGroupCommand.ts b/clients/client-omics/src/commands/GetRunGroupCommand.ts index ad8341cc7595f..9db1341bcb500 100644 --- a/clients/client-omics/src/commands/GetRunGroupCommand.ts +++ b/clients/client-omics/src/commands/GetRunGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRunGroupRequest, GetRunGroupResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetRunGroupRequest, GetRunGroupResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetRunGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetRunTaskCommand.ts b/clients/client-omics/src/commands/GetRunTaskCommand.ts index a957ec7b848c3..666ff22b7c524 100644 --- a/clients/client-omics/src/commands/GetRunTaskCommand.ts +++ b/clients/client-omics/src/commands/GetRunTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRunTaskRequest, GetRunTaskResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetRunTaskRequest, GetRunTaskResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetRunTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetS3AccessPolicyCommand.ts b/clients/client-omics/src/commands/GetS3AccessPolicyCommand.ts index 19e6c23de63b0..3747296e2f49c 100644 --- a/clients/client-omics/src/commands/GetS3AccessPolicyCommand.ts +++ b/clients/client-omics/src/commands/GetS3AccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetS3AccessPolicyRequest, GetS3AccessPolicyResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetS3AccessPolicyRequest, GetS3AccessPolicyResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetS3AccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetSequenceStoreCommand.ts b/clients/client-omics/src/commands/GetSequenceStoreCommand.ts index bb89e96a63f7d..8b71f47b8bb4d 100644 --- a/clients/client-omics/src/commands/GetSequenceStoreCommand.ts +++ b/clients/client-omics/src/commands/GetSequenceStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSequenceStoreRequest, GetSequenceStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetSequenceStoreRequest, GetSequenceStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetSequenceStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetShareCommand.ts b/clients/client-omics/src/commands/GetShareCommand.ts index 02bcc198d7535..1635dd287f741 100644 --- a/clients/client-omics/src/commands/GetShareCommand.ts +++ b/clients/client-omics/src/commands/GetShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetShareRequest, GetShareResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetShareRequest, GetShareResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetVariantImportJobCommand.ts b/clients/client-omics/src/commands/GetVariantImportJobCommand.ts index d53a85cd49374..6047f1d17e6a2 100644 --- a/clients/client-omics/src/commands/GetVariantImportJobCommand.ts +++ b/clients/client-omics/src/commands/GetVariantImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVariantImportRequest, GetVariantImportResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetVariantImportRequest, GetVariantImportResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetVariantImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetVariantStoreCommand.ts b/clients/client-omics/src/commands/GetVariantStoreCommand.ts index 55ecd7b97b903..9e8404fd6550a 100644 --- a/clients/client-omics/src/commands/GetVariantStoreCommand.ts +++ b/clients/client-omics/src/commands/GetVariantStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVariantStoreRequest, GetVariantStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetVariantStoreRequest, GetVariantStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetVariantStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetWorkflowCommand.ts b/clients/client-omics/src/commands/GetWorkflowCommand.ts index f6bc81942ac0b..467309feeb81f 100644 --- a/clients/client-omics/src/commands/GetWorkflowCommand.ts +++ b/clients/client-omics/src/commands/GetWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/GetWorkflowVersionCommand.ts b/clients/client-omics/src/commands/GetWorkflowVersionCommand.ts index 0c1529f540c7a..13a300ddd747c 100644 --- a/clients/client-omics/src/commands/GetWorkflowVersionCommand.ts +++ b/clients/client-omics/src/commands/GetWorkflowVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkflowVersionRequest, GetWorkflowVersionResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { GetWorkflowVersionRequest, GetWorkflowVersionResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { GetWorkflowVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListAnnotationImportJobsCommand.ts b/clients/client-omics/src/commands/ListAnnotationImportJobsCommand.ts index 58dade9e2ab90..07fe4105ed609 100644 --- a/clients/client-omics/src/commands/ListAnnotationImportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListAnnotationImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnnotationImportJobsRequest, ListAnnotationImportJobsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListAnnotationImportJobsRequest, ListAnnotationImportJobsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListAnnotationImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListAnnotationStoreVersionsCommand.ts b/clients/client-omics/src/commands/ListAnnotationStoreVersionsCommand.ts index 5738ce31d23e6..98dd5f2c6ec5c 100644 --- a/clients/client-omics/src/commands/ListAnnotationStoreVersionsCommand.ts +++ b/clients/client-omics/src/commands/ListAnnotationStoreVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnnotationStoreVersionsRequest, ListAnnotationStoreVersionsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListAnnotationStoreVersionsRequest, ListAnnotationStoreVersionsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListAnnotationStoreVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListAnnotationStoresCommand.ts b/clients/client-omics/src/commands/ListAnnotationStoresCommand.ts index dab3fd5b3a650..6ecc4d4b5935e 100644 --- a/clients/client-omics/src/commands/ListAnnotationStoresCommand.ts +++ b/clients/client-omics/src/commands/ListAnnotationStoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnnotationStoresRequest, ListAnnotationStoresResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListAnnotationStoresRequest, ListAnnotationStoresResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListAnnotationStores } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListMultipartReadSetUploadsCommand.ts b/clients/client-omics/src/commands/ListMultipartReadSetUploadsCommand.ts index 40bf6d9676078..735ce83f371d8 100644 --- a/clients/client-omics/src/commands/ListMultipartReadSetUploadsCommand.ts +++ b/clients/client-omics/src/commands/ListMultipartReadSetUploadsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMultipartReadSetUploadsRequest, ListMultipartReadSetUploadsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListMultipartReadSetUploadsRequest, ListMultipartReadSetUploadsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListMultipartReadSetUploads } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListReadSetActivationJobsCommand.ts b/clients/client-omics/src/commands/ListReadSetActivationJobsCommand.ts index bb3bf2189ca72..8b8d65263cc41 100644 --- a/clients/client-omics/src/commands/ListReadSetActivationJobsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetActivationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReadSetActivationJobsRequest, ListReadSetActivationJobsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListReadSetActivationJobsRequest, ListReadSetActivationJobsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListReadSetActivationJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListReadSetExportJobsCommand.ts b/clients/client-omics/src/commands/ListReadSetExportJobsCommand.ts index 78b5f0c50dd07..0fb310077d622 100644 --- a/clients/client-omics/src/commands/ListReadSetExportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReadSetExportJobsRequest, ListReadSetExportJobsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListReadSetExportJobsRequest, ListReadSetExportJobsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListReadSetExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListReadSetImportJobsCommand.ts b/clients/client-omics/src/commands/ListReadSetImportJobsCommand.ts index aafc14df20bef..3522812c75ea8 100644 --- a/clients/client-omics/src/commands/ListReadSetImportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReadSetImportJobsRequest, ListReadSetImportJobsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListReadSetImportJobsRequest, ListReadSetImportJobsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListReadSetImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListReadSetUploadPartsCommand.ts b/clients/client-omics/src/commands/ListReadSetUploadPartsCommand.ts index 8f5813e8b3f16..87be239b6b581 100644 --- a/clients/client-omics/src/commands/ListReadSetUploadPartsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetUploadPartsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReadSetUploadPartsRequest, ListReadSetUploadPartsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListReadSetUploadPartsRequest, ListReadSetUploadPartsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListReadSetUploadParts } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListReadSetsCommand.ts b/clients/client-omics/src/commands/ListReadSetsCommand.ts index a29d2d72babf4..b848cefafb203 100644 --- a/clients/client-omics/src/commands/ListReadSetsCommand.ts +++ b/clients/client-omics/src/commands/ListReadSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReadSetsRequest, ListReadSetsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListReadSetsRequest, ListReadSetsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListReadSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListReferenceImportJobsCommand.ts b/clients/client-omics/src/commands/ListReferenceImportJobsCommand.ts index e69f538473a02..25397720b5c82 100644 --- a/clients/client-omics/src/commands/ListReferenceImportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListReferenceImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReferenceImportJobsRequest, ListReferenceImportJobsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListReferenceImportJobsRequest, ListReferenceImportJobsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListReferenceImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListReferenceStoresCommand.ts b/clients/client-omics/src/commands/ListReferenceStoresCommand.ts index a56dd73aee917..d1d4159603056 100644 --- a/clients/client-omics/src/commands/ListReferenceStoresCommand.ts +++ b/clients/client-omics/src/commands/ListReferenceStoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReferenceStoresRequest, ListReferenceStoresResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListReferenceStoresRequest, ListReferenceStoresResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListReferenceStores } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListReferencesCommand.ts b/clients/client-omics/src/commands/ListReferencesCommand.ts index 21502a9526dba..3bb045cf100ce 100644 --- a/clients/client-omics/src/commands/ListReferencesCommand.ts +++ b/clients/client-omics/src/commands/ListReferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReferencesRequest, ListReferencesResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListReferencesRequest, ListReferencesResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListReferences } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListRunCachesCommand.ts b/clients/client-omics/src/commands/ListRunCachesCommand.ts index 92708dbbe1327..dc73b62596edf 100644 --- a/clients/client-omics/src/commands/ListRunCachesCommand.ts +++ b/clients/client-omics/src/commands/ListRunCachesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRunCachesRequest, ListRunCachesResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListRunCachesRequest, ListRunCachesResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListRunCaches } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListRunGroupsCommand.ts b/clients/client-omics/src/commands/ListRunGroupsCommand.ts index 1f77364cf0d18..788fbbf5f5bab 100644 --- a/clients/client-omics/src/commands/ListRunGroupsCommand.ts +++ b/clients/client-omics/src/commands/ListRunGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRunGroupsRequest, ListRunGroupsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListRunGroupsRequest, ListRunGroupsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListRunGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListRunTasksCommand.ts b/clients/client-omics/src/commands/ListRunTasksCommand.ts index a5dd5a82cd668..fabdee11462b4 100644 --- a/clients/client-omics/src/commands/ListRunTasksCommand.ts +++ b/clients/client-omics/src/commands/ListRunTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRunTasksRequest, ListRunTasksResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListRunTasksRequest, ListRunTasksResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListRunTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListRunsCommand.ts b/clients/client-omics/src/commands/ListRunsCommand.ts index e625e0bcffb39..09bce20f77081 100644 --- a/clients/client-omics/src/commands/ListRunsCommand.ts +++ b/clients/client-omics/src/commands/ListRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRunsRequest, ListRunsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListRunsRequest, ListRunsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListSequenceStoresCommand.ts b/clients/client-omics/src/commands/ListSequenceStoresCommand.ts index cfd9b8c603707..b67298861d153 100644 --- a/clients/client-omics/src/commands/ListSequenceStoresCommand.ts +++ b/clients/client-omics/src/commands/ListSequenceStoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSequenceStoresRequest, ListSequenceStoresResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListSequenceStoresRequest, ListSequenceStoresResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListSequenceStores } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListSharesCommand.ts b/clients/client-omics/src/commands/ListSharesCommand.ts index c07ce10ad9798..8cf0721cc52cf 100644 --- a/clients/client-omics/src/commands/ListSharesCommand.ts +++ b/clients/client-omics/src/commands/ListSharesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSharesRequest, ListSharesResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListSharesRequest, ListSharesResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListShares } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListTagsForResourceCommand.ts b/clients/client-omics/src/commands/ListTagsForResourceCommand.ts index e6cbc8a47f369..74f521ec785a2 100644 --- a/clients/client-omics/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-omics/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListVariantImportJobsCommand.ts b/clients/client-omics/src/commands/ListVariantImportJobsCommand.ts index 1474d122f78ff..b8a859f6fc45e 100644 --- a/clients/client-omics/src/commands/ListVariantImportJobsCommand.ts +++ b/clients/client-omics/src/commands/ListVariantImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVariantImportJobsRequest, ListVariantImportJobsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListVariantImportJobsRequest, ListVariantImportJobsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListVariantImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListVariantStoresCommand.ts b/clients/client-omics/src/commands/ListVariantStoresCommand.ts index 12464daf3c0e5..97290e8585342 100644 --- a/clients/client-omics/src/commands/ListVariantStoresCommand.ts +++ b/clients/client-omics/src/commands/ListVariantStoresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVariantStoresRequest, ListVariantStoresResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListVariantStoresRequest, ListVariantStoresResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListVariantStores } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListWorkflowVersionsCommand.ts b/clients/client-omics/src/commands/ListWorkflowVersionsCommand.ts index 15f1bfd639b04..43d01e33f3906 100644 --- a/clients/client-omics/src/commands/ListWorkflowVersionsCommand.ts +++ b/clients/client-omics/src/commands/ListWorkflowVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowVersionsRequest, ListWorkflowVersionsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListWorkflowVersionsRequest, ListWorkflowVersionsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListWorkflowVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/ListWorkflowsCommand.ts b/clients/client-omics/src/commands/ListWorkflowsCommand.ts index f7caad97360cb..e22138edd87ed 100644 --- a/clients/client-omics/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-omics/src/commands/ListWorkflowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { ListWorkflows } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/PutS3AccessPolicyCommand.ts b/clients/client-omics/src/commands/PutS3AccessPolicyCommand.ts index 35d83f2194769..27259f164dcfe 100644 --- a/clients/client-omics/src/commands/PutS3AccessPolicyCommand.ts +++ b/clients/client-omics/src/commands/PutS3AccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutS3AccessPolicyRequest, PutS3AccessPolicyResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { PutS3AccessPolicyRequest, PutS3AccessPolicyResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { PutS3AccessPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/StartAnnotationImportJobCommand.ts b/clients/client-omics/src/commands/StartAnnotationImportJobCommand.ts index 317b7ab1d99ef..6c669cef69579 100644 --- a/clients/client-omics/src/commands/StartAnnotationImportJobCommand.ts +++ b/clients/client-omics/src/commands/StartAnnotationImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAnnotationImportRequest, StartAnnotationImportResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { StartAnnotationImportRequest, StartAnnotationImportResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { StartAnnotationImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/StartReadSetActivationJobCommand.ts b/clients/client-omics/src/commands/StartReadSetActivationJobCommand.ts index ced44fe535070..820eefdb39f69 100644 --- a/clients/client-omics/src/commands/StartReadSetActivationJobCommand.ts +++ b/clients/client-omics/src/commands/StartReadSetActivationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReadSetActivationJobRequest, StartReadSetActivationJobResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { StartReadSetActivationJobRequest, StartReadSetActivationJobResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { StartReadSetActivationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/StartReadSetExportJobCommand.ts b/clients/client-omics/src/commands/StartReadSetExportJobCommand.ts index 1cd74c5bbb061..917d822e037d7 100644 --- a/clients/client-omics/src/commands/StartReadSetExportJobCommand.ts +++ b/clients/client-omics/src/commands/StartReadSetExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReadSetExportJobRequest, StartReadSetExportJobResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { StartReadSetExportJobRequest, StartReadSetExportJobResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { StartReadSetExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/StartReadSetImportJobCommand.ts b/clients/client-omics/src/commands/StartReadSetImportJobCommand.ts index 7e2975e3f091a..aa8cef94cef53 100644 --- a/clients/client-omics/src/commands/StartReadSetImportJobCommand.ts +++ b/clients/client-omics/src/commands/StartReadSetImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReadSetImportJobRequest, StartReadSetImportJobResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { StartReadSetImportJobRequest, StartReadSetImportJobResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { StartReadSetImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/StartReferenceImportJobCommand.ts b/clients/client-omics/src/commands/StartReferenceImportJobCommand.ts index 82254dbfcba8d..61eeb7c1fe78f 100644 --- a/clients/client-omics/src/commands/StartReferenceImportJobCommand.ts +++ b/clients/client-omics/src/commands/StartReferenceImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReferenceImportJobRequest, StartReferenceImportJobResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { StartReferenceImportJobRequest, StartReferenceImportJobResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { StartReferenceImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/StartRunCommand.ts b/clients/client-omics/src/commands/StartRunCommand.ts index 76102baebfac6..b6d675fccead9 100644 --- a/clients/client-omics/src/commands/StartRunCommand.ts +++ b/clients/client-omics/src/commands/StartRunCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRunRequest, StartRunResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { StartRunRequest, StartRunResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { StartRun } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/StartVariantImportJobCommand.ts b/clients/client-omics/src/commands/StartVariantImportJobCommand.ts index 41d316f075be8..193f3a254bb44 100644 --- a/clients/client-omics/src/commands/StartVariantImportJobCommand.ts +++ b/clients/client-omics/src/commands/StartVariantImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartVariantImportRequest, StartVariantImportResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { StartVariantImportRequest, StartVariantImportResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { StartVariantImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/TagResourceCommand.ts b/clients/client-omics/src/commands/TagResourceCommand.ts index c5ca7bad35915..9f4299c296343 100644 --- a/clients/client-omics/src/commands/TagResourceCommand.ts +++ b/clients/client-omics/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UntagResourceCommand.ts b/clients/client-omics/src/commands/UntagResourceCommand.ts index d68f1c4b57303..5b871e5f9e5ff 100644 --- a/clients/client-omics/src/commands/UntagResourceCommand.ts +++ b/clients/client-omics/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UpdateAnnotationStoreCommand.ts b/clients/client-omics/src/commands/UpdateAnnotationStoreCommand.ts index ea5a4566a459b..7e07dde28b41f 100644 --- a/clients/client-omics/src/commands/UpdateAnnotationStoreCommand.ts +++ b/clients/client-omics/src/commands/UpdateAnnotationStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnnotationStoreRequest, UpdateAnnotationStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { UpdateAnnotationStoreRequest, UpdateAnnotationStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UpdateAnnotationStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UpdateAnnotationStoreVersionCommand.ts b/clients/client-omics/src/commands/UpdateAnnotationStoreVersionCommand.ts index 49b7fd9df5928..07c5cfa03deb1 100644 --- a/clients/client-omics/src/commands/UpdateAnnotationStoreVersionCommand.ts +++ b/clients/client-omics/src/commands/UpdateAnnotationStoreVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnnotationStoreVersionRequest, UpdateAnnotationStoreVersionResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { UpdateAnnotationStoreVersionRequest, UpdateAnnotationStoreVersionResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UpdateAnnotationStoreVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UpdateRunCacheCommand.ts b/clients/client-omics/src/commands/UpdateRunCacheCommand.ts index dd0abc0386320..9a0f8214a1976 100644 --- a/clients/client-omics/src/commands/UpdateRunCacheCommand.ts +++ b/clients/client-omics/src/commands/UpdateRunCacheCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRunCacheRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { UpdateRunCacheRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UpdateRunCache } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UpdateRunGroupCommand.ts b/clients/client-omics/src/commands/UpdateRunGroupCommand.ts index 09b0b6392123a..5d14480369b9a 100644 --- a/clients/client-omics/src/commands/UpdateRunGroupCommand.ts +++ b/clients/client-omics/src/commands/UpdateRunGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRunGroupRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { UpdateRunGroupRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UpdateRunGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UpdateSequenceStoreCommand.ts b/clients/client-omics/src/commands/UpdateSequenceStoreCommand.ts index 002e6ef6602dd..9210e6018671e 100644 --- a/clients/client-omics/src/commands/UpdateSequenceStoreCommand.ts +++ b/clients/client-omics/src/commands/UpdateSequenceStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSequenceStoreRequest, UpdateSequenceStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { UpdateSequenceStoreRequest, UpdateSequenceStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UpdateSequenceStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UpdateVariantStoreCommand.ts b/clients/client-omics/src/commands/UpdateVariantStoreCommand.ts index bc0665603fc11..79972bf1dee1f 100644 --- a/clients/client-omics/src/commands/UpdateVariantStoreCommand.ts +++ b/clients/client-omics/src/commands/UpdateVariantStoreCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVariantStoreRequest, UpdateVariantStoreResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { UpdateVariantStoreRequest, UpdateVariantStoreResponse } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UpdateVariantStore } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UpdateWorkflowCommand.ts b/clients/client-omics/src/commands/UpdateWorkflowCommand.ts index 3e72acb2d9910..9c1c2112b56c0 100644 --- a/clients/client-omics/src/commands/UpdateWorkflowCommand.ts +++ b/clients/client-omics/src/commands/UpdateWorkflowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkflowRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { UpdateWorkflowRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UpdateWorkflow } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UpdateWorkflowVersionCommand.ts b/clients/client-omics/src/commands/UpdateWorkflowVersionCommand.ts index 3eedf990423bc..58d99f67a1f67 100644 --- a/clients/client-omics/src/commands/UpdateWorkflowVersionCommand.ts +++ b/clients/client-omics/src/commands/UpdateWorkflowVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkflowVersionRequest } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import type { UpdateWorkflowVersionRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UpdateWorkflowVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/commands/UploadReadSetPartCommand.ts b/clients/client-omics/src/commands/UploadReadSetPartCommand.ts index c204515a1d221..d9deb5b5ca514 100644 --- a/clients/client-omics/src/commands/UploadReadSetPartCommand.ts +++ b/clients/client-omics/src/commands/UploadReadSetPartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UploadReadSetPartRequest, UploadReadSetPartResponse } from "../models/models_0"; -import { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; +import { type UploadReadSetPartResponse, UploadReadSetPartRequest } from "../models/models_0"; +import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient"; import { UploadReadSetPart } from "../schemas/schemas_0"; /** diff --git a/clients/client-omics/src/endpoint/EndpointParameters.ts b/clients/client-omics/src/endpoint/EndpointParameters.ts index f717ade128361..5e00eb0a58da3 100644 --- a/clients/client-omics/src/endpoint/EndpointParameters.ts +++ b/clients/client-omics/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-omics/src/endpoint/endpointResolver.ts b/clients/client-omics/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-omics/src/endpoint/endpointResolver.ts +++ b/clients/client-omics/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-omics/src/extensionConfiguration.ts b/clients/client-omics/src/extensionConfiguration.ts index 28689daeb7242..1fc720b2da582 100644 --- a/clients/client-omics/src/extensionConfiguration.ts +++ b/clients/client-omics/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-omics/src/models/OmicsServiceException.ts b/clients/client-omics/src/models/OmicsServiceException.ts index 288be09a57001..8034e363f5680 100644 --- a/clients/client-omics/src/models/OmicsServiceException.ts +++ b/clients/client-omics/src/models/OmicsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-omics/src/models/errors.ts b/clients/client-omics/src/models/errors.ts index 80a3f20f225f8..d9769a8bc2d1a 100644 --- a/clients/client-omics/src/models/errors.ts +++ b/clients/client-omics/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { OmicsServiceException as __BaseException } from "./OmicsServiceException"; diff --git a/clients/client-omics/src/pagination/Interfaces.ts b/clients/client-omics/src/pagination/Interfaces.ts index fdb4f69823599..5b47e7ed1f6db 100644 --- a/clients/client-omics/src/pagination/Interfaces.ts +++ b/clients/client-omics/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { OmicsClient } from "../OmicsClient"; diff --git a/clients/client-omics/src/pagination/ListAnnotationImportJobsPaginator.ts b/clients/client-omics/src/pagination/ListAnnotationImportJobsPaginator.ts index 63f71082de1d0..0b7d54e1e700d 100644 --- a/clients/client-omics/src/pagination/ListAnnotationImportJobsPaginator.ts +++ b/clients/client-omics/src/pagination/ListAnnotationImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAnnotationImportJobsCommand, diff --git a/clients/client-omics/src/pagination/ListAnnotationStoreVersionsPaginator.ts b/clients/client-omics/src/pagination/ListAnnotationStoreVersionsPaginator.ts index f8d4db7e7b019..8f834e8fb10d0 100644 --- a/clients/client-omics/src/pagination/ListAnnotationStoreVersionsPaginator.ts +++ b/clients/client-omics/src/pagination/ListAnnotationStoreVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAnnotationStoreVersionsCommand, diff --git a/clients/client-omics/src/pagination/ListAnnotationStoresPaginator.ts b/clients/client-omics/src/pagination/ListAnnotationStoresPaginator.ts index 378987cd54b4c..0490f362caeff 100644 --- a/clients/client-omics/src/pagination/ListAnnotationStoresPaginator.ts +++ b/clients/client-omics/src/pagination/ListAnnotationStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAnnotationStoresCommand, diff --git a/clients/client-omics/src/pagination/ListMultipartReadSetUploadsPaginator.ts b/clients/client-omics/src/pagination/ListMultipartReadSetUploadsPaginator.ts index 4aa001a78661f..f182825d77426 100644 --- a/clients/client-omics/src/pagination/ListMultipartReadSetUploadsPaginator.ts +++ b/clients/client-omics/src/pagination/ListMultipartReadSetUploadsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMultipartReadSetUploadsCommand, diff --git a/clients/client-omics/src/pagination/ListReadSetActivationJobsPaginator.ts b/clients/client-omics/src/pagination/ListReadSetActivationJobsPaginator.ts index 662bca09aab52..15362895b92cb 100644 --- a/clients/client-omics/src/pagination/ListReadSetActivationJobsPaginator.ts +++ b/clients/client-omics/src/pagination/ListReadSetActivationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReadSetActivationJobsCommand, diff --git a/clients/client-omics/src/pagination/ListReadSetExportJobsPaginator.ts b/clients/client-omics/src/pagination/ListReadSetExportJobsPaginator.ts index 8b3e190a631d3..229a80614bd7e 100644 --- a/clients/client-omics/src/pagination/ListReadSetExportJobsPaginator.ts +++ b/clients/client-omics/src/pagination/ListReadSetExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReadSetExportJobsCommand, diff --git a/clients/client-omics/src/pagination/ListReadSetImportJobsPaginator.ts b/clients/client-omics/src/pagination/ListReadSetImportJobsPaginator.ts index 9003b172dc4d8..2a77292bd84af 100644 --- a/clients/client-omics/src/pagination/ListReadSetImportJobsPaginator.ts +++ b/clients/client-omics/src/pagination/ListReadSetImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReadSetImportJobsCommand, diff --git a/clients/client-omics/src/pagination/ListReadSetUploadPartsPaginator.ts b/clients/client-omics/src/pagination/ListReadSetUploadPartsPaginator.ts index 1ff2f9a5daa10..160c68b1d60e2 100644 --- a/clients/client-omics/src/pagination/ListReadSetUploadPartsPaginator.ts +++ b/clients/client-omics/src/pagination/ListReadSetUploadPartsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReadSetUploadPartsCommand, diff --git a/clients/client-omics/src/pagination/ListReadSetsPaginator.ts b/clients/client-omics/src/pagination/ListReadSetsPaginator.ts index effaeef57823b..1e9389ed9bd26 100644 --- a/clients/client-omics/src/pagination/ListReadSetsPaginator.ts +++ b/clients/client-omics/src/pagination/ListReadSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReadSetsCommand, diff --git a/clients/client-omics/src/pagination/ListReferenceImportJobsPaginator.ts b/clients/client-omics/src/pagination/ListReferenceImportJobsPaginator.ts index b32f9323e9a13..1b88db360fd96 100644 --- a/clients/client-omics/src/pagination/ListReferenceImportJobsPaginator.ts +++ b/clients/client-omics/src/pagination/ListReferenceImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReferenceImportJobsCommand, diff --git a/clients/client-omics/src/pagination/ListReferenceStoresPaginator.ts b/clients/client-omics/src/pagination/ListReferenceStoresPaginator.ts index cd4c62cd0f7d6..a01b0869f7570 100644 --- a/clients/client-omics/src/pagination/ListReferenceStoresPaginator.ts +++ b/clients/client-omics/src/pagination/ListReferenceStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReferenceStoresCommand, diff --git a/clients/client-omics/src/pagination/ListReferencesPaginator.ts b/clients/client-omics/src/pagination/ListReferencesPaginator.ts index 45fe56f5470d2..bb8ef9e7832d0 100644 --- a/clients/client-omics/src/pagination/ListReferencesPaginator.ts +++ b/clients/client-omics/src/pagination/ListReferencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReferencesCommand, diff --git a/clients/client-omics/src/pagination/ListRunCachesPaginator.ts b/clients/client-omics/src/pagination/ListRunCachesPaginator.ts index f4ceb87349f23..acd47ca60e6cf 100644 --- a/clients/client-omics/src/pagination/ListRunCachesPaginator.ts +++ b/clients/client-omics/src/pagination/ListRunCachesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRunCachesCommand, diff --git a/clients/client-omics/src/pagination/ListRunGroupsPaginator.ts b/clients/client-omics/src/pagination/ListRunGroupsPaginator.ts index 4c6bea986ba25..78214c3d95c6a 100644 --- a/clients/client-omics/src/pagination/ListRunGroupsPaginator.ts +++ b/clients/client-omics/src/pagination/ListRunGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRunGroupsCommand, diff --git a/clients/client-omics/src/pagination/ListRunTasksPaginator.ts b/clients/client-omics/src/pagination/ListRunTasksPaginator.ts index 1e3210cc3a2e4..4be6713e51050 100644 --- a/clients/client-omics/src/pagination/ListRunTasksPaginator.ts +++ b/clients/client-omics/src/pagination/ListRunTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRunTasksCommand, diff --git a/clients/client-omics/src/pagination/ListRunsPaginator.ts b/clients/client-omics/src/pagination/ListRunsPaginator.ts index a59e4bda3c531..177853a5aba55 100644 --- a/clients/client-omics/src/pagination/ListRunsPaginator.ts +++ b/clients/client-omics/src/pagination/ListRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRunsCommand, ListRunsCommandInput, ListRunsCommandOutput } from "../commands/ListRunsCommand"; import { OmicsClient } from "../OmicsClient"; diff --git a/clients/client-omics/src/pagination/ListSequenceStoresPaginator.ts b/clients/client-omics/src/pagination/ListSequenceStoresPaginator.ts index f0d61eeb5bb80..aa673d996052c 100644 --- a/clients/client-omics/src/pagination/ListSequenceStoresPaginator.ts +++ b/clients/client-omics/src/pagination/ListSequenceStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSequenceStoresCommand, diff --git a/clients/client-omics/src/pagination/ListSharesPaginator.ts b/clients/client-omics/src/pagination/ListSharesPaginator.ts index 53f5fe780879a..5412880d826dc 100644 --- a/clients/client-omics/src/pagination/ListSharesPaginator.ts +++ b/clients/client-omics/src/pagination/ListSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSharesCommand, ListSharesCommandInput, ListSharesCommandOutput } from "../commands/ListSharesCommand"; import { OmicsClient } from "../OmicsClient"; diff --git a/clients/client-omics/src/pagination/ListVariantImportJobsPaginator.ts b/clients/client-omics/src/pagination/ListVariantImportJobsPaginator.ts index acc62b8afa356..5a915dd7a7e70 100644 --- a/clients/client-omics/src/pagination/ListVariantImportJobsPaginator.ts +++ b/clients/client-omics/src/pagination/ListVariantImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVariantImportJobsCommand, diff --git a/clients/client-omics/src/pagination/ListVariantStoresPaginator.ts b/clients/client-omics/src/pagination/ListVariantStoresPaginator.ts index 0d060b1a82038..fecf6e6eba8b1 100644 --- a/clients/client-omics/src/pagination/ListVariantStoresPaginator.ts +++ b/clients/client-omics/src/pagination/ListVariantStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVariantStoresCommand, diff --git a/clients/client-omics/src/pagination/ListWorkflowVersionsPaginator.ts b/clients/client-omics/src/pagination/ListWorkflowVersionsPaginator.ts index 5df459411aad5..45ceead48596d 100644 --- a/clients/client-omics/src/pagination/ListWorkflowVersionsPaginator.ts +++ b/clients/client-omics/src/pagination/ListWorkflowVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowVersionsCommand, diff --git a/clients/client-omics/src/pagination/ListWorkflowsPaginator.ts b/clients/client-omics/src/pagination/ListWorkflowsPaginator.ts index 3b885110054f0..e07c78a0191ed 100644 --- a/clients/client-omics/src/pagination/ListWorkflowsPaginator.ts +++ b/clients/client-omics/src/pagination/ListWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowsCommand, diff --git a/clients/client-omics/src/runtimeConfig.browser.ts b/clients/client-omics/src/runtimeConfig.browser.ts index a59b2a17c791c..2d9d0af458930 100644 --- a/clients/client-omics/src/runtimeConfig.browser.ts +++ b/clients/client-omics/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OmicsClientConfig } from "./OmicsClient"; + +import type { OmicsClientConfig } from "./OmicsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-omics/src/runtimeConfig.native.ts b/clients/client-omics/src/runtimeConfig.native.ts index 1c4e87e70f992..f2c5144a6f663 100644 --- a/clients/client-omics/src/runtimeConfig.native.ts +++ b/clients/client-omics/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { OmicsClientConfig } from "./OmicsClient"; +import type { OmicsClientConfig } from "./OmicsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-omics/src/runtimeConfig.shared.ts b/clients/client-omics/src/runtimeConfig.shared.ts index 1697d395c8a92..4b2aad54d486f 100644 --- a/clients/client-omics/src/runtimeConfig.shared.ts +++ b/clients/client-omics/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultOmicsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { OmicsClientConfig } from "./OmicsClient"; +import type { OmicsClientConfig } from "./OmicsClient"; /** * @internal diff --git a/clients/client-omics/src/runtimeConfig.ts b/clients/client-omics/src/runtimeConfig.ts index 97f8111267141..90475f21cd2d4 100644 --- a/clients/client-omics/src/runtimeConfig.ts +++ b/clients/client-omics/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OmicsClientConfig } from "./OmicsClient"; + +import type { OmicsClientConfig } from "./OmicsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-omics/src/runtimeExtensions.ts b/clients/client-omics/src/runtimeExtensions.ts index c24d3636b2a12..5566fcf5cdcd6 100644 --- a/clients/client-omics/src/runtimeExtensions.ts +++ b/clients/client-omics/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { OmicsExtensionConfiguration } from "./extensionConfiguration"; +import type { OmicsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-omics/src/schemas/schemas_0.ts b/clients/client-omics/src/schemas/schemas_0.ts index ff2e233ee357c..7e54080b6c943 100644 --- a/clients/client-omics/src/schemas/schemas_0.ts +++ b/clients/client-omics/src/schemas/schemas_0.ts @@ -653,7 +653,7 @@ const n0 = "com.amazonaws.omics"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-opensearch/package.json b/clients/client-opensearch/package.json index 142c1dc4a73fa..a9acebf6bcd73 100644 --- a/clients/client-opensearch/package.json +++ b/clients/client-opensearch/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-opensearch/src/OpenSearch.ts b/clients/client-opensearch/src/OpenSearch.ts index cd1ff515dca27..6e62087ea816f 100644 --- a/clients/client-opensearch/src/OpenSearch.ts +++ b/clients/client-opensearch/src/OpenSearch.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptInboundConnectionCommand, @@ -384,7 +384,7 @@ import { UpgradeDomainCommandInput, UpgradeDomainCommandOutput, } from "./commands/UpgradeDomainCommand"; -import { OpenSearchClient, OpenSearchClientConfig } from "./OpenSearchClient"; +import { OpenSearchClient } from "./OpenSearchClient"; const commands = { AcceptInboundConnectionCommand, diff --git a/clients/client-opensearch/src/OpenSearchClient.ts b/clients/client-opensearch/src/OpenSearchClient.ts index d00aba2130e8a..d5d37d9db6cee 100644 --- a/clients/client-opensearch/src/OpenSearchClient.ts +++ b/clients/client-opensearch/src/OpenSearchClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultOpenSearchHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -272,7 +281,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-opensearch/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-opensearch/src/auth/httpAuthExtensionConfiguration.ts index c98fe3ba1c1c0..83c3fcb7f14a2 100644 --- a/clients/client-opensearch/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-opensearch/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { OpenSearchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { OpenSearchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-opensearch/src/auth/httpAuthSchemeProvider.ts b/clients/client-opensearch/src/auth/httpAuthSchemeProvider.ts index adad8d9193239..d210911c5d064 100644 --- a/clients/client-opensearch/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-opensearch/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { OpenSearchClientConfig, OpenSearchClientResolvedConfig } from "../OpenSearchClient"; +import { type OpenSearchClientResolvedConfig, OpenSearchClientConfig } from "../OpenSearchClient"; /** * @internal diff --git a/clients/client-opensearch/src/commands/AcceptInboundConnectionCommand.ts b/clients/client-opensearch/src/commands/AcceptInboundConnectionCommand.ts index f9f33bbac3c17..59d8119377e0b 100644 --- a/clients/client-opensearch/src/commands/AcceptInboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/AcceptInboundConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptInboundConnectionRequest, AcceptInboundConnectionResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { AcceptInboundConnectionRequest, AcceptInboundConnectionResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { AcceptInboundConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/AddDataSourceCommand.ts b/clients/client-opensearch/src/commands/AddDataSourceCommand.ts index fc15fcd8e912c..9443920a84efc 100644 --- a/clients/client-opensearch/src/commands/AddDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/AddDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddDataSourceRequest, AddDataSourceResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { AddDataSourceRequest, AddDataSourceResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { AddDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/AddDirectQueryDataSourceCommand.ts b/clients/client-opensearch/src/commands/AddDirectQueryDataSourceCommand.ts index 3ae1090a8877b..049b1eb7ac034 100644 --- a/clients/client-opensearch/src/commands/AddDirectQueryDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/AddDirectQueryDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddDirectQueryDataSourceRequest, AddDirectQueryDataSourceResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { AddDirectQueryDataSourceRequest, AddDirectQueryDataSourceResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { AddDirectQueryDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/AddTagsCommand.ts b/clients/client-opensearch/src/commands/AddTagsCommand.ts index 047910ccb72f3..26a30b16fae6e 100644 --- a/clients/client-opensearch/src/commands/AddTagsCommand.ts +++ b/clients/client-opensearch/src/commands/AddTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsRequest } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { AddTagsRequest } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { AddTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/AssociatePackageCommand.ts b/clients/client-opensearch/src/commands/AssociatePackageCommand.ts index e2919ca804dec..23895b357e4b6 100644 --- a/clients/client-opensearch/src/commands/AssociatePackageCommand.ts +++ b/clients/client-opensearch/src/commands/AssociatePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociatePackageRequest, AssociatePackageResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { AssociatePackageRequest, AssociatePackageResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { AssociatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/AssociatePackagesCommand.ts b/clients/client-opensearch/src/commands/AssociatePackagesCommand.ts index 5a926c961b7e4..0064da52e839b 100644 --- a/clients/client-opensearch/src/commands/AssociatePackagesCommand.ts +++ b/clients/client-opensearch/src/commands/AssociatePackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociatePackagesRequest, AssociatePackagesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { AssociatePackagesRequest, AssociatePackagesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { AssociatePackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/AuthorizeVpcEndpointAccessCommand.ts b/clients/client-opensearch/src/commands/AuthorizeVpcEndpointAccessCommand.ts index dc209033d2423..c4c8224b369c1 100644 --- a/clients/client-opensearch/src/commands/AuthorizeVpcEndpointAccessCommand.ts +++ b/clients/client-opensearch/src/commands/AuthorizeVpcEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeVpcEndpointAccessRequest, AuthorizeVpcEndpointAccessResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { AuthorizeVpcEndpointAccessRequest, AuthorizeVpcEndpointAccessResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { AuthorizeVpcEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/CancelDomainConfigChangeCommand.ts b/clients/client-opensearch/src/commands/CancelDomainConfigChangeCommand.ts index 8c88d712bee96..a47026f275f3c 100644 --- a/clients/client-opensearch/src/commands/CancelDomainConfigChangeCommand.ts +++ b/clients/client-opensearch/src/commands/CancelDomainConfigChangeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelDomainConfigChangeRequest, CancelDomainConfigChangeResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { CancelDomainConfigChangeRequest, CancelDomainConfigChangeResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { CancelDomainConfigChange } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/CancelServiceSoftwareUpdateCommand.ts b/clients/client-opensearch/src/commands/CancelServiceSoftwareUpdateCommand.ts index 898f4f3eaa707..fd8b4a37bd6ca 100644 --- a/clients/client-opensearch/src/commands/CancelServiceSoftwareUpdateCommand.ts +++ b/clients/client-opensearch/src/commands/CancelServiceSoftwareUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelServiceSoftwareUpdateRequest, CancelServiceSoftwareUpdateResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { CancelServiceSoftwareUpdateRequest, CancelServiceSoftwareUpdateResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { CancelServiceSoftwareUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/CreateApplicationCommand.ts b/clients/client-opensearch/src/commands/CreateApplicationCommand.ts index bac2be553da6b..b16f740cf3dba 100644 --- a/clients/client-opensearch/src/commands/CreateApplicationCommand.ts +++ b/clients/client-opensearch/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/CreateDomainCommand.ts b/clients/client-opensearch/src/commands/CreateDomainCommand.ts index b1ff7f80bead7..ccc73d23bff6f 100644 --- a/clients/client-opensearch/src/commands/CreateDomainCommand.ts +++ b/clients/client-opensearch/src/commands/CreateDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { CreateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/CreateIndexCommand.ts b/clients/client-opensearch/src/commands/CreateIndexCommand.ts index de22e77c38cc7..4a6d2b9d34e2d 100644 --- a/clients/client-opensearch/src/commands/CreateIndexCommand.ts +++ b/clients/client-opensearch/src/commands/CreateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { CreateIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/CreateOutboundConnectionCommand.ts b/clients/client-opensearch/src/commands/CreateOutboundConnectionCommand.ts index 0255ca81bf6a4..94381039d52c5 100644 --- a/clients/client-opensearch/src/commands/CreateOutboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/CreateOutboundConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOutboundConnectionRequest, CreateOutboundConnectionResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { CreateOutboundConnectionRequest, CreateOutboundConnectionResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { CreateOutboundConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/CreatePackageCommand.ts b/clients/client-opensearch/src/commands/CreatePackageCommand.ts index c4229697d94a0..09f0fd3225e96 100644 --- a/clients/client-opensearch/src/commands/CreatePackageCommand.ts +++ b/clients/client-opensearch/src/commands/CreatePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePackageRequest, CreatePackageResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { CreatePackageRequest, CreatePackageResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { CreatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/CreateVpcEndpointCommand.ts b/clients/client-opensearch/src/commands/CreateVpcEndpointCommand.ts index dcfee4d292180..26d05823520be 100644 --- a/clients/client-opensearch/src/commands/CreateVpcEndpointCommand.ts +++ b/clients/client-opensearch/src/commands/CreateVpcEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcEndpointRequest, CreateVpcEndpointResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { CreateVpcEndpointRequest, CreateVpcEndpointResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { CreateVpcEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DeleteApplicationCommand.ts b/clients/client-opensearch/src/commands/DeleteApplicationCommand.ts index bfeb750901019..18de90af26203 100644 --- a/clients/client-opensearch/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DeleteDataSourceCommand.ts b/clients/client-opensearch/src/commands/DeleteDataSourceCommand.ts index f83926f3c3164..c6de58a9fb5db 100644 --- a/clients/client-opensearch/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DeleteDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DeleteDirectQueryDataSourceCommand.ts b/clients/client-opensearch/src/commands/DeleteDirectQueryDataSourceCommand.ts index 421fc6cc8ef22..a98bf6cd4b172 100644 --- a/clients/client-opensearch/src/commands/DeleteDirectQueryDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteDirectQueryDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDirectQueryDataSourceRequest } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DeleteDirectQueryDataSourceRequest } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DeleteDirectQueryDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DeleteDomainCommand.ts b/clients/client-opensearch/src/commands/DeleteDomainCommand.ts index 992201ccd7785..411a712e485a4 100644 --- a/clients/client-opensearch/src/commands/DeleteDomainCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DeleteDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DeleteInboundConnectionCommand.ts b/clients/client-opensearch/src/commands/DeleteInboundConnectionCommand.ts index df9d9d8c69a02..851edadb90402 100644 --- a/clients/client-opensearch/src/commands/DeleteInboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteInboundConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInboundConnectionRequest, DeleteInboundConnectionResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DeleteInboundConnectionRequest, DeleteInboundConnectionResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DeleteInboundConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DeleteIndexCommand.ts b/clients/client-opensearch/src/commands/DeleteIndexCommand.ts index 6015a4286ed26..8b648dd8fd0b3 100644 --- a/clients/client-opensearch/src/commands/DeleteIndexCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIndexRequest, DeleteIndexResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DeleteIndexRequest, DeleteIndexResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DeleteIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DeleteOutboundConnectionCommand.ts b/clients/client-opensearch/src/commands/DeleteOutboundConnectionCommand.ts index 013f2a56f8a4d..e8187a5a838ba 100644 --- a/clients/client-opensearch/src/commands/DeleteOutboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteOutboundConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOutboundConnectionRequest, DeleteOutboundConnectionResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DeleteOutboundConnectionRequest, DeleteOutboundConnectionResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DeleteOutboundConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DeletePackageCommand.ts b/clients/client-opensearch/src/commands/DeletePackageCommand.ts index 0cb2d7523439e..59e9f0d774e0a 100644 --- a/clients/client-opensearch/src/commands/DeletePackageCommand.ts +++ b/clients/client-opensearch/src/commands/DeletePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePackageRequest, DeletePackageResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DeletePackageRequest, DeletePackageResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DeletePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DeleteVpcEndpointCommand.ts b/clients/client-opensearch/src/commands/DeleteVpcEndpointCommand.ts index 12505db94deb1..352f5e6f01eaa 100644 --- a/clients/client-opensearch/src/commands/DeleteVpcEndpointCommand.ts +++ b/clients/client-opensearch/src/commands/DeleteVpcEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcEndpointRequest, DeleteVpcEndpointResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DeleteVpcEndpointRequest, DeleteVpcEndpointResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DeleteVpcEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeDomainAutoTunesCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainAutoTunesCommand.ts index 3da1a9891b34a..2ffc008d74f2c 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainAutoTunesCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainAutoTunesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainAutoTunesRequest, DescribeDomainAutoTunesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeDomainAutoTunesRequest, DescribeDomainAutoTunesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeDomainAutoTunes } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeDomainChangeProgressCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainChangeProgressCommand.ts index 7075b9316ba6b..a92c7fd1b1836 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainChangeProgressCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainChangeProgressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainChangeProgressRequest, DescribeDomainChangeProgressResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeDomainChangeProgressRequest, DescribeDomainChangeProgressResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeDomainChangeProgress } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeDomainCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainCommand.ts index 0c5c030cf2c06..ad51302f0703f 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainRequest, DescribeDomainResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeDomainRequest, DescribeDomainResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeDomainConfigCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainConfigCommand.ts index 731e42ae0d086..8086e4d4e3cf6 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainConfigCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainConfigRequest, DescribeDomainConfigResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeDomainConfigRequest, DescribeDomainConfigResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeDomainConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeDomainHealthCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainHealthCommand.ts index b97b65062a842..e755e5d5c55b6 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainHealthCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainHealthCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainHealthRequest, DescribeDomainHealthResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeDomainHealthRequest, DescribeDomainHealthResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeDomainHealth } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeDomainNodesCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainNodesCommand.ts index c23a6bf338cf4..ef467ac9ffa1a 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainNodesCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainNodesRequest, DescribeDomainNodesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeDomainNodesRequest, DescribeDomainNodesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeDomainNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeDomainsCommand.ts b/clients/client-opensearch/src/commands/DescribeDomainsCommand.ts index 3230824e99bcb..4ad6abdadf219 100644 --- a/clients/client-opensearch/src/commands/DescribeDomainsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainsRequest, DescribeDomainsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeDomainsRequest, DescribeDomainsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeDryRunProgressCommand.ts b/clients/client-opensearch/src/commands/DescribeDryRunProgressCommand.ts index 389bee8d09802..fcec7d06e7ed4 100644 --- a/clients/client-opensearch/src/commands/DescribeDryRunProgressCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeDryRunProgressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDryRunProgressRequest, DescribeDryRunProgressResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeDryRunProgressRequest, DescribeDryRunProgressResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeDryRunProgress } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeInboundConnectionsCommand.ts b/clients/client-opensearch/src/commands/DescribeInboundConnectionsCommand.ts index 2bc284d88d331..91ac3f4068beb 100644 --- a/clients/client-opensearch/src/commands/DescribeInboundConnectionsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeInboundConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInboundConnectionsRequest, DescribeInboundConnectionsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeInboundConnectionsRequest, DescribeInboundConnectionsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeInboundConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeInstanceTypeLimitsCommand.ts b/clients/client-opensearch/src/commands/DescribeInstanceTypeLimitsCommand.ts index 8c92e587b86b4..cea2669c0f206 100644 --- a/clients/client-opensearch/src/commands/DescribeInstanceTypeLimitsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeInstanceTypeLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceTypeLimitsRequest, DescribeInstanceTypeLimitsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeInstanceTypeLimitsRequest, DescribeInstanceTypeLimitsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeInstanceTypeLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeOutboundConnectionsCommand.ts b/clients/client-opensearch/src/commands/DescribeOutboundConnectionsCommand.ts index e4416a808e6bf..ab3671d9fc5c6 100644 --- a/clients/client-opensearch/src/commands/DescribeOutboundConnectionsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeOutboundConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOutboundConnectionsRequest, DescribeOutboundConnectionsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeOutboundConnectionsRequest, DescribeOutboundConnectionsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeOutboundConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribePackagesCommand.ts b/clients/client-opensearch/src/commands/DescribePackagesCommand.ts index f48bb1157aed2..f7fb5c9db6044 100644 --- a/clients/client-opensearch/src/commands/DescribePackagesCommand.ts +++ b/clients/client-opensearch/src/commands/DescribePackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePackagesRequest, DescribePackagesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribePackagesRequest, DescribePackagesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribePackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeReservedInstanceOfferingsCommand.ts b/clients/client-opensearch/src/commands/DescribeReservedInstanceOfferingsCommand.ts index 0622140bd2067..7725d8787f6da 100644 --- a/clients/client-opensearch/src/commands/DescribeReservedInstanceOfferingsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeReservedInstanceOfferingsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReservedInstanceOfferingsRequest, DescribeReservedInstanceOfferingsResponse, } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeReservedInstanceOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeReservedInstancesCommand.ts b/clients/client-opensearch/src/commands/DescribeReservedInstancesCommand.ts index cae42c3037b78..093ed9932259f 100644 --- a/clients/client-opensearch/src/commands/DescribeReservedInstancesCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeReservedInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedInstancesRequest, DescribeReservedInstancesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeReservedInstancesRequest, DescribeReservedInstancesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeReservedInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DescribeVpcEndpointsCommand.ts b/clients/client-opensearch/src/commands/DescribeVpcEndpointsCommand.ts index c44e12c1fb2c6..8cc618a740504 100644 --- a/clients/client-opensearch/src/commands/DescribeVpcEndpointsCommand.ts +++ b/clients/client-opensearch/src/commands/DescribeVpcEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVpcEndpointsRequest, DescribeVpcEndpointsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DescribeVpcEndpointsRequest, DescribeVpcEndpointsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DescribeVpcEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DissociatePackageCommand.ts b/clients/client-opensearch/src/commands/DissociatePackageCommand.ts index e29efebbb7eb6..716aa0fd02a13 100644 --- a/clients/client-opensearch/src/commands/DissociatePackageCommand.ts +++ b/clients/client-opensearch/src/commands/DissociatePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DissociatePackageRequest, DissociatePackageResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DissociatePackageRequest, DissociatePackageResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DissociatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/DissociatePackagesCommand.ts b/clients/client-opensearch/src/commands/DissociatePackagesCommand.ts index a34b47a792325..7b22b84fdbf61 100644 --- a/clients/client-opensearch/src/commands/DissociatePackagesCommand.ts +++ b/clients/client-opensearch/src/commands/DissociatePackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DissociatePackagesRequest, DissociatePackagesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { DissociatePackagesRequest, DissociatePackagesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { DissociatePackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetApplicationCommand.ts b/clients/client-opensearch/src/commands/GetApplicationCommand.ts index 16c6482a65ad8..2af9fea7a7918 100644 --- a/clients/client-opensearch/src/commands/GetApplicationCommand.ts +++ b/clients/client-opensearch/src/commands/GetApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetCompatibleVersionsCommand.ts b/clients/client-opensearch/src/commands/GetCompatibleVersionsCommand.ts index edf04aecab963..4a149b8a39f10 100644 --- a/clients/client-opensearch/src/commands/GetCompatibleVersionsCommand.ts +++ b/clients/client-opensearch/src/commands/GetCompatibleVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCompatibleVersionsRequest, GetCompatibleVersionsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetCompatibleVersionsRequest, GetCompatibleVersionsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetCompatibleVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetDataSourceCommand.ts b/clients/client-opensearch/src/commands/GetDataSourceCommand.ts index fa429f7f4fe62..a56f6a8194b59 100644 --- a/clients/client-opensearch/src/commands/GetDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/GetDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataSourceRequest, GetDataSourceResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetDataSourceRequest, GetDataSourceResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetDefaultApplicationSettingCommand.ts b/clients/client-opensearch/src/commands/GetDefaultApplicationSettingCommand.ts index b710f3f28b988..21152164fc9b2 100644 --- a/clients/client-opensearch/src/commands/GetDefaultApplicationSettingCommand.ts +++ b/clients/client-opensearch/src/commands/GetDefaultApplicationSettingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDefaultApplicationSettingRequest, GetDefaultApplicationSettingResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetDefaultApplicationSettingRequest, GetDefaultApplicationSettingResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetDefaultApplicationSetting } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetDirectQueryDataSourceCommand.ts b/clients/client-opensearch/src/commands/GetDirectQueryDataSourceCommand.ts index 121e9d6e21fb3..307cc45041005 100644 --- a/clients/client-opensearch/src/commands/GetDirectQueryDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/GetDirectQueryDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDirectQueryDataSourceRequest, GetDirectQueryDataSourceResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetDirectQueryDataSourceRequest, GetDirectQueryDataSourceResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetDirectQueryDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetDomainMaintenanceStatusCommand.ts b/clients/client-opensearch/src/commands/GetDomainMaintenanceStatusCommand.ts index 756ff9cdb8c6c..cd16c1cb23e08 100644 --- a/clients/client-opensearch/src/commands/GetDomainMaintenanceStatusCommand.ts +++ b/clients/client-opensearch/src/commands/GetDomainMaintenanceStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainMaintenanceStatusRequest, GetDomainMaintenanceStatusResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetDomainMaintenanceStatusRequest, GetDomainMaintenanceStatusResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetDomainMaintenanceStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetIndexCommand.ts b/clients/client-opensearch/src/commands/GetIndexCommand.ts index 67b10d66a29fd..c47af2d4fb536 100644 --- a/clients/client-opensearch/src/commands/GetIndexCommand.ts +++ b/clients/client-opensearch/src/commands/GetIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIndexRequest, GetIndexResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetIndexRequest, GetIndexResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetPackageVersionHistoryCommand.ts b/clients/client-opensearch/src/commands/GetPackageVersionHistoryCommand.ts index 195714b8863b4..64fbd9e0094be 100644 --- a/clients/client-opensearch/src/commands/GetPackageVersionHistoryCommand.ts +++ b/clients/client-opensearch/src/commands/GetPackageVersionHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPackageVersionHistoryRequest, GetPackageVersionHistoryResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetPackageVersionHistoryRequest, GetPackageVersionHistoryResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetPackageVersionHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetUpgradeHistoryCommand.ts b/clients/client-opensearch/src/commands/GetUpgradeHistoryCommand.ts index 6723cf412054e..d3e586f38d7fc 100644 --- a/clients/client-opensearch/src/commands/GetUpgradeHistoryCommand.ts +++ b/clients/client-opensearch/src/commands/GetUpgradeHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUpgradeHistoryRequest, GetUpgradeHistoryResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetUpgradeHistoryRequest, GetUpgradeHistoryResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetUpgradeHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/GetUpgradeStatusCommand.ts b/clients/client-opensearch/src/commands/GetUpgradeStatusCommand.ts index 2cc4342628432..7d9b4e7212adc 100644 --- a/clients/client-opensearch/src/commands/GetUpgradeStatusCommand.ts +++ b/clients/client-opensearch/src/commands/GetUpgradeStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUpgradeStatusRequest, GetUpgradeStatusResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { GetUpgradeStatusRequest, GetUpgradeStatusResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { GetUpgradeStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListApplicationsCommand.ts b/clients/client-opensearch/src/commands/ListApplicationsCommand.ts index 0f8c9fb59c311..159faa2e33ba1 100644 --- a/clients/client-opensearch/src/commands/ListApplicationsCommand.ts +++ b/clients/client-opensearch/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListDataSourcesCommand.ts b/clients/client-opensearch/src/commands/ListDataSourcesCommand.ts index 631988e140ec1..a7da35345a091 100644 --- a/clients/client-opensearch/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-opensearch/src/commands/ListDataSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListDirectQueryDataSourcesCommand.ts b/clients/client-opensearch/src/commands/ListDirectQueryDataSourcesCommand.ts index 7b3006eab3f43..1fb546af3a47a 100644 --- a/clients/client-opensearch/src/commands/ListDirectQueryDataSourcesCommand.ts +++ b/clients/client-opensearch/src/commands/ListDirectQueryDataSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDirectQueryDataSourcesRequest, ListDirectQueryDataSourcesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListDirectQueryDataSourcesRequest, ListDirectQueryDataSourcesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListDirectQueryDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListDomainMaintenancesCommand.ts b/clients/client-opensearch/src/commands/ListDomainMaintenancesCommand.ts index 62ea40f01f629..fd554a1b7f3a4 100644 --- a/clients/client-opensearch/src/commands/ListDomainMaintenancesCommand.ts +++ b/clients/client-opensearch/src/commands/ListDomainMaintenancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainMaintenancesRequest, ListDomainMaintenancesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListDomainMaintenancesRequest, ListDomainMaintenancesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListDomainMaintenances } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListDomainNamesCommand.ts b/clients/client-opensearch/src/commands/ListDomainNamesCommand.ts index a2c6fb8c196c5..f313d93d31cc2 100644 --- a/clients/client-opensearch/src/commands/ListDomainNamesCommand.ts +++ b/clients/client-opensearch/src/commands/ListDomainNamesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainNamesRequest, ListDomainNamesResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListDomainNamesRequest, ListDomainNamesResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListDomainNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListDomainsForPackageCommand.ts b/clients/client-opensearch/src/commands/ListDomainsForPackageCommand.ts index b5192ee23ba05..5dc4ad1c0ccd0 100644 --- a/clients/client-opensearch/src/commands/ListDomainsForPackageCommand.ts +++ b/clients/client-opensearch/src/commands/ListDomainsForPackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsForPackageRequest, ListDomainsForPackageResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListDomainsForPackageRequest, ListDomainsForPackageResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListDomainsForPackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListInstanceTypeDetailsCommand.ts b/clients/client-opensearch/src/commands/ListInstanceTypeDetailsCommand.ts index ae6a3ad79355e..eba7eda3c5452 100644 --- a/clients/client-opensearch/src/commands/ListInstanceTypeDetailsCommand.ts +++ b/clients/client-opensearch/src/commands/ListInstanceTypeDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstanceTypeDetailsRequest, ListInstanceTypeDetailsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListInstanceTypeDetailsRequest, ListInstanceTypeDetailsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListInstanceTypeDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListPackagesForDomainCommand.ts b/clients/client-opensearch/src/commands/ListPackagesForDomainCommand.ts index c3e8a6613cfd2..f38e607c2af3c 100644 --- a/clients/client-opensearch/src/commands/ListPackagesForDomainCommand.ts +++ b/clients/client-opensearch/src/commands/ListPackagesForDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPackagesForDomainRequest, ListPackagesForDomainResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListPackagesForDomainRequest, ListPackagesForDomainResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListPackagesForDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListScheduledActionsCommand.ts b/clients/client-opensearch/src/commands/ListScheduledActionsCommand.ts index 6fb4263b5f336..0eafa517efc6e 100644 --- a/clients/client-opensearch/src/commands/ListScheduledActionsCommand.ts +++ b/clients/client-opensearch/src/commands/ListScheduledActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScheduledActionsRequest, ListScheduledActionsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListScheduledActionsRequest, ListScheduledActionsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListScheduledActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListTagsCommand.ts b/clients/client-opensearch/src/commands/ListTagsCommand.ts index 01a55ba9639f4..2ab665b015f04 100644 --- a/clients/client-opensearch/src/commands/ListTagsCommand.ts +++ b/clients/client-opensearch/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsRequest, ListTagsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListTagsRequest, ListTagsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListVersionsCommand.ts b/clients/client-opensearch/src/commands/ListVersionsCommand.ts index 0df2b04fe0b27..65130fa1cab0e 100644 --- a/clients/client-opensearch/src/commands/ListVersionsCommand.ts +++ b/clients/client-opensearch/src/commands/ListVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVersionsRequest, ListVersionsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListVersionsRequest, ListVersionsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListVpcEndpointAccessCommand.ts b/clients/client-opensearch/src/commands/ListVpcEndpointAccessCommand.ts index 38553c18a0346..3e3fecfb395e1 100644 --- a/clients/client-opensearch/src/commands/ListVpcEndpointAccessCommand.ts +++ b/clients/client-opensearch/src/commands/ListVpcEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcEndpointAccessRequest, ListVpcEndpointAccessResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListVpcEndpointAccessRequest, ListVpcEndpointAccessResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListVpcEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListVpcEndpointsCommand.ts b/clients/client-opensearch/src/commands/ListVpcEndpointsCommand.ts index 4cd0e815a3430..848f3d081bd3a 100644 --- a/clients/client-opensearch/src/commands/ListVpcEndpointsCommand.ts +++ b/clients/client-opensearch/src/commands/ListVpcEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcEndpointsRequest, ListVpcEndpointsResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListVpcEndpointsRequest, ListVpcEndpointsResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListVpcEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/ListVpcEndpointsForDomainCommand.ts b/clients/client-opensearch/src/commands/ListVpcEndpointsForDomainCommand.ts index 14a09dd280ea5..4acb115a92ff8 100644 --- a/clients/client-opensearch/src/commands/ListVpcEndpointsForDomainCommand.ts +++ b/clients/client-opensearch/src/commands/ListVpcEndpointsForDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcEndpointsForDomainRequest, ListVpcEndpointsForDomainResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { ListVpcEndpointsForDomainRequest, ListVpcEndpointsForDomainResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { ListVpcEndpointsForDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/PurchaseReservedInstanceOfferingCommand.ts b/clients/client-opensearch/src/commands/PurchaseReservedInstanceOfferingCommand.ts index 69a2698f3f2eb..80215df4f02ed 100644 --- a/clients/client-opensearch/src/commands/PurchaseReservedInstanceOfferingCommand.ts +++ b/clients/client-opensearch/src/commands/PurchaseReservedInstanceOfferingCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PurchaseReservedInstanceOfferingRequest, PurchaseReservedInstanceOfferingResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { + PurchaseReservedInstanceOfferingRequest, + PurchaseReservedInstanceOfferingResponse, +} from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { PurchaseReservedInstanceOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/PutDefaultApplicationSettingCommand.ts b/clients/client-opensearch/src/commands/PutDefaultApplicationSettingCommand.ts index 4b3df90413513..370f9e9bab37f 100644 --- a/clients/client-opensearch/src/commands/PutDefaultApplicationSettingCommand.ts +++ b/clients/client-opensearch/src/commands/PutDefaultApplicationSettingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDefaultApplicationSettingRequest, PutDefaultApplicationSettingResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { PutDefaultApplicationSettingRequest, PutDefaultApplicationSettingResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { PutDefaultApplicationSetting } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/RejectInboundConnectionCommand.ts b/clients/client-opensearch/src/commands/RejectInboundConnectionCommand.ts index bab43e098d275..8da8165b78bbc 100644 --- a/clients/client-opensearch/src/commands/RejectInboundConnectionCommand.ts +++ b/clients/client-opensearch/src/commands/RejectInboundConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectInboundConnectionRequest, RejectInboundConnectionResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { RejectInboundConnectionRequest, RejectInboundConnectionResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { RejectInboundConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/RemoveTagsCommand.ts b/clients/client-opensearch/src/commands/RemoveTagsCommand.ts index 6d4bc1cc57f8d..e75f4a37ed830 100644 --- a/clients/client-opensearch/src/commands/RemoveTagsCommand.ts +++ b/clients/client-opensearch/src/commands/RemoveTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsRequest } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { RemoveTagsRequest } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { RemoveTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/RevokeVpcEndpointAccessCommand.ts b/clients/client-opensearch/src/commands/RevokeVpcEndpointAccessCommand.ts index 138dc578dc286..60101344630b8 100644 --- a/clients/client-opensearch/src/commands/RevokeVpcEndpointAccessCommand.ts +++ b/clients/client-opensearch/src/commands/RevokeVpcEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeVpcEndpointAccessRequest, RevokeVpcEndpointAccessResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { RevokeVpcEndpointAccessRequest, RevokeVpcEndpointAccessResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { RevokeVpcEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/StartDomainMaintenanceCommand.ts b/clients/client-opensearch/src/commands/StartDomainMaintenanceCommand.ts index 596c6efcbcc7e..1774dc9b7eca7 100644 --- a/clients/client-opensearch/src/commands/StartDomainMaintenanceCommand.ts +++ b/clients/client-opensearch/src/commands/StartDomainMaintenanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDomainMaintenanceRequest, StartDomainMaintenanceResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { StartDomainMaintenanceRequest, StartDomainMaintenanceResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { StartDomainMaintenance } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/StartServiceSoftwareUpdateCommand.ts b/clients/client-opensearch/src/commands/StartServiceSoftwareUpdateCommand.ts index 2ce7bea1420b9..237074b1722a3 100644 --- a/clients/client-opensearch/src/commands/StartServiceSoftwareUpdateCommand.ts +++ b/clients/client-opensearch/src/commands/StartServiceSoftwareUpdateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartServiceSoftwareUpdateRequest, StartServiceSoftwareUpdateResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { StartServiceSoftwareUpdateRequest, StartServiceSoftwareUpdateResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { StartServiceSoftwareUpdate } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpdateApplicationCommand.ts b/clients/client-opensearch/src/commands/UpdateApplicationCommand.ts index e8541d022dec2..44c848a8c5f51 100644 --- a/clients/client-opensearch/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpdateDataSourceCommand.ts b/clients/client-opensearch/src/commands/UpdateDataSourceCommand.ts index ebe7fd6ceb3de..a70052ce033f4 100644 --- a/clients/client-opensearch/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpdateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpdateDirectQueryDataSourceCommand.ts b/clients/client-opensearch/src/commands/UpdateDirectQueryDataSourceCommand.ts index 73be2c2906f7c..1bb51d27dbb7a 100644 --- a/clients/client-opensearch/src/commands/UpdateDirectQueryDataSourceCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateDirectQueryDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDirectQueryDataSourceRequest, UpdateDirectQueryDataSourceResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpdateDirectQueryDataSourceRequest, UpdateDirectQueryDataSourceResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpdateDirectQueryDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpdateDomainConfigCommand.ts b/clients/client-opensearch/src/commands/UpdateDomainConfigCommand.ts index a9b3be54bd223..4d900987c03c0 100644 --- a/clients/client-opensearch/src/commands/UpdateDomainConfigCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateDomainConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainConfigRequest, UpdateDomainConfigResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpdateDomainConfigRequest, UpdateDomainConfigResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpdateDomainConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpdateIndexCommand.ts b/clients/client-opensearch/src/commands/UpdateIndexCommand.ts index b9bc7502b927c..1b8fd503edd3c 100644 --- a/clients/client-opensearch/src/commands/UpdateIndexCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIndexRequest, UpdateIndexResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpdateIndexRequest, UpdateIndexResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpdateIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpdatePackageCommand.ts b/clients/client-opensearch/src/commands/UpdatePackageCommand.ts index 1c3a0f2066e60..2f655dba867c1 100644 --- a/clients/client-opensearch/src/commands/UpdatePackageCommand.ts +++ b/clients/client-opensearch/src/commands/UpdatePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePackageRequest, UpdatePackageResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpdatePackageRequest, UpdatePackageResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpdatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpdatePackageScopeCommand.ts b/clients/client-opensearch/src/commands/UpdatePackageScopeCommand.ts index 25ef7ff7bcab7..98f5efbad8811 100644 --- a/clients/client-opensearch/src/commands/UpdatePackageScopeCommand.ts +++ b/clients/client-opensearch/src/commands/UpdatePackageScopeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePackageScopeRequest, UpdatePackageScopeResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpdatePackageScopeRequest, UpdatePackageScopeResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpdatePackageScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpdateScheduledActionCommand.ts b/clients/client-opensearch/src/commands/UpdateScheduledActionCommand.ts index 56aeca4a73754..df143544bad11 100644 --- a/clients/client-opensearch/src/commands/UpdateScheduledActionCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateScheduledActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScheduledActionRequest, UpdateScheduledActionResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpdateScheduledActionRequest, UpdateScheduledActionResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpdateScheduledAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpdateVpcEndpointCommand.ts b/clients/client-opensearch/src/commands/UpdateVpcEndpointCommand.ts index 9901610ed3de2..04c2a0b74c762 100644 --- a/clients/client-opensearch/src/commands/UpdateVpcEndpointCommand.ts +++ b/clients/client-opensearch/src/commands/UpdateVpcEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpdateVpcEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/commands/UpgradeDomainCommand.ts b/clients/client-opensearch/src/commands/UpgradeDomainCommand.ts index 45a4520ed0c79..3f755e7c422ac 100644 --- a/clients/client-opensearch/src/commands/UpgradeDomainCommand.ts +++ b/clients/client-opensearch/src/commands/UpgradeDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpgradeDomainRequest, UpgradeDomainResponse } from "../models/models_0"; -import { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; +import type { UpgradeDomainRequest, UpgradeDomainResponse } from "../models/models_0"; +import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; import { UpgradeDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-opensearch/src/endpoint/EndpointParameters.ts b/clients/client-opensearch/src/endpoint/EndpointParameters.ts index 4ee969bbf9d8b..51e59188f2b72 100644 --- a/clients/client-opensearch/src/endpoint/EndpointParameters.ts +++ b/clients/client-opensearch/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-opensearch/src/endpoint/endpointResolver.ts b/clients/client-opensearch/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-opensearch/src/endpoint/endpointResolver.ts +++ b/clients/client-opensearch/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-opensearch/src/extensionConfiguration.ts b/clients/client-opensearch/src/extensionConfiguration.ts index 21d3fe34b9ce9..df1bf8cf19519 100644 --- a/clients/client-opensearch/src/extensionConfiguration.ts +++ b/clients/client-opensearch/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-opensearch/src/models/OpenSearchServiceException.ts b/clients/client-opensearch/src/models/OpenSearchServiceException.ts index 244c411b5947f..16ed2b9114beb 100644 --- a/clients/client-opensearch/src/models/OpenSearchServiceException.ts +++ b/clients/client-opensearch/src/models/OpenSearchServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-opensearch/src/models/errors.ts b/clients/client-opensearch/src/models/errors.ts index 52e5e8685a627..58b1f876398b8 100644 --- a/clients/client-opensearch/src/models/errors.ts +++ b/clients/client-opensearch/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { OpenSearchServiceException as __BaseException } from "./OpenSearchServiceException"; diff --git a/clients/client-opensearch/src/pagination/DescribeDomainAutoTunesPaginator.ts b/clients/client-opensearch/src/pagination/DescribeDomainAutoTunesPaginator.ts index 8aa865f920793..905dee49c5733 100644 --- a/clients/client-opensearch/src/pagination/DescribeDomainAutoTunesPaginator.ts +++ b/clients/client-opensearch/src/pagination/DescribeDomainAutoTunesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDomainAutoTunesCommand, diff --git a/clients/client-opensearch/src/pagination/DescribeInboundConnectionsPaginator.ts b/clients/client-opensearch/src/pagination/DescribeInboundConnectionsPaginator.ts index ece8737e5dba3..22a64c2b81000 100644 --- a/clients/client-opensearch/src/pagination/DescribeInboundConnectionsPaginator.ts +++ b/clients/client-opensearch/src/pagination/DescribeInboundConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInboundConnectionsCommand, diff --git a/clients/client-opensearch/src/pagination/DescribeOutboundConnectionsPaginator.ts b/clients/client-opensearch/src/pagination/DescribeOutboundConnectionsPaginator.ts index 0d90b6e010c7c..da5aed1fba002 100644 --- a/clients/client-opensearch/src/pagination/DescribeOutboundConnectionsPaginator.ts +++ b/clients/client-opensearch/src/pagination/DescribeOutboundConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOutboundConnectionsCommand, diff --git a/clients/client-opensearch/src/pagination/DescribePackagesPaginator.ts b/clients/client-opensearch/src/pagination/DescribePackagesPaginator.ts index 96e3b1060f702..09cd5b135982f 100644 --- a/clients/client-opensearch/src/pagination/DescribePackagesPaginator.ts +++ b/clients/client-opensearch/src/pagination/DescribePackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePackagesCommand, diff --git a/clients/client-opensearch/src/pagination/DescribeReservedInstanceOfferingsPaginator.ts b/clients/client-opensearch/src/pagination/DescribeReservedInstanceOfferingsPaginator.ts index 0c924fd677e89..6a2830b804c63 100644 --- a/clients/client-opensearch/src/pagination/DescribeReservedInstanceOfferingsPaginator.ts +++ b/clients/client-opensearch/src/pagination/DescribeReservedInstanceOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedInstanceOfferingsCommand, diff --git a/clients/client-opensearch/src/pagination/DescribeReservedInstancesPaginator.ts b/clients/client-opensearch/src/pagination/DescribeReservedInstancesPaginator.ts index 935716f8d531b..952cc1eb1f55b 100644 --- a/clients/client-opensearch/src/pagination/DescribeReservedInstancesPaginator.ts +++ b/clients/client-opensearch/src/pagination/DescribeReservedInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedInstancesCommand, diff --git a/clients/client-opensearch/src/pagination/GetPackageVersionHistoryPaginator.ts b/clients/client-opensearch/src/pagination/GetPackageVersionHistoryPaginator.ts index 773a74ba9c662..0130c6f3cc0d6 100644 --- a/clients/client-opensearch/src/pagination/GetPackageVersionHistoryPaginator.ts +++ b/clients/client-opensearch/src/pagination/GetPackageVersionHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetPackageVersionHistoryCommand, diff --git a/clients/client-opensearch/src/pagination/GetUpgradeHistoryPaginator.ts b/clients/client-opensearch/src/pagination/GetUpgradeHistoryPaginator.ts index eb6468f2aa318..b969902aeb4c0 100644 --- a/clients/client-opensearch/src/pagination/GetUpgradeHistoryPaginator.ts +++ b/clients/client-opensearch/src/pagination/GetUpgradeHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetUpgradeHistoryCommand, diff --git a/clients/client-opensearch/src/pagination/Interfaces.ts b/clients/client-opensearch/src/pagination/Interfaces.ts index c3a04a3be4ad0..2b938380a8b39 100644 --- a/clients/client-opensearch/src/pagination/Interfaces.ts +++ b/clients/client-opensearch/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { OpenSearchClient } from "../OpenSearchClient"; diff --git a/clients/client-opensearch/src/pagination/ListApplicationsPaginator.ts b/clients/client-opensearch/src/pagination/ListApplicationsPaginator.ts index 231928ce8e816..6f394d0cfd90b 100644 --- a/clients/client-opensearch/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-opensearch/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-opensearch/src/pagination/ListDomainMaintenancesPaginator.ts b/clients/client-opensearch/src/pagination/ListDomainMaintenancesPaginator.ts index 201b2aecf5e04..ad37f9b5423f6 100644 --- a/clients/client-opensearch/src/pagination/ListDomainMaintenancesPaginator.ts +++ b/clients/client-opensearch/src/pagination/ListDomainMaintenancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainMaintenancesCommand, diff --git a/clients/client-opensearch/src/pagination/ListDomainsForPackagePaginator.ts b/clients/client-opensearch/src/pagination/ListDomainsForPackagePaginator.ts index a759ea3c6a28a..8eff7ae90967f 100644 --- a/clients/client-opensearch/src/pagination/ListDomainsForPackagePaginator.ts +++ b/clients/client-opensearch/src/pagination/ListDomainsForPackagePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainsForPackageCommand, diff --git a/clients/client-opensearch/src/pagination/ListInstanceTypeDetailsPaginator.ts b/clients/client-opensearch/src/pagination/ListInstanceTypeDetailsPaginator.ts index 2c2cde4b87d65..21b15baee62f6 100644 --- a/clients/client-opensearch/src/pagination/ListInstanceTypeDetailsPaginator.ts +++ b/clients/client-opensearch/src/pagination/ListInstanceTypeDetailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstanceTypeDetailsCommand, diff --git a/clients/client-opensearch/src/pagination/ListPackagesForDomainPaginator.ts b/clients/client-opensearch/src/pagination/ListPackagesForDomainPaginator.ts index ba0109822ce64..0cc82d1132b84 100644 --- a/clients/client-opensearch/src/pagination/ListPackagesForDomainPaginator.ts +++ b/clients/client-opensearch/src/pagination/ListPackagesForDomainPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPackagesForDomainCommand, diff --git a/clients/client-opensearch/src/pagination/ListScheduledActionsPaginator.ts b/clients/client-opensearch/src/pagination/ListScheduledActionsPaginator.ts index 0ac84b840cca8..c9f0af2cc889b 100644 --- a/clients/client-opensearch/src/pagination/ListScheduledActionsPaginator.ts +++ b/clients/client-opensearch/src/pagination/ListScheduledActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListScheduledActionsCommand, diff --git a/clients/client-opensearch/src/pagination/ListVersionsPaginator.ts b/clients/client-opensearch/src/pagination/ListVersionsPaginator.ts index c3740cf0630ae..2a3ed4c59113c 100644 --- a/clients/client-opensearch/src/pagination/ListVersionsPaginator.ts +++ b/clients/client-opensearch/src/pagination/ListVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVersionsCommand, diff --git a/clients/client-opensearch/src/runtimeConfig.browser.ts b/clients/client-opensearch/src/runtimeConfig.browser.ts index 01916c7e44f83..37a9ad2d2a082 100644 --- a/clients/client-opensearch/src/runtimeConfig.browser.ts +++ b/clients/client-opensearch/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OpenSearchClientConfig } from "./OpenSearchClient"; + +import type { OpenSearchClientConfig } from "./OpenSearchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-opensearch/src/runtimeConfig.native.ts b/clients/client-opensearch/src/runtimeConfig.native.ts index 77145abee3b7d..48c79d5c08a45 100644 --- a/clients/client-opensearch/src/runtimeConfig.native.ts +++ b/clients/client-opensearch/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { OpenSearchClientConfig } from "./OpenSearchClient"; +import type { OpenSearchClientConfig } from "./OpenSearchClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-opensearch/src/runtimeConfig.shared.ts b/clients/client-opensearch/src/runtimeConfig.shared.ts index e9b76bf6cfa0b..6ddc41ff76ff5 100644 --- a/clients/client-opensearch/src/runtimeConfig.shared.ts +++ b/clients/client-opensearch/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultOpenSearchHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { OpenSearchClientConfig } from "./OpenSearchClient"; +import type { OpenSearchClientConfig } from "./OpenSearchClient"; /** * @internal diff --git a/clients/client-opensearch/src/runtimeConfig.ts b/clients/client-opensearch/src/runtimeConfig.ts index c6d4e01b93bf0..5a8c8061a5602 100644 --- a/clients/client-opensearch/src/runtimeConfig.ts +++ b/clients/client-opensearch/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OpenSearchClientConfig } from "./OpenSearchClient"; + +import type { OpenSearchClientConfig } from "./OpenSearchClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-opensearch/src/runtimeExtensions.ts b/clients/client-opensearch/src/runtimeExtensions.ts index 68d25fffd0d3e..f9dc85a93c90f 100644 --- a/clients/client-opensearch/src/runtimeExtensions.ts +++ b/clients/client-opensearch/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { OpenSearchExtensionConfiguration } from "./extensionConfiguration"; +import type { OpenSearchExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-opensearch/src/schemas/schemas_0.ts b/clients/client-opensearch/src/schemas/schemas_0.ts index 8ce17d13c4504..f3b5e729787b3 100644 --- a/clients/client-opensearch/src/schemas/schemas_0.ts +++ b/clients/client-opensearch/src/schemas/schemas_0.ts @@ -777,7 +777,7 @@ const n0 = "com.amazonaws.opensearch"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-opensearchserverless/package.json b/clients/client-opensearchserverless/package.json index 0b490925c8033..cd57374e6a695 100644 --- a/clients/client-opensearchserverless/package.json +++ b/clients/client-opensearchserverless/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-opensearchserverless/src/OpenSearchServerless.ts b/clients/client-opensearchserverless/src/OpenSearchServerless.ts index d7b595810b9cf..f55ad5363bad7 100644 --- a/clients/client-opensearchserverless/src/OpenSearchServerless.ts +++ b/clients/client-opensearchserverless/src/OpenSearchServerless.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetCollectionCommand, @@ -187,7 +187,7 @@ import { UpdateVpcEndpointCommandInput, UpdateVpcEndpointCommandOutput, } from "./commands/UpdateVpcEndpointCommand"; -import { OpenSearchServerlessClient, OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient"; +import { OpenSearchServerlessClient } from "./OpenSearchServerlessClient"; const commands = { BatchGetCollectionCommand, diff --git a/clients/client-opensearchserverless/src/OpenSearchServerlessClient.ts b/clients/client-opensearchserverless/src/OpenSearchServerlessClient.ts index 8653a65300ba9..e216c815aa6ea 100644 --- a/clients/client-opensearchserverless/src/OpenSearchServerlessClient.ts +++ b/clients/client-opensearchserverless/src/OpenSearchServerlessClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultOpenSearchServerlessHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetCollectionCommandInput, BatchGetCollectionCommandOutput } from "./commands/BatchGetCollectionCommand"; @@ -156,7 +165,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-opensearchserverless/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-opensearchserverless/src/auth/httpAuthExtensionConfiguration.ts index bf2581a35382d..d8b6245cdc87a 100644 --- a/clients/client-opensearchserverless/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-opensearchserverless/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { OpenSearchServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { OpenSearchServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-opensearchserverless/src/auth/httpAuthSchemeProvider.ts b/clients/client-opensearchserverless/src/auth/httpAuthSchemeProvider.ts index aae3a0ae39afa..6bac702074ceb 100644 --- a/clients/client-opensearchserverless/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-opensearchserverless/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type OpenSearchServerlessClientResolvedConfig, OpenSearchServerlessClientConfig, - OpenSearchServerlessClientResolvedConfig, } from "../OpenSearchServerlessClient"; /** diff --git a/clients/client-opensearchserverless/src/commands/BatchGetCollectionCommand.ts b/clients/client-opensearchserverless/src/commands/BatchGetCollectionCommand.ts index 5edd28dc8a637..24b6363e05546 100644 --- a/clients/client-opensearchserverless/src/commands/BatchGetCollectionCommand.ts +++ b/clients/client-opensearchserverless/src/commands/BatchGetCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetCollectionRequest, BatchGetCollectionResponse } from "../models/models_0"; -import { +import type { BatchGetCollectionRequest, BatchGetCollectionResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/BatchGetEffectiveLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/BatchGetEffectiveLifecyclePolicyCommand.ts index 37b92c4049fdc..56072603b8e28 100644 --- a/clients/client-opensearchserverless/src/commands/BatchGetEffectiveLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/BatchGetEffectiveLifecyclePolicyCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetEffectiveLifecyclePolicyRequest, BatchGetEffectiveLifecyclePolicyResponse } from "../models/models_0"; -import { +import type { + BatchGetEffectiveLifecyclePolicyRequest, + BatchGetEffectiveLifecyclePolicyResponse, +} from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/BatchGetLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/BatchGetLifecyclePolicyCommand.ts index 0928edda96200..2f81a8fd447e9 100644 --- a/clients/client-opensearchserverless/src/commands/BatchGetLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/BatchGetLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetLifecyclePolicyRequest, BatchGetLifecyclePolicyResponse } from "../models/models_0"; -import { +import type { BatchGetLifecyclePolicyRequest, BatchGetLifecyclePolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/BatchGetVpcEndpointCommand.ts b/clients/client-opensearchserverless/src/commands/BatchGetVpcEndpointCommand.ts index 24e02fdfe0599..338b92a5a1cac 100644 --- a/clients/client-opensearchserverless/src/commands/BatchGetVpcEndpointCommand.ts +++ b/clients/client-opensearchserverless/src/commands/BatchGetVpcEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetVpcEndpointRequest, BatchGetVpcEndpointResponse } from "../models/models_0"; -import { +import type { BatchGetVpcEndpointRequest, BatchGetVpcEndpointResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/CreateAccessPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/CreateAccessPolicyCommand.ts index 4a40709746617..3e4a13ddbd609 100644 --- a/clients/client-opensearchserverless/src/commands/CreateAccessPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessPolicyRequest, CreateAccessPolicyResponse } from "../models/models_0"; -import { +import type { CreateAccessPolicyRequest, CreateAccessPolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/CreateCollectionCommand.ts b/clients/client-opensearchserverless/src/commands/CreateCollectionCommand.ts index d13b6a454dc7d..7d90d18d37c33 100644 --- a/clients/client-opensearchserverless/src/commands/CreateCollectionCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCollectionRequest, CreateCollectionResponse } from "../models/models_0"; -import { +import type { CreateCollectionRequest, CreateCollectionResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/CreateIndexCommand.ts b/clients/client-opensearchserverless/src/commands/CreateIndexCommand.ts index 5902d3398692a..0935767b44c26 100644 --- a/clients/client-opensearchserverless/src/commands/CreateIndexCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; -import { +import type { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/CreateLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/CreateLifecyclePolicyCommand.ts index adcc9a1466b11..e70810c00acc5 100644 --- a/clients/client-opensearchserverless/src/commands/CreateLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLifecyclePolicyRequest, CreateLifecyclePolicyResponse } from "../models/models_0"; -import { +import type { CreateLifecyclePolicyRequest, CreateLifecyclePolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/CreateSecurityConfigCommand.ts b/clients/client-opensearchserverless/src/commands/CreateSecurityConfigCommand.ts index c4046ed17ee64..ecb13f19eca89 100644 --- a/clients/client-opensearchserverless/src/commands/CreateSecurityConfigCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateSecurityConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSecurityConfigRequest, CreateSecurityConfigResponse } from "../models/models_0"; -import { +import type { CreateSecurityConfigRequest, CreateSecurityConfigResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/CreateSecurityPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/CreateSecurityPolicyCommand.ts index 960984f7b505d..400f32f5e6877 100644 --- a/clients/client-opensearchserverless/src/commands/CreateSecurityPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateSecurityPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSecurityPolicyRequest, CreateSecurityPolicyResponse } from "../models/models_0"; -import { +import type { CreateSecurityPolicyRequest, CreateSecurityPolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/CreateVpcEndpointCommand.ts b/clients/client-opensearchserverless/src/commands/CreateVpcEndpointCommand.ts index f5591e18ad739..e97325ec84c92 100644 --- a/clients/client-opensearchserverless/src/commands/CreateVpcEndpointCommand.ts +++ b/clients/client-opensearchserverless/src/commands/CreateVpcEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVpcEndpointRequest, CreateVpcEndpointResponse } from "../models/models_0"; -import { +import type { CreateVpcEndpointRequest, CreateVpcEndpointResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/DeleteAccessPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteAccessPolicyCommand.ts index ae1c8bcd75532..57d60ba496cbf 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteAccessPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessPolicyRequest, DeleteAccessPolicyResponse } from "../models/models_0"; -import { +import type { DeleteAccessPolicyRequest, DeleteAccessPolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/DeleteCollectionCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteCollectionCommand.ts index c255577ee7543..5236f07ff73c5 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteCollectionCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCollectionRequest, DeleteCollectionResponse } from "../models/models_0"; -import { +import type { DeleteCollectionRequest, DeleteCollectionResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/DeleteIndexCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteIndexCommand.ts index 5e0ceef59482a..07ccea982bdc2 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteIndexCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIndexRequest, DeleteIndexResponse } from "../models/models_0"; -import { +import type { DeleteIndexRequest, DeleteIndexResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/DeleteLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteLifecyclePolicyCommand.ts index 320713268d276..87091976aee13 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0"; -import { +import type { DeleteLifecyclePolicyRequest, DeleteLifecyclePolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/DeleteSecurityConfigCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteSecurityConfigCommand.ts index 032c4b29be7fd..584156480d93a 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteSecurityConfigCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteSecurityConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSecurityConfigRequest, DeleteSecurityConfigResponse } from "../models/models_0"; -import { +import type { DeleteSecurityConfigRequest, DeleteSecurityConfigResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/DeleteSecurityPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteSecurityPolicyCommand.ts index 86c11a1de6d0c..14e9539b0b0da 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteSecurityPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteSecurityPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSecurityPolicyRequest, DeleteSecurityPolicyResponse } from "../models/models_0"; -import { +import type { DeleteSecurityPolicyRequest, DeleteSecurityPolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/DeleteVpcEndpointCommand.ts b/clients/client-opensearchserverless/src/commands/DeleteVpcEndpointCommand.ts index e0e59c5435019..4bd91b56e2f13 100644 --- a/clients/client-opensearchserverless/src/commands/DeleteVpcEndpointCommand.ts +++ b/clients/client-opensearchserverless/src/commands/DeleteVpcEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVpcEndpointRequest, DeleteVpcEndpointResponse } from "../models/models_0"; -import { +import type { DeleteVpcEndpointRequest, DeleteVpcEndpointResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/GetAccessPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/GetAccessPolicyCommand.ts index 8407c35215690..e9cbd127c1df3 100644 --- a/clients/client-opensearchserverless/src/commands/GetAccessPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessPolicyRequest, GetAccessPolicyResponse } from "../models/models_0"; -import { +import type { GetAccessPolicyRequest, GetAccessPolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/GetAccountSettingsCommand.ts b/clients/client-opensearchserverless/src/commands/GetAccountSettingsCommand.ts index bbf98b5d5f1c3..50cbe97b66e87 100644 --- a/clients/client-opensearchserverless/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0"; -import { +import type { GetAccountSettingsRequest, GetAccountSettingsResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/GetIndexCommand.ts b/clients/client-opensearchserverless/src/commands/GetIndexCommand.ts index 8cccecfec45a1..6ebff4112d477 100644 --- a/clients/client-opensearchserverless/src/commands/GetIndexCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIndexRequest, GetIndexResponse } from "../models/models_0"; -import { +import type { GetIndexRequest, GetIndexResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/GetPoliciesStatsCommand.ts b/clients/client-opensearchserverless/src/commands/GetPoliciesStatsCommand.ts index cf751e5524a48..d8ea755bb7ba9 100644 --- a/clients/client-opensearchserverless/src/commands/GetPoliciesStatsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetPoliciesStatsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPoliciesStatsRequest, GetPoliciesStatsResponse } from "../models/models_0"; -import { +import type { GetPoliciesStatsRequest, GetPoliciesStatsResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/GetSecurityConfigCommand.ts b/clients/client-opensearchserverless/src/commands/GetSecurityConfigCommand.ts index a3f694042df77..582bfe3f63060 100644 --- a/clients/client-opensearchserverless/src/commands/GetSecurityConfigCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetSecurityConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSecurityConfigRequest, GetSecurityConfigResponse } from "../models/models_0"; -import { +import type { GetSecurityConfigRequest, GetSecurityConfigResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/GetSecurityPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/GetSecurityPolicyCommand.ts index 1595e82fdc7cd..af8a9c2d2f3ef 100644 --- a/clients/client-opensearchserverless/src/commands/GetSecurityPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/GetSecurityPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSecurityPolicyRequest, GetSecurityPolicyResponse } from "../models/models_0"; -import { +import type { GetSecurityPolicyRequest, GetSecurityPolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/ListAccessPoliciesCommand.ts b/clients/client-opensearchserverless/src/commands/ListAccessPoliciesCommand.ts index e3a74a83154b2..e0e3498269bd2 100644 --- a/clients/client-opensearchserverless/src/commands/ListAccessPoliciesCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListAccessPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessPoliciesRequest, ListAccessPoliciesResponse } from "../models/models_0"; -import { +import type { ListAccessPoliciesRequest, ListAccessPoliciesResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/ListCollectionsCommand.ts b/clients/client-opensearchserverless/src/commands/ListCollectionsCommand.ts index cb1bda4b404f3..1bcfe20932381 100644 --- a/clients/client-opensearchserverless/src/commands/ListCollectionsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListCollectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCollectionsRequest, ListCollectionsResponse } from "../models/models_0"; -import { +import type { ListCollectionsRequest, ListCollectionsResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/ListLifecyclePoliciesCommand.ts b/clients/client-opensearchserverless/src/commands/ListLifecyclePoliciesCommand.ts index 7e3a4c64790d9..3dd974c225989 100644 --- a/clients/client-opensearchserverless/src/commands/ListLifecyclePoliciesCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListLifecyclePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLifecyclePoliciesRequest, ListLifecyclePoliciesResponse } from "../models/models_0"; -import { +import type { ListLifecyclePoliciesRequest, ListLifecyclePoliciesResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/ListSecurityConfigsCommand.ts b/clients/client-opensearchserverless/src/commands/ListSecurityConfigsCommand.ts index dffb8d64429fa..df4ef7ae60fbb 100644 --- a/clients/client-opensearchserverless/src/commands/ListSecurityConfigsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListSecurityConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityConfigsRequest, ListSecurityConfigsResponse } from "../models/models_0"; -import { +import type { ListSecurityConfigsRequest, ListSecurityConfigsResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/ListSecurityPoliciesCommand.ts b/clients/client-opensearchserverless/src/commands/ListSecurityPoliciesCommand.ts index 88db2be8a4698..b0ef5d3d17e15 100644 --- a/clients/client-opensearchserverless/src/commands/ListSecurityPoliciesCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListSecurityPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityPoliciesRequest, ListSecurityPoliciesResponse } from "../models/models_0"; -import { +import type { ListSecurityPoliciesRequest, ListSecurityPoliciesResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/ListTagsForResourceCommand.ts b/clients/client-opensearchserverless/src/commands/ListTagsForResourceCommand.ts index c2738bdb21fa5..1f61c0c4d94fd 100644 --- a/clients/client-opensearchserverless/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/ListVpcEndpointsCommand.ts b/clients/client-opensearchserverless/src/commands/ListVpcEndpointsCommand.ts index 78c558fbd3e97..69bba1f358ee1 100644 --- a/clients/client-opensearchserverless/src/commands/ListVpcEndpointsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/ListVpcEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVpcEndpointsRequest, ListVpcEndpointsResponse } from "../models/models_0"; -import { +import type { ListVpcEndpointsRequest, ListVpcEndpointsResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/TagResourceCommand.ts b/clients/client-opensearchserverless/src/commands/TagResourceCommand.ts index 5328761c38217..be94576f4ba13 100644 --- a/clients/client-opensearchserverless/src/commands/TagResourceCommand.ts +++ b/clients/client-opensearchserverless/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/UntagResourceCommand.ts b/clients/client-opensearchserverless/src/commands/UntagResourceCommand.ts index e2a6051cfdf69..4f6d6c00badbe 100644 --- a/clients/client-opensearchserverless/src/commands/UntagResourceCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/UpdateAccessPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateAccessPolicyCommand.ts index 3b30d4b113631..360635422eafb 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateAccessPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateAccessPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccessPolicyRequest, UpdateAccessPolicyResponse } from "../models/models_0"; -import { +import type { UpdateAccessPolicyRequest, UpdateAccessPolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateAccountSettingsCommand.ts index ac3189ae91e7d..0ad39bc6012f8 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountSettingsRequest, UpdateAccountSettingsResponse } from "../models/models_0"; -import { +import type { UpdateAccountSettingsRequest, UpdateAccountSettingsResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/UpdateCollectionCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateCollectionCommand.ts index fa12cbc29bd6e..78ae8ac48b0e5 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateCollectionCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCollectionRequest, UpdateCollectionResponse } from "../models/models_0"; -import { +import type { UpdateCollectionRequest, UpdateCollectionResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/UpdateIndexCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateIndexCommand.ts index 0589a91dcb151..42677f2625b99 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateIndexCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIndexRequest, UpdateIndexResponse } from "../models/models_0"; -import { +import type { UpdateIndexRequest, UpdateIndexResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/UpdateLifecyclePolicyCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateLifecyclePolicyCommand.ts index 90ef6f41678a7..b2f5547ca3166 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateLifecyclePolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateLifecyclePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLifecyclePolicyRequest, UpdateLifecyclePolicyResponse } from "../models/models_0"; -import { +import type { UpdateLifecyclePolicyRequest, UpdateLifecyclePolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/UpdateSecurityConfigCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateSecurityConfigCommand.ts index 462cfd8a6bdee..0189146a8ddee 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateSecurityConfigCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateSecurityConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSecurityConfigRequest, UpdateSecurityConfigResponse } from "../models/models_0"; -import { +import type { UpdateSecurityConfigRequest, UpdateSecurityConfigResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/UpdateSecurityPolicyCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateSecurityPolicyCommand.ts index ec42827ccacd3..e3c82d13a18d7 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateSecurityPolicyCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateSecurityPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSecurityPolicyRequest, UpdateSecurityPolicyResponse } from "../models/models_0"; -import { +import type { UpdateSecurityPolicyRequest, UpdateSecurityPolicyResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/commands/UpdateVpcEndpointCommand.ts b/clients/client-opensearchserverless/src/commands/UpdateVpcEndpointCommand.ts index af709838c5030..8cdd4b628d6ff 100644 --- a/clients/client-opensearchserverless/src/commands/UpdateVpcEndpointCommand.ts +++ b/clients/client-opensearchserverless/src/commands/UpdateVpcEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/models_0"; -import { +import type { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/models_0"; +import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-opensearchserverless/src/endpoint/EndpointParameters.ts b/clients/client-opensearchserverless/src/endpoint/EndpointParameters.ts index dbeabd2b2598e..a794800e8f1d1 100644 --- a/clients/client-opensearchserverless/src/endpoint/EndpointParameters.ts +++ b/clients/client-opensearchserverless/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-opensearchserverless/src/endpoint/endpointResolver.ts b/clients/client-opensearchserverless/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-opensearchserverless/src/endpoint/endpointResolver.ts +++ b/clients/client-opensearchserverless/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-opensearchserverless/src/extensionConfiguration.ts b/clients/client-opensearchserverless/src/extensionConfiguration.ts index 25eed5ae768fc..fdddb691f12dd 100644 --- a/clients/client-opensearchserverless/src/extensionConfiguration.ts +++ b/clients/client-opensearchserverless/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-opensearchserverless/src/models/OpenSearchServerlessServiceException.ts b/clients/client-opensearchserverless/src/models/OpenSearchServerlessServiceException.ts index 9074068627adc..0d4f45bb266c2 100644 --- a/clients/client-opensearchserverless/src/models/OpenSearchServerlessServiceException.ts +++ b/clients/client-opensearchserverless/src/models/OpenSearchServerlessServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-opensearchserverless/src/models/errors.ts b/clients/client-opensearchserverless/src/models/errors.ts index d1723be12e6c6..8473ebe186bdb 100644 --- a/clients/client-opensearchserverless/src/models/errors.ts +++ b/clients/client-opensearchserverless/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { OpenSearchServerlessServiceException as __BaseException } from "./OpenSearchServerlessServiceException"; diff --git a/clients/client-opensearchserverless/src/pagination/Interfaces.ts b/clients/client-opensearchserverless/src/pagination/Interfaces.ts index 74406b1d6b5e5..e4007ee4886a9 100644 --- a/clients/client-opensearchserverless/src/pagination/Interfaces.ts +++ b/clients/client-opensearchserverless/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { OpenSearchServerlessClient } from "../OpenSearchServerlessClient"; diff --git a/clients/client-opensearchserverless/src/pagination/ListAccessPoliciesPaginator.ts b/clients/client-opensearchserverless/src/pagination/ListAccessPoliciesPaginator.ts index 843c42a6c11ca..887009b686e4d 100644 --- a/clients/client-opensearchserverless/src/pagination/ListAccessPoliciesPaginator.ts +++ b/clients/client-opensearchserverless/src/pagination/ListAccessPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessPoliciesCommand, diff --git a/clients/client-opensearchserverless/src/pagination/ListCollectionsPaginator.ts b/clients/client-opensearchserverless/src/pagination/ListCollectionsPaginator.ts index 3e5b2e9a0d6d5..baae8c775a44a 100644 --- a/clients/client-opensearchserverless/src/pagination/ListCollectionsPaginator.ts +++ b/clients/client-opensearchserverless/src/pagination/ListCollectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCollectionsCommand, diff --git a/clients/client-opensearchserverless/src/pagination/ListLifecyclePoliciesPaginator.ts b/clients/client-opensearchserverless/src/pagination/ListLifecyclePoliciesPaginator.ts index d2d9dee71cb79..d3c218c07de33 100644 --- a/clients/client-opensearchserverless/src/pagination/ListLifecyclePoliciesPaginator.ts +++ b/clients/client-opensearchserverless/src/pagination/ListLifecyclePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLifecyclePoliciesCommand, diff --git a/clients/client-opensearchserverless/src/pagination/ListSecurityConfigsPaginator.ts b/clients/client-opensearchserverless/src/pagination/ListSecurityConfigsPaginator.ts index 3f46f77ffe30c..4d8dbef36d9f9 100644 --- a/clients/client-opensearchserverless/src/pagination/ListSecurityConfigsPaginator.ts +++ b/clients/client-opensearchserverless/src/pagination/ListSecurityConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityConfigsCommand, diff --git a/clients/client-opensearchserverless/src/pagination/ListSecurityPoliciesPaginator.ts b/clients/client-opensearchserverless/src/pagination/ListSecurityPoliciesPaginator.ts index 9e9c82dff2438..8ad09f421aeeb 100644 --- a/clients/client-opensearchserverless/src/pagination/ListSecurityPoliciesPaginator.ts +++ b/clients/client-opensearchserverless/src/pagination/ListSecurityPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityPoliciesCommand, diff --git a/clients/client-opensearchserverless/src/pagination/ListVpcEndpointsPaginator.ts b/clients/client-opensearchserverless/src/pagination/ListVpcEndpointsPaginator.ts index 47ef0760ae30b..ad84b6a5860c2 100644 --- a/clients/client-opensearchserverless/src/pagination/ListVpcEndpointsPaginator.ts +++ b/clients/client-opensearchserverless/src/pagination/ListVpcEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVpcEndpointsCommand, diff --git a/clients/client-opensearchserverless/src/runtimeConfig.browser.ts b/clients/client-opensearchserverless/src/runtimeConfig.browser.ts index ed1b6fae11991..475fa2b7ef155 100644 --- a/clients/client-opensearchserverless/src/runtimeConfig.browser.ts +++ b/clients/client-opensearchserverless/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient"; + +import type { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-opensearchserverless/src/runtimeConfig.native.ts b/clients/client-opensearchserverless/src/runtimeConfig.native.ts index 80b4ecda7a580..ded3b2bc5e788 100644 --- a/clients/client-opensearchserverless/src/runtimeConfig.native.ts +++ b/clients/client-opensearchserverless/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient"; +import type { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-opensearchserverless/src/runtimeConfig.shared.ts b/clients/client-opensearchserverless/src/runtimeConfig.shared.ts index 7b1d647e713f9..77197a77102f3 100644 --- a/clients/client-opensearchserverless/src/runtimeConfig.shared.ts +++ b/clients/client-opensearchserverless/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultOpenSearchServerlessHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient"; +import type { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient"; /** * @internal diff --git a/clients/client-opensearchserverless/src/runtimeConfig.ts b/clients/client-opensearchserverless/src/runtimeConfig.ts index c715bd5c66be7..bc1e729950b10 100644 --- a/clients/client-opensearchserverless/src/runtimeConfig.ts +++ b/clients/client-opensearchserverless/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient"; + +import type { OpenSearchServerlessClientConfig } from "./OpenSearchServerlessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-opensearchserverless/src/runtimeExtensions.ts b/clients/client-opensearchserverless/src/runtimeExtensions.ts index fb2b6aefd0378..a3b22b70cdbec 100644 --- a/clients/client-opensearchserverless/src/runtimeExtensions.ts +++ b/clients/client-opensearchserverless/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { OpenSearchServerlessExtensionConfiguration } from "./extensionConfiguration"; +import type { OpenSearchServerlessExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-opensearchserverless/src/schemas/schemas_0.ts b/clients/client-opensearchserverless/src/schemas/schemas_0.ts index 6026f597c033c..027eebaf6f955 100644 --- a/clients/client-opensearchserverless/src/schemas/schemas_0.ts +++ b/clients/client-opensearchserverless/src/schemas/schemas_0.ts @@ -292,7 +292,7 @@ const n0 = "com.amazonaws.opensearchserverless"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ConflictException as __ConflictException, diff --git a/clients/client-organizations/package.json b/clients/client-organizations/package.json index ba72825923aee..ebda8b8d6df93 100644 --- a/clients/client-organizations/package.json +++ b/clients/client-organizations/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-organizations/src/Organizations.ts b/clients/client-organizations/src/Organizations.ts index 51958ff9f2785..80192c6ca6cbd 100644 --- a/clients/client-organizations/src/Organizations.ts +++ b/clients/client-organizations/src/Organizations.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptHandshakeCommand, @@ -301,7 +301,7 @@ import { UpdateResponsibilityTransferCommandInput, UpdateResponsibilityTransferCommandOutput, } from "./commands/UpdateResponsibilityTransferCommand"; -import { OrganizationsClient, OrganizationsClientConfig } from "./OrganizationsClient"; +import { OrganizationsClient } from "./OrganizationsClient"; const commands = { AcceptHandshakeCommand, diff --git a/clients/client-organizations/src/OrganizationsClient.ts b/clients/client-organizations/src/OrganizationsClient.ts index fb84ca0c2b1f1..a856f76ca442c 100644 --- a/clients/client-organizations/src/OrganizationsClient.ts +++ b/clients/client-organizations/src/OrganizationsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultOrganizationsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptHandshakeCommandInput, AcceptHandshakeCommandOutput } from "./commands/AcceptHandshakeCommand"; @@ -232,7 +241,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-organizations/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-organizations/src/auth/httpAuthExtensionConfiguration.ts index 42a9ce727a48c..fed541b92500e 100644 --- a/clients/client-organizations/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-organizations/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { OrganizationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { OrganizationsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-organizations/src/auth/httpAuthSchemeProvider.ts b/clients/client-organizations/src/auth/httpAuthSchemeProvider.ts index 205fe70c2b51c..712ed8df03429 100644 --- a/clients/client-organizations/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-organizations/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { OrganizationsClientConfig, OrganizationsClientResolvedConfig } from "../OrganizationsClient"; +import { type OrganizationsClientResolvedConfig, OrganizationsClientConfig } from "../OrganizationsClient"; /** * @internal diff --git a/clients/client-organizations/src/commands/AcceptHandshakeCommand.ts b/clients/client-organizations/src/commands/AcceptHandshakeCommand.ts index 77a82b06d34b6..0386dff63c06e 100644 --- a/clients/client-organizations/src/commands/AcceptHandshakeCommand.ts +++ b/clients/client-organizations/src/commands/AcceptHandshakeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptHandshakeRequest, AcceptHandshakeResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { AcceptHandshakeRequest, AcceptHandshakeResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { AcceptHandshake } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/AttachPolicyCommand.ts b/clients/client-organizations/src/commands/AttachPolicyCommand.ts index 8d11a21916fec..5b9417fb82432 100644 --- a/clients/client-organizations/src/commands/AttachPolicyCommand.ts +++ b/clients/client-organizations/src/commands/AttachPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachPolicyRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { AttachPolicyRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { AttachPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/CancelHandshakeCommand.ts b/clients/client-organizations/src/commands/CancelHandshakeCommand.ts index a336d2db96f24..62897a4322ffa 100644 --- a/clients/client-organizations/src/commands/CancelHandshakeCommand.ts +++ b/clients/client-organizations/src/commands/CancelHandshakeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelHandshakeRequest, CancelHandshakeResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { CancelHandshakeRequest, CancelHandshakeResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { CancelHandshake } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/CloseAccountCommand.ts b/clients/client-organizations/src/commands/CloseAccountCommand.ts index 75ead22468ef9..c37b4a2107a7f 100644 --- a/clients/client-organizations/src/commands/CloseAccountCommand.ts +++ b/clients/client-organizations/src/commands/CloseAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CloseAccountRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { CloseAccountRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { CloseAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/CreateAccountCommand.ts b/clients/client-organizations/src/commands/CreateAccountCommand.ts index bfa29826d6d5e..e2d0a41d28bf0 100644 --- a/clients/client-organizations/src/commands/CreateAccountCommand.ts +++ b/clients/client-organizations/src/commands/CreateAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccountRequest, CreateAccountResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { CreateAccountRequest, CreateAccountResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { CreateAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/CreateGovCloudAccountCommand.ts b/clients/client-organizations/src/commands/CreateGovCloudAccountCommand.ts index 088890ee6f903..6c18b5d81e535 100644 --- a/clients/client-organizations/src/commands/CreateGovCloudAccountCommand.ts +++ b/clients/client-organizations/src/commands/CreateGovCloudAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGovCloudAccountRequest, CreateGovCloudAccountResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { CreateGovCloudAccountRequest, CreateGovCloudAccountResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { CreateGovCloudAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/CreateOrganizationCommand.ts b/clients/client-organizations/src/commands/CreateOrganizationCommand.ts index a6809228c6c40..9f4c919ed8d51 100644 --- a/clients/client-organizations/src/commands/CreateOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/CreateOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOrganizationRequest, CreateOrganizationResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { CreateOrganizationRequest, CreateOrganizationResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { CreateOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/CreateOrganizationalUnitCommand.ts b/clients/client-organizations/src/commands/CreateOrganizationalUnitCommand.ts index 76697607889b6..815df29bae68c 100644 --- a/clients/client-organizations/src/commands/CreateOrganizationalUnitCommand.ts +++ b/clients/client-organizations/src/commands/CreateOrganizationalUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOrganizationalUnitRequest, CreateOrganizationalUnitResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { CreateOrganizationalUnitRequest, CreateOrganizationalUnitResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { CreateOrganizationalUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/CreatePolicyCommand.ts b/clients/client-organizations/src/commands/CreatePolicyCommand.ts index 3a1e1dc8e54bd..ff8c448c5a361 100644 --- a/clients/client-organizations/src/commands/CreatePolicyCommand.ts +++ b/clients/client-organizations/src/commands/CreatePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { CreatePolicyRequest, CreatePolicyResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { CreatePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DeclineHandshakeCommand.ts b/clients/client-organizations/src/commands/DeclineHandshakeCommand.ts index 211098e98c879..3b593471de830 100644 --- a/clients/client-organizations/src/commands/DeclineHandshakeCommand.ts +++ b/clients/client-organizations/src/commands/DeclineHandshakeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeclineHandshakeRequest, DeclineHandshakeResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DeclineHandshakeRequest, DeclineHandshakeResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DeclineHandshake } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DeleteOrganizationCommand.ts b/clients/client-organizations/src/commands/DeleteOrganizationCommand.ts index 2f58bf5bd0348..bee81228acfe6 100644 --- a/clients/client-organizations/src/commands/DeleteOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/DeleteOrganizationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DeleteOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DeleteOrganizationalUnitCommand.ts b/clients/client-organizations/src/commands/DeleteOrganizationalUnitCommand.ts index e02fc0f5de3af..e75878ddf49ee 100644 --- a/clients/client-organizations/src/commands/DeleteOrganizationalUnitCommand.ts +++ b/clients/client-organizations/src/commands/DeleteOrganizationalUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOrganizationalUnitRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DeleteOrganizationalUnitRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DeleteOrganizationalUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DeletePolicyCommand.ts b/clients/client-organizations/src/commands/DeletePolicyCommand.ts index 59c73c34d4b2d..8b508cfee12c6 100644 --- a/clients/client-organizations/src/commands/DeletePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DeletePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePolicyRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DeletePolicyRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DeletePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-organizations/src/commands/DeleteResourcePolicyCommand.ts index b2f954592d9c2..90b5e60bcc327 100644 --- a/clients/client-organizations/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DeleteResourcePolicyCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DeregisterDelegatedAdministratorCommand.ts b/clients/client-organizations/src/commands/DeregisterDelegatedAdministratorCommand.ts index 54728cde75cdf..551cbc1fb4a93 100644 --- a/clients/client-organizations/src/commands/DeregisterDelegatedAdministratorCommand.ts +++ b/clients/client-organizations/src/commands/DeregisterDelegatedAdministratorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterDelegatedAdministratorRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DeregisterDelegatedAdministratorRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DeregisterDelegatedAdministrator } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DescribeAccountCommand.ts b/clients/client-organizations/src/commands/DescribeAccountCommand.ts index b76318b1399a7..ebb0817424b68 100644 --- a/clients/client-organizations/src/commands/DescribeAccountCommand.ts +++ b/clients/client-organizations/src/commands/DescribeAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountRequest, DescribeAccountResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DescribeAccountRequest, DescribeAccountResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DescribeAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DescribeCreateAccountStatusCommand.ts b/clients/client-organizations/src/commands/DescribeCreateAccountStatusCommand.ts index cf12e2ef31af5..0978b7a5e39f6 100644 --- a/clients/client-organizations/src/commands/DescribeCreateAccountStatusCommand.ts +++ b/clients/client-organizations/src/commands/DescribeCreateAccountStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCreateAccountStatusRequest, DescribeCreateAccountStatusResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DescribeCreateAccountStatusRequest, DescribeCreateAccountStatusResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DescribeCreateAccountStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DescribeEffectivePolicyCommand.ts b/clients/client-organizations/src/commands/DescribeEffectivePolicyCommand.ts index a888cc6c4809c..9cfff31b562a9 100644 --- a/clients/client-organizations/src/commands/DescribeEffectivePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DescribeEffectivePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEffectivePolicyRequest, DescribeEffectivePolicyResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DescribeEffectivePolicyRequest, DescribeEffectivePolicyResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DescribeEffectivePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DescribeHandshakeCommand.ts b/clients/client-organizations/src/commands/DescribeHandshakeCommand.ts index c5b12833c4177..cc283710f2c0a 100644 --- a/clients/client-organizations/src/commands/DescribeHandshakeCommand.ts +++ b/clients/client-organizations/src/commands/DescribeHandshakeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHandshakeRequest, DescribeHandshakeResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DescribeHandshakeRequest, DescribeHandshakeResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DescribeHandshake } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DescribeOrganizationCommand.ts b/clients/client-organizations/src/commands/DescribeOrganizationCommand.ts index abc651d67afe6..5714c55a72767 100644 --- a/clients/client-organizations/src/commands/DescribeOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/DescribeOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrganizationResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DescribeOrganizationResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DescribeOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DescribeOrganizationalUnitCommand.ts b/clients/client-organizations/src/commands/DescribeOrganizationalUnitCommand.ts index cbc0b7bfc9937..7a5c160382ec8 100644 --- a/clients/client-organizations/src/commands/DescribeOrganizationalUnitCommand.ts +++ b/clients/client-organizations/src/commands/DescribeOrganizationalUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrganizationalUnitRequest, DescribeOrganizationalUnitResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DescribeOrganizationalUnitRequest, DescribeOrganizationalUnitResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DescribeOrganizationalUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DescribePolicyCommand.ts b/clients/client-organizations/src/commands/DescribePolicyCommand.ts index 2c838f6a036ff..caf9183d6185f 100644 --- a/clients/client-organizations/src/commands/DescribePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DescribePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePolicyRequest, DescribePolicyResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DescribePolicyRequest, DescribePolicyResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DescribePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DescribeResourcePolicyCommand.ts b/clients/client-organizations/src/commands/DescribeResourcePolicyCommand.ts index 259ba30aabfca..ab1fec267765c 100644 --- a/clients/client-organizations/src/commands/DescribeResourcePolicyCommand.ts +++ b/clients/client-organizations/src/commands/DescribeResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourcePolicyResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DescribeResourcePolicyResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DescribeResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DescribeResponsibilityTransferCommand.ts b/clients/client-organizations/src/commands/DescribeResponsibilityTransferCommand.ts index a703454941d4a..e161a68610eaa 100644 --- a/clients/client-organizations/src/commands/DescribeResponsibilityTransferCommand.ts +++ b/clients/client-organizations/src/commands/DescribeResponsibilityTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResponsibilityTransferRequest, DescribeResponsibilityTransferResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DescribeResponsibilityTransferRequest, DescribeResponsibilityTransferResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DescribeResponsibilityTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DetachPolicyCommand.ts b/clients/client-organizations/src/commands/DetachPolicyCommand.ts index 3420a38029b7b..b30d2ac21e3c4 100644 --- a/clients/client-organizations/src/commands/DetachPolicyCommand.ts +++ b/clients/client-organizations/src/commands/DetachPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachPolicyRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DetachPolicyRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DetachPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DisableAWSServiceAccessCommand.ts b/clients/client-organizations/src/commands/DisableAWSServiceAccessCommand.ts index c4ecea66351c2..e9bdf51a495b3 100644 --- a/clients/client-organizations/src/commands/DisableAWSServiceAccessCommand.ts +++ b/clients/client-organizations/src/commands/DisableAWSServiceAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableAWSServiceAccessRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DisableAWSServiceAccessRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DisableAWSServiceAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/DisablePolicyTypeCommand.ts b/clients/client-organizations/src/commands/DisablePolicyTypeCommand.ts index c6e17f8e190f1..aca40bb932ee5 100644 --- a/clients/client-organizations/src/commands/DisablePolicyTypeCommand.ts +++ b/clients/client-organizations/src/commands/DisablePolicyTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisablePolicyTypeRequest, DisablePolicyTypeResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { DisablePolicyTypeRequest, DisablePolicyTypeResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { DisablePolicyType } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/EnableAWSServiceAccessCommand.ts b/clients/client-organizations/src/commands/EnableAWSServiceAccessCommand.ts index b726f4ae729a1..789342fc5bad2 100644 --- a/clients/client-organizations/src/commands/EnableAWSServiceAccessCommand.ts +++ b/clients/client-organizations/src/commands/EnableAWSServiceAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableAWSServiceAccessRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { EnableAWSServiceAccessRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { EnableAWSServiceAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/EnableAllFeaturesCommand.ts b/clients/client-organizations/src/commands/EnableAllFeaturesCommand.ts index 0be2965f88fdc..b9bf0eb36e65c 100644 --- a/clients/client-organizations/src/commands/EnableAllFeaturesCommand.ts +++ b/clients/client-organizations/src/commands/EnableAllFeaturesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableAllFeaturesRequest, EnableAllFeaturesResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { EnableAllFeaturesRequest, EnableAllFeaturesResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { EnableAllFeatures } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/EnablePolicyTypeCommand.ts b/clients/client-organizations/src/commands/EnablePolicyTypeCommand.ts index 1c17ebb182837..13f5dd13035e2 100644 --- a/clients/client-organizations/src/commands/EnablePolicyTypeCommand.ts +++ b/clients/client-organizations/src/commands/EnablePolicyTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnablePolicyTypeRequest, EnablePolicyTypeResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { EnablePolicyTypeRequest, EnablePolicyTypeResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { EnablePolicyType } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/InviteAccountToOrganizationCommand.ts b/clients/client-organizations/src/commands/InviteAccountToOrganizationCommand.ts index 9588f4c5e1d63..261e994585003 100644 --- a/clients/client-organizations/src/commands/InviteAccountToOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/InviteAccountToOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InviteAccountToOrganizationRequest, InviteAccountToOrganizationResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { InviteAccountToOrganizationRequest, InviteAccountToOrganizationResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { InviteAccountToOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/InviteOrganizationToTransferResponsibilityCommand.ts b/clients/client-organizations/src/commands/InviteOrganizationToTransferResponsibilityCommand.ts index 9a61bbf55e7f1..6b1c6615a885f 100644 --- a/clients/client-organizations/src/commands/InviteOrganizationToTransferResponsibilityCommand.ts +++ b/clients/client-organizations/src/commands/InviteOrganizationToTransferResponsibilityCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { InviteOrganizationToTransferResponsibilityRequest, InviteOrganizationToTransferResponsibilityResponse, } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { InviteOrganizationToTransferResponsibility } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/LeaveOrganizationCommand.ts b/clients/client-organizations/src/commands/LeaveOrganizationCommand.ts index cf926bd66f1cf..ac876ba820146 100644 --- a/clients/client-organizations/src/commands/LeaveOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/LeaveOrganizationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { LeaveOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListAWSServiceAccessForOrganizationCommand.ts b/clients/client-organizations/src/commands/ListAWSServiceAccessForOrganizationCommand.ts index edc3937ee72f7..9342716851291 100644 --- a/clients/client-organizations/src/commands/ListAWSServiceAccessForOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/ListAWSServiceAccessForOrganizationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAWSServiceAccessForOrganizationRequest, ListAWSServiceAccessForOrganizationResponse, } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListAWSServiceAccessForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListAccountsCommand.ts b/clients/client-organizations/src/commands/ListAccountsCommand.ts index 0dede9c7dbc23..ec81701d23f49 100644 --- a/clients/client-organizations/src/commands/ListAccountsCommand.ts +++ b/clients/client-organizations/src/commands/ListAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListAccountsRequest, ListAccountsResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListAccounts } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListAccountsForParentCommand.ts b/clients/client-organizations/src/commands/ListAccountsForParentCommand.ts index e7448ae90e4fe..a2e0cd46023c5 100644 --- a/clients/client-organizations/src/commands/ListAccountsForParentCommand.ts +++ b/clients/client-organizations/src/commands/ListAccountsForParentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountsForParentRequest, ListAccountsForParentResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListAccountsForParentRequest, ListAccountsForParentResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListAccountsForParent } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListAccountsWithInvalidEffectivePolicyCommand.ts b/clients/client-organizations/src/commands/ListAccountsWithInvalidEffectivePolicyCommand.ts index bc293f730cc3f..f84c600408905 100644 --- a/clients/client-organizations/src/commands/ListAccountsWithInvalidEffectivePolicyCommand.ts +++ b/clients/client-organizations/src/commands/ListAccountsWithInvalidEffectivePolicyCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAccountsWithInvalidEffectivePolicyRequest, ListAccountsWithInvalidEffectivePolicyResponse, } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListAccountsWithInvalidEffectivePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListChildrenCommand.ts b/clients/client-organizations/src/commands/ListChildrenCommand.ts index b6db177f2efd4..889411be91fea 100644 --- a/clients/client-organizations/src/commands/ListChildrenCommand.ts +++ b/clients/client-organizations/src/commands/ListChildrenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChildrenRequest, ListChildrenResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListChildrenRequest, ListChildrenResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListChildren } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListCreateAccountStatusCommand.ts b/clients/client-organizations/src/commands/ListCreateAccountStatusCommand.ts index bcf57094217f3..f2be6d3252099 100644 --- a/clients/client-organizations/src/commands/ListCreateAccountStatusCommand.ts +++ b/clients/client-organizations/src/commands/ListCreateAccountStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCreateAccountStatusRequest, ListCreateAccountStatusResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListCreateAccountStatusRequest, ListCreateAccountStatusResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListCreateAccountStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListDelegatedAdministratorsCommand.ts b/clients/client-organizations/src/commands/ListDelegatedAdministratorsCommand.ts index 03576a5e3db8c..b37b7385a80a2 100644 --- a/clients/client-organizations/src/commands/ListDelegatedAdministratorsCommand.ts +++ b/clients/client-organizations/src/commands/ListDelegatedAdministratorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDelegatedAdministratorsRequest, ListDelegatedAdministratorsResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListDelegatedAdministratorsRequest, ListDelegatedAdministratorsResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListDelegatedAdministrators } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListDelegatedServicesForAccountCommand.ts b/clients/client-organizations/src/commands/ListDelegatedServicesForAccountCommand.ts index 54979cfd7e7d7..0300d57db0a04 100644 --- a/clients/client-organizations/src/commands/ListDelegatedServicesForAccountCommand.ts +++ b/clients/client-organizations/src/commands/ListDelegatedServicesForAccountCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDelegatedServicesForAccountRequest, ListDelegatedServicesForAccountResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { + ListDelegatedServicesForAccountRequest, + ListDelegatedServicesForAccountResponse, +} from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListDelegatedServicesForAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListEffectivePolicyValidationErrorsCommand.ts b/clients/client-organizations/src/commands/ListEffectivePolicyValidationErrorsCommand.ts index d87eb9dc4aeb5..5cc5846f9ba8a 100644 --- a/clients/client-organizations/src/commands/ListEffectivePolicyValidationErrorsCommand.ts +++ b/clients/client-organizations/src/commands/ListEffectivePolicyValidationErrorsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListEffectivePolicyValidationErrorsRequest, ListEffectivePolicyValidationErrorsResponse, } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListEffectivePolicyValidationErrors } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListHandshakesForAccountCommand.ts b/clients/client-organizations/src/commands/ListHandshakesForAccountCommand.ts index 991627f4fb512..5d3e4a38d076d 100644 --- a/clients/client-organizations/src/commands/ListHandshakesForAccountCommand.ts +++ b/clients/client-organizations/src/commands/ListHandshakesForAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHandshakesForAccountRequest, ListHandshakesForAccountResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListHandshakesForAccountRequest, ListHandshakesForAccountResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListHandshakesForAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListHandshakesForOrganizationCommand.ts b/clients/client-organizations/src/commands/ListHandshakesForOrganizationCommand.ts index d810b712c31a7..5531185f39ad0 100644 --- a/clients/client-organizations/src/commands/ListHandshakesForOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/ListHandshakesForOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHandshakesForOrganizationRequest, ListHandshakesForOrganizationResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListHandshakesForOrganizationRequest, ListHandshakesForOrganizationResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListHandshakesForOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListInboundResponsibilityTransfersCommand.ts b/clients/client-organizations/src/commands/ListInboundResponsibilityTransfersCommand.ts index b9ca63eac2c88..f73e42a9eb1ff 100644 --- a/clients/client-organizations/src/commands/ListInboundResponsibilityTransfersCommand.ts +++ b/clients/client-organizations/src/commands/ListInboundResponsibilityTransfersCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListInboundResponsibilityTransfersRequest, ListInboundResponsibilityTransfersResponse, } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListInboundResponsibilityTransfers } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListOrganizationalUnitsForParentCommand.ts b/clients/client-organizations/src/commands/ListOrganizationalUnitsForParentCommand.ts index 258e24030721b..ba45daf13e6a9 100644 --- a/clients/client-organizations/src/commands/ListOrganizationalUnitsForParentCommand.ts +++ b/clients/client-organizations/src/commands/ListOrganizationalUnitsForParentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOrganizationalUnitsForParentRequest, ListOrganizationalUnitsForParentResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { + ListOrganizationalUnitsForParentRequest, + ListOrganizationalUnitsForParentResponse, +} from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListOrganizationalUnitsForParent } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListOutboundResponsibilityTransfersCommand.ts b/clients/client-organizations/src/commands/ListOutboundResponsibilityTransfersCommand.ts index 9ccd38badf198..1bbc2b902e33a 100644 --- a/clients/client-organizations/src/commands/ListOutboundResponsibilityTransfersCommand.ts +++ b/clients/client-organizations/src/commands/ListOutboundResponsibilityTransfersCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListOutboundResponsibilityTransfersRequest, ListOutboundResponsibilityTransfersResponse, } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListOutboundResponsibilityTransfers } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListParentsCommand.ts b/clients/client-organizations/src/commands/ListParentsCommand.ts index c32d7a5bfb7bc..dce434a9ce954 100644 --- a/clients/client-organizations/src/commands/ListParentsCommand.ts +++ b/clients/client-organizations/src/commands/ListParentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListParentsRequest, ListParentsResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListParentsRequest, ListParentsResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListParents } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListPoliciesCommand.ts b/clients/client-organizations/src/commands/ListPoliciesCommand.ts index 78dec23fa968f..958a26d1dd76c 100644 --- a/clients/client-organizations/src/commands/ListPoliciesCommand.ts +++ b/clients/client-organizations/src/commands/ListPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListPoliciesRequest, ListPoliciesResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListPoliciesForTargetCommand.ts b/clients/client-organizations/src/commands/ListPoliciesForTargetCommand.ts index d7701acebd4de..98989d6225b4e 100644 --- a/clients/client-organizations/src/commands/ListPoliciesForTargetCommand.ts +++ b/clients/client-organizations/src/commands/ListPoliciesForTargetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPoliciesForTargetRequest, ListPoliciesForTargetResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListPoliciesForTargetRequest, ListPoliciesForTargetResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListPoliciesForTarget } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListRootsCommand.ts b/clients/client-organizations/src/commands/ListRootsCommand.ts index df1117c73f337..d0804a8bc5f15 100644 --- a/clients/client-organizations/src/commands/ListRootsCommand.ts +++ b/clients/client-organizations/src/commands/ListRootsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRootsRequest, ListRootsResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListRootsRequest, ListRootsResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListRoots } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListTagsForResourceCommand.ts b/clients/client-organizations/src/commands/ListTagsForResourceCommand.ts index 264918ce308e9..b799770d1c4c7 100644 --- a/clients/client-organizations/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-organizations/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/ListTargetsForPolicyCommand.ts b/clients/client-organizations/src/commands/ListTargetsForPolicyCommand.ts index 871b063888929..a2cad9d895f58 100644 --- a/clients/client-organizations/src/commands/ListTargetsForPolicyCommand.ts +++ b/clients/client-organizations/src/commands/ListTargetsForPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTargetsForPolicyRequest, ListTargetsForPolicyResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { ListTargetsForPolicyRequest, ListTargetsForPolicyResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { ListTargetsForPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/MoveAccountCommand.ts b/clients/client-organizations/src/commands/MoveAccountCommand.ts index d5429fe68fc30..5cb359c15e2ef 100644 --- a/clients/client-organizations/src/commands/MoveAccountCommand.ts +++ b/clients/client-organizations/src/commands/MoveAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MoveAccountRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { MoveAccountRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { MoveAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/PutResourcePolicyCommand.ts b/clients/client-organizations/src/commands/PutResourcePolicyCommand.ts index f44f4b8ab28a1..55181e2e79153 100644 --- a/clients/client-organizations/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-organizations/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/RegisterDelegatedAdministratorCommand.ts b/clients/client-organizations/src/commands/RegisterDelegatedAdministratorCommand.ts index dafecac7f8727..9152736253d48 100644 --- a/clients/client-organizations/src/commands/RegisterDelegatedAdministratorCommand.ts +++ b/clients/client-organizations/src/commands/RegisterDelegatedAdministratorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterDelegatedAdministratorRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { RegisterDelegatedAdministratorRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { RegisterDelegatedAdministrator } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/RemoveAccountFromOrganizationCommand.ts b/clients/client-organizations/src/commands/RemoveAccountFromOrganizationCommand.ts index 5ba23b7d5e9e9..408dd02e5ef00 100644 --- a/clients/client-organizations/src/commands/RemoveAccountFromOrganizationCommand.ts +++ b/clients/client-organizations/src/commands/RemoveAccountFromOrganizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveAccountFromOrganizationRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { RemoveAccountFromOrganizationRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { RemoveAccountFromOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/TagResourceCommand.ts b/clients/client-organizations/src/commands/TagResourceCommand.ts index c549d9f880906..0f5341bc67640 100644 --- a/clients/client-organizations/src/commands/TagResourceCommand.ts +++ b/clients/client-organizations/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { TagResourceRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/TerminateResponsibilityTransferCommand.ts b/clients/client-organizations/src/commands/TerminateResponsibilityTransferCommand.ts index fedb7bd041901..ff4074cea1d81 100644 --- a/clients/client-organizations/src/commands/TerminateResponsibilityTransferCommand.ts +++ b/clients/client-organizations/src/commands/TerminateResponsibilityTransferCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateResponsibilityTransferRequest, TerminateResponsibilityTransferResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { + TerminateResponsibilityTransferRequest, + TerminateResponsibilityTransferResponse, +} from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { TerminateResponsibilityTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/UntagResourceCommand.ts b/clients/client-organizations/src/commands/UntagResourceCommand.ts index 2fbd862764042..50db3b2b08d55 100644 --- a/clients/client-organizations/src/commands/UntagResourceCommand.ts +++ b/clients/client-organizations/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { UntagResourceRequest } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/UpdateOrganizationalUnitCommand.ts b/clients/client-organizations/src/commands/UpdateOrganizationalUnitCommand.ts index 9ec1fb8661ac4..91aa560b688cc 100644 --- a/clients/client-organizations/src/commands/UpdateOrganizationalUnitCommand.ts +++ b/clients/client-organizations/src/commands/UpdateOrganizationalUnitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOrganizationalUnitRequest, UpdateOrganizationalUnitResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { UpdateOrganizationalUnitRequest, UpdateOrganizationalUnitResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { UpdateOrganizationalUnit } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/UpdatePolicyCommand.ts b/clients/client-organizations/src/commands/UpdatePolicyCommand.ts index 413ae61f2078e..1aa29f96d1a94 100644 --- a/clients/client-organizations/src/commands/UpdatePolicyCommand.ts +++ b/clients/client-organizations/src/commands/UpdatePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePolicyRequest, UpdatePolicyResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { UpdatePolicyRequest, UpdatePolicyResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { UpdatePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/commands/UpdateResponsibilityTransferCommand.ts b/clients/client-organizations/src/commands/UpdateResponsibilityTransferCommand.ts index 532c158a8ec40..b3a2bc293c4e6 100644 --- a/clients/client-organizations/src/commands/UpdateResponsibilityTransferCommand.ts +++ b/clients/client-organizations/src/commands/UpdateResponsibilityTransferCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResponsibilityTransferRequest, UpdateResponsibilityTransferResponse } from "../models/models_0"; -import { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; +import type { UpdateResponsibilityTransferRequest, UpdateResponsibilityTransferResponse } from "../models/models_0"; +import type { OrganizationsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OrganizationsClient"; import { UpdateResponsibilityTransfer } from "../schemas/schemas_0"; /** diff --git a/clients/client-organizations/src/endpoint/EndpointParameters.ts b/clients/client-organizations/src/endpoint/EndpointParameters.ts index 219833425bbcd..ef97dae3c53e1 100644 --- a/clients/client-organizations/src/endpoint/EndpointParameters.ts +++ b/clients/client-organizations/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-organizations/src/endpoint/endpointResolver.ts b/clients/client-organizations/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-organizations/src/endpoint/endpointResolver.ts +++ b/clients/client-organizations/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-organizations/src/extensionConfiguration.ts b/clients/client-organizations/src/extensionConfiguration.ts index 604b7bfb6b4fa..dcbbabef36558 100644 --- a/clients/client-organizations/src/extensionConfiguration.ts +++ b/clients/client-organizations/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-organizations/src/models/OrganizationsServiceException.ts b/clients/client-organizations/src/models/OrganizationsServiceException.ts index 37e83487dc432..2cd206fd32afb 100644 --- a/clients/client-organizations/src/models/OrganizationsServiceException.ts +++ b/clients/client-organizations/src/models/OrganizationsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-organizations/src/models/errors.ts b/clients/client-organizations/src/models/errors.ts index 742cf7e96caaa..84e37fec4d0e4 100644 --- a/clients/client-organizations/src/models/errors.ts +++ b/clients/client-organizations/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessDeniedForDependencyExceptionReason, diff --git a/clients/client-organizations/src/pagination/Interfaces.ts b/clients/client-organizations/src/pagination/Interfaces.ts index d26c240bcd029..a07fb65340e75 100644 --- a/clients/client-organizations/src/pagination/Interfaces.ts +++ b/clients/client-organizations/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { OrganizationsClient } from "../OrganizationsClient"; diff --git a/clients/client-organizations/src/pagination/ListAWSServiceAccessForOrganizationPaginator.ts b/clients/client-organizations/src/pagination/ListAWSServiceAccessForOrganizationPaginator.ts index 4cb9679749845..782057fdf4cc4 100644 --- a/clients/client-organizations/src/pagination/ListAWSServiceAccessForOrganizationPaginator.ts +++ b/clients/client-organizations/src/pagination/ListAWSServiceAccessForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAWSServiceAccessForOrganizationCommand, diff --git a/clients/client-organizations/src/pagination/ListAccountsForParentPaginator.ts b/clients/client-organizations/src/pagination/ListAccountsForParentPaginator.ts index 8e2f48c119611..ddaac9c902c7f 100644 --- a/clients/client-organizations/src/pagination/ListAccountsForParentPaginator.ts +++ b/clients/client-organizations/src/pagination/ListAccountsForParentPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountsForParentCommand, diff --git a/clients/client-organizations/src/pagination/ListAccountsPaginator.ts b/clients/client-organizations/src/pagination/ListAccountsPaginator.ts index 5b4b3e5411767..f4eafc5335f9b 100644 --- a/clients/client-organizations/src/pagination/ListAccountsPaginator.ts +++ b/clients/client-organizations/src/pagination/ListAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountsCommand, diff --git a/clients/client-organizations/src/pagination/ListAccountsWithInvalidEffectivePolicyPaginator.ts b/clients/client-organizations/src/pagination/ListAccountsWithInvalidEffectivePolicyPaginator.ts index e45ba94039e33..e65bdc533e86a 100644 --- a/clients/client-organizations/src/pagination/ListAccountsWithInvalidEffectivePolicyPaginator.ts +++ b/clients/client-organizations/src/pagination/ListAccountsWithInvalidEffectivePolicyPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountsWithInvalidEffectivePolicyCommand, diff --git a/clients/client-organizations/src/pagination/ListChildrenPaginator.ts b/clients/client-organizations/src/pagination/ListChildrenPaginator.ts index b4b80aa8bf729..3194259c20919 100644 --- a/clients/client-organizations/src/pagination/ListChildrenPaginator.ts +++ b/clients/client-organizations/src/pagination/ListChildrenPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChildrenCommand, diff --git a/clients/client-organizations/src/pagination/ListCreateAccountStatusPaginator.ts b/clients/client-organizations/src/pagination/ListCreateAccountStatusPaginator.ts index 067b86d80876d..7fa25750b6bb9 100644 --- a/clients/client-organizations/src/pagination/ListCreateAccountStatusPaginator.ts +++ b/clients/client-organizations/src/pagination/ListCreateAccountStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCreateAccountStatusCommand, diff --git a/clients/client-organizations/src/pagination/ListDelegatedAdministratorsPaginator.ts b/clients/client-organizations/src/pagination/ListDelegatedAdministratorsPaginator.ts index 1f1366897dea5..9024d63531504 100644 --- a/clients/client-organizations/src/pagination/ListDelegatedAdministratorsPaginator.ts +++ b/clients/client-organizations/src/pagination/ListDelegatedAdministratorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDelegatedAdministratorsCommand, diff --git a/clients/client-organizations/src/pagination/ListDelegatedServicesForAccountPaginator.ts b/clients/client-organizations/src/pagination/ListDelegatedServicesForAccountPaginator.ts index 51066ed2468af..fd80b04cecf44 100644 --- a/clients/client-organizations/src/pagination/ListDelegatedServicesForAccountPaginator.ts +++ b/clients/client-organizations/src/pagination/ListDelegatedServicesForAccountPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDelegatedServicesForAccountCommand, diff --git a/clients/client-organizations/src/pagination/ListEffectivePolicyValidationErrorsPaginator.ts b/clients/client-organizations/src/pagination/ListEffectivePolicyValidationErrorsPaginator.ts index 176e31c03921f..a2dc582d8be30 100644 --- a/clients/client-organizations/src/pagination/ListEffectivePolicyValidationErrorsPaginator.ts +++ b/clients/client-organizations/src/pagination/ListEffectivePolicyValidationErrorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEffectivePolicyValidationErrorsCommand, diff --git a/clients/client-organizations/src/pagination/ListHandshakesForAccountPaginator.ts b/clients/client-organizations/src/pagination/ListHandshakesForAccountPaginator.ts index dce2851ae32a4..68cfd95feb4c9 100644 --- a/clients/client-organizations/src/pagination/ListHandshakesForAccountPaginator.ts +++ b/clients/client-organizations/src/pagination/ListHandshakesForAccountPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHandshakesForAccountCommand, diff --git a/clients/client-organizations/src/pagination/ListHandshakesForOrganizationPaginator.ts b/clients/client-organizations/src/pagination/ListHandshakesForOrganizationPaginator.ts index 875c56f13532a..ab20c6940de88 100644 --- a/clients/client-organizations/src/pagination/ListHandshakesForOrganizationPaginator.ts +++ b/clients/client-organizations/src/pagination/ListHandshakesForOrganizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHandshakesForOrganizationCommand, diff --git a/clients/client-organizations/src/pagination/ListOrganizationalUnitsForParentPaginator.ts b/clients/client-organizations/src/pagination/ListOrganizationalUnitsForParentPaginator.ts index f53228a4bd28e..102ec72c06664 100644 --- a/clients/client-organizations/src/pagination/ListOrganizationalUnitsForParentPaginator.ts +++ b/clients/client-organizations/src/pagination/ListOrganizationalUnitsForParentPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationalUnitsForParentCommand, diff --git a/clients/client-organizations/src/pagination/ListParentsPaginator.ts b/clients/client-organizations/src/pagination/ListParentsPaginator.ts index a1e63fdb616cf..8bd9cfd3a8954 100644 --- a/clients/client-organizations/src/pagination/ListParentsPaginator.ts +++ b/clients/client-organizations/src/pagination/ListParentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListParentsCommand, ListParentsCommandInput, ListParentsCommandOutput } from "../commands/ListParentsCommand"; import { OrganizationsClient } from "../OrganizationsClient"; diff --git a/clients/client-organizations/src/pagination/ListPoliciesForTargetPaginator.ts b/clients/client-organizations/src/pagination/ListPoliciesForTargetPaginator.ts index e2944e8968b60..0a768b2ad6d09 100644 --- a/clients/client-organizations/src/pagination/ListPoliciesForTargetPaginator.ts +++ b/clients/client-organizations/src/pagination/ListPoliciesForTargetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPoliciesForTargetCommand, diff --git a/clients/client-organizations/src/pagination/ListPoliciesPaginator.ts b/clients/client-organizations/src/pagination/ListPoliciesPaginator.ts index 3e99d89969582..959b93b93f93a 100644 --- a/clients/client-organizations/src/pagination/ListPoliciesPaginator.ts +++ b/clients/client-organizations/src/pagination/ListPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPoliciesCommand, diff --git a/clients/client-organizations/src/pagination/ListRootsPaginator.ts b/clients/client-organizations/src/pagination/ListRootsPaginator.ts index f01e296b6f4d3..c9601b6426b73 100644 --- a/clients/client-organizations/src/pagination/ListRootsPaginator.ts +++ b/clients/client-organizations/src/pagination/ListRootsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRootsCommand, ListRootsCommandInput, ListRootsCommandOutput } from "../commands/ListRootsCommand"; import { OrganizationsClient } from "../OrganizationsClient"; diff --git a/clients/client-organizations/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-organizations/src/pagination/ListTagsForResourcePaginator.ts index 2671c7ad4f35e..b43439bb0d775 100644 --- a/clients/client-organizations/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-organizations/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-organizations/src/pagination/ListTargetsForPolicyPaginator.ts b/clients/client-organizations/src/pagination/ListTargetsForPolicyPaginator.ts index f2f351ef85f52..29f91306d445a 100644 --- a/clients/client-organizations/src/pagination/ListTargetsForPolicyPaginator.ts +++ b/clients/client-organizations/src/pagination/ListTargetsForPolicyPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTargetsForPolicyCommand, diff --git a/clients/client-organizations/src/runtimeConfig.browser.ts b/clients/client-organizations/src/runtimeConfig.browser.ts index e8471e06a84d5..bf4b34487ec59 100644 --- a/clients/client-organizations/src/runtimeConfig.browser.ts +++ b/clients/client-organizations/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OrganizationsClientConfig } from "./OrganizationsClient"; + +import type { OrganizationsClientConfig } from "./OrganizationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-organizations/src/runtimeConfig.native.ts b/clients/client-organizations/src/runtimeConfig.native.ts index 2d0c82f275d01..9c701f9315a9d 100644 --- a/clients/client-organizations/src/runtimeConfig.native.ts +++ b/clients/client-organizations/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { OrganizationsClientConfig } from "./OrganizationsClient"; +import type { OrganizationsClientConfig } from "./OrganizationsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-organizations/src/runtimeConfig.shared.ts b/clients/client-organizations/src/runtimeConfig.shared.ts index 914cbd0c35101..00643eb721bd0 100644 --- a/clients/client-organizations/src/runtimeConfig.shared.ts +++ b/clients/client-organizations/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultOrganizationsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { OrganizationsClientConfig } from "./OrganizationsClient"; +import type { OrganizationsClientConfig } from "./OrganizationsClient"; /** * @internal diff --git a/clients/client-organizations/src/runtimeConfig.ts b/clients/client-organizations/src/runtimeConfig.ts index 46db0ee7da4b5..2cb4dc09f02c8 100644 --- a/clients/client-organizations/src/runtimeConfig.ts +++ b/clients/client-organizations/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OrganizationsClientConfig } from "./OrganizationsClient"; + +import type { OrganizationsClientConfig } from "./OrganizationsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-organizations/src/runtimeExtensions.ts b/clients/client-organizations/src/runtimeExtensions.ts index 7f6024717acf9..86a5ed7e72e1a 100644 --- a/clients/client-organizations/src/runtimeExtensions.ts +++ b/clients/client-organizations/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { OrganizationsExtensionConfiguration } from "./extensionConfiguration"; +import type { OrganizationsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-organizations/src/schemas/schemas_0.ts b/clients/client-organizations/src/schemas/schemas_0.ts index 2fb744d5ef11c..259499bd87aa4 100644 --- a/clients/client-organizations/src/schemas/schemas_0.ts +++ b/clients/client-organizations/src/schemas/schemas_0.ts @@ -347,7 +347,7 @@ const n0 = "com.amazonaws.organizations"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-osis/package.json b/clients/client-osis/package.json index a62c4b2900094..fb41b6ca4b40e 100644 --- a/clients/client-osis/package.json +++ b/clients/client-osis/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-osis/src/OSIS.ts b/clients/client-osis/src/OSIS.ts index 5dfdaf0a1cf3a..c86d000376054 100644 --- a/clients/client-osis/src/OSIS.ts +++ b/clients/client-osis/src/OSIS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreatePipelineCommand, @@ -104,7 +104,7 @@ import { ValidatePipelineCommandInput, ValidatePipelineCommandOutput, } from "./commands/ValidatePipelineCommand"; -import { OSISClient, OSISClientConfig } from "./OSISClient"; +import { OSISClient } from "./OSISClient"; const commands = { CreatePipelineCommand, diff --git a/clients/client-osis/src/OSISClient.ts b/clients/client-osis/src/OSISClient.ts index d09b2eedf9f23..77e2bca64d02b 100644 --- a/clients/client-osis/src/OSISClient.ts +++ b/clients/client-osis/src/OSISClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultOSISHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreatePipelineCommandInput, CreatePipelineCommandOutput } from "./commands/CreatePipelineCommand"; @@ -116,7 +125,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-osis/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-osis/src/auth/httpAuthExtensionConfiguration.ts index 4922e9720b564..0a362c189872d 100644 --- a/clients/client-osis/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-osis/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { OSISHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { OSISHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-osis/src/auth/httpAuthSchemeProvider.ts b/clients/client-osis/src/auth/httpAuthSchemeProvider.ts index fdec91caa279b..e03066309d729 100644 --- a/clients/client-osis/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-osis/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { OSISClientConfig, OSISClientResolvedConfig } from "../OSISClient"; +import { type OSISClientResolvedConfig, OSISClientConfig } from "../OSISClient"; /** * @internal diff --git a/clients/client-osis/src/commands/CreatePipelineCommand.ts b/clients/client-osis/src/commands/CreatePipelineCommand.ts index b0777f536cf4f..7fb517f928a82 100644 --- a/clients/client-osis/src/commands/CreatePipelineCommand.ts +++ b/clients/client-osis/src/commands/CreatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { CreatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/CreatePipelineEndpointCommand.ts b/clients/client-osis/src/commands/CreatePipelineEndpointCommand.ts index eb4a4f00bd712..7d71cefeb8f6e 100644 --- a/clients/client-osis/src/commands/CreatePipelineEndpointCommand.ts +++ b/clients/client-osis/src/commands/CreatePipelineEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePipelineEndpointRequest, CreatePipelineEndpointResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { CreatePipelineEndpointRequest, CreatePipelineEndpointResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { CreatePipelineEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/DeletePipelineCommand.ts b/clients/client-osis/src/commands/DeletePipelineCommand.ts index a3b806933f891..990faaccbf530 100644 --- a/clients/client-osis/src/commands/DeletePipelineCommand.ts +++ b/clients/client-osis/src/commands/DeletePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePipelineRequest, DeletePipelineResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { DeletePipelineRequest, DeletePipelineResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { DeletePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/DeletePipelineEndpointCommand.ts b/clients/client-osis/src/commands/DeletePipelineEndpointCommand.ts index 5d4706f643fdd..679db23cd642b 100644 --- a/clients/client-osis/src/commands/DeletePipelineEndpointCommand.ts +++ b/clients/client-osis/src/commands/DeletePipelineEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePipelineEndpointRequest, DeletePipelineEndpointResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { DeletePipelineEndpointRequest, DeletePipelineEndpointResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { DeletePipelineEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-osis/src/commands/DeleteResourcePolicyCommand.ts index 77d4c4dd21739..4c3b5ff774441 100644 --- a/clients/client-osis/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-osis/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/GetPipelineBlueprintCommand.ts b/clients/client-osis/src/commands/GetPipelineBlueprintCommand.ts index 03f2b0025d55f..b61622a51f73c 100644 --- a/clients/client-osis/src/commands/GetPipelineBlueprintCommand.ts +++ b/clients/client-osis/src/commands/GetPipelineBlueprintCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPipelineBlueprintRequest, GetPipelineBlueprintResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { GetPipelineBlueprintRequest, GetPipelineBlueprintResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { GetPipelineBlueprint } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/GetPipelineChangeProgressCommand.ts b/clients/client-osis/src/commands/GetPipelineChangeProgressCommand.ts index 65f0835a597cc..cec444c3a66bb 100644 --- a/clients/client-osis/src/commands/GetPipelineChangeProgressCommand.ts +++ b/clients/client-osis/src/commands/GetPipelineChangeProgressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPipelineChangeProgressRequest, GetPipelineChangeProgressResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { GetPipelineChangeProgressRequest, GetPipelineChangeProgressResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { GetPipelineChangeProgress } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/GetPipelineCommand.ts b/clients/client-osis/src/commands/GetPipelineCommand.ts index 06dbeb1257557..6bb1f5933a027 100644 --- a/clients/client-osis/src/commands/GetPipelineCommand.ts +++ b/clients/client-osis/src/commands/GetPipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPipelineRequest, GetPipelineResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { GetPipelineRequest, GetPipelineResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { GetPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/GetResourcePolicyCommand.ts b/clients/client-osis/src/commands/GetResourcePolicyCommand.ts index 77522c935e0f6..12af682b5fbe8 100644 --- a/clients/client-osis/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-osis/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/ListPipelineBlueprintsCommand.ts b/clients/client-osis/src/commands/ListPipelineBlueprintsCommand.ts index 7812dde444537..a9052614aa5bb 100644 --- a/clients/client-osis/src/commands/ListPipelineBlueprintsCommand.ts +++ b/clients/client-osis/src/commands/ListPipelineBlueprintsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelineBlueprintsRequest, ListPipelineBlueprintsResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { ListPipelineBlueprintsRequest, ListPipelineBlueprintsResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { ListPipelineBlueprints } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/ListPipelineEndpointConnectionsCommand.ts b/clients/client-osis/src/commands/ListPipelineEndpointConnectionsCommand.ts index 13440d87eff35..8006a38294870 100644 --- a/clients/client-osis/src/commands/ListPipelineEndpointConnectionsCommand.ts +++ b/clients/client-osis/src/commands/ListPipelineEndpointConnectionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelineEndpointConnectionsRequest, ListPipelineEndpointConnectionsResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { + ListPipelineEndpointConnectionsRequest, + ListPipelineEndpointConnectionsResponse, +} from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { ListPipelineEndpointConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/ListPipelineEndpointsCommand.ts b/clients/client-osis/src/commands/ListPipelineEndpointsCommand.ts index e28aee1ffd5f7..29fb6a8a36ea2 100644 --- a/clients/client-osis/src/commands/ListPipelineEndpointsCommand.ts +++ b/clients/client-osis/src/commands/ListPipelineEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelineEndpointsRequest, ListPipelineEndpointsResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { ListPipelineEndpointsRequest, ListPipelineEndpointsResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { ListPipelineEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/ListPipelinesCommand.ts b/clients/client-osis/src/commands/ListPipelinesCommand.ts index dc75c35774467..0ae776a90e030 100644 --- a/clients/client-osis/src/commands/ListPipelinesCommand.ts +++ b/clients/client-osis/src/commands/ListPipelinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { ListPipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/ListTagsForResourceCommand.ts b/clients/client-osis/src/commands/ListTagsForResourceCommand.ts index 64c2c768fcb7b..2f29fa20fd3ce 100644 --- a/clients/client-osis/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-osis/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/PutResourcePolicyCommand.ts b/clients/client-osis/src/commands/PutResourcePolicyCommand.ts index d4f0692c00c04..c5755b95b5342 100644 --- a/clients/client-osis/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-osis/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/RevokePipelineEndpointConnectionsCommand.ts b/clients/client-osis/src/commands/RevokePipelineEndpointConnectionsCommand.ts index b07e870b0c548..8e4ec23482a4a 100644 --- a/clients/client-osis/src/commands/RevokePipelineEndpointConnectionsCommand.ts +++ b/clients/client-osis/src/commands/RevokePipelineEndpointConnectionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RevokePipelineEndpointConnectionsRequest, RevokePipelineEndpointConnectionsResponse, } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { RevokePipelineEndpointConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/StartPipelineCommand.ts b/clients/client-osis/src/commands/StartPipelineCommand.ts index 1a9fdb23210cb..4b3df6ddcc40a 100644 --- a/clients/client-osis/src/commands/StartPipelineCommand.ts +++ b/clients/client-osis/src/commands/StartPipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPipelineRequest, StartPipelineResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { StartPipelineRequest, StartPipelineResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { StartPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/StopPipelineCommand.ts b/clients/client-osis/src/commands/StopPipelineCommand.ts index 8ea4a934b8e89..b57b42de72978 100644 --- a/clients/client-osis/src/commands/StopPipelineCommand.ts +++ b/clients/client-osis/src/commands/StopPipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopPipelineRequest, StopPipelineResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { StopPipelineRequest, StopPipelineResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { StopPipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/TagResourceCommand.ts b/clients/client-osis/src/commands/TagResourceCommand.ts index c9e187e0fa0f5..cd915e02f8d90 100644 --- a/clients/client-osis/src/commands/TagResourceCommand.ts +++ b/clients/client-osis/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/UntagResourceCommand.ts b/clients/client-osis/src/commands/UntagResourceCommand.ts index e93402fc3da3c..1fa5a702d9653 100644 --- a/clients/client-osis/src/commands/UntagResourceCommand.ts +++ b/clients/client-osis/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/UpdatePipelineCommand.ts b/clients/client-osis/src/commands/UpdatePipelineCommand.ts index d84df2d3350cd..e802c730a4105 100644 --- a/clients/client-osis/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-osis/src/commands/UpdatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePipelineRequest, UpdatePipelineResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { UpdatePipelineRequest, UpdatePipelineResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { UpdatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/commands/ValidatePipelineCommand.ts b/clients/client-osis/src/commands/ValidatePipelineCommand.ts index 7c27aab3eb793..fdd19164dcaa2 100644 --- a/clients/client-osis/src/commands/ValidatePipelineCommand.ts +++ b/clients/client-osis/src/commands/ValidatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidatePipelineRequest, ValidatePipelineResponse } from "../models/models_0"; -import { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; +import type { ValidatePipelineRequest, ValidatePipelineResponse } from "../models/models_0"; +import type { OSISClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OSISClient"; import { ValidatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-osis/src/endpoint/EndpointParameters.ts b/clients/client-osis/src/endpoint/EndpointParameters.ts index d0fa9449afba5..830ece7b6c753 100644 --- a/clients/client-osis/src/endpoint/EndpointParameters.ts +++ b/clients/client-osis/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-osis/src/endpoint/endpointResolver.ts b/clients/client-osis/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-osis/src/endpoint/endpointResolver.ts +++ b/clients/client-osis/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-osis/src/extensionConfiguration.ts b/clients/client-osis/src/extensionConfiguration.ts index 4d87eb3f0c871..4f3d07dd8c231 100644 --- a/clients/client-osis/src/extensionConfiguration.ts +++ b/clients/client-osis/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-osis/src/models/OSISServiceException.ts b/clients/client-osis/src/models/OSISServiceException.ts index 771d8b8e6620c..550bf1f81051e 100644 --- a/clients/client-osis/src/models/OSISServiceException.ts +++ b/clients/client-osis/src/models/OSISServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-osis/src/models/errors.ts b/clients/client-osis/src/models/errors.ts index ecae7e2a3e1fd..6f5a9da353b29 100644 --- a/clients/client-osis/src/models/errors.ts +++ b/clients/client-osis/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { OSISServiceException as __BaseException } from "./OSISServiceException"; diff --git a/clients/client-osis/src/pagination/Interfaces.ts b/clients/client-osis/src/pagination/Interfaces.ts index 54f7641958c75..d8df26d53a0d5 100644 --- a/clients/client-osis/src/pagination/Interfaces.ts +++ b/clients/client-osis/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { OSISClient } from "../OSISClient"; diff --git a/clients/client-osis/src/pagination/ListPipelineEndpointConnectionsPaginator.ts b/clients/client-osis/src/pagination/ListPipelineEndpointConnectionsPaginator.ts index b6b45c4b31341..66867c4738184 100644 --- a/clients/client-osis/src/pagination/ListPipelineEndpointConnectionsPaginator.ts +++ b/clients/client-osis/src/pagination/ListPipelineEndpointConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelineEndpointConnectionsCommand, diff --git a/clients/client-osis/src/pagination/ListPipelineEndpointsPaginator.ts b/clients/client-osis/src/pagination/ListPipelineEndpointsPaginator.ts index 225d1fe04d19d..3e5a4a6fb7754 100644 --- a/clients/client-osis/src/pagination/ListPipelineEndpointsPaginator.ts +++ b/clients/client-osis/src/pagination/ListPipelineEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelineEndpointsCommand, diff --git a/clients/client-osis/src/pagination/ListPipelinesPaginator.ts b/clients/client-osis/src/pagination/ListPipelinesPaginator.ts index d9e0861f52a99..cc5d49ed94550 100644 --- a/clients/client-osis/src/pagination/ListPipelinesPaginator.ts +++ b/clients/client-osis/src/pagination/ListPipelinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelinesCommand, diff --git a/clients/client-osis/src/runtimeConfig.browser.ts b/clients/client-osis/src/runtimeConfig.browser.ts index d3f84b765628b..699268d0bd421 100644 --- a/clients/client-osis/src/runtimeConfig.browser.ts +++ b/clients/client-osis/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OSISClientConfig } from "./OSISClient"; + +import type { OSISClientConfig } from "./OSISClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-osis/src/runtimeConfig.native.ts b/clients/client-osis/src/runtimeConfig.native.ts index abc6edc601188..1fbeba03792d3 100644 --- a/clients/client-osis/src/runtimeConfig.native.ts +++ b/clients/client-osis/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { OSISClientConfig } from "./OSISClient"; +import type { OSISClientConfig } from "./OSISClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-osis/src/runtimeConfig.shared.ts b/clients/client-osis/src/runtimeConfig.shared.ts index eabda2f763cfc..12eec3eadb77d 100644 --- a/clients/client-osis/src/runtimeConfig.shared.ts +++ b/clients/client-osis/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultOSISHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { OSISClientConfig } from "./OSISClient"; +import type { OSISClientConfig } from "./OSISClient"; /** * @internal diff --git a/clients/client-osis/src/runtimeConfig.ts b/clients/client-osis/src/runtimeConfig.ts index c163502e9d2c9..b69ac82748274 100644 --- a/clients/client-osis/src/runtimeConfig.ts +++ b/clients/client-osis/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OSISClientConfig } from "./OSISClient"; + +import type { OSISClientConfig } from "./OSISClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-osis/src/runtimeExtensions.ts b/clients/client-osis/src/runtimeExtensions.ts index 432f2e094a64c..00baa6c557543 100644 --- a/clients/client-osis/src/runtimeExtensions.ts +++ b/clients/client-osis/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { OSISExtensionConfiguration } from "./extensionConfiguration"; +import type { OSISExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-osis/src/schemas/schemas_0.ts b/clients/client-osis/src/schemas/schemas_0.ts index de4f5db5dad02..13538e2419063 100644 --- a/clients/client-osis/src/schemas/schemas_0.ts +++ b/clients/client-osis/src/schemas/schemas_0.ts @@ -182,7 +182,7 @@ const n0 = "com.amazonaws.osis"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-outposts/package.json b/clients/client-outposts/package.json index d531c51ffe6ca..b5d0131308bef 100644 --- a/clients/client-outposts/package.json +++ b/clients/client-outposts/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-outposts/src/Outposts.ts b/clients/client-outposts/src/Outposts.ts index 47a3f8196a6f4..0eb6c49a30c54 100644 --- a/clients/client-outposts/src/Outposts.ts +++ b/clients/client-outposts/src/Outposts.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelCapacityTaskCommand, @@ -129,7 +129,7 @@ import { UpdateSiteRackPhysicalPropertiesCommandInput, UpdateSiteRackPhysicalPropertiesCommandOutput, } from "./commands/UpdateSiteRackPhysicalPropertiesCommand"; -import { OutpostsClient, OutpostsClientConfig } from "./OutpostsClient"; +import { OutpostsClient } from "./OutpostsClient"; const commands = { CancelCapacityTaskCommand, diff --git a/clients/client-outposts/src/OutpostsClient.ts b/clients/client-outposts/src/OutpostsClient.ts index 15cd9a653efae..005e743f942bc 100644 --- a/clients/client-outposts/src/OutpostsClient.ts +++ b/clients/client-outposts/src/OutpostsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultOutpostsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelCapacityTaskCommandInput, CancelCapacityTaskCommandOutput } from "./commands/CancelCapacityTaskCommand"; @@ -120,7 +129,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-outposts/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-outposts/src/auth/httpAuthExtensionConfiguration.ts index d6b1b6c75775c..d85db5df9e639 100644 --- a/clients/client-outposts/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-outposts/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { OutpostsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { OutpostsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-outposts/src/auth/httpAuthSchemeProvider.ts b/clients/client-outposts/src/auth/httpAuthSchemeProvider.ts index 21ff6c575ee84..9bf644d2d6616 100644 --- a/clients/client-outposts/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-outposts/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { OutpostsClientConfig, OutpostsClientResolvedConfig } from "../OutpostsClient"; +import { type OutpostsClientResolvedConfig, OutpostsClientConfig } from "../OutpostsClient"; /** * @internal diff --git a/clients/client-outposts/src/commands/CancelCapacityTaskCommand.ts b/clients/client-outposts/src/commands/CancelCapacityTaskCommand.ts index 343f2edc3c86c..c4d5cc65b70fc 100644 --- a/clients/client-outposts/src/commands/CancelCapacityTaskCommand.ts +++ b/clients/client-outposts/src/commands/CancelCapacityTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelCapacityTaskInput, CancelCapacityTaskOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { CancelCapacityTaskInput, CancelCapacityTaskOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { CancelCapacityTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/CancelOrderCommand.ts b/clients/client-outposts/src/commands/CancelOrderCommand.ts index 5c0fa3dfa178b..4d999311e1812 100644 --- a/clients/client-outposts/src/commands/CancelOrderCommand.ts +++ b/clients/client-outposts/src/commands/CancelOrderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelOrderInput, CancelOrderOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { CancelOrderInput, CancelOrderOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { CancelOrder } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/CreateOrderCommand.ts b/clients/client-outposts/src/commands/CreateOrderCommand.ts index eaaa417b0229a..7f58d02bfae57 100644 --- a/clients/client-outposts/src/commands/CreateOrderCommand.ts +++ b/clients/client-outposts/src/commands/CreateOrderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOrderInput, CreateOrderOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { CreateOrderInput, CreateOrderOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { CreateOrder } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/CreateOutpostCommand.ts b/clients/client-outposts/src/commands/CreateOutpostCommand.ts index ba8985790bb71..f39d65bd11fbb 100644 --- a/clients/client-outposts/src/commands/CreateOutpostCommand.ts +++ b/clients/client-outposts/src/commands/CreateOutpostCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOutpostInput, CreateOutpostOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { CreateOutpostInput, CreateOutpostOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { CreateOutpost } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/CreateSiteCommand.ts b/clients/client-outposts/src/commands/CreateSiteCommand.ts index a5f0b557e9193..6b4f68cf78712 100644 --- a/clients/client-outposts/src/commands/CreateSiteCommand.ts +++ b/clients/client-outposts/src/commands/CreateSiteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSiteInput, CreateSiteOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { CreateSiteInput, CreateSiteOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { CreateSite } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/DeleteOutpostCommand.ts b/clients/client-outposts/src/commands/DeleteOutpostCommand.ts index 15808064532f1..718a4c6623d18 100644 --- a/clients/client-outposts/src/commands/DeleteOutpostCommand.ts +++ b/clients/client-outposts/src/commands/DeleteOutpostCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOutpostInput, DeleteOutpostOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { DeleteOutpostInput, DeleteOutpostOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { DeleteOutpost } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/DeleteSiteCommand.ts b/clients/client-outposts/src/commands/DeleteSiteCommand.ts index 4a21b6ccbac18..4313ad3dbcb7d 100644 --- a/clients/client-outposts/src/commands/DeleteSiteCommand.ts +++ b/clients/client-outposts/src/commands/DeleteSiteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSiteInput, DeleteSiteOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { DeleteSiteInput, DeleteSiteOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { DeleteSite } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetCapacityTaskCommand.ts b/clients/client-outposts/src/commands/GetCapacityTaskCommand.ts index 65d37df2e4c8a..16a030676d42c 100644 --- a/clients/client-outposts/src/commands/GetCapacityTaskCommand.ts +++ b/clients/client-outposts/src/commands/GetCapacityTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCapacityTaskInput, GetCapacityTaskOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetCapacityTaskInput, GetCapacityTaskOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetCapacityTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetCatalogItemCommand.ts b/clients/client-outposts/src/commands/GetCatalogItemCommand.ts index 1390c38e41224..6654121882084 100644 --- a/clients/client-outposts/src/commands/GetCatalogItemCommand.ts +++ b/clients/client-outposts/src/commands/GetCatalogItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCatalogItemInput, GetCatalogItemOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetCatalogItemInput, GetCatalogItemOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetCatalogItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetConnectionCommand.ts b/clients/client-outposts/src/commands/GetConnectionCommand.ts index 68a4c073af285..aae4907855957 100644 --- a/clients/client-outposts/src/commands/GetConnectionCommand.ts +++ b/clients/client-outposts/src/commands/GetConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionRequest, GetConnectionResponse } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetConnectionRequest, GetConnectionResponse } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetOrderCommand.ts b/clients/client-outposts/src/commands/GetOrderCommand.ts index bcd8d66ec1017..2cb518d3e372c 100644 --- a/clients/client-outposts/src/commands/GetOrderCommand.ts +++ b/clients/client-outposts/src/commands/GetOrderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOrderInput, GetOrderOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetOrderInput, GetOrderOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetOrder } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetOutpostBillingInformationCommand.ts b/clients/client-outposts/src/commands/GetOutpostBillingInformationCommand.ts index c70bcf70aa9b9..31e056c9db7bf 100644 --- a/clients/client-outposts/src/commands/GetOutpostBillingInformationCommand.ts +++ b/clients/client-outposts/src/commands/GetOutpostBillingInformationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOutpostBillingInformationInput, GetOutpostBillingInformationOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetOutpostBillingInformationInput, GetOutpostBillingInformationOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetOutpostBillingInformation } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetOutpostCommand.ts b/clients/client-outposts/src/commands/GetOutpostCommand.ts index 3308496f5cd97..8e391242c77a0 100644 --- a/clients/client-outposts/src/commands/GetOutpostCommand.ts +++ b/clients/client-outposts/src/commands/GetOutpostCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOutpostInput, GetOutpostOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetOutpostInput, GetOutpostOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetOutpost } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetOutpostInstanceTypesCommand.ts b/clients/client-outposts/src/commands/GetOutpostInstanceTypesCommand.ts index 43e11ba85407b..ebe7dc3aa8d82 100644 --- a/clients/client-outposts/src/commands/GetOutpostInstanceTypesCommand.ts +++ b/clients/client-outposts/src/commands/GetOutpostInstanceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOutpostInstanceTypesInput, GetOutpostInstanceTypesOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetOutpostInstanceTypesInput, GetOutpostInstanceTypesOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetOutpostInstanceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetOutpostSupportedInstanceTypesCommand.ts b/clients/client-outposts/src/commands/GetOutpostSupportedInstanceTypesCommand.ts index be46ce7736a71..9b285704a1076 100644 --- a/clients/client-outposts/src/commands/GetOutpostSupportedInstanceTypesCommand.ts +++ b/clients/client-outposts/src/commands/GetOutpostSupportedInstanceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOutpostSupportedInstanceTypesInput, GetOutpostSupportedInstanceTypesOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetOutpostSupportedInstanceTypesInput, GetOutpostSupportedInstanceTypesOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetOutpostSupportedInstanceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetSiteAddressCommand.ts b/clients/client-outposts/src/commands/GetSiteAddressCommand.ts index 487a640aa345f..91075186f30a3 100644 --- a/clients/client-outposts/src/commands/GetSiteAddressCommand.ts +++ b/clients/client-outposts/src/commands/GetSiteAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSiteAddressInput, GetSiteAddressOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetSiteAddressInput, GetSiteAddressOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetSiteAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/GetSiteCommand.ts b/clients/client-outposts/src/commands/GetSiteCommand.ts index c37fe89f0050d..e1ef0fc23bd60 100644 --- a/clients/client-outposts/src/commands/GetSiteCommand.ts +++ b/clients/client-outposts/src/commands/GetSiteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSiteInput, GetSiteOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { GetSiteInput, GetSiteOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { GetSite } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/ListAssetInstancesCommand.ts b/clients/client-outposts/src/commands/ListAssetInstancesCommand.ts index 643af84895a83..c97a7e4cf32db 100644 --- a/clients/client-outposts/src/commands/ListAssetInstancesCommand.ts +++ b/clients/client-outposts/src/commands/ListAssetInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssetInstancesInput, ListAssetInstancesOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { ListAssetInstancesInput, ListAssetInstancesOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { ListAssetInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/ListAssetsCommand.ts b/clients/client-outposts/src/commands/ListAssetsCommand.ts index c04b93d812734..3e35b31da69ad 100644 --- a/clients/client-outposts/src/commands/ListAssetsCommand.ts +++ b/clients/client-outposts/src/commands/ListAssetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssetsInput, ListAssetsOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { ListAssetsInput, ListAssetsOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { ListAssets } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/ListBlockingInstancesForCapacityTaskCommand.ts b/clients/client-outposts/src/commands/ListBlockingInstancesForCapacityTaskCommand.ts index f2a5a1a7eb8d9..65d0f33c96f4d 100644 --- a/clients/client-outposts/src/commands/ListBlockingInstancesForCapacityTaskCommand.ts +++ b/clients/client-outposts/src/commands/ListBlockingInstancesForCapacityTaskCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListBlockingInstancesForCapacityTaskInput, ListBlockingInstancesForCapacityTaskOutput, } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { ListBlockingInstancesForCapacityTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/ListCapacityTasksCommand.ts b/clients/client-outposts/src/commands/ListCapacityTasksCommand.ts index 42a0523fda239..333c3040e186a 100644 --- a/clients/client-outposts/src/commands/ListCapacityTasksCommand.ts +++ b/clients/client-outposts/src/commands/ListCapacityTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCapacityTasksInput, ListCapacityTasksOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { ListCapacityTasksInput, ListCapacityTasksOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { ListCapacityTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/ListCatalogItemsCommand.ts b/clients/client-outposts/src/commands/ListCatalogItemsCommand.ts index e2aa42cd599ab..99f6eb8213ad4 100644 --- a/clients/client-outposts/src/commands/ListCatalogItemsCommand.ts +++ b/clients/client-outposts/src/commands/ListCatalogItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCatalogItemsInput, ListCatalogItemsOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { ListCatalogItemsInput, ListCatalogItemsOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { ListCatalogItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/ListOrdersCommand.ts b/clients/client-outposts/src/commands/ListOrdersCommand.ts index 53870caa6f5aa..ce7afdd55174b 100644 --- a/clients/client-outposts/src/commands/ListOrdersCommand.ts +++ b/clients/client-outposts/src/commands/ListOrdersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOrdersInput, ListOrdersOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { ListOrdersInput, ListOrdersOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { ListOrders } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/ListOutpostsCommand.ts b/clients/client-outposts/src/commands/ListOutpostsCommand.ts index 06717e9054285..c0d1f9f7fc972 100644 --- a/clients/client-outposts/src/commands/ListOutpostsCommand.ts +++ b/clients/client-outposts/src/commands/ListOutpostsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOutpostsInput, ListOutpostsOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { ListOutpostsInput, ListOutpostsOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { ListOutposts } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/ListSitesCommand.ts b/clients/client-outposts/src/commands/ListSitesCommand.ts index 10dcbfe32fb22..035cea3ef7059 100644 --- a/clients/client-outposts/src/commands/ListSitesCommand.ts +++ b/clients/client-outposts/src/commands/ListSitesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSitesInput, ListSitesOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { ListSitesInput, ListSitesOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { ListSites } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/ListTagsForResourceCommand.ts b/clients/client-outposts/src/commands/ListTagsForResourceCommand.ts index 181c324c6e25e..c4d6e8ffb3ba3 100644 --- a/clients/client-outposts/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-outposts/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/StartCapacityTaskCommand.ts b/clients/client-outposts/src/commands/StartCapacityTaskCommand.ts index d3461dfebd301..251433f11cc45 100644 --- a/clients/client-outposts/src/commands/StartCapacityTaskCommand.ts +++ b/clients/client-outposts/src/commands/StartCapacityTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCapacityTaskInput, StartCapacityTaskOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { StartCapacityTaskInput, StartCapacityTaskOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { StartCapacityTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/StartConnectionCommand.ts b/clients/client-outposts/src/commands/StartConnectionCommand.ts index 5e06033c59d57..f2e142880166c 100644 --- a/clients/client-outposts/src/commands/StartConnectionCommand.ts +++ b/clients/client-outposts/src/commands/StartConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartConnectionRequest, StartConnectionResponse } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { StartConnectionRequest, StartConnectionResponse } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { StartConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/StartOutpostDecommissionCommand.ts b/clients/client-outposts/src/commands/StartOutpostDecommissionCommand.ts index e040f55afda56..5b7a20717cc27 100644 --- a/clients/client-outposts/src/commands/StartOutpostDecommissionCommand.ts +++ b/clients/client-outposts/src/commands/StartOutpostDecommissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartOutpostDecommissionInput, StartOutpostDecommissionOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { StartOutpostDecommissionInput, StartOutpostDecommissionOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { StartOutpostDecommission } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/TagResourceCommand.ts b/clients/client-outposts/src/commands/TagResourceCommand.ts index 72a6aaa216e21..404e6d3577bbd 100644 --- a/clients/client-outposts/src/commands/TagResourceCommand.ts +++ b/clients/client-outposts/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/UntagResourceCommand.ts b/clients/client-outposts/src/commands/UntagResourceCommand.ts index 184a4207b831c..7442ba570f379 100644 --- a/clients/client-outposts/src/commands/UntagResourceCommand.ts +++ b/clients/client-outposts/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/UpdateOutpostCommand.ts b/clients/client-outposts/src/commands/UpdateOutpostCommand.ts index 5e9a621194946..88f5ce10393d3 100644 --- a/clients/client-outposts/src/commands/UpdateOutpostCommand.ts +++ b/clients/client-outposts/src/commands/UpdateOutpostCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOutpostInput, UpdateOutpostOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { UpdateOutpostInput, UpdateOutpostOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { UpdateOutpost } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/UpdateSiteAddressCommand.ts b/clients/client-outposts/src/commands/UpdateSiteAddressCommand.ts index e21998c1bbde2..80c6174147b2b 100644 --- a/clients/client-outposts/src/commands/UpdateSiteAddressCommand.ts +++ b/clients/client-outposts/src/commands/UpdateSiteAddressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSiteAddressInput, UpdateSiteAddressOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { UpdateSiteAddressInput, UpdateSiteAddressOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { UpdateSiteAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/UpdateSiteCommand.ts b/clients/client-outposts/src/commands/UpdateSiteCommand.ts index 5518af1e58f8a..9a9ef3c065cb9 100644 --- a/clients/client-outposts/src/commands/UpdateSiteCommand.ts +++ b/clients/client-outposts/src/commands/UpdateSiteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSiteInput, UpdateSiteOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { UpdateSiteInput, UpdateSiteOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { UpdateSite } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/commands/UpdateSiteRackPhysicalPropertiesCommand.ts b/clients/client-outposts/src/commands/UpdateSiteRackPhysicalPropertiesCommand.ts index 957b866da75ee..aab2515f662b4 100644 --- a/clients/client-outposts/src/commands/UpdateSiteRackPhysicalPropertiesCommand.ts +++ b/clients/client-outposts/src/commands/UpdateSiteRackPhysicalPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSiteRackPhysicalPropertiesInput, UpdateSiteRackPhysicalPropertiesOutput } from "../models/models_0"; -import { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; +import type { UpdateSiteRackPhysicalPropertiesInput, UpdateSiteRackPhysicalPropertiesOutput } from "../models/models_0"; +import type { OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OutpostsClient"; import { UpdateSiteRackPhysicalProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-outposts/src/endpoint/EndpointParameters.ts b/clients/client-outposts/src/endpoint/EndpointParameters.ts index 13cd1aef4bc44..d31a41327e430 100644 --- a/clients/client-outposts/src/endpoint/EndpointParameters.ts +++ b/clients/client-outposts/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-outposts/src/endpoint/endpointResolver.ts b/clients/client-outposts/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-outposts/src/endpoint/endpointResolver.ts +++ b/clients/client-outposts/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-outposts/src/extensionConfiguration.ts b/clients/client-outposts/src/extensionConfiguration.ts index 5bbc8aea91b14..9fd7b375914ff 100644 --- a/clients/client-outposts/src/extensionConfiguration.ts +++ b/clients/client-outposts/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-outposts/src/models/OutpostsServiceException.ts b/clients/client-outposts/src/models/OutpostsServiceException.ts index df19c1ba6bab3..9464ac95ea6b7 100644 --- a/clients/client-outposts/src/models/OutpostsServiceException.ts +++ b/clients/client-outposts/src/models/OutpostsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-outposts/src/models/errors.ts b/clients/client-outposts/src/models/errors.ts index fa877f715e855..a42ba25e17518 100644 --- a/clients/client-outposts/src/models/errors.ts +++ b/clients/client-outposts/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ResourceType } from "./enums"; import { OutpostsServiceException as __BaseException } from "./OutpostsServiceException"; diff --git a/clients/client-outposts/src/pagination/GetOutpostBillingInformationPaginator.ts b/clients/client-outposts/src/pagination/GetOutpostBillingInformationPaginator.ts index 74d3b4bfc3137..a13f2f60a4227 100644 --- a/clients/client-outposts/src/pagination/GetOutpostBillingInformationPaginator.ts +++ b/clients/client-outposts/src/pagination/GetOutpostBillingInformationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetOutpostBillingInformationCommand, diff --git a/clients/client-outposts/src/pagination/GetOutpostInstanceTypesPaginator.ts b/clients/client-outposts/src/pagination/GetOutpostInstanceTypesPaginator.ts index 5a22de8e4667b..eca698748502d 100644 --- a/clients/client-outposts/src/pagination/GetOutpostInstanceTypesPaginator.ts +++ b/clients/client-outposts/src/pagination/GetOutpostInstanceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetOutpostInstanceTypesCommand, diff --git a/clients/client-outposts/src/pagination/GetOutpostSupportedInstanceTypesPaginator.ts b/clients/client-outposts/src/pagination/GetOutpostSupportedInstanceTypesPaginator.ts index fef581efc30a1..344d9e93cf7a6 100644 --- a/clients/client-outposts/src/pagination/GetOutpostSupportedInstanceTypesPaginator.ts +++ b/clients/client-outposts/src/pagination/GetOutpostSupportedInstanceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetOutpostSupportedInstanceTypesCommand, diff --git a/clients/client-outposts/src/pagination/Interfaces.ts b/clients/client-outposts/src/pagination/Interfaces.ts index cb0be045e011b..44abd53a5699c 100644 --- a/clients/client-outposts/src/pagination/Interfaces.ts +++ b/clients/client-outposts/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { OutpostsClient } from "../OutpostsClient"; diff --git a/clients/client-outposts/src/pagination/ListAssetInstancesPaginator.ts b/clients/client-outposts/src/pagination/ListAssetInstancesPaginator.ts index 16c3506eab575..d818baed3eacf 100644 --- a/clients/client-outposts/src/pagination/ListAssetInstancesPaginator.ts +++ b/clients/client-outposts/src/pagination/ListAssetInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetInstancesCommand, diff --git a/clients/client-outposts/src/pagination/ListAssetsPaginator.ts b/clients/client-outposts/src/pagination/ListAssetsPaginator.ts index b203258a5bb0e..50fbd16b6564d 100644 --- a/clients/client-outposts/src/pagination/ListAssetsPaginator.ts +++ b/clients/client-outposts/src/pagination/ListAssetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetsCommand, ListAssetsCommandInput, ListAssetsCommandOutput } from "../commands/ListAssetsCommand"; import { OutpostsClient } from "../OutpostsClient"; diff --git a/clients/client-outposts/src/pagination/ListBlockingInstancesForCapacityTaskPaginator.ts b/clients/client-outposts/src/pagination/ListBlockingInstancesForCapacityTaskPaginator.ts index e6964f0d9d974..c72bb14b238b4 100644 --- a/clients/client-outposts/src/pagination/ListBlockingInstancesForCapacityTaskPaginator.ts +++ b/clients/client-outposts/src/pagination/ListBlockingInstancesForCapacityTaskPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBlockingInstancesForCapacityTaskCommand, diff --git a/clients/client-outposts/src/pagination/ListCapacityTasksPaginator.ts b/clients/client-outposts/src/pagination/ListCapacityTasksPaginator.ts index 955a50e6600d5..4a5f254877da5 100644 --- a/clients/client-outposts/src/pagination/ListCapacityTasksPaginator.ts +++ b/clients/client-outposts/src/pagination/ListCapacityTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCapacityTasksCommand, diff --git a/clients/client-outposts/src/pagination/ListCatalogItemsPaginator.ts b/clients/client-outposts/src/pagination/ListCatalogItemsPaginator.ts index 1df42e531e48d..2f9e6d7a4a59b 100644 --- a/clients/client-outposts/src/pagination/ListCatalogItemsPaginator.ts +++ b/clients/client-outposts/src/pagination/ListCatalogItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCatalogItemsCommand, diff --git a/clients/client-outposts/src/pagination/ListOrdersPaginator.ts b/clients/client-outposts/src/pagination/ListOrdersPaginator.ts index 55f379eb8832a..88afa87b74ebf 100644 --- a/clients/client-outposts/src/pagination/ListOrdersPaginator.ts +++ b/clients/client-outposts/src/pagination/ListOrdersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrdersCommand, ListOrdersCommandInput, ListOrdersCommandOutput } from "../commands/ListOrdersCommand"; import { OutpostsClient } from "../OutpostsClient"; diff --git a/clients/client-outposts/src/pagination/ListOutpostsPaginator.ts b/clients/client-outposts/src/pagination/ListOutpostsPaginator.ts index b1becc1ffd130..272541ba0dbe7 100644 --- a/clients/client-outposts/src/pagination/ListOutpostsPaginator.ts +++ b/clients/client-outposts/src/pagination/ListOutpostsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOutpostsCommand, diff --git a/clients/client-outposts/src/pagination/ListSitesPaginator.ts b/clients/client-outposts/src/pagination/ListSitesPaginator.ts index 37712b16bb945..7cc228d0b124b 100644 --- a/clients/client-outposts/src/pagination/ListSitesPaginator.ts +++ b/clients/client-outposts/src/pagination/ListSitesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSitesCommand, ListSitesCommandInput, ListSitesCommandOutput } from "../commands/ListSitesCommand"; import { OutpostsClient } from "../OutpostsClient"; diff --git a/clients/client-outposts/src/runtimeConfig.browser.ts b/clients/client-outposts/src/runtimeConfig.browser.ts index c1d0ff4adcd4d..8084189ff4b05 100644 --- a/clients/client-outposts/src/runtimeConfig.browser.ts +++ b/clients/client-outposts/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OutpostsClientConfig } from "./OutpostsClient"; + +import type { OutpostsClientConfig } from "./OutpostsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-outposts/src/runtimeConfig.native.ts b/clients/client-outposts/src/runtimeConfig.native.ts index 5480f52ebe5f7..92c961461282f 100644 --- a/clients/client-outposts/src/runtimeConfig.native.ts +++ b/clients/client-outposts/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { OutpostsClientConfig } from "./OutpostsClient"; +import type { OutpostsClientConfig } from "./OutpostsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-outposts/src/runtimeConfig.shared.ts b/clients/client-outposts/src/runtimeConfig.shared.ts index 3186d144053d1..1e8af6766c622 100644 --- a/clients/client-outposts/src/runtimeConfig.shared.ts +++ b/clients/client-outposts/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultOutpostsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { OutpostsClientConfig } from "./OutpostsClient"; +import type { OutpostsClientConfig } from "./OutpostsClient"; /** * @internal diff --git a/clients/client-outposts/src/runtimeConfig.ts b/clients/client-outposts/src/runtimeConfig.ts index cc833b9b8a7f4..358415fe34b60 100644 --- a/clients/client-outposts/src/runtimeConfig.ts +++ b/clients/client-outposts/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { OutpostsClientConfig } from "./OutpostsClient"; + +import type { OutpostsClientConfig } from "./OutpostsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-outposts/src/runtimeExtensions.ts b/clients/client-outposts/src/runtimeExtensions.ts index 6e2471663a719..c34828aa8cc62 100644 --- a/clients/client-outposts/src/runtimeExtensions.ts +++ b/clients/client-outposts/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { OutpostsExtensionConfiguration } from "./extensionConfiguration"; +import type { OutpostsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-outposts/src/schemas/schemas_0.ts b/clients/client-outposts/src/schemas/schemas_0.ts index 71abb5625c0ed..35590e228baaa 100644 --- a/clients/client-outposts/src/schemas/schemas_0.ts +++ b/clients/client-outposts/src/schemas/schemas_0.ts @@ -312,7 +312,7 @@ const n0 = "com.amazonaws.outposts"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-panorama/package.json b/clients/client-panorama/package.json index 135e56e196fcc..c8a8d223a6107 100644 --- a/clients/client-panorama/package.json +++ b/clients/client-panorama/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-panorama/src/Panorama.ts b/clients/client-panorama/src/Panorama.ts index fe5a193878634..f74379c3b5227 100644 --- a/clients/client-panorama/src/Panorama.ts +++ b/clients/client-panorama/src/Panorama.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateApplicationInstanceCommand, @@ -160,7 +160,7 @@ import { UpdateDeviceMetadataCommandInput, UpdateDeviceMetadataCommandOutput, } from "./commands/UpdateDeviceMetadataCommand"; -import { PanoramaClient, PanoramaClientConfig } from "./PanoramaClient"; +import { PanoramaClient } from "./PanoramaClient"; const commands = { CreateApplicationInstanceCommand, diff --git a/clients/client-panorama/src/PanoramaClient.ts b/clients/client-panorama/src/PanoramaClient.ts index c8eb4924fecd1..18c55bab9ac03 100644 --- a/clients/client-panorama/src/PanoramaClient.ts +++ b/clients/client-panorama/src/PanoramaClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPanoramaHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -158,7 +167,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-panorama/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-panorama/src/auth/httpAuthExtensionConfiguration.ts index 90ab8a86dc756..1a4ae169888c9 100644 --- a/clients/client-panorama/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-panorama/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PanoramaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PanoramaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-panorama/src/auth/httpAuthSchemeProvider.ts b/clients/client-panorama/src/auth/httpAuthSchemeProvider.ts index d279e3fa28689..699d306005896 100644 --- a/clients/client-panorama/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-panorama/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PanoramaClientConfig, PanoramaClientResolvedConfig } from "../PanoramaClient"; +import { type PanoramaClientResolvedConfig, PanoramaClientConfig } from "../PanoramaClient"; /** * @internal diff --git a/clients/client-panorama/src/commands/CreateApplicationInstanceCommand.ts b/clients/client-panorama/src/commands/CreateApplicationInstanceCommand.ts index 13b2fb214bd97..e647b86b62a88 100644 --- a/clients/client-panorama/src/commands/CreateApplicationInstanceCommand.ts +++ b/clients/client-panorama/src/commands/CreateApplicationInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationInstanceRequest, CreateApplicationInstanceResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { CreateApplicationInstanceRequest, CreateApplicationInstanceResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { CreateApplicationInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/CreateJobForDevicesCommand.ts b/clients/client-panorama/src/commands/CreateJobForDevicesCommand.ts index 757a02d22c051..d471d2f58c531 100644 --- a/clients/client-panorama/src/commands/CreateJobForDevicesCommand.ts +++ b/clients/client-panorama/src/commands/CreateJobForDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJobForDevicesRequest, CreateJobForDevicesResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { CreateJobForDevicesRequest, CreateJobForDevicesResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { CreateJobForDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/CreateNodeFromTemplateJobCommand.ts b/clients/client-panorama/src/commands/CreateNodeFromTemplateJobCommand.ts index 1ff1d88336d18..3a18d7fee7a1a 100644 --- a/clients/client-panorama/src/commands/CreateNodeFromTemplateJobCommand.ts +++ b/clients/client-panorama/src/commands/CreateNodeFromTemplateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNodeFromTemplateJobRequest, CreateNodeFromTemplateJobResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { CreateNodeFromTemplateJobRequest, CreateNodeFromTemplateJobResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { CreateNodeFromTemplateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/CreatePackageCommand.ts b/clients/client-panorama/src/commands/CreatePackageCommand.ts index a084661f78f02..9fa00a13f5dd0 100644 --- a/clients/client-panorama/src/commands/CreatePackageCommand.ts +++ b/clients/client-panorama/src/commands/CreatePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePackageRequest, CreatePackageResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { CreatePackageRequest, CreatePackageResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { CreatePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/CreatePackageImportJobCommand.ts b/clients/client-panorama/src/commands/CreatePackageImportJobCommand.ts index ea38905a742b4..1ea55d45f76f9 100644 --- a/clients/client-panorama/src/commands/CreatePackageImportJobCommand.ts +++ b/clients/client-panorama/src/commands/CreatePackageImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePackageImportJobRequest, CreatePackageImportJobResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { CreatePackageImportJobRequest, CreatePackageImportJobResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { CreatePackageImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DeleteDeviceCommand.ts b/clients/client-panorama/src/commands/DeleteDeviceCommand.ts index 931fb73ea42e9..399462a748d63 100644 --- a/clients/client-panorama/src/commands/DeleteDeviceCommand.ts +++ b/clients/client-panorama/src/commands/DeleteDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DeleteDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DeletePackageCommand.ts b/clients/client-panorama/src/commands/DeletePackageCommand.ts index 9d192d75731cd..f39dcc8f53700 100644 --- a/clients/client-panorama/src/commands/DeletePackageCommand.ts +++ b/clients/client-panorama/src/commands/DeletePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePackageRequest, DeletePackageResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DeletePackageRequest, DeletePackageResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DeletePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DeregisterPackageVersionCommand.ts b/clients/client-panorama/src/commands/DeregisterPackageVersionCommand.ts index c986e18276853..c87dad4785ea5 100644 --- a/clients/client-panorama/src/commands/DeregisterPackageVersionCommand.ts +++ b/clients/client-panorama/src/commands/DeregisterPackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterPackageVersionRequest, DeregisterPackageVersionResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DeregisterPackageVersionRequest, DeregisterPackageVersionResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DeregisterPackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DescribeApplicationInstanceCommand.ts b/clients/client-panorama/src/commands/DescribeApplicationInstanceCommand.ts index 3698bcfaac91c..fd785a03850b0 100644 --- a/clients/client-panorama/src/commands/DescribeApplicationInstanceCommand.ts +++ b/clients/client-panorama/src/commands/DescribeApplicationInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeApplicationInstanceRequest, DescribeApplicationInstanceResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DescribeApplicationInstanceRequest, DescribeApplicationInstanceResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DescribeApplicationInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DescribeApplicationInstanceDetailsCommand.ts b/clients/client-panorama/src/commands/DescribeApplicationInstanceDetailsCommand.ts index bb9138e07afab..12fdaf18af2d7 100644 --- a/clients/client-panorama/src/commands/DescribeApplicationInstanceDetailsCommand.ts +++ b/clients/client-panorama/src/commands/DescribeApplicationInstanceDetailsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeApplicationInstanceDetailsRequest, DescribeApplicationInstanceDetailsResponse, } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DescribeApplicationInstanceDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DescribeDeviceCommand.ts b/clients/client-panorama/src/commands/DescribeDeviceCommand.ts index ada144a234480..19ed59f6b10e3 100644 --- a/clients/client-panorama/src/commands/DescribeDeviceCommand.ts +++ b/clients/client-panorama/src/commands/DescribeDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeviceRequest, DescribeDeviceResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DescribeDeviceRequest, DescribeDeviceResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DescribeDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DescribeDeviceJobCommand.ts b/clients/client-panorama/src/commands/DescribeDeviceJobCommand.ts index 718fdbf12e624..cc4ce67015f66 100644 --- a/clients/client-panorama/src/commands/DescribeDeviceJobCommand.ts +++ b/clients/client-panorama/src/commands/DescribeDeviceJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeviceJobRequest, DescribeDeviceJobResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DescribeDeviceJobRequest, DescribeDeviceJobResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DescribeDeviceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DescribeNodeCommand.ts b/clients/client-panorama/src/commands/DescribeNodeCommand.ts index 16f7fffd99313..1dff357c19638 100644 --- a/clients/client-panorama/src/commands/DescribeNodeCommand.ts +++ b/clients/client-panorama/src/commands/DescribeNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNodeRequest, DescribeNodeResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DescribeNodeRequest, DescribeNodeResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DescribeNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DescribeNodeFromTemplateJobCommand.ts b/clients/client-panorama/src/commands/DescribeNodeFromTemplateJobCommand.ts index f5f5a0d01859e..9b14fe33fb117 100644 --- a/clients/client-panorama/src/commands/DescribeNodeFromTemplateJobCommand.ts +++ b/clients/client-panorama/src/commands/DescribeNodeFromTemplateJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNodeFromTemplateJobRequest, DescribeNodeFromTemplateJobResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DescribeNodeFromTemplateJobRequest, DescribeNodeFromTemplateJobResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DescribeNodeFromTemplateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DescribePackageCommand.ts b/clients/client-panorama/src/commands/DescribePackageCommand.ts index fc5cc9fb00707..cca82088f17a6 100644 --- a/clients/client-panorama/src/commands/DescribePackageCommand.ts +++ b/clients/client-panorama/src/commands/DescribePackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePackageRequest, DescribePackageResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DescribePackageRequest, DescribePackageResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DescribePackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DescribePackageImportJobCommand.ts b/clients/client-panorama/src/commands/DescribePackageImportJobCommand.ts index 82a5601203098..2f2e4345bf09a 100644 --- a/clients/client-panorama/src/commands/DescribePackageImportJobCommand.ts +++ b/clients/client-panorama/src/commands/DescribePackageImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePackageImportJobRequest, DescribePackageImportJobResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DescribePackageImportJobRequest, DescribePackageImportJobResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DescribePackageImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/DescribePackageVersionCommand.ts b/clients/client-panorama/src/commands/DescribePackageVersionCommand.ts index 62d926fcc93b2..22881db56494a 100644 --- a/clients/client-panorama/src/commands/DescribePackageVersionCommand.ts +++ b/clients/client-panorama/src/commands/DescribePackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePackageVersionRequest, DescribePackageVersionResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { DescribePackageVersionRequest, DescribePackageVersionResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { DescribePackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListApplicationInstanceDependenciesCommand.ts b/clients/client-panorama/src/commands/ListApplicationInstanceDependenciesCommand.ts index f08c63b5eac4d..89760eefef81a 100644 --- a/clients/client-panorama/src/commands/ListApplicationInstanceDependenciesCommand.ts +++ b/clients/client-panorama/src/commands/ListApplicationInstanceDependenciesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListApplicationInstanceDependenciesRequest, ListApplicationInstanceDependenciesResponse, } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListApplicationInstanceDependencies } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListApplicationInstanceNodeInstancesCommand.ts b/clients/client-panorama/src/commands/ListApplicationInstanceNodeInstancesCommand.ts index 552faacf995b0..be0d30568f1c8 100644 --- a/clients/client-panorama/src/commands/ListApplicationInstanceNodeInstancesCommand.ts +++ b/clients/client-panorama/src/commands/ListApplicationInstanceNodeInstancesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListApplicationInstanceNodeInstancesRequest, ListApplicationInstanceNodeInstancesResponse, } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListApplicationInstanceNodeInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListApplicationInstancesCommand.ts b/clients/client-panorama/src/commands/ListApplicationInstancesCommand.ts index 03b9eddab4ea5..4d2ffdb7d7ab3 100644 --- a/clients/client-panorama/src/commands/ListApplicationInstancesCommand.ts +++ b/clients/client-panorama/src/commands/ListApplicationInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationInstancesRequest, ListApplicationInstancesResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { ListApplicationInstancesRequest, ListApplicationInstancesResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListApplicationInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListDevicesCommand.ts b/clients/client-panorama/src/commands/ListDevicesCommand.ts index 65568293abba5..29296e780f1c7 100644 --- a/clients/client-panorama/src/commands/ListDevicesCommand.ts +++ b/clients/client-panorama/src/commands/ListDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevicesRequest, ListDevicesResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { ListDevicesRequest, ListDevicesResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListDevicesJobsCommand.ts b/clients/client-panorama/src/commands/ListDevicesJobsCommand.ts index 3d953f0a16df6..0cd990a329670 100644 --- a/clients/client-panorama/src/commands/ListDevicesJobsCommand.ts +++ b/clients/client-panorama/src/commands/ListDevicesJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevicesJobsRequest, ListDevicesJobsResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { ListDevicesJobsRequest, ListDevicesJobsResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListDevicesJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListNodeFromTemplateJobsCommand.ts b/clients/client-panorama/src/commands/ListNodeFromTemplateJobsCommand.ts index 83ae9e5cbae85..9228461d0c594 100644 --- a/clients/client-panorama/src/commands/ListNodeFromTemplateJobsCommand.ts +++ b/clients/client-panorama/src/commands/ListNodeFromTemplateJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNodeFromTemplateJobsRequest, ListNodeFromTemplateJobsResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { ListNodeFromTemplateJobsRequest, ListNodeFromTemplateJobsResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListNodeFromTemplateJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListNodesCommand.ts b/clients/client-panorama/src/commands/ListNodesCommand.ts index a393533daf46e..94360c6303b7d 100644 --- a/clients/client-panorama/src/commands/ListNodesCommand.ts +++ b/clients/client-panorama/src/commands/ListNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNodesRequest, ListNodesResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { ListNodesRequest, ListNodesResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListPackageImportJobsCommand.ts b/clients/client-panorama/src/commands/ListPackageImportJobsCommand.ts index 5593bb3069913..4fc38370a08ee 100644 --- a/clients/client-panorama/src/commands/ListPackageImportJobsCommand.ts +++ b/clients/client-panorama/src/commands/ListPackageImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPackageImportJobsRequest, ListPackageImportJobsResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { ListPackageImportJobsRequest, ListPackageImportJobsResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListPackageImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListPackagesCommand.ts b/clients/client-panorama/src/commands/ListPackagesCommand.ts index 849f71a076353..175e0d208a0ca 100644 --- a/clients/client-panorama/src/commands/ListPackagesCommand.ts +++ b/clients/client-panorama/src/commands/ListPackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPackagesRequest, ListPackagesResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { ListPackagesRequest, ListPackagesResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListPackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ListTagsForResourceCommand.ts b/clients/client-panorama/src/commands/ListTagsForResourceCommand.ts index de157969c3624..284000e8de27b 100644 --- a/clients/client-panorama/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-panorama/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/ProvisionDeviceCommand.ts b/clients/client-panorama/src/commands/ProvisionDeviceCommand.ts index 2079a1ac93476..cde64f88c24e2 100644 --- a/clients/client-panorama/src/commands/ProvisionDeviceCommand.ts +++ b/clients/client-panorama/src/commands/ProvisionDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProvisionDeviceRequest, ProvisionDeviceResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { ProvisionDeviceRequest, ProvisionDeviceResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { ProvisionDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/RegisterPackageVersionCommand.ts b/clients/client-panorama/src/commands/RegisterPackageVersionCommand.ts index 4f97e0a706e7d..813b48de30f98 100644 --- a/clients/client-panorama/src/commands/RegisterPackageVersionCommand.ts +++ b/clients/client-panorama/src/commands/RegisterPackageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterPackageVersionRequest, RegisterPackageVersionResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { RegisterPackageVersionRequest, RegisterPackageVersionResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { RegisterPackageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/RemoveApplicationInstanceCommand.ts b/clients/client-panorama/src/commands/RemoveApplicationInstanceCommand.ts index 327d16c06e392..0c5cda50ecbe7 100644 --- a/clients/client-panorama/src/commands/RemoveApplicationInstanceCommand.ts +++ b/clients/client-panorama/src/commands/RemoveApplicationInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveApplicationInstanceRequest, RemoveApplicationInstanceResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { RemoveApplicationInstanceRequest, RemoveApplicationInstanceResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { RemoveApplicationInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/SignalApplicationInstanceNodeInstancesCommand.ts b/clients/client-panorama/src/commands/SignalApplicationInstanceNodeInstancesCommand.ts index 20f0b65e6531b..7ce1cdabf1f39 100644 --- a/clients/client-panorama/src/commands/SignalApplicationInstanceNodeInstancesCommand.ts +++ b/clients/client-panorama/src/commands/SignalApplicationInstanceNodeInstancesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { SignalApplicationInstanceNodeInstancesRequest, SignalApplicationInstanceNodeInstancesResponse, } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { SignalApplicationInstanceNodeInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/TagResourceCommand.ts b/clients/client-panorama/src/commands/TagResourceCommand.ts index 5337d55cf533f..8a041047fc031 100644 --- a/clients/client-panorama/src/commands/TagResourceCommand.ts +++ b/clients/client-panorama/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/UntagResourceCommand.ts b/clients/client-panorama/src/commands/UntagResourceCommand.ts index 4b03ab6e5a7c4..8118ca17cdb73 100644 --- a/clients/client-panorama/src/commands/UntagResourceCommand.ts +++ b/clients/client-panorama/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/commands/UpdateDeviceMetadataCommand.ts b/clients/client-panorama/src/commands/UpdateDeviceMetadataCommand.ts index 36406358e7bfb..b1c642571f6ff 100644 --- a/clients/client-panorama/src/commands/UpdateDeviceMetadataCommand.ts +++ b/clients/client-panorama/src/commands/UpdateDeviceMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeviceMetadataRequest, UpdateDeviceMetadataResponse } from "../models/models_0"; -import { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; +import type { UpdateDeviceMetadataRequest, UpdateDeviceMetadataResponse } from "../models/models_0"; +import type { PanoramaClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PanoramaClient"; import { UpdateDeviceMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-panorama/src/endpoint/EndpointParameters.ts b/clients/client-panorama/src/endpoint/EndpointParameters.ts index 96b8af65b260a..46b51926cfa70 100644 --- a/clients/client-panorama/src/endpoint/EndpointParameters.ts +++ b/clients/client-panorama/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-panorama/src/endpoint/endpointResolver.ts b/clients/client-panorama/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-panorama/src/endpoint/endpointResolver.ts +++ b/clients/client-panorama/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-panorama/src/extensionConfiguration.ts b/clients/client-panorama/src/extensionConfiguration.ts index f497a6562314f..fc947aebcc8a6 100644 --- a/clients/client-panorama/src/extensionConfiguration.ts +++ b/clients/client-panorama/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-panorama/src/models/PanoramaServiceException.ts b/clients/client-panorama/src/models/PanoramaServiceException.ts index 69eacbbff9984..fad4ce9ce9755 100644 --- a/clients/client-panorama/src/models/PanoramaServiceException.ts +++ b/clients/client-panorama/src/models/PanoramaServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-panorama/src/models/errors.ts b/clients/client-panorama/src/models/errors.ts index efae115f5040b..0de63c4b286a9 100644 --- a/clients/client-panorama/src/models/errors.ts +++ b/clients/client-panorama/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ConflictExceptionErrorArgument, ValidationExceptionErrorArgument, ValidationExceptionField } from "./models_0"; diff --git a/clients/client-panorama/src/pagination/Interfaces.ts b/clients/client-panorama/src/pagination/Interfaces.ts index a280f49b67e81..b2cc4f7fc042d 100644 --- a/clients/client-panorama/src/pagination/Interfaces.ts +++ b/clients/client-panorama/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PanoramaClient } from "../PanoramaClient"; diff --git a/clients/client-panorama/src/pagination/ListApplicationInstanceDependenciesPaginator.ts b/clients/client-panorama/src/pagination/ListApplicationInstanceDependenciesPaginator.ts index 8c67ee5ea6111..3ac0dc4cd6bf7 100644 --- a/clients/client-panorama/src/pagination/ListApplicationInstanceDependenciesPaginator.ts +++ b/clients/client-panorama/src/pagination/ListApplicationInstanceDependenciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationInstanceDependenciesCommand, diff --git a/clients/client-panorama/src/pagination/ListApplicationInstanceNodeInstancesPaginator.ts b/clients/client-panorama/src/pagination/ListApplicationInstanceNodeInstancesPaginator.ts index f87923f0e0ecf..0cde079b675e6 100644 --- a/clients/client-panorama/src/pagination/ListApplicationInstanceNodeInstancesPaginator.ts +++ b/clients/client-panorama/src/pagination/ListApplicationInstanceNodeInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationInstanceNodeInstancesCommand, diff --git a/clients/client-panorama/src/pagination/ListApplicationInstancesPaginator.ts b/clients/client-panorama/src/pagination/ListApplicationInstancesPaginator.ts index 0db91af40dcfb..1e80580597e33 100644 --- a/clients/client-panorama/src/pagination/ListApplicationInstancesPaginator.ts +++ b/clients/client-panorama/src/pagination/ListApplicationInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationInstancesCommand, diff --git a/clients/client-panorama/src/pagination/ListDevicesJobsPaginator.ts b/clients/client-panorama/src/pagination/ListDevicesJobsPaginator.ts index 3811fc9e6f216..333297742d25c 100644 --- a/clients/client-panorama/src/pagination/ListDevicesJobsPaginator.ts +++ b/clients/client-panorama/src/pagination/ListDevicesJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDevicesJobsCommand, diff --git a/clients/client-panorama/src/pagination/ListDevicesPaginator.ts b/clients/client-panorama/src/pagination/ListDevicesPaginator.ts index 484c9db6b8468..17b0689b73b5b 100644 --- a/clients/client-panorama/src/pagination/ListDevicesPaginator.ts +++ b/clients/client-panorama/src/pagination/ListDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDevicesCommand, ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand"; import { PanoramaClient } from "../PanoramaClient"; diff --git a/clients/client-panorama/src/pagination/ListNodeFromTemplateJobsPaginator.ts b/clients/client-panorama/src/pagination/ListNodeFromTemplateJobsPaginator.ts index 6401d0bfac110..ac062ed00572a 100644 --- a/clients/client-panorama/src/pagination/ListNodeFromTemplateJobsPaginator.ts +++ b/clients/client-panorama/src/pagination/ListNodeFromTemplateJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNodeFromTemplateJobsCommand, diff --git a/clients/client-panorama/src/pagination/ListNodesPaginator.ts b/clients/client-panorama/src/pagination/ListNodesPaginator.ts index 0247a117734f9..7d05c448ea4e0 100644 --- a/clients/client-panorama/src/pagination/ListNodesPaginator.ts +++ b/clients/client-panorama/src/pagination/ListNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNodesCommand, ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand"; import { PanoramaClient } from "../PanoramaClient"; diff --git a/clients/client-panorama/src/pagination/ListPackageImportJobsPaginator.ts b/clients/client-panorama/src/pagination/ListPackageImportJobsPaginator.ts index f7631721d8ab9..dbaf9c440b787 100644 --- a/clients/client-panorama/src/pagination/ListPackageImportJobsPaginator.ts +++ b/clients/client-panorama/src/pagination/ListPackageImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPackageImportJobsCommand, diff --git a/clients/client-panorama/src/pagination/ListPackagesPaginator.ts b/clients/client-panorama/src/pagination/ListPackagesPaginator.ts index a32b7017f47c2..e620fdd30f569 100644 --- a/clients/client-panorama/src/pagination/ListPackagesPaginator.ts +++ b/clients/client-panorama/src/pagination/ListPackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPackagesCommand, diff --git a/clients/client-panorama/src/runtimeConfig.browser.ts b/clients/client-panorama/src/runtimeConfig.browser.ts index 606449409e2e2..8069af26d4619 100644 --- a/clients/client-panorama/src/runtimeConfig.browser.ts +++ b/clients/client-panorama/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PanoramaClientConfig } from "./PanoramaClient"; + +import type { PanoramaClientConfig } from "./PanoramaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-panorama/src/runtimeConfig.native.ts b/clients/client-panorama/src/runtimeConfig.native.ts index 1b76a5b43ac6e..1e474facb6105 100644 --- a/clients/client-panorama/src/runtimeConfig.native.ts +++ b/clients/client-panorama/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PanoramaClientConfig } from "./PanoramaClient"; +import type { PanoramaClientConfig } from "./PanoramaClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-panorama/src/runtimeConfig.shared.ts b/clients/client-panorama/src/runtimeConfig.shared.ts index c7f379f1567d4..5b15dd442cdf7 100644 --- a/clients/client-panorama/src/runtimeConfig.shared.ts +++ b/clients/client-panorama/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPanoramaHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PanoramaClientConfig } from "./PanoramaClient"; +import type { PanoramaClientConfig } from "./PanoramaClient"; /** * @internal diff --git a/clients/client-panorama/src/runtimeConfig.ts b/clients/client-panorama/src/runtimeConfig.ts index 53ca93e252f20..2dc9ef94d7e48 100644 --- a/clients/client-panorama/src/runtimeConfig.ts +++ b/clients/client-panorama/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PanoramaClientConfig } from "./PanoramaClient"; + +import type { PanoramaClientConfig } from "./PanoramaClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-panorama/src/runtimeExtensions.ts b/clients/client-panorama/src/runtimeExtensions.ts index 44292f21068ab..f1834f4942cae 100644 --- a/clients/client-panorama/src/runtimeExtensions.ts +++ b/clients/client-panorama/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PanoramaExtensionConfiguration } from "./extensionConfiguration"; +import type { PanoramaExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-panorama/src/schemas/schemas_0.ts b/clients/client-panorama/src/schemas/schemas_0.ts index 3f49398c5297a..7a573e0d6aa8a 100644 --- a/clients/client-panorama/src/schemas/schemas_0.ts +++ b/clients/client-panorama/src/schemas/schemas_0.ts @@ -321,7 +321,7 @@ const n0 = "com.amazonaws.panorama"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-partnercentral-account/package.json b/clients/client-partnercentral-account/package.json index f0047b6cc9cfd..b1902085e429b 100644 --- a/clients/client-partnercentral-account/package.json +++ b/clients/client-partnercentral-account/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-partnercentral-account/src/PartnerCentralAccount.ts b/clients/client-partnercentral-account/src/PartnerCentralAccount.ts index b036775c62f31..fb7dd5daafa84 100644 --- a/clients/client-partnercentral-account/src/PartnerCentralAccount.ts +++ b/clients/client-partnercentral-account/src/PartnerCentralAccount.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptConnectionInvitationCommand, @@ -129,7 +129,7 @@ import { UpdateConnectionPreferencesCommandInput, UpdateConnectionPreferencesCommandOutput, } from "./commands/UpdateConnectionPreferencesCommand"; -import { PartnerCentralAccountClient, PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient"; +import { PartnerCentralAccountClient } from "./PartnerCentralAccountClient"; const commands = { AcceptConnectionInvitationCommand, diff --git a/clients/client-partnercentral-account/src/PartnerCentralAccountClient.ts b/clients/client-partnercentral-account/src/PartnerCentralAccountClient.ts index 8c812cdd2b526..03b2a7207ce48 100644 --- a/clients/client-partnercentral-account/src/PartnerCentralAccountClient.ts +++ b/clients/client-partnercentral-account/src/PartnerCentralAccountClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPartnerCentralAccountHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -148,7 +157,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-partnercentral-account/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-partnercentral-account/src/auth/httpAuthExtensionConfiguration.ts index 70528a4d599bc..42c07d01ca76e 100644 --- a/clients/client-partnercentral-account/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-partnercentral-account/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PartnerCentralAccountHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PartnerCentralAccountHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-partnercentral-account/src/auth/httpAuthSchemeProvider.ts b/clients/client-partnercentral-account/src/auth/httpAuthSchemeProvider.ts index 622ea8e9d0150..27fcaa0df209c 100644 --- a/clients/client-partnercentral-account/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-partnercentral-account/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type PartnerCentralAccountClientResolvedConfig, PartnerCentralAccountClientConfig, - PartnerCentralAccountClientResolvedConfig, } from "../PartnerCentralAccountClient"; /** diff --git a/clients/client-partnercentral-account/src/commands/AcceptConnectionInvitationCommand.ts b/clients/client-partnercentral-account/src/commands/AcceptConnectionInvitationCommand.ts index 4dd1152267fec..4b77f8f8eb7ea 100644 --- a/clients/client-partnercentral-account/src/commands/AcceptConnectionInvitationCommand.ts +++ b/clients/client-partnercentral-account/src/commands/AcceptConnectionInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptConnectionInvitationRequest, AcceptConnectionInvitationResponse } from "../models/models_0"; -import { +import type { AcceptConnectionInvitationRequest, AcceptConnectionInvitationResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/AssociateAwsTrainingCertificationEmailDomainCommand.ts b/clients/client-partnercentral-account/src/commands/AssociateAwsTrainingCertificationEmailDomainCommand.ts index f41b6973f3efa..3eba4dac9125d 100644 --- a/clients/client-partnercentral-account/src/commands/AssociateAwsTrainingCertificationEmailDomainCommand.ts +++ b/clients/client-partnercentral-account/src/commands/AssociateAwsTrainingCertificationEmailDomainCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateAwsTrainingCertificationEmailDomainRequest, AssociateAwsTrainingCertificationEmailDomainResponse, } from "../models/models_0"; -import { +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/CancelConnectionCommand.ts b/clients/client-partnercentral-account/src/commands/CancelConnectionCommand.ts index efbb02b8821b6..72b71fc4a2c00 100644 --- a/clients/client-partnercentral-account/src/commands/CancelConnectionCommand.ts +++ b/clients/client-partnercentral-account/src/commands/CancelConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelConnectionRequest, CancelConnectionResponse } from "../models/models_0"; -import { +import type { CancelConnectionRequest, CancelConnectionResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/CancelConnectionInvitationCommand.ts b/clients/client-partnercentral-account/src/commands/CancelConnectionInvitationCommand.ts index 30a0897b7c121..e6d21ac382de5 100644 --- a/clients/client-partnercentral-account/src/commands/CancelConnectionInvitationCommand.ts +++ b/clients/client-partnercentral-account/src/commands/CancelConnectionInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelConnectionInvitationRequest, CancelConnectionInvitationResponse } from "../models/models_0"; -import { +import type { CancelConnectionInvitationRequest, CancelConnectionInvitationResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/CancelProfileUpdateTaskCommand.ts b/clients/client-partnercentral-account/src/commands/CancelProfileUpdateTaskCommand.ts index d774171741cf0..443aa227c270e 100644 --- a/clients/client-partnercentral-account/src/commands/CancelProfileUpdateTaskCommand.ts +++ b/clients/client-partnercentral-account/src/commands/CancelProfileUpdateTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelProfileUpdateTaskRequest, CancelProfileUpdateTaskResponse } from "../models/models_0"; -import { +import type { CancelProfileUpdateTaskRequest, CancelProfileUpdateTaskResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/CreateConnectionInvitationCommand.ts b/clients/client-partnercentral-account/src/commands/CreateConnectionInvitationCommand.ts index ead25fe8b4e48..270ce13921197 100644 --- a/clients/client-partnercentral-account/src/commands/CreateConnectionInvitationCommand.ts +++ b/clients/client-partnercentral-account/src/commands/CreateConnectionInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionInvitationRequest, CreateConnectionInvitationResponse } from "../models/models_0"; -import { +import type { CreateConnectionInvitationRequest, CreateConnectionInvitationResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/CreatePartnerCommand.ts b/clients/client-partnercentral-account/src/commands/CreatePartnerCommand.ts index 49d58a8095729..668e1409331e7 100644 --- a/clients/client-partnercentral-account/src/commands/CreatePartnerCommand.ts +++ b/clients/client-partnercentral-account/src/commands/CreatePartnerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePartnerRequest, CreatePartnerResponse } from "../models/models_0"; -import { +import type { CreatePartnerRequest, CreatePartnerResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.ts b/clients/client-partnercentral-account/src/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.ts index 27fb1e28748b3..555ae3700f6d6 100644 --- a/clients/client-partnercentral-account/src/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.ts +++ b/clients/client-partnercentral-account/src/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateAwsTrainingCertificationEmailDomainRequest, DisassociateAwsTrainingCertificationEmailDomainResponse, } from "../models/models_0"; -import { +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/GetAllianceLeadContactCommand.ts b/clients/client-partnercentral-account/src/commands/GetAllianceLeadContactCommand.ts index 3926c182d5d2a..dbce0bca05577 100644 --- a/clients/client-partnercentral-account/src/commands/GetAllianceLeadContactCommand.ts +++ b/clients/client-partnercentral-account/src/commands/GetAllianceLeadContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAllianceLeadContactRequest, GetAllianceLeadContactResponse } from "../models/models_0"; -import { +import type { GetAllianceLeadContactRequest, GetAllianceLeadContactResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/GetConnectionCommand.ts b/clients/client-partnercentral-account/src/commands/GetConnectionCommand.ts index d881ed3c70b15..f0d179cfc191f 100644 --- a/clients/client-partnercentral-account/src/commands/GetConnectionCommand.ts +++ b/clients/client-partnercentral-account/src/commands/GetConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionRequest, GetConnectionResponse } from "../models/models_0"; -import { +import type { GetConnectionRequest, GetConnectionResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/GetConnectionInvitationCommand.ts b/clients/client-partnercentral-account/src/commands/GetConnectionInvitationCommand.ts index 4946cbf596284..9ddc36c779d56 100644 --- a/clients/client-partnercentral-account/src/commands/GetConnectionInvitationCommand.ts +++ b/clients/client-partnercentral-account/src/commands/GetConnectionInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionInvitationRequest, GetConnectionInvitationResponse } from "../models/models_0"; -import { +import type { GetConnectionInvitationRequest, GetConnectionInvitationResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/GetConnectionPreferencesCommand.ts b/clients/client-partnercentral-account/src/commands/GetConnectionPreferencesCommand.ts index f2449e93bd9c8..c9552d3309a2b 100644 --- a/clients/client-partnercentral-account/src/commands/GetConnectionPreferencesCommand.ts +++ b/clients/client-partnercentral-account/src/commands/GetConnectionPreferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionPreferencesRequest, GetConnectionPreferencesResponse } from "../models/models_0"; -import { +import type { GetConnectionPreferencesRequest, GetConnectionPreferencesResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/GetPartnerCommand.ts b/clients/client-partnercentral-account/src/commands/GetPartnerCommand.ts index 89980acd25e4c..41885a31b43be 100644 --- a/clients/client-partnercentral-account/src/commands/GetPartnerCommand.ts +++ b/clients/client-partnercentral-account/src/commands/GetPartnerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPartnerRequest, GetPartnerResponse } from "../models/models_0"; -import { +import type { GetPartnerRequest, GetPartnerResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/GetProfileUpdateTaskCommand.ts b/clients/client-partnercentral-account/src/commands/GetProfileUpdateTaskCommand.ts index 5adcc5bf9030c..859244dd0f980 100644 --- a/clients/client-partnercentral-account/src/commands/GetProfileUpdateTaskCommand.ts +++ b/clients/client-partnercentral-account/src/commands/GetProfileUpdateTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileUpdateTaskRequest, GetProfileUpdateTaskResponse } from "../models/models_0"; -import { +import type { GetProfileUpdateTaskRequest, GetProfileUpdateTaskResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/GetProfileVisibilityCommand.ts b/clients/client-partnercentral-account/src/commands/GetProfileVisibilityCommand.ts index 860adbb5bbc2e..817ffa290a8ca 100644 --- a/clients/client-partnercentral-account/src/commands/GetProfileVisibilityCommand.ts +++ b/clients/client-partnercentral-account/src/commands/GetProfileVisibilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileVisibilityRequest, GetProfileVisibilityResponse } from "../models/models_0"; -import { +import type { GetProfileVisibilityRequest, GetProfileVisibilityResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/ListConnectionInvitationsCommand.ts b/clients/client-partnercentral-account/src/commands/ListConnectionInvitationsCommand.ts index 417b17f2df595..f147e1630e953 100644 --- a/clients/client-partnercentral-account/src/commands/ListConnectionInvitationsCommand.ts +++ b/clients/client-partnercentral-account/src/commands/ListConnectionInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectionInvitationsRequest, ListConnectionInvitationsResponse } from "../models/models_0"; -import { +import type { ListConnectionInvitationsRequest, ListConnectionInvitationsResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/ListConnectionsCommand.ts b/clients/client-partnercentral-account/src/commands/ListConnectionsCommand.ts index 517358b8ad908..77b7ca9421436 100644 --- a/clients/client-partnercentral-account/src/commands/ListConnectionsCommand.ts +++ b/clients/client-partnercentral-account/src/commands/ListConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0"; -import { +import type { ListConnectionsRequest, ListConnectionsResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/ListPartnersCommand.ts b/clients/client-partnercentral-account/src/commands/ListPartnersCommand.ts index d8456f31b7307..437a8403b22ac 100644 --- a/clients/client-partnercentral-account/src/commands/ListPartnersCommand.ts +++ b/clients/client-partnercentral-account/src/commands/ListPartnersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPartnersRequest, ListPartnersResponse } from "../models/models_0"; -import { +import type { ListPartnersRequest, ListPartnersResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/ListTagsForResourceCommand.ts b/clients/client-partnercentral-account/src/commands/ListTagsForResourceCommand.ts index 966be5ca8a47a..61f53c0c1b453 100644 --- a/clients/client-partnercentral-account/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-partnercentral-account/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/PutAllianceLeadContactCommand.ts b/clients/client-partnercentral-account/src/commands/PutAllianceLeadContactCommand.ts index 0df1054bf2471..869c3b1036cae 100644 --- a/clients/client-partnercentral-account/src/commands/PutAllianceLeadContactCommand.ts +++ b/clients/client-partnercentral-account/src/commands/PutAllianceLeadContactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAllianceLeadContactRequest, PutAllianceLeadContactResponse } from "../models/models_0"; -import { +import type { PutAllianceLeadContactRequest, PutAllianceLeadContactResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/PutProfileVisibilityCommand.ts b/clients/client-partnercentral-account/src/commands/PutProfileVisibilityCommand.ts index 8aaa181d81c58..812ab08d814c0 100644 --- a/clients/client-partnercentral-account/src/commands/PutProfileVisibilityCommand.ts +++ b/clients/client-partnercentral-account/src/commands/PutProfileVisibilityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutProfileVisibilityRequest, PutProfileVisibilityResponse } from "../models/models_0"; -import { +import type { PutProfileVisibilityRequest, PutProfileVisibilityResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/RejectConnectionInvitationCommand.ts b/clients/client-partnercentral-account/src/commands/RejectConnectionInvitationCommand.ts index 100980b087d4c..9de9964acd6db 100644 --- a/clients/client-partnercentral-account/src/commands/RejectConnectionInvitationCommand.ts +++ b/clients/client-partnercentral-account/src/commands/RejectConnectionInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectConnectionInvitationRequest, RejectConnectionInvitationResponse } from "../models/models_0"; -import { +import type { RejectConnectionInvitationRequest, RejectConnectionInvitationResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/SendEmailVerificationCodeCommand.ts b/clients/client-partnercentral-account/src/commands/SendEmailVerificationCodeCommand.ts index 8062a22afddc1..442898688526a 100644 --- a/clients/client-partnercentral-account/src/commands/SendEmailVerificationCodeCommand.ts +++ b/clients/client-partnercentral-account/src/commands/SendEmailVerificationCodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendEmailVerificationCodeRequest, SendEmailVerificationCodeResponse } from "../models/models_0"; -import { +import type { SendEmailVerificationCodeRequest, SendEmailVerificationCodeResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/StartProfileUpdateTaskCommand.ts b/clients/client-partnercentral-account/src/commands/StartProfileUpdateTaskCommand.ts index 624fef1d14045..a131320d9261a 100644 --- a/clients/client-partnercentral-account/src/commands/StartProfileUpdateTaskCommand.ts +++ b/clients/client-partnercentral-account/src/commands/StartProfileUpdateTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartProfileUpdateTaskRequest, StartProfileUpdateTaskResponse } from "../models/models_0"; -import { +import type { StartProfileUpdateTaskRequest, StartProfileUpdateTaskResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/TagResourceCommand.ts b/clients/client-partnercentral-account/src/commands/TagResourceCommand.ts index 7bb96aff02383..3656025b1b691 100644 --- a/clients/client-partnercentral-account/src/commands/TagResourceCommand.ts +++ b/clients/client-partnercentral-account/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/UntagResourceCommand.ts b/clients/client-partnercentral-account/src/commands/UntagResourceCommand.ts index 418ce29fbb47a..3d6a2a51f7b9c 100644 --- a/clients/client-partnercentral-account/src/commands/UntagResourceCommand.ts +++ b/clients/client-partnercentral-account/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/commands/UpdateConnectionPreferencesCommand.ts b/clients/client-partnercentral-account/src/commands/UpdateConnectionPreferencesCommand.ts index c43a596c53865..b4a05e3c093dd 100644 --- a/clients/client-partnercentral-account/src/commands/UpdateConnectionPreferencesCommand.ts +++ b/clients/client-partnercentral-account/src/commands/UpdateConnectionPreferencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectionPreferencesRequest, UpdateConnectionPreferencesResponse } from "../models/models_0"; -import { +import type { UpdateConnectionPreferencesRequest, UpdateConnectionPreferencesResponse } from "../models/models_0"; +import type { PartnerCentralAccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-account/src/endpoint/EndpointParameters.ts b/clients/client-partnercentral-account/src/endpoint/EndpointParameters.ts index 6704cf351e174..fbe040e78479b 100644 --- a/clients/client-partnercentral-account/src/endpoint/EndpointParameters.ts +++ b/clients/client-partnercentral-account/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-partnercentral-account/src/endpoint/endpointResolver.ts b/clients/client-partnercentral-account/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-partnercentral-account/src/endpoint/endpointResolver.ts +++ b/clients/client-partnercentral-account/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-partnercentral-account/src/extensionConfiguration.ts b/clients/client-partnercentral-account/src/extensionConfiguration.ts index 36404c2358b5a..2be408371fe90 100644 --- a/clients/client-partnercentral-account/src/extensionConfiguration.ts +++ b/clients/client-partnercentral-account/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-partnercentral-account/src/models/PartnerCentralAccountServiceException.ts b/clients/client-partnercentral-account/src/models/PartnerCentralAccountServiceException.ts index 7c830735e1eb7..aa36088663d39 100644 --- a/clients/client-partnercentral-account/src/models/PartnerCentralAccountServiceException.ts +++ b/clients/client-partnercentral-account/src/models/PartnerCentralAccountServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-partnercentral-account/src/models/errors.ts b/clients/client-partnercentral-account/src/models/errors.ts index 4a1621630a4d7..5c0c754dd0610 100644 --- a/clients/client-partnercentral-account/src/models/errors.ts +++ b/clients/client-partnercentral-account/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessDeniedExceptionReason, diff --git a/clients/client-partnercentral-account/src/pagination/Interfaces.ts b/clients/client-partnercentral-account/src/pagination/Interfaces.ts index ef11c834c1db0..26dee6128e335 100644 --- a/clients/client-partnercentral-account/src/pagination/Interfaces.ts +++ b/clients/client-partnercentral-account/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PartnerCentralAccountClient } from "../PartnerCentralAccountClient"; diff --git a/clients/client-partnercentral-account/src/pagination/ListConnectionInvitationsPaginator.ts b/clients/client-partnercentral-account/src/pagination/ListConnectionInvitationsPaginator.ts index 6caa49979f82e..da45ed95ad1a9 100644 --- a/clients/client-partnercentral-account/src/pagination/ListConnectionInvitationsPaginator.ts +++ b/clients/client-partnercentral-account/src/pagination/ListConnectionInvitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectionInvitationsCommand, diff --git a/clients/client-partnercentral-account/src/pagination/ListConnectionsPaginator.ts b/clients/client-partnercentral-account/src/pagination/ListConnectionsPaginator.ts index 3fa1b98ff384b..09d06cd64c5ce 100644 --- a/clients/client-partnercentral-account/src/pagination/ListConnectionsPaginator.ts +++ b/clients/client-partnercentral-account/src/pagination/ListConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectionsCommand, diff --git a/clients/client-partnercentral-account/src/pagination/ListPartnersPaginator.ts b/clients/client-partnercentral-account/src/pagination/ListPartnersPaginator.ts index 8410321c69148..d8e7244c0f7e6 100644 --- a/clients/client-partnercentral-account/src/pagination/ListPartnersPaginator.ts +++ b/clients/client-partnercentral-account/src/pagination/ListPartnersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPartnersCommand, diff --git a/clients/client-partnercentral-account/src/runtimeConfig.browser.ts b/clients/client-partnercentral-account/src/runtimeConfig.browser.ts index e6e72aae79cbc..497b347043b86 100644 --- a/clients/client-partnercentral-account/src/runtimeConfig.browser.ts +++ b/clients/client-partnercentral-account/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient"; + +import type { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-partnercentral-account/src/runtimeConfig.native.ts b/clients/client-partnercentral-account/src/runtimeConfig.native.ts index 36b42741cf5e9..b4f6c21c3624a 100644 --- a/clients/client-partnercentral-account/src/runtimeConfig.native.ts +++ b/clients/client-partnercentral-account/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient"; +import type { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-partnercentral-account/src/runtimeConfig.shared.ts b/clients/client-partnercentral-account/src/runtimeConfig.shared.ts index 7e52114a29474..a6f1ae2603565 100644 --- a/clients/client-partnercentral-account/src/runtimeConfig.shared.ts +++ b/clients/client-partnercentral-account/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPartnerCentralAccountHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient"; +import type { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient"; /** * @internal diff --git a/clients/client-partnercentral-account/src/runtimeConfig.ts b/clients/client-partnercentral-account/src/runtimeConfig.ts index 64091203fe9a3..fc88a9f4fb0b0 100644 --- a/clients/client-partnercentral-account/src/runtimeConfig.ts +++ b/clients/client-partnercentral-account/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient"; + +import type { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-partnercentral-account/src/runtimeExtensions.ts b/clients/client-partnercentral-account/src/runtimeExtensions.ts index 6b40ed70f026f..709a4c4be3896 100644 --- a/clients/client-partnercentral-account/src/runtimeExtensions.ts +++ b/clients/client-partnercentral-account/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PartnerCentralAccountExtensionConfiguration } from "./extensionConfiguration"; +import type { PartnerCentralAccountExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-partnercentral-account/src/schemas/schemas_0.ts b/clients/client-partnercentral-account/src/schemas/schemas_0.ts index b660d75f9dfd8..f5734b36b4278 100644 --- a/clients/client-partnercentral-account/src/schemas/schemas_0.ts +++ b/clients/client-partnercentral-account/src/schemas/schemas_0.ts @@ -195,7 +195,7 @@ const n0 = "com.amazonaws.partnercentralaccount"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-partnercentral-benefits/package.json b/clients/client-partnercentral-benefits/package.json index 1f12d0be9353c..51f1ddf9db173 100644 --- a/clients/client-partnercentral-benefits/package.json +++ b/clients/client-partnercentral-benefits/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-partnercentral-benefits/src/PartnerCentralBenefits.ts b/clients/client-partnercentral-benefits/src/PartnerCentralBenefits.ts index c3d4e7ebeac75..fa578c34a1cb8 100644 --- a/clients/client-partnercentral-benefits/src/PartnerCentralBenefits.ts +++ b/clients/client-partnercentral-benefits/src/PartnerCentralBenefits.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AmendBenefitApplicationCommand, @@ -79,7 +79,7 @@ import { UpdateBenefitApplicationCommandInput, UpdateBenefitApplicationCommandOutput, } from "./commands/UpdateBenefitApplicationCommand"; -import { PartnerCentralBenefitsClient, PartnerCentralBenefitsClientConfig } from "./PartnerCentralBenefitsClient"; +import { PartnerCentralBenefitsClient } from "./PartnerCentralBenefitsClient"; const commands = { AmendBenefitApplicationCommand, diff --git a/clients/client-partnercentral-benefits/src/PartnerCentralBenefitsClient.ts b/clients/client-partnercentral-benefits/src/PartnerCentralBenefitsClient.ts index 80b405675f570..1c2fb59d70d71 100644 --- a/clients/client-partnercentral-benefits/src/PartnerCentralBenefitsClient.ts +++ b/clients/client-partnercentral-benefits/src/PartnerCentralBenefitsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPartnerCentralBenefitsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -120,7 +129,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-partnercentral-benefits/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-partnercentral-benefits/src/auth/httpAuthExtensionConfiguration.ts index ddfebd64a4fe4..e01c8da655117 100644 --- a/clients/client-partnercentral-benefits/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-partnercentral-benefits/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PartnerCentralBenefitsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PartnerCentralBenefitsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-partnercentral-benefits/src/auth/httpAuthSchemeProvider.ts b/clients/client-partnercentral-benefits/src/auth/httpAuthSchemeProvider.ts index 2ec03db5e9c1f..b418c893585fa 100644 --- a/clients/client-partnercentral-benefits/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-partnercentral-benefits/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type PartnerCentralBenefitsClientResolvedConfig, PartnerCentralBenefitsClientConfig, - PartnerCentralBenefitsClientResolvedConfig, } from "../PartnerCentralBenefitsClient"; /** diff --git a/clients/client-partnercentral-benefits/src/commands/AmendBenefitApplicationCommand.ts b/clients/client-partnercentral-benefits/src/commands/AmendBenefitApplicationCommand.ts index e7baef4c7731d..d26af10ef6d5c 100644 --- a/clients/client-partnercentral-benefits/src/commands/AmendBenefitApplicationCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/AmendBenefitApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AmendBenefitApplicationInput, AmendBenefitApplicationOutput } from "../models/models_0"; -import { +import type { AmendBenefitApplicationInput, AmendBenefitApplicationOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/AssociateBenefitApplicationResourceCommand.ts b/clients/client-partnercentral-benefits/src/commands/AssociateBenefitApplicationResourceCommand.ts index a342721cc9163..4057ce20d980a 100644 --- a/clients/client-partnercentral-benefits/src/commands/AssociateBenefitApplicationResourceCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/AssociateBenefitApplicationResourceCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateBenefitApplicationResourceInput, AssociateBenefitApplicationResourceOutput, } from "../models/models_0"; -import { +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/CancelBenefitApplicationCommand.ts b/clients/client-partnercentral-benefits/src/commands/CancelBenefitApplicationCommand.ts index 56c08d963bc9e..5f0a02efe2b53 100644 --- a/clients/client-partnercentral-benefits/src/commands/CancelBenefitApplicationCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/CancelBenefitApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelBenefitApplicationInput, CancelBenefitApplicationOutput } from "../models/models_0"; -import { +import type { CancelBenefitApplicationInput, CancelBenefitApplicationOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/CreateBenefitApplicationCommand.ts b/clients/client-partnercentral-benefits/src/commands/CreateBenefitApplicationCommand.ts index b67de7e99b95c..354ec0432f3d3 100644 --- a/clients/client-partnercentral-benefits/src/commands/CreateBenefitApplicationCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/CreateBenefitApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBenefitApplicationInput, CreateBenefitApplicationOutput } from "../models/models_0"; -import { +import type { CreateBenefitApplicationInput, CreateBenefitApplicationOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/DisassociateBenefitApplicationResourceCommand.ts b/clients/client-partnercentral-benefits/src/commands/DisassociateBenefitApplicationResourceCommand.ts index 1f7ae163a4a21..fbc7cc310958a 100644 --- a/clients/client-partnercentral-benefits/src/commands/DisassociateBenefitApplicationResourceCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/DisassociateBenefitApplicationResourceCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateBenefitApplicationResourceInput, DisassociateBenefitApplicationResourceOutput, } from "../models/models_0"; -import { +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/GetBenefitAllocationCommand.ts b/clients/client-partnercentral-benefits/src/commands/GetBenefitAllocationCommand.ts index 7d135634fe2cb..36ee762b52766 100644 --- a/clients/client-partnercentral-benefits/src/commands/GetBenefitAllocationCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/GetBenefitAllocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBenefitAllocationInput, GetBenefitAllocationOutput } from "../models/models_0"; -import { +import type { GetBenefitAllocationInput, GetBenefitAllocationOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/GetBenefitApplicationCommand.ts b/clients/client-partnercentral-benefits/src/commands/GetBenefitApplicationCommand.ts index e8cfe3ea612eb..670fc91751cf5 100644 --- a/clients/client-partnercentral-benefits/src/commands/GetBenefitApplicationCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/GetBenefitApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBenefitApplicationInput, GetBenefitApplicationOutput } from "../models/models_0"; -import { +import type { GetBenefitApplicationInput, GetBenefitApplicationOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/GetBenefitCommand.ts b/clients/client-partnercentral-benefits/src/commands/GetBenefitCommand.ts index 179343e79bf24..0c64c88520b3e 100644 --- a/clients/client-partnercentral-benefits/src/commands/GetBenefitCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/GetBenefitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBenefitInput, GetBenefitOutput } from "../models/models_0"; -import { +import type { GetBenefitInput, GetBenefitOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/ListBenefitAllocationsCommand.ts b/clients/client-partnercentral-benefits/src/commands/ListBenefitAllocationsCommand.ts index 2fd4f08abd0d6..f5d3f81ed665d 100644 --- a/clients/client-partnercentral-benefits/src/commands/ListBenefitAllocationsCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/ListBenefitAllocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBenefitAllocationsInput, ListBenefitAllocationsOutput } from "../models/models_0"; -import { +import type { ListBenefitAllocationsInput, ListBenefitAllocationsOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/ListBenefitApplicationsCommand.ts b/clients/client-partnercentral-benefits/src/commands/ListBenefitApplicationsCommand.ts index 9c4e558d45c4f..e71a40bafa345 100644 --- a/clients/client-partnercentral-benefits/src/commands/ListBenefitApplicationsCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/ListBenefitApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBenefitApplicationsInput, ListBenefitApplicationsOutput } from "../models/models_0"; -import { +import type { ListBenefitApplicationsInput, ListBenefitApplicationsOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/ListBenefitsCommand.ts b/clients/client-partnercentral-benefits/src/commands/ListBenefitsCommand.ts index d7584ec1af5f9..ea1a822e997fd 100644 --- a/clients/client-partnercentral-benefits/src/commands/ListBenefitsCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/ListBenefitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBenefitsInput, ListBenefitsOutput } from "../models/models_0"; -import { +import type { ListBenefitsInput, ListBenefitsOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/ListTagsForResourceCommand.ts b/clients/client-partnercentral-benefits/src/commands/ListTagsForResourceCommand.ts index c6557ecf9c509..cd4e98f8da799 100644 --- a/clients/client-partnercentral-benefits/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/RecallBenefitApplicationCommand.ts b/clients/client-partnercentral-benefits/src/commands/RecallBenefitApplicationCommand.ts index 00c35ec0a38c2..adab83ab2baad 100644 --- a/clients/client-partnercentral-benefits/src/commands/RecallBenefitApplicationCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/RecallBenefitApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecallBenefitApplicationInput, RecallBenefitApplicationOutput } from "../models/models_0"; -import { +import type { RecallBenefitApplicationInput, RecallBenefitApplicationOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/SubmitBenefitApplicationCommand.ts b/clients/client-partnercentral-benefits/src/commands/SubmitBenefitApplicationCommand.ts index 06c1a38a096f0..283ea3be46838 100644 --- a/clients/client-partnercentral-benefits/src/commands/SubmitBenefitApplicationCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/SubmitBenefitApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitBenefitApplicationInput, SubmitBenefitApplicationOutput } from "../models/models_0"; -import { +import type { SubmitBenefitApplicationInput, SubmitBenefitApplicationOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/TagResourceCommand.ts b/clients/client-partnercentral-benefits/src/commands/TagResourceCommand.ts index 371c19b521273..a6e6a0f1e4055 100644 --- a/clients/client-partnercentral-benefits/src/commands/TagResourceCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/UntagResourceCommand.ts b/clients/client-partnercentral-benefits/src/commands/UntagResourceCommand.ts index 76bf2630cae50..48f6e72b7802b 100644 --- a/clients/client-partnercentral-benefits/src/commands/UntagResourceCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/commands/UpdateBenefitApplicationCommand.ts b/clients/client-partnercentral-benefits/src/commands/UpdateBenefitApplicationCommand.ts index ffbe9c4da9c3a..00b1c419fb547 100644 --- a/clients/client-partnercentral-benefits/src/commands/UpdateBenefitApplicationCommand.ts +++ b/clients/client-partnercentral-benefits/src/commands/UpdateBenefitApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBenefitApplicationInput, UpdateBenefitApplicationOutput } from "../models/models_0"; -import { +import type { UpdateBenefitApplicationInput, UpdateBenefitApplicationOutput } from "../models/models_0"; +import type { PartnerCentralBenefitsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-benefits/src/endpoint/EndpointParameters.ts b/clients/client-partnercentral-benefits/src/endpoint/EndpointParameters.ts index 92e503ca308cd..ed3307e393bee 100644 --- a/clients/client-partnercentral-benefits/src/endpoint/EndpointParameters.ts +++ b/clients/client-partnercentral-benefits/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-partnercentral-benefits/src/endpoint/endpointResolver.ts b/clients/client-partnercentral-benefits/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-partnercentral-benefits/src/endpoint/endpointResolver.ts +++ b/clients/client-partnercentral-benefits/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-partnercentral-benefits/src/extensionConfiguration.ts b/clients/client-partnercentral-benefits/src/extensionConfiguration.ts index d03f7fbbe91b4..219da2cd225f7 100644 --- a/clients/client-partnercentral-benefits/src/extensionConfiguration.ts +++ b/clients/client-partnercentral-benefits/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-partnercentral-benefits/src/models/PartnerCentralBenefitsServiceException.ts b/clients/client-partnercentral-benefits/src/models/PartnerCentralBenefitsServiceException.ts index f090d4c11409d..2d6666832cdd8 100644 --- a/clients/client-partnercentral-benefits/src/models/PartnerCentralBenefitsServiceException.ts +++ b/clients/client-partnercentral-benefits/src/models/PartnerCentralBenefitsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-partnercentral-benefits/src/models/errors.ts b/clients/client-partnercentral-benefits/src/models/errors.ts index 91fe014f54680..d5939eb1c3c9f 100644 --- a/clients/client-partnercentral-benefits/src/models/errors.ts +++ b/clients/client-partnercentral-benefits/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-partnercentral-benefits/src/pagination/Interfaces.ts b/clients/client-partnercentral-benefits/src/pagination/Interfaces.ts index f2ccce18a4f44..7513fe4de3dab 100644 --- a/clients/client-partnercentral-benefits/src/pagination/Interfaces.ts +++ b/clients/client-partnercentral-benefits/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PartnerCentralBenefitsClient } from "../PartnerCentralBenefitsClient"; diff --git a/clients/client-partnercentral-benefits/src/pagination/ListBenefitAllocationsPaginator.ts b/clients/client-partnercentral-benefits/src/pagination/ListBenefitAllocationsPaginator.ts index 517c3989998b2..e11b008a3e7ff 100644 --- a/clients/client-partnercentral-benefits/src/pagination/ListBenefitAllocationsPaginator.ts +++ b/clients/client-partnercentral-benefits/src/pagination/ListBenefitAllocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBenefitAllocationsCommand, diff --git a/clients/client-partnercentral-benefits/src/pagination/ListBenefitApplicationsPaginator.ts b/clients/client-partnercentral-benefits/src/pagination/ListBenefitApplicationsPaginator.ts index 700616419c170..0a61f45ac3c91 100644 --- a/clients/client-partnercentral-benefits/src/pagination/ListBenefitApplicationsPaginator.ts +++ b/clients/client-partnercentral-benefits/src/pagination/ListBenefitApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBenefitApplicationsCommand, diff --git a/clients/client-partnercentral-benefits/src/pagination/ListBenefitsPaginator.ts b/clients/client-partnercentral-benefits/src/pagination/ListBenefitsPaginator.ts index 110d71bcc4b24..89e21ccf0b5cf 100644 --- a/clients/client-partnercentral-benefits/src/pagination/ListBenefitsPaginator.ts +++ b/clients/client-partnercentral-benefits/src/pagination/ListBenefitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBenefitsCommand, diff --git a/clients/client-partnercentral-benefits/src/runtimeConfig.browser.ts b/clients/client-partnercentral-benefits/src/runtimeConfig.browser.ts index cb80042678c14..cf4487a2fe89d 100644 --- a/clients/client-partnercentral-benefits/src/runtimeConfig.browser.ts +++ b/clients/client-partnercentral-benefits/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PartnerCentralBenefitsClientConfig } from "./PartnerCentralBenefitsClient"; + +import type { PartnerCentralBenefitsClientConfig } from "./PartnerCentralBenefitsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-partnercentral-benefits/src/runtimeConfig.native.ts b/clients/client-partnercentral-benefits/src/runtimeConfig.native.ts index 6d3f278db5814..a31cf55807772 100644 --- a/clients/client-partnercentral-benefits/src/runtimeConfig.native.ts +++ b/clients/client-partnercentral-benefits/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PartnerCentralBenefitsClientConfig } from "./PartnerCentralBenefitsClient"; +import type { PartnerCentralBenefitsClientConfig } from "./PartnerCentralBenefitsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-partnercentral-benefits/src/runtimeConfig.shared.ts b/clients/client-partnercentral-benefits/src/runtimeConfig.shared.ts index 7e97364d5bc3c..b69cd8a9a256a 100644 --- a/clients/client-partnercentral-benefits/src/runtimeConfig.shared.ts +++ b/clients/client-partnercentral-benefits/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPartnerCentralBenefitsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PartnerCentralBenefitsClientConfig } from "./PartnerCentralBenefitsClient"; +import type { PartnerCentralBenefitsClientConfig } from "./PartnerCentralBenefitsClient"; /** * @internal diff --git a/clients/client-partnercentral-benefits/src/runtimeConfig.ts b/clients/client-partnercentral-benefits/src/runtimeConfig.ts index 4650b7afae6cb..62f61c0524160 100644 --- a/clients/client-partnercentral-benefits/src/runtimeConfig.ts +++ b/clients/client-partnercentral-benefits/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PartnerCentralBenefitsClientConfig } from "./PartnerCentralBenefitsClient"; + +import type { PartnerCentralBenefitsClientConfig } from "./PartnerCentralBenefitsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-partnercentral-benefits/src/runtimeExtensions.ts b/clients/client-partnercentral-benefits/src/runtimeExtensions.ts index 955d5a1f95d83..ea50abf566318 100644 --- a/clients/client-partnercentral-benefits/src/runtimeExtensions.ts +++ b/clients/client-partnercentral-benefits/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PartnerCentralBenefitsExtensionConfiguration } from "./extensionConfiguration"; +import type { PartnerCentralBenefitsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-partnercentral-benefits/src/schemas/schemas_0.ts b/clients/client-partnercentral-benefits/src/schemas/schemas_0.ts index 6d9f167ee2198..7132ca5ae448b 100644 --- a/clients/client-partnercentral-benefits/src/schemas/schemas_0.ts +++ b/clients/client-partnercentral-benefits/src/schemas/schemas_0.ts @@ -178,7 +178,7 @@ const n0 = "com.amazonaws.partnercentralbenefits"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-partnercentral-channel/package.json b/clients/client-partnercentral-channel/package.json index 236d1e5a92446..2f7cb21456295 100644 --- a/clients/client-partnercentral-channel/package.json +++ b/clients/client-partnercentral-channel/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-partnercentral-channel/src/PartnerCentralChannel.ts b/clients/client-partnercentral-channel/src/PartnerCentralChannel.ts index e24891df57153..3da9eeae7cd6b 100644 --- a/clients/client-partnercentral-channel/src/PartnerCentralChannel.ts +++ b/clients/client-partnercentral-channel/src/PartnerCentralChannel.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptChannelHandshakeCommand, @@ -83,7 +83,7 @@ import { UpdateRelationshipCommandInput, UpdateRelationshipCommandOutput, } from "./commands/UpdateRelationshipCommand"; -import { PartnerCentralChannelClient, PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient"; +import { PartnerCentralChannelClient } from "./PartnerCentralChannelClient"; const commands = { AcceptChannelHandshakeCommand, diff --git a/clients/client-partnercentral-channel/src/PartnerCentralChannelClient.ts b/clients/client-partnercentral-channel/src/PartnerCentralChannelClient.ts index d6bb081d16c4c..75c412508fd6c 100644 --- a/clients/client-partnercentral-channel/src/PartnerCentralChannelClient.ts +++ b/clients/client-partnercentral-channel/src/PartnerCentralChannelClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPartnerCentralChannelHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -111,7 +120,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-partnercentral-channel/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-partnercentral-channel/src/auth/httpAuthExtensionConfiguration.ts index b0500023ac49f..ab1b4492863b8 100644 --- a/clients/client-partnercentral-channel/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-partnercentral-channel/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PartnerCentralChannelHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PartnerCentralChannelHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-partnercentral-channel/src/auth/httpAuthSchemeProvider.ts b/clients/client-partnercentral-channel/src/auth/httpAuthSchemeProvider.ts index 1d84766f16c96..297340adafe0d 100644 --- a/clients/client-partnercentral-channel/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-partnercentral-channel/src/auth/httpAuthSchemeProvider.ts @@ -12,16 +12,16 @@ import { import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { EndpointParameterInstructions, resolveParams } from "@smithy/middleware-endpoint"; import { + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParametersProvider, + type Provider, EndpointV2, HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, HttpAuthSchemeId, HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Logger, - Provider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; diff --git a/clients/client-partnercentral-channel/src/commands/AcceptChannelHandshakeCommand.ts b/clients/client-partnercentral-channel/src/commands/AcceptChannelHandshakeCommand.ts index bdce3ff5cc00f..16c22ebaeb10a 100644 --- a/clients/client-partnercentral-channel/src/commands/AcceptChannelHandshakeCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/AcceptChannelHandshakeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptChannelHandshakeRequest, AcceptChannelHandshakeResponse } from "../models/models_0"; -import { +import type { AcceptChannelHandshakeRequest, AcceptChannelHandshakeResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/CancelChannelHandshakeCommand.ts b/clients/client-partnercentral-channel/src/commands/CancelChannelHandshakeCommand.ts index d13a652a19cb5..f0bfb5c3fc9b0 100644 --- a/clients/client-partnercentral-channel/src/commands/CancelChannelHandshakeCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/CancelChannelHandshakeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelChannelHandshakeRequest, CancelChannelHandshakeResponse } from "../models/models_0"; -import { +import type { CancelChannelHandshakeRequest, CancelChannelHandshakeResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/CreateChannelHandshakeCommand.ts b/clients/client-partnercentral-channel/src/commands/CreateChannelHandshakeCommand.ts index 3226a6d503e5e..87e5970ec8f05 100644 --- a/clients/client-partnercentral-channel/src/commands/CreateChannelHandshakeCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/CreateChannelHandshakeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChannelHandshakeRequest, CreateChannelHandshakeResponse } from "../models/models_0"; -import { +import type { CreateChannelHandshakeRequest, CreateChannelHandshakeResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/CreateProgramManagementAccountCommand.ts b/clients/client-partnercentral-channel/src/commands/CreateProgramManagementAccountCommand.ts index 7c2eb5c46344e..08a5dd47eb771 100644 --- a/clients/client-partnercentral-channel/src/commands/CreateProgramManagementAccountCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/CreateProgramManagementAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProgramManagementAccountRequest, CreateProgramManagementAccountResponse } from "../models/models_0"; -import { +import type { CreateProgramManagementAccountRequest, CreateProgramManagementAccountResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/CreateRelationshipCommand.ts b/clients/client-partnercentral-channel/src/commands/CreateRelationshipCommand.ts index d1f29d00f481d..c0d3330561644 100644 --- a/clients/client-partnercentral-channel/src/commands/CreateRelationshipCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/CreateRelationshipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRelationshipRequest, CreateRelationshipResponse } from "../models/models_0"; -import { +import type { CreateRelationshipRequest, CreateRelationshipResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/DeleteProgramManagementAccountCommand.ts b/clients/client-partnercentral-channel/src/commands/DeleteProgramManagementAccountCommand.ts index 2f72903fc49a4..85b7f86d8592c 100644 --- a/clients/client-partnercentral-channel/src/commands/DeleteProgramManagementAccountCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/DeleteProgramManagementAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProgramManagementAccountRequest, DeleteProgramManagementAccountResponse } from "../models/models_0"; -import { +import type { DeleteProgramManagementAccountRequest, DeleteProgramManagementAccountResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/DeleteRelationshipCommand.ts b/clients/client-partnercentral-channel/src/commands/DeleteRelationshipCommand.ts index 78e1b597bb3d5..54288cb51ca42 100644 --- a/clients/client-partnercentral-channel/src/commands/DeleteRelationshipCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/DeleteRelationshipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRelationshipRequest, DeleteRelationshipResponse } from "../models/models_0"; -import { +import type { DeleteRelationshipRequest, DeleteRelationshipResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/GetRelationshipCommand.ts b/clients/client-partnercentral-channel/src/commands/GetRelationshipCommand.ts index fd504581ad310..9b6f13f3cbc3c 100644 --- a/clients/client-partnercentral-channel/src/commands/GetRelationshipCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/GetRelationshipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRelationshipRequest, GetRelationshipResponse } from "../models/models_0"; -import { +import type { GetRelationshipRequest, GetRelationshipResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/ListChannelHandshakesCommand.ts b/clients/client-partnercentral-channel/src/commands/ListChannelHandshakesCommand.ts index bc5ed88e59286..8f9763744e19a 100644 --- a/clients/client-partnercentral-channel/src/commands/ListChannelHandshakesCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/ListChannelHandshakesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelHandshakesRequest, ListChannelHandshakesResponse } from "../models/models_0"; -import { +import type { ListChannelHandshakesRequest, ListChannelHandshakesResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/ListProgramManagementAccountsCommand.ts b/clients/client-partnercentral-channel/src/commands/ListProgramManagementAccountsCommand.ts index e1646f90373cf..1f3b4e430998d 100644 --- a/clients/client-partnercentral-channel/src/commands/ListProgramManagementAccountsCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/ListProgramManagementAccountsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProgramManagementAccountsRequest, ListProgramManagementAccountsResponse } from "../models/models_0"; -import { +import type { ListProgramManagementAccountsRequest, ListProgramManagementAccountsResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/ListRelationshipsCommand.ts b/clients/client-partnercentral-channel/src/commands/ListRelationshipsCommand.ts index 007dcc89620d0..7611959989583 100644 --- a/clients/client-partnercentral-channel/src/commands/ListRelationshipsCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/ListRelationshipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRelationshipsRequest, ListRelationshipsResponse } from "../models/models_0"; -import { +import type { ListRelationshipsRequest, ListRelationshipsResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/ListTagsForResourceCommand.ts b/clients/client-partnercentral-channel/src/commands/ListTagsForResourceCommand.ts index 3f50c1eb2a0e5..85d57da325e05 100644 --- a/clients/client-partnercentral-channel/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/RejectChannelHandshakeCommand.ts b/clients/client-partnercentral-channel/src/commands/RejectChannelHandshakeCommand.ts index 5583dcd37f058..f96728a818185 100644 --- a/clients/client-partnercentral-channel/src/commands/RejectChannelHandshakeCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/RejectChannelHandshakeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectChannelHandshakeRequest, RejectChannelHandshakeResponse } from "../models/models_0"; -import { +import type { RejectChannelHandshakeRequest, RejectChannelHandshakeResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/TagResourceCommand.ts b/clients/client-partnercentral-channel/src/commands/TagResourceCommand.ts index 301d06bbbfed8..5b93577cc9ec4 100644 --- a/clients/client-partnercentral-channel/src/commands/TagResourceCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/UntagResourceCommand.ts b/clients/client-partnercentral-channel/src/commands/UntagResourceCommand.ts index 41feb784e358b..b2d3daa8043d9 100644 --- a/clients/client-partnercentral-channel/src/commands/UntagResourceCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/UpdateProgramManagementAccountCommand.ts b/clients/client-partnercentral-channel/src/commands/UpdateProgramManagementAccountCommand.ts index 6ad2cc3ec8314..3b5818b0d8af6 100644 --- a/clients/client-partnercentral-channel/src/commands/UpdateProgramManagementAccountCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/UpdateProgramManagementAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProgramManagementAccountRequest, UpdateProgramManagementAccountResponse } from "../models/models_0"; -import { +import type { UpdateProgramManagementAccountRequest, UpdateProgramManagementAccountResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/commands/UpdateRelationshipCommand.ts b/clients/client-partnercentral-channel/src/commands/UpdateRelationshipCommand.ts index fbf5a79be7fbe..2345d9ba98c1d 100644 --- a/clients/client-partnercentral-channel/src/commands/UpdateRelationshipCommand.ts +++ b/clients/client-partnercentral-channel/src/commands/UpdateRelationshipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRelationshipRequest, UpdateRelationshipResponse } from "../models/models_0"; -import { +import type { UpdateRelationshipRequest, UpdateRelationshipResponse } from "../models/models_0"; +import type { PartnerCentralChannelClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-channel/src/endpoint/EndpointParameters.ts b/clients/client-partnercentral-channel/src/endpoint/EndpointParameters.ts index 0aa264aadb5a3..05dc032353627 100644 --- a/clients/client-partnercentral-channel/src/endpoint/EndpointParameters.ts +++ b/clients/client-partnercentral-channel/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-partnercentral-channel/src/endpoint/endpointResolver.ts b/clients/client-partnercentral-channel/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-partnercentral-channel/src/endpoint/endpointResolver.ts +++ b/clients/client-partnercentral-channel/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-partnercentral-channel/src/extensionConfiguration.ts b/clients/client-partnercentral-channel/src/extensionConfiguration.ts index 996d140121e37..7270c66a9aa49 100644 --- a/clients/client-partnercentral-channel/src/extensionConfiguration.ts +++ b/clients/client-partnercentral-channel/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-partnercentral-channel/src/models/PartnerCentralChannelServiceException.ts b/clients/client-partnercentral-channel/src/models/PartnerCentralChannelServiceException.ts index 20b2d17ac1586..fd4af14fd70bf 100644 --- a/clients/client-partnercentral-channel/src/models/PartnerCentralChannelServiceException.ts +++ b/clients/client-partnercentral-channel/src/models/PartnerCentralChannelServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-partnercentral-channel/src/models/errors.ts b/clients/client-partnercentral-channel/src/models/errors.ts index 82feda6a1e771..02395c0a1cce1 100644 --- a/clients/client-partnercentral-channel/src/models/errors.ts +++ b/clients/client-partnercentral-channel/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-partnercentral-channel/src/pagination/Interfaces.ts b/clients/client-partnercentral-channel/src/pagination/Interfaces.ts index 788dc891141fd..6d712331f327e 100644 --- a/clients/client-partnercentral-channel/src/pagination/Interfaces.ts +++ b/clients/client-partnercentral-channel/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PartnerCentralChannelClient } from "../PartnerCentralChannelClient"; diff --git a/clients/client-partnercentral-channel/src/pagination/ListChannelHandshakesPaginator.ts b/clients/client-partnercentral-channel/src/pagination/ListChannelHandshakesPaginator.ts index de2d8d18d24bc..264be71cc4367 100644 --- a/clients/client-partnercentral-channel/src/pagination/ListChannelHandshakesPaginator.ts +++ b/clients/client-partnercentral-channel/src/pagination/ListChannelHandshakesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelHandshakesCommand, diff --git a/clients/client-partnercentral-channel/src/pagination/ListProgramManagementAccountsPaginator.ts b/clients/client-partnercentral-channel/src/pagination/ListProgramManagementAccountsPaginator.ts index af1858a467d20..2b5561ee7bccc 100644 --- a/clients/client-partnercentral-channel/src/pagination/ListProgramManagementAccountsPaginator.ts +++ b/clients/client-partnercentral-channel/src/pagination/ListProgramManagementAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProgramManagementAccountsCommand, diff --git a/clients/client-partnercentral-channel/src/pagination/ListRelationshipsPaginator.ts b/clients/client-partnercentral-channel/src/pagination/ListRelationshipsPaginator.ts index e82339b41c2c2..0018963c717ea 100644 --- a/clients/client-partnercentral-channel/src/pagination/ListRelationshipsPaginator.ts +++ b/clients/client-partnercentral-channel/src/pagination/ListRelationshipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRelationshipsCommand, diff --git a/clients/client-partnercentral-channel/src/runtimeConfig.browser.ts b/clients/client-partnercentral-channel/src/runtimeConfig.browser.ts index 35e967ef137bd..4df3498c6388f 100644 --- a/clients/client-partnercentral-channel/src/runtimeConfig.browser.ts +++ b/clients/client-partnercentral-channel/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient"; + +import type { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-partnercentral-channel/src/runtimeConfig.native.ts b/clients/client-partnercentral-channel/src/runtimeConfig.native.ts index 1384b8d56c699..bab78d6e1a9d9 100644 --- a/clients/client-partnercentral-channel/src/runtimeConfig.native.ts +++ b/clients/client-partnercentral-channel/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient"; +import type { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-partnercentral-channel/src/runtimeConfig.shared.ts b/clients/client-partnercentral-channel/src/runtimeConfig.shared.ts index dc811a8968b16..777beeb22c9dd 100644 --- a/clients/client-partnercentral-channel/src/runtimeConfig.shared.ts +++ b/clients/client-partnercentral-channel/src/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4ASigner, AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPartnerCentralChannelHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient"; +import type { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient"; /** * @internal diff --git a/clients/client-partnercentral-channel/src/runtimeConfig.ts b/clients/client-partnercentral-channel/src/runtimeConfig.ts index 2d8c12d2434e0..0076bd62c11b3 100644 --- a/clients/client-partnercentral-channel/src/runtimeConfig.ts +++ b/clients/client-partnercentral-channel/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient"; + +import type { PartnerCentralChannelClientConfig } from "./PartnerCentralChannelClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-partnercentral-channel/src/runtimeExtensions.ts b/clients/client-partnercentral-channel/src/runtimeExtensions.ts index 1480cc74a3802..12bef465d877c 100644 --- a/clients/client-partnercentral-channel/src/runtimeExtensions.ts +++ b/clients/client-partnercentral-channel/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PartnerCentralChannelExtensionConfiguration } from "./extensionConfiguration"; +import type { PartnerCentralChannelExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-partnercentral-channel/src/schemas/schemas_0.ts b/clients/client-partnercentral-channel/src/schemas/schemas_0.ts index dd27778b09a0a..605585f90e54f 100644 --- a/clients/client-partnercentral-channel/src/schemas/schemas_0.ts +++ b/clients/client-partnercentral-channel/src/schemas/schemas_0.ts @@ -192,7 +192,7 @@ const n0 = "com.amazonaws.partnercentralchannel"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-partnercentral-selling/package.json b/clients/client-partnercentral-selling/package.json index 70201b61a01bd..ffc9987d97799 100644 --- a/clients/client-partnercentral-selling/package.json +++ b/clients/client-partnercentral-selling/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-partnercentral-selling/src/PartnerCentralSelling.ts b/clients/client-partnercentral-selling/src/PartnerCentralSelling.ts index f47d947103def..4e4cf1274ab8a 100644 --- a/clients/client-partnercentral-selling/src/PartnerCentralSelling.ts +++ b/clients/client-partnercentral-selling/src/PartnerCentralSelling.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptEngagementInvitationCommand, @@ -208,7 +208,7 @@ import { UpdateOpportunityCommandInput, UpdateOpportunityCommandOutput, } from "./commands/UpdateOpportunityCommand"; -import { PartnerCentralSellingClient, PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient"; +import { PartnerCentralSellingClient } from "./PartnerCentralSellingClient"; const commands = { AcceptEngagementInvitationCommand, diff --git a/clients/client-partnercentral-selling/src/PartnerCentralSellingClient.ts b/clients/client-partnercentral-selling/src/PartnerCentralSellingClient.ts index 53c850354affe..62172ed2c6cce 100644 --- a/clients/client-partnercentral-selling/src/PartnerCentralSellingClient.ts +++ b/clients/client-partnercentral-selling/src/PartnerCentralSellingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPartnerCentralSellingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -196,7 +205,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-partnercentral-selling/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-partnercentral-selling/src/auth/httpAuthExtensionConfiguration.ts index 04e3febea50ca..03288eea3bf42 100644 --- a/clients/client-partnercentral-selling/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-partnercentral-selling/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PartnerCentralSellingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PartnerCentralSellingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-partnercentral-selling/src/auth/httpAuthSchemeProvider.ts b/clients/client-partnercentral-selling/src/auth/httpAuthSchemeProvider.ts index 3db6cbb1a81b3..048b8e0153928 100644 --- a/clients/client-partnercentral-selling/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-partnercentral-selling/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type PartnerCentralSellingClientResolvedConfig, PartnerCentralSellingClientConfig, - PartnerCentralSellingClientResolvedConfig, } from "../PartnerCentralSellingClient"; /** diff --git a/clients/client-partnercentral-selling/src/commands/AcceptEngagementInvitationCommand.ts b/clients/client-partnercentral-selling/src/commands/AcceptEngagementInvitationCommand.ts index 2a05efb142351..12104cc0340e7 100644 --- a/clients/client-partnercentral-selling/src/commands/AcceptEngagementInvitationCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/AcceptEngagementInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptEngagementInvitationRequest } from "../models/models_0"; -import { +import type { AcceptEngagementInvitationRequest } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/AssignOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/AssignOpportunityCommand.ts index ab1c957702fe7..3984b9dd131af 100644 --- a/clients/client-partnercentral-selling/src/commands/AssignOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/AssignOpportunityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssignOpportunityRequest } from "../models/models_0"; -import { +import type { AssignOpportunityRequest } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/AssociateOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/AssociateOpportunityCommand.ts index c28bd7a38087f..36d5d43ff442f 100644 --- a/clients/client-partnercentral-selling/src/commands/AssociateOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/AssociateOpportunityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateOpportunityRequest } from "../models/models_0"; -import { +import type { AssociateOpportunityRequest } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/CreateEngagementCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateEngagementCommand.ts index 2c20baa24f3e8..5f0ed4cd54589 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateEngagementCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateEngagementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEngagementRequest, CreateEngagementResponse } from "../models/models_0"; -import { +import type { CreateEngagementRequest, CreateEngagementResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/CreateEngagementContextCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateEngagementContextCommand.ts index d66deaee459f8..fd4f98e5390c8 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateEngagementContextCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateEngagementContextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEngagementContextRequest, CreateEngagementContextResponse } from "../models/models_0"; -import { +import type { CreateEngagementContextRequest, CreateEngagementContextResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/CreateEngagementInvitationCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateEngagementInvitationCommand.ts index 43497608f95bd..b1e865f5bdb7e 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateEngagementInvitationCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateEngagementInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEngagementInvitationRequest, CreateEngagementInvitationResponse } from "../models/models_0"; -import { +import type { CreateEngagementInvitationRequest, CreateEngagementInvitationResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/CreateOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateOpportunityCommand.ts index 5946a0b057a69..519b2e2e107da 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateOpportunityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOpportunityRequest, CreateOpportunityResponse } from "../models/models_0"; -import { +import type { CreateOpportunityRequest, CreateOpportunityResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotCommand.ts index e7ba2af714f0a..6a9071335c2d0 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceSnapshotRequest, CreateResourceSnapshotResponse } from "../models/models_0"; -import { +import type { CreateResourceSnapshotRequest, CreateResourceSnapshotResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotJobCommand.ts index 0a9dbf17265ca..fa20fccbf5d3b 100644 --- a/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/CreateResourceSnapshotJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceSnapshotJobRequest, CreateResourceSnapshotJobResponse } from "../models/models_0"; -import { +import type { CreateResourceSnapshotJobRequest, CreateResourceSnapshotJobResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/DeleteResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/DeleteResourceSnapshotJobCommand.ts index 31027a2540ce5..c75bc2a672a63 100644 --- a/clients/client-partnercentral-selling/src/commands/DeleteResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/DeleteResourceSnapshotJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceSnapshotJobRequest } from "../models/models_0"; -import { +import type { DeleteResourceSnapshotJobRequest } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/DisassociateOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/DisassociateOpportunityCommand.ts index 40d2462f1f853..cc6c3075d0a81 100644 --- a/clients/client-partnercentral-selling/src/commands/DisassociateOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/DisassociateOpportunityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateOpportunityRequest } from "../models/models_0"; -import { +import type { DisassociateOpportunityRequest } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/GetAwsOpportunitySummaryCommand.ts b/clients/client-partnercentral-selling/src/commands/GetAwsOpportunitySummaryCommand.ts index 03fb76fd7e822..eea73cd09c243 100644 --- a/clients/client-partnercentral-selling/src/commands/GetAwsOpportunitySummaryCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetAwsOpportunitySummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAwsOpportunitySummaryRequest, GetAwsOpportunitySummaryResponse } from "../models/models_0"; -import { +import type { GetAwsOpportunitySummaryRequest, GetAwsOpportunitySummaryResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/GetEngagementCommand.ts b/clients/client-partnercentral-selling/src/commands/GetEngagementCommand.ts index 0eca34ce33d12..30ec3cee0108d 100644 --- a/clients/client-partnercentral-selling/src/commands/GetEngagementCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetEngagementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEngagementRequest, GetEngagementResponse } from "../models/models_0"; -import { +import type { GetEngagementRequest, GetEngagementResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/GetEngagementInvitationCommand.ts b/clients/client-partnercentral-selling/src/commands/GetEngagementInvitationCommand.ts index eb26725e0572c..c2657d221d753 100644 --- a/clients/client-partnercentral-selling/src/commands/GetEngagementInvitationCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetEngagementInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEngagementInvitationRequest, GetEngagementInvitationResponse } from "../models/models_0"; -import { +import type { GetEngagementInvitationRequest, GetEngagementInvitationResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/GetOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/GetOpportunityCommand.ts index 86ff7a961c50b..d03736d7bf0b4 100644 --- a/clients/client-partnercentral-selling/src/commands/GetOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetOpportunityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOpportunityRequest, GetOpportunityResponse } from "../models/models_0"; -import { +import type { GetOpportunityRequest, GetOpportunityResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotCommand.ts b/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotCommand.ts index a1ba10e2202ae..235558ef77051 100644 --- a/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceSnapshotRequest, GetResourceSnapshotResponse } from "../models/models_0"; -import { +import type { GetResourceSnapshotRequest, GetResourceSnapshotResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotJobCommand.ts index 4a98822b1975f..d015e6bec40a0 100644 --- a/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetResourceSnapshotJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceSnapshotJobRequest, GetResourceSnapshotJobResponse } from "../models/models_0"; -import { +import type { GetResourceSnapshotJobRequest, GetResourceSnapshotJobResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/GetSellingSystemSettingsCommand.ts b/clients/client-partnercentral-selling/src/commands/GetSellingSystemSettingsCommand.ts index a64c0dd9a4a79..e348c62ca9f48 100644 --- a/clients/client-partnercentral-selling/src/commands/GetSellingSystemSettingsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/GetSellingSystemSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSellingSystemSettingsRequest, GetSellingSystemSettingsResponse } from "../models/models_0"; -import { +import type { GetSellingSystemSettingsRequest, GetSellingSystemSettingsResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementByAcceptingInvitationTasksCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementByAcceptingInvitationTasksCommand.ts index eea4e4dc04716..6c7227e949755 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementByAcceptingInvitationTasksCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementByAcceptingInvitationTasksCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListEngagementByAcceptingInvitationTasksRequest, ListEngagementByAcceptingInvitationTasksResponse, } from "../models/models_0"; -import { +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementFromOpportunityTasksCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementFromOpportunityTasksCommand.ts index 641939c7b7d1c..a383543163ef0 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementFromOpportunityTasksCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementFromOpportunityTasksCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListEngagementFromOpportunityTasksRequest, ListEngagementFromOpportunityTasksResponse, } from "../models/models_0"; -import { +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementInvitationsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementInvitationsCommand.ts index 535fcf5b75207..8c7dbe5ed1782 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementInvitationsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEngagementInvitationsRequest, ListEngagementInvitationsResponse } from "../models/models_0"; -import { +import type { ListEngagementInvitationsRequest, ListEngagementInvitationsResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementMembersCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementMembersCommand.ts index a4371e347afae..5f2ebee0902a9 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementMembersCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEngagementMembersRequest, ListEngagementMembersResponse } from "../models/models_0"; -import { +import type { ListEngagementMembersRequest, ListEngagementMembersResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementResourceAssociationsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementResourceAssociationsCommand.ts index 1aa7e93497204..e7dcf694dd2b2 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementResourceAssociationsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementResourceAssociationsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListEngagementResourceAssociationsRequest, ListEngagementResourceAssociationsResponse, } from "../models/models_0"; -import { +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListEngagementsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListEngagementsCommand.ts index c19334e6f522b..57b8aa2cf30cc 100644 --- a/clients/client-partnercentral-selling/src/commands/ListEngagementsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListEngagementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEngagementsRequest, ListEngagementsResponse } from "../models/models_0"; -import { +import type { ListEngagementsRequest, ListEngagementsResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListOpportunitiesCommand.ts b/clients/client-partnercentral-selling/src/commands/ListOpportunitiesCommand.ts index 57c00f2cd1a2b..e89565c1e700d 100644 --- a/clients/client-partnercentral-selling/src/commands/ListOpportunitiesCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListOpportunitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOpportunitiesRequest, ListOpportunitiesResponse } from "../models/models_0"; -import { +import type { ListOpportunitiesRequest, ListOpportunitiesResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListOpportunityFromEngagementTasksCommand.ts b/clients/client-partnercentral-selling/src/commands/ListOpportunityFromEngagementTasksCommand.ts index ade77f6d10ec6..f1171aaa37d2e 100644 --- a/clients/client-partnercentral-selling/src/commands/ListOpportunityFromEngagementTasksCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListOpportunityFromEngagementTasksCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListOpportunityFromEngagementTasksRequest, ListOpportunityFromEngagementTasksResponse, } from "../models/models_0"; -import { +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotJobsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotJobsCommand.ts index 2ccd1f3cda2d9..69de2625ebc49 100644 --- a/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotJobsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceSnapshotJobsRequest, ListResourceSnapshotJobsResponse } from "../models/models_0"; -import { +import type { ListResourceSnapshotJobsRequest, ListResourceSnapshotJobsResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotsCommand.ts index f993128071a82..33b598b7e03f5 100644 --- a/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListResourceSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceSnapshotsRequest, ListResourceSnapshotsResponse } from "../models/models_0"; -import { +import type { ListResourceSnapshotsRequest, ListResourceSnapshotsResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListSolutionsCommand.ts b/clients/client-partnercentral-selling/src/commands/ListSolutionsCommand.ts index ee041c6b9f416..9cf5f634559d9 100644 --- a/clients/client-partnercentral-selling/src/commands/ListSolutionsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListSolutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSolutionsRequest, ListSolutionsResponse } from "../models/models_0"; -import { +import type { ListSolutionsRequest, ListSolutionsResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/ListTagsForResourceCommand.ts b/clients/client-partnercentral-selling/src/commands/ListTagsForResourceCommand.ts index dd963ed089dbc..952e60abafeee 100644 --- a/clients/client-partnercentral-selling/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/PutSellingSystemSettingsCommand.ts b/clients/client-partnercentral-selling/src/commands/PutSellingSystemSettingsCommand.ts index 496200b2d8a59..0b0ebd5912559 100644 --- a/clients/client-partnercentral-selling/src/commands/PutSellingSystemSettingsCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/PutSellingSystemSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSellingSystemSettingsRequest, PutSellingSystemSettingsResponse } from "../models/models_0"; -import { +import type { PutSellingSystemSettingsRequest, PutSellingSystemSettingsResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/RejectEngagementInvitationCommand.ts b/clients/client-partnercentral-selling/src/commands/RejectEngagementInvitationCommand.ts index da4680e4dd90b..24142ce4fe848 100644 --- a/clients/client-partnercentral-selling/src/commands/RejectEngagementInvitationCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/RejectEngagementInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectEngagementInvitationRequest } from "../models/models_0"; -import { +import type { RejectEngagementInvitationRequest } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/StartEngagementByAcceptingInvitationTaskCommand.ts b/clients/client-partnercentral-selling/src/commands/StartEngagementByAcceptingInvitationTaskCommand.ts index 5909f6e22cfc9..fff75e9d41dd1 100644 --- a/clients/client-partnercentral-selling/src/commands/StartEngagementByAcceptingInvitationTaskCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/StartEngagementByAcceptingInvitationTaskCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartEngagementByAcceptingInvitationTaskRequest, StartEngagementByAcceptingInvitationTaskResponse, } from "../models/models_0"; -import { +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/StartEngagementFromOpportunityTaskCommand.ts b/clients/client-partnercentral-selling/src/commands/StartEngagementFromOpportunityTaskCommand.ts index f11e1b31721ad..9c2df0e9a1f43 100644 --- a/clients/client-partnercentral-selling/src/commands/StartEngagementFromOpportunityTaskCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/StartEngagementFromOpportunityTaskCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartEngagementFromOpportunityTaskRequest, StartEngagementFromOpportunityTaskResponse, } from "../models/models_0"; -import { +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/StartOpportunityFromEngagementTaskCommand.ts b/clients/client-partnercentral-selling/src/commands/StartOpportunityFromEngagementTaskCommand.ts index 9302be1ce8e35..182af2ba4e4d0 100644 --- a/clients/client-partnercentral-selling/src/commands/StartOpportunityFromEngagementTaskCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/StartOpportunityFromEngagementTaskCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartOpportunityFromEngagementTaskRequest, StartOpportunityFromEngagementTaskResponse, } from "../models/models_0"; -import { +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/StartResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/StartResourceSnapshotJobCommand.ts index 0a2eaf76de5f2..5fbcded4ed5e5 100644 --- a/clients/client-partnercentral-selling/src/commands/StartResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/StartResourceSnapshotJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartResourceSnapshotJobRequest } from "../models/models_0"; -import { +import type { StartResourceSnapshotJobRequest } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/StopResourceSnapshotJobCommand.ts b/clients/client-partnercentral-selling/src/commands/StopResourceSnapshotJobCommand.ts index 16882310afcf6..23fe380ec162c 100644 --- a/clients/client-partnercentral-selling/src/commands/StopResourceSnapshotJobCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/StopResourceSnapshotJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopResourceSnapshotJobRequest } from "../models/models_0"; -import { +import type { StopResourceSnapshotJobRequest } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/SubmitOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/SubmitOpportunityCommand.ts index f15a50e6395d4..d042d6f7b080c 100644 --- a/clients/client-partnercentral-selling/src/commands/SubmitOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/SubmitOpportunityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitOpportunityRequest } from "../models/models_0"; -import { +import type { SubmitOpportunityRequest } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/TagResourceCommand.ts b/clients/client-partnercentral-selling/src/commands/TagResourceCommand.ts index 9edc4064860a6..9b19eb41cebe2 100644 --- a/clients/client-partnercentral-selling/src/commands/TagResourceCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/UntagResourceCommand.ts b/clients/client-partnercentral-selling/src/commands/UntagResourceCommand.ts index 3ddf3421eb6ce..fc58d8d12706e 100644 --- a/clients/client-partnercentral-selling/src/commands/UntagResourceCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/UpdateEngagementContextCommand.ts b/clients/client-partnercentral-selling/src/commands/UpdateEngagementContextCommand.ts index 0a0c2e3e07e6e..81d4e0998a13b 100644 --- a/clients/client-partnercentral-selling/src/commands/UpdateEngagementContextCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/UpdateEngagementContextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEngagementContextRequest, UpdateEngagementContextResponse } from "../models/models_0"; -import { +import type { UpdateEngagementContextRequest, UpdateEngagementContextResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/commands/UpdateOpportunityCommand.ts b/clients/client-partnercentral-selling/src/commands/UpdateOpportunityCommand.ts index 6b3a7f38506cb..fb94b94aaae13 100644 --- a/clients/client-partnercentral-selling/src/commands/UpdateOpportunityCommand.ts +++ b/clients/client-partnercentral-selling/src/commands/UpdateOpportunityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOpportunityRequest, UpdateOpportunityResponse } from "../models/models_0"; -import { +import type { UpdateOpportunityRequest, UpdateOpportunityResponse } from "../models/models_0"; +import type { PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-partnercentral-selling/src/endpoint/EndpointParameters.ts b/clients/client-partnercentral-selling/src/endpoint/EndpointParameters.ts index 143aac6acabbe..b269c16043d4f 100644 --- a/clients/client-partnercentral-selling/src/endpoint/EndpointParameters.ts +++ b/clients/client-partnercentral-selling/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-partnercentral-selling/src/endpoint/endpointResolver.ts b/clients/client-partnercentral-selling/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-partnercentral-selling/src/endpoint/endpointResolver.ts +++ b/clients/client-partnercentral-selling/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-partnercentral-selling/src/extensionConfiguration.ts b/clients/client-partnercentral-selling/src/extensionConfiguration.ts index 208111afa4a1f..f247543b2be7a 100644 --- a/clients/client-partnercentral-selling/src/extensionConfiguration.ts +++ b/clients/client-partnercentral-selling/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-partnercentral-selling/src/models/PartnerCentralSellingServiceException.ts b/clients/client-partnercentral-selling/src/models/PartnerCentralSellingServiceException.ts index 185f5a51d4347..c4bd2d140f4a6 100644 --- a/clients/client-partnercentral-selling/src/models/PartnerCentralSellingServiceException.ts +++ b/clients/client-partnercentral-selling/src/models/PartnerCentralSellingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-partnercentral-selling/src/models/errors.ts b/clients/client-partnercentral-selling/src/models/errors.ts index 23b6285124926..9e3f323e913ee 100644 --- a/clients/client-partnercentral-selling/src/models/errors.ts +++ b/clients/client-partnercentral-selling/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessDeniedExceptionErrorCode, ValidationExceptionReason } from "./enums"; import { ValidationExceptionError } from "./models_0"; diff --git a/clients/client-partnercentral-selling/src/pagination/Interfaces.ts b/clients/client-partnercentral-selling/src/pagination/Interfaces.ts index 01fa50ee43715..9f3491c8608e6 100644 --- a/clients/client-partnercentral-selling/src/pagination/Interfaces.ts +++ b/clients/client-partnercentral-selling/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PartnerCentralSellingClient } from "../PartnerCentralSellingClient"; diff --git a/clients/client-partnercentral-selling/src/pagination/ListEngagementByAcceptingInvitationTasksPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListEngagementByAcceptingInvitationTasksPaginator.ts index f2cc4b2a958c2..5bfb9d9ac72db 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListEngagementByAcceptingInvitationTasksPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListEngagementByAcceptingInvitationTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEngagementByAcceptingInvitationTasksCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListEngagementFromOpportunityTasksPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListEngagementFromOpportunityTasksPaginator.ts index 195e060b0f9c6..2823491fb2b2c 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListEngagementFromOpportunityTasksPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListEngagementFromOpportunityTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEngagementFromOpportunityTasksCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListEngagementInvitationsPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListEngagementInvitationsPaginator.ts index 96ea13070c00a..9d8d386707ee4 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListEngagementInvitationsPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListEngagementInvitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEngagementInvitationsCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListEngagementMembersPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListEngagementMembersPaginator.ts index e3d626498cf5f..14377d9f97279 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListEngagementMembersPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListEngagementMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEngagementMembersCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListEngagementResourceAssociationsPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListEngagementResourceAssociationsPaginator.ts index efa92b1290b2e..21cb4964e4a86 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListEngagementResourceAssociationsPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListEngagementResourceAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEngagementResourceAssociationsCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListEngagementsPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListEngagementsPaginator.ts index e1111aa5fab67..7ed1b59969043 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListEngagementsPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListEngagementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEngagementsCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListOpportunitiesPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListOpportunitiesPaginator.ts index 154ee19abe0dc..3c1970519e462 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListOpportunitiesPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListOpportunitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOpportunitiesCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListOpportunityFromEngagementTasksPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListOpportunityFromEngagementTasksPaginator.ts index 481def8e2d5c8..4b6db920cb738 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListOpportunityFromEngagementTasksPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListOpportunityFromEngagementTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOpportunityFromEngagementTasksCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListResourceSnapshotJobsPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListResourceSnapshotJobsPaginator.ts index 79353e8720b43..979f7848b10dd 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListResourceSnapshotJobsPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListResourceSnapshotJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceSnapshotJobsCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListResourceSnapshotsPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListResourceSnapshotsPaginator.ts index 8b30f30bad8a8..e46ae47f88601 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListResourceSnapshotsPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListResourceSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceSnapshotsCommand, diff --git a/clients/client-partnercentral-selling/src/pagination/ListSolutionsPaginator.ts b/clients/client-partnercentral-selling/src/pagination/ListSolutionsPaginator.ts index 47786cf6d0d6f..935e2304310d9 100644 --- a/clients/client-partnercentral-selling/src/pagination/ListSolutionsPaginator.ts +++ b/clients/client-partnercentral-selling/src/pagination/ListSolutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSolutionsCommand, diff --git a/clients/client-partnercentral-selling/src/runtimeConfig.browser.ts b/clients/client-partnercentral-selling/src/runtimeConfig.browser.ts index 350461df0d71e..d59c9922fc93c 100644 --- a/clients/client-partnercentral-selling/src/runtimeConfig.browser.ts +++ b/clients/client-partnercentral-selling/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient"; + +import type { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-partnercentral-selling/src/runtimeConfig.native.ts b/clients/client-partnercentral-selling/src/runtimeConfig.native.ts index 385415ebf1ae1..d8049b64f0591 100644 --- a/clients/client-partnercentral-selling/src/runtimeConfig.native.ts +++ b/clients/client-partnercentral-selling/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient"; +import type { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-partnercentral-selling/src/runtimeConfig.shared.ts b/clients/client-partnercentral-selling/src/runtimeConfig.shared.ts index b538c242a2e36..775e9da197abc 100644 --- a/clients/client-partnercentral-selling/src/runtimeConfig.shared.ts +++ b/clients/client-partnercentral-selling/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPartnerCentralSellingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient"; +import type { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient"; /** * @internal diff --git a/clients/client-partnercentral-selling/src/runtimeConfig.ts b/clients/client-partnercentral-selling/src/runtimeConfig.ts index b438560a9e02d..e9b686e3287cb 100644 --- a/clients/client-partnercentral-selling/src/runtimeConfig.ts +++ b/clients/client-partnercentral-selling/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient"; + +import type { PartnerCentralSellingClientConfig } from "./PartnerCentralSellingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-partnercentral-selling/src/runtimeExtensions.ts b/clients/client-partnercentral-selling/src/runtimeExtensions.ts index 53b29c2ac3a93..e8b5c533e135a 100644 --- a/clients/client-partnercentral-selling/src/runtimeExtensions.ts +++ b/clients/client-partnercentral-selling/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PartnerCentralSellingExtensionConfiguration } from "./extensionConfiguration"; +import type { PartnerCentralSellingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-partnercentral-selling/src/schemas/schemas_0.ts b/clients/client-partnercentral-selling/src/schemas/schemas_0.ts index 10c26c5a3b58b..f9011cfbf9223 100644 --- a/clients/client-partnercentral-selling/src/schemas/schemas_0.ts +++ b/clients/client-partnercentral-selling/src/schemas/schemas_0.ts @@ -416,7 +416,7 @@ const n0 = "com.amazonaws.partnercentralselling"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-payment-cryptography-data/package.json b/clients/client-payment-cryptography-data/package.json index b5253269fcf45..0f24c0e375f98 100644 --- a/clients/client-payment-cryptography-data/package.json +++ b/clients/client-payment-cryptography-data/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-payment-cryptography-data/src/PaymentCryptographyData.ts b/clients/client-payment-cryptography-data/src/PaymentCryptographyData.ts index 91ff38babd5c3..16788191b2381 100644 --- a/clients/client-payment-cryptography-data/src/PaymentCryptographyData.ts +++ b/clients/client-payment-cryptography-data/src/PaymentCryptographyData.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DecryptDataCommand, DecryptDataCommandInput, DecryptDataCommandOutput } from "./commands/DecryptDataCommand"; import { EncryptDataCommand, EncryptDataCommandInput, EncryptDataCommandOutput } from "./commands/EncryptDataCommand"; @@ -51,7 +51,7 @@ import { VerifyPinDataCommandInput, VerifyPinDataCommandOutput, } from "./commands/VerifyPinDataCommand"; -import { PaymentCryptographyDataClient, PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient"; +import { PaymentCryptographyDataClient } from "./PaymentCryptographyDataClient"; const commands = { DecryptDataCommand, diff --git a/clients/client-payment-cryptography-data/src/PaymentCryptographyDataClient.ts b/clients/client-payment-cryptography-data/src/PaymentCryptographyDataClient.ts index 9d1b9a5f24326..cd8e8d702f0fd 100644 --- a/clients/client-payment-cryptography-data/src/PaymentCryptographyDataClient.ts +++ b/clients/client-payment-cryptography-data/src/PaymentCryptographyDataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPaymentCryptographyDataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DecryptDataCommandInput, DecryptDataCommandOutput } from "./commands/DecryptDataCommand"; @@ -92,7 +101,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-payment-cryptography-data/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-payment-cryptography-data/src/auth/httpAuthExtensionConfiguration.ts index ba8e0ba1946a3..ce17e0f7b9ef0 100644 --- a/clients/client-payment-cryptography-data/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-payment-cryptography-data/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PaymentCryptographyDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PaymentCryptographyDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-payment-cryptography-data/src/auth/httpAuthSchemeProvider.ts b/clients/client-payment-cryptography-data/src/auth/httpAuthSchemeProvider.ts index 1c23a6630193d..a3d091de94a30 100644 --- a/clients/client-payment-cryptography-data/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-payment-cryptography-data/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type PaymentCryptographyDataClientResolvedConfig, PaymentCryptographyDataClientConfig, - PaymentCryptographyDataClientResolvedConfig, } from "../PaymentCryptographyDataClient"; /** diff --git a/clients/client-payment-cryptography-data/src/commands/DecryptDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/DecryptDataCommand.ts index 8dff91be6b297..ac724577e3f85 100644 --- a/clients/client-payment-cryptography-data/src/commands/DecryptDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/DecryptDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DecryptDataInput, DecryptDataOutput } from "../models/models_0"; -import { +import type { DecryptDataInput, DecryptDataOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/EncryptDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/EncryptDataCommand.ts index 78a57fae963f5..3585ad46335c2 100644 --- a/clients/client-payment-cryptography-data/src/commands/EncryptDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/EncryptDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EncryptDataInput, EncryptDataOutput } from "../models/models_0"; -import { +import type { EncryptDataInput, EncryptDataOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/GenerateCardValidationDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/GenerateCardValidationDataCommand.ts index 0c71400828e72..3c0e6dc65baff 100644 --- a/clients/client-payment-cryptography-data/src/commands/GenerateCardValidationDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/GenerateCardValidationDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateCardValidationDataInput, GenerateCardValidationDataOutput } from "../models/models_0"; -import { +import type { GenerateCardValidationDataInput, GenerateCardValidationDataOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/GenerateMacCommand.ts b/clients/client-payment-cryptography-data/src/commands/GenerateMacCommand.ts index 920254c41ee88..412cf9953b8e8 100644 --- a/clients/client-payment-cryptography-data/src/commands/GenerateMacCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/GenerateMacCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateMacInput, GenerateMacOutput } from "../models/models_0"; -import { +import type { GenerateMacInput, GenerateMacOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/GenerateMacEmvPinChangeCommand.ts b/clients/client-payment-cryptography-data/src/commands/GenerateMacEmvPinChangeCommand.ts index 16ad17ed6070c..f3bdbff438b62 100644 --- a/clients/client-payment-cryptography-data/src/commands/GenerateMacEmvPinChangeCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/GenerateMacEmvPinChangeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateMacEmvPinChangeInput, GenerateMacEmvPinChangeOutput } from "../models/models_0"; -import { +import type { GenerateMacEmvPinChangeInput, GenerateMacEmvPinChangeOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/GeneratePinDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/GeneratePinDataCommand.ts index 8078615641023..a9f22917f1e23 100644 --- a/clients/client-payment-cryptography-data/src/commands/GeneratePinDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/GeneratePinDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GeneratePinDataInput, GeneratePinDataOutput } from "../models/models_0"; -import { +import type { GeneratePinDataInput, GeneratePinDataOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/ReEncryptDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/ReEncryptDataCommand.ts index bda9c75e4ca7e..35ce7a8cd6008 100644 --- a/clients/client-payment-cryptography-data/src/commands/ReEncryptDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/ReEncryptDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReEncryptDataInput, ReEncryptDataOutput } from "../models/models_0"; -import { +import type { ReEncryptDataInput, ReEncryptDataOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/TranslateKeyMaterialCommand.ts b/clients/client-payment-cryptography-data/src/commands/TranslateKeyMaterialCommand.ts index dd820091c619c..311ee6f1d7e41 100644 --- a/clients/client-payment-cryptography-data/src/commands/TranslateKeyMaterialCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/TranslateKeyMaterialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TranslateKeyMaterialInput, TranslateKeyMaterialOutput } from "../models/models_0"; -import { +import type { TranslateKeyMaterialInput, TranslateKeyMaterialOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/TranslatePinDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/TranslatePinDataCommand.ts index 1af8f71e9e792..532e8dc1c4317 100644 --- a/clients/client-payment-cryptography-data/src/commands/TranslatePinDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/TranslatePinDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TranslatePinDataInput, TranslatePinDataOutput } from "../models/models_0"; -import { +import type { TranslatePinDataInput, TranslatePinDataOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/VerifyAuthRequestCryptogramCommand.ts b/clients/client-payment-cryptography-data/src/commands/VerifyAuthRequestCryptogramCommand.ts index 1c18410dd7562..e3fbc2742b848 100644 --- a/clients/client-payment-cryptography-data/src/commands/VerifyAuthRequestCryptogramCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/VerifyAuthRequestCryptogramCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyAuthRequestCryptogramInput, VerifyAuthRequestCryptogramOutput } from "../models/models_0"; -import { +import type { VerifyAuthRequestCryptogramInput, VerifyAuthRequestCryptogramOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/VerifyCardValidationDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/VerifyCardValidationDataCommand.ts index d55478425e855..3ab2530a9d13e 100644 --- a/clients/client-payment-cryptography-data/src/commands/VerifyCardValidationDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/VerifyCardValidationDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyCardValidationDataInput, VerifyCardValidationDataOutput } from "../models/models_0"; -import { +import type { VerifyCardValidationDataInput, VerifyCardValidationDataOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/VerifyMacCommand.ts b/clients/client-payment-cryptography-data/src/commands/VerifyMacCommand.ts index dc9b0408976ef..7901d23cbf518 100644 --- a/clients/client-payment-cryptography-data/src/commands/VerifyMacCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/VerifyMacCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyMacInput, VerifyMacOutput } from "../models/models_0"; -import { +import type { VerifyMacInput, VerifyMacOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/commands/VerifyPinDataCommand.ts b/clients/client-payment-cryptography-data/src/commands/VerifyPinDataCommand.ts index a72c37b451951..8a3a06cf6dc30 100644 --- a/clients/client-payment-cryptography-data/src/commands/VerifyPinDataCommand.ts +++ b/clients/client-payment-cryptography-data/src/commands/VerifyPinDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyPinDataInput, VerifyPinDataOutput } from "../models/models_0"; -import { +import type { VerifyPinDataInput, VerifyPinDataOutput } from "../models/models_0"; +import type { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography-data/src/endpoint/EndpointParameters.ts b/clients/client-payment-cryptography-data/src/endpoint/EndpointParameters.ts index cb0744fe28019..7afb8d6bc6a46 100644 --- a/clients/client-payment-cryptography-data/src/endpoint/EndpointParameters.ts +++ b/clients/client-payment-cryptography-data/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-payment-cryptography-data/src/endpoint/endpointResolver.ts b/clients/client-payment-cryptography-data/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-payment-cryptography-data/src/endpoint/endpointResolver.ts +++ b/clients/client-payment-cryptography-data/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-payment-cryptography-data/src/extensionConfiguration.ts b/clients/client-payment-cryptography-data/src/extensionConfiguration.ts index 31c7d9f37eeec..dfd1da8a79f2a 100644 --- a/clients/client-payment-cryptography-data/src/extensionConfiguration.ts +++ b/clients/client-payment-cryptography-data/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-payment-cryptography-data/src/models/PaymentCryptographyDataServiceException.ts b/clients/client-payment-cryptography-data/src/models/PaymentCryptographyDataServiceException.ts index e8723241cd717..92331243a6b52 100644 --- a/clients/client-payment-cryptography-data/src/models/PaymentCryptographyDataServiceException.ts +++ b/clients/client-payment-cryptography-data/src/models/PaymentCryptographyDataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-payment-cryptography-data/src/models/errors.ts b/clients/client-payment-cryptography-data/src/models/errors.ts index 2bce031fcb1a6..c2170c9bd9a9f 100644 --- a/clients/client-payment-cryptography-data/src/models/errors.ts +++ b/clients/client-payment-cryptography-data/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { VerificationFailedReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-payment-cryptography-data/src/runtimeConfig.browser.ts b/clients/client-payment-cryptography-data/src/runtimeConfig.browser.ts index 802fb889e343b..c067c2a786dd6 100644 --- a/clients/client-payment-cryptography-data/src/runtimeConfig.browser.ts +++ b/clients/client-payment-cryptography-data/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient"; + +import type { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-payment-cryptography-data/src/runtimeConfig.native.ts b/clients/client-payment-cryptography-data/src/runtimeConfig.native.ts index 4eb7bf35673d2..6761f95d3d106 100644 --- a/clients/client-payment-cryptography-data/src/runtimeConfig.native.ts +++ b/clients/client-payment-cryptography-data/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient"; +import type { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-payment-cryptography-data/src/runtimeConfig.shared.ts b/clients/client-payment-cryptography-data/src/runtimeConfig.shared.ts index 90d393dbc7230..0b6de50ef40f2 100644 --- a/clients/client-payment-cryptography-data/src/runtimeConfig.shared.ts +++ b/clients/client-payment-cryptography-data/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPaymentCryptographyDataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient"; +import type { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient"; /** * @internal diff --git a/clients/client-payment-cryptography-data/src/runtimeConfig.ts b/clients/client-payment-cryptography-data/src/runtimeConfig.ts index 9ca992bbd5a69..f11aa6100d121 100644 --- a/clients/client-payment-cryptography-data/src/runtimeConfig.ts +++ b/clients/client-payment-cryptography-data/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient"; + +import type { PaymentCryptographyDataClientConfig } from "./PaymentCryptographyDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-payment-cryptography-data/src/runtimeExtensions.ts b/clients/client-payment-cryptography-data/src/runtimeExtensions.ts index 8d4796ef44db3..db7226e382ef0 100644 --- a/clients/client-payment-cryptography-data/src/runtimeExtensions.ts +++ b/clients/client-payment-cryptography-data/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PaymentCryptographyDataExtensionConfiguration } from "./extensionConfiguration"; +import type { PaymentCryptographyDataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-payment-cryptography-data/src/schemas/schemas_0.ts b/clients/client-payment-cryptography-data/src/schemas/schemas_0.ts index 251ea019d7d5a..799a8c9b3ab34 100644 --- a/clients/client-payment-cryptography-data/src/schemas/schemas_0.ts +++ b/clients/client-payment-cryptography-data/src/schemas/schemas_0.ts @@ -278,7 +278,7 @@ const n0 = "com.amazonaws.paymentcryptographydata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-payment-cryptography/package.json b/clients/client-payment-cryptography/package.json index 93a59de86d939..dbc4a22a7fead 100644 --- a/clients/client-payment-cryptography/package.json +++ b/clients/client-payment-cryptography/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-payment-cryptography/src/PaymentCryptography.ts b/clients/client-payment-cryptography/src/PaymentCryptography.ts index 2c4e0505d6758..eb0d540129e86 100644 --- a/clients/client-payment-cryptography/src/PaymentCryptography.ts +++ b/clients/client-payment-cryptography/src/PaymentCryptography.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddKeyReplicationRegionsCommand, @@ -80,7 +80,7 @@ import { UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdateAliasCommand, UpdateAliasCommandInput, UpdateAliasCommandOutput } from "./commands/UpdateAliasCommand"; -import { PaymentCryptographyClient, PaymentCryptographyClientConfig } from "./PaymentCryptographyClient"; +import { PaymentCryptographyClient } from "./PaymentCryptographyClient"; const commands = { AddKeyReplicationRegionsCommand, diff --git a/clients/client-payment-cryptography/src/PaymentCryptographyClient.ts b/clients/client-payment-cryptography/src/PaymentCryptographyClient.ts index 111e5c4dbeb14..7c5fbfce533a2 100644 --- a/clients/client-payment-cryptography/src/PaymentCryptographyClient.ts +++ b/clients/client-payment-cryptography/src/PaymentCryptographyClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPaymentCryptographyHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -120,7 +129,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-payment-cryptography/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-payment-cryptography/src/auth/httpAuthExtensionConfiguration.ts index a93fd55d0f6c3..1ec9faa7aaaaa 100644 --- a/clients/client-payment-cryptography/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-payment-cryptography/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PaymentCryptographyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PaymentCryptographyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-payment-cryptography/src/auth/httpAuthSchemeProvider.ts b/clients/client-payment-cryptography/src/auth/httpAuthSchemeProvider.ts index f8fd5b0910f2d..e510873d88541 100644 --- a/clients/client-payment-cryptography/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-payment-cryptography/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PaymentCryptographyClientConfig, PaymentCryptographyClientResolvedConfig } from "../PaymentCryptographyClient"; +import { + type PaymentCryptographyClientResolvedConfig, + PaymentCryptographyClientConfig, +} from "../PaymentCryptographyClient"; /** * @internal diff --git a/clients/client-payment-cryptography/src/commands/AddKeyReplicationRegionsCommand.ts b/clients/client-payment-cryptography/src/commands/AddKeyReplicationRegionsCommand.ts index 7af5336f3818b..35ef153c86fe6 100644 --- a/clients/client-payment-cryptography/src/commands/AddKeyReplicationRegionsCommand.ts +++ b/clients/client-payment-cryptography/src/commands/AddKeyReplicationRegionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddKeyReplicationRegionsInput, AddKeyReplicationRegionsOutput } from "../models/models_0"; -import { +import type { AddKeyReplicationRegionsInput, AddKeyReplicationRegionsOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/CreateAliasCommand.ts b/clients/client-payment-cryptography/src/commands/CreateAliasCommand.ts index d0a7cc094c84e..2f64fdc56a9f7 100644 --- a/clients/client-payment-cryptography/src/commands/CreateAliasCommand.ts +++ b/clients/client-payment-cryptography/src/commands/CreateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAliasInput, CreateAliasOutput } from "../models/models_0"; -import { +import type { CreateAliasInput, CreateAliasOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/CreateKeyCommand.ts b/clients/client-payment-cryptography/src/commands/CreateKeyCommand.ts index cf9d7b91aee35..54b69807cd8f9 100644 --- a/clients/client-payment-cryptography/src/commands/CreateKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/CreateKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateKeyInput, CreateKeyOutput } from "../models/models_0"; -import { +import type { CreateKeyInput, CreateKeyOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/DeleteAliasCommand.ts b/clients/client-payment-cryptography/src/commands/DeleteAliasCommand.ts index bfa5cbbe6e2fb..7b6791f6c09df 100644 --- a/clients/client-payment-cryptography/src/commands/DeleteAliasCommand.ts +++ b/clients/client-payment-cryptography/src/commands/DeleteAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAliasInput, DeleteAliasOutput } from "../models/models_0"; -import { +import type { DeleteAliasInput, DeleteAliasOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/DeleteKeyCommand.ts b/clients/client-payment-cryptography/src/commands/DeleteKeyCommand.ts index f219a8a7670c8..854aceb676286 100644 --- a/clients/client-payment-cryptography/src/commands/DeleteKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/DeleteKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKeyInput, DeleteKeyOutput } from "../models/models_0"; -import { +import type { DeleteKeyInput, DeleteKeyOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/DisableDefaultKeyReplicationRegionsCommand.ts b/clients/client-payment-cryptography/src/commands/DisableDefaultKeyReplicationRegionsCommand.ts index 8f95b608ccbcd..ea4f86ca189b5 100644 --- a/clients/client-payment-cryptography/src/commands/DisableDefaultKeyReplicationRegionsCommand.ts +++ b/clients/client-payment-cryptography/src/commands/DisableDefaultKeyReplicationRegionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisableDefaultKeyReplicationRegionsInput, DisableDefaultKeyReplicationRegionsOutput, } from "../models/models_0"; -import { +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/EnableDefaultKeyReplicationRegionsCommand.ts b/clients/client-payment-cryptography/src/commands/EnableDefaultKeyReplicationRegionsCommand.ts index 6811a5a9e492b..9c972a4ea6d2d 100644 --- a/clients/client-payment-cryptography/src/commands/EnableDefaultKeyReplicationRegionsCommand.ts +++ b/clients/client-payment-cryptography/src/commands/EnableDefaultKeyReplicationRegionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableDefaultKeyReplicationRegionsInput, EnableDefaultKeyReplicationRegionsOutput } from "../models/models_0"; -import { +import type { + EnableDefaultKeyReplicationRegionsInput, + EnableDefaultKeyReplicationRegionsOutput, +} from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/ExportKeyCommand.ts b/clients/client-payment-cryptography/src/commands/ExportKeyCommand.ts index 6614bd92f71e7..5a22678e6270b 100644 --- a/clients/client-payment-cryptography/src/commands/ExportKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ExportKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportKeyInput, ExportKeyOutput } from "../models/models_0"; -import { +import type { ExportKeyInput, ExportKeyOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/GetAliasCommand.ts b/clients/client-payment-cryptography/src/commands/GetAliasCommand.ts index 79dc481c87a41..826a029c8e848 100644 --- a/clients/client-payment-cryptography/src/commands/GetAliasCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAliasInput, GetAliasOutput } from "../models/models_0"; -import { +import type { GetAliasInput, GetAliasOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/GetCertificateSigningRequestCommand.ts b/clients/client-payment-cryptography/src/commands/GetCertificateSigningRequestCommand.ts index 86ca3494594e4..20ab376f1c809 100644 --- a/clients/client-payment-cryptography/src/commands/GetCertificateSigningRequestCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetCertificateSigningRequestCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCertificateSigningRequestInput, GetCertificateSigningRequestOutput } from "../models/models_0"; -import { +import type { GetCertificateSigningRequestInput, GetCertificateSigningRequestOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/GetDefaultKeyReplicationRegionsCommand.ts b/clients/client-payment-cryptography/src/commands/GetDefaultKeyReplicationRegionsCommand.ts index a5af798f77849..b6934838b73c5 100644 --- a/clients/client-payment-cryptography/src/commands/GetDefaultKeyReplicationRegionsCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetDefaultKeyReplicationRegionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDefaultKeyReplicationRegionsInput, GetDefaultKeyReplicationRegionsOutput } from "../models/models_0"; -import { +import type { GetDefaultKeyReplicationRegionsInput, GetDefaultKeyReplicationRegionsOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/GetKeyCommand.ts b/clients/client-payment-cryptography/src/commands/GetKeyCommand.ts index 1dac7cfea6924..5c252c76f14db 100644 --- a/clients/client-payment-cryptography/src/commands/GetKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetKeyInput, GetKeyOutput } from "../models/models_0"; -import { +import type { GetKeyInput, GetKeyOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/GetParametersForExportCommand.ts b/clients/client-payment-cryptography/src/commands/GetParametersForExportCommand.ts index fd012cffcd586..aef8e7bede058 100644 --- a/clients/client-payment-cryptography/src/commands/GetParametersForExportCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetParametersForExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetParametersForExportInput, GetParametersForExportOutput } from "../models/models_0"; -import { +import type { GetParametersForExportInput, GetParametersForExportOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/GetParametersForImportCommand.ts b/clients/client-payment-cryptography/src/commands/GetParametersForImportCommand.ts index 54a35032e4a07..23027f349a1b0 100644 --- a/clients/client-payment-cryptography/src/commands/GetParametersForImportCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetParametersForImportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetParametersForImportInput, GetParametersForImportOutput } from "../models/models_0"; -import { +import type { GetParametersForImportInput, GetParametersForImportOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/GetPublicKeyCertificateCommand.ts b/clients/client-payment-cryptography/src/commands/GetPublicKeyCertificateCommand.ts index a5f04db17f964..5ec1e789d1918 100644 --- a/clients/client-payment-cryptography/src/commands/GetPublicKeyCertificateCommand.ts +++ b/clients/client-payment-cryptography/src/commands/GetPublicKeyCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPublicKeyCertificateInput, GetPublicKeyCertificateOutput } from "../models/models_0"; -import { +import type { GetPublicKeyCertificateInput, GetPublicKeyCertificateOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/ImportKeyCommand.ts b/clients/client-payment-cryptography/src/commands/ImportKeyCommand.ts index 30332c771cf0f..9cdd1a194ac22 100644 --- a/clients/client-payment-cryptography/src/commands/ImportKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ImportKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportKeyInput, ImportKeyOutput } from "../models/models_0"; -import { +import type { ImportKeyInput, ImportKeyOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/ListAliasesCommand.ts b/clients/client-payment-cryptography/src/commands/ListAliasesCommand.ts index bc24e2f90ee5f..0204a012ad3d6 100644 --- a/clients/client-payment-cryptography/src/commands/ListAliasesCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ListAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAliasesInput, ListAliasesOutput } from "../models/models_0"; -import { +import type { ListAliasesInput, ListAliasesOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/ListKeysCommand.ts b/clients/client-payment-cryptography/src/commands/ListKeysCommand.ts index a7651c8d5e397..ade83675ca7ab 100644 --- a/clients/client-payment-cryptography/src/commands/ListKeysCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ListKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKeysInput, ListKeysOutput } from "../models/models_0"; -import { +import type { ListKeysInput, ListKeysOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/ListTagsForResourceCommand.ts b/clients/client-payment-cryptography/src/commands/ListTagsForResourceCommand.ts index 4f0e2a142d93c..410e4d0b824ef 100644 --- a/clients/client-payment-cryptography/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-payment-cryptography/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/RemoveKeyReplicationRegionsCommand.ts b/clients/client-payment-cryptography/src/commands/RemoveKeyReplicationRegionsCommand.ts index 59d62aa64cdf5..b873c5c4466cf 100644 --- a/clients/client-payment-cryptography/src/commands/RemoveKeyReplicationRegionsCommand.ts +++ b/clients/client-payment-cryptography/src/commands/RemoveKeyReplicationRegionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveKeyReplicationRegionsInput, RemoveKeyReplicationRegionsOutput } from "../models/models_0"; -import { +import type { RemoveKeyReplicationRegionsInput, RemoveKeyReplicationRegionsOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/RestoreKeyCommand.ts b/clients/client-payment-cryptography/src/commands/RestoreKeyCommand.ts index c828de12d728f..b317810015173 100644 --- a/clients/client-payment-cryptography/src/commands/RestoreKeyCommand.ts +++ b/clients/client-payment-cryptography/src/commands/RestoreKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreKeyInput, RestoreKeyOutput } from "../models/models_0"; -import { +import type { RestoreKeyInput, RestoreKeyOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/StartKeyUsageCommand.ts b/clients/client-payment-cryptography/src/commands/StartKeyUsageCommand.ts index 9d0d27184bb87..9e1edca24e293 100644 --- a/clients/client-payment-cryptography/src/commands/StartKeyUsageCommand.ts +++ b/clients/client-payment-cryptography/src/commands/StartKeyUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartKeyUsageInput, StartKeyUsageOutput } from "../models/models_0"; -import { +import type { StartKeyUsageInput, StartKeyUsageOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/StopKeyUsageCommand.ts b/clients/client-payment-cryptography/src/commands/StopKeyUsageCommand.ts index 78dcb2493ac30..a0e6d5475b971 100644 --- a/clients/client-payment-cryptography/src/commands/StopKeyUsageCommand.ts +++ b/clients/client-payment-cryptography/src/commands/StopKeyUsageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopKeyUsageInput, StopKeyUsageOutput } from "../models/models_0"; -import { +import type { StopKeyUsageInput, StopKeyUsageOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/TagResourceCommand.ts b/clients/client-payment-cryptography/src/commands/TagResourceCommand.ts index 39596c14e65ac..caf47f2aad9cd 100644 --- a/clients/client-payment-cryptography/src/commands/TagResourceCommand.ts +++ b/clients/client-payment-cryptography/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; -import { +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/UntagResourceCommand.ts b/clients/client-payment-cryptography/src/commands/UntagResourceCommand.ts index 36e3d386f6f35..f53f66cd629cc 100644 --- a/clients/client-payment-cryptography/src/commands/UntagResourceCommand.ts +++ b/clients/client-payment-cryptography/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; -import { +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/commands/UpdateAliasCommand.ts b/clients/client-payment-cryptography/src/commands/UpdateAliasCommand.ts index cd5a48a680f85..a0d422312b50e 100644 --- a/clients/client-payment-cryptography/src/commands/UpdateAliasCommand.ts +++ b/clients/client-payment-cryptography/src/commands/UpdateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAliasInput, UpdateAliasOutput } from "../models/models_0"; -import { +import type { UpdateAliasInput, UpdateAliasOutput } from "../models/models_0"; +import type { PaymentCryptographyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-payment-cryptography/src/endpoint/EndpointParameters.ts b/clients/client-payment-cryptography/src/endpoint/EndpointParameters.ts index cb0744fe28019..7afb8d6bc6a46 100644 --- a/clients/client-payment-cryptography/src/endpoint/EndpointParameters.ts +++ b/clients/client-payment-cryptography/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-payment-cryptography/src/endpoint/endpointResolver.ts b/clients/client-payment-cryptography/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-payment-cryptography/src/endpoint/endpointResolver.ts +++ b/clients/client-payment-cryptography/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-payment-cryptography/src/extensionConfiguration.ts b/clients/client-payment-cryptography/src/extensionConfiguration.ts index 8a93978bb2a94..b612f723b67f6 100644 --- a/clients/client-payment-cryptography/src/extensionConfiguration.ts +++ b/clients/client-payment-cryptography/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-payment-cryptography/src/models/PaymentCryptographyServiceException.ts b/clients/client-payment-cryptography/src/models/PaymentCryptographyServiceException.ts index 58e915a17b443..7da6040bf666d 100644 --- a/clients/client-payment-cryptography/src/models/PaymentCryptographyServiceException.ts +++ b/clients/client-payment-cryptography/src/models/PaymentCryptographyServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-payment-cryptography/src/models/errors.ts b/clients/client-payment-cryptography/src/models/errors.ts index 81b51e7e7fce6..9268d9dd678c8 100644 --- a/clients/client-payment-cryptography/src/models/errors.ts +++ b/clients/client-payment-cryptography/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PaymentCryptographyServiceException as __BaseException } from "./PaymentCryptographyServiceException"; diff --git a/clients/client-payment-cryptography/src/pagination/Interfaces.ts b/clients/client-payment-cryptography/src/pagination/Interfaces.ts index 9d31bbddf51d9..fe9b3649a4ea8 100644 --- a/clients/client-payment-cryptography/src/pagination/Interfaces.ts +++ b/clients/client-payment-cryptography/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PaymentCryptographyClient } from "../PaymentCryptographyClient"; diff --git a/clients/client-payment-cryptography/src/pagination/ListAliasesPaginator.ts b/clients/client-payment-cryptography/src/pagination/ListAliasesPaginator.ts index d7a54fd4facbf..ddcfe252cfef2 100644 --- a/clients/client-payment-cryptography/src/pagination/ListAliasesPaginator.ts +++ b/clients/client-payment-cryptography/src/pagination/ListAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAliasesCommand, ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand"; import { PaymentCryptographyClient } from "../PaymentCryptographyClient"; diff --git a/clients/client-payment-cryptography/src/pagination/ListKeysPaginator.ts b/clients/client-payment-cryptography/src/pagination/ListKeysPaginator.ts index dbbd3ecfd84d2..c2c27f30d8f0c 100644 --- a/clients/client-payment-cryptography/src/pagination/ListKeysPaginator.ts +++ b/clients/client-payment-cryptography/src/pagination/ListKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKeysCommand, ListKeysCommandInput, ListKeysCommandOutput } from "../commands/ListKeysCommand"; import { PaymentCryptographyClient } from "../PaymentCryptographyClient"; diff --git a/clients/client-payment-cryptography/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-payment-cryptography/src/pagination/ListTagsForResourcePaginator.ts index c2eaf75de5839..99d9ff66ef57a 100644 --- a/clients/client-payment-cryptography/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-payment-cryptography/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-payment-cryptography/src/runtimeConfig.browser.ts b/clients/client-payment-cryptography/src/runtimeConfig.browser.ts index e59028b1306fd..23d4d34f474a8 100644 --- a/clients/client-payment-cryptography/src/runtimeConfig.browser.ts +++ b/clients/client-payment-cryptography/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PaymentCryptographyClientConfig } from "./PaymentCryptographyClient"; + +import type { PaymentCryptographyClientConfig } from "./PaymentCryptographyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-payment-cryptography/src/runtimeConfig.native.ts b/clients/client-payment-cryptography/src/runtimeConfig.native.ts index b69a94da45f11..25e999227d39a 100644 --- a/clients/client-payment-cryptography/src/runtimeConfig.native.ts +++ b/clients/client-payment-cryptography/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PaymentCryptographyClientConfig } from "./PaymentCryptographyClient"; +import type { PaymentCryptographyClientConfig } from "./PaymentCryptographyClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-payment-cryptography/src/runtimeConfig.shared.ts b/clients/client-payment-cryptography/src/runtimeConfig.shared.ts index eb25e5647137c..b5c1eb580395c 100644 --- a/clients/client-payment-cryptography/src/runtimeConfig.shared.ts +++ b/clients/client-payment-cryptography/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPaymentCryptographyHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PaymentCryptographyClientConfig } from "./PaymentCryptographyClient"; +import type { PaymentCryptographyClientConfig } from "./PaymentCryptographyClient"; /** * @internal diff --git a/clients/client-payment-cryptography/src/runtimeConfig.ts b/clients/client-payment-cryptography/src/runtimeConfig.ts index 82e2e3bd12f36..952a14acd303b 100644 --- a/clients/client-payment-cryptography/src/runtimeConfig.ts +++ b/clients/client-payment-cryptography/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PaymentCryptographyClientConfig } from "./PaymentCryptographyClient"; + +import type { PaymentCryptographyClientConfig } from "./PaymentCryptographyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-payment-cryptography/src/runtimeExtensions.ts b/clients/client-payment-cryptography/src/runtimeExtensions.ts index e30364ebf3883..0ccfa6942adef 100644 --- a/clients/client-payment-cryptography/src/runtimeExtensions.ts +++ b/clients/client-payment-cryptography/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PaymentCryptographyExtensionConfiguration } from "./extensionConfiguration"; +import type { PaymentCryptographyExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-payment-cryptography/src/schemas/schemas_0.ts b/clients/client-payment-cryptography/src/schemas/schemas_0.ts index c61d8f123fe9f..32f232c6c2dd1 100644 --- a/clients/client-payment-cryptography/src/schemas/schemas_0.ts +++ b/clients/client-payment-cryptography/src/schemas/schemas_0.ts @@ -219,7 +219,7 @@ const n0 = "com.amazonaws.paymentcryptography"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-pca-connector-ad/package.json b/clients/client-pca-connector-ad/package.json index 69532f3f931db..aed23723b9f8a 100644 --- a/clients/client-pca-connector-ad/package.json +++ b/clients/client-pca-connector-ad/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pca-connector-ad/src/PcaConnectorAd.ts b/clients/client-pca-connector-ad/src/PcaConnectorAd.ts index 66e012addb47b..1e60d049c47ea 100644 --- a/clients/client-pca-connector-ad/src/PcaConnectorAd.ts +++ b/clients/client-pca-connector-ad/src/PcaConnectorAd.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateConnectorCommand, @@ -119,7 +119,7 @@ import { UpdateTemplateGroupAccessControlEntryCommandInput, UpdateTemplateGroupAccessControlEntryCommandOutput, } from "./commands/UpdateTemplateGroupAccessControlEntryCommand"; -import { PcaConnectorAdClient, PcaConnectorAdClientConfig } from "./PcaConnectorAdClient"; +import { PcaConnectorAdClient } from "./PcaConnectorAdClient"; const commands = { CreateConnectorCommand, diff --git a/clients/client-pca-connector-ad/src/PcaConnectorAdClient.ts b/clients/client-pca-connector-ad/src/PcaConnectorAdClient.ts index de481d68030cf..60b1093ce5efa 100644 --- a/clients/client-pca-connector-ad/src/PcaConnectorAdClient.ts +++ b/clients/client-pca-connector-ad/src/PcaConnectorAdClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPcaConnectorAdHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./commands/CreateConnectorCommand"; @@ -131,7 +140,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pca-connector-ad/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pca-connector-ad/src/auth/httpAuthExtensionConfiguration.ts index d6e8b9096affb..c647f362d46f9 100644 --- a/clients/client-pca-connector-ad/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pca-connector-ad/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PcaConnectorAdHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PcaConnectorAdHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pca-connector-ad/src/auth/httpAuthSchemeProvider.ts b/clients/client-pca-connector-ad/src/auth/httpAuthSchemeProvider.ts index bfba3f1d2fd29..6f0f6d39aa542 100644 --- a/clients/client-pca-connector-ad/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pca-connector-ad/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PcaConnectorAdClientConfig, PcaConnectorAdClientResolvedConfig } from "../PcaConnectorAdClient"; +import { type PcaConnectorAdClientResolvedConfig, PcaConnectorAdClientConfig } from "../PcaConnectorAdClient"; /** * @internal diff --git a/clients/client-pca-connector-ad/src/commands/CreateConnectorCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateConnectorCommand.ts index 3024b875caa7b..363ef45f19fcb 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateConnectorCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateConnectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { CreateConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/CreateDirectoryRegistrationCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateDirectoryRegistrationCommand.ts index 7b97da066a0c8..7dd562a514507 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateDirectoryRegistrationCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateDirectoryRegistrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDirectoryRegistrationRequest, CreateDirectoryRegistrationResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { CreateDirectoryRegistrationRequest, CreateDirectoryRegistrationResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { CreateDirectoryRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/CreateServicePrincipalNameCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateServicePrincipalNameCommand.ts index bbef34737a1af..9e988c56f6918 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateServicePrincipalNameCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateServicePrincipalNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServicePrincipalNameRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { CreateServicePrincipalNameRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { CreateServicePrincipalName } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/CreateTemplateCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateTemplateCommand.ts index 0cd36189d8e64..821716f059cd4 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateTemplateCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { CreateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/CreateTemplateGroupAccessControlEntryCommand.ts b/clients/client-pca-connector-ad/src/commands/CreateTemplateGroupAccessControlEntryCommand.ts index 54351584a719a..fc187205c2279 100644 --- a/clients/client-pca-connector-ad/src/commands/CreateTemplateGroupAccessControlEntryCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/CreateTemplateGroupAccessControlEntryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTemplateGroupAccessControlEntryRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { CreateTemplateGroupAccessControlEntryRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { CreateTemplateGroupAccessControlEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/DeleteConnectorCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteConnectorCommand.ts index 3ec44b3733dd4..f8f44361cfb0e 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteConnectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectorRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { DeleteConnectorRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { DeleteConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/DeleteDirectoryRegistrationCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteDirectoryRegistrationCommand.ts index d85020209eaf7..08c3aff39d22d 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteDirectoryRegistrationCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteDirectoryRegistrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDirectoryRegistrationRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { DeleteDirectoryRegistrationRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { DeleteDirectoryRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/DeleteServicePrincipalNameCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteServicePrincipalNameCommand.ts index 5493d5d7aeca5..e9a1946675875 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteServicePrincipalNameCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteServicePrincipalNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServicePrincipalNameRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { DeleteServicePrincipalNameRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { DeleteServicePrincipalName } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/DeleteTemplateCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteTemplateCommand.ts index 4d65049e01317..be20a9337d3ea 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTemplateRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { DeleteTemplateRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { DeleteTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/DeleteTemplateGroupAccessControlEntryCommand.ts b/clients/client-pca-connector-ad/src/commands/DeleteTemplateGroupAccessControlEntryCommand.ts index be470febea495..601a0a6c66704 100644 --- a/clients/client-pca-connector-ad/src/commands/DeleteTemplateGroupAccessControlEntryCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/DeleteTemplateGroupAccessControlEntryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTemplateGroupAccessControlEntryRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { DeleteTemplateGroupAccessControlEntryRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { DeleteTemplateGroupAccessControlEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/GetConnectorCommand.ts b/clients/client-pca-connector-ad/src/commands/GetConnectorCommand.ts index 333d4f336d672..be1c1e253bd4c 100644 --- a/clients/client-pca-connector-ad/src/commands/GetConnectorCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetConnectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectorRequest, GetConnectorResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { GetConnectorRequest, GetConnectorResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { GetConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/GetDirectoryRegistrationCommand.ts b/clients/client-pca-connector-ad/src/commands/GetDirectoryRegistrationCommand.ts index 95ef52aa3f438..56d12d7beadc8 100644 --- a/clients/client-pca-connector-ad/src/commands/GetDirectoryRegistrationCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetDirectoryRegistrationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDirectoryRegistrationRequest, GetDirectoryRegistrationResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { GetDirectoryRegistrationRequest, GetDirectoryRegistrationResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { GetDirectoryRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/GetServicePrincipalNameCommand.ts b/clients/client-pca-connector-ad/src/commands/GetServicePrincipalNameCommand.ts index f3fc64ec76f0e..98bbba81cf716 100644 --- a/clients/client-pca-connector-ad/src/commands/GetServicePrincipalNameCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetServicePrincipalNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServicePrincipalNameRequest, GetServicePrincipalNameResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { GetServicePrincipalNameRequest, GetServicePrincipalNameResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { GetServicePrincipalName } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/GetTemplateCommand.ts b/clients/client-pca-connector-ad/src/commands/GetTemplateCommand.ts index 0c67e70244c86..5142fa2dd6d9e 100644 --- a/clients/client-pca-connector-ad/src/commands/GetTemplateCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTemplateRequest, GetTemplateResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { GetTemplateRequest, GetTemplateResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { GetTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/GetTemplateGroupAccessControlEntryCommand.ts b/clients/client-pca-connector-ad/src/commands/GetTemplateGroupAccessControlEntryCommand.ts index 2549ca7df16bf..ac2e5c870ffc1 100644 --- a/clients/client-pca-connector-ad/src/commands/GetTemplateGroupAccessControlEntryCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/GetTemplateGroupAccessControlEntryCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTemplateGroupAccessControlEntryRequest, GetTemplateGroupAccessControlEntryResponse, } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { GetTemplateGroupAccessControlEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/ListConnectorsCommand.ts b/clients/client-pca-connector-ad/src/commands/ListConnectorsCommand.ts index 8accfbebead9c..dc2414cb5d398 100644 --- a/clients/client-pca-connector-ad/src/commands/ListConnectorsCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListConnectorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { ListConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/ListDirectoryRegistrationsCommand.ts b/clients/client-pca-connector-ad/src/commands/ListDirectoryRegistrationsCommand.ts index 2318ccfeb84bf..1d5e380b3eee0 100644 --- a/clients/client-pca-connector-ad/src/commands/ListDirectoryRegistrationsCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListDirectoryRegistrationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDirectoryRegistrationsRequest, ListDirectoryRegistrationsResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { ListDirectoryRegistrationsRequest, ListDirectoryRegistrationsResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { ListDirectoryRegistrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/ListServicePrincipalNamesCommand.ts b/clients/client-pca-connector-ad/src/commands/ListServicePrincipalNamesCommand.ts index 2b6ec5deb3d3c..942923744f3d5 100644 --- a/clients/client-pca-connector-ad/src/commands/ListServicePrincipalNamesCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListServicePrincipalNamesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicePrincipalNamesRequest, ListServicePrincipalNamesResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { ListServicePrincipalNamesRequest, ListServicePrincipalNamesResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { ListServicePrincipalNames } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/ListTagsForResourceCommand.ts b/clients/client-pca-connector-ad/src/commands/ListTagsForResourceCommand.ts index a03aedfb54237..28ad6df9d1b8c 100644 --- a/clients/client-pca-connector-ad/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/ListTemplateGroupAccessControlEntriesCommand.ts b/clients/client-pca-connector-ad/src/commands/ListTemplateGroupAccessControlEntriesCommand.ts index 922463c61602f..9c8d0887ec945 100644 --- a/clients/client-pca-connector-ad/src/commands/ListTemplateGroupAccessControlEntriesCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListTemplateGroupAccessControlEntriesCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListTemplateGroupAccessControlEntriesRequest, ListTemplateGroupAccessControlEntriesResponse, } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { ListTemplateGroupAccessControlEntries } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/ListTemplatesCommand.ts b/clients/client-pca-connector-ad/src/commands/ListTemplatesCommand.ts index 3a54ee51ee1d8..254c700e50423 100644 --- a/clients/client-pca-connector-ad/src/commands/ListTemplatesCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/ListTemplatesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { ListTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/TagResourceCommand.ts b/clients/client-pca-connector-ad/src/commands/TagResourceCommand.ts index 696f21921761b..7bb21e50c190d 100644 --- a/clients/client-pca-connector-ad/src/commands/TagResourceCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { TagResourceRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/UntagResourceCommand.ts b/clients/client-pca-connector-ad/src/commands/UntagResourceCommand.ts index a8f71e3f96c3b..6562f0c8d8521 100644 --- a/clients/client-pca-connector-ad/src/commands/UntagResourceCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { UntagResourceRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/UpdateTemplateCommand.ts b/clients/client-pca-connector-ad/src/commands/UpdateTemplateCommand.ts index b3847ef4fa58c..e09510edecaee 100644 --- a/clients/client-pca-connector-ad/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/UpdateTemplateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTemplateRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { UpdateTemplateRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { UpdateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/commands/UpdateTemplateGroupAccessControlEntryCommand.ts b/clients/client-pca-connector-ad/src/commands/UpdateTemplateGroupAccessControlEntryCommand.ts index 47205ed5a363a..2ee298d3deca8 100644 --- a/clients/client-pca-connector-ad/src/commands/UpdateTemplateGroupAccessControlEntryCommand.ts +++ b/clients/client-pca-connector-ad/src/commands/UpdateTemplateGroupAccessControlEntryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTemplateGroupAccessControlEntryRequest } from "../models/models_0"; -import { PcaConnectorAdClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorAdClient"; +import type { UpdateTemplateGroupAccessControlEntryRequest } from "../models/models_0"; +import type { + PcaConnectorAdClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorAdClient"; import { UpdateTemplateGroupAccessControlEntry } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-ad/src/endpoint/EndpointParameters.ts b/clients/client-pca-connector-ad/src/endpoint/EndpointParameters.ts index 9a099ed83f053..9033a7bf63b29 100644 --- a/clients/client-pca-connector-ad/src/endpoint/EndpointParameters.ts +++ b/clients/client-pca-connector-ad/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pca-connector-ad/src/endpoint/endpointResolver.ts b/clients/client-pca-connector-ad/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pca-connector-ad/src/endpoint/endpointResolver.ts +++ b/clients/client-pca-connector-ad/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pca-connector-ad/src/extensionConfiguration.ts b/clients/client-pca-connector-ad/src/extensionConfiguration.ts index 0d84658b75425..af7d151fab1d2 100644 --- a/clients/client-pca-connector-ad/src/extensionConfiguration.ts +++ b/clients/client-pca-connector-ad/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pca-connector-ad/src/models/PcaConnectorAdServiceException.ts b/clients/client-pca-connector-ad/src/models/PcaConnectorAdServiceException.ts index 331911159ea79..ee3d1a1bd1a79 100644 --- a/clients/client-pca-connector-ad/src/models/PcaConnectorAdServiceException.ts +++ b/clients/client-pca-connector-ad/src/models/PcaConnectorAdServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pca-connector-ad/src/models/errors.ts b/clients/client-pca-connector-ad/src/models/errors.ts index 1e707f7edf6cb..62477caab19f9 100644 --- a/clients/client-pca-connector-ad/src/models/errors.ts +++ b/clients/client-pca-connector-ad/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { PcaConnectorAdServiceException as __BaseException } from "./PcaConnectorAdServiceException"; diff --git a/clients/client-pca-connector-ad/src/pagination/Interfaces.ts b/clients/client-pca-connector-ad/src/pagination/Interfaces.ts index 93c72ccc6a568..f5a03d3cdd96d 100644 --- a/clients/client-pca-connector-ad/src/pagination/Interfaces.ts +++ b/clients/client-pca-connector-ad/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PcaConnectorAdClient } from "../PcaConnectorAdClient"; diff --git a/clients/client-pca-connector-ad/src/pagination/ListConnectorsPaginator.ts b/clients/client-pca-connector-ad/src/pagination/ListConnectorsPaginator.ts index edd43866dfccc..43315a81e137a 100644 --- a/clients/client-pca-connector-ad/src/pagination/ListConnectorsPaginator.ts +++ b/clients/client-pca-connector-ad/src/pagination/ListConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectorsCommand, diff --git a/clients/client-pca-connector-ad/src/pagination/ListDirectoryRegistrationsPaginator.ts b/clients/client-pca-connector-ad/src/pagination/ListDirectoryRegistrationsPaginator.ts index 3a7d5fb221adc..80d7be99d250b 100644 --- a/clients/client-pca-connector-ad/src/pagination/ListDirectoryRegistrationsPaginator.ts +++ b/clients/client-pca-connector-ad/src/pagination/ListDirectoryRegistrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDirectoryRegistrationsCommand, diff --git a/clients/client-pca-connector-ad/src/pagination/ListServicePrincipalNamesPaginator.ts b/clients/client-pca-connector-ad/src/pagination/ListServicePrincipalNamesPaginator.ts index ac3d4e419b534..a0577ecfa4b5a 100644 --- a/clients/client-pca-connector-ad/src/pagination/ListServicePrincipalNamesPaginator.ts +++ b/clients/client-pca-connector-ad/src/pagination/ListServicePrincipalNamesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicePrincipalNamesCommand, diff --git a/clients/client-pca-connector-ad/src/pagination/ListTemplateGroupAccessControlEntriesPaginator.ts b/clients/client-pca-connector-ad/src/pagination/ListTemplateGroupAccessControlEntriesPaginator.ts index f57bc565baa34..cc3abd57a73da 100644 --- a/clients/client-pca-connector-ad/src/pagination/ListTemplateGroupAccessControlEntriesPaginator.ts +++ b/clients/client-pca-connector-ad/src/pagination/ListTemplateGroupAccessControlEntriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplateGroupAccessControlEntriesCommand, diff --git a/clients/client-pca-connector-ad/src/pagination/ListTemplatesPaginator.ts b/clients/client-pca-connector-ad/src/pagination/ListTemplatesPaginator.ts index b37d6523d89de..c8a8fafcda3ce 100644 --- a/clients/client-pca-connector-ad/src/pagination/ListTemplatesPaginator.ts +++ b/clients/client-pca-connector-ad/src/pagination/ListTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplatesCommand, diff --git a/clients/client-pca-connector-ad/src/runtimeConfig.browser.ts b/clients/client-pca-connector-ad/src/runtimeConfig.browser.ts index f097c588dd9c7..3213c2e3f6583 100644 --- a/clients/client-pca-connector-ad/src/runtimeConfig.browser.ts +++ b/clients/client-pca-connector-ad/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient"; + +import type { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pca-connector-ad/src/runtimeConfig.native.ts b/clients/client-pca-connector-ad/src/runtimeConfig.native.ts index bf027d80c704f..3f37264b39715 100644 --- a/clients/client-pca-connector-ad/src/runtimeConfig.native.ts +++ b/clients/client-pca-connector-ad/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient"; +import type { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pca-connector-ad/src/runtimeConfig.shared.ts b/clients/client-pca-connector-ad/src/runtimeConfig.shared.ts index 2a883ad05f248..afe16704d9a51 100644 --- a/clients/client-pca-connector-ad/src/runtimeConfig.shared.ts +++ b/clients/client-pca-connector-ad/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPcaConnectorAdHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient"; +import type { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient"; /** * @internal diff --git a/clients/client-pca-connector-ad/src/runtimeConfig.ts b/clients/client-pca-connector-ad/src/runtimeConfig.ts index 563c28130d47c..84f902b73fb02 100644 --- a/clients/client-pca-connector-ad/src/runtimeConfig.ts +++ b/clients/client-pca-connector-ad/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient"; + +import type { PcaConnectorAdClientConfig } from "./PcaConnectorAdClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pca-connector-ad/src/runtimeExtensions.ts b/clients/client-pca-connector-ad/src/runtimeExtensions.ts index a2a10d2765183..ba630e917641b 100644 --- a/clients/client-pca-connector-ad/src/runtimeExtensions.ts +++ b/clients/client-pca-connector-ad/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PcaConnectorAdExtensionConfiguration } from "./extensionConfiguration"; +import type { PcaConnectorAdExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pca-connector-ad/src/schemas/schemas_0.ts b/clients/client-pca-connector-ad/src/schemas/schemas_0.ts index 4de63ad5fb352..10d6622862a0b 100644 --- a/clients/client-pca-connector-ad/src/schemas/schemas_0.ts +++ b/clients/client-pca-connector-ad/src/schemas/schemas_0.ts @@ -224,7 +224,7 @@ const n0 = "com.amazonaws.pcaconnectorad"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-pca-connector-scep/package.json b/clients/client-pca-connector-scep/package.json index 2cf003063c898..d290a5a392803 100644 --- a/clients/client-pca-connector-scep/package.json +++ b/clients/client-pca-connector-scep/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pca-connector-scep/src/PcaConnectorScep.ts b/clients/client-pca-connector-scep/src/PcaConnectorScep.ts index b4324775b25a1..5af744ce13062 100644 --- a/clients/client-pca-connector-scep/src/PcaConnectorScep.ts +++ b/clients/client-pca-connector-scep/src/PcaConnectorScep.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateChallengeCommand, @@ -58,7 +58,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { PcaConnectorScepClient, PcaConnectorScepClientConfig } from "./PcaConnectorScepClient"; +import { PcaConnectorScepClient } from "./PcaConnectorScepClient"; const commands = { CreateChallengeCommand, diff --git a/clients/client-pca-connector-scep/src/PcaConnectorScepClient.ts b/clients/client-pca-connector-scep/src/PcaConnectorScepClient.ts index cca2557168af6..7821a179045d0 100644 --- a/clients/client-pca-connector-scep/src/PcaConnectorScepClient.ts +++ b/clients/client-pca-connector-scep/src/PcaConnectorScepClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPcaConnectorScepHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateChallengeCommandInput, CreateChallengeCommandOutput } from "./commands/CreateChallengeCommand"; @@ -88,7 +97,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pca-connector-scep/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pca-connector-scep/src/auth/httpAuthExtensionConfiguration.ts index 7a900e054139b..e9c94ff576142 100644 --- a/clients/client-pca-connector-scep/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pca-connector-scep/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PcaConnectorScepHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PcaConnectorScepHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pca-connector-scep/src/auth/httpAuthSchemeProvider.ts b/clients/client-pca-connector-scep/src/auth/httpAuthSchemeProvider.ts index 5d3b78906d7be..20e070e831e5a 100644 --- a/clients/client-pca-connector-scep/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pca-connector-scep/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PcaConnectorScepClientConfig, PcaConnectorScepClientResolvedConfig } from "../PcaConnectorScepClient"; +import { type PcaConnectorScepClientResolvedConfig, PcaConnectorScepClientConfig } from "../PcaConnectorScepClient"; /** * @internal diff --git a/clients/client-pca-connector-scep/src/commands/CreateChallengeCommand.ts b/clients/client-pca-connector-scep/src/commands/CreateChallengeCommand.ts index e3ddc2f591113..a764ae12bee28 100644 --- a/clients/client-pca-connector-scep/src/commands/CreateChallengeCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/CreateChallengeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChallengeRequest, CreateChallengeResponse } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { CreateChallengeRequest, CreateChallengeResponse } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { CreateChallenge } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/CreateConnectorCommand.ts b/clients/client-pca-connector-scep/src/commands/CreateConnectorCommand.ts index 95d3c211723f7..267ae525fbf95 100644 --- a/clients/client-pca-connector-scep/src/commands/CreateConnectorCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/CreateConnectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { CreateConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/DeleteChallengeCommand.ts b/clients/client-pca-connector-scep/src/commands/DeleteChallengeCommand.ts index a0de9a60559bd..e3f80a64f20d2 100644 --- a/clients/client-pca-connector-scep/src/commands/DeleteChallengeCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/DeleteChallengeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChallengeRequest } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { DeleteChallengeRequest } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { DeleteChallenge } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/DeleteConnectorCommand.ts b/clients/client-pca-connector-scep/src/commands/DeleteConnectorCommand.ts index b7854c8db6c8a..c54bf92d36a2a 100644 --- a/clients/client-pca-connector-scep/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/DeleteConnectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectorRequest } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { DeleteConnectorRequest } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { DeleteConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/GetChallengeMetadataCommand.ts b/clients/client-pca-connector-scep/src/commands/GetChallengeMetadataCommand.ts index b2077cfbf76be..e37ee420b8dc1 100644 --- a/clients/client-pca-connector-scep/src/commands/GetChallengeMetadataCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/GetChallengeMetadataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChallengeMetadataRequest, GetChallengeMetadataResponse } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { GetChallengeMetadataRequest, GetChallengeMetadataResponse } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { GetChallengeMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/GetChallengePasswordCommand.ts b/clients/client-pca-connector-scep/src/commands/GetChallengePasswordCommand.ts index 6c1cb5a8f8f2e..dbdb205c76ce2 100644 --- a/clients/client-pca-connector-scep/src/commands/GetChallengePasswordCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/GetChallengePasswordCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChallengePasswordRequest, GetChallengePasswordResponse } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { GetChallengePasswordRequest, GetChallengePasswordResponse } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { GetChallengePassword } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/GetConnectorCommand.ts b/clients/client-pca-connector-scep/src/commands/GetConnectorCommand.ts index cdbb4ba7f0598..3fc78564cf0bc 100644 --- a/clients/client-pca-connector-scep/src/commands/GetConnectorCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/GetConnectorCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectorRequest, GetConnectorResponse } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { GetConnectorRequest, GetConnectorResponse } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { GetConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/ListChallengeMetadataCommand.ts b/clients/client-pca-connector-scep/src/commands/ListChallengeMetadataCommand.ts index 25605dd3d1589..ba365aa84552e 100644 --- a/clients/client-pca-connector-scep/src/commands/ListChallengeMetadataCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/ListChallengeMetadataCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChallengeMetadataRequest, ListChallengeMetadataResponse } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { ListChallengeMetadataRequest, ListChallengeMetadataResponse } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { ListChallengeMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/ListConnectorsCommand.ts b/clients/client-pca-connector-scep/src/commands/ListConnectorsCommand.ts index e6466877fdfec..5f16f45d59654 100644 --- a/clients/client-pca-connector-scep/src/commands/ListConnectorsCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/ListConnectorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { ListConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/ListTagsForResourceCommand.ts b/clients/client-pca-connector-scep/src/commands/ListTagsForResourceCommand.ts index 77fb93d285e2d..8ab7acef4b51a 100644 --- a/clients/client-pca-connector-scep/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/TagResourceCommand.ts b/clients/client-pca-connector-scep/src/commands/TagResourceCommand.ts index d8bb8b7e1cf2d..8b2df63c67572 100644 --- a/clients/client-pca-connector-scep/src/commands/TagResourceCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { TagResourceRequest } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/commands/UntagResourceCommand.ts b/clients/client-pca-connector-scep/src/commands/UntagResourceCommand.ts index d8114651e8e4e..31f3ad745ebce 100644 --- a/clients/client-pca-connector-scep/src/commands/UntagResourceCommand.ts +++ b/clients/client-pca-connector-scep/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; -import { PcaConnectorScepClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PcaConnectorScepClient"; +import type { UntagResourceRequest } from "../models/models_0"; +import type { + PcaConnectorScepClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PcaConnectorScepClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pca-connector-scep/src/endpoint/EndpointParameters.ts b/clients/client-pca-connector-scep/src/endpoint/EndpointParameters.ts index 565b1b25977df..6d09df6b155df 100644 --- a/clients/client-pca-connector-scep/src/endpoint/EndpointParameters.ts +++ b/clients/client-pca-connector-scep/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pca-connector-scep/src/endpoint/endpointResolver.ts b/clients/client-pca-connector-scep/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pca-connector-scep/src/endpoint/endpointResolver.ts +++ b/clients/client-pca-connector-scep/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pca-connector-scep/src/extensionConfiguration.ts b/clients/client-pca-connector-scep/src/extensionConfiguration.ts index 43ff000fbf2d1..ce25051260c12 100644 --- a/clients/client-pca-connector-scep/src/extensionConfiguration.ts +++ b/clients/client-pca-connector-scep/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pca-connector-scep/src/models/PcaConnectorScepServiceException.ts b/clients/client-pca-connector-scep/src/models/PcaConnectorScepServiceException.ts index 1f4d6f04168bb..81c04d2a2a953 100644 --- a/clients/client-pca-connector-scep/src/models/PcaConnectorScepServiceException.ts +++ b/clients/client-pca-connector-scep/src/models/PcaConnectorScepServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pca-connector-scep/src/models/errors.ts b/clients/client-pca-connector-scep/src/models/errors.ts index a9a76c56baf28..459f5936a9102 100644 --- a/clients/client-pca-connector-scep/src/models/errors.ts +++ b/clients/client-pca-connector-scep/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { PcaConnectorScepServiceException as __BaseException } from "./PcaConnectorScepServiceException"; diff --git a/clients/client-pca-connector-scep/src/pagination/Interfaces.ts b/clients/client-pca-connector-scep/src/pagination/Interfaces.ts index 7585e19188788..da8ba38e858ed 100644 --- a/clients/client-pca-connector-scep/src/pagination/Interfaces.ts +++ b/clients/client-pca-connector-scep/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PcaConnectorScepClient } from "../PcaConnectorScepClient"; diff --git a/clients/client-pca-connector-scep/src/pagination/ListChallengeMetadataPaginator.ts b/clients/client-pca-connector-scep/src/pagination/ListChallengeMetadataPaginator.ts index d0b69af825848..1d9c17d1dc6d2 100644 --- a/clients/client-pca-connector-scep/src/pagination/ListChallengeMetadataPaginator.ts +++ b/clients/client-pca-connector-scep/src/pagination/ListChallengeMetadataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChallengeMetadataCommand, diff --git a/clients/client-pca-connector-scep/src/pagination/ListConnectorsPaginator.ts b/clients/client-pca-connector-scep/src/pagination/ListConnectorsPaginator.ts index fee8a3ccfa91d..de8c922ade1f5 100644 --- a/clients/client-pca-connector-scep/src/pagination/ListConnectorsPaginator.ts +++ b/clients/client-pca-connector-scep/src/pagination/ListConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectorsCommand, diff --git a/clients/client-pca-connector-scep/src/runtimeConfig.browser.ts b/clients/client-pca-connector-scep/src/runtimeConfig.browser.ts index bbd81d133c74d..358864db86991 100644 --- a/clients/client-pca-connector-scep/src/runtimeConfig.browser.ts +++ b/clients/client-pca-connector-scep/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient"; + +import type { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pca-connector-scep/src/runtimeConfig.native.ts b/clients/client-pca-connector-scep/src/runtimeConfig.native.ts index 70db708baef02..7ffbe1c33af60 100644 --- a/clients/client-pca-connector-scep/src/runtimeConfig.native.ts +++ b/clients/client-pca-connector-scep/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient"; +import type { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pca-connector-scep/src/runtimeConfig.shared.ts b/clients/client-pca-connector-scep/src/runtimeConfig.shared.ts index 3997f1ced34e2..2bb086d95b7eb 100644 --- a/clients/client-pca-connector-scep/src/runtimeConfig.shared.ts +++ b/clients/client-pca-connector-scep/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPcaConnectorScepHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient"; +import type { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient"; /** * @internal diff --git a/clients/client-pca-connector-scep/src/runtimeConfig.ts b/clients/client-pca-connector-scep/src/runtimeConfig.ts index 96728032d48a6..d6f89b8faeabc 100644 --- a/clients/client-pca-connector-scep/src/runtimeConfig.ts +++ b/clients/client-pca-connector-scep/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient"; + +import type { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pca-connector-scep/src/runtimeExtensions.ts b/clients/client-pca-connector-scep/src/runtimeExtensions.ts index 4d0ff0945181b..e3aab5c0f9be7 100644 --- a/clients/client-pca-connector-scep/src/runtimeExtensions.ts +++ b/clients/client-pca-connector-scep/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PcaConnectorScepExtensionConfiguration } from "./extensionConfiguration"; +import type { PcaConnectorScepExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pca-connector-scep/src/schemas/schemas_0.ts b/clients/client-pca-connector-scep/src/schemas/schemas_0.ts index 24a2c057f8651..e46ee42eb3f71 100644 --- a/clients/client-pca-connector-scep/src/schemas/schemas_0.ts +++ b/clients/client-pca-connector-scep/src/schemas/schemas_0.ts @@ -92,7 +92,7 @@ const n0 = "com.amazonaws.pcaconnectorscep"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-pcs/package.json b/clients/client-pcs/package.json index da7b135855162..16c87aded66bf 100644 --- a/clients/client-pcs/package.json +++ b/clients/client-pcs/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pcs/src/PCS.ts b/clients/client-pcs/src/PCS.ts index ec3099f107523..698680ccf69a1 100644 --- a/clients/client-pcs/src/PCS.ts +++ b/clients/client-pcs/src/PCS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateClusterCommand, @@ -69,7 +69,7 @@ import { UpdateComputeNodeGroupCommandOutput, } from "./commands/UpdateComputeNodeGroupCommand"; import { UpdateQueueCommand, UpdateQueueCommandInput, UpdateQueueCommandOutput } from "./commands/UpdateQueueCommand"; -import { PCSClient, PCSClientConfig } from "./PCSClient"; +import { PCSClient } from "./PCSClient"; const commands = { CreateClusterCommand, diff --git a/clients/client-pcs/src/PCSClient.ts b/clients/client-pcs/src/PCSClient.ts index dea2e42412db5..4ee6876b37c1b 100644 --- a/clients/client-pcs/src/PCSClient.ts +++ b/clients/client-pcs/src/PCSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPCSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand"; @@ -104,7 +113,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pcs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pcs/src/auth/httpAuthExtensionConfiguration.ts index 3a7744a9d3d0e..193ec4e0e815d 100644 --- a/clients/client-pcs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pcs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PCSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PCSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pcs/src/auth/httpAuthSchemeProvider.ts b/clients/client-pcs/src/auth/httpAuthSchemeProvider.ts index 74eaa37fe04cf..2d5bfdccbe17a 100644 --- a/clients/client-pcs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pcs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PCSClientConfig, PCSClientResolvedConfig } from "../PCSClient"; +import { type PCSClientResolvedConfig, PCSClientConfig } from "../PCSClient"; /** * @internal diff --git a/clients/client-pcs/src/commands/CreateClusterCommand.ts b/clients/client-pcs/src/commands/CreateClusterCommand.ts index 67ce1ef50b418..e7a10adc90864 100644 --- a/clients/client-pcs/src/commands/CreateClusterCommand.ts +++ b/clients/client-pcs/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/CreateComputeNodeGroupCommand.ts b/clients/client-pcs/src/commands/CreateComputeNodeGroupCommand.ts index a5f4f8e4ff5ab..253b595ed0e32 100644 --- a/clients/client-pcs/src/commands/CreateComputeNodeGroupCommand.ts +++ b/clients/client-pcs/src/commands/CreateComputeNodeGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateComputeNodeGroupRequest, CreateComputeNodeGroupResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { CreateComputeNodeGroupRequest, CreateComputeNodeGroupResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { CreateComputeNodeGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/CreateQueueCommand.ts b/clients/client-pcs/src/commands/CreateQueueCommand.ts index 0cf5217925f16..0d17c558e8bbe 100644 --- a/clients/client-pcs/src/commands/CreateQueueCommand.ts +++ b/clients/client-pcs/src/commands/CreateQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQueueRequest, CreateQueueResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { CreateQueueRequest, CreateQueueResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { CreateQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/DeleteClusterCommand.ts b/clients/client-pcs/src/commands/DeleteClusterCommand.ts index 50ad3504640d9..bbf623c189733 100644 --- a/clients/client-pcs/src/commands/DeleteClusterCommand.ts +++ b/clients/client-pcs/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/DeleteComputeNodeGroupCommand.ts b/clients/client-pcs/src/commands/DeleteComputeNodeGroupCommand.ts index ab8f0f4377ee6..7e13fa894a417 100644 --- a/clients/client-pcs/src/commands/DeleteComputeNodeGroupCommand.ts +++ b/clients/client-pcs/src/commands/DeleteComputeNodeGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteComputeNodeGroupRequest, DeleteComputeNodeGroupResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { DeleteComputeNodeGroupRequest, DeleteComputeNodeGroupResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { DeleteComputeNodeGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/DeleteQueueCommand.ts b/clients/client-pcs/src/commands/DeleteQueueCommand.ts index 336f426e0c49c..2230abb54e8d7 100644 --- a/clients/client-pcs/src/commands/DeleteQueueCommand.ts +++ b/clients/client-pcs/src/commands/DeleteQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { DeleteQueueRequest, DeleteQueueResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { DeleteQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/GetClusterCommand.ts b/clients/client-pcs/src/commands/GetClusterCommand.ts index 4abd6412b2aeb..584b4e817de81 100644 --- a/clients/client-pcs/src/commands/GetClusterCommand.ts +++ b/clients/client-pcs/src/commands/GetClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetClusterRequest, GetClusterResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { GetClusterRequest, GetClusterResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { GetCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/GetComputeNodeGroupCommand.ts b/clients/client-pcs/src/commands/GetComputeNodeGroupCommand.ts index 56f52e8134d52..6437181130c05 100644 --- a/clients/client-pcs/src/commands/GetComputeNodeGroupCommand.ts +++ b/clients/client-pcs/src/commands/GetComputeNodeGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetComputeNodeGroupRequest, GetComputeNodeGroupResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { GetComputeNodeGroupRequest, GetComputeNodeGroupResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { GetComputeNodeGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/GetQueueCommand.ts b/clients/client-pcs/src/commands/GetQueueCommand.ts index 05ae806b148d4..899f717624ca8 100644 --- a/clients/client-pcs/src/commands/GetQueueCommand.ts +++ b/clients/client-pcs/src/commands/GetQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueueRequest, GetQueueResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { GetQueueRequest, GetQueueResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { GetQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/ListClustersCommand.ts b/clients/client-pcs/src/commands/ListClustersCommand.ts index 585487fa64ea3..6ebbc7b272b49 100644 --- a/clients/client-pcs/src/commands/ListClustersCommand.ts +++ b/clients/client-pcs/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClustersRequest, ListClustersResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { ListClustersRequest, ListClustersResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { ListClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/ListComputeNodeGroupsCommand.ts b/clients/client-pcs/src/commands/ListComputeNodeGroupsCommand.ts index 3b69191dfe813..61fd1a5a571a3 100644 --- a/clients/client-pcs/src/commands/ListComputeNodeGroupsCommand.ts +++ b/clients/client-pcs/src/commands/ListComputeNodeGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComputeNodeGroupsRequest, ListComputeNodeGroupsResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { ListComputeNodeGroupsRequest, ListComputeNodeGroupsResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { ListComputeNodeGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/ListQueuesCommand.ts b/clients/client-pcs/src/commands/ListQueuesCommand.ts index 771ae72e9809d..b670956038780 100644 --- a/clients/client-pcs/src/commands/ListQueuesCommand.ts +++ b/clients/client-pcs/src/commands/ListQueuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueuesRequest, ListQueuesResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { ListQueuesRequest, ListQueuesResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { ListQueues } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/ListTagsForResourceCommand.ts b/clients/client-pcs/src/commands/ListTagsForResourceCommand.ts index 161291f5784a6..b1888d0f7b908 100644 --- a/clients/client-pcs/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pcs/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/RegisterComputeNodeGroupInstanceCommand.ts b/clients/client-pcs/src/commands/RegisterComputeNodeGroupInstanceCommand.ts index 3527a24766b45..19f9834310f6a 100644 --- a/clients/client-pcs/src/commands/RegisterComputeNodeGroupInstanceCommand.ts +++ b/clients/client-pcs/src/commands/RegisterComputeNodeGroupInstanceCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterComputeNodeGroupInstanceRequest, RegisterComputeNodeGroupInstanceResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { + RegisterComputeNodeGroupInstanceRequest, + RegisterComputeNodeGroupInstanceResponse, +} from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { RegisterComputeNodeGroupInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/TagResourceCommand.ts b/clients/client-pcs/src/commands/TagResourceCommand.ts index 37ade375e2304..8efc9be218724 100644 --- a/clients/client-pcs/src/commands/TagResourceCommand.ts +++ b/clients/client-pcs/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/UntagResourceCommand.ts b/clients/client-pcs/src/commands/UntagResourceCommand.ts index 10ce936be8c30..ebd1f89590bde 100644 --- a/clients/client-pcs/src/commands/UntagResourceCommand.ts +++ b/clients/client-pcs/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/UpdateClusterCommand.ts b/clients/client-pcs/src/commands/UpdateClusterCommand.ts index 619896f7f29e7..158a4209ebe9f 100644 --- a/clients/client-pcs/src/commands/UpdateClusterCommand.ts +++ b/clients/client-pcs/src/commands/UpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { UpdateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/UpdateComputeNodeGroupCommand.ts b/clients/client-pcs/src/commands/UpdateComputeNodeGroupCommand.ts index 41a2d929e81ba..1ca0ef2f0bb38 100644 --- a/clients/client-pcs/src/commands/UpdateComputeNodeGroupCommand.ts +++ b/clients/client-pcs/src/commands/UpdateComputeNodeGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateComputeNodeGroupRequest, UpdateComputeNodeGroupResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { UpdateComputeNodeGroupRequest, UpdateComputeNodeGroupResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { UpdateComputeNodeGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/commands/UpdateQueueCommand.ts b/clients/client-pcs/src/commands/UpdateQueueCommand.ts index 9e93be9172f19..8fe5deaae4b87 100644 --- a/clients/client-pcs/src/commands/UpdateQueueCommand.ts +++ b/clients/client-pcs/src/commands/UpdateQueueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_0"; -import { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; +import type { UpdateQueueRequest, UpdateQueueResponse } from "../models/models_0"; +import type { PCSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PCSClient"; import { UpdateQueue } from "../schemas/schemas_0"; /** diff --git a/clients/client-pcs/src/endpoint/EndpointParameters.ts b/clients/client-pcs/src/endpoint/EndpointParameters.ts index 25ba6fcf1d2bb..259ebd0321624 100644 --- a/clients/client-pcs/src/endpoint/EndpointParameters.ts +++ b/clients/client-pcs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pcs/src/endpoint/endpointResolver.ts b/clients/client-pcs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pcs/src/endpoint/endpointResolver.ts +++ b/clients/client-pcs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pcs/src/extensionConfiguration.ts b/clients/client-pcs/src/extensionConfiguration.ts index 968cf38ea3faf..bf798713ce543 100644 --- a/clients/client-pcs/src/extensionConfiguration.ts +++ b/clients/client-pcs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pcs/src/models/PCSServiceException.ts b/clients/client-pcs/src/models/PCSServiceException.ts index 9fc5f9f7be1f8..975aa60de6756 100644 --- a/clients/client-pcs/src/models/PCSServiceException.ts +++ b/clients/client-pcs/src/models/PCSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pcs/src/models/errors.ts b/clients/client-pcs/src/models/errors.ts index 7ba6a48d4ab89..ceebb785d1e45 100644 --- a/clients/client-pcs/src/models/errors.ts +++ b/clients/client-pcs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-pcs/src/pagination/Interfaces.ts b/clients/client-pcs/src/pagination/Interfaces.ts index b22ef5bf625c3..53e2f6b0ae2b7 100644 --- a/clients/client-pcs/src/pagination/Interfaces.ts +++ b/clients/client-pcs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PCSClient } from "../PCSClient"; diff --git a/clients/client-pcs/src/pagination/ListClustersPaginator.ts b/clients/client-pcs/src/pagination/ListClustersPaginator.ts index 94df87f0c0608..f272693fafd85 100644 --- a/clients/client-pcs/src/pagination/ListClustersPaginator.ts +++ b/clients/client-pcs/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-pcs/src/pagination/ListComputeNodeGroupsPaginator.ts b/clients/client-pcs/src/pagination/ListComputeNodeGroupsPaginator.ts index f2c472a1a9a26..9d584fc7aa0cf 100644 --- a/clients/client-pcs/src/pagination/ListComputeNodeGroupsPaginator.ts +++ b/clients/client-pcs/src/pagination/ListComputeNodeGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComputeNodeGroupsCommand, diff --git a/clients/client-pcs/src/pagination/ListQueuesPaginator.ts b/clients/client-pcs/src/pagination/ListQueuesPaginator.ts index b04ff82507987..9aa6c0f05e117 100644 --- a/clients/client-pcs/src/pagination/ListQueuesPaginator.ts +++ b/clients/client-pcs/src/pagination/ListQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueuesCommand, ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand"; import { PCSClient } from "../PCSClient"; diff --git a/clients/client-pcs/src/runtimeConfig.browser.ts b/clients/client-pcs/src/runtimeConfig.browser.ts index 7eeccc1525ef3..a79c22b92a1b9 100644 --- a/clients/client-pcs/src/runtimeConfig.browser.ts +++ b/clients/client-pcs/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PCSClientConfig } from "./PCSClient"; + +import type { PCSClientConfig } from "./PCSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pcs/src/runtimeConfig.native.ts b/clients/client-pcs/src/runtimeConfig.native.ts index a3deb6c842472..f4d8faf61e7d5 100644 --- a/clients/client-pcs/src/runtimeConfig.native.ts +++ b/clients/client-pcs/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PCSClientConfig } from "./PCSClient"; +import type { PCSClientConfig } from "./PCSClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pcs/src/runtimeConfig.shared.ts b/clients/client-pcs/src/runtimeConfig.shared.ts index 9ad91b7c6e2c2..aeb47ce5f48b9 100644 --- a/clients/client-pcs/src/runtimeConfig.shared.ts +++ b/clients/client-pcs/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPCSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PCSClientConfig } from "./PCSClient"; +import type { PCSClientConfig } from "./PCSClient"; /** * @internal diff --git a/clients/client-pcs/src/runtimeConfig.ts b/clients/client-pcs/src/runtimeConfig.ts index c4c9ed63e42a3..674d8729532fd 100644 --- a/clients/client-pcs/src/runtimeConfig.ts +++ b/clients/client-pcs/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PCSClientConfig } from "./PCSClient"; + +import type { PCSClientConfig } from "./PCSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pcs/src/runtimeExtensions.ts b/clients/client-pcs/src/runtimeExtensions.ts index 078ca9bedcece..634c2d477a017 100644 --- a/clients/client-pcs/src/runtimeExtensions.ts +++ b/clients/client-pcs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PCSExtensionConfiguration } from "./extensionConfiguration"; +import type { PCSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pcs/src/schemas/schemas_0.ts b/clients/client-pcs/src/schemas/schemas_0.ts index d9025fba9926b..bfd7ee8808c9b 100644 --- a/clients/client-pcs/src/schemas/schemas_0.ts +++ b/clients/client-pcs/src/schemas/schemas_0.ts @@ -200,7 +200,7 @@ const n0 = "com.amazonaws.pcs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-personalize-events/package.json b/clients/client-personalize-events/package.json index 66b00b51d73a6..b9ace6fc68984 100644 --- a/clients/client-personalize-events/package.json +++ b/clients/client-personalize-events/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-personalize-events/src/PersonalizeEvents.ts b/clients/client-personalize-events/src/PersonalizeEvents.ts index b4d42d8fe0ef2..7617708116a3f 100644 --- a/clients/client-personalize-events/src/PersonalizeEvents.ts +++ b/clients/client-personalize-events/src/PersonalizeEvents.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { PutActionInteractionsCommand, @@ -11,7 +11,7 @@ import { PutActionsCommand, PutActionsCommandInput, PutActionsCommandOutput } fr import { PutEventsCommand, PutEventsCommandInput, PutEventsCommandOutput } from "./commands/PutEventsCommand"; import { PutItemsCommand, PutItemsCommandInput, PutItemsCommandOutput } from "./commands/PutItemsCommand"; import { PutUsersCommand, PutUsersCommandInput, PutUsersCommandOutput } from "./commands/PutUsersCommand"; -import { PersonalizeEventsClient, PersonalizeEventsClientConfig } from "./PersonalizeEventsClient"; +import { PersonalizeEventsClient } from "./PersonalizeEventsClient"; const commands = { PutActionInteractionsCommand, diff --git a/clients/client-personalize-events/src/PersonalizeEventsClient.ts b/clients/client-personalize-events/src/PersonalizeEventsClient.ts index 8678a0b2b8f33..5800663c33e14 100644 --- a/clients/client-personalize-events/src/PersonalizeEventsClient.ts +++ b/clients/client-personalize-events/src/PersonalizeEventsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPersonalizeEventsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -72,7 +81,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-personalize-events/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-personalize-events/src/auth/httpAuthExtensionConfiguration.ts index f3bbbc9dae54f..d1d85be4749d7 100644 --- a/clients/client-personalize-events/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-personalize-events/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PersonalizeEventsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PersonalizeEventsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-personalize-events/src/auth/httpAuthSchemeProvider.ts b/clients/client-personalize-events/src/auth/httpAuthSchemeProvider.ts index bfa698fcbd629..8bcd24e240650 100644 --- a/clients/client-personalize-events/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-personalize-events/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PersonalizeEventsClientConfig, PersonalizeEventsClientResolvedConfig } from "../PersonalizeEventsClient"; +import { type PersonalizeEventsClientResolvedConfig, PersonalizeEventsClientConfig } from "../PersonalizeEventsClient"; /** * @internal diff --git a/clients/client-personalize-events/src/commands/PutActionInteractionsCommand.ts b/clients/client-personalize-events/src/commands/PutActionInteractionsCommand.ts index 5cff56ddf2cd3..5f0fb2f49966a 100644 --- a/clients/client-personalize-events/src/commands/PutActionInteractionsCommand.ts +++ b/clients/client-personalize-events/src/commands/PutActionInteractionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutActionInteractionsRequest } from "../models/models_0"; -import { +import type { PutActionInteractionsRequest } from "../models/models_0"; +import type { PersonalizeEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-personalize-events/src/commands/PutActionsCommand.ts b/clients/client-personalize-events/src/commands/PutActionsCommand.ts index 528657726002b..a5ff17d72e09f 100644 --- a/clients/client-personalize-events/src/commands/PutActionsCommand.ts +++ b/clients/client-personalize-events/src/commands/PutActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutActionsRequest } from "../models/models_0"; -import { +import type { PutActionsRequest } from "../models/models_0"; +import type { PersonalizeEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-personalize-events/src/commands/PutEventsCommand.ts b/clients/client-personalize-events/src/commands/PutEventsCommand.ts index c0ada8809f914..a794913134c4b 100644 --- a/clients/client-personalize-events/src/commands/PutEventsCommand.ts +++ b/clients/client-personalize-events/src/commands/PutEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEventsRequest } from "../models/models_0"; -import { +import type { PutEventsRequest } from "../models/models_0"; +import type { PersonalizeEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-personalize-events/src/commands/PutItemsCommand.ts b/clients/client-personalize-events/src/commands/PutItemsCommand.ts index 7c199802b8785..9ed372ae113da 100644 --- a/clients/client-personalize-events/src/commands/PutItemsCommand.ts +++ b/clients/client-personalize-events/src/commands/PutItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutItemsRequest } from "../models/models_0"; -import { +import type { PutItemsRequest } from "../models/models_0"; +import type { PersonalizeEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-personalize-events/src/commands/PutUsersCommand.ts b/clients/client-personalize-events/src/commands/PutUsersCommand.ts index 51deb3fdfa7e3..1fb6b38080184 100644 --- a/clients/client-personalize-events/src/commands/PutUsersCommand.ts +++ b/clients/client-personalize-events/src/commands/PutUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutUsersRequest } from "../models/models_0"; -import { +import type { PutUsersRequest } from "../models/models_0"; +import type { PersonalizeEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-personalize-events/src/endpoint/EndpointParameters.ts b/clients/client-personalize-events/src/endpoint/EndpointParameters.ts index fdde77f9ffca4..6eb0a367ade67 100644 --- a/clients/client-personalize-events/src/endpoint/EndpointParameters.ts +++ b/clients/client-personalize-events/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-personalize-events/src/endpoint/endpointResolver.ts b/clients/client-personalize-events/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-personalize-events/src/endpoint/endpointResolver.ts +++ b/clients/client-personalize-events/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-personalize-events/src/extensionConfiguration.ts b/clients/client-personalize-events/src/extensionConfiguration.ts index c2081f8efa60b..e2878abd6720f 100644 --- a/clients/client-personalize-events/src/extensionConfiguration.ts +++ b/clients/client-personalize-events/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-personalize-events/src/models/PersonalizeEventsServiceException.ts b/clients/client-personalize-events/src/models/PersonalizeEventsServiceException.ts index 80eff157f058c..5869fe4f15a99 100644 --- a/clients/client-personalize-events/src/models/PersonalizeEventsServiceException.ts +++ b/clients/client-personalize-events/src/models/PersonalizeEventsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-personalize-events/src/models/errors.ts b/clients/client-personalize-events/src/models/errors.ts index 61954abee5c7d..9afbddc8495c8 100644 --- a/clients/client-personalize-events/src/models/errors.ts +++ b/clients/client-personalize-events/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PersonalizeEventsServiceException as __BaseException } from "./PersonalizeEventsServiceException"; diff --git a/clients/client-personalize-events/src/runtimeConfig.browser.ts b/clients/client-personalize-events/src/runtimeConfig.browser.ts index 80f0d3b7f6b6e..2193de5d1d5c2 100644 --- a/clients/client-personalize-events/src/runtimeConfig.browser.ts +++ b/clients/client-personalize-events/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PersonalizeEventsClientConfig } from "./PersonalizeEventsClient"; + +import type { PersonalizeEventsClientConfig } from "./PersonalizeEventsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-personalize-events/src/runtimeConfig.native.ts b/clients/client-personalize-events/src/runtimeConfig.native.ts index a6634c3defadc..11c374083f7f6 100644 --- a/clients/client-personalize-events/src/runtimeConfig.native.ts +++ b/clients/client-personalize-events/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PersonalizeEventsClientConfig } from "./PersonalizeEventsClient"; +import type { PersonalizeEventsClientConfig } from "./PersonalizeEventsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-personalize-events/src/runtimeConfig.shared.ts b/clients/client-personalize-events/src/runtimeConfig.shared.ts index 73a974b59c1aa..0a627bccfa58c 100644 --- a/clients/client-personalize-events/src/runtimeConfig.shared.ts +++ b/clients/client-personalize-events/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPersonalizeEventsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PersonalizeEventsClientConfig } from "./PersonalizeEventsClient"; +import type { PersonalizeEventsClientConfig } from "./PersonalizeEventsClient"; /** * @internal diff --git a/clients/client-personalize-events/src/runtimeConfig.ts b/clients/client-personalize-events/src/runtimeConfig.ts index 703ec818e5cf7..a454fc7f3d312 100644 --- a/clients/client-personalize-events/src/runtimeConfig.ts +++ b/clients/client-personalize-events/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PersonalizeEventsClientConfig } from "./PersonalizeEventsClient"; + +import type { PersonalizeEventsClientConfig } from "./PersonalizeEventsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-personalize-events/src/runtimeExtensions.ts b/clients/client-personalize-events/src/runtimeExtensions.ts index bcbac7db51006..09250d9f3d963 100644 --- a/clients/client-personalize-events/src/runtimeExtensions.ts +++ b/clients/client-personalize-events/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PersonalizeEventsExtensionConfiguration } from "./extensionConfiguration"; +import type { PersonalizeEventsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-personalize-events/src/schemas/schemas_0.ts b/clients/client-personalize-events/src/schemas/schemas_0.ts index 8e9165798f5fc..39398d4ae622a 100644 --- a/clients/client-personalize-events/src/schemas/schemas_0.ts +++ b/clients/client-personalize-events/src/schemas/schemas_0.ts @@ -66,7 +66,7 @@ const n0 = "com.amazonaws.personalizeevents"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-personalize-runtime/package.json b/clients/client-personalize-runtime/package.json index 2fea7fd32b027..c323487660cf1 100644 --- a/clients/client-personalize-runtime/package.json +++ b/clients/client-personalize-runtime/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-personalize-runtime/src/PersonalizeRuntime.ts b/clients/client-personalize-runtime/src/PersonalizeRuntime.ts index 7f632b845056c..00fdf7e9a553a 100644 --- a/clients/client-personalize-runtime/src/PersonalizeRuntime.ts +++ b/clients/client-personalize-runtime/src/PersonalizeRuntime.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetActionRecommendationsCommand, @@ -17,7 +17,7 @@ import { GetRecommendationsCommandInput, GetRecommendationsCommandOutput, } from "./commands/GetRecommendationsCommand"; -import { PersonalizeRuntimeClient, PersonalizeRuntimeClientConfig } from "./PersonalizeRuntimeClient"; +import { PersonalizeRuntimeClient } from "./PersonalizeRuntimeClient"; const commands = { GetActionRecommendationsCommand, diff --git a/clients/client-personalize-runtime/src/PersonalizeRuntimeClient.ts b/clients/client-personalize-runtime/src/PersonalizeRuntimeClient.ts index 4323d62cdfc00..8805d4c518af8 100644 --- a/clients/client-personalize-runtime/src/PersonalizeRuntimeClient.ts +++ b/clients/client-personalize-runtime/src/PersonalizeRuntimeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPersonalizeRuntimeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -73,7 +82,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-personalize-runtime/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-personalize-runtime/src/auth/httpAuthExtensionConfiguration.ts index 25caad0ef8b3a..165ab3e6b95ab 100644 --- a/clients/client-personalize-runtime/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-personalize-runtime/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PersonalizeRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PersonalizeRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-personalize-runtime/src/auth/httpAuthSchemeProvider.ts b/clients/client-personalize-runtime/src/auth/httpAuthSchemeProvider.ts index 31b728281be85..e744c6fd89042 100644 --- a/clients/client-personalize-runtime/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-personalize-runtime/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PersonalizeRuntimeClientConfig, PersonalizeRuntimeClientResolvedConfig } from "../PersonalizeRuntimeClient"; +import { + type PersonalizeRuntimeClientResolvedConfig, + PersonalizeRuntimeClientConfig, +} from "../PersonalizeRuntimeClient"; /** * @internal diff --git a/clients/client-personalize-runtime/src/commands/GetActionRecommendationsCommand.ts b/clients/client-personalize-runtime/src/commands/GetActionRecommendationsCommand.ts index d311fe9d519fc..bedc4f3d334cb 100644 --- a/clients/client-personalize-runtime/src/commands/GetActionRecommendationsCommand.ts +++ b/clients/client-personalize-runtime/src/commands/GetActionRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetActionRecommendationsRequest, GetActionRecommendationsResponse } from "../models/models_0"; -import { +import type { GetActionRecommendationsRequest, GetActionRecommendationsResponse } from "../models/models_0"; +import type { PersonalizeRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-personalize-runtime/src/commands/GetPersonalizedRankingCommand.ts b/clients/client-personalize-runtime/src/commands/GetPersonalizedRankingCommand.ts index 2ce48d8b7e35a..7bd6a4262fc2b 100644 --- a/clients/client-personalize-runtime/src/commands/GetPersonalizedRankingCommand.ts +++ b/clients/client-personalize-runtime/src/commands/GetPersonalizedRankingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPersonalizedRankingRequest, GetPersonalizedRankingResponse } from "../models/models_0"; -import { +import type { GetPersonalizedRankingRequest, GetPersonalizedRankingResponse } from "../models/models_0"; +import type { PersonalizeRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-personalize-runtime/src/commands/GetRecommendationsCommand.ts b/clients/client-personalize-runtime/src/commands/GetRecommendationsCommand.ts index a068ebc8199ac..e16af3a36da6a 100644 --- a/clients/client-personalize-runtime/src/commands/GetRecommendationsCommand.ts +++ b/clients/client-personalize-runtime/src/commands/GetRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0"; -import { +import type { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0"; +import type { PersonalizeRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-personalize-runtime/src/endpoint/EndpointParameters.ts b/clients/client-personalize-runtime/src/endpoint/EndpointParameters.ts index fdde77f9ffca4..6eb0a367ade67 100644 --- a/clients/client-personalize-runtime/src/endpoint/EndpointParameters.ts +++ b/clients/client-personalize-runtime/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-personalize-runtime/src/endpoint/endpointResolver.ts b/clients/client-personalize-runtime/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-personalize-runtime/src/endpoint/endpointResolver.ts +++ b/clients/client-personalize-runtime/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-personalize-runtime/src/extensionConfiguration.ts b/clients/client-personalize-runtime/src/extensionConfiguration.ts index 13ad7bdc23a49..66999d6b3e520 100644 --- a/clients/client-personalize-runtime/src/extensionConfiguration.ts +++ b/clients/client-personalize-runtime/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-personalize-runtime/src/models/PersonalizeRuntimeServiceException.ts b/clients/client-personalize-runtime/src/models/PersonalizeRuntimeServiceException.ts index b5846be050383..e9a4872509946 100644 --- a/clients/client-personalize-runtime/src/models/PersonalizeRuntimeServiceException.ts +++ b/clients/client-personalize-runtime/src/models/PersonalizeRuntimeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-personalize-runtime/src/models/errors.ts b/clients/client-personalize-runtime/src/models/errors.ts index 678d96dc3378a..8bc24c5b0fa67 100644 --- a/clients/client-personalize-runtime/src/models/errors.ts +++ b/clients/client-personalize-runtime/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PersonalizeRuntimeServiceException as __BaseException } from "./PersonalizeRuntimeServiceException"; diff --git a/clients/client-personalize-runtime/src/runtimeConfig.browser.ts b/clients/client-personalize-runtime/src/runtimeConfig.browser.ts index 561a16696f8fc..af1b7198fb14e 100644 --- a/clients/client-personalize-runtime/src/runtimeConfig.browser.ts +++ b/clients/client-personalize-runtime/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PersonalizeRuntimeClientConfig } from "./PersonalizeRuntimeClient"; + +import type { PersonalizeRuntimeClientConfig } from "./PersonalizeRuntimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-personalize-runtime/src/runtimeConfig.native.ts b/clients/client-personalize-runtime/src/runtimeConfig.native.ts index 85c4a06ac51d2..68c07378c4bec 100644 --- a/clients/client-personalize-runtime/src/runtimeConfig.native.ts +++ b/clients/client-personalize-runtime/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PersonalizeRuntimeClientConfig } from "./PersonalizeRuntimeClient"; +import type { PersonalizeRuntimeClientConfig } from "./PersonalizeRuntimeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-personalize-runtime/src/runtimeConfig.shared.ts b/clients/client-personalize-runtime/src/runtimeConfig.shared.ts index 73b459c5c4b1f..67cd9220687be 100644 --- a/clients/client-personalize-runtime/src/runtimeConfig.shared.ts +++ b/clients/client-personalize-runtime/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPersonalizeRuntimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PersonalizeRuntimeClientConfig } from "./PersonalizeRuntimeClient"; +import type { PersonalizeRuntimeClientConfig } from "./PersonalizeRuntimeClient"; /** * @internal diff --git a/clients/client-personalize-runtime/src/runtimeConfig.ts b/clients/client-personalize-runtime/src/runtimeConfig.ts index 61aeeee6d311c..45ba50eb80c81 100644 --- a/clients/client-personalize-runtime/src/runtimeConfig.ts +++ b/clients/client-personalize-runtime/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PersonalizeRuntimeClientConfig } from "./PersonalizeRuntimeClient"; + +import type { PersonalizeRuntimeClientConfig } from "./PersonalizeRuntimeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-personalize-runtime/src/runtimeExtensions.ts b/clients/client-personalize-runtime/src/runtimeExtensions.ts index 01742e51aac8c..a4b28a9be2fc1 100644 --- a/clients/client-personalize-runtime/src/runtimeExtensions.ts +++ b/clients/client-personalize-runtime/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PersonalizeRuntimeExtensionConfiguration } from "./extensionConfiguration"; +import type { PersonalizeRuntimeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-personalize-runtime/src/schemas/schemas_0.ts b/clients/client-personalize-runtime/src/schemas/schemas_0.ts index c8e220c714db6..dcf29287203ad 100644 --- a/clients/client-personalize-runtime/src/schemas/schemas_0.ts +++ b/clients/client-personalize-runtime/src/schemas/schemas_0.ts @@ -53,7 +53,7 @@ const n0 = "com.amazonaws.personalizeruntime"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-personalize/package.json b/clients/client-personalize/package.json index 21a43c327e98a..ef797dbf50e59 100644 --- a/clients/client-personalize/package.json +++ b/clients/client-personalize/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-personalize/src/Personalize.ts b/clients/client-personalize/src/Personalize.ts index c5a5269334c1d..bcbdefe0ab5aa 100644 --- a/clients/client-personalize/src/Personalize.ts +++ b/clients/client-personalize/src/Personalize.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateBatchInferenceJobCommand, @@ -341,7 +341,7 @@ import { UpdateSolutionCommandInput, UpdateSolutionCommandOutput, } from "./commands/UpdateSolutionCommand"; -import { PersonalizeClient, PersonalizeClientConfig } from "./PersonalizeClient"; +import { PersonalizeClient } from "./PersonalizeClient"; const commands = { CreateBatchInferenceJobCommand, diff --git a/clients/client-personalize/src/PersonalizeClient.ts b/clients/client-personalize/src/PersonalizeClient.ts index acd968e506039..1c85b6049269d 100644 --- a/clients/client-personalize/src/PersonalizeClient.ts +++ b/clients/client-personalize/src/PersonalizeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPersonalizeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -225,7 +234,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-personalize/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-personalize/src/auth/httpAuthExtensionConfiguration.ts index c50ecb9760c58..768e34289d03f 100644 --- a/clients/client-personalize/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-personalize/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PersonalizeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PersonalizeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-personalize/src/auth/httpAuthSchemeProvider.ts b/clients/client-personalize/src/auth/httpAuthSchemeProvider.ts index 73930b5908cc3..0c618eecab4bb 100644 --- a/clients/client-personalize/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-personalize/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PersonalizeClientConfig, PersonalizeClientResolvedConfig } from "../PersonalizeClient"; +import { type PersonalizeClientResolvedConfig, PersonalizeClientConfig } from "../PersonalizeClient"; /** * @internal diff --git a/clients/client-personalize/src/commands/CreateBatchInferenceJobCommand.ts b/clients/client-personalize/src/commands/CreateBatchInferenceJobCommand.ts index 589edde534b22..d0567e0f3ec0e 100644 --- a/clients/client-personalize/src/commands/CreateBatchInferenceJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateBatchInferenceJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBatchInferenceJobRequest, CreateBatchInferenceJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateBatchInferenceJobRequest, CreateBatchInferenceJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateBatchInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateBatchSegmentJobCommand.ts b/clients/client-personalize/src/commands/CreateBatchSegmentJobCommand.ts index 89949af1d5725..bf4ee13c93e31 100644 --- a/clients/client-personalize/src/commands/CreateBatchSegmentJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateBatchSegmentJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBatchSegmentJobRequest, CreateBatchSegmentJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateBatchSegmentJobRequest, CreateBatchSegmentJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateBatchSegmentJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateCampaignCommand.ts b/clients/client-personalize/src/commands/CreateCampaignCommand.ts index 1ea7e8a9ff0af..f6de6bc849765 100644 --- a/clients/client-personalize/src/commands/CreateCampaignCommand.ts +++ b/clients/client-personalize/src/commands/CreateCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateDataDeletionJobCommand.ts b/clients/client-personalize/src/commands/CreateDataDeletionJobCommand.ts index 2326ecc3bcf18..6c54c373f0e0c 100644 --- a/clients/client-personalize/src/commands/CreateDataDeletionJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateDataDeletionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataDeletionJobRequest, CreateDataDeletionJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateDataDeletionJobRequest, CreateDataDeletionJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateDataDeletionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateDatasetCommand.ts b/clients/client-personalize/src/commands/CreateDatasetCommand.ts index 9330a67f110da..faa30f3085bb0 100644 --- a/clients/client-personalize/src/commands/CreateDatasetCommand.ts +++ b/clients/client-personalize/src/commands/CreateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateDatasetExportJobCommand.ts b/clients/client-personalize/src/commands/CreateDatasetExportJobCommand.ts index 83f82fb3f647a..7ca77b90ce084 100644 --- a/clients/client-personalize/src/commands/CreateDatasetExportJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateDatasetExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDatasetExportJobRequest, CreateDatasetExportJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateDatasetExportJobRequest, CreateDatasetExportJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateDatasetExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateDatasetGroupCommand.ts b/clients/client-personalize/src/commands/CreateDatasetGroupCommand.ts index 36e0bf0316739..963b11db73858 100644 --- a/clients/client-personalize/src/commands/CreateDatasetGroupCommand.ts +++ b/clients/client-personalize/src/commands/CreateDatasetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDatasetGroupRequest, CreateDatasetGroupResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateDatasetGroupRequest, CreateDatasetGroupResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateDatasetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateDatasetImportJobCommand.ts b/clients/client-personalize/src/commands/CreateDatasetImportJobCommand.ts index f836b24c44b2b..960ad33b00dc8 100644 --- a/clients/client-personalize/src/commands/CreateDatasetImportJobCommand.ts +++ b/clients/client-personalize/src/commands/CreateDatasetImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDatasetImportJobRequest, CreateDatasetImportJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateDatasetImportJobRequest, CreateDatasetImportJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateDatasetImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateEventTrackerCommand.ts b/clients/client-personalize/src/commands/CreateEventTrackerCommand.ts index 7e62275ffb640..e720bfb747cd2 100644 --- a/clients/client-personalize/src/commands/CreateEventTrackerCommand.ts +++ b/clients/client-personalize/src/commands/CreateEventTrackerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventTrackerRequest, CreateEventTrackerResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateEventTrackerRequest, CreateEventTrackerResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateEventTracker } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateFilterCommand.ts b/clients/client-personalize/src/commands/CreateFilterCommand.ts index 0b55ef2365a3f..88069fb463739 100644 --- a/clients/client-personalize/src/commands/CreateFilterCommand.ts +++ b/clients/client-personalize/src/commands/CreateFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFilterRequest, CreateFilterResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateFilterRequest, CreateFilterResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateMetricAttributionCommand.ts b/clients/client-personalize/src/commands/CreateMetricAttributionCommand.ts index f81e4fded3fab..a7842827b59c5 100644 --- a/clients/client-personalize/src/commands/CreateMetricAttributionCommand.ts +++ b/clients/client-personalize/src/commands/CreateMetricAttributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMetricAttributionRequest, CreateMetricAttributionResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateMetricAttributionRequest, CreateMetricAttributionResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateMetricAttribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateRecommenderCommand.ts b/clients/client-personalize/src/commands/CreateRecommenderCommand.ts index 72a3e0b9040ea..1907d8ef6e0ce 100644 --- a/clients/client-personalize/src/commands/CreateRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/CreateRecommenderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRecommenderRequest, CreateRecommenderResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateRecommenderRequest, CreateRecommenderResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateSchemaCommand.ts b/clients/client-personalize/src/commands/CreateSchemaCommand.ts index 6882df7cf5c15..a372739c83f3b 100644 --- a/clients/client-personalize/src/commands/CreateSchemaCommand.ts +++ b/clients/client-personalize/src/commands/CreateSchemaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSchemaRequest, CreateSchemaResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateSchemaRequest, CreateSchemaResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateSolutionCommand.ts b/clients/client-personalize/src/commands/CreateSolutionCommand.ts index e7aa574e80802..7fedb6018f7cb 100644 --- a/clients/client-personalize/src/commands/CreateSolutionCommand.ts +++ b/clients/client-personalize/src/commands/CreateSolutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSolutionRequest, CreateSolutionResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateSolutionRequest, CreateSolutionResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateSolution } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/CreateSolutionVersionCommand.ts b/clients/client-personalize/src/commands/CreateSolutionVersionCommand.ts index 9c3e8df24a06a..07486be237972 100644 --- a/clients/client-personalize/src/commands/CreateSolutionVersionCommand.ts +++ b/clients/client-personalize/src/commands/CreateSolutionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSolutionVersionRequest, CreateSolutionVersionResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { CreateSolutionVersionRequest, CreateSolutionVersionResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { CreateSolutionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DeleteCampaignCommand.ts b/clients/client-personalize/src/commands/DeleteCampaignCommand.ts index 63256e7914a93..863d67de6cdfe 100644 --- a/clients/client-personalize/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-personalize/src/commands/DeleteCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCampaignRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DeleteCampaignRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DeleteCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DeleteDatasetCommand.ts b/clients/client-personalize/src/commands/DeleteDatasetCommand.ts index 8ebe0d07113ea..9644649f6264a 100644 --- a/clients/client-personalize/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-personalize/src/commands/DeleteDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDatasetRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DeleteDatasetRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DeleteDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DeleteDatasetGroupCommand.ts b/clients/client-personalize/src/commands/DeleteDatasetGroupCommand.ts index 4be68c3311f91..915d8c0ecd6ca 100644 --- a/clients/client-personalize/src/commands/DeleteDatasetGroupCommand.ts +++ b/clients/client-personalize/src/commands/DeleteDatasetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDatasetGroupRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DeleteDatasetGroupRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DeleteDatasetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DeleteEventTrackerCommand.ts b/clients/client-personalize/src/commands/DeleteEventTrackerCommand.ts index aa9176f51e5bd..864c3b96fcf3e 100644 --- a/clients/client-personalize/src/commands/DeleteEventTrackerCommand.ts +++ b/clients/client-personalize/src/commands/DeleteEventTrackerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventTrackerRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DeleteEventTrackerRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DeleteEventTracker } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DeleteFilterCommand.ts b/clients/client-personalize/src/commands/DeleteFilterCommand.ts index b64c06da3d057..ef361d85e849c 100644 --- a/clients/client-personalize/src/commands/DeleteFilterCommand.ts +++ b/clients/client-personalize/src/commands/DeleteFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFilterRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DeleteFilterRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DeleteFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DeleteMetricAttributionCommand.ts b/clients/client-personalize/src/commands/DeleteMetricAttributionCommand.ts index 6f65dc27fa52c..62eef8f5571ce 100644 --- a/clients/client-personalize/src/commands/DeleteMetricAttributionCommand.ts +++ b/clients/client-personalize/src/commands/DeleteMetricAttributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMetricAttributionRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DeleteMetricAttributionRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DeleteMetricAttribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DeleteRecommenderCommand.ts b/clients/client-personalize/src/commands/DeleteRecommenderCommand.ts index 1cbe76e1ac231..85720d0fbb482 100644 --- a/clients/client-personalize/src/commands/DeleteRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/DeleteRecommenderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecommenderRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DeleteRecommenderRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DeleteRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DeleteSchemaCommand.ts b/clients/client-personalize/src/commands/DeleteSchemaCommand.ts index 32d2ae776f6af..5a395a10f60ad 100644 --- a/clients/client-personalize/src/commands/DeleteSchemaCommand.ts +++ b/clients/client-personalize/src/commands/DeleteSchemaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSchemaRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DeleteSchemaRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DeleteSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DeleteSolutionCommand.ts b/clients/client-personalize/src/commands/DeleteSolutionCommand.ts index 7e4b7101131b2..6ce95988af34b 100644 --- a/clients/client-personalize/src/commands/DeleteSolutionCommand.ts +++ b/clients/client-personalize/src/commands/DeleteSolutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSolutionRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DeleteSolutionRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DeleteSolution } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeAlgorithmCommand.ts b/clients/client-personalize/src/commands/DescribeAlgorithmCommand.ts index f24a551ea216d..187f6549f2d89 100644 --- a/clients/client-personalize/src/commands/DescribeAlgorithmCommand.ts +++ b/clients/client-personalize/src/commands/DescribeAlgorithmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAlgorithmRequest, DescribeAlgorithmResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeAlgorithmRequest, DescribeAlgorithmResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeAlgorithm } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeBatchInferenceJobCommand.ts b/clients/client-personalize/src/commands/DescribeBatchInferenceJobCommand.ts index 520c96130b293..ff0b853474ed8 100644 --- a/clients/client-personalize/src/commands/DescribeBatchInferenceJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeBatchInferenceJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBatchInferenceJobRequest, DescribeBatchInferenceJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeBatchInferenceJobRequest, DescribeBatchInferenceJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeBatchInferenceJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeBatchSegmentJobCommand.ts b/clients/client-personalize/src/commands/DescribeBatchSegmentJobCommand.ts index 6ca4ecb1348d7..0cb7266556c6a 100644 --- a/clients/client-personalize/src/commands/DescribeBatchSegmentJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeBatchSegmentJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBatchSegmentJobRequest, DescribeBatchSegmentJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeBatchSegmentJobRequest, DescribeBatchSegmentJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeBatchSegmentJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeCampaignCommand.ts b/clients/client-personalize/src/commands/DescribeCampaignCommand.ts index c42596c9d2f61..3658364b67804 100644 --- a/clients/client-personalize/src/commands/DescribeCampaignCommand.ts +++ b/clients/client-personalize/src/commands/DescribeCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCampaignRequest, DescribeCampaignResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeCampaignRequest, DescribeCampaignResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeDataDeletionJobCommand.ts b/clients/client-personalize/src/commands/DescribeDataDeletionJobCommand.ts index 81b40afddc46e..dee982e609567 100644 --- a/clients/client-personalize/src/commands/DescribeDataDeletionJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDataDeletionJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataDeletionJobRequest, DescribeDataDeletionJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeDataDeletionJobRequest, DescribeDataDeletionJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeDataDeletionJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeDatasetCommand.ts b/clients/client-personalize/src/commands/DescribeDatasetCommand.ts index 941fc1d08b698..25d8bf1dd4289 100644 --- a/clients/client-personalize/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeDatasetExportJobCommand.ts b/clients/client-personalize/src/commands/DescribeDatasetExportJobCommand.ts index b0f98fb399e5b..a82e766da3032 100644 --- a/clients/client-personalize/src/commands/DescribeDatasetExportJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDatasetExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDatasetExportJobRequest, DescribeDatasetExportJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeDatasetExportJobRequest, DescribeDatasetExportJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeDatasetExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeDatasetGroupCommand.ts b/clients/client-personalize/src/commands/DescribeDatasetGroupCommand.ts index b13090cade9ad..96359f4fc307b 100644 --- a/clients/client-personalize/src/commands/DescribeDatasetGroupCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDatasetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDatasetGroupRequest, DescribeDatasetGroupResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeDatasetGroupRequest, DescribeDatasetGroupResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeDatasetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeDatasetImportJobCommand.ts b/clients/client-personalize/src/commands/DescribeDatasetImportJobCommand.ts index 60d9460d81707..6505ea7485a2b 100644 --- a/clients/client-personalize/src/commands/DescribeDatasetImportJobCommand.ts +++ b/clients/client-personalize/src/commands/DescribeDatasetImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDatasetImportJobRequest, DescribeDatasetImportJobResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeDatasetImportJobRequest, DescribeDatasetImportJobResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeDatasetImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeEventTrackerCommand.ts b/clients/client-personalize/src/commands/DescribeEventTrackerCommand.ts index 1fc4b7a61b422..e1099cf42f8d3 100644 --- a/clients/client-personalize/src/commands/DescribeEventTrackerCommand.ts +++ b/clients/client-personalize/src/commands/DescribeEventTrackerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventTrackerRequest, DescribeEventTrackerResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeEventTrackerRequest, DescribeEventTrackerResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeEventTracker } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeFeatureTransformationCommand.ts b/clients/client-personalize/src/commands/DescribeFeatureTransformationCommand.ts index 238c5f9165554..1658ebbae7036 100644 --- a/clients/client-personalize/src/commands/DescribeFeatureTransformationCommand.ts +++ b/clients/client-personalize/src/commands/DescribeFeatureTransformationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFeatureTransformationRequest, DescribeFeatureTransformationResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeFeatureTransformationRequest, DescribeFeatureTransformationResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeFeatureTransformation } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeFilterCommand.ts b/clients/client-personalize/src/commands/DescribeFilterCommand.ts index 1a14300e4a730..756299ff546fc 100644 --- a/clients/client-personalize/src/commands/DescribeFilterCommand.ts +++ b/clients/client-personalize/src/commands/DescribeFilterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFilterRequest, DescribeFilterResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeFilterRequest, DescribeFilterResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeFilter } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeMetricAttributionCommand.ts b/clients/client-personalize/src/commands/DescribeMetricAttributionCommand.ts index daf0400fc739a..6829b32907d32 100644 --- a/clients/client-personalize/src/commands/DescribeMetricAttributionCommand.ts +++ b/clients/client-personalize/src/commands/DescribeMetricAttributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetricAttributionRequest, DescribeMetricAttributionResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeMetricAttributionRequest, DescribeMetricAttributionResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeMetricAttribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeRecipeCommand.ts b/clients/client-personalize/src/commands/DescribeRecipeCommand.ts index 8d64dc52fc3e5..5950e0b1b0e40 100644 --- a/clients/client-personalize/src/commands/DescribeRecipeCommand.ts +++ b/clients/client-personalize/src/commands/DescribeRecipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecipeRequest, DescribeRecipeResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeRecipeRequest, DescribeRecipeResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeRecipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeRecommenderCommand.ts b/clients/client-personalize/src/commands/DescribeRecommenderCommand.ts index 8c5161982d772..0abfa4a27d2ea 100644 --- a/clients/client-personalize/src/commands/DescribeRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/DescribeRecommenderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecommenderRequest, DescribeRecommenderResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeRecommenderRequest, DescribeRecommenderResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeSchemaCommand.ts b/clients/client-personalize/src/commands/DescribeSchemaCommand.ts index 9a1d78be7879e..0f91216b925d2 100644 --- a/clients/client-personalize/src/commands/DescribeSchemaCommand.ts +++ b/clients/client-personalize/src/commands/DescribeSchemaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSchemaRequest, DescribeSchemaResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeSchemaRequest, DescribeSchemaResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeSchema } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeSolutionCommand.ts b/clients/client-personalize/src/commands/DescribeSolutionCommand.ts index 31f2336cd2756..03655846a7c39 100644 --- a/clients/client-personalize/src/commands/DescribeSolutionCommand.ts +++ b/clients/client-personalize/src/commands/DescribeSolutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSolutionRequest, DescribeSolutionResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeSolutionRequest, DescribeSolutionResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeSolution } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/DescribeSolutionVersionCommand.ts b/clients/client-personalize/src/commands/DescribeSolutionVersionCommand.ts index 2f95c79fbc107..92f2980e3cd07 100644 --- a/clients/client-personalize/src/commands/DescribeSolutionVersionCommand.ts +++ b/clients/client-personalize/src/commands/DescribeSolutionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSolutionVersionRequest, DescribeSolutionVersionResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { DescribeSolutionVersionRequest, DescribeSolutionVersionResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { DescribeSolutionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/GetSolutionMetricsCommand.ts b/clients/client-personalize/src/commands/GetSolutionMetricsCommand.ts index f3b47076a6ece..1de9da395a9fd 100644 --- a/clients/client-personalize/src/commands/GetSolutionMetricsCommand.ts +++ b/clients/client-personalize/src/commands/GetSolutionMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolutionMetricsRequest, GetSolutionMetricsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { GetSolutionMetricsRequest, GetSolutionMetricsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { GetSolutionMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListBatchInferenceJobsCommand.ts b/clients/client-personalize/src/commands/ListBatchInferenceJobsCommand.ts index f558dbf483cf3..777a5025f5107 100644 --- a/clients/client-personalize/src/commands/ListBatchInferenceJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListBatchInferenceJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBatchInferenceJobsRequest, ListBatchInferenceJobsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListBatchInferenceJobsRequest, ListBatchInferenceJobsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListBatchInferenceJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListBatchSegmentJobsCommand.ts b/clients/client-personalize/src/commands/ListBatchSegmentJobsCommand.ts index c26bb712fa083..58112aac9a2eb 100644 --- a/clients/client-personalize/src/commands/ListBatchSegmentJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListBatchSegmentJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBatchSegmentJobsRequest, ListBatchSegmentJobsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListBatchSegmentJobsRequest, ListBatchSegmentJobsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListBatchSegmentJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListCampaignsCommand.ts b/clients/client-personalize/src/commands/ListCampaignsCommand.ts index 7f2a005755eb2..546bfd6c649ae 100644 --- a/clients/client-personalize/src/commands/ListCampaignsCommand.ts +++ b/clients/client-personalize/src/commands/ListCampaignsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListCampaigns } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListDataDeletionJobsCommand.ts b/clients/client-personalize/src/commands/ListDataDeletionJobsCommand.ts index b0128a6f48958..9f46b1cecf50d 100644 --- a/clients/client-personalize/src/commands/ListDataDeletionJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListDataDeletionJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataDeletionJobsRequest, ListDataDeletionJobsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListDataDeletionJobsRequest, ListDataDeletionJobsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListDataDeletionJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListDatasetExportJobsCommand.ts b/clients/client-personalize/src/commands/ListDatasetExportJobsCommand.ts index b7f7a27164d7d..d4ac65a7d792e 100644 --- a/clients/client-personalize/src/commands/ListDatasetExportJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListDatasetExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasetExportJobsRequest, ListDatasetExportJobsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListDatasetExportJobsRequest, ListDatasetExportJobsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListDatasetExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListDatasetGroupsCommand.ts b/clients/client-personalize/src/commands/ListDatasetGroupsCommand.ts index c6a69935a71b5..9baa9821aebcf 100644 --- a/clients/client-personalize/src/commands/ListDatasetGroupsCommand.ts +++ b/clients/client-personalize/src/commands/ListDatasetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasetGroupsRequest, ListDatasetGroupsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListDatasetGroupsRequest, ListDatasetGroupsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListDatasetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListDatasetImportJobsCommand.ts b/clients/client-personalize/src/commands/ListDatasetImportJobsCommand.ts index 13f760af1adac..002ccf128481a 100644 --- a/clients/client-personalize/src/commands/ListDatasetImportJobsCommand.ts +++ b/clients/client-personalize/src/commands/ListDatasetImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasetImportJobsRequest, ListDatasetImportJobsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListDatasetImportJobsRequest, ListDatasetImportJobsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListDatasetImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListDatasetsCommand.ts b/clients/client-personalize/src/commands/ListDatasetsCommand.ts index de9faab459da7..a354e7957c1e1 100644 --- a/clients/client-personalize/src/commands/ListDatasetsCommand.ts +++ b/clients/client-personalize/src/commands/ListDatasetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListDatasets } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListEventTrackersCommand.ts b/clients/client-personalize/src/commands/ListEventTrackersCommand.ts index cb640457336eb..0f58981faef7d 100644 --- a/clients/client-personalize/src/commands/ListEventTrackersCommand.ts +++ b/clients/client-personalize/src/commands/ListEventTrackersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEventTrackersRequest, ListEventTrackersResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListEventTrackersRequest, ListEventTrackersResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListEventTrackers } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListFiltersCommand.ts b/clients/client-personalize/src/commands/ListFiltersCommand.ts index 6ad931f7e7c43..9737dc3e12f1c 100644 --- a/clients/client-personalize/src/commands/ListFiltersCommand.ts +++ b/clients/client-personalize/src/commands/ListFiltersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFiltersRequest, ListFiltersResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListFiltersRequest, ListFiltersResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListFilters } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListMetricAttributionMetricsCommand.ts b/clients/client-personalize/src/commands/ListMetricAttributionMetricsCommand.ts index 26bfe837c62a4..fe0969bccd9b2 100644 --- a/clients/client-personalize/src/commands/ListMetricAttributionMetricsCommand.ts +++ b/clients/client-personalize/src/commands/ListMetricAttributionMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMetricAttributionMetricsRequest, ListMetricAttributionMetricsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListMetricAttributionMetricsRequest, ListMetricAttributionMetricsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListMetricAttributionMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListMetricAttributionsCommand.ts b/clients/client-personalize/src/commands/ListMetricAttributionsCommand.ts index 13de51824c6f1..299a4baa13a55 100644 --- a/clients/client-personalize/src/commands/ListMetricAttributionsCommand.ts +++ b/clients/client-personalize/src/commands/ListMetricAttributionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMetricAttributionsRequest, ListMetricAttributionsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListMetricAttributionsRequest, ListMetricAttributionsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListMetricAttributions } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListRecipesCommand.ts b/clients/client-personalize/src/commands/ListRecipesCommand.ts index 1e7b760e05e84..04fe077eea45b 100644 --- a/clients/client-personalize/src/commands/ListRecipesCommand.ts +++ b/clients/client-personalize/src/commands/ListRecipesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecipesRequest, ListRecipesResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListRecipesRequest, ListRecipesResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListRecipes } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListRecommendersCommand.ts b/clients/client-personalize/src/commands/ListRecommendersCommand.ts index 67ae121f8a39d..19e5ccf971953 100644 --- a/clients/client-personalize/src/commands/ListRecommendersCommand.ts +++ b/clients/client-personalize/src/commands/ListRecommendersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendersRequest, ListRecommendersResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListRecommendersRequest, ListRecommendersResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListRecommenders } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListSchemasCommand.ts b/clients/client-personalize/src/commands/ListSchemasCommand.ts index 6d03560b32ce3..477170b6c4bb7 100644 --- a/clients/client-personalize/src/commands/ListSchemasCommand.ts +++ b/clients/client-personalize/src/commands/ListSchemasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSchemasRequest, ListSchemasResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListSchemasRequest, ListSchemasResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListSchemas } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListSolutionVersionsCommand.ts b/clients/client-personalize/src/commands/ListSolutionVersionsCommand.ts index 43ab41d5f3503..75a94551c1cd6 100644 --- a/clients/client-personalize/src/commands/ListSolutionVersionsCommand.ts +++ b/clients/client-personalize/src/commands/ListSolutionVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSolutionVersionsRequest, ListSolutionVersionsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListSolutionVersionsRequest, ListSolutionVersionsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListSolutionVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListSolutionsCommand.ts b/clients/client-personalize/src/commands/ListSolutionsCommand.ts index c50d352c82e3c..a98f500804b3f 100644 --- a/clients/client-personalize/src/commands/ListSolutionsCommand.ts +++ b/clients/client-personalize/src/commands/ListSolutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSolutionsRequest, ListSolutionsResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListSolutionsRequest, ListSolutionsResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListSolutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/ListTagsForResourceCommand.ts b/clients/client-personalize/src/commands/ListTagsForResourceCommand.ts index fccb8d36461e8..bfd1df8ec375e 100644 --- a/clients/client-personalize/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-personalize/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/StartRecommenderCommand.ts b/clients/client-personalize/src/commands/StartRecommenderCommand.ts index 707a8a50f1044..0eabafcc3cdd0 100644 --- a/clients/client-personalize/src/commands/StartRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/StartRecommenderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRecommenderRequest, StartRecommenderResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { StartRecommenderRequest, StartRecommenderResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { StartRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/StopRecommenderCommand.ts b/clients/client-personalize/src/commands/StopRecommenderCommand.ts index 4880684592c50..a39afe924aa82 100644 --- a/clients/client-personalize/src/commands/StopRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/StopRecommenderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopRecommenderRequest, StopRecommenderResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { StopRecommenderRequest, StopRecommenderResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { StopRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/StopSolutionVersionCreationCommand.ts b/clients/client-personalize/src/commands/StopSolutionVersionCreationCommand.ts index 8045cec857ed4..eb9faf55e0f3e 100644 --- a/clients/client-personalize/src/commands/StopSolutionVersionCreationCommand.ts +++ b/clients/client-personalize/src/commands/StopSolutionVersionCreationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopSolutionVersionCreationRequest } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { StopSolutionVersionCreationRequest } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { StopSolutionVersionCreation } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/TagResourceCommand.ts b/clients/client-personalize/src/commands/TagResourceCommand.ts index 19fb01e6f5889..27f21b01caf76 100644 --- a/clients/client-personalize/src/commands/TagResourceCommand.ts +++ b/clients/client-personalize/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/UntagResourceCommand.ts b/clients/client-personalize/src/commands/UntagResourceCommand.ts index cfe9b5cf7b36e..1a91a3b4fdcbb 100644 --- a/clients/client-personalize/src/commands/UntagResourceCommand.ts +++ b/clients/client-personalize/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/UpdateCampaignCommand.ts b/clients/client-personalize/src/commands/UpdateCampaignCommand.ts index d19765a647da5..f2d24bcb3662b 100644 --- a/clients/client-personalize/src/commands/UpdateCampaignCommand.ts +++ b/clients/client-personalize/src/commands/UpdateCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignRequest, UpdateCampaignResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { UpdateCampaignRequest, UpdateCampaignResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { UpdateCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/UpdateDatasetCommand.ts b/clients/client-personalize/src/commands/UpdateDatasetCommand.ts index 48e3bcb3161d1..ed8f3fdcb05d1 100644 --- a/clients/client-personalize/src/commands/UpdateDatasetCommand.ts +++ b/clients/client-personalize/src/commands/UpdateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { UpdateDatasetRequest, UpdateDatasetResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { UpdateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/UpdateMetricAttributionCommand.ts b/clients/client-personalize/src/commands/UpdateMetricAttributionCommand.ts index 6d302a36a62ac..348d9069d676c 100644 --- a/clients/client-personalize/src/commands/UpdateMetricAttributionCommand.ts +++ b/clients/client-personalize/src/commands/UpdateMetricAttributionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMetricAttributionRequest, UpdateMetricAttributionResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { UpdateMetricAttributionRequest, UpdateMetricAttributionResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { UpdateMetricAttribution } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/UpdateRecommenderCommand.ts b/clients/client-personalize/src/commands/UpdateRecommenderCommand.ts index 0d710627460f9..01308b016e708 100644 --- a/clients/client-personalize/src/commands/UpdateRecommenderCommand.ts +++ b/clients/client-personalize/src/commands/UpdateRecommenderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecommenderRequest, UpdateRecommenderResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { UpdateRecommenderRequest, UpdateRecommenderResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { UpdateRecommender } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/commands/UpdateSolutionCommand.ts b/clients/client-personalize/src/commands/UpdateSolutionCommand.ts index 9dc5db2ded8e3..02c085b654746 100644 --- a/clients/client-personalize/src/commands/UpdateSolutionCommand.ts +++ b/clients/client-personalize/src/commands/UpdateSolutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSolutionRequest, UpdateSolutionResponse } from "../models/models_0"; -import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; +import type { UpdateSolutionRequest, UpdateSolutionResponse } from "../models/models_0"; +import type { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient"; import { UpdateSolution } from "../schemas/schemas_0"; /** diff --git a/clients/client-personalize/src/endpoint/EndpointParameters.ts b/clients/client-personalize/src/endpoint/EndpointParameters.ts index fdde77f9ffca4..6eb0a367ade67 100644 --- a/clients/client-personalize/src/endpoint/EndpointParameters.ts +++ b/clients/client-personalize/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-personalize/src/endpoint/endpointResolver.ts b/clients/client-personalize/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-personalize/src/endpoint/endpointResolver.ts +++ b/clients/client-personalize/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-personalize/src/extensionConfiguration.ts b/clients/client-personalize/src/extensionConfiguration.ts index d2e019d9cd3ae..e972063413a28 100644 --- a/clients/client-personalize/src/extensionConfiguration.ts +++ b/clients/client-personalize/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-personalize/src/models/PersonalizeServiceException.ts b/clients/client-personalize/src/models/PersonalizeServiceException.ts index 0037e1353a265..8e57a85156dfd 100644 --- a/clients/client-personalize/src/models/PersonalizeServiceException.ts +++ b/clients/client-personalize/src/models/PersonalizeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-personalize/src/models/errors.ts b/clients/client-personalize/src/models/errors.ts index 67d82aa3d47d7..24a789ef83363 100644 --- a/clients/client-personalize/src/models/errors.ts +++ b/clients/client-personalize/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PersonalizeServiceException as __BaseException } from "./PersonalizeServiceException"; diff --git a/clients/client-personalize/src/pagination/Interfaces.ts b/clients/client-personalize/src/pagination/Interfaces.ts index a45b86be9644e..fe7fb3b87f069 100644 --- a/clients/client-personalize/src/pagination/Interfaces.ts +++ b/clients/client-personalize/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PersonalizeClient } from "../PersonalizeClient"; diff --git a/clients/client-personalize/src/pagination/ListBatchInferenceJobsPaginator.ts b/clients/client-personalize/src/pagination/ListBatchInferenceJobsPaginator.ts index 338ae4d6f0ea3..4aebdc3a77131 100644 --- a/clients/client-personalize/src/pagination/ListBatchInferenceJobsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListBatchInferenceJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBatchInferenceJobsCommand, diff --git a/clients/client-personalize/src/pagination/ListBatchSegmentJobsPaginator.ts b/clients/client-personalize/src/pagination/ListBatchSegmentJobsPaginator.ts index 3e50d19825d40..bff9f1ba6c56f 100644 --- a/clients/client-personalize/src/pagination/ListBatchSegmentJobsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListBatchSegmentJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBatchSegmentJobsCommand, diff --git a/clients/client-personalize/src/pagination/ListCampaignsPaginator.ts b/clients/client-personalize/src/pagination/ListCampaignsPaginator.ts index 8e4cab71b2764..9dad847a84e03 100644 --- a/clients/client-personalize/src/pagination/ListCampaignsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListCampaignsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCampaignsCommand, diff --git a/clients/client-personalize/src/pagination/ListDatasetExportJobsPaginator.ts b/clients/client-personalize/src/pagination/ListDatasetExportJobsPaginator.ts index 10eaf5a5b445a..9eca215ca0a37 100644 --- a/clients/client-personalize/src/pagination/ListDatasetExportJobsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListDatasetExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetExportJobsCommand, diff --git a/clients/client-personalize/src/pagination/ListDatasetGroupsPaginator.ts b/clients/client-personalize/src/pagination/ListDatasetGroupsPaginator.ts index 04086e62532c0..9e87ca2d372a6 100644 --- a/clients/client-personalize/src/pagination/ListDatasetGroupsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListDatasetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetGroupsCommand, diff --git a/clients/client-personalize/src/pagination/ListDatasetImportJobsPaginator.ts b/clients/client-personalize/src/pagination/ListDatasetImportJobsPaginator.ts index a5f785fb5d137..34c472411aef7 100644 --- a/clients/client-personalize/src/pagination/ListDatasetImportJobsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListDatasetImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetImportJobsCommand, diff --git a/clients/client-personalize/src/pagination/ListDatasetsPaginator.ts b/clients/client-personalize/src/pagination/ListDatasetsPaginator.ts index 6908b24b83e88..bfea384ad819e 100644 --- a/clients/client-personalize/src/pagination/ListDatasetsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetsCommand, diff --git a/clients/client-personalize/src/pagination/ListEventTrackersPaginator.ts b/clients/client-personalize/src/pagination/ListEventTrackersPaginator.ts index 322de9b3c565c..dae51c71230e5 100644 --- a/clients/client-personalize/src/pagination/ListEventTrackersPaginator.ts +++ b/clients/client-personalize/src/pagination/ListEventTrackersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEventTrackersCommand, diff --git a/clients/client-personalize/src/pagination/ListFiltersPaginator.ts b/clients/client-personalize/src/pagination/ListFiltersPaginator.ts index abed993c03cd8..bfb5d6508b712 100644 --- a/clients/client-personalize/src/pagination/ListFiltersPaginator.ts +++ b/clients/client-personalize/src/pagination/ListFiltersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFiltersCommand, ListFiltersCommandInput, ListFiltersCommandOutput } from "../commands/ListFiltersCommand"; import { PersonalizeClient } from "../PersonalizeClient"; diff --git a/clients/client-personalize/src/pagination/ListMetricAttributionMetricsPaginator.ts b/clients/client-personalize/src/pagination/ListMetricAttributionMetricsPaginator.ts index c796231487d3d..4a7f00a5f151d 100644 --- a/clients/client-personalize/src/pagination/ListMetricAttributionMetricsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListMetricAttributionMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMetricAttributionMetricsCommand, diff --git a/clients/client-personalize/src/pagination/ListMetricAttributionsPaginator.ts b/clients/client-personalize/src/pagination/ListMetricAttributionsPaginator.ts index 6de967a758704..e302eaaaa3d68 100644 --- a/clients/client-personalize/src/pagination/ListMetricAttributionsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListMetricAttributionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMetricAttributionsCommand, diff --git a/clients/client-personalize/src/pagination/ListRecipesPaginator.ts b/clients/client-personalize/src/pagination/ListRecipesPaginator.ts index 42b4e963c8bc4..61f4f03931b7a 100644 --- a/clients/client-personalize/src/pagination/ListRecipesPaginator.ts +++ b/clients/client-personalize/src/pagination/ListRecipesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecipesCommand, ListRecipesCommandInput, ListRecipesCommandOutput } from "../commands/ListRecipesCommand"; import { PersonalizeClient } from "../PersonalizeClient"; diff --git a/clients/client-personalize/src/pagination/ListRecommendersPaginator.ts b/clients/client-personalize/src/pagination/ListRecommendersPaginator.ts index 037a3ae79cd4f..944d5e916d57b 100644 --- a/clients/client-personalize/src/pagination/ListRecommendersPaginator.ts +++ b/clients/client-personalize/src/pagination/ListRecommendersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendersCommand, diff --git a/clients/client-personalize/src/pagination/ListSchemasPaginator.ts b/clients/client-personalize/src/pagination/ListSchemasPaginator.ts index 4811e2e96b4a9..13f441be0d5d3 100644 --- a/clients/client-personalize/src/pagination/ListSchemasPaginator.ts +++ b/clients/client-personalize/src/pagination/ListSchemasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchemasCommand, ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand"; import { PersonalizeClient } from "../PersonalizeClient"; diff --git a/clients/client-personalize/src/pagination/ListSolutionVersionsPaginator.ts b/clients/client-personalize/src/pagination/ListSolutionVersionsPaginator.ts index 254ff45aabda3..98880bda2859b 100644 --- a/clients/client-personalize/src/pagination/ListSolutionVersionsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListSolutionVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSolutionVersionsCommand, diff --git a/clients/client-personalize/src/pagination/ListSolutionsPaginator.ts b/clients/client-personalize/src/pagination/ListSolutionsPaginator.ts index 6297898cfce21..b8782cbd5b415 100644 --- a/clients/client-personalize/src/pagination/ListSolutionsPaginator.ts +++ b/clients/client-personalize/src/pagination/ListSolutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSolutionsCommand, diff --git a/clients/client-personalize/src/runtimeConfig.browser.ts b/clients/client-personalize/src/runtimeConfig.browser.ts index ea36d3daf3a92..ea7721123853e 100644 --- a/clients/client-personalize/src/runtimeConfig.browser.ts +++ b/clients/client-personalize/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PersonalizeClientConfig } from "./PersonalizeClient"; + +import type { PersonalizeClientConfig } from "./PersonalizeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-personalize/src/runtimeConfig.native.ts b/clients/client-personalize/src/runtimeConfig.native.ts index a73c6fb8f0fbe..4f7078781a124 100644 --- a/clients/client-personalize/src/runtimeConfig.native.ts +++ b/clients/client-personalize/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PersonalizeClientConfig } from "./PersonalizeClient"; +import type { PersonalizeClientConfig } from "./PersonalizeClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-personalize/src/runtimeConfig.shared.ts b/clients/client-personalize/src/runtimeConfig.shared.ts index 2f2c8ed854b4b..689674f5f1657 100644 --- a/clients/client-personalize/src/runtimeConfig.shared.ts +++ b/clients/client-personalize/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPersonalizeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PersonalizeClientConfig } from "./PersonalizeClient"; +import type { PersonalizeClientConfig } from "./PersonalizeClient"; /** * @internal diff --git a/clients/client-personalize/src/runtimeConfig.ts b/clients/client-personalize/src/runtimeConfig.ts index b0b63928945f3..ce59875c135c2 100644 --- a/clients/client-personalize/src/runtimeConfig.ts +++ b/clients/client-personalize/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PersonalizeClientConfig } from "./PersonalizeClient"; + +import type { PersonalizeClientConfig } from "./PersonalizeClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-personalize/src/runtimeExtensions.ts b/clients/client-personalize/src/runtimeExtensions.ts index 741f5bb5cf58c..229dbaf733367 100644 --- a/clients/client-personalize/src/runtimeExtensions.ts +++ b/clients/client-personalize/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PersonalizeExtensionConfiguration } from "./extensionConfiguration"; +import type { PersonalizeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-personalize/src/schemas/schemas_0.ts b/clients/client-personalize/src/schemas/schemas_0.ts index 284bfa44a8ea6..afd98df83f531 100644 --- a/clients/client-personalize/src/schemas/schemas_0.ts +++ b/clients/client-personalize/src/schemas/schemas_0.ts @@ -486,7 +486,7 @@ const n0 = "com.amazonaws.personalize"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-pi/package.json b/clients/client-pi/package.json index dd6a900c37e13..f9a283098cd39 100644 --- a/clients/client-pi/package.json +++ b/clients/client-pi/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pi/src/PI.ts b/clients/client-pi/src/PI.ts index 27e9207d148d2..fbd422f03f86c 100644 --- a/clients/client-pi/src/PI.ts +++ b/clients/client-pi/src/PI.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreatePerformanceAnalysisReportCommand, @@ -63,7 +63,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { PIClient, PIClientConfig } from "./PIClient"; +import { PIClient } from "./PIClient"; const commands = { CreatePerformanceAnalysisReportCommand, diff --git a/clients/client-pi/src/PIClient.ts b/clients/client-pi/src/PIClient.ts index f7e2d5b012e4f..f35804bacb6a4 100644 --- a/clients/client-pi/src/PIClient.ts +++ b/clients/client-pi/src/PIClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPIHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -107,7 +116,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pi/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pi/src/auth/httpAuthExtensionConfiguration.ts index 5d2685b9c569f..9201d6240d5fb 100644 --- a/clients/client-pi/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pi/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PIHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PIHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pi/src/auth/httpAuthSchemeProvider.ts b/clients/client-pi/src/auth/httpAuthSchemeProvider.ts index 3e64cc9226db5..d82b34b867ce5 100644 --- a/clients/client-pi/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pi/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PIClientConfig, PIClientResolvedConfig } from "../PIClient"; +import { type PIClientResolvedConfig, PIClientConfig } from "../PIClient"; /** * @internal diff --git a/clients/client-pi/src/commands/CreatePerformanceAnalysisReportCommand.ts b/clients/client-pi/src/commands/CreatePerformanceAnalysisReportCommand.ts index d76b1fa0d712b..a3ae19c1fbc47 100644 --- a/clients/client-pi/src/commands/CreatePerformanceAnalysisReportCommand.ts +++ b/clients/client-pi/src/commands/CreatePerformanceAnalysisReportCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePerformanceAnalysisReportRequest, CreatePerformanceAnalysisReportResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { + CreatePerformanceAnalysisReportRequest, + CreatePerformanceAnalysisReportResponse, +} from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { CreatePerformanceAnalysisReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/DeletePerformanceAnalysisReportCommand.ts b/clients/client-pi/src/commands/DeletePerformanceAnalysisReportCommand.ts index 5a02b3747c979..6c85c16d7a400 100644 --- a/clients/client-pi/src/commands/DeletePerformanceAnalysisReportCommand.ts +++ b/clients/client-pi/src/commands/DeletePerformanceAnalysisReportCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePerformanceAnalysisReportRequest, DeletePerformanceAnalysisReportResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { + DeletePerformanceAnalysisReportRequest, + DeletePerformanceAnalysisReportResponse, +} from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { DeletePerformanceAnalysisReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/DescribeDimensionKeysCommand.ts b/clients/client-pi/src/commands/DescribeDimensionKeysCommand.ts index ace976942cc91..77e5e241bc588 100644 --- a/clients/client-pi/src/commands/DescribeDimensionKeysCommand.ts +++ b/clients/client-pi/src/commands/DescribeDimensionKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDimensionKeysRequest, DescribeDimensionKeysResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { DescribeDimensionKeysRequest, DescribeDimensionKeysResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { DescribeDimensionKeys } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/GetDimensionKeyDetailsCommand.ts b/clients/client-pi/src/commands/GetDimensionKeyDetailsCommand.ts index 5cb2778f85364..3c6d98610cc1a 100644 --- a/clients/client-pi/src/commands/GetDimensionKeyDetailsCommand.ts +++ b/clients/client-pi/src/commands/GetDimensionKeyDetailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDimensionKeyDetailsRequest, GetDimensionKeyDetailsResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { GetDimensionKeyDetailsRequest, GetDimensionKeyDetailsResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { GetDimensionKeyDetails } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/GetPerformanceAnalysisReportCommand.ts b/clients/client-pi/src/commands/GetPerformanceAnalysisReportCommand.ts index 6e3a4e7c9051b..a1ec2f0749d24 100644 --- a/clients/client-pi/src/commands/GetPerformanceAnalysisReportCommand.ts +++ b/clients/client-pi/src/commands/GetPerformanceAnalysisReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPerformanceAnalysisReportRequest, GetPerformanceAnalysisReportResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { GetPerformanceAnalysisReportRequest, GetPerformanceAnalysisReportResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { GetPerformanceAnalysisReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/GetResourceMetadataCommand.ts b/clients/client-pi/src/commands/GetResourceMetadataCommand.ts index 83ef3da8ce628..d7c573047ce13 100644 --- a/clients/client-pi/src/commands/GetResourceMetadataCommand.ts +++ b/clients/client-pi/src/commands/GetResourceMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceMetadataRequest, GetResourceMetadataResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { GetResourceMetadataRequest, GetResourceMetadataResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { GetResourceMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/GetResourceMetricsCommand.ts b/clients/client-pi/src/commands/GetResourceMetricsCommand.ts index 64d2d5c8d8804..a3cf9ba53c9e3 100644 --- a/clients/client-pi/src/commands/GetResourceMetricsCommand.ts +++ b/clients/client-pi/src/commands/GetResourceMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceMetricsRequest, GetResourceMetricsResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { GetResourceMetricsRequest, GetResourceMetricsResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { GetResourceMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/ListAvailableResourceDimensionsCommand.ts b/clients/client-pi/src/commands/ListAvailableResourceDimensionsCommand.ts index f67eea0dc93e1..3cd0c4c92d75d 100644 --- a/clients/client-pi/src/commands/ListAvailableResourceDimensionsCommand.ts +++ b/clients/client-pi/src/commands/ListAvailableResourceDimensionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAvailableResourceDimensionsRequest, ListAvailableResourceDimensionsResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { + ListAvailableResourceDimensionsRequest, + ListAvailableResourceDimensionsResponse, +} from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { ListAvailableResourceDimensions } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/ListAvailableResourceMetricsCommand.ts b/clients/client-pi/src/commands/ListAvailableResourceMetricsCommand.ts index 27eb02ee04667..43e2d150da85a 100644 --- a/clients/client-pi/src/commands/ListAvailableResourceMetricsCommand.ts +++ b/clients/client-pi/src/commands/ListAvailableResourceMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAvailableResourceMetricsRequest, ListAvailableResourceMetricsResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { ListAvailableResourceMetricsRequest, ListAvailableResourceMetricsResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { ListAvailableResourceMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/ListPerformanceAnalysisReportsCommand.ts b/clients/client-pi/src/commands/ListPerformanceAnalysisReportsCommand.ts index 643d7b0bd75b2..805be91750262 100644 --- a/clients/client-pi/src/commands/ListPerformanceAnalysisReportsCommand.ts +++ b/clients/client-pi/src/commands/ListPerformanceAnalysisReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPerformanceAnalysisReportsRequest, ListPerformanceAnalysisReportsResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { ListPerformanceAnalysisReportsRequest, ListPerformanceAnalysisReportsResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { ListPerformanceAnalysisReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/ListTagsForResourceCommand.ts b/clients/client-pi/src/commands/ListTagsForResourceCommand.ts index 1310674d14916..6eedd0c907918 100644 --- a/clients/client-pi/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pi/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/TagResourceCommand.ts b/clients/client-pi/src/commands/TagResourceCommand.ts index 1f3b1963abcf0..14276d3fbd6b1 100644 --- a/clients/client-pi/src/commands/TagResourceCommand.ts +++ b/clients/client-pi/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/commands/UntagResourceCommand.ts b/clients/client-pi/src/commands/UntagResourceCommand.ts index 70a84c42329be..538137a2f0ac7 100644 --- a/clients/client-pi/src/commands/UntagResourceCommand.ts +++ b/clients/client-pi/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pi/src/endpoint/EndpointParameters.ts b/clients/client-pi/src/endpoint/EndpointParameters.ts index 282b39063b1c4..8e13cbfca4a00 100644 --- a/clients/client-pi/src/endpoint/EndpointParameters.ts +++ b/clients/client-pi/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pi/src/endpoint/endpointResolver.ts b/clients/client-pi/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pi/src/endpoint/endpointResolver.ts +++ b/clients/client-pi/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pi/src/extensionConfiguration.ts b/clients/client-pi/src/extensionConfiguration.ts index 41c75e10ef231..4715852c5752e 100644 --- a/clients/client-pi/src/extensionConfiguration.ts +++ b/clients/client-pi/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pi/src/models/PIServiceException.ts b/clients/client-pi/src/models/PIServiceException.ts index d248909d556ef..d4931cad36a10 100644 --- a/clients/client-pi/src/models/PIServiceException.ts +++ b/clients/client-pi/src/models/PIServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pi/src/models/errors.ts b/clients/client-pi/src/models/errors.ts index b7fa030d3144f..caa3524dff457 100644 --- a/clients/client-pi/src/models/errors.ts +++ b/clients/client-pi/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PIServiceException as __BaseException } from "./PIServiceException"; diff --git a/clients/client-pi/src/pagination/DescribeDimensionKeysPaginator.ts b/clients/client-pi/src/pagination/DescribeDimensionKeysPaginator.ts index b0fef75ba979a..b9da057302cdd 100644 --- a/clients/client-pi/src/pagination/DescribeDimensionKeysPaginator.ts +++ b/clients/client-pi/src/pagination/DescribeDimensionKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDimensionKeysCommand, diff --git a/clients/client-pi/src/pagination/GetResourceMetricsPaginator.ts b/clients/client-pi/src/pagination/GetResourceMetricsPaginator.ts index 21e0dabcf3a41..d80ce554dee64 100644 --- a/clients/client-pi/src/pagination/GetResourceMetricsPaginator.ts +++ b/clients/client-pi/src/pagination/GetResourceMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourceMetricsCommand, diff --git a/clients/client-pi/src/pagination/Interfaces.ts b/clients/client-pi/src/pagination/Interfaces.ts index fb39f6d06ab64..64561df7de972 100644 --- a/clients/client-pi/src/pagination/Interfaces.ts +++ b/clients/client-pi/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PIClient } from "../PIClient"; diff --git a/clients/client-pi/src/pagination/ListAvailableResourceDimensionsPaginator.ts b/clients/client-pi/src/pagination/ListAvailableResourceDimensionsPaginator.ts index fd14b943e2939..fd7361b5695bd 100644 --- a/clients/client-pi/src/pagination/ListAvailableResourceDimensionsPaginator.ts +++ b/clients/client-pi/src/pagination/ListAvailableResourceDimensionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAvailableResourceDimensionsCommand, diff --git a/clients/client-pi/src/pagination/ListAvailableResourceMetricsPaginator.ts b/clients/client-pi/src/pagination/ListAvailableResourceMetricsPaginator.ts index 4a28bd2825dd9..9c1a6e51d02d1 100644 --- a/clients/client-pi/src/pagination/ListAvailableResourceMetricsPaginator.ts +++ b/clients/client-pi/src/pagination/ListAvailableResourceMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAvailableResourceMetricsCommand, diff --git a/clients/client-pi/src/pagination/ListPerformanceAnalysisReportsPaginator.ts b/clients/client-pi/src/pagination/ListPerformanceAnalysisReportsPaginator.ts index e7c48f44831f1..4eaddafe9532e 100644 --- a/clients/client-pi/src/pagination/ListPerformanceAnalysisReportsPaginator.ts +++ b/clients/client-pi/src/pagination/ListPerformanceAnalysisReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPerformanceAnalysisReportsCommand, diff --git a/clients/client-pi/src/runtimeConfig.browser.ts b/clients/client-pi/src/runtimeConfig.browser.ts index ed972b2eaca6c..09e77aabd8a1d 100644 --- a/clients/client-pi/src/runtimeConfig.browser.ts +++ b/clients/client-pi/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PIClientConfig } from "./PIClient"; + +import type { PIClientConfig } from "./PIClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pi/src/runtimeConfig.native.ts b/clients/client-pi/src/runtimeConfig.native.ts index 3eee288979dfd..34e093c235647 100644 --- a/clients/client-pi/src/runtimeConfig.native.ts +++ b/clients/client-pi/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PIClientConfig } from "./PIClient"; +import type { PIClientConfig } from "./PIClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pi/src/runtimeConfig.shared.ts b/clients/client-pi/src/runtimeConfig.shared.ts index f107183564798..ea7413d0dcea5 100644 --- a/clients/client-pi/src/runtimeConfig.shared.ts +++ b/clients/client-pi/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPIHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PIClientConfig } from "./PIClient"; +import type { PIClientConfig } from "./PIClient"; /** * @internal diff --git a/clients/client-pi/src/runtimeConfig.ts b/clients/client-pi/src/runtimeConfig.ts index 15979c44e03b9..a271ba6b6cff0 100644 --- a/clients/client-pi/src/runtimeConfig.ts +++ b/clients/client-pi/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PIClientConfig } from "./PIClient"; + +import type { PIClientConfig } from "./PIClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pi/src/runtimeExtensions.ts b/clients/client-pi/src/runtimeExtensions.ts index afbe2acd2a262..0d8309e9647e9 100644 --- a/clients/client-pi/src/runtimeExtensions.ts +++ b/clients/client-pi/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PIExtensionConfiguration } from "./extensionConfiguration"; +import type { PIExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pi/src/schemas/schemas_0.ts b/clients/client-pi/src/schemas/schemas_0.ts index 322b2396797e9..34b284070436e 100644 --- a/clients/client-pi/src/schemas/schemas_0.ts +++ b/clients/client-pi/src/schemas/schemas_0.ts @@ -147,7 +147,7 @@ const n0 = "com.amazonaws.pi"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-pinpoint-email/package.json b/clients/client-pinpoint-email/package.json index 60ea61784f254..0acb542026a1c 100644 --- a/clients/client-pinpoint-email/package.json +++ b/clients/client-pinpoint-email/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pinpoint-email/src/PinpointEmail.ts b/clients/client-pinpoint-email/src/PinpointEmail.ts index 3f5fbfbee740d..1058129127098 100644 --- a/clients/client-pinpoint-email/src/PinpointEmail.ts +++ b/clients/client-pinpoint-email/src/PinpointEmail.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateConfigurationSetCommand, @@ -200,7 +200,7 @@ import { UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput, } from "./commands/UpdateConfigurationSetEventDestinationCommand"; -import { PinpointEmailClient, PinpointEmailClientConfig } from "./PinpointEmailClient"; +import { PinpointEmailClient } from "./PinpointEmailClient"; const commands = { CreateConfigurationSetCommand, diff --git a/clients/client-pinpoint-email/src/PinpointEmailClient.ts b/clients/client-pinpoint-email/src/PinpointEmailClient.ts index e8508ae199027..3359f754037b1 100644 --- a/clients/client-pinpoint-email/src/PinpointEmailClient.ts +++ b/clients/client-pinpoint-email/src/PinpointEmailClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPinpointEmailHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -211,7 +220,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pinpoint-email/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pinpoint-email/src/auth/httpAuthExtensionConfiguration.ts index 06059444e83d9..4d0b8ce6d488c 100644 --- a/clients/client-pinpoint-email/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pinpoint-email/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PinpointEmailHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PinpointEmailHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pinpoint-email/src/auth/httpAuthSchemeProvider.ts b/clients/client-pinpoint-email/src/auth/httpAuthSchemeProvider.ts index 9174accc3dc3b..cad9fb9b5dfea 100644 --- a/clients/client-pinpoint-email/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pinpoint-email/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PinpointEmailClientConfig, PinpointEmailClientResolvedConfig } from "../PinpointEmailClient"; +import { type PinpointEmailClientResolvedConfig, PinpointEmailClientConfig } from "../PinpointEmailClient"; /** * @internal diff --git a/clients/client-pinpoint-email/src/commands/CreateConfigurationSetCommand.ts b/clients/client-pinpoint-email/src/commands/CreateConfigurationSetCommand.ts index c35e7d77bcb3d..7587fc92c5ae5 100644 --- a/clients/client-pinpoint-email/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateConfigurationSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfigurationSetRequest, CreateConfigurationSetResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { CreateConfigurationSetRequest, CreateConfigurationSetResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { CreateConfigurationSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/CreateConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-email/src/commands/CreateConfigurationSetEventDestinationCommand.ts index 1851bc6c19566..7b08134d19122 100644 --- a/clients/client-pinpoint-email/src/commands/CreateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateConfigurationSetEventDestinationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateConfigurationSetEventDestinationRequest, CreateConfigurationSetEventDestinationResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { CreateConfigurationSetEventDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/CreateDedicatedIpPoolCommand.ts b/clients/client-pinpoint-email/src/commands/CreateDedicatedIpPoolCommand.ts index 92dff922f47e0..556031c6f57f6 100644 --- a/clients/client-pinpoint-email/src/commands/CreateDedicatedIpPoolCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateDedicatedIpPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDedicatedIpPoolRequest, CreateDedicatedIpPoolResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { CreateDedicatedIpPoolRequest, CreateDedicatedIpPoolResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { CreateDedicatedIpPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/CreateDeliverabilityTestReportCommand.ts b/clients/client-pinpoint-email/src/commands/CreateDeliverabilityTestReportCommand.ts index 9e5f6b705f355..78550ac3f49b9 100644 --- a/clients/client-pinpoint-email/src/commands/CreateDeliverabilityTestReportCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateDeliverabilityTestReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeliverabilityTestReportRequest, CreateDeliverabilityTestReportResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { CreateDeliverabilityTestReportRequest, CreateDeliverabilityTestReportResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { CreateDeliverabilityTestReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/CreateEmailIdentityCommand.ts b/clients/client-pinpoint-email/src/commands/CreateEmailIdentityCommand.ts index 000a7dd6406c6..07c6abba77c08 100644 --- a/clients/client-pinpoint-email/src/commands/CreateEmailIdentityCommand.ts +++ b/clients/client-pinpoint-email/src/commands/CreateEmailIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEmailIdentityRequest, CreateEmailIdentityResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { CreateEmailIdentityRequest, CreateEmailIdentityResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { CreateEmailIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetCommand.ts index 7d24994c870c6..da70faab9329e 100644 --- a/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationSetRequest, DeleteConfigurationSetResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { DeleteConfigurationSetRequest, DeleteConfigurationSetResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { DeleteConfigurationSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetEventDestinationCommand.ts index 627a48a54889c..2fd9118d9f595 100644 --- a/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-email/src/commands/DeleteConfigurationSetEventDestinationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteConfigurationSetEventDestinationRequest, DeleteConfigurationSetEventDestinationResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { DeleteConfigurationSetEventDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/DeleteDedicatedIpPoolCommand.ts b/clients/client-pinpoint-email/src/commands/DeleteDedicatedIpPoolCommand.ts index 0a7d8dc8d9cb4..c346304197868 100644 --- a/clients/client-pinpoint-email/src/commands/DeleteDedicatedIpPoolCommand.ts +++ b/clients/client-pinpoint-email/src/commands/DeleteDedicatedIpPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDedicatedIpPoolRequest, DeleteDedicatedIpPoolResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { DeleteDedicatedIpPoolRequest, DeleteDedicatedIpPoolResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { DeleteDedicatedIpPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/DeleteEmailIdentityCommand.ts b/clients/client-pinpoint-email/src/commands/DeleteEmailIdentityCommand.ts index 4dcd97814bad3..57683391573da 100644 --- a/clients/client-pinpoint-email/src/commands/DeleteEmailIdentityCommand.ts +++ b/clients/client-pinpoint-email/src/commands/DeleteEmailIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEmailIdentityRequest, DeleteEmailIdentityResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { DeleteEmailIdentityRequest, DeleteEmailIdentityResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { DeleteEmailIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetAccountCommand.ts b/clients/client-pinpoint-email/src/commands/GetAccountCommand.ts index d2ce3181b2b75..2b2374743a07c 100644 --- a/clients/client-pinpoint-email/src/commands/GetAccountCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetAccountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountRequest, GetAccountResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { GetAccountRequest, GetAccountResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetBlacklistReportsCommand.ts b/clients/client-pinpoint-email/src/commands/GetBlacklistReportsCommand.ts index 390b35e944770..50885ff8d905e 100644 --- a/clients/client-pinpoint-email/src/commands/GetBlacklistReportsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetBlacklistReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBlacklistReportsRequest, GetBlacklistReportsResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { GetBlacklistReportsRequest, GetBlacklistReportsResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetBlacklistReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetConfigurationSetCommand.ts b/clients/client-pinpoint-email/src/commands/GetConfigurationSetCommand.ts index 9c63add5fda3a..215c9173d44fe 100644 --- a/clients/client-pinpoint-email/src/commands/GetConfigurationSetCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetConfigurationSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfigurationSetRequest, GetConfigurationSetResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { GetConfigurationSetRequest, GetConfigurationSetResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetConfigurationSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetConfigurationSetEventDestinationsCommand.ts b/clients/client-pinpoint-email/src/commands/GetConfigurationSetEventDestinationsCommand.ts index 5817272b482d2..21f93f78f7daa 100644 --- a/clients/client-pinpoint-email/src/commands/GetConfigurationSetEventDestinationsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetConfigurationSetEventDestinationsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConfigurationSetEventDestinationsRequest, GetConfigurationSetEventDestinationsResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetConfigurationSetEventDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetDedicatedIpCommand.ts b/clients/client-pinpoint-email/src/commands/GetDedicatedIpCommand.ts index 8747535befbbb..5df21a1c254c7 100644 --- a/clients/client-pinpoint-email/src/commands/GetDedicatedIpCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDedicatedIpCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDedicatedIpRequest, GetDedicatedIpResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { GetDedicatedIpRequest, GetDedicatedIpResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetDedicatedIp } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetDedicatedIpsCommand.ts b/clients/client-pinpoint-email/src/commands/GetDedicatedIpsCommand.ts index adb089bd61977..05311d3661f78 100644 --- a/clients/client-pinpoint-email/src/commands/GetDedicatedIpsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDedicatedIpsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDedicatedIpsRequest, GetDedicatedIpsResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { GetDedicatedIpsRequest, GetDedicatedIpsResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetDedicatedIps } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetDeliverabilityDashboardOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/GetDeliverabilityDashboardOptionsCommand.ts index ccf0f09972c90..6e3bd18bd0b59 100644 --- a/clients/client-pinpoint-email/src/commands/GetDeliverabilityDashboardOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDeliverabilityDashboardOptionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetDeliverabilityDashboardOptionsRequest, GetDeliverabilityDashboardOptionsResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetDeliverabilityDashboardOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetDeliverabilityTestReportCommand.ts b/clients/client-pinpoint-email/src/commands/GetDeliverabilityTestReportCommand.ts index 65197bc3de068..b6f2b4f518e76 100644 --- a/clients/client-pinpoint-email/src/commands/GetDeliverabilityTestReportCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDeliverabilityTestReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeliverabilityTestReportRequest, GetDeliverabilityTestReportResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { GetDeliverabilityTestReportRequest, GetDeliverabilityTestReportResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetDeliverabilityTestReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetDomainDeliverabilityCampaignCommand.ts b/clients/client-pinpoint-email/src/commands/GetDomainDeliverabilityCampaignCommand.ts index ee94594be0407..cec0dd2dd1c2f 100644 --- a/clients/client-pinpoint-email/src/commands/GetDomainDeliverabilityCampaignCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDomainDeliverabilityCampaignCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainDeliverabilityCampaignRequest, GetDomainDeliverabilityCampaignResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { + GetDomainDeliverabilityCampaignRequest, + GetDomainDeliverabilityCampaignResponse, +} from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetDomainDeliverabilityCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetDomainStatisticsReportCommand.ts b/clients/client-pinpoint-email/src/commands/GetDomainStatisticsReportCommand.ts index dcf1887fa09b2..7af4502dba2a8 100644 --- a/clients/client-pinpoint-email/src/commands/GetDomainStatisticsReportCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetDomainStatisticsReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainStatisticsReportRequest, GetDomainStatisticsReportResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { GetDomainStatisticsReportRequest, GetDomainStatisticsReportResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetDomainStatisticsReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/GetEmailIdentityCommand.ts b/clients/client-pinpoint-email/src/commands/GetEmailIdentityCommand.ts index c636ab1398a96..3fcbce90b5104 100644 --- a/clients/client-pinpoint-email/src/commands/GetEmailIdentityCommand.ts +++ b/clients/client-pinpoint-email/src/commands/GetEmailIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEmailIdentityRequest, GetEmailIdentityResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { GetEmailIdentityRequest, GetEmailIdentityResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { GetEmailIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/ListConfigurationSetsCommand.ts b/clients/client-pinpoint-email/src/commands/ListConfigurationSetsCommand.ts index 6457a5c6cdb4b..3295941fe8eee 100644 --- a/clients/client-pinpoint-email/src/commands/ListConfigurationSetsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListConfigurationSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { ListConfigurationSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/ListDedicatedIpPoolsCommand.ts b/clients/client-pinpoint-email/src/commands/ListDedicatedIpPoolsCommand.ts index 58907ff4049fa..3a4b84c8653a4 100644 --- a/clients/client-pinpoint-email/src/commands/ListDedicatedIpPoolsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListDedicatedIpPoolsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDedicatedIpPoolsRequest, ListDedicatedIpPoolsResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { ListDedicatedIpPoolsRequest, ListDedicatedIpPoolsResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { ListDedicatedIpPools } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/ListDeliverabilityTestReportsCommand.ts b/clients/client-pinpoint-email/src/commands/ListDeliverabilityTestReportsCommand.ts index 75cf2907134ce..20b988c7dff9d 100644 --- a/clients/client-pinpoint-email/src/commands/ListDeliverabilityTestReportsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListDeliverabilityTestReportsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeliverabilityTestReportsRequest, ListDeliverabilityTestReportsResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { ListDeliverabilityTestReportsRequest, ListDeliverabilityTestReportsResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { ListDeliverabilityTestReports } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/ListDomainDeliverabilityCampaignsCommand.ts b/clients/client-pinpoint-email/src/commands/ListDomainDeliverabilityCampaignsCommand.ts index 5d6fbe5efbb26..328d58207e22a 100644 --- a/clients/client-pinpoint-email/src/commands/ListDomainDeliverabilityCampaignsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListDomainDeliverabilityCampaignsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDomainDeliverabilityCampaignsRequest, ListDomainDeliverabilityCampaignsResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { ListDomainDeliverabilityCampaigns } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/ListEmailIdentitiesCommand.ts b/clients/client-pinpoint-email/src/commands/ListEmailIdentitiesCommand.ts index d708e98c8671c..20ed3b52a11bd 100644 --- a/clients/client-pinpoint-email/src/commands/ListEmailIdentitiesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListEmailIdentitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEmailIdentitiesRequest, ListEmailIdentitiesResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { ListEmailIdentitiesRequest, ListEmailIdentitiesResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { ListEmailIdentities } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/ListTagsForResourceCommand.ts b/clients/client-pinpoint-email/src/commands/ListTagsForResourceCommand.ts index eee4908f2ed53..c4f418b04a8b0 100644 --- a/clients/client-pinpoint-email/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pinpoint-email/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts index 0c0ac78c54313..873b4b2bacd6d 100644 --- a/clients/client-pinpoint-email/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutAccountDedicatedIpWarmupAttributesRequest, PutAccountDedicatedIpWarmupAttributesResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutAccountDedicatedIpWarmupAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutAccountSendingAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutAccountSendingAttributesCommand.ts index 967eb2ef563c8..684f9d6978cd4 100644 --- a/clients/client-pinpoint-email/src/commands/PutAccountSendingAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutAccountSendingAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountSendingAttributesRequest, PutAccountSendingAttributesResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PutAccountSendingAttributesRequest, PutAccountSendingAttributesResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutAccountSendingAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts index e6b4afc7b8ae0..25a15d64ad9e6 100644 --- a/clients/client-pinpoint-email/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetDeliveryOptionsRequest, PutConfigurationSetDeliveryOptionsResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutConfigurationSetDeliveryOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutConfigurationSetReputationOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/PutConfigurationSetReputationOptionsCommand.ts index 7d03f94ce8b2e..a7bf3c730e4bc 100644 --- a/clients/client-pinpoint-email/src/commands/PutConfigurationSetReputationOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutConfigurationSetReputationOptionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetReputationOptionsRequest, PutConfigurationSetReputationOptionsResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutConfigurationSetReputationOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutConfigurationSetSendingOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/PutConfigurationSetSendingOptionsCommand.ts index c3708ce6bd9a2..774d60622a670 100644 --- a/clients/client-pinpoint-email/src/commands/PutConfigurationSetSendingOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutConfigurationSetSendingOptionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetSendingOptionsRequest, PutConfigurationSetSendingOptionsResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutConfigurationSetSendingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutConfigurationSetTrackingOptionsCommand.ts b/clients/client-pinpoint-email/src/commands/PutConfigurationSetTrackingOptionsCommand.ts index db1a3c7093730..d25086e6d289b 100644 --- a/clients/client-pinpoint-email/src/commands/PutConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutConfigurationSetTrackingOptionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetTrackingOptionsRequest, PutConfigurationSetTrackingOptionsResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutConfigurationSetTrackingOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutDedicatedIpInPoolCommand.ts b/clients/client-pinpoint-email/src/commands/PutDedicatedIpInPoolCommand.ts index 741224727b45f..e07f204b98667 100644 --- a/clients/client-pinpoint-email/src/commands/PutDedicatedIpInPoolCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutDedicatedIpInPoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDedicatedIpInPoolRequest, PutDedicatedIpInPoolResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PutDedicatedIpInPoolRequest, PutDedicatedIpInPoolResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutDedicatedIpInPool } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutDedicatedIpWarmupAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutDedicatedIpWarmupAttributesCommand.ts index 095da8f751806..af6d7187f8d1b 100644 --- a/clients/client-pinpoint-email/src/commands/PutDedicatedIpWarmupAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutDedicatedIpWarmupAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDedicatedIpWarmupAttributesRequest, PutDedicatedIpWarmupAttributesResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PutDedicatedIpWarmupAttributesRequest, PutDedicatedIpWarmupAttributesResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutDedicatedIpWarmupAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutDeliverabilityDashboardOptionCommand.ts b/clients/client-pinpoint-email/src/commands/PutDeliverabilityDashboardOptionCommand.ts index 0d2ea9e907b7d..2c7d9bae8fe05 100644 --- a/clients/client-pinpoint-email/src/commands/PutDeliverabilityDashboardOptionCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutDeliverabilityDashboardOptionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDeliverabilityDashboardOptionRequest, PutDeliverabilityDashboardOptionResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { + PutDeliverabilityDashboardOptionRequest, + PutDeliverabilityDashboardOptionResponse, +} from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutDeliverabilityDashboardOption } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutEmailIdentityDkimAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutEmailIdentityDkimAttributesCommand.ts index 4129560997490..0bf49e481f929 100644 --- a/clients/client-pinpoint-email/src/commands/PutEmailIdentityDkimAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutEmailIdentityDkimAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEmailIdentityDkimAttributesRequest, PutEmailIdentityDkimAttributesResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PutEmailIdentityDkimAttributesRequest, PutEmailIdentityDkimAttributesResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutEmailIdentityDkimAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts index dee3b1831aa61..a41990d15606f 100644 --- a/clients/client-pinpoint-email/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutEmailIdentityFeedbackAttributesRequest, PutEmailIdentityFeedbackAttributesResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutEmailIdentityFeedbackAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/PutEmailIdentityMailFromAttributesCommand.ts b/clients/client-pinpoint-email/src/commands/PutEmailIdentityMailFromAttributesCommand.ts index f17592f264004..8faef0ab6eeca 100644 --- a/clients/client-pinpoint-email/src/commands/PutEmailIdentityMailFromAttributesCommand.ts +++ b/clients/client-pinpoint-email/src/commands/PutEmailIdentityMailFromAttributesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutEmailIdentityMailFromAttributesRequest, PutEmailIdentityMailFromAttributesResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { PutEmailIdentityMailFromAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/SendEmailCommand.ts b/clients/client-pinpoint-email/src/commands/SendEmailCommand.ts index a009dc4de3ea3..752fc26e5e3c9 100644 --- a/clients/client-pinpoint-email/src/commands/SendEmailCommand.ts +++ b/clients/client-pinpoint-email/src/commands/SendEmailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendEmailRequest, SendEmailResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { SendEmailRequest, SendEmailResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { SendEmail } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/TagResourceCommand.ts b/clients/client-pinpoint-email/src/commands/TagResourceCommand.ts index 572e441f4ad69..e3f658ff8c568 100644 --- a/clients/client-pinpoint-email/src/commands/TagResourceCommand.ts +++ b/clients/client-pinpoint-email/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/UntagResourceCommand.ts b/clients/client-pinpoint-email/src/commands/UntagResourceCommand.ts index e09d14fbfcac3..8afcf23e4c7da 100644 --- a/clients/client-pinpoint-email/src/commands/UntagResourceCommand.ts +++ b/clients/client-pinpoint-email/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/commands/UpdateConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-email/src/commands/UpdateConfigurationSetEventDestinationCommand.ts index b36442af7ec88..e3269423bd32d 100644 --- a/clients/client-pinpoint-email/src/commands/UpdateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-email/src/commands/UpdateConfigurationSetEventDestinationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateConfigurationSetEventDestinationRequest, UpdateConfigurationSetEventDestinationResponse, } from "../models/models_0"; -import { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; +import type { PinpointEmailClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointEmailClient"; import { UpdateConfigurationSetEventDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-email/src/endpoint/EndpointParameters.ts b/clients/client-pinpoint-email/src/endpoint/EndpointParameters.ts index d56e54a561aad..d7ebbd3ef1299 100644 --- a/clients/client-pinpoint-email/src/endpoint/EndpointParameters.ts +++ b/clients/client-pinpoint-email/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pinpoint-email/src/endpoint/endpointResolver.ts b/clients/client-pinpoint-email/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pinpoint-email/src/endpoint/endpointResolver.ts +++ b/clients/client-pinpoint-email/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pinpoint-email/src/extensionConfiguration.ts b/clients/client-pinpoint-email/src/extensionConfiguration.ts index d3a3bbfa03666..ecb452aa624bc 100644 --- a/clients/client-pinpoint-email/src/extensionConfiguration.ts +++ b/clients/client-pinpoint-email/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pinpoint-email/src/models/PinpointEmailServiceException.ts b/clients/client-pinpoint-email/src/models/PinpointEmailServiceException.ts index b7ae58348ae7c..c9a312f1923cb 100644 --- a/clients/client-pinpoint-email/src/models/PinpointEmailServiceException.ts +++ b/clients/client-pinpoint-email/src/models/PinpointEmailServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pinpoint-email/src/models/errors.ts b/clients/client-pinpoint-email/src/models/errors.ts index 564f44f1921ce..ed2c2ad1eebb9 100644 --- a/clients/client-pinpoint-email/src/models/errors.ts +++ b/clients/client-pinpoint-email/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PinpointEmailServiceException as __BaseException } from "./PinpointEmailServiceException"; diff --git a/clients/client-pinpoint-email/src/pagination/GetDedicatedIpsPaginator.ts b/clients/client-pinpoint-email/src/pagination/GetDedicatedIpsPaginator.ts index 955e190041f48..3a62deaf9ddf4 100644 --- a/clients/client-pinpoint-email/src/pagination/GetDedicatedIpsPaginator.ts +++ b/clients/client-pinpoint-email/src/pagination/GetDedicatedIpsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetDedicatedIpsCommand, diff --git a/clients/client-pinpoint-email/src/pagination/Interfaces.ts b/clients/client-pinpoint-email/src/pagination/Interfaces.ts index 42c9cd2324ded..aa6a38b155f9c 100644 --- a/clients/client-pinpoint-email/src/pagination/Interfaces.ts +++ b/clients/client-pinpoint-email/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PinpointEmailClient } from "../PinpointEmailClient"; diff --git a/clients/client-pinpoint-email/src/pagination/ListConfigurationSetsPaginator.ts b/clients/client-pinpoint-email/src/pagination/ListConfigurationSetsPaginator.ts index 47d463bde1dcf..15f5e8f10fbb5 100644 --- a/clients/client-pinpoint-email/src/pagination/ListConfigurationSetsPaginator.ts +++ b/clients/client-pinpoint-email/src/pagination/ListConfigurationSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationSetsCommand, diff --git a/clients/client-pinpoint-email/src/pagination/ListDedicatedIpPoolsPaginator.ts b/clients/client-pinpoint-email/src/pagination/ListDedicatedIpPoolsPaginator.ts index 7b8e93643b91b..b59f21eeea8e1 100644 --- a/clients/client-pinpoint-email/src/pagination/ListDedicatedIpPoolsPaginator.ts +++ b/clients/client-pinpoint-email/src/pagination/ListDedicatedIpPoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDedicatedIpPoolsCommand, diff --git a/clients/client-pinpoint-email/src/pagination/ListDeliverabilityTestReportsPaginator.ts b/clients/client-pinpoint-email/src/pagination/ListDeliverabilityTestReportsPaginator.ts index 27f3f580a26a6..ac8db827c53a8 100644 --- a/clients/client-pinpoint-email/src/pagination/ListDeliverabilityTestReportsPaginator.ts +++ b/clients/client-pinpoint-email/src/pagination/ListDeliverabilityTestReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeliverabilityTestReportsCommand, diff --git a/clients/client-pinpoint-email/src/pagination/ListDomainDeliverabilityCampaignsPaginator.ts b/clients/client-pinpoint-email/src/pagination/ListDomainDeliverabilityCampaignsPaginator.ts index f02ffd205db03..afb0bb3e10174 100644 --- a/clients/client-pinpoint-email/src/pagination/ListDomainDeliverabilityCampaignsPaginator.ts +++ b/clients/client-pinpoint-email/src/pagination/ListDomainDeliverabilityCampaignsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainDeliverabilityCampaignsCommand, diff --git a/clients/client-pinpoint-email/src/pagination/ListEmailIdentitiesPaginator.ts b/clients/client-pinpoint-email/src/pagination/ListEmailIdentitiesPaginator.ts index e9273de8e65c1..750b0f1c8f96a 100644 --- a/clients/client-pinpoint-email/src/pagination/ListEmailIdentitiesPaginator.ts +++ b/clients/client-pinpoint-email/src/pagination/ListEmailIdentitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEmailIdentitiesCommand, diff --git a/clients/client-pinpoint-email/src/runtimeConfig.browser.ts b/clients/client-pinpoint-email/src/runtimeConfig.browser.ts index 0bcc2729dd6a4..59c167ebeb40b 100644 --- a/clients/client-pinpoint-email/src/runtimeConfig.browser.ts +++ b/clients/client-pinpoint-email/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PinpointEmailClientConfig } from "./PinpointEmailClient"; + +import type { PinpointEmailClientConfig } from "./PinpointEmailClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pinpoint-email/src/runtimeConfig.native.ts b/clients/client-pinpoint-email/src/runtimeConfig.native.ts index 4ac791ab91491..b4fa7de995a1f 100644 --- a/clients/client-pinpoint-email/src/runtimeConfig.native.ts +++ b/clients/client-pinpoint-email/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PinpointEmailClientConfig } from "./PinpointEmailClient"; +import type { PinpointEmailClientConfig } from "./PinpointEmailClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pinpoint-email/src/runtimeConfig.shared.ts b/clients/client-pinpoint-email/src/runtimeConfig.shared.ts index f31dae2788c50..c4c8ba988f72c 100644 --- a/clients/client-pinpoint-email/src/runtimeConfig.shared.ts +++ b/clients/client-pinpoint-email/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPinpointEmailHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PinpointEmailClientConfig } from "./PinpointEmailClient"; +import type { PinpointEmailClientConfig } from "./PinpointEmailClient"; /** * @internal diff --git a/clients/client-pinpoint-email/src/runtimeConfig.ts b/clients/client-pinpoint-email/src/runtimeConfig.ts index d89e182d7541f..784dae3f2da5a 100644 --- a/clients/client-pinpoint-email/src/runtimeConfig.ts +++ b/clients/client-pinpoint-email/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PinpointEmailClientConfig } from "./PinpointEmailClient"; + +import type { PinpointEmailClientConfig } from "./PinpointEmailClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pinpoint-email/src/runtimeExtensions.ts b/clients/client-pinpoint-email/src/runtimeExtensions.ts index 897956364a143..0ecf1429eccfa 100644 --- a/clients/client-pinpoint-email/src/runtimeExtensions.ts +++ b/clients/client-pinpoint-email/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PinpointEmailExtensionConfiguration } from "./extensionConfiguration"; +import type { PinpointEmailExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pinpoint-email/src/schemas/schemas_0.ts b/clients/client-pinpoint-email/src/schemas/schemas_0.ts index e6773c02cdce8..51892124980b5 100644 --- a/clients/client-pinpoint-email/src/schemas/schemas_0.ts +++ b/clients/client-pinpoint-email/src/schemas/schemas_0.ts @@ -314,7 +314,7 @@ const n0 = "com.amazonaws.pinpointemail"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-pinpoint-sms-voice-v2/package.json b/clients/client-pinpoint-sms-voice-v2/package.json index ff54efcc2d195..26d2670f32303 100644 --- a/clients/client-pinpoint-sms-voice-v2/package.json +++ b/clients/client-pinpoint-sms-voice-v2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pinpoint-sms-voice-v2/src/PinpointSMSVoiceV2.ts b/clients/client-pinpoint-sms-voice-v2/src/PinpointSMSVoiceV2.ts index 6515016a2ff73..d3e20b4cfd899 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/PinpointSMSVoiceV2.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/PinpointSMSVoiceV2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateOriginationIdentityCommand, @@ -437,7 +437,7 @@ import { VerifyDestinationNumberCommandInput, VerifyDestinationNumberCommandOutput, } from "./commands/VerifyDestinationNumberCommand"; -import { PinpointSMSVoiceV2Client, PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"; +import { PinpointSMSVoiceV2Client } from "./PinpointSMSVoiceV2Client"; const commands = { AssociateOriginationIdentityCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/PinpointSMSVoiceV2Client.ts b/clients/client-pinpoint-sms-voice-v2/src/PinpointSMSVoiceV2Client.ts index cdeaba9af4b28..6f575e6585fa1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/PinpointSMSVoiceV2Client.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/PinpointSMSVoiceV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPinpointSMSVoiceV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -341,7 +350,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pinpoint-sms-voice-v2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pinpoint-sms-voice-v2/src/auth/httpAuthExtensionConfiguration.ts index a7341cbaec998..365771f9c44d1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PinpointSMSVoiceV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PinpointSMSVoiceV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice-v2/src/auth/httpAuthSchemeProvider.ts b/clients/client-pinpoint-sms-voice-v2/src/auth/httpAuthSchemeProvider.ts index 6d258160e7973..2f73391e6154a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PinpointSMSVoiceV2ClientConfig, PinpointSMSVoiceV2ClientResolvedConfig } from "../PinpointSMSVoiceV2Client"; +import { + type PinpointSMSVoiceV2ClientResolvedConfig, + PinpointSMSVoiceV2ClientConfig, +} from "../PinpointSMSVoiceV2Client"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateOriginationIdentityCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateOriginationIdentityCommand.ts index b6a22a325b629..bdbea6eb259b1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateOriginationIdentityCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateOriginationIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateOriginationIdentityRequest, AssociateOriginationIdentityResult } from "../models/models_0"; -import { +import type { AssociateOriginationIdentityRequest, AssociateOriginationIdentityResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateProtectConfigurationCommand.ts index e92f94fe1f20e..05d7b4ad8ddfa 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/AssociateProtectConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateProtectConfigurationRequest, AssociateProtectConfigurationResult } from "../models/models_0"; -import { +import type { AssociateProtectConfigurationRequest, AssociateProtectConfigurationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CarrierLookupCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CarrierLookupCommand.ts index a154dc6032278..e5bb09396633a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CarrierLookupCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CarrierLookupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CarrierLookupRequest, CarrierLookupResult } from "../models/models_0"; -import { +import type { CarrierLookupRequest, CarrierLookupResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateConfigurationSetCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateConfigurationSetCommand.ts index 82102c9c2a582..d720d35dca38a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateConfigurationSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfigurationSetRequest, CreateConfigurationSetResult } from "../models/models_0"; -import { +import type { CreateConfigurationSetRequest, CreateConfigurationSetResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateEventDestinationCommand.ts index efa3c5352dd80..f646166398371 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateEventDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventDestinationRequest, CreateEventDestinationResult } from "../models/models_0"; -import { +import type { CreateEventDestinationRequest, CreateEventDestinationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateOptOutListCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateOptOutListCommand.ts index 3194274576de5..367c08a83d8c7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateOptOutListCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateOptOutListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOptOutListRequest, CreateOptOutListResult } from "../models/models_0"; -import { +import type { CreateOptOutListRequest, CreateOptOutListResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreatePoolCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreatePoolCommand.ts index 1192e1e58541e..79b1f69efc1c1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreatePoolCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreatePoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePoolRequest, CreatePoolResult } from "../models/models_0"; -import { +import type { CreatePoolRequest, CreatePoolResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateProtectConfigurationCommand.ts index 15459990779a2..b0fa1351dce82 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateProtectConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProtectConfigurationRequest, CreateProtectConfigurationResult } from "../models/models_0"; -import { +import type { CreateProtectConfigurationRequest, CreateProtectConfigurationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAssociationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAssociationCommand.ts index b49682d103524..ed5196ce4ea55 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAssociationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegistrationAssociationRequest, CreateRegistrationAssociationResult } from "../models/models_0"; -import { +import type { CreateRegistrationAssociationRequest, CreateRegistrationAssociationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAttachmentCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAttachmentCommand.ts index fa4161d552b4b..a2a5ba6e799b7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAttachmentCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationAttachmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegistrationAttachmentRequest, CreateRegistrationAttachmentResult } from "../models/models_0"; -import { +import type { CreateRegistrationAttachmentRequest, CreateRegistrationAttachmentResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationCommand.ts index 8019e5d771c18..06c072083255c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegistrationRequest, CreateRegistrationResult } from "../models/models_0"; -import { +import type { CreateRegistrationRequest, CreateRegistrationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationVersionCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationVersionCommand.ts index 8c949f232a942..710a1a9cbbd5a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationVersionCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateRegistrationVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegistrationVersionRequest, CreateRegistrationVersionResult } from "../models/models_0"; -import { +import type { CreateRegistrationVersionRequest, CreateRegistrationVersionResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateVerifiedDestinationNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateVerifiedDestinationNumberCommand.ts index 4e5850350268e..e1b9ba334771e 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/CreateVerifiedDestinationNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/CreateVerifiedDestinationNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVerifiedDestinationNumberRequest, CreateVerifiedDestinationNumberResult } from "../models/models_0"; -import { +import type { CreateVerifiedDestinationNumberRequest, CreateVerifiedDestinationNumberResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteAccountDefaultProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteAccountDefaultProtectConfigurationCommand.ts index 37dfec25dd198..48dd1cd5e4d5d 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteAccountDefaultProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteAccountDefaultProtectConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteAccountDefaultProtectConfigurationRequest, DeleteAccountDefaultProtectConfigurationResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteConfigurationSetCommand.ts index a2c15f5a3827e..e821a31a09506 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteConfigurationSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationSetRequest, DeleteConfigurationSetResult } from "../models/models_0"; -import { +import type { DeleteConfigurationSetRequest, DeleteConfigurationSetResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultMessageTypeCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultMessageTypeCommand.ts index f695fa5e14919..5c66d330aef5e 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultMessageTypeCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultMessageTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDefaultMessageTypeRequest, DeleteDefaultMessageTypeResult } from "../models/models_0"; -import { +import type { DeleteDefaultMessageTypeRequest, DeleteDefaultMessageTypeResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultSenderIdCommand.ts index 1b4c4bb9bc605..4793e584df384 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteDefaultSenderIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDefaultSenderIdRequest, DeleteDefaultSenderIdResult } from "../models/models_0"; -import { +import type { DeleteDefaultSenderIdRequest, DeleteDefaultSenderIdResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteEventDestinationCommand.ts index f803f1508f0af..4bcb334a1f438 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteEventDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventDestinationRequest, DeleteEventDestinationResult } from "../models/models_0"; -import { +import type { DeleteEventDestinationRequest, DeleteEventDestinationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteKeywordCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteKeywordCommand.ts index e0adacb60d0de..4278c4632ac5c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteKeywordCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteKeywordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKeywordRequest, DeleteKeywordResult } from "../models/models_0"; -import { +import type { DeleteKeywordRequest, DeleteKeywordResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteMediaMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteMediaMessageSpendLimitOverrideCommand.ts index 4f91aefce3287..98f01475294d5 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteMediaMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteMediaMessageSpendLimitOverrideCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteMediaMessageSpendLimitOverrideRequest, DeleteMediaMessageSpendLimitOverrideResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptOutListCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptOutListCommand.ts index 28d8b66139455..e8754d7ac1d1b 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptOutListCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptOutListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOptOutListRequest, DeleteOptOutListResult } from "../models/models_0"; -import { +import type { DeleteOptOutListRequest, DeleteOptOutListResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptedOutNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptedOutNumberCommand.ts index 2527473736121..5c86e7645154f 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptedOutNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteOptedOutNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOptedOutNumberRequest, DeleteOptedOutNumberResult } from "../models/models_0"; -import { +import type { DeleteOptedOutNumberRequest, DeleteOptedOutNumberResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeletePoolCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeletePoolCommand.ts index 0a496cee92e14..3e7c8444fa0aa 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeletePoolCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeletePoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePoolRequest, DeletePoolResult } from "../models/models_0"; -import { +import type { DeletePoolRequest, DeletePoolResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationCommand.ts index f4e5ca04211bf..b8618c8f13d9b 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProtectConfigurationRequest, DeleteProtectConfigurationResult } from "../models/models_0"; -import { +import type { DeleteProtectConfigurationRequest, DeleteProtectConfigurationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationRuleSetNumberOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationRuleSetNumberOverrideCommand.ts index 5e3a3d5abbc8c..8cbd96566e7e6 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationRuleSetNumberOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteProtectConfigurationRuleSetNumberOverrideCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteProtectConfigurationRuleSetNumberOverrideRequest, DeleteProtectConfigurationRuleSetNumberOverrideResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationAttachmentCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationAttachmentCommand.ts index f97d330a0f0b0..4b0969286275b 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationAttachmentCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationAttachmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegistrationAttachmentRequest, DeleteRegistrationAttachmentResult } from "../models/models_0"; -import { +import type { DeleteRegistrationAttachmentRequest, DeleteRegistrationAttachmentResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationCommand.ts index aeff4641e7798..43169e5ae9d4a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegistrationRequest, DeleteRegistrationResult } from "../models/models_0"; -import { +import type { DeleteRegistrationRequest, DeleteRegistrationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationFieldValueCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationFieldValueCommand.ts index ed97d5c4f14c6..f343436c2eb6e 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationFieldValueCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteRegistrationFieldValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegistrationFieldValueRequest, DeleteRegistrationFieldValueResult } from "../models/models_0"; -import { +import type { DeleteRegistrationFieldValueRequest, DeleteRegistrationFieldValueResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteResourcePolicyCommand.ts index 2a0b722ae1bc1..e5143baea3011 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResult } from "../models/models_0"; -import { +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteTextMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteTextMessageSpendLimitOverrideCommand.ts index b35215d927eb3..5c01011f46ec7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteTextMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteTextMessageSpendLimitOverrideCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteTextMessageSpendLimitOverrideRequest, DeleteTextMessageSpendLimitOverrideResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVerifiedDestinationNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVerifiedDestinationNumberCommand.ts index dce722087834c..27a8ccf7d0510 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVerifiedDestinationNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVerifiedDestinationNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVerifiedDestinationNumberRequest, DeleteVerifiedDestinationNumberResult } from "../models/models_0"; -import { +import type { DeleteVerifiedDestinationNumberRequest, DeleteVerifiedDestinationNumberResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVoiceMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVoiceMessageSpendLimitOverrideCommand.ts index ffee2089df84b..16db57bfd89ae 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVoiceMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DeleteVoiceMessageSpendLimitOverrideCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteVoiceMessageSpendLimitOverrideRequest, DeleteVoiceMessageSpendLimitOverrideResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountAttributesCommand.ts index 99108d99a469a..bd22e0c865dc3 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountAttributesRequest, DescribeAccountAttributesResult } from "../models/models_0"; -import { +import type { DescribeAccountAttributesRequest, DescribeAccountAttributesResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountLimitsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountLimitsCommand.ts index cbab020ad7fce..af33e3478c8d1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountLimitsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeAccountLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountLimitsRequest, DescribeAccountLimitsResult } from "../models/models_0"; -import { +import type { DescribeAccountLimitsRequest, DescribeAccountLimitsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeConfigurationSetsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeConfigurationSetsCommand.ts index 20ed7f8948de2..5605b4baf2860 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeConfigurationSetsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeConfigurationSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConfigurationSetsRequest, DescribeConfigurationSetsResult } from "../models/models_0"; -import { +import type { DescribeConfigurationSetsRequest, DescribeConfigurationSetsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeKeywordsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeKeywordsCommand.ts index af070ae316d90..96010a9b957a4 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeKeywordsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeKeywordsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeKeywordsRequest, DescribeKeywordsResult } from "../models/models_0"; -import { +import type { DescribeKeywordsRequest, DescribeKeywordsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptOutListsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptOutListsCommand.ts index a6d5a6dfbc69e..e7a4b576cb25e 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptOutListsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptOutListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOptOutListsRequest, DescribeOptOutListsResult } from "../models/models_0"; -import { +import type { DescribeOptOutListsRequest, DescribeOptOutListsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptedOutNumbersCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptedOutNumbersCommand.ts index 523c67933538f..e50c11f8d5f96 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptedOutNumbersCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeOptedOutNumbersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOptedOutNumbersRequest, DescribeOptedOutNumbersResult } from "../models/models_0"; -import { +import type { DescribeOptedOutNumbersRequest, DescribeOptedOutNumbersResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePhoneNumbersCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePhoneNumbersCommand.ts index deb616a74b2e7..629d89f2c8ac9 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePhoneNumbersCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePhoneNumbersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePhoneNumbersRequest, DescribePhoneNumbersResult } from "../models/models_0"; -import { +import type { DescribePhoneNumbersRequest, DescribePhoneNumbersResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePoolsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePoolsCommand.ts index 3d8c5947d2338..220e1be66b465 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePoolsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribePoolsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePoolsRequest, DescribePoolsResult } from "../models/models_0"; -import { +import type { DescribePoolsRequest, DescribePoolsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeProtectConfigurationsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeProtectConfigurationsCommand.ts index 8be36b0de868f..5e33c23f4b92c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeProtectConfigurationsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeProtectConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProtectConfigurationsRequest, DescribeProtectConfigurationsResult } from "../models/models_0"; -import { +import type { DescribeProtectConfigurationsRequest, DescribeProtectConfigurationsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationAttachmentsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationAttachmentsCommand.ts index 8a55a26922fff..391884d79e65c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationAttachmentsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationAttachmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegistrationAttachmentsRequest, DescribeRegistrationAttachmentsResult } from "../models/models_0"; -import { +import type { DescribeRegistrationAttachmentsRequest, DescribeRegistrationAttachmentsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldDefinitionsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldDefinitionsCommand.ts index 764c54021ced0..6a6a946c50ed8 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldDefinitionsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldDefinitionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeRegistrationFieldDefinitionsRequest, DescribeRegistrationFieldDefinitionsResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldValuesCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldValuesCommand.ts index c808366afbc1c..3bb359cd6bbae 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldValuesCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationFieldValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegistrationFieldValuesRequest, DescribeRegistrationFieldValuesResult } from "../models/models_0"; -import { +import type { DescribeRegistrationFieldValuesRequest, DescribeRegistrationFieldValuesResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationSectionDefinitionsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationSectionDefinitionsCommand.ts index b19979f39c65b..128c33b468c6f 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationSectionDefinitionsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationSectionDefinitionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeRegistrationSectionDefinitionsRequest, DescribeRegistrationSectionDefinitionsResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationTypeDefinitionsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationTypeDefinitionsCommand.ts index bea27927e9e00..1b35e178b774a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationTypeDefinitionsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationTypeDefinitionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeRegistrationTypeDefinitionsRequest, DescribeRegistrationTypeDefinitionsResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationVersionsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationVersionsCommand.ts index 4bd599ff82f21..a48d942e58d94 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationVersionsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegistrationVersionsRequest, DescribeRegistrationVersionsResult } from "../models/models_0"; -import { +import type { DescribeRegistrationVersionsRequest, DescribeRegistrationVersionsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationsCommand.ts index 2dbfac38eb7a1..f3ae35b73b990 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeRegistrationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegistrationsRequest, DescribeRegistrationsResult } from "../models/models_0"; -import { +import type { DescribeRegistrationsRequest, DescribeRegistrationsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSenderIdsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSenderIdsCommand.ts index 4a9adeabfc7ed..e0edeee24fb53 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSenderIdsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSenderIdsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSenderIdsRequest, DescribeSenderIdsResult } from "../models/models_0"; -import { +import type { DescribeSenderIdsRequest, DescribeSenderIdsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSpendLimitsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSpendLimitsCommand.ts index 5c2557cf7e253..e66582c225496 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSpendLimitsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeSpendLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpendLimitsRequest, DescribeSpendLimitsResult } from "../models/models_0"; -import { +import type { DescribeSpendLimitsRequest, DescribeSpendLimitsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeVerifiedDestinationNumbersCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeVerifiedDestinationNumbersCommand.ts index 6dfd5d4de3c29..b702dd85550b8 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeVerifiedDestinationNumbersCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DescribeVerifiedDestinationNumbersCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeVerifiedDestinationNumbersRequest, DescribeVerifiedDestinationNumbersResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateOriginationIdentityCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateOriginationIdentityCommand.ts index b22892381dc5f..d245d783a74df 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateOriginationIdentityCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateOriginationIdentityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateOriginationIdentityRequest, DisassociateOriginationIdentityResult } from "../models/models_0"; -import { +import type { DisassociateOriginationIdentityRequest, DisassociateOriginationIdentityResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateProtectConfigurationCommand.ts index 0de55252ff561..43e699d8d0425 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DisassociateProtectConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateProtectConfigurationRequest, DisassociateProtectConfigurationResult } from "../models/models_0"; -import { +import type { + DisassociateProtectConfigurationRequest, + DisassociateProtectConfigurationResult, +} from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/DiscardRegistrationVersionCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/DiscardRegistrationVersionCommand.ts index a4a32431973c7..396f5195ad6be 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/DiscardRegistrationVersionCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/DiscardRegistrationVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DiscardRegistrationVersionRequest, DiscardRegistrationVersionResult } from "../models/models_0"; -import { +import type { DiscardRegistrationVersionRequest, DiscardRegistrationVersionResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/GetProtectConfigurationCountryRuleSetCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/GetProtectConfigurationCountryRuleSetCommand.ts index baa527e48e122..df534ccfbb49c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/GetProtectConfigurationCountryRuleSetCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/GetProtectConfigurationCountryRuleSetCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetProtectConfigurationCountryRuleSetRequest, GetProtectConfigurationCountryRuleSetResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/GetResourcePolicyCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/GetResourcePolicyCommand.ts index 2026e7bc208ba..3a60e61cb703c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResult } from "../models/models_0"; -import { +import type { GetResourcePolicyRequest, GetResourcePolicyResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ListPoolOriginationIdentitiesCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ListPoolOriginationIdentitiesCommand.ts index a9d89e063a570..a8fce98329b1c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ListPoolOriginationIdentitiesCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ListPoolOriginationIdentitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPoolOriginationIdentitiesRequest, ListPoolOriginationIdentitiesResult } from "../models/models_0"; -import { +import type { ListPoolOriginationIdentitiesRequest, ListPoolOriginationIdentitiesResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ListProtectConfigurationRuleSetNumberOverridesCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ListProtectConfigurationRuleSetNumberOverridesCommand.ts index 6f80d1788bd9c..7af85368ff36a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ListProtectConfigurationRuleSetNumberOverridesCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ListProtectConfigurationRuleSetNumberOverridesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListProtectConfigurationRuleSetNumberOverridesRequest, ListProtectConfigurationRuleSetNumberOverridesResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ListRegistrationAssociationsCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ListRegistrationAssociationsCommand.ts index a7069460849dc..fbf58cdedbb85 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ListRegistrationAssociationsCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ListRegistrationAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegistrationAssociationsRequest, ListRegistrationAssociationsResult } from "../models/models_0"; -import { +import type { ListRegistrationAssociationsRequest, ListRegistrationAssociationsResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ListTagsForResourceCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ListTagsForResourceCommand.ts index 6ff7de0e307bd..0ea92d3351b12 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutKeywordCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutKeywordCommand.ts index 803818a975221..977b2cd5cfe35 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutKeywordCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutKeywordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutKeywordRequest, PutKeywordResult } from "../models/models_0"; -import { +import type { PutKeywordRequest, PutKeywordResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutMessageFeedbackCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutMessageFeedbackCommand.ts index 06e6856fb8e7c..63482ccc2a755 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutMessageFeedbackCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutMessageFeedbackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMessageFeedbackRequest, PutMessageFeedbackResult } from "../models/models_0"; -import { +import type { PutMessageFeedbackRequest, PutMessageFeedbackResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutOptedOutNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutOptedOutNumberCommand.ts index 6469b69d11aa8..3563b45eaeea0 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutOptedOutNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutOptedOutNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutOptedOutNumberRequest, PutOptedOutNumberResult } from "../models/models_0"; -import { +import type { PutOptedOutNumberRequest, PutOptedOutNumberResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutProtectConfigurationRuleSetNumberOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutProtectConfigurationRuleSetNumberOverrideCommand.ts index 44702c8edcd1e..5cccc6da57152 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutProtectConfigurationRuleSetNumberOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutProtectConfigurationRuleSetNumberOverrideCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutProtectConfigurationRuleSetNumberOverrideRequest, PutProtectConfigurationRuleSetNumberOverrideResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutRegistrationFieldValueCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutRegistrationFieldValueCommand.ts index 9c7e183e72687..448902329f59c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutRegistrationFieldValueCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutRegistrationFieldValueCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRegistrationFieldValueRequest, PutRegistrationFieldValueResult } from "../models/models_0"; -import { +import type { PutRegistrationFieldValueRequest, PutRegistrationFieldValueResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/PutResourcePolicyCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/PutResourcePolicyCommand.ts index 8b3d058bb1c63..cbdac6e00f3af 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResult } from "../models/models_0"; -import { +import type { PutResourcePolicyRequest, PutResourcePolicyResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ReleasePhoneNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ReleasePhoneNumberCommand.ts index 3b8175b5eb663..5f425032090bf 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ReleasePhoneNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ReleasePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReleasePhoneNumberRequest, ReleasePhoneNumberResult } from "../models/models_0"; -import { +import type { ReleasePhoneNumberRequest, ReleasePhoneNumberResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/ReleaseSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/ReleaseSenderIdCommand.ts index 54b1e19bbf82f..d46970a052ebe 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/ReleaseSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/ReleaseSenderIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReleaseSenderIdRequest, ReleaseSenderIdResult } from "../models/models_0"; -import { +import type { ReleaseSenderIdRequest, ReleaseSenderIdResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/RequestPhoneNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/RequestPhoneNumberCommand.ts index 87a22cceb661d..3ad470c6d043f 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/RequestPhoneNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/RequestPhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RequestPhoneNumberRequest, RequestPhoneNumberResult } from "../models/models_0"; -import { +import type { RequestPhoneNumberRequest, RequestPhoneNumberResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/RequestSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/RequestSenderIdCommand.ts index cfcc70951e9d6..3e535ab94f8d0 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/RequestSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/RequestSenderIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RequestSenderIdRequest, RequestSenderIdResult } from "../models/models_0"; -import { +import type { RequestSenderIdRequest, RequestSenderIdResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SendDestinationNumberVerificationCodeCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SendDestinationNumberVerificationCodeCommand.ts index ffc302fce43f8..2e51f04905587 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SendDestinationNumberVerificationCodeCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SendDestinationNumberVerificationCodeCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { SendDestinationNumberVerificationCodeRequest, SendDestinationNumberVerificationCodeResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SendMediaMessageCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SendMediaMessageCommand.ts index 678a6de1098a9..649c2f5d74a71 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SendMediaMessageCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SendMediaMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendMediaMessageRequest, SendMediaMessageResult } from "../models/models_0"; -import { +import type { SendMediaMessageRequest, SendMediaMessageResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SendTextMessageCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SendTextMessageCommand.ts index 373b6de410a83..858fbc1133639 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SendTextMessageCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SendTextMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendTextMessageRequest, SendTextMessageResult } from "../models/models_0"; -import { +import type { SendTextMessageRequest, SendTextMessageResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SendVoiceMessageCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SendVoiceMessageCommand.ts index 4cb68612a50d6..55dd528332979 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SendVoiceMessageCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SendVoiceMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendVoiceMessageRequest, SendVoiceMessageResult } from "../models/models_0"; -import { +import type { SendVoiceMessageRequest, SendVoiceMessageResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetAccountDefaultProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetAccountDefaultProtectConfigurationCommand.ts index aa3ae64c87e3e..047d90594d1b7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetAccountDefaultProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetAccountDefaultProtectConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { SetAccountDefaultProtectConfigurationRequest, SetAccountDefaultProtectConfigurationResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageFeedbackEnabledCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageFeedbackEnabledCommand.ts index 3ee2283bca01c..c473f6749d880 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageFeedbackEnabledCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageFeedbackEnabledCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetDefaultMessageFeedbackEnabledRequest, SetDefaultMessageFeedbackEnabledResult } from "../models/models_0"; -import { +import type { + SetDefaultMessageFeedbackEnabledRequest, + SetDefaultMessageFeedbackEnabledResult, +} from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageTypeCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageTypeCommand.ts index 0c71cc3830e8e..35f840f58c0e0 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageTypeCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultMessageTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetDefaultMessageTypeRequest, SetDefaultMessageTypeResult } from "../models/models_0"; -import { +import type { SetDefaultMessageTypeRequest, SetDefaultMessageTypeResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultSenderIdCommand.ts index 2a694ef2caa14..6b96f8d10d3db 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetDefaultSenderIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetDefaultSenderIdRequest, SetDefaultSenderIdResult } from "../models/models_0"; -import { +import type { SetDefaultSenderIdRequest, SetDefaultSenderIdResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetMediaMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetMediaMessageSpendLimitOverrideCommand.ts index b18c484f911d9..755ae2f610c50 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetMediaMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetMediaMessageSpendLimitOverrideCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetMediaMessageSpendLimitOverrideRequest, SetMediaMessageSpendLimitOverrideResult } from "../models/models_0"; -import { +import type { + SetMediaMessageSpendLimitOverrideRequest, + SetMediaMessageSpendLimitOverrideResult, +} from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetTextMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetTextMessageSpendLimitOverrideCommand.ts index 93e39aeff814e..fd83b96e7734b 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetTextMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetTextMessageSpendLimitOverrideCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetTextMessageSpendLimitOverrideRequest, SetTextMessageSpendLimitOverrideResult } from "../models/models_0"; -import { +import type { + SetTextMessageSpendLimitOverrideRequest, + SetTextMessageSpendLimitOverrideResult, +} from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SetVoiceMessageSpendLimitOverrideCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SetVoiceMessageSpendLimitOverrideCommand.ts index 5cf92dbfeaa60..bc7e30af21488 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SetVoiceMessageSpendLimitOverrideCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SetVoiceMessageSpendLimitOverrideCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetVoiceMessageSpendLimitOverrideRequest, SetVoiceMessageSpendLimitOverrideResult } from "../models/models_0"; -import { +import type { + SetVoiceMessageSpendLimitOverrideRequest, + SetVoiceMessageSpendLimitOverrideResult, +} from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/SubmitRegistrationVersionCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/SubmitRegistrationVersionCommand.ts index 2aa458dadc7d0..cc7c8268ec92f 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/SubmitRegistrationVersionCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/SubmitRegistrationVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubmitRegistrationVersionRequest, SubmitRegistrationVersionResult } from "../models/models_0"; -import { +import type { SubmitRegistrationVersionRequest, SubmitRegistrationVersionResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/TagResourceCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/TagResourceCommand.ts index 9a13fa09253de..74bf09045d06b 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/TagResourceCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResult } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UntagResourceCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UntagResourceCommand.ts index 5c850885d2adf..d2c7bb85bd2dc 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UntagResourceCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateEventDestinationCommand.ts index 48277678cc39f..df8a7894ce482 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateEventDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEventDestinationRequest, UpdateEventDestinationResult } from "../models/models_0"; -import { +import type { UpdateEventDestinationRequest, UpdateEventDestinationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePhoneNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePhoneNumberCommand.ts index 172279d644181..34677c20dab01 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePhoneNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePhoneNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePhoneNumberRequest, UpdatePhoneNumberResult } from "../models/models_0"; -import { +import type { UpdatePhoneNumberRequest, UpdatePhoneNumberResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePoolCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePoolCommand.ts index fb695bc0192c2..628de2ef112b7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePoolCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdatePoolCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePoolRequest, UpdatePoolResult } from "../models/models_0"; -import { +import type { UpdatePoolRequest, UpdatePoolResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCommand.ts index ca53be6fb35e2..dea916b0260c6 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProtectConfigurationRequest, UpdateProtectConfigurationResult } from "../models/models_0"; -import { +import type { UpdateProtectConfigurationRequest, UpdateProtectConfigurationResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCountryRuleSetCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCountryRuleSetCommand.ts index ee3c82301dba3..0ede22825a809 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCountryRuleSetCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateProtectConfigurationCountryRuleSetCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateProtectConfigurationCountryRuleSetRequest, UpdateProtectConfigurationCountryRuleSetResult, } from "../models/models_0"; -import { +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateSenderIdCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateSenderIdCommand.ts index 686e385ff3347..ee3b2f337a804 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateSenderIdCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/UpdateSenderIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSenderIdRequest, UpdateSenderIdResult } from "../models/models_0"; -import { +import type { UpdateSenderIdRequest, UpdateSenderIdResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/commands/VerifyDestinationNumberCommand.ts b/clients/client-pinpoint-sms-voice-v2/src/commands/VerifyDestinationNumberCommand.ts index b9ab63d672bba..14bbb9a8c35ac 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/commands/VerifyDestinationNumberCommand.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/commands/VerifyDestinationNumberCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyDestinationNumberRequest, VerifyDestinationNumberResult } from "../models/models_0"; -import { +import type { VerifyDestinationNumberRequest, VerifyDestinationNumberResult } from "../models/models_0"; +import type { PinpointSMSVoiceV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-pinpoint-sms-voice-v2/src/endpoint/EndpointParameters.ts b/clients/client-pinpoint-sms-voice-v2/src/endpoint/EndpointParameters.ts index 393915d186134..888fff4d716be 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/endpoint/EndpointParameters.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pinpoint-sms-voice-v2/src/endpoint/endpointResolver.ts b/clients/client-pinpoint-sms-voice-v2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/endpoint/endpointResolver.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pinpoint-sms-voice-v2/src/extensionConfiguration.ts b/clients/client-pinpoint-sms-voice-v2/src/extensionConfiguration.ts index fa1177d41d638..b5e83c1febbfd 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/extensionConfiguration.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice-v2/src/models/PinpointSMSVoiceV2ServiceException.ts b/clients/client-pinpoint-sms-voice-v2/src/models/PinpointSMSVoiceV2ServiceException.ts index 729d1fd834ec7..c3a470ca17a74 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/models/PinpointSMSVoiceV2ServiceException.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/models/PinpointSMSVoiceV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pinpoint-sms-voice-v2/src/models/errors.ts b/clients/client-pinpoint-sms-voice-v2/src/models/errors.ts index 3254df28ae954..460f352a6460d 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/models/errors.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessDeniedExceptionReason, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeAccountAttributesPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeAccountAttributesPaginator.ts index 72153063ceffe..acf06af48d535 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeAccountAttributesPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeAccountAttributesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAccountAttributesCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeAccountLimitsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeAccountLimitsPaginator.ts index e3670039046bb..04538dc50ffbf 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeAccountLimitsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeAccountLimitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAccountLimitsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeConfigurationSetsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeConfigurationSetsPaginator.ts index c015d5361c492..e773d7956b9f7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeConfigurationSetsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeConfigurationSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeConfigurationSetsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeKeywordsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeKeywordsPaginator.ts index 83075f39399ec..66e4d0785cbd8 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeKeywordsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeKeywordsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeKeywordsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeOptOutListsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeOptOutListsPaginator.ts index 9716cee9791d9..7a4e84856de40 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeOptOutListsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeOptOutListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOptOutListsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeOptedOutNumbersPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeOptedOutNumbersPaginator.ts index 5135e696a9355..3e4966ac1d9d5 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeOptedOutNumbersPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeOptedOutNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOptedOutNumbersCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribePhoneNumbersPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribePhoneNumbersPaginator.ts index de4340a7f75f4..b7815cc752440 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribePhoneNumbersPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribePhoneNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePhoneNumbersCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribePoolsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribePoolsPaginator.ts index d59ce7ddb029c..0e404e62cece2 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribePoolsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribePoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePoolsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeProtectConfigurationsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeProtectConfigurationsPaginator.ts index d658579463790..a68153f1e4f08 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeProtectConfigurationsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeProtectConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeProtectConfigurationsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationAttachmentsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationAttachmentsPaginator.ts index c5963e622fb5f..e0ee1d6d30ca2 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationAttachmentsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationAttachmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRegistrationAttachmentsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationFieldDefinitionsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationFieldDefinitionsPaginator.ts index fd56339c2471c..bdaf58d21fb11 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationFieldDefinitionsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationFieldDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRegistrationFieldDefinitionsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationFieldValuesPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationFieldValuesPaginator.ts index 9815d146e0ba7..f270b7d5a21a2 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationFieldValuesPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationFieldValuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRegistrationFieldValuesCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationSectionDefinitionsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationSectionDefinitionsPaginator.ts index 141734b22f2e6..eebce3959942d 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationSectionDefinitionsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationSectionDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRegistrationSectionDefinitionsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationTypeDefinitionsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationTypeDefinitionsPaginator.ts index 4cfb0ef60020f..93af292bc5f29 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationTypeDefinitionsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationTypeDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRegistrationTypeDefinitionsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationVersionsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationVersionsPaginator.ts index 1cad238a177aa..03eac6949ca5c 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationVersionsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRegistrationVersionsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationsPaginator.ts index 2ea10a787d707..2384d89198911 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeRegistrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRegistrationsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeSenderIdsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeSenderIdsPaginator.ts index fdfcc72687124..cb4303c4b655a 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeSenderIdsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeSenderIdsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSenderIdsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeSpendLimitsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeSpendLimitsPaginator.ts index 658e7c0f9b749..639b4179fc844 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeSpendLimitsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeSpendLimitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSpendLimitsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeVerifiedDestinationNumbersPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeVerifiedDestinationNumbersPaginator.ts index c4f219f8cee04..3ee70a05cb26e 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeVerifiedDestinationNumbersPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/DescribeVerifiedDestinationNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVerifiedDestinationNumbersCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/Interfaces.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/Interfaces.ts index 9258865eb1533..55dc411a330b1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/Interfaces.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PinpointSMSVoiceV2Client } from "../PinpointSMSVoiceV2Client"; diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/ListPoolOriginationIdentitiesPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/ListPoolOriginationIdentitiesPaginator.ts index 2abf7a609ade9..b0535f92a7e4b 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/ListPoolOriginationIdentitiesPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/ListPoolOriginationIdentitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPoolOriginationIdentitiesCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/ListProtectConfigurationRuleSetNumberOverridesPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/ListProtectConfigurationRuleSetNumberOverridesPaginator.ts index 6a1188cbb8110..e98364d9d69f7 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/ListProtectConfigurationRuleSetNumberOverridesPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/ListProtectConfigurationRuleSetNumberOverridesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProtectConfigurationRuleSetNumberOverridesCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/pagination/ListRegistrationAssociationsPaginator.ts b/clients/client-pinpoint-sms-voice-v2/src/pagination/ListRegistrationAssociationsPaginator.ts index 6ffeed407fdc1..0c542b827b423 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/pagination/ListRegistrationAssociationsPaginator.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/pagination/ListRegistrationAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRegistrationAssociationsCommand, diff --git a/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.browser.ts b/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.browser.ts index 49c047e855b24..478005cf14429 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.browser.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"; + +import type { PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.native.ts b/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.native.ts index fd0c29c5fa444..98d55329ec925 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.native.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"; +import type { PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.shared.ts b/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.shared.ts index 9643315b97fd8..bb4d07248d1d4 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.shared.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPinpointSMSVoiceV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"; +import type { PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.ts b/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.ts index 6e03776d8dee4..ba4ec6e3c97c1 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"; + +import type { PinpointSMSVoiceV2ClientConfig } from "./PinpointSMSVoiceV2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice-v2/src/runtimeExtensions.ts b/clients/client-pinpoint-sms-voice-v2/src/runtimeExtensions.ts index 3ebdee4baa118..c6ad50a7f297b 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/runtimeExtensions.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PinpointSMSVoiceV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { PinpointSMSVoiceV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pinpoint-sms-voice-v2/src/schemas/schemas_0.ts b/clients/client-pinpoint-sms-voice-v2/src/schemas/schemas_0.ts index 730718a29b3e4..c9b94c5c37230 100644 --- a/clients/client-pinpoint-sms-voice-v2/src/schemas/schemas_0.ts +++ b/clients/client-pinpoint-sms-voice-v2/src/schemas/schemas_0.ts @@ -582,7 +582,7 @@ const n0 = "com.amazonaws.pinpointsmsvoicev2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-pinpoint-sms-voice/package.json b/clients/client-pinpoint-sms-voice/package.json index d3dbfc0c65937..8a8f65ea88273 100644 --- a/clients/client-pinpoint-sms-voice/package.json +++ b/clients/client-pinpoint-sms-voice/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pinpoint-sms-voice/src/PinpointSMSVoice.ts b/clients/client-pinpoint-sms-voice/src/PinpointSMSVoice.ts index 3c3ce6452a96c..01086e5776645 100644 --- a/clients/client-pinpoint-sms-voice/src/PinpointSMSVoice.ts +++ b/clients/client-pinpoint-sms-voice/src/PinpointSMSVoice.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateConfigurationSetCommand, @@ -42,7 +42,7 @@ import { UpdateConfigurationSetEventDestinationCommandInput, UpdateConfigurationSetEventDestinationCommandOutput, } from "./commands/UpdateConfigurationSetEventDestinationCommand"; -import { PinpointSMSVoiceClient, PinpointSMSVoiceClientConfig } from "./PinpointSMSVoiceClient"; +import { PinpointSMSVoiceClient } from "./PinpointSMSVoiceClient"; const commands = { CreateConfigurationSetCommand, diff --git a/clients/client-pinpoint-sms-voice/src/PinpointSMSVoiceClient.ts b/clients/client-pinpoint-sms-voice/src/PinpointSMSVoiceClient.ts index c5a8a2b099830..f3838156a9993 100644 --- a/clients/client-pinpoint-sms-voice/src/PinpointSMSVoiceClient.ts +++ b/clients/client-pinpoint-sms-voice/src/PinpointSMSVoiceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPinpointSMSVoiceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -93,7 +102,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pinpoint-sms-voice/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pinpoint-sms-voice/src/auth/httpAuthExtensionConfiguration.ts index cab058ecaabd9..aec2dba2c9608 100644 --- a/clients/client-pinpoint-sms-voice/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pinpoint-sms-voice/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PinpointSMSVoiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PinpointSMSVoiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice/src/auth/httpAuthSchemeProvider.ts b/clients/client-pinpoint-sms-voice/src/auth/httpAuthSchemeProvider.ts index 562fb1ed95c8d..c6f6e840dd94b 100644 --- a/clients/client-pinpoint-sms-voice/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pinpoint-sms-voice/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PinpointSMSVoiceClientConfig, PinpointSMSVoiceClientResolvedConfig } from "../PinpointSMSVoiceClient"; +import { type PinpointSMSVoiceClientResolvedConfig, PinpointSMSVoiceClientConfig } from "../PinpointSMSVoiceClient"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetCommand.ts index 76d3bb0f1ffdb..3cec0e0e42cc7 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfigurationSetRequest, CreateConfigurationSetResponse } from "../models/models_0"; -import { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient"; +import type { CreateConfigurationSetRequest, CreateConfigurationSetResponse } from "../models/models_0"; +import type { + PinpointSMSVoiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PinpointSMSVoiceClient"; import { CreateConfigurationSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetEventDestinationCommand.ts index dbea62a38fc65..823da90bb0d3f 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/CreateConfigurationSetEventDestinationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateConfigurationSetEventDestinationRequest, CreateConfigurationSetEventDestinationResponse, } from "../models/models_0"; -import { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient"; +import type { + PinpointSMSVoiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PinpointSMSVoiceClient"; import { CreateConfigurationSetEventDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetCommand.ts index d237693192c6f..83514cb74af68 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationSetRequest, DeleteConfigurationSetResponse } from "../models/models_0"; -import { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient"; +import type { DeleteConfigurationSetRequest, DeleteConfigurationSetResponse } from "../models/models_0"; +import type { + PinpointSMSVoiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PinpointSMSVoiceClient"; import { DeleteConfigurationSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetEventDestinationCommand.ts index 15afbaaee121e..9662f587ac354 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/DeleteConfigurationSetEventDestinationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteConfigurationSetEventDestinationRequest, DeleteConfigurationSetEventDestinationResponse, } from "../models/models_0"; -import { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient"; +import type { + PinpointSMSVoiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PinpointSMSVoiceClient"; import { DeleteConfigurationSetEventDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-sms-voice/src/commands/GetConfigurationSetEventDestinationsCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/GetConfigurationSetEventDestinationsCommand.ts index fea2eea571fa3..c9ea69a0434f4 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/GetConfigurationSetEventDestinationsCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/GetConfigurationSetEventDestinationsCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConfigurationSetEventDestinationsRequest, GetConfigurationSetEventDestinationsResponse, } from "../models/models_0"; -import { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient"; +import type { + PinpointSMSVoiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PinpointSMSVoiceClient"; import { GetConfigurationSetEventDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-sms-voice/src/commands/ListConfigurationSetsCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/ListConfigurationSetsCommand.ts index b5e5947e73974..0d53a46863e0d 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/ListConfigurationSetsCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/ListConfigurationSetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0"; -import { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient"; +import type { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0"; +import type { + PinpointSMSVoiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PinpointSMSVoiceClient"; import { ListConfigurationSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-sms-voice/src/commands/SendVoiceMessageCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/SendVoiceMessageCommand.ts index b7af80f08f3b1..5a29bb16413a6 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/SendVoiceMessageCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/SendVoiceMessageCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendVoiceMessageRequest, SendVoiceMessageResponse } from "../models/models_0"; -import { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient"; +import type { SendVoiceMessageRequest, SendVoiceMessageResponse } from "../models/models_0"; +import type { + PinpointSMSVoiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PinpointSMSVoiceClient"; import { SendVoiceMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-sms-voice/src/commands/UpdateConfigurationSetEventDestinationCommand.ts b/clients/client-pinpoint-sms-voice/src/commands/UpdateConfigurationSetEventDestinationCommand.ts index 590fe4c625d9f..cd11c15c9aa7d 100644 --- a/clients/client-pinpoint-sms-voice/src/commands/UpdateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-pinpoint-sms-voice/src/commands/UpdateConfigurationSetEventDestinationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateConfigurationSetEventDestinationRequest, UpdateConfigurationSetEventDestinationResponse, } from "../models/models_0"; -import { PinpointSMSVoiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointSMSVoiceClient"; +import type { + PinpointSMSVoiceClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../PinpointSMSVoiceClient"; import { UpdateConfigurationSetEventDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint-sms-voice/src/endpoint/EndpointParameters.ts b/clients/client-pinpoint-sms-voice/src/endpoint/EndpointParameters.ts index 393915d186134..888fff4d716be 100644 --- a/clients/client-pinpoint-sms-voice/src/endpoint/EndpointParameters.ts +++ b/clients/client-pinpoint-sms-voice/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pinpoint-sms-voice/src/endpoint/endpointResolver.ts b/clients/client-pinpoint-sms-voice/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pinpoint-sms-voice/src/endpoint/endpointResolver.ts +++ b/clients/client-pinpoint-sms-voice/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pinpoint-sms-voice/src/extensionConfiguration.ts b/clients/client-pinpoint-sms-voice/src/extensionConfiguration.ts index 0f9f5f27fb89b..c0e8b339636a6 100644 --- a/clients/client-pinpoint-sms-voice/src/extensionConfiguration.ts +++ b/clients/client-pinpoint-sms-voice/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice/src/models/PinpointSMSVoiceServiceException.ts b/clients/client-pinpoint-sms-voice/src/models/PinpointSMSVoiceServiceException.ts index de4ce5b53ce22..fa083e9f86235 100644 --- a/clients/client-pinpoint-sms-voice/src/models/PinpointSMSVoiceServiceException.ts +++ b/clients/client-pinpoint-sms-voice/src/models/PinpointSMSVoiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pinpoint-sms-voice/src/models/errors.ts b/clients/client-pinpoint-sms-voice/src/models/errors.ts index ca28f9b516163..8a5b363472c76 100644 --- a/clients/client-pinpoint-sms-voice/src/models/errors.ts +++ b/clients/client-pinpoint-sms-voice/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PinpointSMSVoiceServiceException as __BaseException } from "./PinpointSMSVoiceServiceException"; diff --git a/clients/client-pinpoint-sms-voice/src/runtimeConfig.browser.ts b/clients/client-pinpoint-sms-voice/src/runtimeConfig.browser.ts index f6bd5836fae1b..a941d76aeb170 100644 --- a/clients/client-pinpoint-sms-voice/src/runtimeConfig.browser.ts +++ b/clients/client-pinpoint-sms-voice/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PinpointSMSVoiceClientConfig } from "./PinpointSMSVoiceClient"; + +import type { PinpointSMSVoiceClientConfig } from "./PinpointSMSVoiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice/src/runtimeConfig.native.ts b/clients/client-pinpoint-sms-voice/src/runtimeConfig.native.ts index 89cb8d2a044ce..5af2c6bd9ef12 100644 --- a/clients/client-pinpoint-sms-voice/src/runtimeConfig.native.ts +++ b/clients/client-pinpoint-sms-voice/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PinpointSMSVoiceClientConfig } from "./PinpointSMSVoiceClient"; +import type { PinpointSMSVoiceClientConfig } from "./PinpointSMSVoiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pinpoint-sms-voice/src/runtimeConfig.shared.ts b/clients/client-pinpoint-sms-voice/src/runtimeConfig.shared.ts index 4dcdf6f047839..081941aa53493 100644 --- a/clients/client-pinpoint-sms-voice/src/runtimeConfig.shared.ts +++ b/clients/client-pinpoint-sms-voice/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPinpointSMSVoiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PinpointSMSVoiceClientConfig } from "./PinpointSMSVoiceClient"; +import type { PinpointSMSVoiceClientConfig } from "./PinpointSMSVoiceClient"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice/src/runtimeConfig.ts b/clients/client-pinpoint-sms-voice/src/runtimeConfig.ts index abd82e138be83..15f59c4fccb05 100644 --- a/clients/client-pinpoint-sms-voice/src/runtimeConfig.ts +++ b/clients/client-pinpoint-sms-voice/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PinpointSMSVoiceClientConfig } from "./PinpointSMSVoiceClient"; + +import type { PinpointSMSVoiceClientConfig } from "./PinpointSMSVoiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pinpoint-sms-voice/src/runtimeExtensions.ts b/clients/client-pinpoint-sms-voice/src/runtimeExtensions.ts index 4b818ddad79e4..3fb633eb1efe5 100644 --- a/clients/client-pinpoint-sms-voice/src/runtimeExtensions.ts +++ b/clients/client-pinpoint-sms-voice/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PinpointSMSVoiceExtensionConfiguration } from "./extensionConfiguration"; +import type { PinpointSMSVoiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pinpoint-sms-voice/src/schemas/schemas_0.ts b/clients/client-pinpoint-sms-voice/src/schemas/schemas_0.ts index 407594a79da59..c5d8880071977 100644 --- a/clients/client-pinpoint-sms-voice/src/schemas/schemas_0.ts +++ b/clients/client-pinpoint-sms-voice/src/schemas/schemas_0.ts @@ -73,7 +73,7 @@ const n0 = "com.amazonaws.pinpointsmsvoice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AlreadyExistsException as __AlreadyExistsException, diff --git a/clients/client-pinpoint/package.json b/clients/client-pinpoint/package.json index 3198ad7d93ae9..bc853ee21df76 100644 --- a/clients/client-pinpoint/package.json +++ b/clients/client-pinpoint/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pinpoint/src/Pinpoint.ts b/clients/client-pinpoint/src/Pinpoint.ts index 12c81217f1203..5f01649dfc0b2 100644 --- a/clients/client-pinpoint/src/Pinpoint.ts +++ b/clients/client-pinpoint/src/Pinpoint.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAppCommand, CreateAppCommandInput, CreateAppCommandOutput } from "./commands/CreateAppCommand"; import { @@ -564,7 +564,7 @@ import { VerifyOTPMessageCommandInput, VerifyOTPMessageCommandOutput, } from "./commands/VerifyOTPMessageCommand"; -import { PinpointClient, PinpointClientConfig } from "./PinpointClient"; +import { PinpointClient } from "./PinpointClient"; const commands = { CreateAppCommand, diff --git a/clients/client-pinpoint/src/PinpointClient.ts b/clients/client-pinpoint/src/PinpointClient.ts index 9549eafe57b16..5a042b1734a69 100644 --- a/clients/client-pinpoint/src/PinpointClient.ts +++ b/clients/client-pinpoint/src/PinpointClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPinpointHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateAppCommandInput, CreateAppCommandOutput } from "./commands/CreateAppCommand"; @@ -309,7 +318,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pinpoint/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pinpoint/src/auth/httpAuthExtensionConfiguration.ts index 2950725976aef..d6f692f95d03b 100644 --- a/clients/client-pinpoint/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pinpoint/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PinpointHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PinpointHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pinpoint/src/auth/httpAuthSchemeProvider.ts b/clients/client-pinpoint/src/auth/httpAuthSchemeProvider.ts index ffd6da4f49a82..bf92a1192279d 100644 --- a/clients/client-pinpoint/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pinpoint/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PinpointClientConfig, PinpointClientResolvedConfig } from "../PinpointClient"; +import { type PinpointClientResolvedConfig, PinpointClientConfig } from "../PinpointClient"; /** * @internal diff --git a/clients/client-pinpoint/src/commands/CreateAppCommand.ts b/clients/client-pinpoint/src/commands/CreateAppCommand.ts index 33e2271f6eb8d..9831dff80ca42 100644 --- a/clients/client-pinpoint/src/commands/CreateAppCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppRequest, CreateAppResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateAppRequest, CreateAppResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateCampaignCommand.ts b/clients/client-pinpoint/src/commands/CreateCampaignCommand.ts index b34114e6fe686..e725edc1c9a41 100644 --- a/clients/client-pinpoint/src/commands/CreateCampaignCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateCampaignRequest, CreateCampaignResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateEmailTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreateEmailTemplateCommand.ts index 617114d0e1830..e08e6bc6df358 100644 --- a/clients/client-pinpoint/src/commands/CreateEmailTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateEmailTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEmailTemplateRequest, CreateEmailTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateEmailTemplateRequest, CreateEmailTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateEmailTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateExportJobCommand.ts b/clients/client-pinpoint/src/commands/CreateExportJobCommand.ts index fa506e088e6af..d5dbdd52b4928 100644 --- a/clients/client-pinpoint/src/commands/CreateExportJobCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExportJobRequest, CreateExportJobResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateExportJobRequest, CreateExportJobResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateImportJobCommand.ts b/clients/client-pinpoint/src/commands/CreateImportJobCommand.ts index aa0a1421da30a..fbfd26c70d3b3 100644 --- a/clients/client-pinpoint/src/commands/CreateImportJobCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImportJobRequest, CreateImportJobResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateImportJobRequest, CreateImportJobResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateInAppTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreateInAppTemplateCommand.ts index 9ef621973b249..a62ca31355c5d 100644 --- a/clients/client-pinpoint/src/commands/CreateInAppTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateInAppTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInAppTemplateRequest, CreateInAppTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateInAppTemplateRequest, CreateInAppTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateInAppTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateJourneyCommand.ts b/clients/client-pinpoint/src/commands/CreateJourneyCommand.ts index cb5e4e07c4af9..e20223df77505 100644 --- a/clients/client-pinpoint/src/commands/CreateJourneyCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateJourneyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJourneyRequest, CreateJourneyResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateJourneyRequest, CreateJourneyResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateJourney } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreatePushTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreatePushTemplateCommand.ts index 906697f6545fd..ff706bef66fc8 100644 --- a/clients/client-pinpoint/src/commands/CreatePushTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreatePushTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePushTemplateRequest, CreatePushTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreatePushTemplateRequest, CreatePushTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreatePushTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateRecommenderConfigurationCommand.ts b/clients/client-pinpoint/src/commands/CreateRecommenderConfigurationCommand.ts index 320ae4ecd9cf0..2fb1e649b9e83 100644 --- a/clients/client-pinpoint/src/commands/CreateRecommenderConfigurationCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateRecommenderConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRecommenderConfigurationRequest, CreateRecommenderConfigurationResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateRecommenderConfigurationRequest, CreateRecommenderConfigurationResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateRecommenderConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateSegmentCommand.ts b/clients/client-pinpoint/src/commands/CreateSegmentCommand.ts index d461976d62e6d..d2f2a52402055 100644 --- a/clients/client-pinpoint/src/commands/CreateSegmentCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateSegmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSegmentRequest, CreateSegmentResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateSegmentRequest, CreateSegmentResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateSegment } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateSmsTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreateSmsTemplateCommand.ts index 09ab8d12af90c..c74e8e796bbc1 100644 --- a/clients/client-pinpoint/src/commands/CreateSmsTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateSmsTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSmsTemplateRequest, CreateSmsTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateSmsTemplateRequest, CreateSmsTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateSmsTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/CreateVoiceTemplateCommand.ts b/clients/client-pinpoint/src/commands/CreateVoiceTemplateCommand.ts index 72211dcd562eb..dce3a4243d5a9 100644 --- a/clients/client-pinpoint/src/commands/CreateVoiceTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/CreateVoiceTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVoiceTemplateRequest, CreateVoiceTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { CreateVoiceTemplateRequest, CreateVoiceTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { CreateVoiceTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteAdmChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteAdmChannelCommand.ts index bb28f0358c4a1..c20c98efad5a9 100644 --- a/clients/client-pinpoint/src/commands/DeleteAdmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteAdmChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAdmChannelRequest, DeleteAdmChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteAdmChannelRequest, DeleteAdmChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteAdmChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteApnsChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteApnsChannelCommand.ts index 371664d008921..e7a137357858d 100644 --- a/clients/client-pinpoint/src/commands/DeleteApnsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteApnsChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApnsChannelRequest, DeleteApnsChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteApnsChannelRequest, DeleteApnsChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteApnsChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteApnsSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteApnsSandboxChannelCommand.ts index 7a550bba92581..a1e126c5ab67b 100644 --- a/clients/client-pinpoint/src/commands/DeleteApnsSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteApnsSandboxChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApnsSandboxChannelRequest, DeleteApnsSandboxChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteApnsSandboxChannelRequest, DeleteApnsSandboxChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteApnsSandboxChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteApnsVoipChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteApnsVoipChannelCommand.ts index 2ff75ac22a723..6254e91ab0888 100644 --- a/clients/client-pinpoint/src/commands/DeleteApnsVoipChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteApnsVoipChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApnsVoipChannelRequest, DeleteApnsVoipChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteApnsVoipChannelRequest, DeleteApnsVoipChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteApnsVoipChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteApnsVoipSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteApnsVoipSandboxChannelCommand.ts index b9ae9fd334a5c..07f2e9eb3397f 100644 --- a/clients/client-pinpoint/src/commands/DeleteApnsVoipSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteApnsVoipSandboxChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApnsVoipSandboxChannelRequest, DeleteApnsVoipSandboxChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteApnsVoipSandboxChannelRequest, DeleteApnsVoipSandboxChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteApnsVoipSandboxChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteAppCommand.ts b/clients/client-pinpoint/src/commands/DeleteAppCommand.ts index 7ec7efb93b932..103b134da09b3 100644 --- a/clients/client-pinpoint/src/commands/DeleteAppCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppRequest, DeleteAppResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteAppRequest, DeleteAppResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteBaiduChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteBaiduChannelCommand.ts index 7459ed2e9e0ab..a4be8a6b20630 100644 --- a/clients/client-pinpoint/src/commands/DeleteBaiduChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteBaiduChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBaiduChannelRequest, DeleteBaiduChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteBaiduChannelRequest, DeleteBaiduChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteBaiduChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteCampaignCommand.ts b/clients/client-pinpoint/src/commands/DeleteCampaignCommand.ts index e9fc6a6ae5d75..43e11ac240542 100644 --- a/clients/client-pinpoint/src/commands/DeleteCampaignCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCampaignRequest, DeleteCampaignResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteCampaignRequest, DeleteCampaignResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteEmailChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteEmailChannelCommand.ts index 1206f138c3084..441de268484f8 100644 --- a/clients/client-pinpoint/src/commands/DeleteEmailChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteEmailChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEmailChannelRequest, DeleteEmailChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteEmailChannelRequest, DeleteEmailChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteEmailChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteEmailTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeleteEmailTemplateCommand.ts index 84ed684b50337..dccd9f455c423 100644 --- a/clients/client-pinpoint/src/commands/DeleteEmailTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteEmailTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEmailTemplateRequest, DeleteEmailTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteEmailTemplateRequest, DeleteEmailTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteEmailTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteEndpointCommand.ts b/clients/client-pinpoint/src/commands/DeleteEndpointCommand.ts index a3b85abd4a4fe..22ac0385d6dcf 100644 --- a/clients/client-pinpoint/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEndpointRequest, DeleteEndpointResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteEndpointRequest, DeleteEndpointResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteEventStreamCommand.ts b/clients/client-pinpoint/src/commands/DeleteEventStreamCommand.ts index 20544ce8f8ed3..7069322a2fe37 100644 --- a/clients/client-pinpoint/src/commands/DeleteEventStreamCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteEventStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventStreamRequest, DeleteEventStreamResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteEventStreamRequest, DeleteEventStreamResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteEventStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteGcmChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteGcmChannelCommand.ts index a1c8522b1fbb1..8028c05282717 100644 --- a/clients/client-pinpoint/src/commands/DeleteGcmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteGcmChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGcmChannelRequest, DeleteGcmChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteGcmChannelRequest, DeleteGcmChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteGcmChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteInAppTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeleteInAppTemplateCommand.ts index 2e496d496ec8c..9ac7b69b8637d 100644 --- a/clients/client-pinpoint/src/commands/DeleteInAppTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteInAppTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInAppTemplateRequest, DeleteInAppTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteInAppTemplateRequest, DeleteInAppTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteInAppTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteJourneyCommand.ts b/clients/client-pinpoint/src/commands/DeleteJourneyCommand.ts index 073e8d47d49e9..4f236bceb788c 100644 --- a/clients/client-pinpoint/src/commands/DeleteJourneyCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteJourneyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteJourneyRequest, DeleteJourneyResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteJourneyRequest, DeleteJourneyResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteJourney } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeletePushTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeletePushTemplateCommand.ts index 20cb13182a2e2..da3376e9784ca 100644 --- a/clients/client-pinpoint/src/commands/DeletePushTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeletePushTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePushTemplateRequest, DeletePushTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeletePushTemplateRequest, DeletePushTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeletePushTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteRecommenderConfigurationCommand.ts b/clients/client-pinpoint/src/commands/DeleteRecommenderConfigurationCommand.ts index 3186e216a3e03..cbc53cacfd826 100644 --- a/clients/client-pinpoint/src/commands/DeleteRecommenderConfigurationCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteRecommenderConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecommenderConfigurationRequest, DeleteRecommenderConfigurationResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteRecommenderConfigurationRequest, DeleteRecommenderConfigurationResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteRecommenderConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteSegmentCommand.ts b/clients/client-pinpoint/src/commands/DeleteSegmentCommand.ts index 9fef1db5b06f3..3ad4b537a4df3 100644 --- a/clients/client-pinpoint/src/commands/DeleteSegmentCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteSegmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSegmentRequest, DeleteSegmentResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteSegmentRequest, DeleteSegmentResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteSegment } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteSmsChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteSmsChannelCommand.ts index ab0b57bef2de1..d951fbb961c8a 100644 --- a/clients/client-pinpoint/src/commands/DeleteSmsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteSmsChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSmsChannelRequest, DeleteSmsChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteSmsChannelRequest, DeleteSmsChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteSmsChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteSmsTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeleteSmsTemplateCommand.ts index ba7a081193fd0..020985a7f4136 100644 --- a/clients/client-pinpoint/src/commands/DeleteSmsTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteSmsTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSmsTemplateRequest, DeleteSmsTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteSmsTemplateRequest, DeleteSmsTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteSmsTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteUserEndpointsCommand.ts b/clients/client-pinpoint/src/commands/DeleteUserEndpointsCommand.ts index 58e67d5a7d308..65a60df08fb1a 100644 --- a/clients/client-pinpoint/src/commands/DeleteUserEndpointsCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteUserEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserEndpointsRequest, DeleteUserEndpointsResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteUserEndpointsRequest, DeleteUserEndpointsResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteUserEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteVoiceChannelCommand.ts b/clients/client-pinpoint/src/commands/DeleteVoiceChannelCommand.ts index d67b98270eae8..c9933eb7ee3b3 100644 --- a/clients/client-pinpoint/src/commands/DeleteVoiceChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteVoiceChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceChannelRequest, DeleteVoiceChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteVoiceChannelRequest, DeleteVoiceChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteVoiceChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/DeleteVoiceTemplateCommand.ts b/clients/client-pinpoint/src/commands/DeleteVoiceTemplateCommand.ts index 1cb69ff804852..e7084f9ee51c1 100644 --- a/clients/client-pinpoint/src/commands/DeleteVoiceTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/DeleteVoiceTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVoiceTemplateRequest, DeleteVoiceTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { DeleteVoiceTemplateRequest, DeleteVoiceTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { DeleteVoiceTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetAdmChannelCommand.ts b/clients/client-pinpoint/src/commands/GetAdmChannelCommand.ts index ffe71249f0f4a..84e1431f22613 100644 --- a/clients/client-pinpoint/src/commands/GetAdmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetAdmChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAdmChannelRequest, GetAdmChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetAdmChannelRequest, GetAdmChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetAdmChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetApnsChannelCommand.ts b/clients/client-pinpoint/src/commands/GetApnsChannelCommand.ts index fc96673abd5df..03deb541987e3 100644 --- a/clients/client-pinpoint/src/commands/GetApnsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApnsChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApnsChannelRequest, GetApnsChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetApnsChannelRequest, GetApnsChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetApnsChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetApnsSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/GetApnsSandboxChannelCommand.ts index d859a9df25a6e..bc96be117ee72 100644 --- a/clients/client-pinpoint/src/commands/GetApnsSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApnsSandboxChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApnsSandboxChannelRequest, GetApnsSandboxChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetApnsSandboxChannelRequest, GetApnsSandboxChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetApnsSandboxChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetApnsVoipChannelCommand.ts b/clients/client-pinpoint/src/commands/GetApnsVoipChannelCommand.ts index 4e3802fa44acf..ff59fe2cb3fab 100644 --- a/clients/client-pinpoint/src/commands/GetApnsVoipChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApnsVoipChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApnsVoipChannelRequest, GetApnsVoipChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetApnsVoipChannelRequest, GetApnsVoipChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetApnsVoipChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetApnsVoipSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/GetApnsVoipSandboxChannelCommand.ts index ed0630d915e16..f94508c34647e 100644 --- a/clients/client-pinpoint/src/commands/GetApnsVoipSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApnsVoipSandboxChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApnsVoipSandboxChannelRequest, GetApnsVoipSandboxChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetApnsVoipSandboxChannelRequest, GetApnsVoipSandboxChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetApnsVoipSandboxChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetAppCommand.ts b/clients/client-pinpoint/src/commands/GetAppCommand.ts index f514a0a8441e3..c2b0614cea4e1 100644 --- a/clients/client-pinpoint/src/commands/GetAppCommand.ts +++ b/clients/client-pinpoint/src/commands/GetAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAppRequest, GetAppResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetAppRequest, GetAppResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetApplicationDateRangeKpiCommand.ts b/clients/client-pinpoint/src/commands/GetApplicationDateRangeKpiCommand.ts index c7e144feb5969..0d0b10643cc42 100644 --- a/clients/client-pinpoint/src/commands/GetApplicationDateRangeKpiCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApplicationDateRangeKpiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationDateRangeKpiRequest, GetApplicationDateRangeKpiResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetApplicationDateRangeKpiRequest, GetApplicationDateRangeKpiResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetApplicationDateRangeKpi } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetApplicationSettingsCommand.ts b/clients/client-pinpoint/src/commands/GetApplicationSettingsCommand.ts index 91590ddcaff15..6113f7880696a 100644 --- a/clients/client-pinpoint/src/commands/GetApplicationSettingsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetApplicationSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationSettingsRequest, GetApplicationSettingsResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetApplicationSettingsRequest, GetApplicationSettingsResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetApplicationSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetAppsCommand.ts b/clients/client-pinpoint/src/commands/GetAppsCommand.ts index 82a1764a09745..3af44038a954c 100644 --- a/clients/client-pinpoint/src/commands/GetAppsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetAppsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAppsRequest, GetAppsResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetAppsRequest, GetAppsResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetApps } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetBaiduChannelCommand.ts b/clients/client-pinpoint/src/commands/GetBaiduChannelCommand.ts index fe25e4458d1df..31c523e558373 100644 --- a/clients/client-pinpoint/src/commands/GetBaiduChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetBaiduChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBaiduChannelRequest, GetBaiduChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetBaiduChannelRequest, GetBaiduChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetBaiduChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetCampaignActivitiesCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignActivitiesCommand.ts index 957d6897ac428..b4b3948f5cdb2 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignActivitiesCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignActivitiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignActivitiesRequest, GetCampaignActivitiesResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetCampaignActivitiesRequest, GetCampaignActivitiesResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetCampaignActivities } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetCampaignCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignCommand.ts index d247d812d7d48..6fdeb3ff90401 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignRequest, GetCampaignResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetCampaignRequest, GetCampaignResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetCampaignDateRangeKpiCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignDateRangeKpiCommand.ts index e82f8fc668034..81f175a379ce5 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignDateRangeKpiCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignDateRangeKpiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignDateRangeKpiRequest, GetCampaignDateRangeKpiResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetCampaignDateRangeKpiRequest, GetCampaignDateRangeKpiResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetCampaignDateRangeKpi } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetCampaignVersionCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignVersionCommand.ts index 69fb8d77f71f4..ccdd7c68eba9c 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignVersionCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignVersionRequest, GetCampaignVersionResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetCampaignVersionRequest, GetCampaignVersionResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetCampaignVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetCampaignVersionsCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignVersionsCommand.ts index 2e156388794e2..2e81e7aee9975 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignVersionsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignVersionsRequest, GetCampaignVersionsResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetCampaignVersionsRequest, GetCampaignVersionsResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetCampaignVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetCampaignsCommand.ts b/clients/client-pinpoint/src/commands/GetCampaignsCommand.ts index cbcfce90d7c88..ca8d83c09ceab 100644 --- a/clients/client-pinpoint/src/commands/GetCampaignsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetCampaignsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCampaignsRequest, GetCampaignsResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetCampaignsRequest, GetCampaignsResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetCampaigns } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetChannelsCommand.ts b/clients/client-pinpoint/src/commands/GetChannelsCommand.ts index 19ac2b53d7d98..f31609aaf69a3 100644 --- a/clients/client-pinpoint/src/commands/GetChannelsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChannelsRequest, GetChannelsResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetChannelsRequest, GetChannelsResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetEmailChannelCommand.ts b/clients/client-pinpoint/src/commands/GetEmailChannelCommand.ts index e3d80299893a3..9f9f8fddf93c1 100644 --- a/clients/client-pinpoint/src/commands/GetEmailChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetEmailChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEmailChannelRequest, GetEmailChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetEmailChannelRequest, GetEmailChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetEmailChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetEmailTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetEmailTemplateCommand.ts index ce625f52f6737..5ad1dce0c0698 100644 --- a/clients/client-pinpoint/src/commands/GetEmailTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetEmailTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEmailTemplateRequest, GetEmailTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetEmailTemplateRequest, GetEmailTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetEmailTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetEndpointCommand.ts b/clients/client-pinpoint/src/commands/GetEndpointCommand.ts index 8b3fb755c43cb..ef41142232da2 100644 --- a/clients/client-pinpoint/src/commands/GetEndpointCommand.ts +++ b/clients/client-pinpoint/src/commands/GetEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEndpointRequest, GetEndpointResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetEndpointRequest, GetEndpointResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetEventStreamCommand.ts b/clients/client-pinpoint/src/commands/GetEventStreamCommand.ts index ecbe508587cb8..a8451ec82283d 100644 --- a/clients/client-pinpoint/src/commands/GetEventStreamCommand.ts +++ b/clients/client-pinpoint/src/commands/GetEventStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEventStreamRequest, GetEventStreamResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetEventStreamRequest, GetEventStreamResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetEventStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetExportJobCommand.ts b/clients/client-pinpoint/src/commands/GetExportJobCommand.ts index d132e938f3e47..7fd2d371909b8 100644 --- a/clients/client-pinpoint/src/commands/GetExportJobCommand.ts +++ b/clients/client-pinpoint/src/commands/GetExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExportJobRequest, GetExportJobResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetExportJobRequest, GetExportJobResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetExportJobsCommand.ts b/clients/client-pinpoint/src/commands/GetExportJobsCommand.ts index 3ec95a4f43291..0a794a3b19018 100644 --- a/clients/client-pinpoint/src/commands/GetExportJobsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExportJobsRequest, GetExportJobsResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetExportJobsRequest, GetExportJobsResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetGcmChannelCommand.ts b/clients/client-pinpoint/src/commands/GetGcmChannelCommand.ts index d5f060e88f182..c7073c594c1d1 100644 --- a/clients/client-pinpoint/src/commands/GetGcmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetGcmChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGcmChannelRequest, GetGcmChannelResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetGcmChannelRequest, GetGcmChannelResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetGcmChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetImportJobCommand.ts b/clients/client-pinpoint/src/commands/GetImportJobCommand.ts index 09102e5be479e..0179692649726 100644 --- a/clients/client-pinpoint/src/commands/GetImportJobCommand.ts +++ b/clients/client-pinpoint/src/commands/GetImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImportJobRequest, GetImportJobResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetImportJobRequest, GetImportJobResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetImportJobsCommand.ts b/clients/client-pinpoint/src/commands/GetImportJobsCommand.ts index 0fac07b530564..137e7a479f943 100644 --- a/clients/client-pinpoint/src/commands/GetImportJobsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImportJobsRequest, GetImportJobsResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetImportJobsRequest, GetImportJobsResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetInAppMessagesCommand.ts b/clients/client-pinpoint/src/commands/GetInAppMessagesCommand.ts index 1e5fc99b6515b..b251296c01a99 100644 --- a/clients/client-pinpoint/src/commands/GetInAppMessagesCommand.ts +++ b/clients/client-pinpoint/src/commands/GetInAppMessagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInAppMessagesRequest, GetInAppMessagesResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetInAppMessagesRequest, GetInAppMessagesResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetInAppMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetInAppTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetInAppTemplateCommand.ts index e8d0bd339772a..833c204b8cd7f 100644 --- a/clients/client-pinpoint/src/commands/GetInAppTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetInAppTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInAppTemplateRequest, GetInAppTemplateResponse } from "../models/models_0"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetInAppTemplateRequest, GetInAppTemplateResponse } from "../models/models_0"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetInAppTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetJourneyCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyCommand.ts index a0e8cf2cb44f2..b881a6c9e0b5f 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJourneyRequest } from "../models/models_0"; -import { GetJourneyResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetJourneyRequest } from "../models/models_0"; +import type { GetJourneyResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetJourney } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetJourneyDateRangeKpiCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyDateRangeKpiCommand.ts index 3287746d594a5..5924aa026faa4 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyDateRangeKpiCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyDateRangeKpiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJourneyDateRangeKpiRequest, GetJourneyDateRangeKpiResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetJourneyDateRangeKpiRequest, GetJourneyDateRangeKpiResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetJourneyDateRangeKpi } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetJourneyExecutionActivityMetricsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyExecutionActivityMetricsCommand.ts index 9bb2368c83729..18219ecdcc6bb 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyExecutionActivityMetricsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyExecutionActivityMetricsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetJourneyExecutionActivityMetricsRequest, GetJourneyExecutionActivityMetricsResponse, } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetJourneyExecutionActivityMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetJourneyExecutionMetricsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyExecutionMetricsCommand.ts index 5d30979f11d17..b18cd9a4cf500 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyExecutionMetricsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyExecutionMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJourneyExecutionMetricsRequest, GetJourneyExecutionMetricsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetJourneyExecutionMetricsRequest, GetJourneyExecutionMetricsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetJourneyExecutionMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetJourneyRunExecutionActivityMetricsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyRunExecutionActivityMetricsCommand.ts index a8d4a96634e71..abf678c3ca994 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyRunExecutionActivityMetricsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyRunExecutionActivityMetricsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetJourneyRunExecutionActivityMetricsRequest, GetJourneyRunExecutionActivityMetricsResponse, } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetJourneyRunExecutionActivityMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetJourneyRunExecutionMetricsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyRunExecutionMetricsCommand.ts index 34a553b5ef221..62e59bbb99e49 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyRunExecutionMetricsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyRunExecutionMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJourneyRunExecutionMetricsRequest, GetJourneyRunExecutionMetricsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetJourneyRunExecutionMetricsRequest, GetJourneyRunExecutionMetricsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetJourneyRunExecutionMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetJourneyRunsCommand.ts b/clients/client-pinpoint/src/commands/GetJourneyRunsCommand.ts index 0a636448860df..8dd5676da8828 100644 --- a/clients/client-pinpoint/src/commands/GetJourneyRunsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetJourneyRunsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJourneyRunsRequest, GetJourneyRunsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetJourneyRunsRequest, GetJourneyRunsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetJourneyRuns } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetPushTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetPushTemplateCommand.ts index 7ac6de04aa78e..a2b452be2c653 100644 --- a/clients/client-pinpoint/src/commands/GetPushTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetPushTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPushTemplateRequest, GetPushTemplateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetPushTemplateRequest, GetPushTemplateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetPushTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetRecommenderConfigurationCommand.ts b/clients/client-pinpoint/src/commands/GetRecommenderConfigurationCommand.ts index 1d2954e37a7e1..fc5eff041e6d5 100644 --- a/clients/client-pinpoint/src/commands/GetRecommenderConfigurationCommand.ts +++ b/clients/client-pinpoint/src/commands/GetRecommenderConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommenderConfigurationRequest, GetRecommenderConfigurationResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetRecommenderConfigurationRequest, GetRecommenderConfigurationResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetRecommenderConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetRecommenderConfigurationsCommand.ts b/clients/client-pinpoint/src/commands/GetRecommenderConfigurationsCommand.ts index 6feb505679bc5..53c29942acd12 100644 --- a/clients/client-pinpoint/src/commands/GetRecommenderConfigurationsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetRecommenderConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommenderConfigurationsRequest, GetRecommenderConfigurationsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetRecommenderConfigurationsRequest, GetRecommenderConfigurationsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetRecommenderConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetSegmentCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentCommand.ts index e93619f7b6381..d57042b4a53a0 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentRequest, GetSegmentResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetSegmentRequest, GetSegmentResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetSegment } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetSegmentExportJobsCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentExportJobsCommand.ts index b34245c16721f..3f91348d98132 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentExportJobsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentExportJobsRequest, GetSegmentExportJobsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetSegmentExportJobsRequest, GetSegmentExportJobsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetSegmentExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetSegmentImportJobsCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentImportJobsCommand.ts index 49781ebab51cb..279bf98df446d 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentImportJobsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentImportJobsRequest, GetSegmentImportJobsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetSegmentImportJobsRequest, GetSegmentImportJobsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetSegmentImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetSegmentVersionCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentVersionCommand.ts index 5874fcb05f884..50841334ef151 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentVersionCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentVersionRequest, GetSegmentVersionResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetSegmentVersionRequest, GetSegmentVersionResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetSegmentVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetSegmentVersionsCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentVersionsCommand.ts index b3e6d2d4e0620..82e5563954b4e 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentVersionsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentVersionsRequest, GetSegmentVersionsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetSegmentVersionsRequest, GetSegmentVersionsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetSegmentVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetSegmentsCommand.ts b/clients/client-pinpoint/src/commands/GetSegmentsCommand.ts index 96b23f839157c..84fea54b7fa2d 100644 --- a/clients/client-pinpoint/src/commands/GetSegmentsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSegmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentsRequest, GetSegmentsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetSegmentsRequest, GetSegmentsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetSegments } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetSmsChannelCommand.ts b/clients/client-pinpoint/src/commands/GetSmsChannelCommand.ts index 90a9abf2efe67..5ebb2171a6614 100644 --- a/clients/client-pinpoint/src/commands/GetSmsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSmsChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSmsChannelRequest, GetSmsChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetSmsChannelRequest, GetSmsChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetSmsChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetSmsTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetSmsTemplateCommand.ts index 766453854de27..4afa022cc2127 100644 --- a/clients/client-pinpoint/src/commands/GetSmsTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetSmsTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSmsTemplateRequest, GetSmsTemplateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetSmsTemplateRequest, GetSmsTemplateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetSmsTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetUserEndpointsCommand.ts b/clients/client-pinpoint/src/commands/GetUserEndpointsCommand.ts index dba74b0713a07..3cc2cad8ad146 100644 --- a/clients/client-pinpoint/src/commands/GetUserEndpointsCommand.ts +++ b/clients/client-pinpoint/src/commands/GetUserEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserEndpointsRequest, GetUserEndpointsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetUserEndpointsRequest, GetUserEndpointsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetUserEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetVoiceChannelCommand.ts b/clients/client-pinpoint/src/commands/GetVoiceChannelCommand.ts index 5364cf62ed205..9d0b9169afaf8 100644 --- a/clients/client-pinpoint/src/commands/GetVoiceChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/GetVoiceChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceChannelRequest, GetVoiceChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetVoiceChannelRequest, GetVoiceChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetVoiceChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/GetVoiceTemplateCommand.ts b/clients/client-pinpoint/src/commands/GetVoiceTemplateCommand.ts index 4da49359115ee..9acb14959a139 100644 --- a/clients/client-pinpoint/src/commands/GetVoiceTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/GetVoiceTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVoiceTemplateRequest, GetVoiceTemplateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { GetVoiceTemplateRequest, GetVoiceTemplateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { GetVoiceTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/ListJourneysCommand.ts b/clients/client-pinpoint/src/commands/ListJourneysCommand.ts index 1d44dce5eae36..604e58b3e89f0 100644 --- a/clients/client-pinpoint/src/commands/ListJourneysCommand.ts +++ b/clients/client-pinpoint/src/commands/ListJourneysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJourneysRequest, ListJourneysResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { ListJourneysRequest, ListJourneysResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { ListJourneys } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/ListTagsForResourceCommand.ts b/clients/client-pinpoint/src/commands/ListTagsForResourceCommand.ts index 34afe77754a67..ba62c694232a5 100644 --- a/clients/client-pinpoint/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pinpoint/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/ListTemplateVersionsCommand.ts b/clients/client-pinpoint/src/commands/ListTemplateVersionsCommand.ts index ae9746cf52f0d..95595cfb2c80d 100644 --- a/clients/client-pinpoint/src/commands/ListTemplateVersionsCommand.ts +++ b/clients/client-pinpoint/src/commands/ListTemplateVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTemplateVersionsRequest, ListTemplateVersionsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { ListTemplateVersionsRequest, ListTemplateVersionsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { ListTemplateVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/ListTemplatesCommand.ts b/clients/client-pinpoint/src/commands/ListTemplatesCommand.ts index 1398db16c33ef..2846452c0e6ef 100644 --- a/clients/client-pinpoint/src/commands/ListTemplatesCommand.ts +++ b/clients/client-pinpoint/src/commands/ListTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { ListTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/PhoneNumberValidateCommand.ts b/clients/client-pinpoint/src/commands/PhoneNumberValidateCommand.ts index c63865c9f1fb1..c3333b8ce090a 100644 --- a/clients/client-pinpoint/src/commands/PhoneNumberValidateCommand.ts +++ b/clients/client-pinpoint/src/commands/PhoneNumberValidateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PhoneNumberValidateRequest, PhoneNumberValidateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { PhoneNumberValidateRequest, PhoneNumberValidateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { PhoneNumberValidate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/PutEventStreamCommand.ts b/clients/client-pinpoint/src/commands/PutEventStreamCommand.ts index 61af7bfc9bf46..80591daf43bcd 100644 --- a/clients/client-pinpoint/src/commands/PutEventStreamCommand.ts +++ b/clients/client-pinpoint/src/commands/PutEventStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEventStreamRequest, PutEventStreamResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { PutEventStreamRequest, PutEventStreamResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { PutEventStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/PutEventsCommand.ts b/clients/client-pinpoint/src/commands/PutEventsCommand.ts index aed2fbe477f9e..d4306d0c3d533 100644 --- a/clients/client-pinpoint/src/commands/PutEventsCommand.ts +++ b/clients/client-pinpoint/src/commands/PutEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEventsRequest, PutEventsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { PutEventsRequest, PutEventsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { PutEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/RemoveAttributesCommand.ts b/clients/client-pinpoint/src/commands/RemoveAttributesCommand.ts index 4df48d67d4ab1..aaded24a2dc02 100644 --- a/clients/client-pinpoint/src/commands/RemoveAttributesCommand.ts +++ b/clients/client-pinpoint/src/commands/RemoveAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveAttributesRequest, RemoveAttributesResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { RemoveAttributesRequest, RemoveAttributesResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { RemoveAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/SendMessagesCommand.ts b/clients/client-pinpoint/src/commands/SendMessagesCommand.ts index 464aa793eea19..7ad4ad80c4be6 100644 --- a/clients/client-pinpoint/src/commands/SendMessagesCommand.ts +++ b/clients/client-pinpoint/src/commands/SendMessagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendMessagesRequest, SendMessagesResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { SendMessagesRequest, SendMessagesResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { SendMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/SendOTPMessageCommand.ts b/clients/client-pinpoint/src/commands/SendOTPMessageCommand.ts index cc655a6be4f10..ea71bc3876d3b 100644 --- a/clients/client-pinpoint/src/commands/SendOTPMessageCommand.ts +++ b/clients/client-pinpoint/src/commands/SendOTPMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendOTPMessageRequest, SendOTPMessageResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { SendOTPMessageRequest, SendOTPMessageResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { SendOTPMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/SendUsersMessagesCommand.ts b/clients/client-pinpoint/src/commands/SendUsersMessagesCommand.ts index 6c6c5208efc11..0d04d119f4f75 100644 --- a/clients/client-pinpoint/src/commands/SendUsersMessagesCommand.ts +++ b/clients/client-pinpoint/src/commands/SendUsersMessagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendUsersMessagesRequest, SendUsersMessagesResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { SendUsersMessagesRequest, SendUsersMessagesResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { SendUsersMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/TagResourceCommand.ts b/clients/client-pinpoint/src/commands/TagResourceCommand.ts index 01243acd190d9..db128c5f60037 100644 --- a/clients/client-pinpoint/src/commands/TagResourceCommand.ts +++ b/clients/client-pinpoint/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { TagResourceRequest } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UntagResourceCommand.ts b/clients/client-pinpoint/src/commands/UntagResourceCommand.ts index 0f584e66a001c..0867e9197541f 100644 --- a/clients/client-pinpoint/src/commands/UntagResourceCommand.ts +++ b/clients/client-pinpoint/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UntagResourceRequest } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateAdmChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateAdmChannelCommand.ts index df789b57f1a96..252d6a1516801 100644 --- a/clients/client-pinpoint/src/commands/UpdateAdmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateAdmChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAdmChannelRequest, UpdateAdmChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateAdmChannelRequest, UpdateAdmChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateAdmChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateApnsChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateApnsChannelCommand.ts index a8d583d610e48..15e7d8f6302c5 100644 --- a/clients/client-pinpoint/src/commands/UpdateApnsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApnsChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApnsChannelRequest, UpdateApnsChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateApnsChannelRequest, UpdateApnsChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateApnsChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateApnsSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateApnsSandboxChannelCommand.ts index c412f868637ae..b799b3f01a7f2 100644 --- a/clients/client-pinpoint/src/commands/UpdateApnsSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApnsSandboxChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApnsSandboxChannelRequest, UpdateApnsSandboxChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateApnsSandboxChannelRequest, UpdateApnsSandboxChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateApnsSandboxChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateApnsVoipChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateApnsVoipChannelCommand.ts index 7d1a7ac931460..3900c5485642b 100644 --- a/clients/client-pinpoint/src/commands/UpdateApnsVoipChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApnsVoipChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApnsVoipChannelRequest, UpdateApnsVoipChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateApnsVoipChannelRequest, UpdateApnsVoipChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateApnsVoipChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateApnsVoipSandboxChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateApnsVoipSandboxChannelCommand.ts index fe23c56b18b13..c12011abc8750 100644 --- a/clients/client-pinpoint/src/commands/UpdateApnsVoipSandboxChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApnsVoipSandboxChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApnsVoipSandboxChannelRequest, UpdateApnsVoipSandboxChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateApnsVoipSandboxChannelRequest, UpdateApnsVoipSandboxChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateApnsVoipSandboxChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateApplicationSettingsCommand.ts b/clients/client-pinpoint/src/commands/UpdateApplicationSettingsCommand.ts index 664dd6a90f987..c86beaeafad24 100644 --- a/clients/client-pinpoint/src/commands/UpdateApplicationSettingsCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateApplicationSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationSettingsRequest, UpdateApplicationSettingsResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateApplicationSettingsRequest, UpdateApplicationSettingsResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateApplicationSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateBaiduChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateBaiduChannelCommand.ts index 990dd3ed0f892..ad371e17efcab 100644 --- a/clients/client-pinpoint/src/commands/UpdateBaiduChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateBaiduChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBaiduChannelRequest, UpdateBaiduChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateBaiduChannelRequest, UpdateBaiduChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateBaiduChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateCampaignCommand.ts b/clients/client-pinpoint/src/commands/UpdateCampaignCommand.ts index 477b835d37b66..05c4329094397 100644 --- a/clients/client-pinpoint/src/commands/UpdateCampaignCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateCampaignCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCampaignRequest, UpdateCampaignResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateCampaignRequest, UpdateCampaignResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateCampaign } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateEmailChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateEmailChannelCommand.ts index 8ef5daddca03e..c28ae9a39953c 100644 --- a/clients/client-pinpoint/src/commands/UpdateEmailChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateEmailChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEmailChannelRequest, UpdateEmailChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateEmailChannelRequest, UpdateEmailChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateEmailChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateEmailTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdateEmailTemplateCommand.ts index 4592cae73c3d7..f47cb0f1e0963 100644 --- a/clients/client-pinpoint/src/commands/UpdateEmailTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateEmailTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEmailTemplateRequest, UpdateEmailTemplateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateEmailTemplateRequest, UpdateEmailTemplateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateEmailTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateEndpointCommand.ts b/clients/client-pinpoint/src/commands/UpdateEndpointCommand.ts index 9a0830539b313..513f1e42757b0 100644 --- a/clients/client-pinpoint/src/commands/UpdateEndpointCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEndpointRequest, UpdateEndpointResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateEndpointRequest, UpdateEndpointResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateEndpointsBatchCommand.ts b/clients/client-pinpoint/src/commands/UpdateEndpointsBatchCommand.ts index 379534bd99c19..2667c2b2cf664 100644 --- a/clients/client-pinpoint/src/commands/UpdateEndpointsBatchCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateEndpointsBatchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEndpointsBatchRequest, UpdateEndpointsBatchResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateEndpointsBatchRequest, UpdateEndpointsBatchResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateEndpointsBatch } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateGcmChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateGcmChannelCommand.ts index 32022ef30d1a3..95fbbdac21e92 100644 --- a/clients/client-pinpoint/src/commands/UpdateGcmChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateGcmChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGcmChannelRequest, UpdateGcmChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateGcmChannelRequest, UpdateGcmChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateGcmChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateInAppTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdateInAppTemplateCommand.ts index 4b222a0bfb145..ec9c75df71b15 100644 --- a/clients/client-pinpoint/src/commands/UpdateInAppTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateInAppTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInAppTemplateRequest, UpdateInAppTemplateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateInAppTemplateRequest, UpdateInAppTemplateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateInAppTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateJourneyCommand.ts b/clients/client-pinpoint/src/commands/UpdateJourneyCommand.ts index 820b859d7092c..8096032bfd3fe 100644 --- a/clients/client-pinpoint/src/commands/UpdateJourneyCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateJourneyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateJourneyRequest, UpdateJourneyResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateJourneyRequest, UpdateJourneyResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateJourney } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateJourneyStateCommand.ts b/clients/client-pinpoint/src/commands/UpdateJourneyStateCommand.ts index 80ad087658b0e..48d458d6c883d 100644 --- a/clients/client-pinpoint/src/commands/UpdateJourneyStateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateJourneyStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateJourneyStateRequest, UpdateJourneyStateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateJourneyStateRequest, UpdateJourneyStateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateJourneyState } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdatePushTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdatePushTemplateCommand.ts index 8d87f0e8282fc..6dd0fc939106c 100644 --- a/clients/client-pinpoint/src/commands/UpdatePushTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdatePushTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePushTemplateRequest, UpdatePushTemplateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdatePushTemplateRequest, UpdatePushTemplateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdatePushTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateRecommenderConfigurationCommand.ts b/clients/client-pinpoint/src/commands/UpdateRecommenderConfigurationCommand.ts index 6c3fa3d0ebf8e..8f94fa5e2a0eb 100644 --- a/clients/client-pinpoint/src/commands/UpdateRecommenderConfigurationCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateRecommenderConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecommenderConfigurationRequest, UpdateRecommenderConfigurationResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateRecommenderConfigurationRequest, UpdateRecommenderConfigurationResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateRecommenderConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateSegmentCommand.ts b/clients/client-pinpoint/src/commands/UpdateSegmentCommand.ts index c65415d00e2af..20afcc79f681e 100644 --- a/clients/client-pinpoint/src/commands/UpdateSegmentCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateSegmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSegmentRequest, UpdateSegmentResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateSegmentRequest, UpdateSegmentResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateSegment } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateSmsChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateSmsChannelCommand.ts index 90ae07c376af8..941f71c54c661 100644 --- a/clients/client-pinpoint/src/commands/UpdateSmsChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateSmsChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSmsChannelRequest, UpdateSmsChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateSmsChannelRequest, UpdateSmsChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateSmsChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateSmsTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdateSmsTemplateCommand.ts index 83f4df9ba2ea7..129850d993451 100644 --- a/clients/client-pinpoint/src/commands/UpdateSmsTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateSmsTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSmsTemplateRequest, UpdateSmsTemplateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateSmsTemplateRequest, UpdateSmsTemplateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateSmsTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateTemplateActiveVersionCommand.ts b/clients/client-pinpoint/src/commands/UpdateTemplateActiveVersionCommand.ts index 0aaac35851148..c879065fdc9dd 100644 --- a/clients/client-pinpoint/src/commands/UpdateTemplateActiveVersionCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateTemplateActiveVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTemplateActiveVersionRequest, UpdateTemplateActiveVersionResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateTemplateActiveVersionRequest, UpdateTemplateActiveVersionResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateTemplateActiveVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateVoiceChannelCommand.ts b/clients/client-pinpoint/src/commands/UpdateVoiceChannelCommand.ts index 7dad2e73f901b..256cd8b054e8b 100644 --- a/clients/client-pinpoint/src/commands/UpdateVoiceChannelCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateVoiceChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVoiceChannelRequest, UpdateVoiceChannelResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateVoiceChannelRequest, UpdateVoiceChannelResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateVoiceChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/UpdateVoiceTemplateCommand.ts b/clients/client-pinpoint/src/commands/UpdateVoiceTemplateCommand.ts index 7c195e4fb4279..da817fe3d139d 100644 --- a/clients/client-pinpoint/src/commands/UpdateVoiceTemplateCommand.ts +++ b/clients/client-pinpoint/src/commands/UpdateVoiceTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVoiceTemplateRequest, UpdateVoiceTemplateResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { UpdateVoiceTemplateRequest, UpdateVoiceTemplateResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { UpdateVoiceTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/commands/VerifyOTPMessageCommand.ts b/clients/client-pinpoint/src/commands/VerifyOTPMessageCommand.ts index e871b033ee447..2ceeac2eff96d 100644 --- a/clients/client-pinpoint/src/commands/VerifyOTPMessageCommand.ts +++ b/clients/client-pinpoint/src/commands/VerifyOTPMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyOTPMessageRequest, VerifyOTPMessageResponse } from "../models/models_1"; -import { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; +import type { VerifyOTPMessageRequest, VerifyOTPMessageResponse } from "../models/models_1"; +import type { PinpointClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PinpointClient"; import { VerifyOTPMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-pinpoint/src/endpoint/EndpointParameters.ts b/clients/client-pinpoint/src/endpoint/EndpointParameters.ts index 741156a156d4f..10ffd49a1bb8b 100644 --- a/clients/client-pinpoint/src/endpoint/EndpointParameters.ts +++ b/clients/client-pinpoint/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pinpoint/src/endpoint/endpointResolver.ts b/clients/client-pinpoint/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pinpoint/src/endpoint/endpointResolver.ts +++ b/clients/client-pinpoint/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pinpoint/src/extensionConfiguration.ts b/clients/client-pinpoint/src/extensionConfiguration.ts index 308c639acd6e5..a7e25efe4ca30 100644 --- a/clients/client-pinpoint/src/extensionConfiguration.ts +++ b/clients/client-pinpoint/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pinpoint/src/models/PinpointServiceException.ts b/clients/client-pinpoint/src/models/PinpointServiceException.ts index decc53f1415e3..4ee9e9e13d3a8 100644 --- a/clients/client-pinpoint/src/models/PinpointServiceException.ts +++ b/clients/client-pinpoint/src/models/PinpointServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pinpoint/src/models/errors.ts b/clients/client-pinpoint/src/models/errors.ts index 605865e1b7d46..c2bbd7512505f 100644 --- a/clients/client-pinpoint/src/models/errors.ts +++ b/clients/client-pinpoint/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PinpointServiceException as __BaseException } from "./PinpointServiceException"; diff --git a/clients/client-pinpoint/src/runtimeConfig.browser.ts b/clients/client-pinpoint/src/runtimeConfig.browser.ts index 511bc4f7d7008..073384596617d 100644 --- a/clients/client-pinpoint/src/runtimeConfig.browser.ts +++ b/clients/client-pinpoint/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PinpointClientConfig } from "./PinpointClient"; + +import type { PinpointClientConfig } from "./PinpointClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pinpoint/src/runtimeConfig.native.ts b/clients/client-pinpoint/src/runtimeConfig.native.ts index a32d6311fd5d9..1d5194beff4e3 100644 --- a/clients/client-pinpoint/src/runtimeConfig.native.ts +++ b/clients/client-pinpoint/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PinpointClientConfig } from "./PinpointClient"; +import type { PinpointClientConfig } from "./PinpointClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pinpoint/src/runtimeConfig.shared.ts b/clients/client-pinpoint/src/runtimeConfig.shared.ts index 513293a77aa0b..8976e531caaab 100644 --- a/clients/client-pinpoint/src/runtimeConfig.shared.ts +++ b/clients/client-pinpoint/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPinpointHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PinpointClientConfig } from "./PinpointClient"; +import type { PinpointClientConfig } from "./PinpointClient"; /** * @internal diff --git a/clients/client-pinpoint/src/runtimeConfig.ts b/clients/client-pinpoint/src/runtimeConfig.ts index 5266d2ec2ba8b..725ca551fc5e3 100644 --- a/clients/client-pinpoint/src/runtimeConfig.ts +++ b/clients/client-pinpoint/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PinpointClientConfig } from "./PinpointClient"; + +import type { PinpointClientConfig } from "./PinpointClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pinpoint/src/runtimeExtensions.ts b/clients/client-pinpoint/src/runtimeExtensions.ts index 72f34549064df..7e659a268f5df 100644 --- a/clients/client-pinpoint/src/runtimeExtensions.ts +++ b/clients/client-pinpoint/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PinpointExtensionConfiguration } from "./extensionConfiguration"; +import type { PinpointExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pinpoint/src/schemas/schemas_0.ts b/clients/client-pinpoint/src/schemas/schemas_0.ts index 2f0d7597154c4..2073a68b86330 100644 --- a/clients/client-pinpoint/src/schemas/schemas_0.ts +++ b/clients/client-pinpoint/src/schemas/schemas_0.ts @@ -1002,7 +1002,7 @@ const n0 = "com.amazonaws.pinpoint"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-pipes/package.json b/clients/client-pipes/package.json index 374f55d474af4..2074e5b5a8586 100644 --- a/clients/client-pipes/package.json +++ b/clients/client-pipes/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pipes/src/Pipes.ts b/clients/client-pipes/src/Pipes.ts index e9a286ca587a1..22747c1336d39 100644 --- a/clients/client-pipes/src/Pipes.ts +++ b/clients/client-pipes/src/Pipes.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreatePipeCommand, CreatePipeCommandInput, CreatePipeCommandOutput } from "./commands/CreatePipeCommand"; import { DeletePipeCommand, DeletePipeCommandInput, DeletePipeCommandOutput } from "./commands/DeletePipeCommand"; @@ -24,7 +24,7 @@ import { UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdatePipeCommand, UpdatePipeCommandInput, UpdatePipeCommandOutput } from "./commands/UpdatePipeCommand"; -import { PipesClient, PipesClientConfig } from "./PipesClient"; +import { PipesClient } from "./PipesClient"; const commands = { CreatePipeCommand, diff --git a/clients/client-pipes/src/PipesClient.ts b/clients/client-pipes/src/PipesClient.ts index 5b5aafa2cf32c..3b1e7b5e219e2 100644 --- a/clients/client-pipes/src/PipesClient.ts +++ b/clients/client-pipes/src/PipesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPipesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreatePipeCommandInput, CreatePipeCommandOutput } from "./commands/CreatePipeCommand"; @@ -77,7 +86,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pipes/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pipes/src/auth/httpAuthExtensionConfiguration.ts index 69eaa67dcdb1e..cfe4690806364 100644 --- a/clients/client-pipes/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pipes/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PipesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PipesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pipes/src/auth/httpAuthSchemeProvider.ts b/clients/client-pipes/src/auth/httpAuthSchemeProvider.ts index b1031e9e31d80..6911acd120e6c 100644 --- a/clients/client-pipes/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pipes/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PipesClientConfig, PipesClientResolvedConfig } from "../PipesClient"; +import { type PipesClientResolvedConfig, PipesClientConfig } from "../PipesClient"; /** * @internal diff --git a/clients/client-pipes/src/commands/CreatePipeCommand.ts b/clients/client-pipes/src/commands/CreatePipeCommand.ts index 2718b79b400b9..34e9ccbf8f5bc 100644 --- a/clients/client-pipes/src/commands/CreatePipeCommand.ts +++ b/clients/client-pipes/src/commands/CreatePipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePipeRequest, CreatePipeResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { CreatePipeRequest, CreatePipeResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { CreatePipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/commands/DeletePipeCommand.ts b/clients/client-pipes/src/commands/DeletePipeCommand.ts index 0f8b6137bd972..38904d4bda987 100644 --- a/clients/client-pipes/src/commands/DeletePipeCommand.ts +++ b/clients/client-pipes/src/commands/DeletePipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePipeRequest, DeletePipeResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { DeletePipeRequest, DeletePipeResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { DeletePipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/commands/DescribePipeCommand.ts b/clients/client-pipes/src/commands/DescribePipeCommand.ts index 5286799bad085..02b35060ce1fb 100644 --- a/clients/client-pipes/src/commands/DescribePipeCommand.ts +++ b/clients/client-pipes/src/commands/DescribePipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePipeRequest, DescribePipeResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { DescribePipeRequest, DescribePipeResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { DescribePipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/commands/ListPipesCommand.ts b/clients/client-pipes/src/commands/ListPipesCommand.ts index cc9cc122e666e..c638d045bfeed 100644 --- a/clients/client-pipes/src/commands/ListPipesCommand.ts +++ b/clients/client-pipes/src/commands/ListPipesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipesRequest, ListPipesResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { ListPipesRequest, ListPipesResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { ListPipes } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/commands/ListTagsForResourceCommand.ts b/clients/client-pipes/src/commands/ListTagsForResourceCommand.ts index bd92b3e43b34b..fa419611d115c 100644 --- a/clients/client-pipes/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-pipes/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/commands/StartPipeCommand.ts b/clients/client-pipes/src/commands/StartPipeCommand.ts index c1c3bae6a0655..704c04e63116a 100644 --- a/clients/client-pipes/src/commands/StartPipeCommand.ts +++ b/clients/client-pipes/src/commands/StartPipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPipeRequest, StartPipeResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { StartPipeRequest, StartPipeResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { StartPipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/commands/StopPipeCommand.ts b/clients/client-pipes/src/commands/StopPipeCommand.ts index 4e30ee4e37b03..c0ae0ee7309a7 100644 --- a/clients/client-pipes/src/commands/StopPipeCommand.ts +++ b/clients/client-pipes/src/commands/StopPipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopPipeRequest, StopPipeResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { StopPipeRequest, StopPipeResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { StopPipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/commands/TagResourceCommand.ts b/clients/client-pipes/src/commands/TagResourceCommand.ts index 294844b3b7f4e..bd71e66fbdbf1 100644 --- a/clients/client-pipes/src/commands/TagResourceCommand.ts +++ b/clients/client-pipes/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/commands/UntagResourceCommand.ts b/clients/client-pipes/src/commands/UntagResourceCommand.ts index 43fa2f6cebb10..8be62a6a37fdb 100644 --- a/clients/client-pipes/src/commands/UntagResourceCommand.ts +++ b/clients/client-pipes/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/commands/UpdatePipeCommand.ts b/clients/client-pipes/src/commands/UpdatePipeCommand.ts index 67fe1bf8f75d3..ffd7fcf0e3936 100644 --- a/clients/client-pipes/src/commands/UpdatePipeCommand.ts +++ b/clients/client-pipes/src/commands/UpdatePipeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePipeRequest, UpdatePipeResponse } from "../models/models_0"; -import { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; +import type { UpdatePipeRequest, UpdatePipeResponse } from "../models/models_0"; +import type { PipesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PipesClient"; import { UpdatePipe } from "../schemas/schemas_0"; /** diff --git a/clients/client-pipes/src/endpoint/EndpointParameters.ts b/clients/client-pipes/src/endpoint/EndpointParameters.ts index b42abb560e273..a288706a08522 100644 --- a/clients/client-pipes/src/endpoint/EndpointParameters.ts +++ b/clients/client-pipes/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pipes/src/endpoint/endpointResolver.ts b/clients/client-pipes/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pipes/src/endpoint/endpointResolver.ts +++ b/clients/client-pipes/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pipes/src/extensionConfiguration.ts b/clients/client-pipes/src/extensionConfiguration.ts index 56ae9677e95e4..a3f446282c30e 100644 --- a/clients/client-pipes/src/extensionConfiguration.ts +++ b/clients/client-pipes/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pipes/src/models/PipesServiceException.ts b/clients/client-pipes/src/models/PipesServiceException.ts index 356ff74673b5b..3733f4de9e656 100644 --- a/clients/client-pipes/src/models/PipesServiceException.ts +++ b/clients/client-pipes/src/models/PipesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pipes/src/models/errors.ts b/clients/client-pipes/src/models/errors.ts index d814e8f2d4a7c..020000b99a38e 100644 --- a/clients/client-pipes/src/models/errors.ts +++ b/clients/client-pipes/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionField } from "./models_0"; import { PipesServiceException as __BaseException } from "./PipesServiceException"; diff --git a/clients/client-pipes/src/pagination/Interfaces.ts b/clients/client-pipes/src/pagination/Interfaces.ts index 5df68b246df54..0135220e4ba93 100644 --- a/clients/client-pipes/src/pagination/Interfaces.ts +++ b/clients/client-pipes/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PipesClient } from "../PipesClient"; diff --git a/clients/client-pipes/src/pagination/ListPipesPaginator.ts b/clients/client-pipes/src/pagination/ListPipesPaginator.ts index 10e78218e3676..eed268e7a3347 100644 --- a/clients/client-pipes/src/pagination/ListPipesPaginator.ts +++ b/clients/client-pipes/src/pagination/ListPipesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipesCommand, ListPipesCommandInput, ListPipesCommandOutput } from "../commands/ListPipesCommand"; import { PipesClient } from "../PipesClient"; diff --git a/clients/client-pipes/src/runtimeConfig.browser.ts b/clients/client-pipes/src/runtimeConfig.browser.ts index 4f2811ebbfb1c..8825a6ca64bd3 100644 --- a/clients/client-pipes/src/runtimeConfig.browser.ts +++ b/clients/client-pipes/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PipesClientConfig } from "./PipesClient"; + +import type { PipesClientConfig } from "./PipesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pipes/src/runtimeConfig.native.ts b/clients/client-pipes/src/runtimeConfig.native.ts index 81f393b19e78b..6467f6086ff1f 100644 --- a/clients/client-pipes/src/runtimeConfig.native.ts +++ b/clients/client-pipes/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PipesClientConfig } from "./PipesClient"; +import type { PipesClientConfig } from "./PipesClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pipes/src/runtimeConfig.shared.ts b/clients/client-pipes/src/runtimeConfig.shared.ts index 503c915fb69df..941016c104a71 100644 --- a/clients/client-pipes/src/runtimeConfig.shared.ts +++ b/clients/client-pipes/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPipesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PipesClientConfig } from "./PipesClient"; +import type { PipesClientConfig } from "./PipesClient"; /** * @internal diff --git a/clients/client-pipes/src/runtimeConfig.ts b/clients/client-pipes/src/runtimeConfig.ts index 133b8dd019d0d..aab3788fc5d97 100644 --- a/clients/client-pipes/src/runtimeConfig.ts +++ b/clients/client-pipes/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PipesClientConfig } from "./PipesClient"; + +import type { PipesClientConfig } from "./PipesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pipes/src/runtimeExtensions.ts b/clients/client-pipes/src/runtimeExtensions.ts index 85b6d936c38ac..0949c49b4b6c3 100644 --- a/clients/client-pipes/src/runtimeExtensions.ts +++ b/clients/client-pipes/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PipesExtensionConfiguration } from "./extensionConfiguration"; +import type { PipesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pipes/src/schemas/schemas_0.ts b/clients/client-pipes/src/schemas/schemas_0.ts index 8c015430d1fea..a3eeff7404953 100644 --- a/clients/client-pipes/src/schemas/schemas_0.ts +++ b/clients/client-pipes/src/schemas/schemas_0.ts @@ -335,7 +335,7 @@ const n0 = "com.amazonaws.pipes"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-polly/package.json b/clients/client-polly/package.json index face523d848fa..93b49486ee30f 100644 --- a/clients/client-polly/package.json +++ b/clients/client-polly/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-polly/src/Polly.ts b/clients/client-polly/src/Polly.ts index 9ea96430aa4dc..33d6f615d3ab5 100644 --- a/clients/client-polly/src/Polly.ts +++ b/clients/client-polly/src/Polly.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteLexiconCommand, @@ -39,7 +39,7 @@ import { SynthesizeSpeechCommandInput, SynthesizeSpeechCommandOutput, } from "./commands/SynthesizeSpeechCommand"; -import { PollyClient, PollyClientConfig } from "./PollyClient"; +import { PollyClient } from "./PollyClient"; const commands = { DeleteLexiconCommand, diff --git a/clients/client-polly/src/PollyClient.ts b/clients/client-polly/src/PollyClient.ts index 6d1dfe5421c5a..ae434fd25b546 100644 --- a/clients/client-polly/src/PollyClient.ts +++ b/clients/client-polly/src/PollyClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPollyHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DeleteLexiconCommandInput, DeleteLexiconCommandOutput } from "./commands/DeleteLexiconCommand"; @@ -83,7 +92,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-polly/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-polly/src/auth/httpAuthExtensionConfiguration.ts index fb010a46c7df4..c439698b38d01 100644 --- a/clients/client-polly/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-polly/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PollyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PollyHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-polly/src/auth/httpAuthSchemeProvider.ts b/clients/client-polly/src/auth/httpAuthSchemeProvider.ts index bfd2039b43c2f..cd961ea747895 100644 --- a/clients/client-polly/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-polly/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PollyClientConfig, PollyClientResolvedConfig } from "../PollyClient"; +import { type PollyClientResolvedConfig, PollyClientConfig } from "../PollyClient"; /** * @internal diff --git a/clients/client-polly/src/commands/DeleteLexiconCommand.ts b/clients/client-polly/src/commands/DeleteLexiconCommand.ts index 792ff3144d4c2..389142468106a 100644 --- a/clients/client-polly/src/commands/DeleteLexiconCommand.ts +++ b/clients/client-polly/src/commands/DeleteLexiconCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLexiconInput, DeleteLexiconOutput } from "../models/models_0"; -import { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; +import type { DeleteLexiconInput, DeleteLexiconOutput } from "../models/models_0"; +import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; import { DeleteLexicon } from "../schemas/schemas_0"; /** diff --git a/clients/client-polly/src/commands/DescribeVoicesCommand.ts b/clients/client-polly/src/commands/DescribeVoicesCommand.ts index 1b4ad4bdcd524..afd767a4486db 100644 --- a/clients/client-polly/src/commands/DescribeVoicesCommand.ts +++ b/clients/client-polly/src/commands/DescribeVoicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVoicesInput, DescribeVoicesOutput } from "../models/models_0"; -import { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; +import type { DescribeVoicesInput, DescribeVoicesOutput } from "../models/models_0"; +import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; import { DescribeVoices } from "../schemas/schemas_0"; /** diff --git a/clients/client-polly/src/commands/GetLexiconCommand.ts b/clients/client-polly/src/commands/GetLexiconCommand.ts index 86e5acd8c7a41..2401c477d76b1 100644 --- a/clients/client-polly/src/commands/GetLexiconCommand.ts +++ b/clients/client-polly/src/commands/GetLexiconCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLexiconInput, GetLexiconOutput } from "../models/models_0"; -import { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; +import type { GetLexiconInput, GetLexiconOutput } from "../models/models_0"; +import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; import { GetLexicon } from "../schemas/schemas_0"; /** diff --git a/clients/client-polly/src/commands/GetSpeechSynthesisTaskCommand.ts b/clients/client-polly/src/commands/GetSpeechSynthesisTaskCommand.ts index 6e356038f67b8..fc4fab45daa02 100644 --- a/clients/client-polly/src/commands/GetSpeechSynthesisTaskCommand.ts +++ b/clients/client-polly/src/commands/GetSpeechSynthesisTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSpeechSynthesisTaskInput, GetSpeechSynthesisTaskOutput } from "../models/models_0"; -import { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; +import type { GetSpeechSynthesisTaskInput, GetSpeechSynthesisTaskOutput } from "../models/models_0"; +import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; import { GetSpeechSynthesisTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-polly/src/commands/ListLexiconsCommand.ts b/clients/client-polly/src/commands/ListLexiconsCommand.ts index 883eb7c5ad4d3..b2b2c7c440441 100644 --- a/clients/client-polly/src/commands/ListLexiconsCommand.ts +++ b/clients/client-polly/src/commands/ListLexiconsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLexiconsInput, ListLexiconsOutput } from "../models/models_0"; -import { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; +import type { ListLexiconsInput, ListLexiconsOutput } from "../models/models_0"; +import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; import { ListLexicons } from "../schemas/schemas_0"; /** diff --git a/clients/client-polly/src/commands/ListSpeechSynthesisTasksCommand.ts b/clients/client-polly/src/commands/ListSpeechSynthesisTasksCommand.ts index 079aab14e9f19..40243ddb65f82 100644 --- a/clients/client-polly/src/commands/ListSpeechSynthesisTasksCommand.ts +++ b/clients/client-polly/src/commands/ListSpeechSynthesisTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSpeechSynthesisTasksInput, ListSpeechSynthesisTasksOutput } from "../models/models_0"; -import { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; +import type { ListSpeechSynthesisTasksInput, ListSpeechSynthesisTasksOutput } from "../models/models_0"; +import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; import { ListSpeechSynthesisTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-polly/src/commands/PutLexiconCommand.ts b/clients/client-polly/src/commands/PutLexiconCommand.ts index 79663e280e490..6d11d35d29668 100644 --- a/clients/client-polly/src/commands/PutLexiconCommand.ts +++ b/clients/client-polly/src/commands/PutLexiconCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutLexiconInput, PutLexiconOutput } from "../models/models_0"; -import { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; +import type { PutLexiconInput, PutLexiconOutput } from "../models/models_0"; +import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; import { PutLexicon } from "../schemas/schemas_0"; /** diff --git a/clients/client-polly/src/commands/StartSpeechSynthesisTaskCommand.ts b/clients/client-polly/src/commands/StartSpeechSynthesisTaskCommand.ts index 90328859ce41f..7ed838f0c3d55 100644 --- a/clients/client-polly/src/commands/StartSpeechSynthesisTaskCommand.ts +++ b/clients/client-polly/src/commands/StartSpeechSynthesisTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSpeechSynthesisTaskInput, StartSpeechSynthesisTaskOutput } from "../models/models_0"; -import { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; +import type { StartSpeechSynthesisTaskInput, StartSpeechSynthesisTaskOutput } from "../models/models_0"; +import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; import { StartSpeechSynthesisTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-polly/src/commands/SynthesizeSpeechCommand.ts b/clients/client-polly/src/commands/SynthesizeSpeechCommand.ts index 66bcea63f9254..d2791ad180809 100644 --- a/clients/client-polly/src/commands/SynthesizeSpeechCommand.ts +++ b/clients/client-polly/src/commands/SynthesizeSpeechCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SynthesizeSpeechInput, SynthesizeSpeechOutput } from "../models/models_0"; -import { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; +import { type SynthesizeSpeechInput, SynthesizeSpeechOutput } from "../models/models_0"; +import type { PollyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PollyClient"; import { SynthesizeSpeech } from "../schemas/schemas_0"; /** diff --git a/clients/client-polly/src/endpoint/EndpointParameters.ts b/clients/client-polly/src/endpoint/EndpointParameters.ts index 94b1268062c15..8af506fe0010a 100644 --- a/clients/client-polly/src/endpoint/EndpointParameters.ts +++ b/clients/client-polly/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-polly/src/endpoint/endpointResolver.ts b/clients/client-polly/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-polly/src/endpoint/endpointResolver.ts +++ b/clients/client-polly/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-polly/src/extensionConfiguration.ts b/clients/client-polly/src/extensionConfiguration.ts index 6e8b39c79e2f0..1f252dbbd4270 100644 --- a/clients/client-polly/src/extensionConfiguration.ts +++ b/clients/client-polly/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-polly/src/models/PollyServiceException.ts b/clients/client-polly/src/models/PollyServiceException.ts index 0371b61f71ed3..cba644a9664b7 100644 --- a/clients/client-polly/src/models/PollyServiceException.ts +++ b/clients/client-polly/src/models/PollyServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-polly/src/models/errors.ts b/clients/client-polly/src/models/errors.ts index f8aead128d370..1c082666a9c92 100644 --- a/clients/client-polly/src/models/errors.ts +++ b/clients/client-polly/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PollyServiceException as __BaseException } from "./PollyServiceException"; diff --git a/clients/client-polly/src/pagination/Interfaces.ts b/clients/client-polly/src/pagination/Interfaces.ts index 1093248244c36..202e8019b692f 100644 --- a/clients/client-polly/src/pagination/Interfaces.ts +++ b/clients/client-polly/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PollyClient } from "../PollyClient"; diff --git a/clients/client-polly/src/pagination/ListSpeechSynthesisTasksPaginator.ts b/clients/client-polly/src/pagination/ListSpeechSynthesisTasksPaginator.ts index fc578011e0627..e2657451a9fa0 100644 --- a/clients/client-polly/src/pagination/ListSpeechSynthesisTasksPaginator.ts +++ b/clients/client-polly/src/pagination/ListSpeechSynthesisTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSpeechSynthesisTasksCommand, diff --git a/clients/client-polly/src/runtimeConfig.browser.ts b/clients/client-polly/src/runtimeConfig.browser.ts index 586128b0700e6..97bd37e4646bd 100644 --- a/clients/client-polly/src/runtimeConfig.browser.ts +++ b/clients/client-polly/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PollyClientConfig } from "./PollyClient"; + +import type { PollyClientConfig } from "./PollyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-polly/src/runtimeConfig.native.ts b/clients/client-polly/src/runtimeConfig.native.ts index b68259bf5dadc..3c1cbad747376 100644 --- a/clients/client-polly/src/runtimeConfig.native.ts +++ b/clients/client-polly/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PollyClientConfig } from "./PollyClient"; +import type { PollyClientConfig } from "./PollyClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-polly/src/runtimeConfig.shared.ts b/clients/client-polly/src/runtimeConfig.shared.ts index ca728195a3ac8..aa825aa82ac7f 100644 --- a/clients/client-polly/src/runtimeConfig.shared.ts +++ b/clients/client-polly/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPollyHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PollyClientConfig } from "./PollyClient"; +import type { PollyClientConfig } from "./PollyClient"; /** * @internal diff --git a/clients/client-polly/src/runtimeConfig.ts b/clients/client-polly/src/runtimeConfig.ts index 621a0d7480cf2..7ba0edddec14e 100644 --- a/clients/client-polly/src/runtimeConfig.ts +++ b/clients/client-polly/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PollyClientConfig } from "./PollyClient"; + +import type { PollyClientConfig } from "./PollyClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-polly/src/runtimeExtensions.ts b/clients/client-polly/src/runtimeExtensions.ts index 2a55734d46f24..0d672b0674019 100644 --- a/clients/client-polly/src/runtimeExtensions.ts +++ b/clients/client-polly/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PollyExtensionConfiguration } from "./extensionConfiguration"; +import type { PollyExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-polly/src/schemas/schemas_0.ts b/clients/client-polly/src/schemas/schemas_0.ts index 1bad7b71caac8..a3d2e0453516c 100644 --- a/clients/client-polly/src/schemas/schemas_0.ts +++ b/clients/client-polly/src/schemas/schemas_0.ts @@ -110,7 +110,7 @@ const n0 = "com.amazonaws.polly"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-pricing/package.json b/clients/client-pricing/package.json index be94d4b650a07..970870c822def 100644 --- a/clients/client-pricing/package.json +++ b/clients/client-pricing/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-pricing/src/Pricing.ts b/clients/client-pricing/src/Pricing.ts index 4775b041c9981..97d09f2185361 100644 --- a/clients/client-pricing/src/Pricing.ts +++ b/clients/client-pricing/src/Pricing.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DescribeServicesCommand, @@ -23,7 +23,7 @@ import { ListPriceListsCommandInput, ListPriceListsCommandOutput, } from "./commands/ListPriceListsCommand"; -import { PricingClient, PricingClientConfig } from "./PricingClient"; +import { PricingClient } from "./PricingClient"; const commands = { DescribeServicesCommand, diff --git a/clients/client-pricing/src/PricingClient.ts b/clients/client-pricing/src/PricingClient.ts index 68aecf9cfa301..5543b803d7871 100644 --- a/clients/client-pricing/src/PricingClient.ts +++ b/clients/client-pricing/src/PricingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultPricingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand"; @@ -72,7 +81,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-pricing/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-pricing/src/auth/httpAuthExtensionConfiguration.ts index f8b1e5550d574..f003bd3344a35 100644 --- a/clients/client-pricing/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-pricing/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { PricingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { PricingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-pricing/src/auth/httpAuthSchemeProvider.ts b/clients/client-pricing/src/auth/httpAuthSchemeProvider.ts index 1ee92c6c88ab5..1f14d469371d5 100644 --- a/clients/client-pricing/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-pricing/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { PricingClientConfig, PricingClientResolvedConfig } from "../PricingClient"; +import { type PricingClientResolvedConfig, PricingClientConfig } from "../PricingClient"; /** * @internal diff --git a/clients/client-pricing/src/commands/DescribeServicesCommand.ts b/clients/client-pricing/src/commands/DescribeServicesCommand.ts index 02a7f71197c6e..2553dae6d6392 100644 --- a/clients/client-pricing/src/commands/DescribeServicesCommand.ts +++ b/clients/client-pricing/src/commands/DescribeServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0"; -import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; +import type { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0"; +import type { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; import { DescribeServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-pricing/src/commands/GetAttributeValuesCommand.ts b/clients/client-pricing/src/commands/GetAttributeValuesCommand.ts index 39693a7afd96e..02bcf561461fb 100644 --- a/clients/client-pricing/src/commands/GetAttributeValuesCommand.ts +++ b/clients/client-pricing/src/commands/GetAttributeValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAttributeValuesRequest, GetAttributeValuesResponse } from "../models/models_0"; -import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; +import type { GetAttributeValuesRequest, GetAttributeValuesResponse } from "../models/models_0"; +import type { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; import { GetAttributeValues } from "../schemas/schemas_0"; /** diff --git a/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts b/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts index 823eebab616b9..8b157ee81149a 100644 --- a/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts +++ b/clients/client-pricing/src/commands/GetPriceListFileUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPriceListFileUrlRequest, GetPriceListFileUrlResponse } from "../models/models_0"; -import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; +import type { GetPriceListFileUrlRequest, GetPriceListFileUrlResponse } from "../models/models_0"; +import type { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; import { GetPriceListFileUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-pricing/src/commands/GetProductsCommand.ts b/clients/client-pricing/src/commands/GetProductsCommand.ts index 89a3643bc9f5d..53dc0b9610f40 100644 --- a/clients/client-pricing/src/commands/GetProductsCommand.ts +++ b/clients/client-pricing/src/commands/GetProductsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProductsRequest, GetProductsResponse } from "../models/models_0"; -import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; +import type { GetProductsRequest, GetProductsResponse } from "../models/models_0"; +import type { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; import { GetProducts } from "../schemas/schemas_0"; /** diff --git a/clients/client-pricing/src/commands/ListPriceListsCommand.ts b/clients/client-pricing/src/commands/ListPriceListsCommand.ts index 2249a0bf24f69..a4533138fd733 100644 --- a/clients/client-pricing/src/commands/ListPriceListsCommand.ts +++ b/clients/client-pricing/src/commands/ListPriceListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPriceListsRequest, ListPriceListsResponse } from "../models/models_0"; -import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; +import type { ListPriceListsRequest, ListPriceListsResponse } from "../models/models_0"; +import type { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient"; import { ListPriceLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-pricing/src/endpoint/EndpointParameters.ts b/clients/client-pricing/src/endpoint/EndpointParameters.ts index 2d2bbd492832b..7b54feb8f9f2b 100644 --- a/clients/client-pricing/src/endpoint/EndpointParameters.ts +++ b/clients/client-pricing/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-pricing/src/endpoint/endpointResolver.ts b/clients/client-pricing/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-pricing/src/endpoint/endpointResolver.ts +++ b/clients/client-pricing/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-pricing/src/extensionConfiguration.ts b/clients/client-pricing/src/extensionConfiguration.ts index caf5616064540..c002aff94a490 100644 --- a/clients/client-pricing/src/extensionConfiguration.ts +++ b/clients/client-pricing/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-pricing/src/models/PricingServiceException.ts b/clients/client-pricing/src/models/PricingServiceException.ts index c077ccba9a63f..2681807c0ff5e 100644 --- a/clients/client-pricing/src/models/PricingServiceException.ts +++ b/clients/client-pricing/src/models/PricingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-pricing/src/models/errors.ts b/clients/client-pricing/src/models/errors.ts index 2800a31abe731..3c519497ba729 100644 --- a/clients/client-pricing/src/models/errors.ts +++ b/clients/client-pricing/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { PricingServiceException as __BaseException } from "./PricingServiceException"; diff --git a/clients/client-pricing/src/pagination/DescribeServicesPaginator.ts b/clients/client-pricing/src/pagination/DescribeServicesPaginator.ts index 9cbc4b66660b2..f0a09dd3796d4 100644 --- a/clients/client-pricing/src/pagination/DescribeServicesPaginator.ts +++ b/clients/client-pricing/src/pagination/DescribeServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeServicesCommand, diff --git a/clients/client-pricing/src/pagination/GetAttributeValuesPaginator.ts b/clients/client-pricing/src/pagination/GetAttributeValuesPaginator.ts index 5ef42b963e557..587b38091b6c0 100644 --- a/clients/client-pricing/src/pagination/GetAttributeValuesPaginator.ts +++ b/clients/client-pricing/src/pagination/GetAttributeValuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAttributeValuesCommand, diff --git a/clients/client-pricing/src/pagination/GetProductsPaginator.ts b/clients/client-pricing/src/pagination/GetProductsPaginator.ts index e2a023f210a2a..f43f9911eab53 100644 --- a/clients/client-pricing/src/pagination/GetProductsPaginator.ts +++ b/clients/client-pricing/src/pagination/GetProductsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetProductsCommand, GetProductsCommandInput, GetProductsCommandOutput } from "../commands/GetProductsCommand"; import { PricingClient } from "../PricingClient"; diff --git a/clients/client-pricing/src/pagination/Interfaces.ts b/clients/client-pricing/src/pagination/Interfaces.ts index 5939728a57d09..06ac40ae5e697 100644 --- a/clients/client-pricing/src/pagination/Interfaces.ts +++ b/clients/client-pricing/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { PricingClient } from "../PricingClient"; diff --git a/clients/client-pricing/src/pagination/ListPriceListsPaginator.ts b/clients/client-pricing/src/pagination/ListPriceListsPaginator.ts index 5e45c7e152155..2aacd471d954d 100644 --- a/clients/client-pricing/src/pagination/ListPriceListsPaginator.ts +++ b/clients/client-pricing/src/pagination/ListPriceListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPriceListsCommand, diff --git a/clients/client-pricing/src/runtimeConfig.browser.ts b/clients/client-pricing/src/runtimeConfig.browser.ts index d79b3200356fd..6fcda2e0c2c29 100644 --- a/clients/client-pricing/src/runtimeConfig.browser.ts +++ b/clients/client-pricing/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PricingClientConfig } from "./PricingClient"; + +import type { PricingClientConfig } from "./PricingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-pricing/src/runtimeConfig.native.ts b/clients/client-pricing/src/runtimeConfig.native.ts index 50436fb5ff3c3..ae63f1962693e 100644 --- a/clients/client-pricing/src/runtimeConfig.native.ts +++ b/clients/client-pricing/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { PricingClientConfig } from "./PricingClient"; +import type { PricingClientConfig } from "./PricingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-pricing/src/runtimeConfig.shared.ts b/clients/client-pricing/src/runtimeConfig.shared.ts index 31829631dca74..fb1c54e1ef841 100644 --- a/clients/client-pricing/src/runtimeConfig.shared.ts +++ b/clients/client-pricing/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultPricingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { PricingClientConfig } from "./PricingClient"; +import type { PricingClientConfig } from "./PricingClient"; /** * @internal diff --git a/clients/client-pricing/src/runtimeConfig.ts b/clients/client-pricing/src/runtimeConfig.ts index 6456938397008..b587ab1fb236d 100644 --- a/clients/client-pricing/src/runtimeConfig.ts +++ b/clients/client-pricing/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { PricingClientConfig } from "./PricingClient"; + +import type { PricingClientConfig } from "./PricingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-pricing/src/runtimeExtensions.ts b/clients/client-pricing/src/runtimeExtensions.ts index f98f88cbd96be..6d899a169e480 100644 --- a/clients/client-pricing/src/runtimeExtensions.ts +++ b/clients/client-pricing/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { PricingExtensionConfiguration } from "./extensionConfiguration"; +import type { PricingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-pricing/src/schemas/schemas_0.ts b/clients/client-pricing/src/schemas/schemas_0.ts index 2f00ac7b81f91..ebc17acb3acea 100644 --- a/clients/client-pricing/src/schemas/schemas_0.ts +++ b/clients/client-pricing/src/schemas/schemas_0.ts @@ -61,7 +61,7 @@ const n0 = "com.amazonaws.pricing"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-proton/package.json b/clients/client-proton/package.json index 2aa3f87037fca..c82370a0d20bd 100644 --- a/clients/client-proton/package.json +++ b/clients/client-proton/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-proton/src/Proton.ts b/clients/client-proton/src/Proton.ts index 46193f7f8650f..a2ca0a7e42dc6 100644 --- a/clients/client-proton/src/Proton.ts +++ b/clients/client-proton/src/Proton.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptEnvironmentAccountConnectionCommand, @@ -429,7 +429,7 @@ import { UpdateTemplateSyncConfigCommandInput, UpdateTemplateSyncConfigCommandOutput, } from "./commands/UpdateTemplateSyncConfigCommand"; -import { ProtonClient, ProtonClientConfig } from "./ProtonClient"; +import { ProtonClient } from "./ProtonClient"; const commands = { AcceptEnvironmentAccountConnectionCommand, diff --git a/clients/client-proton/src/ProtonClient.ts b/clients/client-proton/src/ProtonClient.ts index 3a7a6d9029dbd..22249e1d6f2e3 100644 --- a/clients/client-proton/src/ProtonClient.ts +++ b/clients/client-proton/src/ProtonClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultProtonHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -331,7 +340,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-proton/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-proton/src/auth/httpAuthExtensionConfiguration.ts index 26ae6751640cd..09d9896415d13 100644 --- a/clients/client-proton/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-proton/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ProtonHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ProtonHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-proton/src/auth/httpAuthSchemeProvider.ts b/clients/client-proton/src/auth/httpAuthSchemeProvider.ts index 27868df2d5dc1..3611ec4e654f1 100644 --- a/clients/client-proton/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-proton/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ProtonClientConfig, ProtonClientResolvedConfig } from "../ProtonClient"; +import { type ProtonClientResolvedConfig, ProtonClientConfig } from "../ProtonClient"; /** * @internal diff --git a/clients/client-proton/src/commands/AcceptEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/AcceptEnvironmentAccountConnectionCommand.ts index e0dbaa5108fd1..7fecef219dccc 100644 --- a/clients/client-proton/src/commands/AcceptEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/AcceptEnvironmentAccountConnectionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptEnvironmentAccountConnectionInput, AcceptEnvironmentAccountConnectionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { + AcceptEnvironmentAccountConnectionInput, + AcceptEnvironmentAccountConnectionOutput, +} from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { AcceptEnvironmentAccountConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CancelComponentDeploymentCommand.ts b/clients/client-proton/src/commands/CancelComponentDeploymentCommand.ts index 292823d8b8019..dc14e897cf4fc 100644 --- a/clients/client-proton/src/commands/CancelComponentDeploymentCommand.ts +++ b/clients/client-proton/src/commands/CancelComponentDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelComponentDeploymentInput, CancelComponentDeploymentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CancelComponentDeploymentInput, CancelComponentDeploymentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CancelComponentDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CancelEnvironmentDeploymentCommand.ts b/clients/client-proton/src/commands/CancelEnvironmentDeploymentCommand.ts index 77cea4ecdda82..735f860923e93 100644 --- a/clients/client-proton/src/commands/CancelEnvironmentDeploymentCommand.ts +++ b/clients/client-proton/src/commands/CancelEnvironmentDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelEnvironmentDeploymentInput, CancelEnvironmentDeploymentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CancelEnvironmentDeploymentInput, CancelEnvironmentDeploymentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CancelEnvironmentDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CancelServiceInstanceDeploymentCommand.ts b/clients/client-proton/src/commands/CancelServiceInstanceDeploymentCommand.ts index a61105ac2a1d4..f39108ce47bf1 100644 --- a/clients/client-proton/src/commands/CancelServiceInstanceDeploymentCommand.ts +++ b/clients/client-proton/src/commands/CancelServiceInstanceDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelServiceInstanceDeploymentInput, CancelServiceInstanceDeploymentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CancelServiceInstanceDeploymentInput, CancelServiceInstanceDeploymentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CancelServiceInstanceDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CancelServicePipelineDeploymentCommand.ts b/clients/client-proton/src/commands/CancelServicePipelineDeploymentCommand.ts index fd9cfd1d97953..62b972ba6c49e 100644 --- a/clients/client-proton/src/commands/CancelServicePipelineDeploymentCommand.ts +++ b/clients/client-proton/src/commands/CancelServicePipelineDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelServicePipelineDeploymentInput, CancelServicePipelineDeploymentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CancelServicePipelineDeploymentInput, CancelServicePipelineDeploymentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CancelServicePipelineDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateComponentCommand.ts b/clients/client-proton/src/commands/CreateComponentCommand.ts index 04bcd5e442705..b8c57d813dc22 100644 --- a/clients/client-proton/src/commands/CreateComponentCommand.ts +++ b/clients/client-proton/src/commands/CreateComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateComponentInput, CreateComponentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateComponentInput, CreateComponentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/CreateEnvironmentAccountConnectionCommand.ts index 842d68fec4072..3e41f790a6485 100644 --- a/clients/client-proton/src/commands/CreateEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/CreateEnvironmentAccountConnectionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentAccountConnectionInput, CreateEnvironmentAccountConnectionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { + CreateEnvironmentAccountConnectionInput, + CreateEnvironmentAccountConnectionOutput, +} from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateEnvironmentAccountConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateEnvironmentCommand.ts b/clients/client-proton/src/commands/CreateEnvironmentCommand.ts index 778856cd1422a..d4d7aba285dff 100644 --- a/clients/client-proton/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-proton/src/commands/CreateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentInput, CreateEnvironmentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateEnvironmentInput, CreateEnvironmentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateEnvironmentTemplateCommand.ts b/clients/client-proton/src/commands/CreateEnvironmentTemplateCommand.ts index c482d8c78029a..7ceaccd148058 100644 --- a/clients/client-proton/src/commands/CreateEnvironmentTemplateCommand.ts +++ b/clients/client-proton/src/commands/CreateEnvironmentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentTemplateInput, CreateEnvironmentTemplateOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateEnvironmentTemplateInput, CreateEnvironmentTemplateOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateEnvironmentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateEnvironmentTemplateVersionCommand.ts b/clients/client-proton/src/commands/CreateEnvironmentTemplateVersionCommand.ts index c8aa945cf09e4..b66e13afbff75 100644 --- a/clients/client-proton/src/commands/CreateEnvironmentTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/CreateEnvironmentTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentTemplateVersionInput, CreateEnvironmentTemplateVersionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateEnvironmentTemplateVersionInput, CreateEnvironmentTemplateVersionOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateEnvironmentTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateRepositoryCommand.ts b/clients/client-proton/src/commands/CreateRepositoryCommand.ts index 07222dc240f74..3f6ffd2ecdb04 100644 --- a/clients/client-proton/src/commands/CreateRepositoryCommand.ts +++ b/clients/client-proton/src/commands/CreateRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRepositoryInput, CreateRepositoryOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateRepositoryInput, CreateRepositoryOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateServiceCommand.ts b/clients/client-proton/src/commands/CreateServiceCommand.ts index d9dabb743e93d..ead42f8d588fb 100644 --- a/clients/client-proton/src/commands/CreateServiceCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceInput, CreateServiceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateServiceInput, CreateServiceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateService } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateServiceInstanceCommand.ts b/clients/client-proton/src/commands/CreateServiceInstanceCommand.ts index 08487a16193af..80faa8ae62c49 100644 --- a/clients/client-proton/src/commands/CreateServiceInstanceCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceInstanceInput, CreateServiceInstanceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateServiceInstanceInput, CreateServiceInstanceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateServiceInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateServiceSyncConfigCommand.ts b/clients/client-proton/src/commands/CreateServiceSyncConfigCommand.ts index 18c42c276dbec..c4dc276242105 100644 --- a/clients/client-proton/src/commands/CreateServiceSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceSyncConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceSyncConfigInput, CreateServiceSyncConfigOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateServiceSyncConfigInput, CreateServiceSyncConfigOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateServiceSyncConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateServiceTemplateCommand.ts b/clients/client-proton/src/commands/CreateServiceTemplateCommand.ts index b653d38cab80e..2000d6682e948 100644 --- a/clients/client-proton/src/commands/CreateServiceTemplateCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceTemplateInput, CreateServiceTemplateOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateServiceTemplateInput, CreateServiceTemplateOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateServiceTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateServiceTemplateVersionCommand.ts b/clients/client-proton/src/commands/CreateServiceTemplateVersionCommand.ts index 83b9b0bf4c015..1b4b44485d948 100644 --- a/clients/client-proton/src/commands/CreateServiceTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/CreateServiceTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceTemplateVersionInput, CreateServiceTemplateVersionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateServiceTemplateVersionInput, CreateServiceTemplateVersionOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateServiceTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/CreateTemplateSyncConfigCommand.ts b/clients/client-proton/src/commands/CreateTemplateSyncConfigCommand.ts index 641454ca9c296..2bfa14bf4a541 100644 --- a/clients/client-proton/src/commands/CreateTemplateSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/CreateTemplateSyncConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTemplateSyncConfigInput, CreateTemplateSyncConfigOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { CreateTemplateSyncConfigInput, CreateTemplateSyncConfigOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { CreateTemplateSyncConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteComponentCommand.ts b/clients/client-proton/src/commands/DeleteComponentCommand.ts index e1a3bb1307473..5ffe668c62fcd 100644 --- a/clients/client-proton/src/commands/DeleteComponentCommand.ts +++ b/clients/client-proton/src/commands/DeleteComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteComponentInput, DeleteComponentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteComponentInput, DeleteComponentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteDeploymentCommand.ts b/clients/client-proton/src/commands/DeleteDeploymentCommand.ts index b431b36498a88..26143c04e5278 100644 --- a/clients/client-proton/src/commands/DeleteDeploymentCommand.ts +++ b/clients/client-proton/src/commands/DeleteDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeploymentInput, DeleteDeploymentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteDeploymentInput, DeleteDeploymentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/DeleteEnvironmentAccountConnectionCommand.ts index 672d8428cc51b..786fb5b0ebbaf 100644 --- a/clients/client-proton/src/commands/DeleteEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/DeleteEnvironmentAccountConnectionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentAccountConnectionInput, DeleteEnvironmentAccountConnectionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { + DeleteEnvironmentAccountConnectionInput, + DeleteEnvironmentAccountConnectionOutput, +} from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteEnvironmentAccountConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteEnvironmentCommand.ts b/clients/client-proton/src/commands/DeleteEnvironmentCommand.ts index fc9a09f03ffee..84cd47e14149a 100644 --- a/clients/client-proton/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-proton/src/commands/DeleteEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentInput, DeleteEnvironmentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteEnvironmentInput, DeleteEnvironmentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteEnvironmentTemplateCommand.ts b/clients/client-proton/src/commands/DeleteEnvironmentTemplateCommand.ts index 289b66434b0c1..3bdfe72590316 100644 --- a/clients/client-proton/src/commands/DeleteEnvironmentTemplateCommand.ts +++ b/clients/client-proton/src/commands/DeleteEnvironmentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentTemplateInput, DeleteEnvironmentTemplateOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteEnvironmentTemplateInput, DeleteEnvironmentTemplateOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteEnvironmentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteEnvironmentTemplateVersionCommand.ts b/clients/client-proton/src/commands/DeleteEnvironmentTemplateVersionCommand.ts index 38331f41df31a..f9b980e35490f 100644 --- a/clients/client-proton/src/commands/DeleteEnvironmentTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/DeleteEnvironmentTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentTemplateVersionInput, DeleteEnvironmentTemplateVersionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteEnvironmentTemplateVersionInput, DeleteEnvironmentTemplateVersionOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteEnvironmentTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteRepositoryCommand.ts b/clients/client-proton/src/commands/DeleteRepositoryCommand.ts index 58ed7b472431a..c4caca4257572 100644 --- a/clients/client-proton/src/commands/DeleteRepositoryCommand.ts +++ b/clients/client-proton/src/commands/DeleteRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRepositoryInput, DeleteRepositoryOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteRepositoryInput, DeleteRepositoryOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteServiceCommand.ts b/clients/client-proton/src/commands/DeleteServiceCommand.ts index 0f09715d1437d..60553c9b02758 100644 --- a/clients/client-proton/src/commands/DeleteServiceCommand.ts +++ b/clients/client-proton/src/commands/DeleteServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceInput, DeleteServiceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteServiceInput, DeleteServiceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteService } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteServiceSyncConfigCommand.ts b/clients/client-proton/src/commands/DeleteServiceSyncConfigCommand.ts index 4d8639bbae8b6..100f59fd98e51 100644 --- a/clients/client-proton/src/commands/DeleteServiceSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/DeleteServiceSyncConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceSyncConfigInput, DeleteServiceSyncConfigOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteServiceSyncConfigInput, DeleteServiceSyncConfigOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteServiceSyncConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteServiceTemplateCommand.ts b/clients/client-proton/src/commands/DeleteServiceTemplateCommand.ts index ef6b33529b403..360c304c7b667 100644 --- a/clients/client-proton/src/commands/DeleteServiceTemplateCommand.ts +++ b/clients/client-proton/src/commands/DeleteServiceTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceTemplateInput, DeleteServiceTemplateOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteServiceTemplateInput, DeleteServiceTemplateOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteServiceTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteServiceTemplateVersionCommand.ts b/clients/client-proton/src/commands/DeleteServiceTemplateVersionCommand.ts index 1ebbd37a1a4b3..44236847e800f 100644 --- a/clients/client-proton/src/commands/DeleteServiceTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/DeleteServiceTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceTemplateVersionInput, DeleteServiceTemplateVersionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteServiceTemplateVersionInput, DeleteServiceTemplateVersionOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteServiceTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/DeleteTemplateSyncConfigCommand.ts b/clients/client-proton/src/commands/DeleteTemplateSyncConfigCommand.ts index 2f7410717db19..9ddf61acd749b 100644 --- a/clients/client-proton/src/commands/DeleteTemplateSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/DeleteTemplateSyncConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTemplateSyncConfigInput, DeleteTemplateSyncConfigOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { DeleteTemplateSyncConfigInput, DeleteTemplateSyncConfigOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { DeleteTemplateSyncConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetAccountSettingsCommand.ts b/clients/client-proton/src/commands/GetAccountSettingsCommand.ts index 7d88e79cfab09..1fbd58fda4a01 100644 --- a/clients/client-proton/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-proton/src/commands/GetAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountSettingsInput, GetAccountSettingsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetAccountSettingsInput, GetAccountSettingsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetComponentCommand.ts b/clients/client-proton/src/commands/GetComponentCommand.ts index 4635e8ec7af26..d9aa411633674 100644 --- a/clients/client-proton/src/commands/GetComponentCommand.ts +++ b/clients/client-proton/src/commands/GetComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetComponentInput, GetComponentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetComponentInput, GetComponentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetDeploymentCommand.ts b/clients/client-proton/src/commands/GetDeploymentCommand.ts index 3072082263006..66b345a9df93b 100644 --- a/clients/client-proton/src/commands/GetDeploymentCommand.ts +++ b/clients/client-proton/src/commands/GetDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeploymentInput, GetDeploymentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetDeploymentInput, GetDeploymentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/GetEnvironmentAccountConnectionCommand.ts index 57f0ed285f1ee..346b5165890a8 100644 --- a/clients/client-proton/src/commands/GetEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/GetEnvironmentAccountConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentAccountConnectionInput, GetEnvironmentAccountConnectionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetEnvironmentAccountConnectionInput, GetEnvironmentAccountConnectionOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetEnvironmentAccountConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetEnvironmentCommand.ts b/clients/client-proton/src/commands/GetEnvironmentCommand.ts index 21f3ff5a725db..8caaff5e995ef 100644 --- a/clients/client-proton/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-proton/src/commands/GetEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentInput, GetEnvironmentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetEnvironmentInput, GetEnvironmentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetEnvironmentTemplateCommand.ts b/clients/client-proton/src/commands/GetEnvironmentTemplateCommand.ts index db2a7462d0298..19e3ad51010b4 100644 --- a/clients/client-proton/src/commands/GetEnvironmentTemplateCommand.ts +++ b/clients/client-proton/src/commands/GetEnvironmentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentTemplateInput, GetEnvironmentTemplateOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetEnvironmentTemplateInput, GetEnvironmentTemplateOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetEnvironmentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetEnvironmentTemplateVersionCommand.ts b/clients/client-proton/src/commands/GetEnvironmentTemplateVersionCommand.ts index cbdc0cd755fa5..c34896f02b50d 100644 --- a/clients/client-proton/src/commands/GetEnvironmentTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/GetEnvironmentTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentTemplateVersionInput, GetEnvironmentTemplateVersionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetEnvironmentTemplateVersionInput, GetEnvironmentTemplateVersionOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetEnvironmentTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetRepositoryCommand.ts b/clients/client-proton/src/commands/GetRepositoryCommand.ts index 3a6cdecbffa87..ad56b9ca50c03 100644 --- a/clients/client-proton/src/commands/GetRepositoryCommand.ts +++ b/clients/client-proton/src/commands/GetRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositoryInput, GetRepositoryOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetRepositoryInput, GetRepositoryOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetRepositorySyncStatusCommand.ts b/clients/client-proton/src/commands/GetRepositorySyncStatusCommand.ts index 4cb0d0308118d..9b6aaecc0279d 100644 --- a/clients/client-proton/src/commands/GetRepositorySyncStatusCommand.ts +++ b/clients/client-proton/src/commands/GetRepositorySyncStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRepositorySyncStatusInput, GetRepositorySyncStatusOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetRepositorySyncStatusInput, GetRepositorySyncStatusOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetRepositorySyncStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetResourcesSummaryCommand.ts b/clients/client-proton/src/commands/GetResourcesSummaryCommand.ts index 1f5885b7ef9e9..dad5ac57b5d95 100644 --- a/clients/client-proton/src/commands/GetResourcesSummaryCommand.ts +++ b/clients/client-proton/src/commands/GetResourcesSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcesSummaryInput, GetResourcesSummaryOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetResourcesSummaryInput, GetResourcesSummaryOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetResourcesSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetServiceCommand.ts b/clients/client-proton/src/commands/GetServiceCommand.ts index 668720bd3a0ae..b84c73e7090aa 100644 --- a/clients/client-proton/src/commands/GetServiceCommand.ts +++ b/clients/client-proton/src/commands/GetServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceInput, GetServiceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetServiceInput, GetServiceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetService } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetServiceInstanceCommand.ts b/clients/client-proton/src/commands/GetServiceInstanceCommand.ts index 899611ddddf12..663109af684e5 100644 --- a/clients/client-proton/src/commands/GetServiceInstanceCommand.ts +++ b/clients/client-proton/src/commands/GetServiceInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceInstanceInput, GetServiceInstanceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetServiceInstanceInput, GetServiceInstanceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetServiceInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetServiceInstanceSyncStatusCommand.ts b/clients/client-proton/src/commands/GetServiceInstanceSyncStatusCommand.ts index 7f226b9dbbc3a..02a3285932702 100644 --- a/clients/client-proton/src/commands/GetServiceInstanceSyncStatusCommand.ts +++ b/clients/client-proton/src/commands/GetServiceInstanceSyncStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceInstanceSyncStatusInput, GetServiceInstanceSyncStatusOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetServiceInstanceSyncStatusInput, GetServiceInstanceSyncStatusOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetServiceInstanceSyncStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetServiceSyncBlockerSummaryCommand.ts b/clients/client-proton/src/commands/GetServiceSyncBlockerSummaryCommand.ts index c05bc87acbc47..d2368cd92875f 100644 --- a/clients/client-proton/src/commands/GetServiceSyncBlockerSummaryCommand.ts +++ b/clients/client-proton/src/commands/GetServiceSyncBlockerSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceSyncBlockerSummaryInput, GetServiceSyncBlockerSummaryOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetServiceSyncBlockerSummaryInput, GetServiceSyncBlockerSummaryOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetServiceSyncBlockerSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetServiceSyncConfigCommand.ts b/clients/client-proton/src/commands/GetServiceSyncConfigCommand.ts index f508c86bdb04f..256a4ec6c35f9 100644 --- a/clients/client-proton/src/commands/GetServiceSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/GetServiceSyncConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceSyncConfigInput, GetServiceSyncConfigOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetServiceSyncConfigInput, GetServiceSyncConfigOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetServiceSyncConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetServiceTemplateCommand.ts b/clients/client-proton/src/commands/GetServiceTemplateCommand.ts index 94aa36a5f234c..235f42776873e 100644 --- a/clients/client-proton/src/commands/GetServiceTemplateCommand.ts +++ b/clients/client-proton/src/commands/GetServiceTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceTemplateInput, GetServiceTemplateOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetServiceTemplateInput, GetServiceTemplateOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetServiceTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetServiceTemplateVersionCommand.ts b/clients/client-proton/src/commands/GetServiceTemplateVersionCommand.ts index b3a885f23d9a6..9970467dd3b15 100644 --- a/clients/client-proton/src/commands/GetServiceTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/GetServiceTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceTemplateVersionInput, GetServiceTemplateVersionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetServiceTemplateVersionInput, GetServiceTemplateVersionOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetServiceTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetTemplateSyncConfigCommand.ts b/clients/client-proton/src/commands/GetTemplateSyncConfigCommand.ts index 843b2ce753184..72c920ec0e2a2 100644 --- a/clients/client-proton/src/commands/GetTemplateSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/GetTemplateSyncConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTemplateSyncConfigInput, GetTemplateSyncConfigOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetTemplateSyncConfigInput, GetTemplateSyncConfigOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetTemplateSyncConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/GetTemplateSyncStatusCommand.ts b/clients/client-proton/src/commands/GetTemplateSyncStatusCommand.ts index 820df19f92697..72ae9d7be8930 100644 --- a/clients/client-proton/src/commands/GetTemplateSyncStatusCommand.ts +++ b/clients/client-proton/src/commands/GetTemplateSyncStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTemplateSyncStatusInput, GetTemplateSyncStatusOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { GetTemplateSyncStatusInput, GetTemplateSyncStatusOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { GetTemplateSyncStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListComponentOutputsCommand.ts b/clients/client-proton/src/commands/ListComponentOutputsCommand.ts index 5e32c5e08e144..2e50500e30ae1 100644 --- a/clients/client-proton/src/commands/ListComponentOutputsCommand.ts +++ b/clients/client-proton/src/commands/ListComponentOutputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComponentOutputsInput, ListComponentOutputsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListComponentOutputsInput, ListComponentOutputsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListComponentOutputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListComponentProvisionedResourcesCommand.ts b/clients/client-proton/src/commands/ListComponentProvisionedResourcesCommand.ts index ba9116625956e..df9812f44f2c6 100644 --- a/clients/client-proton/src/commands/ListComponentProvisionedResourcesCommand.ts +++ b/clients/client-proton/src/commands/ListComponentProvisionedResourcesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComponentProvisionedResourcesInput, ListComponentProvisionedResourcesOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { + ListComponentProvisionedResourcesInput, + ListComponentProvisionedResourcesOutput, +} from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListComponentProvisionedResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListComponentsCommand.ts b/clients/client-proton/src/commands/ListComponentsCommand.ts index b4ef570065bcd..1703ee9ba0408 100644 --- a/clients/client-proton/src/commands/ListComponentsCommand.ts +++ b/clients/client-proton/src/commands/ListComponentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComponentsInput, ListComponentsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListComponentsInput, ListComponentsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListDeploymentsCommand.ts b/clients/client-proton/src/commands/ListDeploymentsCommand.ts index a649da4583d08..cd615615fe8af 100644 --- a/clients/client-proton/src/commands/ListDeploymentsCommand.ts +++ b/clients/client-proton/src/commands/ListDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeploymentsInput, ListDeploymentsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListDeploymentsInput, ListDeploymentsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListEnvironmentAccountConnectionsCommand.ts b/clients/client-proton/src/commands/ListEnvironmentAccountConnectionsCommand.ts index 9636e82bfcba0..0a639404f3494 100644 --- a/clients/client-proton/src/commands/ListEnvironmentAccountConnectionsCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentAccountConnectionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentAccountConnectionsInput, ListEnvironmentAccountConnectionsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { + ListEnvironmentAccountConnectionsInput, + ListEnvironmentAccountConnectionsOutput, +} from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListEnvironmentAccountConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListEnvironmentOutputsCommand.ts b/clients/client-proton/src/commands/ListEnvironmentOutputsCommand.ts index 0c860729883ee..0be12fa50d2db 100644 --- a/clients/client-proton/src/commands/ListEnvironmentOutputsCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentOutputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentOutputsInput, ListEnvironmentOutputsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListEnvironmentOutputsInput, ListEnvironmentOutputsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListEnvironmentOutputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListEnvironmentProvisionedResourcesCommand.ts b/clients/client-proton/src/commands/ListEnvironmentProvisionedResourcesCommand.ts index 69bc3697c8076..b36671f9d32e6 100644 --- a/clients/client-proton/src/commands/ListEnvironmentProvisionedResourcesCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentProvisionedResourcesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListEnvironmentProvisionedResourcesInput, ListEnvironmentProvisionedResourcesOutput, } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListEnvironmentProvisionedResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListEnvironmentTemplateVersionsCommand.ts b/clients/client-proton/src/commands/ListEnvironmentTemplateVersionsCommand.ts index f3205a7bb28d0..3a25bf47cf4bb 100644 --- a/clients/client-proton/src/commands/ListEnvironmentTemplateVersionsCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentTemplateVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentTemplateVersionsInput, ListEnvironmentTemplateVersionsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListEnvironmentTemplateVersionsInput, ListEnvironmentTemplateVersionsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListEnvironmentTemplateVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListEnvironmentTemplatesCommand.ts b/clients/client-proton/src/commands/ListEnvironmentTemplatesCommand.ts index bb138b899711c..a3f34f7d35bfc 100644 --- a/clients/client-proton/src/commands/ListEnvironmentTemplatesCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentTemplatesInput, ListEnvironmentTemplatesOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListEnvironmentTemplatesInput, ListEnvironmentTemplatesOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListEnvironmentTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListEnvironmentsCommand.ts b/clients/client-proton/src/commands/ListEnvironmentsCommand.ts index b42533c79bebc..c7533a3ab0d0e 100644 --- a/clients/client-proton/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-proton/src/commands/ListEnvironmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentsInput, ListEnvironmentsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListEnvironmentsInput, ListEnvironmentsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListEnvironments } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListRepositoriesCommand.ts b/clients/client-proton/src/commands/ListRepositoriesCommand.ts index f377ccd64989e..a3f473768b27c 100644 --- a/clients/client-proton/src/commands/ListRepositoriesCommand.ts +++ b/clients/client-proton/src/commands/ListRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositoriesInput, ListRepositoriesOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListRepositoriesInput, ListRepositoriesOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListRepositories } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListRepositorySyncDefinitionsCommand.ts b/clients/client-proton/src/commands/ListRepositorySyncDefinitionsCommand.ts index aebfb5a028930..1205ba7c88bb8 100644 --- a/clients/client-proton/src/commands/ListRepositorySyncDefinitionsCommand.ts +++ b/clients/client-proton/src/commands/ListRepositorySyncDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRepositorySyncDefinitionsInput, ListRepositorySyncDefinitionsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListRepositorySyncDefinitionsInput, ListRepositorySyncDefinitionsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListRepositorySyncDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListServiceInstanceOutputsCommand.ts b/clients/client-proton/src/commands/ListServiceInstanceOutputsCommand.ts index 3fc81d30cf62d..73a585d661b4b 100644 --- a/clients/client-proton/src/commands/ListServiceInstanceOutputsCommand.ts +++ b/clients/client-proton/src/commands/ListServiceInstanceOutputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceInstanceOutputsInput, ListServiceInstanceOutputsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListServiceInstanceOutputsInput, ListServiceInstanceOutputsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListServiceInstanceOutputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListServiceInstanceProvisionedResourcesCommand.ts b/clients/client-proton/src/commands/ListServiceInstanceProvisionedResourcesCommand.ts index 96663da9a0cfb..1e81709aed3a4 100644 --- a/clients/client-proton/src/commands/ListServiceInstanceProvisionedResourcesCommand.ts +++ b/clients/client-proton/src/commands/ListServiceInstanceProvisionedResourcesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServiceInstanceProvisionedResourcesInput, ListServiceInstanceProvisionedResourcesOutput, } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListServiceInstanceProvisionedResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListServiceInstancesCommand.ts b/clients/client-proton/src/commands/ListServiceInstancesCommand.ts index 8f56239d72c4b..f0051c65a929b 100644 --- a/clients/client-proton/src/commands/ListServiceInstancesCommand.ts +++ b/clients/client-proton/src/commands/ListServiceInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceInstancesInput, ListServiceInstancesOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListServiceInstancesInput, ListServiceInstancesOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListServiceInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListServicePipelineOutputsCommand.ts b/clients/client-proton/src/commands/ListServicePipelineOutputsCommand.ts index d8e590b7b0d78..de5f638f775bc 100644 --- a/clients/client-proton/src/commands/ListServicePipelineOutputsCommand.ts +++ b/clients/client-proton/src/commands/ListServicePipelineOutputsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicePipelineOutputsInput, ListServicePipelineOutputsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListServicePipelineOutputsInput, ListServicePipelineOutputsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListServicePipelineOutputs } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListServicePipelineProvisionedResourcesCommand.ts b/clients/client-proton/src/commands/ListServicePipelineProvisionedResourcesCommand.ts index b34531f80ae4b..bf03b7520f67d 100644 --- a/clients/client-proton/src/commands/ListServicePipelineProvisionedResourcesCommand.ts +++ b/clients/client-proton/src/commands/ListServicePipelineProvisionedResourcesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServicePipelineProvisionedResourcesInput, ListServicePipelineProvisionedResourcesOutput, } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListServicePipelineProvisionedResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListServiceTemplateVersionsCommand.ts b/clients/client-proton/src/commands/ListServiceTemplateVersionsCommand.ts index 9ef32604c73c8..e8d01d0097e8c 100644 --- a/clients/client-proton/src/commands/ListServiceTemplateVersionsCommand.ts +++ b/clients/client-proton/src/commands/ListServiceTemplateVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceTemplateVersionsInput, ListServiceTemplateVersionsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListServiceTemplateVersionsInput, ListServiceTemplateVersionsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListServiceTemplateVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListServiceTemplatesCommand.ts b/clients/client-proton/src/commands/ListServiceTemplatesCommand.ts index 72b0a8da62ded..c148eb5aba91f 100644 --- a/clients/client-proton/src/commands/ListServiceTemplatesCommand.ts +++ b/clients/client-proton/src/commands/ListServiceTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceTemplatesInput, ListServiceTemplatesOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListServiceTemplatesInput, ListServiceTemplatesOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListServiceTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListServicesCommand.ts b/clients/client-proton/src/commands/ListServicesCommand.ts index d7c4389259f9c..ca2d7d311d222 100644 --- a/clients/client-proton/src/commands/ListServicesCommand.ts +++ b/clients/client-proton/src/commands/ListServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicesInput, ListServicesOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListServicesInput, ListServicesOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListServices } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/ListTagsForResourceCommand.ts b/clients/client-proton/src/commands/ListTagsForResourceCommand.ts index 60a632d943976..8d13d68ca307f 100644 --- a/clients/client-proton/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-proton/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/NotifyResourceDeploymentStatusChangeCommand.ts b/clients/client-proton/src/commands/NotifyResourceDeploymentStatusChangeCommand.ts index f75bb00588cd1..c6c493be4c601 100644 --- a/clients/client-proton/src/commands/NotifyResourceDeploymentStatusChangeCommand.ts +++ b/clients/client-proton/src/commands/NotifyResourceDeploymentStatusChangeCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { NotifyResourceDeploymentStatusChangeInput, NotifyResourceDeploymentStatusChangeOutput, } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { NotifyResourceDeploymentStatusChange } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/RejectEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/RejectEnvironmentAccountConnectionCommand.ts index c43151ba9e349..cfe8d0d2e837d 100644 --- a/clients/client-proton/src/commands/RejectEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/RejectEnvironmentAccountConnectionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectEnvironmentAccountConnectionInput, RejectEnvironmentAccountConnectionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { + RejectEnvironmentAccountConnectionInput, + RejectEnvironmentAccountConnectionOutput, +} from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { RejectEnvironmentAccountConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/TagResourceCommand.ts b/clients/client-proton/src/commands/TagResourceCommand.ts index e93d2dc39ac6e..13dde1213474b 100644 --- a/clients/client-proton/src/commands/TagResourceCommand.ts +++ b/clients/client-proton/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UntagResourceCommand.ts b/clients/client-proton/src/commands/UntagResourceCommand.ts index 3748c63395c55..4e7e9afa5b1e2 100644 --- a/clients/client-proton/src/commands/UntagResourceCommand.ts +++ b/clients/client-proton/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-proton/src/commands/UpdateAccountSettingsCommand.ts index bff3013ac70bc..b9db8f4ad35c6 100644 --- a/clients/client-proton/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-proton/src/commands/UpdateAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountSettingsInput, UpdateAccountSettingsOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateAccountSettingsInput, UpdateAccountSettingsOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateComponentCommand.ts b/clients/client-proton/src/commands/UpdateComponentCommand.ts index c0520e26be68f..62249ed37c0ab 100644 --- a/clients/client-proton/src/commands/UpdateComponentCommand.ts +++ b/clients/client-proton/src/commands/UpdateComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateComponentInput, UpdateComponentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateComponentInput, UpdateComponentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateEnvironmentAccountConnectionCommand.ts b/clients/client-proton/src/commands/UpdateEnvironmentAccountConnectionCommand.ts index f575fe9dee3ad..e455678796e14 100644 --- a/clients/client-proton/src/commands/UpdateEnvironmentAccountConnectionCommand.ts +++ b/clients/client-proton/src/commands/UpdateEnvironmentAccountConnectionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentAccountConnectionInput, UpdateEnvironmentAccountConnectionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { + UpdateEnvironmentAccountConnectionInput, + UpdateEnvironmentAccountConnectionOutput, +} from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateEnvironmentAccountConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateEnvironmentCommand.ts b/clients/client-proton/src/commands/UpdateEnvironmentCommand.ts index 4e1e08660b03f..89444fe8593a3 100644 --- a/clients/client-proton/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-proton/src/commands/UpdateEnvironmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentInput, UpdateEnvironmentOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateEnvironmentInput, UpdateEnvironmentOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateEnvironment } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateEnvironmentTemplateCommand.ts b/clients/client-proton/src/commands/UpdateEnvironmentTemplateCommand.ts index 7e9db877d023a..76115ba7d6dba 100644 --- a/clients/client-proton/src/commands/UpdateEnvironmentTemplateCommand.ts +++ b/clients/client-proton/src/commands/UpdateEnvironmentTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentTemplateInput, UpdateEnvironmentTemplateOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateEnvironmentTemplateInput, UpdateEnvironmentTemplateOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateEnvironmentTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateEnvironmentTemplateVersionCommand.ts b/clients/client-proton/src/commands/UpdateEnvironmentTemplateVersionCommand.ts index 055f046f060f8..46c81e84ffbb6 100644 --- a/clients/client-proton/src/commands/UpdateEnvironmentTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/UpdateEnvironmentTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentTemplateVersionInput, UpdateEnvironmentTemplateVersionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateEnvironmentTemplateVersionInput, UpdateEnvironmentTemplateVersionOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateEnvironmentTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateServiceCommand.ts b/clients/client-proton/src/commands/UpdateServiceCommand.ts index f79acc91fcf25..3b5b97608adc4 100644 --- a/clients/client-proton/src/commands/UpdateServiceCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceInput, UpdateServiceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateServiceInput, UpdateServiceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateService } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateServiceInstanceCommand.ts b/clients/client-proton/src/commands/UpdateServiceInstanceCommand.ts index 14ceb09900897..6d1fd5da63384 100644 --- a/clients/client-proton/src/commands/UpdateServiceInstanceCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceInstanceInput, UpdateServiceInstanceOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateServiceInstanceInput, UpdateServiceInstanceOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateServiceInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateServicePipelineCommand.ts b/clients/client-proton/src/commands/UpdateServicePipelineCommand.ts index 2a10d45744bed..5c675d8162185 100644 --- a/clients/client-proton/src/commands/UpdateServicePipelineCommand.ts +++ b/clients/client-proton/src/commands/UpdateServicePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServicePipelineInput, UpdateServicePipelineOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateServicePipelineInput, UpdateServicePipelineOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateServicePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateServiceSyncBlockerCommand.ts b/clients/client-proton/src/commands/UpdateServiceSyncBlockerCommand.ts index 2d5ab2348e778..4b5696009f8a2 100644 --- a/clients/client-proton/src/commands/UpdateServiceSyncBlockerCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceSyncBlockerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceSyncBlockerInput, UpdateServiceSyncBlockerOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateServiceSyncBlockerInput, UpdateServiceSyncBlockerOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateServiceSyncBlocker } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateServiceSyncConfigCommand.ts b/clients/client-proton/src/commands/UpdateServiceSyncConfigCommand.ts index 5453924fce0fc..1f1fd100ec3bd 100644 --- a/clients/client-proton/src/commands/UpdateServiceSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceSyncConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceSyncConfigInput, UpdateServiceSyncConfigOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateServiceSyncConfigInput, UpdateServiceSyncConfigOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateServiceSyncConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateServiceTemplateCommand.ts b/clients/client-proton/src/commands/UpdateServiceTemplateCommand.ts index 8ab754a164708..72f6c22ac300a 100644 --- a/clients/client-proton/src/commands/UpdateServiceTemplateCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceTemplateInput, UpdateServiceTemplateOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateServiceTemplateInput, UpdateServiceTemplateOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateServiceTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateServiceTemplateVersionCommand.ts b/clients/client-proton/src/commands/UpdateServiceTemplateVersionCommand.ts index c388bf82c8c6f..724c042625452 100644 --- a/clients/client-proton/src/commands/UpdateServiceTemplateVersionCommand.ts +++ b/clients/client-proton/src/commands/UpdateServiceTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceTemplateVersionInput, UpdateServiceTemplateVersionOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateServiceTemplateVersionInput, UpdateServiceTemplateVersionOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateServiceTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/commands/UpdateTemplateSyncConfigCommand.ts b/clients/client-proton/src/commands/UpdateTemplateSyncConfigCommand.ts index c5611aaf820e7..f507b41762774 100644 --- a/clients/client-proton/src/commands/UpdateTemplateSyncConfigCommand.ts +++ b/clients/client-proton/src/commands/UpdateTemplateSyncConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTemplateSyncConfigInput, UpdateTemplateSyncConfigOutput } from "../models/models_0"; -import { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; +import type { UpdateTemplateSyncConfigInput, UpdateTemplateSyncConfigOutput } from "../models/models_0"; +import type { ProtonClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ProtonClient"; import { UpdateTemplateSyncConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-proton/src/endpoint/EndpointParameters.ts b/clients/client-proton/src/endpoint/EndpointParameters.ts index 1f4006f817aa7..8320b117470ea 100644 --- a/clients/client-proton/src/endpoint/EndpointParameters.ts +++ b/clients/client-proton/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-proton/src/endpoint/endpointResolver.ts b/clients/client-proton/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-proton/src/endpoint/endpointResolver.ts +++ b/clients/client-proton/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-proton/src/extensionConfiguration.ts b/clients/client-proton/src/extensionConfiguration.ts index dc77d6ee5c965..6a448c53d4d0c 100644 --- a/clients/client-proton/src/extensionConfiguration.ts +++ b/clients/client-proton/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-proton/src/models/ProtonServiceException.ts b/clients/client-proton/src/models/ProtonServiceException.ts index 948b60e821f46..c85a986bd8cb4 100644 --- a/clients/client-proton/src/models/ProtonServiceException.ts +++ b/clients/client-proton/src/models/ProtonServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-proton/src/models/errors.ts b/clients/client-proton/src/models/errors.ts index f2a46cf252b0a..f64221b3539ed 100644 --- a/clients/client-proton/src/models/errors.ts +++ b/clients/client-proton/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ProtonServiceException as __BaseException } from "./ProtonServiceException"; diff --git a/clients/client-proton/src/pagination/Interfaces.ts b/clients/client-proton/src/pagination/Interfaces.ts index f94042c5493a6..a9ff5654063f0 100644 --- a/clients/client-proton/src/pagination/Interfaces.ts +++ b/clients/client-proton/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ProtonClient } from "../ProtonClient"; diff --git a/clients/client-proton/src/pagination/ListComponentOutputsPaginator.ts b/clients/client-proton/src/pagination/ListComponentOutputsPaginator.ts index 4fb597f937cc8..d69b83cb36527 100644 --- a/clients/client-proton/src/pagination/ListComponentOutputsPaginator.ts +++ b/clients/client-proton/src/pagination/ListComponentOutputsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentOutputsCommand, diff --git a/clients/client-proton/src/pagination/ListComponentProvisionedResourcesPaginator.ts b/clients/client-proton/src/pagination/ListComponentProvisionedResourcesPaginator.ts index 47ba74e9db1a1..a7d09a78d0878 100644 --- a/clients/client-proton/src/pagination/ListComponentProvisionedResourcesPaginator.ts +++ b/clients/client-proton/src/pagination/ListComponentProvisionedResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentProvisionedResourcesCommand, diff --git a/clients/client-proton/src/pagination/ListComponentsPaginator.ts b/clients/client-proton/src/pagination/ListComponentsPaginator.ts index 050c1db5d42a2..3a2c7853b1eb9 100644 --- a/clients/client-proton/src/pagination/ListComponentsPaginator.ts +++ b/clients/client-proton/src/pagination/ListComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentsCommand, diff --git a/clients/client-proton/src/pagination/ListDeploymentsPaginator.ts b/clients/client-proton/src/pagination/ListDeploymentsPaginator.ts index 353711c273f81..d38bddb587e18 100644 --- a/clients/client-proton/src/pagination/ListDeploymentsPaginator.ts +++ b/clients/client-proton/src/pagination/ListDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeploymentsCommand, diff --git a/clients/client-proton/src/pagination/ListEnvironmentAccountConnectionsPaginator.ts b/clients/client-proton/src/pagination/ListEnvironmentAccountConnectionsPaginator.ts index c340aabc1ab8c..f2291cba29305 100644 --- a/clients/client-proton/src/pagination/ListEnvironmentAccountConnectionsPaginator.ts +++ b/clients/client-proton/src/pagination/ListEnvironmentAccountConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentAccountConnectionsCommand, diff --git a/clients/client-proton/src/pagination/ListEnvironmentOutputsPaginator.ts b/clients/client-proton/src/pagination/ListEnvironmentOutputsPaginator.ts index bcbf0a5649dc0..fed30782bc337 100644 --- a/clients/client-proton/src/pagination/ListEnvironmentOutputsPaginator.ts +++ b/clients/client-proton/src/pagination/ListEnvironmentOutputsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentOutputsCommand, diff --git a/clients/client-proton/src/pagination/ListEnvironmentProvisionedResourcesPaginator.ts b/clients/client-proton/src/pagination/ListEnvironmentProvisionedResourcesPaginator.ts index 5f43f2e77d826..fa99debc07d80 100644 --- a/clients/client-proton/src/pagination/ListEnvironmentProvisionedResourcesPaginator.ts +++ b/clients/client-proton/src/pagination/ListEnvironmentProvisionedResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentProvisionedResourcesCommand, diff --git a/clients/client-proton/src/pagination/ListEnvironmentTemplateVersionsPaginator.ts b/clients/client-proton/src/pagination/ListEnvironmentTemplateVersionsPaginator.ts index c2d38d6fbb959..c2858d70b882b 100644 --- a/clients/client-proton/src/pagination/ListEnvironmentTemplateVersionsPaginator.ts +++ b/clients/client-proton/src/pagination/ListEnvironmentTemplateVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentTemplateVersionsCommand, diff --git a/clients/client-proton/src/pagination/ListEnvironmentTemplatesPaginator.ts b/clients/client-proton/src/pagination/ListEnvironmentTemplatesPaginator.ts index 79f96a8e03de1..19d6c7ea20682 100644 --- a/clients/client-proton/src/pagination/ListEnvironmentTemplatesPaginator.ts +++ b/clients/client-proton/src/pagination/ListEnvironmentTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentTemplatesCommand, diff --git a/clients/client-proton/src/pagination/ListEnvironmentsPaginator.ts b/clients/client-proton/src/pagination/ListEnvironmentsPaginator.ts index 4464334175b4d..41c2bf27d923e 100644 --- a/clients/client-proton/src/pagination/ListEnvironmentsPaginator.ts +++ b/clients/client-proton/src/pagination/ListEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentsCommand, diff --git a/clients/client-proton/src/pagination/ListRepositoriesPaginator.ts b/clients/client-proton/src/pagination/ListRepositoriesPaginator.ts index 7c062c7e46d38..91d860af42fb1 100644 --- a/clients/client-proton/src/pagination/ListRepositoriesPaginator.ts +++ b/clients/client-proton/src/pagination/ListRepositoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRepositoriesCommand, diff --git a/clients/client-proton/src/pagination/ListRepositorySyncDefinitionsPaginator.ts b/clients/client-proton/src/pagination/ListRepositorySyncDefinitionsPaginator.ts index 8046474f8da5a..1b24ef8963ceb 100644 --- a/clients/client-proton/src/pagination/ListRepositorySyncDefinitionsPaginator.ts +++ b/clients/client-proton/src/pagination/ListRepositorySyncDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRepositorySyncDefinitionsCommand, diff --git a/clients/client-proton/src/pagination/ListServiceInstanceOutputsPaginator.ts b/clients/client-proton/src/pagination/ListServiceInstanceOutputsPaginator.ts index e8b70b3b7e57e..daee95d841ea8 100644 --- a/clients/client-proton/src/pagination/ListServiceInstanceOutputsPaginator.ts +++ b/clients/client-proton/src/pagination/ListServiceInstanceOutputsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceInstanceOutputsCommand, diff --git a/clients/client-proton/src/pagination/ListServiceInstanceProvisionedResourcesPaginator.ts b/clients/client-proton/src/pagination/ListServiceInstanceProvisionedResourcesPaginator.ts index 82edc492ef27a..2a4e73776698d 100644 --- a/clients/client-proton/src/pagination/ListServiceInstanceProvisionedResourcesPaginator.ts +++ b/clients/client-proton/src/pagination/ListServiceInstanceProvisionedResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceInstanceProvisionedResourcesCommand, diff --git a/clients/client-proton/src/pagination/ListServiceInstancesPaginator.ts b/clients/client-proton/src/pagination/ListServiceInstancesPaginator.ts index a47ad9d60c4c5..736eadccc26ad 100644 --- a/clients/client-proton/src/pagination/ListServiceInstancesPaginator.ts +++ b/clients/client-proton/src/pagination/ListServiceInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceInstancesCommand, diff --git a/clients/client-proton/src/pagination/ListServicePipelineOutputsPaginator.ts b/clients/client-proton/src/pagination/ListServicePipelineOutputsPaginator.ts index e49cae2dfa32f..8718ba8cd3295 100644 --- a/clients/client-proton/src/pagination/ListServicePipelineOutputsPaginator.ts +++ b/clients/client-proton/src/pagination/ListServicePipelineOutputsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicePipelineOutputsCommand, diff --git a/clients/client-proton/src/pagination/ListServicePipelineProvisionedResourcesPaginator.ts b/clients/client-proton/src/pagination/ListServicePipelineProvisionedResourcesPaginator.ts index 5238065835e77..bb22a2ea6aeb3 100644 --- a/clients/client-proton/src/pagination/ListServicePipelineProvisionedResourcesPaginator.ts +++ b/clients/client-proton/src/pagination/ListServicePipelineProvisionedResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicePipelineProvisionedResourcesCommand, diff --git a/clients/client-proton/src/pagination/ListServiceTemplateVersionsPaginator.ts b/clients/client-proton/src/pagination/ListServiceTemplateVersionsPaginator.ts index 02132f32b9fab..697d7d2731b98 100644 --- a/clients/client-proton/src/pagination/ListServiceTemplateVersionsPaginator.ts +++ b/clients/client-proton/src/pagination/ListServiceTemplateVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceTemplateVersionsCommand, diff --git a/clients/client-proton/src/pagination/ListServiceTemplatesPaginator.ts b/clients/client-proton/src/pagination/ListServiceTemplatesPaginator.ts index 7686f077b54c4..1949b69dd9c50 100644 --- a/clients/client-proton/src/pagination/ListServiceTemplatesPaginator.ts +++ b/clients/client-proton/src/pagination/ListServiceTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceTemplatesCommand, diff --git a/clients/client-proton/src/pagination/ListServicesPaginator.ts b/clients/client-proton/src/pagination/ListServicesPaginator.ts index f6d9efec26cb5..907a99066dfc7 100644 --- a/clients/client-proton/src/pagination/ListServicesPaginator.ts +++ b/clients/client-proton/src/pagination/ListServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicesCommand, diff --git a/clients/client-proton/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-proton/src/pagination/ListTagsForResourcePaginator.ts index 3122f220c2ad8..74f3b71732f0d 100644 --- a/clients/client-proton/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-proton/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-proton/src/runtimeConfig.browser.ts b/clients/client-proton/src/runtimeConfig.browser.ts index 0dd05749c26f3..3879d687ecfe6 100644 --- a/clients/client-proton/src/runtimeConfig.browser.ts +++ b/clients/client-proton/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ProtonClientConfig } from "./ProtonClient"; + +import type { ProtonClientConfig } from "./ProtonClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-proton/src/runtimeConfig.native.ts b/clients/client-proton/src/runtimeConfig.native.ts index 18656351c0bb6..28e70491fe316 100644 --- a/clients/client-proton/src/runtimeConfig.native.ts +++ b/clients/client-proton/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ProtonClientConfig } from "./ProtonClient"; +import type { ProtonClientConfig } from "./ProtonClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-proton/src/runtimeConfig.shared.ts b/clients/client-proton/src/runtimeConfig.shared.ts index dad9012899f5f..b4ed6d2ebea45 100644 --- a/clients/client-proton/src/runtimeConfig.shared.ts +++ b/clients/client-proton/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultProtonHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ProtonClientConfig } from "./ProtonClient"; +import type { ProtonClientConfig } from "./ProtonClient"; /** * @internal diff --git a/clients/client-proton/src/runtimeConfig.ts b/clients/client-proton/src/runtimeConfig.ts index 49bee901a9898..2aec8f0261ca9 100644 --- a/clients/client-proton/src/runtimeConfig.ts +++ b/clients/client-proton/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ProtonClientConfig } from "./ProtonClient"; + +import type { ProtonClientConfig } from "./ProtonClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-proton/src/runtimeExtensions.ts b/clients/client-proton/src/runtimeExtensions.ts index 312dfafee24f8..e3ddb4fcb3246 100644 --- a/clients/client-proton/src/runtimeExtensions.ts +++ b/clients/client-proton/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ProtonExtensionConfiguration } from "./extensionConfiguration"; +import type { ProtonExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-proton/src/schemas/schemas_0.ts b/clients/client-proton/src/schemas/schemas_0.ts index 28dbedccd5eb3..80ea557bd9148 100644 --- a/clients/client-proton/src/schemas/schemas_0.ts +++ b/clients/client-proton/src/schemas/schemas_0.ts @@ -516,7 +516,7 @@ const n0 = "com.amazonaws.proton"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-qapps/package.json b/clients/client-qapps/package.json index 73a2d3a029742..5437c8c6047bc 100644 --- a/clients/client-qapps/package.json +++ b/clients/client-qapps/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-qapps/src/QApps.ts b/clients/client-qapps/src/QApps.ts index 869713c86f0d3..247b762e66714 100644 --- a/clients/client-qapps/src/QApps.ts +++ b/clients/client-qapps/src/QApps.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateLibraryItemReviewCommand, @@ -149,7 +149,7 @@ import { UpdateQAppSessionMetadataCommandInput, UpdateQAppSessionMetadataCommandOutput, } from "./commands/UpdateQAppSessionMetadataCommand"; -import { QAppsClient, QAppsClientConfig } from "./QAppsClient"; +import { QAppsClient } from "./QAppsClient"; const commands = { AssociateLibraryItemReviewCommand, diff --git a/clients/client-qapps/src/QAppsClient.ts b/clients/client-qapps/src/QAppsClient.ts index 4c1daeb986d98..f584584b56bdc 100644 --- a/clients/client-qapps/src/QAppsClient.ts +++ b/clients/client-qapps/src/QAppsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultQAppsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -144,7 +153,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-qapps/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-qapps/src/auth/httpAuthExtensionConfiguration.ts index 081e2a69776e1..81a7ea49e1a11 100644 --- a/clients/client-qapps/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-qapps/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { QAppsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { QAppsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-qapps/src/auth/httpAuthSchemeProvider.ts b/clients/client-qapps/src/auth/httpAuthSchemeProvider.ts index 7861b693ac765..7640d3475725e 100644 --- a/clients/client-qapps/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-qapps/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { QAppsClientConfig, QAppsClientResolvedConfig } from "../QAppsClient"; +import { type QAppsClientResolvedConfig, QAppsClientConfig } from "../QAppsClient"; /** * @internal diff --git a/clients/client-qapps/src/commands/AssociateLibraryItemReviewCommand.ts b/clients/client-qapps/src/commands/AssociateLibraryItemReviewCommand.ts index e6d441d726079..9843b6c09e0df 100644 --- a/clients/client-qapps/src/commands/AssociateLibraryItemReviewCommand.ts +++ b/clients/client-qapps/src/commands/AssociateLibraryItemReviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateLibraryItemReviewInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { AssociateLibraryItemReviewInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { AssociateLibraryItemReview } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/AssociateQAppWithUserCommand.ts b/clients/client-qapps/src/commands/AssociateQAppWithUserCommand.ts index bf667bf31a2af..180dada1ceacd 100644 --- a/clients/client-qapps/src/commands/AssociateQAppWithUserCommand.ts +++ b/clients/client-qapps/src/commands/AssociateQAppWithUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateQAppWithUserInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { AssociateQAppWithUserInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { AssociateQAppWithUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/BatchCreateCategoryCommand.ts b/clients/client-qapps/src/commands/BatchCreateCategoryCommand.ts index 8594d9c1cfd21..f8faa9f389d34 100644 --- a/clients/client-qapps/src/commands/BatchCreateCategoryCommand.ts +++ b/clients/client-qapps/src/commands/BatchCreateCategoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateCategoryInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { BatchCreateCategoryInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { BatchCreateCategory } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/BatchDeleteCategoryCommand.ts b/clients/client-qapps/src/commands/BatchDeleteCategoryCommand.ts index cb10708f65c53..5ac5f6222af91 100644 --- a/clients/client-qapps/src/commands/BatchDeleteCategoryCommand.ts +++ b/clients/client-qapps/src/commands/BatchDeleteCategoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteCategoryInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { BatchDeleteCategoryInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { BatchDeleteCategory } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/BatchUpdateCategoryCommand.ts b/clients/client-qapps/src/commands/BatchUpdateCategoryCommand.ts index 7419f6f893a8f..f949973e08e2e 100644 --- a/clients/client-qapps/src/commands/BatchUpdateCategoryCommand.ts +++ b/clients/client-qapps/src/commands/BatchUpdateCategoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateCategoryInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { BatchUpdateCategoryInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { BatchUpdateCategory } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/CreateLibraryItemCommand.ts b/clients/client-qapps/src/commands/CreateLibraryItemCommand.ts index f70542a037eb9..20729859707cf 100644 --- a/clients/client-qapps/src/commands/CreateLibraryItemCommand.ts +++ b/clients/client-qapps/src/commands/CreateLibraryItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLibraryItemInput, CreateLibraryItemOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { CreateLibraryItemInput, CreateLibraryItemOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { CreateLibraryItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/CreatePresignedUrlCommand.ts b/clients/client-qapps/src/commands/CreatePresignedUrlCommand.ts index fa21199b481b4..4c3d6f17e026b 100644 --- a/clients/client-qapps/src/commands/CreatePresignedUrlCommand.ts +++ b/clients/client-qapps/src/commands/CreatePresignedUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePresignedUrlInput, CreatePresignedUrlOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { CreatePresignedUrlInput, CreatePresignedUrlOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { CreatePresignedUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/CreateQAppCommand.ts b/clients/client-qapps/src/commands/CreateQAppCommand.ts index dccac8bb11b15..1e167969e8021 100644 --- a/clients/client-qapps/src/commands/CreateQAppCommand.ts +++ b/clients/client-qapps/src/commands/CreateQAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQAppInput, CreateQAppOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { CreateQAppInput, CreateQAppOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { CreateQApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/DeleteLibraryItemCommand.ts b/clients/client-qapps/src/commands/DeleteLibraryItemCommand.ts index e6a8d187b60df..4744c22846129 100644 --- a/clients/client-qapps/src/commands/DeleteLibraryItemCommand.ts +++ b/clients/client-qapps/src/commands/DeleteLibraryItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLibraryItemInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { DeleteLibraryItemInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { DeleteLibraryItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/DeleteQAppCommand.ts b/clients/client-qapps/src/commands/DeleteQAppCommand.ts index 2d82fc21f5749..e133edd671991 100644 --- a/clients/client-qapps/src/commands/DeleteQAppCommand.ts +++ b/clients/client-qapps/src/commands/DeleteQAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQAppInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { DeleteQAppInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { DeleteQApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/DescribeQAppPermissionsCommand.ts b/clients/client-qapps/src/commands/DescribeQAppPermissionsCommand.ts index 5db1adda3f3e8..a5634c66851a8 100644 --- a/clients/client-qapps/src/commands/DescribeQAppPermissionsCommand.ts +++ b/clients/client-qapps/src/commands/DescribeQAppPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeQAppPermissionsInput, DescribeQAppPermissionsOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { DescribeQAppPermissionsInput, DescribeQAppPermissionsOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { DescribeQAppPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/DisassociateLibraryItemReviewCommand.ts b/clients/client-qapps/src/commands/DisassociateLibraryItemReviewCommand.ts index a4868d4570eba..9a5d806bc0f04 100644 --- a/clients/client-qapps/src/commands/DisassociateLibraryItemReviewCommand.ts +++ b/clients/client-qapps/src/commands/DisassociateLibraryItemReviewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateLibraryItemReviewInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { DisassociateLibraryItemReviewInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { DisassociateLibraryItemReview } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/DisassociateQAppFromUserCommand.ts b/clients/client-qapps/src/commands/DisassociateQAppFromUserCommand.ts index 320a73474d843..bc228a089851e 100644 --- a/clients/client-qapps/src/commands/DisassociateQAppFromUserCommand.ts +++ b/clients/client-qapps/src/commands/DisassociateQAppFromUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateQAppFromUserInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { DisassociateQAppFromUserInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { DisassociateQAppFromUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/ExportQAppSessionDataCommand.ts b/clients/client-qapps/src/commands/ExportQAppSessionDataCommand.ts index f70e77418c7ba..495b298204660 100644 --- a/clients/client-qapps/src/commands/ExportQAppSessionDataCommand.ts +++ b/clients/client-qapps/src/commands/ExportQAppSessionDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportQAppSessionDataInput, ExportQAppSessionDataOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { ExportQAppSessionDataInput, ExportQAppSessionDataOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { ExportQAppSessionData } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/GetLibraryItemCommand.ts b/clients/client-qapps/src/commands/GetLibraryItemCommand.ts index 3e8a52f802455..ea92097c3569c 100644 --- a/clients/client-qapps/src/commands/GetLibraryItemCommand.ts +++ b/clients/client-qapps/src/commands/GetLibraryItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLibraryItemInput, GetLibraryItemOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { GetLibraryItemInput, GetLibraryItemOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { GetLibraryItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/GetQAppCommand.ts b/clients/client-qapps/src/commands/GetQAppCommand.ts index f28e118935d5d..ec6de81e4aa0b 100644 --- a/clients/client-qapps/src/commands/GetQAppCommand.ts +++ b/clients/client-qapps/src/commands/GetQAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQAppInput, GetQAppOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { GetQAppInput, GetQAppOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { GetQApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/GetQAppSessionCommand.ts b/clients/client-qapps/src/commands/GetQAppSessionCommand.ts index e3994eb2ed5ec..335b76df947b7 100644 --- a/clients/client-qapps/src/commands/GetQAppSessionCommand.ts +++ b/clients/client-qapps/src/commands/GetQAppSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQAppSessionInput, GetQAppSessionOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { GetQAppSessionInput, GetQAppSessionOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { GetQAppSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/GetQAppSessionMetadataCommand.ts b/clients/client-qapps/src/commands/GetQAppSessionMetadataCommand.ts index b919f8ee4d8cb..feb43d11db9cd 100644 --- a/clients/client-qapps/src/commands/GetQAppSessionMetadataCommand.ts +++ b/clients/client-qapps/src/commands/GetQAppSessionMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQAppSessionMetadataInput, GetQAppSessionMetadataOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { GetQAppSessionMetadataInput, GetQAppSessionMetadataOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { GetQAppSessionMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/ImportDocumentCommand.ts b/clients/client-qapps/src/commands/ImportDocumentCommand.ts index a55f642818683..6c975e106a2c3 100644 --- a/clients/client-qapps/src/commands/ImportDocumentCommand.ts +++ b/clients/client-qapps/src/commands/ImportDocumentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportDocumentInput, ImportDocumentOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { ImportDocumentInput, ImportDocumentOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { ImportDocument } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/ListCategoriesCommand.ts b/clients/client-qapps/src/commands/ListCategoriesCommand.ts index 591f2d277ef11..6b673dad38721 100644 --- a/clients/client-qapps/src/commands/ListCategoriesCommand.ts +++ b/clients/client-qapps/src/commands/ListCategoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCategoriesInput, ListCategoriesOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { ListCategoriesInput, ListCategoriesOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { ListCategories } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/ListLibraryItemsCommand.ts b/clients/client-qapps/src/commands/ListLibraryItemsCommand.ts index 1c3e88213a4ff..74076471cc2fa 100644 --- a/clients/client-qapps/src/commands/ListLibraryItemsCommand.ts +++ b/clients/client-qapps/src/commands/ListLibraryItemsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLibraryItemsInput, ListLibraryItemsOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { ListLibraryItemsInput, ListLibraryItemsOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { ListLibraryItems } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/ListQAppSessionDataCommand.ts b/clients/client-qapps/src/commands/ListQAppSessionDataCommand.ts index ed225157720a9..2c93162f466c6 100644 --- a/clients/client-qapps/src/commands/ListQAppSessionDataCommand.ts +++ b/clients/client-qapps/src/commands/ListQAppSessionDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQAppSessionDataInput, ListQAppSessionDataOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { ListQAppSessionDataInput, ListQAppSessionDataOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { ListQAppSessionData } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/ListQAppsCommand.ts b/clients/client-qapps/src/commands/ListQAppsCommand.ts index e23a0eb4719f5..bbd6f5b8baf19 100644 --- a/clients/client-qapps/src/commands/ListQAppsCommand.ts +++ b/clients/client-qapps/src/commands/ListQAppsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQAppsInput, ListQAppsOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { ListQAppsInput, ListQAppsOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { ListQApps } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/ListTagsForResourceCommand.ts b/clients/client-qapps/src/commands/ListTagsForResourceCommand.ts index fb4e21cc1bc67..be611228170da 100644 --- a/clients/client-qapps/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-qapps/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/PredictQAppCommand.ts b/clients/client-qapps/src/commands/PredictQAppCommand.ts index 7d5ee357588a8..a6d82b243eaa5 100644 --- a/clients/client-qapps/src/commands/PredictQAppCommand.ts +++ b/clients/client-qapps/src/commands/PredictQAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PredictQAppInput, PredictQAppOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { PredictQAppInput, PredictQAppOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { PredictQApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/StartQAppSessionCommand.ts b/clients/client-qapps/src/commands/StartQAppSessionCommand.ts index 483fa48ec41e1..63eed7563b054 100644 --- a/clients/client-qapps/src/commands/StartQAppSessionCommand.ts +++ b/clients/client-qapps/src/commands/StartQAppSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartQAppSessionInput, StartQAppSessionOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { StartQAppSessionInput, StartQAppSessionOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { StartQAppSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/StopQAppSessionCommand.ts b/clients/client-qapps/src/commands/StopQAppSessionCommand.ts index 6f0936b99b541..071d489ee35e1 100644 --- a/clients/client-qapps/src/commands/StopQAppSessionCommand.ts +++ b/clients/client-qapps/src/commands/StopQAppSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopQAppSessionInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { StopQAppSessionInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { StopQAppSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/TagResourceCommand.ts b/clients/client-qapps/src/commands/TagResourceCommand.ts index 4f9cb4ae64ebd..d744fc2fc23b9 100644 --- a/clients/client-qapps/src/commands/TagResourceCommand.ts +++ b/clients/client-qapps/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/UntagResourceCommand.ts b/clients/client-qapps/src/commands/UntagResourceCommand.ts index 56e0cf2d6e80c..4500db288cf47 100644 --- a/clients/client-qapps/src/commands/UntagResourceCommand.ts +++ b/clients/client-qapps/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/UpdateLibraryItemCommand.ts b/clients/client-qapps/src/commands/UpdateLibraryItemCommand.ts index af15d049fa140..3822b34c322da 100644 --- a/clients/client-qapps/src/commands/UpdateLibraryItemCommand.ts +++ b/clients/client-qapps/src/commands/UpdateLibraryItemCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLibraryItemInput, UpdateLibraryItemOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { UpdateLibraryItemInput, UpdateLibraryItemOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { UpdateLibraryItem } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/UpdateLibraryItemMetadataCommand.ts b/clients/client-qapps/src/commands/UpdateLibraryItemMetadataCommand.ts index 7451a815575a0..3b2ac28c3ed69 100644 --- a/clients/client-qapps/src/commands/UpdateLibraryItemMetadataCommand.ts +++ b/clients/client-qapps/src/commands/UpdateLibraryItemMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLibraryItemMetadataInput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { UpdateLibraryItemMetadataInput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { UpdateLibraryItemMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/UpdateQAppCommand.ts b/clients/client-qapps/src/commands/UpdateQAppCommand.ts index 4656da9127a2d..9aaabb70f2cbc 100644 --- a/clients/client-qapps/src/commands/UpdateQAppCommand.ts +++ b/clients/client-qapps/src/commands/UpdateQAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQAppInput, UpdateQAppOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { UpdateQAppInput, UpdateQAppOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { UpdateQApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/UpdateQAppPermissionsCommand.ts b/clients/client-qapps/src/commands/UpdateQAppPermissionsCommand.ts index 74cf78a5c9ca1..586c5e89d92c9 100644 --- a/clients/client-qapps/src/commands/UpdateQAppPermissionsCommand.ts +++ b/clients/client-qapps/src/commands/UpdateQAppPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQAppPermissionsInput, UpdateQAppPermissionsOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { UpdateQAppPermissionsInput, UpdateQAppPermissionsOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { UpdateQAppPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/UpdateQAppSessionCommand.ts b/clients/client-qapps/src/commands/UpdateQAppSessionCommand.ts index 75c4632d3dc36..31d73eb2c2db9 100644 --- a/clients/client-qapps/src/commands/UpdateQAppSessionCommand.ts +++ b/clients/client-qapps/src/commands/UpdateQAppSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQAppSessionInput, UpdateQAppSessionOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { UpdateQAppSessionInput, UpdateQAppSessionOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { UpdateQAppSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/commands/UpdateQAppSessionMetadataCommand.ts b/clients/client-qapps/src/commands/UpdateQAppSessionMetadataCommand.ts index 30b5587727329..91883fc33a4a3 100644 --- a/clients/client-qapps/src/commands/UpdateQAppSessionMetadataCommand.ts +++ b/clients/client-qapps/src/commands/UpdateQAppSessionMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQAppSessionMetadataInput, UpdateQAppSessionMetadataOutput } from "../models/models_0"; -import { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; +import type { UpdateQAppSessionMetadataInput, UpdateQAppSessionMetadataOutput } from "../models/models_0"; +import type { QAppsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QAppsClient"; import { UpdateQAppSessionMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-qapps/src/endpoint/EndpointParameters.ts b/clients/client-qapps/src/endpoint/EndpointParameters.ts index 54f23bd351748..af3653c9bb1d3 100644 --- a/clients/client-qapps/src/endpoint/EndpointParameters.ts +++ b/clients/client-qapps/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-qapps/src/endpoint/endpointResolver.ts b/clients/client-qapps/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-qapps/src/endpoint/endpointResolver.ts +++ b/clients/client-qapps/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-qapps/src/extensionConfiguration.ts b/clients/client-qapps/src/extensionConfiguration.ts index 989deef9df97b..d286191d41591 100644 --- a/clients/client-qapps/src/extensionConfiguration.ts +++ b/clients/client-qapps/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-qapps/src/models/QAppsServiceException.ts b/clients/client-qapps/src/models/QAppsServiceException.ts index 48eb3b9a118f9..374630ae23489 100644 --- a/clients/client-qapps/src/models/QAppsServiceException.ts +++ b/clients/client-qapps/src/models/QAppsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-qapps/src/models/errors.ts b/clients/client-qapps/src/models/errors.ts index 7e2b8700bbb2d..56dac5778d2d6 100644 --- a/clients/client-qapps/src/models/errors.ts +++ b/clients/client-qapps/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { QAppsServiceException as __BaseException } from "./QAppsServiceException"; diff --git a/clients/client-qapps/src/pagination/Interfaces.ts b/clients/client-qapps/src/pagination/Interfaces.ts index 8ece7b6029247..bfb2ec1589eea 100644 --- a/clients/client-qapps/src/pagination/Interfaces.ts +++ b/clients/client-qapps/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { QAppsClient } from "../QAppsClient"; diff --git a/clients/client-qapps/src/pagination/ListLibraryItemsPaginator.ts b/clients/client-qapps/src/pagination/ListLibraryItemsPaginator.ts index 2705b1e0e57e1..5f68c25febac2 100644 --- a/clients/client-qapps/src/pagination/ListLibraryItemsPaginator.ts +++ b/clients/client-qapps/src/pagination/ListLibraryItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLibraryItemsCommand, diff --git a/clients/client-qapps/src/pagination/ListQAppsPaginator.ts b/clients/client-qapps/src/pagination/ListQAppsPaginator.ts index 24de6d981d259..ac48f8c58db2e 100644 --- a/clients/client-qapps/src/pagination/ListQAppsPaginator.ts +++ b/clients/client-qapps/src/pagination/ListQAppsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQAppsCommand, ListQAppsCommandInput, ListQAppsCommandOutput } from "../commands/ListQAppsCommand"; import { QAppsClient } from "../QAppsClient"; diff --git a/clients/client-qapps/src/runtimeConfig.browser.ts b/clients/client-qapps/src/runtimeConfig.browser.ts index a01fd89c172d9..ad87e9b51c89b 100644 --- a/clients/client-qapps/src/runtimeConfig.browser.ts +++ b/clients/client-qapps/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QAppsClientConfig } from "./QAppsClient"; + +import type { QAppsClientConfig } from "./QAppsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-qapps/src/runtimeConfig.native.ts b/clients/client-qapps/src/runtimeConfig.native.ts index 11958e6433687..5d5865f3a6e54 100644 --- a/clients/client-qapps/src/runtimeConfig.native.ts +++ b/clients/client-qapps/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { QAppsClientConfig } from "./QAppsClient"; +import type { QAppsClientConfig } from "./QAppsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-qapps/src/runtimeConfig.shared.ts b/clients/client-qapps/src/runtimeConfig.shared.ts index 2151efeef009a..058d966e1df6b 100644 --- a/clients/client-qapps/src/runtimeConfig.shared.ts +++ b/clients/client-qapps/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultQAppsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { QAppsClientConfig } from "./QAppsClient"; +import type { QAppsClientConfig } from "./QAppsClient"; /** * @internal diff --git a/clients/client-qapps/src/runtimeConfig.ts b/clients/client-qapps/src/runtimeConfig.ts index 63acea369dde6..2c67a0a30170c 100644 --- a/clients/client-qapps/src/runtimeConfig.ts +++ b/clients/client-qapps/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QAppsClientConfig } from "./QAppsClient"; + +import type { QAppsClientConfig } from "./QAppsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-qapps/src/runtimeExtensions.ts b/clients/client-qapps/src/runtimeExtensions.ts index 665134479e5ff..bf8fec53ae749 100644 --- a/clients/client-qapps/src/runtimeExtensions.ts +++ b/clients/client-qapps/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { QAppsExtensionConfiguration } from "./extensionConfiguration"; +import type { QAppsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-qapps/src/schemas/schemas_0.ts b/clients/client-qapps/src/schemas/schemas_0.ts index d80b015f343a2..95a02990913d6 100644 --- a/clients/client-qapps/src/schemas/schemas_0.ts +++ b/clients/client-qapps/src/schemas/schemas_0.ts @@ -291,7 +291,7 @@ const n0 = "com.amazonaws.qapps"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-qbusiness/package.json b/clients/client-qbusiness/package.json index e52883d76af42..9ab0e5bdb2a69 100644 --- a/clients/client-qbusiness/package.json +++ b/clients/client-qbusiness/package.json @@ -34,7 +34,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -42,21 +42,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-qbusiness/src/QBusiness.ts b/clients/client-qbusiness/src/QBusiness.ts index 998a4f08eca12..9acfb3f3be4b7 100644 --- a/clients/client-qbusiness/src/QBusiness.ts +++ b/clients/client-qbusiness/src/QBusiness.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociatePermissionCommand, @@ -333,7 +333,7 @@ import { UpdateWebExperienceCommandInput, UpdateWebExperienceCommandOutput, } from "./commands/UpdateWebExperienceCommand"; -import { QBusinessClient, QBusinessClientConfig } from "./QBusinessClient"; +import { QBusinessClient } from "./QBusinessClient"; const commands = { AssociatePermissionCommand, diff --git a/clients/client-qbusiness/src/QBusinessClient.ts b/clients/client-qbusiness/src/QBusinessClient.ts index 3db04b630d979..6f878dac43c01 100644 --- a/clients/client-qbusiness/src/QBusinessClient.ts +++ b/clients/client-qbusiness/src/QBusinessClient.ts @@ -1,25 +1,25 @@ // smithy-typescript generated code import { - EventStreamInputConfig, - EventStreamResolvedConfig, + type EventStreamInputConfig, + type EventStreamResolvedConfig, resolveEventStreamConfig, } from "@aws-sdk/middleware-eventstream"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -27,46 +27,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultQBusinessHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -228,7 +237,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-qbusiness/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-qbusiness/src/auth/httpAuthExtensionConfiguration.ts index e2f27f318c6d3..efb827316c6be 100644 --- a/clients/client-qbusiness/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-qbusiness/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { QBusinessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { QBusinessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-qbusiness/src/auth/httpAuthSchemeProvider.ts b/clients/client-qbusiness/src/auth/httpAuthSchemeProvider.ts index f612cb468ea93..854f8fc3c5cb7 100644 --- a/clients/client-qbusiness/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-qbusiness/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { QBusinessClientConfig, QBusinessClientResolvedConfig } from "../QBusinessClient"; +import { type QBusinessClientResolvedConfig, QBusinessClientConfig } from "../QBusinessClient"; /** * @internal diff --git a/clients/client-qbusiness/src/commands/AssociatePermissionCommand.ts b/clients/client-qbusiness/src/commands/AssociatePermissionCommand.ts index 0e5ae82ef8008..f71e3bffbc4ef 100644 --- a/clients/client-qbusiness/src/commands/AssociatePermissionCommand.ts +++ b/clients/client-qbusiness/src/commands/AssociatePermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociatePermissionRequest, AssociatePermissionResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { AssociatePermissionRequest, AssociatePermissionResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { AssociatePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/BatchDeleteDocumentCommand.ts b/clients/client-qbusiness/src/commands/BatchDeleteDocumentCommand.ts index e9628bfd64d88..f27f3bb6a229b 100644 --- a/clients/client-qbusiness/src/commands/BatchDeleteDocumentCommand.ts +++ b/clients/client-qbusiness/src/commands/BatchDeleteDocumentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteDocumentRequest, BatchDeleteDocumentResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { BatchDeleteDocumentRequest, BatchDeleteDocumentResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { BatchDeleteDocument } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/BatchPutDocumentCommand.ts b/clients/client-qbusiness/src/commands/BatchPutDocumentCommand.ts index 3baa3565a55d6..7c2a0cf75a511 100644 --- a/clients/client-qbusiness/src/commands/BatchPutDocumentCommand.ts +++ b/clients/client-qbusiness/src/commands/BatchPutDocumentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchPutDocumentRequest, BatchPutDocumentResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { BatchPutDocumentRequest, BatchPutDocumentResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { BatchPutDocument } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CancelSubscriptionCommand.ts b/clients/client-qbusiness/src/commands/CancelSubscriptionCommand.ts index f5857cf445d2f..13ed7997edf38 100644 --- a/clients/client-qbusiness/src/commands/CancelSubscriptionCommand.ts +++ b/clients/client-qbusiness/src/commands/CancelSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelSubscriptionRequest, CancelSubscriptionResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CancelSubscriptionRequest, CancelSubscriptionResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CancelSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ChatCommand.ts b/clients/client-qbusiness/src/commands/ChatCommand.ts index 7fc2d26f7510b..7be0143691dad 100644 --- a/clients/client-qbusiness/src/commands/ChatCommand.ts +++ b/clients/client-qbusiness/src/commands/ChatCommand.ts @@ -2,12 +2,12 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ChatOutput } from "../models/models_0"; -import { ChatInput } from "../models/models_1"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ChatOutput } from "../models/models_0"; +import type { ChatInput } from "../models/models_1"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { Chat } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ChatSyncCommand.ts b/clients/client-qbusiness/src/commands/ChatSyncCommand.ts index 83bf54952816d..548015ba39b06 100644 --- a/clients/client-qbusiness/src/commands/ChatSyncCommand.ts +++ b/clients/client-qbusiness/src/commands/ChatSyncCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ChatSyncOutput } from "../models/models_0"; -import { ChatSyncInput } from "../models/models_1"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ChatSyncOutput } from "../models/models_0"; +import type { ChatSyncInput } from "../models/models_1"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ChatSync } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CheckDocumentAccessCommand.ts b/clients/client-qbusiness/src/commands/CheckDocumentAccessCommand.ts index 8ec010c54c827..82ee1adf02a69 100644 --- a/clients/client-qbusiness/src/commands/CheckDocumentAccessCommand.ts +++ b/clients/client-qbusiness/src/commands/CheckDocumentAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CheckDocumentAccessRequest, CheckDocumentAccessResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CheckDocumentAccessRequest, CheckDocumentAccessResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CheckDocumentAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateAnonymousWebExperienceUrlCommand.ts b/clients/client-qbusiness/src/commands/CreateAnonymousWebExperienceUrlCommand.ts index 2fc089765f7c7..6a9c97e75da9c 100644 --- a/clients/client-qbusiness/src/commands/CreateAnonymousWebExperienceUrlCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateAnonymousWebExperienceUrlCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnonymousWebExperienceUrlRequest, CreateAnonymousWebExperienceUrlResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { + CreateAnonymousWebExperienceUrlRequest, + CreateAnonymousWebExperienceUrlResponse, +} from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateAnonymousWebExperienceUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateApplicationCommand.ts b/clients/client-qbusiness/src/commands/CreateApplicationCommand.ts index 0e08ca450e2a1..890e57812c0b7 100644 --- a/clients/client-qbusiness/src/commands/CreateApplicationCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateChatResponseConfigurationCommand.ts b/clients/client-qbusiness/src/commands/CreateChatResponseConfigurationCommand.ts index 6c9d0ab669297..4e80f53b29ece 100644 --- a/clients/client-qbusiness/src/commands/CreateChatResponseConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateChatResponseConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChatResponseConfigurationRequest, CreateChatResponseConfigurationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { + CreateChatResponseConfigurationRequest, + CreateChatResponseConfigurationResponse, +} from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateChatResponseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateDataAccessorCommand.ts b/clients/client-qbusiness/src/commands/CreateDataAccessorCommand.ts index 2a864ce2b49bd..7b199d0c01b8b 100644 --- a/clients/client-qbusiness/src/commands/CreateDataAccessorCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateDataAccessorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataAccessorResponse } from "../models/models_0"; -import { CreateDataAccessorRequest } from "../models/models_1"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CreateDataAccessorResponse } from "../models/models_0"; +import type { CreateDataAccessorRequest } from "../models/models_1"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateDataAccessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateDataSourceCommand.ts b/clients/client-qbusiness/src/commands/CreateDataSourceCommand.ts index 1f8d6a34b5229..b03e90c21a0c9 100644 --- a/clients/client-qbusiness/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateIndexCommand.ts b/clients/client-qbusiness/src/commands/CreateIndexCommand.ts index 93c5380fc4c29..ee2f524c1c74c 100644 --- a/clients/client-qbusiness/src/commands/CreateIndexCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CreateIndexRequest, CreateIndexResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreatePluginCommand.ts b/clients/client-qbusiness/src/commands/CreatePluginCommand.ts index 1ce785feb5ccb..351c2f31e9626 100644 --- a/clients/client-qbusiness/src/commands/CreatePluginCommand.ts +++ b/clients/client-qbusiness/src/commands/CreatePluginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePluginRequest, CreatePluginResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CreatePluginRequest, CreatePluginResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreatePlugin } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateRetrieverCommand.ts b/clients/client-qbusiness/src/commands/CreateRetrieverCommand.ts index 23e075e3415fb..8f95a86bf134b 100644 --- a/clients/client-qbusiness/src/commands/CreateRetrieverCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateRetrieverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRetrieverRequest, CreateRetrieverResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CreateRetrieverRequest, CreateRetrieverResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateRetriever } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateSubscriptionCommand.ts b/clients/client-qbusiness/src/commands/CreateSubscriptionCommand.ts index b11a8859e4cfd..2138d54df2892 100644 --- a/clients/client-qbusiness/src/commands/CreateSubscriptionCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubscriptionRequest, CreateSubscriptionResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CreateSubscriptionRequest, CreateSubscriptionResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateUserCommand.ts b/clients/client-qbusiness/src/commands/CreateUserCommand.ts index f51864a35c50d..ae20c32e0b2c7 100644 --- a/clients/client-qbusiness/src/commands/CreateUserCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/CreateWebExperienceCommand.ts b/clients/client-qbusiness/src/commands/CreateWebExperienceCommand.ts index 66223338a4412..f177c676c0d8d 100644 --- a/clients/client-qbusiness/src/commands/CreateWebExperienceCommand.ts +++ b/clients/client-qbusiness/src/commands/CreateWebExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebExperienceRequest, CreateWebExperienceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { CreateWebExperienceRequest, CreateWebExperienceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { CreateWebExperience } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteApplicationCommand.ts b/clients/client-qbusiness/src/commands/DeleteApplicationCommand.ts index b1b8282b65616..ca5f4ed419153 100644 --- a/clients/client-qbusiness/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteAttachmentCommand.ts b/clients/client-qbusiness/src/commands/DeleteAttachmentCommand.ts index 9242632697d22..23ca8aaaa3c3a 100644 --- a/clients/client-qbusiness/src/commands/DeleteAttachmentCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteAttachmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAttachmentRequest, DeleteAttachmentResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteAttachmentRequest, DeleteAttachmentResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteChatControlsConfigurationCommand.ts b/clients/client-qbusiness/src/commands/DeleteChatControlsConfigurationCommand.ts index 503bd9015ac99..4af95cd869d3d 100644 --- a/clients/client-qbusiness/src/commands/DeleteChatControlsConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteChatControlsConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChatControlsConfigurationRequest, DeleteChatControlsConfigurationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { + DeleteChatControlsConfigurationRequest, + DeleteChatControlsConfigurationResponse, +} from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteChatControlsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteChatResponseConfigurationCommand.ts b/clients/client-qbusiness/src/commands/DeleteChatResponseConfigurationCommand.ts index f5d9da69f5817..22bde57db892b 100644 --- a/clients/client-qbusiness/src/commands/DeleteChatResponseConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteChatResponseConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChatResponseConfigurationRequest, DeleteChatResponseConfigurationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { + DeleteChatResponseConfigurationRequest, + DeleteChatResponseConfigurationResponse, +} from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteChatResponseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteConversationCommand.ts b/clients/client-qbusiness/src/commands/DeleteConversationCommand.ts index 3f93f368af4bb..a85032856cb19 100644 --- a/clients/client-qbusiness/src/commands/DeleteConversationCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteConversationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConversationRequest, DeleteConversationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteConversationRequest, DeleteConversationResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteConversation } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteDataAccessorCommand.ts b/clients/client-qbusiness/src/commands/DeleteDataAccessorCommand.ts index bc4297368382f..a985fbd8ea64b 100644 --- a/clients/client-qbusiness/src/commands/DeleteDataAccessorCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteDataAccessorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataAccessorRequest, DeleteDataAccessorResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteDataAccessorRequest, DeleteDataAccessorResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteDataAccessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteDataSourceCommand.ts b/clients/client-qbusiness/src/commands/DeleteDataSourceCommand.ts index ab1a810828baa..ee134d4780311 100644 --- a/clients/client-qbusiness/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteGroupCommand.ts b/clients/client-qbusiness/src/commands/DeleteGroupCommand.ts index 8514d838d271e..844cb4a79d5a9 100644 --- a/clients/client-qbusiness/src/commands/DeleteGroupCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteIndexCommand.ts b/clients/client-qbusiness/src/commands/DeleteIndexCommand.ts index 72044d61ad91e..0fbb269e7a382 100644 --- a/clients/client-qbusiness/src/commands/DeleteIndexCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIndexRequest, DeleteIndexResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteIndexRequest, DeleteIndexResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeletePluginCommand.ts b/clients/client-qbusiness/src/commands/DeletePluginCommand.ts index 30ff941452722..c06fdafa102d2 100644 --- a/clients/client-qbusiness/src/commands/DeletePluginCommand.ts +++ b/clients/client-qbusiness/src/commands/DeletePluginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePluginRequest, DeletePluginResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeletePluginRequest, DeletePluginResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeletePlugin } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteRetrieverCommand.ts b/clients/client-qbusiness/src/commands/DeleteRetrieverCommand.ts index 8a041ec46cc3a..0ae0f831ec619 100644 --- a/clients/client-qbusiness/src/commands/DeleteRetrieverCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteRetrieverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRetrieverRequest, DeleteRetrieverResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteRetrieverRequest, DeleteRetrieverResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteRetriever } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteUserCommand.ts b/clients/client-qbusiness/src/commands/DeleteUserCommand.ts index 0cfcd820bfbaa..36a4335dfa47a 100644 --- a/clients/client-qbusiness/src/commands/DeleteUserCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DeleteWebExperienceCommand.ts b/clients/client-qbusiness/src/commands/DeleteWebExperienceCommand.ts index 4ad8fd3338edd..0f71c4e1c4128 100644 --- a/clients/client-qbusiness/src/commands/DeleteWebExperienceCommand.ts +++ b/clients/client-qbusiness/src/commands/DeleteWebExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebExperienceRequest, DeleteWebExperienceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DeleteWebExperienceRequest, DeleteWebExperienceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DeleteWebExperience } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/DisassociatePermissionCommand.ts b/clients/client-qbusiness/src/commands/DisassociatePermissionCommand.ts index 9b14ee2a0b842..ce0d757679931 100644 --- a/clients/client-qbusiness/src/commands/DisassociatePermissionCommand.ts +++ b/clients/client-qbusiness/src/commands/DisassociatePermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociatePermissionRequest, DisassociatePermissionResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { DisassociatePermissionRequest, DisassociatePermissionResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { DisassociatePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetApplicationCommand.ts b/clients/client-qbusiness/src/commands/GetApplicationCommand.ts index fecc55109834a..7d19b678427a3 100644 --- a/clients/client-qbusiness/src/commands/GetApplicationCommand.ts +++ b/clients/client-qbusiness/src/commands/GetApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetChatControlsConfigurationCommand.ts b/clients/client-qbusiness/src/commands/GetChatControlsConfigurationCommand.ts index 2fbfdefa6c1b3..80ab9b5140352 100644 --- a/clients/client-qbusiness/src/commands/GetChatControlsConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/GetChatControlsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChatControlsConfigurationRequest, GetChatControlsConfigurationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetChatControlsConfigurationRequest, GetChatControlsConfigurationResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetChatControlsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetChatResponseConfigurationCommand.ts b/clients/client-qbusiness/src/commands/GetChatResponseConfigurationCommand.ts index 379b84a8c6e3b..e5f6c2d74e358 100644 --- a/clients/client-qbusiness/src/commands/GetChatResponseConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/GetChatResponseConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChatResponseConfigurationRequest, GetChatResponseConfigurationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetChatResponseConfigurationRequest, GetChatResponseConfigurationResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetChatResponseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetDataAccessorCommand.ts b/clients/client-qbusiness/src/commands/GetDataAccessorCommand.ts index b58f796efe718..3efea6d51b74e 100644 --- a/clients/client-qbusiness/src/commands/GetDataAccessorCommand.ts +++ b/clients/client-qbusiness/src/commands/GetDataAccessorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataAccessorRequest } from "../models/models_0"; -import { GetDataAccessorResponse } from "../models/models_1"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetDataAccessorRequest } from "../models/models_0"; +import type { GetDataAccessorResponse } from "../models/models_1"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetDataAccessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetDataSourceCommand.ts b/clients/client-qbusiness/src/commands/GetDataSourceCommand.ts index 8ef37554cac5b..02b9e95a4a03e 100644 --- a/clients/client-qbusiness/src/commands/GetDataSourceCommand.ts +++ b/clients/client-qbusiness/src/commands/GetDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataSourceRequest, GetDataSourceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetDataSourceRequest, GetDataSourceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetDocumentContentCommand.ts b/clients/client-qbusiness/src/commands/GetDocumentContentCommand.ts index 910a2ef57bb48..c3566f263ae83 100644 --- a/clients/client-qbusiness/src/commands/GetDocumentContentCommand.ts +++ b/clients/client-qbusiness/src/commands/GetDocumentContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDocumentContentRequest, GetDocumentContentResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetDocumentContentRequest, GetDocumentContentResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetDocumentContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetGroupCommand.ts b/clients/client-qbusiness/src/commands/GetGroupCommand.ts index 2d70652844fdf..2723e56108eab 100644 --- a/clients/client-qbusiness/src/commands/GetGroupCommand.ts +++ b/clients/client-qbusiness/src/commands/GetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupRequest, GetGroupResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetGroupRequest, GetGroupResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetIndexCommand.ts b/clients/client-qbusiness/src/commands/GetIndexCommand.ts index 4e60a8bd8d0df..250f88b83ed3f 100644 --- a/clients/client-qbusiness/src/commands/GetIndexCommand.ts +++ b/clients/client-qbusiness/src/commands/GetIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIndexRequest, GetIndexResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetIndexRequest, GetIndexResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetMediaCommand.ts b/clients/client-qbusiness/src/commands/GetMediaCommand.ts index dd1eac09fe52e..f5004ff4ca473 100644 --- a/clients/client-qbusiness/src/commands/GetMediaCommand.ts +++ b/clients/client-qbusiness/src/commands/GetMediaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMediaRequest, GetMediaResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetMediaRequest, GetMediaResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetMedia } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetPluginCommand.ts b/clients/client-qbusiness/src/commands/GetPluginCommand.ts index 9d7513cd0ad90..fccbe3761ded5 100644 --- a/clients/client-qbusiness/src/commands/GetPluginCommand.ts +++ b/clients/client-qbusiness/src/commands/GetPluginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPluginRequest, GetPluginResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetPluginRequest, GetPluginResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetPlugin } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetPolicyCommand.ts b/clients/client-qbusiness/src/commands/GetPolicyCommand.ts index 20d272e5d50f3..ef6e6cb0089fb 100644 --- a/clients/client-qbusiness/src/commands/GetPolicyCommand.ts +++ b/clients/client-qbusiness/src/commands/GetPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetPolicyRequest, GetPolicyResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetRetrieverCommand.ts b/clients/client-qbusiness/src/commands/GetRetrieverCommand.ts index 67caf6e1433f9..b79fce5e21919 100644 --- a/clients/client-qbusiness/src/commands/GetRetrieverCommand.ts +++ b/clients/client-qbusiness/src/commands/GetRetrieverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRetrieverRequest, GetRetrieverResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetRetrieverRequest, GetRetrieverResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetRetriever } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetUserCommand.ts b/clients/client-qbusiness/src/commands/GetUserCommand.ts index a46ba75641cd8..11b7203b42ba1 100644 --- a/clients/client-qbusiness/src/commands/GetUserCommand.ts +++ b/clients/client-qbusiness/src/commands/GetUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserRequest, GetUserResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetUserRequest, GetUserResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/GetWebExperienceCommand.ts b/clients/client-qbusiness/src/commands/GetWebExperienceCommand.ts index d2cd5bf3ab5fc..cf287559fc636 100644 --- a/clients/client-qbusiness/src/commands/GetWebExperienceCommand.ts +++ b/clients/client-qbusiness/src/commands/GetWebExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWebExperienceRequest, GetWebExperienceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { GetWebExperienceRequest, GetWebExperienceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { GetWebExperience } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListApplicationsCommand.ts b/clients/client-qbusiness/src/commands/ListApplicationsCommand.ts index 2d0df1219413f..fe8fab8349d49 100644 --- a/clients/client-qbusiness/src/commands/ListApplicationsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListAttachmentsCommand.ts b/clients/client-qbusiness/src/commands/ListAttachmentsCommand.ts index 311df9f7477f3..4696646a7fca4 100644 --- a/clients/client-qbusiness/src/commands/ListAttachmentsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListAttachmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAttachmentsRequest, ListAttachmentsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListAttachmentsRequest, ListAttachmentsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListAttachments } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListChatResponseConfigurationsCommand.ts b/clients/client-qbusiness/src/commands/ListChatResponseConfigurationsCommand.ts index a7bd5f3e9781c..940c0e93f5c81 100644 --- a/clients/client-qbusiness/src/commands/ListChatResponseConfigurationsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListChatResponseConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChatResponseConfigurationsRequest, ListChatResponseConfigurationsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListChatResponseConfigurationsRequest, ListChatResponseConfigurationsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListChatResponseConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListConversationsCommand.ts b/clients/client-qbusiness/src/commands/ListConversationsCommand.ts index d5e760224dc33..0afbcb1fcc525 100644 --- a/clients/client-qbusiness/src/commands/ListConversationsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListConversationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConversationsRequest, ListConversationsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListConversationsRequest, ListConversationsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListConversations } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListDataAccessorsCommand.ts b/clients/client-qbusiness/src/commands/ListDataAccessorsCommand.ts index 96d8f14ea7f29..32a70e61cb3c1 100644 --- a/clients/client-qbusiness/src/commands/ListDataAccessorsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListDataAccessorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataAccessorsRequest, ListDataAccessorsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListDataAccessorsRequest, ListDataAccessorsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListDataAccessors } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListDataSourceSyncJobsCommand.ts b/clients/client-qbusiness/src/commands/ListDataSourceSyncJobsCommand.ts index dbefe97367a4d..bc6339663321a 100644 --- a/clients/client-qbusiness/src/commands/ListDataSourceSyncJobsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListDataSourceSyncJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSourceSyncJobsRequest, ListDataSourceSyncJobsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListDataSourceSyncJobsRequest, ListDataSourceSyncJobsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListDataSourceSyncJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListDataSourcesCommand.ts b/clients/client-qbusiness/src/commands/ListDataSourcesCommand.ts index 913befa8d0696..4f24ccd522935 100644 --- a/clients/client-qbusiness/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-qbusiness/src/commands/ListDataSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListDocumentsCommand.ts b/clients/client-qbusiness/src/commands/ListDocumentsCommand.ts index b64a26e203ad1..54f4c794ca318 100644 --- a/clients/client-qbusiness/src/commands/ListDocumentsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListDocumentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDocumentsRequest, ListDocumentsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListDocumentsRequest, ListDocumentsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListDocuments } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListGroupsCommand.ts b/clients/client-qbusiness/src/commands/ListGroupsCommand.ts index d31040c71b549..f3e212cf37ecf 100644 --- a/clients/client-qbusiness/src/commands/ListGroupsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListIndicesCommand.ts b/clients/client-qbusiness/src/commands/ListIndicesCommand.ts index a874e2662e854..333ee9c252cdf 100644 --- a/clients/client-qbusiness/src/commands/ListIndicesCommand.ts +++ b/clients/client-qbusiness/src/commands/ListIndicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIndicesRequest, ListIndicesResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListIndicesRequest, ListIndicesResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListIndices } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListMessagesCommand.ts b/clients/client-qbusiness/src/commands/ListMessagesCommand.ts index 9614e7ae43e3a..cdb3aa253d6d1 100644 --- a/clients/client-qbusiness/src/commands/ListMessagesCommand.ts +++ b/clients/client-qbusiness/src/commands/ListMessagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMessagesRequest, ListMessagesResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListMessagesRequest, ListMessagesResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListPluginActionsCommand.ts b/clients/client-qbusiness/src/commands/ListPluginActionsCommand.ts index 8bd2721a223ff..25ebbfb3b56d2 100644 --- a/clients/client-qbusiness/src/commands/ListPluginActionsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListPluginActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPluginActionsRequest, ListPluginActionsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListPluginActionsRequest, ListPluginActionsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListPluginActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListPluginTypeActionsCommand.ts b/clients/client-qbusiness/src/commands/ListPluginTypeActionsCommand.ts index 0ba3ed0ce927d..f006047d5a0b2 100644 --- a/clients/client-qbusiness/src/commands/ListPluginTypeActionsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListPluginTypeActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPluginTypeActionsRequest, ListPluginTypeActionsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListPluginTypeActionsRequest, ListPluginTypeActionsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListPluginTypeActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListPluginTypeMetadataCommand.ts b/clients/client-qbusiness/src/commands/ListPluginTypeMetadataCommand.ts index 3a46bd046aec9..5ed3d2542012e 100644 --- a/clients/client-qbusiness/src/commands/ListPluginTypeMetadataCommand.ts +++ b/clients/client-qbusiness/src/commands/ListPluginTypeMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPluginTypeMetadataRequest, ListPluginTypeMetadataResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListPluginTypeMetadataRequest, ListPluginTypeMetadataResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListPluginTypeMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListPluginsCommand.ts b/clients/client-qbusiness/src/commands/ListPluginsCommand.ts index 2a60aa498246e..a1884d8a71ed4 100644 --- a/clients/client-qbusiness/src/commands/ListPluginsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListPluginsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPluginsRequest, ListPluginsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListPluginsRequest, ListPluginsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListPlugins } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListRetrieversCommand.ts b/clients/client-qbusiness/src/commands/ListRetrieversCommand.ts index fd7f9b6251fb0..9cca91971d53a 100644 --- a/clients/client-qbusiness/src/commands/ListRetrieversCommand.ts +++ b/clients/client-qbusiness/src/commands/ListRetrieversCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRetrieversRequest, ListRetrieversResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListRetrieversRequest, ListRetrieversResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListRetrievers } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListSubscriptionsCommand.ts b/clients/client-qbusiness/src/commands/ListSubscriptionsCommand.ts index 9d51a311bf1c8..98e39ceb7ed9b 100644 --- a/clients/client-qbusiness/src/commands/ListSubscriptionsCommand.ts +++ b/clients/client-qbusiness/src/commands/ListSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscriptionsRequest, ListSubscriptionsResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListSubscriptionsRequest, ListSubscriptionsResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListTagsForResourceCommand.ts b/clients/client-qbusiness/src/commands/ListTagsForResourceCommand.ts index 8b6621d1feb38..90c448b33e4e7 100644 --- a/clients/client-qbusiness/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-qbusiness/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/ListWebExperiencesCommand.ts b/clients/client-qbusiness/src/commands/ListWebExperiencesCommand.ts index 462483a7ac4a2..f70209cd7c0a3 100644 --- a/clients/client-qbusiness/src/commands/ListWebExperiencesCommand.ts +++ b/clients/client-qbusiness/src/commands/ListWebExperiencesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWebExperiencesRequest, ListWebExperiencesResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { ListWebExperiencesRequest, ListWebExperiencesResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { ListWebExperiences } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/PutFeedbackCommand.ts b/clients/client-qbusiness/src/commands/PutFeedbackCommand.ts index 0179b8f29580c..21f6d75805b0a 100644 --- a/clients/client-qbusiness/src/commands/PutFeedbackCommand.ts +++ b/clients/client-qbusiness/src/commands/PutFeedbackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutFeedbackRequest } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { PutFeedbackRequest } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { PutFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/PutGroupCommand.ts b/clients/client-qbusiness/src/commands/PutGroupCommand.ts index cd4cec4ec429a..c175cf4b870ae 100644 --- a/clients/client-qbusiness/src/commands/PutGroupCommand.ts +++ b/clients/client-qbusiness/src/commands/PutGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutGroupRequest, PutGroupResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { PutGroupRequest, PutGroupResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { PutGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/SearchRelevantContentCommand.ts b/clients/client-qbusiness/src/commands/SearchRelevantContentCommand.ts index bfa49bd3b8b4d..a89586a2f17b7 100644 --- a/clients/client-qbusiness/src/commands/SearchRelevantContentCommand.ts +++ b/clients/client-qbusiness/src/commands/SearchRelevantContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchRelevantContentResponse } from "../models/models_0"; -import { SearchRelevantContentRequest } from "../models/models_1"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { SearchRelevantContentResponse } from "../models/models_0"; +import type { SearchRelevantContentRequest } from "../models/models_1"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { SearchRelevantContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/StartDataSourceSyncJobCommand.ts b/clients/client-qbusiness/src/commands/StartDataSourceSyncJobCommand.ts index af10de9cc0937..cbc2f2c5aed83 100644 --- a/clients/client-qbusiness/src/commands/StartDataSourceSyncJobCommand.ts +++ b/clients/client-qbusiness/src/commands/StartDataSourceSyncJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDataSourceSyncJobRequest, StartDataSourceSyncJobResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { StartDataSourceSyncJobRequest, StartDataSourceSyncJobResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { StartDataSourceSyncJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/StopDataSourceSyncJobCommand.ts b/clients/client-qbusiness/src/commands/StopDataSourceSyncJobCommand.ts index bef42d03de14f..83af3479761f8 100644 --- a/clients/client-qbusiness/src/commands/StopDataSourceSyncJobCommand.ts +++ b/clients/client-qbusiness/src/commands/StopDataSourceSyncJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDataSourceSyncJobRequest, StopDataSourceSyncJobResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { StopDataSourceSyncJobRequest, StopDataSourceSyncJobResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { StopDataSourceSyncJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/TagResourceCommand.ts b/clients/client-qbusiness/src/commands/TagResourceCommand.ts index 21814788e2904..9bbf8f17f5010 100644 --- a/clients/client-qbusiness/src/commands/TagResourceCommand.ts +++ b/clients/client-qbusiness/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UntagResourceCommand.ts b/clients/client-qbusiness/src/commands/UntagResourceCommand.ts index 7d21110b7c06f..53dca717450ea 100644 --- a/clients/client-qbusiness/src/commands/UntagResourceCommand.ts +++ b/clients/client-qbusiness/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateApplicationCommand.ts b/clients/client-qbusiness/src/commands/UpdateApplicationCommand.ts index 1e4cf0e637bba..fe53df78619ab 100644 --- a/clients/client-qbusiness/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateChatControlsConfigurationCommand.ts b/clients/client-qbusiness/src/commands/UpdateChatControlsConfigurationCommand.ts index 98900ea63d067..e64bf6281e206 100644 --- a/clients/client-qbusiness/src/commands/UpdateChatControlsConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateChatControlsConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChatControlsConfigurationRequest, UpdateChatControlsConfigurationResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { + UpdateChatControlsConfigurationRequest, + UpdateChatControlsConfigurationResponse, +} from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateChatControlsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateChatResponseConfigurationCommand.ts b/clients/client-qbusiness/src/commands/UpdateChatResponseConfigurationCommand.ts index 6f91558d8aee5..4c12e1ddc297f 100644 --- a/clients/client-qbusiness/src/commands/UpdateChatResponseConfigurationCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateChatResponseConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChatResponseConfigurationRequest, UpdateChatResponseConfigurationResponse } from "../models/models_1"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { + UpdateChatResponseConfigurationRequest, + UpdateChatResponseConfigurationResponse, +} from "../models/models_1"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateChatResponseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateDataAccessorCommand.ts b/clients/client-qbusiness/src/commands/UpdateDataAccessorCommand.ts index 0d15721e242c7..70dd34d4beebf 100644 --- a/clients/client-qbusiness/src/commands/UpdateDataAccessorCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateDataAccessorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataAccessorResponse } from "../models/models_0"; -import { UpdateDataAccessorRequest } from "../models/models_1"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UpdateDataAccessorResponse } from "../models/models_0"; +import type { UpdateDataAccessorRequest } from "../models/models_1"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateDataAccessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateDataSourceCommand.ts b/clients/client-qbusiness/src/commands/UpdateDataSourceCommand.ts index 5273226fa20bb..ed289c64657d4 100644 --- a/clients/client-qbusiness/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateIndexCommand.ts b/clients/client-qbusiness/src/commands/UpdateIndexCommand.ts index fef6a0e446be4..8c3a4f960d336 100644 --- a/clients/client-qbusiness/src/commands/UpdateIndexCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIndexRequest, UpdateIndexResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UpdateIndexRequest, UpdateIndexResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdatePluginCommand.ts b/clients/client-qbusiness/src/commands/UpdatePluginCommand.ts index 81f004cd851a0..e4e1adc9b4e4f 100644 --- a/clients/client-qbusiness/src/commands/UpdatePluginCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdatePluginCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePluginRequest, UpdatePluginResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UpdatePluginRequest, UpdatePluginResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdatePlugin } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateRetrieverCommand.ts b/clients/client-qbusiness/src/commands/UpdateRetrieverCommand.ts index 5eb47c5566c75..a1796a5e677e5 100644 --- a/clients/client-qbusiness/src/commands/UpdateRetrieverCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateRetrieverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRetrieverRequest, UpdateRetrieverResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UpdateRetrieverRequest, UpdateRetrieverResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateRetriever } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateSubscriptionCommand.ts b/clients/client-qbusiness/src/commands/UpdateSubscriptionCommand.ts index 5fc03dfd9ace0..b8d0a3b39aa6b 100644 --- a/clients/client-qbusiness/src/commands/UpdateSubscriptionCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubscriptionRequest, UpdateSubscriptionResponse } from "../models/models_1"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UpdateSubscriptionRequest, UpdateSubscriptionResponse } from "../models/models_1"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateUserCommand.ts b/clients/client-qbusiness/src/commands/UpdateUserCommand.ts index 6aa1a792cf49b..6e8056efe11f3 100644 --- a/clients/client-qbusiness/src/commands/UpdateUserCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_1"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_1"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/commands/UpdateWebExperienceCommand.ts b/clients/client-qbusiness/src/commands/UpdateWebExperienceCommand.ts index 26778ce1b8446..8b00443a820f0 100644 --- a/clients/client-qbusiness/src/commands/UpdateWebExperienceCommand.ts +++ b/clients/client-qbusiness/src/commands/UpdateWebExperienceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWebExperienceRequest, UpdateWebExperienceResponse } from "../models/models_0"; -import { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; +import type { UpdateWebExperienceRequest, UpdateWebExperienceResponse } from "../models/models_0"; +import type { QBusinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QBusinessClient"; import { UpdateWebExperience } from "../schemas/schemas_0"; /** diff --git a/clients/client-qbusiness/src/endpoint/EndpointParameters.ts b/clients/client-qbusiness/src/endpoint/EndpointParameters.ts index db8780715a5f4..d0630d4e803ae 100644 --- a/clients/client-qbusiness/src/endpoint/EndpointParameters.ts +++ b/clients/client-qbusiness/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-qbusiness/src/endpoint/endpointResolver.ts b/clients/client-qbusiness/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-qbusiness/src/endpoint/endpointResolver.ts +++ b/clients/client-qbusiness/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-qbusiness/src/extensionConfiguration.ts b/clients/client-qbusiness/src/extensionConfiguration.ts index a8aaeb95eacd2..634adcb707925 100644 --- a/clients/client-qbusiness/src/extensionConfiguration.ts +++ b/clients/client-qbusiness/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-qbusiness/src/models/QBusinessServiceException.ts b/clients/client-qbusiness/src/models/QBusinessServiceException.ts index ed322fa3f9e87..47d00e48aae0c 100644 --- a/clients/client-qbusiness/src/models/QBusinessServiceException.ts +++ b/clients/client-qbusiness/src/models/QBusinessServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-qbusiness/src/models/errors.ts b/clients/client-qbusiness/src/models/errors.ts index 05dbab46f6e23..2374947691afa 100644 --- a/clients/client-qbusiness/src/models/errors.ts +++ b/clients/client-qbusiness/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-qbusiness/src/pagination/GetChatControlsConfigurationPaginator.ts b/clients/client-qbusiness/src/pagination/GetChatControlsConfigurationPaginator.ts index 758c3dbaf780d..d427c01295ce9 100644 --- a/clients/client-qbusiness/src/pagination/GetChatControlsConfigurationPaginator.ts +++ b/clients/client-qbusiness/src/pagination/GetChatControlsConfigurationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetChatControlsConfigurationCommand, diff --git a/clients/client-qbusiness/src/pagination/Interfaces.ts b/clients/client-qbusiness/src/pagination/Interfaces.ts index 8b2e290b81c91..85b03cb7b4123 100644 --- a/clients/client-qbusiness/src/pagination/Interfaces.ts +++ b/clients/client-qbusiness/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { QBusinessClient } from "../QBusinessClient"; diff --git a/clients/client-qbusiness/src/pagination/ListApplicationsPaginator.ts b/clients/client-qbusiness/src/pagination/ListApplicationsPaginator.ts index ceb1eaf5c2cf3..2f9317811cea7 100644 --- a/clients/client-qbusiness/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListAttachmentsPaginator.ts b/clients/client-qbusiness/src/pagination/ListAttachmentsPaginator.ts index 9f252a90f1188..8ce38958b32a1 100644 --- a/clients/client-qbusiness/src/pagination/ListAttachmentsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListAttachmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttachmentsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListChatResponseConfigurationsPaginator.ts b/clients/client-qbusiness/src/pagination/ListChatResponseConfigurationsPaginator.ts index f386fedd2c339..0844321386ff5 100644 --- a/clients/client-qbusiness/src/pagination/ListChatResponseConfigurationsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListChatResponseConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChatResponseConfigurationsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListConversationsPaginator.ts b/clients/client-qbusiness/src/pagination/ListConversationsPaginator.ts index 61a79073c1ce8..a287ea9ee2539 100644 --- a/clients/client-qbusiness/src/pagination/ListConversationsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListConversationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConversationsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListDataAccessorsPaginator.ts b/clients/client-qbusiness/src/pagination/ListDataAccessorsPaginator.ts index e41f042b92a80..012f76c5dc0df 100644 --- a/clients/client-qbusiness/src/pagination/ListDataAccessorsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListDataAccessorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataAccessorsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListDataSourceSyncJobsPaginator.ts b/clients/client-qbusiness/src/pagination/ListDataSourceSyncJobsPaginator.ts index a14a5ffa345b3..4e4fdc123a32f 100644 --- a/clients/client-qbusiness/src/pagination/ListDataSourceSyncJobsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListDataSourceSyncJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSourceSyncJobsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListDataSourcesPaginator.ts b/clients/client-qbusiness/src/pagination/ListDataSourcesPaginator.ts index fe5ce1aa27654..2fb58cd084632 100644 --- a/clients/client-qbusiness/src/pagination/ListDataSourcesPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListDataSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSourcesCommand, diff --git a/clients/client-qbusiness/src/pagination/ListDocumentsPaginator.ts b/clients/client-qbusiness/src/pagination/ListDocumentsPaginator.ts index bb1fea27522ce..3c2e686356175 100644 --- a/clients/client-qbusiness/src/pagination/ListDocumentsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListDocumentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDocumentsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListGroupsPaginator.ts b/clients/client-qbusiness/src/pagination/ListGroupsPaginator.ts index 7d622000dad1a..08251fc54a3c2 100644 --- a/clients/client-qbusiness/src/pagination/ListGroupsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand"; import { QBusinessClient } from "../QBusinessClient"; diff --git a/clients/client-qbusiness/src/pagination/ListIndicesPaginator.ts b/clients/client-qbusiness/src/pagination/ListIndicesPaginator.ts index 7086de503518d..3cae93d3e6bec 100644 --- a/clients/client-qbusiness/src/pagination/ListIndicesPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListIndicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIndicesCommand, ListIndicesCommandInput, ListIndicesCommandOutput } from "../commands/ListIndicesCommand"; import { QBusinessClient } from "../QBusinessClient"; diff --git a/clients/client-qbusiness/src/pagination/ListMessagesPaginator.ts b/clients/client-qbusiness/src/pagination/ListMessagesPaginator.ts index 78a95661421d5..5423b78ae8907 100644 --- a/clients/client-qbusiness/src/pagination/ListMessagesPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListMessagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMessagesCommand, diff --git a/clients/client-qbusiness/src/pagination/ListPluginActionsPaginator.ts b/clients/client-qbusiness/src/pagination/ListPluginActionsPaginator.ts index 4e356102b9dc3..68e7b27dbef07 100644 --- a/clients/client-qbusiness/src/pagination/ListPluginActionsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListPluginActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPluginActionsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListPluginTypeActionsPaginator.ts b/clients/client-qbusiness/src/pagination/ListPluginTypeActionsPaginator.ts index b463145e16c5e..0dff4e1da1c0d 100644 --- a/clients/client-qbusiness/src/pagination/ListPluginTypeActionsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListPluginTypeActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPluginTypeActionsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListPluginTypeMetadataPaginator.ts b/clients/client-qbusiness/src/pagination/ListPluginTypeMetadataPaginator.ts index ff76da19f4f91..877625c799ee5 100644 --- a/clients/client-qbusiness/src/pagination/ListPluginTypeMetadataPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListPluginTypeMetadataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPluginTypeMetadataCommand, diff --git a/clients/client-qbusiness/src/pagination/ListPluginsPaginator.ts b/clients/client-qbusiness/src/pagination/ListPluginsPaginator.ts index e3d480064eb83..3de838d7f9b78 100644 --- a/clients/client-qbusiness/src/pagination/ListPluginsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListPluginsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPluginsCommand, ListPluginsCommandInput, ListPluginsCommandOutput } from "../commands/ListPluginsCommand"; import { QBusinessClient } from "../QBusinessClient"; diff --git a/clients/client-qbusiness/src/pagination/ListRetrieversPaginator.ts b/clients/client-qbusiness/src/pagination/ListRetrieversPaginator.ts index ae5b16b0c6212..2386de6ecc2f4 100644 --- a/clients/client-qbusiness/src/pagination/ListRetrieversPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListRetrieversPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRetrieversCommand, diff --git a/clients/client-qbusiness/src/pagination/ListSubscriptionsPaginator.ts b/clients/client-qbusiness/src/pagination/ListSubscriptionsPaginator.ts index ea17a290ada71..35e28a39d1238 100644 --- a/clients/client-qbusiness/src/pagination/ListSubscriptionsPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubscriptionsCommand, diff --git a/clients/client-qbusiness/src/pagination/ListWebExperiencesPaginator.ts b/clients/client-qbusiness/src/pagination/ListWebExperiencesPaginator.ts index 04da1e92ad821..a3da17bbe922e 100644 --- a/clients/client-qbusiness/src/pagination/ListWebExperiencesPaginator.ts +++ b/clients/client-qbusiness/src/pagination/ListWebExperiencesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWebExperiencesCommand, diff --git a/clients/client-qbusiness/src/pagination/SearchRelevantContentPaginator.ts b/clients/client-qbusiness/src/pagination/SearchRelevantContentPaginator.ts index 9fb997a84628f..6fa93b82a159d 100644 --- a/clients/client-qbusiness/src/pagination/SearchRelevantContentPaginator.ts +++ b/clients/client-qbusiness/src/pagination/SearchRelevantContentPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchRelevantContentCommand, diff --git a/clients/client-qbusiness/src/runtimeConfig.browser.ts b/clients/client-qbusiness/src/runtimeConfig.browser.ts index 1bf19ba866c9b..a695b06dbf887 100644 --- a/clients/client-qbusiness/src/runtimeConfig.browser.ts +++ b/clients/client-qbusiness/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidFunction, invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QBusinessClientConfig } from "./QBusinessClient"; + +import type { QBusinessClientConfig } from "./QBusinessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-qbusiness/src/runtimeConfig.native.ts b/clients/client-qbusiness/src/runtimeConfig.native.ts index 7ee2dda00d4c7..e297c7bdbf9d4 100644 --- a/clients/client-qbusiness/src/runtimeConfig.native.ts +++ b/clients/client-qbusiness/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { invalidFunction } from "@smithy/invalid-dependency"; -import { QBusinessClientConfig } from "./QBusinessClient"; +import type { QBusinessClientConfig } from "./QBusinessClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-qbusiness/src/runtimeConfig.shared.ts b/clients/client-qbusiness/src/runtimeConfig.shared.ts index 650bda44d9e99..41347dd4b792c 100644 --- a/clients/client-qbusiness/src/runtimeConfig.shared.ts +++ b/clients/client-qbusiness/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultQBusinessHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { QBusinessClientConfig } from "./QBusinessClient"; +import type { QBusinessClientConfig } from "./QBusinessClient"; /** * @internal diff --git a/clients/client-qbusiness/src/runtimeConfig.ts b/clients/client-qbusiness/src/runtimeConfig.ts index 32fb1d2a1c7f4..d4735826b4f03 100644 --- a/clients/client-qbusiness/src/runtimeConfig.ts +++ b/clients/client-qbusiness/src/runtimeConfig.ts @@ -17,13 +17,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttp2Handler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QBusinessClientConfig } from "./QBusinessClient"; + +import type { QBusinessClientConfig } from "./QBusinessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-qbusiness/src/runtimeExtensions.ts b/clients/client-qbusiness/src/runtimeExtensions.ts index 9b03085f95073..ed4668208b13a 100644 --- a/clients/client-qbusiness/src/runtimeExtensions.ts +++ b/clients/client-qbusiness/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { QBusinessExtensionConfiguration } from "./extensionConfiguration"; +import type { QBusinessExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-qbusiness/src/schemas/schemas_0.ts b/clients/client-qbusiness/src/schemas/schemas_0.ts index f565237201512..82ed3c0975ddb 100644 --- a/clients/client-qbusiness/src/schemas/schemas_0.ts +++ b/clients/client-qbusiness/src/schemas/schemas_0.ts @@ -855,7 +855,7 @@ const n0 = "com.amazonaws.qbusiness"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-qconnect/package.json b/clients/client-qconnect/package.json index f0dcec5598635..4d82628b0a8c8 100644 --- a/clients/client-qconnect/package.json +++ b/clients/client-qconnect/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-qconnect/src/QConnect.ts b/clients/client-qconnect/src/QConnect.ts index b0e179c730d68..d3c2f5997d358 100644 --- a/clients/client-qconnect/src/QConnect.ts +++ b/clients/client-qconnect/src/QConnect.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ActivateMessageTemplateCommand, @@ -431,7 +431,7 @@ import { UpdateSessionDataCommandInput, UpdateSessionDataCommandOutput, } from "./commands/UpdateSessionDataCommand"; -import { QConnectClient, QConnectClientConfig } from "./QConnectClient"; +import { QConnectClient } from "./QConnectClient"; const commands = { ActivateMessageTemplateCommand, diff --git a/clients/client-qconnect/src/QConnectClient.ts b/clients/client-qconnect/src/QConnectClient.ts index 2ed9194c0bf09..fc02ab63e38a2 100644 --- a/clients/client-qconnect/src/QConnectClient.ts +++ b/clients/client-qconnect/src/QConnectClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultQConnectHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -283,7 +292,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-qconnect/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-qconnect/src/auth/httpAuthExtensionConfiguration.ts index 1d2a147bab4dd..db51d6efd8093 100644 --- a/clients/client-qconnect/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-qconnect/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { QConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { QConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-qconnect/src/auth/httpAuthSchemeProvider.ts b/clients/client-qconnect/src/auth/httpAuthSchemeProvider.ts index de00baa48de94..8a3c2196fbf10 100644 --- a/clients/client-qconnect/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-qconnect/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { QConnectClientConfig, QConnectClientResolvedConfig } from "../QConnectClient"; +import { type QConnectClientResolvedConfig, QConnectClientConfig } from "../QConnectClient"; /** * @internal diff --git a/clients/client-qconnect/src/commands/ActivateMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/ActivateMessageTemplateCommand.ts index 67c37b8a6c121..9b35065bb50e9 100644 --- a/clients/client-qconnect/src/commands/ActivateMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/ActivateMessageTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateMessageTemplateRequest, ActivateMessageTemplateResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ActivateMessageTemplateRequest, ActivateMessageTemplateResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ActivateMessageTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateAIAgentCommand.ts b/clients/client-qconnect/src/commands/CreateAIAgentCommand.ts index a335c9e094dfb..f75a9052f7906 100644 --- a/clients/client-qconnect/src/commands/CreateAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAIAgentRequest, CreateAIAgentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateAIAgentRequest, CreateAIAgentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateAIAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateAIAgentVersionCommand.ts b/clients/client-qconnect/src/commands/CreateAIAgentVersionCommand.ts index 7b6d2d45652bf..29906589ebf46 100644 --- a/clients/client-qconnect/src/commands/CreateAIAgentVersionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIAgentVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAIAgentVersionRequest, CreateAIAgentVersionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateAIAgentVersionRequest, CreateAIAgentVersionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateAIAgentVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateAIGuardrailCommand.ts b/clients/client-qconnect/src/commands/CreateAIGuardrailCommand.ts index 28251cc6004df..9fbd17f690a28 100644 --- a/clients/client-qconnect/src/commands/CreateAIGuardrailCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIGuardrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAIGuardrailRequest, CreateAIGuardrailResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateAIGuardrailRequest, CreateAIGuardrailResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateAIGuardrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateAIGuardrailVersionCommand.ts b/clients/client-qconnect/src/commands/CreateAIGuardrailVersionCommand.ts index 3b700eb7f9ad8..f265c97f585e4 100644 --- a/clients/client-qconnect/src/commands/CreateAIGuardrailVersionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIGuardrailVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAIGuardrailVersionRequest, CreateAIGuardrailVersionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateAIGuardrailVersionRequest, CreateAIGuardrailVersionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateAIGuardrailVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateAIPromptCommand.ts b/clients/client-qconnect/src/commands/CreateAIPromptCommand.ts index 39f2a7cc262f2..337de2c193ce3 100644 --- a/clients/client-qconnect/src/commands/CreateAIPromptCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIPromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAIPromptRequest, CreateAIPromptResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateAIPromptRequest, CreateAIPromptResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateAIPrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateAIPromptVersionCommand.ts b/clients/client-qconnect/src/commands/CreateAIPromptVersionCommand.ts index 492b8976878cf..a0532b06bbdaf 100644 --- a/clients/client-qconnect/src/commands/CreateAIPromptVersionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAIPromptVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAIPromptVersionRequest, CreateAIPromptVersionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateAIPromptVersionRequest, CreateAIPromptVersionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateAIPromptVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateAssistantAssociationCommand.ts b/clients/client-qconnect/src/commands/CreateAssistantAssociationCommand.ts index 96b8a64c5d712..c77f489cf626f 100644 --- a/clients/client-qconnect/src/commands/CreateAssistantAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAssistantAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssistantAssociationRequest, CreateAssistantAssociationResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateAssistantAssociationRequest, CreateAssistantAssociationResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateAssistantAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateAssistantCommand.ts b/clients/client-qconnect/src/commands/CreateAssistantCommand.ts index fcea9e97384b9..19f66d90bb7a4 100644 --- a/clients/client-qconnect/src/commands/CreateAssistantCommand.ts +++ b/clients/client-qconnect/src/commands/CreateAssistantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssistantRequest, CreateAssistantResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateAssistantRequest, CreateAssistantResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateAssistant } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateContentAssociationCommand.ts b/clients/client-qconnect/src/commands/CreateContentAssociationCommand.ts index 7f5770ccc86d2..a5b6fe1bbcee7 100644 --- a/clients/client-qconnect/src/commands/CreateContentAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/CreateContentAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContentAssociationRequest, CreateContentAssociationResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateContentAssociationRequest, CreateContentAssociationResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateContentAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateContentCommand.ts b/clients/client-qconnect/src/commands/CreateContentCommand.ts index 9b91b73a3dc88..7c92b825bebc3 100644 --- a/clients/client-qconnect/src/commands/CreateContentCommand.ts +++ b/clients/client-qconnect/src/commands/CreateContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContentRequest, CreateContentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateContentRequest, CreateContentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateKnowledgeBaseCommand.ts b/clients/client-qconnect/src/commands/CreateKnowledgeBaseCommand.ts index 90679fae2f3dc..d816b5edaf2fb 100644 --- a/clients/client-qconnect/src/commands/CreateKnowledgeBaseCommand.ts +++ b/clients/client-qconnect/src/commands/CreateKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateKnowledgeBaseRequest, CreateKnowledgeBaseResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateKnowledgeBaseRequest, CreateKnowledgeBaseResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateMessageTemplateAttachmentCommand.ts b/clients/client-qconnect/src/commands/CreateMessageTemplateAttachmentCommand.ts index 3be38ba45c967..39f45c41a851d 100644 --- a/clients/client-qconnect/src/commands/CreateMessageTemplateAttachmentCommand.ts +++ b/clients/client-qconnect/src/commands/CreateMessageTemplateAttachmentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMessageTemplateAttachmentRequest, CreateMessageTemplateAttachmentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { + CreateMessageTemplateAttachmentRequest, + CreateMessageTemplateAttachmentResponse, +} from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateMessageTemplateAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/CreateMessageTemplateCommand.ts index 493872b1581ef..392b4b4b3383e 100644 --- a/clients/client-qconnect/src/commands/CreateMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/CreateMessageTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMessageTemplateRequest, CreateMessageTemplateResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateMessageTemplateRequest, CreateMessageTemplateResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateMessageTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateMessageTemplateVersionCommand.ts b/clients/client-qconnect/src/commands/CreateMessageTemplateVersionCommand.ts index 957db7a0e1e26..373a6c3e23a34 100644 --- a/clients/client-qconnect/src/commands/CreateMessageTemplateVersionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateMessageTemplateVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMessageTemplateVersionRequest, CreateMessageTemplateVersionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateMessageTemplateVersionRequest, CreateMessageTemplateVersionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateMessageTemplateVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateQuickResponseCommand.ts b/clients/client-qconnect/src/commands/CreateQuickResponseCommand.ts index 3c36c7e988f08..22f70e0d3a07c 100644 --- a/clients/client-qconnect/src/commands/CreateQuickResponseCommand.ts +++ b/clients/client-qconnect/src/commands/CreateQuickResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQuickResponseRequest, CreateQuickResponseResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateQuickResponseRequest, CreateQuickResponseResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateQuickResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/CreateSessionCommand.ts b/clients/client-qconnect/src/commands/CreateSessionCommand.ts index b8fb89a38d300..8e3fd6d99b1ba 100644 --- a/clients/client-qconnect/src/commands/CreateSessionCommand.ts +++ b/clients/client-qconnect/src/commands/CreateSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSessionRequest, CreateSessionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { CreateSessionRequest, CreateSessionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { CreateSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeactivateMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/DeactivateMessageTemplateCommand.ts index fc0ab1bb3e884..699ae09fa6153 100644 --- a/clients/client-qconnect/src/commands/DeactivateMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/DeactivateMessageTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeactivateMessageTemplateRequest, DeactivateMessageTemplateResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeactivateMessageTemplateRequest, DeactivateMessageTemplateResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeactivateMessageTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteAIAgentCommand.ts b/clients/client-qconnect/src/commands/DeleteAIAgentCommand.ts index f96aa5c5d979b..1c6dae1e981a3 100644 --- a/clients/client-qconnect/src/commands/DeleteAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAIAgentRequest, DeleteAIAgentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteAIAgentRequest, DeleteAIAgentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteAIAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteAIAgentVersionCommand.ts b/clients/client-qconnect/src/commands/DeleteAIAgentVersionCommand.ts index 117221f4c2391..4307dfa82d7c3 100644 --- a/clients/client-qconnect/src/commands/DeleteAIAgentVersionCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIAgentVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAIAgentVersionRequest, DeleteAIAgentVersionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteAIAgentVersionRequest, DeleteAIAgentVersionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteAIAgentVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteAIGuardrailCommand.ts b/clients/client-qconnect/src/commands/DeleteAIGuardrailCommand.ts index c45045812fb04..b1f6f2e3e6739 100644 --- a/clients/client-qconnect/src/commands/DeleteAIGuardrailCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIGuardrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAIGuardrailRequest, DeleteAIGuardrailResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteAIGuardrailRequest, DeleteAIGuardrailResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteAIGuardrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteAIGuardrailVersionCommand.ts b/clients/client-qconnect/src/commands/DeleteAIGuardrailVersionCommand.ts index 062ba6ca61eba..ed61d0c13b5b5 100644 --- a/clients/client-qconnect/src/commands/DeleteAIGuardrailVersionCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIGuardrailVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAIGuardrailVersionRequest, DeleteAIGuardrailVersionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteAIGuardrailVersionRequest, DeleteAIGuardrailVersionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteAIGuardrailVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteAIPromptCommand.ts b/clients/client-qconnect/src/commands/DeleteAIPromptCommand.ts index e18cc4c05e276..da44f9edbc1b7 100644 --- a/clients/client-qconnect/src/commands/DeleteAIPromptCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIPromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAIPromptRequest, DeleteAIPromptResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteAIPromptRequest, DeleteAIPromptResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteAIPrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteAIPromptVersionCommand.ts b/clients/client-qconnect/src/commands/DeleteAIPromptVersionCommand.ts index 03e18fe85b16b..889ceaaeb97fc 100644 --- a/clients/client-qconnect/src/commands/DeleteAIPromptVersionCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAIPromptVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAIPromptVersionRequest, DeleteAIPromptVersionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteAIPromptVersionRequest, DeleteAIPromptVersionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteAIPromptVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteAssistantAssociationCommand.ts b/clients/client-qconnect/src/commands/DeleteAssistantAssociationCommand.ts index e97257f211a72..d0082eac9ac4e 100644 --- a/clients/client-qconnect/src/commands/DeleteAssistantAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAssistantAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssistantAssociationRequest, DeleteAssistantAssociationResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteAssistantAssociationRequest, DeleteAssistantAssociationResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteAssistantAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteAssistantCommand.ts b/clients/client-qconnect/src/commands/DeleteAssistantCommand.ts index caf6f9ebe6ba1..ac0a909fa24d9 100644 --- a/clients/client-qconnect/src/commands/DeleteAssistantCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteAssistantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssistantRequest, DeleteAssistantResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteAssistantRequest, DeleteAssistantResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteAssistant } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteContentAssociationCommand.ts b/clients/client-qconnect/src/commands/DeleteContentAssociationCommand.ts index 9fc4e7dc31dc3..854347cdefb86 100644 --- a/clients/client-qconnect/src/commands/DeleteContentAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteContentAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContentAssociationRequest, DeleteContentAssociationResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteContentAssociationRequest, DeleteContentAssociationResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteContentAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteContentCommand.ts b/clients/client-qconnect/src/commands/DeleteContentCommand.ts index a6152a5a1bb12..de60fdb1ff9f5 100644 --- a/clients/client-qconnect/src/commands/DeleteContentCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContentRequest, DeleteContentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteContentRequest, DeleteContentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteImportJobCommand.ts b/clients/client-qconnect/src/commands/DeleteImportJobCommand.ts index 4d7bb894f6e51..91829efbe496f 100644 --- a/clients/client-qconnect/src/commands/DeleteImportJobCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImportJobRequest, DeleteImportJobResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteImportJobRequest, DeleteImportJobResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteKnowledgeBaseCommand.ts b/clients/client-qconnect/src/commands/DeleteKnowledgeBaseCommand.ts index ab12a00859401..e17c875a0203c 100644 --- a/clients/client-qconnect/src/commands/DeleteKnowledgeBaseCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKnowledgeBaseRequest, DeleteKnowledgeBaseResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteKnowledgeBaseRequest, DeleteKnowledgeBaseResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteMessageTemplateAttachmentCommand.ts b/clients/client-qconnect/src/commands/DeleteMessageTemplateAttachmentCommand.ts index bf3a79b381b94..a84dbe821c17c 100644 --- a/clients/client-qconnect/src/commands/DeleteMessageTemplateAttachmentCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteMessageTemplateAttachmentCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMessageTemplateAttachmentRequest, DeleteMessageTemplateAttachmentResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { + DeleteMessageTemplateAttachmentRequest, + DeleteMessageTemplateAttachmentResponse, +} from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteMessageTemplateAttachment } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/DeleteMessageTemplateCommand.ts index 0249ec13bfd33..a6a0e558addbf 100644 --- a/clients/client-qconnect/src/commands/DeleteMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteMessageTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMessageTemplateRequest, DeleteMessageTemplateResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteMessageTemplateRequest, DeleteMessageTemplateResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteMessageTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/DeleteQuickResponseCommand.ts b/clients/client-qconnect/src/commands/DeleteQuickResponseCommand.ts index 035fe2a3e2e4e..26ad33f38cd5c 100644 --- a/clients/client-qconnect/src/commands/DeleteQuickResponseCommand.ts +++ b/clients/client-qconnect/src/commands/DeleteQuickResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQuickResponseRequest, DeleteQuickResponseResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { DeleteQuickResponseRequest, DeleteQuickResponseResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { DeleteQuickResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetAIAgentCommand.ts b/clients/client-qconnect/src/commands/GetAIAgentCommand.ts index 70095a90484fb..12bf47cd6c696 100644 --- a/clients/client-qconnect/src/commands/GetAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/GetAIAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAIAgentRequest, GetAIAgentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetAIAgentRequest, GetAIAgentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetAIAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetAIGuardrailCommand.ts b/clients/client-qconnect/src/commands/GetAIGuardrailCommand.ts index f17ac834941da..545d59070d225 100644 --- a/clients/client-qconnect/src/commands/GetAIGuardrailCommand.ts +++ b/clients/client-qconnect/src/commands/GetAIGuardrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAIGuardrailRequest, GetAIGuardrailResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetAIGuardrailRequest, GetAIGuardrailResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetAIGuardrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetAIPromptCommand.ts b/clients/client-qconnect/src/commands/GetAIPromptCommand.ts index 9be675a8900d3..f3e345dafbff1 100644 --- a/clients/client-qconnect/src/commands/GetAIPromptCommand.ts +++ b/clients/client-qconnect/src/commands/GetAIPromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAIPromptRequest, GetAIPromptResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetAIPromptRequest, GetAIPromptResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetAIPrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetAssistantAssociationCommand.ts b/clients/client-qconnect/src/commands/GetAssistantAssociationCommand.ts index 3b866c6e1fee2..86af1db77539b 100644 --- a/clients/client-qconnect/src/commands/GetAssistantAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/GetAssistantAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssistantAssociationRequest, GetAssistantAssociationResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetAssistantAssociationRequest, GetAssistantAssociationResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetAssistantAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetAssistantCommand.ts b/clients/client-qconnect/src/commands/GetAssistantCommand.ts index 17676cc2b27e8..8793f47462a65 100644 --- a/clients/client-qconnect/src/commands/GetAssistantCommand.ts +++ b/clients/client-qconnect/src/commands/GetAssistantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssistantRequest, GetAssistantResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetAssistantRequest, GetAssistantResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetAssistant } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetContentAssociationCommand.ts b/clients/client-qconnect/src/commands/GetContentAssociationCommand.ts index 01aa6d6f4f4ea..5cd610a02f727 100644 --- a/clients/client-qconnect/src/commands/GetContentAssociationCommand.ts +++ b/clients/client-qconnect/src/commands/GetContentAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContentAssociationRequest, GetContentAssociationResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetContentAssociationRequest, GetContentAssociationResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetContentAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetContentCommand.ts b/clients/client-qconnect/src/commands/GetContentCommand.ts index c0c3af7c07c68..d06ae6231c935 100644 --- a/clients/client-qconnect/src/commands/GetContentCommand.ts +++ b/clients/client-qconnect/src/commands/GetContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContentRequest, GetContentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetContentRequest, GetContentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetContentSummaryCommand.ts b/clients/client-qconnect/src/commands/GetContentSummaryCommand.ts index eaa2b9034b3d4..e89e4f01afd10 100644 --- a/clients/client-qconnect/src/commands/GetContentSummaryCommand.ts +++ b/clients/client-qconnect/src/commands/GetContentSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContentSummaryRequest, GetContentSummaryResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetContentSummaryRequest, GetContentSummaryResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetContentSummary } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetImportJobCommand.ts b/clients/client-qconnect/src/commands/GetImportJobCommand.ts index 54f603cef6199..44cdb24439ba5 100644 --- a/clients/client-qconnect/src/commands/GetImportJobCommand.ts +++ b/clients/client-qconnect/src/commands/GetImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImportJobRequest, GetImportJobResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetImportJobRequest, GetImportJobResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetKnowledgeBaseCommand.ts b/clients/client-qconnect/src/commands/GetKnowledgeBaseCommand.ts index 82613358002c3..e9fdc81680c4a 100644 --- a/clients/client-qconnect/src/commands/GetKnowledgeBaseCommand.ts +++ b/clients/client-qconnect/src/commands/GetKnowledgeBaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetKnowledgeBaseRequest, GetKnowledgeBaseResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetKnowledgeBaseRequest, GetKnowledgeBaseResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetKnowledgeBase } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/GetMessageTemplateCommand.ts index 2988516a60a6b..b929a77aa9f68 100644 --- a/clients/client-qconnect/src/commands/GetMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/GetMessageTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMessageTemplateRequest, GetMessageTemplateResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetMessageTemplateRequest, GetMessageTemplateResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetMessageTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetNextMessageCommand.ts b/clients/client-qconnect/src/commands/GetNextMessageCommand.ts index 0f6132d56fce7..aab7d4f0d9162 100644 --- a/clients/client-qconnect/src/commands/GetNextMessageCommand.ts +++ b/clients/client-qconnect/src/commands/GetNextMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNextMessageRequest, GetNextMessageResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetNextMessageRequest, GetNextMessageResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetNextMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetQuickResponseCommand.ts b/clients/client-qconnect/src/commands/GetQuickResponseCommand.ts index 1d56c6d32fc84..bc01602d52bd1 100644 --- a/clients/client-qconnect/src/commands/GetQuickResponseCommand.ts +++ b/clients/client-qconnect/src/commands/GetQuickResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQuickResponseRequest, GetQuickResponseResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetQuickResponseRequest, GetQuickResponseResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetQuickResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetRecommendationsCommand.ts b/clients/client-qconnect/src/commands/GetRecommendationsCommand.ts index c1f01c7c41d42..033cae3d91d89 100644 --- a/clients/client-qconnect/src/commands/GetRecommendationsCommand.ts +++ b/clients/client-qconnect/src/commands/GetRecommendationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommendationsRequest } from "../models/models_0"; -import { GetRecommendationsResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetRecommendationsRequest } from "../models/models_0"; +import type { GetRecommendationsResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/GetSessionCommand.ts b/clients/client-qconnect/src/commands/GetSessionCommand.ts index 4e20b97b59602..c5a21e2c2c19d 100644 --- a/clients/client-qconnect/src/commands/GetSessionCommand.ts +++ b/clients/client-qconnect/src/commands/GetSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { GetSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListAIAgentVersionsCommand.ts b/clients/client-qconnect/src/commands/ListAIAgentVersionsCommand.ts index aca26696f2eeb..a4fe5447a81cb 100644 --- a/clients/client-qconnect/src/commands/ListAIAgentVersionsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIAgentVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAIAgentVersionsRequest, ListAIAgentVersionsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListAIAgentVersionsRequest, ListAIAgentVersionsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListAIAgentVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListAIAgentsCommand.ts b/clients/client-qconnect/src/commands/ListAIAgentsCommand.ts index 765f536ff5ad6..ebe8e33244f66 100644 --- a/clients/client-qconnect/src/commands/ListAIAgentsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIAgentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAIAgentsRequest, ListAIAgentsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListAIAgentsRequest, ListAIAgentsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListAIAgents } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListAIGuardrailVersionsCommand.ts b/clients/client-qconnect/src/commands/ListAIGuardrailVersionsCommand.ts index 3356b59626269..ca9fa79118163 100644 --- a/clients/client-qconnect/src/commands/ListAIGuardrailVersionsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIGuardrailVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAIGuardrailVersionsRequest, ListAIGuardrailVersionsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListAIGuardrailVersionsRequest, ListAIGuardrailVersionsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListAIGuardrailVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListAIGuardrailsCommand.ts b/clients/client-qconnect/src/commands/ListAIGuardrailsCommand.ts index e2f06bc308852..a6b3e74c64a2b 100644 --- a/clients/client-qconnect/src/commands/ListAIGuardrailsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIGuardrailsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAIGuardrailsRequest, ListAIGuardrailsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListAIGuardrailsRequest, ListAIGuardrailsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListAIGuardrails } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListAIPromptVersionsCommand.ts b/clients/client-qconnect/src/commands/ListAIPromptVersionsCommand.ts index 6e9e19577b3da..502766075923e 100644 --- a/clients/client-qconnect/src/commands/ListAIPromptVersionsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIPromptVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAIPromptVersionsRequest, ListAIPromptVersionsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListAIPromptVersionsRequest, ListAIPromptVersionsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListAIPromptVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListAIPromptsCommand.ts b/clients/client-qconnect/src/commands/ListAIPromptsCommand.ts index 2a0db1cc0f41e..acf1fc23829af 100644 --- a/clients/client-qconnect/src/commands/ListAIPromptsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAIPromptsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAIPromptsRequest, ListAIPromptsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListAIPromptsRequest, ListAIPromptsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListAIPrompts } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListAssistantAssociationsCommand.ts b/clients/client-qconnect/src/commands/ListAssistantAssociationsCommand.ts index 633507ee1ed80..7bf3738bb6afa 100644 --- a/clients/client-qconnect/src/commands/ListAssistantAssociationsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAssistantAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssistantAssociationsRequest, ListAssistantAssociationsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListAssistantAssociationsRequest, ListAssistantAssociationsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListAssistantAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListAssistantsCommand.ts b/clients/client-qconnect/src/commands/ListAssistantsCommand.ts index 014af90d41cea..bc7c6e3107ef1 100644 --- a/clients/client-qconnect/src/commands/ListAssistantsCommand.ts +++ b/clients/client-qconnect/src/commands/ListAssistantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssistantsRequest, ListAssistantsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListAssistantsRequest, ListAssistantsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListAssistants } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListContentAssociationsCommand.ts b/clients/client-qconnect/src/commands/ListContentAssociationsCommand.ts index ed9fd6bbebbe0..a84076606c4bb 100644 --- a/clients/client-qconnect/src/commands/ListContentAssociationsCommand.ts +++ b/clients/client-qconnect/src/commands/ListContentAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContentAssociationsRequest, ListContentAssociationsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListContentAssociationsRequest, ListContentAssociationsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListContentAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListContentsCommand.ts b/clients/client-qconnect/src/commands/ListContentsCommand.ts index ae0042e87e941..255e12236621f 100644 --- a/clients/client-qconnect/src/commands/ListContentsCommand.ts +++ b/clients/client-qconnect/src/commands/ListContentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContentsRequest, ListContentsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListContentsRequest, ListContentsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListContents } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListImportJobsCommand.ts b/clients/client-qconnect/src/commands/ListImportJobsCommand.ts index 89bfc518c2275..f9b2465d9d43c 100644 --- a/clients/client-qconnect/src/commands/ListImportJobsCommand.ts +++ b/clients/client-qconnect/src/commands/ListImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImportJobsRequest, ListImportJobsResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListImportJobsRequest, ListImportJobsResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListKnowledgeBasesCommand.ts b/clients/client-qconnect/src/commands/ListKnowledgeBasesCommand.ts index 65836c9321623..ae1af066c492e 100644 --- a/clients/client-qconnect/src/commands/ListKnowledgeBasesCommand.ts +++ b/clients/client-qconnect/src/commands/ListKnowledgeBasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKnowledgeBasesRequest, ListKnowledgeBasesResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListKnowledgeBasesRequest, ListKnowledgeBasesResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListKnowledgeBases } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListMessageTemplateVersionsCommand.ts b/clients/client-qconnect/src/commands/ListMessageTemplateVersionsCommand.ts index 458b0624ce8e6..66f50a5b4954f 100644 --- a/clients/client-qconnect/src/commands/ListMessageTemplateVersionsCommand.ts +++ b/clients/client-qconnect/src/commands/ListMessageTemplateVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMessageTemplateVersionsRequest, ListMessageTemplateVersionsResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListMessageTemplateVersionsRequest, ListMessageTemplateVersionsResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListMessageTemplateVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListMessageTemplatesCommand.ts b/clients/client-qconnect/src/commands/ListMessageTemplatesCommand.ts index e490f40998561..c2ba77d753382 100644 --- a/clients/client-qconnect/src/commands/ListMessageTemplatesCommand.ts +++ b/clients/client-qconnect/src/commands/ListMessageTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMessageTemplatesRequest, ListMessageTemplatesResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListMessageTemplatesRequest, ListMessageTemplatesResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListMessageTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListMessagesCommand.ts b/clients/client-qconnect/src/commands/ListMessagesCommand.ts index f9a00ada3ea3b..685341bfa4598 100644 --- a/clients/client-qconnect/src/commands/ListMessagesCommand.ts +++ b/clients/client-qconnect/src/commands/ListMessagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMessagesRequest, ListMessagesResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListMessagesRequest, ListMessagesResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListMessages } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListQuickResponsesCommand.ts b/clients/client-qconnect/src/commands/ListQuickResponsesCommand.ts index 92fc09324d1d2..81894d6426c5a 100644 --- a/clients/client-qconnect/src/commands/ListQuickResponsesCommand.ts +++ b/clients/client-qconnect/src/commands/ListQuickResponsesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQuickResponsesRequest, ListQuickResponsesResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListQuickResponsesRequest, ListQuickResponsesResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListQuickResponses } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListSpansCommand.ts b/clients/client-qconnect/src/commands/ListSpansCommand.ts index 51fdb6c9dd50c..08d6751887d26 100644 --- a/clients/client-qconnect/src/commands/ListSpansCommand.ts +++ b/clients/client-qconnect/src/commands/ListSpansCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSpansRequest } from "../models/models_0"; -import { ListSpansResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListSpansRequest } from "../models/models_0"; +import type { ListSpansResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListSpans } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/ListTagsForResourceCommand.ts b/clients/client-qconnect/src/commands/ListTagsForResourceCommand.ts index 1ee558811792c..781bda3f2422b 100644 --- a/clients/client-qconnect/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-qconnect/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/NotifyRecommendationsReceivedCommand.ts b/clients/client-qconnect/src/commands/NotifyRecommendationsReceivedCommand.ts index e7e90efb2d0d2..c4fb3fcac622a 100644 --- a/clients/client-qconnect/src/commands/NotifyRecommendationsReceivedCommand.ts +++ b/clients/client-qconnect/src/commands/NotifyRecommendationsReceivedCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NotifyRecommendationsReceivedRequest, NotifyRecommendationsReceivedResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { NotifyRecommendationsReceivedRequest, NotifyRecommendationsReceivedResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { NotifyRecommendationsReceived } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/PutFeedbackCommand.ts b/clients/client-qconnect/src/commands/PutFeedbackCommand.ts index 5430654fe9923..66ef5a31f8381 100644 --- a/clients/client-qconnect/src/commands/PutFeedbackCommand.ts +++ b/clients/client-qconnect/src/commands/PutFeedbackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutFeedbackRequest, PutFeedbackResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { PutFeedbackRequest, PutFeedbackResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { PutFeedback } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/QueryAssistantCommand.ts b/clients/client-qconnect/src/commands/QueryAssistantCommand.ts index 57ae1cc119a21..47a606655b4d9 100644 --- a/clients/client-qconnect/src/commands/QueryAssistantCommand.ts +++ b/clients/client-qconnect/src/commands/QueryAssistantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryAssistantRequest } from "../models/models_0"; -import { QueryAssistantResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { QueryAssistantRequest } from "../models/models_0"; +import type { QueryAssistantResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { QueryAssistant } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/RemoveAssistantAIAgentCommand.ts b/clients/client-qconnect/src/commands/RemoveAssistantAIAgentCommand.ts index 1e2418366b11b..cde97f5610019 100644 --- a/clients/client-qconnect/src/commands/RemoveAssistantAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/RemoveAssistantAIAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveAssistantAIAgentRequest, RemoveAssistantAIAgentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { RemoveAssistantAIAgentRequest, RemoveAssistantAIAgentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { RemoveAssistantAIAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts b/clients/client-qconnect/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts index f4bf2066d04ca..b809262edd4cb 100644 --- a/clients/client-qconnect/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts +++ b/clients/client-qconnect/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveKnowledgeBaseTemplateUriRequest, RemoveKnowledgeBaseTemplateUriResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { RemoveKnowledgeBaseTemplateUriRequest, RemoveKnowledgeBaseTemplateUriResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { RemoveKnowledgeBaseTemplateUri } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/RenderMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/RenderMessageTemplateCommand.ts index aa76f44d8d1fe..d9a7189d9ef34 100644 --- a/clients/client-qconnect/src/commands/RenderMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/RenderMessageTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RenderMessageTemplateRequest, RenderMessageTemplateResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { RenderMessageTemplateRequest, RenderMessageTemplateResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { RenderMessageTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/RetrieveCommand.ts b/clients/client-qconnect/src/commands/RetrieveCommand.ts index 22aba948a6197..b0d7cdaed17ff 100644 --- a/clients/client-qconnect/src/commands/RetrieveCommand.ts +++ b/clients/client-qconnect/src/commands/RetrieveCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetrieveResponse } from "../models/models_0"; -import { RetrieveRequest } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { RetrieveResponse } from "../models/models_0"; +import type { RetrieveRequest } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { Retrieve } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/SearchContentCommand.ts b/clients/client-qconnect/src/commands/SearchContentCommand.ts index ef9bdde2d0697..9f34d4633913b 100644 --- a/clients/client-qconnect/src/commands/SearchContentCommand.ts +++ b/clients/client-qconnect/src/commands/SearchContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchContentRequest, SearchContentResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { SearchContentRequest, SearchContentResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { SearchContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/SearchMessageTemplatesCommand.ts b/clients/client-qconnect/src/commands/SearchMessageTemplatesCommand.ts index ff7ac0269b0b3..b40877a00a31b 100644 --- a/clients/client-qconnect/src/commands/SearchMessageTemplatesCommand.ts +++ b/clients/client-qconnect/src/commands/SearchMessageTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchMessageTemplatesRequest, SearchMessageTemplatesResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { SearchMessageTemplatesRequest, SearchMessageTemplatesResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { SearchMessageTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/SearchQuickResponsesCommand.ts b/clients/client-qconnect/src/commands/SearchQuickResponsesCommand.ts index 27950d14d31aa..08d882a6a8b48 100644 --- a/clients/client-qconnect/src/commands/SearchQuickResponsesCommand.ts +++ b/clients/client-qconnect/src/commands/SearchQuickResponsesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchQuickResponsesRequest, SearchQuickResponsesResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { SearchQuickResponsesRequest, SearchQuickResponsesResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { SearchQuickResponses } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/SearchSessionsCommand.ts b/clients/client-qconnect/src/commands/SearchSessionsCommand.ts index 7872ff09cd5bf..d0ee3e4945793 100644 --- a/clients/client-qconnect/src/commands/SearchSessionsCommand.ts +++ b/clients/client-qconnect/src/commands/SearchSessionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchSessionsRequest, SearchSessionsResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { SearchSessionsRequest, SearchSessionsResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { SearchSessions } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/SendMessageCommand.ts b/clients/client-qconnect/src/commands/SendMessageCommand.ts index 7199763281a40..fd7e158591ea3 100644 --- a/clients/client-qconnect/src/commands/SendMessageCommand.ts +++ b/clients/client-qconnect/src/commands/SendMessageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendMessageRequest, SendMessageResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { SendMessageRequest, SendMessageResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { SendMessage } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/StartContentUploadCommand.ts b/clients/client-qconnect/src/commands/StartContentUploadCommand.ts index 2d27cd1d89990..6323fe5832f7a 100644 --- a/clients/client-qconnect/src/commands/StartContentUploadCommand.ts +++ b/clients/client-qconnect/src/commands/StartContentUploadCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartContentUploadRequest, StartContentUploadResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { StartContentUploadRequest, StartContentUploadResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { StartContentUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/StartImportJobCommand.ts b/clients/client-qconnect/src/commands/StartImportJobCommand.ts index 542aef62a0a39..7e18b5e7f5c51 100644 --- a/clients/client-qconnect/src/commands/StartImportJobCommand.ts +++ b/clients/client-qconnect/src/commands/StartImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartImportJobRequest, StartImportJobResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { StartImportJobRequest, StartImportJobResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { StartImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/TagResourceCommand.ts b/clients/client-qconnect/src/commands/TagResourceCommand.ts index fd26d23a91e5b..f83ab680ca560 100644 --- a/clients/client-qconnect/src/commands/TagResourceCommand.ts +++ b/clients/client-qconnect/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UntagResourceCommand.ts b/clients/client-qconnect/src/commands/UntagResourceCommand.ts index 8b3466a09162b..06a96b6d9bddd 100644 --- a/clients/client-qconnect/src/commands/UntagResourceCommand.ts +++ b/clients/client-qconnect/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateAIAgentCommand.ts b/clients/client-qconnect/src/commands/UpdateAIAgentCommand.ts index 28f645bb55d74..9d2704cb221d1 100644 --- a/clients/client-qconnect/src/commands/UpdateAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateAIAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAIAgentRequest, UpdateAIAgentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateAIAgentRequest, UpdateAIAgentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateAIAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateAIGuardrailCommand.ts b/clients/client-qconnect/src/commands/UpdateAIGuardrailCommand.ts index 1c801374684b9..7887627f3e2b8 100644 --- a/clients/client-qconnect/src/commands/UpdateAIGuardrailCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateAIGuardrailCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAIGuardrailRequest, UpdateAIGuardrailResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateAIGuardrailRequest, UpdateAIGuardrailResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateAIGuardrail } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateAIPromptCommand.ts b/clients/client-qconnect/src/commands/UpdateAIPromptCommand.ts index d7e93ad992248..134f2882e7bf2 100644 --- a/clients/client-qconnect/src/commands/UpdateAIPromptCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateAIPromptCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAIPromptRequest, UpdateAIPromptResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateAIPromptRequest, UpdateAIPromptResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateAIPrompt } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateAssistantAIAgentCommand.ts b/clients/client-qconnect/src/commands/UpdateAssistantAIAgentCommand.ts index 56a0935e72acc..94bd1fdeee629 100644 --- a/clients/client-qconnect/src/commands/UpdateAssistantAIAgentCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateAssistantAIAgentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssistantAIAgentRequest, UpdateAssistantAIAgentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateAssistantAIAgentRequest, UpdateAssistantAIAgentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateAssistantAIAgent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateContentCommand.ts b/clients/client-qconnect/src/commands/UpdateContentCommand.ts index 6330a8a21b8a4..e2e4a61791a5f 100644 --- a/clients/client-qconnect/src/commands/UpdateContentCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContentRequest, UpdateContentResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateContentRequest, UpdateContentResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts b/clients/client-qconnect/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts index e1c7a12846a70..0c1b097e89e1c 100644 --- a/clients/client-qconnect/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateKnowledgeBaseTemplateUriRequest, UpdateKnowledgeBaseTemplateUriResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateKnowledgeBaseTemplateUriRequest, UpdateKnowledgeBaseTemplateUriResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateKnowledgeBaseTemplateUri } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateMessageTemplateCommand.ts b/clients/client-qconnect/src/commands/UpdateMessageTemplateCommand.ts index add88946a71d1..d02b353530edd 100644 --- a/clients/client-qconnect/src/commands/UpdateMessageTemplateCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateMessageTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMessageTemplateRequest, UpdateMessageTemplateResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateMessageTemplateRequest, UpdateMessageTemplateResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateMessageTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateMessageTemplateMetadataCommand.ts b/clients/client-qconnect/src/commands/UpdateMessageTemplateMetadataCommand.ts index 627c192581fcb..c13523340f827 100644 --- a/clients/client-qconnect/src/commands/UpdateMessageTemplateMetadataCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateMessageTemplateMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMessageTemplateMetadataRequest, UpdateMessageTemplateMetadataResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateMessageTemplateMetadataRequest, UpdateMessageTemplateMetadataResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateMessageTemplateMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateQuickResponseCommand.ts b/clients/client-qconnect/src/commands/UpdateQuickResponseCommand.ts index 29c02d3068af4..39a1cf7d875c9 100644 --- a/clients/client-qconnect/src/commands/UpdateQuickResponseCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateQuickResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQuickResponseRequest, UpdateQuickResponseResponse } from "../models/models_1"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateQuickResponseRequest, UpdateQuickResponseResponse } from "../models/models_1"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateQuickResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateSessionCommand.ts b/clients/client-qconnect/src/commands/UpdateSessionCommand.ts index 18a4f358c1b23..3dff2f7fed927 100644 --- a/clients/client-qconnect/src/commands/UpdateSessionCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSessionRequest, UpdateSessionResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateSessionRequest, UpdateSessionResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/commands/UpdateSessionDataCommand.ts b/clients/client-qconnect/src/commands/UpdateSessionDataCommand.ts index 32f95dfbb5a58..fbdee0f4514d7 100644 --- a/clients/client-qconnect/src/commands/UpdateSessionDataCommand.ts +++ b/clients/client-qconnect/src/commands/UpdateSessionDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSessionDataRequest, UpdateSessionDataResponse } from "../models/models_0"; -import { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; +import type { UpdateSessionDataRequest, UpdateSessionDataResponse } from "../models/models_0"; +import type { QConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QConnectClient"; import { UpdateSessionData } from "../schemas/schemas_0"; /** diff --git a/clients/client-qconnect/src/endpoint/EndpointParameters.ts b/clients/client-qconnect/src/endpoint/EndpointParameters.ts index 621407becaa88..bc3cc9aeedf14 100644 --- a/clients/client-qconnect/src/endpoint/EndpointParameters.ts +++ b/clients/client-qconnect/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-qconnect/src/endpoint/endpointResolver.ts b/clients/client-qconnect/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-qconnect/src/endpoint/endpointResolver.ts +++ b/clients/client-qconnect/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-qconnect/src/extensionConfiguration.ts b/clients/client-qconnect/src/extensionConfiguration.ts index 307fbcdd72542..7b595f78a9b1b 100644 --- a/clients/client-qconnect/src/extensionConfiguration.ts +++ b/clients/client-qconnect/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-qconnect/src/models/QConnectServiceException.ts b/clients/client-qconnect/src/models/QConnectServiceException.ts index 92021281930f4..fa8b035555a69 100644 --- a/clients/client-qconnect/src/models/QConnectServiceException.ts +++ b/clients/client-qconnect/src/models/QConnectServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-qconnect/src/models/errors.ts b/clients/client-qconnect/src/models/errors.ts index 1e17897b9d5c4..a990f0f23edc5 100644 --- a/clients/client-qconnect/src/models/errors.ts +++ b/clients/client-qconnect/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { QConnectServiceException as __BaseException } from "./QConnectServiceException"; diff --git a/clients/client-qconnect/src/pagination/Interfaces.ts b/clients/client-qconnect/src/pagination/Interfaces.ts index c1dab9f7ff0f5..c7dd58ebf121a 100644 --- a/clients/client-qconnect/src/pagination/Interfaces.ts +++ b/clients/client-qconnect/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { QConnectClient } from "../QConnectClient"; diff --git a/clients/client-qconnect/src/pagination/ListAIAgentVersionsPaginator.ts b/clients/client-qconnect/src/pagination/ListAIAgentVersionsPaginator.ts index 926ff6afbb51a..6e4931aa2b166 100644 --- a/clients/client-qconnect/src/pagination/ListAIAgentVersionsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListAIAgentVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAIAgentVersionsCommand, diff --git a/clients/client-qconnect/src/pagination/ListAIAgentsPaginator.ts b/clients/client-qconnect/src/pagination/ListAIAgentsPaginator.ts index 22e0d6e0926ae..6bd6f3638db96 100644 --- a/clients/client-qconnect/src/pagination/ListAIAgentsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListAIAgentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAIAgentsCommand, diff --git a/clients/client-qconnect/src/pagination/ListAIGuardrailVersionsPaginator.ts b/clients/client-qconnect/src/pagination/ListAIGuardrailVersionsPaginator.ts index 98f515b1db47c..d82dc81ed5c80 100644 --- a/clients/client-qconnect/src/pagination/ListAIGuardrailVersionsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListAIGuardrailVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAIGuardrailVersionsCommand, diff --git a/clients/client-qconnect/src/pagination/ListAIGuardrailsPaginator.ts b/clients/client-qconnect/src/pagination/ListAIGuardrailsPaginator.ts index 221306ce993a8..ce140f091d4dc 100644 --- a/clients/client-qconnect/src/pagination/ListAIGuardrailsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListAIGuardrailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAIGuardrailsCommand, diff --git a/clients/client-qconnect/src/pagination/ListAIPromptVersionsPaginator.ts b/clients/client-qconnect/src/pagination/ListAIPromptVersionsPaginator.ts index 806b0e83003e6..799f512affaa6 100644 --- a/clients/client-qconnect/src/pagination/ListAIPromptVersionsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListAIPromptVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAIPromptVersionsCommand, diff --git a/clients/client-qconnect/src/pagination/ListAIPromptsPaginator.ts b/clients/client-qconnect/src/pagination/ListAIPromptsPaginator.ts index 0244a1753709c..6a3d03f6f9e31 100644 --- a/clients/client-qconnect/src/pagination/ListAIPromptsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListAIPromptsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAIPromptsCommand, diff --git a/clients/client-qconnect/src/pagination/ListAssistantAssociationsPaginator.ts b/clients/client-qconnect/src/pagination/ListAssistantAssociationsPaginator.ts index bf25f5db493bf..9cadde36212c3 100644 --- a/clients/client-qconnect/src/pagination/ListAssistantAssociationsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListAssistantAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssistantAssociationsCommand, diff --git a/clients/client-qconnect/src/pagination/ListAssistantsPaginator.ts b/clients/client-qconnect/src/pagination/ListAssistantsPaginator.ts index 8eed843607b29..0b1651e1b2758 100644 --- a/clients/client-qconnect/src/pagination/ListAssistantsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListAssistantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssistantsCommand, diff --git a/clients/client-qconnect/src/pagination/ListContentAssociationsPaginator.ts b/clients/client-qconnect/src/pagination/ListContentAssociationsPaginator.ts index 681187c5daec7..21c300d9f6e85 100644 --- a/clients/client-qconnect/src/pagination/ListContentAssociationsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListContentAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContentAssociationsCommand, diff --git a/clients/client-qconnect/src/pagination/ListContentsPaginator.ts b/clients/client-qconnect/src/pagination/ListContentsPaginator.ts index 29adf2ca09f67..9de3bfb82eccb 100644 --- a/clients/client-qconnect/src/pagination/ListContentsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListContentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContentsCommand, diff --git a/clients/client-qconnect/src/pagination/ListImportJobsPaginator.ts b/clients/client-qconnect/src/pagination/ListImportJobsPaginator.ts index c406e3c01d056..9db80d039a7e0 100644 --- a/clients/client-qconnect/src/pagination/ListImportJobsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImportJobsCommand, diff --git a/clients/client-qconnect/src/pagination/ListKnowledgeBasesPaginator.ts b/clients/client-qconnect/src/pagination/ListKnowledgeBasesPaginator.ts index 4b0155bda3c4b..fd73c16ebf507 100644 --- a/clients/client-qconnect/src/pagination/ListKnowledgeBasesPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListKnowledgeBasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKnowledgeBasesCommand, diff --git a/clients/client-qconnect/src/pagination/ListMessageTemplateVersionsPaginator.ts b/clients/client-qconnect/src/pagination/ListMessageTemplateVersionsPaginator.ts index d6180cc1ec55f..13fbef80416ba 100644 --- a/clients/client-qconnect/src/pagination/ListMessageTemplateVersionsPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListMessageTemplateVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMessageTemplateVersionsCommand, diff --git a/clients/client-qconnect/src/pagination/ListMessageTemplatesPaginator.ts b/clients/client-qconnect/src/pagination/ListMessageTemplatesPaginator.ts index 53344014dd0ad..11fc55d70b681 100644 --- a/clients/client-qconnect/src/pagination/ListMessageTemplatesPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListMessageTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMessageTemplatesCommand, diff --git a/clients/client-qconnect/src/pagination/ListMessagesPaginator.ts b/clients/client-qconnect/src/pagination/ListMessagesPaginator.ts index 4071039362db2..d3ff2bb239975 100644 --- a/clients/client-qconnect/src/pagination/ListMessagesPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListMessagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMessagesCommand, diff --git a/clients/client-qconnect/src/pagination/ListQuickResponsesPaginator.ts b/clients/client-qconnect/src/pagination/ListQuickResponsesPaginator.ts index 991689d23f911..76826196717b9 100644 --- a/clients/client-qconnect/src/pagination/ListQuickResponsesPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListQuickResponsesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQuickResponsesCommand, diff --git a/clients/client-qconnect/src/pagination/ListSpansPaginator.ts b/clients/client-qconnect/src/pagination/ListSpansPaginator.ts index d214d0fcd0d5b..c7d3f6961a3c9 100644 --- a/clients/client-qconnect/src/pagination/ListSpansPaginator.ts +++ b/clients/client-qconnect/src/pagination/ListSpansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSpansCommand, ListSpansCommandInput, ListSpansCommandOutput } from "../commands/ListSpansCommand"; import { QConnectClient } from "../QConnectClient"; diff --git a/clients/client-qconnect/src/pagination/QueryAssistantPaginator.ts b/clients/client-qconnect/src/pagination/QueryAssistantPaginator.ts index 4f3b4c3bd6215..54dea9753db9e 100644 --- a/clients/client-qconnect/src/pagination/QueryAssistantPaginator.ts +++ b/clients/client-qconnect/src/pagination/QueryAssistantPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { QueryAssistantCommand, diff --git a/clients/client-qconnect/src/pagination/SearchContentPaginator.ts b/clients/client-qconnect/src/pagination/SearchContentPaginator.ts index a202133548a99..d61280060a404 100644 --- a/clients/client-qconnect/src/pagination/SearchContentPaginator.ts +++ b/clients/client-qconnect/src/pagination/SearchContentPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchContentCommand, diff --git a/clients/client-qconnect/src/pagination/SearchMessageTemplatesPaginator.ts b/clients/client-qconnect/src/pagination/SearchMessageTemplatesPaginator.ts index cd0932c745b5e..167b0ada4ce5f 100644 --- a/clients/client-qconnect/src/pagination/SearchMessageTemplatesPaginator.ts +++ b/clients/client-qconnect/src/pagination/SearchMessageTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchMessageTemplatesCommand, diff --git a/clients/client-qconnect/src/pagination/SearchQuickResponsesPaginator.ts b/clients/client-qconnect/src/pagination/SearchQuickResponsesPaginator.ts index 781a301782412..4ab23a270b59e 100644 --- a/clients/client-qconnect/src/pagination/SearchQuickResponsesPaginator.ts +++ b/clients/client-qconnect/src/pagination/SearchQuickResponsesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchQuickResponsesCommand, diff --git a/clients/client-qconnect/src/pagination/SearchSessionsPaginator.ts b/clients/client-qconnect/src/pagination/SearchSessionsPaginator.ts index 1322c104cc201..0c1d6e6b229d1 100644 --- a/clients/client-qconnect/src/pagination/SearchSessionsPaginator.ts +++ b/clients/client-qconnect/src/pagination/SearchSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchSessionsCommand, diff --git a/clients/client-qconnect/src/runtimeConfig.browser.ts b/clients/client-qconnect/src/runtimeConfig.browser.ts index 663b8e55cefac..63fff2218aa1d 100644 --- a/clients/client-qconnect/src/runtimeConfig.browser.ts +++ b/clients/client-qconnect/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QConnectClientConfig } from "./QConnectClient"; + +import type { QConnectClientConfig } from "./QConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-qconnect/src/runtimeConfig.native.ts b/clients/client-qconnect/src/runtimeConfig.native.ts index 747f47a91ac19..e754b7c85cf49 100644 --- a/clients/client-qconnect/src/runtimeConfig.native.ts +++ b/clients/client-qconnect/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { QConnectClientConfig } from "./QConnectClient"; +import type { QConnectClientConfig } from "./QConnectClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-qconnect/src/runtimeConfig.shared.ts b/clients/client-qconnect/src/runtimeConfig.shared.ts index ed3f5d645e21b..e546118c4ebf3 100644 --- a/clients/client-qconnect/src/runtimeConfig.shared.ts +++ b/clients/client-qconnect/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultQConnectHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { QConnectClientConfig } from "./QConnectClient"; +import type { QConnectClientConfig } from "./QConnectClient"; /** * @internal diff --git a/clients/client-qconnect/src/runtimeConfig.ts b/clients/client-qconnect/src/runtimeConfig.ts index 80c231edf37cd..57c802016c22b 100644 --- a/clients/client-qconnect/src/runtimeConfig.ts +++ b/clients/client-qconnect/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QConnectClientConfig } from "./QConnectClient"; + +import type { QConnectClientConfig } from "./QConnectClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-qconnect/src/runtimeExtensions.ts b/clients/client-qconnect/src/runtimeExtensions.ts index 248bbcda6c953..0c16c259e6ddf 100644 --- a/clients/client-qconnect/src/runtimeExtensions.ts +++ b/clients/client-qconnect/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { QConnectExtensionConfiguration } from "./extensionConfiguration"; +import type { QConnectExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-qconnect/src/schemas/schemas_0.ts b/clients/client-qconnect/src/schemas/schemas_0.ts index d4a9b305176b6..77fcde1f1e5ad 100644 --- a/clients/client-qconnect/src/schemas/schemas_0.ts +++ b/clients/client-qconnect/src/schemas/schemas_0.ts @@ -1120,7 +1120,7 @@ const n0 = "com.amazonaws.qconnect"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-quicksight/package.json b/clients/client-quicksight/package.json index f9d1d031f8811..934f97f02c4b6 100644 --- a/clients/client-quicksight/package.json +++ b/clients/client-quicksight/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-quicksight/src/QuickSight.ts b/clients/client-quicksight/src/QuickSight.ts index ec63287d0d179..a0cf836faf775 100644 --- a/clients/client-quicksight/src/QuickSight.ts +++ b/clients/client-quicksight/src/QuickSight.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchCreateTopicReviewedAnswerCommand, @@ -1035,7 +1035,7 @@ import { UpdateVPCConnectionCommandInput, UpdateVPCConnectionCommandOutput, } from "./commands/UpdateVPCConnectionCommand"; -import { QuickSightClient, QuickSightClientConfig } from "./QuickSightClient"; +import { QuickSightClient } from "./QuickSightClient"; const commands = { BatchCreateTopicReviewedAnswerCommand, diff --git a/clients/client-quicksight/src/QuickSightClient.ts b/clients/client-quicksight/src/QuickSightClient.ts index 172f4dff0e92f..3bcee1b230854 100644 --- a/clients/client-quicksight/src/QuickSightClient.ts +++ b/clients/client-quicksight/src/QuickSightClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultQuickSightHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -700,7 +709,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-quicksight/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-quicksight/src/auth/httpAuthExtensionConfiguration.ts index 6b60798deae9b..ba129a47c1730 100644 --- a/clients/client-quicksight/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-quicksight/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { QuickSightHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { QuickSightHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-quicksight/src/auth/httpAuthSchemeProvider.ts b/clients/client-quicksight/src/auth/httpAuthSchemeProvider.ts index 1ca88b5593a07..ecbbcfd572c25 100644 --- a/clients/client-quicksight/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-quicksight/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { QuickSightClientConfig, QuickSightClientResolvedConfig } from "../QuickSightClient"; +import { type QuickSightClientResolvedConfig, QuickSightClientConfig } from "../QuickSightClient"; /** * @internal diff --git a/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts b/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts index 88a445418dd15..5b9b8dc895663 100644 --- a/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts +++ b/clients/client-quicksight/src/commands/BatchCreateTopicReviewedAnswerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateTopicReviewedAnswerResponse } from "../models/models_2"; -import { BatchCreateTopicReviewedAnswerRequest } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { BatchCreateTopicReviewedAnswerResponse } from "../models/models_2"; +import type { BatchCreateTopicReviewedAnswerRequest } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { BatchCreateTopicReviewedAnswer } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/BatchDeleteTopicReviewedAnswerCommand.ts b/clients/client-quicksight/src/commands/BatchDeleteTopicReviewedAnswerCommand.ts index 08b81d4d9b3d4..313e711b5ca21 100644 --- a/clients/client-quicksight/src/commands/BatchDeleteTopicReviewedAnswerCommand.ts +++ b/clients/client-quicksight/src/commands/BatchDeleteTopicReviewedAnswerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteTopicReviewedAnswerRequest, BatchDeleteTopicReviewedAnswerResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { BatchDeleteTopicReviewedAnswerRequest, BatchDeleteTopicReviewedAnswerResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { BatchDeleteTopicReviewedAnswer } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CancelIngestionCommand.ts b/clients/client-quicksight/src/commands/CancelIngestionCommand.ts index 944ae3ef39612..00f2e06cf59d2 100644 --- a/clients/client-quicksight/src/commands/CancelIngestionCommand.ts +++ b/clients/client-quicksight/src/commands/CancelIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelIngestionRequest, CancelIngestionResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CancelIngestionRequest, CancelIngestionResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CancelIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts b/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts index e34424999727a..523fd33ff95e2 100644 --- a/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts +++ b/clients/client-quicksight/src/commands/CreateAccountCustomizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccountCustomizationRequest, CreateAccountCustomizationResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateAccountCustomizationRequest, CreateAccountCustomizationResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateAccountCustomization } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts b/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts index 371d0e5110db8..db405f37fce94 100644 --- a/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts +++ b/clients/client-quicksight/src/commands/CreateAccountSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccountSubscriptionRequest, CreateAccountSubscriptionResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateAccountSubscriptionRequest, CreateAccountSubscriptionResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateAccountSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateActionConnectorCommand.ts b/clients/client-quicksight/src/commands/CreateActionConnectorCommand.ts index 3e6cadd719de6..aec9710e9d56b 100644 --- a/clients/client-quicksight/src/commands/CreateActionConnectorCommand.ts +++ b/clients/client-quicksight/src/commands/CreateActionConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateActionConnectorRequest, CreateActionConnectorResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateActionConnectorRequest, CreateActionConnectorResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateActionConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts b/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts index b760e0d11ef1d..e7b5de7066350 100644 --- a/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/CreateAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAnalysisRequest, CreateAnalysisResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateAnalysisRequest, CreateAnalysisResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateBrandCommand.ts b/clients/client-quicksight/src/commands/CreateBrandCommand.ts index f1055ae2d2548..202d1caa7f0e6 100644 --- a/clients/client-quicksight/src/commands/CreateBrandCommand.ts +++ b/clients/client-quicksight/src/commands/CreateBrandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBrandRequest, CreateBrandResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateBrandRequest, CreateBrandResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateBrand } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts index 37e844826ef98..ee3908ec3e449 100644 --- a/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/CreateCustomPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomPermissionsRequest, CreateCustomPermissionsResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateCustomPermissionsRequest, CreateCustomPermissionsResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateCustomPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateDashboardCommand.ts b/clients/client-quicksight/src/commands/CreateDashboardCommand.ts index aeb69d06519e0..a3ab90f7fed59 100644 --- a/clients/client-quicksight/src/commands/CreateDashboardCommand.ts +++ b/clients/client-quicksight/src/commands/CreateDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDashboardRequest, CreateDashboardResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateDashboardRequest, CreateDashboardResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateDataSetCommand.ts b/clients/client-quicksight/src/commands/CreateDataSetCommand.ts index a20a29a0d757c..79461a04146c0 100644 --- a/clients/client-quicksight/src/commands/CreateDataSetCommand.ts +++ b/clients/client-quicksight/src/commands/CreateDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataSetRequest, CreateDataSetResponse } from "../models/models_2"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateDataSetRequest, CreateDataSetResponse } from "../models/models_2"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateDataSourceCommand.ts b/clients/client-quicksight/src/commands/CreateDataSourceCommand.ts index 66d02dd25f20e..3a32abf5cdab9 100644 --- a/clients/client-quicksight/src/commands/CreateDataSourceCommand.ts +++ b/clients/client-quicksight/src/commands/CreateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateDataSourceRequest, CreateDataSourceResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateFolderCommand.ts b/clients/client-quicksight/src/commands/CreateFolderCommand.ts index 4b44275b34c72..731472748b40d 100644 --- a/clients/client-quicksight/src/commands/CreateFolderCommand.ts +++ b/clients/client-quicksight/src/commands/CreateFolderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFolderRequest, CreateFolderResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateFolderRequest, CreateFolderResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateFolder } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateFolderMembershipCommand.ts b/clients/client-quicksight/src/commands/CreateFolderMembershipCommand.ts index 64a81f436c547..dbebda0cabbc0 100644 --- a/clients/client-quicksight/src/commands/CreateFolderMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/CreateFolderMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFolderMembershipRequest, CreateFolderMembershipResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateFolderMembershipRequest, CreateFolderMembershipResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateFolderMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateGroupCommand.ts b/clients/client-quicksight/src/commands/CreateGroupCommand.ts index 59e70b28bf16d..fecbc6c156313 100644 --- a/clients/client-quicksight/src/commands/CreateGroupCommand.ts +++ b/clients/client-quicksight/src/commands/CreateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGroupRequest, CreateGroupResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateGroupRequest, CreateGroupResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateGroupMembershipCommand.ts b/clients/client-quicksight/src/commands/CreateGroupMembershipCommand.ts index 14f9c68feb77a..f189425a36cc2 100644 --- a/clients/client-quicksight/src/commands/CreateGroupMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/CreateGroupMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGroupMembershipRequest, CreateGroupMembershipResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateGroupMembershipRequest, CreateGroupMembershipResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateGroupMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateIAMPolicyAssignmentCommand.ts b/clients/client-quicksight/src/commands/CreateIAMPolicyAssignmentCommand.ts index a84bb5ecdb5ea..3452c97b07cca 100644 --- a/clients/client-quicksight/src/commands/CreateIAMPolicyAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/CreateIAMPolicyAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIAMPolicyAssignmentRequest, CreateIAMPolicyAssignmentResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateIAMPolicyAssignmentRequest, CreateIAMPolicyAssignmentResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateIAMPolicyAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateIngestionCommand.ts b/clients/client-quicksight/src/commands/CreateIngestionCommand.ts index da1f5dcb7f86b..b9c9cedc4c86a 100644 --- a/clients/client-quicksight/src/commands/CreateIngestionCommand.ts +++ b/clients/client-quicksight/src/commands/CreateIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIngestionRequest, CreateIngestionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateIngestionRequest, CreateIngestionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateNamespaceCommand.ts b/clients/client-quicksight/src/commands/CreateNamespaceCommand.ts index e3a376753157f..3d205752959ef 100644 --- a/clients/client-quicksight/src/commands/CreateNamespaceCommand.ts +++ b/clients/client-quicksight/src/commands/CreateNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNamespaceRequest, CreateNamespaceResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateNamespaceRequest, CreateNamespaceResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/CreateRefreshScheduleCommand.ts index ae419119750cf..bc84d5778acd1 100644 --- a/clients/client-quicksight/src/commands/CreateRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/CreateRefreshScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRefreshScheduleRequest, CreateRefreshScheduleResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateRefreshScheduleRequest, CreateRefreshScheduleResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateRefreshSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateRoleMembershipCommand.ts b/clients/client-quicksight/src/commands/CreateRoleMembershipCommand.ts index 4d05b05c26926..1c764750ac56d 100644 --- a/clients/client-quicksight/src/commands/CreateRoleMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/CreateRoleMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRoleMembershipRequest, CreateRoleMembershipResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateRoleMembershipRequest, CreateRoleMembershipResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateRoleMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateTemplateAliasCommand.ts b/clients/client-quicksight/src/commands/CreateTemplateAliasCommand.ts index 347d3ce23225c..dc9d277b486d1 100644 --- a/clients/client-quicksight/src/commands/CreateTemplateAliasCommand.ts +++ b/clients/client-quicksight/src/commands/CreateTemplateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTemplateAliasRequest, CreateTemplateAliasResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateTemplateAliasRequest, CreateTemplateAliasResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateTemplateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateTemplateCommand.ts b/clients/client-quicksight/src/commands/CreateTemplateCommand.ts index b9819ea723fad..d7654c28e0577 100644 --- a/clients/client-quicksight/src/commands/CreateTemplateCommand.ts +++ b/clients/client-quicksight/src/commands/CreateTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateThemeAliasCommand.ts b/clients/client-quicksight/src/commands/CreateThemeAliasCommand.ts index 6846bdad25691..f001a0d4b8b08 100644 --- a/clients/client-quicksight/src/commands/CreateThemeAliasCommand.ts +++ b/clients/client-quicksight/src/commands/CreateThemeAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateThemeAliasRequest, CreateThemeAliasResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateThemeAliasRequest, CreateThemeAliasResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateThemeAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateThemeCommand.ts b/clients/client-quicksight/src/commands/CreateThemeCommand.ts index bfaeacfc2d7c6..b11ccb636e43f 100644 --- a/clients/client-quicksight/src/commands/CreateThemeCommand.ts +++ b/clients/client-quicksight/src/commands/CreateThemeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateThemeRequest, CreateThemeResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateThemeRequest, CreateThemeResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateTheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateTopicCommand.ts b/clients/client-quicksight/src/commands/CreateTopicCommand.ts index b623d395d65c8..05c9ce84dcf9b 100644 --- a/clients/client-quicksight/src/commands/CreateTopicCommand.ts +++ b/clients/client-quicksight/src/commands/CreateTopicCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTopicRequest, CreateTopicResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateTopicRequest, CreateTopicResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateTopic } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateTopicRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/CreateTopicRefreshScheduleCommand.ts index e62f67c6f702c..d2e30f855b957 100644 --- a/clients/client-quicksight/src/commands/CreateTopicRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/CreateTopicRefreshScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTopicRefreshScheduleRequest, CreateTopicRefreshScheduleResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateTopicRefreshScheduleRequest, CreateTopicRefreshScheduleResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateTopicRefreshSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/CreateVPCConnectionCommand.ts b/clients/client-quicksight/src/commands/CreateVPCConnectionCommand.ts index c072b6f32b470..19c0abe950094 100644 --- a/clients/client-quicksight/src/commands/CreateVPCConnectionCommand.ts +++ b/clients/client-quicksight/src/commands/CreateVPCConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVPCConnectionRequest, CreateVPCConnectionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { CreateVPCConnectionRequest, CreateVPCConnectionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { CreateVPCConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteAccountCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/DeleteAccountCustomPermissionCommand.ts index 8a34ceb3773ab..c87a550ac4010 100644 --- a/clients/client-quicksight/src/commands/DeleteAccountCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteAccountCustomPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountCustomPermissionRequest, DeleteAccountCustomPermissionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteAccountCustomPermissionRequest, DeleteAccountCustomPermissionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteAccountCustomPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteAccountCustomizationCommand.ts b/clients/client-quicksight/src/commands/DeleteAccountCustomizationCommand.ts index fbaf88005d17c..0f24264917480 100644 --- a/clients/client-quicksight/src/commands/DeleteAccountCustomizationCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteAccountCustomizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountCustomizationRequest, DeleteAccountCustomizationResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteAccountCustomizationRequest, DeleteAccountCustomizationResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteAccountCustomization } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteAccountSubscriptionCommand.ts b/clients/client-quicksight/src/commands/DeleteAccountSubscriptionCommand.ts index beb73c392c75f..7b8d4c5cd7062 100644 --- a/clients/client-quicksight/src/commands/DeleteAccountSubscriptionCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteAccountSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountSubscriptionRequest, DeleteAccountSubscriptionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteAccountSubscriptionRequest, DeleteAccountSubscriptionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteAccountSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteActionConnectorCommand.ts b/clients/client-quicksight/src/commands/DeleteActionConnectorCommand.ts index 0543e7dc8cf7a..50d0de7cc9277 100644 --- a/clients/client-quicksight/src/commands/DeleteActionConnectorCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteActionConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteActionConnectorRequest, DeleteActionConnectorResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteActionConnectorRequest, DeleteActionConnectorResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteActionConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteAnalysisCommand.ts b/clients/client-quicksight/src/commands/DeleteAnalysisCommand.ts index 71ff4b9d8dcf5..9e47b22a1f07c 100644 --- a/clients/client-quicksight/src/commands/DeleteAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAnalysisRequest, DeleteAnalysisResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteAnalysisRequest, DeleteAnalysisResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteBrandAssignmentCommand.ts b/clients/client-quicksight/src/commands/DeleteBrandAssignmentCommand.ts index 98d8b0aff7082..df37d9ebdff45 100644 --- a/clients/client-quicksight/src/commands/DeleteBrandAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteBrandAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBrandAssignmentRequest, DeleteBrandAssignmentResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteBrandAssignmentRequest, DeleteBrandAssignmentResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteBrandAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteBrandCommand.ts b/clients/client-quicksight/src/commands/DeleteBrandCommand.ts index 9e4727ee84737..3f4b3b2c13c6b 100644 --- a/clients/client-quicksight/src/commands/DeleteBrandCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteBrandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBrandRequest, DeleteBrandResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteBrandRequest, DeleteBrandResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteBrand } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/DeleteCustomPermissionsCommand.ts index 677378575b35c..1a7df096dab7e 100644 --- a/clients/client-quicksight/src/commands/DeleteCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteCustomPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomPermissionsRequest, DeleteCustomPermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteCustomPermissionsRequest, DeleteCustomPermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteCustomPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteDashboardCommand.ts b/clients/client-quicksight/src/commands/DeleteDashboardCommand.ts index dc73f393cbc32..5cdc28a735aaa 100644 --- a/clients/client-quicksight/src/commands/DeleteDashboardCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDashboardRequest, DeleteDashboardResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteDashboardRequest, DeleteDashboardResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteDataSetCommand.ts b/clients/client-quicksight/src/commands/DeleteDataSetCommand.ts index 51e0858a930f9..1879b5db22097 100644 --- a/clients/client-quicksight/src/commands/DeleteDataSetCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataSetRequest, DeleteDataSetResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteDataSetRequest, DeleteDataSetResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteDataSetRefreshPropertiesCommand.ts b/clients/client-quicksight/src/commands/DeleteDataSetRefreshPropertiesCommand.ts index 31dc0a6da28ff..77141a3c089e8 100644 --- a/clients/client-quicksight/src/commands/DeleteDataSetRefreshPropertiesCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDataSetRefreshPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataSetRefreshPropertiesRequest, DeleteDataSetRefreshPropertiesResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteDataSetRefreshPropertiesRequest, DeleteDataSetRefreshPropertiesResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteDataSetRefreshProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteDataSourceCommand.ts b/clients/client-quicksight/src/commands/DeleteDataSourceCommand.ts index e3dc42b8df859..8f76fb0f3288f 100644 --- a/clients/client-quicksight/src/commands/DeleteDataSourceCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteDefaultQBusinessApplicationCommand.ts b/clients/client-quicksight/src/commands/DeleteDefaultQBusinessApplicationCommand.ts index 566b6b272918c..f20f2dc268a26 100644 --- a/clients/client-quicksight/src/commands/DeleteDefaultQBusinessApplicationCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteDefaultQBusinessApplicationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteDefaultQBusinessApplicationRequest, DeleteDefaultQBusinessApplicationResponse, } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteDefaultQBusinessApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteFolderCommand.ts b/clients/client-quicksight/src/commands/DeleteFolderCommand.ts index 78bd9a0cd276f..580f035e0b663 100644 --- a/clients/client-quicksight/src/commands/DeleteFolderCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteFolderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFolderRequest, DeleteFolderResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteFolderRequest, DeleteFolderResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteFolder } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteFolderMembershipCommand.ts b/clients/client-quicksight/src/commands/DeleteFolderMembershipCommand.ts index 02b83b59a0b99..1616c343ee90a 100644 --- a/clients/client-quicksight/src/commands/DeleteFolderMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteFolderMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFolderMembershipRequest, DeleteFolderMembershipResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteFolderMembershipRequest, DeleteFolderMembershipResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteFolderMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteGroupCommand.ts b/clients/client-quicksight/src/commands/DeleteGroupCommand.ts index 4777197899f36..21a9ac8088627 100644 --- a/clients/client-quicksight/src/commands/DeleteGroupCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteGroupMembershipCommand.ts b/clients/client-quicksight/src/commands/DeleteGroupMembershipCommand.ts index bd877c6732f32..85cd7d572b6f8 100644 --- a/clients/client-quicksight/src/commands/DeleteGroupMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteGroupMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupMembershipRequest, DeleteGroupMembershipResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteGroupMembershipRequest, DeleteGroupMembershipResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteGroupMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteIAMPolicyAssignmentCommand.ts b/clients/client-quicksight/src/commands/DeleteIAMPolicyAssignmentCommand.ts index 1ae3fbf050093..6280edc31b100 100644 --- a/clients/client-quicksight/src/commands/DeleteIAMPolicyAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteIAMPolicyAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIAMPolicyAssignmentRequest, DeleteIAMPolicyAssignmentResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteIAMPolicyAssignmentRequest, DeleteIAMPolicyAssignmentResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteIAMPolicyAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteIdentityPropagationConfigCommand.ts b/clients/client-quicksight/src/commands/DeleteIdentityPropagationConfigCommand.ts index 447d798b5fd09..77602213a75f8 100644 --- a/clients/client-quicksight/src/commands/DeleteIdentityPropagationConfigCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteIdentityPropagationConfigCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentityPropagationConfigRequest, DeleteIdentityPropagationConfigResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + DeleteIdentityPropagationConfigRequest, + DeleteIdentityPropagationConfigResponse, +} from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteIdentityPropagationConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteNamespaceCommand.ts b/clients/client-quicksight/src/commands/DeleteNamespaceCommand.ts index 2da1269e6073d..ef64861908cf5 100644 --- a/clients/client-quicksight/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/DeleteRefreshScheduleCommand.ts index 67a68a13cdd7e..07509fb26cf05 100644 --- a/clients/client-quicksight/src/commands/DeleteRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteRefreshScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRefreshScheduleRequest, DeleteRefreshScheduleResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteRefreshScheduleRequest, DeleteRefreshScheduleResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteRefreshSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteRoleCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/DeleteRoleCustomPermissionCommand.ts index 69a306e8f10f7..52c88e46e7eaf 100644 --- a/clients/client-quicksight/src/commands/DeleteRoleCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteRoleCustomPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRoleCustomPermissionRequest, DeleteRoleCustomPermissionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteRoleCustomPermissionRequest, DeleteRoleCustomPermissionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteRoleCustomPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteRoleMembershipCommand.ts b/clients/client-quicksight/src/commands/DeleteRoleMembershipCommand.ts index 55d750999391d..14c0a64a8b8bd 100644 --- a/clients/client-quicksight/src/commands/DeleteRoleMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteRoleMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRoleMembershipRequest, DeleteRoleMembershipResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteRoleMembershipRequest, DeleteRoleMembershipResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteRoleMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteTemplateAliasCommand.ts b/clients/client-quicksight/src/commands/DeleteTemplateAliasCommand.ts index e4c3ee9da69b3..73e2748f023ac 100644 --- a/clients/client-quicksight/src/commands/DeleteTemplateAliasCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteTemplateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTemplateAliasRequest, DeleteTemplateAliasResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteTemplateAliasRequest, DeleteTemplateAliasResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteTemplateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteTemplateCommand.ts b/clients/client-quicksight/src/commands/DeleteTemplateCommand.ts index 5b2202ea66b32..9be95f9e2f7ac 100644 --- a/clients/client-quicksight/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTemplateRequest, DeleteTemplateResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteTemplateRequest, DeleteTemplateResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteThemeAliasCommand.ts b/clients/client-quicksight/src/commands/DeleteThemeAliasCommand.ts index 6429a70da5bd0..691b7e3409ab5 100644 --- a/clients/client-quicksight/src/commands/DeleteThemeAliasCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteThemeAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteThemeAliasRequest, DeleteThemeAliasResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteThemeAliasRequest, DeleteThemeAliasResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteThemeAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteThemeCommand.ts b/clients/client-quicksight/src/commands/DeleteThemeCommand.ts index 4bd2487dbfbdf..a7618822fcdaf 100644 --- a/clients/client-quicksight/src/commands/DeleteThemeCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteThemeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteThemeRequest, DeleteThemeResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteThemeRequest, DeleteThemeResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteTheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteTopicCommand.ts b/clients/client-quicksight/src/commands/DeleteTopicCommand.ts index 53f83a5cb8c9f..96e16946d7eec 100644 --- a/clients/client-quicksight/src/commands/DeleteTopicCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteTopicCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTopicRequest, DeleteTopicResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteTopicRequest, DeleteTopicResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteTopic } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteTopicRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/DeleteTopicRefreshScheduleCommand.ts index 526c2e63532f8..d5898fb9579b8 100644 --- a/clients/client-quicksight/src/commands/DeleteTopicRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteTopicRefreshScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTopicRefreshScheduleRequest, DeleteTopicRefreshScheduleResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteTopicRefreshScheduleRequest, DeleteTopicRefreshScheduleResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteTopicRefreshSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteUserByPrincipalIdCommand.ts b/clients/client-quicksight/src/commands/DeleteUserByPrincipalIdCommand.ts index 6ebeea8424a86..1d9730f0b63a1 100644 --- a/clients/client-quicksight/src/commands/DeleteUserByPrincipalIdCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteUserByPrincipalIdCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserByPrincipalIdRequest, DeleteUserByPrincipalIdResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteUserByPrincipalIdRequest, DeleteUserByPrincipalIdResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteUserByPrincipalId } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteUserCommand.ts b/clients/client-quicksight/src/commands/DeleteUserCommand.ts index 69c1a2cf8088b..56a08319fc60b 100644 --- a/clients/client-quicksight/src/commands/DeleteUserCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest, DeleteUserResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteUserRequest, DeleteUserResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteUserCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/DeleteUserCustomPermissionCommand.ts index d325d7a5ec28f..32be710731756 100644 --- a/clients/client-quicksight/src/commands/DeleteUserCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteUserCustomPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserCustomPermissionRequest, DeleteUserCustomPermissionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteUserCustomPermissionRequest, DeleteUserCustomPermissionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteUserCustomPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DeleteVPCConnectionCommand.ts b/clients/client-quicksight/src/commands/DeleteVPCConnectionCommand.ts index 0aef4ccfab6b5..73546db7a8c44 100644 --- a/clients/client-quicksight/src/commands/DeleteVPCConnectionCommand.ts +++ b/clients/client-quicksight/src/commands/DeleteVPCConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVPCConnectionRequest, DeleteVPCConnectionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DeleteVPCConnectionRequest, DeleteVPCConnectionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DeleteVPCConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeAccountCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/DescribeAccountCustomPermissionCommand.ts index b3ed845009193..9deff73603622 100644 --- a/clients/client-quicksight/src/commands/DescribeAccountCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAccountCustomPermissionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountCustomPermissionRequest, DescribeAccountCustomPermissionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + DescribeAccountCustomPermissionRequest, + DescribeAccountCustomPermissionResponse, +} from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeAccountCustomPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeAccountCustomizationCommand.ts b/clients/client-quicksight/src/commands/DescribeAccountCustomizationCommand.ts index f5190be34618b..029ca26beb677 100644 --- a/clients/client-quicksight/src/commands/DescribeAccountCustomizationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAccountCustomizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountCustomizationRequest, DescribeAccountCustomizationResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeAccountCustomizationRequest, DescribeAccountCustomizationResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeAccountCustomization } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeAccountSettingsCommand.ts b/clients/client-quicksight/src/commands/DescribeAccountSettingsCommand.ts index 7a67fe1510147..767ab3a7b5711 100644 --- a/clients/client-quicksight/src/commands/DescribeAccountSettingsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountSettingsRequest, DescribeAccountSettingsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeAccountSettingsRequest, DescribeAccountSettingsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeAccountSubscriptionCommand.ts b/clients/client-quicksight/src/commands/DescribeAccountSubscriptionCommand.ts index ee43d3690bd3d..d3c840217eac4 100644 --- a/clients/client-quicksight/src/commands/DescribeAccountSubscriptionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAccountSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountSubscriptionRequest, DescribeAccountSubscriptionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeAccountSubscriptionRequest, DescribeAccountSubscriptionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeAccountSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeActionConnectorCommand.ts b/clients/client-quicksight/src/commands/DescribeActionConnectorCommand.ts index 8fa74d59bf97d..e37a4b4d7ae36 100644 --- a/clients/client-quicksight/src/commands/DescribeActionConnectorCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeActionConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeActionConnectorRequest, DescribeActionConnectorResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeActionConnectorRequest, DescribeActionConnectorResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeActionConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeActionConnectorPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeActionConnectorPermissionsCommand.ts index 5bd913c88db8f..67825b00ee6d3 100644 --- a/clients/client-quicksight/src/commands/DescribeActionConnectorPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeActionConnectorPermissionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeActionConnectorPermissionsRequest, DescribeActionConnectorPermissionsResponse, } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeActionConnectorPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts b/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts index 4ea9f2c81165a..197654eef2cc5 100644 --- a/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAnalysisRequest, DescribeAnalysisResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeAnalysisRequest, DescribeAnalysisResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts b/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts index b843e8529e25d..884ef45fe74a9 100644 --- a/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAnalysisDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAnalysisDefinitionRequest, DescribeAnalysisDefinitionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeAnalysisDefinitionRequest, DescribeAnalysisDefinitionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeAnalysisDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeAnalysisPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeAnalysisPermissionsCommand.ts index c5df5136e7bad..8118d7d13e47c 100644 --- a/clients/client-quicksight/src/commands/DescribeAnalysisPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAnalysisPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAnalysisPermissionsRequest, DescribeAnalysisPermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeAnalysisPermissionsRequest, DescribeAnalysisPermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeAnalysisPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeAssetBundleExportJobCommand.ts b/clients/client-quicksight/src/commands/DescribeAssetBundleExportJobCommand.ts index 005ce6f2fc3b7..9d010f5741f5d 100644 --- a/clients/client-quicksight/src/commands/DescribeAssetBundleExportJobCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAssetBundleExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAssetBundleExportJobRequest, DescribeAssetBundleExportJobResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeAssetBundleExportJobRequest, DescribeAssetBundleExportJobResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeAssetBundleExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeAssetBundleImportJobCommand.ts b/clients/client-quicksight/src/commands/DescribeAssetBundleImportJobCommand.ts index fbb452f6038f4..19f11d695eee1 100644 --- a/clients/client-quicksight/src/commands/DescribeAssetBundleImportJobCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeAssetBundleImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAssetBundleImportJobRequest, DescribeAssetBundleImportJobResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeAssetBundleImportJobRequest, DescribeAssetBundleImportJobResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeAssetBundleImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeBrandAssignmentCommand.ts b/clients/client-quicksight/src/commands/DescribeBrandAssignmentCommand.ts index 317c532fbc5a7..c7cf79972b725 100644 --- a/clients/client-quicksight/src/commands/DescribeBrandAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeBrandAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBrandAssignmentRequest, DescribeBrandAssignmentResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeBrandAssignmentRequest, DescribeBrandAssignmentResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeBrandAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeBrandCommand.ts b/clients/client-quicksight/src/commands/DescribeBrandCommand.ts index 646ef6e39e771..54bfc2199baaa 100644 --- a/clients/client-quicksight/src/commands/DescribeBrandCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeBrandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBrandRequest, DescribeBrandResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeBrandRequest, DescribeBrandResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeBrand } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeBrandPublishedVersionCommand.ts b/clients/client-quicksight/src/commands/DescribeBrandPublishedVersionCommand.ts index 7344921ec6515..25c5bf856e42f 100644 --- a/clients/client-quicksight/src/commands/DescribeBrandPublishedVersionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeBrandPublishedVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBrandPublishedVersionRequest, DescribeBrandPublishedVersionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeBrandPublishedVersionRequest, DescribeBrandPublishedVersionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeBrandPublishedVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeCustomPermissionsCommand.ts index 597bde2d449c5..6300471d04dc6 100644 --- a/clients/client-quicksight/src/commands/DescribeCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeCustomPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCustomPermissionsRequest, DescribeCustomPermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeCustomPermissionsRequest, DescribeCustomPermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeCustomPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDashboardCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardCommand.ts index 706c456ec5472..271fdffd1fd1b 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDashboardRequest, DescribeDashboardResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeDashboardRequest, DescribeDashboardResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDashboardDefinitionCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardDefinitionCommand.ts index ea9809408ba4c..4214b23a84a03 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardDefinitionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDashboardDefinitionRequest, DescribeDashboardDefinitionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeDashboardDefinitionRequest, DescribeDashboardDefinitionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDashboardDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDashboardPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardPermissionsCommand.ts index ff0c6bf885b19..f9e55e1c926fe 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDashboardPermissionsRequest, DescribeDashboardPermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeDashboardPermissionsRequest, DescribeDashboardPermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDashboardPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobCommand.ts index 2e10aec805e4a..915f6fcbbbc23 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDashboardSnapshotJobRequest, DescribeDashboardSnapshotJobResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeDashboardSnapshotJobRequest, DescribeDashboardSnapshotJobResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDashboardSnapshotJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobResultCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobResultCommand.ts index 2cf5dc6b9120e..c4d1445897482 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobResultCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardSnapshotJobResultCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDashboardSnapshotJobResultRequest, DescribeDashboardSnapshotJobResultResponse, } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDashboardSnapshotJobResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDashboardsQAConfigurationCommand.ts b/clients/client-quicksight/src/commands/DescribeDashboardsQAConfigurationCommand.ts index 85ad6f900d27f..fd7dfee368b04 100644 --- a/clients/client-quicksight/src/commands/DescribeDashboardsQAConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDashboardsQAConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDashboardsQAConfigurationRequest, DescribeDashboardsQAConfigurationResponse, } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDashboardsQAConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDataSetCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSetCommand.ts index f59b7bd203e59..fd44aaca5ed68 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSetCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataSetRequest, DescribeDataSetResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeDataSetRequest, DescribeDataSetResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDataSetPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSetPermissionsCommand.ts index 38c962e2ee51c..a754c57df88e3 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSetPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSetPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataSetPermissionsRequest, DescribeDataSetPermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeDataSetPermissionsRequest, DescribeDataSetPermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDataSetPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDataSetRefreshPropertiesCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSetRefreshPropertiesCommand.ts index 5501961d9e715..b8f1ae600bf1f 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSetRefreshPropertiesCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSetRefreshPropertiesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataSetRefreshPropertiesRequest, DescribeDataSetRefreshPropertiesResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + DescribeDataSetRefreshPropertiesRequest, + DescribeDataSetRefreshPropertiesResponse, +} from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDataSetRefreshProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDataSourceCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSourceCommand.ts index dd612e589fd97..0eed6eea93ee8 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSourceCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataSourceRequest, DescribeDataSourceResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeDataSourceRequest, DescribeDataSourceResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDataSourcePermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeDataSourcePermissionsCommand.ts index 23286fb37a2f4..e0ff3496f8da9 100644 --- a/clients/client-quicksight/src/commands/DescribeDataSourcePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDataSourcePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataSourcePermissionsRequest, DescribeDataSourcePermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeDataSourcePermissionsRequest, DescribeDataSourcePermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDataSourcePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeDefaultQBusinessApplicationCommand.ts b/clients/client-quicksight/src/commands/DescribeDefaultQBusinessApplicationCommand.ts index bb08dfea2bde1..4ef7727e4b22e 100644 --- a/clients/client-quicksight/src/commands/DescribeDefaultQBusinessApplicationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeDefaultQBusinessApplicationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDefaultQBusinessApplicationRequest, DescribeDefaultQBusinessApplicationResponse, } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeDefaultQBusinessApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeFolderCommand.ts b/clients/client-quicksight/src/commands/DescribeFolderCommand.ts index e73d61d99021b..a062972dc8d9d 100644 --- a/clients/client-quicksight/src/commands/DescribeFolderCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeFolderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFolderRequest, DescribeFolderResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeFolderRequest, DescribeFolderResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeFolder } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeFolderPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeFolderPermissionsCommand.ts index fad56328bf797..f74a20f2cfa4a 100644 --- a/clients/client-quicksight/src/commands/DescribeFolderPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeFolderPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFolderPermissionsRequest, DescribeFolderPermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeFolderPermissionsRequest, DescribeFolderPermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeFolderPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeFolderResolvedPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeFolderResolvedPermissionsCommand.ts index 309dd24cc4e2c..195cc1b46be0f 100644 --- a/clients/client-quicksight/src/commands/DescribeFolderResolvedPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeFolderResolvedPermissionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeFolderResolvedPermissionsRequest, DescribeFolderResolvedPermissionsResponse, } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeFolderResolvedPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeGroupCommand.ts b/clients/client-quicksight/src/commands/DescribeGroupCommand.ts index 40df4818a2ae6..817e600c9e9e4 100644 --- a/clients/client-quicksight/src/commands/DescribeGroupCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGroupRequest, DescribeGroupResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeGroupRequest, DescribeGroupResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeGroupMembershipCommand.ts b/clients/client-quicksight/src/commands/DescribeGroupMembershipCommand.ts index e965d8cacad41..1df99b1e71900 100644 --- a/clients/client-quicksight/src/commands/DescribeGroupMembershipCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeGroupMembershipCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGroupMembershipRequest, DescribeGroupMembershipResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeGroupMembershipRequest, DescribeGroupMembershipResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeGroupMembership } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeIAMPolicyAssignmentCommand.ts b/clients/client-quicksight/src/commands/DescribeIAMPolicyAssignmentCommand.ts index 73c7c44b1378a..98d9f08bd5520 100644 --- a/clients/client-quicksight/src/commands/DescribeIAMPolicyAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeIAMPolicyAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIAMPolicyAssignmentRequest, DescribeIAMPolicyAssignmentResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeIAMPolicyAssignmentRequest, DescribeIAMPolicyAssignmentResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeIAMPolicyAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeIngestionCommand.ts b/clients/client-quicksight/src/commands/DescribeIngestionCommand.ts index b669564fb49a5..6ce61badc0328 100644 --- a/clients/client-quicksight/src/commands/DescribeIngestionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeIngestionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIngestionRequest, DescribeIngestionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeIngestionRequest, DescribeIngestionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeIngestion } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeIpRestrictionCommand.ts b/clients/client-quicksight/src/commands/DescribeIpRestrictionCommand.ts index 40476e42eb574..4a52e166ca569 100644 --- a/clients/client-quicksight/src/commands/DescribeIpRestrictionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeIpRestrictionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpRestrictionRequest, DescribeIpRestrictionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeIpRestrictionRequest, DescribeIpRestrictionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeIpRestriction } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeKeyRegistrationCommand.ts b/clients/client-quicksight/src/commands/DescribeKeyRegistrationCommand.ts index edb235f338c47..9f7e95004415c 100644 --- a/clients/client-quicksight/src/commands/DescribeKeyRegistrationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeKeyRegistrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeKeyRegistrationRequest, DescribeKeyRegistrationResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeKeyRegistrationRequest, DescribeKeyRegistrationResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeKeyRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeNamespaceCommand.ts b/clients/client-quicksight/src/commands/DescribeNamespaceCommand.ts index 8a960cbae19c5..15b4980e82b0c 100644 --- a/clients/client-quicksight/src/commands/DescribeNamespaceCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNamespaceRequest, DescribeNamespaceResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeNamespaceRequest, DescribeNamespaceResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeQPersonalizationConfigurationCommand.ts b/clients/client-quicksight/src/commands/DescribeQPersonalizationConfigurationCommand.ts index 471ab1779677c..fd1f966f6c059 100644 --- a/clients/client-quicksight/src/commands/DescribeQPersonalizationConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeQPersonalizationConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeQPersonalizationConfigurationRequest, DescribeQPersonalizationConfigurationResponse, } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeQPersonalizationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeQuickSightQSearchConfigurationCommand.ts b/clients/client-quicksight/src/commands/DescribeQuickSightQSearchConfigurationCommand.ts index 027fb57c25173..66c7b0c3e8312 100644 --- a/clients/client-quicksight/src/commands/DescribeQuickSightQSearchConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeQuickSightQSearchConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeQuickSightQSearchConfigurationRequest, DescribeQuickSightQSearchConfigurationResponse, } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeQuickSightQSearchConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/DescribeRefreshScheduleCommand.ts index 3c74137b95e83..33418e40eb925 100644 --- a/clients/client-quicksight/src/commands/DescribeRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeRefreshScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRefreshScheduleRequest, DescribeRefreshScheduleResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeRefreshScheduleRequest, DescribeRefreshScheduleResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeRefreshSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeRoleCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/DescribeRoleCustomPermissionCommand.ts index 59525d0a19535..f91df0998925b 100644 --- a/clients/client-quicksight/src/commands/DescribeRoleCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeRoleCustomPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRoleCustomPermissionRequest, DescribeRoleCustomPermissionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeRoleCustomPermissionRequest, DescribeRoleCustomPermissionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeRoleCustomPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeTemplateAliasCommand.ts b/clients/client-quicksight/src/commands/DescribeTemplateAliasCommand.ts index bbd26046aafce..6ea93ac8088ab 100644 --- a/clients/client-quicksight/src/commands/DescribeTemplateAliasCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTemplateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTemplateAliasRequest, DescribeTemplateAliasResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeTemplateAliasRequest, DescribeTemplateAliasResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeTemplateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeTemplateCommand.ts b/clients/client-quicksight/src/commands/DescribeTemplateCommand.ts index b921826913ed9..5cd08eb697bea 100644 --- a/clients/client-quicksight/src/commands/DescribeTemplateCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTemplateRequest, DescribeTemplateResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeTemplateRequest, DescribeTemplateResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeTemplateDefinitionCommand.ts b/clients/client-quicksight/src/commands/DescribeTemplateDefinitionCommand.ts index bd6f412ea7e7f..27ff4236ec653 100644 --- a/clients/client-quicksight/src/commands/DescribeTemplateDefinitionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTemplateDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTemplateDefinitionRequest, DescribeTemplateDefinitionResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeTemplateDefinitionRequest, DescribeTemplateDefinitionResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeTemplateDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeTemplatePermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeTemplatePermissionsCommand.ts index e2d57c09364ac..0ce6a852f2b5a 100644 --- a/clients/client-quicksight/src/commands/DescribeTemplatePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTemplatePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTemplatePermissionsRequest, DescribeTemplatePermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeTemplatePermissionsRequest, DescribeTemplatePermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeTemplatePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeThemeAliasCommand.ts b/clients/client-quicksight/src/commands/DescribeThemeAliasCommand.ts index 6551ec7092be0..0335ab07d1252 100644 --- a/clients/client-quicksight/src/commands/DescribeThemeAliasCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeThemeAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeThemeAliasRequest, DescribeThemeAliasResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeThemeAliasRequest, DescribeThemeAliasResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeThemeAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeThemeCommand.ts b/clients/client-quicksight/src/commands/DescribeThemeCommand.ts index afa0e8d0d357f..b6e99e93bb010 100644 --- a/clients/client-quicksight/src/commands/DescribeThemeCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeThemeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeThemeRequest, DescribeThemeResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeThemeRequest, DescribeThemeResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeTheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeThemePermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeThemePermissionsCommand.ts index 7f30293141325..b33d0f075103f 100644 --- a/clients/client-quicksight/src/commands/DescribeThemePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeThemePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeThemePermissionsRequest, DescribeThemePermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeThemePermissionsRequest, DescribeThemePermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeThemePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeTopicCommand.ts b/clients/client-quicksight/src/commands/DescribeTopicCommand.ts index 07f5c6a737e5a..be2ac67a726fa 100644 --- a/clients/client-quicksight/src/commands/DescribeTopicCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTopicCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTopicRequest, DescribeTopicResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeTopicRequest, DescribeTopicResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeTopic } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeTopicPermissionsCommand.ts b/clients/client-quicksight/src/commands/DescribeTopicPermissionsCommand.ts index 1b6b5492d73b2..729f0f16a9550 100644 --- a/clients/client-quicksight/src/commands/DescribeTopicPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTopicPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTopicPermissionsRequest, DescribeTopicPermissionsResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeTopicPermissionsRequest, DescribeTopicPermissionsResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeTopicPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeTopicRefreshCommand.ts b/clients/client-quicksight/src/commands/DescribeTopicRefreshCommand.ts index 82cb1f68870c4..8adcf649da918 100644 --- a/clients/client-quicksight/src/commands/DescribeTopicRefreshCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTopicRefreshCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTopicRefreshRequest, DescribeTopicRefreshResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeTopicRefreshRequest, DescribeTopicRefreshResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeTopicRefresh } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeTopicRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/DescribeTopicRefreshScheduleCommand.ts index 7c856a9700397..2ba8560d7e64b 100644 --- a/clients/client-quicksight/src/commands/DescribeTopicRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeTopicRefreshScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTopicRefreshScheduleRequest, DescribeTopicRefreshScheduleResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeTopicRefreshScheduleRequest, DescribeTopicRefreshScheduleResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeTopicRefreshSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeUserCommand.ts b/clients/client-quicksight/src/commands/DescribeUserCommand.ts index 4733b37249dcc..70e16d373c15e 100644 --- a/clients/client-quicksight/src/commands/DescribeUserCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserRequest, DescribeUserResponse } from "../models/models_3"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeUserRequest, DescribeUserResponse } from "../models/models_3"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/DescribeVPCConnectionCommand.ts b/clients/client-quicksight/src/commands/DescribeVPCConnectionCommand.ts index 7593aa7d94acc..0021cbe37b11e 100644 --- a/clients/client-quicksight/src/commands/DescribeVPCConnectionCommand.ts +++ b/clients/client-quicksight/src/commands/DescribeVPCConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVPCConnectionRequest, DescribeVPCConnectionResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { DescribeVPCConnectionRequest, DescribeVPCConnectionResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { DescribeVPCConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/GenerateEmbedUrlForAnonymousUserCommand.ts b/clients/client-quicksight/src/commands/GenerateEmbedUrlForAnonymousUserCommand.ts index 1186361ea0ff9..7195408477671 100644 --- a/clients/client-quicksight/src/commands/GenerateEmbedUrlForAnonymousUserCommand.ts +++ b/clients/client-quicksight/src/commands/GenerateEmbedUrlForAnonymousUserCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateEmbedUrlForAnonymousUserRequest, GenerateEmbedUrlForAnonymousUserResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + GenerateEmbedUrlForAnonymousUserRequest, + GenerateEmbedUrlForAnonymousUserResponse, +} from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { GenerateEmbedUrlForAnonymousUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserCommand.ts b/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserCommand.ts index 0ff58a823611f..db95e536aa5bd 100644 --- a/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserCommand.ts +++ b/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GenerateEmbedUrlForRegisteredUserRequest, GenerateEmbedUrlForRegisteredUserResponse, } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { GenerateEmbedUrlForRegisteredUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.ts b/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.ts index 74dccd9ade78f..9e2fc6217d893 100644 --- a/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.ts +++ b/clients/client-quicksight/src/commands/GenerateEmbedUrlForRegisteredUserWithIdentityCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GenerateEmbedUrlForRegisteredUserWithIdentityRequest, GenerateEmbedUrlForRegisteredUserWithIdentityResponse, } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { GenerateEmbedUrlForRegisteredUserWithIdentity } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/GetDashboardEmbedUrlCommand.ts b/clients/client-quicksight/src/commands/GetDashboardEmbedUrlCommand.ts index 15625a6f17d20..734a14ff78ad0 100644 --- a/clients/client-quicksight/src/commands/GetDashboardEmbedUrlCommand.ts +++ b/clients/client-quicksight/src/commands/GetDashboardEmbedUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDashboardEmbedUrlRequest, GetDashboardEmbedUrlResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { GetDashboardEmbedUrlRequest, GetDashboardEmbedUrlResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { GetDashboardEmbedUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/GetFlowMetadataCommand.ts b/clients/client-quicksight/src/commands/GetFlowMetadataCommand.ts index ee731b846f605..cfd4a6cd861d6 100644 --- a/clients/client-quicksight/src/commands/GetFlowMetadataCommand.ts +++ b/clients/client-quicksight/src/commands/GetFlowMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFlowMetadataInput, GetFlowMetadataOutput } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { GetFlowMetadataInput, GetFlowMetadataOutput } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { GetFlowMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/GetFlowPermissionsCommand.ts b/clients/client-quicksight/src/commands/GetFlowPermissionsCommand.ts index bed916806c827..c2147b796e4e2 100644 --- a/clients/client-quicksight/src/commands/GetFlowPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/GetFlowPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFlowPermissionsInput, GetFlowPermissionsOutput } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { GetFlowPermissionsInput, GetFlowPermissionsOutput } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { GetFlowPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/GetSessionEmbedUrlCommand.ts b/clients/client-quicksight/src/commands/GetSessionEmbedUrlCommand.ts index e13c0e4f6ed43..b331f9b030d13 100644 --- a/clients/client-quicksight/src/commands/GetSessionEmbedUrlCommand.ts +++ b/clients/client-quicksight/src/commands/GetSessionEmbedUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionEmbedUrlRequest, GetSessionEmbedUrlResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { GetSessionEmbedUrlRequest, GetSessionEmbedUrlResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { GetSessionEmbedUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListActionConnectorsCommand.ts b/clients/client-quicksight/src/commands/ListActionConnectorsCommand.ts index f9d7f3560b543..39a4c1db996f8 100644 --- a/clients/client-quicksight/src/commands/ListActionConnectorsCommand.ts +++ b/clients/client-quicksight/src/commands/ListActionConnectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListActionConnectorsRequest, ListActionConnectorsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListActionConnectorsRequest, ListActionConnectorsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListActionConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListAnalysesCommand.ts b/clients/client-quicksight/src/commands/ListAnalysesCommand.ts index b1dc1ab02d735..f74920f7c4337 100644 --- a/clients/client-quicksight/src/commands/ListAnalysesCommand.ts +++ b/clients/client-quicksight/src/commands/ListAnalysesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnalysesRequest, ListAnalysesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListAnalysesRequest, ListAnalysesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListAnalyses } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListAssetBundleExportJobsCommand.ts b/clients/client-quicksight/src/commands/ListAssetBundleExportJobsCommand.ts index a28fdcfc2999b..c5a158ff79053 100644 --- a/clients/client-quicksight/src/commands/ListAssetBundleExportJobsCommand.ts +++ b/clients/client-quicksight/src/commands/ListAssetBundleExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssetBundleExportJobsRequest, ListAssetBundleExportJobsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListAssetBundleExportJobsRequest, ListAssetBundleExportJobsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListAssetBundleExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListAssetBundleImportJobsCommand.ts b/clients/client-quicksight/src/commands/ListAssetBundleImportJobsCommand.ts index 569cdff6b5e9a..929001c2849ed 100644 --- a/clients/client-quicksight/src/commands/ListAssetBundleImportJobsCommand.ts +++ b/clients/client-quicksight/src/commands/ListAssetBundleImportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssetBundleImportJobsRequest, ListAssetBundleImportJobsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListAssetBundleImportJobsRequest, ListAssetBundleImportJobsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListAssetBundleImportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListBrandsCommand.ts b/clients/client-quicksight/src/commands/ListBrandsCommand.ts index 4bb73040ea968..ecbf225612949 100644 --- a/clients/client-quicksight/src/commands/ListBrandsCommand.ts +++ b/clients/client-quicksight/src/commands/ListBrandsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBrandsRequest, ListBrandsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListBrandsRequest, ListBrandsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListBrands } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/ListCustomPermissionsCommand.ts index 8466aa25ac11d..1eb853f39ee56 100644 --- a/clients/client-quicksight/src/commands/ListCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListCustomPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCustomPermissionsRequest, ListCustomPermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListCustomPermissionsRequest, ListCustomPermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListCustomPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListDashboardVersionsCommand.ts b/clients/client-quicksight/src/commands/ListDashboardVersionsCommand.ts index 7dd5300089bcc..0f028773f95a7 100644 --- a/clients/client-quicksight/src/commands/ListDashboardVersionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListDashboardVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDashboardVersionsRequest, ListDashboardVersionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListDashboardVersionsRequest, ListDashboardVersionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListDashboardVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListDashboardsCommand.ts b/clients/client-quicksight/src/commands/ListDashboardsCommand.ts index f4f360e3d7041..dfce2893fcea1 100644 --- a/clients/client-quicksight/src/commands/ListDashboardsCommand.ts +++ b/clients/client-quicksight/src/commands/ListDashboardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListDashboardsRequest, ListDashboardsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListDashboards } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListDataSetsCommand.ts b/clients/client-quicksight/src/commands/ListDataSetsCommand.ts index 0a0c96d206743..a20a385bdeec9 100644 --- a/clients/client-quicksight/src/commands/ListDataSetsCommand.ts +++ b/clients/client-quicksight/src/commands/ListDataSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListDataSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListDataSourcesCommand.ts b/clients/client-quicksight/src/commands/ListDataSourcesCommand.ts index dc24d9c8f994b..de9d1d87d902c 100644 --- a/clients/client-quicksight/src/commands/ListDataSourcesCommand.ts +++ b/clients/client-quicksight/src/commands/ListDataSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListDataSourcesRequest, ListDataSourcesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListFlowsCommand.ts b/clients/client-quicksight/src/commands/ListFlowsCommand.ts index 1a693fc38257f..3e0286f879162 100644 --- a/clients/client-quicksight/src/commands/ListFlowsCommand.ts +++ b/clients/client-quicksight/src/commands/ListFlowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowsInput, ListFlowsOutput } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListFlowsInput, ListFlowsOutput } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListFolderMembersCommand.ts b/clients/client-quicksight/src/commands/ListFolderMembersCommand.ts index a56a506237dc5..1128bb0b71a3f 100644 --- a/clients/client-quicksight/src/commands/ListFolderMembersCommand.ts +++ b/clients/client-quicksight/src/commands/ListFolderMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFolderMembersRequest, ListFolderMembersResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListFolderMembersRequest, ListFolderMembersResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListFolderMembers } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListFoldersCommand.ts b/clients/client-quicksight/src/commands/ListFoldersCommand.ts index c9c0439db9850..60f6a90183a7b 100644 --- a/clients/client-quicksight/src/commands/ListFoldersCommand.ts +++ b/clients/client-quicksight/src/commands/ListFoldersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFoldersRequest, ListFoldersResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListFoldersRequest, ListFoldersResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListFolders } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListFoldersForResourceCommand.ts b/clients/client-quicksight/src/commands/ListFoldersForResourceCommand.ts index 637882cdcbcf0..5ebdc5a08168e 100644 --- a/clients/client-quicksight/src/commands/ListFoldersForResourceCommand.ts +++ b/clients/client-quicksight/src/commands/ListFoldersForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFoldersForResourceRequest, ListFoldersForResourceResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListFoldersForResourceRequest, ListFoldersForResourceResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListFoldersForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListGroupMembershipsCommand.ts b/clients/client-quicksight/src/commands/ListGroupMembershipsCommand.ts index 4f1beacc38f57..7ba0a3860cc32 100644 --- a/clients/client-quicksight/src/commands/ListGroupMembershipsCommand.ts +++ b/clients/client-quicksight/src/commands/ListGroupMembershipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupMembershipsRequest, ListGroupMembershipsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListGroupMembershipsRequest, ListGroupMembershipsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListGroupMemberships } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListGroupsCommand.ts b/clients/client-quicksight/src/commands/ListGroupsCommand.ts index 06ce2fe62220a..f2d363574c500 100644 --- a/clients/client-quicksight/src/commands/ListGroupsCommand.ts +++ b/clients/client-quicksight/src/commands/ListGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupsRequest, ListGroupsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsCommand.ts b/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsCommand.ts index 718a18501bab9..d60cfa5c5d026 100644 --- a/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsCommand.ts +++ b/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIAMPolicyAssignmentsRequest, ListIAMPolicyAssignmentsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListIAMPolicyAssignmentsRequest, ListIAMPolicyAssignmentsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListIAMPolicyAssignments } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsForUserCommand.ts b/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsForUserCommand.ts index aef59e36e8fcd..602885ef76ba1 100644 --- a/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsForUserCommand.ts +++ b/clients/client-quicksight/src/commands/ListIAMPolicyAssignmentsForUserCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIAMPolicyAssignmentsForUserRequest, ListIAMPolicyAssignmentsForUserResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + ListIAMPolicyAssignmentsForUserRequest, + ListIAMPolicyAssignmentsForUserResponse, +} from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListIAMPolicyAssignmentsForUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListIdentityPropagationConfigsCommand.ts b/clients/client-quicksight/src/commands/ListIdentityPropagationConfigsCommand.ts index 82e618668e848..9362890aacf87 100644 --- a/clients/client-quicksight/src/commands/ListIdentityPropagationConfigsCommand.ts +++ b/clients/client-quicksight/src/commands/ListIdentityPropagationConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentityPropagationConfigsRequest, ListIdentityPropagationConfigsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListIdentityPropagationConfigsRequest, ListIdentityPropagationConfigsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListIdentityPropagationConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListIngestionsCommand.ts b/clients/client-quicksight/src/commands/ListIngestionsCommand.ts index 4a23798672ed2..601bff07c9157 100644 --- a/clients/client-quicksight/src/commands/ListIngestionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListIngestionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIngestionsRequest, ListIngestionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListIngestionsRequest, ListIngestionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListIngestions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListNamespacesCommand.ts b/clients/client-quicksight/src/commands/ListNamespacesCommand.ts index a84468f72bbf0..b69c50867d3de 100644 --- a/clients/client-quicksight/src/commands/ListNamespacesCommand.ts +++ b/clients/client-quicksight/src/commands/ListNamespacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListNamespaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListRefreshSchedulesCommand.ts b/clients/client-quicksight/src/commands/ListRefreshSchedulesCommand.ts index 11ec2ffd9c1d1..ff83a5ffe0ac3 100644 --- a/clients/client-quicksight/src/commands/ListRefreshSchedulesCommand.ts +++ b/clients/client-quicksight/src/commands/ListRefreshSchedulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRefreshSchedulesRequest, ListRefreshSchedulesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListRefreshSchedulesRequest, ListRefreshSchedulesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListRefreshSchedules } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListRoleMembershipsCommand.ts b/clients/client-quicksight/src/commands/ListRoleMembershipsCommand.ts index b51164beed979..1757a368729c0 100644 --- a/clients/client-quicksight/src/commands/ListRoleMembershipsCommand.ts +++ b/clients/client-quicksight/src/commands/ListRoleMembershipsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoleMembershipsRequest, ListRoleMembershipsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListRoleMembershipsRequest, ListRoleMembershipsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListRoleMemberships } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListTagsForResourceCommand.ts b/clients/client-quicksight/src/commands/ListTagsForResourceCommand.ts index 606fc42371eef..a6ca078768e5f 100644 --- a/clients/client-quicksight/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-quicksight/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListTemplateAliasesCommand.ts b/clients/client-quicksight/src/commands/ListTemplateAliasesCommand.ts index 3c21284189cc7..cdc55eeffd2ae 100644 --- a/clients/client-quicksight/src/commands/ListTemplateAliasesCommand.ts +++ b/clients/client-quicksight/src/commands/ListTemplateAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTemplateAliasesRequest, ListTemplateAliasesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListTemplateAliasesRequest, ListTemplateAliasesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListTemplateAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListTemplateVersionsCommand.ts b/clients/client-quicksight/src/commands/ListTemplateVersionsCommand.ts index 1f5a4c667aaa0..982ad1aa1097b 100644 --- a/clients/client-quicksight/src/commands/ListTemplateVersionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListTemplateVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTemplateVersionsRequest, ListTemplateVersionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListTemplateVersionsRequest, ListTemplateVersionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListTemplateVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListTemplatesCommand.ts b/clients/client-quicksight/src/commands/ListTemplatesCommand.ts index aaa8baab2935b..364f4c8df9306 100644 --- a/clients/client-quicksight/src/commands/ListTemplatesCommand.ts +++ b/clients/client-quicksight/src/commands/ListTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListThemeAliasesCommand.ts b/clients/client-quicksight/src/commands/ListThemeAliasesCommand.ts index 05b1f38cef65c..f6680ac73acde 100644 --- a/clients/client-quicksight/src/commands/ListThemeAliasesCommand.ts +++ b/clients/client-quicksight/src/commands/ListThemeAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListThemeAliasesRequest, ListThemeAliasesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListThemeAliasesRequest, ListThemeAliasesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListThemeAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListThemeVersionsCommand.ts b/clients/client-quicksight/src/commands/ListThemeVersionsCommand.ts index 6a99321310a61..8679c81bced0a 100644 --- a/clients/client-quicksight/src/commands/ListThemeVersionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListThemeVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListThemeVersionsRequest, ListThemeVersionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListThemeVersionsRequest, ListThemeVersionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListThemeVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListThemesCommand.ts b/clients/client-quicksight/src/commands/ListThemesCommand.ts index ebf52365a2d60..ea15cb7cb62ff 100644 --- a/clients/client-quicksight/src/commands/ListThemesCommand.ts +++ b/clients/client-quicksight/src/commands/ListThemesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListThemesRequest, ListThemesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListThemesRequest, ListThemesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListThemes } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListTopicRefreshSchedulesCommand.ts b/clients/client-quicksight/src/commands/ListTopicRefreshSchedulesCommand.ts index ad9c54ca1df92..e19f500d516a7 100644 --- a/clients/client-quicksight/src/commands/ListTopicRefreshSchedulesCommand.ts +++ b/clients/client-quicksight/src/commands/ListTopicRefreshSchedulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTopicRefreshSchedulesRequest, ListTopicRefreshSchedulesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListTopicRefreshSchedulesRequest, ListTopicRefreshSchedulesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListTopicRefreshSchedules } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListTopicReviewedAnswersCommand.ts b/clients/client-quicksight/src/commands/ListTopicReviewedAnswersCommand.ts index 65e4a978e1c70..987830d102521 100644 --- a/clients/client-quicksight/src/commands/ListTopicReviewedAnswersCommand.ts +++ b/clients/client-quicksight/src/commands/ListTopicReviewedAnswersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTopicReviewedAnswersRequest, ListTopicReviewedAnswersResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListTopicReviewedAnswersRequest, ListTopicReviewedAnswersResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListTopicReviewedAnswers } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListTopicsCommand.ts b/clients/client-quicksight/src/commands/ListTopicsCommand.ts index 16d33ba7e6cbe..764a0d93571b4 100644 --- a/clients/client-quicksight/src/commands/ListTopicsCommand.ts +++ b/clients/client-quicksight/src/commands/ListTopicsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTopicsRequest, ListTopicsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListTopicsRequest, ListTopicsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListTopics } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListUserGroupsCommand.ts b/clients/client-quicksight/src/commands/ListUserGroupsCommand.ts index db0e1f29182ba..eec97ec3b69ef 100644 --- a/clients/client-quicksight/src/commands/ListUserGroupsCommand.ts +++ b/clients/client-quicksight/src/commands/ListUserGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUserGroupsRequest, ListUserGroupsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListUserGroupsRequest, ListUserGroupsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListUserGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListUsersCommand.ts b/clients/client-quicksight/src/commands/ListUsersCommand.ts index b68174b94b6fa..96944d2717caf 100644 --- a/clients/client-quicksight/src/commands/ListUsersCommand.ts +++ b/clients/client-quicksight/src/commands/ListUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/ListVPCConnectionsCommand.ts b/clients/client-quicksight/src/commands/ListVPCConnectionsCommand.ts index d2acaa9064095..4d3f495a06364 100644 --- a/clients/client-quicksight/src/commands/ListVPCConnectionsCommand.ts +++ b/clients/client-quicksight/src/commands/ListVPCConnectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVPCConnectionsRequest, ListVPCConnectionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { ListVPCConnectionsRequest, ListVPCConnectionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { ListVPCConnections } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/PredictQAResultsCommand.ts b/clients/client-quicksight/src/commands/PredictQAResultsCommand.ts index 0b53d8479e024..30f725033ba6b 100644 --- a/clients/client-quicksight/src/commands/PredictQAResultsCommand.ts +++ b/clients/client-quicksight/src/commands/PredictQAResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PredictQAResultsRequest, PredictQAResultsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { PredictQAResultsRequest, PredictQAResultsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { PredictQAResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/PutDataSetRefreshPropertiesCommand.ts b/clients/client-quicksight/src/commands/PutDataSetRefreshPropertiesCommand.ts index 580e15fbdc03b..5735f5e4b5fe1 100644 --- a/clients/client-quicksight/src/commands/PutDataSetRefreshPropertiesCommand.ts +++ b/clients/client-quicksight/src/commands/PutDataSetRefreshPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDataSetRefreshPropertiesRequest, PutDataSetRefreshPropertiesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { PutDataSetRefreshPropertiesRequest, PutDataSetRefreshPropertiesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { PutDataSetRefreshProperties } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/RegisterUserCommand.ts b/clients/client-quicksight/src/commands/RegisterUserCommand.ts index 7dabbd44e1a06..2538604994171 100644 --- a/clients/client-quicksight/src/commands/RegisterUserCommand.ts +++ b/clients/client-quicksight/src/commands/RegisterUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterUserRequest, RegisterUserResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { RegisterUserRequest, RegisterUserResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { RegisterUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/RestoreAnalysisCommand.ts b/clients/client-quicksight/src/commands/RestoreAnalysisCommand.ts index cb5f7bef143ae..a03096ffff5f7 100644 --- a/clients/client-quicksight/src/commands/RestoreAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/RestoreAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreAnalysisRequest, RestoreAnalysisResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { RestoreAnalysisRequest, RestoreAnalysisResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { RestoreAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/SearchActionConnectorsCommand.ts b/clients/client-quicksight/src/commands/SearchActionConnectorsCommand.ts index d3d9e1b6c2dab..74fccbb0c5b1c 100644 --- a/clients/client-quicksight/src/commands/SearchActionConnectorsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchActionConnectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchActionConnectorsRequest, SearchActionConnectorsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { SearchActionConnectorsRequest, SearchActionConnectorsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { SearchActionConnectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/SearchAnalysesCommand.ts b/clients/client-quicksight/src/commands/SearchAnalysesCommand.ts index 2615287d3fe49..7ea369f1c7aa7 100644 --- a/clients/client-quicksight/src/commands/SearchAnalysesCommand.ts +++ b/clients/client-quicksight/src/commands/SearchAnalysesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchAnalysesRequest, SearchAnalysesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { SearchAnalysesRequest, SearchAnalysesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { SearchAnalyses } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/SearchDashboardsCommand.ts b/clients/client-quicksight/src/commands/SearchDashboardsCommand.ts index 1e6c3241a1ed0..635f0b65b1336 100644 --- a/clients/client-quicksight/src/commands/SearchDashboardsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchDashboardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchDashboardsRequest, SearchDashboardsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { SearchDashboardsRequest, SearchDashboardsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { SearchDashboards } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/SearchDataSetsCommand.ts b/clients/client-quicksight/src/commands/SearchDataSetsCommand.ts index afa5c6d91c2dc..4104579a2fcda 100644 --- a/clients/client-quicksight/src/commands/SearchDataSetsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchDataSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchDataSetsRequest, SearchDataSetsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { SearchDataSetsRequest, SearchDataSetsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { SearchDataSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/SearchDataSourcesCommand.ts b/clients/client-quicksight/src/commands/SearchDataSourcesCommand.ts index 360015df7a333..fe5537f5dd0de 100644 --- a/clients/client-quicksight/src/commands/SearchDataSourcesCommand.ts +++ b/clients/client-quicksight/src/commands/SearchDataSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchDataSourcesRequest, SearchDataSourcesResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { SearchDataSourcesRequest, SearchDataSourcesResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { SearchDataSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/SearchFlowsCommand.ts b/clients/client-quicksight/src/commands/SearchFlowsCommand.ts index aaa5335da3d0b..19b32aef38a28 100644 --- a/clients/client-quicksight/src/commands/SearchFlowsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchFlowsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchFlowsInput, SearchFlowsOutput } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { SearchFlowsInput, SearchFlowsOutput } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { SearchFlows } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/SearchFoldersCommand.ts b/clients/client-quicksight/src/commands/SearchFoldersCommand.ts index 898ca6a4d52bf..4934da389c21a 100644 --- a/clients/client-quicksight/src/commands/SearchFoldersCommand.ts +++ b/clients/client-quicksight/src/commands/SearchFoldersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchFoldersRequest, SearchFoldersResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { SearchFoldersRequest, SearchFoldersResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { SearchFolders } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/SearchGroupsCommand.ts b/clients/client-quicksight/src/commands/SearchGroupsCommand.ts index ff47ad2638514..373e50dcc1152 100644 --- a/clients/client-quicksight/src/commands/SearchGroupsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchGroupsRequest, SearchGroupsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { SearchGroupsRequest, SearchGroupsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { SearchGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/SearchTopicsCommand.ts b/clients/client-quicksight/src/commands/SearchTopicsCommand.ts index 0f180d2e40f61..85ba695e4e6e3 100644 --- a/clients/client-quicksight/src/commands/SearchTopicsCommand.ts +++ b/clients/client-quicksight/src/commands/SearchTopicsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchTopicsRequest, SearchTopicsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { SearchTopicsRequest, SearchTopicsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { SearchTopics } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/StartAssetBundleExportJobCommand.ts b/clients/client-quicksight/src/commands/StartAssetBundleExportJobCommand.ts index 6a2d2fb1c444f..f91581d26dad1 100644 --- a/clients/client-quicksight/src/commands/StartAssetBundleExportJobCommand.ts +++ b/clients/client-quicksight/src/commands/StartAssetBundleExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAssetBundleExportJobRequest, StartAssetBundleExportJobResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { StartAssetBundleExportJobRequest, StartAssetBundleExportJobResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { StartAssetBundleExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/StartAssetBundleImportJobCommand.ts b/clients/client-quicksight/src/commands/StartAssetBundleImportJobCommand.ts index 002ee4150dfe9..57ac59f69981e 100644 --- a/clients/client-quicksight/src/commands/StartAssetBundleImportJobCommand.ts +++ b/clients/client-quicksight/src/commands/StartAssetBundleImportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAssetBundleImportJobRequest, StartAssetBundleImportJobResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { StartAssetBundleImportJobRequest, StartAssetBundleImportJobResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { StartAssetBundleImportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/StartDashboardSnapshotJobCommand.ts b/clients/client-quicksight/src/commands/StartDashboardSnapshotJobCommand.ts index 19e070117431a..180f88f071110 100644 --- a/clients/client-quicksight/src/commands/StartDashboardSnapshotJobCommand.ts +++ b/clients/client-quicksight/src/commands/StartDashboardSnapshotJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDashboardSnapshotJobRequest, StartDashboardSnapshotJobResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { StartDashboardSnapshotJobRequest, StartDashboardSnapshotJobResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { StartDashboardSnapshotJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/StartDashboardSnapshotJobScheduleCommand.ts b/clients/client-quicksight/src/commands/StartDashboardSnapshotJobScheduleCommand.ts index 704cc1dd56731..e32e7133a10f9 100644 --- a/clients/client-quicksight/src/commands/StartDashboardSnapshotJobScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/StartDashboardSnapshotJobScheduleCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartDashboardSnapshotJobScheduleRequest, StartDashboardSnapshotJobScheduleResponse, } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { StartDashboardSnapshotJobSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/TagResourceCommand.ts b/clients/client-quicksight/src/commands/TagResourceCommand.ts index fcbbebb549c61..e57fdf73193da 100644 --- a/clients/client-quicksight/src/commands/TagResourceCommand.ts +++ b/clients/client-quicksight/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UntagResourceCommand.ts b/clients/client-quicksight/src/commands/UntagResourceCommand.ts index d6e8590969e44..ed89dd51fb27b 100644 --- a/clients/client-quicksight/src/commands/UntagResourceCommand.ts +++ b/clients/client-quicksight/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateAccountCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/UpdateAccountCustomPermissionCommand.ts index 36f3817b4cff4..76e6ae60f3cb1 100644 --- a/clients/client-quicksight/src/commands/UpdateAccountCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateAccountCustomPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountCustomPermissionRequest, UpdateAccountCustomPermissionResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateAccountCustomPermissionRequest, UpdateAccountCustomPermissionResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateAccountCustomPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateAccountCustomizationCommand.ts b/clients/client-quicksight/src/commands/UpdateAccountCustomizationCommand.ts index 17d6f24fecaa3..6d8cd604477ce 100644 --- a/clients/client-quicksight/src/commands/UpdateAccountCustomizationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateAccountCustomizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountCustomizationRequest, UpdateAccountCustomizationResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateAccountCustomizationRequest, UpdateAccountCustomizationResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateAccountCustomization } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-quicksight/src/commands/UpdateAccountSettingsCommand.ts index fbe68b6c2bacf..d7d5428a42545 100644 --- a/clients/client-quicksight/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateAccountSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountSettingsRequest, UpdateAccountSettingsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateAccountSettingsRequest, UpdateAccountSettingsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateActionConnectorCommand.ts b/clients/client-quicksight/src/commands/UpdateActionConnectorCommand.ts index 46c2f52693829..1b53abb01e2a5 100644 --- a/clients/client-quicksight/src/commands/UpdateActionConnectorCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateActionConnectorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateActionConnectorRequest, UpdateActionConnectorResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateActionConnectorRequest, UpdateActionConnectorResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateActionConnector } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateActionConnectorPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateActionConnectorPermissionsCommand.ts index 337d16bb645a5..3499581ca6c4e 100644 --- a/clients/client-quicksight/src/commands/UpdateActionConnectorPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateActionConnectorPermissionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateActionConnectorPermissionsRequest, UpdateActionConnectorPermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + UpdateActionConnectorPermissionsRequest, + UpdateActionConnectorPermissionsResponse, +} from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateActionConnectorPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateAnalysisCommand.ts b/clients/client-quicksight/src/commands/UpdateAnalysisCommand.ts index 81ec706ebddc3..a049bf7980227 100644 --- a/clients/client-quicksight/src/commands/UpdateAnalysisCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateAnalysisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnalysisRequest, UpdateAnalysisResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateAnalysisRequest, UpdateAnalysisResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateAnalysis } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateAnalysisPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateAnalysisPermissionsCommand.ts index 8ca28dd11ea7e..1f192bcbf3b14 100644 --- a/clients/client-quicksight/src/commands/UpdateAnalysisPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateAnalysisPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnalysisPermissionsRequest, UpdateAnalysisPermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateAnalysisPermissionsRequest, UpdateAnalysisPermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateAnalysisPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateApplicationWithTokenExchangeGrantCommand.ts b/clients/client-quicksight/src/commands/UpdateApplicationWithTokenExchangeGrantCommand.ts index a1d53c7e36973..714b94373ef2d 100644 --- a/clients/client-quicksight/src/commands/UpdateApplicationWithTokenExchangeGrantCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateApplicationWithTokenExchangeGrantCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateApplicationWithTokenExchangeGrantRequest, UpdateApplicationWithTokenExchangeGrantResponse, } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateApplicationWithTokenExchangeGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateBrandAssignmentCommand.ts b/clients/client-quicksight/src/commands/UpdateBrandAssignmentCommand.ts index e0a1647b94413..b2041140a89c3 100644 --- a/clients/client-quicksight/src/commands/UpdateBrandAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateBrandAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBrandAssignmentRequest, UpdateBrandAssignmentResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateBrandAssignmentRequest, UpdateBrandAssignmentResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateBrandAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateBrandCommand.ts b/clients/client-quicksight/src/commands/UpdateBrandCommand.ts index 7995036cd9e16..9a985b1042b6b 100644 --- a/clients/client-quicksight/src/commands/UpdateBrandCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateBrandCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBrandRequest, UpdateBrandResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateBrandRequest, UpdateBrandResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateBrand } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateBrandPublishedVersionCommand.ts b/clients/client-quicksight/src/commands/UpdateBrandPublishedVersionCommand.ts index b27cce91782a4..c44d756cc1ccf 100644 --- a/clients/client-quicksight/src/commands/UpdateBrandPublishedVersionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateBrandPublishedVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBrandPublishedVersionRequest, UpdateBrandPublishedVersionResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateBrandPublishedVersionRequest, UpdateBrandPublishedVersionResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateBrandPublishedVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateCustomPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateCustomPermissionsCommand.ts index d0d3fde21192e..969c1a191ab0d 100644 --- a/clients/client-quicksight/src/commands/UpdateCustomPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateCustomPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCustomPermissionsRequest, UpdateCustomPermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateCustomPermissionsRequest, UpdateCustomPermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateCustomPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDashboardCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardCommand.ts index ddbe0c89fe364..6956b87068b1b 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDashboardRequest, UpdateDashboardResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateDashboardRequest, UpdateDashboardResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDashboard } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDashboardLinksCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardLinksCommand.ts index 5d35660ce70b6..0e2be60c4d557 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardLinksCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardLinksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDashboardLinksRequest, UpdateDashboardLinksResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateDashboardLinksRequest, UpdateDashboardLinksResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDashboardLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDashboardPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardPermissionsCommand.ts index 77a318ae85129..95b8d91d8d839 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDashboardPermissionsRequest, UpdateDashboardPermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateDashboardPermissionsRequest, UpdateDashboardPermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDashboardPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDashboardPublishedVersionCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardPublishedVersionCommand.ts index f5f43211a1346..0a4edfd9e0d2f 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardPublishedVersionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardPublishedVersionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDashboardPublishedVersionRequest, UpdateDashboardPublishedVersionResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + UpdateDashboardPublishedVersionRequest, + UpdateDashboardPublishedVersionResponse, +} from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDashboardPublishedVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDashboardsQAConfigurationCommand.ts b/clients/client-quicksight/src/commands/UpdateDashboardsQAConfigurationCommand.ts index eb4671a5f7f06..4a0472f5c649f 100644 --- a/clients/client-quicksight/src/commands/UpdateDashboardsQAConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDashboardsQAConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDashboardsQAConfigurationRequest, UpdateDashboardsQAConfigurationResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + UpdateDashboardsQAConfigurationRequest, + UpdateDashboardsQAConfigurationResponse, +} from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDashboardsQAConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDataSetCommand.ts b/clients/client-quicksight/src/commands/UpdateDataSetCommand.ts index dc9ad2492d8aa..0fef95e1a9b0b 100644 --- a/clients/client-quicksight/src/commands/UpdateDataSetCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDataSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSetRequest, UpdateDataSetResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateDataSetRequest, UpdateDataSetResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDataSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDataSetPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateDataSetPermissionsCommand.ts index 0ebb6bfca7519..82388185bbbb4 100644 --- a/clients/client-quicksight/src/commands/UpdateDataSetPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDataSetPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSetPermissionsRequest, UpdateDataSetPermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateDataSetPermissionsRequest, UpdateDataSetPermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDataSetPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDataSourceCommand.ts b/clients/client-quicksight/src/commands/UpdateDataSourceCommand.ts index 9f4eccdd45a47..6302c3ac96b6e 100644 --- a/clients/client-quicksight/src/commands/UpdateDataSourceCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDataSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateDataSourceRequest, UpdateDataSourceResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDataSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDataSourcePermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateDataSourcePermissionsCommand.ts index 3f587618a538e..12a4020b84a7a 100644 --- a/clients/client-quicksight/src/commands/UpdateDataSourcePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDataSourcePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataSourcePermissionsRequest, UpdateDataSourcePermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateDataSourcePermissionsRequest, UpdateDataSourcePermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDataSourcePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateDefaultQBusinessApplicationCommand.ts b/clients/client-quicksight/src/commands/UpdateDefaultQBusinessApplicationCommand.ts index 5018028bc956b..855dca42da986 100644 --- a/clients/client-quicksight/src/commands/UpdateDefaultQBusinessApplicationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateDefaultQBusinessApplicationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateDefaultQBusinessApplicationRequest, UpdateDefaultQBusinessApplicationResponse, } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateDefaultQBusinessApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateFlowPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateFlowPermissionsCommand.ts index 8a2d6ffc4ed56..68932c334daf6 100644 --- a/clients/client-quicksight/src/commands/UpdateFlowPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateFlowPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFlowPermissionsInput, UpdateFlowPermissionsOutput } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateFlowPermissionsInput, UpdateFlowPermissionsOutput } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateFlowPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateFolderCommand.ts b/clients/client-quicksight/src/commands/UpdateFolderCommand.ts index 93f1290155449..124f16bcb6779 100644 --- a/clients/client-quicksight/src/commands/UpdateFolderCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateFolderCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFolderRequest, UpdateFolderResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateFolderRequest, UpdateFolderResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateFolder } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateFolderPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateFolderPermissionsCommand.ts index d69b728336d2d..1e998707776d0 100644 --- a/clients/client-quicksight/src/commands/UpdateFolderPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateFolderPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFolderPermissionsRequest, UpdateFolderPermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateFolderPermissionsRequest, UpdateFolderPermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateFolderPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateGroupCommand.ts b/clients/client-quicksight/src/commands/UpdateGroupCommand.ts index 9c7b63a0d8fe8..0ca402e2fae1c 100644 --- a/clients/client-quicksight/src/commands/UpdateGroupCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateIAMPolicyAssignmentCommand.ts b/clients/client-quicksight/src/commands/UpdateIAMPolicyAssignmentCommand.ts index 631befdb81474..499a3c4e74df8 100644 --- a/clients/client-quicksight/src/commands/UpdateIAMPolicyAssignmentCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateIAMPolicyAssignmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIAMPolicyAssignmentRequest, UpdateIAMPolicyAssignmentResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateIAMPolicyAssignmentRequest, UpdateIAMPolicyAssignmentResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateIAMPolicyAssignment } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateIdentityPropagationConfigCommand.ts b/clients/client-quicksight/src/commands/UpdateIdentityPropagationConfigCommand.ts index 106bcecba2e37..66bc49bba35b1 100644 --- a/clients/client-quicksight/src/commands/UpdateIdentityPropagationConfigCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateIdentityPropagationConfigCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIdentityPropagationConfigRequest, UpdateIdentityPropagationConfigResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + UpdateIdentityPropagationConfigRequest, + UpdateIdentityPropagationConfigResponse, +} from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateIdentityPropagationConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateIpRestrictionCommand.ts b/clients/client-quicksight/src/commands/UpdateIpRestrictionCommand.ts index a54711e57b151..e0dbfd63736ed 100644 --- a/clients/client-quicksight/src/commands/UpdateIpRestrictionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateIpRestrictionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIpRestrictionRequest, UpdateIpRestrictionResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateIpRestrictionRequest, UpdateIpRestrictionResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateIpRestriction } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateKeyRegistrationCommand.ts b/clients/client-quicksight/src/commands/UpdateKeyRegistrationCommand.ts index 869685db4ce10..db65ebd6f2fa9 100644 --- a/clients/client-quicksight/src/commands/UpdateKeyRegistrationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateKeyRegistrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateKeyRegistrationRequest, UpdateKeyRegistrationResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateKeyRegistrationRequest, UpdateKeyRegistrationResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateKeyRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdatePublicSharingSettingsCommand.ts b/clients/client-quicksight/src/commands/UpdatePublicSharingSettingsCommand.ts index 218fbf8ac5427..6917f883b611a 100644 --- a/clients/client-quicksight/src/commands/UpdatePublicSharingSettingsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdatePublicSharingSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePublicSharingSettingsRequest, UpdatePublicSharingSettingsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdatePublicSharingSettingsRequest, UpdatePublicSharingSettingsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdatePublicSharingSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateQPersonalizationConfigurationCommand.ts b/clients/client-quicksight/src/commands/UpdateQPersonalizationConfigurationCommand.ts index a542bf6577731..771c73a442cb3 100644 --- a/clients/client-quicksight/src/commands/UpdateQPersonalizationConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateQPersonalizationConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateQPersonalizationConfigurationRequest, UpdateQPersonalizationConfigurationResponse, } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateQPersonalizationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateQuickSightQSearchConfigurationCommand.ts b/clients/client-quicksight/src/commands/UpdateQuickSightQSearchConfigurationCommand.ts index baafcb61e6dff..c63f62c2a87fb 100644 --- a/clients/client-quicksight/src/commands/UpdateQuickSightQSearchConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateQuickSightQSearchConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateQuickSightQSearchConfigurationRequest, UpdateQuickSightQSearchConfigurationResponse, } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateQuickSightQSearchConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/UpdateRefreshScheduleCommand.ts index 6ec291ea7d5d9..8568d1d3d310a 100644 --- a/clients/client-quicksight/src/commands/UpdateRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateRefreshScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRefreshScheduleRequest, UpdateRefreshScheduleResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateRefreshScheduleRequest, UpdateRefreshScheduleResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateRefreshSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateRoleCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/UpdateRoleCustomPermissionCommand.ts index f783bfd4b2941..cb9a14b5a567d 100644 --- a/clients/client-quicksight/src/commands/UpdateRoleCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateRoleCustomPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoleCustomPermissionRequest, UpdateRoleCustomPermissionResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateRoleCustomPermissionRequest, UpdateRoleCustomPermissionResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateRoleCustomPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateSPICECapacityConfigurationCommand.ts b/clients/client-quicksight/src/commands/UpdateSPICECapacityConfigurationCommand.ts index cb98538dd3f4a..eae9a5574ec7e 100644 --- a/clients/client-quicksight/src/commands/UpdateSPICECapacityConfigurationCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateSPICECapacityConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSPICECapacityConfigurationRequest, UpdateSPICECapacityConfigurationResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { + UpdateSPICECapacityConfigurationRequest, + UpdateSPICECapacityConfigurationResponse, +} from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateSPICECapacityConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateTemplateAliasCommand.ts b/clients/client-quicksight/src/commands/UpdateTemplateAliasCommand.ts index 186466d9c78ec..450fc51daaf46 100644 --- a/clients/client-quicksight/src/commands/UpdateTemplateAliasCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTemplateAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTemplateAliasRequest, UpdateTemplateAliasResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateTemplateAliasRequest, UpdateTemplateAliasResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateTemplateAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateTemplateCommand.ts b/clients/client-quicksight/src/commands/UpdateTemplateCommand.ts index b626b9d8e4de0..adacd317ff06a 100644 --- a/clients/client-quicksight/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateTemplatePermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateTemplatePermissionsCommand.ts index a97ead82430e5..d7f70ed6acef6 100644 --- a/clients/client-quicksight/src/commands/UpdateTemplatePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTemplatePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTemplatePermissionsRequest, UpdateTemplatePermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateTemplatePermissionsRequest, UpdateTemplatePermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateTemplatePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateThemeAliasCommand.ts b/clients/client-quicksight/src/commands/UpdateThemeAliasCommand.ts index 668d03b913eb7..be4e389c4b454 100644 --- a/clients/client-quicksight/src/commands/UpdateThemeAliasCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateThemeAliasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateThemeAliasRequest, UpdateThemeAliasResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateThemeAliasRequest, UpdateThemeAliasResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateThemeAlias } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateThemeCommand.ts b/clients/client-quicksight/src/commands/UpdateThemeCommand.ts index 133905ca88699..4505d38e485c6 100644 --- a/clients/client-quicksight/src/commands/UpdateThemeCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateThemeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateThemeRequest, UpdateThemeResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateThemeRequest, UpdateThemeResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateTheme } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateThemePermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateThemePermissionsCommand.ts index 7894221e0101e..37530e4e422d6 100644 --- a/clients/client-quicksight/src/commands/UpdateThemePermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateThemePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateThemePermissionsRequest, UpdateThemePermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateThemePermissionsRequest, UpdateThemePermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateThemePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateTopicCommand.ts b/clients/client-quicksight/src/commands/UpdateTopicCommand.ts index df8e9cf0253ca..aa366930ae2c7 100644 --- a/clients/client-quicksight/src/commands/UpdateTopicCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTopicCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTopicRequest, UpdateTopicResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateTopicRequest, UpdateTopicResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateTopic } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateTopicPermissionsCommand.ts b/clients/client-quicksight/src/commands/UpdateTopicPermissionsCommand.ts index 3664c8e1ba5b8..5a794b965f661 100644 --- a/clients/client-quicksight/src/commands/UpdateTopicPermissionsCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTopicPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTopicPermissionsRequest, UpdateTopicPermissionsResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateTopicPermissionsRequest, UpdateTopicPermissionsResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateTopicPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateTopicRefreshScheduleCommand.ts b/clients/client-quicksight/src/commands/UpdateTopicRefreshScheduleCommand.ts index ba2db077b0109..d1e40d016d7af 100644 --- a/clients/client-quicksight/src/commands/UpdateTopicRefreshScheduleCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateTopicRefreshScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTopicRefreshScheduleRequest, UpdateTopicRefreshScheduleResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateTopicRefreshScheduleRequest, UpdateTopicRefreshScheduleResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateTopicRefreshSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateUserCommand.ts b/clients/client-quicksight/src/commands/UpdateUserCommand.ts index da616dc659cdf..2af3445816c10 100644 --- a/clients/client-quicksight/src/commands/UpdateUserCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateUserCustomPermissionCommand.ts b/clients/client-quicksight/src/commands/UpdateUserCustomPermissionCommand.ts index 52109bd466d13..375cffe9a5472 100644 --- a/clients/client-quicksight/src/commands/UpdateUserCustomPermissionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateUserCustomPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserCustomPermissionRequest, UpdateUserCustomPermissionResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateUserCustomPermissionRequest, UpdateUserCustomPermissionResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateUserCustomPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/commands/UpdateVPCConnectionCommand.ts b/clients/client-quicksight/src/commands/UpdateVPCConnectionCommand.ts index a536d7638ca40..f1caf9c02bba1 100644 --- a/clients/client-quicksight/src/commands/UpdateVPCConnectionCommand.ts +++ b/clients/client-quicksight/src/commands/UpdateVPCConnectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVPCConnectionRequest, UpdateVPCConnectionResponse } from "../models/models_4"; -import { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; +import type { UpdateVPCConnectionRequest, UpdateVPCConnectionResponse } from "../models/models_4"; +import type { QuickSightClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QuickSightClient"; import { UpdateVPCConnection } from "../schemas/schemas_0"; /** diff --git a/clients/client-quicksight/src/endpoint/EndpointParameters.ts b/clients/client-quicksight/src/endpoint/EndpointParameters.ts index ecf7e16b69c5d..783ae21b80bd9 100644 --- a/clients/client-quicksight/src/endpoint/EndpointParameters.ts +++ b/clients/client-quicksight/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-quicksight/src/endpoint/endpointResolver.ts b/clients/client-quicksight/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-quicksight/src/endpoint/endpointResolver.ts +++ b/clients/client-quicksight/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-quicksight/src/extensionConfiguration.ts b/clients/client-quicksight/src/extensionConfiguration.ts index 5d5c7873bfd78..44167d50e4232 100644 --- a/clients/client-quicksight/src/extensionConfiguration.ts +++ b/clients/client-quicksight/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-quicksight/src/models/QuickSightServiceException.ts b/clients/client-quicksight/src/models/QuickSightServiceException.ts index c02f9fbbb5c99..97a44e38e5238 100644 --- a/clients/client-quicksight/src/models/QuickSightServiceException.ts +++ b/clients/client-quicksight/src/models/QuickSightServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-quicksight/src/models/errors.ts b/clients/client-quicksight/src/models/errors.ts index d34dfe52cd5be..93cb2fe4e6e86 100644 --- a/clients/client-quicksight/src/models/errors.ts +++ b/clients/client-quicksight/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ExceptionResourceType } from "./enums"; import { QuickSightServiceException as __BaseException } from "./QuickSightServiceException"; diff --git a/clients/client-quicksight/src/pagination/DescribeFolderPermissionsPaginator.ts b/clients/client-quicksight/src/pagination/DescribeFolderPermissionsPaginator.ts index c10d99563af98..1e503555cbb52 100644 --- a/clients/client-quicksight/src/pagination/DescribeFolderPermissionsPaginator.ts +++ b/clients/client-quicksight/src/pagination/DescribeFolderPermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFolderPermissionsCommand, diff --git a/clients/client-quicksight/src/pagination/DescribeFolderResolvedPermissionsPaginator.ts b/clients/client-quicksight/src/pagination/DescribeFolderResolvedPermissionsPaginator.ts index 77ee5c65d61f1..809faa0e36d7b 100644 --- a/clients/client-quicksight/src/pagination/DescribeFolderResolvedPermissionsPaginator.ts +++ b/clients/client-quicksight/src/pagination/DescribeFolderResolvedPermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFolderResolvedPermissionsCommand, diff --git a/clients/client-quicksight/src/pagination/Interfaces.ts b/clients/client-quicksight/src/pagination/Interfaces.ts index 2a73ab9f0281a..aa4c8e99cc074 100644 --- a/clients/client-quicksight/src/pagination/Interfaces.ts +++ b/clients/client-quicksight/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { QuickSightClient } from "../QuickSightClient"; diff --git a/clients/client-quicksight/src/pagination/ListActionConnectorsPaginator.ts b/clients/client-quicksight/src/pagination/ListActionConnectorsPaginator.ts index 23ee7f32ffd9e..738fb0a5c6fce 100644 --- a/clients/client-quicksight/src/pagination/ListActionConnectorsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListActionConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListActionConnectorsCommand, diff --git a/clients/client-quicksight/src/pagination/ListAnalysesPaginator.ts b/clients/client-quicksight/src/pagination/ListAnalysesPaginator.ts index 43a2f765079c7..afdddcc34e3c7 100644 --- a/clients/client-quicksight/src/pagination/ListAnalysesPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListAnalysesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAnalysesCommand, diff --git a/clients/client-quicksight/src/pagination/ListAssetBundleExportJobsPaginator.ts b/clients/client-quicksight/src/pagination/ListAssetBundleExportJobsPaginator.ts index f55c960147a19..fc5718d9cf74c 100644 --- a/clients/client-quicksight/src/pagination/ListAssetBundleExportJobsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListAssetBundleExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetBundleExportJobsCommand, diff --git a/clients/client-quicksight/src/pagination/ListAssetBundleImportJobsPaginator.ts b/clients/client-quicksight/src/pagination/ListAssetBundleImportJobsPaginator.ts index c8d6edfcb7b09..e9e3a559949de 100644 --- a/clients/client-quicksight/src/pagination/ListAssetBundleImportJobsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListAssetBundleImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssetBundleImportJobsCommand, diff --git a/clients/client-quicksight/src/pagination/ListBrandsPaginator.ts b/clients/client-quicksight/src/pagination/ListBrandsPaginator.ts index c137438b71394..c3c758b51baf9 100644 --- a/clients/client-quicksight/src/pagination/ListBrandsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListBrandsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBrandsCommand, ListBrandsCommandInput, ListBrandsCommandOutput } from "../commands/ListBrandsCommand"; import { QuickSightClient } from "../QuickSightClient"; diff --git a/clients/client-quicksight/src/pagination/ListCustomPermissionsPaginator.ts b/clients/client-quicksight/src/pagination/ListCustomPermissionsPaginator.ts index 3baf7e887838e..2b359bbe4f337 100644 --- a/clients/client-quicksight/src/pagination/ListCustomPermissionsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListCustomPermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomPermissionsCommand, diff --git a/clients/client-quicksight/src/pagination/ListDashboardVersionsPaginator.ts b/clients/client-quicksight/src/pagination/ListDashboardVersionsPaginator.ts index e9af684f68d6f..8664876a38320 100644 --- a/clients/client-quicksight/src/pagination/ListDashboardVersionsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListDashboardVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDashboardVersionsCommand, diff --git a/clients/client-quicksight/src/pagination/ListDashboardsPaginator.ts b/clients/client-quicksight/src/pagination/ListDashboardsPaginator.ts index 6b1c3ee40397d..f9a61505c20ed 100644 --- a/clients/client-quicksight/src/pagination/ListDashboardsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListDashboardsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDashboardsCommand, diff --git a/clients/client-quicksight/src/pagination/ListDataSetsPaginator.ts b/clients/client-quicksight/src/pagination/ListDataSetsPaginator.ts index 186e85578dee3..d97afabd865ad 100644 --- a/clients/client-quicksight/src/pagination/ListDataSetsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListDataSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSetsCommand, diff --git a/clients/client-quicksight/src/pagination/ListDataSourcesPaginator.ts b/clients/client-quicksight/src/pagination/ListDataSourcesPaginator.ts index 96438229a56d0..93386863c5e66 100644 --- a/clients/client-quicksight/src/pagination/ListDataSourcesPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListDataSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataSourcesCommand, diff --git a/clients/client-quicksight/src/pagination/ListFlowsPaginator.ts b/clients/client-quicksight/src/pagination/ListFlowsPaginator.ts index d8d55a83e453b..1fb5a7ee37724 100644 --- a/clients/client-quicksight/src/pagination/ListFlowsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListFlowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFlowsCommand, ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand"; import { QuickSightClient } from "../QuickSightClient"; diff --git a/clients/client-quicksight/src/pagination/ListFolderMembersPaginator.ts b/clients/client-quicksight/src/pagination/ListFolderMembersPaginator.ts index 3ed4039af83d1..36cb1f5c9b32c 100644 --- a/clients/client-quicksight/src/pagination/ListFolderMembersPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListFolderMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFolderMembersCommand, diff --git a/clients/client-quicksight/src/pagination/ListFoldersForResourcePaginator.ts b/clients/client-quicksight/src/pagination/ListFoldersForResourcePaginator.ts index 66f52365ada97..3421c0b8c0f91 100644 --- a/clients/client-quicksight/src/pagination/ListFoldersForResourcePaginator.ts +++ b/clients/client-quicksight/src/pagination/ListFoldersForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFoldersForResourceCommand, diff --git a/clients/client-quicksight/src/pagination/ListFoldersPaginator.ts b/clients/client-quicksight/src/pagination/ListFoldersPaginator.ts index ea3a4a7160205..6463ad97da892 100644 --- a/clients/client-quicksight/src/pagination/ListFoldersPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListFoldersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFoldersCommand, ListFoldersCommandInput, ListFoldersCommandOutput } from "../commands/ListFoldersCommand"; import { QuickSightClient } from "../QuickSightClient"; diff --git a/clients/client-quicksight/src/pagination/ListGroupMembershipsPaginator.ts b/clients/client-quicksight/src/pagination/ListGroupMembershipsPaginator.ts index bc2de7fdbabbb..e7a4768c20f13 100644 --- a/clients/client-quicksight/src/pagination/ListGroupMembershipsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListGroupMembershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupMembershipsCommand, diff --git a/clients/client-quicksight/src/pagination/ListGroupsPaginator.ts b/clients/client-quicksight/src/pagination/ListGroupsPaginator.ts index d9052d1f780f2..6b2743fe03ca4 100644 --- a/clients/client-quicksight/src/pagination/ListGroupsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand"; import { QuickSightClient } from "../QuickSightClient"; diff --git a/clients/client-quicksight/src/pagination/ListIAMPolicyAssignmentsForUserPaginator.ts b/clients/client-quicksight/src/pagination/ListIAMPolicyAssignmentsForUserPaginator.ts index 3d336dd587ba1..56a579c9d597c 100644 --- a/clients/client-quicksight/src/pagination/ListIAMPolicyAssignmentsForUserPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListIAMPolicyAssignmentsForUserPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIAMPolicyAssignmentsForUserCommand, diff --git a/clients/client-quicksight/src/pagination/ListIAMPolicyAssignmentsPaginator.ts b/clients/client-quicksight/src/pagination/ListIAMPolicyAssignmentsPaginator.ts index c45e649bd4395..6b807c8e9c01b 100644 --- a/clients/client-quicksight/src/pagination/ListIAMPolicyAssignmentsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListIAMPolicyAssignmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIAMPolicyAssignmentsCommand, diff --git a/clients/client-quicksight/src/pagination/ListIngestionsPaginator.ts b/clients/client-quicksight/src/pagination/ListIngestionsPaginator.ts index c7178b849eaae..af4805b9133f7 100644 --- a/clients/client-quicksight/src/pagination/ListIngestionsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListIngestionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIngestionsCommand, diff --git a/clients/client-quicksight/src/pagination/ListNamespacesPaginator.ts b/clients/client-quicksight/src/pagination/ListNamespacesPaginator.ts index 64a2e8b6bde74..bb9bc3c3aefbd 100644 --- a/clients/client-quicksight/src/pagination/ListNamespacesPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListNamespacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNamespacesCommand, diff --git a/clients/client-quicksight/src/pagination/ListRoleMembershipsPaginator.ts b/clients/client-quicksight/src/pagination/ListRoleMembershipsPaginator.ts index fcc880d86e6d4..7bb4f5125ec26 100644 --- a/clients/client-quicksight/src/pagination/ListRoleMembershipsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListRoleMembershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoleMembershipsCommand, diff --git a/clients/client-quicksight/src/pagination/ListTemplateAliasesPaginator.ts b/clients/client-quicksight/src/pagination/ListTemplateAliasesPaginator.ts index f9617132f492a..f54ef5fe056d0 100644 --- a/clients/client-quicksight/src/pagination/ListTemplateAliasesPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListTemplateAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplateAliasesCommand, diff --git a/clients/client-quicksight/src/pagination/ListTemplateVersionsPaginator.ts b/clients/client-quicksight/src/pagination/ListTemplateVersionsPaginator.ts index 8811b65dfffb7..1c8f332cfc5c5 100644 --- a/clients/client-quicksight/src/pagination/ListTemplateVersionsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListTemplateVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplateVersionsCommand, diff --git a/clients/client-quicksight/src/pagination/ListTemplatesPaginator.ts b/clients/client-quicksight/src/pagination/ListTemplatesPaginator.ts index 5693500715be0..8aebcbd0fa52b 100644 --- a/clients/client-quicksight/src/pagination/ListTemplatesPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplatesCommand, diff --git a/clients/client-quicksight/src/pagination/ListThemeVersionsPaginator.ts b/clients/client-quicksight/src/pagination/ListThemeVersionsPaginator.ts index acf71d568d966..53d4df3c7e49f 100644 --- a/clients/client-quicksight/src/pagination/ListThemeVersionsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListThemeVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThemeVersionsCommand, diff --git a/clients/client-quicksight/src/pagination/ListThemesPaginator.ts b/clients/client-quicksight/src/pagination/ListThemesPaginator.ts index fc3daccda16cb..92c887aeb0294 100644 --- a/clients/client-quicksight/src/pagination/ListThemesPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListThemesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListThemesCommand, ListThemesCommandInput, ListThemesCommandOutput } from "../commands/ListThemesCommand"; import { QuickSightClient } from "../QuickSightClient"; diff --git a/clients/client-quicksight/src/pagination/ListTopicsPaginator.ts b/clients/client-quicksight/src/pagination/ListTopicsPaginator.ts index a7ec00a857fb8..6453d24c943fb 100644 --- a/clients/client-quicksight/src/pagination/ListTopicsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListTopicsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTopicsCommand, ListTopicsCommandInput, ListTopicsCommandOutput } from "../commands/ListTopicsCommand"; import { QuickSightClient } from "../QuickSightClient"; diff --git a/clients/client-quicksight/src/pagination/ListUserGroupsPaginator.ts b/clients/client-quicksight/src/pagination/ListUserGroupsPaginator.ts index 180e81641596c..941fcfcc61386 100644 --- a/clients/client-quicksight/src/pagination/ListUserGroupsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListUserGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUserGroupsCommand, diff --git a/clients/client-quicksight/src/pagination/ListUsersPaginator.ts b/clients/client-quicksight/src/pagination/ListUsersPaginator.ts index 52965fb55e32e..4ac06cb5c47ac 100644 --- a/clients/client-quicksight/src/pagination/ListUsersPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; import { QuickSightClient } from "../QuickSightClient"; diff --git a/clients/client-quicksight/src/pagination/ListVPCConnectionsPaginator.ts b/clients/client-quicksight/src/pagination/ListVPCConnectionsPaginator.ts index c527834c50603..84d5de34c75c8 100644 --- a/clients/client-quicksight/src/pagination/ListVPCConnectionsPaginator.ts +++ b/clients/client-quicksight/src/pagination/ListVPCConnectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVPCConnectionsCommand, diff --git a/clients/client-quicksight/src/pagination/SearchActionConnectorsPaginator.ts b/clients/client-quicksight/src/pagination/SearchActionConnectorsPaginator.ts index 01bc024bea4c6..4c49c18e88171 100644 --- a/clients/client-quicksight/src/pagination/SearchActionConnectorsPaginator.ts +++ b/clients/client-quicksight/src/pagination/SearchActionConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchActionConnectorsCommand, diff --git a/clients/client-quicksight/src/pagination/SearchAnalysesPaginator.ts b/clients/client-quicksight/src/pagination/SearchAnalysesPaginator.ts index f739a5e1178e6..66a67a2c69617 100644 --- a/clients/client-quicksight/src/pagination/SearchAnalysesPaginator.ts +++ b/clients/client-quicksight/src/pagination/SearchAnalysesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchAnalysesCommand, diff --git a/clients/client-quicksight/src/pagination/SearchDashboardsPaginator.ts b/clients/client-quicksight/src/pagination/SearchDashboardsPaginator.ts index 64b3dad59df02..6dd4a32fabd7f 100644 --- a/clients/client-quicksight/src/pagination/SearchDashboardsPaginator.ts +++ b/clients/client-quicksight/src/pagination/SearchDashboardsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchDashboardsCommand, diff --git a/clients/client-quicksight/src/pagination/SearchDataSetsPaginator.ts b/clients/client-quicksight/src/pagination/SearchDataSetsPaginator.ts index 0152232d91de3..90c243f50146b 100644 --- a/clients/client-quicksight/src/pagination/SearchDataSetsPaginator.ts +++ b/clients/client-quicksight/src/pagination/SearchDataSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchDataSetsCommand, diff --git a/clients/client-quicksight/src/pagination/SearchDataSourcesPaginator.ts b/clients/client-quicksight/src/pagination/SearchDataSourcesPaginator.ts index a637b35083a6d..e6b1127f9a570 100644 --- a/clients/client-quicksight/src/pagination/SearchDataSourcesPaginator.ts +++ b/clients/client-quicksight/src/pagination/SearchDataSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchDataSourcesCommand, diff --git a/clients/client-quicksight/src/pagination/SearchFlowsPaginator.ts b/clients/client-quicksight/src/pagination/SearchFlowsPaginator.ts index 3d26287c06a62..84b7a7ae9372d 100644 --- a/clients/client-quicksight/src/pagination/SearchFlowsPaginator.ts +++ b/clients/client-quicksight/src/pagination/SearchFlowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchFlowsCommand, SearchFlowsCommandInput, SearchFlowsCommandOutput } from "../commands/SearchFlowsCommand"; import { QuickSightClient } from "../QuickSightClient"; diff --git a/clients/client-quicksight/src/pagination/SearchFoldersPaginator.ts b/clients/client-quicksight/src/pagination/SearchFoldersPaginator.ts index 0207980d806a4..38d09d8b12e96 100644 --- a/clients/client-quicksight/src/pagination/SearchFoldersPaginator.ts +++ b/clients/client-quicksight/src/pagination/SearchFoldersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchFoldersCommand, diff --git a/clients/client-quicksight/src/pagination/SearchGroupsPaginator.ts b/clients/client-quicksight/src/pagination/SearchGroupsPaginator.ts index 01e65e714393b..ea1044d118f7d 100644 --- a/clients/client-quicksight/src/pagination/SearchGroupsPaginator.ts +++ b/clients/client-quicksight/src/pagination/SearchGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchGroupsCommand, diff --git a/clients/client-quicksight/src/pagination/SearchTopicsPaginator.ts b/clients/client-quicksight/src/pagination/SearchTopicsPaginator.ts index 1f259252b3fba..915678fe8d1a9 100644 --- a/clients/client-quicksight/src/pagination/SearchTopicsPaginator.ts +++ b/clients/client-quicksight/src/pagination/SearchTopicsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchTopicsCommand, diff --git a/clients/client-quicksight/src/runtimeConfig.browser.ts b/clients/client-quicksight/src/runtimeConfig.browser.ts index 85223fc02aba6..c5a2c3fca2828 100644 --- a/clients/client-quicksight/src/runtimeConfig.browser.ts +++ b/clients/client-quicksight/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QuickSightClientConfig } from "./QuickSightClient"; + +import type { QuickSightClientConfig } from "./QuickSightClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-quicksight/src/runtimeConfig.native.ts b/clients/client-quicksight/src/runtimeConfig.native.ts index eda86b5c623b7..0911dfdc63eed 100644 --- a/clients/client-quicksight/src/runtimeConfig.native.ts +++ b/clients/client-quicksight/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { QuickSightClientConfig } from "./QuickSightClient"; +import type { QuickSightClientConfig } from "./QuickSightClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-quicksight/src/runtimeConfig.shared.ts b/clients/client-quicksight/src/runtimeConfig.shared.ts index 81559649f5458..325feb25e82c3 100644 --- a/clients/client-quicksight/src/runtimeConfig.shared.ts +++ b/clients/client-quicksight/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultQuickSightHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { QuickSightClientConfig } from "./QuickSightClient"; +import type { QuickSightClientConfig } from "./QuickSightClient"; /** * @internal diff --git a/clients/client-quicksight/src/runtimeConfig.ts b/clients/client-quicksight/src/runtimeConfig.ts index b08e3b0b5f9c2..9fc40f46ca48c 100644 --- a/clients/client-quicksight/src/runtimeConfig.ts +++ b/clients/client-quicksight/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QuickSightClientConfig } from "./QuickSightClient"; + +import type { QuickSightClientConfig } from "./QuickSightClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-quicksight/src/runtimeExtensions.ts b/clients/client-quicksight/src/runtimeExtensions.ts index 146f7bf9ae1af..e2f1e09f3d16b 100644 --- a/clients/client-quicksight/src/runtimeExtensions.ts +++ b/clients/client-quicksight/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { QuickSightExtensionConfiguration } from "./extensionConfiguration"; +import type { QuickSightExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-quicksight/src/schemas/schemas_0.ts b/clients/client-quicksight/src/schemas/schemas_0.ts index 84fc96641990a..253d549f78037 100644 --- a/clients/client-quicksight/src/schemas/schemas_0.ts +++ b/clients/client-quicksight/src/schemas/schemas_0.ts @@ -3425,7 +3425,7 @@ const n0 = "com.amazonaws.quicksight"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ram/package.json b/clients/client-ram/package.json index 6085493380995..90d13dab8baa0 100644 --- a/clients/client-ram/package.json +++ b/clients/client-ram/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ram/src/RAM.ts b/clients/client-ram/src/RAM.ts index 740aa365ec0db..c4ad6ea1d9bfd 100644 --- a/clients/client-ram/src/RAM.ts +++ b/clients/client-ram/src/RAM.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptResourceShareInvitationCommand, @@ -168,7 +168,7 @@ import { UpdateResourceShareCommandInput, UpdateResourceShareCommandOutput, } from "./commands/UpdateResourceShareCommand"; -import { RAMClient, RAMClientConfig } from "./RAMClient"; +import { RAMClient } from "./RAMClient"; const commands = { AcceptResourceShareInvitationCommand, diff --git a/clients/client-ram/src/RAMClient.ts b/clients/client-ram/src/RAMClient.ts index 2d16f83fd0fcd..4bb81578eebff 100644 --- a/clients/client-ram/src/RAMClient.ts +++ b/clients/client-ram/src/RAMClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRAMHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -170,7 +179,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ram/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ram/src/auth/httpAuthExtensionConfiguration.ts index 9d60277107917..583113260d526 100644 --- a/clients/client-ram/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ram/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RAMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RAMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ram/src/auth/httpAuthSchemeProvider.ts b/clients/client-ram/src/auth/httpAuthSchemeProvider.ts index f4bd7b6f00bf9..c3641280e2c59 100644 --- a/clients/client-ram/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ram/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RAMClientConfig, RAMClientResolvedConfig } from "../RAMClient"; +import { type RAMClientResolvedConfig, RAMClientConfig } from "../RAMClient"; /** * @internal diff --git a/clients/client-ram/src/commands/AcceptResourceShareInvitationCommand.ts b/clients/client-ram/src/commands/AcceptResourceShareInvitationCommand.ts index 8efa01120372e..14758c37a6bac 100644 --- a/clients/client-ram/src/commands/AcceptResourceShareInvitationCommand.ts +++ b/clients/client-ram/src/commands/AcceptResourceShareInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptResourceShareInvitationRequest, AcceptResourceShareInvitationResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { AcceptResourceShareInvitationRequest, AcceptResourceShareInvitationResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { AcceptResourceShareInvitation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/AssociateResourceShareCommand.ts b/clients/client-ram/src/commands/AssociateResourceShareCommand.ts index 587f24679a33a..dc82db9b1dd09 100644 --- a/clients/client-ram/src/commands/AssociateResourceShareCommand.ts +++ b/clients/client-ram/src/commands/AssociateResourceShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateResourceShareRequest, AssociateResourceShareResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { AssociateResourceShareRequest, AssociateResourceShareResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { AssociateResourceShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/AssociateResourceSharePermissionCommand.ts b/clients/client-ram/src/commands/AssociateResourceSharePermissionCommand.ts index fcf81f45c09d5..5923b75c69670 100644 --- a/clients/client-ram/src/commands/AssociateResourceSharePermissionCommand.ts +++ b/clients/client-ram/src/commands/AssociateResourceSharePermissionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateResourceSharePermissionRequest, AssociateResourceSharePermissionResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { + AssociateResourceSharePermissionRequest, + AssociateResourceSharePermissionResponse, +} from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { AssociateResourceSharePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/CreatePermissionCommand.ts b/clients/client-ram/src/commands/CreatePermissionCommand.ts index cff04b8f4f064..ea00f8c58e0df 100644 --- a/clients/client-ram/src/commands/CreatePermissionCommand.ts +++ b/clients/client-ram/src/commands/CreatePermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePermissionRequest, CreatePermissionResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { CreatePermissionRequest, CreatePermissionResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { CreatePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/CreatePermissionVersionCommand.ts b/clients/client-ram/src/commands/CreatePermissionVersionCommand.ts index 4e13030ef84ab..de3e0eb62aced 100644 --- a/clients/client-ram/src/commands/CreatePermissionVersionCommand.ts +++ b/clients/client-ram/src/commands/CreatePermissionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePermissionVersionRequest, CreatePermissionVersionResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { CreatePermissionVersionRequest, CreatePermissionVersionResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { CreatePermissionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/CreateResourceShareCommand.ts b/clients/client-ram/src/commands/CreateResourceShareCommand.ts index 30df82a754ff2..82812812befa1 100644 --- a/clients/client-ram/src/commands/CreateResourceShareCommand.ts +++ b/clients/client-ram/src/commands/CreateResourceShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceShareRequest, CreateResourceShareResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { CreateResourceShareRequest, CreateResourceShareResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { CreateResourceShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/DeletePermissionCommand.ts b/clients/client-ram/src/commands/DeletePermissionCommand.ts index 8c80293297596..c6815f5b391b5 100644 --- a/clients/client-ram/src/commands/DeletePermissionCommand.ts +++ b/clients/client-ram/src/commands/DeletePermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePermissionRequest, DeletePermissionResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { DeletePermissionRequest, DeletePermissionResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { DeletePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/DeletePermissionVersionCommand.ts b/clients/client-ram/src/commands/DeletePermissionVersionCommand.ts index 77e2b0b258550..e6687de1cfe56 100644 --- a/clients/client-ram/src/commands/DeletePermissionVersionCommand.ts +++ b/clients/client-ram/src/commands/DeletePermissionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePermissionVersionRequest, DeletePermissionVersionResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { DeletePermissionVersionRequest, DeletePermissionVersionResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { DeletePermissionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/DeleteResourceShareCommand.ts b/clients/client-ram/src/commands/DeleteResourceShareCommand.ts index 23be697cd6560..d16e0bbc044f1 100644 --- a/clients/client-ram/src/commands/DeleteResourceShareCommand.ts +++ b/clients/client-ram/src/commands/DeleteResourceShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceShareRequest, DeleteResourceShareResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { DeleteResourceShareRequest, DeleteResourceShareResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { DeleteResourceShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/DisassociateResourceShareCommand.ts b/clients/client-ram/src/commands/DisassociateResourceShareCommand.ts index eef418b8b31cf..777f131379c7c 100644 --- a/clients/client-ram/src/commands/DisassociateResourceShareCommand.ts +++ b/clients/client-ram/src/commands/DisassociateResourceShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateResourceShareRequest, DisassociateResourceShareResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { DisassociateResourceShareRequest, DisassociateResourceShareResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { DisassociateResourceShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/DisassociateResourceSharePermissionCommand.ts b/clients/client-ram/src/commands/DisassociateResourceSharePermissionCommand.ts index f512ffa30eb04..1bcda2fa5a738 100644 --- a/clients/client-ram/src/commands/DisassociateResourceSharePermissionCommand.ts +++ b/clients/client-ram/src/commands/DisassociateResourceSharePermissionCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateResourceSharePermissionRequest, DisassociateResourceSharePermissionResponse, } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { DisassociateResourceSharePermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/EnableSharingWithAwsOrganizationCommand.ts b/clients/client-ram/src/commands/EnableSharingWithAwsOrganizationCommand.ts index 08e3b3abc562b..742b1ae2d3d87 100644 --- a/clients/client-ram/src/commands/EnableSharingWithAwsOrganizationCommand.ts +++ b/clients/client-ram/src/commands/EnableSharingWithAwsOrganizationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableSharingWithAwsOrganizationRequest, EnableSharingWithAwsOrganizationResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { + EnableSharingWithAwsOrganizationRequest, + EnableSharingWithAwsOrganizationResponse, +} from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { EnableSharingWithAwsOrganization } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/GetPermissionCommand.ts b/clients/client-ram/src/commands/GetPermissionCommand.ts index 66fc3f42ff039..2ff30f9b343f2 100644 --- a/clients/client-ram/src/commands/GetPermissionCommand.ts +++ b/clients/client-ram/src/commands/GetPermissionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPermissionRequest, GetPermissionResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { GetPermissionRequest, GetPermissionResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { GetPermission } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/GetResourcePoliciesCommand.ts b/clients/client-ram/src/commands/GetResourcePoliciesCommand.ts index 1a3e4eae582e0..27f7e2d6d7a28 100644 --- a/clients/client-ram/src/commands/GetResourcePoliciesCommand.ts +++ b/clients/client-ram/src/commands/GetResourcePoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePoliciesRequest, GetResourcePoliciesResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { GetResourcePoliciesRequest, GetResourcePoliciesResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { GetResourcePolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/GetResourceShareAssociationsCommand.ts b/clients/client-ram/src/commands/GetResourceShareAssociationsCommand.ts index 5e5c49e0a1cd8..09a82002d89f2 100644 --- a/clients/client-ram/src/commands/GetResourceShareAssociationsCommand.ts +++ b/clients/client-ram/src/commands/GetResourceShareAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceShareAssociationsRequest, GetResourceShareAssociationsResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { GetResourceShareAssociationsRequest, GetResourceShareAssociationsResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { GetResourceShareAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/GetResourceShareInvitationsCommand.ts b/clients/client-ram/src/commands/GetResourceShareInvitationsCommand.ts index 7045fc1bae123..c207ee9570c8c 100644 --- a/clients/client-ram/src/commands/GetResourceShareInvitationsCommand.ts +++ b/clients/client-ram/src/commands/GetResourceShareInvitationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceShareInvitationsRequest, GetResourceShareInvitationsResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { GetResourceShareInvitationsRequest, GetResourceShareInvitationsResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { GetResourceShareInvitations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/GetResourceSharesCommand.ts b/clients/client-ram/src/commands/GetResourceSharesCommand.ts index 12ba088c3aec6..64d60aa91726d 100644 --- a/clients/client-ram/src/commands/GetResourceSharesCommand.ts +++ b/clients/client-ram/src/commands/GetResourceSharesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceSharesRequest, GetResourceSharesResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { GetResourceSharesRequest, GetResourceSharesResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { GetResourceShares } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ListPendingInvitationResourcesCommand.ts b/clients/client-ram/src/commands/ListPendingInvitationResourcesCommand.ts index 3a38d38d3f453..a35009fcc5345 100644 --- a/clients/client-ram/src/commands/ListPendingInvitationResourcesCommand.ts +++ b/clients/client-ram/src/commands/ListPendingInvitationResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPendingInvitationResourcesRequest, ListPendingInvitationResourcesResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { ListPendingInvitationResourcesRequest, ListPendingInvitationResourcesResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ListPendingInvitationResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ListPermissionAssociationsCommand.ts b/clients/client-ram/src/commands/ListPermissionAssociationsCommand.ts index 5a53b747f2d04..d46ca7772c7f7 100644 --- a/clients/client-ram/src/commands/ListPermissionAssociationsCommand.ts +++ b/clients/client-ram/src/commands/ListPermissionAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPermissionAssociationsRequest, ListPermissionAssociationsResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { ListPermissionAssociationsRequest, ListPermissionAssociationsResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ListPermissionAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ListPermissionVersionsCommand.ts b/clients/client-ram/src/commands/ListPermissionVersionsCommand.ts index 6b351945c4db1..82c5a280cdecf 100644 --- a/clients/client-ram/src/commands/ListPermissionVersionsCommand.ts +++ b/clients/client-ram/src/commands/ListPermissionVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPermissionVersionsRequest, ListPermissionVersionsResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { ListPermissionVersionsRequest, ListPermissionVersionsResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ListPermissionVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ListPermissionsCommand.ts b/clients/client-ram/src/commands/ListPermissionsCommand.ts index 411450a0b9499..fa95858222327 100644 --- a/clients/client-ram/src/commands/ListPermissionsCommand.ts +++ b/clients/client-ram/src/commands/ListPermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { ListPermissionsRequest, ListPermissionsResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ListPermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ListPrincipalsCommand.ts b/clients/client-ram/src/commands/ListPrincipalsCommand.ts index 1cb56cf89a591..ee8175a950e95 100644 --- a/clients/client-ram/src/commands/ListPrincipalsCommand.ts +++ b/clients/client-ram/src/commands/ListPrincipalsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPrincipalsRequest, ListPrincipalsResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { ListPrincipalsRequest, ListPrincipalsResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ListPrincipals } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ListReplacePermissionAssociationsWorkCommand.ts b/clients/client-ram/src/commands/ListReplacePermissionAssociationsWorkCommand.ts index 057f315f32e0a..43fa3c96ff77e 100644 --- a/clients/client-ram/src/commands/ListReplacePermissionAssociationsWorkCommand.ts +++ b/clients/client-ram/src/commands/ListReplacePermissionAssociationsWorkCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListReplacePermissionAssociationsWorkRequest, ListReplacePermissionAssociationsWorkResponse, } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ListReplacePermissionAssociationsWork } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ListResourceSharePermissionsCommand.ts b/clients/client-ram/src/commands/ListResourceSharePermissionsCommand.ts index 34b608d00af76..d2eea3bd70d71 100644 --- a/clients/client-ram/src/commands/ListResourceSharePermissionsCommand.ts +++ b/clients/client-ram/src/commands/ListResourceSharePermissionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceSharePermissionsRequest, ListResourceSharePermissionsResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { ListResourceSharePermissionsRequest, ListResourceSharePermissionsResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ListResourceSharePermissions } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ListResourceTypesCommand.ts b/clients/client-ram/src/commands/ListResourceTypesCommand.ts index fa1938ea4ca7e..d45b993efa66f 100644 --- a/clients/client-ram/src/commands/ListResourceTypesCommand.ts +++ b/clients/client-ram/src/commands/ListResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceTypesRequest, ListResourceTypesResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { ListResourceTypesRequest, ListResourceTypesResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ListResourceTypes } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ListResourcesCommand.ts b/clients/client-ram/src/commands/ListResourcesCommand.ts index 4aba6a069e254..c12818d363004 100644 --- a/clients/client-ram/src/commands/ListResourcesCommand.ts +++ b/clients/client-ram/src/commands/ListResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcesRequest, ListResourcesResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { ListResourcesRequest, ListResourcesResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ListResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/PromotePermissionCreatedFromPolicyCommand.ts b/clients/client-ram/src/commands/PromotePermissionCreatedFromPolicyCommand.ts index d29891dd34200..7be95aecf3b07 100644 --- a/clients/client-ram/src/commands/PromotePermissionCreatedFromPolicyCommand.ts +++ b/clients/client-ram/src/commands/PromotePermissionCreatedFromPolicyCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PromotePermissionCreatedFromPolicyRequest, PromotePermissionCreatedFromPolicyResponse, } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { PromotePermissionCreatedFromPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/PromoteResourceShareCreatedFromPolicyCommand.ts b/clients/client-ram/src/commands/PromoteResourceShareCreatedFromPolicyCommand.ts index 88b8560683438..c9d5df61448bd 100644 --- a/clients/client-ram/src/commands/PromoteResourceShareCreatedFromPolicyCommand.ts +++ b/clients/client-ram/src/commands/PromoteResourceShareCreatedFromPolicyCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PromoteResourceShareCreatedFromPolicyRequest, PromoteResourceShareCreatedFromPolicyResponse, } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { PromoteResourceShareCreatedFromPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/RejectResourceShareInvitationCommand.ts b/clients/client-ram/src/commands/RejectResourceShareInvitationCommand.ts index 35eba97a05857..59ca7350f91fb 100644 --- a/clients/client-ram/src/commands/RejectResourceShareInvitationCommand.ts +++ b/clients/client-ram/src/commands/RejectResourceShareInvitationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectResourceShareInvitationRequest, RejectResourceShareInvitationResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { RejectResourceShareInvitationRequest, RejectResourceShareInvitationResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { RejectResourceShareInvitation } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/ReplacePermissionAssociationsCommand.ts b/clients/client-ram/src/commands/ReplacePermissionAssociationsCommand.ts index f05cc2ad1db68..5606e0c31e325 100644 --- a/clients/client-ram/src/commands/ReplacePermissionAssociationsCommand.ts +++ b/clients/client-ram/src/commands/ReplacePermissionAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplacePermissionAssociationsRequest, ReplacePermissionAssociationsResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { ReplacePermissionAssociationsRequest, ReplacePermissionAssociationsResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { ReplacePermissionAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/SetDefaultPermissionVersionCommand.ts b/clients/client-ram/src/commands/SetDefaultPermissionVersionCommand.ts index 51f51d513ee7b..27bd1d4268c26 100644 --- a/clients/client-ram/src/commands/SetDefaultPermissionVersionCommand.ts +++ b/clients/client-ram/src/commands/SetDefaultPermissionVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetDefaultPermissionVersionRequest, SetDefaultPermissionVersionResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { SetDefaultPermissionVersionRequest, SetDefaultPermissionVersionResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { SetDefaultPermissionVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/TagResourceCommand.ts b/clients/client-ram/src/commands/TagResourceCommand.ts index 6903482648de0..0d43ffc2ecb4c 100644 --- a/clients/client-ram/src/commands/TagResourceCommand.ts +++ b/clients/client-ram/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/UntagResourceCommand.ts b/clients/client-ram/src/commands/UntagResourceCommand.ts index adddc2656883f..8ac0584d2178e 100644 --- a/clients/client-ram/src/commands/UntagResourceCommand.ts +++ b/clients/client-ram/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/commands/UpdateResourceShareCommand.ts b/clients/client-ram/src/commands/UpdateResourceShareCommand.ts index 41c1b79a93a39..15dc98f5b6d71 100644 --- a/clients/client-ram/src/commands/UpdateResourceShareCommand.ts +++ b/clients/client-ram/src/commands/UpdateResourceShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResourceShareRequest, UpdateResourceShareResponse } from "../models/models_0"; -import { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; +import type { UpdateResourceShareRequest, UpdateResourceShareResponse } from "../models/models_0"; +import type { RAMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RAMClient"; import { UpdateResourceShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-ram/src/endpoint/EndpointParameters.ts b/clients/client-ram/src/endpoint/EndpointParameters.ts index 456e36d0869ae..290826ee2b22e 100644 --- a/clients/client-ram/src/endpoint/EndpointParameters.ts +++ b/clients/client-ram/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ram/src/endpoint/endpointResolver.ts b/clients/client-ram/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ram/src/endpoint/endpointResolver.ts +++ b/clients/client-ram/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ram/src/extensionConfiguration.ts b/clients/client-ram/src/extensionConfiguration.ts index 791501f9941b3..1816b8a718619 100644 --- a/clients/client-ram/src/extensionConfiguration.ts +++ b/clients/client-ram/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ram/src/models/RAMServiceException.ts b/clients/client-ram/src/models/RAMServiceException.ts index 88a2403e20c08..acec2d2ecea42 100644 --- a/clients/client-ram/src/models/RAMServiceException.ts +++ b/clients/client-ram/src/models/RAMServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ram/src/models/errors.ts b/clients/client-ram/src/models/errors.ts index 3532311a9b784..d0c3febc96ddb 100644 --- a/clients/client-ram/src/models/errors.ts +++ b/clients/client-ram/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RAMServiceException as __BaseException } from "./RAMServiceException"; diff --git a/clients/client-ram/src/pagination/GetResourcePoliciesPaginator.ts b/clients/client-ram/src/pagination/GetResourcePoliciesPaginator.ts index 74fe843607909..664e63bcfc83a 100644 --- a/clients/client-ram/src/pagination/GetResourcePoliciesPaginator.ts +++ b/clients/client-ram/src/pagination/GetResourcePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourcePoliciesCommand, diff --git a/clients/client-ram/src/pagination/GetResourceShareAssociationsPaginator.ts b/clients/client-ram/src/pagination/GetResourceShareAssociationsPaginator.ts index 97e3ccc1ca3f8..1c50f18fd54dc 100644 --- a/clients/client-ram/src/pagination/GetResourceShareAssociationsPaginator.ts +++ b/clients/client-ram/src/pagination/GetResourceShareAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourceShareAssociationsCommand, diff --git a/clients/client-ram/src/pagination/GetResourceShareInvitationsPaginator.ts b/clients/client-ram/src/pagination/GetResourceShareInvitationsPaginator.ts index c3bc54cb37448..492764bdba32d 100644 --- a/clients/client-ram/src/pagination/GetResourceShareInvitationsPaginator.ts +++ b/clients/client-ram/src/pagination/GetResourceShareInvitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourceShareInvitationsCommand, diff --git a/clients/client-ram/src/pagination/GetResourceSharesPaginator.ts b/clients/client-ram/src/pagination/GetResourceSharesPaginator.ts index d4bcf5a95fc19..fa215303b50e3 100644 --- a/clients/client-ram/src/pagination/GetResourceSharesPaginator.ts +++ b/clients/client-ram/src/pagination/GetResourceSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourceSharesCommand, diff --git a/clients/client-ram/src/pagination/Interfaces.ts b/clients/client-ram/src/pagination/Interfaces.ts index d22774430f26d..cb329e2248e92 100644 --- a/clients/client-ram/src/pagination/Interfaces.ts +++ b/clients/client-ram/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RAMClient } from "../RAMClient"; diff --git a/clients/client-ram/src/pagination/ListPendingInvitationResourcesPaginator.ts b/clients/client-ram/src/pagination/ListPendingInvitationResourcesPaginator.ts index e89ba629679c6..ede54cccf6bf2 100644 --- a/clients/client-ram/src/pagination/ListPendingInvitationResourcesPaginator.ts +++ b/clients/client-ram/src/pagination/ListPendingInvitationResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPendingInvitationResourcesCommand, diff --git a/clients/client-ram/src/pagination/ListPermissionAssociationsPaginator.ts b/clients/client-ram/src/pagination/ListPermissionAssociationsPaginator.ts index f64de0180e7c2..1385f4d94c2be 100644 --- a/clients/client-ram/src/pagination/ListPermissionAssociationsPaginator.ts +++ b/clients/client-ram/src/pagination/ListPermissionAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPermissionAssociationsCommand, diff --git a/clients/client-ram/src/pagination/ListPermissionVersionsPaginator.ts b/clients/client-ram/src/pagination/ListPermissionVersionsPaginator.ts index 2568cb5edbf33..f644a4773e9a7 100644 --- a/clients/client-ram/src/pagination/ListPermissionVersionsPaginator.ts +++ b/clients/client-ram/src/pagination/ListPermissionVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPermissionVersionsCommand, diff --git a/clients/client-ram/src/pagination/ListPermissionsPaginator.ts b/clients/client-ram/src/pagination/ListPermissionsPaginator.ts index 02fa1f628bf27..df83a36eb1254 100644 --- a/clients/client-ram/src/pagination/ListPermissionsPaginator.ts +++ b/clients/client-ram/src/pagination/ListPermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPermissionsCommand, diff --git a/clients/client-ram/src/pagination/ListPrincipalsPaginator.ts b/clients/client-ram/src/pagination/ListPrincipalsPaginator.ts index ef979c94a15c8..8b8574828ac66 100644 --- a/clients/client-ram/src/pagination/ListPrincipalsPaginator.ts +++ b/clients/client-ram/src/pagination/ListPrincipalsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPrincipalsCommand, diff --git a/clients/client-ram/src/pagination/ListReplacePermissionAssociationsWorkPaginator.ts b/clients/client-ram/src/pagination/ListReplacePermissionAssociationsWorkPaginator.ts index 01e87aa8a9776..1b5bf414bc1c4 100644 --- a/clients/client-ram/src/pagination/ListReplacePermissionAssociationsWorkPaginator.ts +++ b/clients/client-ram/src/pagination/ListReplacePermissionAssociationsWorkPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReplacePermissionAssociationsWorkCommand, diff --git a/clients/client-ram/src/pagination/ListResourceSharePermissionsPaginator.ts b/clients/client-ram/src/pagination/ListResourceSharePermissionsPaginator.ts index ad52f70314a75..3f23b7a6b008d 100644 --- a/clients/client-ram/src/pagination/ListResourceSharePermissionsPaginator.ts +++ b/clients/client-ram/src/pagination/ListResourceSharePermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceSharePermissionsCommand, diff --git a/clients/client-ram/src/pagination/ListResourceTypesPaginator.ts b/clients/client-ram/src/pagination/ListResourceTypesPaginator.ts index afcf0e6544660..e844d43bd7fbc 100644 --- a/clients/client-ram/src/pagination/ListResourceTypesPaginator.ts +++ b/clients/client-ram/src/pagination/ListResourceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceTypesCommand, diff --git a/clients/client-ram/src/pagination/ListResourcesPaginator.ts b/clients/client-ram/src/pagination/ListResourcesPaginator.ts index b8e75a6260a82..7ff3da43298da 100644 --- a/clients/client-ram/src/pagination/ListResourcesPaginator.ts +++ b/clients/client-ram/src/pagination/ListResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourcesCommand, diff --git a/clients/client-ram/src/runtimeConfig.browser.ts b/clients/client-ram/src/runtimeConfig.browser.ts index 928da33fe595a..52976659a9517 100644 --- a/clients/client-ram/src/runtimeConfig.browser.ts +++ b/clients/client-ram/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RAMClientConfig } from "./RAMClient"; + +import type { RAMClientConfig } from "./RAMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-ram/src/runtimeConfig.native.ts b/clients/client-ram/src/runtimeConfig.native.ts index 7530777bc0384..dada43d7b7755 100644 --- a/clients/client-ram/src/runtimeConfig.native.ts +++ b/clients/client-ram/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RAMClientConfig } from "./RAMClient"; +import type { RAMClientConfig } from "./RAMClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-ram/src/runtimeConfig.shared.ts b/clients/client-ram/src/runtimeConfig.shared.ts index 8a65a8b547743..33874460b823a 100644 --- a/clients/client-ram/src/runtimeConfig.shared.ts +++ b/clients/client-ram/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRAMHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RAMClientConfig } from "./RAMClient"; +import type { RAMClientConfig } from "./RAMClient"; /** * @internal diff --git a/clients/client-ram/src/runtimeConfig.ts b/clients/client-ram/src/runtimeConfig.ts index 38345e8492785..d402dc5c47446 100644 --- a/clients/client-ram/src/runtimeConfig.ts +++ b/clients/client-ram/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RAMClientConfig } from "./RAMClient"; + +import type { RAMClientConfig } from "./RAMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-ram/src/runtimeExtensions.ts b/clients/client-ram/src/runtimeExtensions.ts index 594a3837bf10f..bdb8c2a5e30ce 100644 --- a/clients/client-ram/src/runtimeExtensions.ts +++ b/clients/client-ram/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RAMExtensionConfiguration } from "./extensionConfiguration"; +import type { RAMExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ram/src/schemas/schemas_0.ts b/clients/client-ram/src/schemas/schemas_0.ts index e4dbe8930d6a7..59a09fa43008e 100644 --- a/clients/client-ram/src/schemas/schemas_0.ts +++ b/clients/client-ram/src/schemas/schemas_0.ts @@ -248,7 +248,7 @@ const n0 = "com.amazonaws.ram"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { IdempotentParameterMismatchException as __IdempotentParameterMismatchException, diff --git a/clients/client-rbin/package.json b/clients/client-rbin/package.json index ef8c8eeedae07..d081f85347b76 100644 --- a/clients/client-rbin/package.json +++ b/clients/client-rbin/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-rbin/src/Rbin.ts b/clients/client-rbin/src/Rbin.ts index 744e724cebe45..48bcb90610eef 100644 --- a/clients/client-rbin/src/Rbin.ts +++ b/clients/client-rbin/src/Rbin.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateRuleCommand, CreateRuleCommandInput, CreateRuleCommandOutput } from "./commands/CreateRuleCommand"; import { DeleteRuleCommand, DeleteRuleCommandInput, DeleteRuleCommandOutput } from "./commands/DeleteRuleCommand"; @@ -20,7 +20,7 @@ import { UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdateRuleCommand, UpdateRuleCommandInput, UpdateRuleCommandOutput } from "./commands/UpdateRuleCommand"; -import { RbinClient, RbinClientConfig } from "./RbinClient"; +import { RbinClient } from "./RbinClient"; const commands = { CreateRuleCommand, diff --git a/clients/client-rbin/src/RbinClient.ts b/clients/client-rbin/src/RbinClient.ts index 7fb66e94def45..c74488e2b267e 100644 --- a/clients/client-rbin/src/RbinClient.ts +++ b/clients/client-rbin/src/RbinClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRbinHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateRuleCommandInput, CreateRuleCommandOutput } from "./commands/CreateRuleCommand"; @@ -77,7 +86,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-rbin/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-rbin/src/auth/httpAuthExtensionConfiguration.ts index aacbf9552ca43..ecba4987e6dc3 100644 --- a/clients/client-rbin/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-rbin/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RbinHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RbinHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-rbin/src/auth/httpAuthSchemeProvider.ts b/clients/client-rbin/src/auth/httpAuthSchemeProvider.ts index 01ccf983bf38a..f6f6c90171d5c 100644 --- a/clients/client-rbin/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-rbin/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RbinClientConfig, RbinClientResolvedConfig } from "../RbinClient"; +import { type RbinClientResolvedConfig, RbinClientConfig } from "../RbinClient"; /** * @internal diff --git a/clients/client-rbin/src/commands/CreateRuleCommand.ts b/clients/client-rbin/src/commands/CreateRuleCommand.ts index b75f657bc8d9f..ef1bff2062bb6 100644 --- a/clients/client-rbin/src/commands/CreateRuleCommand.ts +++ b/clients/client-rbin/src/commands/CreateRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { CreateRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/commands/DeleteRuleCommand.ts b/clients/client-rbin/src/commands/DeleteRuleCommand.ts index c78ea5928557b..a0012827b4f15 100644 --- a/clients/client-rbin/src/commands/DeleteRuleCommand.ts +++ b/clients/client-rbin/src/commands/DeleteRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { DeleteRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/commands/GetRuleCommand.ts b/clients/client-rbin/src/commands/GetRuleCommand.ts index 67766e358305c..66d1185e9c075 100644 --- a/clients/client-rbin/src/commands/GetRuleCommand.ts +++ b/clients/client-rbin/src/commands/GetRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRuleRequest, GetRuleResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { GetRuleRequest, GetRuleResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { GetRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/commands/ListRulesCommand.ts b/clients/client-rbin/src/commands/ListRulesCommand.ts index 3491c382bcbb7..8147e11758710 100644 --- a/clients/client-rbin/src/commands/ListRulesCommand.ts +++ b/clients/client-rbin/src/commands/ListRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRulesRequest, ListRulesResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { ListRulesRequest, ListRulesResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { ListRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/commands/ListTagsForResourceCommand.ts b/clients/client-rbin/src/commands/ListTagsForResourceCommand.ts index 006ad1e6665ff..2b4607d9d2dff 100644 --- a/clients/client-rbin/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rbin/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/commands/LockRuleCommand.ts b/clients/client-rbin/src/commands/LockRuleCommand.ts index 696af3e97cc90..7a2952d3ede8b 100644 --- a/clients/client-rbin/src/commands/LockRuleCommand.ts +++ b/clients/client-rbin/src/commands/LockRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LockRuleRequest, LockRuleResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { LockRuleRequest, LockRuleResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { LockRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/commands/TagResourceCommand.ts b/clients/client-rbin/src/commands/TagResourceCommand.ts index 567603c0cf38f..f418c1b4e71fd 100644 --- a/clients/client-rbin/src/commands/TagResourceCommand.ts +++ b/clients/client-rbin/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/commands/UnlockRuleCommand.ts b/clients/client-rbin/src/commands/UnlockRuleCommand.ts index d37cca256b36e..e7839af8f827e 100644 --- a/clients/client-rbin/src/commands/UnlockRuleCommand.ts +++ b/clients/client-rbin/src/commands/UnlockRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnlockRuleRequest, UnlockRuleResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { UnlockRuleRequest, UnlockRuleResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { UnlockRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/commands/UntagResourceCommand.ts b/clients/client-rbin/src/commands/UntagResourceCommand.ts index b8b17d0b3e31a..9b109c89deae7 100644 --- a/clients/client-rbin/src/commands/UntagResourceCommand.ts +++ b/clients/client-rbin/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/commands/UpdateRuleCommand.ts b/clients/client-rbin/src/commands/UpdateRuleCommand.ts index ea186fff0ffff..f1013fa672c2c 100644 --- a/clients/client-rbin/src/commands/UpdateRuleCommand.ts +++ b/clients/client-rbin/src/commands/UpdateRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0"; -import { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; +import type { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0"; +import type { RbinClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RbinClient"; import { UpdateRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-rbin/src/endpoint/EndpointParameters.ts b/clients/client-rbin/src/endpoint/EndpointParameters.ts index e47e020a29d75..2570a1e21357d 100644 --- a/clients/client-rbin/src/endpoint/EndpointParameters.ts +++ b/clients/client-rbin/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-rbin/src/endpoint/endpointResolver.ts b/clients/client-rbin/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-rbin/src/endpoint/endpointResolver.ts +++ b/clients/client-rbin/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-rbin/src/extensionConfiguration.ts b/clients/client-rbin/src/extensionConfiguration.ts index e66fa3c8d106a..d931b04551bbe 100644 --- a/clients/client-rbin/src/extensionConfiguration.ts +++ b/clients/client-rbin/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-rbin/src/models/RbinServiceException.ts b/clients/client-rbin/src/models/RbinServiceException.ts index 3019b2f8a8c72..146d09f11bcd7 100644 --- a/clients/client-rbin/src/models/RbinServiceException.ts +++ b/clients/client-rbin/src/models/RbinServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-rbin/src/models/errors.ts b/clients/client-rbin/src/models/errors.ts index 4f24ed12aec53..dec005087cb4d 100644 --- a/clients/client-rbin/src/models/errors.ts +++ b/clients/client-rbin/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConflictExceptionReason, diff --git a/clients/client-rbin/src/pagination/Interfaces.ts b/clients/client-rbin/src/pagination/Interfaces.ts index bd116643ff783..c1431dcfcccca 100644 --- a/clients/client-rbin/src/pagination/Interfaces.ts +++ b/clients/client-rbin/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RbinClient } from "../RbinClient"; diff --git a/clients/client-rbin/src/pagination/ListRulesPaginator.ts b/clients/client-rbin/src/pagination/ListRulesPaginator.ts index f234600135678..d276ba75dc56d 100644 --- a/clients/client-rbin/src/pagination/ListRulesPaginator.ts +++ b/clients/client-rbin/src/pagination/ListRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRulesCommand, ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand"; import { RbinClient } from "../RbinClient"; diff --git a/clients/client-rbin/src/runtimeConfig.browser.ts b/clients/client-rbin/src/runtimeConfig.browser.ts index bab4761f9564f..0d3d73e6cc5fd 100644 --- a/clients/client-rbin/src/runtimeConfig.browser.ts +++ b/clients/client-rbin/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RbinClientConfig } from "./RbinClient"; + +import type { RbinClientConfig } from "./RbinClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-rbin/src/runtimeConfig.native.ts b/clients/client-rbin/src/runtimeConfig.native.ts index 0dc194782143d..64eb34111195d 100644 --- a/clients/client-rbin/src/runtimeConfig.native.ts +++ b/clients/client-rbin/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RbinClientConfig } from "./RbinClient"; +import type { RbinClientConfig } from "./RbinClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-rbin/src/runtimeConfig.shared.ts b/clients/client-rbin/src/runtimeConfig.shared.ts index 44bdaca1da71f..2a23136815be9 100644 --- a/clients/client-rbin/src/runtimeConfig.shared.ts +++ b/clients/client-rbin/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRbinHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RbinClientConfig } from "./RbinClient"; +import type { RbinClientConfig } from "./RbinClient"; /** * @internal diff --git a/clients/client-rbin/src/runtimeConfig.ts b/clients/client-rbin/src/runtimeConfig.ts index cd0e0dfa596bd..89a39ca7974fa 100644 --- a/clients/client-rbin/src/runtimeConfig.ts +++ b/clients/client-rbin/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RbinClientConfig } from "./RbinClient"; + +import type { RbinClientConfig } from "./RbinClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-rbin/src/runtimeExtensions.ts b/clients/client-rbin/src/runtimeExtensions.ts index e2cc27935ce69..c2e19af2c5c16 100644 --- a/clients/client-rbin/src/runtimeExtensions.ts +++ b/clients/client-rbin/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RbinExtensionConfiguration } from "./extensionConfiguration"; +import type { RbinExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-rbin/src/schemas/schemas_0.ts b/clients/client-rbin/src/schemas/schemas_0.ts index a0e109090cfc8..f63cbd21dbfa5 100644 --- a/clients/client-rbin/src/schemas/schemas_0.ts +++ b/clients/client-rbin/src/schemas/schemas_0.ts @@ -78,7 +78,7 @@ const n0 = "com.amazonaws.rbin"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ConflictException as __ConflictException, diff --git a/clients/client-rds-data/package.json b/clients/client-rds-data/package.json index 0bc257e2a4659..e24dfcd584313 100644 --- a/clients/client-rds-data/package.json +++ b/clients/client-rds-data/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-rds-data/src/RDSData.ts b/clients/client-rds-data/src/RDSData.ts index 62439b9b1c646..163c235ae631a 100644 --- a/clients/client-rds-data/src/RDSData.ts +++ b/clients/client-rds-data/src/RDSData.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchExecuteStatementCommand, @@ -28,7 +28,7 @@ import { RollbackTransactionCommandInput, RollbackTransactionCommandOutput, } from "./commands/RollbackTransactionCommand"; -import { RDSDataClient, RDSDataClientConfig } from "./RDSDataClient"; +import { RDSDataClient } from "./RDSDataClient"; const commands = { BatchExecuteStatementCommand, diff --git a/clients/client-rds-data/src/RDSDataClient.ts b/clients/client-rds-data/src/RDSDataClient.ts index 23046b3b61b9c..e29a1e42ea030 100644 --- a/clients/client-rds-data/src/RDSDataClient.ts +++ b/clients/client-rds-data/src/RDSDataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRDSDataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -76,7 +85,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-rds-data/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-rds-data/src/auth/httpAuthExtensionConfiguration.ts index ed995c6cb2bea..b5fd16a1ef6c5 100644 --- a/clients/client-rds-data/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-rds-data/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RDSDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RDSDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-rds-data/src/auth/httpAuthSchemeProvider.ts b/clients/client-rds-data/src/auth/httpAuthSchemeProvider.ts index c8e41862d5f0a..4aad6ad8c9abe 100644 --- a/clients/client-rds-data/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-rds-data/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RDSDataClientConfig, RDSDataClientResolvedConfig } from "../RDSDataClient"; +import { type RDSDataClientResolvedConfig, RDSDataClientConfig } from "../RDSDataClient"; /** * @internal diff --git a/clients/client-rds-data/src/commands/BatchExecuteStatementCommand.ts b/clients/client-rds-data/src/commands/BatchExecuteStatementCommand.ts index 398385b30813e..bc03062298f36 100644 --- a/clients/client-rds-data/src/commands/BatchExecuteStatementCommand.ts +++ b/clients/client-rds-data/src/commands/BatchExecuteStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchExecuteStatementRequest, BatchExecuteStatementResponse } from "../models/models_0"; -import { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; +import type { BatchExecuteStatementRequest, BatchExecuteStatementResponse } from "../models/models_0"; +import type { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; import { BatchExecuteStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds-data/src/commands/BeginTransactionCommand.ts b/clients/client-rds-data/src/commands/BeginTransactionCommand.ts index 2981417487752..cf8c8a36be327 100644 --- a/clients/client-rds-data/src/commands/BeginTransactionCommand.ts +++ b/clients/client-rds-data/src/commands/BeginTransactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BeginTransactionRequest, BeginTransactionResponse } from "../models/models_0"; -import { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; +import type { BeginTransactionRequest, BeginTransactionResponse } from "../models/models_0"; +import type { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; import { BeginTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds-data/src/commands/CommitTransactionCommand.ts b/clients/client-rds-data/src/commands/CommitTransactionCommand.ts index 51bbfa31cb077..e690684b95535 100644 --- a/clients/client-rds-data/src/commands/CommitTransactionCommand.ts +++ b/clients/client-rds-data/src/commands/CommitTransactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CommitTransactionRequest, CommitTransactionResponse } from "../models/models_0"; -import { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; +import type { CommitTransactionRequest, CommitTransactionResponse } from "../models/models_0"; +import type { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; import { CommitTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds-data/src/commands/ExecuteSqlCommand.ts b/clients/client-rds-data/src/commands/ExecuteSqlCommand.ts index 68026220d23ac..15b1cbbd9aa70 100644 --- a/clients/client-rds-data/src/commands/ExecuteSqlCommand.ts +++ b/clients/client-rds-data/src/commands/ExecuteSqlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteSqlRequest, ExecuteSqlResponse } from "../models/models_0"; -import { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; +import type { ExecuteSqlRequest, ExecuteSqlResponse } from "../models/models_0"; +import type { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; import { ExecuteSql } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds-data/src/commands/ExecuteStatementCommand.ts b/clients/client-rds-data/src/commands/ExecuteStatementCommand.ts index cfb1acb1c299a..4894dbc7fca28 100644 --- a/clients/client-rds-data/src/commands/ExecuteStatementCommand.ts +++ b/clients/client-rds-data/src/commands/ExecuteStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteStatementRequest, ExecuteStatementResponse } from "../models/models_0"; -import { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; +import type { ExecuteStatementRequest, ExecuteStatementResponse } from "../models/models_0"; +import type { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; import { ExecuteStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds-data/src/commands/RollbackTransactionCommand.ts b/clients/client-rds-data/src/commands/RollbackTransactionCommand.ts index c29f165101740..314e4d4b3e902 100644 --- a/clients/client-rds-data/src/commands/RollbackTransactionCommand.ts +++ b/clients/client-rds-data/src/commands/RollbackTransactionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RollbackTransactionRequest, RollbackTransactionResponse } from "../models/models_0"; -import { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; +import type { RollbackTransactionRequest, RollbackTransactionResponse } from "../models/models_0"; +import type { RDSDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSDataClient"; import { RollbackTransaction } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds-data/src/endpoint/EndpointParameters.ts b/clients/client-rds-data/src/endpoint/EndpointParameters.ts index 8f064c4d48b33..31a660c486563 100644 --- a/clients/client-rds-data/src/endpoint/EndpointParameters.ts +++ b/clients/client-rds-data/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-rds-data/src/endpoint/endpointResolver.ts b/clients/client-rds-data/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-rds-data/src/endpoint/endpointResolver.ts +++ b/clients/client-rds-data/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-rds-data/src/extensionConfiguration.ts b/clients/client-rds-data/src/extensionConfiguration.ts index fb48cbb9d965d..9674b20d260f2 100644 --- a/clients/client-rds-data/src/extensionConfiguration.ts +++ b/clients/client-rds-data/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-rds-data/src/models/RDSDataServiceException.ts b/clients/client-rds-data/src/models/RDSDataServiceException.ts index c3ddca2d4b649..d1bb497588759 100644 --- a/clients/client-rds-data/src/models/RDSDataServiceException.ts +++ b/clients/client-rds-data/src/models/RDSDataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-rds-data/src/models/errors.ts b/clients/client-rds-data/src/models/errors.ts index 847144157917c..3b952954642c7 100644 --- a/clients/client-rds-data/src/models/errors.ts +++ b/clients/client-rds-data/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RDSDataServiceException as __BaseException } from "./RDSDataServiceException"; diff --git a/clients/client-rds-data/src/runtimeConfig.browser.ts b/clients/client-rds-data/src/runtimeConfig.browser.ts index 2ac4293e05e16..c68f029406a63 100644 --- a/clients/client-rds-data/src/runtimeConfig.browser.ts +++ b/clients/client-rds-data/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RDSDataClientConfig } from "./RDSDataClient"; + +import type { RDSDataClientConfig } from "./RDSDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-rds-data/src/runtimeConfig.native.ts b/clients/client-rds-data/src/runtimeConfig.native.ts index 6ff756e923287..d63060cafe13e 100644 --- a/clients/client-rds-data/src/runtimeConfig.native.ts +++ b/clients/client-rds-data/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RDSDataClientConfig } from "./RDSDataClient"; +import type { RDSDataClientConfig } from "./RDSDataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-rds-data/src/runtimeConfig.shared.ts b/clients/client-rds-data/src/runtimeConfig.shared.ts index 1aa798e24aa6b..759e3ba6f5f06 100644 --- a/clients/client-rds-data/src/runtimeConfig.shared.ts +++ b/clients/client-rds-data/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRDSDataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RDSDataClientConfig } from "./RDSDataClient"; +import type { RDSDataClientConfig } from "./RDSDataClient"; /** * @internal diff --git a/clients/client-rds-data/src/runtimeConfig.ts b/clients/client-rds-data/src/runtimeConfig.ts index 14c3d6167f7d1..7a0626aa7ed35 100644 --- a/clients/client-rds-data/src/runtimeConfig.ts +++ b/clients/client-rds-data/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RDSDataClientConfig } from "./RDSDataClient"; + +import type { RDSDataClientConfig } from "./RDSDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-rds-data/src/runtimeExtensions.ts b/clients/client-rds-data/src/runtimeExtensions.ts index a5ce5ee34ce0e..59d694c74aa34 100644 --- a/clients/client-rds-data/src/runtimeExtensions.ts +++ b/clients/client-rds-data/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RDSDataExtensionConfiguration } from "./extensionConfiguration"; +import type { RDSDataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-rds-data/src/schemas/schemas_0.ts b/clients/client-rds-data/src/schemas/schemas_0.ts index a2192dc55f226..859d57d38aad0 100644 --- a/clients/client-rds-data/src/schemas/schemas_0.ts +++ b/clients/client-rds-data/src/schemas/schemas_0.ts @@ -131,7 +131,7 @@ const n0 = "com.amazonaws.rdsdata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-rds/package.json b/clients/client-rds/package.json index e1d62e0895b1b..9349757d92a6e 100644 --- a/clients/client-rds/package.json +++ b/clients/client-rds/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-rds/src/RDS.ts b/clients/client-rds/src/RDS.ts index 698a7fdd4ccfc..622179fc75e7b 100644 --- a/clients/client-rds/src/RDS.ts +++ b/clients/client-rds/src/RDS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddRoleToDBClusterCommand, @@ -817,7 +817,7 @@ import { SwitchoverReadReplicaCommandInput, SwitchoverReadReplicaCommandOutput, } from "./commands/SwitchoverReadReplicaCommand"; -import { RDSClient, RDSClientConfig } from "./RDSClient"; +import { RDSClient } from "./RDSClient"; const commands = { AddRoleToDBClusterCommand, diff --git a/clients/client-rds/src/RDSClient.ts b/clients/client-rds/src/RDSClient.ts index 231a7aadeb306..9a277a7967e14 100644 --- a/clients/client-rds/src/RDSClient.ts +++ b/clients/client-rds/src/RDSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRDSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddRoleToDBClusterCommandInput, AddRoleToDBClusterCommandOutput } from "./commands/AddRoleToDBClusterCommand"; @@ -584,7 +593,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-rds/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-rds/src/auth/httpAuthExtensionConfiguration.ts index b94dd61a7e1e1..c501de0796c27 100644 --- a/clients/client-rds/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-rds/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RDSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RDSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-rds/src/auth/httpAuthSchemeProvider.ts b/clients/client-rds/src/auth/httpAuthSchemeProvider.ts index 33cd1a7de7a23..73036330a94af 100644 --- a/clients/client-rds/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-rds/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RDSClientConfig, RDSClientResolvedConfig } from "../RDSClient"; +import { type RDSClientResolvedConfig, RDSClientConfig } from "../RDSClient"; /** * @internal diff --git a/clients/client-rds/src/commands/AddRoleToDBClusterCommand.ts b/clients/client-rds/src/commands/AddRoleToDBClusterCommand.ts index e2b76601639b2..6098ef5547a5a 100644 --- a/clients/client-rds/src/commands/AddRoleToDBClusterCommand.ts +++ b/clients/client-rds/src/commands/AddRoleToDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddRoleToDBClusterMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { AddRoleToDBClusterMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { AddRoleToDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/AddRoleToDBInstanceCommand.ts b/clients/client-rds/src/commands/AddRoleToDBInstanceCommand.ts index ddf648c25c65b..ca56dd2f04292 100644 --- a/clients/client-rds/src/commands/AddRoleToDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/AddRoleToDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddRoleToDBInstanceMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { AddRoleToDBInstanceMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { AddRoleToDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/AddSourceIdentifierToSubscriptionCommand.ts b/clients/client-rds/src/commands/AddSourceIdentifierToSubscriptionCommand.ts index ce7a1e6ba1a2c..73155330ee16c 100644 --- a/clients/client-rds/src/commands/AddSourceIdentifierToSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/AddSourceIdentifierToSubscriptionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddSourceIdentifierToSubscriptionMessage, AddSourceIdentifierToSubscriptionResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { + AddSourceIdentifierToSubscriptionMessage, + AddSourceIdentifierToSubscriptionResult, +} from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { AddSourceIdentifierToSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/AddTagsToResourceCommand.ts b/clients/client-rds/src/commands/AddTagsToResourceCommand.ts index 5f1a42e6316c0..ece8175c7cf0e 100644 --- a/clients/client-rds/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-rds/src/commands/AddTagsToResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToResourceMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { AddTagsToResourceMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { AddTagsToResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ApplyPendingMaintenanceActionCommand.ts b/clients/client-rds/src/commands/ApplyPendingMaintenanceActionCommand.ts index b51d677b97800..1b33523bb945b 100644 --- a/clients/client-rds/src/commands/ApplyPendingMaintenanceActionCommand.ts +++ b/clients/client-rds/src/commands/ApplyPendingMaintenanceActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ApplyPendingMaintenanceActionMessage, ApplyPendingMaintenanceActionResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ApplyPendingMaintenanceActionMessage, ApplyPendingMaintenanceActionResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ApplyPendingMaintenanceAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/AuthorizeDBSecurityGroupIngressCommand.ts b/clients/client-rds/src/commands/AuthorizeDBSecurityGroupIngressCommand.ts index fedfb5d3ec9f0..220380e295d9a 100644 --- a/clients/client-rds/src/commands/AuthorizeDBSecurityGroupIngressCommand.ts +++ b/clients/client-rds/src/commands/AuthorizeDBSecurityGroupIngressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeDBSecurityGroupIngressMessage, AuthorizeDBSecurityGroupIngressResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { AuthorizeDBSecurityGroupIngressMessage, AuthorizeDBSecurityGroupIngressResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { AuthorizeDBSecurityGroupIngress } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/BacktrackDBClusterCommand.ts b/clients/client-rds/src/commands/BacktrackDBClusterCommand.ts index f9df94647466f..9fb66b77461d1 100644 --- a/clients/client-rds/src/commands/BacktrackDBClusterCommand.ts +++ b/clients/client-rds/src/commands/BacktrackDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BacktrackDBClusterMessage, DBClusterBacktrack } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { BacktrackDBClusterMessage, DBClusterBacktrack } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { BacktrackDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CancelExportTaskCommand.ts b/clients/client-rds/src/commands/CancelExportTaskCommand.ts index a92f693b7212f..bc69e79079b30 100644 --- a/clients/client-rds/src/commands/CancelExportTaskCommand.ts +++ b/clients/client-rds/src/commands/CancelExportTaskCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelExportTaskMessage, ExportTask } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CancelExportTaskMessage, ExportTask } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CancelExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CopyDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/CopyDBClusterParameterGroupCommand.ts index b4982f39e300d..75bbc55632a82 100644 --- a/clients/client-rds/src/commands/CopyDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/CopyDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDBClusterParameterGroupMessage, CopyDBClusterParameterGroupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CopyDBClusterParameterGroupMessage, CopyDBClusterParameterGroupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CopyDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CopyDBClusterSnapshotCommand.ts b/clients/client-rds/src/commands/CopyDBClusterSnapshotCommand.ts index ad750826519e3..2db00004aba0f 100644 --- a/clients/client-rds/src/commands/CopyDBClusterSnapshotCommand.ts +++ b/clients/client-rds/src/commands/CopyDBClusterSnapshotCommand.ts @@ -2,11 +2,11 @@ import { getCrossRegionPresignedUrlPlugin } from "@aws-sdk/middleware-sdk-rds"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDBClusterSnapshotMessage, CopyDBClusterSnapshotResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CopyDBClusterSnapshotMessage, CopyDBClusterSnapshotResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CopyDBClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CopyDBParameterGroupCommand.ts b/clients/client-rds/src/commands/CopyDBParameterGroupCommand.ts index 876e03a385089..d45f51b52424a 100644 --- a/clients/client-rds/src/commands/CopyDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/CopyDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDBParameterGroupMessage, CopyDBParameterGroupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CopyDBParameterGroupMessage, CopyDBParameterGroupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CopyDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts b/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts index a71fda7bf7069..13231bf293841 100644 --- a/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/CopyDBSnapshotCommand.ts @@ -2,11 +2,11 @@ import { getCrossRegionPresignedUrlPlugin } from "@aws-sdk/middleware-sdk-rds"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyDBSnapshotMessage, CopyDBSnapshotResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CopyDBSnapshotMessage, CopyDBSnapshotResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CopyDBSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CopyOptionGroupCommand.ts b/clients/client-rds/src/commands/CopyOptionGroupCommand.ts index 7470fd2b5c931..39a664f3089b8 100644 --- a/clients/client-rds/src/commands/CopyOptionGroupCommand.ts +++ b/clients/client-rds/src/commands/CopyOptionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyOptionGroupMessage, CopyOptionGroupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CopyOptionGroupMessage, CopyOptionGroupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CopyOptionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateBlueGreenDeploymentCommand.ts b/clients/client-rds/src/commands/CreateBlueGreenDeploymentCommand.ts index 1e96f4c040357..c17581424d5c5 100644 --- a/clients/client-rds/src/commands/CreateBlueGreenDeploymentCommand.ts +++ b/clients/client-rds/src/commands/CreateBlueGreenDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBlueGreenDeploymentRequest, CreateBlueGreenDeploymentResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateBlueGreenDeploymentRequest, CreateBlueGreenDeploymentResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateBlueGreenDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateCustomDBEngineVersionCommand.ts b/clients/client-rds/src/commands/CreateCustomDBEngineVersionCommand.ts index 11b5e78c80378..4f40acf381cf1 100644 --- a/clients/client-rds/src/commands/CreateCustomDBEngineVersionCommand.ts +++ b/clients/client-rds/src/commands/CreateCustomDBEngineVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomDBEngineVersionMessage, DBEngineVersion } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateCustomDBEngineVersionMessage, DBEngineVersion } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateCustomDBEngineVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBClusterCommand.ts b/clients/client-rds/src/commands/CreateDBClusterCommand.ts index cccf58874c4a8..494b35a8f502a 100644 --- a/clients/client-rds/src/commands/CreateDBClusterCommand.ts +++ b/clients/client-rds/src/commands/CreateDBClusterCommand.ts @@ -2,11 +2,11 @@ import { getCrossRegionPresignedUrlPlugin } from "@aws-sdk/middleware-sdk-rds"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterMessage, CreateDBClusterResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBClusterMessage, CreateDBClusterResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBClusterEndpointCommand.ts b/clients/client-rds/src/commands/CreateDBClusterEndpointCommand.ts index 2fade37137cd5..137f292f910b5 100644 --- a/clients/client-rds/src/commands/CreateDBClusterEndpointCommand.ts +++ b/clients/client-rds/src/commands/CreateDBClusterEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterEndpointMessage, DBClusterEndpoint } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBClusterEndpointMessage, DBClusterEndpoint } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBClusterEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/CreateDBClusterParameterGroupCommand.ts index 918a316ce63eb..6dc980053e35c 100644 --- a/clients/client-rds/src/commands/CreateDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterParameterGroupMessage, CreateDBClusterParameterGroupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBClusterParameterGroupMessage, CreateDBClusterParameterGroupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBClusterSnapshotCommand.ts b/clients/client-rds/src/commands/CreateDBClusterSnapshotCommand.ts index ab67761f5fd09..d4ab98fe2e3fc 100644 --- a/clients/client-rds/src/commands/CreateDBClusterSnapshotCommand.ts +++ b/clients/client-rds/src/commands/CreateDBClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBClusterSnapshotMessage, CreateDBClusterSnapshotResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBClusterSnapshotMessage, CreateDBClusterSnapshotResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBInstanceCommand.ts b/clients/client-rds/src/commands/CreateDBInstanceCommand.ts index 897321da8a5ba..590a915faf173 100644 --- a/clients/client-rds/src/commands/CreateDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/CreateDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBInstanceMessage, CreateDBInstanceResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBInstanceMessage, CreateDBInstanceResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts b/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts index dd8862b379230..ac8707017d884 100644 --- a/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts +++ b/clients/client-rds/src/commands/CreateDBInstanceReadReplicaCommand.ts @@ -2,11 +2,11 @@ import { getCrossRegionPresignedUrlPlugin } from "@aws-sdk/middleware-sdk-rds"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBInstanceReadReplicaMessage, CreateDBInstanceReadReplicaResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBInstanceReadReplicaMessage, CreateDBInstanceReadReplicaResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBInstanceReadReplica } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBParameterGroupCommand.ts b/clients/client-rds/src/commands/CreateDBParameterGroupCommand.ts index fbb8019ddf529..50d719faec036 100644 --- a/clients/client-rds/src/commands/CreateDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBParameterGroupMessage, CreateDBParameterGroupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBParameterGroupMessage, CreateDBParameterGroupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBProxyCommand.ts b/clients/client-rds/src/commands/CreateDBProxyCommand.ts index f586c3d9c2ab9..5fd98adcc1c25 100644 --- a/clients/client-rds/src/commands/CreateDBProxyCommand.ts +++ b/clients/client-rds/src/commands/CreateDBProxyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBProxyRequest, CreateDBProxyResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBProxyRequest, CreateDBProxyResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBProxyEndpointCommand.ts b/clients/client-rds/src/commands/CreateDBProxyEndpointCommand.ts index f27ad3d5d327e..e32fc9aceb185 100644 --- a/clients/client-rds/src/commands/CreateDBProxyEndpointCommand.ts +++ b/clients/client-rds/src/commands/CreateDBProxyEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBProxyEndpointRequest, CreateDBProxyEndpointResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBProxyEndpointRequest, CreateDBProxyEndpointResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBProxyEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBSecurityGroupCommand.ts b/clients/client-rds/src/commands/CreateDBSecurityGroupCommand.ts index 966a0b5b72bef..26ead1186b669 100644 --- a/clients/client-rds/src/commands/CreateDBSecurityGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBSecurityGroupMessage, CreateDBSecurityGroupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBSecurityGroupMessage, CreateDBSecurityGroupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBShardGroupCommand.ts b/clients/client-rds/src/commands/CreateDBShardGroupCommand.ts index 24197528e7ea7..23c4f85dc9236 100644 --- a/clients/client-rds/src/commands/CreateDBShardGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBShardGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBShardGroupMessage, DBShardGroup } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBShardGroupMessage, DBShardGroup } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBShardGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts b/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts index 63b399cbba167..fe27b38f71a93 100644 --- a/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/CreateDBSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBSnapshotMessage, CreateDBSnapshotResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBSnapshotMessage, CreateDBSnapshotResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateDBSubnetGroupCommand.ts b/clients/client-rds/src/commands/CreateDBSubnetGroupCommand.ts index dc7881a7e78e0..27f94835eeccf 100644 --- a/clients/client-rds/src/commands/CreateDBSubnetGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateDBSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDBSubnetGroupMessage, CreateDBSubnetGroupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateDBSubnetGroupMessage, CreateDBSubnetGroupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateDBSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-rds/src/commands/CreateEventSubscriptionCommand.ts index c4f897648f1a1..83dde88fdffcb 100644 --- a/clients/client-rds/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/CreateEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventSubscriptionMessage, CreateEventSubscriptionResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateEventSubscriptionMessage, CreateEventSubscriptionResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateGlobalClusterCommand.ts b/clients/client-rds/src/commands/CreateGlobalClusterCommand.ts index ebe1b56fe73cb..1a5da44baed26 100644 --- a/clients/client-rds/src/commands/CreateGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/CreateGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGlobalClusterMessage, CreateGlobalClusterResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateGlobalClusterMessage, CreateGlobalClusterResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateIntegrationCommand.ts b/clients/client-rds/src/commands/CreateIntegrationCommand.ts index f21c157dec77d..3e7c02ca164ef 100644 --- a/clients/client-rds/src/commands/CreateIntegrationCommand.ts +++ b/clients/client-rds/src/commands/CreateIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIntegrationMessage, Integration } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateIntegrationMessage, Integration } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateOptionGroupCommand.ts b/clients/client-rds/src/commands/CreateOptionGroupCommand.ts index 6540f3cd462f3..8e660cf18a5d3 100644 --- a/clients/client-rds/src/commands/CreateOptionGroupCommand.ts +++ b/clients/client-rds/src/commands/CreateOptionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOptionGroupMessage, CreateOptionGroupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateOptionGroupMessage, CreateOptionGroupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateOptionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/CreateTenantDatabaseCommand.ts b/clients/client-rds/src/commands/CreateTenantDatabaseCommand.ts index 221c4369c63bb..f75f65618be99 100644 --- a/clients/client-rds/src/commands/CreateTenantDatabaseCommand.ts +++ b/clients/client-rds/src/commands/CreateTenantDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTenantDatabaseMessage, CreateTenantDatabaseResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CreateTenantDatabaseMessage, CreateTenantDatabaseResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { CreateTenantDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteBlueGreenDeploymentCommand.ts b/clients/client-rds/src/commands/DeleteBlueGreenDeploymentCommand.ts index 471ce32239382..b8aa7b95f2305 100644 --- a/clients/client-rds/src/commands/DeleteBlueGreenDeploymentCommand.ts +++ b/clients/client-rds/src/commands/DeleteBlueGreenDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBlueGreenDeploymentRequest, DeleteBlueGreenDeploymentResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteBlueGreenDeploymentRequest, DeleteBlueGreenDeploymentResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteBlueGreenDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteCustomDBEngineVersionCommand.ts b/clients/client-rds/src/commands/DeleteCustomDBEngineVersionCommand.ts index 0273c5656f1b0..1a0c7c2dc160d 100644 --- a/clients/client-rds/src/commands/DeleteCustomDBEngineVersionCommand.ts +++ b/clients/client-rds/src/commands/DeleteCustomDBEngineVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBEngineVersion, DeleteCustomDBEngineVersionMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBEngineVersion, DeleteCustomDBEngineVersionMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteCustomDBEngineVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBClusterAutomatedBackupCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterAutomatedBackupCommand.ts index 058b81cd4ae55..93403dfd7f9da 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterAutomatedBackupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterAutomatedBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterAutomatedBackupMessage, DeleteDBClusterAutomatedBackupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBClusterAutomatedBackupMessage, DeleteDBClusterAutomatedBackupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBClusterAutomatedBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBClusterCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterCommand.ts index 23f70213ebe08..4e3d17b6ae28a 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterMessage, DeleteDBClusterResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBClusterMessage, DeleteDBClusterResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBClusterEndpointCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterEndpointCommand.ts index 429f03c8c74e7..65352da91d7f3 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterEndpointCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterEndpoint, DeleteDBClusterEndpointMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterEndpoint, DeleteDBClusterEndpointMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBClusterEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterParameterGroupCommand.ts index 115b84032107d..a7524dc3f43d6 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterParameterGroupMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBClusterParameterGroupMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBClusterSnapshotCommand.ts b/clients/client-rds/src/commands/DeleteDBClusterSnapshotCommand.ts index b812565eca2c7..c4e7b0ba8ea13 100644 --- a/clients/client-rds/src/commands/DeleteDBClusterSnapshotCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBClusterSnapshotMessage, DeleteDBClusterSnapshotResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBClusterSnapshotMessage, DeleteDBClusterSnapshotResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts b/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts index ee01cf4acc3fd..57bcd1ed2cab3 100644 --- a/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBInstanceAutomatedBackupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBInstanceAutomatedBackupMessage, DeleteDBInstanceAutomatedBackupResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBInstanceAutomatedBackupMessage, DeleteDBInstanceAutomatedBackupResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBInstanceAutomatedBackup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts b/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts index 93edfa111d01c..ecc3d6ac143b2 100644 --- a/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBInstanceMessage, DeleteDBInstanceResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBInstanceMessage, DeleteDBInstanceResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBParameterGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBParameterGroupCommand.ts index ae5da22730412..e4ecd1b3fb437 100644 --- a/clients/client-rds/src/commands/DeleteDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBParameterGroupMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBParameterGroupMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBProxyCommand.ts b/clients/client-rds/src/commands/DeleteDBProxyCommand.ts index 0fb204e4ab80e..4a5ec1c2a7461 100644 --- a/clients/client-rds/src/commands/DeleteDBProxyCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBProxyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBProxyRequest, DeleteDBProxyResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBProxyRequest, DeleteDBProxyResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBProxyEndpointCommand.ts b/clients/client-rds/src/commands/DeleteDBProxyEndpointCommand.ts index e209a19fd4238..e945f89b76caf 100644 --- a/clients/client-rds/src/commands/DeleteDBProxyEndpointCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBProxyEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBProxyEndpointRequest, DeleteDBProxyEndpointResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBProxyEndpointRequest, DeleteDBProxyEndpointResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBProxyEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBSecurityGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBSecurityGroupCommand.ts index fecf02ba42116..bf995899b57c1 100644 --- a/clients/client-rds/src/commands/DeleteDBSecurityGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBSecurityGroupMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBSecurityGroupMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBShardGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBShardGroupCommand.ts index 9ea4b4629a5e6..803b711ba977a 100644 --- a/clients/client-rds/src/commands/DeleteDBShardGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBShardGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBShardGroup, DeleteDBShardGroupMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBShardGroup, DeleteDBShardGroupMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBShardGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts b/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts index ffddf2e549448..6bb41402eb01d 100644 --- a/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBSnapshotMessage, DeleteDBSnapshotResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBSnapshotMessage, DeleteDBSnapshotResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteDBSubnetGroupCommand.ts b/clients/client-rds/src/commands/DeleteDBSubnetGroupCommand.ts index 5f1c46b3b1e93..6685c94a32653 100644 --- a/clients/client-rds/src/commands/DeleteDBSubnetGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteDBSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDBSubnetGroupMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteDBSubnetGroupMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteDBSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-rds/src/commands/DeleteEventSubscriptionCommand.ts index 098f2bf101845..227b707e5f08a 100644 --- a/clients/client-rds/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/DeleteEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventSubscriptionMessage, DeleteEventSubscriptionResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteEventSubscriptionMessage, DeleteEventSubscriptionResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteGlobalClusterCommand.ts b/clients/client-rds/src/commands/DeleteGlobalClusterCommand.ts index d4e96b1fe354f..bda041065eccc 100644 --- a/clients/client-rds/src/commands/DeleteGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/DeleteGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGlobalClusterMessage, DeleteGlobalClusterResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteGlobalClusterMessage, DeleteGlobalClusterResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteIntegrationCommand.ts b/clients/client-rds/src/commands/DeleteIntegrationCommand.ts index 051a722e81de2..8a2d949407e23 100644 --- a/clients/client-rds/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-rds/src/commands/DeleteIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIntegrationMessage, Integration } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteIntegrationMessage, Integration } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteOptionGroupCommand.ts b/clients/client-rds/src/commands/DeleteOptionGroupCommand.ts index 574a21f6b8a1a..1c15197dc1f38 100644 --- a/clients/client-rds/src/commands/DeleteOptionGroupCommand.ts +++ b/clients/client-rds/src/commands/DeleteOptionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOptionGroupMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteOptionGroupMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteOptionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeleteTenantDatabaseCommand.ts b/clients/client-rds/src/commands/DeleteTenantDatabaseCommand.ts index 2dbc0429a766a..4f0a0d59b7fcc 100644 --- a/clients/client-rds/src/commands/DeleteTenantDatabaseCommand.ts +++ b/clients/client-rds/src/commands/DeleteTenantDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTenantDatabaseMessage, DeleteTenantDatabaseResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeleteTenantDatabaseMessage, DeleteTenantDatabaseResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeleteTenantDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DeregisterDBProxyTargetsCommand.ts b/clients/client-rds/src/commands/DeregisterDBProxyTargetsCommand.ts index eaff10aa4e497..08396bb2a2e89 100644 --- a/clients/client-rds/src/commands/DeregisterDBProxyTargetsCommand.ts +++ b/clients/client-rds/src/commands/DeregisterDBProxyTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterDBProxyTargetsRequest, DeregisterDBProxyTargetsResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DeregisterDBProxyTargetsRequest, DeregisterDBProxyTargetsResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DeregisterDBProxyTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-rds/src/commands/DescribeAccountAttributesCommand.ts index b3263c9ab34cd..92d7c490b4bd8 100644 --- a/clients/client-rds/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-rds/src/commands/DescribeAccountAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AccountAttributesMessage, DescribeAccountAttributesMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { AccountAttributesMessage, DescribeAccountAttributesMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeAccountAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeBlueGreenDeploymentsCommand.ts b/clients/client-rds/src/commands/DescribeBlueGreenDeploymentsCommand.ts index a9f4c15dcfa67..7b7525b088a62 100644 --- a/clients/client-rds/src/commands/DescribeBlueGreenDeploymentsCommand.ts +++ b/clients/client-rds/src/commands/DescribeBlueGreenDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBlueGreenDeploymentsRequest, DescribeBlueGreenDeploymentsResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeBlueGreenDeploymentsRequest, DescribeBlueGreenDeploymentsResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeBlueGreenDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeCertificatesCommand.ts b/clients/client-rds/src/commands/DescribeCertificatesCommand.ts index 5cffe4002ab4e..d33284acbb599 100644 --- a/clients/client-rds/src/commands/DescribeCertificatesCommand.ts +++ b/clients/client-rds/src/commands/DescribeCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CertificateMessage, DescribeCertificatesMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { CertificateMessage, DescribeCertificatesMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBClusterAutomatedBackupsCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterAutomatedBackupsCommand.ts index 48792f1d80d48..d27b4fbe7e0d0 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterAutomatedBackupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterAutomatedBackupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterAutomatedBackupMessage, DescribeDBClusterAutomatedBackupsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterAutomatedBackupMessage, DescribeDBClusterAutomatedBackupsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBClusterAutomatedBackups } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBClusterBacktracksCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterBacktracksCommand.ts index 06a53243325aa..67675b2222554 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterBacktracksCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterBacktracksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterBacktrackMessage, DescribeDBClusterBacktracksMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterBacktrackMessage, DescribeDBClusterBacktracksMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBClusterBacktracks } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBClusterEndpointsCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterEndpointsCommand.ts index b6eac74f1903a..3d3b72e507266 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterEndpointsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterEndpointMessage, DescribeDBClusterEndpointsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterEndpointMessage, DescribeDBClusterEndpointsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBClusterEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBClusterParameterGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterParameterGroupsCommand.ts index 0f20fa28c6a90..908509160ea2a 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterParameterGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupsMessage, DescribeDBClusterParameterGroupsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterParameterGroupsMessage, DescribeDBClusterParameterGroupsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBClusterParameterGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBClusterParametersCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterParametersCommand.ts index c546aaffbf1b1..d662b65a2e15c 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterParametersCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupDetails, DescribeDBClusterParametersMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterParameterGroupDetails, DescribeDBClusterParametersMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBClusterParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts index 5afe60202a060..7651e35e0e335 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterSnapshotAttributesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDBClusterSnapshotAttributesMessage, DescribeDBClusterSnapshotAttributesResult, } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBClusterSnapshotAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBClusterSnapshotsCommand.ts b/clients/client-rds/src/commands/DescribeDBClusterSnapshotsCommand.ts index f26c916985476..af3bec9616c20 100644 --- a/clients/client-rds/src/commands/DescribeDBClusterSnapshotsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClusterSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBClusterSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBClustersCommand.ts b/clients/client-rds/src/commands/DescribeDBClustersCommand.ts index 46c532d0d9b01..807fc02e05caa 100644 --- a/clients/client-rds/src/commands/DescribeDBClustersCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterMessage, DescribeDBClustersMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterMessage, DescribeDBClustersMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBEngineVersionsCommand.ts b/clients/client-rds/src/commands/DescribeDBEngineVersionsCommand.ts index 98b9e7ad4121e..c5309b6d260d1 100644 --- a/clients/client-rds/src/commands/DescribeDBEngineVersionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBEngineVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBEngineVersionMessage, DescribeDBEngineVersionsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBEngineVersionMessage, DescribeDBEngineVersionsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBEngineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts b/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts index 40f47af70ab7b..047db9469cf71 100644 --- a/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBInstanceAutomatedBackupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBInstanceAutomatedBackupMessage, DescribeDBInstanceAutomatedBackupsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBInstanceAutomatedBackupMessage, DescribeDBInstanceAutomatedBackupsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBInstanceAutomatedBackups } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts b/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts index ab4ed5c8e716d..32f236efede28 100644 --- a/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBInstanceMessage, DescribeDBInstancesMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBInstanceMessage, DescribeDBInstancesMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBLogFilesCommand.ts b/clients/client-rds/src/commands/DescribeDBLogFilesCommand.ts index 81f43b1fee39e..780b6bd7ca244 100644 --- a/clients/client-rds/src/commands/DescribeDBLogFilesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBLogFilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDBLogFilesMessage, DescribeDBLogFilesResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeDBLogFilesMessage, DescribeDBLogFilesResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBLogFiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBMajorEngineVersionsCommand.ts b/clients/client-rds/src/commands/DescribeDBMajorEngineVersionsCommand.ts index 4c881da3cd549..c3d8e679b1ddf 100644 --- a/clients/client-rds/src/commands/DescribeDBMajorEngineVersionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBMajorEngineVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDBMajorEngineVersionsRequest, DescribeDBMajorEngineVersionsResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeDBMajorEngineVersionsRequest, DescribeDBMajorEngineVersionsResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBMajorEngineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBParameterGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBParameterGroupsCommand.ts index aca16be57f8f8..a9ee563a44269 100644 --- a/clients/client-rds/src/commands/DescribeDBParameterGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBParameterGroupsMessage, DescribeDBParameterGroupsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBParameterGroupsMessage, DescribeDBParameterGroupsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBParameterGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBParametersCommand.ts b/clients/client-rds/src/commands/DescribeDBParametersCommand.ts index b11184884b977..28f44ab22982e 100644 --- a/clients/client-rds/src/commands/DescribeDBParametersCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBParameterGroupDetails, DescribeDBParametersMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBParameterGroupDetails, DescribeDBParametersMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBProxiesCommand.ts b/clients/client-rds/src/commands/DescribeDBProxiesCommand.ts index d82745c62166c..69dbe2f349c55 100644 --- a/clients/client-rds/src/commands/DescribeDBProxiesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBProxiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDBProxiesRequest, DescribeDBProxiesResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeDBProxiesRequest, DescribeDBProxiesResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBProxies } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBProxyEndpointsCommand.ts b/clients/client-rds/src/commands/DescribeDBProxyEndpointsCommand.ts index 73ffd00976ca5..f7200e2e828d6 100644 --- a/clients/client-rds/src/commands/DescribeDBProxyEndpointsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBProxyEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDBProxyEndpointsRequest, DescribeDBProxyEndpointsResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeDBProxyEndpointsRequest, DescribeDBProxyEndpointsResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBProxyEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBProxyTargetGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBProxyTargetGroupsCommand.ts index a7cad47e44954..444c133820a0a 100644 --- a/clients/client-rds/src/commands/DescribeDBProxyTargetGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBProxyTargetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDBProxyTargetGroupsRequest, DescribeDBProxyTargetGroupsResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeDBProxyTargetGroupsRequest, DescribeDBProxyTargetGroupsResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBProxyTargetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBProxyTargetsCommand.ts b/clients/client-rds/src/commands/DescribeDBProxyTargetsCommand.ts index 41da319b35f45..af64d85bf2f02 100644 --- a/clients/client-rds/src/commands/DescribeDBProxyTargetsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBProxyTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDBProxyTargetsRequest, DescribeDBProxyTargetsResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeDBProxyTargetsRequest, DescribeDBProxyTargetsResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBProxyTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBRecommendationsCommand.ts b/clients/client-rds/src/commands/DescribeDBRecommendationsCommand.ts index d0fab4e81c385..cb34e460819d5 100644 --- a/clients/client-rds/src/commands/DescribeDBRecommendationsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBRecommendationsMessage, DescribeDBRecommendationsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBRecommendationsMessage, DescribeDBRecommendationsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBSecurityGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBSecurityGroupsCommand.ts index 94ace1f101dee..b71438c7f879a 100644 --- a/clients/client-rds/src/commands/DescribeDBSecurityGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSecurityGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBSecurityGroupMessage, DescribeDBSecurityGroupsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBSecurityGroupMessage, DescribeDBSecurityGroupsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBSecurityGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBShardGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBShardGroupsCommand.ts index 0889e52a2f7e1..62fa0c3c3b92d 100644 --- a/clients/client-rds/src/commands/DescribeDBShardGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBShardGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDBShardGroupsMessage, DescribeDBShardGroupsResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeDBShardGroupsMessage, DescribeDBShardGroupsResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBShardGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBSnapshotAttributesCommand.ts b/clients/client-rds/src/commands/DescribeDBSnapshotAttributesCommand.ts index fe2d8b2db938a..abd39973f2f62 100644 --- a/clients/client-rds/src/commands/DescribeDBSnapshotAttributesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSnapshotAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDBSnapshotAttributesMessage, DescribeDBSnapshotAttributesResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeDBSnapshotAttributesMessage, DescribeDBSnapshotAttributesResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBSnapshotAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBSnapshotTenantDatabasesCommand.ts b/clients/client-rds/src/commands/DescribeDBSnapshotTenantDatabasesCommand.ts index 09773680c85a8..31f60f2007b91 100644 --- a/clients/client-rds/src/commands/DescribeDBSnapshotTenantDatabasesCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSnapshotTenantDatabasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBSnapshotTenantDatabasesMessage, DescribeDBSnapshotTenantDatabasesMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBSnapshotTenantDatabasesMessage, DescribeDBSnapshotTenantDatabasesMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBSnapshotTenantDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts b/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts index c791e6372ba43..3d6894b2db950 100644 --- a/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBSnapshotMessage, DescribeDBSnapshotsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBSnapshotMessage, DescribeDBSnapshotsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeDBSubnetGroupsCommand.ts b/clients/client-rds/src/commands/DescribeDBSubnetGroupsCommand.ts index 68979cea97b9e..93327109b0598 100644 --- a/clients/client-rds/src/commands/DescribeDBSubnetGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeDBSubnetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBSubnetGroupMessage, DescribeDBSubnetGroupsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBSubnetGroupMessage, DescribeDBSubnetGroupsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeDBSubnetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeEngineDefaultClusterParametersCommand.ts b/clients/client-rds/src/commands/DescribeEngineDefaultClusterParametersCommand.ts index ca9af4b592e3c..5bccd9278494f 100644 --- a/clients/client-rds/src/commands/DescribeEngineDefaultClusterParametersCommand.ts +++ b/clients/client-rds/src/commands/DescribeEngineDefaultClusterParametersCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeEngineDefaultClusterParametersMessage, DescribeEngineDefaultClusterParametersResult, } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeEngineDefaultClusterParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeEngineDefaultParametersCommand.ts b/clients/client-rds/src/commands/DescribeEngineDefaultParametersCommand.ts index f67aa90498710..aebeb9e3a31fb 100644 --- a/clients/client-rds/src/commands/DescribeEngineDefaultParametersCommand.ts +++ b/clients/client-rds/src/commands/DescribeEngineDefaultParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEngineDefaultParametersMessage, DescribeEngineDefaultParametersResult } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeEngineDefaultParametersMessage, DescribeEngineDefaultParametersResult } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeEngineDefaultParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-rds/src/commands/DescribeEventCategoriesCommand.ts index de4baffbdb675..b90a2568bdee6 100644 --- a/clients/client-rds/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-rds/src/commands/DescribeEventCategoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeEventCategories } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-rds/src/commands/DescribeEventSubscriptionsCommand.ts index 139f003815e07..c08cf63aed92c 100644 --- a/clients/client-rds/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeEventSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventSubscriptionsMessage, EventSubscriptionsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeEventSubscriptionsMessage, EventSubscriptionsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeEventSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeEventsCommand.ts b/clients/client-rds/src/commands/DescribeEventsCommand.ts index aceb4dc58368b..ce7ea1dfce936 100644 --- a/clients/client-rds/src/commands/DescribeEventsCommand.ts +++ b/clients/client-rds/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsMessage, EventsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeEventsMessage, EventsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeExportTasksCommand.ts b/clients/client-rds/src/commands/DescribeExportTasksCommand.ts index ab7c534e7eac0..f88c04625a5dc 100644 --- a/clients/client-rds/src/commands/DescribeExportTasksCommand.ts +++ b/clients/client-rds/src/commands/DescribeExportTasksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExportTasksMessage, ExportTasksMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeExportTasksMessage, ExportTasksMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeExportTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeGlobalClustersCommand.ts b/clients/client-rds/src/commands/DescribeGlobalClustersCommand.ts index b61b507494ee1..8b067d90c7720 100644 --- a/clients/client-rds/src/commands/DescribeGlobalClustersCommand.ts +++ b/clients/client-rds/src/commands/DescribeGlobalClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGlobalClustersMessage, GlobalClustersMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeGlobalClustersMessage, GlobalClustersMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeGlobalClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeIntegrationsCommand.ts b/clients/client-rds/src/commands/DescribeIntegrationsCommand.ts index 0a91fe49d2d25..9f977f3660611 100644 --- a/clients/client-rds/src/commands/DescribeIntegrationsCommand.ts +++ b/clients/client-rds/src/commands/DescribeIntegrationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIntegrationsMessage, DescribeIntegrationsResponse } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeIntegrationsMessage, DescribeIntegrationsResponse } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeOptionGroupOptionsCommand.ts b/clients/client-rds/src/commands/DescribeOptionGroupOptionsCommand.ts index 96d231a74a586..47f235382052b 100644 --- a/clients/client-rds/src/commands/DescribeOptionGroupOptionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeOptionGroupOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOptionGroupOptionsMessage, OptionGroupOptionsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeOptionGroupOptionsMessage, OptionGroupOptionsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeOptionGroupOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeOptionGroupsCommand.ts b/clients/client-rds/src/commands/DescribeOptionGroupsCommand.ts index b8aa224188723..dc6a16c031e89 100644 --- a/clients/client-rds/src/commands/DescribeOptionGroupsCommand.ts +++ b/clients/client-rds/src/commands/DescribeOptionGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOptionGroupsMessage, OptionGroups } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeOptionGroupsMessage, OptionGroups } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeOptionGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts b/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts index 8268c6287d97b..b4000f5c745eb 100644 --- a/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeOrderableDBInstanceOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrderableDBInstanceOptionsMessage, OrderableDBInstanceOptionsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeOrderableDBInstanceOptionsMessage, OrderableDBInstanceOptionsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeOrderableDBInstanceOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribePendingMaintenanceActionsCommand.ts b/clients/client-rds/src/commands/DescribePendingMaintenanceActionsCommand.ts index 3058458d9ae42..409f61192064a 100644 --- a/clients/client-rds/src/commands/DescribePendingMaintenanceActionsCommand.ts +++ b/clients/client-rds/src/commands/DescribePendingMaintenanceActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePendingMaintenanceActionsMessage, PendingMaintenanceActionsMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribePendingMaintenanceActionsMessage, PendingMaintenanceActionsMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribePendingMaintenanceActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeReservedDBInstancesCommand.ts b/clients/client-rds/src/commands/DescribeReservedDBInstancesCommand.ts index f9294dcf473f3..6402065aae6a4 100644 --- a/clients/client-rds/src/commands/DescribeReservedDBInstancesCommand.ts +++ b/clients/client-rds/src/commands/DescribeReservedDBInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedDBInstancesMessage, ReservedDBInstanceMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeReservedDBInstancesMessage, ReservedDBInstanceMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeReservedDBInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeReservedDBInstancesOfferingsCommand.ts b/clients/client-rds/src/commands/DescribeReservedDBInstancesOfferingsCommand.ts index 3a4beb53bdab2..8886ed2aea908 100644 --- a/clients/client-rds/src/commands/DescribeReservedDBInstancesOfferingsCommand.ts +++ b/clients/client-rds/src/commands/DescribeReservedDBInstancesOfferingsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedDBInstancesOfferingsMessage, ReservedDBInstancesOfferingMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { + DescribeReservedDBInstancesOfferingsMessage, + ReservedDBInstancesOfferingMessage, +} from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeReservedDBInstancesOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeSourceRegionsCommand.ts b/clients/client-rds/src/commands/DescribeSourceRegionsCommand.ts index 40a2a4c6ae8ae..87e7168edda9f 100644 --- a/clients/client-rds/src/commands/DescribeSourceRegionsCommand.ts +++ b/clients/client-rds/src/commands/DescribeSourceRegionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSourceRegionsMessage, SourceRegionMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeSourceRegionsMessage, SourceRegionMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeSourceRegions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeTenantDatabasesCommand.ts b/clients/client-rds/src/commands/DescribeTenantDatabasesCommand.ts index 3e7f9a8dfca8f..5ecd507eb00b0 100644 --- a/clients/client-rds/src/commands/DescribeTenantDatabasesCommand.ts +++ b/clients/client-rds/src/commands/DescribeTenantDatabasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTenantDatabasesMessage, TenantDatabasesMessage } from "../models/models_0"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeTenantDatabasesMessage, TenantDatabasesMessage } from "../models/models_0"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeTenantDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts b/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts index 39512f9bb6c77..53ce7c64b0379 100644 --- a/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts +++ b/clients/client-rds/src/commands/DescribeValidDBInstanceModificationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeValidDBInstanceModificationsMessage } from "../models/models_0"; -import { DescribeValidDBInstanceModificationsResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DescribeValidDBInstanceModificationsMessage } from "../models/models_0"; +import type { DescribeValidDBInstanceModificationsResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DescribeValidDBInstanceModifications } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DisableHttpEndpointCommand.ts b/clients/client-rds/src/commands/DisableHttpEndpointCommand.ts index d2fd01e8b9829..726a2bf95553f 100644 --- a/clients/client-rds/src/commands/DisableHttpEndpointCommand.ts +++ b/clients/client-rds/src/commands/DisableHttpEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableHttpEndpointRequest, DisableHttpEndpointResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DisableHttpEndpointRequest, DisableHttpEndpointResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DisableHttpEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/DownloadDBLogFilePortionCommand.ts b/clients/client-rds/src/commands/DownloadDBLogFilePortionCommand.ts index dbbb36a2d7bc0..a18ae8e087352 100644 --- a/clients/client-rds/src/commands/DownloadDBLogFilePortionCommand.ts +++ b/clients/client-rds/src/commands/DownloadDBLogFilePortionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DownloadDBLogFilePortionDetails, DownloadDBLogFilePortionMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DownloadDBLogFilePortionDetails, DownloadDBLogFilePortionMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { DownloadDBLogFilePortion } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/EnableHttpEndpointCommand.ts b/clients/client-rds/src/commands/EnableHttpEndpointCommand.ts index 3025cc423fcb7..db51ef2b4028b 100644 --- a/clients/client-rds/src/commands/EnableHttpEndpointCommand.ts +++ b/clients/client-rds/src/commands/EnableHttpEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableHttpEndpointRequest, EnableHttpEndpointResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { EnableHttpEndpointRequest, EnableHttpEndpointResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { EnableHttpEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/FailoverDBClusterCommand.ts b/clients/client-rds/src/commands/FailoverDBClusterCommand.ts index 21969c08f1cf0..57ccc22f8f8d8 100644 --- a/clients/client-rds/src/commands/FailoverDBClusterCommand.ts +++ b/clients/client-rds/src/commands/FailoverDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FailoverDBClusterMessage, FailoverDBClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { FailoverDBClusterMessage, FailoverDBClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { FailoverDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/FailoverGlobalClusterCommand.ts b/clients/client-rds/src/commands/FailoverGlobalClusterCommand.ts index 25acac324a96f..59583143f6401 100644 --- a/clients/client-rds/src/commands/FailoverGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/FailoverGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FailoverGlobalClusterMessage, FailoverGlobalClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { FailoverGlobalClusterMessage, FailoverGlobalClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { FailoverGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ListTagsForResourceCommand.ts b/clients/client-rds/src/commands/ListTagsForResourceCommand.ts index 7601b101d34d9..d256795840efd 100644 --- a/clients/client-rds/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rds/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceMessage, TagListMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ListTagsForResourceMessage, TagListMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyActivityStreamCommand.ts b/clients/client-rds/src/commands/ModifyActivityStreamCommand.ts index 234d591a8814e..3717053c27c6f 100644 --- a/clients/client-rds/src/commands/ModifyActivityStreamCommand.ts +++ b/clients/client-rds/src/commands/ModifyActivityStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyActivityStreamRequest, ModifyActivityStreamResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyActivityStreamRequest, ModifyActivityStreamResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyActivityStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyCertificatesCommand.ts b/clients/client-rds/src/commands/ModifyCertificatesCommand.ts index c56480c0c6b93..30d7c5f75a90e 100644 --- a/clients/client-rds/src/commands/ModifyCertificatesCommand.ts +++ b/clients/client-rds/src/commands/ModifyCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyCertificatesMessage, ModifyCertificatesResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyCertificatesMessage, ModifyCertificatesResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyCurrentDBClusterCapacityCommand.ts b/clients/client-rds/src/commands/ModifyCurrentDBClusterCapacityCommand.ts index 9cbc0c9057da5..0dc06f9c10b9a 100644 --- a/clients/client-rds/src/commands/ModifyCurrentDBClusterCapacityCommand.ts +++ b/clients/client-rds/src/commands/ModifyCurrentDBClusterCapacityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterCapacityInfo, ModifyCurrentDBClusterCapacityMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterCapacityInfo, ModifyCurrentDBClusterCapacityMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyCurrentDBClusterCapacity } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyCustomDBEngineVersionCommand.ts b/clients/client-rds/src/commands/ModifyCustomDBEngineVersionCommand.ts index e959c5436c70e..1b8a2b12faa04 100644 --- a/clients/client-rds/src/commands/ModifyCustomDBEngineVersionCommand.ts +++ b/clients/client-rds/src/commands/ModifyCustomDBEngineVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBEngineVersion } from "../models/models_0"; -import { ModifyCustomDBEngineVersionMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBEngineVersion } from "../models/models_0"; +import type { ModifyCustomDBEngineVersionMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyCustomDBEngineVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBClusterCommand.ts b/clients/client-rds/src/commands/ModifyDBClusterCommand.ts index 025f872b92133..d0d61761a5732 100644 --- a/clients/client-rds/src/commands/ModifyDBClusterCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBClusterMessage, ModifyDBClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyDBClusterMessage, ModifyDBClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBClusterEndpointCommand.ts b/clients/client-rds/src/commands/ModifyDBClusterEndpointCommand.ts index 0d9c70f08963f..6a2f44b20a4d0 100644 --- a/clients/client-rds/src/commands/ModifyDBClusterEndpointCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBClusterEndpointCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterEndpoint } from "../models/models_0"; -import { ModifyDBClusterEndpointMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterEndpoint } from "../models/models_0"; +import type { ModifyDBClusterEndpointMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBClusterEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBClusterParameterGroupCommand.ts index d6ab509030665..ed3aa061820ed 100644 --- a/clients/client-rds/src/commands/ModifyDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupNameMessage, ModifyDBClusterParameterGroupMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterParameterGroupNameMessage, ModifyDBClusterParameterGroupMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts b/clients/client-rds/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts index 060dfe21f3b3d..dd9fa72e1146c 100644 --- a/clients/client-rds/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBClusterSnapshotAttributeCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBClusterSnapshotAttributeMessage, ModifyDBClusterSnapshotAttributeResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { + ModifyDBClusterSnapshotAttributeMessage, + ModifyDBClusterSnapshotAttributeResult, +} from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBClusterSnapshotAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts b/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts index d848803d8d6f2..29e37ccf7288c 100644 --- a/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBInstanceMessage, ModifyDBInstanceResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyDBInstanceMessage, ModifyDBInstanceResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBParameterGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBParameterGroupCommand.ts index 9c7a032930bc5..ad4c8ff2d81e9 100644 --- a/clients/client-rds/src/commands/ModifyDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBParameterGroupNameMessage, ModifyDBParameterGroupMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBParameterGroupNameMessage, ModifyDBParameterGroupMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBProxyCommand.ts b/clients/client-rds/src/commands/ModifyDBProxyCommand.ts index c5293af4aab36..40756cb008ce6 100644 --- a/clients/client-rds/src/commands/ModifyDBProxyCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBProxyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBProxyRequest, ModifyDBProxyResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyDBProxyRequest, ModifyDBProxyResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBProxy } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBProxyEndpointCommand.ts b/clients/client-rds/src/commands/ModifyDBProxyEndpointCommand.ts index 15661ffd0f787..12f8528c2848b 100644 --- a/clients/client-rds/src/commands/ModifyDBProxyEndpointCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBProxyEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBProxyEndpointRequest, ModifyDBProxyEndpointResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyDBProxyEndpointRequest, ModifyDBProxyEndpointResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBProxyEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBProxyTargetGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBProxyTargetGroupCommand.ts index 387b170b6b45d..d3b0e0e4d0727 100644 --- a/clients/client-rds/src/commands/ModifyDBProxyTargetGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBProxyTargetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBProxyTargetGroupRequest, ModifyDBProxyTargetGroupResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyDBProxyTargetGroupRequest, ModifyDBProxyTargetGroupResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBProxyTargetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBRecommendationCommand.ts b/clients/client-rds/src/commands/ModifyDBRecommendationCommand.ts index f8c89b26be703..77320be66ba6d 100644 --- a/clients/client-rds/src/commands/ModifyDBRecommendationCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBRecommendationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBRecommendationMessage, ModifyDBRecommendationMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBRecommendationMessage, ModifyDBRecommendationMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBShardGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBShardGroupCommand.ts index 06abb45f4cd28..c1566ed3e0839 100644 --- a/clients/client-rds/src/commands/ModifyDBShardGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBShardGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBShardGroup } from "../models/models_0"; -import { ModifyDBShardGroupMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBShardGroup } from "../models/models_0"; +import type { ModifyDBShardGroupMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBShardGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBSnapshotAttributeCommand.ts b/clients/client-rds/src/commands/ModifyDBSnapshotAttributeCommand.ts index f62ff4c5f9179..c0bded268618a 100644 --- a/clients/client-rds/src/commands/ModifyDBSnapshotAttributeCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBSnapshotAttributeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBSnapshotAttributeMessage, ModifyDBSnapshotAttributeResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyDBSnapshotAttributeMessage, ModifyDBSnapshotAttributeResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBSnapshotAttribute } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts b/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts index 0df547751a074..af11800deecad 100644 --- a/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBSnapshotMessage, ModifyDBSnapshotResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyDBSnapshotMessage, ModifyDBSnapshotResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyDBSubnetGroupCommand.ts b/clients/client-rds/src/commands/ModifyDBSubnetGroupCommand.ts index 3d33b4a841a90..935973cb8bded 100644 --- a/clients/client-rds/src/commands/ModifyDBSubnetGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyDBSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDBSubnetGroupMessage, ModifyDBSubnetGroupResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyDBSubnetGroupMessage, ModifyDBSubnetGroupResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyDBSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-rds/src/commands/ModifyEventSubscriptionCommand.ts index 97a9be5c06512..cba1e71609c06 100644 --- a/clients/client-rds/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/ModifyEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyGlobalClusterCommand.ts b/clients/client-rds/src/commands/ModifyGlobalClusterCommand.ts index 7aeeae2e9273d..08ae85913c6ed 100644 --- a/clients/client-rds/src/commands/ModifyGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/ModifyGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyGlobalClusterMessage, ModifyGlobalClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyGlobalClusterMessage, ModifyGlobalClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyIntegrationCommand.ts b/clients/client-rds/src/commands/ModifyIntegrationCommand.ts index e8aca84a6cb13..e4f45a6736950 100644 --- a/clients/client-rds/src/commands/ModifyIntegrationCommand.ts +++ b/clients/client-rds/src/commands/ModifyIntegrationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Integration } from "../models/models_0"; -import { ModifyIntegrationMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { Integration } from "../models/models_0"; +import type { ModifyIntegrationMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyOptionGroupCommand.ts b/clients/client-rds/src/commands/ModifyOptionGroupCommand.ts index a1e334d93efc1..12ea4d973a1b9 100644 --- a/clients/client-rds/src/commands/ModifyOptionGroupCommand.ts +++ b/clients/client-rds/src/commands/ModifyOptionGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyOptionGroupMessage, ModifyOptionGroupResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyOptionGroupMessage, ModifyOptionGroupResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyOptionGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ModifyTenantDatabaseCommand.ts b/clients/client-rds/src/commands/ModifyTenantDatabaseCommand.ts index cdaefd3bc60d3..503a81423204a 100644 --- a/clients/client-rds/src/commands/ModifyTenantDatabaseCommand.ts +++ b/clients/client-rds/src/commands/ModifyTenantDatabaseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyTenantDatabaseMessage, ModifyTenantDatabaseResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ModifyTenantDatabaseMessage, ModifyTenantDatabaseResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ModifyTenantDatabase } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts b/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts index 27601be4a793b..7029acdd07b66 100644 --- a/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts +++ b/clients/client-rds/src/commands/PromoteReadReplicaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PromoteReadReplicaMessage, PromoteReadReplicaResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { PromoteReadReplicaMessage, PromoteReadReplicaResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { PromoteReadReplica } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/PromoteReadReplicaDBClusterCommand.ts b/clients/client-rds/src/commands/PromoteReadReplicaDBClusterCommand.ts index 3403560176538..164672a6782e6 100644 --- a/clients/client-rds/src/commands/PromoteReadReplicaDBClusterCommand.ts +++ b/clients/client-rds/src/commands/PromoteReadReplicaDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PromoteReadReplicaDBClusterMessage, PromoteReadReplicaDBClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { PromoteReadReplicaDBClusterMessage, PromoteReadReplicaDBClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { PromoteReadReplicaDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/PurchaseReservedDBInstancesOfferingCommand.ts b/clients/client-rds/src/commands/PurchaseReservedDBInstancesOfferingCommand.ts index ecec37782042d..dfc1710718216 100644 --- a/clients/client-rds/src/commands/PurchaseReservedDBInstancesOfferingCommand.ts +++ b/clients/client-rds/src/commands/PurchaseReservedDBInstancesOfferingCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PurchaseReservedDBInstancesOfferingMessage, PurchaseReservedDBInstancesOfferingResult, } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { PurchaseReservedDBInstancesOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RebootDBClusterCommand.ts b/clients/client-rds/src/commands/RebootDBClusterCommand.ts index f3330c6b33524..2e06b5df12717 100644 --- a/clients/client-rds/src/commands/RebootDBClusterCommand.ts +++ b/clients/client-rds/src/commands/RebootDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootDBClusterMessage, RebootDBClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RebootDBClusterMessage, RebootDBClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RebootDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RebootDBInstanceCommand.ts b/clients/client-rds/src/commands/RebootDBInstanceCommand.ts index 50def9d4f050e..6cd13a6100207 100644 --- a/clients/client-rds/src/commands/RebootDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/RebootDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootDBInstanceMessage, RebootDBInstanceResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RebootDBInstanceMessage, RebootDBInstanceResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RebootDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RebootDBShardGroupCommand.ts b/clients/client-rds/src/commands/RebootDBShardGroupCommand.ts index a3f6fa30bb596..918ef0120e447 100644 --- a/clients/client-rds/src/commands/RebootDBShardGroupCommand.ts +++ b/clients/client-rds/src/commands/RebootDBShardGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBShardGroup } from "../models/models_0"; -import { RebootDBShardGroupMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBShardGroup } from "../models/models_0"; +import type { RebootDBShardGroupMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RebootDBShardGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RegisterDBProxyTargetsCommand.ts b/clients/client-rds/src/commands/RegisterDBProxyTargetsCommand.ts index aef10a58cc620..1a93d14805798 100644 --- a/clients/client-rds/src/commands/RegisterDBProxyTargetsCommand.ts +++ b/clients/client-rds/src/commands/RegisterDBProxyTargetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterDBProxyTargetsRequest, RegisterDBProxyTargetsResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RegisterDBProxyTargetsRequest, RegisterDBProxyTargetsResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RegisterDBProxyTargets } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RemoveFromGlobalClusterCommand.ts b/clients/client-rds/src/commands/RemoveFromGlobalClusterCommand.ts index bbf6246e3bb78..fd6e2c1aa34eb 100644 --- a/clients/client-rds/src/commands/RemoveFromGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/RemoveFromGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveFromGlobalClusterMessage, RemoveFromGlobalClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RemoveFromGlobalClusterMessage, RemoveFromGlobalClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RemoveFromGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RemoveRoleFromDBClusterCommand.ts b/clients/client-rds/src/commands/RemoveRoleFromDBClusterCommand.ts index 239899ed1b081..21c44eae6be25 100644 --- a/clients/client-rds/src/commands/RemoveRoleFromDBClusterCommand.ts +++ b/clients/client-rds/src/commands/RemoveRoleFromDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveRoleFromDBClusterMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RemoveRoleFromDBClusterMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RemoveRoleFromDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RemoveRoleFromDBInstanceCommand.ts b/clients/client-rds/src/commands/RemoveRoleFromDBInstanceCommand.ts index b9a4b8cf3c09f..432f5d7c8c77f 100644 --- a/clients/client-rds/src/commands/RemoveRoleFromDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/RemoveRoleFromDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveRoleFromDBInstanceMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RemoveRoleFromDBInstanceMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RemoveRoleFromDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts b/clients/client-rds/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts index f806e3f36f258..89bba7d8a6fe0 100644 --- a/clients/client-rds/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts +++ b/clients/client-rds/src/commands/RemoveSourceIdentifierFromSubscriptionCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RemoveSourceIdentifierFromSubscriptionMessage, RemoveSourceIdentifierFromSubscriptionResult, } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RemoveSourceIdentifierFromSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-rds/src/commands/RemoveTagsFromResourceCommand.ts index 5af6d816ee8eb..749200669d450 100644 --- a/clients/client-rds/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-rds/src/commands/RemoveTagsFromResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromResourceMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RemoveTagsFromResourceMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RemoveTagsFromResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ResetDBClusterParameterGroupCommand.ts b/clients/client-rds/src/commands/ResetDBClusterParameterGroupCommand.ts index 2a7e148aceb53..e1a7c5be4d767 100644 --- a/clients/client-rds/src/commands/ResetDBClusterParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/ResetDBClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBClusterParameterGroupNameMessage, ResetDBClusterParameterGroupMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBClusterParameterGroupNameMessage, ResetDBClusterParameterGroupMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ResetDBClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/ResetDBParameterGroupCommand.ts b/clients/client-rds/src/commands/ResetDBParameterGroupCommand.ts index 4a41230a0128c..acde8fc678efa 100644 --- a/clients/client-rds/src/commands/ResetDBParameterGroupCommand.ts +++ b/clients/client-rds/src/commands/ResetDBParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DBParameterGroupNameMessage, ResetDBParameterGroupMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { DBParameterGroupNameMessage, ResetDBParameterGroupMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { ResetDBParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RestoreDBClusterFromS3Command.ts b/clients/client-rds/src/commands/RestoreDBClusterFromS3Command.ts index 9aa27f00fe4b7..b35b0a1df9a73 100644 --- a/clients/client-rds/src/commands/RestoreDBClusterFromS3Command.ts +++ b/clients/client-rds/src/commands/RestoreDBClusterFromS3Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBClusterFromS3Message, RestoreDBClusterFromS3Result } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RestoreDBClusterFromS3Message, RestoreDBClusterFromS3Result } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RestoreDBClusterFromS3 } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RestoreDBClusterFromSnapshotCommand.ts b/clients/client-rds/src/commands/RestoreDBClusterFromSnapshotCommand.ts index 7e3877efb084e..148f81612f8f1 100644 --- a/clients/client-rds/src/commands/RestoreDBClusterFromSnapshotCommand.ts +++ b/clients/client-rds/src/commands/RestoreDBClusterFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBClusterFromSnapshotMessage, RestoreDBClusterFromSnapshotResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RestoreDBClusterFromSnapshotMessage, RestoreDBClusterFromSnapshotResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RestoreDBClusterFromSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RestoreDBClusterToPointInTimeCommand.ts b/clients/client-rds/src/commands/RestoreDBClusterToPointInTimeCommand.ts index 00da39dbaaab9..8ecbbd7852a70 100644 --- a/clients/client-rds/src/commands/RestoreDBClusterToPointInTimeCommand.ts +++ b/clients/client-rds/src/commands/RestoreDBClusterToPointInTimeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBClusterToPointInTimeMessage, RestoreDBClusterToPointInTimeResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RestoreDBClusterToPointInTimeMessage, RestoreDBClusterToPointInTimeResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RestoreDBClusterToPointInTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts b/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts index 69d732bbdffa8..07e0cb144703d 100644 --- a/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts +++ b/clients/client-rds/src/commands/RestoreDBInstanceFromDBSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBInstanceFromDBSnapshotMessage, RestoreDBInstanceFromDBSnapshotResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RestoreDBInstanceFromDBSnapshotMessage, RestoreDBInstanceFromDBSnapshotResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RestoreDBInstanceFromDBSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts b/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts index 0788b77bc7a00..b99b8f34ec6f6 100644 --- a/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts +++ b/clients/client-rds/src/commands/RestoreDBInstanceFromS3Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBInstanceFromS3Message, RestoreDBInstanceFromS3Result } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RestoreDBInstanceFromS3Message, RestoreDBInstanceFromS3Result } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RestoreDBInstanceFromS3 } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts b/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts index 7abea79eeecf3..f9967032ee566 100644 --- a/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts +++ b/clients/client-rds/src/commands/RestoreDBInstanceToPointInTimeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDBInstanceToPointInTimeMessage, RestoreDBInstanceToPointInTimeResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RestoreDBInstanceToPointInTimeMessage, RestoreDBInstanceToPointInTimeResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RestoreDBInstanceToPointInTime } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/RevokeDBSecurityGroupIngressCommand.ts b/clients/client-rds/src/commands/RevokeDBSecurityGroupIngressCommand.ts index 0febbbcf7df62..787d2f4ad514f 100644 --- a/clients/client-rds/src/commands/RevokeDBSecurityGroupIngressCommand.ts +++ b/clients/client-rds/src/commands/RevokeDBSecurityGroupIngressCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeDBSecurityGroupIngressMessage, RevokeDBSecurityGroupIngressResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RevokeDBSecurityGroupIngressMessage, RevokeDBSecurityGroupIngressResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { RevokeDBSecurityGroupIngress } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/StartActivityStreamCommand.ts b/clients/client-rds/src/commands/StartActivityStreamCommand.ts index 3e311910adcfd..66963c8cf15ff 100644 --- a/clients/client-rds/src/commands/StartActivityStreamCommand.ts +++ b/clients/client-rds/src/commands/StartActivityStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartActivityStreamRequest, StartActivityStreamResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { StartActivityStreamRequest, StartActivityStreamResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { StartActivityStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/StartDBClusterCommand.ts b/clients/client-rds/src/commands/StartDBClusterCommand.ts index 39ca6fda68ee2..483447359c36a 100644 --- a/clients/client-rds/src/commands/StartDBClusterCommand.ts +++ b/clients/client-rds/src/commands/StartDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDBClusterMessage, StartDBClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { StartDBClusterMessage, StartDBClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { StartDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts b/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts index 962c96db1ad3a..129be95329417 100644 --- a/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts +++ b/clients/client-rds/src/commands/StartDBInstanceAutomatedBackupsReplicationCommand.ts @@ -2,14 +2,14 @@ import { getCrossRegionPresignedUrlPlugin } from "@aws-sdk/middleware-sdk-rds"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartDBInstanceAutomatedBackupsReplicationMessage, StartDBInstanceAutomatedBackupsReplicationResult, } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { StartDBInstanceAutomatedBackupsReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/StartDBInstanceCommand.ts b/clients/client-rds/src/commands/StartDBInstanceCommand.ts index c8792695bbf28..826cc10d80772 100644 --- a/clients/client-rds/src/commands/StartDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/StartDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDBInstanceMessage, StartDBInstanceResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { StartDBInstanceMessage, StartDBInstanceResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { StartDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/StartExportTaskCommand.ts b/clients/client-rds/src/commands/StartExportTaskCommand.ts index 446bffc26a3e6..bed4bdcc4e7f8 100644 --- a/clients/client-rds/src/commands/StartExportTaskCommand.ts +++ b/clients/client-rds/src/commands/StartExportTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportTask } from "../models/models_0"; -import { StartExportTaskMessage } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { ExportTask } from "../models/models_0"; +import type { StartExportTaskMessage } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { StartExportTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/StopActivityStreamCommand.ts b/clients/client-rds/src/commands/StopActivityStreamCommand.ts index fbfb6522a699d..75bea294c0777 100644 --- a/clients/client-rds/src/commands/StopActivityStreamCommand.ts +++ b/clients/client-rds/src/commands/StopActivityStreamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopActivityStreamRequest, StopActivityStreamResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { StopActivityStreamRequest, StopActivityStreamResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { StopActivityStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/StopDBClusterCommand.ts b/clients/client-rds/src/commands/StopDBClusterCommand.ts index 4b799c3e7614f..aebef9c612b9d 100644 --- a/clients/client-rds/src/commands/StopDBClusterCommand.ts +++ b/clients/client-rds/src/commands/StopDBClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDBClusterMessage, StopDBClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { StopDBClusterMessage, StopDBClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { StopDBCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts b/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts index 82cddeabbad62..c3cadd0a98883 100644 --- a/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts +++ b/clients/client-rds/src/commands/StopDBInstanceAutomatedBackupsReplicationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StopDBInstanceAutomatedBackupsReplicationMessage, StopDBInstanceAutomatedBackupsReplicationResult, } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { StopDBInstanceAutomatedBackupsReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/StopDBInstanceCommand.ts b/clients/client-rds/src/commands/StopDBInstanceCommand.ts index 53aba8583bfaa..caf23a13d7dd0 100644 --- a/clients/client-rds/src/commands/StopDBInstanceCommand.ts +++ b/clients/client-rds/src/commands/StopDBInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDBInstanceMessage, StopDBInstanceResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { StopDBInstanceMessage, StopDBInstanceResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { StopDBInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/SwitchoverBlueGreenDeploymentCommand.ts b/clients/client-rds/src/commands/SwitchoverBlueGreenDeploymentCommand.ts index 2dc612719e317..c8e32259d248d 100644 --- a/clients/client-rds/src/commands/SwitchoverBlueGreenDeploymentCommand.ts +++ b/clients/client-rds/src/commands/SwitchoverBlueGreenDeploymentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SwitchoverBlueGreenDeploymentRequest, SwitchoverBlueGreenDeploymentResponse } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { SwitchoverBlueGreenDeploymentRequest, SwitchoverBlueGreenDeploymentResponse } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { SwitchoverBlueGreenDeployment } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/SwitchoverGlobalClusterCommand.ts b/clients/client-rds/src/commands/SwitchoverGlobalClusterCommand.ts index e999f11949ed5..7c5e551b17f10 100644 --- a/clients/client-rds/src/commands/SwitchoverGlobalClusterCommand.ts +++ b/clients/client-rds/src/commands/SwitchoverGlobalClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SwitchoverGlobalClusterMessage, SwitchoverGlobalClusterResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { SwitchoverGlobalClusterMessage, SwitchoverGlobalClusterResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { SwitchoverGlobalCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts b/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts index afb3ce1e47235..3549bb05d75a9 100644 --- a/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts +++ b/clients/client-rds/src/commands/SwitchoverReadReplicaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SwitchoverReadReplicaMessage, SwitchoverReadReplicaResult } from "../models/models_1"; -import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; +import type { SwitchoverReadReplicaMessage, SwitchoverReadReplicaResult } from "../models/models_1"; +import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; import { SwitchoverReadReplica } from "../schemas/schemas_0"; /** diff --git a/clients/client-rds/src/endpoint/EndpointParameters.ts b/clients/client-rds/src/endpoint/EndpointParameters.ts index 1dc6b89669c6b..1e9774efc5621 100644 --- a/clients/client-rds/src/endpoint/EndpointParameters.ts +++ b/clients/client-rds/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-rds/src/endpoint/endpointResolver.ts b/clients/client-rds/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-rds/src/endpoint/endpointResolver.ts +++ b/clients/client-rds/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-rds/src/extensionConfiguration.ts b/clients/client-rds/src/extensionConfiguration.ts index 2987ca4d30045..538e76958d64f 100644 --- a/clients/client-rds/src/extensionConfiguration.ts +++ b/clients/client-rds/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-rds/src/models/RDSServiceException.ts b/clients/client-rds/src/models/RDSServiceException.ts index 4500ece40cbf3..58431c460ded0 100644 --- a/clients/client-rds/src/models/RDSServiceException.ts +++ b/clients/client-rds/src/models/RDSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-rds/src/models/errors.ts b/clients/client-rds/src/models/errors.ts index fc810e9e95281..bab9786328469 100644 --- a/clients/client-rds/src/models/errors.ts +++ b/clients/client-rds/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RDSServiceException as __BaseException } from "./RDSServiceException"; diff --git a/clients/client-rds/src/pagination/DescribeBlueGreenDeploymentsPaginator.ts b/clients/client-rds/src/pagination/DescribeBlueGreenDeploymentsPaginator.ts index d9c4795dc107b..cd9bfefa14437 100644 --- a/clients/client-rds/src/pagination/DescribeBlueGreenDeploymentsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeBlueGreenDeploymentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeBlueGreenDeploymentsCommand, diff --git a/clients/client-rds/src/pagination/DescribeCertificatesPaginator.ts b/clients/client-rds/src/pagination/DescribeCertificatesPaginator.ts index 2d68a980e3290..adc3bcac44073 100644 --- a/clients/client-rds/src/pagination/DescribeCertificatesPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCertificatesCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBClusterAutomatedBackupsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBClusterAutomatedBackupsPaginator.ts index e920465f8d828..74a09c00fb4a2 100644 --- a/clients/client-rds/src/pagination/DescribeDBClusterAutomatedBackupsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBClusterAutomatedBackupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterAutomatedBackupsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBClusterBacktracksPaginator.ts b/clients/client-rds/src/pagination/DescribeDBClusterBacktracksPaginator.ts index 420ce5865be28..d49dd30cfffc5 100644 --- a/clients/client-rds/src/pagination/DescribeDBClusterBacktracksPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBClusterBacktracksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterBacktracksCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBClusterEndpointsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBClusterEndpointsPaginator.ts index 59a67c92c9179..9ad229dfd682e 100644 --- a/clients/client-rds/src/pagination/DescribeDBClusterEndpointsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBClusterEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterEndpointsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts index 1ffcede903379..2902e0724ccd5 100644 --- a/clients/client-rds/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBClusterParameterGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterParameterGroupsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBClusterParametersPaginator.ts b/clients/client-rds/src/pagination/DescribeDBClusterParametersPaginator.ts index 033567d6311e5..abc08f23cedb3 100644 --- a/clients/client-rds/src/pagination/DescribeDBClusterParametersPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBClusterParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterParametersCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBClusterSnapshotsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBClusterSnapshotsPaginator.ts index d6547405cb9a7..8e97f6715510b 100644 --- a/clients/client-rds/src/pagination/DescribeDBClusterSnapshotsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBClusterSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClusterSnapshotsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBClustersPaginator.ts b/clients/client-rds/src/pagination/DescribeDBClustersPaginator.ts index 317b1ccb39d76..32d19dd71d19a 100644 --- a/clients/client-rds/src/pagination/DescribeDBClustersPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBClustersCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBEngineVersionsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBEngineVersionsPaginator.ts index ff9e508f22fc2..f8cc9bb60c871 100644 --- a/clients/client-rds/src/pagination/DescribeDBEngineVersionsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBEngineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBEngineVersionsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBInstanceAutomatedBackupsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBInstanceAutomatedBackupsPaginator.ts index 9e393cc6ee4f5..55dfb8968806a 100644 --- a/clients/client-rds/src/pagination/DescribeDBInstanceAutomatedBackupsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBInstanceAutomatedBackupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBInstanceAutomatedBackupsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBInstancesPaginator.ts b/clients/client-rds/src/pagination/DescribeDBInstancesPaginator.ts index f5680133e0e25..aaecf052dcf2b 100644 --- a/clients/client-rds/src/pagination/DescribeDBInstancesPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBInstancesCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBLogFilesPaginator.ts b/clients/client-rds/src/pagination/DescribeDBLogFilesPaginator.ts index 2d5f0be8187e9..5ca4c6bd74ac4 100644 --- a/clients/client-rds/src/pagination/DescribeDBLogFilesPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBLogFilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBLogFilesCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBMajorEngineVersionsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBMajorEngineVersionsPaginator.ts index a2bb7af239be9..bec28e1357c5d 100644 --- a/clients/client-rds/src/pagination/DescribeDBMajorEngineVersionsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBMajorEngineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBMajorEngineVersionsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBParameterGroupsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBParameterGroupsPaginator.ts index a20763cd09c5b..08b56d93767eb 100644 --- a/clients/client-rds/src/pagination/DescribeDBParameterGroupsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBParameterGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBParameterGroupsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBParametersPaginator.ts b/clients/client-rds/src/pagination/DescribeDBParametersPaginator.ts index 43062f8269299..24ea881420e86 100644 --- a/clients/client-rds/src/pagination/DescribeDBParametersPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBParametersCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBProxiesPaginator.ts b/clients/client-rds/src/pagination/DescribeDBProxiesPaginator.ts index 41a809539aeaf..2a704d92791d4 100644 --- a/clients/client-rds/src/pagination/DescribeDBProxiesPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBProxiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBProxiesCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBProxyEndpointsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBProxyEndpointsPaginator.ts index 6716f9f12f422..77115599082c7 100644 --- a/clients/client-rds/src/pagination/DescribeDBProxyEndpointsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBProxyEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBProxyEndpointsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBProxyTargetGroupsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBProxyTargetGroupsPaginator.ts index be599eee859dc..b97a0ecc92ed0 100644 --- a/clients/client-rds/src/pagination/DescribeDBProxyTargetGroupsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBProxyTargetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBProxyTargetGroupsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBProxyTargetsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBProxyTargetsPaginator.ts index 5ddf797075433..ba4f7ab01f135 100644 --- a/clients/client-rds/src/pagination/DescribeDBProxyTargetsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBProxyTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBProxyTargetsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBRecommendationsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBRecommendationsPaginator.ts index c6f48fe68546d..54bfaee3e84f4 100644 --- a/clients/client-rds/src/pagination/DescribeDBRecommendationsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBRecommendationsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBSecurityGroupsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBSecurityGroupsPaginator.ts index 4afe530947a56..5368225cfd7a5 100644 --- a/clients/client-rds/src/pagination/DescribeDBSecurityGroupsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBSecurityGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBSecurityGroupsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBSnapshotTenantDatabasesPaginator.ts b/clients/client-rds/src/pagination/DescribeDBSnapshotTenantDatabasesPaginator.ts index 747c4fe9e3a38..b90b40ad21719 100644 --- a/clients/client-rds/src/pagination/DescribeDBSnapshotTenantDatabasesPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBSnapshotTenantDatabasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBSnapshotTenantDatabasesCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBSnapshotsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBSnapshotsPaginator.ts index 3e8e9f9046a12..55a55ea97ca7b 100644 --- a/clients/client-rds/src/pagination/DescribeDBSnapshotsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBSnapshotsCommand, diff --git a/clients/client-rds/src/pagination/DescribeDBSubnetGroupsPaginator.ts b/clients/client-rds/src/pagination/DescribeDBSubnetGroupsPaginator.ts index 0ff53a02e2464..a5b3273b5cd3d 100644 --- a/clients/client-rds/src/pagination/DescribeDBSubnetGroupsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeDBSubnetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDBSubnetGroupsCommand, diff --git a/clients/client-rds/src/pagination/DescribeEngineDefaultParametersPaginator.ts b/clients/client-rds/src/pagination/DescribeEngineDefaultParametersPaginator.ts index 9d224bb87b006..6336de4892a04 100644 --- a/clients/client-rds/src/pagination/DescribeEngineDefaultParametersPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeEngineDefaultParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEngineDefaultParametersCommand, diff --git a/clients/client-rds/src/pagination/DescribeEventSubscriptionsPaginator.ts b/clients/client-rds/src/pagination/DescribeEventSubscriptionsPaginator.ts index 59379e7cea1d6..3dbac90aa951a 100644 --- a/clients/client-rds/src/pagination/DescribeEventSubscriptionsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeEventSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventSubscriptionsCommand, diff --git a/clients/client-rds/src/pagination/DescribeEventsPaginator.ts b/clients/client-rds/src/pagination/DescribeEventsPaginator.ts index b84750c257d3e..202b383d415a8 100644 --- a/clients/client-rds/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsCommand, diff --git a/clients/client-rds/src/pagination/DescribeExportTasksPaginator.ts b/clients/client-rds/src/pagination/DescribeExportTasksPaginator.ts index 4320fe39e3d60..9d27b1e07637e 100644 --- a/clients/client-rds/src/pagination/DescribeExportTasksPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeExportTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeExportTasksCommand, diff --git a/clients/client-rds/src/pagination/DescribeGlobalClustersPaginator.ts b/clients/client-rds/src/pagination/DescribeGlobalClustersPaginator.ts index ea46532282eb3..33c926042207d 100644 --- a/clients/client-rds/src/pagination/DescribeGlobalClustersPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeGlobalClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGlobalClustersCommand, diff --git a/clients/client-rds/src/pagination/DescribeIntegrationsPaginator.ts b/clients/client-rds/src/pagination/DescribeIntegrationsPaginator.ts index c5d1fa73d135b..a4ce85584705c 100644 --- a/clients/client-rds/src/pagination/DescribeIntegrationsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeIntegrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIntegrationsCommand, diff --git a/clients/client-rds/src/pagination/DescribeOptionGroupOptionsPaginator.ts b/clients/client-rds/src/pagination/DescribeOptionGroupOptionsPaginator.ts index e978093d29e3b..4f6c96a4a67b6 100644 --- a/clients/client-rds/src/pagination/DescribeOptionGroupOptionsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeOptionGroupOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOptionGroupOptionsCommand, diff --git a/clients/client-rds/src/pagination/DescribeOptionGroupsPaginator.ts b/clients/client-rds/src/pagination/DescribeOptionGroupsPaginator.ts index 73c37636c8026..6eb5cd31ed28d 100644 --- a/clients/client-rds/src/pagination/DescribeOptionGroupsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeOptionGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOptionGroupsCommand, diff --git a/clients/client-rds/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts b/clients/client-rds/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts index b44839f09d761..8705b0febd3ed 100644 --- a/clients/client-rds/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeOrderableDBInstanceOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrderableDBInstanceOptionsCommand, diff --git a/clients/client-rds/src/pagination/DescribePendingMaintenanceActionsPaginator.ts b/clients/client-rds/src/pagination/DescribePendingMaintenanceActionsPaginator.ts index 0071c13029995..7fb4826db1f29 100644 --- a/clients/client-rds/src/pagination/DescribePendingMaintenanceActionsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribePendingMaintenanceActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePendingMaintenanceActionsCommand, diff --git a/clients/client-rds/src/pagination/DescribeReservedDBInstancesOfferingsPaginator.ts b/clients/client-rds/src/pagination/DescribeReservedDBInstancesOfferingsPaginator.ts index 003551804d6ff..468e783d5fc8d 100644 --- a/clients/client-rds/src/pagination/DescribeReservedDBInstancesOfferingsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeReservedDBInstancesOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedDBInstancesOfferingsCommand, diff --git a/clients/client-rds/src/pagination/DescribeReservedDBInstancesPaginator.ts b/clients/client-rds/src/pagination/DescribeReservedDBInstancesPaginator.ts index ed85eaef1f6b2..90c296d69d719 100644 --- a/clients/client-rds/src/pagination/DescribeReservedDBInstancesPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeReservedDBInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedDBInstancesCommand, diff --git a/clients/client-rds/src/pagination/DescribeSourceRegionsPaginator.ts b/clients/client-rds/src/pagination/DescribeSourceRegionsPaginator.ts index c02a63db37fdf..20d594696ce37 100644 --- a/clients/client-rds/src/pagination/DescribeSourceRegionsPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeSourceRegionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSourceRegionsCommand, diff --git a/clients/client-rds/src/pagination/DescribeTenantDatabasesPaginator.ts b/clients/client-rds/src/pagination/DescribeTenantDatabasesPaginator.ts index c4bcdeeb03730..7e7255f05990b 100644 --- a/clients/client-rds/src/pagination/DescribeTenantDatabasesPaginator.ts +++ b/clients/client-rds/src/pagination/DescribeTenantDatabasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTenantDatabasesCommand, diff --git a/clients/client-rds/src/pagination/DownloadDBLogFilePortionPaginator.ts b/clients/client-rds/src/pagination/DownloadDBLogFilePortionPaginator.ts index d6ef9558a854c..898a925c7d2a2 100644 --- a/clients/client-rds/src/pagination/DownloadDBLogFilePortionPaginator.ts +++ b/clients/client-rds/src/pagination/DownloadDBLogFilePortionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DownloadDBLogFilePortionCommand, diff --git a/clients/client-rds/src/pagination/Interfaces.ts b/clients/client-rds/src/pagination/Interfaces.ts index 7e645f4129065..16539b68fe172 100644 --- a/clients/client-rds/src/pagination/Interfaces.ts +++ b/clients/client-rds/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RDSClient } from "../RDSClient"; diff --git a/clients/client-rds/src/runtimeConfig.browser.ts b/clients/client-rds/src/runtimeConfig.browser.ts index ac525b27c9691..6ab779e9dd633 100644 --- a/clients/client-rds/src/runtimeConfig.browser.ts +++ b/clients/client-rds/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RDSClientConfig } from "./RDSClient"; + +import type { RDSClientConfig } from "./RDSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-rds/src/runtimeConfig.native.ts b/clients/client-rds/src/runtimeConfig.native.ts index 5d65447458643..d90ebb4193e6d 100644 --- a/clients/client-rds/src/runtimeConfig.native.ts +++ b/clients/client-rds/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RDSClientConfig } from "./RDSClient"; +import type { RDSClientConfig } from "./RDSClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-rds/src/runtimeConfig.shared.ts b/clients/client-rds/src/runtimeConfig.shared.ts index a5e63f038f281..5bb011b4dd5e7 100644 --- a/clients/client-rds/src/runtimeConfig.shared.ts +++ b/clients/client-rds/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRDSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RDSClientConfig } from "./RDSClient"; +import type { RDSClientConfig } from "./RDSClient"; /** * @internal diff --git a/clients/client-rds/src/runtimeConfig.ts b/clients/client-rds/src/runtimeConfig.ts index 84e89d1ea93d3..7bae2d9b36b11 100644 --- a/clients/client-rds/src/runtimeConfig.ts +++ b/clients/client-rds/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RDSClientConfig } from "./RDSClient"; + +import type { RDSClientConfig } from "./RDSClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-rds/src/runtimeExtensions.ts b/clients/client-rds/src/runtimeExtensions.ts index 819b0c0fdb6c2..61b7333ab54f6 100644 --- a/clients/client-rds/src/runtimeExtensions.ts +++ b/clients/client-rds/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RDSExtensionConfiguration } from "./extensionConfiguration"; +import type { RDSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-rds/src/schemas/schemas_0.ts b/clients/client-rds/src/schemas/schemas_0.ts index ad8e4e9e8d526..120d4cfeb51e6 100644 --- a/clients/client-rds/src/schemas/schemas_0.ts +++ b/clients/client-rds/src/schemas/schemas_0.ts @@ -1506,7 +1506,7 @@ const n0 = "com.amazonaws.rds"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-redshift-data/package.json b/clients/client-redshift-data/package.json index 38b9e608a1e7f..70f3f0309bb54 100644 --- a/clients/client-redshift-data/package.json +++ b/clients/client-redshift-data/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-redshift-data/src/RedshiftData.ts b/clients/client-redshift-data/src/RedshiftData.ts index ecb8a0cc79c71..785716ce0c91e 100644 --- a/clients/client-redshift-data/src/RedshiftData.ts +++ b/clients/client-redshift-data/src/RedshiftData.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchExecuteStatementCommand, @@ -49,7 +49,7 @@ import { ListStatementsCommandOutput, } from "./commands/ListStatementsCommand"; import { ListTablesCommand, ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand"; -import { RedshiftDataClient, RedshiftDataClientConfig } from "./RedshiftDataClient"; +import { RedshiftDataClient } from "./RedshiftDataClient"; const commands = { BatchExecuteStatementCommand, diff --git a/clients/client-redshift-data/src/RedshiftDataClient.ts b/clients/client-redshift-data/src/RedshiftDataClient.ts index de838804818bc..9a951ab7e778c 100644 --- a/clients/client-redshift-data/src/RedshiftDataClient.ts +++ b/clients/client-redshift-data/src/RedshiftDataClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRedshiftDataHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -81,7 +90,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-redshift-data/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-redshift-data/src/auth/httpAuthExtensionConfiguration.ts index 963c7a62a9fc8..109da4788d7a0 100644 --- a/clients/client-redshift-data/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-redshift-data/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RedshiftDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RedshiftDataHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-redshift-data/src/auth/httpAuthSchemeProvider.ts b/clients/client-redshift-data/src/auth/httpAuthSchemeProvider.ts index 132884db975a2..bc1185e2bae5d 100644 --- a/clients/client-redshift-data/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-redshift-data/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RedshiftDataClientConfig, RedshiftDataClientResolvedConfig } from "../RedshiftDataClient"; +import { type RedshiftDataClientResolvedConfig, RedshiftDataClientConfig } from "../RedshiftDataClient"; /** * @internal diff --git a/clients/client-redshift-data/src/commands/BatchExecuteStatementCommand.ts b/clients/client-redshift-data/src/commands/BatchExecuteStatementCommand.ts index 5be8d5bcbee46..f139dc674c11e 100644 --- a/clients/client-redshift-data/src/commands/BatchExecuteStatementCommand.ts +++ b/clients/client-redshift-data/src/commands/BatchExecuteStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchExecuteStatementInput, BatchExecuteStatementOutput } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { BatchExecuteStatementInput, BatchExecuteStatementOutput } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { BatchExecuteStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/CancelStatementCommand.ts b/clients/client-redshift-data/src/commands/CancelStatementCommand.ts index c72a05853e7bd..c58dddffdb6ab 100644 --- a/clients/client-redshift-data/src/commands/CancelStatementCommand.ts +++ b/clients/client-redshift-data/src/commands/CancelStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelStatementRequest, CancelStatementResponse } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { CancelStatementRequest, CancelStatementResponse } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { CancelStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/DescribeStatementCommand.ts b/clients/client-redshift-data/src/commands/DescribeStatementCommand.ts index a306d7bd0848d..2afb46ad08e83 100644 --- a/clients/client-redshift-data/src/commands/DescribeStatementCommand.ts +++ b/clients/client-redshift-data/src/commands/DescribeStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStatementRequest, DescribeStatementResponse } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { DescribeStatementRequest, DescribeStatementResponse } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { DescribeStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/DescribeTableCommand.ts b/clients/client-redshift-data/src/commands/DescribeTableCommand.ts index d06d8b5c96800..276b33606ef7e 100644 --- a/clients/client-redshift-data/src/commands/DescribeTableCommand.ts +++ b/clients/client-redshift-data/src/commands/DescribeTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTableRequest, DescribeTableResponse } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { DescribeTableRequest, DescribeTableResponse } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { DescribeTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/ExecuteStatementCommand.ts b/clients/client-redshift-data/src/commands/ExecuteStatementCommand.ts index 65083e132e4bf..454a79798e879 100644 --- a/clients/client-redshift-data/src/commands/ExecuteStatementCommand.ts +++ b/clients/client-redshift-data/src/commands/ExecuteStatementCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteStatementInput, ExecuteStatementOutput } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { ExecuteStatementInput, ExecuteStatementOutput } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { ExecuteStatement } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/GetStatementResultCommand.ts b/clients/client-redshift-data/src/commands/GetStatementResultCommand.ts index 24ac2072d5dbf..035b5e10bc367 100644 --- a/clients/client-redshift-data/src/commands/GetStatementResultCommand.ts +++ b/clients/client-redshift-data/src/commands/GetStatementResultCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStatementResultRequest, GetStatementResultResponse } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { GetStatementResultRequest, GetStatementResultResponse } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { GetStatementResult } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/GetStatementResultV2Command.ts b/clients/client-redshift-data/src/commands/GetStatementResultV2Command.ts index 79f4868a4d24c..09af4bfdf82d9 100644 --- a/clients/client-redshift-data/src/commands/GetStatementResultV2Command.ts +++ b/clients/client-redshift-data/src/commands/GetStatementResultV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStatementResultV2Request, GetStatementResultV2Response } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { GetStatementResultV2Request, GetStatementResultV2Response } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { GetStatementResultV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/ListDatabasesCommand.ts b/clients/client-redshift-data/src/commands/ListDatabasesCommand.ts index 4ba0c8eb3d2c6..a7ddd97490cdc 100644 --- a/clients/client-redshift-data/src/commands/ListDatabasesCommand.ts +++ b/clients/client-redshift-data/src/commands/ListDatabasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatabasesRequest, ListDatabasesResponse } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { ListDatabasesRequest, ListDatabasesResponse } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { ListDatabases } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/ListSchemasCommand.ts b/clients/client-redshift-data/src/commands/ListSchemasCommand.ts index 2782e8d5fa192..ae46c4fb7534c 100644 --- a/clients/client-redshift-data/src/commands/ListSchemasCommand.ts +++ b/clients/client-redshift-data/src/commands/ListSchemasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSchemasRequest, ListSchemasResponse } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { ListSchemasRequest, ListSchemasResponse } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { ListSchemas } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/ListStatementsCommand.ts b/clients/client-redshift-data/src/commands/ListStatementsCommand.ts index a930255293cf3..cd794a34ff3e2 100644 --- a/clients/client-redshift-data/src/commands/ListStatementsCommand.ts +++ b/clients/client-redshift-data/src/commands/ListStatementsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStatementsRequest, ListStatementsResponse } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { ListStatementsRequest, ListStatementsResponse } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { ListStatements } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/commands/ListTablesCommand.ts b/clients/client-redshift-data/src/commands/ListTablesCommand.ts index e28d23ca55b36..7972cc861dae1 100644 --- a/clients/client-redshift-data/src/commands/ListTablesCommand.ts +++ b/clients/client-redshift-data/src/commands/ListTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTablesRequest, ListTablesResponse } from "../models/models_0"; -import { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; +import type { ListTablesRequest, ListTablesResponse } from "../models/models_0"; +import type { RedshiftDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftDataClient"; import { ListTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift-data/src/endpoint/EndpointParameters.ts b/clients/client-redshift-data/src/endpoint/EndpointParameters.ts index d25a553f0e41d..b3993f19d0eb0 100644 --- a/clients/client-redshift-data/src/endpoint/EndpointParameters.ts +++ b/clients/client-redshift-data/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-redshift-data/src/endpoint/endpointResolver.ts b/clients/client-redshift-data/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-redshift-data/src/endpoint/endpointResolver.ts +++ b/clients/client-redshift-data/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-redshift-data/src/extensionConfiguration.ts b/clients/client-redshift-data/src/extensionConfiguration.ts index 825e7e75e6033..dd50bf6d0c577 100644 --- a/clients/client-redshift-data/src/extensionConfiguration.ts +++ b/clients/client-redshift-data/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-redshift-data/src/models/RedshiftDataServiceException.ts b/clients/client-redshift-data/src/models/RedshiftDataServiceException.ts index eb1814296e448..e52977f0346ee 100644 --- a/clients/client-redshift-data/src/models/RedshiftDataServiceException.ts +++ b/clients/client-redshift-data/src/models/RedshiftDataServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-redshift-data/src/models/errors.ts b/clients/client-redshift-data/src/models/errors.ts index dcd1eb572f70d..1764058d6927d 100644 --- a/clients/client-redshift-data/src/models/errors.ts +++ b/clients/client-redshift-data/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RedshiftDataServiceException as __BaseException } from "./RedshiftDataServiceException"; diff --git a/clients/client-redshift-data/src/pagination/DescribeTablePaginator.ts b/clients/client-redshift-data/src/pagination/DescribeTablePaginator.ts index 1348dddc06422..61034694fc716 100644 --- a/clients/client-redshift-data/src/pagination/DescribeTablePaginator.ts +++ b/clients/client-redshift-data/src/pagination/DescribeTablePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTableCommand, diff --git a/clients/client-redshift-data/src/pagination/GetStatementResultPaginator.ts b/clients/client-redshift-data/src/pagination/GetStatementResultPaginator.ts index 47d4cb7c830d3..a172a6e64bd00 100644 --- a/clients/client-redshift-data/src/pagination/GetStatementResultPaginator.ts +++ b/clients/client-redshift-data/src/pagination/GetStatementResultPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetStatementResultCommand, diff --git a/clients/client-redshift-data/src/pagination/GetStatementResultV2Paginator.ts b/clients/client-redshift-data/src/pagination/GetStatementResultV2Paginator.ts index b9359ab79fd30..fe96a93eb96da 100644 --- a/clients/client-redshift-data/src/pagination/GetStatementResultV2Paginator.ts +++ b/clients/client-redshift-data/src/pagination/GetStatementResultV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetStatementResultV2Command, diff --git a/clients/client-redshift-data/src/pagination/Interfaces.ts b/clients/client-redshift-data/src/pagination/Interfaces.ts index e83c355e7d778..3d744e61f0529 100644 --- a/clients/client-redshift-data/src/pagination/Interfaces.ts +++ b/clients/client-redshift-data/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RedshiftDataClient } from "../RedshiftDataClient"; diff --git a/clients/client-redshift-data/src/pagination/ListDatabasesPaginator.ts b/clients/client-redshift-data/src/pagination/ListDatabasesPaginator.ts index 8d6cf051bc251..439141a926e06 100644 --- a/clients/client-redshift-data/src/pagination/ListDatabasesPaginator.ts +++ b/clients/client-redshift-data/src/pagination/ListDatabasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatabasesCommand, diff --git a/clients/client-redshift-data/src/pagination/ListSchemasPaginator.ts b/clients/client-redshift-data/src/pagination/ListSchemasPaginator.ts index deb5d5c576790..868298051c729 100644 --- a/clients/client-redshift-data/src/pagination/ListSchemasPaginator.ts +++ b/clients/client-redshift-data/src/pagination/ListSchemasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchemasCommand, ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand"; import { RedshiftDataClient } from "../RedshiftDataClient"; diff --git a/clients/client-redshift-data/src/pagination/ListStatementsPaginator.ts b/clients/client-redshift-data/src/pagination/ListStatementsPaginator.ts index 0b91f97a5e1ff..a7f5ae2180d91 100644 --- a/clients/client-redshift-data/src/pagination/ListStatementsPaginator.ts +++ b/clients/client-redshift-data/src/pagination/ListStatementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStatementsCommand, diff --git a/clients/client-redshift-data/src/pagination/ListTablesPaginator.ts b/clients/client-redshift-data/src/pagination/ListTablesPaginator.ts index fbcbf1d18d71b..1bd8358d71737 100644 --- a/clients/client-redshift-data/src/pagination/ListTablesPaginator.ts +++ b/clients/client-redshift-data/src/pagination/ListTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTablesCommand, ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand"; import { RedshiftDataClient } from "../RedshiftDataClient"; diff --git a/clients/client-redshift-data/src/runtimeConfig.browser.ts b/clients/client-redshift-data/src/runtimeConfig.browser.ts index 63b536c286ae2..d51dfeb12a484 100644 --- a/clients/client-redshift-data/src/runtimeConfig.browser.ts +++ b/clients/client-redshift-data/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RedshiftDataClientConfig } from "./RedshiftDataClient"; + +import type { RedshiftDataClientConfig } from "./RedshiftDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-redshift-data/src/runtimeConfig.native.ts b/clients/client-redshift-data/src/runtimeConfig.native.ts index e8f26f9da070e..47bc868176a1b 100644 --- a/clients/client-redshift-data/src/runtimeConfig.native.ts +++ b/clients/client-redshift-data/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RedshiftDataClientConfig } from "./RedshiftDataClient"; +import type { RedshiftDataClientConfig } from "./RedshiftDataClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-redshift-data/src/runtimeConfig.shared.ts b/clients/client-redshift-data/src/runtimeConfig.shared.ts index 2d8ffe60cc89c..db63bb13341eb 100644 --- a/clients/client-redshift-data/src/runtimeConfig.shared.ts +++ b/clients/client-redshift-data/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRedshiftDataHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RedshiftDataClientConfig } from "./RedshiftDataClient"; +import type { RedshiftDataClientConfig } from "./RedshiftDataClient"; /** * @internal diff --git a/clients/client-redshift-data/src/runtimeConfig.ts b/clients/client-redshift-data/src/runtimeConfig.ts index 8cdf8c974321e..5df13ba7d2f7b 100644 --- a/clients/client-redshift-data/src/runtimeConfig.ts +++ b/clients/client-redshift-data/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RedshiftDataClientConfig } from "./RedshiftDataClient"; + +import type { RedshiftDataClientConfig } from "./RedshiftDataClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-redshift-data/src/runtimeExtensions.ts b/clients/client-redshift-data/src/runtimeExtensions.ts index 2039c17a57306..f67193d131d77 100644 --- a/clients/client-redshift-data/src/runtimeExtensions.ts +++ b/clients/client-redshift-data/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RedshiftDataExtensionConfiguration } from "./extensionConfiguration"; +import type { RedshiftDataExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-redshift-data/src/schemas/schemas_0.ts b/clients/client-redshift-data/src/schemas/schemas_0.ts index 44ac853109760..60b2998a3a584 100644 --- a/clients/client-redshift-data/src/schemas/schemas_0.ts +++ b/clients/client-redshift-data/src/schemas/schemas_0.ts @@ -137,7 +137,7 @@ const n0 = "com.amazonaws.redshiftdata"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ActiveSessionsExceededException as __ActiveSessionsExceededException, diff --git a/clients/client-redshift-serverless/package.json b/clients/client-redshift-serverless/package.json index 4cba4c4c92401..dcfffdef3d9bb 100644 --- a/clients/client-redshift-serverless/package.json +++ b/clients/client-redshift-serverless/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-redshift-serverless/src/RedshiftServerless.ts b/clients/client-redshift-serverless/src/RedshiftServerless.ts index c00dc74fa1c69..37b1249c8bc55 100644 --- a/clients/client-redshift-serverless/src/RedshiftServerless.ts +++ b/clients/client-redshift-serverless/src/RedshiftServerless.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ConvertRecoveryPointToSnapshotCommand, @@ -306,7 +306,7 @@ import { UpdateWorkgroupCommandInput, UpdateWorkgroupCommandOutput, } from "./commands/UpdateWorkgroupCommand"; -import { RedshiftServerlessClient, RedshiftServerlessClientConfig } from "./RedshiftServerlessClient"; +import { RedshiftServerlessClient } from "./RedshiftServerlessClient"; const commands = { ConvertRecoveryPointToSnapshotCommand, diff --git a/clients/client-redshift-serverless/src/RedshiftServerlessClient.ts b/clients/client-redshift-serverless/src/RedshiftServerlessClient.ts index a8c4def4bf559..f19f2fc8a6967 100644 --- a/clients/client-redshift-serverless/src/RedshiftServerlessClient.ts +++ b/clients/client-redshift-serverless/src/RedshiftServerlessClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRedshiftServerlessHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -215,7 +224,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-redshift-serverless/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-redshift-serverless/src/auth/httpAuthExtensionConfiguration.ts index e725155350fcc..91d5a4c901967 100644 --- a/clients/client-redshift-serverless/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-redshift-serverless/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RedshiftServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RedshiftServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-redshift-serverless/src/auth/httpAuthSchemeProvider.ts b/clients/client-redshift-serverless/src/auth/httpAuthSchemeProvider.ts index 2ca4413be546a..74b051697a977 100644 --- a/clients/client-redshift-serverless/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-redshift-serverless/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RedshiftServerlessClientConfig, RedshiftServerlessClientResolvedConfig } from "../RedshiftServerlessClient"; +import { + type RedshiftServerlessClientResolvedConfig, + RedshiftServerlessClientConfig, +} from "../RedshiftServerlessClient"; /** * @internal diff --git a/clients/client-redshift-serverless/src/commands/ConvertRecoveryPointToSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/ConvertRecoveryPointToSnapshotCommand.ts index 320068b37bbad..d6af2afb3d380 100644 --- a/clients/client-redshift-serverless/src/commands/ConvertRecoveryPointToSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ConvertRecoveryPointToSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConvertRecoveryPointToSnapshotRequest, ConvertRecoveryPointToSnapshotResponse } from "../models/models_0"; -import { +import type { ConvertRecoveryPointToSnapshotRequest, ConvertRecoveryPointToSnapshotResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/CreateCustomDomainAssociationCommand.ts b/clients/client-redshift-serverless/src/commands/CreateCustomDomainAssociationCommand.ts index 87feab7a6e80c..53082625d3bb8 100644 --- a/clients/client-redshift-serverless/src/commands/CreateCustomDomainAssociationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateCustomDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomDomainAssociationRequest, CreateCustomDomainAssociationResponse } from "../models/models_0"; -import { +import type { CreateCustomDomainAssociationRequest, CreateCustomDomainAssociationResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/CreateEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/CreateEndpointAccessCommand.ts index db372299471cd..76268dc5793ae 100644 --- a/clients/client-redshift-serverless/src/commands/CreateEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEndpointAccessRequest, CreateEndpointAccessResponse } from "../models/models_0"; -import { +import type { CreateEndpointAccessRequest, CreateEndpointAccessResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/CreateNamespaceCommand.ts b/clients/client-redshift-serverless/src/commands/CreateNamespaceCommand.ts index 8c5d2871333ef..ba69b51b618eb 100644 --- a/clients/client-redshift-serverless/src/commands/CreateNamespaceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNamespaceRequest, CreateNamespaceResponse } from "../models/models_0"; -import { +import type { CreateNamespaceRequest, CreateNamespaceResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/CreateReservationCommand.ts b/clients/client-redshift-serverless/src/commands/CreateReservationCommand.ts index 5ec6e90af722e..a593b7f4a66d8 100644 --- a/clients/client-redshift-serverless/src/commands/CreateReservationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReservationRequest, CreateReservationResponse } from "../models/models_0"; -import { +import type { CreateReservationRequest, CreateReservationResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/CreateScheduledActionCommand.ts b/clients/client-redshift-serverless/src/commands/CreateScheduledActionCommand.ts index 3324d6d8227c3..da0abe71d414a 100644 --- a/clients/client-redshift-serverless/src/commands/CreateScheduledActionCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateScheduledActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScheduledActionRequest, CreateScheduledActionResponse } from "../models/models_0"; -import { +import type { CreateScheduledActionRequest, CreateScheduledActionResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/CreateSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/CreateSnapshotCommand.ts index 37f9468f55bc5..1cb9365ed95a3 100644 --- a/clients/client-redshift-serverless/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotRequest, CreateSnapshotResponse } from "../models/models_0"; -import { +import type { CreateSnapshotRequest, CreateSnapshotResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/CreateSnapshotCopyConfigurationCommand.ts b/clients/client-redshift-serverless/src/commands/CreateSnapshotCopyConfigurationCommand.ts index 3ca2d9601003f..293cd976c7ca4 100644 --- a/clients/client-redshift-serverless/src/commands/CreateSnapshotCopyConfigurationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateSnapshotCopyConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotCopyConfigurationRequest, CreateSnapshotCopyConfigurationResponse } from "../models/models_0"; -import { +import type { + CreateSnapshotCopyConfigurationRequest, + CreateSnapshotCopyConfigurationResponse, +} from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/CreateUsageLimitCommand.ts b/clients/client-redshift-serverless/src/commands/CreateUsageLimitCommand.ts index 9631c28bd4f27..c995c6bb63176 100644 --- a/clients/client-redshift-serverless/src/commands/CreateUsageLimitCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateUsageLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUsageLimitRequest, CreateUsageLimitResponse } from "../models/models_0"; -import { +import type { CreateUsageLimitRequest, CreateUsageLimitResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/CreateWorkgroupCommand.ts b/clients/client-redshift-serverless/src/commands/CreateWorkgroupCommand.ts index 5f5966ee24dc2..a3fe6ad182d66 100644 --- a/clients/client-redshift-serverless/src/commands/CreateWorkgroupCommand.ts +++ b/clients/client-redshift-serverless/src/commands/CreateWorkgroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkgroupRequest, CreateWorkgroupResponse } from "../models/models_0"; -import { +import type { CreateWorkgroupRequest, CreateWorkgroupResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/DeleteCustomDomainAssociationCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteCustomDomainAssociationCommand.ts index ba30f9ef69f4b..80cff21514afc 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteCustomDomainAssociationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteCustomDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomDomainAssociationRequest, DeleteCustomDomainAssociationResponse } from "../models/models_0"; -import { +import type { DeleteCustomDomainAssociationRequest, DeleteCustomDomainAssociationResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/DeleteEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteEndpointAccessCommand.ts index a1876b7db5dbf..f161544ccafe0 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEndpointAccessRequest, DeleteEndpointAccessResponse } from "../models/models_0"; -import { +import type { DeleteEndpointAccessRequest, DeleteEndpointAccessResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/DeleteNamespaceCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteNamespaceCommand.ts index f584c2aa08e0c..a50edcbad0c5e 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0"; -import { +import type { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteResourcePolicyCommand.ts index 39ac05314e3dc..6ed3d3a231a4d 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; -import { +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/DeleteScheduledActionCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteScheduledActionCommand.ts index 4bc09f2ec602b..547bb80f0599a 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteScheduledActionCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteScheduledActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScheduledActionRequest, DeleteScheduledActionResponse } from "../models/models_0"; -import { +import type { DeleteScheduledActionRequest, DeleteScheduledActionResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/DeleteSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteSnapshotCommand.ts index c5d1bed446a1a..e96821f4433e5 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSnapshotRequest, DeleteSnapshotResponse } from "../models/models_0"; -import { +import type { DeleteSnapshotRequest, DeleteSnapshotResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/DeleteSnapshotCopyConfigurationCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteSnapshotCopyConfigurationCommand.ts index dc26966b50728..cf1ef97c2d859 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteSnapshotCopyConfigurationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteSnapshotCopyConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSnapshotCopyConfigurationRequest, DeleteSnapshotCopyConfigurationResponse } from "../models/models_0"; -import { +import type { + DeleteSnapshotCopyConfigurationRequest, + DeleteSnapshotCopyConfigurationResponse, +} from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/DeleteUsageLimitCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteUsageLimitCommand.ts index 5f036e0a30879..549000bc106ed 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteUsageLimitCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteUsageLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUsageLimitRequest, DeleteUsageLimitResponse } from "../models/models_0"; -import { +import type { DeleteUsageLimitRequest, DeleteUsageLimitResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/DeleteWorkgroupCommand.ts b/clients/client-redshift-serverless/src/commands/DeleteWorkgroupCommand.ts index 4fbddef8a360f..f801190ec411c 100644 --- a/clients/client-redshift-serverless/src/commands/DeleteWorkgroupCommand.ts +++ b/clients/client-redshift-serverless/src/commands/DeleteWorkgroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkgroupRequest, DeleteWorkgroupResponse } from "../models/models_0"; -import { +import type { DeleteWorkgroupRequest, DeleteWorkgroupResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetCredentialsCommand.ts b/clients/client-redshift-serverless/src/commands/GetCredentialsCommand.ts index d7e448c96a518..33e654824e4bd 100644 --- a/clients/client-redshift-serverless/src/commands/GetCredentialsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCredentialsRequest, GetCredentialsResponse } from "../models/models_0"; -import { +import type { GetCredentialsRequest, GetCredentialsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetCustomDomainAssociationCommand.ts b/clients/client-redshift-serverless/src/commands/GetCustomDomainAssociationCommand.ts index c7b99dcf559fa..b917e60c9c533 100644 --- a/clients/client-redshift-serverless/src/commands/GetCustomDomainAssociationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetCustomDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCustomDomainAssociationRequest, GetCustomDomainAssociationResponse } from "../models/models_0"; -import { +import type { GetCustomDomainAssociationRequest, GetCustomDomainAssociationResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/GetEndpointAccessCommand.ts index 93fca2b23f5eb..c25923ad029f9 100644 --- a/clients/client-redshift-serverless/src/commands/GetEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEndpointAccessRequest, GetEndpointAccessResponse } from "../models/models_0"; -import { +import type { GetEndpointAccessRequest, GetEndpointAccessResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetNamespaceCommand.ts b/clients/client-redshift-serverless/src/commands/GetNamespaceCommand.ts index d6322aca52d80..798ea257753a3 100644 --- a/clients/client-redshift-serverless/src/commands/GetNamespaceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0"; -import { +import type { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetRecoveryPointCommand.ts b/clients/client-redshift-serverless/src/commands/GetRecoveryPointCommand.ts index 11fe6419cdfaf..62f2af58793da 100644 --- a/clients/client-redshift-serverless/src/commands/GetRecoveryPointCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetRecoveryPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecoveryPointRequest, GetRecoveryPointResponse } from "../models/models_0"; -import { +import type { GetRecoveryPointRequest, GetRecoveryPointResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetReservationCommand.ts b/clients/client-redshift-serverless/src/commands/GetReservationCommand.ts index 0b9b0a55c8684..0df60be053ec0 100644 --- a/clients/client-redshift-serverless/src/commands/GetReservationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetReservationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReservationRequest, GetReservationResponse } from "../models/models_0"; -import { +import type { GetReservationRequest, GetReservationResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetReservationOfferingCommand.ts b/clients/client-redshift-serverless/src/commands/GetReservationOfferingCommand.ts index 36e0d4d4febdb..9ec934a0364fd 100644 --- a/clients/client-redshift-serverless/src/commands/GetReservationOfferingCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetReservationOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReservationOfferingRequest, GetReservationOfferingResponse } from "../models/models_0"; -import { +import type { GetReservationOfferingRequest, GetReservationOfferingResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetResourcePolicyCommand.ts b/clients/client-redshift-serverless/src/commands/GetResourcePolicyCommand.ts index 0873b00496edd..47424fe11f57c 100644 --- a/clients/client-redshift-serverless/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; -import { +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetScheduledActionCommand.ts b/clients/client-redshift-serverless/src/commands/GetScheduledActionCommand.ts index 4a07d09b0fc4d..4d7c1ff5173f3 100644 --- a/clients/client-redshift-serverless/src/commands/GetScheduledActionCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetScheduledActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetScheduledActionRequest, GetScheduledActionResponse } from "../models/models_0"; -import { +import type { GetScheduledActionRequest, GetScheduledActionResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/GetSnapshotCommand.ts index 60bf91e3bd2d5..9283b5214997b 100644 --- a/clients/client-redshift-serverless/src/commands/GetSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSnapshotRequest, GetSnapshotResponse } from "../models/models_0"; -import { +import type { GetSnapshotRequest, GetSnapshotResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetTableRestoreStatusCommand.ts b/clients/client-redshift-serverless/src/commands/GetTableRestoreStatusCommand.ts index 80a94c90074e9..26a98063ff465 100644 --- a/clients/client-redshift-serverless/src/commands/GetTableRestoreStatusCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetTableRestoreStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableRestoreStatusRequest, GetTableRestoreStatusResponse } from "../models/models_0"; -import { +import type { GetTableRestoreStatusRequest, GetTableRestoreStatusResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetTrackCommand.ts b/clients/client-redshift-serverless/src/commands/GetTrackCommand.ts index abd7213de6c98..f72f9e5b0ff57 100644 --- a/clients/client-redshift-serverless/src/commands/GetTrackCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetTrackCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrackRequest, GetTrackResponse } from "../models/models_0"; -import { +import type { GetTrackRequest, GetTrackResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetUsageLimitCommand.ts b/clients/client-redshift-serverless/src/commands/GetUsageLimitCommand.ts index 5daabec17813b..2dda4f9e30e5f 100644 --- a/clients/client-redshift-serverless/src/commands/GetUsageLimitCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetUsageLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUsageLimitRequest, GetUsageLimitResponse } from "../models/models_0"; -import { +import type { GetUsageLimitRequest, GetUsageLimitResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/GetWorkgroupCommand.ts b/clients/client-redshift-serverless/src/commands/GetWorkgroupCommand.ts index 54eff94999562..07320f049b794 100644 --- a/clients/client-redshift-serverless/src/commands/GetWorkgroupCommand.ts +++ b/clients/client-redshift-serverless/src/commands/GetWorkgroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkgroupRequest, GetWorkgroupResponse } from "../models/models_0"; -import { +import type { GetWorkgroupRequest, GetWorkgroupResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListCustomDomainAssociationsCommand.ts b/clients/client-redshift-serverless/src/commands/ListCustomDomainAssociationsCommand.ts index 416fb59d400dd..be85f2865bbc0 100644 --- a/clients/client-redshift-serverless/src/commands/ListCustomDomainAssociationsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListCustomDomainAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCustomDomainAssociationsRequest, ListCustomDomainAssociationsResponse } from "../models/models_0"; -import { +import type { ListCustomDomainAssociationsRequest, ListCustomDomainAssociationsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/ListEndpointAccessCommand.ts index f08916db9e09a..9c3881fabab56 100644 --- a/clients/client-redshift-serverless/src/commands/ListEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEndpointAccessRequest, ListEndpointAccessResponse } from "../models/models_0"; -import { +import type { ListEndpointAccessRequest, ListEndpointAccessResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListManagedWorkgroupsCommand.ts b/clients/client-redshift-serverless/src/commands/ListManagedWorkgroupsCommand.ts index a0a99519731fd..69354923c4c3d 100644 --- a/clients/client-redshift-serverless/src/commands/ListManagedWorkgroupsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListManagedWorkgroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListManagedWorkgroupsRequest, ListManagedWorkgroupsResponse } from "../models/models_0"; -import { +import type { ListManagedWorkgroupsRequest, ListManagedWorkgroupsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListNamespacesCommand.ts b/clients/client-redshift-serverless/src/commands/ListNamespacesCommand.ts index 71a77c2a68df9..07f841f81fe39 100644 --- a/clients/client-redshift-serverless/src/commands/ListNamespacesCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListNamespacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_0"; -import { +import type { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListRecoveryPointsCommand.ts b/clients/client-redshift-serverless/src/commands/ListRecoveryPointsCommand.ts index eac92584dc96e..539c223d818e1 100644 --- a/clients/client-redshift-serverless/src/commands/ListRecoveryPointsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListRecoveryPointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecoveryPointsRequest, ListRecoveryPointsResponse } from "../models/models_0"; -import { +import type { ListRecoveryPointsRequest, ListRecoveryPointsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListReservationOfferingsCommand.ts b/clients/client-redshift-serverless/src/commands/ListReservationOfferingsCommand.ts index 7668400787d13..a308d1405f671 100644 --- a/clients/client-redshift-serverless/src/commands/ListReservationOfferingsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListReservationOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReservationOfferingsRequest, ListReservationOfferingsResponse } from "../models/models_0"; -import { +import type { ListReservationOfferingsRequest, ListReservationOfferingsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListReservationsCommand.ts b/clients/client-redshift-serverless/src/commands/ListReservationsCommand.ts index d64bd1bcfea7e..325ba646ad9c3 100644 --- a/clients/client-redshift-serverless/src/commands/ListReservationsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListReservationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReservationsRequest, ListReservationsResponse } from "../models/models_0"; -import { +import type { ListReservationsRequest, ListReservationsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListScheduledActionsCommand.ts b/clients/client-redshift-serverless/src/commands/ListScheduledActionsCommand.ts index 331d6b2c51f0f..74ef6bcd8cdf6 100644 --- a/clients/client-redshift-serverless/src/commands/ListScheduledActionsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListScheduledActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScheduledActionsRequest, ListScheduledActionsResponse } from "../models/models_0"; -import { +import type { ListScheduledActionsRequest, ListScheduledActionsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListSnapshotCopyConfigurationsCommand.ts b/clients/client-redshift-serverless/src/commands/ListSnapshotCopyConfigurationsCommand.ts index 68fb2a1c60e57..33b518f834005 100644 --- a/clients/client-redshift-serverless/src/commands/ListSnapshotCopyConfigurationsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListSnapshotCopyConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSnapshotCopyConfigurationsRequest, ListSnapshotCopyConfigurationsResponse } from "../models/models_0"; -import { +import type { ListSnapshotCopyConfigurationsRequest, ListSnapshotCopyConfigurationsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListSnapshotsCommand.ts b/clients/client-redshift-serverless/src/commands/ListSnapshotsCommand.ts index b74f36b45682c..5cd8c12ce4704 100644 --- a/clients/client-redshift-serverless/src/commands/ListSnapshotsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSnapshotsRequest, ListSnapshotsResponse } from "../models/models_0"; -import { +import type { ListSnapshotsRequest, ListSnapshotsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListTableRestoreStatusCommand.ts b/clients/client-redshift-serverless/src/commands/ListTableRestoreStatusCommand.ts index f81d2b288d8dc..b8b8e108609b0 100644 --- a/clients/client-redshift-serverless/src/commands/ListTableRestoreStatusCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListTableRestoreStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTableRestoreStatusRequest, ListTableRestoreStatusResponse } from "../models/models_0"; -import { +import type { ListTableRestoreStatusRequest, ListTableRestoreStatusResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListTagsForResourceCommand.ts b/clients/client-redshift-serverless/src/commands/ListTagsForResourceCommand.ts index 24f42425b6f1c..b11ab9eb91715 100644 --- a/clients/client-redshift-serverless/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListTracksCommand.ts b/clients/client-redshift-serverless/src/commands/ListTracksCommand.ts index fe9f5cd91c1a7..a4cbc8f7ff8fd 100644 --- a/clients/client-redshift-serverless/src/commands/ListTracksCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListTracksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTracksRequest, ListTracksResponse } from "../models/models_0"; -import { +import type { ListTracksRequest, ListTracksResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListUsageLimitsCommand.ts b/clients/client-redshift-serverless/src/commands/ListUsageLimitsCommand.ts index f984587e33dee..2ceef99c5c851 100644 --- a/clients/client-redshift-serverless/src/commands/ListUsageLimitsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListUsageLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsageLimitsRequest, ListUsageLimitsResponse } from "../models/models_0"; -import { +import type { ListUsageLimitsRequest, ListUsageLimitsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/ListWorkgroupsCommand.ts b/clients/client-redshift-serverless/src/commands/ListWorkgroupsCommand.ts index e82272e80ca2e..96d164c0b62e6 100644 --- a/clients/client-redshift-serverless/src/commands/ListWorkgroupsCommand.ts +++ b/clients/client-redshift-serverless/src/commands/ListWorkgroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkgroupsRequest, ListWorkgroupsResponse } from "../models/models_0"; -import { +import type { ListWorkgroupsRequest, ListWorkgroupsResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/PutResourcePolicyCommand.ts b/clients/client-redshift-serverless/src/commands/PutResourcePolicyCommand.ts index df16c1913089e..a632802f715a7 100644 --- a/clients/client-redshift-serverless/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-redshift-serverless/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; -import { +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/RestoreFromRecoveryPointCommand.ts b/clients/client-redshift-serverless/src/commands/RestoreFromRecoveryPointCommand.ts index 0f735650e40e1..a28a9c751fdc3 100644 --- a/clients/client-redshift-serverless/src/commands/RestoreFromRecoveryPointCommand.ts +++ b/clients/client-redshift-serverless/src/commands/RestoreFromRecoveryPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreFromRecoveryPointRequest, RestoreFromRecoveryPointResponse } from "../models/models_0"; -import { +import type { RestoreFromRecoveryPointRequest, RestoreFromRecoveryPointResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/RestoreFromSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/RestoreFromSnapshotCommand.ts index ea813d42c42dd..6c8bdbb12b445 100644 --- a/clients/client-redshift-serverless/src/commands/RestoreFromSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/RestoreFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreFromSnapshotRequest, RestoreFromSnapshotResponse } from "../models/models_0"; -import { +import type { RestoreFromSnapshotRequest, RestoreFromSnapshotResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/RestoreTableFromRecoveryPointCommand.ts b/clients/client-redshift-serverless/src/commands/RestoreTableFromRecoveryPointCommand.ts index c7cc3bb62f19a..0a4afd2dae02b 100644 --- a/clients/client-redshift-serverless/src/commands/RestoreTableFromRecoveryPointCommand.ts +++ b/clients/client-redshift-serverless/src/commands/RestoreTableFromRecoveryPointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreTableFromRecoveryPointRequest, RestoreTableFromRecoveryPointResponse } from "../models/models_0"; -import { +import type { RestoreTableFromRecoveryPointRequest, RestoreTableFromRecoveryPointResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/RestoreTableFromSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/RestoreTableFromSnapshotCommand.ts index fd2c470013c20..4d0f02a39d096 100644 --- a/clients/client-redshift-serverless/src/commands/RestoreTableFromSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/RestoreTableFromSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreTableFromSnapshotRequest, RestoreTableFromSnapshotResponse } from "../models/models_0"; -import { +import type { RestoreTableFromSnapshotRequest, RestoreTableFromSnapshotResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/TagResourceCommand.ts b/clients/client-redshift-serverless/src/commands/TagResourceCommand.ts index 809245f6d5f51..9c35bf881e274 100644 --- a/clients/client-redshift-serverless/src/commands/TagResourceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UntagResourceCommand.ts b/clients/client-redshift-serverless/src/commands/UntagResourceCommand.ts index 4ac99060b0ae7..8f13d4314d3d8 100644 --- a/clients/client-redshift-serverless/src/commands/UntagResourceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UpdateCustomDomainAssociationCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateCustomDomainAssociationCommand.ts index 768e07b44622c..44857aaee7e22 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateCustomDomainAssociationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateCustomDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCustomDomainAssociationRequest, UpdateCustomDomainAssociationResponse } from "../models/models_0"; -import { +import type { UpdateCustomDomainAssociationRequest, UpdateCustomDomainAssociationResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UpdateEndpointAccessCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateEndpointAccessCommand.ts index 0b844b401648a..e6e863fe0d1b6 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateEndpointAccessCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEndpointAccessRequest, UpdateEndpointAccessResponse } from "../models/models_0"; -import { +import type { UpdateEndpointAccessRequest, UpdateEndpointAccessResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UpdateLakehouseConfigurationCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateLakehouseConfigurationCommand.ts index e881a9fc127b7..bac056e345724 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateLakehouseConfigurationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateLakehouseConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLakehouseConfigurationRequest, UpdateLakehouseConfigurationResponse } from "../models/models_0"; -import { +import type { UpdateLakehouseConfigurationRequest, UpdateLakehouseConfigurationResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UpdateNamespaceCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateNamespaceCommand.ts index 37553e907acb0..275179cc7a4a1 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateNamespaceCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNamespaceRequest, UpdateNamespaceResponse } from "../models/models_0"; -import { +import type { UpdateNamespaceRequest, UpdateNamespaceResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UpdateScheduledActionCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateScheduledActionCommand.ts index f204be0ab75b4..3c031d1e8f6e3 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateScheduledActionCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateScheduledActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScheduledActionRequest, UpdateScheduledActionResponse } from "../models/models_0"; -import { +import type { UpdateScheduledActionRequest, UpdateScheduledActionResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UpdateSnapshotCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateSnapshotCommand.ts index b854afc8a6cd5..ecf6d43bda441 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateSnapshotCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSnapshotRequest, UpdateSnapshotResponse } from "../models/models_0"; -import { +import type { UpdateSnapshotRequest, UpdateSnapshotResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UpdateSnapshotCopyConfigurationCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateSnapshotCopyConfigurationCommand.ts index 9957ce3aab9ea..62e59c89a375a 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateSnapshotCopyConfigurationCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateSnapshotCopyConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSnapshotCopyConfigurationRequest, UpdateSnapshotCopyConfigurationResponse } from "../models/models_0"; -import { +import type { + UpdateSnapshotCopyConfigurationRequest, + UpdateSnapshotCopyConfigurationResponse, +} from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UpdateUsageLimitCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateUsageLimitCommand.ts index dcc20b32080ec..be3e049965254 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateUsageLimitCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateUsageLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUsageLimitRequest, UpdateUsageLimitResponse } from "../models/models_0"; -import { +import type { UpdateUsageLimitRequest, UpdateUsageLimitResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/commands/UpdateWorkgroupCommand.ts b/clients/client-redshift-serverless/src/commands/UpdateWorkgroupCommand.ts index 27652f96adf71..7f0ee6b6d3f09 100644 --- a/clients/client-redshift-serverless/src/commands/UpdateWorkgroupCommand.ts +++ b/clients/client-redshift-serverless/src/commands/UpdateWorkgroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkgroupRequest, UpdateWorkgroupResponse } from "../models/models_0"; -import { +import type { UpdateWorkgroupRequest, UpdateWorkgroupResponse } from "../models/models_0"; +import type { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-redshift-serverless/src/endpoint/EndpointParameters.ts b/clients/client-redshift-serverless/src/endpoint/EndpointParameters.ts index 7b36b9bec78d3..b89ca2ed2e823 100644 --- a/clients/client-redshift-serverless/src/endpoint/EndpointParameters.ts +++ b/clients/client-redshift-serverless/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-redshift-serverless/src/endpoint/endpointResolver.ts b/clients/client-redshift-serverless/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-redshift-serverless/src/endpoint/endpointResolver.ts +++ b/clients/client-redshift-serverless/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-redshift-serverless/src/extensionConfiguration.ts b/clients/client-redshift-serverless/src/extensionConfiguration.ts index 8ad556af1ca24..513304f60e4a4 100644 --- a/clients/client-redshift-serverless/src/extensionConfiguration.ts +++ b/clients/client-redshift-serverless/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-redshift-serverless/src/models/RedshiftServerlessServiceException.ts b/clients/client-redshift-serverless/src/models/RedshiftServerlessServiceException.ts index 4ec3717f1af8b..080cc6eb207a5 100644 --- a/clients/client-redshift-serverless/src/models/RedshiftServerlessServiceException.ts +++ b/clients/client-redshift-serverless/src/models/RedshiftServerlessServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-redshift-serverless/src/models/errors.ts b/clients/client-redshift-serverless/src/models/errors.ts index c783a3dbd594c..a2143a8764d8c 100644 --- a/clients/client-redshift-serverless/src/models/errors.ts +++ b/clients/client-redshift-serverless/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RedshiftServerlessServiceException as __BaseException } from "./RedshiftServerlessServiceException"; diff --git a/clients/client-redshift-serverless/src/pagination/Interfaces.ts b/clients/client-redshift-serverless/src/pagination/Interfaces.ts index 3519bf1b8e7cc..1b57c3aad9225 100644 --- a/clients/client-redshift-serverless/src/pagination/Interfaces.ts +++ b/clients/client-redshift-serverless/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RedshiftServerlessClient } from "../RedshiftServerlessClient"; diff --git a/clients/client-redshift-serverless/src/pagination/ListCustomDomainAssociationsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListCustomDomainAssociationsPaginator.ts index 890db15004a30..281d2de296671 100644 --- a/clients/client-redshift-serverless/src/pagination/ListCustomDomainAssociationsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListCustomDomainAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomDomainAssociationsCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListEndpointAccessPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListEndpointAccessPaginator.ts index c5b3e18f0909d..2d437730c5c9f 100644 --- a/clients/client-redshift-serverless/src/pagination/ListEndpointAccessPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListEndpointAccessPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEndpointAccessCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListManagedWorkgroupsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListManagedWorkgroupsPaginator.ts index de620a785d539..f9a7d9f729189 100644 --- a/clients/client-redshift-serverless/src/pagination/ListManagedWorkgroupsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListManagedWorkgroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedWorkgroupsCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListNamespacesPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListNamespacesPaginator.ts index 7bf42ec9f3669..2c19c58988712 100644 --- a/clients/client-redshift-serverless/src/pagination/ListNamespacesPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListNamespacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNamespacesCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListRecoveryPointsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListRecoveryPointsPaginator.ts index 5e3ddd7ece993..f483ee3ba0597 100644 --- a/clients/client-redshift-serverless/src/pagination/ListRecoveryPointsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListRecoveryPointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecoveryPointsCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListReservationOfferingsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListReservationOfferingsPaginator.ts index a11da67235ada..c1a8548019b93 100644 --- a/clients/client-redshift-serverless/src/pagination/ListReservationOfferingsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListReservationOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReservationOfferingsCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListReservationsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListReservationsPaginator.ts index ae2a450888e3b..48a95614b3208 100644 --- a/clients/client-redshift-serverless/src/pagination/ListReservationsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListReservationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReservationsCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListScheduledActionsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListScheduledActionsPaginator.ts index ee454f849478c..26d85ef9ab9d5 100644 --- a/clients/client-redshift-serverless/src/pagination/ListScheduledActionsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListScheduledActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListScheduledActionsCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListSnapshotCopyConfigurationsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListSnapshotCopyConfigurationsPaginator.ts index cb40f716f0b0c..bd6b799ffe8fc 100644 --- a/clients/client-redshift-serverless/src/pagination/ListSnapshotCopyConfigurationsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListSnapshotCopyConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSnapshotCopyConfigurationsCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListSnapshotsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListSnapshotsPaginator.ts index 875dfa827495a..69f73343df39d 100644 --- a/clients/client-redshift-serverless/src/pagination/ListSnapshotsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSnapshotsCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListTableRestoreStatusPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListTableRestoreStatusPaginator.ts index b91bfe7e14ef7..caa8b1b4adf03 100644 --- a/clients/client-redshift-serverless/src/pagination/ListTableRestoreStatusPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListTableRestoreStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTableRestoreStatusCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListTracksPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListTracksPaginator.ts index 92247130b70e6..6b6dbff9a6254 100644 --- a/clients/client-redshift-serverless/src/pagination/ListTracksPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListTracksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTracksCommand, ListTracksCommandInput, ListTracksCommandOutput } from "../commands/ListTracksCommand"; import { RedshiftServerlessClient } from "../RedshiftServerlessClient"; diff --git a/clients/client-redshift-serverless/src/pagination/ListUsageLimitsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListUsageLimitsPaginator.ts index 159c51538a292..3e88b038961ce 100644 --- a/clients/client-redshift-serverless/src/pagination/ListUsageLimitsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListUsageLimitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsageLimitsCommand, diff --git a/clients/client-redshift-serverless/src/pagination/ListWorkgroupsPaginator.ts b/clients/client-redshift-serverless/src/pagination/ListWorkgroupsPaginator.ts index 7d23858c81d44..0b2cd178a1ee3 100644 --- a/clients/client-redshift-serverless/src/pagination/ListWorkgroupsPaginator.ts +++ b/clients/client-redshift-serverless/src/pagination/ListWorkgroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkgroupsCommand, diff --git a/clients/client-redshift-serverless/src/runtimeConfig.browser.ts b/clients/client-redshift-serverless/src/runtimeConfig.browser.ts index 47bdc09e80782..5c9c6d3490895 100644 --- a/clients/client-redshift-serverless/src/runtimeConfig.browser.ts +++ b/clients/client-redshift-serverless/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RedshiftServerlessClientConfig } from "./RedshiftServerlessClient"; + +import type { RedshiftServerlessClientConfig } from "./RedshiftServerlessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-redshift-serverless/src/runtimeConfig.native.ts b/clients/client-redshift-serverless/src/runtimeConfig.native.ts index 7e45c5d87a984..6d5ec6ffa3878 100644 --- a/clients/client-redshift-serverless/src/runtimeConfig.native.ts +++ b/clients/client-redshift-serverless/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RedshiftServerlessClientConfig } from "./RedshiftServerlessClient"; +import type { RedshiftServerlessClientConfig } from "./RedshiftServerlessClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-redshift-serverless/src/runtimeConfig.shared.ts b/clients/client-redshift-serverless/src/runtimeConfig.shared.ts index 2cad5d457cc22..d7fab65f856f5 100644 --- a/clients/client-redshift-serverless/src/runtimeConfig.shared.ts +++ b/clients/client-redshift-serverless/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRedshiftServerlessHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RedshiftServerlessClientConfig } from "./RedshiftServerlessClient"; +import type { RedshiftServerlessClientConfig } from "./RedshiftServerlessClient"; /** * @internal diff --git a/clients/client-redshift-serverless/src/runtimeConfig.ts b/clients/client-redshift-serverless/src/runtimeConfig.ts index ab870db021023..c39a8c7097ec5 100644 --- a/clients/client-redshift-serverless/src/runtimeConfig.ts +++ b/clients/client-redshift-serverless/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RedshiftServerlessClientConfig } from "./RedshiftServerlessClient"; + +import type { RedshiftServerlessClientConfig } from "./RedshiftServerlessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-redshift-serverless/src/runtimeExtensions.ts b/clients/client-redshift-serverless/src/runtimeExtensions.ts index 4dc5d163ab521..dd62dcbff7e9c 100644 --- a/clients/client-redshift-serverless/src/runtimeExtensions.ts +++ b/clients/client-redshift-serverless/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RedshiftServerlessExtensionConfiguration } from "./extensionConfiguration"; +import type { RedshiftServerlessExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-redshift-serverless/src/schemas/schemas_0.ts b/clients/client-redshift-serverless/src/schemas/schemas_0.ts index 137fa1890927e..9b41f9d7bc08d 100644 --- a/clients/client-redshift-serverless/src/schemas/schemas_0.ts +++ b/clients/client-redshift-serverless/src/schemas/schemas_0.ts @@ -443,7 +443,7 @@ const n0 = "com.amazonaws.redshiftserverless"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-redshift/package.json b/clients/client-redshift/package.json index e08c54cf8203a..59d7d792ad4b1 100644 --- a/clients/client-redshift/package.json +++ b/clients/client-redshift/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-redshift/src/Redshift.ts b/clients/client-redshift/src/Redshift.ts index eab21c15edbeb..58ba35a882074 100644 --- a/clients/client-redshift/src/Redshift.ts +++ b/clients/client-redshift/src/Redshift.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptReservedNodeExchangeCommand, @@ -695,7 +695,7 @@ import { UpdatePartnerStatusCommandInput, UpdatePartnerStatusCommandOutput, } from "./commands/UpdatePartnerStatusCommand"; -import { RedshiftClient, RedshiftClientConfig } from "./RedshiftClient"; +import { RedshiftClient } from "./RedshiftClient"; const commands = { AcceptReservedNodeExchangeCommand, diff --git a/clients/client-redshift/src/RedshiftClient.ts b/clients/client-redshift/src/RedshiftClient.ts index e9f112a0d0e21..dcdef6bb6546e 100644 --- a/clients/client-redshift/src/RedshiftClient.ts +++ b/clients/client-redshift/src/RedshiftClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRedshiftHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -529,7 +538,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-redshift/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-redshift/src/auth/httpAuthExtensionConfiguration.ts index 019c550111d9a..11e4d55c8805c 100644 --- a/clients/client-redshift/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-redshift/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RedshiftHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RedshiftHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-redshift/src/auth/httpAuthSchemeProvider.ts b/clients/client-redshift/src/auth/httpAuthSchemeProvider.ts index 38ecef2856881..bc4195ef421c7 100644 --- a/clients/client-redshift/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-redshift/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RedshiftClientConfig, RedshiftClientResolvedConfig } from "../RedshiftClient"; +import { type RedshiftClientResolvedConfig, RedshiftClientConfig } from "../RedshiftClient"; /** * @internal diff --git a/clients/client-redshift/src/commands/AcceptReservedNodeExchangeCommand.ts b/clients/client-redshift/src/commands/AcceptReservedNodeExchangeCommand.ts index 3e68c9b0c8860..fc662d29a5154 100644 --- a/clients/client-redshift/src/commands/AcceptReservedNodeExchangeCommand.ts +++ b/clients/client-redshift/src/commands/AcceptReservedNodeExchangeCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptReservedNodeExchangeInputMessage, AcceptReservedNodeExchangeOutputMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { + AcceptReservedNodeExchangeInputMessage, + AcceptReservedNodeExchangeOutputMessage, +} from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { AcceptReservedNodeExchange } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/AddPartnerCommand.ts b/clients/client-redshift/src/commands/AddPartnerCommand.ts index 758f11a4cb5da..45bb700fb51b6 100644 --- a/clients/client-redshift/src/commands/AddPartnerCommand.ts +++ b/clients/client-redshift/src/commands/AddPartnerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PartnerIntegrationInputMessage, PartnerIntegrationOutputMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { PartnerIntegrationInputMessage, PartnerIntegrationOutputMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { AddPartner } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/AssociateDataShareConsumerCommand.ts b/clients/client-redshift/src/commands/AssociateDataShareConsumerCommand.ts index aa247b07e7383..f6484d3eac6c6 100644 --- a/clients/client-redshift/src/commands/AssociateDataShareConsumerCommand.ts +++ b/clients/client-redshift/src/commands/AssociateDataShareConsumerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDataShareConsumerMessage, DataShare } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { AssociateDataShareConsumerMessage, DataShare } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { AssociateDataShareConsumer } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/AuthorizeClusterSecurityGroupIngressCommand.ts b/clients/client-redshift/src/commands/AuthorizeClusterSecurityGroupIngressCommand.ts index 8c793d90d1d90..4b5362c9155c4 100644 --- a/clients/client-redshift/src/commands/AuthorizeClusterSecurityGroupIngressCommand.ts +++ b/clients/client-redshift/src/commands/AuthorizeClusterSecurityGroupIngressCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AuthorizeClusterSecurityGroupIngressMessage, AuthorizeClusterSecurityGroupIngressResult, } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { AuthorizeClusterSecurityGroupIngress } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/AuthorizeDataShareCommand.ts b/clients/client-redshift/src/commands/AuthorizeDataShareCommand.ts index b528a33476428..2c245fe599d92 100644 --- a/clients/client-redshift/src/commands/AuthorizeDataShareCommand.ts +++ b/clients/client-redshift/src/commands/AuthorizeDataShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeDataShareMessage, DataShare } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { AuthorizeDataShareMessage, DataShare } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { AuthorizeDataShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/AuthorizeEndpointAccessCommand.ts b/clients/client-redshift/src/commands/AuthorizeEndpointAccessCommand.ts index 3055771444d71..d69c39083af77 100644 --- a/clients/client-redshift/src/commands/AuthorizeEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/AuthorizeEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeEndpointAccessMessage, EndpointAuthorization } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { AuthorizeEndpointAccessMessage, EndpointAuthorization } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { AuthorizeEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/AuthorizeSnapshotAccessCommand.ts b/clients/client-redshift/src/commands/AuthorizeSnapshotAccessCommand.ts index acb6ba0355e92..48a314459ba2d 100644 --- a/clients/client-redshift/src/commands/AuthorizeSnapshotAccessCommand.ts +++ b/clients/client-redshift/src/commands/AuthorizeSnapshotAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeSnapshotAccessMessage, AuthorizeSnapshotAccessResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { AuthorizeSnapshotAccessMessage, AuthorizeSnapshotAccessResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { AuthorizeSnapshotAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/BatchDeleteClusterSnapshotsCommand.ts b/clients/client-redshift/src/commands/BatchDeleteClusterSnapshotsCommand.ts index ee8900c173a05..c8bb19af0506e 100644 --- a/clients/client-redshift/src/commands/BatchDeleteClusterSnapshotsCommand.ts +++ b/clients/client-redshift/src/commands/BatchDeleteClusterSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteClusterSnapshotsRequest, BatchDeleteClusterSnapshotsResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { BatchDeleteClusterSnapshotsRequest, BatchDeleteClusterSnapshotsResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { BatchDeleteClusterSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/BatchModifyClusterSnapshotsCommand.ts b/clients/client-redshift/src/commands/BatchModifyClusterSnapshotsCommand.ts index af58e6bad6735..75a4d952c73d9 100644 --- a/clients/client-redshift/src/commands/BatchModifyClusterSnapshotsCommand.ts +++ b/clients/client-redshift/src/commands/BatchModifyClusterSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchModifyClusterSnapshotsMessage, BatchModifyClusterSnapshotsOutputMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { BatchModifyClusterSnapshotsMessage, BatchModifyClusterSnapshotsOutputMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { BatchModifyClusterSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CancelResizeCommand.ts b/clients/client-redshift/src/commands/CancelResizeCommand.ts index e2869a326a626..9fe87925fb6d0 100644 --- a/clients/client-redshift/src/commands/CancelResizeCommand.ts +++ b/clients/client-redshift/src/commands/CancelResizeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelResizeMessage, ResizeProgressMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CancelResizeMessage, ResizeProgressMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CancelResize } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CopyClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/CopyClusterSnapshotCommand.ts index dcc89cbeaaa1f..a246e8a346dbb 100644 --- a/clients/client-redshift/src/commands/CopyClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/CopyClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyClusterSnapshotMessage, CopyClusterSnapshotResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CopyClusterSnapshotMessage, CopyClusterSnapshotResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CopyClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateAuthenticationProfileCommand.ts b/clients/client-redshift/src/commands/CreateAuthenticationProfileCommand.ts index 4597b612243e1..013bb9f620a62 100644 --- a/clients/client-redshift/src/commands/CreateAuthenticationProfileCommand.ts +++ b/clients/client-redshift/src/commands/CreateAuthenticationProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAuthenticationProfileMessage, CreateAuthenticationProfileResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateAuthenticationProfileMessage, CreateAuthenticationProfileResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateAuthenticationProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateClusterCommand.ts b/clients/client-redshift/src/commands/CreateClusterCommand.ts index 0a5d58622d8a4..0897c2c565a61 100644 --- a/clients/client-redshift/src/commands/CreateClusterCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterMessage, CreateClusterResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateClusterMessage, CreateClusterResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateClusterParameterGroupCommand.ts b/clients/client-redshift/src/commands/CreateClusterParameterGroupCommand.ts index 085fd3d70c8de..72957d5194cda 100644 --- a/clients/client-redshift/src/commands/CreateClusterParameterGroupCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterParameterGroupMessage, CreateClusterParameterGroupResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateClusterParameterGroupMessage, CreateClusterParameterGroupResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateClusterSecurityGroupCommand.ts b/clients/client-redshift/src/commands/CreateClusterSecurityGroupCommand.ts index 8be82ad962257..2a207a127c525 100644 --- a/clients/client-redshift/src/commands/CreateClusterSecurityGroupCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterSecurityGroupMessage, CreateClusterSecurityGroupResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateClusterSecurityGroupMessage, CreateClusterSecurityGroupResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateClusterSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/CreateClusterSnapshotCommand.ts index e94239aa3e291..8bc2edeb16ee4 100644 --- a/clients/client-redshift/src/commands/CreateClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterSnapshotMessage, CreateClusterSnapshotResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateClusterSnapshotMessage, CreateClusterSnapshotResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateClusterSubnetGroupCommand.ts b/clients/client-redshift/src/commands/CreateClusterSubnetGroupCommand.ts index df4c53f5f2dfb..8f3792c4a7395 100644 --- a/clients/client-redshift/src/commands/CreateClusterSubnetGroupCommand.ts +++ b/clients/client-redshift/src/commands/CreateClusterSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterSubnetGroupMessage, CreateClusterSubnetGroupResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateClusterSubnetGroupMessage, CreateClusterSubnetGroupResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateClusterSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateCustomDomainAssociationCommand.ts b/clients/client-redshift/src/commands/CreateCustomDomainAssociationCommand.ts index 0bf61b27a2fb1..270c24d2f96c0 100644 --- a/clients/client-redshift/src/commands/CreateCustomDomainAssociationCommand.ts +++ b/clients/client-redshift/src/commands/CreateCustomDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomDomainAssociationMessage, CreateCustomDomainAssociationResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateCustomDomainAssociationMessage, CreateCustomDomainAssociationResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateCustomDomainAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateEndpointAccessCommand.ts b/clients/client-redshift/src/commands/CreateEndpointAccessCommand.ts index 58bfcb963f497..c2cea18525c80 100644 --- a/clients/client-redshift/src/commands/CreateEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/CreateEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEndpointAccessMessage, EndpointAccess } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateEndpointAccessMessage, EndpointAccess } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateEventSubscriptionCommand.ts b/clients/client-redshift/src/commands/CreateEventSubscriptionCommand.ts index 859118795860a..a8d5399eb23f2 100644 --- a/clients/client-redshift/src/commands/CreateEventSubscriptionCommand.ts +++ b/clients/client-redshift/src/commands/CreateEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEventSubscriptionMessage, CreateEventSubscriptionResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateEventSubscriptionMessage, CreateEventSubscriptionResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateHsmClientCertificateCommand.ts b/clients/client-redshift/src/commands/CreateHsmClientCertificateCommand.ts index 32af157976c93..2e91ce3bb6d0d 100644 --- a/clients/client-redshift/src/commands/CreateHsmClientCertificateCommand.ts +++ b/clients/client-redshift/src/commands/CreateHsmClientCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHsmClientCertificateMessage, CreateHsmClientCertificateResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateHsmClientCertificateMessage, CreateHsmClientCertificateResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateHsmClientCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateHsmConfigurationCommand.ts b/clients/client-redshift/src/commands/CreateHsmConfigurationCommand.ts index c688671f8e122..b50a159acf21c 100644 --- a/clients/client-redshift/src/commands/CreateHsmConfigurationCommand.ts +++ b/clients/client-redshift/src/commands/CreateHsmConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHsmConfigurationMessage, CreateHsmConfigurationResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateHsmConfigurationMessage, CreateHsmConfigurationResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateHsmConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateIntegrationCommand.ts b/clients/client-redshift/src/commands/CreateIntegrationCommand.ts index 7a00537449e31..e473818c3617a 100644 --- a/clients/client-redshift/src/commands/CreateIntegrationCommand.ts +++ b/clients/client-redshift/src/commands/CreateIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIntegrationMessage, Integration } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateIntegrationMessage, Integration } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateRedshiftIdcApplicationCommand.ts b/clients/client-redshift/src/commands/CreateRedshiftIdcApplicationCommand.ts index bd56726b142f8..cdff657ec8b55 100644 --- a/clients/client-redshift/src/commands/CreateRedshiftIdcApplicationCommand.ts +++ b/clients/client-redshift/src/commands/CreateRedshiftIdcApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRedshiftIdcApplicationMessage, CreateRedshiftIdcApplicationResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateRedshiftIdcApplicationMessage, CreateRedshiftIdcApplicationResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateRedshiftIdcApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateScheduledActionCommand.ts b/clients/client-redshift/src/commands/CreateScheduledActionCommand.ts index 21d717ce50b28..8e7b35e85485f 100644 --- a/clients/client-redshift/src/commands/CreateScheduledActionCommand.ts +++ b/clients/client-redshift/src/commands/CreateScheduledActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScheduledActionMessage, ScheduledAction } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateScheduledActionMessage, ScheduledAction } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateScheduledAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateSnapshotCopyGrantCommand.ts b/clients/client-redshift/src/commands/CreateSnapshotCopyGrantCommand.ts index de678762967cb..168242f3d61f1 100644 --- a/clients/client-redshift/src/commands/CreateSnapshotCopyGrantCommand.ts +++ b/clients/client-redshift/src/commands/CreateSnapshotCopyGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotCopyGrantMessage, CreateSnapshotCopyGrantResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateSnapshotCopyGrantMessage, CreateSnapshotCopyGrantResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateSnapshotCopyGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateSnapshotScheduleCommand.ts b/clients/client-redshift/src/commands/CreateSnapshotScheduleCommand.ts index 0f9ac1d2989cc..abbf43957c680 100644 --- a/clients/client-redshift/src/commands/CreateSnapshotScheduleCommand.ts +++ b/clients/client-redshift/src/commands/CreateSnapshotScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotScheduleMessage, SnapshotSchedule } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateSnapshotScheduleMessage, SnapshotSchedule } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateSnapshotSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateTagsCommand.ts b/clients/client-redshift/src/commands/CreateTagsCommand.ts index 98a04963fd2e9..e0053b2bfd2c4 100644 --- a/clients/client-redshift/src/commands/CreateTagsCommand.ts +++ b/clients/client-redshift/src/commands/CreateTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTagsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateTagsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/CreateUsageLimitCommand.ts b/clients/client-redshift/src/commands/CreateUsageLimitCommand.ts index 2f972d6d081da..c9ce9bc2759a1 100644 --- a/clients/client-redshift/src/commands/CreateUsageLimitCommand.ts +++ b/clients/client-redshift/src/commands/CreateUsageLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUsageLimitMessage, UsageLimit } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CreateUsageLimitMessage, UsageLimit } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { CreateUsageLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeauthorizeDataShareCommand.ts b/clients/client-redshift/src/commands/DeauthorizeDataShareCommand.ts index 71fa9989070ac..dad9e77c2e6fa 100644 --- a/clients/client-redshift/src/commands/DeauthorizeDataShareCommand.ts +++ b/clients/client-redshift/src/commands/DeauthorizeDataShareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DataShare, DeauthorizeDataShareMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DataShare, DeauthorizeDataShareMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeauthorizeDataShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteAuthenticationProfileCommand.ts b/clients/client-redshift/src/commands/DeleteAuthenticationProfileCommand.ts index b1e337ffab975..ec0d86b2fb8a4 100644 --- a/clients/client-redshift/src/commands/DeleteAuthenticationProfileCommand.ts +++ b/clients/client-redshift/src/commands/DeleteAuthenticationProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAuthenticationProfileMessage, DeleteAuthenticationProfileResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteAuthenticationProfileMessage, DeleteAuthenticationProfileResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteAuthenticationProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteClusterCommand.ts b/clients/client-redshift/src/commands/DeleteClusterCommand.ts index c0bd6981752ac..e26d2633f4303 100644 --- a/clients/client-redshift/src/commands/DeleteClusterCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterMessage, DeleteClusterResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteClusterMessage, DeleteClusterResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteClusterParameterGroupCommand.ts b/clients/client-redshift/src/commands/DeleteClusterParameterGroupCommand.ts index 8202e64b4fad7..ddd9208d8884a 100644 --- a/clients/client-redshift/src/commands/DeleteClusterParameterGroupCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterParameterGroupMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteClusterParameterGroupMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteClusterSecurityGroupCommand.ts b/clients/client-redshift/src/commands/DeleteClusterSecurityGroupCommand.ts index 915e46621165a..8580b4741e152 100644 --- a/clients/client-redshift/src/commands/DeleteClusterSecurityGroupCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterSecurityGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterSecurityGroupMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteClusterSecurityGroupMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteClusterSecurityGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/DeleteClusterSnapshotCommand.ts index ebab2534f491f..95e7097d127af 100644 --- a/clients/client-redshift/src/commands/DeleteClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterSnapshotMessage, DeleteClusterSnapshotResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteClusterSnapshotMessage, DeleteClusterSnapshotResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteClusterSubnetGroupCommand.ts b/clients/client-redshift/src/commands/DeleteClusterSubnetGroupCommand.ts index e412b15e11483..ae1360e2f6380 100644 --- a/clients/client-redshift/src/commands/DeleteClusterSubnetGroupCommand.ts +++ b/clients/client-redshift/src/commands/DeleteClusterSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterSubnetGroupMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteClusterSubnetGroupMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteClusterSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteCustomDomainAssociationCommand.ts b/clients/client-redshift/src/commands/DeleteCustomDomainAssociationCommand.ts index 471c50e6c2c12..776263a27e78a 100644 --- a/clients/client-redshift/src/commands/DeleteCustomDomainAssociationCommand.ts +++ b/clients/client-redshift/src/commands/DeleteCustomDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomDomainAssociationMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteCustomDomainAssociationMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteCustomDomainAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteEndpointAccessCommand.ts b/clients/client-redshift/src/commands/DeleteEndpointAccessCommand.ts index 5a218faca71d5..4012854c03f22 100644 --- a/clients/client-redshift/src/commands/DeleteEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/DeleteEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEndpointAccessMessage, EndpointAccess } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteEndpointAccessMessage, EndpointAccess } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteEventSubscriptionCommand.ts b/clients/client-redshift/src/commands/DeleteEventSubscriptionCommand.ts index 03487d74a8083..6802c2c516a81 100644 --- a/clients/client-redshift/src/commands/DeleteEventSubscriptionCommand.ts +++ b/clients/client-redshift/src/commands/DeleteEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEventSubscriptionMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteEventSubscriptionMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteHsmClientCertificateCommand.ts b/clients/client-redshift/src/commands/DeleteHsmClientCertificateCommand.ts index 0788656bf6a28..935db1f2d17a6 100644 --- a/clients/client-redshift/src/commands/DeleteHsmClientCertificateCommand.ts +++ b/clients/client-redshift/src/commands/DeleteHsmClientCertificateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHsmClientCertificateMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteHsmClientCertificateMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteHsmClientCertificate } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteHsmConfigurationCommand.ts b/clients/client-redshift/src/commands/DeleteHsmConfigurationCommand.ts index f24ec60a5221e..d1677e416fd63 100644 --- a/clients/client-redshift/src/commands/DeleteHsmConfigurationCommand.ts +++ b/clients/client-redshift/src/commands/DeleteHsmConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHsmConfigurationMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteHsmConfigurationMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteHsmConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteIntegrationCommand.ts b/clients/client-redshift/src/commands/DeleteIntegrationCommand.ts index 9f443d4eb0f4a..84ef69df22598 100644 --- a/clients/client-redshift/src/commands/DeleteIntegrationCommand.ts +++ b/clients/client-redshift/src/commands/DeleteIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIntegrationMessage, Integration } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteIntegrationMessage, Integration } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeletePartnerCommand.ts b/clients/client-redshift/src/commands/DeletePartnerCommand.ts index ae61cc1b7c2e6..47628276ff6b7 100644 --- a/clients/client-redshift/src/commands/DeletePartnerCommand.ts +++ b/clients/client-redshift/src/commands/DeletePartnerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PartnerIntegrationInputMessage, PartnerIntegrationOutputMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { PartnerIntegrationInputMessage, PartnerIntegrationOutputMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeletePartner } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteRedshiftIdcApplicationCommand.ts b/clients/client-redshift/src/commands/DeleteRedshiftIdcApplicationCommand.ts index ef766218c7334..2584e319bd47d 100644 --- a/clients/client-redshift/src/commands/DeleteRedshiftIdcApplicationCommand.ts +++ b/clients/client-redshift/src/commands/DeleteRedshiftIdcApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRedshiftIdcApplicationMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteRedshiftIdcApplicationMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteRedshiftIdcApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-redshift/src/commands/DeleteResourcePolicyCommand.ts index fbecd4232a625..36f7fc6e9be28 100644 --- a/clients/client-redshift/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-redshift/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteResourcePolicyMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteScheduledActionCommand.ts b/clients/client-redshift/src/commands/DeleteScheduledActionCommand.ts index 41fd61c2b022d..78a04926f0576 100644 --- a/clients/client-redshift/src/commands/DeleteScheduledActionCommand.ts +++ b/clients/client-redshift/src/commands/DeleteScheduledActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScheduledActionMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteScheduledActionMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteScheduledAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteSnapshotCopyGrantCommand.ts b/clients/client-redshift/src/commands/DeleteSnapshotCopyGrantCommand.ts index 5be2d70caf7b9..2f99a09e9db26 100644 --- a/clients/client-redshift/src/commands/DeleteSnapshotCopyGrantCommand.ts +++ b/clients/client-redshift/src/commands/DeleteSnapshotCopyGrantCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSnapshotCopyGrantMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteSnapshotCopyGrantMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteSnapshotCopyGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteSnapshotScheduleCommand.ts b/clients/client-redshift/src/commands/DeleteSnapshotScheduleCommand.ts index 390362c1a12a8..58d888edcdcaa 100644 --- a/clients/client-redshift/src/commands/DeleteSnapshotScheduleCommand.ts +++ b/clients/client-redshift/src/commands/DeleteSnapshotScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSnapshotScheduleMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteSnapshotScheduleMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteSnapshotSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteTagsCommand.ts b/clients/client-redshift/src/commands/DeleteTagsCommand.ts index 07a1a3ff334d0..739990d816869 100644 --- a/clients/client-redshift/src/commands/DeleteTagsCommand.ts +++ b/clients/client-redshift/src/commands/DeleteTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteTagsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeleteUsageLimitCommand.ts b/clients/client-redshift/src/commands/DeleteUsageLimitCommand.ts index b4e65c631f07f..51f81dadf0d00 100644 --- a/clients/client-redshift/src/commands/DeleteUsageLimitCommand.ts +++ b/clients/client-redshift/src/commands/DeleteUsageLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUsageLimitMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeleteUsageLimitMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeleteUsageLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DeregisterNamespaceCommand.ts b/clients/client-redshift/src/commands/DeregisterNamespaceCommand.ts index 30af92d5ddef0..a0896a7825d75 100644 --- a/clients/client-redshift/src/commands/DeregisterNamespaceCommand.ts +++ b/clients/client-redshift/src/commands/DeregisterNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterNamespaceInputMessage, DeregisterNamespaceOutputMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DeregisterNamespaceInputMessage, DeregisterNamespaceOutputMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DeregisterNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeAccountAttributesCommand.ts b/clients/client-redshift/src/commands/DescribeAccountAttributesCommand.ts index af1fb63935eb9..cbad34ac24d49 100644 --- a/clients/client-redshift/src/commands/DescribeAccountAttributesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeAccountAttributesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AccountAttributeList, DescribeAccountAttributesMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { AccountAttributeList, DescribeAccountAttributesMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeAccountAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeAuthenticationProfilesCommand.ts b/clients/client-redshift/src/commands/DescribeAuthenticationProfilesCommand.ts index 6d00c26616ee6..4dbe43d8471c8 100644 --- a/clients/client-redshift/src/commands/DescribeAuthenticationProfilesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeAuthenticationProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAuthenticationProfilesMessage, DescribeAuthenticationProfilesResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeAuthenticationProfilesMessage, DescribeAuthenticationProfilesResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeAuthenticationProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeClusterDbRevisionsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterDbRevisionsCommand.ts index 5be09becbce8b..aa036a9b681f8 100644 --- a/clients/client-redshift/src/commands/DescribeClusterDbRevisionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterDbRevisionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterDbRevisionsMessage, DescribeClusterDbRevisionsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterDbRevisionsMessage, DescribeClusterDbRevisionsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeClusterDbRevisions } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeClusterParameterGroupsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterParameterGroupsCommand.ts index a1bb49a1061a7..84f3b763fdc11 100644 --- a/clients/client-redshift/src/commands/DescribeClusterParameterGroupsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterParameterGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterParameterGroupsMessage, DescribeClusterParameterGroupsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterParameterGroupsMessage, DescribeClusterParameterGroupsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeClusterParameterGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeClusterParametersCommand.ts b/clients/client-redshift/src/commands/DescribeClusterParametersCommand.ts index 37e9a682d438b..53b1274fef17a 100644 --- a/clients/client-redshift/src/commands/DescribeClusterParametersCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterParameterGroupDetails, DescribeClusterParametersMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterParameterGroupDetails, DescribeClusterParametersMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeClusterParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeClusterSecurityGroupsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterSecurityGroupsCommand.ts index 82adeb31d3dda..db1d02bb04a41 100644 --- a/clients/client-redshift/src/commands/DescribeClusterSecurityGroupsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterSecurityGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterSecurityGroupMessage, DescribeClusterSecurityGroupsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterSecurityGroupMessage, DescribeClusterSecurityGroupsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeClusterSecurityGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeClusterSnapshotsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterSnapshotsCommand.ts index dd23366545c95..6f3dc0e577265 100644 --- a/clients/client-redshift/src/commands/DescribeClusterSnapshotsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterSnapshotsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterSnapshotsMessage, SnapshotMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeClusterSnapshotsMessage, SnapshotMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeClusterSnapshots } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeClusterSubnetGroupsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterSubnetGroupsCommand.ts index 2acd2ad2f4493..af8650eedcf1d 100644 --- a/clients/client-redshift/src/commands/DescribeClusterSubnetGroupsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterSubnetGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterSubnetGroupMessage, DescribeClusterSubnetGroupsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterSubnetGroupMessage, DescribeClusterSubnetGroupsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeClusterSubnetGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeClusterTracksCommand.ts b/clients/client-redshift/src/commands/DescribeClusterTracksCommand.ts index da2e36120a541..63229a6a67dc9 100644 --- a/clients/client-redshift/src/commands/DescribeClusterTracksCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterTracksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterTracksMessage, TrackListMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeClusterTracksMessage, TrackListMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeClusterTracks } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeClusterVersionsCommand.ts b/clients/client-redshift/src/commands/DescribeClusterVersionsCommand.ts index 5a0c902bf9af1..9e45f35f7bbe0 100644 --- a/clients/client-redshift/src/commands/DescribeClusterVersionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClusterVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterVersionsMessage, DescribeClusterVersionsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterVersionsMessage, DescribeClusterVersionsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeClusterVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeClustersCommand.ts b/clients/client-redshift/src/commands/DescribeClustersCommand.ts index c45e597ca5022..87ef3209432e7 100644 --- a/clients/client-redshift/src/commands/DescribeClustersCommand.ts +++ b/clients/client-redshift/src/commands/DescribeClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClustersMessage, DescribeClustersMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClustersMessage, DescribeClustersMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeCustomDomainAssociationsCommand.ts b/clients/client-redshift/src/commands/DescribeCustomDomainAssociationsCommand.ts index e040d7329fb00..e2e703c772e7f 100644 --- a/clients/client-redshift/src/commands/DescribeCustomDomainAssociationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeCustomDomainAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CustomDomainAssociationsMessage, DescribeCustomDomainAssociationsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CustomDomainAssociationsMessage, DescribeCustomDomainAssociationsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeCustomDomainAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeDataSharesCommand.ts b/clients/client-redshift/src/commands/DescribeDataSharesCommand.ts index cff6cb65539c3..ea993ae3aecaa 100644 --- a/clients/client-redshift/src/commands/DescribeDataSharesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeDataSharesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataSharesMessage, DescribeDataSharesResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeDataSharesMessage, DescribeDataSharesResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeDataShares } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeDataSharesForConsumerCommand.ts b/clients/client-redshift/src/commands/DescribeDataSharesForConsumerCommand.ts index 7b9fb8d5ffe62..52e8bea63dd59 100644 --- a/clients/client-redshift/src/commands/DescribeDataSharesForConsumerCommand.ts +++ b/clients/client-redshift/src/commands/DescribeDataSharesForConsumerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataSharesForConsumerMessage, DescribeDataSharesForConsumerResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeDataSharesForConsumerMessage, DescribeDataSharesForConsumerResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeDataSharesForConsumer } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeDataSharesForProducerCommand.ts b/clients/client-redshift/src/commands/DescribeDataSharesForProducerCommand.ts index 15f1973c2ee53..b824cee787dea 100644 --- a/clients/client-redshift/src/commands/DescribeDataSharesForProducerCommand.ts +++ b/clients/client-redshift/src/commands/DescribeDataSharesForProducerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataSharesForProducerMessage, DescribeDataSharesForProducerResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeDataSharesForProducerMessage, DescribeDataSharesForProducerResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeDataSharesForProducer } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeDefaultClusterParametersCommand.ts b/clients/client-redshift/src/commands/DescribeDefaultClusterParametersCommand.ts index 3e3f569f70f8e..7f3130af8fc79 100644 --- a/clients/client-redshift/src/commands/DescribeDefaultClusterParametersCommand.ts +++ b/clients/client-redshift/src/commands/DescribeDefaultClusterParametersCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDefaultClusterParametersMessage, DescribeDefaultClusterParametersResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { + DescribeDefaultClusterParametersMessage, + DescribeDefaultClusterParametersResult, +} from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeDefaultClusterParameters } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeEndpointAccessCommand.ts b/clients/client-redshift/src/commands/DescribeEndpointAccessCommand.ts index 17721d3772fcf..aa70d00224ff8 100644 --- a/clients/client-redshift/src/commands/DescribeEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointAccessMessage, EndpointAccessList } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeEndpointAccessMessage, EndpointAccessList } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeEndpointAuthorizationCommand.ts b/clients/client-redshift/src/commands/DescribeEndpointAuthorizationCommand.ts index a5927a150d611..b9830a0df1ecc 100644 --- a/clients/client-redshift/src/commands/DescribeEndpointAuthorizationCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEndpointAuthorizationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointAuthorizationMessage, EndpointAuthorizationList } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeEndpointAuthorizationMessage, EndpointAuthorizationList } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeEndpointAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeEventCategoriesCommand.ts b/clients/client-redshift/src/commands/DescribeEventCategoriesCommand.ts index b068f9c463f1e..780b053c0100f 100644 --- a/clients/client-redshift/src/commands/DescribeEventCategoriesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEventCategoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeEventCategoriesMessage, EventCategoriesMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeEventCategories } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeEventSubscriptionsCommand.ts b/clients/client-redshift/src/commands/DescribeEventSubscriptionsCommand.ts index cf2ce8c5f499e..a113c41a30827 100644 --- a/clients/client-redshift/src/commands/DescribeEventSubscriptionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEventSubscriptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventSubscriptionsMessage, EventSubscriptionsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeEventSubscriptionsMessage, EventSubscriptionsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeEventSubscriptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeEventsCommand.ts b/clients/client-redshift/src/commands/DescribeEventsCommand.ts index 3c511c437005b..a8c790c409e54 100644 --- a/clients/client-redshift/src/commands/DescribeEventsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEventsMessage, EventsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeEventsMessage, EventsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeHsmClientCertificatesCommand.ts b/clients/client-redshift/src/commands/DescribeHsmClientCertificatesCommand.ts index 8717157346ff1..66b2dd5b889e9 100644 --- a/clients/client-redshift/src/commands/DescribeHsmClientCertificatesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeHsmClientCertificatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHsmClientCertificatesMessage, HsmClientCertificateMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeHsmClientCertificatesMessage, HsmClientCertificateMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeHsmClientCertificates } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeHsmConfigurationsCommand.ts b/clients/client-redshift/src/commands/DescribeHsmConfigurationsCommand.ts index eb97c3758ab65..d974eb197bd6c 100644 --- a/clients/client-redshift/src/commands/DescribeHsmConfigurationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeHsmConfigurationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHsmConfigurationsMessage, HsmConfigurationMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeHsmConfigurationsMessage, HsmConfigurationMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeHsmConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeInboundIntegrationsCommand.ts b/clients/client-redshift/src/commands/DescribeInboundIntegrationsCommand.ts index 3ccd7fef98316..9efa7c320b671 100644 --- a/clients/client-redshift/src/commands/DescribeInboundIntegrationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeInboundIntegrationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInboundIntegrationsMessage, InboundIntegrationsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeInboundIntegrationsMessage, InboundIntegrationsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeInboundIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeIntegrationsCommand.ts b/clients/client-redshift/src/commands/DescribeIntegrationsCommand.ts index f6be7079cb02c..6216fdda81625 100644 --- a/clients/client-redshift/src/commands/DescribeIntegrationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeIntegrationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIntegrationsMessage, IntegrationsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeIntegrationsMessage, IntegrationsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeIntegrations } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeLoggingStatusCommand.ts b/clients/client-redshift/src/commands/DescribeLoggingStatusCommand.ts index c157c736c03b9..45a4c04947f81 100644 --- a/clients/client-redshift/src/commands/DescribeLoggingStatusCommand.ts +++ b/clients/client-redshift/src/commands/DescribeLoggingStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLoggingStatusMessage, LoggingStatus } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeLoggingStatusMessage, LoggingStatus } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeLoggingStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeNodeConfigurationOptionsCommand.ts b/clients/client-redshift/src/commands/DescribeNodeConfigurationOptionsCommand.ts index e20ec531cc725..d3a6e9b132290 100644 --- a/clients/client-redshift/src/commands/DescribeNodeConfigurationOptionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeNodeConfigurationOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNodeConfigurationOptionsMessage, NodeConfigurationOptionsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeNodeConfigurationOptionsMessage, NodeConfigurationOptionsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeNodeConfigurationOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeOrderableClusterOptionsCommand.ts b/clients/client-redshift/src/commands/DescribeOrderableClusterOptionsCommand.ts index 63d6c3168912b..73a79484f738d 100644 --- a/clients/client-redshift/src/commands/DescribeOrderableClusterOptionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeOrderableClusterOptionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrderableClusterOptionsMessage, OrderableClusterOptionsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeOrderableClusterOptionsMessage, OrderableClusterOptionsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeOrderableClusterOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribePartnersCommand.ts b/clients/client-redshift/src/commands/DescribePartnersCommand.ts index 4cfca2dc181cf..d407910e8e6e1 100644 --- a/clients/client-redshift/src/commands/DescribePartnersCommand.ts +++ b/clients/client-redshift/src/commands/DescribePartnersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePartnersInputMessage, DescribePartnersOutputMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribePartnersInputMessage, DescribePartnersOutputMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribePartners } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeRedshiftIdcApplicationsCommand.ts b/clients/client-redshift/src/commands/DescribeRedshiftIdcApplicationsCommand.ts index 9b16a830231c6..daee72932f7b9 100644 --- a/clients/client-redshift/src/commands/DescribeRedshiftIdcApplicationsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeRedshiftIdcApplicationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRedshiftIdcApplicationsMessage, DescribeRedshiftIdcApplicationsResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeRedshiftIdcApplicationsMessage, DescribeRedshiftIdcApplicationsResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeRedshiftIdcApplications } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeReservedNodeExchangeStatusCommand.ts b/clients/client-redshift/src/commands/DescribeReservedNodeExchangeStatusCommand.ts index 592b68e196ba7..bb7531633650b 100644 --- a/clients/client-redshift/src/commands/DescribeReservedNodeExchangeStatusCommand.ts +++ b/clients/client-redshift/src/commands/DescribeReservedNodeExchangeStatusCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeReservedNodeExchangeStatusInputMessage, DescribeReservedNodeExchangeStatusOutputMessage, } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeReservedNodeExchangeStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeReservedNodeOfferingsCommand.ts b/clients/client-redshift/src/commands/DescribeReservedNodeOfferingsCommand.ts index 4fd50fcf11a81..fd79dc7cf8b74 100644 --- a/clients/client-redshift/src/commands/DescribeReservedNodeOfferingsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeReservedNodeOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedNodeOfferingsMessage, ReservedNodeOfferingsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeReservedNodeOfferingsMessage, ReservedNodeOfferingsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeReservedNodeOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeReservedNodesCommand.ts b/clients/client-redshift/src/commands/DescribeReservedNodesCommand.ts index e2dbe2e252a73..944cd2664e2a7 100644 --- a/clients/client-redshift/src/commands/DescribeReservedNodesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeReservedNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedNodesMessage, ReservedNodesMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeReservedNodesMessage, ReservedNodesMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeReservedNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeResizeCommand.ts b/clients/client-redshift/src/commands/DescribeResizeCommand.ts index 1f1fccc966005..057a1a0e23de3 100644 --- a/clients/client-redshift/src/commands/DescribeResizeCommand.ts +++ b/clients/client-redshift/src/commands/DescribeResizeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResizeMessage, ResizeProgressMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeResizeMessage, ResizeProgressMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeResize } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeScheduledActionsCommand.ts b/clients/client-redshift/src/commands/DescribeScheduledActionsCommand.ts index 0d26f9d73f266..edb09492fa11c 100644 --- a/clients/client-redshift/src/commands/DescribeScheduledActionsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeScheduledActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScheduledActionsMessage, ScheduledActionsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeScheduledActionsMessage, ScheduledActionsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeScheduledActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeSnapshotCopyGrantsCommand.ts b/clients/client-redshift/src/commands/DescribeSnapshotCopyGrantsCommand.ts index 6d600c96dafdc..59d4ddd415313 100644 --- a/clients/client-redshift/src/commands/DescribeSnapshotCopyGrantsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeSnapshotCopyGrantsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSnapshotCopyGrantsMessage, SnapshotCopyGrantMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeSnapshotCopyGrantsMessage, SnapshotCopyGrantMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeSnapshotCopyGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeSnapshotSchedulesCommand.ts b/clients/client-redshift/src/commands/DescribeSnapshotSchedulesCommand.ts index 83e2158238676..7f55c39de28f2 100644 --- a/clients/client-redshift/src/commands/DescribeSnapshotSchedulesCommand.ts +++ b/clients/client-redshift/src/commands/DescribeSnapshotSchedulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSnapshotSchedulesMessage, DescribeSnapshotSchedulesOutputMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeSnapshotSchedulesMessage, DescribeSnapshotSchedulesOutputMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeSnapshotSchedules } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeStorageCommand.ts b/clients/client-redshift/src/commands/DescribeStorageCommand.ts index 61478e79c5b52..a0c8f8138261c 100644 --- a/clients/client-redshift/src/commands/DescribeStorageCommand.ts +++ b/clients/client-redshift/src/commands/DescribeStorageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CustomerStorageMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { CustomerStorageMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeStorage } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeTableRestoreStatusCommand.ts b/clients/client-redshift/src/commands/DescribeTableRestoreStatusCommand.ts index c18aeb9765303..cb7c1bafd8c2b 100644 --- a/clients/client-redshift/src/commands/DescribeTableRestoreStatusCommand.ts +++ b/clients/client-redshift/src/commands/DescribeTableRestoreStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTableRestoreStatusMessage, TableRestoreStatusMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeTableRestoreStatusMessage, TableRestoreStatusMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeTableRestoreStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeTagsCommand.ts b/clients/client-redshift/src/commands/DescribeTagsCommand.ts index c3581a4c2a716..7ee79cc3df53c 100644 --- a/clients/client-redshift/src/commands/DescribeTagsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagsMessage, TaggedResourceListMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeTagsMessage, TaggedResourceListMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DescribeUsageLimitsCommand.ts b/clients/client-redshift/src/commands/DescribeUsageLimitsCommand.ts index 1f87b28bf7ec6..11da5318817f6 100644 --- a/clients/client-redshift/src/commands/DescribeUsageLimitsCommand.ts +++ b/clients/client-redshift/src/commands/DescribeUsageLimitsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUsageLimitsMessage, UsageLimitList } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DescribeUsageLimitsMessage, UsageLimitList } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DescribeUsageLimits } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DisableLoggingCommand.ts b/clients/client-redshift/src/commands/DisableLoggingCommand.ts index c5f67013114f1..af1a671b4bed3 100644 --- a/clients/client-redshift/src/commands/DisableLoggingCommand.ts +++ b/clients/client-redshift/src/commands/DisableLoggingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableLoggingMessage, LoggingStatus } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DisableLoggingMessage, LoggingStatus } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DisableLogging } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DisableSnapshotCopyCommand.ts b/clients/client-redshift/src/commands/DisableSnapshotCopyCommand.ts index 4a0e282d8b554..b093ca5cd217d 100644 --- a/clients/client-redshift/src/commands/DisableSnapshotCopyCommand.ts +++ b/clients/client-redshift/src/commands/DisableSnapshotCopyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableSnapshotCopyMessage, DisableSnapshotCopyResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DisableSnapshotCopyMessage, DisableSnapshotCopyResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DisableSnapshotCopy } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/DisassociateDataShareConsumerCommand.ts b/clients/client-redshift/src/commands/DisassociateDataShareConsumerCommand.ts index 2413406781a53..9acbdd6b68cc0 100644 --- a/clients/client-redshift/src/commands/DisassociateDataShareConsumerCommand.ts +++ b/clients/client-redshift/src/commands/DisassociateDataShareConsumerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DataShare, DisassociateDataShareConsumerMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DataShare, DisassociateDataShareConsumerMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { DisassociateDataShareConsumer } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/EnableLoggingCommand.ts b/clients/client-redshift/src/commands/EnableLoggingCommand.ts index f8cad2523a0da..bb4266203413d 100644 --- a/clients/client-redshift/src/commands/EnableLoggingCommand.ts +++ b/clients/client-redshift/src/commands/EnableLoggingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableLoggingMessage, LoggingStatus } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { EnableLoggingMessage, LoggingStatus } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { EnableLogging } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/EnableSnapshotCopyCommand.ts b/clients/client-redshift/src/commands/EnableSnapshotCopyCommand.ts index 798e06002f9da..eaa5b6c91d305 100644 --- a/clients/client-redshift/src/commands/EnableSnapshotCopyCommand.ts +++ b/clients/client-redshift/src/commands/EnableSnapshotCopyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableSnapshotCopyMessage, EnableSnapshotCopyResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { EnableSnapshotCopyMessage, EnableSnapshotCopyResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { EnableSnapshotCopy } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/FailoverPrimaryComputeCommand.ts b/clients/client-redshift/src/commands/FailoverPrimaryComputeCommand.ts index 6493228c7f73a..7ef0b82d15c72 100644 --- a/clients/client-redshift/src/commands/FailoverPrimaryComputeCommand.ts +++ b/clients/client-redshift/src/commands/FailoverPrimaryComputeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FailoverPrimaryComputeInputMessage, FailoverPrimaryComputeResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { FailoverPrimaryComputeInputMessage, FailoverPrimaryComputeResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { FailoverPrimaryCompute } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/GetClusterCredentialsCommand.ts b/clients/client-redshift/src/commands/GetClusterCredentialsCommand.ts index dec588ec40e7f..84a79349fa35d 100644 --- a/clients/client-redshift/src/commands/GetClusterCredentialsCommand.ts +++ b/clients/client-redshift/src/commands/GetClusterCredentialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterCredentials, GetClusterCredentialsMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterCredentials, GetClusterCredentialsMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { GetClusterCredentials } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/GetClusterCredentialsWithIAMCommand.ts b/clients/client-redshift/src/commands/GetClusterCredentialsWithIAMCommand.ts index 553eb05b602ad..f68ba22cf6517 100644 --- a/clients/client-redshift/src/commands/GetClusterCredentialsWithIAMCommand.ts +++ b/clients/client-redshift/src/commands/GetClusterCredentialsWithIAMCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterExtendedCredentials, GetClusterCredentialsWithIAMMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterExtendedCredentials, GetClusterCredentialsWithIAMMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { GetClusterCredentialsWithIAM } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/GetIdentityCenterAuthTokenCommand.ts b/clients/client-redshift/src/commands/GetIdentityCenterAuthTokenCommand.ts index 95a2564dda0f4..ab77b69883dc0 100644 --- a/clients/client-redshift/src/commands/GetIdentityCenterAuthTokenCommand.ts +++ b/clients/client-redshift/src/commands/GetIdentityCenterAuthTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentityCenterAuthTokenRequest, GetIdentityCenterAuthTokenResponse } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { GetIdentityCenterAuthTokenRequest, GetIdentityCenterAuthTokenResponse } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { GetIdentityCenterAuthToken } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/GetReservedNodeExchangeConfigurationOptionsCommand.ts b/clients/client-redshift/src/commands/GetReservedNodeExchangeConfigurationOptionsCommand.ts index 8993f1af9a911..c9fb5274cd13a 100644 --- a/clients/client-redshift/src/commands/GetReservedNodeExchangeConfigurationOptionsCommand.ts +++ b/clients/client-redshift/src/commands/GetReservedNodeExchangeConfigurationOptionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetReservedNodeExchangeConfigurationOptionsInputMessage, GetReservedNodeExchangeConfigurationOptionsOutputMessage, } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { GetReservedNodeExchangeConfigurationOptions } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/GetReservedNodeExchangeOfferingsCommand.ts b/clients/client-redshift/src/commands/GetReservedNodeExchangeOfferingsCommand.ts index a09ec61f25448..1ec49fe38d7c9 100644 --- a/clients/client-redshift/src/commands/GetReservedNodeExchangeOfferingsCommand.ts +++ b/clients/client-redshift/src/commands/GetReservedNodeExchangeOfferingsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetReservedNodeExchangeOfferingsInputMessage, GetReservedNodeExchangeOfferingsOutputMessage, } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { GetReservedNodeExchangeOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/GetResourcePolicyCommand.ts b/clients/client-redshift/src/commands/GetResourcePolicyCommand.ts index f504f6a4f80a8..24c22fd077cf1 100644 --- a/clients/client-redshift/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-redshift/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyMessage, GetResourcePolicyResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { GetResourcePolicyMessage, GetResourcePolicyResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ListRecommendationsCommand.ts b/clients/client-redshift/src/commands/ListRecommendationsCommand.ts index e32c5ab9ef875..da6e1846247e6 100644 --- a/clients/client-redshift/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-redshift/src/commands/ListRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationsMessage, ListRecommendationsResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ListRecommendationsMessage, ListRecommendationsResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ListRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyAquaConfigurationCommand.ts b/clients/client-redshift/src/commands/ModifyAquaConfigurationCommand.ts index 05fa0bb998640..cdcfebcb3fd5f 100644 --- a/clients/client-redshift/src/commands/ModifyAquaConfigurationCommand.ts +++ b/clients/client-redshift/src/commands/ModifyAquaConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyAquaInputMessage, ModifyAquaOutputMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyAquaInputMessage, ModifyAquaOutputMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyAquaConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyAuthenticationProfileCommand.ts b/clients/client-redshift/src/commands/ModifyAuthenticationProfileCommand.ts index f3f35ed14870b..0ecb75d1c04d7 100644 --- a/clients/client-redshift/src/commands/ModifyAuthenticationProfileCommand.ts +++ b/clients/client-redshift/src/commands/ModifyAuthenticationProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyAuthenticationProfileMessage, ModifyAuthenticationProfileResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyAuthenticationProfileMessage, ModifyAuthenticationProfileResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyAuthenticationProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyClusterCommand.ts b/clients/client-redshift/src/commands/ModifyClusterCommand.ts index 3c9f4122a7146..aa2678a81a5fb 100644 --- a/clients/client-redshift/src/commands/ModifyClusterCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClusterMessage, ModifyClusterResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyClusterMessage, ModifyClusterResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyClusterDbRevisionCommand.ts b/clients/client-redshift/src/commands/ModifyClusterDbRevisionCommand.ts index 504c568db3eb3..e7cc1a61a35e3 100644 --- a/clients/client-redshift/src/commands/ModifyClusterDbRevisionCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterDbRevisionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClusterDbRevisionMessage, ModifyClusterDbRevisionResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyClusterDbRevisionMessage, ModifyClusterDbRevisionResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyClusterDbRevision } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyClusterIamRolesCommand.ts b/clients/client-redshift/src/commands/ModifyClusterIamRolesCommand.ts index f38b4edff81c7..4fc66255793d2 100644 --- a/clients/client-redshift/src/commands/ModifyClusterIamRolesCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterIamRolesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClusterIamRolesMessage, ModifyClusterIamRolesResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyClusterIamRolesMessage, ModifyClusterIamRolesResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyClusterIamRoles } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyClusterMaintenanceCommand.ts b/clients/client-redshift/src/commands/ModifyClusterMaintenanceCommand.ts index feefca6dcbf5a..5885176214574 100644 --- a/clients/client-redshift/src/commands/ModifyClusterMaintenanceCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterMaintenanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClusterMaintenanceMessage, ModifyClusterMaintenanceResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyClusterMaintenanceMessage, ModifyClusterMaintenanceResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyClusterMaintenance } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyClusterParameterGroupCommand.ts b/clients/client-redshift/src/commands/ModifyClusterParameterGroupCommand.ts index 89ab6fbdc7eb4..b222569636ee9 100644 --- a/clients/client-redshift/src/commands/ModifyClusterParameterGroupCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterParameterGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterParameterGroupNameMessage, ModifyClusterParameterGroupMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterParameterGroupNameMessage, ModifyClusterParameterGroupMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/ModifyClusterSnapshotCommand.ts index ba5477c6bcce3..ccf788cf73ccd 100644 --- a/clients/client-redshift/src/commands/ModifyClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClusterSnapshotMessage, ModifyClusterSnapshotResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyClusterSnapshotMessage, ModifyClusterSnapshotResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyClusterSnapshotScheduleCommand.ts b/clients/client-redshift/src/commands/ModifyClusterSnapshotScheduleCommand.ts index 00479cacddea1..52fa5087abab1 100644 --- a/clients/client-redshift/src/commands/ModifyClusterSnapshotScheduleCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterSnapshotScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClusterSnapshotScheduleMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyClusterSnapshotScheduleMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyClusterSnapshotSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyClusterSubnetGroupCommand.ts b/clients/client-redshift/src/commands/ModifyClusterSubnetGroupCommand.ts index bbed2159c99cf..0beafc30c467b 100644 --- a/clients/client-redshift/src/commands/ModifyClusterSubnetGroupCommand.ts +++ b/clients/client-redshift/src/commands/ModifyClusterSubnetGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClusterSubnetGroupMessage, ModifyClusterSubnetGroupResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyClusterSubnetGroupMessage, ModifyClusterSubnetGroupResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyClusterSubnetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyCustomDomainAssociationCommand.ts b/clients/client-redshift/src/commands/ModifyCustomDomainAssociationCommand.ts index fd91cdf34f621..43f2881557934 100644 --- a/clients/client-redshift/src/commands/ModifyCustomDomainAssociationCommand.ts +++ b/clients/client-redshift/src/commands/ModifyCustomDomainAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyCustomDomainAssociationMessage, ModifyCustomDomainAssociationResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyCustomDomainAssociationMessage, ModifyCustomDomainAssociationResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyCustomDomainAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyEndpointAccessCommand.ts b/clients/client-redshift/src/commands/ModifyEndpointAccessCommand.ts index e83dc6f539438..981a97ca2b92a 100644 --- a/clients/client-redshift/src/commands/ModifyEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/ModifyEndpointAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EndpointAccess, ModifyEndpointAccessMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { EndpointAccess, ModifyEndpointAccessMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyEventSubscriptionCommand.ts b/clients/client-redshift/src/commands/ModifyEventSubscriptionCommand.ts index 18dd2582cd5e7..f141a088d075a 100644 --- a/clients/client-redshift/src/commands/ModifyEventSubscriptionCommand.ts +++ b/clients/client-redshift/src/commands/ModifyEventSubscriptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyEventSubscriptionMessage, ModifyEventSubscriptionResult } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyEventSubscription } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyIntegrationCommand.ts b/clients/client-redshift/src/commands/ModifyIntegrationCommand.ts index 2ada65b8d0b05..f11796be120a3 100644 --- a/clients/client-redshift/src/commands/ModifyIntegrationCommand.ts +++ b/clients/client-redshift/src/commands/ModifyIntegrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Integration, ModifyIntegrationMessage } from "../models/models_0"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { Integration, ModifyIntegrationMessage } from "../models/models_0"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyIntegration } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyLakehouseConfigurationCommand.ts b/clients/client-redshift/src/commands/ModifyLakehouseConfigurationCommand.ts index 5591db412d8c1..1b65f108198c7 100644 --- a/clients/client-redshift/src/commands/ModifyLakehouseConfigurationCommand.ts +++ b/clients/client-redshift/src/commands/ModifyLakehouseConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LakehouseConfiguration } from "../models/models_0"; -import { ModifyLakehouseConfigurationMessage } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { LakehouseConfiguration } from "../models/models_0"; +import type { ModifyLakehouseConfigurationMessage } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyLakehouseConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyRedshiftIdcApplicationCommand.ts b/clients/client-redshift/src/commands/ModifyRedshiftIdcApplicationCommand.ts index 6c7ff6a045cee..5bc74f169d2c2 100644 --- a/clients/client-redshift/src/commands/ModifyRedshiftIdcApplicationCommand.ts +++ b/clients/client-redshift/src/commands/ModifyRedshiftIdcApplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyRedshiftIdcApplicationMessage, ModifyRedshiftIdcApplicationResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ModifyRedshiftIdcApplicationMessage, ModifyRedshiftIdcApplicationResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyRedshiftIdcApplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyScheduledActionCommand.ts b/clients/client-redshift/src/commands/ModifyScheduledActionCommand.ts index a7fb8380bff4c..dfa9551146f1f 100644 --- a/clients/client-redshift/src/commands/ModifyScheduledActionCommand.ts +++ b/clients/client-redshift/src/commands/ModifyScheduledActionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScheduledAction } from "../models/models_0"; -import { ModifyScheduledActionMessage } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ScheduledAction } from "../models/models_0"; +import type { ModifyScheduledActionMessage } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyScheduledAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifySnapshotCopyRetentionPeriodCommand.ts b/clients/client-redshift/src/commands/ModifySnapshotCopyRetentionPeriodCommand.ts index e817862e6c456..d0662d6e543f0 100644 --- a/clients/client-redshift/src/commands/ModifySnapshotCopyRetentionPeriodCommand.ts +++ b/clients/client-redshift/src/commands/ModifySnapshotCopyRetentionPeriodCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifySnapshotCopyRetentionPeriodMessage, ModifySnapshotCopyRetentionPeriodResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { + ModifySnapshotCopyRetentionPeriodMessage, + ModifySnapshotCopyRetentionPeriodResult, +} from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifySnapshotCopyRetentionPeriod } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifySnapshotScheduleCommand.ts b/clients/client-redshift/src/commands/ModifySnapshotScheduleCommand.ts index 385d7577612d9..dd59910f82085 100644 --- a/clients/client-redshift/src/commands/ModifySnapshotScheduleCommand.ts +++ b/clients/client-redshift/src/commands/ModifySnapshotScheduleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SnapshotSchedule } from "../models/models_0"; -import { ModifySnapshotScheduleMessage } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { SnapshotSchedule } from "../models/models_0"; +import type { ModifySnapshotScheduleMessage } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifySnapshotSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ModifyUsageLimitCommand.ts b/clients/client-redshift/src/commands/ModifyUsageLimitCommand.ts index 6830dc57aecea..1f2c9bf4e2dcb 100644 --- a/clients/client-redshift/src/commands/ModifyUsageLimitCommand.ts +++ b/clients/client-redshift/src/commands/ModifyUsageLimitCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UsageLimit } from "../models/models_0"; -import { ModifyUsageLimitMessage } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { UsageLimit } from "../models/models_0"; +import type { ModifyUsageLimitMessage } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ModifyUsageLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/PauseClusterCommand.ts b/clients/client-redshift/src/commands/PauseClusterCommand.ts index 97c70ca35a8c9..819df30953cfc 100644 --- a/clients/client-redshift/src/commands/PauseClusterCommand.ts +++ b/clients/client-redshift/src/commands/PauseClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PauseClusterMessage } from "../models/models_0"; -import { PauseClusterResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { PauseClusterMessage } from "../models/models_0"; +import type { PauseClusterResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { PauseCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/PurchaseReservedNodeOfferingCommand.ts b/clients/client-redshift/src/commands/PurchaseReservedNodeOfferingCommand.ts index c3bd44dadf2ab..468dc89f6b343 100644 --- a/clients/client-redshift/src/commands/PurchaseReservedNodeOfferingCommand.ts +++ b/clients/client-redshift/src/commands/PurchaseReservedNodeOfferingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PurchaseReservedNodeOfferingMessage, PurchaseReservedNodeOfferingResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { PurchaseReservedNodeOfferingMessage, PurchaseReservedNodeOfferingResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { PurchaseReservedNodeOffering } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/PutResourcePolicyCommand.ts b/clients/client-redshift/src/commands/PutResourcePolicyCommand.ts index 4ba0ece2f4181..e6ab02dad3e20 100644 --- a/clients/client-redshift/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-redshift/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyMessage, PutResourcePolicyResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { PutResourcePolicyMessage, PutResourcePolicyResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/RebootClusterCommand.ts b/clients/client-redshift/src/commands/RebootClusterCommand.ts index c3d939494fac6..0a4741ae5f675 100644 --- a/clients/client-redshift/src/commands/RebootClusterCommand.ts +++ b/clients/client-redshift/src/commands/RebootClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootClusterMessage, RebootClusterResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RebootClusterMessage, RebootClusterResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { RebootCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/RegisterNamespaceCommand.ts b/clients/client-redshift/src/commands/RegisterNamespaceCommand.ts index cd87717061a82..7031674e47383 100644 --- a/clients/client-redshift/src/commands/RegisterNamespaceCommand.ts +++ b/clients/client-redshift/src/commands/RegisterNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterNamespaceInputMessage, RegisterNamespaceOutputMessage } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RegisterNamespaceInputMessage, RegisterNamespaceOutputMessage } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { RegisterNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/RejectDataShareCommand.ts b/clients/client-redshift/src/commands/RejectDataShareCommand.ts index 90a14104513b4..c605deed5bf46 100644 --- a/clients/client-redshift/src/commands/RejectDataShareCommand.ts +++ b/clients/client-redshift/src/commands/RejectDataShareCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DataShare } from "../models/models_0"; -import { RejectDataShareMessage } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { DataShare } from "../models/models_0"; +import type { RejectDataShareMessage } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { RejectDataShare } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ResetClusterParameterGroupCommand.ts b/clients/client-redshift/src/commands/ResetClusterParameterGroupCommand.ts index 3978027c5171a..5573c136215c0 100644 --- a/clients/client-redshift/src/commands/ResetClusterParameterGroupCommand.ts +++ b/clients/client-redshift/src/commands/ResetClusterParameterGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ClusterParameterGroupNameMessage } from "../models/models_0"; -import { ResetClusterParameterGroupMessage } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ClusterParameterGroupNameMessage } from "../models/models_0"; +import type { ResetClusterParameterGroupMessage } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ResetClusterParameterGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ResizeClusterCommand.ts b/clients/client-redshift/src/commands/ResizeClusterCommand.ts index d3660ef905a2c..77a1af0ccdd75 100644 --- a/clients/client-redshift/src/commands/ResizeClusterCommand.ts +++ b/clients/client-redshift/src/commands/ResizeClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResizeClusterMessage } from "../models/models_0"; -import { ResizeClusterResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ResizeClusterMessage } from "../models/models_0"; +import type { ResizeClusterResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ResizeCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/RestoreFromClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/RestoreFromClusterSnapshotCommand.ts index 9d4cfe9619ed2..91e7f24475855 100644 --- a/clients/client-redshift/src/commands/RestoreFromClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/RestoreFromClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreFromClusterSnapshotMessage, RestoreFromClusterSnapshotResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RestoreFromClusterSnapshotMessage, RestoreFromClusterSnapshotResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { RestoreFromClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/RestoreTableFromClusterSnapshotCommand.ts b/clients/client-redshift/src/commands/RestoreTableFromClusterSnapshotCommand.ts index 0ac3e9015beaa..3dd26a59ad66c 100644 --- a/clients/client-redshift/src/commands/RestoreTableFromClusterSnapshotCommand.ts +++ b/clients/client-redshift/src/commands/RestoreTableFromClusterSnapshotCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreTableFromClusterSnapshotMessage, RestoreTableFromClusterSnapshotResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RestoreTableFromClusterSnapshotMessage, RestoreTableFromClusterSnapshotResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { RestoreTableFromClusterSnapshot } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/ResumeClusterCommand.ts b/clients/client-redshift/src/commands/ResumeClusterCommand.ts index 1f51c6b0dec05..884d88b272b09 100644 --- a/clients/client-redshift/src/commands/ResumeClusterCommand.ts +++ b/clients/client-redshift/src/commands/ResumeClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResumeClusterMessage } from "../models/models_0"; -import { ResumeClusterResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { ResumeClusterMessage } from "../models/models_0"; +import type { ResumeClusterResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { ResumeCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/RevokeClusterSecurityGroupIngressCommand.ts b/clients/client-redshift/src/commands/RevokeClusterSecurityGroupIngressCommand.ts index 75c242ca6b292..5d208b0bdf8b3 100644 --- a/clients/client-redshift/src/commands/RevokeClusterSecurityGroupIngressCommand.ts +++ b/clients/client-redshift/src/commands/RevokeClusterSecurityGroupIngressCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeClusterSecurityGroupIngressMessage, RevokeClusterSecurityGroupIngressResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { + RevokeClusterSecurityGroupIngressMessage, + RevokeClusterSecurityGroupIngressResult, +} from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { RevokeClusterSecurityGroupIngress } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/RevokeEndpointAccessCommand.ts b/clients/client-redshift/src/commands/RevokeEndpointAccessCommand.ts index f4975ad43c13a..a40a91c0a08c7 100644 --- a/clients/client-redshift/src/commands/RevokeEndpointAccessCommand.ts +++ b/clients/client-redshift/src/commands/RevokeEndpointAccessCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EndpointAuthorization } from "../models/models_0"; -import { RevokeEndpointAccessMessage } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { EndpointAuthorization } from "../models/models_0"; +import type { RevokeEndpointAccessMessage } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { RevokeEndpointAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/RevokeSnapshotAccessCommand.ts b/clients/client-redshift/src/commands/RevokeSnapshotAccessCommand.ts index 2efbc36e37aad..deaacfa57d043 100644 --- a/clients/client-redshift/src/commands/RevokeSnapshotAccessCommand.ts +++ b/clients/client-redshift/src/commands/RevokeSnapshotAccessCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeSnapshotAccessMessage, RevokeSnapshotAccessResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RevokeSnapshotAccessMessage, RevokeSnapshotAccessResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { RevokeSnapshotAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/RotateEncryptionKeyCommand.ts b/clients/client-redshift/src/commands/RotateEncryptionKeyCommand.ts index e335d7845978e..1349371aa457c 100644 --- a/clients/client-redshift/src/commands/RotateEncryptionKeyCommand.ts +++ b/clients/client-redshift/src/commands/RotateEncryptionKeyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RotateEncryptionKeyMessage, RotateEncryptionKeyResult } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { RotateEncryptionKeyMessage, RotateEncryptionKeyResult } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { RotateEncryptionKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/commands/UpdatePartnerStatusCommand.ts b/clients/client-redshift/src/commands/UpdatePartnerStatusCommand.ts index 6dff32408ceb7..388615988f481 100644 --- a/clients/client-redshift/src/commands/UpdatePartnerStatusCommand.ts +++ b/clients/client-redshift/src/commands/UpdatePartnerStatusCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PartnerIntegrationOutputMessage } from "../models/models_0"; -import { UpdatePartnerStatusInputMessage } from "../models/models_1"; -import { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; +import type { PartnerIntegrationOutputMessage } from "../models/models_0"; +import type { UpdatePartnerStatusInputMessage } from "../models/models_1"; +import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; import { UpdatePartnerStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-redshift/src/endpoint/EndpointParameters.ts b/clients/client-redshift/src/endpoint/EndpointParameters.ts index 86d276b6777f4..edbf6ec9c43f5 100644 --- a/clients/client-redshift/src/endpoint/EndpointParameters.ts +++ b/clients/client-redshift/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-redshift/src/endpoint/endpointResolver.ts b/clients/client-redshift/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-redshift/src/endpoint/endpointResolver.ts +++ b/clients/client-redshift/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-redshift/src/extensionConfiguration.ts b/clients/client-redshift/src/extensionConfiguration.ts index d41e7124e14eb..ac1a9e8fa2f36 100644 --- a/clients/client-redshift/src/extensionConfiguration.ts +++ b/clients/client-redshift/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-redshift/src/models/RedshiftServiceException.ts b/clients/client-redshift/src/models/RedshiftServiceException.ts index 4d05ea6fc9aa8..084317489ee34 100644 --- a/clients/client-redshift/src/models/RedshiftServiceException.ts +++ b/clients/client-redshift/src/models/RedshiftServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-redshift/src/models/errors.ts b/clients/client-redshift/src/models/errors.ts index 8fa4a1025ead4..4a0d19ae0f5e8 100644 --- a/clients/client-redshift/src/models/errors.ts +++ b/clients/client-redshift/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RedshiftServiceException as __BaseException } from "./RedshiftServiceException"; diff --git a/clients/client-redshift/src/pagination/DescribeClusterDbRevisionsPaginator.ts b/clients/client-redshift/src/pagination/DescribeClusterDbRevisionsPaginator.ts index b231653996334..33c52381bd2f5 100644 --- a/clients/client-redshift/src/pagination/DescribeClusterDbRevisionsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeClusterDbRevisionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClusterDbRevisionsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeClusterParameterGroupsPaginator.ts b/clients/client-redshift/src/pagination/DescribeClusterParameterGroupsPaginator.ts index 3cb41314f5c74..69d3f156a9e63 100644 --- a/clients/client-redshift/src/pagination/DescribeClusterParameterGroupsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeClusterParameterGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClusterParameterGroupsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeClusterParametersPaginator.ts b/clients/client-redshift/src/pagination/DescribeClusterParametersPaginator.ts index b194730fa60f2..8a1ce73556ed6 100644 --- a/clients/client-redshift/src/pagination/DescribeClusterParametersPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeClusterParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClusterParametersCommand, diff --git a/clients/client-redshift/src/pagination/DescribeClusterSecurityGroupsPaginator.ts b/clients/client-redshift/src/pagination/DescribeClusterSecurityGroupsPaginator.ts index 270773fce6347..9ac0121cb2dba 100644 --- a/clients/client-redshift/src/pagination/DescribeClusterSecurityGroupsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeClusterSecurityGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClusterSecurityGroupsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeClusterSnapshotsPaginator.ts b/clients/client-redshift/src/pagination/DescribeClusterSnapshotsPaginator.ts index ae03c59070c1c..ba75ed1731503 100644 --- a/clients/client-redshift/src/pagination/DescribeClusterSnapshotsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeClusterSnapshotsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClusterSnapshotsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeClusterSubnetGroupsPaginator.ts b/clients/client-redshift/src/pagination/DescribeClusterSubnetGroupsPaginator.ts index 301d3b4fa1e6d..ad5bd699005c1 100644 --- a/clients/client-redshift/src/pagination/DescribeClusterSubnetGroupsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeClusterSubnetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClusterSubnetGroupsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeClusterTracksPaginator.ts b/clients/client-redshift/src/pagination/DescribeClusterTracksPaginator.ts index 05a7aadf45b0f..269092b592e90 100644 --- a/clients/client-redshift/src/pagination/DescribeClusterTracksPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeClusterTracksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClusterTracksCommand, diff --git a/clients/client-redshift/src/pagination/DescribeClusterVersionsPaginator.ts b/clients/client-redshift/src/pagination/DescribeClusterVersionsPaginator.ts index 6a94bb7b57333..850860dce552b 100644 --- a/clients/client-redshift/src/pagination/DescribeClusterVersionsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeClusterVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClusterVersionsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeClustersPaginator.ts b/clients/client-redshift/src/pagination/DescribeClustersPaginator.ts index 798cea8821fb8..f6164f6185e12 100644 --- a/clients/client-redshift/src/pagination/DescribeClustersPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeClustersCommand, diff --git a/clients/client-redshift/src/pagination/DescribeCustomDomainAssociationsPaginator.ts b/clients/client-redshift/src/pagination/DescribeCustomDomainAssociationsPaginator.ts index 6b349f0b0755f..cece1c4422963 100644 --- a/clients/client-redshift/src/pagination/DescribeCustomDomainAssociationsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeCustomDomainAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCustomDomainAssociationsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeDataSharesForConsumerPaginator.ts b/clients/client-redshift/src/pagination/DescribeDataSharesForConsumerPaginator.ts index 0d3462509cf65..c43a11ddbe48b 100644 --- a/clients/client-redshift/src/pagination/DescribeDataSharesForConsumerPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeDataSharesForConsumerPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDataSharesForConsumerCommand, diff --git a/clients/client-redshift/src/pagination/DescribeDataSharesForProducerPaginator.ts b/clients/client-redshift/src/pagination/DescribeDataSharesForProducerPaginator.ts index ef1c0d39e8bab..d8e5d6fd2bfea 100644 --- a/clients/client-redshift/src/pagination/DescribeDataSharesForProducerPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeDataSharesForProducerPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDataSharesForProducerCommand, diff --git a/clients/client-redshift/src/pagination/DescribeDataSharesPaginator.ts b/clients/client-redshift/src/pagination/DescribeDataSharesPaginator.ts index 3a2597692fabb..c6e375c597c28 100644 --- a/clients/client-redshift/src/pagination/DescribeDataSharesPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeDataSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDataSharesCommand, diff --git a/clients/client-redshift/src/pagination/DescribeDefaultClusterParametersPaginator.ts b/clients/client-redshift/src/pagination/DescribeDefaultClusterParametersPaginator.ts index 4f52459a04382..33075ec1c1fd3 100644 --- a/clients/client-redshift/src/pagination/DescribeDefaultClusterParametersPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeDefaultClusterParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDefaultClusterParametersCommand, diff --git a/clients/client-redshift/src/pagination/DescribeEndpointAccessPaginator.ts b/clients/client-redshift/src/pagination/DescribeEndpointAccessPaginator.ts index 639d8b78ed0a6..ff71979dee0cc 100644 --- a/clients/client-redshift/src/pagination/DescribeEndpointAccessPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeEndpointAccessPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEndpointAccessCommand, diff --git a/clients/client-redshift/src/pagination/DescribeEndpointAuthorizationPaginator.ts b/clients/client-redshift/src/pagination/DescribeEndpointAuthorizationPaginator.ts index 99b404b4a21be..a7988345f7ed3 100644 --- a/clients/client-redshift/src/pagination/DescribeEndpointAuthorizationPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeEndpointAuthorizationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEndpointAuthorizationCommand, diff --git a/clients/client-redshift/src/pagination/DescribeEventSubscriptionsPaginator.ts b/clients/client-redshift/src/pagination/DescribeEventSubscriptionsPaginator.ts index 038d986da9135..dd8d68243dbf1 100644 --- a/clients/client-redshift/src/pagination/DescribeEventSubscriptionsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeEventSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventSubscriptionsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeEventsPaginator.ts b/clients/client-redshift/src/pagination/DescribeEventsPaginator.ts index 6a4e8744587de..d4de612fa342f 100644 --- a/clients/client-redshift/src/pagination/DescribeEventsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEventsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeHsmClientCertificatesPaginator.ts b/clients/client-redshift/src/pagination/DescribeHsmClientCertificatesPaginator.ts index a1daff6571b27..c5ad376950d6e 100644 --- a/clients/client-redshift/src/pagination/DescribeHsmClientCertificatesPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeHsmClientCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeHsmClientCertificatesCommand, diff --git a/clients/client-redshift/src/pagination/DescribeHsmConfigurationsPaginator.ts b/clients/client-redshift/src/pagination/DescribeHsmConfigurationsPaginator.ts index bb6f60c933405..3afdc5578aa14 100644 --- a/clients/client-redshift/src/pagination/DescribeHsmConfigurationsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeHsmConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeHsmConfigurationsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeInboundIntegrationsPaginator.ts b/clients/client-redshift/src/pagination/DescribeInboundIntegrationsPaginator.ts index 635e91a30f8a6..d32811169fb78 100644 --- a/clients/client-redshift/src/pagination/DescribeInboundIntegrationsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeInboundIntegrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInboundIntegrationsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeIntegrationsPaginator.ts b/clients/client-redshift/src/pagination/DescribeIntegrationsPaginator.ts index 7f6817cc27fef..9bf1e5671a9de 100644 --- a/clients/client-redshift/src/pagination/DescribeIntegrationsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeIntegrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeIntegrationsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeNodeConfigurationOptionsPaginator.ts b/clients/client-redshift/src/pagination/DescribeNodeConfigurationOptionsPaginator.ts index 412950f045197..a37e743533a06 100644 --- a/clients/client-redshift/src/pagination/DescribeNodeConfigurationOptionsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeNodeConfigurationOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNodeConfigurationOptionsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeOrderableClusterOptionsPaginator.ts b/clients/client-redshift/src/pagination/DescribeOrderableClusterOptionsPaginator.ts index 1c00c6522a48a..4ff7b6fe5a0bf 100644 --- a/clients/client-redshift/src/pagination/DescribeOrderableClusterOptionsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeOrderableClusterOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOrderableClusterOptionsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeRedshiftIdcApplicationsPaginator.ts b/clients/client-redshift/src/pagination/DescribeRedshiftIdcApplicationsPaginator.ts index 658dbf42059a9..6264320b6b8b9 100644 --- a/clients/client-redshift/src/pagination/DescribeRedshiftIdcApplicationsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeRedshiftIdcApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRedshiftIdcApplicationsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeReservedNodeExchangeStatusPaginator.ts b/clients/client-redshift/src/pagination/DescribeReservedNodeExchangeStatusPaginator.ts index 48b4df08902fd..c1881b31bbfff 100644 --- a/clients/client-redshift/src/pagination/DescribeReservedNodeExchangeStatusPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeReservedNodeExchangeStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedNodeExchangeStatusCommand, diff --git a/clients/client-redshift/src/pagination/DescribeReservedNodeOfferingsPaginator.ts b/clients/client-redshift/src/pagination/DescribeReservedNodeOfferingsPaginator.ts index c680960492774..21ddb592d074a 100644 --- a/clients/client-redshift/src/pagination/DescribeReservedNodeOfferingsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeReservedNodeOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedNodeOfferingsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeReservedNodesPaginator.ts b/clients/client-redshift/src/pagination/DescribeReservedNodesPaginator.ts index bc0cb9ac6a249..afd9524a4e510 100644 --- a/clients/client-redshift/src/pagination/DescribeReservedNodesPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeReservedNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeReservedNodesCommand, diff --git a/clients/client-redshift/src/pagination/DescribeScheduledActionsPaginator.ts b/clients/client-redshift/src/pagination/DescribeScheduledActionsPaginator.ts index f243e7fa07509..db11f2261b191 100644 --- a/clients/client-redshift/src/pagination/DescribeScheduledActionsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeScheduledActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeScheduledActionsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeSnapshotCopyGrantsPaginator.ts b/clients/client-redshift/src/pagination/DescribeSnapshotCopyGrantsPaginator.ts index 026fc1d557452..4d161b44a6775 100644 --- a/clients/client-redshift/src/pagination/DescribeSnapshotCopyGrantsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeSnapshotCopyGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSnapshotCopyGrantsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeSnapshotSchedulesPaginator.ts b/clients/client-redshift/src/pagination/DescribeSnapshotSchedulesPaginator.ts index e611c949b8e04..4eda90024dc5d 100644 --- a/clients/client-redshift/src/pagination/DescribeSnapshotSchedulesPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeSnapshotSchedulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSnapshotSchedulesCommand, diff --git a/clients/client-redshift/src/pagination/DescribeTableRestoreStatusPaginator.ts b/clients/client-redshift/src/pagination/DescribeTableRestoreStatusPaginator.ts index 25f50e95ad85e..95d7b3aa06a10 100644 --- a/clients/client-redshift/src/pagination/DescribeTableRestoreStatusPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeTableRestoreStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTableRestoreStatusCommand, diff --git a/clients/client-redshift/src/pagination/DescribeTagsPaginator.ts b/clients/client-redshift/src/pagination/DescribeTagsPaginator.ts index 2fc545de66c6d..c6e2312a803d2 100644 --- a/clients/client-redshift/src/pagination/DescribeTagsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTagsCommand, diff --git a/clients/client-redshift/src/pagination/DescribeUsageLimitsPaginator.ts b/clients/client-redshift/src/pagination/DescribeUsageLimitsPaginator.ts index 7ac5fa60c715f..a8a9329c1ca70 100644 --- a/clients/client-redshift/src/pagination/DescribeUsageLimitsPaginator.ts +++ b/clients/client-redshift/src/pagination/DescribeUsageLimitsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeUsageLimitsCommand, diff --git a/clients/client-redshift/src/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.ts b/clients/client-redshift/src/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.ts index 50275d4d23746..e57f487715f59 100644 --- a/clients/client-redshift/src/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.ts +++ b/clients/client-redshift/src/pagination/GetReservedNodeExchangeConfigurationOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetReservedNodeExchangeConfigurationOptionsCommand, diff --git a/clients/client-redshift/src/pagination/GetReservedNodeExchangeOfferingsPaginator.ts b/clients/client-redshift/src/pagination/GetReservedNodeExchangeOfferingsPaginator.ts index 05f09d7993f34..7d5943e0d65a1 100644 --- a/clients/client-redshift/src/pagination/GetReservedNodeExchangeOfferingsPaginator.ts +++ b/clients/client-redshift/src/pagination/GetReservedNodeExchangeOfferingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetReservedNodeExchangeOfferingsCommand, diff --git a/clients/client-redshift/src/pagination/Interfaces.ts b/clients/client-redshift/src/pagination/Interfaces.ts index 4d987e1ec62e8..c53169ea98f3c 100644 --- a/clients/client-redshift/src/pagination/Interfaces.ts +++ b/clients/client-redshift/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RedshiftClient } from "../RedshiftClient"; diff --git a/clients/client-redshift/src/pagination/ListRecommendationsPaginator.ts b/clients/client-redshift/src/pagination/ListRecommendationsPaginator.ts index 5bcec25d96682..55a1a07971269 100644 --- a/clients/client-redshift/src/pagination/ListRecommendationsPaginator.ts +++ b/clients/client-redshift/src/pagination/ListRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendationsCommand, diff --git a/clients/client-redshift/src/runtimeConfig.browser.ts b/clients/client-redshift/src/runtimeConfig.browser.ts index 95cf3899c4d49..944ba48a64c8f 100644 --- a/clients/client-redshift/src/runtimeConfig.browser.ts +++ b/clients/client-redshift/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RedshiftClientConfig } from "./RedshiftClient"; + +import type { RedshiftClientConfig } from "./RedshiftClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-redshift/src/runtimeConfig.native.ts b/clients/client-redshift/src/runtimeConfig.native.ts index b582a9809b135..de492f301f9c7 100644 --- a/clients/client-redshift/src/runtimeConfig.native.ts +++ b/clients/client-redshift/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RedshiftClientConfig } from "./RedshiftClient"; +import type { RedshiftClientConfig } from "./RedshiftClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-redshift/src/runtimeConfig.shared.ts b/clients/client-redshift/src/runtimeConfig.shared.ts index b7d3eab5b0fe4..f80966abb9874 100644 --- a/clients/client-redshift/src/runtimeConfig.shared.ts +++ b/clients/client-redshift/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRedshiftHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RedshiftClientConfig } from "./RedshiftClient"; +import type { RedshiftClientConfig } from "./RedshiftClient"; /** * @internal diff --git a/clients/client-redshift/src/runtimeConfig.ts b/clients/client-redshift/src/runtimeConfig.ts index d108ecd973bc3..52355445e3102 100644 --- a/clients/client-redshift/src/runtimeConfig.ts +++ b/clients/client-redshift/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RedshiftClientConfig } from "./RedshiftClient"; + +import type { RedshiftClientConfig } from "./RedshiftClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-redshift/src/runtimeExtensions.ts b/clients/client-redshift/src/runtimeExtensions.ts index 852fa614844d8..1871a6e9b0990 100644 --- a/clients/client-redshift/src/runtimeExtensions.ts +++ b/clients/client-redshift/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RedshiftExtensionConfiguration } from "./extensionConfiguration"; +import type { RedshiftExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-redshift/src/schemas/schemas_0.ts b/clients/client-redshift/src/schemas/schemas_0.ts index 03ac6c5af8cd6..47bd9b0242b39 100644 --- a/clients/client-redshift/src/schemas/schemas_0.ts +++ b/clients/client-redshift/src/schemas/schemas_0.ts @@ -1152,7 +1152,7 @@ const n0 = "com.amazonaws.redshift"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-rekognition/package.json b/clients/client-rekognition/package.json index bce459aea1370..b68e95306da9e 100644 --- a/clients/client-rekognition/package.json +++ b/clients/client-rekognition/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-rekognition/src/Rekognition.ts b/clients/client-rekognition/src/Rekognition.ts index fc4acb9bbc020..1f1b20498e5af 100644 --- a/clients/client-rekognition/src/Rekognition.ts +++ b/clients/client-rekognition/src/Rekognition.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateFacesCommand, @@ -333,7 +333,7 @@ import { UpdateStreamProcessorCommandInput, UpdateStreamProcessorCommandOutput, } from "./commands/UpdateStreamProcessorCommand"; -import { RekognitionClient, RekognitionClientConfig } from "./RekognitionClient"; +import { RekognitionClient } from "./RekognitionClient"; const commands = { AssociateFacesCommand, diff --git a/clients/client-rekognition/src/RekognitionClient.ts b/clients/client-rekognition/src/RekognitionClient.ts index 3ef3fa6a5d25a..5bacdb0f2acb6 100644 --- a/clients/client-rekognition/src/RekognitionClient.ts +++ b/clients/client-rekognition/src/RekognitionClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRekognitionHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateFacesCommandInput, AssociateFacesCommandOutput } from "./commands/AssociateFacesCommand"; @@ -235,7 +244,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-rekognition/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-rekognition/src/auth/httpAuthExtensionConfiguration.ts index 1395e01aff953..2e9b382b79b46 100644 --- a/clients/client-rekognition/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-rekognition/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RekognitionHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RekognitionHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-rekognition/src/auth/httpAuthSchemeProvider.ts b/clients/client-rekognition/src/auth/httpAuthSchemeProvider.ts index f849fab8e961a..8d8c0d50cd9e3 100644 --- a/clients/client-rekognition/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-rekognition/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RekognitionClientConfig, RekognitionClientResolvedConfig } from "../RekognitionClient"; +import { type RekognitionClientResolvedConfig, RekognitionClientConfig } from "../RekognitionClient"; /** * @internal diff --git a/clients/client-rekognition/src/commands/AssociateFacesCommand.ts b/clients/client-rekognition/src/commands/AssociateFacesCommand.ts index 4888f5564fd8e..c4907c9c2caea 100644 --- a/clients/client-rekognition/src/commands/AssociateFacesCommand.ts +++ b/clients/client-rekognition/src/commands/AssociateFacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateFacesRequest, AssociateFacesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { AssociateFacesRequest, AssociateFacesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { AssociateFaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/CompareFacesCommand.ts b/clients/client-rekognition/src/commands/CompareFacesCommand.ts index ee36e6ee3048a..6038b62f03b70 100644 --- a/clients/client-rekognition/src/commands/CompareFacesCommand.ts +++ b/clients/client-rekognition/src/commands/CompareFacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompareFacesRequest, CompareFacesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { CompareFacesRequest, CompareFacesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { CompareFaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts b/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts index ebb66cef08649..d9b78f864d270 100644 --- a/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/CopyProjectVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyProjectVersionRequest, CopyProjectVersionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { CopyProjectVersionRequest, CopyProjectVersionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { CopyProjectVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/CreateCollectionCommand.ts b/clients/client-rekognition/src/commands/CreateCollectionCommand.ts index fbc48bf9ebdd9..a9d9cf693320a 100644 --- a/clients/client-rekognition/src/commands/CreateCollectionCommand.ts +++ b/clients/client-rekognition/src/commands/CreateCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCollectionRequest, CreateCollectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { CreateCollectionRequest, CreateCollectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { CreateCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/CreateDatasetCommand.ts b/clients/client-rekognition/src/commands/CreateDatasetCommand.ts index 00c13952a01c0..12d7efa797e3d 100644 --- a/clients/client-rekognition/src/commands/CreateDatasetCommand.ts +++ b/clients/client-rekognition/src/commands/CreateDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { CreateDatasetRequest, CreateDatasetResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { CreateDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/CreateFaceLivenessSessionCommand.ts b/clients/client-rekognition/src/commands/CreateFaceLivenessSessionCommand.ts index 0ef7f55e70f79..fe995e7007c29 100644 --- a/clients/client-rekognition/src/commands/CreateFaceLivenessSessionCommand.ts +++ b/clients/client-rekognition/src/commands/CreateFaceLivenessSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFaceLivenessSessionRequest, CreateFaceLivenessSessionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { CreateFaceLivenessSessionRequest, CreateFaceLivenessSessionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { CreateFaceLivenessSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/CreateProjectCommand.ts b/clients/client-rekognition/src/commands/CreateProjectCommand.ts index 5ecf2806191ef..358062f45a86c 100644 --- a/clients/client-rekognition/src/commands/CreateProjectCommand.ts +++ b/clients/client-rekognition/src/commands/CreateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { CreateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts b/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts index 945c66299cd3e..0f65a1c2ff742 100644 --- a/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/CreateProjectVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectVersionRequest, CreateProjectVersionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { CreateProjectVersionRequest, CreateProjectVersionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { CreateProjectVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts index 8d86714e64f78..75ca01094622d 100644 --- a/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/CreateStreamProcessorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStreamProcessorRequest, CreateStreamProcessorResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { CreateStreamProcessorRequest, CreateStreamProcessorResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { CreateStreamProcessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/CreateUserCommand.ts b/clients/client-rekognition/src/commands/CreateUserCommand.ts index f115b5a1c5c37..e765cfaa27b28 100644 --- a/clients/client-rekognition/src/commands/CreateUserCommand.ts +++ b/clients/client-rekognition/src/commands/CreateUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { CreateUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DeleteCollectionCommand.ts b/clients/client-rekognition/src/commands/DeleteCollectionCommand.ts index 79daa239698a0..ed10d5da8126a 100644 --- a/clients/client-rekognition/src/commands/DeleteCollectionCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCollectionRequest, DeleteCollectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DeleteCollectionRequest, DeleteCollectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DeleteCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts b/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts index 83d8f6a62a253..4b15574fcf692 100644 --- a/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DeleteDatasetRequest, DeleteDatasetResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DeleteDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DeleteFacesCommand.ts b/clients/client-rekognition/src/commands/DeleteFacesCommand.ts index 9a067b6a74777..3d5e67166124f 100644 --- a/clients/client-rekognition/src/commands/DeleteFacesCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteFacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFacesRequest, DeleteFacesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DeleteFacesRequest, DeleteFacesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DeleteFaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DeleteProjectCommand.ts b/clients/client-rekognition/src/commands/DeleteProjectCommand.ts index 6416e12b35115..8d3f56179268f 100644 --- a/clients/client-rekognition/src/commands/DeleteProjectCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DeleteProjectRequest, DeleteProjectResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DeleteProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts b/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts index a3a64b210f660..2247e98cb41e1 100644 --- a/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteProjectPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectPolicyRequest, DeleteProjectPolicyResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DeleteProjectPolicyRequest, DeleteProjectPolicyResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DeleteProjectPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts b/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts index c53db2d9d9c9d..ca2b2e068ebc9 100644 --- a/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteProjectVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectVersionRequest, DeleteProjectVersionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DeleteProjectVersionRequest, DeleteProjectVersionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DeleteProjectVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DeleteStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/DeleteStreamProcessorCommand.ts index ee8fa5b998d8d..f1c72b2383b7a 100644 --- a/clients/client-rekognition/src/commands/DeleteStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteStreamProcessorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStreamProcessorRequest, DeleteStreamProcessorResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DeleteStreamProcessorRequest, DeleteStreamProcessorResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DeleteStreamProcessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DeleteUserCommand.ts b/clients/client-rekognition/src/commands/DeleteUserCommand.ts index 47a41e7250926..830e4914ab7ab 100644 --- a/clients/client-rekognition/src/commands/DeleteUserCommand.ts +++ b/clients/client-rekognition/src/commands/DeleteUserCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DeleteUser } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DescribeCollectionCommand.ts b/clients/client-rekognition/src/commands/DescribeCollectionCommand.ts index d529bdb9c4681..4c793a9196e3c 100644 --- a/clients/client-rekognition/src/commands/DescribeCollectionCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCollectionRequest, DescribeCollectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DescribeCollectionRequest, DescribeCollectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DescribeCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts b/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts index f3c88811d9798..9bd9a520bb275 100644 --- a/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeDatasetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DescribeDataset } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts b/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts index c77fc62abffc5..cf7d89c413183 100644 --- a/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeProjectVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProjectVersionsRequest, DescribeProjectVersionsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DescribeProjectVersionsRequest, DescribeProjectVersionsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DescribeProjectVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts b/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts index 32de78e270ef5..354c491070770 100644 --- a/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProjectsRequest, DescribeProjectsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DescribeProjectsRequest, DescribeProjectsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DescribeProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DescribeStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/DescribeStreamProcessorCommand.ts index 84d34b3d515b1..df368cedaed3a 100644 --- a/clients/client-rekognition/src/commands/DescribeStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/DescribeStreamProcessorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStreamProcessorRequest, DescribeStreamProcessorResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DescribeStreamProcessorRequest, DescribeStreamProcessorResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DescribeStreamProcessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts b/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts index c2f1383ebe8bf..9af06f0dd3bc3 100644 --- a/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts +++ b/clients/client-rekognition/src/commands/DetectCustomLabelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectCustomLabelsRequest, DetectCustomLabelsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DetectCustomLabelsRequest, DetectCustomLabelsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DetectCustomLabels } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DetectFacesCommand.ts b/clients/client-rekognition/src/commands/DetectFacesCommand.ts index 1b16639429819..92fd965159353 100644 --- a/clients/client-rekognition/src/commands/DetectFacesCommand.ts +++ b/clients/client-rekognition/src/commands/DetectFacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectFacesRequest, DetectFacesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DetectFacesRequest, DetectFacesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DetectFaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DetectLabelsCommand.ts b/clients/client-rekognition/src/commands/DetectLabelsCommand.ts index 944757d417a52..e36dd676df330 100644 --- a/clients/client-rekognition/src/commands/DetectLabelsCommand.ts +++ b/clients/client-rekognition/src/commands/DetectLabelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectLabelsRequest, DetectLabelsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DetectLabelsRequest, DetectLabelsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DetectLabels } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts b/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts index e0b79adbe4f4b..c531f34957a47 100644 --- a/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts +++ b/clients/client-rekognition/src/commands/DetectModerationLabelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectModerationLabelsRequest, DetectModerationLabelsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DetectModerationLabelsRequest, DetectModerationLabelsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DetectModerationLabels } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DetectProtectiveEquipmentCommand.ts b/clients/client-rekognition/src/commands/DetectProtectiveEquipmentCommand.ts index eb8bf68f86e25..c94506148552e 100644 --- a/clients/client-rekognition/src/commands/DetectProtectiveEquipmentCommand.ts +++ b/clients/client-rekognition/src/commands/DetectProtectiveEquipmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectProtectiveEquipmentRequest, DetectProtectiveEquipmentResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DetectProtectiveEquipmentRequest, DetectProtectiveEquipmentResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DetectProtectiveEquipment } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DetectTextCommand.ts b/clients/client-rekognition/src/commands/DetectTextCommand.ts index e83b24551873b..82e0b5aee0b21 100644 --- a/clients/client-rekognition/src/commands/DetectTextCommand.ts +++ b/clients/client-rekognition/src/commands/DetectTextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectTextRequest, DetectTextResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DetectTextRequest, DetectTextResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DetectText } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DisassociateFacesCommand.ts b/clients/client-rekognition/src/commands/DisassociateFacesCommand.ts index 1ae26f5f429a1..1ff6130df8680 100644 --- a/clients/client-rekognition/src/commands/DisassociateFacesCommand.ts +++ b/clients/client-rekognition/src/commands/DisassociateFacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateFacesRequest, DisassociateFacesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DisassociateFacesRequest, DisassociateFacesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DisassociateFaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts b/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts index e8172dab16f83..a2c0ca5af5ee7 100644 --- a/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts +++ b/clients/client-rekognition/src/commands/DistributeDatasetEntriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DistributeDatasetEntriesRequest, DistributeDatasetEntriesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { DistributeDatasetEntriesRequest, DistributeDatasetEntriesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { DistributeDatasetEntries } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetCelebrityInfoCommand.ts b/clients/client-rekognition/src/commands/GetCelebrityInfoCommand.ts index 1f7383b4f94ee..84c144dc4dcb2 100644 --- a/clients/client-rekognition/src/commands/GetCelebrityInfoCommand.ts +++ b/clients/client-rekognition/src/commands/GetCelebrityInfoCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCelebrityInfoRequest, GetCelebrityInfoResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetCelebrityInfoRequest, GetCelebrityInfoResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetCelebrityInfo } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetCelebrityRecognitionCommand.ts b/clients/client-rekognition/src/commands/GetCelebrityRecognitionCommand.ts index d4fd5413dc9f1..d27de0f0a297d 100644 --- a/clients/client-rekognition/src/commands/GetCelebrityRecognitionCommand.ts +++ b/clients/client-rekognition/src/commands/GetCelebrityRecognitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCelebrityRecognitionRequest, GetCelebrityRecognitionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetCelebrityRecognitionRequest, GetCelebrityRecognitionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetCelebrityRecognition } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetContentModerationCommand.ts b/clients/client-rekognition/src/commands/GetContentModerationCommand.ts index 809fa38dc53a0..b2d152c7d1116 100644 --- a/clients/client-rekognition/src/commands/GetContentModerationCommand.ts +++ b/clients/client-rekognition/src/commands/GetContentModerationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContentModerationRequest, GetContentModerationResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetContentModerationRequest, GetContentModerationResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetContentModeration } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetFaceDetectionCommand.ts b/clients/client-rekognition/src/commands/GetFaceDetectionCommand.ts index 5061d03f9413c..a6ac6f5a4fa0f 100644 --- a/clients/client-rekognition/src/commands/GetFaceDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/GetFaceDetectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFaceDetectionRequest, GetFaceDetectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetFaceDetectionRequest, GetFaceDetectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetFaceDetection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetFaceLivenessSessionResultsCommand.ts b/clients/client-rekognition/src/commands/GetFaceLivenessSessionResultsCommand.ts index 64428a276f655..169ce08b786c6 100644 --- a/clients/client-rekognition/src/commands/GetFaceLivenessSessionResultsCommand.ts +++ b/clients/client-rekognition/src/commands/GetFaceLivenessSessionResultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFaceLivenessSessionResultsRequest, GetFaceLivenessSessionResultsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetFaceLivenessSessionResultsRequest, GetFaceLivenessSessionResultsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetFaceLivenessSessionResults } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetFaceSearchCommand.ts b/clients/client-rekognition/src/commands/GetFaceSearchCommand.ts index b5aebf932efaa..1e572cc0be2e0 100644 --- a/clients/client-rekognition/src/commands/GetFaceSearchCommand.ts +++ b/clients/client-rekognition/src/commands/GetFaceSearchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFaceSearchRequest, GetFaceSearchResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetFaceSearchRequest, GetFaceSearchResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetFaceSearch } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetLabelDetectionCommand.ts b/clients/client-rekognition/src/commands/GetLabelDetectionCommand.ts index 1d8a5e0e820f2..bc49b90e2d4a6 100644 --- a/clients/client-rekognition/src/commands/GetLabelDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/GetLabelDetectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLabelDetectionRequest, GetLabelDetectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetLabelDetectionRequest, GetLabelDetectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetLabelDetection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetMediaAnalysisJobCommand.ts b/clients/client-rekognition/src/commands/GetMediaAnalysisJobCommand.ts index f436bc8650c30..376804a4301dd 100644 --- a/clients/client-rekognition/src/commands/GetMediaAnalysisJobCommand.ts +++ b/clients/client-rekognition/src/commands/GetMediaAnalysisJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMediaAnalysisJobRequest, GetMediaAnalysisJobResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetMediaAnalysisJobRequest, GetMediaAnalysisJobResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetMediaAnalysisJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetPersonTrackingCommand.ts b/clients/client-rekognition/src/commands/GetPersonTrackingCommand.ts index 78cc0257859d1..50068ab3e8638 100644 --- a/clients/client-rekognition/src/commands/GetPersonTrackingCommand.ts +++ b/clients/client-rekognition/src/commands/GetPersonTrackingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPersonTrackingRequest, GetPersonTrackingResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetPersonTrackingRequest, GetPersonTrackingResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetPersonTracking } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetSegmentDetectionCommand.ts b/clients/client-rekognition/src/commands/GetSegmentDetectionCommand.ts index 78321fc03f1d7..512af54c35bfe 100644 --- a/clients/client-rekognition/src/commands/GetSegmentDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/GetSegmentDetectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSegmentDetectionRequest, GetSegmentDetectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetSegmentDetectionRequest, GetSegmentDetectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetSegmentDetection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/GetTextDetectionCommand.ts b/clients/client-rekognition/src/commands/GetTextDetectionCommand.ts index eaabb97ba30e5..ba48468b00b4a 100644 --- a/clients/client-rekognition/src/commands/GetTextDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/GetTextDetectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTextDetectionRequest, GetTextDetectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { GetTextDetectionRequest, GetTextDetectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { GetTextDetection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/IndexFacesCommand.ts b/clients/client-rekognition/src/commands/IndexFacesCommand.ts index 64ef09e29cc01..faa3358afde85 100644 --- a/clients/client-rekognition/src/commands/IndexFacesCommand.ts +++ b/clients/client-rekognition/src/commands/IndexFacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IndexFacesRequest, IndexFacesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { IndexFacesRequest, IndexFacesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { IndexFaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/ListCollectionsCommand.ts b/clients/client-rekognition/src/commands/ListCollectionsCommand.ts index 556a4af0b740b..3d34038a7925f 100644 --- a/clients/client-rekognition/src/commands/ListCollectionsCommand.ts +++ b/clients/client-rekognition/src/commands/ListCollectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCollectionsRequest, ListCollectionsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { ListCollectionsRequest, ListCollectionsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { ListCollections } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts b/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts index fa3c24bce0df3..365af4589ab46 100644 --- a/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts +++ b/clients/client-rekognition/src/commands/ListDatasetEntriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasetEntriesRequest, ListDatasetEntriesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { ListDatasetEntriesRequest, ListDatasetEntriesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { ListDatasetEntries } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts b/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts index 03c73094733a9..f557ff2e54b6f 100644 --- a/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts +++ b/clients/client-rekognition/src/commands/ListDatasetLabelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatasetLabelsRequest, ListDatasetLabelsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { ListDatasetLabelsRequest, ListDatasetLabelsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { ListDatasetLabels } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/ListFacesCommand.ts b/clients/client-rekognition/src/commands/ListFacesCommand.ts index 3d172c2ccd20f..d9c490e5a10e8 100644 --- a/clients/client-rekognition/src/commands/ListFacesCommand.ts +++ b/clients/client-rekognition/src/commands/ListFacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFacesRequest, ListFacesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { ListFacesRequest, ListFacesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { ListFaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/ListMediaAnalysisJobsCommand.ts b/clients/client-rekognition/src/commands/ListMediaAnalysisJobsCommand.ts index f77269e20f048..ffe2f8db6c058 100644 --- a/clients/client-rekognition/src/commands/ListMediaAnalysisJobsCommand.ts +++ b/clients/client-rekognition/src/commands/ListMediaAnalysisJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMediaAnalysisJobsRequest, ListMediaAnalysisJobsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { ListMediaAnalysisJobsRequest, ListMediaAnalysisJobsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { ListMediaAnalysisJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts b/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts index d3c4c3670c7b7..fc7541985603d 100644 --- a/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts +++ b/clients/client-rekognition/src/commands/ListProjectPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProjectPoliciesRequest, ListProjectPoliciesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { ListProjectPoliciesRequest, ListProjectPoliciesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { ListProjectPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/ListStreamProcessorsCommand.ts b/clients/client-rekognition/src/commands/ListStreamProcessorsCommand.ts index f52d5cee3d965..b6230b669e36f 100644 --- a/clients/client-rekognition/src/commands/ListStreamProcessorsCommand.ts +++ b/clients/client-rekognition/src/commands/ListStreamProcessorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStreamProcessorsRequest, ListStreamProcessorsResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { ListStreamProcessorsRequest, ListStreamProcessorsResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { ListStreamProcessors } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/ListTagsForResourceCommand.ts b/clients/client-rekognition/src/commands/ListTagsForResourceCommand.ts index 9cd3edb3d29b6..c1069015e4d05 100644 --- a/clients/client-rekognition/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rekognition/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/ListUsersCommand.ts b/clients/client-rekognition/src/commands/ListUsersCommand.ts index 070aca30b7809..944ab263d8303 100644 --- a/clients/client-rekognition/src/commands/ListUsersCommand.ts +++ b/clients/client-rekognition/src/commands/ListUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { ListUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts b/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts index b3c34ba32d696..a2b51b9cce074 100644 --- a/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts +++ b/clients/client-rekognition/src/commands/PutProjectPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutProjectPolicyRequest, PutProjectPolicyResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { PutProjectPolicyRequest, PutProjectPolicyResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { PutProjectPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/RecognizeCelebritiesCommand.ts b/clients/client-rekognition/src/commands/RecognizeCelebritiesCommand.ts index e512c002dbc07..26a83ba6c3140 100644 --- a/clients/client-rekognition/src/commands/RecognizeCelebritiesCommand.ts +++ b/clients/client-rekognition/src/commands/RecognizeCelebritiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecognizeCelebritiesRequest, RecognizeCelebritiesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { RecognizeCelebritiesRequest, RecognizeCelebritiesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { RecognizeCelebrities } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/SearchFacesByImageCommand.ts b/clients/client-rekognition/src/commands/SearchFacesByImageCommand.ts index 34a65d1c7dbb3..22475cc6436b1 100644 --- a/clients/client-rekognition/src/commands/SearchFacesByImageCommand.ts +++ b/clients/client-rekognition/src/commands/SearchFacesByImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchFacesByImageRequest, SearchFacesByImageResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { SearchFacesByImageRequest, SearchFacesByImageResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { SearchFacesByImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/SearchFacesCommand.ts b/clients/client-rekognition/src/commands/SearchFacesCommand.ts index 51c58859dbdf3..3c3c5b2157ebd 100644 --- a/clients/client-rekognition/src/commands/SearchFacesCommand.ts +++ b/clients/client-rekognition/src/commands/SearchFacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchFacesRequest, SearchFacesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { SearchFacesRequest, SearchFacesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { SearchFaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts b/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts index d2aeb787b4607..625cca72079d1 100644 --- a/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts +++ b/clients/client-rekognition/src/commands/SearchUsersByImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchUsersByImageRequest, SearchUsersByImageResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { SearchUsersByImageRequest, SearchUsersByImageResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { SearchUsersByImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/SearchUsersCommand.ts b/clients/client-rekognition/src/commands/SearchUsersCommand.ts index 649eab3fc4425..0cd9493a7a63a 100644 --- a/clients/client-rekognition/src/commands/SearchUsersCommand.ts +++ b/clients/client-rekognition/src/commands/SearchUsersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchUsersRequest, SearchUsersResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { SearchUsersRequest, SearchUsersResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { SearchUsers } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts b/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts index 23a1b1328fe5c..4f44138327be5 100644 --- a/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts +++ b/clients/client-rekognition/src/commands/StartCelebrityRecognitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCelebrityRecognitionRequest, StartCelebrityRecognitionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartCelebrityRecognitionRequest, StartCelebrityRecognitionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartCelebrityRecognition } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartContentModerationCommand.ts b/clients/client-rekognition/src/commands/StartContentModerationCommand.ts index 63ff727d39f95..48704a0c91c72 100644 --- a/clients/client-rekognition/src/commands/StartContentModerationCommand.ts +++ b/clients/client-rekognition/src/commands/StartContentModerationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartContentModerationRequest, StartContentModerationResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartContentModerationRequest, StartContentModerationResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartContentModeration } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts b/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts index 95d8d3903faf4..f130dc97e8a45 100644 --- a/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/StartFaceDetectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFaceDetectionRequest, StartFaceDetectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartFaceDetectionRequest, StartFaceDetectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartFaceDetection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts b/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts index 3124bf4c3786a..1474af7ec03b1 100644 --- a/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts +++ b/clients/client-rekognition/src/commands/StartFaceSearchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFaceSearchRequest, StartFaceSearchResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartFaceSearchRequest, StartFaceSearchResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartFaceSearch } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts b/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts index 64399c57be187..319b2cdd41743 100644 --- a/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/StartLabelDetectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartLabelDetectionRequest, StartLabelDetectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartLabelDetectionRequest, StartLabelDetectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartLabelDetection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartMediaAnalysisJobCommand.ts b/clients/client-rekognition/src/commands/StartMediaAnalysisJobCommand.ts index b927860b435a7..062c83ff0a94a 100644 --- a/clients/client-rekognition/src/commands/StartMediaAnalysisJobCommand.ts +++ b/clients/client-rekognition/src/commands/StartMediaAnalysisJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMediaAnalysisJobRequest, StartMediaAnalysisJobResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartMediaAnalysisJobRequest, StartMediaAnalysisJobResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartMediaAnalysisJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts b/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts index 8ce5f51f7aaa0..947420c91bdd9 100644 --- a/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts +++ b/clients/client-rekognition/src/commands/StartPersonTrackingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPersonTrackingRequest, StartPersonTrackingResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartPersonTrackingRequest, StartPersonTrackingResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartPersonTracking } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts b/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts index e6fd52c23df20..1137981b6d240 100644 --- a/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/StartProjectVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartProjectVersionRequest, StartProjectVersionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartProjectVersionRequest, StartProjectVersionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartProjectVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts b/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts index d87533e9af57e..146e98b74d8b0 100644 --- a/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/StartSegmentDetectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSegmentDetectionRequest, StartSegmentDetectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartSegmentDetectionRequest, StartSegmentDetectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartSegmentDetection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/StartStreamProcessorCommand.ts index ac04d92a8acd6..e3f711d729f98 100644 --- a/clients/client-rekognition/src/commands/StartStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/StartStreamProcessorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartStreamProcessorRequest, StartStreamProcessorResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartStreamProcessorRequest, StartStreamProcessorResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartStreamProcessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts b/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts index 6f980cfbceb3e..075dbca8803ce 100644 --- a/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts +++ b/clients/client-rekognition/src/commands/StartTextDetectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTextDetectionRequest, StartTextDetectionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StartTextDetectionRequest, StartTextDetectionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StartTextDetection } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts b/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts index d813c9b4e4472..505e6c67418ad 100644 --- a/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts +++ b/clients/client-rekognition/src/commands/StopProjectVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopProjectVersionRequest, StopProjectVersionResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StopProjectVersionRequest, StopProjectVersionResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StopProjectVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/StopStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/StopStreamProcessorCommand.ts index 38d6fac2d4dec..a34d9073a79eb 100644 --- a/clients/client-rekognition/src/commands/StopStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/StopStreamProcessorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopStreamProcessorRequest, StopStreamProcessorResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { StopStreamProcessorRequest, StopStreamProcessorResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { StopStreamProcessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/TagResourceCommand.ts b/clients/client-rekognition/src/commands/TagResourceCommand.ts index b79d18314be8d..240ce03f5cc27 100644 --- a/clients/client-rekognition/src/commands/TagResourceCommand.ts +++ b/clients/client-rekognition/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/UntagResourceCommand.ts b/clients/client-rekognition/src/commands/UntagResourceCommand.ts index 38479b51599a0..51007af342928 100644 --- a/clients/client-rekognition/src/commands/UntagResourceCommand.ts +++ b/clients/client-rekognition/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts b/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts index ad90691f919a5..76abf783bbeec 100644 --- a/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts +++ b/clients/client-rekognition/src/commands/UpdateDatasetEntriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDatasetEntriesRequest, UpdateDatasetEntriesResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { UpdateDatasetEntriesRequest, UpdateDatasetEntriesResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { UpdateDatasetEntries } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/commands/UpdateStreamProcessorCommand.ts b/clients/client-rekognition/src/commands/UpdateStreamProcessorCommand.ts index e192df4f90a30..21692c42f4435 100644 --- a/clients/client-rekognition/src/commands/UpdateStreamProcessorCommand.ts +++ b/clients/client-rekognition/src/commands/UpdateStreamProcessorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStreamProcessorRequest, UpdateStreamProcessorResponse } from "../models/models_0"; -import { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; +import type { UpdateStreamProcessorRequest, UpdateStreamProcessorResponse } from "../models/models_0"; +import type { RekognitionClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RekognitionClient"; import { UpdateStreamProcessor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rekognition/src/endpoint/EndpointParameters.ts b/clients/client-rekognition/src/endpoint/EndpointParameters.ts index 5014e6ceda783..02ba994d355b0 100644 --- a/clients/client-rekognition/src/endpoint/EndpointParameters.ts +++ b/clients/client-rekognition/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-rekognition/src/endpoint/endpointResolver.ts b/clients/client-rekognition/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-rekognition/src/endpoint/endpointResolver.ts +++ b/clients/client-rekognition/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-rekognition/src/extensionConfiguration.ts b/clients/client-rekognition/src/extensionConfiguration.ts index d4ff89464191f..2d5b38f98bdb7 100644 --- a/clients/client-rekognition/src/extensionConfiguration.ts +++ b/clients/client-rekognition/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-rekognition/src/models/RekognitionServiceException.ts b/clients/client-rekognition/src/models/RekognitionServiceException.ts index e3b707f72eb1a..a85cb683508fb 100644 --- a/clients/client-rekognition/src/models/RekognitionServiceException.ts +++ b/clients/client-rekognition/src/models/RekognitionServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-rekognition/src/models/errors.ts b/clients/client-rekognition/src/models/errors.ts index 00bacfd37e69d..8e520583be024 100644 --- a/clients/client-rekognition/src/models/errors.ts +++ b/clients/client-rekognition/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RekognitionServiceException as __BaseException } from "./RekognitionServiceException"; diff --git a/clients/client-rekognition/src/pagination/DescribeProjectVersionsPaginator.ts b/clients/client-rekognition/src/pagination/DescribeProjectVersionsPaginator.ts index a05c0fda7f383..cf70da55862a7 100644 --- a/clients/client-rekognition/src/pagination/DescribeProjectVersionsPaginator.ts +++ b/clients/client-rekognition/src/pagination/DescribeProjectVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeProjectVersionsCommand, diff --git a/clients/client-rekognition/src/pagination/DescribeProjectsPaginator.ts b/clients/client-rekognition/src/pagination/DescribeProjectsPaginator.ts index 7f53009fdd409..8ebe732572650 100644 --- a/clients/client-rekognition/src/pagination/DescribeProjectsPaginator.ts +++ b/clients/client-rekognition/src/pagination/DescribeProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeProjectsCommand, diff --git a/clients/client-rekognition/src/pagination/GetCelebrityRecognitionPaginator.ts b/clients/client-rekognition/src/pagination/GetCelebrityRecognitionPaginator.ts index ff64a4a293625..cb2e83e4363b1 100644 --- a/clients/client-rekognition/src/pagination/GetCelebrityRecognitionPaginator.ts +++ b/clients/client-rekognition/src/pagination/GetCelebrityRecognitionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCelebrityRecognitionCommand, diff --git a/clients/client-rekognition/src/pagination/GetContentModerationPaginator.ts b/clients/client-rekognition/src/pagination/GetContentModerationPaginator.ts index 2ca77527df7f3..c847cf2224863 100644 --- a/clients/client-rekognition/src/pagination/GetContentModerationPaginator.ts +++ b/clients/client-rekognition/src/pagination/GetContentModerationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetContentModerationCommand, diff --git a/clients/client-rekognition/src/pagination/GetFaceDetectionPaginator.ts b/clients/client-rekognition/src/pagination/GetFaceDetectionPaginator.ts index 94d77b6cf5841..c665ccb7a629a 100644 --- a/clients/client-rekognition/src/pagination/GetFaceDetectionPaginator.ts +++ b/clients/client-rekognition/src/pagination/GetFaceDetectionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetFaceDetectionCommand, diff --git a/clients/client-rekognition/src/pagination/GetFaceSearchPaginator.ts b/clients/client-rekognition/src/pagination/GetFaceSearchPaginator.ts index 8653c2ab5e40f..f4e9c95c2a438 100644 --- a/clients/client-rekognition/src/pagination/GetFaceSearchPaginator.ts +++ b/clients/client-rekognition/src/pagination/GetFaceSearchPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetFaceSearchCommand, diff --git a/clients/client-rekognition/src/pagination/GetLabelDetectionPaginator.ts b/clients/client-rekognition/src/pagination/GetLabelDetectionPaginator.ts index 03b9d3aa54079..95b8538f8d8da 100644 --- a/clients/client-rekognition/src/pagination/GetLabelDetectionPaginator.ts +++ b/clients/client-rekognition/src/pagination/GetLabelDetectionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetLabelDetectionCommand, diff --git a/clients/client-rekognition/src/pagination/GetPersonTrackingPaginator.ts b/clients/client-rekognition/src/pagination/GetPersonTrackingPaginator.ts index ce242088abf39..6621996e22672 100644 --- a/clients/client-rekognition/src/pagination/GetPersonTrackingPaginator.ts +++ b/clients/client-rekognition/src/pagination/GetPersonTrackingPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetPersonTrackingCommand, diff --git a/clients/client-rekognition/src/pagination/GetSegmentDetectionPaginator.ts b/clients/client-rekognition/src/pagination/GetSegmentDetectionPaginator.ts index 1c9858cacbd90..c11a3c27a5bfe 100644 --- a/clients/client-rekognition/src/pagination/GetSegmentDetectionPaginator.ts +++ b/clients/client-rekognition/src/pagination/GetSegmentDetectionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSegmentDetectionCommand, diff --git a/clients/client-rekognition/src/pagination/GetTextDetectionPaginator.ts b/clients/client-rekognition/src/pagination/GetTextDetectionPaginator.ts index af4c7164e426f..e54d14d0abc6a 100644 --- a/clients/client-rekognition/src/pagination/GetTextDetectionPaginator.ts +++ b/clients/client-rekognition/src/pagination/GetTextDetectionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTextDetectionCommand, diff --git a/clients/client-rekognition/src/pagination/Interfaces.ts b/clients/client-rekognition/src/pagination/Interfaces.ts index d06ad79c3704f..1d58f47af7974 100644 --- a/clients/client-rekognition/src/pagination/Interfaces.ts +++ b/clients/client-rekognition/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RekognitionClient } from "../RekognitionClient"; diff --git a/clients/client-rekognition/src/pagination/ListCollectionsPaginator.ts b/clients/client-rekognition/src/pagination/ListCollectionsPaginator.ts index abe5299368f99..54ca649d51bb3 100644 --- a/clients/client-rekognition/src/pagination/ListCollectionsPaginator.ts +++ b/clients/client-rekognition/src/pagination/ListCollectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCollectionsCommand, diff --git a/clients/client-rekognition/src/pagination/ListDatasetEntriesPaginator.ts b/clients/client-rekognition/src/pagination/ListDatasetEntriesPaginator.ts index daf55b131dcd9..65a1985b10ecd 100644 --- a/clients/client-rekognition/src/pagination/ListDatasetEntriesPaginator.ts +++ b/clients/client-rekognition/src/pagination/ListDatasetEntriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetEntriesCommand, diff --git a/clients/client-rekognition/src/pagination/ListDatasetLabelsPaginator.ts b/clients/client-rekognition/src/pagination/ListDatasetLabelsPaginator.ts index 261cd11aa19c3..874eafbbd1bf2 100644 --- a/clients/client-rekognition/src/pagination/ListDatasetLabelsPaginator.ts +++ b/clients/client-rekognition/src/pagination/ListDatasetLabelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatasetLabelsCommand, diff --git a/clients/client-rekognition/src/pagination/ListFacesPaginator.ts b/clients/client-rekognition/src/pagination/ListFacesPaginator.ts index fd2e01c987f8f..c1fefda663275 100644 --- a/clients/client-rekognition/src/pagination/ListFacesPaginator.ts +++ b/clients/client-rekognition/src/pagination/ListFacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFacesCommand, ListFacesCommandInput, ListFacesCommandOutput } from "../commands/ListFacesCommand"; import { RekognitionClient } from "../RekognitionClient"; diff --git a/clients/client-rekognition/src/pagination/ListMediaAnalysisJobsPaginator.ts b/clients/client-rekognition/src/pagination/ListMediaAnalysisJobsPaginator.ts index 9a9d5fac01948..70f90b75625e4 100644 --- a/clients/client-rekognition/src/pagination/ListMediaAnalysisJobsPaginator.ts +++ b/clients/client-rekognition/src/pagination/ListMediaAnalysisJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMediaAnalysisJobsCommand, diff --git a/clients/client-rekognition/src/pagination/ListProjectPoliciesPaginator.ts b/clients/client-rekognition/src/pagination/ListProjectPoliciesPaginator.ts index 78ca049edeb9c..72311b41b6c5b 100644 --- a/clients/client-rekognition/src/pagination/ListProjectPoliciesPaginator.ts +++ b/clients/client-rekognition/src/pagination/ListProjectPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectPoliciesCommand, diff --git a/clients/client-rekognition/src/pagination/ListStreamProcessorsPaginator.ts b/clients/client-rekognition/src/pagination/ListStreamProcessorsPaginator.ts index 703e049079e79..1fc643ddca24d 100644 --- a/clients/client-rekognition/src/pagination/ListStreamProcessorsPaginator.ts +++ b/clients/client-rekognition/src/pagination/ListStreamProcessorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamProcessorsCommand, diff --git a/clients/client-rekognition/src/pagination/ListUsersPaginator.ts b/clients/client-rekognition/src/pagination/ListUsersPaginator.ts index 9102c3eacc6d8..bef10ceecb8d4 100644 --- a/clients/client-rekognition/src/pagination/ListUsersPaginator.ts +++ b/clients/client-rekognition/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; import { RekognitionClient } from "../RekognitionClient"; diff --git a/clients/client-rekognition/src/runtimeConfig.browser.ts b/clients/client-rekognition/src/runtimeConfig.browser.ts index 34cae641c17a4..5d785b85b00cb 100644 --- a/clients/client-rekognition/src/runtimeConfig.browser.ts +++ b/clients/client-rekognition/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RekognitionClientConfig } from "./RekognitionClient"; + +import type { RekognitionClientConfig } from "./RekognitionClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-rekognition/src/runtimeConfig.native.ts b/clients/client-rekognition/src/runtimeConfig.native.ts index 2cf6d89db0bd9..74ab6f8463457 100644 --- a/clients/client-rekognition/src/runtimeConfig.native.ts +++ b/clients/client-rekognition/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RekognitionClientConfig } from "./RekognitionClient"; +import type { RekognitionClientConfig } from "./RekognitionClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-rekognition/src/runtimeConfig.shared.ts b/clients/client-rekognition/src/runtimeConfig.shared.ts index caf9bbb99ea8d..768bbf28f3fd1 100644 --- a/clients/client-rekognition/src/runtimeConfig.shared.ts +++ b/clients/client-rekognition/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRekognitionHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RekognitionClientConfig } from "./RekognitionClient"; +import type { RekognitionClientConfig } from "./RekognitionClient"; /** * @internal diff --git a/clients/client-rekognition/src/runtimeConfig.ts b/clients/client-rekognition/src/runtimeConfig.ts index 017c865876b70..a95ffc461d608 100644 --- a/clients/client-rekognition/src/runtimeConfig.ts +++ b/clients/client-rekognition/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RekognitionClientConfig } from "./RekognitionClient"; + +import type { RekognitionClientConfig } from "./RekognitionClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-rekognition/src/runtimeExtensions.ts b/clients/client-rekognition/src/runtimeExtensions.ts index 7c0309b9b6a39..a3494fe7d060a 100644 --- a/clients/client-rekognition/src/runtimeExtensions.ts +++ b/clients/client-rekognition/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RekognitionExtensionConfiguration } from "./extensionConfiguration"; +import type { RekognitionExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-rekognition/src/schemas/schemas_0.ts b/clients/client-rekognition/src/schemas/schemas_0.ts index 63b08d29f1f61..993732af1bf52 100644 --- a/clients/client-rekognition/src/schemas/schemas_0.ts +++ b/clients/client-rekognition/src/schemas/schemas_0.ts @@ -730,7 +730,7 @@ const n0 = "com.amazonaws.rekognition"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-rekognitionstreaming/package.json b/clients/client-rekognitionstreaming/package.json index 9df9ecbf414ce..1a08e21d63ae2 100644 --- a/clients/client-rekognitionstreaming/package.json +++ b/clients/client-rekognitionstreaming/package.json @@ -35,7 +35,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -43,21 +43,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-rekognitionstreaming/src/RekognitionStreaming.ts b/clients/client-rekognitionstreaming/src/RekognitionStreaming.ts index 432f8090254f0..d8bbf89138868 100644 --- a/clients/client-rekognitionstreaming/src/RekognitionStreaming.ts +++ b/clients/client-rekognitionstreaming/src/RekognitionStreaming.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { StartFaceLivenessSessionCommand, StartFaceLivenessSessionCommandInput, StartFaceLivenessSessionCommandOutput, } from "./commands/StartFaceLivenessSessionCommand"; -import { RekognitionStreamingClient, RekognitionStreamingClientConfig } from "./RekognitionStreamingClient"; +import { RekognitionStreamingClient } from "./RekognitionStreamingClient"; const commands = { StartFaceLivenessSessionCommand, diff --git a/clients/client-rekognitionstreaming/src/RekognitionStreamingClient.ts b/clients/client-rekognitionstreaming/src/RekognitionStreamingClient.ts index 0db5d222188c8..d04cc3be6c226 100644 --- a/clients/client-rekognitionstreaming/src/RekognitionStreamingClient.ts +++ b/clients/client-rekognitionstreaming/src/RekognitionStreamingClient.ts @@ -1,26 +1,30 @@ // smithy-typescript generated code import { - EventStreamInputConfig, - EventStreamResolvedConfig, + type EventStreamInputConfig, + type EventStreamResolvedConfig, resolveEventStreamConfig, } from "@aws-sdk/middleware-eventstream"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { resolveWebSocketConfig, WebSocketInputConfig, WebSocketResolvedConfig } from "@aws-sdk/middleware-websocket"; +import { + type WebSocketInputConfig, + type WebSocketResolvedConfig, + resolveWebSocketConfig, +} from "@aws-sdk/middleware-websocket"; import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -28,46 +32,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRekognitionStreamingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -81,7 +94,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-rekognitionstreaming/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-rekognitionstreaming/src/auth/httpAuthExtensionConfiguration.ts index 8b502d5049144..b2b8b51ac3a4b 100644 --- a/clients/client-rekognitionstreaming/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-rekognitionstreaming/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RekognitionStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RekognitionStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-rekognitionstreaming/src/auth/httpAuthSchemeProvider.ts b/clients/client-rekognitionstreaming/src/auth/httpAuthSchemeProvider.ts index 65ab40553b6ed..117fcf06402ae 100644 --- a/clients/client-rekognitionstreaming/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-rekognitionstreaming/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type RekognitionStreamingClientResolvedConfig, RekognitionStreamingClientConfig, - RekognitionStreamingClientResolvedConfig, } from "../RekognitionStreamingClient"; /** diff --git a/clients/client-rekognitionstreaming/src/commands/StartFaceLivenessSessionCommand.ts b/clients/client-rekognitionstreaming/src/commands/StartFaceLivenessSessionCommand.ts index 6ef9c1666e727..db0d84549a6ff 100644 --- a/clients/client-rekognitionstreaming/src/commands/StartFaceLivenessSessionCommand.ts +++ b/clients/client-rekognitionstreaming/src/commands/StartFaceLivenessSessionCommand.ts @@ -3,11 +3,11 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFaceLivenessSessionRequest, StartFaceLivenessSessionResponse } from "../models/models_0"; -import { +import type { StartFaceLivenessSessionRequest, StartFaceLivenessSessionResponse } from "../models/models_0"; +import type { RekognitionStreamingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-rekognitionstreaming/src/endpoint/EndpointParameters.ts b/clients/client-rekognitionstreaming/src/endpoint/EndpointParameters.ts index 5014e6ceda783..02ba994d355b0 100644 --- a/clients/client-rekognitionstreaming/src/endpoint/EndpointParameters.ts +++ b/clients/client-rekognitionstreaming/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-rekognitionstreaming/src/endpoint/endpointResolver.ts b/clients/client-rekognitionstreaming/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-rekognitionstreaming/src/endpoint/endpointResolver.ts +++ b/clients/client-rekognitionstreaming/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-rekognitionstreaming/src/extensionConfiguration.ts b/clients/client-rekognitionstreaming/src/extensionConfiguration.ts index d905e101120c0..c50945d660528 100644 --- a/clients/client-rekognitionstreaming/src/extensionConfiguration.ts +++ b/clients/client-rekognitionstreaming/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-rekognitionstreaming/src/models/RekognitionStreamingServiceException.ts b/clients/client-rekognitionstreaming/src/models/RekognitionStreamingServiceException.ts index b3795a6848763..ee955daffef2e 100644 --- a/clients/client-rekognitionstreaming/src/models/RekognitionStreamingServiceException.ts +++ b/clients/client-rekognitionstreaming/src/models/RekognitionStreamingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-rekognitionstreaming/src/models/errors.ts b/clients/client-rekognitionstreaming/src/models/errors.ts index 36030e6495bb0..cf21eb8e96fb2 100644 --- a/clients/client-rekognitionstreaming/src/models/errors.ts +++ b/clients/client-rekognitionstreaming/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RekognitionStreamingServiceException as __BaseException } from "./RekognitionStreamingServiceException"; diff --git a/clients/client-rekognitionstreaming/src/runtimeConfig.browser.ts b/clients/client-rekognitionstreaming/src/runtimeConfig.browser.ts index 7556f4c209934..5fcfa818e78de 100644 --- a/clients/client-rekognitionstreaming/src/runtimeConfig.browser.ts +++ b/clients/client-rekognitionstreaming/src/runtimeConfig.browser.ts @@ -13,12 +13,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as HttpRequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient"; + +import type { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-rekognitionstreaming/src/runtimeConfig.native.ts b/clients/client-rekognitionstreaming/src/runtimeConfig.native.ts index 55cb52b71cdec..37b6abe4c00fc 100644 --- a/clients/client-rekognitionstreaming/src/runtimeConfig.native.ts +++ b/clients/client-rekognitionstreaming/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { invalidFunction } from "@smithy/invalid-dependency"; -import { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient"; +import type { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-rekognitionstreaming/src/runtimeConfig.shared.ts b/clients/client-rekognitionstreaming/src/runtimeConfig.shared.ts index 716fa88b03000..1ea553d156326 100644 --- a/clients/client-rekognitionstreaming/src/runtimeConfig.shared.ts +++ b/clients/client-rekognitionstreaming/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRekognitionStreamingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient"; +import type { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient"; /** * @internal diff --git a/clients/client-rekognitionstreaming/src/runtimeConfig.ts b/clients/client-rekognitionstreaming/src/runtimeConfig.ts index a5528e91e3673..7129821a90b4a 100644 --- a/clients/client-rekognitionstreaming/src/runtimeConfig.ts +++ b/clients/client-rekognitionstreaming/src/runtimeConfig.ts @@ -17,13 +17,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient"; + +import type { RekognitionStreamingClientConfig } from "./RekognitionStreamingClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-rekognitionstreaming/src/runtimeExtensions.ts b/clients/client-rekognitionstreaming/src/runtimeExtensions.ts index f087b5116f1cd..57b2e9654fdda 100644 --- a/clients/client-rekognitionstreaming/src/runtimeExtensions.ts +++ b/clients/client-rekognitionstreaming/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RekognitionStreamingExtensionConfiguration } from "./extensionConfiguration"; +import type { RekognitionStreamingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-rekognitionstreaming/src/schemas/schemas_0.ts b/clients/client-rekognitionstreaming/src/schemas/schemas_0.ts index 2a1c0e783c5d4..2cbde0bf41eee 100644 --- a/clients/client-rekognitionstreaming/src/schemas/schemas_0.ts +++ b/clients/client-rekognitionstreaming/src/schemas/schemas_0.ts @@ -91,7 +91,7 @@ const n0 = "com.amazonaws.rekognitionstreaming"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-repostspace/package.json b/clients/client-repostspace/package.json index c8ab1289dfa5f..98269f0e8dc90 100644 --- a/clients/client-repostspace/package.json +++ b/clients/client-repostspace/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-repostspace/src/Repostspace.ts b/clients/client-repostspace/src/Repostspace.ts index adad4dba8b816..ed495d81f8009 100644 --- a/clients/client-repostspace/src/Repostspace.ts +++ b/clients/client-repostspace/src/Repostspace.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchAddChannelRoleToAccessorsCommand, @@ -65,7 +65,7 @@ import { UpdateChannelCommandOutput, } from "./commands/UpdateChannelCommand"; import { UpdateSpaceCommand, UpdateSpaceCommandInput, UpdateSpaceCommandOutput } from "./commands/UpdateSpaceCommand"; -import { RepostspaceClient, RepostspaceClientConfig } from "./RepostspaceClient"; +import { RepostspaceClient } from "./RepostspaceClient"; const commands = { BatchAddChannelRoleToAccessorsCommand, diff --git a/clients/client-repostspace/src/RepostspaceClient.ts b/clients/client-repostspace/src/RepostspaceClient.ts index 7501d7807054f..faf7295b765a0 100644 --- a/clients/client-repostspace/src/RepostspaceClient.ts +++ b/clients/client-repostspace/src/RepostspaceClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRepostspaceHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -92,7 +101,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-repostspace/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-repostspace/src/auth/httpAuthExtensionConfiguration.ts index eb072f3577930..cadeabfdbbfa5 100644 --- a/clients/client-repostspace/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-repostspace/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RepostspaceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RepostspaceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-repostspace/src/auth/httpAuthSchemeProvider.ts b/clients/client-repostspace/src/auth/httpAuthSchemeProvider.ts index 8ae67e0faa60c..a7d3e3fb53360 100644 --- a/clients/client-repostspace/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-repostspace/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RepostspaceClientConfig, RepostspaceClientResolvedConfig } from "../RepostspaceClient"; +import { type RepostspaceClientResolvedConfig, RepostspaceClientConfig } from "../RepostspaceClient"; /** * @internal diff --git a/clients/client-repostspace/src/commands/BatchAddChannelRoleToAccessorsCommand.ts b/clients/client-repostspace/src/commands/BatchAddChannelRoleToAccessorsCommand.ts index bd82cd62b79b6..2739b2abc605b 100644 --- a/clients/client-repostspace/src/commands/BatchAddChannelRoleToAccessorsCommand.ts +++ b/clients/client-repostspace/src/commands/BatchAddChannelRoleToAccessorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchAddChannelRoleToAccessorsInput, BatchAddChannelRoleToAccessorsOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { BatchAddChannelRoleToAccessorsInput, BatchAddChannelRoleToAccessorsOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { BatchAddChannelRoleToAccessors } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/BatchAddRoleCommand.ts b/clients/client-repostspace/src/commands/BatchAddRoleCommand.ts index 70236804f60e0..16938acb0a0e0 100644 --- a/clients/client-repostspace/src/commands/BatchAddRoleCommand.ts +++ b/clients/client-repostspace/src/commands/BatchAddRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchAddRoleInput, BatchAddRoleOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { BatchAddRoleInput, BatchAddRoleOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { BatchAddRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/BatchRemoveChannelRoleFromAccessorsCommand.ts b/clients/client-repostspace/src/commands/BatchRemoveChannelRoleFromAccessorsCommand.ts index 11a4adcd27021..75e8029081b45 100644 --- a/clients/client-repostspace/src/commands/BatchRemoveChannelRoleFromAccessorsCommand.ts +++ b/clients/client-repostspace/src/commands/BatchRemoveChannelRoleFromAccessorsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchRemoveChannelRoleFromAccessorsInput, BatchRemoveChannelRoleFromAccessorsOutput, } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { BatchRemoveChannelRoleFromAccessors } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/BatchRemoveRoleCommand.ts b/clients/client-repostspace/src/commands/BatchRemoveRoleCommand.ts index 1d177bdbd8442..8c618ab8bd6d6 100644 --- a/clients/client-repostspace/src/commands/BatchRemoveRoleCommand.ts +++ b/clients/client-repostspace/src/commands/BatchRemoveRoleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchRemoveRoleInput, BatchRemoveRoleOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { BatchRemoveRoleInput, BatchRemoveRoleOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { BatchRemoveRole } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/CreateChannelCommand.ts b/clients/client-repostspace/src/commands/CreateChannelCommand.ts index 45c5d74e16654..c8f12284f6a34 100644 --- a/clients/client-repostspace/src/commands/CreateChannelCommand.ts +++ b/clients/client-repostspace/src/commands/CreateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateChannelInput, CreateChannelOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { CreateChannelInput, CreateChannelOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { CreateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/CreateSpaceCommand.ts b/clients/client-repostspace/src/commands/CreateSpaceCommand.ts index 7da89d0ea4410..2235479e91030 100644 --- a/clients/client-repostspace/src/commands/CreateSpaceCommand.ts +++ b/clients/client-repostspace/src/commands/CreateSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSpaceInput, CreateSpaceOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { CreateSpaceInput, CreateSpaceOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { CreateSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/DeleteSpaceCommand.ts b/clients/client-repostspace/src/commands/DeleteSpaceCommand.ts index 2d0abbd9ac888..3c7a85af384c8 100644 --- a/clients/client-repostspace/src/commands/DeleteSpaceCommand.ts +++ b/clients/client-repostspace/src/commands/DeleteSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSpaceInput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { DeleteSpaceInput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { DeleteSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/DeregisterAdminCommand.ts b/clients/client-repostspace/src/commands/DeregisterAdminCommand.ts index 6d4d7f88d21cc..46e83c2715ae9 100644 --- a/clients/client-repostspace/src/commands/DeregisterAdminCommand.ts +++ b/clients/client-repostspace/src/commands/DeregisterAdminCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterAdminInput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { DeregisterAdminInput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { DeregisterAdmin } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/GetChannelCommand.ts b/clients/client-repostspace/src/commands/GetChannelCommand.ts index 09583b6be21fe..582e81c94a412 100644 --- a/clients/client-repostspace/src/commands/GetChannelCommand.ts +++ b/clients/client-repostspace/src/commands/GetChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChannelInput, GetChannelOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { GetChannelInput, GetChannelOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { GetChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/GetSpaceCommand.ts b/clients/client-repostspace/src/commands/GetSpaceCommand.ts index 0b5ccc2fe1386..0d73bac319905 100644 --- a/clients/client-repostspace/src/commands/GetSpaceCommand.ts +++ b/clients/client-repostspace/src/commands/GetSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSpaceInput, GetSpaceOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { GetSpaceInput, GetSpaceOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { GetSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/ListChannelsCommand.ts b/clients/client-repostspace/src/commands/ListChannelsCommand.ts index b26ade7490c9a..49f0198535ecf 100644 --- a/clients/client-repostspace/src/commands/ListChannelsCommand.ts +++ b/clients/client-repostspace/src/commands/ListChannelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChannelsInput, ListChannelsOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { ListChannelsInput, ListChannelsOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { ListChannels } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/ListSpacesCommand.ts b/clients/client-repostspace/src/commands/ListSpacesCommand.ts index b6b1ab60cda60..f11d0129923ae 100644 --- a/clients/client-repostspace/src/commands/ListSpacesCommand.ts +++ b/clients/client-repostspace/src/commands/ListSpacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSpacesInput, ListSpacesOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { ListSpacesInput, ListSpacesOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { ListSpaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/ListTagsForResourceCommand.ts b/clients/client-repostspace/src/commands/ListTagsForResourceCommand.ts index 9c75cfd9c70d9..77a4c2f3125f5 100644 --- a/clients/client-repostspace/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-repostspace/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/RegisterAdminCommand.ts b/clients/client-repostspace/src/commands/RegisterAdminCommand.ts index 5ddad90646ec8..84279171dcb6c 100644 --- a/clients/client-repostspace/src/commands/RegisterAdminCommand.ts +++ b/clients/client-repostspace/src/commands/RegisterAdminCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterAdminInput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { RegisterAdminInput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { RegisterAdmin } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/SendInvitesCommand.ts b/clients/client-repostspace/src/commands/SendInvitesCommand.ts index ef86d0b17c43c..9d3a30042ce91 100644 --- a/clients/client-repostspace/src/commands/SendInvitesCommand.ts +++ b/clients/client-repostspace/src/commands/SendInvitesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendInvitesInput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { SendInvitesInput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { SendInvites } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/TagResourceCommand.ts b/clients/client-repostspace/src/commands/TagResourceCommand.ts index cc941ca0444dc..0f8a3c266f2a5 100644 --- a/clients/client-repostspace/src/commands/TagResourceCommand.ts +++ b/clients/client-repostspace/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/UntagResourceCommand.ts b/clients/client-repostspace/src/commands/UntagResourceCommand.ts index 730bc8199e4dd..b5958b6142c34 100644 --- a/clients/client-repostspace/src/commands/UntagResourceCommand.ts +++ b/clients/client-repostspace/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/UpdateChannelCommand.ts b/clients/client-repostspace/src/commands/UpdateChannelCommand.ts index 358a01ef2ffef..b053d5ba27907 100644 --- a/clients/client-repostspace/src/commands/UpdateChannelCommand.ts +++ b/clients/client-repostspace/src/commands/UpdateChannelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChannelInput, UpdateChannelOutput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { UpdateChannelInput, UpdateChannelOutput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { UpdateChannel } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/commands/UpdateSpaceCommand.ts b/clients/client-repostspace/src/commands/UpdateSpaceCommand.ts index 3643e9627150a..0ed963862d326 100644 --- a/clients/client-repostspace/src/commands/UpdateSpaceCommand.ts +++ b/clients/client-repostspace/src/commands/UpdateSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSpaceInput } from "../models/models_0"; -import { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; +import type { UpdateSpaceInput } from "../models/models_0"; +import type { RepostspaceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RepostspaceClient"; import { UpdateSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-repostspace/src/endpoint/EndpointParameters.ts b/clients/client-repostspace/src/endpoint/EndpointParameters.ts index ef26c20b3660b..5f05de4d71b29 100644 --- a/clients/client-repostspace/src/endpoint/EndpointParameters.ts +++ b/clients/client-repostspace/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-repostspace/src/endpoint/endpointResolver.ts b/clients/client-repostspace/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-repostspace/src/endpoint/endpointResolver.ts +++ b/clients/client-repostspace/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-repostspace/src/extensionConfiguration.ts b/clients/client-repostspace/src/extensionConfiguration.ts index cfc2a6349a02d..47ca2cf2eb7ff 100644 --- a/clients/client-repostspace/src/extensionConfiguration.ts +++ b/clients/client-repostspace/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-repostspace/src/models/RepostspaceServiceException.ts b/clients/client-repostspace/src/models/RepostspaceServiceException.ts index 33d7817fafa6e..afc99a5ecb759 100644 --- a/clients/client-repostspace/src/models/RepostspaceServiceException.ts +++ b/clients/client-repostspace/src/models/RepostspaceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-repostspace/src/models/errors.ts b/clients/client-repostspace/src/models/errors.ts index 81dc8d66b327c..138bec42650ea 100644 --- a/clients/client-repostspace/src/models/errors.ts +++ b/clients/client-repostspace/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-repostspace/src/pagination/Interfaces.ts b/clients/client-repostspace/src/pagination/Interfaces.ts index 3ee568b364823..a65822c75ae81 100644 --- a/clients/client-repostspace/src/pagination/Interfaces.ts +++ b/clients/client-repostspace/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RepostspaceClient } from "../RepostspaceClient"; diff --git a/clients/client-repostspace/src/pagination/ListChannelsPaginator.ts b/clients/client-repostspace/src/pagination/ListChannelsPaginator.ts index d65373563ffbe..40ebb60ca8a76 100644 --- a/clients/client-repostspace/src/pagination/ListChannelsPaginator.ts +++ b/clients/client-repostspace/src/pagination/ListChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChannelsCommand, diff --git a/clients/client-repostspace/src/pagination/ListSpacesPaginator.ts b/clients/client-repostspace/src/pagination/ListSpacesPaginator.ts index a6518494b1a7f..b77ff32e1f441 100644 --- a/clients/client-repostspace/src/pagination/ListSpacesPaginator.ts +++ b/clients/client-repostspace/src/pagination/ListSpacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSpacesCommand, ListSpacesCommandInput, ListSpacesCommandOutput } from "../commands/ListSpacesCommand"; import { RepostspaceClient } from "../RepostspaceClient"; diff --git a/clients/client-repostspace/src/runtimeConfig.browser.ts b/clients/client-repostspace/src/runtimeConfig.browser.ts index c5c32850b3945..4db89bd383a8e 100644 --- a/clients/client-repostspace/src/runtimeConfig.browser.ts +++ b/clients/client-repostspace/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RepostspaceClientConfig } from "./RepostspaceClient"; + +import type { RepostspaceClientConfig } from "./RepostspaceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-repostspace/src/runtimeConfig.native.ts b/clients/client-repostspace/src/runtimeConfig.native.ts index e4dd0c558eb27..914e11733c9ad 100644 --- a/clients/client-repostspace/src/runtimeConfig.native.ts +++ b/clients/client-repostspace/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RepostspaceClientConfig } from "./RepostspaceClient"; +import type { RepostspaceClientConfig } from "./RepostspaceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-repostspace/src/runtimeConfig.shared.ts b/clients/client-repostspace/src/runtimeConfig.shared.ts index e840a3dba2e0e..373fb70e2e674 100644 --- a/clients/client-repostspace/src/runtimeConfig.shared.ts +++ b/clients/client-repostspace/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRepostspaceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RepostspaceClientConfig } from "./RepostspaceClient"; +import type { RepostspaceClientConfig } from "./RepostspaceClient"; /** * @internal diff --git a/clients/client-repostspace/src/runtimeConfig.ts b/clients/client-repostspace/src/runtimeConfig.ts index e967f7b044aa3..4c573e94bd31a 100644 --- a/clients/client-repostspace/src/runtimeConfig.ts +++ b/clients/client-repostspace/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RepostspaceClientConfig } from "./RepostspaceClient"; + +import type { RepostspaceClientConfig } from "./RepostspaceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-repostspace/src/runtimeExtensions.ts b/clients/client-repostspace/src/runtimeExtensions.ts index 21a18fa9a3e1a..ea6d7aada405d 100644 --- a/clients/client-repostspace/src/runtimeExtensions.ts +++ b/clients/client-repostspace/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RepostspaceExtensionConfiguration } from "./extensionConfiguration"; +import type { RepostspaceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-repostspace/src/schemas/schemas_0.ts b/clients/client-repostspace/src/schemas/schemas_0.ts index c8f04b3175646..6287b2a5c16ae 100644 --- a/clients/client-repostspace/src/schemas/schemas_0.ts +++ b/clients/client-repostspace/src/schemas/schemas_0.ts @@ -150,7 +150,7 @@ const n0 = "com.amazonaws.repostspace"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-resiliencehub/package.json b/clients/client-resiliencehub/package.json index 866efa5db2dbe..4547a0a6713fb 100644 --- a/clients/client-resiliencehub/package.json +++ b/clients/client-resiliencehub/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-resiliencehub/src/Resiliencehub.ts b/clients/client-resiliencehub/src/Resiliencehub.ts index 3fb3e88036457..b6074d678706d 100644 --- a/clients/client-resiliencehub/src/Resiliencehub.ts +++ b/clients/client-resiliencehub/src/Resiliencehub.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptResourceGroupingRecommendationsCommand, @@ -289,7 +289,7 @@ import { UpdateResiliencyPolicyCommandInput, UpdateResiliencyPolicyCommandOutput, } from "./commands/UpdateResiliencyPolicyCommand"; -import { ResiliencehubClient, ResiliencehubClientConfig } from "./ResiliencehubClient"; +import { ResiliencehubClient } from "./ResiliencehubClient"; const commands = { AcceptResourceGroupingRecommendationsCommand, diff --git a/clients/client-resiliencehub/src/ResiliencehubClient.ts b/clients/client-resiliencehub/src/ResiliencehubClient.ts index 2a4c5ddcb3a13..8cf8531b4387f 100644 --- a/clients/client-resiliencehub/src/ResiliencehubClient.ts +++ b/clients/client-resiliencehub/src/ResiliencehubClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultResiliencehubHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -271,7 +280,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-resiliencehub/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-resiliencehub/src/auth/httpAuthExtensionConfiguration.ts index 40bbeeee4aa73..300f2e9795d6a 100644 --- a/clients/client-resiliencehub/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-resiliencehub/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ResiliencehubHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ResiliencehubHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-resiliencehub/src/auth/httpAuthSchemeProvider.ts b/clients/client-resiliencehub/src/auth/httpAuthSchemeProvider.ts index 139f6d723e485..044001f9fb904 100644 --- a/clients/client-resiliencehub/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-resiliencehub/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ResiliencehubClientConfig, ResiliencehubClientResolvedConfig } from "../ResiliencehubClient"; +import { type ResiliencehubClientResolvedConfig, ResiliencehubClientConfig } from "../ResiliencehubClient"; /** * @internal diff --git a/clients/client-resiliencehub/src/commands/AcceptResourceGroupingRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/AcceptResourceGroupingRecommendationsCommand.ts index ffd40f6c599e5..3160bce7ff0e2 100644 --- a/clients/client-resiliencehub/src/commands/AcceptResourceGroupingRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/AcceptResourceGroupingRecommendationsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AcceptResourceGroupingRecommendationsRequest, AcceptResourceGroupingRecommendationsResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { AcceptResourceGroupingRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/AddDraftAppVersionResourceMappingsCommand.ts b/clients/client-resiliencehub/src/commands/AddDraftAppVersionResourceMappingsCommand.ts index 39b1f5bfbb3aa..17e860f9e55e9 100644 --- a/clients/client-resiliencehub/src/commands/AddDraftAppVersionResourceMappingsCommand.ts +++ b/clients/client-resiliencehub/src/commands/AddDraftAppVersionResourceMappingsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AddDraftAppVersionResourceMappingsRequest, AddDraftAppVersionResourceMappingsResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { AddDraftAppVersionResourceMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/BatchUpdateRecommendationStatusCommand.ts b/clients/client-resiliencehub/src/commands/BatchUpdateRecommendationStatusCommand.ts index 2e15059958f32..38be4d13a0928 100644 --- a/clients/client-resiliencehub/src/commands/BatchUpdateRecommendationStatusCommand.ts +++ b/clients/client-resiliencehub/src/commands/BatchUpdateRecommendationStatusCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateRecommendationStatusRequest, BatchUpdateRecommendationStatusResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { + BatchUpdateRecommendationStatusRequest, + BatchUpdateRecommendationStatusResponse, +} from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { BatchUpdateRecommendationStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/CreateAppCommand.ts b/clients/client-resiliencehub/src/commands/CreateAppCommand.ts index e9bb27be46349..531995a57ad11 100644 --- a/clients/client-resiliencehub/src/commands/CreateAppCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppRequest, CreateAppResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { CreateAppRequest, CreateAppResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { CreateApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/CreateAppVersionAppComponentCommand.ts b/clients/client-resiliencehub/src/commands/CreateAppVersionAppComponentCommand.ts index 9736e59a0c534..418977476b016 100644 --- a/clients/client-resiliencehub/src/commands/CreateAppVersionAppComponentCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateAppVersionAppComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppVersionAppComponentRequest, CreateAppVersionAppComponentResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { CreateAppVersionAppComponentRequest, CreateAppVersionAppComponentResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { CreateAppVersionAppComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/CreateAppVersionResourceCommand.ts b/clients/client-resiliencehub/src/commands/CreateAppVersionResourceCommand.ts index 45dd69be7388d..bffc569196686 100644 --- a/clients/client-resiliencehub/src/commands/CreateAppVersionResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateAppVersionResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppVersionResourceRequest, CreateAppVersionResourceResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { CreateAppVersionResourceRequest, CreateAppVersionResourceResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { CreateAppVersionResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/CreateRecommendationTemplateCommand.ts b/clients/client-resiliencehub/src/commands/CreateRecommendationTemplateCommand.ts index 6bc7c3f09b355..e2e91afbacf1c 100644 --- a/clients/client-resiliencehub/src/commands/CreateRecommendationTemplateCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateRecommendationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRecommendationTemplateRequest, CreateRecommendationTemplateResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { CreateRecommendationTemplateRequest, CreateRecommendationTemplateResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { CreateRecommendationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/CreateResiliencyPolicyCommand.ts b/clients/client-resiliencehub/src/commands/CreateResiliencyPolicyCommand.ts index 919764abecf5e..b0d8b04f9e863 100644 --- a/clients/client-resiliencehub/src/commands/CreateResiliencyPolicyCommand.ts +++ b/clients/client-resiliencehub/src/commands/CreateResiliencyPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResiliencyPolicyRequest, CreateResiliencyPolicyResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { CreateResiliencyPolicyRequest, CreateResiliencyPolicyResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { CreateResiliencyPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DeleteAppAssessmentCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppAssessmentCommand.ts index 60e2967f82df2..82bf66acb9f52 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppAssessmentCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppAssessmentRequest, DeleteAppAssessmentResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DeleteAppAssessmentRequest, DeleteAppAssessmentResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DeleteAppAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DeleteAppCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppCommand.ts index 2f82e6129b09c..cab0688e487f8 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppRequest, DeleteAppResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DeleteAppRequest, DeleteAppResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DeleteApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DeleteAppInputSourceCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppInputSourceCommand.ts index 55336bd046f88..2f8c94aa548f1 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppInputSourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppInputSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppInputSourceRequest, DeleteAppInputSourceResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DeleteAppInputSourceRequest, DeleteAppInputSourceResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DeleteAppInputSource } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DeleteAppVersionAppComponentCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppVersionAppComponentCommand.ts index ba3fa71ee1cd5..10f2c49ce2d84 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppVersionAppComponentCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppVersionAppComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppVersionAppComponentRequest, DeleteAppVersionAppComponentResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DeleteAppVersionAppComponentRequest, DeleteAppVersionAppComponentResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DeleteAppVersionAppComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DeleteAppVersionResourceCommand.ts b/clients/client-resiliencehub/src/commands/DeleteAppVersionResourceCommand.ts index a8086f6d01845..89994e92444ec 100644 --- a/clients/client-resiliencehub/src/commands/DeleteAppVersionResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteAppVersionResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppVersionResourceRequest, DeleteAppVersionResourceResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DeleteAppVersionResourceRequest, DeleteAppVersionResourceResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DeleteAppVersionResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DeleteRecommendationTemplateCommand.ts b/clients/client-resiliencehub/src/commands/DeleteRecommendationTemplateCommand.ts index 82599e79b0bbe..1a9dddf796a1d 100644 --- a/clients/client-resiliencehub/src/commands/DeleteRecommendationTemplateCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteRecommendationTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecommendationTemplateRequest, DeleteRecommendationTemplateResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DeleteRecommendationTemplateRequest, DeleteRecommendationTemplateResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DeleteRecommendationTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DeleteResiliencyPolicyCommand.ts b/clients/client-resiliencehub/src/commands/DeleteResiliencyPolicyCommand.ts index a7838aa5770c6..d5b48ed800d44 100644 --- a/clients/client-resiliencehub/src/commands/DeleteResiliencyPolicyCommand.ts +++ b/clients/client-resiliencehub/src/commands/DeleteResiliencyPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResiliencyPolicyRequest, DeleteResiliencyPolicyResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DeleteResiliencyPolicyRequest, DeleteResiliencyPolicyResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DeleteResiliencyPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeAppAssessmentCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppAssessmentCommand.ts index 49324188d986a..cac7c7a4a1eb4 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppAssessmentCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppAssessmentRequest, DescribeAppAssessmentResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DescribeAppAssessmentRequest, DescribeAppAssessmentResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeAppAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeAppCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppCommand.ts index 26853b09d08e3..fb7a1e18f8f2c 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppRequest, DescribeAppResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DescribeAppRequest, DescribeAppResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionAppComponentCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionAppComponentCommand.ts index db0b441e9633a..b8680551f543c 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionAppComponentCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionAppComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppVersionAppComponentRequest, DescribeAppVersionAppComponentResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DescribeAppVersionAppComponentRequest, DescribeAppVersionAppComponentResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeAppVersionAppComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionCommand.ts index 89159ad56769c..37e74c4c22b54 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppVersionRequest, DescribeAppVersionResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DescribeAppVersionRequest, DescribeAppVersionResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeAppVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionResourceCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionResourceCommand.ts index cb93c468d642d..ea5c452716b47 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppVersionResourceRequest, DescribeAppVersionResourceResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DescribeAppVersionResourceRequest, DescribeAppVersionResourceResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeAppVersionResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionResourcesResolutionStatusCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionResourcesResolutionStatusCommand.ts index 969ebd24b3de7..a9a72bd55a62d 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionResourcesResolutionStatusCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionResourcesResolutionStatusCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeAppVersionResourcesResolutionStatusRequest, DescribeAppVersionResourcesResolutionStatusResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeAppVersionResourcesResolutionStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeAppVersionTemplateCommand.ts b/clients/client-resiliencehub/src/commands/DescribeAppVersionTemplateCommand.ts index 0ab087aebd731..fb820143f470c 100644 --- a/clients/client-resiliencehub/src/commands/DescribeAppVersionTemplateCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeAppVersionTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppVersionTemplateRequest, DescribeAppVersionTemplateResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DescribeAppVersionTemplateRequest, DescribeAppVersionTemplateResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeAppVersionTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeDraftAppVersionResourcesImportStatusCommand.ts b/clients/client-resiliencehub/src/commands/DescribeDraftAppVersionResourcesImportStatusCommand.ts index 4617a933ec00f..c33929f012c20 100644 --- a/clients/client-resiliencehub/src/commands/DescribeDraftAppVersionResourcesImportStatusCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeDraftAppVersionResourcesImportStatusCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeDraftAppVersionResourcesImportStatusRequest, DescribeDraftAppVersionResourcesImportStatusResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeDraftAppVersionResourcesImportStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeMetricsExportCommand.ts b/clients/client-resiliencehub/src/commands/DescribeMetricsExportCommand.ts index 41e4a26b618f1..832535743e6d4 100644 --- a/clients/client-resiliencehub/src/commands/DescribeMetricsExportCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeMetricsExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMetricsExportRequest, DescribeMetricsExportResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DescribeMetricsExportRequest, DescribeMetricsExportResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeMetricsExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeResiliencyPolicyCommand.ts b/clients/client-resiliencehub/src/commands/DescribeResiliencyPolicyCommand.ts index 32baf8008ba57..f3540d11eda48 100644 --- a/clients/client-resiliencehub/src/commands/DescribeResiliencyPolicyCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeResiliencyPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResiliencyPolicyRequest, DescribeResiliencyPolicyResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { DescribeResiliencyPolicyRequest, DescribeResiliencyPolicyResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeResiliencyPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/DescribeResourceGroupingRecommendationTaskCommand.ts b/clients/client-resiliencehub/src/commands/DescribeResourceGroupingRecommendationTaskCommand.ts index ca3c8d825ffe1..830bff794dbfb 100644 --- a/clients/client-resiliencehub/src/commands/DescribeResourceGroupingRecommendationTaskCommand.ts +++ b/clients/client-resiliencehub/src/commands/DescribeResourceGroupingRecommendationTaskCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeResourceGroupingRecommendationTaskRequest, DescribeResourceGroupingRecommendationTaskResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { DescribeResourceGroupingRecommendationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ImportResourcesToDraftAppVersionCommand.ts b/clients/client-resiliencehub/src/commands/ImportResourcesToDraftAppVersionCommand.ts index 430e5d9855105..807a4a7c27478 100644 --- a/clients/client-resiliencehub/src/commands/ImportResourcesToDraftAppVersionCommand.ts +++ b/clients/client-resiliencehub/src/commands/ImportResourcesToDraftAppVersionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportResourcesToDraftAppVersionRequest, ImportResourcesToDraftAppVersionResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { + ImportResourcesToDraftAppVersionRequest, + ImportResourcesToDraftAppVersionResponse, +} from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ImportResourcesToDraftAppVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAlarmRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListAlarmRecommendationsCommand.ts index ea1bc52040493..0366359495570 100644 --- a/clients/client-resiliencehub/src/commands/ListAlarmRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAlarmRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAlarmRecommendationsRequest, ListAlarmRecommendationsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListAlarmRecommendationsRequest, ListAlarmRecommendationsResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAlarmRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppAssessmentComplianceDriftsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppAssessmentComplianceDriftsCommand.ts index b1e936c008eae..486b4e743f7c5 100644 --- a/clients/client-resiliencehub/src/commands/ListAppAssessmentComplianceDriftsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppAssessmentComplianceDriftsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAppAssessmentComplianceDriftsRequest, ListAppAssessmentComplianceDriftsResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppAssessmentComplianceDrifts } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppAssessmentResourceDriftsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppAssessmentResourceDriftsCommand.ts index af4002566ac8a..58e8133d122dd 100644 --- a/clients/client-resiliencehub/src/commands/ListAppAssessmentResourceDriftsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppAssessmentResourceDriftsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppAssessmentResourceDriftsRequest, ListAppAssessmentResourceDriftsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { + ListAppAssessmentResourceDriftsRequest, + ListAppAssessmentResourceDriftsResponse, +} from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppAssessmentResourceDrifts } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppAssessmentsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppAssessmentsCommand.ts index 0407bd9ea251a..b671f142a1ee6 100644 --- a/clients/client-resiliencehub/src/commands/ListAppAssessmentsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppAssessmentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppAssessmentsRequest, ListAppAssessmentsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListAppAssessmentsRequest, ListAppAssessmentsResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppAssessments } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppComponentCompliancesCommand.ts b/clients/client-resiliencehub/src/commands/ListAppComponentCompliancesCommand.ts index 63aabfed7b96a..f521d322e40a2 100644 --- a/clients/client-resiliencehub/src/commands/ListAppComponentCompliancesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppComponentCompliancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppComponentCompliancesRequest, ListAppComponentCompliancesResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListAppComponentCompliancesRequest, ListAppComponentCompliancesResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppComponentCompliances } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppComponentRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppComponentRecommendationsCommand.ts index 69ad9182be6a5..c8db805aae6ef 100644 --- a/clients/client-resiliencehub/src/commands/ListAppComponentRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppComponentRecommendationsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppComponentRecommendationsRequest, ListAppComponentRecommendationsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { + ListAppComponentRecommendationsRequest, + ListAppComponentRecommendationsResponse, +} from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppComponentRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppInputSourcesCommand.ts b/clients/client-resiliencehub/src/commands/ListAppInputSourcesCommand.ts index 6b36e3707177f..54770e792bbbd 100644 --- a/clients/client-resiliencehub/src/commands/ListAppInputSourcesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppInputSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppInputSourcesRequest, ListAppInputSourcesResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListAppInputSourcesRequest, ListAppInputSourcesResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppInputSources } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppVersionAppComponentsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppVersionAppComponentsCommand.ts index 0f153aa039732..09e9bee693227 100644 --- a/clients/client-resiliencehub/src/commands/ListAppVersionAppComponentsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppVersionAppComponentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppVersionAppComponentsRequest, ListAppVersionAppComponentsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListAppVersionAppComponentsRequest, ListAppVersionAppComponentsResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppVersionAppComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppVersionResourceMappingsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppVersionResourceMappingsCommand.ts index 3d96f1e313b3f..70657819d9794 100644 --- a/clients/client-resiliencehub/src/commands/ListAppVersionResourceMappingsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppVersionResourceMappingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppVersionResourceMappingsRequest, ListAppVersionResourceMappingsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListAppVersionResourceMappingsRequest, ListAppVersionResourceMappingsResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppVersionResourceMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppVersionResourcesCommand.ts b/clients/client-resiliencehub/src/commands/ListAppVersionResourcesCommand.ts index a5bfb0a91adf8..513e9b02983d8 100644 --- a/clients/client-resiliencehub/src/commands/ListAppVersionResourcesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppVersionResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppVersionResourcesRequest, ListAppVersionResourcesResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListAppVersionResourcesRequest, ListAppVersionResourcesResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppVersionResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppVersionsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppVersionsCommand.ts index 22823a0e6a287..984961e0991d4 100644 --- a/clients/client-resiliencehub/src/commands/ListAppVersionsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppVersionsRequest, ListAppVersionsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListAppVersionsRequest, ListAppVersionsResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListAppVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListAppsCommand.ts b/clients/client-resiliencehub/src/commands/ListAppsCommand.ts index 2b7d89451ed7b..c2d9e00d3456b 100644 --- a/clients/client-resiliencehub/src/commands/ListAppsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListAppsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppsRequest, ListAppsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListAppsRequest, ListAppsResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListApps } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListMetricsCommand.ts b/clients/client-resiliencehub/src/commands/ListMetricsCommand.ts index f548b338d0028..9ae54370e8dd4 100644 --- a/clients/client-resiliencehub/src/commands/ListMetricsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListMetricsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMetricsRequest, ListMetricsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListMetricsRequest, ListMetricsResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListRecommendationTemplatesCommand.ts b/clients/client-resiliencehub/src/commands/ListRecommendationTemplatesCommand.ts index 1a73fa7ff8d3e..07f135eb1d537 100644 --- a/clients/client-resiliencehub/src/commands/ListRecommendationTemplatesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListRecommendationTemplatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationTemplatesRequest, ListRecommendationTemplatesResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListRecommendationTemplatesRequest, ListRecommendationTemplatesResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListRecommendationTemplates } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListResiliencyPoliciesCommand.ts b/clients/client-resiliencehub/src/commands/ListResiliencyPoliciesCommand.ts index ea50f85b70818..239671423f946 100644 --- a/clients/client-resiliencehub/src/commands/ListResiliencyPoliciesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListResiliencyPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResiliencyPoliciesRequest, ListResiliencyPoliciesResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListResiliencyPoliciesRequest, ListResiliencyPoliciesResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListResiliencyPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListResourceGroupingRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListResourceGroupingRecommendationsCommand.ts index ec2413ea38f3d..fb5bd9053314a 100644 --- a/clients/client-resiliencehub/src/commands/ListResourceGroupingRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListResourceGroupingRecommendationsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListResourceGroupingRecommendationsRequest, ListResourceGroupingRecommendationsResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListResourceGroupingRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListSopRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListSopRecommendationsCommand.ts index 57fe21a833af7..b72ca7aa77c5b 100644 --- a/clients/client-resiliencehub/src/commands/ListSopRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListSopRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSopRecommendationsRequest, ListSopRecommendationsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListSopRecommendationsRequest, ListSopRecommendationsResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListSopRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListSuggestedResiliencyPoliciesCommand.ts b/clients/client-resiliencehub/src/commands/ListSuggestedResiliencyPoliciesCommand.ts index 5b43e29ce7108..07b55c6cb92fb 100644 --- a/clients/client-resiliencehub/src/commands/ListSuggestedResiliencyPoliciesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListSuggestedResiliencyPoliciesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSuggestedResiliencyPoliciesRequest, ListSuggestedResiliencyPoliciesResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { + ListSuggestedResiliencyPoliciesRequest, + ListSuggestedResiliencyPoliciesResponse, +} from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListSuggestedResiliencyPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListTagsForResourceCommand.ts b/clients/client-resiliencehub/src/commands/ListTagsForResourceCommand.ts index 47075845ac75c..69d907c7c36b0 100644 --- a/clients/client-resiliencehub/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListTestRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/ListTestRecommendationsCommand.ts index 9a8d3524f537c..e5bfd98e31f14 100644 --- a/clients/client-resiliencehub/src/commands/ListTestRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListTestRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTestRecommendationsRequest, ListTestRecommendationsResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ListTestRecommendationsRequest, ListTestRecommendationsResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListTestRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ListUnsupportedAppVersionResourcesCommand.ts b/clients/client-resiliencehub/src/commands/ListUnsupportedAppVersionResourcesCommand.ts index de71c6134e86d..891a5cc69216c 100644 --- a/clients/client-resiliencehub/src/commands/ListUnsupportedAppVersionResourcesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ListUnsupportedAppVersionResourcesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListUnsupportedAppVersionResourcesRequest, ListUnsupportedAppVersionResourcesResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ListUnsupportedAppVersionResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/PublishAppVersionCommand.ts b/clients/client-resiliencehub/src/commands/PublishAppVersionCommand.ts index f5deef6a6d7e6..063454e781690 100644 --- a/clients/client-resiliencehub/src/commands/PublishAppVersionCommand.ts +++ b/clients/client-resiliencehub/src/commands/PublishAppVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishAppVersionRequest, PublishAppVersionResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { PublishAppVersionRequest, PublishAppVersionResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { PublishAppVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/PutDraftAppVersionTemplateCommand.ts b/clients/client-resiliencehub/src/commands/PutDraftAppVersionTemplateCommand.ts index 35c679068085e..26ad5fd0dc4a9 100644 --- a/clients/client-resiliencehub/src/commands/PutDraftAppVersionTemplateCommand.ts +++ b/clients/client-resiliencehub/src/commands/PutDraftAppVersionTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDraftAppVersionTemplateRequest, PutDraftAppVersionTemplateResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { PutDraftAppVersionTemplateRequest, PutDraftAppVersionTemplateResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { PutDraftAppVersionTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/RejectResourceGroupingRecommendationsCommand.ts b/clients/client-resiliencehub/src/commands/RejectResourceGroupingRecommendationsCommand.ts index 7aeea1e6f1944..c3e89d6534504 100644 --- a/clients/client-resiliencehub/src/commands/RejectResourceGroupingRecommendationsCommand.ts +++ b/clients/client-resiliencehub/src/commands/RejectResourceGroupingRecommendationsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RejectResourceGroupingRecommendationsRequest, RejectResourceGroupingRecommendationsResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { RejectResourceGroupingRecommendations } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/RemoveDraftAppVersionResourceMappingsCommand.ts b/clients/client-resiliencehub/src/commands/RemoveDraftAppVersionResourceMappingsCommand.ts index e5ccb1832b24d..8c823566500e7 100644 --- a/clients/client-resiliencehub/src/commands/RemoveDraftAppVersionResourceMappingsCommand.ts +++ b/clients/client-resiliencehub/src/commands/RemoveDraftAppVersionResourceMappingsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RemoveDraftAppVersionResourceMappingsRequest, RemoveDraftAppVersionResourceMappingsResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { RemoveDraftAppVersionResourceMappings } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/ResolveAppVersionResourcesCommand.ts b/clients/client-resiliencehub/src/commands/ResolveAppVersionResourcesCommand.ts index 65434536bba60..9bb5af73267dd 100644 --- a/clients/client-resiliencehub/src/commands/ResolveAppVersionResourcesCommand.ts +++ b/clients/client-resiliencehub/src/commands/ResolveAppVersionResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResolveAppVersionResourcesRequest, ResolveAppVersionResourcesResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResolveAppVersionResourcesRequest, ResolveAppVersionResourcesResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { ResolveAppVersionResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/StartAppAssessmentCommand.ts b/clients/client-resiliencehub/src/commands/StartAppAssessmentCommand.ts index cd2ec8d9a6bbe..4604d78005a0e 100644 --- a/clients/client-resiliencehub/src/commands/StartAppAssessmentCommand.ts +++ b/clients/client-resiliencehub/src/commands/StartAppAssessmentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAppAssessmentRequest, StartAppAssessmentResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { StartAppAssessmentRequest, StartAppAssessmentResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { StartAppAssessment } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/StartMetricsExportCommand.ts b/clients/client-resiliencehub/src/commands/StartMetricsExportCommand.ts index ae5074869c0f0..697886dc2437e 100644 --- a/clients/client-resiliencehub/src/commands/StartMetricsExportCommand.ts +++ b/clients/client-resiliencehub/src/commands/StartMetricsExportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMetricsExportRequest, StartMetricsExportResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { StartMetricsExportRequest, StartMetricsExportResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { StartMetricsExport } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/StartResourceGroupingRecommendationTaskCommand.ts b/clients/client-resiliencehub/src/commands/StartResourceGroupingRecommendationTaskCommand.ts index 16dc12b71cb23..7aab3a74862ec 100644 --- a/clients/client-resiliencehub/src/commands/StartResourceGroupingRecommendationTaskCommand.ts +++ b/clients/client-resiliencehub/src/commands/StartResourceGroupingRecommendationTaskCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartResourceGroupingRecommendationTaskRequest, StartResourceGroupingRecommendationTaskResponse, } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { StartResourceGroupingRecommendationTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/TagResourceCommand.ts b/clients/client-resiliencehub/src/commands/TagResourceCommand.ts index 729e7e517053d..fe9db04d3754f 100644 --- a/clients/client-resiliencehub/src/commands/TagResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/UntagResourceCommand.ts b/clients/client-resiliencehub/src/commands/UntagResourceCommand.ts index 60394bd6beb00..b0baf831fb0a8 100644 --- a/clients/client-resiliencehub/src/commands/UntagResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/UpdateAppCommand.ts b/clients/client-resiliencehub/src/commands/UpdateAppCommand.ts index 5097c2f47d021..f008959ccf299 100644 --- a/clients/client-resiliencehub/src/commands/UpdateAppCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppRequest, UpdateAppResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { UpdateAppRequest, UpdateAppResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { UpdateApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/UpdateAppVersionAppComponentCommand.ts b/clients/client-resiliencehub/src/commands/UpdateAppVersionAppComponentCommand.ts index b0315b4450842..92c33574f72b0 100644 --- a/clients/client-resiliencehub/src/commands/UpdateAppVersionAppComponentCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateAppVersionAppComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppVersionAppComponentRequest, UpdateAppVersionAppComponentResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { UpdateAppVersionAppComponentRequest, UpdateAppVersionAppComponentResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { UpdateAppVersionAppComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/UpdateAppVersionCommand.ts b/clients/client-resiliencehub/src/commands/UpdateAppVersionCommand.ts index 3db4ca6f52674..c9b294f66e519 100644 --- a/clients/client-resiliencehub/src/commands/UpdateAppVersionCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateAppVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppVersionRequest, UpdateAppVersionResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { UpdateAppVersionRequest, UpdateAppVersionResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { UpdateAppVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/UpdateAppVersionResourceCommand.ts b/clients/client-resiliencehub/src/commands/UpdateAppVersionResourceCommand.ts index d66e6783493a0..55bdf6eb95618 100644 --- a/clients/client-resiliencehub/src/commands/UpdateAppVersionResourceCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateAppVersionResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppVersionResourceRequest, UpdateAppVersionResourceResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { UpdateAppVersionResourceRequest, UpdateAppVersionResourceResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { UpdateAppVersionResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/commands/UpdateResiliencyPolicyCommand.ts b/clients/client-resiliencehub/src/commands/UpdateResiliencyPolicyCommand.ts index da63b36dbe2e5..f17712280aa11 100644 --- a/clients/client-resiliencehub/src/commands/UpdateResiliencyPolicyCommand.ts +++ b/clients/client-resiliencehub/src/commands/UpdateResiliencyPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResiliencyPolicyRequest, UpdateResiliencyPolicyResponse } from "../models/models_0"; -import { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; +import type { UpdateResiliencyPolicyRequest, UpdateResiliencyPolicyResponse } from "../models/models_0"; +import type { ResiliencehubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResiliencehubClient"; import { UpdateResiliencyPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-resiliencehub/src/endpoint/EndpointParameters.ts b/clients/client-resiliencehub/src/endpoint/EndpointParameters.ts index 9b1e2c64e705b..5eba38a7759d0 100644 --- a/clients/client-resiliencehub/src/endpoint/EndpointParameters.ts +++ b/clients/client-resiliencehub/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-resiliencehub/src/endpoint/endpointResolver.ts b/clients/client-resiliencehub/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-resiliencehub/src/endpoint/endpointResolver.ts +++ b/clients/client-resiliencehub/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-resiliencehub/src/extensionConfiguration.ts b/clients/client-resiliencehub/src/extensionConfiguration.ts index ee73fd272d598..ffd8568fc969b 100644 --- a/clients/client-resiliencehub/src/extensionConfiguration.ts +++ b/clients/client-resiliencehub/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-resiliencehub/src/models/ResiliencehubServiceException.ts b/clients/client-resiliencehub/src/models/ResiliencehubServiceException.ts index 82b4801a3ff77..ac9166633502f 100644 --- a/clients/client-resiliencehub/src/models/ResiliencehubServiceException.ts +++ b/clients/client-resiliencehub/src/models/ResiliencehubServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-resiliencehub/src/models/errors.ts b/clients/client-resiliencehub/src/models/errors.ts index 0a6b28306a8f3..f7a3cc72993b9 100644 --- a/clients/client-resiliencehub/src/models/errors.ts +++ b/clients/client-resiliencehub/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ResiliencehubServiceException as __BaseException } from "./ResiliencehubServiceException"; diff --git a/clients/client-resiliencehub/src/pagination/Interfaces.ts b/clients/client-resiliencehub/src/pagination/Interfaces.ts index d1d444856f249..ce48c719c622d 100644 --- a/clients/client-resiliencehub/src/pagination/Interfaces.ts +++ b/clients/client-resiliencehub/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ResiliencehubClient } from "../ResiliencehubClient"; diff --git a/clients/client-resiliencehub/src/pagination/ListAlarmRecommendationsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAlarmRecommendationsPaginator.ts index 52fbb5223438a..f36e872425816 100644 --- a/clients/client-resiliencehub/src/pagination/ListAlarmRecommendationsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAlarmRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAlarmRecommendationsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppAssessmentComplianceDriftsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppAssessmentComplianceDriftsPaginator.ts index 9ce4af07629f9..80e0c9edb124d 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppAssessmentComplianceDriftsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppAssessmentComplianceDriftsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppAssessmentComplianceDriftsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppAssessmentResourceDriftsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppAssessmentResourceDriftsPaginator.ts index 6c625488a6e12..ca96ff27a6f03 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppAssessmentResourceDriftsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppAssessmentResourceDriftsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppAssessmentResourceDriftsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppAssessmentsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppAssessmentsPaginator.ts index 0ccb7374ed378..cfadb6a953a12 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppAssessmentsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppAssessmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppAssessmentsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppComponentCompliancesPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppComponentCompliancesPaginator.ts index 8e44b48cf1acd..b839b548b4516 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppComponentCompliancesPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppComponentCompliancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppComponentCompliancesCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppComponentRecommendationsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppComponentRecommendationsPaginator.ts index 9de511ec6b5a8..0ca05934db3a9 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppComponentRecommendationsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppComponentRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppComponentRecommendationsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppInputSourcesPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppInputSourcesPaginator.ts index 4e8af9baa2e0c..d8c571c5ae593 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppInputSourcesPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppInputSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppInputSourcesCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppVersionAppComponentsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppVersionAppComponentsPaginator.ts index d89bda5c355f1..42a63fb006bac 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppVersionAppComponentsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppVersionAppComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppVersionAppComponentsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppVersionResourceMappingsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppVersionResourceMappingsPaginator.ts index 87d0875210478..b309ac91d92c1 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppVersionResourceMappingsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppVersionResourceMappingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppVersionResourceMappingsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppVersionResourcesPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppVersionResourcesPaginator.ts index 243036305809a..5586516ca4394 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppVersionResourcesPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppVersionResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppVersionResourcesCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppVersionsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppVersionsPaginator.ts index 81f1ba95e23f9..12b7c057efd1a 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppVersionsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppVersionsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListAppsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListAppsPaginator.ts index b5486dec6515a..2fb24105aaa0b 100644 --- a/clients/client-resiliencehub/src/pagination/ListAppsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListAppsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppsCommand, ListAppsCommandInput, ListAppsCommandOutput } from "../commands/ListAppsCommand"; import { ResiliencehubClient } from "../ResiliencehubClient"; diff --git a/clients/client-resiliencehub/src/pagination/ListMetricsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListMetricsPaginator.ts index 162a284aaca58..0b535fcb42fa4 100644 --- a/clients/client-resiliencehub/src/pagination/ListMetricsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListMetricsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMetricsCommand, ListMetricsCommandInput, ListMetricsCommandOutput } from "../commands/ListMetricsCommand"; import { ResiliencehubClient } from "../ResiliencehubClient"; diff --git a/clients/client-resiliencehub/src/pagination/ListRecommendationTemplatesPaginator.ts b/clients/client-resiliencehub/src/pagination/ListRecommendationTemplatesPaginator.ts index 927dfa5461054..332f8ca5823f2 100644 --- a/clients/client-resiliencehub/src/pagination/ListRecommendationTemplatesPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListRecommendationTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendationTemplatesCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListResiliencyPoliciesPaginator.ts b/clients/client-resiliencehub/src/pagination/ListResiliencyPoliciesPaginator.ts index 8a63b41a40c51..f911c6d899e92 100644 --- a/clients/client-resiliencehub/src/pagination/ListResiliencyPoliciesPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListResiliencyPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResiliencyPoliciesCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListResourceGroupingRecommendationsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListResourceGroupingRecommendationsPaginator.ts index cbc15d70d65db..d72a9f098f137 100644 --- a/clients/client-resiliencehub/src/pagination/ListResourceGroupingRecommendationsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListResourceGroupingRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceGroupingRecommendationsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListSopRecommendationsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListSopRecommendationsPaginator.ts index 7f2658a079b14..41c29fb69f4cd 100644 --- a/clients/client-resiliencehub/src/pagination/ListSopRecommendationsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListSopRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSopRecommendationsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListSuggestedResiliencyPoliciesPaginator.ts b/clients/client-resiliencehub/src/pagination/ListSuggestedResiliencyPoliciesPaginator.ts index 7fc95aef45fef..294998e8b4c8e 100644 --- a/clients/client-resiliencehub/src/pagination/ListSuggestedResiliencyPoliciesPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListSuggestedResiliencyPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSuggestedResiliencyPoliciesCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListTestRecommendationsPaginator.ts b/clients/client-resiliencehub/src/pagination/ListTestRecommendationsPaginator.ts index 45e4118df12c9..8c03e66774505 100644 --- a/clients/client-resiliencehub/src/pagination/ListTestRecommendationsPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListTestRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTestRecommendationsCommand, diff --git a/clients/client-resiliencehub/src/pagination/ListUnsupportedAppVersionResourcesPaginator.ts b/clients/client-resiliencehub/src/pagination/ListUnsupportedAppVersionResourcesPaginator.ts index 8728beca1f939..cdbfb19e20a22 100644 --- a/clients/client-resiliencehub/src/pagination/ListUnsupportedAppVersionResourcesPaginator.ts +++ b/clients/client-resiliencehub/src/pagination/ListUnsupportedAppVersionResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUnsupportedAppVersionResourcesCommand, diff --git a/clients/client-resiliencehub/src/runtimeConfig.browser.ts b/clients/client-resiliencehub/src/runtimeConfig.browser.ts index 3c6b534cf86fe..7c88aa81337e4 100644 --- a/clients/client-resiliencehub/src/runtimeConfig.browser.ts +++ b/clients/client-resiliencehub/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ResiliencehubClientConfig } from "./ResiliencehubClient"; + +import type { ResiliencehubClientConfig } from "./ResiliencehubClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-resiliencehub/src/runtimeConfig.native.ts b/clients/client-resiliencehub/src/runtimeConfig.native.ts index f5dca662c95ba..a19dd90549818 100644 --- a/clients/client-resiliencehub/src/runtimeConfig.native.ts +++ b/clients/client-resiliencehub/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ResiliencehubClientConfig } from "./ResiliencehubClient"; +import type { ResiliencehubClientConfig } from "./ResiliencehubClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-resiliencehub/src/runtimeConfig.shared.ts b/clients/client-resiliencehub/src/runtimeConfig.shared.ts index dd9156d01cb26..7d8f0e084e1d9 100644 --- a/clients/client-resiliencehub/src/runtimeConfig.shared.ts +++ b/clients/client-resiliencehub/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultResiliencehubHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ResiliencehubClientConfig } from "./ResiliencehubClient"; +import type { ResiliencehubClientConfig } from "./ResiliencehubClient"; /** * @internal diff --git a/clients/client-resiliencehub/src/runtimeConfig.ts b/clients/client-resiliencehub/src/runtimeConfig.ts index 9f80b7b20490f..92709968084f3 100644 --- a/clients/client-resiliencehub/src/runtimeConfig.ts +++ b/clients/client-resiliencehub/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ResiliencehubClientConfig } from "./ResiliencehubClient"; + +import type { ResiliencehubClientConfig } from "./ResiliencehubClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-resiliencehub/src/runtimeExtensions.ts b/clients/client-resiliencehub/src/runtimeExtensions.ts index 243b41d72a679..3a7da38e46217 100644 --- a/clients/client-resiliencehub/src/runtimeExtensions.ts +++ b/clients/client-resiliencehub/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ResiliencehubExtensionConfiguration } from "./extensionConfiguration"; +import type { ResiliencehubExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-resiliencehub/src/schemas/schemas_0.ts b/clients/client-resiliencehub/src/schemas/schemas_0.ts index 1b51f874756ec..ba2543e70b738 100644 --- a/clients/client-resiliencehub/src/schemas/schemas_0.ts +++ b/clients/client-resiliencehub/src/schemas/schemas_0.ts @@ -528,7 +528,7 @@ const n0 = "com.amazonaws.resiliencehub"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-resource-explorer-2/package.json b/clients/client-resource-explorer-2/package.json index ebeee481b1ca1..89c866d3f6fa9 100644 --- a/clients/client-resource-explorer-2/package.json +++ b/clients/client-resource-explorer-2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-resource-explorer-2/src/ResourceExplorer2.ts b/clients/client-resource-explorer-2/src/ResourceExplorer2.ts index 6e43dd402d378..f44c7d315fe44 100644 --- a/clients/client-resource-explorer-2/src/ResourceExplorer2.ts +++ b/clients/client-resource-explorer-2/src/ResourceExplorer2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateDefaultViewCommand, @@ -118,7 +118,7 @@ import { UpdateIndexTypeCommandOutput, } from "./commands/UpdateIndexTypeCommand"; import { UpdateViewCommand, UpdateViewCommandInput, UpdateViewCommandOutput } from "./commands/UpdateViewCommand"; -import { ResourceExplorer2Client, ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client"; +import { ResourceExplorer2Client } from "./ResourceExplorer2Client"; const commands = { AssociateDefaultViewCommand, diff --git a/clients/client-resource-explorer-2/src/ResourceExplorer2Client.ts b/clients/client-resource-explorer-2/src/ResourceExplorer2Client.ts index 1b129ab422609..2fd3cc707d75a 100644 --- a/clients/client-resource-explorer-2/src/ResourceExplorer2Client.ts +++ b/clients/client-resource-explorer-2/src/ResourceExplorer2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultResourceExplorer2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -126,7 +135,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-resource-explorer-2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-resource-explorer-2/src/auth/httpAuthExtensionConfiguration.ts index 64acbc1998293..112ebfc11eb88 100644 --- a/clients/client-resource-explorer-2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-resource-explorer-2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ResourceExplorer2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ResourceExplorer2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-resource-explorer-2/src/auth/httpAuthSchemeProvider.ts b/clients/client-resource-explorer-2/src/auth/httpAuthSchemeProvider.ts index b53faeaf4ea87..6374f86f2db85 100644 --- a/clients/client-resource-explorer-2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-resource-explorer-2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ResourceExplorer2ClientConfig, ResourceExplorer2ClientResolvedConfig } from "../ResourceExplorer2Client"; +import { type ResourceExplorer2ClientResolvedConfig, ResourceExplorer2ClientConfig } from "../ResourceExplorer2Client"; /** * @internal diff --git a/clients/client-resource-explorer-2/src/commands/AssociateDefaultViewCommand.ts b/clients/client-resource-explorer-2/src/commands/AssociateDefaultViewCommand.ts index b65ef1a940869..b75b7efd4a573 100644 --- a/clients/client-resource-explorer-2/src/commands/AssociateDefaultViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/AssociateDefaultViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDefaultViewInput, AssociateDefaultViewOutput } from "../models/models_0"; -import { +import type { AssociateDefaultViewInput, AssociateDefaultViewOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/BatchGetViewCommand.ts b/clients/client-resource-explorer-2/src/commands/BatchGetViewCommand.ts index 7a96d6cbe9e11..46bd71e60514b 100644 --- a/clients/client-resource-explorer-2/src/commands/BatchGetViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/BatchGetViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetViewInput, BatchGetViewOutput } from "../models/models_0"; -import { +import type { BatchGetViewInput, BatchGetViewOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/CreateIndexCommand.ts b/clients/client-resource-explorer-2/src/commands/CreateIndexCommand.ts index bb2bb5f04dd22..b17cc26bca5e9 100644 --- a/clients/client-resource-explorer-2/src/commands/CreateIndexCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/CreateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIndexInput, CreateIndexOutput } from "../models/models_0"; -import { +import type { CreateIndexInput, CreateIndexOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/CreateResourceExplorerSetupCommand.ts b/clients/client-resource-explorer-2/src/commands/CreateResourceExplorerSetupCommand.ts index a74368687884e..61c4fd29cd524 100644 --- a/clients/client-resource-explorer-2/src/commands/CreateResourceExplorerSetupCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/CreateResourceExplorerSetupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceExplorerSetupInput, CreateResourceExplorerSetupOutput } from "../models/models_0"; -import { +import type { CreateResourceExplorerSetupInput, CreateResourceExplorerSetupOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/CreateViewCommand.ts b/clients/client-resource-explorer-2/src/commands/CreateViewCommand.ts index b784cb4306edd..7f1e0b2e63578 100644 --- a/clients/client-resource-explorer-2/src/commands/CreateViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/CreateViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateViewInput, CreateViewOutput } from "../models/models_0"; -import { +import type { CreateViewInput, CreateViewOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/DeleteIndexCommand.ts b/clients/client-resource-explorer-2/src/commands/DeleteIndexCommand.ts index 76a0b838d791b..6d7ceaa26792b 100644 --- a/clients/client-resource-explorer-2/src/commands/DeleteIndexCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/DeleteIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIndexInput, DeleteIndexOutput } from "../models/models_0"; -import { +import type { DeleteIndexInput, DeleteIndexOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/DeleteResourceExplorerSetupCommand.ts b/clients/client-resource-explorer-2/src/commands/DeleteResourceExplorerSetupCommand.ts index 5c1ad5bada125..51ed90a732e0f 100644 --- a/clients/client-resource-explorer-2/src/commands/DeleteResourceExplorerSetupCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/DeleteResourceExplorerSetupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceExplorerSetupInput, DeleteResourceExplorerSetupOutput } from "../models/models_0"; -import { +import type { DeleteResourceExplorerSetupInput, DeleteResourceExplorerSetupOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/DeleteViewCommand.ts b/clients/client-resource-explorer-2/src/commands/DeleteViewCommand.ts index bbcf5398d9985..d2ae2e2ecc8ce 100644 --- a/clients/client-resource-explorer-2/src/commands/DeleteViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/DeleteViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteViewInput, DeleteViewOutput } from "../models/models_0"; -import { +import type { DeleteViewInput, DeleteViewOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/DisassociateDefaultViewCommand.ts b/clients/client-resource-explorer-2/src/commands/DisassociateDefaultViewCommand.ts index df3633cd8e9b0..b1c2a14036325 100644 --- a/clients/client-resource-explorer-2/src/commands/DisassociateDefaultViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/DisassociateDefaultViewCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/GetAccountLevelServiceConfigurationCommand.ts b/clients/client-resource-explorer-2/src/commands/GetAccountLevelServiceConfigurationCommand.ts index 77c1155f73d00..21a4e67ed7ade 100644 --- a/clients/client-resource-explorer-2/src/commands/GetAccountLevelServiceConfigurationCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetAccountLevelServiceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountLevelServiceConfigurationOutput } from "../models/models_0"; -import { +import type { GetAccountLevelServiceConfigurationOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/GetDefaultViewCommand.ts b/clients/client-resource-explorer-2/src/commands/GetDefaultViewCommand.ts index ca5d8ab56a7fa..d03299c730c7f 100644 --- a/clients/client-resource-explorer-2/src/commands/GetDefaultViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetDefaultViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDefaultViewOutput } from "../models/models_0"; -import { +import type { GetDefaultViewOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/GetIndexCommand.ts b/clients/client-resource-explorer-2/src/commands/GetIndexCommand.ts index 69d40baf5a8d3..99b858af32f43 100644 --- a/clients/client-resource-explorer-2/src/commands/GetIndexCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIndexOutput } from "../models/models_0"; -import { +import type { GetIndexOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/GetManagedViewCommand.ts b/clients/client-resource-explorer-2/src/commands/GetManagedViewCommand.ts index b3506ab7f599c..4e9572eaa6c2e 100644 --- a/clients/client-resource-explorer-2/src/commands/GetManagedViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetManagedViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedViewInput, GetManagedViewOutput } from "../models/models_0"; -import { +import type { GetManagedViewInput, GetManagedViewOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/GetResourceExplorerSetupCommand.ts b/clients/client-resource-explorer-2/src/commands/GetResourceExplorerSetupCommand.ts index 2643b59d68d66..e6df7112c6bf5 100644 --- a/clients/client-resource-explorer-2/src/commands/GetResourceExplorerSetupCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetResourceExplorerSetupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceExplorerSetupInput, GetResourceExplorerSetupOutput } from "../models/models_0"; -import { +import type { GetResourceExplorerSetupInput, GetResourceExplorerSetupOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/GetServiceIndexCommand.ts b/clients/client-resource-explorer-2/src/commands/GetServiceIndexCommand.ts index a9312c5d0e339..5324beb2447f1 100644 --- a/clients/client-resource-explorer-2/src/commands/GetServiceIndexCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetServiceIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceIndexOutput } from "../models/models_0"; -import { +import type { GetServiceIndexOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/GetServiceViewCommand.ts b/clients/client-resource-explorer-2/src/commands/GetServiceViewCommand.ts index d2910ae22e5cf..6cbb3e2def195 100644 --- a/clients/client-resource-explorer-2/src/commands/GetServiceViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetServiceViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceViewInput, GetServiceViewOutput } from "../models/models_0"; -import { +import type { GetServiceViewInput, GetServiceViewOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/GetViewCommand.ts b/clients/client-resource-explorer-2/src/commands/GetViewCommand.ts index b7e97df67437d..133708190a98e 100644 --- a/clients/client-resource-explorer-2/src/commands/GetViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/GetViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetViewInput, GetViewOutput } from "../models/models_0"; -import { +import type { GetViewInput, GetViewOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListIndexesCommand.ts b/clients/client-resource-explorer-2/src/commands/ListIndexesCommand.ts index aaffb68aaab5e..40870fc44a556 100644 --- a/clients/client-resource-explorer-2/src/commands/ListIndexesCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListIndexesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIndexesInput, ListIndexesOutput } from "../models/models_0"; -import { +import type { ListIndexesInput, ListIndexesOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListIndexesForMembersCommand.ts b/clients/client-resource-explorer-2/src/commands/ListIndexesForMembersCommand.ts index bf060218c66bf..06ac142bd35f5 100644 --- a/clients/client-resource-explorer-2/src/commands/ListIndexesForMembersCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListIndexesForMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIndexesForMembersInput, ListIndexesForMembersOutput } from "../models/models_0"; -import { +import type { ListIndexesForMembersInput, ListIndexesForMembersOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListManagedViewsCommand.ts b/clients/client-resource-explorer-2/src/commands/ListManagedViewsCommand.ts index 128a425b3cde1..665dc1a0d6d93 100644 --- a/clients/client-resource-explorer-2/src/commands/ListManagedViewsCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListManagedViewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListManagedViewsInput, ListManagedViewsOutput } from "../models/models_0"; -import { +import type { ListManagedViewsInput, ListManagedViewsOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListResourcesCommand.ts b/clients/client-resource-explorer-2/src/commands/ListResourcesCommand.ts index b84e8356c7621..ce7583ba5eab5 100644 --- a/clients/client-resource-explorer-2/src/commands/ListResourcesCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcesInput, ListResourcesOutput } from "../models/models_0"; -import { +import type { ListResourcesInput, ListResourcesOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListServiceIndexesCommand.ts b/clients/client-resource-explorer-2/src/commands/ListServiceIndexesCommand.ts index 93bf5f9ebdecb..5c6c770398089 100644 --- a/clients/client-resource-explorer-2/src/commands/ListServiceIndexesCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListServiceIndexesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceIndexesInput, ListServiceIndexesOutput } from "../models/models_0"; -import { +import type { ListServiceIndexesInput, ListServiceIndexesOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListServiceViewsCommand.ts b/clients/client-resource-explorer-2/src/commands/ListServiceViewsCommand.ts index 55d73e15b999c..cac50ed0427d6 100644 --- a/clients/client-resource-explorer-2/src/commands/ListServiceViewsCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListServiceViewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceViewsInput, ListServiceViewsOutput } from "../models/models_0"; -import { +import type { ListServiceViewsInput, ListServiceViewsOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListStreamingAccessForServicesCommand.ts b/clients/client-resource-explorer-2/src/commands/ListStreamingAccessForServicesCommand.ts index aeb8e2546e75b..4001b8368ccfa 100644 --- a/clients/client-resource-explorer-2/src/commands/ListStreamingAccessForServicesCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListStreamingAccessForServicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStreamingAccessForServicesInput, ListStreamingAccessForServicesOutput } from "../models/models_0"; -import { +import type { ListStreamingAccessForServicesInput, ListStreamingAccessForServicesOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListSupportedResourceTypesCommand.ts b/clients/client-resource-explorer-2/src/commands/ListSupportedResourceTypesCommand.ts index b4d9bce7c848b..41cf02dcf6b81 100644 --- a/clients/client-resource-explorer-2/src/commands/ListSupportedResourceTypesCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListSupportedResourceTypesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSupportedResourceTypesInput, ListSupportedResourceTypesOutput } from "../models/models_0"; -import { +import type { ListSupportedResourceTypesInput, ListSupportedResourceTypesOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListTagsForResourceCommand.ts b/clients/client-resource-explorer-2/src/commands/ListTagsForResourceCommand.ts index 98923dd8a6600..56e61e6ac93f9 100644 --- a/clients/client-resource-explorer-2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/ListViewsCommand.ts b/clients/client-resource-explorer-2/src/commands/ListViewsCommand.ts index a1d5086f6f0a7..0aad01dc46dbf 100644 --- a/clients/client-resource-explorer-2/src/commands/ListViewsCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/ListViewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListViewsInput, ListViewsOutput } from "../models/models_0"; -import { +import type { ListViewsInput, ListViewsOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/SearchCommand.ts b/clients/client-resource-explorer-2/src/commands/SearchCommand.ts index 39a3e8efbc76d..71dfdbb90f3e1 100644 --- a/clients/client-resource-explorer-2/src/commands/SearchCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/SearchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchInput, SearchOutput } from "../models/models_0"; -import { +import type { SearchInput, SearchOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/TagResourceCommand.ts b/clients/client-resource-explorer-2/src/commands/TagResourceCommand.ts index 2d901eb1add90..9b051c044b6fd 100644 --- a/clients/client-resource-explorer-2/src/commands/TagResourceCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; -import { +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/UntagResourceCommand.ts b/clients/client-resource-explorer-2/src/commands/UntagResourceCommand.ts index f537c73511abe..05f23c7d1cac3 100644 --- a/clients/client-resource-explorer-2/src/commands/UntagResourceCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; -import { +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/UpdateIndexTypeCommand.ts b/clients/client-resource-explorer-2/src/commands/UpdateIndexTypeCommand.ts index 02c58df8766cd..c783471850f6e 100644 --- a/clients/client-resource-explorer-2/src/commands/UpdateIndexTypeCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/UpdateIndexTypeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIndexTypeInput, UpdateIndexTypeOutput } from "../models/models_0"; -import { +import type { UpdateIndexTypeInput, UpdateIndexTypeOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/commands/UpdateViewCommand.ts b/clients/client-resource-explorer-2/src/commands/UpdateViewCommand.ts index 65780a1c3a106..5fe12856e129c 100644 --- a/clients/client-resource-explorer-2/src/commands/UpdateViewCommand.ts +++ b/clients/client-resource-explorer-2/src/commands/UpdateViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateViewInput, UpdateViewOutput } from "../models/models_0"; -import { +import type { UpdateViewInput, UpdateViewOutput } from "../models/models_0"; +import type { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-explorer-2/src/endpoint/EndpointParameters.ts b/clients/client-resource-explorer-2/src/endpoint/EndpointParameters.ts index fea7e195832ad..9673f256cc4a1 100644 --- a/clients/client-resource-explorer-2/src/endpoint/EndpointParameters.ts +++ b/clients/client-resource-explorer-2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-resource-explorer-2/src/endpoint/endpointResolver.ts b/clients/client-resource-explorer-2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-resource-explorer-2/src/endpoint/endpointResolver.ts +++ b/clients/client-resource-explorer-2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-resource-explorer-2/src/extensionConfiguration.ts b/clients/client-resource-explorer-2/src/extensionConfiguration.ts index 5fdc7681393de..3b6e6668bf339 100644 --- a/clients/client-resource-explorer-2/src/extensionConfiguration.ts +++ b/clients/client-resource-explorer-2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-resource-explorer-2/src/models/ResourceExplorer2ServiceException.ts b/clients/client-resource-explorer-2/src/models/ResourceExplorer2ServiceException.ts index f2ee7e9271e93..07405cf0af562 100644 --- a/clients/client-resource-explorer-2/src/models/ResourceExplorer2ServiceException.ts +++ b/clients/client-resource-explorer-2/src/models/ResourceExplorer2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-resource-explorer-2/src/models/errors.ts b/clients/client-resource-explorer-2/src/models/errors.ts index 4f57c4563bd2f..390dbef9e17e0 100644 --- a/clients/client-resource-explorer-2/src/models/errors.ts +++ b/clients/client-resource-explorer-2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionField } from "./models_0"; import { ResourceExplorer2ServiceException as __BaseException } from "./ResourceExplorer2ServiceException"; diff --git a/clients/client-resource-explorer-2/src/pagination/GetResourceExplorerSetupPaginator.ts b/clients/client-resource-explorer-2/src/pagination/GetResourceExplorerSetupPaginator.ts index 603f2de8584cf..aeb2895b12190 100644 --- a/clients/client-resource-explorer-2/src/pagination/GetResourceExplorerSetupPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/GetResourceExplorerSetupPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourceExplorerSetupCommand, diff --git a/clients/client-resource-explorer-2/src/pagination/Interfaces.ts b/clients/client-resource-explorer-2/src/pagination/Interfaces.ts index 76be29df64603..751c88f0af3aa 100644 --- a/clients/client-resource-explorer-2/src/pagination/Interfaces.ts +++ b/clients/client-resource-explorer-2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ResourceExplorer2Client } from "../ResourceExplorer2Client"; diff --git a/clients/client-resource-explorer-2/src/pagination/ListIndexesForMembersPaginator.ts b/clients/client-resource-explorer-2/src/pagination/ListIndexesForMembersPaginator.ts index bb7e834f3c5db..848d0ff89f62d 100644 --- a/clients/client-resource-explorer-2/src/pagination/ListIndexesForMembersPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/ListIndexesForMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIndexesForMembersCommand, diff --git a/clients/client-resource-explorer-2/src/pagination/ListIndexesPaginator.ts b/clients/client-resource-explorer-2/src/pagination/ListIndexesPaginator.ts index fe213f9efebff..e6ffe8869f1dd 100644 --- a/clients/client-resource-explorer-2/src/pagination/ListIndexesPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/ListIndexesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIndexesCommand, ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand"; import { ResourceExplorer2Client } from "../ResourceExplorer2Client"; diff --git a/clients/client-resource-explorer-2/src/pagination/ListManagedViewsPaginator.ts b/clients/client-resource-explorer-2/src/pagination/ListManagedViewsPaginator.ts index 384e528ba08e3..9d280b557de7b 100644 --- a/clients/client-resource-explorer-2/src/pagination/ListManagedViewsPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/ListManagedViewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedViewsCommand, diff --git a/clients/client-resource-explorer-2/src/pagination/ListResourcesPaginator.ts b/clients/client-resource-explorer-2/src/pagination/ListResourcesPaginator.ts index 39b3c5d951730..9bce8c950fb66 100644 --- a/clients/client-resource-explorer-2/src/pagination/ListResourcesPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/ListResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourcesCommand, diff --git a/clients/client-resource-explorer-2/src/pagination/ListServiceIndexesPaginator.ts b/clients/client-resource-explorer-2/src/pagination/ListServiceIndexesPaginator.ts index 1c5d8eef31a85..2ab6cd05e12b6 100644 --- a/clients/client-resource-explorer-2/src/pagination/ListServiceIndexesPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/ListServiceIndexesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceIndexesCommand, diff --git a/clients/client-resource-explorer-2/src/pagination/ListServiceViewsPaginator.ts b/clients/client-resource-explorer-2/src/pagination/ListServiceViewsPaginator.ts index 5cfeef0d47c41..b2d2be9c1f6d4 100644 --- a/clients/client-resource-explorer-2/src/pagination/ListServiceViewsPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/ListServiceViewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceViewsCommand, diff --git a/clients/client-resource-explorer-2/src/pagination/ListStreamingAccessForServicesPaginator.ts b/clients/client-resource-explorer-2/src/pagination/ListStreamingAccessForServicesPaginator.ts index e528a76931a3b..568c99b8f407b 100644 --- a/clients/client-resource-explorer-2/src/pagination/ListStreamingAccessForServicesPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/ListStreamingAccessForServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStreamingAccessForServicesCommand, diff --git a/clients/client-resource-explorer-2/src/pagination/ListSupportedResourceTypesPaginator.ts b/clients/client-resource-explorer-2/src/pagination/ListSupportedResourceTypesPaginator.ts index 29a4e1c37dddb..623fe354e11fc 100644 --- a/clients/client-resource-explorer-2/src/pagination/ListSupportedResourceTypesPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/ListSupportedResourceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSupportedResourceTypesCommand, diff --git a/clients/client-resource-explorer-2/src/pagination/ListViewsPaginator.ts b/clients/client-resource-explorer-2/src/pagination/ListViewsPaginator.ts index d94ee38aff66f..9ccb8bfd28271 100644 --- a/clients/client-resource-explorer-2/src/pagination/ListViewsPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/ListViewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListViewsCommand, ListViewsCommandInput, ListViewsCommandOutput } from "../commands/ListViewsCommand"; import { ResourceExplorer2Client } from "../ResourceExplorer2Client"; diff --git a/clients/client-resource-explorer-2/src/pagination/SearchPaginator.ts b/clients/client-resource-explorer-2/src/pagination/SearchPaginator.ts index 5b4599b1e2662..1ac0a854a87a5 100644 --- a/clients/client-resource-explorer-2/src/pagination/SearchPaginator.ts +++ b/clients/client-resource-explorer-2/src/pagination/SearchPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchCommand, SearchCommandInput, SearchCommandOutput } from "../commands/SearchCommand"; import { ResourceExplorer2Client } from "../ResourceExplorer2Client"; diff --git a/clients/client-resource-explorer-2/src/runtimeConfig.browser.ts b/clients/client-resource-explorer-2/src/runtimeConfig.browser.ts index 5da9a03604aac..1dfd30d2ce1b1 100644 --- a/clients/client-resource-explorer-2/src/runtimeConfig.browser.ts +++ b/clients/client-resource-explorer-2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client"; + +import type { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-resource-explorer-2/src/runtimeConfig.native.ts b/clients/client-resource-explorer-2/src/runtimeConfig.native.ts index 3df10ee6000bb..e92aa4cf7d1fd 100644 --- a/clients/client-resource-explorer-2/src/runtimeConfig.native.ts +++ b/clients/client-resource-explorer-2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client"; +import type { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-resource-explorer-2/src/runtimeConfig.shared.ts b/clients/client-resource-explorer-2/src/runtimeConfig.shared.ts index 28d2c2c69a931..e6917a2f7dda4 100644 --- a/clients/client-resource-explorer-2/src/runtimeConfig.shared.ts +++ b/clients/client-resource-explorer-2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultResourceExplorer2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client"; +import type { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client"; /** * @internal diff --git a/clients/client-resource-explorer-2/src/runtimeConfig.ts b/clients/client-resource-explorer-2/src/runtimeConfig.ts index 971e10f83c4d2..cf89609accc53 100644 --- a/clients/client-resource-explorer-2/src/runtimeConfig.ts +++ b/clients/client-resource-explorer-2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client"; + +import type { ResourceExplorer2ClientConfig } from "./ResourceExplorer2Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-resource-explorer-2/src/runtimeExtensions.ts b/clients/client-resource-explorer-2/src/runtimeExtensions.ts index 923e91da015c1..90251eb31cd74 100644 --- a/clients/client-resource-explorer-2/src/runtimeExtensions.ts +++ b/clients/client-resource-explorer-2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ResourceExplorer2ExtensionConfiguration } from "./extensionConfiguration"; +import type { ResourceExplorer2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-resource-explorer-2/src/schemas/schemas_0.ts b/clients/client-resource-explorer-2/src/schemas/schemas_0.ts index 11bdc98b0cba9..2bf9a907a1f34 100644 --- a/clients/client-resource-explorer-2/src/schemas/schemas_0.ts +++ b/clients/client-resource-explorer-2/src/schemas/schemas_0.ts @@ -205,7 +205,7 @@ const n0 = "com.amazonaws.resourceexplorer2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-resource-groups-tagging-api/package.json b/clients/client-resource-groups-tagging-api/package.json index 532b7a8265f68..3e0c39e8c0b39 100644 --- a/clients/client-resource-groups-tagging-api/package.json +++ b/clients/client-resource-groups-tagging-api/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-resource-groups-tagging-api/src/ResourceGroupsTaggingAPI.ts b/clients/client-resource-groups-tagging-api/src/ResourceGroupsTaggingAPI.ts index 9597f0ba2d73e..3ca4174e99775 100644 --- a/clients/client-resource-groups-tagging-api/src/ResourceGroupsTaggingAPI.ts +++ b/clients/client-resource-groups-tagging-api/src/ResourceGroupsTaggingAPI.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DescribeReportCreationCommand, @@ -43,7 +43,7 @@ import { UntagResourcesCommandInput, UntagResourcesCommandOutput, } from "./commands/UntagResourcesCommand"; -import { ResourceGroupsTaggingAPIClient, ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient"; +import { ResourceGroupsTaggingAPIClient } from "./ResourceGroupsTaggingAPIClient"; const commands = { DescribeReportCreationCommand, diff --git a/clients/client-resource-groups-tagging-api/src/ResourceGroupsTaggingAPIClient.ts b/clients/client-resource-groups-tagging-api/src/ResourceGroupsTaggingAPIClient.ts index 16d4cf3b84d04..dce08977d89b2 100644 --- a/clients/client-resource-groups-tagging-api/src/ResourceGroupsTaggingAPIClient.ts +++ b/clients/client-resource-groups-tagging-api/src/ResourceGroupsTaggingAPIClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultResourceGroupsTaggingAPIHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -82,7 +91,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-resource-groups-tagging-api/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-resource-groups-tagging-api/src/auth/httpAuthExtensionConfiguration.ts index 2d31e5a5d1e04..3a92058f97ca1 100644 --- a/clients/client-resource-groups-tagging-api/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-resource-groups-tagging-api/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ResourceGroupsTaggingAPIHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ResourceGroupsTaggingAPIHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-resource-groups-tagging-api/src/auth/httpAuthSchemeProvider.ts b/clients/client-resource-groups-tagging-api/src/auth/httpAuthSchemeProvider.ts index bf097a2375dae..8aed90476390a 100644 --- a/clients/client-resource-groups-tagging-api/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-resource-groups-tagging-api/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ResourceGroupsTaggingAPIClientResolvedConfig, ResourceGroupsTaggingAPIClientConfig, - ResourceGroupsTaggingAPIClientResolvedConfig, } from "../ResourceGroupsTaggingAPIClient"; /** diff --git a/clients/client-resource-groups-tagging-api/src/commands/DescribeReportCreationCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/DescribeReportCreationCommand.ts index 7749202d31504..30b5326c726f9 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/DescribeReportCreationCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/DescribeReportCreationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReportCreationInput, DescribeReportCreationOutput } from "../models/models_0"; -import { +import type { DescribeReportCreationInput, DescribeReportCreationOutput } from "../models/models_0"; +import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-groups-tagging-api/src/commands/GetComplianceSummaryCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/GetComplianceSummaryCommand.ts index 5a729077ea363..6fd4396a7a31c 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/GetComplianceSummaryCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/GetComplianceSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetComplianceSummaryInput, GetComplianceSummaryOutput } from "../models/models_0"; -import { +import type { GetComplianceSummaryInput, GetComplianceSummaryOutput } from "../models/models_0"; +import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-groups-tagging-api/src/commands/GetResourcesCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/GetResourcesCommand.ts index f59de8b702af6..149ebfce3a752 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/GetResourcesCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/GetResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcesInput, GetResourcesOutput } from "../models/models_0"; -import { +import type { GetResourcesInput, GetResourcesOutput } from "../models/models_0"; +import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-groups-tagging-api/src/commands/GetTagKeysCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/GetTagKeysCommand.ts index 6cedbebef86b0..15e8f29060950 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/GetTagKeysCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/GetTagKeysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTagKeysInput, GetTagKeysOutput } from "../models/models_0"; -import { +import type { GetTagKeysInput, GetTagKeysOutput } from "../models/models_0"; +import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-groups-tagging-api/src/commands/GetTagValuesCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/GetTagValuesCommand.ts index 38cca28070a3d..b7bf82d34edb9 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/GetTagValuesCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/GetTagValuesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTagValuesInput, GetTagValuesOutput } from "../models/models_0"; -import { +import type { GetTagValuesInput, GetTagValuesOutput } from "../models/models_0"; +import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-groups-tagging-api/src/commands/ListRequiredTagsCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/ListRequiredTagsCommand.ts index 9851144c5b99e..2225205029caf 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/ListRequiredTagsCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/ListRequiredTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRequiredTagsInput, ListRequiredTagsOutput } from "../models/models_0"; -import { +import type { ListRequiredTagsInput, ListRequiredTagsOutput } from "../models/models_0"; +import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-groups-tagging-api/src/commands/StartReportCreationCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/StartReportCreationCommand.ts index 37cd374dcb06e..730800d4e78bd 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/StartReportCreationCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/StartReportCreationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartReportCreationInput, StartReportCreationOutput } from "../models/models_0"; -import { +import type { StartReportCreationInput, StartReportCreationOutput } from "../models/models_0"; +import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-groups-tagging-api/src/commands/TagResourcesCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/TagResourcesCommand.ts index 0af34a6873a80..c1ab559a0ddec 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/TagResourcesCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/TagResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourcesInput, TagResourcesOutput } from "../models/models_0"; -import { +import type { TagResourcesInput, TagResourcesOutput } from "../models/models_0"; +import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-groups-tagging-api/src/commands/UntagResourcesCommand.ts b/clients/client-resource-groups-tagging-api/src/commands/UntagResourcesCommand.ts index 5d7b1bc7729dc..0584024d1be49 100644 --- a/clients/client-resource-groups-tagging-api/src/commands/UntagResourcesCommand.ts +++ b/clients/client-resource-groups-tagging-api/src/commands/UntagResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourcesInput, UntagResourcesOutput } from "../models/models_0"; -import { +import type { UntagResourcesInput, UntagResourcesOutput } from "../models/models_0"; +import type { ResourceGroupsTaggingAPIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-resource-groups-tagging-api/src/endpoint/EndpointParameters.ts b/clients/client-resource-groups-tagging-api/src/endpoint/EndpointParameters.ts index a06e51a658268..8c29c01a70e7b 100644 --- a/clients/client-resource-groups-tagging-api/src/endpoint/EndpointParameters.ts +++ b/clients/client-resource-groups-tagging-api/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-resource-groups-tagging-api/src/endpoint/endpointResolver.ts b/clients/client-resource-groups-tagging-api/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-resource-groups-tagging-api/src/endpoint/endpointResolver.ts +++ b/clients/client-resource-groups-tagging-api/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-resource-groups-tagging-api/src/extensionConfiguration.ts b/clients/client-resource-groups-tagging-api/src/extensionConfiguration.ts index e999664b97271..be46346bd365c 100644 --- a/clients/client-resource-groups-tagging-api/src/extensionConfiguration.ts +++ b/clients/client-resource-groups-tagging-api/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-resource-groups-tagging-api/src/models/ResourceGroupsTaggingAPIServiceException.ts b/clients/client-resource-groups-tagging-api/src/models/ResourceGroupsTaggingAPIServiceException.ts index 60cf65a5b0e4d..cbaee248a449f 100644 --- a/clients/client-resource-groups-tagging-api/src/models/ResourceGroupsTaggingAPIServiceException.ts +++ b/clients/client-resource-groups-tagging-api/src/models/ResourceGroupsTaggingAPIServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-resource-groups-tagging-api/src/models/errors.ts b/clients/client-resource-groups-tagging-api/src/models/errors.ts index 24f3b863f3819..aa0b3d1633c62 100644 --- a/clients/client-resource-groups-tagging-api/src/models/errors.ts +++ b/clients/client-resource-groups-tagging-api/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ResourceGroupsTaggingAPIServiceException as __BaseException } from "./ResourceGroupsTaggingAPIServiceException"; diff --git a/clients/client-resource-groups-tagging-api/src/pagination/GetComplianceSummaryPaginator.ts b/clients/client-resource-groups-tagging-api/src/pagination/GetComplianceSummaryPaginator.ts index 94dc4ae57bacd..da6f178a50fb4 100644 --- a/clients/client-resource-groups-tagging-api/src/pagination/GetComplianceSummaryPaginator.ts +++ b/clients/client-resource-groups-tagging-api/src/pagination/GetComplianceSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetComplianceSummaryCommand, diff --git a/clients/client-resource-groups-tagging-api/src/pagination/GetResourcesPaginator.ts b/clients/client-resource-groups-tagging-api/src/pagination/GetResourcesPaginator.ts index 34987f1646260..cbbe007f5bac9 100644 --- a/clients/client-resource-groups-tagging-api/src/pagination/GetResourcesPaginator.ts +++ b/clients/client-resource-groups-tagging-api/src/pagination/GetResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourcesCommand, diff --git a/clients/client-resource-groups-tagging-api/src/pagination/GetTagKeysPaginator.ts b/clients/client-resource-groups-tagging-api/src/pagination/GetTagKeysPaginator.ts index ef44ca49393a0..01623d5fd2ed2 100644 --- a/clients/client-resource-groups-tagging-api/src/pagination/GetTagKeysPaginator.ts +++ b/clients/client-resource-groups-tagging-api/src/pagination/GetTagKeysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTagKeysCommand, GetTagKeysCommandInput, GetTagKeysCommandOutput } from "../commands/GetTagKeysCommand"; import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient"; diff --git a/clients/client-resource-groups-tagging-api/src/pagination/GetTagValuesPaginator.ts b/clients/client-resource-groups-tagging-api/src/pagination/GetTagValuesPaginator.ts index b5cb1c4dff510..ca96bf528c800 100644 --- a/clients/client-resource-groups-tagging-api/src/pagination/GetTagValuesPaginator.ts +++ b/clients/client-resource-groups-tagging-api/src/pagination/GetTagValuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTagValuesCommand, diff --git a/clients/client-resource-groups-tagging-api/src/pagination/Interfaces.ts b/clients/client-resource-groups-tagging-api/src/pagination/Interfaces.ts index abbd0af84222b..5857608767175 100644 --- a/clients/client-resource-groups-tagging-api/src/pagination/Interfaces.ts +++ b/clients/client-resource-groups-tagging-api/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ResourceGroupsTaggingAPIClient } from "../ResourceGroupsTaggingAPIClient"; diff --git a/clients/client-resource-groups-tagging-api/src/pagination/ListRequiredTagsPaginator.ts b/clients/client-resource-groups-tagging-api/src/pagination/ListRequiredTagsPaginator.ts index a60ff80386f69..ab5cf5b6c47b3 100644 --- a/clients/client-resource-groups-tagging-api/src/pagination/ListRequiredTagsPaginator.ts +++ b/clients/client-resource-groups-tagging-api/src/pagination/ListRequiredTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRequiredTagsCommand, diff --git a/clients/client-resource-groups-tagging-api/src/runtimeConfig.browser.ts b/clients/client-resource-groups-tagging-api/src/runtimeConfig.browser.ts index e1d70efafbf4b..9fad2a38b2f5b 100644 --- a/clients/client-resource-groups-tagging-api/src/runtimeConfig.browser.ts +++ b/clients/client-resource-groups-tagging-api/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient"; + +import type { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-resource-groups-tagging-api/src/runtimeConfig.native.ts b/clients/client-resource-groups-tagging-api/src/runtimeConfig.native.ts index c1ba2ce9725a0..53d3b28558e81 100644 --- a/clients/client-resource-groups-tagging-api/src/runtimeConfig.native.ts +++ b/clients/client-resource-groups-tagging-api/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient"; +import type { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-resource-groups-tagging-api/src/runtimeConfig.shared.ts b/clients/client-resource-groups-tagging-api/src/runtimeConfig.shared.ts index e43173efd76ba..f9eede6216b61 100644 --- a/clients/client-resource-groups-tagging-api/src/runtimeConfig.shared.ts +++ b/clients/client-resource-groups-tagging-api/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultResourceGroupsTaggingAPIHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient"; +import type { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient"; /** * @internal diff --git a/clients/client-resource-groups-tagging-api/src/runtimeConfig.ts b/clients/client-resource-groups-tagging-api/src/runtimeConfig.ts index 04d5485716058..46b61ff254555 100644 --- a/clients/client-resource-groups-tagging-api/src/runtimeConfig.ts +++ b/clients/client-resource-groups-tagging-api/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient"; + +import type { ResourceGroupsTaggingAPIClientConfig } from "./ResourceGroupsTaggingAPIClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-resource-groups-tagging-api/src/runtimeExtensions.ts b/clients/client-resource-groups-tagging-api/src/runtimeExtensions.ts index 5882f201a3748..05bdd159d0045 100644 --- a/clients/client-resource-groups-tagging-api/src/runtimeExtensions.ts +++ b/clients/client-resource-groups-tagging-api/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ResourceGroupsTaggingAPIExtensionConfiguration } from "./extensionConfiguration"; +import type { ResourceGroupsTaggingAPIExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-resource-groups-tagging-api/src/schemas/schemas_0.ts b/clients/client-resource-groups-tagging-api/src/schemas/schemas_0.ts index b0cbcf02664e2..955a49968e8da 100644 --- a/clients/client-resource-groups-tagging-api/src/schemas/schemas_0.ts +++ b/clients/client-resource-groups-tagging-api/src/schemas/schemas_0.ts @@ -94,7 +94,7 @@ const n0 = "com.amazonaws.resourcegroupstaggingapi"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-resource-groups/package.json b/clients/client-resource-groups/package.json index 82cc850110c46..7ee93b3ee1542 100644 --- a/clients/client-resource-groups/package.json +++ b/clients/client-resource-groups/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-resource-groups/src/ResourceGroups.ts b/clients/client-resource-groups/src/ResourceGroups.ts index af125cd46c791..b1c343595bfff 100644 --- a/clients/client-resource-groups/src/ResourceGroups.ts +++ b/clients/client-resource-groups/src/ResourceGroups.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelTagSyncTaskCommand, @@ -85,7 +85,7 @@ import { UpdateGroupQueryCommandInput, UpdateGroupQueryCommandOutput, } from "./commands/UpdateGroupQueryCommand"; -import { ResourceGroupsClient, ResourceGroupsClientConfig } from "./ResourceGroupsClient"; +import { ResourceGroupsClient } from "./ResourceGroupsClient"; const commands = { CancelTagSyncTaskCommand, diff --git a/clients/client-resource-groups/src/ResourceGroupsClient.ts b/clients/client-resource-groups/src/ResourceGroupsClient.ts index ed4a079adac24..8bb5fa137d332 100644 --- a/clients/client-resource-groups/src/ResourceGroupsClient.ts +++ b/clients/client-resource-groups/src/ResourceGroupsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultResourceGroupsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelTagSyncTaskCommandInput, CancelTagSyncTaskCommandOutput } from "./commands/CancelTagSyncTaskCommand"; @@ -99,7 +108,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-resource-groups/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-resource-groups/src/auth/httpAuthExtensionConfiguration.ts index 3ab8ed4c8e46d..ef5cd44f78fa3 100644 --- a/clients/client-resource-groups/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-resource-groups/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ResourceGroupsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ResourceGroupsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-resource-groups/src/auth/httpAuthSchemeProvider.ts b/clients/client-resource-groups/src/auth/httpAuthSchemeProvider.ts index 9e4d7cf323f25..ede88124c028a 100644 --- a/clients/client-resource-groups/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-resource-groups/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ResourceGroupsClientConfig, ResourceGroupsClientResolvedConfig } from "../ResourceGroupsClient"; +import { type ResourceGroupsClientResolvedConfig, ResourceGroupsClientConfig } from "../ResourceGroupsClient"; /** * @internal diff --git a/clients/client-resource-groups/src/commands/CancelTagSyncTaskCommand.ts b/clients/client-resource-groups/src/commands/CancelTagSyncTaskCommand.ts index 4b0286405a12c..90801361c7a9f 100644 --- a/clients/client-resource-groups/src/commands/CancelTagSyncTaskCommand.ts +++ b/clients/client-resource-groups/src/commands/CancelTagSyncTaskCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelTagSyncTaskInput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { CancelTagSyncTaskInput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { CancelTagSyncTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/CreateGroupCommand.ts b/clients/client-resource-groups/src/commands/CreateGroupCommand.ts index 3dc9f8533e668..34b343b4d3f05 100644 --- a/clients/client-resource-groups/src/commands/CreateGroupCommand.ts +++ b/clients/client-resource-groups/src/commands/CreateGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGroupInput, CreateGroupOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { CreateGroupInput, CreateGroupOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { CreateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/DeleteGroupCommand.ts b/clients/client-resource-groups/src/commands/DeleteGroupCommand.ts index fb6522249abbd..353f2fae55670 100644 --- a/clients/client-resource-groups/src/commands/DeleteGroupCommand.ts +++ b/clients/client-resource-groups/src/commands/DeleteGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupInput, DeleteGroupOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { DeleteGroupInput, DeleteGroupOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { DeleteGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/GetAccountSettingsCommand.ts b/clients/client-resource-groups/src/commands/GetAccountSettingsCommand.ts index 38ab600cf0bb6..f0e3c0f42c145 100644 --- a/clients/client-resource-groups/src/commands/GetAccountSettingsCommand.ts +++ b/clients/client-resource-groups/src/commands/GetAccountSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountSettingsOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { GetAccountSettingsOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { GetAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/GetGroupCommand.ts b/clients/client-resource-groups/src/commands/GetGroupCommand.ts index cda23dd927e50..caa3ad17c8c9d 100644 --- a/clients/client-resource-groups/src/commands/GetGroupCommand.ts +++ b/clients/client-resource-groups/src/commands/GetGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupInput, GetGroupOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { GetGroupInput, GetGroupOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { GetGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/GetGroupConfigurationCommand.ts b/clients/client-resource-groups/src/commands/GetGroupConfigurationCommand.ts index 17a8d99ef8627..d7ab5268732f8 100644 --- a/clients/client-resource-groups/src/commands/GetGroupConfigurationCommand.ts +++ b/clients/client-resource-groups/src/commands/GetGroupConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupConfigurationInput, GetGroupConfigurationOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { GetGroupConfigurationInput, GetGroupConfigurationOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { GetGroupConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/GetGroupQueryCommand.ts b/clients/client-resource-groups/src/commands/GetGroupQueryCommand.ts index 4ba81e490f474..b43f4828e9898 100644 --- a/clients/client-resource-groups/src/commands/GetGroupQueryCommand.ts +++ b/clients/client-resource-groups/src/commands/GetGroupQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupQueryInput, GetGroupQueryOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { GetGroupQueryInput, GetGroupQueryOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { GetGroupQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/GetTagSyncTaskCommand.ts b/clients/client-resource-groups/src/commands/GetTagSyncTaskCommand.ts index 7345368f62eb0..437e416adb526 100644 --- a/clients/client-resource-groups/src/commands/GetTagSyncTaskCommand.ts +++ b/clients/client-resource-groups/src/commands/GetTagSyncTaskCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTagSyncTaskInput, GetTagSyncTaskOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { GetTagSyncTaskInput, GetTagSyncTaskOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { GetTagSyncTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/GetTagsCommand.ts b/clients/client-resource-groups/src/commands/GetTagsCommand.ts index dc1ec5ed696e7..470a4c6173605 100644 --- a/clients/client-resource-groups/src/commands/GetTagsCommand.ts +++ b/clients/client-resource-groups/src/commands/GetTagsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTagsInput, GetTagsOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { GetTagsInput, GetTagsOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { GetTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/GroupResourcesCommand.ts b/clients/client-resource-groups/src/commands/GroupResourcesCommand.ts index 140dd9f87a76f..523fd2f7ece70 100644 --- a/clients/client-resource-groups/src/commands/GroupResourcesCommand.ts +++ b/clients/client-resource-groups/src/commands/GroupResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GroupResourcesInput, GroupResourcesOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { GroupResourcesInput, GroupResourcesOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { GroupResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/ListGroupResourcesCommand.ts b/clients/client-resource-groups/src/commands/ListGroupResourcesCommand.ts index bf4f9ffd14332..d96f518f82f86 100644 --- a/clients/client-resource-groups/src/commands/ListGroupResourcesCommand.ts +++ b/clients/client-resource-groups/src/commands/ListGroupResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupResourcesInput, ListGroupResourcesOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { ListGroupResourcesInput, ListGroupResourcesOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { ListGroupResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/ListGroupingStatusesCommand.ts b/clients/client-resource-groups/src/commands/ListGroupingStatusesCommand.ts index 70a47d974be74..d243b7d59e2d4 100644 --- a/clients/client-resource-groups/src/commands/ListGroupingStatusesCommand.ts +++ b/clients/client-resource-groups/src/commands/ListGroupingStatusesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupingStatusesInput, ListGroupingStatusesOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { ListGroupingStatusesInput, ListGroupingStatusesOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { ListGroupingStatuses } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/ListGroupsCommand.ts b/clients/client-resource-groups/src/commands/ListGroupsCommand.ts index e966c6f12f225..8ac8701addb6a 100644 --- a/clients/client-resource-groups/src/commands/ListGroupsCommand.ts +++ b/clients/client-resource-groups/src/commands/ListGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupsInput, ListGroupsOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { ListGroupsInput, ListGroupsOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { ListGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/ListTagSyncTasksCommand.ts b/clients/client-resource-groups/src/commands/ListTagSyncTasksCommand.ts index a92ae16993b8f..dbf7645ff8c60 100644 --- a/clients/client-resource-groups/src/commands/ListTagSyncTasksCommand.ts +++ b/clients/client-resource-groups/src/commands/ListTagSyncTasksCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagSyncTasksInput, ListTagSyncTasksOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { ListTagSyncTasksInput, ListTagSyncTasksOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { ListTagSyncTasks } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/PutGroupConfigurationCommand.ts b/clients/client-resource-groups/src/commands/PutGroupConfigurationCommand.ts index 4ec0082905bb2..5dcedba8ccde4 100644 --- a/clients/client-resource-groups/src/commands/PutGroupConfigurationCommand.ts +++ b/clients/client-resource-groups/src/commands/PutGroupConfigurationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutGroupConfigurationInput, PutGroupConfigurationOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { PutGroupConfigurationInput, PutGroupConfigurationOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { PutGroupConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/SearchResourcesCommand.ts b/clients/client-resource-groups/src/commands/SearchResourcesCommand.ts index 7712bbd3276bf..929b803087fa8 100644 --- a/clients/client-resource-groups/src/commands/SearchResourcesCommand.ts +++ b/clients/client-resource-groups/src/commands/SearchResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchResourcesInput, SearchResourcesOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { SearchResourcesInput, SearchResourcesOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { SearchResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/StartTagSyncTaskCommand.ts b/clients/client-resource-groups/src/commands/StartTagSyncTaskCommand.ts index 46b03b154986b..7a84ed123f649 100644 --- a/clients/client-resource-groups/src/commands/StartTagSyncTaskCommand.ts +++ b/clients/client-resource-groups/src/commands/StartTagSyncTaskCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTagSyncTaskInput, StartTagSyncTaskOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { StartTagSyncTaskInput, StartTagSyncTaskOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { StartTagSyncTask } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/TagCommand.ts b/clients/client-resource-groups/src/commands/TagCommand.ts index 0e3058203168a..6e319f76112db 100644 --- a/clients/client-resource-groups/src/commands/TagCommand.ts +++ b/clients/client-resource-groups/src/commands/TagCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagInput, TagOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { TagInput, TagOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { Tag } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/UngroupResourcesCommand.ts b/clients/client-resource-groups/src/commands/UngroupResourcesCommand.ts index 4ca8e44095063..d3f3ac6572b39 100644 --- a/clients/client-resource-groups/src/commands/UngroupResourcesCommand.ts +++ b/clients/client-resource-groups/src/commands/UngroupResourcesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UngroupResourcesInput, UngroupResourcesOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { UngroupResourcesInput, UngroupResourcesOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { UngroupResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/UntagCommand.ts b/clients/client-resource-groups/src/commands/UntagCommand.ts index 64fed6da6a50e..5dfb520725b8e 100644 --- a/clients/client-resource-groups/src/commands/UntagCommand.ts +++ b/clients/client-resource-groups/src/commands/UntagCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagInput, UntagOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { UntagInput, UntagOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { Untag } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-resource-groups/src/commands/UpdateAccountSettingsCommand.ts index eb9e8e11be9f2..664247ce06b8c 100644 --- a/clients/client-resource-groups/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-resource-groups/src/commands/UpdateAccountSettingsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountSettingsInput, UpdateAccountSettingsOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { UpdateAccountSettingsInput, UpdateAccountSettingsOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { UpdateAccountSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/UpdateGroupCommand.ts b/clients/client-resource-groups/src/commands/UpdateGroupCommand.ts index f9db21bf4ba9c..5de4a93b56a57 100644 --- a/clients/client-resource-groups/src/commands/UpdateGroupCommand.ts +++ b/clients/client-resource-groups/src/commands/UpdateGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGroupInput, UpdateGroupOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { UpdateGroupInput, UpdateGroupOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { UpdateGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/commands/UpdateGroupQueryCommand.ts b/clients/client-resource-groups/src/commands/UpdateGroupQueryCommand.ts index 937c4f81ec61f..f154470163dad 100644 --- a/clients/client-resource-groups/src/commands/UpdateGroupQueryCommand.ts +++ b/clients/client-resource-groups/src/commands/UpdateGroupQueryCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGroupQueryInput, UpdateGroupQueryOutput } from "../models/models_0"; -import { ResourceGroupsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceGroupsClient"; +import type { UpdateGroupQueryInput, UpdateGroupQueryOutput } from "../models/models_0"; +import type { + ResourceGroupsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ResourceGroupsClient"; import { UpdateGroupQuery } from "../schemas/schemas_0"; /** diff --git a/clients/client-resource-groups/src/endpoint/EndpointParameters.ts b/clients/client-resource-groups/src/endpoint/EndpointParameters.ts index 72657dcdad048..d5c33fbd63f19 100644 --- a/clients/client-resource-groups/src/endpoint/EndpointParameters.ts +++ b/clients/client-resource-groups/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-resource-groups/src/endpoint/endpointResolver.ts b/clients/client-resource-groups/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-resource-groups/src/endpoint/endpointResolver.ts +++ b/clients/client-resource-groups/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-resource-groups/src/extensionConfiguration.ts b/clients/client-resource-groups/src/extensionConfiguration.ts index 7969b9e91a6a4..ee9222e1dde6f 100644 --- a/clients/client-resource-groups/src/extensionConfiguration.ts +++ b/clients/client-resource-groups/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-resource-groups/src/models/ResourceGroupsServiceException.ts b/clients/client-resource-groups/src/models/ResourceGroupsServiceException.ts index f6f773ac7ba4b..729cb4b435931 100644 --- a/clients/client-resource-groups/src/models/ResourceGroupsServiceException.ts +++ b/clients/client-resource-groups/src/models/ResourceGroupsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-resource-groups/src/models/errors.ts b/clients/client-resource-groups/src/models/errors.ts index f078d6bf9bf1d..fbdb9e7d0015c 100644 --- a/clients/client-resource-groups/src/models/errors.ts +++ b/clients/client-resource-groups/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ResourceGroupsServiceException as __BaseException } from "./ResourceGroupsServiceException"; diff --git a/clients/client-resource-groups/src/pagination/Interfaces.ts b/clients/client-resource-groups/src/pagination/Interfaces.ts index 4f8e4e37f8a27..8778217ee33a7 100644 --- a/clients/client-resource-groups/src/pagination/Interfaces.ts +++ b/clients/client-resource-groups/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ResourceGroupsClient } from "../ResourceGroupsClient"; diff --git a/clients/client-resource-groups/src/pagination/ListGroupResourcesPaginator.ts b/clients/client-resource-groups/src/pagination/ListGroupResourcesPaginator.ts index 336d0b63df1ab..243f56ca28313 100644 --- a/clients/client-resource-groups/src/pagination/ListGroupResourcesPaginator.ts +++ b/clients/client-resource-groups/src/pagination/ListGroupResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupResourcesCommand, diff --git a/clients/client-resource-groups/src/pagination/ListGroupingStatusesPaginator.ts b/clients/client-resource-groups/src/pagination/ListGroupingStatusesPaginator.ts index 0bbc288df7fa5..d6c5f60c1f3e5 100644 --- a/clients/client-resource-groups/src/pagination/ListGroupingStatusesPaginator.ts +++ b/clients/client-resource-groups/src/pagination/ListGroupingStatusesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupingStatusesCommand, diff --git a/clients/client-resource-groups/src/pagination/ListGroupsPaginator.ts b/clients/client-resource-groups/src/pagination/ListGroupsPaginator.ts index 4d40037db9308..9e43f0519f652 100644 --- a/clients/client-resource-groups/src/pagination/ListGroupsPaginator.ts +++ b/clients/client-resource-groups/src/pagination/ListGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand"; import { ResourceGroupsClient } from "../ResourceGroupsClient"; diff --git a/clients/client-resource-groups/src/pagination/ListTagSyncTasksPaginator.ts b/clients/client-resource-groups/src/pagination/ListTagSyncTasksPaginator.ts index b7469e59dd414..49e168937da5e 100644 --- a/clients/client-resource-groups/src/pagination/ListTagSyncTasksPaginator.ts +++ b/clients/client-resource-groups/src/pagination/ListTagSyncTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagSyncTasksCommand, diff --git a/clients/client-resource-groups/src/pagination/SearchResourcesPaginator.ts b/clients/client-resource-groups/src/pagination/SearchResourcesPaginator.ts index 55e3792b4ba2c..128ccf9adee47 100644 --- a/clients/client-resource-groups/src/pagination/SearchResourcesPaginator.ts +++ b/clients/client-resource-groups/src/pagination/SearchResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchResourcesCommand, diff --git a/clients/client-resource-groups/src/runtimeConfig.browser.ts b/clients/client-resource-groups/src/runtimeConfig.browser.ts index 2f49bcc07eef8..0d729d4662af1 100644 --- a/clients/client-resource-groups/src/runtimeConfig.browser.ts +++ b/clients/client-resource-groups/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ResourceGroupsClientConfig } from "./ResourceGroupsClient"; + +import type { ResourceGroupsClientConfig } from "./ResourceGroupsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-resource-groups/src/runtimeConfig.native.ts b/clients/client-resource-groups/src/runtimeConfig.native.ts index b35280781fa51..1a0fa6a77b4fb 100644 --- a/clients/client-resource-groups/src/runtimeConfig.native.ts +++ b/clients/client-resource-groups/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { ResourceGroupsClientConfig } from "./ResourceGroupsClient"; +import type { ResourceGroupsClientConfig } from "./ResourceGroupsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-resource-groups/src/runtimeConfig.shared.ts b/clients/client-resource-groups/src/runtimeConfig.shared.ts index 752df02716677..7b0e58255c1c8 100644 --- a/clients/client-resource-groups/src/runtimeConfig.shared.ts +++ b/clients/client-resource-groups/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultResourceGroupsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ResourceGroupsClientConfig } from "./ResourceGroupsClient"; +import type { ResourceGroupsClientConfig } from "./ResourceGroupsClient"; /** * @internal diff --git a/clients/client-resource-groups/src/runtimeConfig.ts b/clients/client-resource-groups/src/runtimeConfig.ts index 64e5dd830c14d..ba496dd6d61e5 100644 --- a/clients/client-resource-groups/src/runtimeConfig.ts +++ b/clients/client-resource-groups/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ResourceGroupsClientConfig } from "./ResourceGroupsClient"; + +import type { ResourceGroupsClientConfig } from "./ResourceGroupsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-resource-groups/src/runtimeExtensions.ts b/clients/client-resource-groups/src/runtimeExtensions.ts index 6d5bdaf88055f..2f1178769746a 100644 --- a/clients/client-resource-groups/src/runtimeExtensions.ts +++ b/clients/client-resource-groups/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ResourceGroupsExtensionConfiguration } from "./extensionConfiguration"; +import type { ResourceGroupsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-resource-groups/src/schemas/schemas_0.ts b/clients/client-resource-groups/src/schemas/schemas_0.ts index 626e3456f8819..9f7b116dd421c 100644 --- a/clients/client-resource-groups/src/schemas/schemas_0.ts +++ b/clients/client-resource-groups/src/schemas/schemas_0.ts @@ -169,7 +169,7 @@ const n0 = "com.amazonaws.resourcegroups"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-rolesanywhere/package.json b/clients/client-rolesanywhere/package.json index 71fad9e2c2df3..dac0aa6a9d0fd 100644 --- a/clients/client-rolesanywhere/package.json +++ b/clients/client-rolesanywhere/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-rolesanywhere/src/RolesAnywhere.ts b/clients/client-rolesanywhere/src/RolesAnywhere.ts index 2d2bb6c95aec0..51e53a331a393 100644 --- a/clients/client-rolesanywhere/src/RolesAnywhere.ts +++ b/clients/client-rolesanywhere/src/RolesAnywhere.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateProfileCommand, @@ -112,7 +112,7 @@ import { UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput, } from "./commands/UpdateTrustAnchorCommand"; -import { RolesAnywhereClient, RolesAnywhereClientConfig } from "./RolesAnywhereClient"; +import { RolesAnywhereClient } from "./RolesAnywhereClient"; const commands = { CreateProfileCommand, diff --git a/clients/client-rolesanywhere/src/RolesAnywhereClient.ts b/clients/client-rolesanywhere/src/RolesAnywhereClient.ts index 6b6c7d01cf236..e9423720b90c7 100644 --- a/clients/client-rolesanywhere/src/RolesAnywhereClient.ts +++ b/clients/client-rolesanywhere/src/RolesAnywhereClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRolesAnywhereHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand"; @@ -109,7 +118,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-rolesanywhere/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-rolesanywhere/src/auth/httpAuthExtensionConfiguration.ts index ffa282de9709d..1a959081019ae 100644 --- a/clients/client-rolesanywhere/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-rolesanywhere/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RolesAnywhereHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RolesAnywhereHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-rolesanywhere/src/auth/httpAuthSchemeProvider.ts b/clients/client-rolesanywhere/src/auth/httpAuthSchemeProvider.ts index f3e56cfc81622..3e688f7ce6f9a 100644 --- a/clients/client-rolesanywhere/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-rolesanywhere/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RolesAnywhereClientConfig, RolesAnywhereClientResolvedConfig } from "../RolesAnywhereClient"; +import { type RolesAnywhereClientResolvedConfig, RolesAnywhereClientConfig } from "../RolesAnywhereClient"; /** * @internal diff --git a/clients/client-rolesanywhere/src/commands/CreateProfileCommand.ts b/clients/client-rolesanywhere/src/commands/CreateProfileCommand.ts index 4ed82d8d2f8cd..75a2641c4a6d1 100644 --- a/clients/client-rolesanywhere/src/commands/CreateProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/CreateProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProfileRequest, ProfileDetailResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { CreateProfileRequest, ProfileDetailResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { CreateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/CreateTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/CreateTrustAnchorCommand.ts index 32d98c978297a..71ece66080cc5 100644 --- a/clients/client-rolesanywhere/src/commands/CreateTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/CreateTrustAnchorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { CreateTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { CreateTrustAnchor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/DeleteAttributeMappingCommand.ts b/clients/client-rolesanywhere/src/commands/DeleteAttributeMappingCommand.ts index 11051b8c2b073..5fc8bc32eac08 100644 --- a/clients/client-rolesanywhere/src/commands/DeleteAttributeMappingCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DeleteAttributeMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAttributeMappingRequest, DeleteAttributeMappingResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { DeleteAttributeMappingRequest, DeleteAttributeMappingResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { DeleteAttributeMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/DeleteCrlCommand.ts b/clients/client-rolesanywhere/src/commands/DeleteCrlCommand.ts index 85349272c53bd..6d51c54b7d260 100644 --- a/clients/client-rolesanywhere/src/commands/DeleteCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DeleteCrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { DeleteCrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/DeleteProfileCommand.ts b/clients/client-rolesanywhere/src/commands/DeleteProfileCommand.ts index 26b205e4e6449..04929bfa675db 100644 --- a/clients/client-rolesanywhere/src/commands/DeleteProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DeleteProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { DeleteProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/DeleteTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/DeleteTrustAnchorCommand.ts index 468b0242fe21a..1bf3e6f38058c 100644 --- a/clients/client-rolesanywhere/src/commands/DeleteTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DeleteTrustAnchorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { DeleteTrustAnchor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/DisableCrlCommand.ts b/clients/client-rolesanywhere/src/commands/DisableCrlCommand.ts index db624e136cec3..827c559e7baed 100644 --- a/clients/client-rolesanywhere/src/commands/DisableCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DisableCrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { DisableCrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/DisableProfileCommand.ts b/clients/client-rolesanywhere/src/commands/DisableProfileCommand.ts index 41d8510a4e91f..18bb26f0e722f 100644 --- a/clients/client-rolesanywhere/src/commands/DisableProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DisableProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { DisableProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/DisableTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/DisableTrustAnchorCommand.ts index c4c7be5c55bce..54136877eea79 100644 --- a/clients/client-rolesanywhere/src/commands/DisableTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/DisableTrustAnchorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { DisableTrustAnchor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/EnableCrlCommand.ts b/clients/client-rolesanywhere/src/commands/EnableCrlCommand.ts index d0fbdb9092ffc..1fc2714f1ce24 100644 --- a/clients/client-rolesanywhere/src/commands/EnableCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/EnableCrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { EnableCrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/EnableProfileCommand.ts b/clients/client-rolesanywhere/src/commands/EnableProfileCommand.ts index a46bd0ae36915..4170fc033267d 100644 --- a/clients/client-rolesanywhere/src/commands/EnableProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/EnableProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { EnableProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/EnableTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/EnableTrustAnchorCommand.ts index 4937560dc5b8e..0bdb00062ad7e 100644 --- a/clients/client-rolesanywhere/src/commands/EnableTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/EnableTrustAnchorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { EnableTrustAnchor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/GetCrlCommand.ts b/clients/client-rolesanywhere/src/commands/GetCrlCommand.ts index e4024fde25167..cff4cfa28a6e3 100644 --- a/clients/client-rolesanywhere/src/commands/GetCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/GetCrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { CrlDetailResponse, ScalarCrlRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { GetCrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/GetProfileCommand.ts b/clients/client-rolesanywhere/src/commands/GetProfileCommand.ts index e4356daed6d7f..5a1f43eda423e 100644 --- a/clients/client-rolesanywhere/src/commands/GetProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/GetProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ProfileDetailResponse, ScalarProfileRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { GetProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/GetSubjectCommand.ts b/clients/client-rolesanywhere/src/commands/GetSubjectCommand.ts index 02c451450e7c3..38c004da5e1d5 100644 --- a/clients/client-rolesanywhere/src/commands/GetSubjectCommand.ts +++ b/clients/client-rolesanywhere/src/commands/GetSubjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScalarSubjectRequest, SubjectDetailResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ScalarSubjectRequest, SubjectDetailResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { GetSubject } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/GetTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/GetTrustAnchorCommand.ts index 5a0141ee65669..fc32f3add22a5 100644 --- a/clients/client-rolesanywhere/src/commands/GetTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/GetTrustAnchorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ScalarTrustAnchorRequest, TrustAnchorDetailResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { GetTrustAnchor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/ImportCrlCommand.ts b/clients/client-rolesanywhere/src/commands/ImportCrlCommand.ts index ea69e4ee9c72f..81c870d9ca596 100644 --- a/clients/client-rolesanywhere/src/commands/ImportCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ImportCrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CrlDetailResponse, ImportCrlRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { CrlDetailResponse, ImportCrlRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { ImportCrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/ListCrlsCommand.ts b/clients/client-rolesanywhere/src/commands/ListCrlsCommand.ts index 927e965416c7b..429e0e5d9aa15 100644 --- a/clients/client-rolesanywhere/src/commands/ListCrlsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListCrlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCrlsResponse, ListRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ListCrlsResponse, ListRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { ListCrls } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/ListProfilesCommand.ts b/clients/client-rolesanywhere/src/commands/ListProfilesCommand.ts index 23da5fe758dd9..335ecb5d7627c 100644 --- a/clients/client-rolesanywhere/src/commands/ListProfilesCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfilesResponse, ListRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ListProfilesResponse, ListRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { ListProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/ListSubjectsCommand.ts b/clients/client-rolesanywhere/src/commands/ListSubjectsCommand.ts index 7b19f1d07c840..6abe6f742ac5f 100644 --- a/clients/client-rolesanywhere/src/commands/ListSubjectsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListSubjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRequest, ListSubjectsResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ListRequest, ListSubjectsResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { ListSubjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/ListTagsForResourceCommand.ts b/clients/client-rolesanywhere/src/commands/ListTagsForResourceCommand.ts index 770dd1e647981..2134c1d0db2a1 100644 --- a/clients/client-rolesanywhere/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/ListTrustAnchorsCommand.ts b/clients/client-rolesanywhere/src/commands/ListTrustAnchorsCommand.ts index 95b74d40a7e4b..7efc008cb98e5 100644 --- a/clients/client-rolesanywhere/src/commands/ListTrustAnchorsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ListTrustAnchorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRequest, ListTrustAnchorsResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ListRequest, ListTrustAnchorsResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { ListTrustAnchors } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/PutAttributeMappingCommand.ts b/clients/client-rolesanywhere/src/commands/PutAttributeMappingCommand.ts index a810aaef84a5a..0ae49661c13ff 100644 --- a/clients/client-rolesanywhere/src/commands/PutAttributeMappingCommand.ts +++ b/clients/client-rolesanywhere/src/commands/PutAttributeMappingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAttributeMappingRequest, PutAttributeMappingResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { PutAttributeMappingRequest, PutAttributeMappingResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { PutAttributeMapping } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/PutNotificationSettingsCommand.ts b/clients/client-rolesanywhere/src/commands/PutNotificationSettingsCommand.ts index 4f50aaf82646c..97b7b5cf53fdd 100644 --- a/clients/client-rolesanywhere/src/commands/PutNotificationSettingsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/PutNotificationSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutNotificationSettingsRequest, PutNotificationSettingsResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { PutNotificationSettingsRequest, PutNotificationSettingsResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { PutNotificationSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/ResetNotificationSettingsCommand.ts b/clients/client-rolesanywhere/src/commands/ResetNotificationSettingsCommand.ts index ac4f8fe3419ec..410adea9086bd 100644 --- a/clients/client-rolesanywhere/src/commands/ResetNotificationSettingsCommand.ts +++ b/clients/client-rolesanywhere/src/commands/ResetNotificationSettingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetNotificationSettingsRequest, ResetNotificationSettingsResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ResetNotificationSettingsRequest, ResetNotificationSettingsResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { ResetNotificationSettings } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/TagResourceCommand.ts b/clients/client-rolesanywhere/src/commands/TagResourceCommand.ts index 63b84b69fa040..231ded0ecbbaa 100644 --- a/clients/client-rolesanywhere/src/commands/TagResourceCommand.ts +++ b/clients/client-rolesanywhere/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/UntagResourceCommand.ts b/clients/client-rolesanywhere/src/commands/UntagResourceCommand.ts index 89ce0d720e135..0b3d5962336e0 100644 --- a/clients/client-rolesanywhere/src/commands/UntagResourceCommand.ts +++ b/clients/client-rolesanywhere/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/UpdateCrlCommand.ts b/clients/client-rolesanywhere/src/commands/UpdateCrlCommand.ts index 02b2ddd6e4ab8..42b34978b1e69 100644 --- a/clients/client-rolesanywhere/src/commands/UpdateCrlCommand.ts +++ b/clients/client-rolesanywhere/src/commands/UpdateCrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CrlDetailResponse, UpdateCrlRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { CrlDetailResponse, UpdateCrlRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { UpdateCrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/UpdateProfileCommand.ts b/clients/client-rolesanywhere/src/commands/UpdateProfileCommand.ts index 33f7370a386d1..f62e2ef017eb7 100644 --- a/clients/client-rolesanywhere/src/commands/UpdateProfileCommand.ts +++ b/clients/client-rolesanywhere/src/commands/UpdateProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProfileDetailResponse, UpdateProfileRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { ProfileDetailResponse, UpdateProfileRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { UpdateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/commands/UpdateTrustAnchorCommand.ts b/clients/client-rolesanywhere/src/commands/UpdateTrustAnchorCommand.ts index e3136916effe5..a3f157d06d08f 100644 --- a/clients/client-rolesanywhere/src/commands/UpdateTrustAnchorCommand.ts +++ b/clients/client-rolesanywhere/src/commands/UpdateTrustAnchorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TrustAnchorDetailResponse, UpdateTrustAnchorRequest } from "../models/models_0"; -import { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; +import type { TrustAnchorDetailResponse, UpdateTrustAnchorRequest } from "../models/models_0"; +import type { RolesAnywhereClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RolesAnywhereClient"; import { UpdateTrustAnchor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rolesanywhere/src/endpoint/EndpointParameters.ts b/clients/client-rolesanywhere/src/endpoint/EndpointParameters.ts index 7991eab877603..f3c312b8cb53f 100644 --- a/clients/client-rolesanywhere/src/endpoint/EndpointParameters.ts +++ b/clients/client-rolesanywhere/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-rolesanywhere/src/endpoint/endpointResolver.ts b/clients/client-rolesanywhere/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-rolesanywhere/src/endpoint/endpointResolver.ts +++ b/clients/client-rolesanywhere/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-rolesanywhere/src/extensionConfiguration.ts b/clients/client-rolesanywhere/src/extensionConfiguration.ts index ac41dc7349224..36c80c704ce14 100644 --- a/clients/client-rolesanywhere/src/extensionConfiguration.ts +++ b/clients/client-rolesanywhere/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-rolesanywhere/src/models/RolesAnywhereServiceException.ts b/clients/client-rolesanywhere/src/models/RolesAnywhereServiceException.ts index ca7d7a2f9a518..30311a259eb6c 100644 --- a/clients/client-rolesanywhere/src/models/RolesAnywhereServiceException.ts +++ b/clients/client-rolesanywhere/src/models/RolesAnywhereServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-rolesanywhere/src/models/errors.ts b/clients/client-rolesanywhere/src/models/errors.ts index bcd2d967f6b04..7b6bdbcda8536 100644 --- a/clients/client-rolesanywhere/src/models/errors.ts +++ b/clients/client-rolesanywhere/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RolesAnywhereServiceException as __BaseException } from "./RolesAnywhereServiceException"; diff --git a/clients/client-rolesanywhere/src/pagination/Interfaces.ts b/clients/client-rolesanywhere/src/pagination/Interfaces.ts index 00d9f6103a740..47e1d13f81835 100644 --- a/clients/client-rolesanywhere/src/pagination/Interfaces.ts +++ b/clients/client-rolesanywhere/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RolesAnywhereClient } from "../RolesAnywhereClient"; diff --git a/clients/client-rolesanywhere/src/pagination/ListCrlsPaginator.ts b/clients/client-rolesanywhere/src/pagination/ListCrlsPaginator.ts index f41c0847c658b..639bab4e7bc5c 100644 --- a/clients/client-rolesanywhere/src/pagination/ListCrlsPaginator.ts +++ b/clients/client-rolesanywhere/src/pagination/ListCrlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCrlsCommand, ListCrlsCommandInput, ListCrlsCommandOutput } from "../commands/ListCrlsCommand"; import { RolesAnywhereClient } from "../RolesAnywhereClient"; diff --git a/clients/client-rolesanywhere/src/pagination/ListProfilesPaginator.ts b/clients/client-rolesanywhere/src/pagination/ListProfilesPaginator.ts index b31194d5d841d..0383f9d84ef26 100644 --- a/clients/client-rolesanywhere/src/pagination/ListProfilesPaginator.ts +++ b/clients/client-rolesanywhere/src/pagination/ListProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProfilesCommand, diff --git a/clients/client-rolesanywhere/src/pagination/ListSubjectsPaginator.ts b/clients/client-rolesanywhere/src/pagination/ListSubjectsPaginator.ts index 329ad51527e6b..56d68968d168d 100644 --- a/clients/client-rolesanywhere/src/pagination/ListSubjectsPaginator.ts +++ b/clients/client-rolesanywhere/src/pagination/ListSubjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubjectsCommand, diff --git a/clients/client-rolesanywhere/src/pagination/ListTrustAnchorsPaginator.ts b/clients/client-rolesanywhere/src/pagination/ListTrustAnchorsPaginator.ts index 03e262b7b83cd..290de873ce271 100644 --- a/clients/client-rolesanywhere/src/pagination/ListTrustAnchorsPaginator.ts +++ b/clients/client-rolesanywhere/src/pagination/ListTrustAnchorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrustAnchorsCommand, diff --git a/clients/client-rolesanywhere/src/runtimeConfig.browser.ts b/clients/client-rolesanywhere/src/runtimeConfig.browser.ts index 7a67ee8599933..c5d09d6334f86 100644 --- a/clients/client-rolesanywhere/src/runtimeConfig.browser.ts +++ b/clients/client-rolesanywhere/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RolesAnywhereClientConfig } from "./RolesAnywhereClient"; + +import type { RolesAnywhereClientConfig } from "./RolesAnywhereClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-rolesanywhere/src/runtimeConfig.native.ts b/clients/client-rolesanywhere/src/runtimeConfig.native.ts index 915ed6f913bdc..c4cdf1118f20c 100644 --- a/clients/client-rolesanywhere/src/runtimeConfig.native.ts +++ b/clients/client-rolesanywhere/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RolesAnywhereClientConfig } from "./RolesAnywhereClient"; +import type { RolesAnywhereClientConfig } from "./RolesAnywhereClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-rolesanywhere/src/runtimeConfig.shared.ts b/clients/client-rolesanywhere/src/runtimeConfig.shared.ts index 48df40f504f04..4e37ed50192e2 100644 --- a/clients/client-rolesanywhere/src/runtimeConfig.shared.ts +++ b/clients/client-rolesanywhere/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRolesAnywhereHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RolesAnywhereClientConfig } from "./RolesAnywhereClient"; +import type { RolesAnywhereClientConfig } from "./RolesAnywhereClient"; /** * @internal diff --git a/clients/client-rolesanywhere/src/runtimeConfig.ts b/clients/client-rolesanywhere/src/runtimeConfig.ts index 53f6b850e3bb8..4ac2bb5af516c 100644 --- a/clients/client-rolesanywhere/src/runtimeConfig.ts +++ b/clients/client-rolesanywhere/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RolesAnywhereClientConfig } from "./RolesAnywhereClient"; + +import type { RolesAnywhereClientConfig } from "./RolesAnywhereClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-rolesanywhere/src/runtimeExtensions.ts b/clients/client-rolesanywhere/src/runtimeExtensions.ts index 8f000a3984c2e..e995752a56f81 100644 --- a/clients/client-rolesanywhere/src/runtimeExtensions.ts +++ b/clients/client-rolesanywhere/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RolesAnywhereExtensionConfiguration } from "./extensionConfiguration"; +import type { RolesAnywhereExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-rolesanywhere/src/schemas/schemas_0.ts b/clients/client-rolesanywhere/src/schemas/schemas_0.ts index dc357caa1eeab..4f5a8c7ea5227 100644 --- a/clients/client-rolesanywhere/src/schemas/schemas_0.ts +++ b/clients/client-rolesanywhere/src/schemas/schemas_0.ts @@ -166,7 +166,7 @@ const n0 = "com.amazonaws.rolesanywhere"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-route-53-domains/package.json b/clients/client-route-53-domains/package.json index 71620abf2f02b..bf47298dacc7c 100644 --- a/clients/client-route-53-domains/package.json +++ b/clients/client-route-53-domains/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-route-53-domains/src/Route53Domains.ts b/clients/client-route-53-domains/src/Route53Domains.ts index e340132484ce5..defed34f361d3 100644 --- a/clients/client-route-53-domains/src/Route53Domains.ts +++ b/clients/client-route-53-domains/src/Route53Domains.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptDomainTransferFromAnotherAwsAccountCommand, @@ -152,7 +152,7 @@ import { UpdateTagsForDomainCommandOutput, } from "./commands/UpdateTagsForDomainCommand"; import { ViewBillingCommand, ViewBillingCommandInput, ViewBillingCommandOutput } from "./commands/ViewBillingCommand"; -import { Route53DomainsClient, Route53DomainsClientConfig } from "./Route53DomainsClient"; +import { Route53DomainsClient } from "./Route53DomainsClient"; const commands = { AcceptDomainTransferFromAnotherAwsAccountCommand, diff --git a/clients/client-route-53-domains/src/Route53DomainsClient.ts b/clients/client-route-53-domains/src/Route53DomainsClient.ts index 5c6a06927f9c4..d8f486656ba82 100644 --- a/clients/client-route-53-domains/src/Route53DomainsClient.ts +++ b/clients/client-route-53-domains/src/Route53DomainsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRoute53DomainsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -164,7 +173,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-route-53-domains/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-route-53-domains/src/auth/httpAuthExtensionConfiguration.ts index e741498e5a226..bc8f3be233e25 100644 --- a/clients/client-route-53-domains/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-route-53-domains/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Route53DomainsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Route53DomainsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-route-53-domains/src/auth/httpAuthSchemeProvider.ts b/clients/client-route-53-domains/src/auth/httpAuthSchemeProvider.ts index ea01a79aa25be..c8c217bc06b23 100644 --- a/clients/client-route-53-domains/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-route-53-domains/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { Route53DomainsClientConfig, Route53DomainsClientResolvedConfig } from "../Route53DomainsClient"; +import { type Route53DomainsClientResolvedConfig, Route53DomainsClientConfig } from "../Route53DomainsClient"; /** * @internal diff --git a/clients/client-route-53-domains/src/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.ts b/clients/client-route-53-domains/src/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.ts index 4c60151ce03de..01ceb70c34bc3 100644 --- a/clients/client-route-53-domains/src/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.ts +++ b/clients/client-route-53-domains/src/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AcceptDomainTransferFromAnotherAwsAccountRequest, AcceptDomainTransferFromAnotherAwsAccountResponse, } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { AcceptDomainTransferFromAnotherAwsAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/AssociateDelegationSignerToDomainCommand.ts b/clients/client-route-53-domains/src/commands/AssociateDelegationSignerToDomainCommand.ts index 5bcac05d836bf..ad12339bbd78d 100644 --- a/clients/client-route-53-domains/src/commands/AssociateDelegationSignerToDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/AssociateDelegationSignerToDomainCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateDelegationSignerToDomainRequest, AssociateDelegationSignerToDomainResponse, } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { AssociateDelegationSignerToDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/CancelDomainTransferToAnotherAwsAccountCommand.ts b/clients/client-route-53-domains/src/commands/CancelDomainTransferToAnotherAwsAccountCommand.ts index 0752adf30f0bc..2d23e21d0443b 100644 --- a/clients/client-route-53-domains/src/commands/CancelDomainTransferToAnotherAwsAccountCommand.ts +++ b/clients/client-route-53-domains/src/commands/CancelDomainTransferToAnotherAwsAccountCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CancelDomainTransferToAnotherAwsAccountRequest, CancelDomainTransferToAnotherAwsAccountResponse, } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { CancelDomainTransferToAnotherAwsAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/CheckDomainAvailabilityCommand.ts b/clients/client-route-53-domains/src/commands/CheckDomainAvailabilityCommand.ts index f78618ee1f418..5f11e7c52034f 100644 --- a/clients/client-route-53-domains/src/commands/CheckDomainAvailabilityCommand.ts +++ b/clients/client-route-53-domains/src/commands/CheckDomainAvailabilityCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CheckDomainAvailabilityRequest, CheckDomainAvailabilityResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { CheckDomainAvailabilityRequest, CheckDomainAvailabilityResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { CheckDomainAvailability } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/CheckDomainTransferabilityCommand.ts b/clients/client-route-53-domains/src/commands/CheckDomainTransferabilityCommand.ts index e381da3bd1e7f..ef6004cbdd3b3 100644 --- a/clients/client-route-53-domains/src/commands/CheckDomainTransferabilityCommand.ts +++ b/clients/client-route-53-domains/src/commands/CheckDomainTransferabilityCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CheckDomainTransferabilityRequest, CheckDomainTransferabilityResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { CheckDomainTransferabilityRequest, CheckDomainTransferabilityResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { CheckDomainTransferability } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/DeleteDomainCommand.ts b/clients/client-route-53-domains/src/commands/DeleteDomainCommand.ts index f2d958d7eac63..09c2ab87e2470 100644 --- a/clients/client-route-53-domains/src/commands/DeleteDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/DeleteDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { DeleteDomainRequest, DeleteDomainResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { DeleteDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/DeleteTagsForDomainCommand.ts b/clients/client-route-53-domains/src/commands/DeleteTagsForDomainCommand.ts index d631cd6848287..5e62dee261b03 100644 --- a/clients/client-route-53-domains/src/commands/DeleteTagsForDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/DeleteTagsForDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagsForDomainRequest, DeleteTagsForDomainResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { DeleteTagsForDomainRequest, DeleteTagsForDomainResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { DeleteTagsForDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/DisableDomainAutoRenewCommand.ts b/clients/client-route-53-domains/src/commands/DisableDomainAutoRenewCommand.ts index 9e5ad683a98fa..29ddc7a183b23 100644 --- a/clients/client-route-53-domains/src/commands/DisableDomainAutoRenewCommand.ts +++ b/clients/client-route-53-domains/src/commands/DisableDomainAutoRenewCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableDomainAutoRenewRequest, DisableDomainAutoRenewResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { DisableDomainAutoRenewRequest, DisableDomainAutoRenewResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { DisableDomainAutoRenew } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/DisableDomainTransferLockCommand.ts b/clients/client-route-53-domains/src/commands/DisableDomainTransferLockCommand.ts index 967d1bf46a49a..de6bf805deb26 100644 --- a/clients/client-route-53-domains/src/commands/DisableDomainTransferLockCommand.ts +++ b/clients/client-route-53-domains/src/commands/DisableDomainTransferLockCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableDomainTransferLockRequest, DisableDomainTransferLockResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { DisableDomainTransferLockRequest, DisableDomainTransferLockResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { DisableDomainTransferLock } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/DisassociateDelegationSignerFromDomainCommand.ts b/clients/client-route-53-domains/src/commands/DisassociateDelegationSignerFromDomainCommand.ts index e01ed81cafe5f..3bdd23ab71d03 100644 --- a/clients/client-route-53-domains/src/commands/DisassociateDelegationSignerFromDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/DisassociateDelegationSignerFromDomainCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateDelegationSignerFromDomainRequest, DisassociateDelegationSignerFromDomainResponse, } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { DisassociateDelegationSignerFromDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/EnableDomainAutoRenewCommand.ts b/clients/client-route-53-domains/src/commands/EnableDomainAutoRenewCommand.ts index f3a69804a27a9..8b7c5af827863 100644 --- a/clients/client-route-53-domains/src/commands/EnableDomainAutoRenewCommand.ts +++ b/clients/client-route-53-domains/src/commands/EnableDomainAutoRenewCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableDomainAutoRenewRequest, EnableDomainAutoRenewResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { EnableDomainAutoRenewRequest, EnableDomainAutoRenewResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { EnableDomainAutoRenew } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/EnableDomainTransferLockCommand.ts b/clients/client-route-53-domains/src/commands/EnableDomainTransferLockCommand.ts index d3dda9860faa1..0919af9a53aae 100644 --- a/clients/client-route-53-domains/src/commands/EnableDomainTransferLockCommand.ts +++ b/clients/client-route-53-domains/src/commands/EnableDomainTransferLockCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableDomainTransferLockRequest, EnableDomainTransferLockResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { EnableDomainTransferLockRequest, EnableDomainTransferLockResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { EnableDomainTransferLock } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/GetContactReachabilityStatusCommand.ts b/clients/client-route-53-domains/src/commands/GetContactReachabilityStatusCommand.ts index db836ddab4d98..0bd4c16748edb 100644 --- a/clients/client-route-53-domains/src/commands/GetContactReachabilityStatusCommand.ts +++ b/clients/client-route-53-domains/src/commands/GetContactReachabilityStatusCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContactReachabilityStatusRequest, GetContactReachabilityStatusResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { GetContactReachabilityStatusRequest, GetContactReachabilityStatusResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { GetContactReachabilityStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/GetDomainDetailCommand.ts b/clients/client-route-53-domains/src/commands/GetDomainDetailCommand.ts index 78f8a45bacb17..3573cfbf6142f 100644 --- a/clients/client-route-53-domains/src/commands/GetDomainDetailCommand.ts +++ b/clients/client-route-53-domains/src/commands/GetDomainDetailCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainDetailRequest, GetDomainDetailResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { GetDomainDetailRequest, GetDomainDetailResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { GetDomainDetail } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/GetDomainSuggestionsCommand.ts b/clients/client-route-53-domains/src/commands/GetDomainSuggestionsCommand.ts index 5540c782ec600..ad90e38215eb7 100644 --- a/clients/client-route-53-domains/src/commands/GetDomainSuggestionsCommand.ts +++ b/clients/client-route-53-domains/src/commands/GetDomainSuggestionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainSuggestionsRequest, GetDomainSuggestionsResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { GetDomainSuggestionsRequest, GetDomainSuggestionsResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { GetDomainSuggestions } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/GetOperationDetailCommand.ts b/clients/client-route-53-domains/src/commands/GetOperationDetailCommand.ts index 159d222e559f1..cf6363807278f 100644 --- a/clients/client-route-53-domains/src/commands/GetOperationDetailCommand.ts +++ b/clients/client-route-53-domains/src/commands/GetOperationDetailCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOperationDetailRequest, GetOperationDetailResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { GetOperationDetailRequest, GetOperationDetailResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { GetOperationDetail } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/ListDomainsCommand.ts b/clients/client-route-53-domains/src/commands/ListDomainsCommand.ts index f33aaf8091fd6..6e076db539bac 100644 --- a/clients/client-route-53-domains/src/commands/ListDomainsCommand.ts +++ b/clients/client-route-53-domains/src/commands/ListDomainsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { ListDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/ListOperationsCommand.ts b/clients/client-route-53-domains/src/commands/ListOperationsCommand.ts index 595c0979ce7cd..1d94f437464c2 100644 --- a/clients/client-route-53-domains/src/commands/ListOperationsCommand.ts +++ b/clients/client-route-53-domains/src/commands/ListOperationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOperationsRequest, ListOperationsResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { ListOperationsRequest, ListOperationsResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { ListOperations } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/ListPricesCommand.ts b/clients/client-route-53-domains/src/commands/ListPricesCommand.ts index 6cc389960b674..d24ec571ff875 100644 --- a/clients/client-route-53-domains/src/commands/ListPricesCommand.ts +++ b/clients/client-route-53-domains/src/commands/ListPricesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPricesRequest, ListPricesResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { ListPricesRequest, ListPricesResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { ListPrices } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/ListTagsForDomainCommand.ts b/clients/client-route-53-domains/src/commands/ListTagsForDomainCommand.ts index 4132d53a669d3..d172acd140610 100644 --- a/clients/client-route-53-domains/src/commands/ListTagsForDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/ListTagsForDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForDomainRequest, ListTagsForDomainResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { ListTagsForDomainRequest, ListTagsForDomainResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { ListTagsForDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/PushDomainCommand.ts b/clients/client-route-53-domains/src/commands/PushDomainCommand.ts index 96829ce920b16..3442e7d6bdd74 100644 --- a/clients/client-route-53-domains/src/commands/PushDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/PushDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PushDomainRequest } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { PushDomainRequest } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { PushDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/RegisterDomainCommand.ts b/clients/client-route-53-domains/src/commands/RegisterDomainCommand.ts index 32f41d9a28413..4433ec8ec4dea 100644 --- a/clients/client-route-53-domains/src/commands/RegisterDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/RegisterDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterDomainRequest, RegisterDomainResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { RegisterDomainRequest, RegisterDomainResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { RegisterDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/RejectDomainTransferFromAnotherAwsAccountCommand.ts b/clients/client-route-53-domains/src/commands/RejectDomainTransferFromAnotherAwsAccountCommand.ts index 213c2bd49cd24..856d6f6928f66 100644 --- a/clients/client-route-53-domains/src/commands/RejectDomainTransferFromAnotherAwsAccountCommand.ts +++ b/clients/client-route-53-domains/src/commands/RejectDomainTransferFromAnotherAwsAccountCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RejectDomainTransferFromAnotherAwsAccountRequest, RejectDomainTransferFromAnotherAwsAccountResponse, } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { RejectDomainTransferFromAnotherAwsAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/RenewDomainCommand.ts b/clients/client-route-53-domains/src/commands/RenewDomainCommand.ts index 2149d6708caa9..a6d04d3e10055 100644 --- a/clients/client-route-53-domains/src/commands/RenewDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/RenewDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RenewDomainRequest, RenewDomainResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { RenewDomainRequest, RenewDomainResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { RenewDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/ResendContactReachabilityEmailCommand.ts b/clients/client-route-53-domains/src/commands/ResendContactReachabilityEmailCommand.ts index dd550cb48f2c6..bd52c05704b9c 100644 --- a/clients/client-route-53-domains/src/commands/ResendContactReachabilityEmailCommand.ts +++ b/clients/client-route-53-domains/src/commands/ResendContactReachabilityEmailCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResendContactReachabilityEmailRequest, ResendContactReachabilityEmailResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { ResendContactReachabilityEmailRequest, ResendContactReachabilityEmailResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { ResendContactReachabilityEmail } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/ResendOperationAuthorizationCommand.ts b/clients/client-route-53-domains/src/commands/ResendOperationAuthorizationCommand.ts index 3c34e38c851b9..59f6cbe601db4 100644 --- a/clients/client-route-53-domains/src/commands/ResendOperationAuthorizationCommand.ts +++ b/clients/client-route-53-domains/src/commands/ResendOperationAuthorizationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResendOperationAuthorizationRequest } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { ResendOperationAuthorizationRequest } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { ResendOperationAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/RetrieveDomainAuthCodeCommand.ts b/clients/client-route-53-domains/src/commands/RetrieveDomainAuthCodeCommand.ts index 2ea8eb02e0ac6..18e3eb309885a 100644 --- a/clients/client-route-53-domains/src/commands/RetrieveDomainAuthCodeCommand.ts +++ b/clients/client-route-53-domains/src/commands/RetrieveDomainAuthCodeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetrieveDomainAuthCodeRequest, RetrieveDomainAuthCodeResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { RetrieveDomainAuthCodeRequest, RetrieveDomainAuthCodeResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { RetrieveDomainAuthCode } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/TransferDomainCommand.ts b/clients/client-route-53-domains/src/commands/TransferDomainCommand.ts index db250fc3e2abc..07a62eb95e933 100644 --- a/clients/client-route-53-domains/src/commands/TransferDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/TransferDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TransferDomainRequest, TransferDomainResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { TransferDomainRequest, TransferDomainResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { TransferDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/TransferDomainToAnotherAwsAccountCommand.ts b/clients/client-route-53-domains/src/commands/TransferDomainToAnotherAwsAccountCommand.ts index 18e13811ec890..457b882ad7d9b 100644 --- a/clients/client-route-53-domains/src/commands/TransferDomainToAnotherAwsAccountCommand.ts +++ b/clients/client-route-53-domains/src/commands/TransferDomainToAnotherAwsAccountCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { TransferDomainToAnotherAwsAccountRequest, TransferDomainToAnotherAwsAccountResponse, } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { TransferDomainToAnotherAwsAccount } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/UpdateDomainContactCommand.ts b/clients/client-route-53-domains/src/commands/UpdateDomainContactCommand.ts index 7968c8cf9bb0f..344a1e0948413 100644 --- a/clients/client-route-53-domains/src/commands/UpdateDomainContactCommand.ts +++ b/clients/client-route-53-domains/src/commands/UpdateDomainContactCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainContactRequest, UpdateDomainContactResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { UpdateDomainContactRequest, UpdateDomainContactResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { UpdateDomainContact } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/UpdateDomainContactPrivacyCommand.ts b/clients/client-route-53-domains/src/commands/UpdateDomainContactPrivacyCommand.ts index c50526ce8d560..c5360fa6664cd 100644 --- a/clients/client-route-53-domains/src/commands/UpdateDomainContactPrivacyCommand.ts +++ b/clients/client-route-53-domains/src/commands/UpdateDomainContactPrivacyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainContactPrivacyRequest, UpdateDomainContactPrivacyResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { UpdateDomainContactPrivacyRequest, UpdateDomainContactPrivacyResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { UpdateDomainContactPrivacy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/UpdateDomainNameserversCommand.ts b/clients/client-route-53-domains/src/commands/UpdateDomainNameserversCommand.ts index b283ffb239a13..0333d2e39cd17 100644 --- a/clients/client-route-53-domains/src/commands/UpdateDomainNameserversCommand.ts +++ b/clients/client-route-53-domains/src/commands/UpdateDomainNameserversCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainNameserversRequest, UpdateDomainNameserversResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { UpdateDomainNameserversRequest, UpdateDomainNameserversResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { UpdateDomainNameservers } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/UpdateTagsForDomainCommand.ts b/clients/client-route-53-domains/src/commands/UpdateTagsForDomainCommand.ts index ce81576f7853b..356651f139091 100644 --- a/clients/client-route-53-domains/src/commands/UpdateTagsForDomainCommand.ts +++ b/clients/client-route-53-domains/src/commands/UpdateTagsForDomainCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTagsForDomainRequest, UpdateTagsForDomainResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { UpdateTagsForDomainRequest, UpdateTagsForDomainResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { UpdateTagsForDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/commands/ViewBillingCommand.ts b/clients/client-route-53-domains/src/commands/ViewBillingCommand.ts index 9e7faec0971b1..07e131e8019a9 100644 --- a/clients/client-route-53-domains/src/commands/ViewBillingCommand.ts +++ b/clients/client-route-53-domains/src/commands/ViewBillingCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ViewBillingRequest, ViewBillingResponse } from "../models/models_0"; -import { Route53DomainsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53DomainsClient"; +import type { ViewBillingRequest, ViewBillingResponse } from "../models/models_0"; +import type { + Route53DomainsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53DomainsClient"; import { ViewBilling } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53-domains/src/endpoint/EndpointParameters.ts b/clients/client-route-53-domains/src/endpoint/EndpointParameters.ts index f5ea87b77292e..48191dc57d8fb 100644 --- a/clients/client-route-53-domains/src/endpoint/EndpointParameters.ts +++ b/clients/client-route-53-domains/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-route-53-domains/src/endpoint/endpointResolver.ts b/clients/client-route-53-domains/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-route-53-domains/src/endpoint/endpointResolver.ts +++ b/clients/client-route-53-domains/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-route-53-domains/src/extensionConfiguration.ts b/clients/client-route-53-domains/src/extensionConfiguration.ts index 7287ab994e02f..430420eaabbc6 100644 --- a/clients/client-route-53-domains/src/extensionConfiguration.ts +++ b/clients/client-route-53-domains/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-route-53-domains/src/models/Route53DomainsServiceException.ts b/clients/client-route-53-domains/src/models/Route53DomainsServiceException.ts index 7d58992710324..e0cc3c5cf0c35 100644 --- a/clients/client-route-53-domains/src/models/Route53DomainsServiceException.ts +++ b/clients/client-route-53-domains/src/models/Route53DomainsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-route-53-domains/src/models/errors.ts b/clients/client-route-53-domains/src/models/errors.ts index c30e0d2c102d0..3beadd504dd52 100644 --- a/clients/client-route-53-domains/src/models/errors.ts +++ b/clients/client-route-53-domains/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { Route53DomainsServiceException as __BaseException } from "./Route53DomainsServiceException"; diff --git a/clients/client-route-53-domains/src/pagination/Interfaces.ts b/clients/client-route-53-domains/src/pagination/Interfaces.ts index a69bb2a47b2b8..11d43632673b9 100644 --- a/clients/client-route-53-domains/src/pagination/Interfaces.ts +++ b/clients/client-route-53-domains/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Route53DomainsClient } from "../Route53DomainsClient"; diff --git a/clients/client-route-53-domains/src/pagination/ListDomainsPaginator.ts b/clients/client-route-53-domains/src/pagination/ListDomainsPaginator.ts index e316793eaf67e..a4212f16ee247 100644 --- a/clients/client-route-53-domains/src/pagination/ListDomainsPaginator.ts +++ b/clients/client-route-53-domains/src/pagination/ListDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainsCommand, ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand"; import { Route53DomainsClient } from "../Route53DomainsClient"; diff --git a/clients/client-route-53-domains/src/pagination/ListOperationsPaginator.ts b/clients/client-route-53-domains/src/pagination/ListOperationsPaginator.ts index 66df2283caedb..526040f169d1c 100644 --- a/clients/client-route-53-domains/src/pagination/ListOperationsPaginator.ts +++ b/clients/client-route-53-domains/src/pagination/ListOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOperationsCommand, diff --git a/clients/client-route-53-domains/src/pagination/ListPricesPaginator.ts b/clients/client-route-53-domains/src/pagination/ListPricesPaginator.ts index 3b2b1cec69872..d57352f037a74 100644 --- a/clients/client-route-53-domains/src/pagination/ListPricesPaginator.ts +++ b/clients/client-route-53-domains/src/pagination/ListPricesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPricesCommand, ListPricesCommandInput, ListPricesCommandOutput } from "../commands/ListPricesCommand"; import { Route53DomainsClient } from "../Route53DomainsClient"; diff --git a/clients/client-route-53-domains/src/pagination/ViewBillingPaginator.ts b/clients/client-route-53-domains/src/pagination/ViewBillingPaginator.ts index a2b527f286a8f..b21ed02db6ceb 100644 --- a/clients/client-route-53-domains/src/pagination/ViewBillingPaginator.ts +++ b/clients/client-route-53-domains/src/pagination/ViewBillingPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ViewBillingCommand, ViewBillingCommandInput, ViewBillingCommandOutput } from "../commands/ViewBillingCommand"; import { Route53DomainsClient } from "../Route53DomainsClient"; diff --git a/clients/client-route-53-domains/src/runtimeConfig.browser.ts b/clients/client-route-53-domains/src/runtimeConfig.browser.ts index 37f8775c1d126..4d2f1200fd8b7 100644 --- a/clients/client-route-53-domains/src/runtimeConfig.browser.ts +++ b/clients/client-route-53-domains/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53DomainsClientConfig } from "./Route53DomainsClient"; + +import type { Route53DomainsClientConfig } from "./Route53DomainsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-route-53-domains/src/runtimeConfig.native.ts b/clients/client-route-53-domains/src/runtimeConfig.native.ts index 1418ebc68bfe8..02fe57c2edc04 100644 --- a/clients/client-route-53-domains/src/runtimeConfig.native.ts +++ b/clients/client-route-53-domains/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Route53DomainsClientConfig } from "./Route53DomainsClient"; +import type { Route53DomainsClientConfig } from "./Route53DomainsClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-route-53-domains/src/runtimeConfig.shared.ts b/clients/client-route-53-domains/src/runtimeConfig.shared.ts index b25fa57cacf9b..a3d41db9e73d2 100644 --- a/clients/client-route-53-domains/src/runtimeConfig.shared.ts +++ b/clients/client-route-53-domains/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRoute53DomainsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Route53DomainsClientConfig } from "./Route53DomainsClient"; +import type { Route53DomainsClientConfig } from "./Route53DomainsClient"; /** * @internal diff --git a/clients/client-route-53-domains/src/runtimeConfig.ts b/clients/client-route-53-domains/src/runtimeConfig.ts index 239b08f28e89f..101100c9f339a 100644 --- a/clients/client-route-53-domains/src/runtimeConfig.ts +++ b/clients/client-route-53-domains/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53DomainsClientConfig } from "./Route53DomainsClient"; + +import type { Route53DomainsClientConfig } from "./Route53DomainsClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-route-53-domains/src/runtimeExtensions.ts b/clients/client-route-53-domains/src/runtimeExtensions.ts index 24b57670eaebb..b299dd965bd77 100644 --- a/clients/client-route-53-domains/src/runtimeExtensions.ts +++ b/clients/client-route-53-domains/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Route53DomainsExtensionConfiguration } from "./extensionConfiguration"; +import type { Route53DomainsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-route-53-domains/src/schemas/schemas_0.ts b/clients/client-route-53-domains/src/schemas/schemas_0.ts index 7427b1a1ce17e..bafac741be9f0 100644 --- a/clients/client-route-53-domains/src/schemas/schemas_0.ts +++ b/clients/client-route-53-domains/src/schemas/schemas_0.ts @@ -254,7 +254,7 @@ const n0 = "com.amazonaws.route53domains"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-route-53/package.json b/clients/client-route-53/package.json index 3a71f0c198354..21f578294a4e0 100644 --- a/clients/client-route-53/package.json +++ b/clients/client-route-53/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-route-53/src/Route53.ts b/clients/client-route-53/src/Route53.ts index f20aa16915ac9..3ab7c4c64bd72 100644 --- a/clients/client-route-53/src/Route53.ts +++ b/clients/client-route-53/src/Route53.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ActivateKeySigningKeyCommand, @@ -349,7 +349,7 @@ import { UpdateTrafficPolicyInstanceCommandInput, UpdateTrafficPolicyInstanceCommandOutput, } from "./commands/UpdateTrafficPolicyInstanceCommand"; -import { Route53Client, Route53ClientConfig } from "./Route53Client"; +import { Route53Client } from "./Route53Client"; const commands = { ActivateKeySigningKeyCommand, diff --git a/clients/client-route-53/src/Route53Client.ts b/clients/client-route-53/src/Route53Client.ts index 80f37dfa3bbf7..788aac3fc6337 100644 --- a/clients/client-route-53/src/Route53Client.ts +++ b/clients/client-route-53/src/Route53Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRoute53HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -285,7 +294,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-route-53/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-route-53/src/auth/httpAuthExtensionConfiguration.ts index 5091c76dfaf01..ce832d06537c3 100644 --- a/clients/client-route-53/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-route-53/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Route53HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Route53HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-route-53/src/auth/httpAuthSchemeProvider.ts b/clients/client-route-53/src/auth/httpAuthSchemeProvider.ts index f7a56f290253c..21582b8904357 100644 --- a/clients/client-route-53/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-route-53/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { Route53ClientConfig, Route53ClientResolvedConfig } from "../Route53Client"; +import { type Route53ClientResolvedConfig, Route53ClientConfig } from "../Route53Client"; /** * @internal diff --git a/clients/client-route-53/src/commands/ActivateKeySigningKeyCommand.ts b/clients/client-route-53/src/commands/ActivateKeySigningKeyCommand.ts index 3a2314954d448..f6db6b9b4e35a 100644 --- a/clients/client-route-53/src/commands/ActivateKeySigningKeyCommand.ts +++ b/clients/client-route-53/src/commands/ActivateKeySigningKeyCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateKeySigningKeyRequest, ActivateKeySigningKeyResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ActivateKeySigningKeyRequest, ActivateKeySigningKeyResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ActivateKeySigningKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/AssociateVPCWithHostedZoneCommand.ts b/clients/client-route-53/src/commands/AssociateVPCWithHostedZoneCommand.ts index 2c4fb19e3d130..50e24ed3a7555 100644 --- a/clients/client-route-53/src/commands/AssociateVPCWithHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/AssociateVPCWithHostedZoneCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateVPCWithHostedZoneRequest, AssociateVPCWithHostedZoneResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { AssociateVPCWithHostedZoneRequest, AssociateVPCWithHostedZoneResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { AssociateVPCWithHostedZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ChangeCidrCollectionCommand.ts b/clients/client-route-53/src/commands/ChangeCidrCollectionCommand.ts index f91c9636e5f8e..16db51d1c7540 100644 --- a/clients/client-route-53/src/commands/ChangeCidrCollectionCommand.ts +++ b/clients/client-route-53/src/commands/ChangeCidrCollectionCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ChangeCidrCollectionRequest, ChangeCidrCollectionResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ChangeCidrCollectionRequest, ChangeCidrCollectionResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ChangeCidrCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ChangeResourceRecordSetsCommand.ts b/clients/client-route-53/src/commands/ChangeResourceRecordSetsCommand.ts index a9c1295b972b2..20f77f71b18af 100644 --- a/clients/client-route-53/src/commands/ChangeResourceRecordSetsCommand.ts +++ b/clients/client-route-53/src/commands/ChangeResourceRecordSetsCommand.ts @@ -2,11 +2,11 @@ import { getChangeResourceRecordSetsPlugin, getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ChangeResourceRecordSetsRequest, ChangeResourceRecordSetsResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ChangeResourceRecordSetsRequest, ChangeResourceRecordSetsResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ChangeResourceRecordSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ChangeTagsForResourceCommand.ts b/clients/client-route-53/src/commands/ChangeTagsForResourceCommand.ts index 304549dce9ce7..987c837b3fa03 100644 --- a/clients/client-route-53/src/commands/ChangeTagsForResourceCommand.ts +++ b/clients/client-route-53/src/commands/ChangeTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ChangeTagsForResourceRequest, ChangeTagsForResourceResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ChangeTagsForResourceRequest, ChangeTagsForResourceResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ChangeTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateCidrCollectionCommand.ts b/clients/client-route-53/src/commands/CreateCidrCollectionCommand.ts index 8f291debd62e4..7eaefc1be81bf 100644 --- a/clients/client-route-53/src/commands/CreateCidrCollectionCommand.ts +++ b/clients/client-route-53/src/commands/CreateCidrCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCidrCollectionRequest, CreateCidrCollectionResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { CreateCidrCollectionRequest, CreateCidrCollectionResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateCidrCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateHealthCheckCommand.ts b/clients/client-route-53/src/commands/CreateHealthCheckCommand.ts index 7c8005cf60b97..c9c65dea0eade 100644 --- a/clients/client-route-53/src/commands/CreateHealthCheckCommand.ts +++ b/clients/client-route-53/src/commands/CreateHealthCheckCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHealthCheckRequest, CreateHealthCheckResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { CreateHealthCheckRequest, CreateHealthCheckResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateHealthCheck } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateHostedZoneCommand.ts b/clients/client-route-53/src/commands/CreateHostedZoneCommand.ts index bd5bb7bdc9fee..f00cdc08e5c0e 100644 --- a/clients/client-route-53/src/commands/CreateHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/CreateHostedZoneCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHostedZoneRequest, CreateHostedZoneResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { CreateHostedZoneRequest, CreateHostedZoneResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateHostedZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateKeySigningKeyCommand.ts b/clients/client-route-53/src/commands/CreateKeySigningKeyCommand.ts index aa15c8c0be0fa..0c533cdfd4ba1 100644 --- a/clients/client-route-53/src/commands/CreateKeySigningKeyCommand.ts +++ b/clients/client-route-53/src/commands/CreateKeySigningKeyCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateKeySigningKeyRequest, CreateKeySigningKeyResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { CreateKeySigningKeyRequest, CreateKeySigningKeyResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateKeySigningKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateQueryLoggingConfigCommand.ts b/clients/client-route-53/src/commands/CreateQueryLoggingConfigCommand.ts index 3021d94906cfe..ec29f2565928f 100644 --- a/clients/client-route-53/src/commands/CreateQueryLoggingConfigCommand.ts +++ b/clients/client-route-53/src/commands/CreateQueryLoggingConfigCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQueryLoggingConfigRequest, CreateQueryLoggingConfigResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { CreateQueryLoggingConfigRequest, CreateQueryLoggingConfigResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateQueryLoggingConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateReusableDelegationSetCommand.ts b/clients/client-route-53/src/commands/CreateReusableDelegationSetCommand.ts index 5a7b75e59b5be..835d095150576 100644 --- a/clients/client-route-53/src/commands/CreateReusableDelegationSetCommand.ts +++ b/clients/client-route-53/src/commands/CreateReusableDelegationSetCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReusableDelegationSetRequest, CreateReusableDelegationSetResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { CreateReusableDelegationSetRequest, CreateReusableDelegationSetResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateReusableDelegationSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateTrafficPolicyCommand.ts b/clients/client-route-53/src/commands/CreateTrafficPolicyCommand.ts index 466f98420fea2..370f17bda42f3 100644 --- a/clients/client-route-53/src/commands/CreateTrafficPolicyCommand.ts +++ b/clients/client-route-53/src/commands/CreateTrafficPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrafficPolicyRequest, CreateTrafficPolicyResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { CreateTrafficPolicyRequest, CreateTrafficPolicyResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateTrafficPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateTrafficPolicyInstanceCommand.ts b/clients/client-route-53/src/commands/CreateTrafficPolicyInstanceCommand.ts index ae1740389d1fb..f376b67d5bc3e 100644 --- a/clients/client-route-53/src/commands/CreateTrafficPolicyInstanceCommand.ts +++ b/clients/client-route-53/src/commands/CreateTrafficPolicyInstanceCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrafficPolicyInstanceRequest, CreateTrafficPolicyInstanceResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { CreateTrafficPolicyInstanceRequest, CreateTrafficPolicyInstanceResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateTrafficPolicyInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateTrafficPolicyVersionCommand.ts b/clients/client-route-53/src/commands/CreateTrafficPolicyVersionCommand.ts index 3bace9cf5c6d3..d27887f32ea31 100644 --- a/clients/client-route-53/src/commands/CreateTrafficPolicyVersionCommand.ts +++ b/clients/client-route-53/src/commands/CreateTrafficPolicyVersionCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrafficPolicyVersionRequest, CreateTrafficPolicyVersionResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { CreateTrafficPolicyVersionRequest, CreateTrafficPolicyVersionResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateTrafficPolicyVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/CreateVPCAssociationAuthorizationCommand.ts b/clients/client-route-53/src/commands/CreateVPCAssociationAuthorizationCommand.ts index 7c460b3aed47e..8d6af7ee9232f 100644 --- a/clients/client-route-53/src/commands/CreateVPCAssociationAuthorizationCommand.ts +++ b/clients/client-route-53/src/commands/CreateVPCAssociationAuthorizationCommand.ts @@ -2,14 +2,14 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateVPCAssociationAuthorizationRequest, CreateVPCAssociationAuthorizationResponse, } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { CreateVPCAssociationAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeactivateKeySigningKeyCommand.ts b/clients/client-route-53/src/commands/DeactivateKeySigningKeyCommand.ts index 57c10495a68ad..b8cd5b125303f 100644 --- a/clients/client-route-53/src/commands/DeactivateKeySigningKeyCommand.ts +++ b/clients/client-route-53/src/commands/DeactivateKeySigningKeyCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeactivateKeySigningKeyRequest, DeactivateKeySigningKeyResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DeactivateKeySigningKeyRequest, DeactivateKeySigningKeyResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeactivateKeySigningKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeleteCidrCollectionCommand.ts b/clients/client-route-53/src/commands/DeleteCidrCollectionCommand.ts index c9951d1ae2104..7fef007eded47 100644 --- a/clients/client-route-53/src/commands/DeleteCidrCollectionCommand.ts +++ b/clients/client-route-53/src/commands/DeleteCidrCollectionCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCidrCollectionRequest, DeleteCidrCollectionResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DeleteCidrCollectionRequest, DeleteCidrCollectionResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeleteCidrCollection } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeleteHealthCheckCommand.ts b/clients/client-route-53/src/commands/DeleteHealthCheckCommand.ts index 1443ffb34cf20..fe47a1c68c432 100644 --- a/clients/client-route-53/src/commands/DeleteHealthCheckCommand.ts +++ b/clients/client-route-53/src/commands/DeleteHealthCheckCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHealthCheckRequest, DeleteHealthCheckResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DeleteHealthCheckRequest, DeleteHealthCheckResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeleteHealthCheck } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeleteHostedZoneCommand.ts b/clients/client-route-53/src/commands/DeleteHostedZoneCommand.ts index 524878adb2b5b..c39defd14fad0 100644 --- a/clients/client-route-53/src/commands/DeleteHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/DeleteHostedZoneCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHostedZoneRequest, DeleteHostedZoneResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DeleteHostedZoneRequest, DeleteHostedZoneResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeleteHostedZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeleteKeySigningKeyCommand.ts b/clients/client-route-53/src/commands/DeleteKeySigningKeyCommand.ts index f837c1c0690d0..02245fbb31001 100644 --- a/clients/client-route-53/src/commands/DeleteKeySigningKeyCommand.ts +++ b/clients/client-route-53/src/commands/DeleteKeySigningKeyCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKeySigningKeyRequest, DeleteKeySigningKeyResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DeleteKeySigningKeyRequest, DeleteKeySigningKeyResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeleteKeySigningKey } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeleteQueryLoggingConfigCommand.ts b/clients/client-route-53/src/commands/DeleteQueryLoggingConfigCommand.ts index 79768ab91b2aa..159458dab5d7a 100644 --- a/clients/client-route-53/src/commands/DeleteQueryLoggingConfigCommand.ts +++ b/clients/client-route-53/src/commands/DeleteQueryLoggingConfigCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueryLoggingConfigRequest, DeleteQueryLoggingConfigResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DeleteQueryLoggingConfigRequest, DeleteQueryLoggingConfigResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeleteQueryLoggingConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeleteReusableDelegationSetCommand.ts b/clients/client-route-53/src/commands/DeleteReusableDelegationSetCommand.ts index d5eef90b99ac3..e20433c7574a6 100644 --- a/clients/client-route-53/src/commands/DeleteReusableDelegationSetCommand.ts +++ b/clients/client-route-53/src/commands/DeleteReusableDelegationSetCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReusableDelegationSetRequest, DeleteReusableDelegationSetResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DeleteReusableDelegationSetRequest, DeleteReusableDelegationSetResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeleteReusableDelegationSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeleteTrafficPolicyCommand.ts b/clients/client-route-53/src/commands/DeleteTrafficPolicyCommand.ts index 28462549331d8..2c6b25ee4921f 100644 --- a/clients/client-route-53/src/commands/DeleteTrafficPolicyCommand.ts +++ b/clients/client-route-53/src/commands/DeleteTrafficPolicyCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrafficPolicyRequest, DeleteTrafficPolicyResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DeleteTrafficPolicyRequest, DeleteTrafficPolicyResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeleteTrafficPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeleteTrafficPolicyInstanceCommand.ts b/clients/client-route-53/src/commands/DeleteTrafficPolicyInstanceCommand.ts index 825c53c740f97..0139e288fdcc9 100644 --- a/clients/client-route-53/src/commands/DeleteTrafficPolicyInstanceCommand.ts +++ b/clients/client-route-53/src/commands/DeleteTrafficPolicyInstanceCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrafficPolicyInstanceRequest, DeleteTrafficPolicyInstanceResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DeleteTrafficPolicyInstanceRequest, DeleteTrafficPolicyInstanceResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeleteTrafficPolicyInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DeleteVPCAssociationAuthorizationCommand.ts b/clients/client-route-53/src/commands/DeleteVPCAssociationAuthorizationCommand.ts index 167043c5bcbb7..c03fe0c7e3048 100644 --- a/clients/client-route-53/src/commands/DeleteVPCAssociationAuthorizationCommand.ts +++ b/clients/client-route-53/src/commands/DeleteVPCAssociationAuthorizationCommand.ts @@ -2,14 +2,14 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteVPCAssociationAuthorizationRequest, DeleteVPCAssociationAuthorizationResponse, } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DeleteVPCAssociationAuthorization } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DisableHostedZoneDNSSECCommand.ts b/clients/client-route-53/src/commands/DisableHostedZoneDNSSECCommand.ts index 1ad15cbf3945b..e5186c2bb8884 100644 --- a/clients/client-route-53/src/commands/DisableHostedZoneDNSSECCommand.ts +++ b/clients/client-route-53/src/commands/DisableHostedZoneDNSSECCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableHostedZoneDNSSECRequest, DisableHostedZoneDNSSECResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DisableHostedZoneDNSSECRequest, DisableHostedZoneDNSSECResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DisableHostedZoneDNSSEC } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/DisassociateVPCFromHostedZoneCommand.ts b/clients/client-route-53/src/commands/DisassociateVPCFromHostedZoneCommand.ts index 0322ffe4e3a96..c2051197c05fa 100644 --- a/clients/client-route-53/src/commands/DisassociateVPCFromHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/DisassociateVPCFromHostedZoneCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateVPCFromHostedZoneRequest, DisassociateVPCFromHostedZoneResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { DisassociateVPCFromHostedZoneRequest, DisassociateVPCFromHostedZoneResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { DisassociateVPCFromHostedZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/EnableHostedZoneDNSSECCommand.ts b/clients/client-route-53/src/commands/EnableHostedZoneDNSSECCommand.ts index b8f8fab716f43..87fdbe35613f4 100644 --- a/clients/client-route-53/src/commands/EnableHostedZoneDNSSECCommand.ts +++ b/clients/client-route-53/src/commands/EnableHostedZoneDNSSECCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableHostedZoneDNSSECRequest, EnableHostedZoneDNSSECResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { EnableHostedZoneDNSSECRequest, EnableHostedZoneDNSSECResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { EnableHostedZoneDNSSEC } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetAccountLimitCommand.ts b/clients/client-route-53/src/commands/GetAccountLimitCommand.ts index c6eda02637d35..09070381d1209 100644 --- a/clients/client-route-53/src/commands/GetAccountLimitCommand.ts +++ b/clients/client-route-53/src/commands/GetAccountLimitCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountLimitRequest, GetAccountLimitResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetAccountLimitRequest, GetAccountLimitResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetAccountLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetChangeCommand.ts b/clients/client-route-53/src/commands/GetChangeCommand.ts index 2b8d121aaa7bb..da21071567633 100644 --- a/clients/client-route-53/src/commands/GetChangeCommand.ts +++ b/clients/client-route-53/src/commands/GetChangeCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChangeRequest, GetChangeResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetChangeRequest, GetChangeResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetChange } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetCheckerIpRangesCommand.ts b/clients/client-route-53/src/commands/GetCheckerIpRangesCommand.ts index 906bd50f9266f..f787872fa9531 100644 --- a/clients/client-route-53/src/commands/GetCheckerIpRangesCommand.ts +++ b/clients/client-route-53/src/commands/GetCheckerIpRangesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCheckerIpRangesRequest, GetCheckerIpRangesResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetCheckerIpRangesRequest, GetCheckerIpRangesResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetCheckerIpRanges } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetDNSSECCommand.ts b/clients/client-route-53/src/commands/GetDNSSECCommand.ts index fc00535c91d6a..c29cd66f4d247 100644 --- a/clients/client-route-53/src/commands/GetDNSSECCommand.ts +++ b/clients/client-route-53/src/commands/GetDNSSECCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDNSSECRequest, GetDNSSECResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetDNSSECRequest, GetDNSSECResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetDNSSEC } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetGeoLocationCommand.ts b/clients/client-route-53/src/commands/GetGeoLocationCommand.ts index 776db1372fd63..e15c0a233d814 100644 --- a/clients/client-route-53/src/commands/GetGeoLocationCommand.ts +++ b/clients/client-route-53/src/commands/GetGeoLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGeoLocationRequest, GetGeoLocationResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetGeoLocationRequest, GetGeoLocationResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetGeoLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetHealthCheckCommand.ts b/clients/client-route-53/src/commands/GetHealthCheckCommand.ts index 9f4042346f5ba..af1dc699eb697 100644 --- a/clients/client-route-53/src/commands/GetHealthCheckCommand.ts +++ b/clients/client-route-53/src/commands/GetHealthCheckCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHealthCheckRequest, GetHealthCheckResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetHealthCheckRequest, GetHealthCheckResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetHealthCheck } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetHealthCheckCountCommand.ts b/clients/client-route-53/src/commands/GetHealthCheckCountCommand.ts index 629813867b3af..3a27d0396eb96 100644 --- a/clients/client-route-53/src/commands/GetHealthCheckCountCommand.ts +++ b/clients/client-route-53/src/commands/GetHealthCheckCountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHealthCheckCountRequest, GetHealthCheckCountResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetHealthCheckCountRequest, GetHealthCheckCountResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetHealthCheckCount } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetHealthCheckLastFailureReasonCommand.ts b/clients/client-route-53/src/commands/GetHealthCheckLastFailureReasonCommand.ts index 5d1b536ea037b..19b3e318ae7e2 100644 --- a/clients/client-route-53/src/commands/GetHealthCheckLastFailureReasonCommand.ts +++ b/clients/client-route-53/src/commands/GetHealthCheckLastFailureReasonCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHealthCheckLastFailureReasonRequest, GetHealthCheckLastFailureReasonResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { + GetHealthCheckLastFailureReasonRequest, + GetHealthCheckLastFailureReasonResponse, +} from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetHealthCheckLastFailureReason } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetHealthCheckStatusCommand.ts b/clients/client-route-53/src/commands/GetHealthCheckStatusCommand.ts index d505a6b6abf89..c24cdbff0d1c8 100644 --- a/clients/client-route-53/src/commands/GetHealthCheckStatusCommand.ts +++ b/clients/client-route-53/src/commands/GetHealthCheckStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHealthCheckStatusRequest, GetHealthCheckStatusResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetHealthCheckStatusRequest, GetHealthCheckStatusResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetHealthCheckStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetHostedZoneCommand.ts b/clients/client-route-53/src/commands/GetHostedZoneCommand.ts index 3484fe9790ff0..738d6cf4306b9 100644 --- a/clients/client-route-53/src/commands/GetHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/GetHostedZoneCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHostedZoneRequest, GetHostedZoneResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetHostedZoneRequest, GetHostedZoneResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetHostedZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetHostedZoneCountCommand.ts b/clients/client-route-53/src/commands/GetHostedZoneCountCommand.ts index eba360fce859b..71d362a3b6538 100644 --- a/clients/client-route-53/src/commands/GetHostedZoneCountCommand.ts +++ b/clients/client-route-53/src/commands/GetHostedZoneCountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHostedZoneCountRequest, GetHostedZoneCountResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetHostedZoneCountRequest, GetHostedZoneCountResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetHostedZoneCount } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetHostedZoneLimitCommand.ts b/clients/client-route-53/src/commands/GetHostedZoneLimitCommand.ts index e4907f4de266a..559a3d987fe9c 100644 --- a/clients/client-route-53/src/commands/GetHostedZoneLimitCommand.ts +++ b/clients/client-route-53/src/commands/GetHostedZoneLimitCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHostedZoneLimitRequest, GetHostedZoneLimitResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetHostedZoneLimitRequest, GetHostedZoneLimitResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetHostedZoneLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetQueryLoggingConfigCommand.ts b/clients/client-route-53/src/commands/GetQueryLoggingConfigCommand.ts index 7cbe4d0a653d8..13cd4b980fedf 100644 --- a/clients/client-route-53/src/commands/GetQueryLoggingConfigCommand.ts +++ b/clients/client-route-53/src/commands/GetQueryLoggingConfigCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueryLoggingConfigRequest, GetQueryLoggingConfigResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetQueryLoggingConfigRequest, GetQueryLoggingConfigResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetQueryLoggingConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetReusableDelegationSetCommand.ts b/clients/client-route-53/src/commands/GetReusableDelegationSetCommand.ts index 9e23d26b5cae4..443ac155247d6 100644 --- a/clients/client-route-53/src/commands/GetReusableDelegationSetCommand.ts +++ b/clients/client-route-53/src/commands/GetReusableDelegationSetCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReusableDelegationSetRequest, GetReusableDelegationSetResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetReusableDelegationSetRequest, GetReusableDelegationSetResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetReusableDelegationSet } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetReusableDelegationSetLimitCommand.ts b/clients/client-route-53/src/commands/GetReusableDelegationSetLimitCommand.ts index d94595f81b37d..88f309b3c2dbc 100644 --- a/clients/client-route-53/src/commands/GetReusableDelegationSetLimitCommand.ts +++ b/clients/client-route-53/src/commands/GetReusableDelegationSetLimitCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReusableDelegationSetLimitRequest, GetReusableDelegationSetLimitResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetReusableDelegationSetLimitRequest, GetReusableDelegationSetLimitResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetReusableDelegationSetLimit } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetTrafficPolicyCommand.ts b/clients/client-route-53/src/commands/GetTrafficPolicyCommand.ts index 049f7a18c082a..bbf0bd9f9ca14 100644 --- a/clients/client-route-53/src/commands/GetTrafficPolicyCommand.ts +++ b/clients/client-route-53/src/commands/GetTrafficPolicyCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrafficPolicyRequest, GetTrafficPolicyResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetTrafficPolicyRequest, GetTrafficPolicyResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetTrafficPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCommand.ts b/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCommand.ts index 17bfa021ae348..738a8a9ba354b 100644 --- a/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCommand.ts +++ b/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrafficPolicyInstanceRequest, GetTrafficPolicyInstanceResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetTrafficPolicyInstanceRequest, GetTrafficPolicyInstanceResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetTrafficPolicyInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCountCommand.ts b/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCountCommand.ts index 89e8ff89751cd..8273d9b2343fe 100644 --- a/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCountCommand.ts +++ b/clients/client-route-53/src/commands/GetTrafficPolicyInstanceCountCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrafficPolicyInstanceCountRequest, GetTrafficPolicyInstanceCountResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { GetTrafficPolicyInstanceCountRequest, GetTrafficPolicyInstanceCountResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { GetTrafficPolicyInstanceCount } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListCidrBlocksCommand.ts b/clients/client-route-53/src/commands/ListCidrBlocksCommand.ts index 8c295b3818793..eac1ef72533d4 100644 --- a/clients/client-route-53/src/commands/ListCidrBlocksCommand.ts +++ b/clients/client-route-53/src/commands/ListCidrBlocksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCidrBlocksRequest, ListCidrBlocksResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListCidrBlocksRequest, ListCidrBlocksResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListCidrBlocks } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListCidrCollectionsCommand.ts b/clients/client-route-53/src/commands/ListCidrCollectionsCommand.ts index 7b7d082ee757d..806d13c09f2fc 100644 --- a/clients/client-route-53/src/commands/ListCidrCollectionsCommand.ts +++ b/clients/client-route-53/src/commands/ListCidrCollectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCidrCollectionsRequest, ListCidrCollectionsResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListCidrCollectionsRequest, ListCidrCollectionsResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListCidrCollections } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListCidrLocationsCommand.ts b/clients/client-route-53/src/commands/ListCidrLocationsCommand.ts index 3cba394e2dc15..551e6bcc9a522 100644 --- a/clients/client-route-53/src/commands/ListCidrLocationsCommand.ts +++ b/clients/client-route-53/src/commands/ListCidrLocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCidrLocationsRequest, ListCidrLocationsResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListCidrLocationsRequest, ListCidrLocationsResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListCidrLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListGeoLocationsCommand.ts b/clients/client-route-53/src/commands/ListGeoLocationsCommand.ts index e5fe1a5cd24b4..238d9d33be564 100644 --- a/clients/client-route-53/src/commands/ListGeoLocationsCommand.ts +++ b/clients/client-route-53/src/commands/ListGeoLocationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGeoLocationsRequest, ListGeoLocationsResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListGeoLocationsRequest, ListGeoLocationsResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListGeoLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListHealthChecksCommand.ts b/clients/client-route-53/src/commands/ListHealthChecksCommand.ts index 35714c264a3e4..3a8b5b7d2a5be 100644 --- a/clients/client-route-53/src/commands/ListHealthChecksCommand.ts +++ b/clients/client-route-53/src/commands/ListHealthChecksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHealthChecksRequest, ListHealthChecksResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListHealthChecksRequest, ListHealthChecksResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListHealthChecks } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListHostedZonesByNameCommand.ts b/clients/client-route-53/src/commands/ListHostedZonesByNameCommand.ts index 115d24748ff30..632a6b57a4f0f 100644 --- a/clients/client-route-53/src/commands/ListHostedZonesByNameCommand.ts +++ b/clients/client-route-53/src/commands/ListHostedZonesByNameCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHostedZonesByNameRequest, ListHostedZonesByNameResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListHostedZonesByNameRequest, ListHostedZonesByNameResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListHostedZonesByName } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListHostedZonesByVPCCommand.ts b/clients/client-route-53/src/commands/ListHostedZonesByVPCCommand.ts index 985988df1ae44..f05776e7f619f 100644 --- a/clients/client-route-53/src/commands/ListHostedZonesByVPCCommand.ts +++ b/clients/client-route-53/src/commands/ListHostedZonesByVPCCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHostedZonesByVPCRequest, ListHostedZonesByVPCResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListHostedZonesByVPCRequest, ListHostedZonesByVPCResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListHostedZonesByVPC } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListHostedZonesCommand.ts b/clients/client-route-53/src/commands/ListHostedZonesCommand.ts index 6196d08142c8e..832febf900413 100644 --- a/clients/client-route-53/src/commands/ListHostedZonesCommand.ts +++ b/clients/client-route-53/src/commands/ListHostedZonesCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHostedZonesRequest, ListHostedZonesResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListHostedZonesRequest, ListHostedZonesResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListHostedZones } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListQueryLoggingConfigsCommand.ts b/clients/client-route-53/src/commands/ListQueryLoggingConfigsCommand.ts index dc5761d81f722..792b279284bc7 100644 --- a/clients/client-route-53/src/commands/ListQueryLoggingConfigsCommand.ts +++ b/clients/client-route-53/src/commands/ListQueryLoggingConfigsCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueryLoggingConfigsRequest, ListQueryLoggingConfigsResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListQueryLoggingConfigsRequest, ListQueryLoggingConfigsResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListQueryLoggingConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListResourceRecordSetsCommand.ts b/clients/client-route-53/src/commands/ListResourceRecordSetsCommand.ts index 445e4f3601736..f609e0d415d36 100644 --- a/clients/client-route-53/src/commands/ListResourceRecordSetsCommand.ts +++ b/clients/client-route-53/src/commands/ListResourceRecordSetsCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceRecordSetsRequest, ListResourceRecordSetsResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListResourceRecordSetsRequest, ListResourceRecordSetsResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListResourceRecordSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListReusableDelegationSetsCommand.ts b/clients/client-route-53/src/commands/ListReusableDelegationSetsCommand.ts index b6b68e4803bad..90b7d89fda7dd 100644 --- a/clients/client-route-53/src/commands/ListReusableDelegationSetsCommand.ts +++ b/clients/client-route-53/src/commands/ListReusableDelegationSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReusableDelegationSetsRequest, ListReusableDelegationSetsResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListReusableDelegationSetsRequest, ListReusableDelegationSetsResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListReusableDelegationSets } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListTagsForResourceCommand.ts b/clients/client-route-53/src/commands/ListTagsForResourceCommand.ts index 81aa08eb2305e..3bf23eed77711 100644 --- a/clients/client-route-53/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-route-53/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListTagsForResourcesCommand.ts b/clients/client-route-53/src/commands/ListTagsForResourcesCommand.ts index ce3e7e5892d84..e58329cf69589 100644 --- a/clients/client-route-53/src/commands/ListTagsForResourcesCommand.ts +++ b/clients/client-route-53/src/commands/ListTagsForResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourcesRequest, ListTagsForResourcesResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListTagsForResourcesRequest, ListTagsForResourcesResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListTagsForResources } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListTrafficPoliciesCommand.ts b/clients/client-route-53/src/commands/ListTrafficPoliciesCommand.ts index d686b105ded43..40f4aa1fafc0e 100644 --- a/clients/client-route-53/src/commands/ListTrafficPoliciesCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPoliciesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrafficPoliciesRequest, ListTrafficPoliciesResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListTrafficPoliciesRequest, ListTrafficPoliciesResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListTrafficPolicies } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByHostedZoneCommand.ts b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByHostedZoneCommand.ts index 61478df3f2ddf..8b6f484a2a333 100644 --- a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByHostedZoneCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByHostedZoneCommand.ts @@ -2,14 +2,14 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListTrafficPolicyInstancesByHostedZoneRequest, ListTrafficPolicyInstancesByHostedZoneResponse, } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListTrafficPolicyInstancesByHostedZone } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByPolicyCommand.ts b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByPolicyCommand.ts index f19833440f8c9..d09671496c637 100644 --- a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByPolicyCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesByPolicyCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListTrafficPolicyInstancesByPolicyRequest, ListTrafficPolicyInstancesByPolicyResponse, } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListTrafficPolicyInstancesByPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesCommand.ts b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesCommand.ts index 25ec1b1749099..b427e26ee19c0 100644 --- a/clients/client-route-53/src/commands/ListTrafficPolicyInstancesCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPolicyInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrafficPolicyInstancesRequest, ListTrafficPolicyInstancesResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListTrafficPolicyInstancesRequest, ListTrafficPolicyInstancesResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListTrafficPolicyInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListTrafficPolicyVersionsCommand.ts b/clients/client-route-53/src/commands/ListTrafficPolicyVersionsCommand.ts index 56cc9df3f0923..08a600dc8aab2 100644 --- a/clients/client-route-53/src/commands/ListTrafficPolicyVersionsCommand.ts +++ b/clients/client-route-53/src/commands/ListTrafficPolicyVersionsCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrafficPolicyVersionsRequest, ListTrafficPolicyVersionsResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { ListTrafficPolicyVersionsRequest, ListTrafficPolicyVersionsResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListTrafficPolicyVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/ListVPCAssociationAuthorizationsCommand.ts b/clients/client-route-53/src/commands/ListVPCAssociationAuthorizationsCommand.ts index 6587db046396f..3bfc5d297d382 100644 --- a/clients/client-route-53/src/commands/ListVPCAssociationAuthorizationsCommand.ts +++ b/clients/client-route-53/src/commands/ListVPCAssociationAuthorizationsCommand.ts @@ -2,11 +2,14 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVPCAssociationAuthorizationsRequest, ListVPCAssociationAuthorizationsResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { + ListVPCAssociationAuthorizationsRequest, + ListVPCAssociationAuthorizationsResponse, +} from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { ListVPCAssociationAuthorizations } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/TestDNSAnswerCommand.ts b/clients/client-route-53/src/commands/TestDNSAnswerCommand.ts index c344ea5a00b16..77dc7cd2f645c 100644 --- a/clients/client-route-53/src/commands/TestDNSAnswerCommand.ts +++ b/clients/client-route-53/src/commands/TestDNSAnswerCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestDNSAnswerRequest, TestDNSAnswerResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { TestDNSAnswerRequest, TestDNSAnswerResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { TestDNSAnswer } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/UpdateHealthCheckCommand.ts b/clients/client-route-53/src/commands/UpdateHealthCheckCommand.ts index 057342d34a719..a6b9f88d4a635 100644 --- a/clients/client-route-53/src/commands/UpdateHealthCheckCommand.ts +++ b/clients/client-route-53/src/commands/UpdateHealthCheckCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHealthCheckRequest, UpdateHealthCheckResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { UpdateHealthCheckRequest, UpdateHealthCheckResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { UpdateHealthCheck } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/UpdateHostedZoneCommentCommand.ts b/clients/client-route-53/src/commands/UpdateHostedZoneCommentCommand.ts index de6770a8cc85b..acda502163e6a 100644 --- a/clients/client-route-53/src/commands/UpdateHostedZoneCommentCommand.ts +++ b/clients/client-route-53/src/commands/UpdateHostedZoneCommentCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHostedZoneCommentRequest, UpdateHostedZoneCommentResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { UpdateHostedZoneCommentRequest, UpdateHostedZoneCommentResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { UpdateHostedZoneComment } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/UpdateHostedZoneFeaturesCommand.ts b/clients/client-route-53/src/commands/UpdateHostedZoneFeaturesCommand.ts index 069b06f55a4e6..cb90306b4f451 100644 --- a/clients/client-route-53/src/commands/UpdateHostedZoneFeaturesCommand.ts +++ b/clients/client-route-53/src/commands/UpdateHostedZoneFeaturesCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHostedZoneFeaturesRequest, UpdateHostedZoneFeaturesResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { UpdateHostedZoneFeaturesRequest, UpdateHostedZoneFeaturesResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { UpdateHostedZoneFeatures } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/UpdateTrafficPolicyCommentCommand.ts b/clients/client-route-53/src/commands/UpdateTrafficPolicyCommentCommand.ts index b6e1eda9d6b38..c5fe34df38666 100644 --- a/clients/client-route-53/src/commands/UpdateTrafficPolicyCommentCommand.ts +++ b/clients/client-route-53/src/commands/UpdateTrafficPolicyCommentCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrafficPolicyCommentRequest, UpdateTrafficPolicyCommentResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { UpdateTrafficPolicyCommentRequest, UpdateTrafficPolicyCommentResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { UpdateTrafficPolicyComment } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/commands/UpdateTrafficPolicyInstanceCommand.ts b/clients/client-route-53/src/commands/UpdateTrafficPolicyInstanceCommand.ts index e72486cc2c4e1..bbf57fe5d88c3 100644 --- a/clients/client-route-53/src/commands/UpdateTrafficPolicyInstanceCommand.ts +++ b/clients/client-route-53/src/commands/UpdateTrafficPolicyInstanceCommand.ts @@ -2,11 +2,11 @@ import { getIdNormalizerPlugin } from "@aws-sdk/middleware-sdk-route53"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrafficPolicyInstanceRequest, UpdateTrafficPolicyInstanceResponse } from "../models/models_0"; -import { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; +import type { UpdateTrafficPolicyInstanceRequest, UpdateTrafficPolicyInstanceResponse } from "../models/models_0"; +import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; import { UpdateTrafficPolicyInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-route-53/src/endpoint/EndpointParameters.ts b/clients/client-route-53/src/endpoint/EndpointParameters.ts index 9257969787e1c..75fdf26a7f9a2 100644 --- a/clients/client-route-53/src/endpoint/EndpointParameters.ts +++ b/clients/client-route-53/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-route-53/src/endpoint/endpointResolver.ts b/clients/client-route-53/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-route-53/src/endpoint/endpointResolver.ts +++ b/clients/client-route-53/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-route-53/src/extensionConfiguration.ts b/clients/client-route-53/src/extensionConfiguration.ts index c7b8f588ee909..59e390b2b51b9 100644 --- a/clients/client-route-53/src/extensionConfiguration.ts +++ b/clients/client-route-53/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-route-53/src/models/Route53ServiceException.ts b/clients/client-route-53/src/models/Route53ServiceException.ts index 96bf207716072..6c2b5f39e8f2b 100644 --- a/clients/client-route-53/src/models/Route53ServiceException.ts +++ b/clients/client-route-53/src/models/Route53ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-route-53/src/models/errors.ts b/clients/client-route-53/src/models/errors.ts index e54d7955fa11e..9414a3eeebac4 100644 --- a/clients/client-route-53/src/models/errors.ts +++ b/clients/client-route-53/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { Route53ServiceException as __BaseException } from "./Route53ServiceException"; diff --git a/clients/client-route-53/src/pagination/Interfaces.ts b/clients/client-route-53/src/pagination/Interfaces.ts index 4fe8d64cdb6af..f93cc086a44fb 100644 --- a/clients/client-route-53/src/pagination/Interfaces.ts +++ b/clients/client-route-53/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Route53Client } from "../Route53Client"; diff --git a/clients/client-route-53/src/pagination/ListCidrBlocksPaginator.ts b/clients/client-route-53/src/pagination/ListCidrBlocksPaginator.ts index e453bf0e62406..6deb8c8d5d0ad 100644 --- a/clients/client-route-53/src/pagination/ListCidrBlocksPaginator.ts +++ b/clients/client-route-53/src/pagination/ListCidrBlocksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCidrBlocksCommand, diff --git a/clients/client-route-53/src/pagination/ListCidrCollectionsPaginator.ts b/clients/client-route-53/src/pagination/ListCidrCollectionsPaginator.ts index b6e49935f8889..4247b90c6c939 100644 --- a/clients/client-route-53/src/pagination/ListCidrCollectionsPaginator.ts +++ b/clients/client-route-53/src/pagination/ListCidrCollectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCidrCollectionsCommand, diff --git a/clients/client-route-53/src/pagination/ListCidrLocationsPaginator.ts b/clients/client-route-53/src/pagination/ListCidrLocationsPaginator.ts index a3feff218ef51..27b3aa8d632dd 100644 --- a/clients/client-route-53/src/pagination/ListCidrLocationsPaginator.ts +++ b/clients/client-route-53/src/pagination/ListCidrLocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCidrLocationsCommand, diff --git a/clients/client-route-53/src/pagination/ListHealthChecksPaginator.ts b/clients/client-route-53/src/pagination/ListHealthChecksPaginator.ts index 4ffeb0f8413ea..eb48e011b1bb4 100644 --- a/clients/client-route-53/src/pagination/ListHealthChecksPaginator.ts +++ b/clients/client-route-53/src/pagination/ListHealthChecksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHealthChecksCommand, diff --git a/clients/client-route-53/src/pagination/ListHostedZonesPaginator.ts b/clients/client-route-53/src/pagination/ListHostedZonesPaginator.ts index fa75670d0c1ba..d50e8f140d219 100644 --- a/clients/client-route-53/src/pagination/ListHostedZonesPaginator.ts +++ b/clients/client-route-53/src/pagination/ListHostedZonesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHostedZonesCommand, diff --git a/clients/client-route-53/src/pagination/ListQueryLoggingConfigsPaginator.ts b/clients/client-route-53/src/pagination/ListQueryLoggingConfigsPaginator.ts index 80a02b1e41e85..3b457eb89918c 100644 --- a/clients/client-route-53/src/pagination/ListQueryLoggingConfigsPaginator.ts +++ b/clients/client-route-53/src/pagination/ListQueryLoggingConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueryLoggingConfigsCommand, diff --git a/clients/client-route-53/src/runtimeConfig.browser.ts b/clients/client-route-53/src/runtimeConfig.browser.ts index 33869314b6723..20e659fffa96e 100644 --- a/clients/client-route-53/src/runtimeConfig.browser.ts +++ b/clients/client-route-53/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53ClientConfig } from "./Route53Client"; + +import type { Route53ClientConfig } from "./Route53Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-route-53/src/runtimeConfig.native.ts b/clients/client-route-53/src/runtimeConfig.native.ts index 75c8928e0bc04..1ffec4cf507f7 100644 --- a/clients/client-route-53/src/runtimeConfig.native.ts +++ b/clients/client-route-53/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Route53ClientConfig } from "./Route53Client"; +import type { Route53ClientConfig } from "./Route53Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-route-53/src/runtimeConfig.shared.ts b/clients/client-route-53/src/runtimeConfig.shared.ts index b9a4a0ba26609..e73f229e6616b 100644 --- a/clients/client-route-53/src/runtimeConfig.shared.ts +++ b/clients/client-route-53/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestXmlProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRoute53HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Route53ClientConfig } from "./Route53Client"; +import type { Route53ClientConfig } from "./Route53Client"; /** * @internal diff --git a/clients/client-route-53/src/runtimeConfig.ts b/clients/client-route-53/src/runtimeConfig.ts index 4cf842a77a582..365624134da65 100644 --- a/clients/client-route-53/src/runtimeConfig.ts +++ b/clients/client-route-53/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53ClientConfig } from "./Route53Client"; + +import type { Route53ClientConfig } from "./Route53Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-route-53/src/runtimeExtensions.ts b/clients/client-route-53/src/runtimeExtensions.ts index 645404fcd4854..d3388939bdf1f 100644 --- a/clients/client-route-53/src/runtimeExtensions.ts +++ b/clients/client-route-53/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Route53ExtensionConfiguration } from "./extensionConfiguration"; +import type { Route53ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-route-53/src/schemas/schemas_0.ts b/clients/client-route-53/src/schemas/schemas_0.ts index 807da5dd21ae9..c0a9b170053a3 100644 --- a/clients/client-route-53/src/schemas/schemas_0.ts +++ b/clients/client-route-53/src/schemas/schemas_0.ts @@ -563,7 +563,7 @@ const n0 = "com.amazonaws.route53"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { CidrBlockInUseException as __CidrBlockInUseException, diff --git a/clients/client-route53-recovery-cluster/package.json b/clients/client-route53-recovery-cluster/package.json index 105154f87effb..df9783aec082b 100644 --- a/clients/client-route53-recovery-cluster/package.json +++ b/clients/client-route53-recovery-cluster/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-route53-recovery-cluster/src/Route53RecoveryCluster.ts b/clients/client-route53-recovery-cluster/src/Route53RecoveryCluster.ts index f823d30474a77..8fda7b9312002 100644 --- a/clients/client-route53-recovery-cluster/src/Route53RecoveryCluster.ts +++ b/clients/client-route53-recovery-cluster/src/Route53RecoveryCluster.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetRoutingControlStateCommand, @@ -22,7 +22,7 @@ import { UpdateRoutingControlStatesCommandInput, UpdateRoutingControlStatesCommandOutput, } from "./commands/UpdateRoutingControlStatesCommand"; -import { Route53RecoveryClusterClient, Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient"; +import { Route53RecoveryClusterClient } from "./Route53RecoveryClusterClient"; const commands = { GetRoutingControlStateCommand, diff --git a/clients/client-route53-recovery-cluster/src/Route53RecoveryClusterClient.ts b/clients/client-route53-recovery-cluster/src/Route53RecoveryClusterClient.ts index f0a8117736f66..55cdfa854a3f4 100644 --- a/clients/client-route53-recovery-cluster/src/Route53RecoveryClusterClient.ts +++ b/clients/client-route53-recovery-cluster/src/Route53RecoveryClusterClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRoute53RecoveryClusterHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -80,7 +89,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-route53-recovery-cluster/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-route53-recovery-cluster/src/auth/httpAuthExtensionConfiguration.ts index 3866ab5c2f411..e478b5e9cc44a 100644 --- a/clients/client-route53-recovery-cluster/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-route53-recovery-cluster/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Route53RecoveryClusterHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Route53RecoveryClusterHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-route53-recovery-cluster/src/auth/httpAuthSchemeProvider.ts b/clients/client-route53-recovery-cluster/src/auth/httpAuthSchemeProvider.ts index a71cc11f3a55f..c77fb7ac03bfe 100644 --- a/clients/client-route53-recovery-cluster/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-route53-recovery-cluster/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type Route53RecoveryClusterClientResolvedConfig, Route53RecoveryClusterClientConfig, - Route53RecoveryClusterClientResolvedConfig, } from "../Route53RecoveryClusterClient"; /** diff --git a/clients/client-route53-recovery-cluster/src/commands/GetRoutingControlStateCommand.ts b/clients/client-route53-recovery-cluster/src/commands/GetRoutingControlStateCommand.ts index c4690a52c2266..fc014f998ff76 100644 --- a/clients/client-route53-recovery-cluster/src/commands/GetRoutingControlStateCommand.ts +++ b/clients/client-route53-recovery-cluster/src/commands/GetRoutingControlStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRoutingControlStateRequest, GetRoutingControlStateResponse } from "../models/models_0"; -import { +import type { GetRoutingControlStateRequest, GetRoutingControlStateResponse } from "../models/models_0"; +import type { Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-cluster/src/commands/ListRoutingControlsCommand.ts b/clients/client-route53-recovery-cluster/src/commands/ListRoutingControlsCommand.ts index 96882092c57ae..53fd242ba0294 100644 --- a/clients/client-route53-recovery-cluster/src/commands/ListRoutingControlsCommand.ts +++ b/clients/client-route53-recovery-cluster/src/commands/ListRoutingControlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoutingControlsRequest, ListRoutingControlsResponse } from "../models/models_0"; -import { +import type { ListRoutingControlsRequest, ListRoutingControlsResponse } from "../models/models_0"; +import type { Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStateCommand.ts b/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStateCommand.ts index 39929efd1eca8..a2904b66bb811 100644 --- a/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStateCommand.ts +++ b/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoutingControlStateRequest, UpdateRoutingControlStateResponse } from "../models/models_0"; -import { +import type { UpdateRoutingControlStateRequest, UpdateRoutingControlStateResponse } from "../models/models_0"; +import type { Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStatesCommand.ts b/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStatesCommand.ts index cacd2dd0ac3c0..4ea10de0d4dc4 100644 --- a/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStatesCommand.ts +++ b/clients/client-route53-recovery-cluster/src/commands/UpdateRoutingControlStatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoutingControlStatesRequest, UpdateRoutingControlStatesResponse } from "../models/models_0"; -import { +import type { UpdateRoutingControlStatesRequest, UpdateRoutingControlStatesResponse } from "../models/models_0"; +import type { Route53RecoveryClusterClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-cluster/src/endpoint/EndpointParameters.ts b/clients/client-route53-recovery-cluster/src/endpoint/EndpointParameters.ts index 41db560c7b7c6..b5a5003532da4 100644 --- a/clients/client-route53-recovery-cluster/src/endpoint/EndpointParameters.ts +++ b/clients/client-route53-recovery-cluster/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-route53-recovery-cluster/src/endpoint/endpointResolver.ts b/clients/client-route53-recovery-cluster/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-route53-recovery-cluster/src/endpoint/endpointResolver.ts +++ b/clients/client-route53-recovery-cluster/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-route53-recovery-cluster/src/extensionConfiguration.ts b/clients/client-route53-recovery-cluster/src/extensionConfiguration.ts index e9283e1e1cca8..ed943e7f936bf 100644 --- a/clients/client-route53-recovery-cluster/src/extensionConfiguration.ts +++ b/clients/client-route53-recovery-cluster/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-route53-recovery-cluster/src/models/Route53RecoveryClusterServiceException.ts b/clients/client-route53-recovery-cluster/src/models/Route53RecoveryClusterServiceException.ts index a08d2ce0c2efc..d13d76c04505f 100644 --- a/clients/client-route53-recovery-cluster/src/models/Route53RecoveryClusterServiceException.ts +++ b/clients/client-route53-recovery-cluster/src/models/Route53RecoveryClusterServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-route53-recovery-cluster/src/models/errors.ts b/clients/client-route53-recovery-cluster/src/models/errors.ts index 293cef9f36f7f..b1145a92245b1 100644 --- a/clients/client-route53-recovery-cluster/src/models/errors.ts +++ b/clients/client-route53-recovery-cluster/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-route53-recovery-cluster/src/pagination/Interfaces.ts b/clients/client-route53-recovery-cluster/src/pagination/Interfaces.ts index 4c817f22dac8b..c9644edabaaa6 100644 --- a/clients/client-route53-recovery-cluster/src/pagination/Interfaces.ts +++ b/clients/client-route53-recovery-cluster/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Route53RecoveryClusterClient } from "../Route53RecoveryClusterClient"; diff --git a/clients/client-route53-recovery-cluster/src/pagination/ListRoutingControlsPaginator.ts b/clients/client-route53-recovery-cluster/src/pagination/ListRoutingControlsPaginator.ts index c2e90e64eed3f..bd33ac0220c4a 100644 --- a/clients/client-route53-recovery-cluster/src/pagination/ListRoutingControlsPaginator.ts +++ b/clients/client-route53-recovery-cluster/src/pagination/ListRoutingControlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoutingControlsCommand, diff --git a/clients/client-route53-recovery-cluster/src/runtimeConfig.browser.ts b/clients/client-route53-recovery-cluster/src/runtimeConfig.browser.ts index cb1ea52ed5b9f..0816133c003b0 100644 --- a/clients/client-route53-recovery-cluster/src/runtimeConfig.browser.ts +++ b/clients/client-route53-recovery-cluster/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient"; + +import type { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-route53-recovery-cluster/src/runtimeConfig.native.ts b/clients/client-route53-recovery-cluster/src/runtimeConfig.native.ts index 8f714d5e92e2d..dacb64f9ed6b2 100644 --- a/clients/client-route53-recovery-cluster/src/runtimeConfig.native.ts +++ b/clients/client-route53-recovery-cluster/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient"; +import type { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-route53-recovery-cluster/src/runtimeConfig.shared.ts b/clients/client-route53-recovery-cluster/src/runtimeConfig.shared.ts index 26e7af4e780dc..10e8aef2610cc 100644 --- a/clients/client-route53-recovery-cluster/src/runtimeConfig.shared.ts +++ b/clients/client-route53-recovery-cluster/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRoute53RecoveryClusterHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient"; +import type { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient"; /** * @internal diff --git a/clients/client-route53-recovery-cluster/src/runtimeConfig.ts b/clients/client-route53-recovery-cluster/src/runtimeConfig.ts index 97839b8712fde..e28e7e630419f 100644 --- a/clients/client-route53-recovery-cluster/src/runtimeConfig.ts +++ b/clients/client-route53-recovery-cluster/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient"; + +import type { Route53RecoveryClusterClientConfig } from "./Route53RecoveryClusterClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-route53-recovery-cluster/src/runtimeExtensions.ts b/clients/client-route53-recovery-cluster/src/runtimeExtensions.ts index 772c0df52f3f3..4a1f000f79040 100644 --- a/clients/client-route53-recovery-cluster/src/runtimeExtensions.ts +++ b/clients/client-route53-recovery-cluster/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Route53RecoveryClusterExtensionConfiguration } from "./extensionConfiguration"; +import type { Route53RecoveryClusterExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-route53-recovery-cluster/src/schemas/schemas_0.ts b/clients/client-route53-recovery-cluster/src/schemas/schemas_0.ts index 0e7912d129bb2..10839a39016a8 100644 --- a/clients/client-route53-recovery-cluster/src/schemas/schemas_0.ts +++ b/clients/client-route53-recovery-cluster/src/schemas/schemas_0.ts @@ -53,7 +53,7 @@ const n0 = "com.amazonaws.route53recoverycluster"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-route53-recovery-control-config/package.json b/clients/client-route53-recovery-control-config/package.json index 1ff5f7fcad97b..4686992b6f900 100644 --- a/clients/client-route53-recovery-control-config/package.json +++ b/clients/client-route53-recovery-control-config/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-route53-recovery-control-config/src/Route53RecoveryControlConfig.ts b/clients/client-route53-recovery-control-config/src/Route53RecoveryControlConfig.ts index d17f5bff4d1f6..9080fca9c928e 100644 --- a/clients/client-route53-recovery-control-config/src/Route53RecoveryControlConfig.ts +++ b/clients/client-route53-recovery-control-config/src/Route53RecoveryControlConfig.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateClusterCommand, @@ -123,10 +123,7 @@ import { UpdateSafetyRuleCommandInput, UpdateSafetyRuleCommandOutput, } from "./commands/UpdateSafetyRuleCommand"; -import { - Route53RecoveryControlConfigClient, - Route53RecoveryControlConfigClientConfig, -} from "./Route53RecoveryControlConfigClient"; +import { Route53RecoveryControlConfigClient } from "./Route53RecoveryControlConfigClient"; const commands = { CreateClusterCommand, diff --git a/clients/client-route53-recovery-control-config/src/Route53RecoveryControlConfigClient.ts b/clients/client-route53-recovery-control-config/src/Route53RecoveryControlConfigClient.ts index ca1a83e52a014..519d360833853 100644 --- a/clients/client-route53-recovery-control-config/src/Route53RecoveryControlConfigClient.ts +++ b/clients/client-route53-recovery-control-config/src/Route53RecoveryControlConfigClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRoute53RecoveryControlConfigHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand"; @@ -113,7 +122,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-route53-recovery-control-config/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-route53-recovery-control-config/src/auth/httpAuthExtensionConfiguration.ts index 107ebfd116956..28e4da6017ed8 100644 --- a/clients/client-route53-recovery-control-config/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-route53-recovery-control-config/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Route53RecoveryControlConfigHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Route53RecoveryControlConfigHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-route53-recovery-control-config/src/auth/httpAuthSchemeProvider.ts b/clients/client-route53-recovery-control-config/src/auth/httpAuthSchemeProvider.ts index 6e9a7af8847f1..48cbe12e1a5b2 100644 --- a/clients/client-route53-recovery-control-config/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-route53-recovery-control-config/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type Route53RecoveryControlConfigClientResolvedConfig, Route53RecoveryControlConfigClientConfig, - Route53RecoveryControlConfigClientResolvedConfig, } from "../Route53RecoveryControlConfigClient"; /** diff --git a/clients/client-route53-recovery-control-config/src/commands/CreateClusterCommand.ts b/clients/client-route53-recovery-control-config/src/commands/CreateClusterCommand.ts index f6e737212c198..68d1ef68c47da 100644 --- a/clients/client-route53-recovery-control-config/src/commands/CreateClusterCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; -import { +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/CreateControlPanelCommand.ts b/clients/client-route53-recovery-control-config/src/commands/CreateControlPanelCommand.ts index 7cd0e831527a1..2b32d0712279b 100644 --- a/clients/client-route53-recovery-control-config/src/commands/CreateControlPanelCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/CreateControlPanelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateControlPanelRequest, CreateControlPanelResponse } from "../models/models_0"; -import { +import type { CreateControlPanelRequest, CreateControlPanelResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/CreateRoutingControlCommand.ts b/clients/client-route53-recovery-control-config/src/commands/CreateRoutingControlCommand.ts index 969cf079ebcfb..e7a79097a5650 100644 --- a/clients/client-route53-recovery-control-config/src/commands/CreateRoutingControlCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/CreateRoutingControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRoutingControlRequest, CreateRoutingControlResponse } from "../models/models_0"; -import { +import type { CreateRoutingControlRequest, CreateRoutingControlResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/CreateSafetyRuleCommand.ts b/clients/client-route53-recovery-control-config/src/commands/CreateSafetyRuleCommand.ts index acdc0577884c1..04974471ddc71 100644 --- a/clients/client-route53-recovery-control-config/src/commands/CreateSafetyRuleCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/CreateSafetyRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSafetyRuleRequest, CreateSafetyRuleResponse } from "../models/models_0"; -import { +import type { CreateSafetyRuleRequest, CreateSafetyRuleResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/DeleteClusterCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DeleteClusterCommand.ts index 5b3d1b8b351b0..23785effd62f9 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DeleteClusterCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; -import { +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/DeleteControlPanelCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DeleteControlPanelCommand.ts index 7f7339a32140d..4ba4e8475fc9c 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DeleteControlPanelCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DeleteControlPanelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteControlPanelRequest, DeleteControlPanelResponse } from "../models/models_0"; -import { +import type { DeleteControlPanelRequest, DeleteControlPanelResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/DeleteRoutingControlCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DeleteRoutingControlCommand.ts index e9dad8211971e..f5fbdb127d609 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DeleteRoutingControlCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DeleteRoutingControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRoutingControlRequest, DeleteRoutingControlResponse } from "../models/models_0"; -import { +import type { DeleteRoutingControlRequest, DeleteRoutingControlResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/DeleteSafetyRuleCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DeleteSafetyRuleCommand.ts index 5545013496bf0..fb5ebaea067db 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DeleteSafetyRuleCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DeleteSafetyRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSafetyRuleRequest, DeleteSafetyRuleResponse } from "../models/models_0"; -import { +import type { DeleteSafetyRuleRequest, DeleteSafetyRuleResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/DescribeClusterCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DescribeClusterCommand.ts index 984d89453d1c5..caf5c7e5edbcf 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DescribeClusterCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DescribeClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_0"; -import { +import type { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/DescribeControlPanelCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DescribeControlPanelCommand.ts index 433382c0980c5..7907f1c10240b 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DescribeControlPanelCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DescribeControlPanelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeControlPanelRequest, DescribeControlPanelResponse } from "../models/models_0"; -import { +import type { DescribeControlPanelRequest, DescribeControlPanelResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/DescribeRoutingControlCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DescribeRoutingControlCommand.ts index f4320df5c3e0e..f67fd43fa4c5e 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DescribeRoutingControlCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DescribeRoutingControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRoutingControlRequest, DescribeRoutingControlResponse } from "../models/models_0"; -import { +import type { DescribeRoutingControlRequest, DescribeRoutingControlResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/DescribeSafetyRuleCommand.ts b/clients/client-route53-recovery-control-config/src/commands/DescribeSafetyRuleCommand.ts index 5d4a06acce4c6..4eff7420e4a59 100644 --- a/clients/client-route53-recovery-control-config/src/commands/DescribeSafetyRuleCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/DescribeSafetyRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSafetyRuleRequest, DescribeSafetyRuleResponse } from "../models/models_0"; -import { +import type { DescribeSafetyRuleRequest, DescribeSafetyRuleResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/GetResourcePolicyCommand.ts b/clients/client-route53-recovery-control-config/src/commands/GetResourcePolicyCommand.ts index 836aeb6ffb543..6f79f8522d098 100644 --- a/clients/client-route53-recovery-control-config/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; -import { +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/ListAssociatedRoute53HealthChecksCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListAssociatedRoute53HealthChecksCommand.ts index 41c94e4df48de..49a7c84f47c8f 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListAssociatedRoute53HealthChecksCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListAssociatedRoute53HealthChecksCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAssociatedRoute53HealthChecksRequest, ListAssociatedRoute53HealthChecksResponse, } from "../models/models_0"; -import { +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/ListClustersCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListClustersCommand.ts index 03c8335685dbd..45d97db4b7921 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListClustersCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClustersRequest, ListClustersResponse } from "../models/models_0"; -import { +import type { ListClustersRequest, ListClustersResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/ListControlPanelsCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListControlPanelsCommand.ts index bed329bb14c74..91f8f8a3ed0a3 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListControlPanelsCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListControlPanelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListControlPanelsRequest, ListControlPanelsResponse } from "../models/models_0"; -import { +import type { ListControlPanelsRequest, ListControlPanelsResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/ListRoutingControlsCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListRoutingControlsCommand.ts index 0c5d702003797..56092daf3ceb3 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListRoutingControlsCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListRoutingControlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRoutingControlsRequest, ListRoutingControlsResponse } from "../models/models_0"; -import { +import type { ListRoutingControlsRequest, ListRoutingControlsResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/ListSafetyRulesCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListSafetyRulesCommand.ts index d12990a44966e..e3c695f2f2e52 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListSafetyRulesCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListSafetyRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSafetyRulesRequest, ListSafetyRulesResponse } from "../models/models_0"; -import { +import type { ListSafetyRulesRequest, ListSafetyRulesResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/ListTagsForResourceCommand.ts b/clients/client-route53-recovery-control-config/src/commands/ListTagsForResourceCommand.ts index d06db6a8750a9..0486f3152d704 100644 --- a/clients/client-route53-recovery-control-config/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/TagResourceCommand.ts b/clients/client-route53-recovery-control-config/src/commands/TagResourceCommand.ts index 3236eb6f0fd2f..0b3acfceef2ba 100644 --- a/clients/client-route53-recovery-control-config/src/commands/TagResourceCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/UntagResourceCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UntagResourceCommand.ts index d06fb610f2b8e..4ba9b3ecd8d2b 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UntagResourceCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/UpdateClusterCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UpdateClusterCommand.ts index 52455df8388f6..f5ce6c63e8d5b 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UpdateClusterCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; -import { +import type { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/UpdateControlPanelCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UpdateControlPanelCommand.ts index bc58224d2f251..7203c0271e6fc 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UpdateControlPanelCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UpdateControlPanelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateControlPanelRequest, UpdateControlPanelResponse } from "../models/models_0"; -import { +import type { UpdateControlPanelRequest, UpdateControlPanelResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/UpdateRoutingControlCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UpdateRoutingControlCommand.ts index 2f8d080b30bdb..e5676672ad3c4 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UpdateRoutingControlCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UpdateRoutingControlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRoutingControlRequest, UpdateRoutingControlResponse } from "../models/models_0"; -import { +import type { UpdateRoutingControlRequest, UpdateRoutingControlResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/commands/UpdateSafetyRuleCommand.ts b/clients/client-route53-recovery-control-config/src/commands/UpdateSafetyRuleCommand.ts index e99c072c36f85..231d95b3744e1 100644 --- a/clients/client-route53-recovery-control-config/src/commands/UpdateSafetyRuleCommand.ts +++ b/clients/client-route53-recovery-control-config/src/commands/UpdateSafetyRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSafetyRuleRequest, UpdateSafetyRuleResponse } from "../models/models_0"; -import { +import type { UpdateSafetyRuleRequest, UpdateSafetyRuleResponse } from "../models/models_0"; +import type { Route53RecoveryControlConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-control-config/src/endpoint/EndpointParameters.ts b/clients/client-route53-recovery-control-config/src/endpoint/EndpointParameters.ts index bb8395a6cac84..1941ceb3c5bb6 100644 --- a/clients/client-route53-recovery-control-config/src/endpoint/EndpointParameters.ts +++ b/clients/client-route53-recovery-control-config/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-route53-recovery-control-config/src/endpoint/endpointResolver.ts b/clients/client-route53-recovery-control-config/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-route53-recovery-control-config/src/endpoint/endpointResolver.ts +++ b/clients/client-route53-recovery-control-config/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-route53-recovery-control-config/src/extensionConfiguration.ts b/clients/client-route53-recovery-control-config/src/extensionConfiguration.ts index ed7271f6863c5..eaf11f08675e5 100644 --- a/clients/client-route53-recovery-control-config/src/extensionConfiguration.ts +++ b/clients/client-route53-recovery-control-config/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-route53-recovery-control-config/src/models/Route53RecoveryControlConfigServiceException.ts b/clients/client-route53-recovery-control-config/src/models/Route53RecoveryControlConfigServiceException.ts index c61c6b784b0d7..9bbed434f52ec 100644 --- a/clients/client-route53-recovery-control-config/src/models/Route53RecoveryControlConfigServiceException.ts +++ b/clients/client-route53-recovery-control-config/src/models/Route53RecoveryControlConfigServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-route53-recovery-control-config/src/models/errors.ts b/clients/client-route53-recovery-control-config/src/models/errors.ts index 9954c2f5b3fc9..c91bc1d5239c6 100644 --- a/clients/client-route53-recovery-control-config/src/models/errors.ts +++ b/clients/client-route53-recovery-control-config/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { Route53RecoveryControlConfigServiceException as __BaseException } from "./Route53RecoveryControlConfigServiceException"; diff --git a/clients/client-route53-recovery-control-config/src/pagination/Interfaces.ts b/clients/client-route53-recovery-control-config/src/pagination/Interfaces.ts index e1e8f6df71487..e536f4a50ab79 100644 --- a/clients/client-route53-recovery-control-config/src/pagination/Interfaces.ts +++ b/clients/client-route53-recovery-control-config/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Route53RecoveryControlConfigClient } from "../Route53RecoveryControlConfigClient"; diff --git a/clients/client-route53-recovery-control-config/src/pagination/ListAssociatedRoute53HealthChecksPaginator.ts b/clients/client-route53-recovery-control-config/src/pagination/ListAssociatedRoute53HealthChecksPaginator.ts index 39e554b1b8756..de5d718ecdb9d 100644 --- a/clients/client-route53-recovery-control-config/src/pagination/ListAssociatedRoute53HealthChecksPaginator.ts +++ b/clients/client-route53-recovery-control-config/src/pagination/ListAssociatedRoute53HealthChecksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssociatedRoute53HealthChecksCommand, diff --git a/clients/client-route53-recovery-control-config/src/pagination/ListClustersPaginator.ts b/clients/client-route53-recovery-control-config/src/pagination/ListClustersPaginator.ts index 37f30fbfc99b3..642de69411bae 100644 --- a/clients/client-route53-recovery-control-config/src/pagination/ListClustersPaginator.ts +++ b/clients/client-route53-recovery-control-config/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-route53-recovery-control-config/src/pagination/ListControlPanelsPaginator.ts b/clients/client-route53-recovery-control-config/src/pagination/ListControlPanelsPaginator.ts index 64c926a1404b9..b341d98b384da 100644 --- a/clients/client-route53-recovery-control-config/src/pagination/ListControlPanelsPaginator.ts +++ b/clients/client-route53-recovery-control-config/src/pagination/ListControlPanelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListControlPanelsCommand, diff --git a/clients/client-route53-recovery-control-config/src/pagination/ListRoutingControlsPaginator.ts b/clients/client-route53-recovery-control-config/src/pagination/ListRoutingControlsPaginator.ts index b9ffcb22daaad..f5ff66fd4a681 100644 --- a/clients/client-route53-recovery-control-config/src/pagination/ListRoutingControlsPaginator.ts +++ b/clients/client-route53-recovery-control-config/src/pagination/ListRoutingControlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRoutingControlsCommand, diff --git a/clients/client-route53-recovery-control-config/src/pagination/ListSafetyRulesPaginator.ts b/clients/client-route53-recovery-control-config/src/pagination/ListSafetyRulesPaginator.ts index 3d5f1e92b3a29..717f029f6973a 100644 --- a/clients/client-route53-recovery-control-config/src/pagination/ListSafetyRulesPaginator.ts +++ b/clients/client-route53-recovery-control-config/src/pagination/ListSafetyRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSafetyRulesCommand, diff --git a/clients/client-route53-recovery-control-config/src/runtimeConfig.browser.ts b/clients/client-route53-recovery-control-config/src/runtimeConfig.browser.ts index 2d4a977d829d0..af419735736eb 100644 --- a/clients/client-route53-recovery-control-config/src/runtimeConfig.browser.ts +++ b/clients/client-route53-recovery-control-config/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53RecoveryControlConfigClientConfig } from "./Route53RecoveryControlConfigClient"; + +import type { Route53RecoveryControlConfigClientConfig } from "./Route53RecoveryControlConfigClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-route53-recovery-control-config/src/runtimeConfig.native.ts b/clients/client-route53-recovery-control-config/src/runtimeConfig.native.ts index 9cdb3677c1129..942953755a2b4 100644 --- a/clients/client-route53-recovery-control-config/src/runtimeConfig.native.ts +++ b/clients/client-route53-recovery-control-config/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Route53RecoveryControlConfigClientConfig } from "./Route53RecoveryControlConfigClient"; +import type { Route53RecoveryControlConfigClientConfig } from "./Route53RecoveryControlConfigClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-route53-recovery-control-config/src/runtimeConfig.shared.ts b/clients/client-route53-recovery-control-config/src/runtimeConfig.shared.ts index fdc97b851f34b..7345134f9ea90 100644 --- a/clients/client-route53-recovery-control-config/src/runtimeConfig.shared.ts +++ b/clients/client-route53-recovery-control-config/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRoute53RecoveryControlConfigHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Route53RecoveryControlConfigClientConfig } from "./Route53RecoveryControlConfigClient"; +import type { Route53RecoveryControlConfigClientConfig } from "./Route53RecoveryControlConfigClient"; /** * @internal diff --git a/clients/client-route53-recovery-control-config/src/runtimeConfig.ts b/clients/client-route53-recovery-control-config/src/runtimeConfig.ts index 2f6cec4ecb78f..df3e83f85ae9e 100644 --- a/clients/client-route53-recovery-control-config/src/runtimeConfig.ts +++ b/clients/client-route53-recovery-control-config/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53RecoveryControlConfigClientConfig } from "./Route53RecoveryControlConfigClient"; + +import type { Route53RecoveryControlConfigClientConfig } from "./Route53RecoveryControlConfigClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-route53-recovery-control-config/src/runtimeExtensions.ts b/clients/client-route53-recovery-control-config/src/runtimeExtensions.ts index 5b4180fd9f3cf..164410f39070e 100644 --- a/clients/client-route53-recovery-control-config/src/runtimeExtensions.ts +++ b/clients/client-route53-recovery-control-config/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Route53RecoveryControlConfigExtensionConfiguration } from "./extensionConfiguration"; +import type { Route53RecoveryControlConfigExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-route53-recovery-control-config/src/schemas/schemas_0.ts b/clients/client-route53-recovery-control-config/src/schemas/schemas_0.ts index 9edcadfda291c..67119e18cc0ea 100644 --- a/clients/client-route53-recovery-control-config/src/schemas/schemas_0.ts +++ b/clients/client-route53-recovery-control-config/src/schemas/schemas_0.ts @@ -148,7 +148,7 @@ const n0 = "com.amazonaws.route53recoverycontrolconfig"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-route53-recovery-readiness/package.json b/clients/client-route53-recovery-readiness/package.json index e5a1b5e68394b..c558e31ba4308 100644 --- a/clients/client-route53-recovery-readiness/package.json +++ b/clients/client-route53-recovery-readiness/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-route53-recovery-readiness/src/Route53RecoveryReadiness.ts b/clients/client-route53-recovery-readiness/src/Route53RecoveryReadiness.ts index 6df46469c7636..eeebdf25c8a26 100644 --- a/clients/client-route53-recovery-readiness/src/Route53RecoveryReadiness.ts +++ b/clients/client-route53-recovery-readiness/src/Route53RecoveryReadiness.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateCellCommand, CreateCellCommandInput, CreateCellCommandOutput } from "./commands/CreateCellCommand"; import { @@ -134,7 +134,7 @@ import { UpdateResourceSetCommandInput, UpdateResourceSetCommandOutput, } from "./commands/UpdateResourceSetCommand"; -import { Route53RecoveryReadinessClient, Route53RecoveryReadinessClientConfig } from "./Route53RecoveryReadinessClient"; +import { Route53RecoveryReadinessClient } from "./Route53RecoveryReadinessClient"; const commands = { CreateCellCommand, diff --git a/clients/client-route53-recovery-readiness/src/Route53RecoveryReadinessClient.ts b/clients/client-route53-recovery-readiness/src/Route53RecoveryReadinessClient.ts index ce0eed9bc1a52..8673c19225ab4 100644 --- a/clients/client-route53-recovery-readiness/src/Route53RecoveryReadinessClient.ts +++ b/clients/client-route53-recovery-readiness/src/Route53RecoveryReadinessClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRoute53RecoveryReadinessHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateCellCommandInput, CreateCellCommandOutput } from "./commands/CreateCellCommand"; @@ -144,7 +153,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-route53-recovery-readiness/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-route53-recovery-readiness/src/auth/httpAuthExtensionConfiguration.ts index 10889f63e8697..8cc112b3f1321 100644 --- a/clients/client-route53-recovery-readiness/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-route53-recovery-readiness/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Route53RecoveryReadinessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Route53RecoveryReadinessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-route53-recovery-readiness/src/auth/httpAuthSchemeProvider.ts b/clients/client-route53-recovery-readiness/src/auth/httpAuthSchemeProvider.ts index 8ed3c16d123c2..cdd25a8463db3 100644 --- a/clients/client-route53-recovery-readiness/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-route53-recovery-readiness/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type Route53RecoveryReadinessClientResolvedConfig, Route53RecoveryReadinessClientConfig, - Route53RecoveryReadinessClientResolvedConfig, } from "../Route53RecoveryReadinessClient"; /** diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateCellCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateCellCommand.ts index e043356897d6e..8929e0c456974 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateCellCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateCellCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCellRequest, CreateCellResponse } from "../models/models_0"; -import { +import type { CreateCellRequest, CreateCellResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateCrossAccountAuthorizationCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateCrossAccountAuthorizationCommand.ts index 20fae9877a850..25ea709985e24 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateCrossAccountAuthorizationCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateCrossAccountAuthorizationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCrossAccountAuthorizationRequest, CreateCrossAccountAuthorizationResponse } from "../models/models_0"; -import { +import type { + CreateCrossAccountAuthorizationRequest, + CreateCrossAccountAuthorizationResponse, +} from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateReadinessCheckCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateReadinessCheckCommand.ts index 9297811ea3c36..7d69c7d8eb5bc 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateReadinessCheckCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateReadinessCheckCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReadinessCheckRequest, CreateReadinessCheckResponse } from "../models/models_0"; -import { +import type { CreateReadinessCheckRequest, CreateReadinessCheckResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateRecoveryGroupCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateRecoveryGroupCommand.ts index 7e87ceca90b7a..aab93c653d91b 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateRecoveryGroupCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateRecoveryGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRecoveryGroupRequest, CreateRecoveryGroupResponse } from "../models/models_0"; -import { +import type { CreateRecoveryGroupRequest, CreateRecoveryGroupResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/CreateResourceSetCommand.ts b/clients/client-route53-recovery-readiness/src/commands/CreateResourceSetCommand.ts index bbdf8a6c29c2c..3488b6eea9d5e 100644 --- a/clients/client-route53-recovery-readiness/src/commands/CreateResourceSetCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/CreateResourceSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceSetRequest, CreateResourceSetResponse } from "../models/models_0"; -import { +import type { CreateResourceSetRequest, CreateResourceSetResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteCellCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteCellCommand.ts index 01e988c295c43..0c587be8b9a53 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteCellCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteCellCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCellRequest } from "../models/models_0"; -import { +import type { DeleteCellRequest } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteCrossAccountAuthorizationCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteCrossAccountAuthorizationCommand.ts index c12b520c4be3e..83e88ad929044 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteCrossAccountAuthorizationCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteCrossAccountAuthorizationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCrossAccountAuthorizationRequest, DeleteCrossAccountAuthorizationResponse } from "../models/models_0"; -import { +import type { + DeleteCrossAccountAuthorizationRequest, + DeleteCrossAccountAuthorizationResponse, +} from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteReadinessCheckCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteReadinessCheckCommand.ts index 996e32fbafbc4..7b05b45fc9387 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteReadinessCheckCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteReadinessCheckCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReadinessCheckRequest } from "../models/models_0"; -import { +import type { DeleteReadinessCheckRequest } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteRecoveryGroupCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteRecoveryGroupCommand.ts index 40b5282367dd7..979fc8870880a 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteRecoveryGroupCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteRecoveryGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecoveryGroupRequest } from "../models/models_0"; -import { +import type { DeleteRecoveryGroupRequest } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/DeleteResourceSetCommand.ts b/clients/client-route53-recovery-readiness/src/commands/DeleteResourceSetCommand.ts index 24c12178c6c15..4ae509ab1cbf6 100644 --- a/clients/client-route53-recovery-readiness/src/commands/DeleteResourceSetCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/DeleteResourceSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceSetRequest } from "../models/models_0"; -import { +import type { DeleteResourceSetRequest } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/GetArchitectureRecommendationsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetArchitectureRecommendationsCommand.ts index 967031f67e120..8daf96fd94bc1 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetArchitectureRecommendationsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetArchitectureRecommendationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetArchitectureRecommendationsRequest, GetArchitectureRecommendationsResponse } from "../models/models_0"; -import { +import type { GetArchitectureRecommendationsRequest, GetArchitectureRecommendationsResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/GetCellCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetCellCommand.ts index ba502dda1bad5..e9d5d6467fbd3 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetCellCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetCellCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCellRequest, GetCellResponse } from "../models/models_0"; -import { +import type { GetCellRequest, GetCellResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/GetCellReadinessSummaryCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetCellReadinessSummaryCommand.ts index 3ce1fda3b72bb..37878bf1dcdd2 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetCellReadinessSummaryCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetCellReadinessSummaryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCellReadinessSummaryRequest, GetCellReadinessSummaryResponse } from "../models/models_0"; -import { +import type { GetCellReadinessSummaryRequest, GetCellReadinessSummaryResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckCommand.ts index afc9d9ec3e1ec..80ee0dfed01cc 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReadinessCheckRequest, GetReadinessCheckResponse } from "../models/models_0"; -import { +import type { GetReadinessCheckRequest, GetReadinessCheckResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckResourceStatusCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckResourceStatusCommand.ts index 3afa48d010965..880ab0a63c02b 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckResourceStatusCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckResourceStatusCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReadinessCheckResourceStatusRequest, GetReadinessCheckResourceStatusResponse } from "../models/models_0"; -import { +import type { + GetReadinessCheckResourceStatusRequest, + GetReadinessCheckResourceStatusResponse, +} from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckStatusCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckStatusCommand.ts index 4dd20626ca34d..75df3fa2f95b1 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckStatusCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetReadinessCheckStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReadinessCheckStatusRequest, GetReadinessCheckStatusResponse } from "../models/models_0"; -import { +import type { GetReadinessCheckStatusRequest, GetReadinessCheckStatusResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupCommand.ts index 1bd3bd5838c32..683a28440b94b 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecoveryGroupRequest, GetRecoveryGroupResponse } from "../models/models_0"; -import { +import type { GetRecoveryGroupRequest, GetRecoveryGroupResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupReadinessSummaryCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupReadinessSummaryCommand.ts index f414216f1de95..263260691695f 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupReadinessSummaryCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetRecoveryGroupReadinessSummaryCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecoveryGroupReadinessSummaryRequest, GetRecoveryGroupReadinessSummaryResponse } from "../models/models_0"; -import { +import type { + GetRecoveryGroupReadinessSummaryRequest, + GetRecoveryGroupReadinessSummaryResponse, +} from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/GetResourceSetCommand.ts b/clients/client-route53-recovery-readiness/src/commands/GetResourceSetCommand.ts index b719a1b268469..9717cc803e168 100644 --- a/clients/client-route53-recovery-readiness/src/commands/GetResourceSetCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/GetResourceSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceSetRequest, GetResourceSetResponse } from "../models/models_0"; -import { +import type { GetResourceSetRequest, GetResourceSetResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/ListCellsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListCellsCommand.ts index f2334b747f2d5..dda297776b146 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListCellsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListCellsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCellsRequest, ListCellsResponse } from "../models/models_0"; -import { +import type { ListCellsRequest, ListCellsResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/ListCrossAccountAuthorizationsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListCrossAccountAuthorizationsCommand.ts index ee4b3e347feab..1798539c757ac 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListCrossAccountAuthorizationsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListCrossAccountAuthorizationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCrossAccountAuthorizationsRequest, ListCrossAccountAuthorizationsResponse } from "../models/models_0"; -import { +import type { ListCrossAccountAuthorizationsRequest, ListCrossAccountAuthorizationsResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/ListReadinessChecksCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListReadinessChecksCommand.ts index 75c685359eafb..a093a813aa592 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListReadinessChecksCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListReadinessChecksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReadinessChecksRequest, ListReadinessChecksResponse } from "../models/models_0"; -import { +import type { ListReadinessChecksRequest, ListReadinessChecksResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/ListRecoveryGroupsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListRecoveryGroupsCommand.ts index 2c976dbd50932..e55d96511d4dd 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListRecoveryGroupsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListRecoveryGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecoveryGroupsRequest, ListRecoveryGroupsResponse } from "../models/models_0"; -import { +import type { ListRecoveryGroupsRequest, ListRecoveryGroupsResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/ListResourceSetsCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListResourceSetsCommand.ts index 4b4d316be8833..7c2428b6c8854 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListResourceSetsCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListResourceSetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceSetsRequest, ListResourceSetsResponse } from "../models/models_0"; -import { +import type { ListResourceSetsRequest, ListResourceSetsResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/ListRulesCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListRulesCommand.ts index d4c270f54e27b..4d774ac770ace 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListRulesCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRulesRequest, ListRulesResponse } from "../models/models_0"; -import { +import type { ListRulesRequest, ListRulesResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/ListTagsForResourcesCommand.ts b/clients/client-route53-recovery-readiness/src/commands/ListTagsForResourcesCommand.ts index 10f5702bcfecb..2ece18a9ced40 100644 --- a/clients/client-route53-recovery-readiness/src/commands/ListTagsForResourcesCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/ListTagsForResourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourcesRequest, ListTagsForResourcesResponse } from "../models/models_0"; -import { +import type { ListTagsForResourcesRequest, ListTagsForResourcesResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/TagResourceCommand.ts b/clients/client-route53-recovery-readiness/src/commands/TagResourceCommand.ts index 3bddfdf1445e8..a3d2b74926390 100644 --- a/clients/client-route53-recovery-readiness/src/commands/TagResourceCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/UntagResourceCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UntagResourceCommand.ts index 3371356cbd1ee..fb0b6a105cde6 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UntagResourceCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; -import { +import type { UntagResourceRequest } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/UpdateCellCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UpdateCellCommand.ts index 0ed7779d1c926..15afb2f67d086 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UpdateCellCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UpdateCellCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCellRequest, UpdateCellResponse } from "../models/models_0"; -import { +import type { UpdateCellRequest, UpdateCellResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/UpdateReadinessCheckCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UpdateReadinessCheckCommand.ts index aa2e63f959d42..6e613f7d4ef65 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UpdateReadinessCheckCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UpdateReadinessCheckCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReadinessCheckRequest, UpdateReadinessCheckResponse } from "../models/models_0"; -import { +import type { UpdateReadinessCheckRequest, UpdateReadinessCheckResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/UpdateRecoveryGroupCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UpdateRecoveryGroupCommand.ts index 11a02c36a01b1..67ecc6759c7c1 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UpdateRecoveryGroupCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UpdateRecoveryGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecoveryGroupRequest, UpdateRecoveryGroupResponse } from "../models/models_0"; -import { +import type { UpdateRecoveryGroupRequest, UpdateRecoveryGroupResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/commands/UpdateResourceSetCommand.ts b/clients/client-route53-recovery-readiness/src/commands/UpdateResourceSetCommand.ts index 186ba3c45d47f..6f5bdee33daa5 100644 --- a/clients/client-route53-recovery-readiness/src/commands/UpdateResourceSetCommand.ts +++ b/clients/client-route53-recovery-readiness/src/commands/UpdateResourceSetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResourceSetRequest, UpdateResourceSetResponse } from "../models/models_0"; -import { +import type { UpdateResourceSetRequest, UpdateResourceSetResponse } from "../models/models_0"; +import type { Route53RecoveryReadinessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53-recovery-readiness/src/endpoint/EndpointParameters.ts b/clients/client-route53-recovery-readiness/src/endpoint/EndpointParameters.ts index 53175726eb73c..9192e71f94894 100644 --- a/clients/client-route53-recovery-readiness/src/endpoint/EndpointParameters.ts +++ b/clients/client-route53-recovery-readiness/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-route53-recovery-readiness/src/endpoint/endpointResolver.ts b/clients/client-route53-recovery-readiness/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-route53-recovery-readiness/src/endpoint/endpointResolver.ts +++ b/clients/client-route53-recovery-readiness/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-route53-recovery-readiness/src/extensionConfiguration.ts b/clients/client-route53-recovery-readiness/src/extensionConfiguration.ts index 25b16a6568308..3191272be86d8 100644 --- a/clients/client-route53-recovery-readiness/src/extensionConfiguration.ts +++ b/clients/client-route53-recovery-readiness/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-route53-recovery-readiness/src/models/Route53RecoveryReadinessServiceException.ts b/clients/client-route53-recovery-readiness/src/models/Route53RecoveryReadinessServiceException.ts index 3179fecccfcb0..42c001b561590 100644 --- a/clients/client-route53-recovery-readiness/src/models/Route53RecoveryReadinessServiceException.ts +++ b/clients/client-route53-recovery-readiness/src/models/Route53RecoveryReadinessServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-route53-recovery-readiness/src/models/errors.ts b/clients/client-route53-recovery-readiness/src/models/errors.ts index 907eebefc836e..5118077ec4d93 100644 --- a/clients/client-route53-recovery-readiness/src/models/errors.ts +++ b/clients/client-route53-recovery-readiness/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { Route53RecoveryReadinessServiceException as __BaseException } from "./Route53RecoveryReadinessServiceException"; diff --git a/clients/client-route53-recovery-readiness/src/pagination/GetCellReadinessSummaryPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/GetCellReadinessSummaryPaginator.ts index be2ef4089e2c9..462c264135e30 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/GetCellReadinessSummaryPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/GetCellReadinessSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCellReadinessSummaryCommand, diff --git a/clients/client-route53-recovery-readiness/src/pagination/GetReadinessCheckResourceStatusPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/GetReadinessCheckResourceStatusPaginator.ts index 5a54dbbce8572..f570337d295de 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/GetReadinessCheckResourceStatusPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/GetReadinessCheckResourceStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetReadinessCheckResourceStatusCommand, diff --git a/clients/client-route53-recovery-readiness/src/pagination/GetReadinessCheckStatusPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/GetReadinessCheckStatusPaginator.ts index ef99a094b024b..b02aec8296d5a 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/GetReadinessCheckStatusPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/GetReadinessCheckStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetReadinessCheckStatusCommand, diff --git a/clients/client-route53-recovery-readiness/src/pagination/GetRecoveryGroupReadinessSummaryPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/GetRecoveryGroupReadinessSummaryPaginator.ts index 9828044aa402f..facf67f210b51 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/GetRecoveryGroupReadinessSummaryPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/GetRecoveryGroupReadinessSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetRecoveryGroupReadinessSummaryCommand, diff --git a/clients/client-route53-recovery-readiness/src/pagination/Interfaces.ts b/clients/client-route53-recovery-readiness/src/pagination/Interfaces.ts index 2b36943075f9b..37fcb3c8c0c4c 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/Interfaces.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Route53RecoveryReadinessClient } from "../Route53RecoveryReadinessClient"; diff --git a/clients/client-route53-recovery-readiness/src/pagination/ListCellsPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/ListCellsPaginator.ts index 0e21db816aa7c..8a04eec02faf5 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/ListCellsPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/ListCellsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCellsCommand, ListCellsCommandInput, ListCellsCommandOutput } from "../commands/ListCellsCommand"; import { Route53RecoveryReadinessClient } from "../Route53RecoveryReadinessClient"; diff --git a/clients/client-route53-recovery-readiness/src/pagination/ListCrossAccountAuthorizationsPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/ListCrossAccountAuthorizationsPaginator.ts index c09f913e47519..9e0d23081c0d9 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/ListCrossAccountAuthorizationsPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/ListCrossAccountAuthorizationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCrossAccountAuthorizationsCommand, diff --git a/clients/client-route53-recovery-readiness/src/pagination/ListReadinessChecksPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/ListReadinessChecksPaginator.ts index 4c1775e6b828b..65d9fcab35b4b 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/ListReadinessChecksPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/ListReadinessChecksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReadinessChecksCommand, diff --git a/clients/client-route53-recovery-readiness/src/pagination/ListRecoveryGroupsPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/ListRecoveryGroupsPaginator.ts index 346fda50af245..bce897a98bece 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/ListRecoveryGroupsPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/ListRecoveryGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecoveryGroupsCommand, diff --git a/clients/client-route53-recovery-readiness/src/pagination/ListResourceSetsPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/ListResourceSetsPaginator.ts index bedee5d90f008..c1b4946218df8 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/ListResourceSetsPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/ListResourceSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceSetsCommand, diff --git a/clients/client-route53-recovery-readiness/src/pagination/ListRulesPaginator.ts b/clients/client-route53-recovery-readiness/src/pagination/ListRulesPaginator.ts index 04cc71aff1c8a..f6e4f61e4c179 100644 --- a/clients/client-route53-recovery-readiness/src/pagination/ListRulesPaginator.ts +++ b/clients/client-route53-recovery-readiness/src/pagination/ListRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRulesCommand, ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand"; import { Route53RecoveryReadinessClient } from "../Route53RecoveryReadinessClient"; diff --git a/clients/client-route53-recovery-readiness/src/runtimeConfig.browser.ts b/clients/client-route53-recovery-readiness/src/runtimeConfig.browser.ts index f7e309ad0fbc3..a5e8ef839d4fe 100644 --- a/clients/client-route53-recovery-readiness/src/runtimeConfig.browser.ts +++ b/clients/client-route53-recovery-readiness/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53RecoveryReadinessClientConfig } from "./Route53RecoveryReadinessClient"; + +import type { Route53RecoveryReadinessClientConfig } from "./Route53RecoveryReadinessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-route53-recovery-readiness/src/runtimeConfig.native.ts b/clients/client-route53-recovery-readiness/src/runtimeConfig.native.ts index 672f968f2f4fd..3083060a1ce66 100644 --- a/clients/client-route53-recovery-readiness/src/runtimeConfig.native.ts +++ b/clients/client-route53-recovery-readiness/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Route53RecoveryReadinessClientConfig } from "./Route53RecoveryReadinessClient"; +import type { Route53RecoveryReadinessClientConfig } from "./Route53RecoveryReadinessClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-route53-recovery-readiness/src/runtimeConfig.shared.ts b/clients/client-route53-recovery-readiness/src/runtimeConfig.shared.ts index 42b7afc753f38..b70458446111d 100644 --- a/clients/client-route53-recovery-readiness/src/runtimeConfig.shared.ts +++ b/clients/client-route53-recovery-readiness/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRoute53RecoveryReadinessHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Route53RecoveryReadinessClientConfig } from "./Route53RecoveryReadinessClient"; +import type { Route53RecoveryReadinessClientConfig } from "./Route53RecoveryReadinessClient"; /** * @internal diff --git a/clients/client-route53-recovery-readiness/src/runtimeConfig.ts b/clients/client-route53-recovery-readiness/src/runtimeConfig.ts index be12f90cff012..1cc6a62240d6c 100644 --- a/clients/client-route53-recovery-readiness/src/runtimeConfig.ts +++ b/clients/client-route53-recovery-readiness/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53RecoveryReadinessClientConfig } from "./Route53RecoveryReadinessClient"; + +import type { Route53RecoveryReadinessClientConfig } from "./Route53RecoveryReadinessClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-route53-recovery-readiness/src/runtimeExtensions.ts b/clients/client-route53-recovery-readiness/src/runtimeExtensions.ts index 1779e067254bf..8e1979c3101ae 100644 --- a/clients/client-route53-recovery-readiness/src/runtimeExtensions.ts +++ b/clients/client-route53-recovery-readiness/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Route53RecoveryReadinessExtensionConfiguration } from "./extensionConfiguration"; +import type { Route53RecoveryReadinessExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-route53-recovery-readiness/src/schemas/schemas_0.ts b/clients/client-route53-recovery-readiness/src/schemas/schemas_0.ts index 697ba8a0c63a2..ca6d6739d62c4 100644 --- a/clients/client-route53-recovery-readiness/src/schemas/schemas_0.ts +++ b/clients/client-route53-recovery-readiness/src/schemas/schemas_0.ts @@ -223,7 +223,7 @@ const n0 = "com.amazonaws.route53recoveryreadiness"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-route53globalresolver/package.json b/clients/client-route53globalresolver/package.json index f268756b130d2..6ca74373d8ef6 100644 --- a/clients/client-route53globalresolver/package.json +++ b/clients/client-route53globalresolver/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-route53globalresolver/src/Route53GlobalResolver.ts b/clients/client-route53globalresolver/src/Route53GlobalResolver.ts index 702e040581488..52c5e297365ee 100644 --- a/clients/client-route53globalresolver/src/Route53GlobalResolver.ts +++ b/clients/client-route53globalresolver/src/Route53GlobalResolver.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateHostedZoneCommand, @@ -229,7 +229,7 @@ import { UpdateHostedZoneAssociationCommandInput, UpdateHostedZoneAssociationCommandOutput, } from "./commands/UpdateHostedZoneAssociationCommand"; -import { Route53GlobalResolverClient, Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient"; +import { Route53GlobalResolverClient } from "./Route53GlobalResolverClient"; const commands = { AssociateHostedZoneCommand, diff --git a/clients/client-route53globalresolver/src/Route53GlobalResolverClient.ts b/clients/client-route53globalresolver/src/Route53GlobalResolverClient.ts index bbd13dde28515..a0f051f9a908b 100644 --- a/clients/client-route53globalresolver/src/Route53GlobalResolverClient.ts +++ b/clients/client-route53globalresolver/src/Route53GlobalResolverClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRoute53GlobalResolverHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -177,7 +186,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-route53globalresolver/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-route53globalresolver/src/auth/httpAuthExtensionConfiguration.ts index 414f6932b6ca8..698ac2d7846b2 100644 --- a/clients/client-route53globalresolver/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-route53globalresolver/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Route53GlobalResolverHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Route53GlobalResolverHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-route53globalresolver/src/auth/httpAuthSchemeProvider.ts b/clients/client-route53globalresolver/src/auth/httpAuthSchemeProvider.ts index 918a201fff16b..fc3257d74ea97 100644 --- a/clients/client-route53globalresolver/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-route53globalresolver/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type Route53GlobalResolverClientResolvedConfig, Route53GlobalResolverClientConfig, - Route53GlobalResolverClientResolvedConfig, } from "../Route53GlobalResolverClient"; /** diff --git a/clients/client-route53globalresolver/src/commands/AssociateHostedZoneCommand.ts b/clients/client-route53globalresolver/src/commands/AssociateHostedZoneCommand.ts index 456362915adab..5aaab8081dab8 100644 --- a/clients/client-route53globalresolver/src/commands/AssociateHostedZoneCommand.ts +++ b/clients/client-route53globalresolver/src/commands/AssociateHostedZoneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateHostedZoneInput, AssociateHostedZoneOutput } from "../models/models_0"; -import { +import type { AssociateHostedZoneInput, AssociateHostedZoneOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/BatchCreateFirewallRuleCommand.ts b/clients/client-route53globalresolver/src/commands/BatchCreateFirewallRuleCommand.ts index ff48a1691367a..f4ac124262694 100644 --- a/clients/client-route53globalresolver/src/commands/BatchCreateFirewallRuleCommand.ts +++ b/clients/client-route53globalresolver/src/commands/BatchCreateFirewallRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateFirewallRuleInput, BatchCreateFirewallRuleOutput } from "../models/models_0"; -import { +import type { BatchCreateFirewallRuleInput, BatchCreateFirewallRuleOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/BatchDeleteFirewallRuleCommand.ts b/clients/client-route53globalresolver/src/commands/BatchDeleteFirewallRuleCommand.ts index d6daf280f492a..4f66b87f220d7 100644 --- a/clients/client-route53globalresolver/src/commands/BatchDeleteFirewallRuleCommand.ts +++ b/clients/client-route53globalresolver/src/commands/BatchDeleteFirewallRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteFirewallRuleInput, BatchDeleteFirewallRuleOutput } from "../models/models_0"; -import { +import type { BatchDeleteFirewallRuleInput, BatchDeleteFirewallRuleOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/BatchUpdateFirewallRuleCommand.ts b/clients/client-route53globalresolver/src/commands/BatchUpdateFirewallRuleCommand.ts index 5b1490f90acfb..0c1f4597c3e2b 100644 --- a/clients/client-route53globalresolver/src/commands/BatchUpdateFirewallRuleCommand.ts +++ b/clients/client-route53globalresolver/src/commands/BatchUpdateFirewallRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateFirewallRuleInput, BatchUpdateFirewallRuleOutput } from "../models/models_0"; -import { +import type { BatchUpdateFirewallRuleInput, BatchUpdateFirewallRuleOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/CreateAccessSourceCommand.ts b/clients/client-route53globalresolver/src/commands/CreateAccessSourceCommand.ts index b2d23d5afacdc..a53ae8b6af313 100644 --- a/clients/client-route53globalresolver/src/commands/CreateAccessSourceCommand.ts +++ b/clients/client-route53globalresolver/src/commands/CreateAccessSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessSourceInput, CreateAccessSourceOutput } from "../models/models_0"; -import { +import type { CreateAccessSourceInput, CreateAccessSourceOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/CreateAccessTokenCommand.ts b/clients/client-route53globalresolver/src/commands/CreateAccessTokenCommand.ts index bcc51da085b3f..46f70b8f61339 100644 --- a/clients/client-route53globalresolver/src/commands/CreateAccessTokenCommand.ts +++ b/clients/client-route53globalresolver/src/commands/CreateAccessTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessTokenInput, CreateAccessTokenOutput } from "../models/models_0"; -import { +import type { CreateAccessTokenInput, CreateAccessTokenOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/CreateDNSViewCommand.ts b/clients/client-route53globalresolver/src/commands/CreateDNSViewCommand.ts index 9dbdda43d0b83..864847d8c3f9b 100644 --- a/clients/client-route53globalresolver/src/commands/CreateDNSViewCommand.ts +++ b/clients/client-route53globalresolver/src/commands/CreateDNSViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDNSViewInput, CreateDNSViewOutput } from "../models/models_0"; -import { +import type { CreateDNSViewInput, CreateDNSViewOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/CreateFirewallDomainListCommand.ts b/clients/client-route53globalresolver/src/commands/CreateFirewallDomainListCommand.ts index 6be5b37bd0132..e57d7af1b5853 100644 --- a/clients/client-route53globalresolver/src/commands/CreateFirewallDomainListCommand.ts +++ b/clients/client-route53globalresolver/src/commands/CreateFirewallDomainListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFirewallDomainListInput, CreateFirewallDomainListOutput } from "../models/models_0"; -import { +import type { CreateFirewallDomainListInput, CreateFirewallDomainListOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/CreateFirewallRuleCommand.ts b/clients/client-route53globalresolver/src/commands/CreateFirewallRuleCommand.ts index 992a1ba9a6fc5..5444d65c1c0cf 100644 --- a/clients/client-route53globalresolver/src/commands/CreateFirewallRuleCommand.ts +++ b/clients/client-route53globalresolver/src/commands/CreateFirewallRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFirewallRuleInput, CreateFirewallRuleOutput } from "../models/models_0"; -import { +import type { CreateFirewallRuleInput, CreateFirewallRuleOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/CreateGlobalResolverCommand.ts b/clients/client-route53globalresolver/src/commands/CreateGlobalResolverCommand.ts index 6156908f9b4a3..be22fbf30c06f 100644 --- a/clients/client-route53globalresolver/src/commands/CreateGlobalResolverCommand.ts +++ b/clients/client-route53globalresolver/src/commands/CreateGlobalResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGlobalResolverInput, CreateGlobalResolverOutput } from "../models/models_0"; -import { +import type { CreateGlobalResolverInput, CreateGlobalResolverOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/DeleteAccessSourceCommand.ts b/clients/client-route53globalresolver/src/commands/DeleteAccessSourceCommand.ts index 40ed6b4c4050d..20884c8568a75 100644 --- a/clients/client-route53globalresolver/src/commands/DeleteAccessSourceCommand.ts +++ b/clients/client-route53globalresolver/src/commands/DeleteAccessSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessSourceInput, DeleteAccessSourceOutput } from "../models/models_0"; -import { +import type { DeleteAccessSourceInput, DeleteAccessSourceOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/DeleteAccessTokenCommand.ts b/clients/client-route53globalresolver/src/commands/DeleteAccessTokenCommand.ts index 0d9b741898ce3..92b634ace0d19 100644 --- a/clients/client-route53globalresolver/src/commands/DeleteAccessTokenCommand.ts +++ b/clients/client-route53globalresolver/src/commands/DeleteAccessTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessTokenInput, DeleteAccessTokenOutput } from "../models/models_0"; -import { +import type { DeleteAccessTokenInput, DeleteAccessTokenOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/DeleteDNSViewCommand.ts b/clients/client-route53globalresolver/src/commands/DeleteDNSViewCommand.ts index 28f8a30164aa0..4cd80d19ded48 100644 --- a/clients/client-route53globalresolver/src/commands/DeleteDNSViewCommand.ts +++ b/clients/client-route53globalresolver/src/commands/DeleteDNSViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDNSViewInput, DeleteDNSViewOutput } from "../models/models_0"; -import { +import type { DeleteDNSViewInput, DeleteDNSViewOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/DeleteFirewallDomainListCommand.ts b/clients/client-route53globalresolver/src/commands/DeleteFirewallDomainListCommand.ts index 11defceba5fe5..39b3c1d0a0c67 100644 --- a/clients/client-route53globalresolver/src/commands/DeleteFirewallDomainListCommand.ts +++ b/clients/client-route53globalresolver/src/commands/DeleteFirewallDomainListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFirewallDomainListInput, DeleteFirewallDomainListOutput } from "../models/models_0"; -import { +import type { DeleteFirewallDomainListInput, DeleteFirewallDomainListOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/DeleteFirewallRuleCommand.ts b/clients/client-route53globalresolver/src/commands/DeleteFirewallRuleCommand.ts index 45fc821cc1e25..743719a5a0fb2 100644 --- a/clients/client-route53globalresolver/src/commands/DeleteFirewallRuleCommand.ts +++ b/clients/client-route53globalresolver/src/commands/DeleteFirewallRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFirewallRuleInput, DeleteFirewallRuleOutput } from "../models/models_0"; -import { +import type { DeleteFirewallRuleInput, DeleteFirewallRuleOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/DeleteGlobalResolverCommand.ts b/clients/client-route53globalresolver/src/commands/DeleteGlobalResolverCommand.ts index 3622c794608b3..1f5cbcb15f8fd 100644 --- a/clients/client-route53globalresolver/src/commands/DeleteGlobalResolverCommand.ts +++ b/clients/client-route53globalresolver/src/commands/DeleteGlobalResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGlobalResolverInput, DeleteGlobalResolverOutput } from "../models/models_0"; -import { +import type { DeleteGlobalResolverInput, DeleteGlobalResolverOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/DisableDNSViewCommand.ts b/clients/client-route53globalresolver/src/commands/DisableDNSViewCommand.ts index 835b77cd4d6dc..bd9b50f718939 100644 --- a/clients/client-route53globalresolver/src/commands/DisableDNSViewCommand.ts +++ b/clients/client-route53globalresolver/src/commands/DisableDNSViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableDNSViewInput, DisableDNSViewOutput } from "../models/models_0"; -import { +import type { DisableDNSViewInput, DisableDNSViewOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/DisassociateHostedZoneCommand.ts b/clients/client-route53globalresolver/src/commands/DisassociateHostedZoneCommand.ts index 08fb141df08c4..5f9c9e3b089ef 100644 --- a/clients/client-route53globalresolver/src/commands/DisassociateHostedZoneCommand.ts +++ b/clients/client-route53globalresolver/src/commands/DisassociateHostedZoneCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateHostedZoneInput, DisassociateHostedZoneOutput } from "../models/models_0"; -import { +import type { DisassociateHostedZoneInput, DisassociateHostedZoneOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/EnableDNSViewCommand.ts b/clients/client-route53globalresolver/src/commands/EnableDNSViewCommand.ts index a0b386e441104..16129c0ebd991 100644 --- a/clients/client-route53globalresolver/src/commands/EnableDNSViewCommand.ts +++ b/clients/client-route53globalresolver/src/commands/EnableDNSViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableDNSViewInput, EnableDNSViewOutput } from "../models/models_0"; -import { +import type { EnableDNSViewInput, EnableDNSViewOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/GetAccessSourceCommand.ts b/clients/client-route53globalresolver/src/commands/GetAccessSourceCommand.ts index 383125e21ea7f..504043edea7d6 100644 --- a/clients/client-route53globalresolver/src/commands/GetAccessSourceCommand.ts +++ b/clients/client-route53globalresolver/src/commands/GetAccessSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessSourceInput, GetAccessSourceOutput } from "../models/models_0"; -import { +import type { GetAccessSourceInput, GetAccessSourceOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/GetAccessTokenCommand.ts b/clients/client-route53globalresolver/src/commands/GetAccessTokenCommand.ts index 5941f5c67c5c8..59bace1b73f35 100644 --- a/clients/client-route53globalresolver/src/commands/GetAccessTokenCommand.ts +++ b/clients/client-route53globalresolver/src/commands/GetAccessTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessTokenInput, GetAccessTokenOutput } from "../models/models_0"; -import { +import type { GetAccessTokenInput, GetAccessTokenOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/GetDNSViewCommand.ts b/clients/client-route53globalresolver/src/commands/GetDNSViewCommand.ts index 13c22abcb08d7..b6e9b4885abb7 100644 --- a/clients/client-route53globalresolver/src/commands/GetDNSViewCommand.ts +++ b/clients/client-route53globalresolver/src/commands/GetDNSViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDNSViewInput, GetDNSViewOutput } from "../models/models_0"; -import { +import type { GetDNSViewInput, GetDNSViewOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/GetFirewallDomainListCommand.ts b/clients/client-route53globalresolver/src/commands/GetFirewallDomainListCommand.ts index 6f15371ec5596..2389c85772ebc 100644 --- a/clients/client-route53globalresolver/src/commands/GetFirewallDomainListCommand.ts +++ b/clients/client-route53globalresolver/src/commands/GetFirewallDomainListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFirewallDomainListInput, GetFirewallDomainListOutput } from "../models/models_0"; -import { +import type { GetFirewallDomainListInput, GetFirewallDomainListOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/GetFirewallRuleCommand.ts b/clients/client-route53globalresolver/src/commands/GetFirewallRuleCommand.ts index a73d0b07bd084..cd985ff1cd0dc 100644 --- a/clients/client-route53globalresolver/src/commands/GetFirewallRuleCommand.ts +++ b/clients/client-route53globalresolver/src/commands/GetFirewallRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFirewallRuleInput, GetFirewallRuleOutput } from "../models/models_0"; -import { +import type { GetFirewallRuleInput, GetFirewallRuleOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/GetGlobalResolverCommand.ts b/clients/client-route53globalresolver/src/commands/GetGlobalResolverCommand.ts index bfe3f126943df..57dfa3770c49a 100644 --- a/clients/client-route53globalresolver/src/commands/GetGlobalResolverCommand.ts +++ b/clients/client-route53globalresolver/src/commands/GetGlobalResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGlobalResolverInput, GetGlobalResolverOutput } from "../models/models_0"; -import { +import type { GetGlobalResolverInput, GetGlobalResolverOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/GetHostedZoneAssociationCommand.ts b/clients/client-route53globalresolver/src/commands/GetHostedZoneAssociationCommand.ts index d290b5139b9e8..71c6a859cf397 100644 --- a/clients/client-route53globalresolver/src/commands/GetHostedZoneAssociationCommand.ts +++ b/clients/client-route53globalresolver/src/commands/GetHostedZoneAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetHostedZoneAssociationInput, GetHostedZoneAssociationOutput } from "../models/models_0"; -import { +import type { GetHostedZoneAssociationInput, GetHostedZoneAssociationOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/GetManagedFirewallDomainListCommand.ts b/clients/client-route53globalresolver/src/commands/GetManagedFirewallDomainListCommand.ts index 7321f2438f98a..c02a32fcab482 100644 --- a/clients/client-route53globalresolver/src/commands/GetManagedFirewallDomainListCommand.ts +++ b/clients/client-route53globalresolver/src/commands/GetManagedFirewallDomainListCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedFirewallDomainListInput, GetManagedFirewallDomainListOutput } from "../models/models_0"; -import { +import type { GetManagedFirewallDomainListInput, GetManagedFirewallDomainListOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ImportFirewallDomainsCommand.ts b/clients/client-route53globalresolver/src/commands/ImportFirewallDomainsCommand.ts index 9fca55eb56f9f..7517c57a7aff2 100644 --- a/clients/client-route53globalresolver/src/commands/ImportFirewallDomainsCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ImportFirewallDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportFirewallDomainsInput, ImportFirewallDomainsOutput } from "../models/models_0"; -import { +import type { ImportFirewallDomainsInput, ImportFirewallDomainsOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListAccessSourcesCommand.ts b/clients/client-route53globalresolver/src/commands/ListAccessSourcesCommand.ts index 8c4d176313d06..b564d794e6e5a 100644 --- a/clients/client-route53globalresolver/src/commands/ListAccessSourcesCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListAccessSourcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessSourcesInput, ListAccessSourcesOutput } from "../models/models_0"; -import { +import type { ListAccessSourcesInput, ListAccessSourcesOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListAccessTokensCommand.ts b/clients/client-route53globalresolver/src/commands/ListAccessTokensCommand.ts index 786298e0418be..06ac3c0c7b917 100644 --- a/clients/client-route53globalresolver/src/commands/ListAccessTokensCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListAccessTokensCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessTokensInput, ListAccessTokensOutput } from "../models/models_0"; -import { +import type { ListAccessTokensInput, ListAccessTokensOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListDNSViewsCommand.ts b/clients/client-route53globalresolver/src/commands/ListDNSViewsCommand.ts index 66c66fe61114a..5ac3d47ac8c59 100644 --- a/clients/client-route53globalresolver/src/commands/ListDNSViewsCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListDNSViewsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDNSViewsInput, ListDNSViewsOutput } from "../models/models_0"; -import { +import type { ListDNSViewsInput, ListDNSViewsOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListFirewallDomainListsCommand.ts b/clients/client-route53globalresolver/src/commands/ListFirewallDomainListsCommand.ts index a99c9ce38dc0b..8f56556719cbc 100644 --- a/clients/client-route53globalresolver/src/commands/ListFirewallDomainListsCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListFirewallDomainListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallDomainListsInput, ListFirewallDomainListsOutput } from "../models/models_0"; -import { +import type { ListFirewallDomainListsInput, ListFirewallDomainListsOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListFirewallDomainsCommand.ts b/clients/client-route53globalresolver/src/commands/ListFirewallDomainsCommand.ts index 5e0e0c529b095..8629b0fb427fb 100644 --- a/clients/client-route53globalresolver/src/commands/ListFirewallDomainsCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListFirewallDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallDomainsInput, ListFirewallDomainsOutput } from "../models/models_0"; -import { +import type { ListFirewallDomainsInput, ListFirewallDomainsOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListFirewallRulesCommand.ts b/clients/client-route53globalresolver/src/commands/ListFirewallRulesCommand.ts index 73042f6c326aa..9d757d38d012a 100644 --- a/clients/client-route53globalresolver/src/commands/ListFirewallRulesCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListFirewallRulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallRulesInput, ListFirewallRulesOutput } from "../models/models_0"; -import { +import type { ListFirewallRulesInput, ListFirewallRulesOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListGlobalResolversCommand.ts b/clients/client-route53globalresolver/src/commands/ListGlobalResolversCommand.ts index 0b6da77730063..82213cf7657bb 100644 --- a/clients/client-route53globalresolver/src/commands/ListGlobalResolversCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListGlobalResolversCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGlobalResolversInput, ListGlobalResolversOutput } from "../models/models_0"; -import { +import type { ListGlobalResolversInput, ListGlobalResolversOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListHostedZoneAssociationsCommand.ts b/clients/client-route53globalresolver/src/commands/ListHostedZoneAssociationsCommand.ts index e2c5fdcb5ff8f..6b194aa6ce6f9 100644 --- a/clients/client-route53globalresolver/src/commands/ListHostedZoneAssociationsCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListHostedZoneAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHostedZoneAssociationsInput, ListHostedZoneAssociationsOutput } from "../models/models_0"; -import { +import type { ListHostedZoneAssociationsInput, ListHostedZoneAssociationsOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListManagedFirewallDomainListsCommand.ts b/clients/client-route53globalresolver/src/commands/ListManagedFirewallDomainListsCommand.ts index d353684b45564..e9a110310c267 100644 --- a/clients/client-route53globalresolver/src/commands/ListManagedFirewallDomainListsCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListManagedFirewallDomainListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListManagedFirewallDomainListsInput, ListManagedFirewallDomainListsOutput } from "../models/models_0"; -import { +import type { ListManagedFirewallDomainListsInput, ListManagedFirewallDomainListsOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/ListTagsForResourceCommand.ts b/clients/client-route53globalresolver/src/commands/ListTagsForResourceCommand.ts index 1998e2b1a261b..310040f1c9e0e 100644 --- a/clients/client-route53globalresolver/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-route53globalresolver/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/TagResourceCommand.ts b/clients/client-route53globalresolver/src/commands/TagResourceCommand.ts index 9ae8853a41c64..0e82657e89d85 100644 --- a/clients/client-route53globalresolver/src/commands/TagResourceCommand.ts +++ b/clients/client-route53globalresolver/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/UntagResourceCommand.ts b/clients/client-route53globalresolver/src/commands/UntagResourceCommand.ts index 798a74e3701b1..3176b0420fbbc 100644 --- a/clients/client-route53globalresolver/src/commands/UntagResourceCommand.ts +++ b/clients/client-route53globalresolver/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/UpdateAccessSourceCommand.ts b/clients/client-route53globalresolver/src/commands/UpdateAccessSourceCommand.ts index ea2dd5e5b4b68..146be8bee75f9 100644 --- a/clients/client-route53globalresolver/src/commands/UpdateAccessSourceCommand.ts +++ b/clients/client-route53globalresolver/src/commands/UpdateAccessSourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccessSourceInput, UpdateAccessSourceOutput } from "../models/models_0"; -import { +import type { UpdateAccessSourceInput, UpdateAccessSourceOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/UpdateAccessTokenCommand.ts b/clients/client-route53globalresolver/src/commands/UpdateAccessTokenCommand.ts index 055af0d8d4089..81eec50263a32 100644 --- a/clients/client-route53globalresolver/src/commands/UpdateAccessTokenCommand.ts +++ b/clients/client-route53globalresolver/src/commands/UpdateAccessTokenCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccessTokenInput, UpdateAccessTokenOutput } from "../models/models_0"; -import { +import type { UpdateAccessTokenInput, UpdateAccessTokenOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/UpdateDNSViewCommand.ts b/clients/client-route53globalresolver/src/commands/UpdateDNSViewCommand.ts index 7c14643837f9d..dc737cb97d4f8 100644 --- a/clients/client-route53globalresolver/src/commands/UpdateDNSViewCommand.ts +++ b/clients/client-route53globalresolver/src/commands/UpdateDNSViewCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDNSViewInput, UpdateDNSViewOutput } from "../models/models_0"; -import { +import type { UpdateDNSViewInput, UpdateDNSViewOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/UpdateFirewallDomainsCommand.ts b/clients/client-route53globalresolver/src/commands/UpdateFirewallDomainsCommand.ts index f912e76e2af0a..d2ce34b0c48c6 100644 --- a/clients/client-route53globalresolver/src/commands/UpdateFirewallDomainsCommand.ts +++ b/clients/client-route53globalresolver/src/commands/UpdateFirewallDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFirewallDomainsInput, UpdateFirewallDomainsOutput } from "../models/models_0"; -import { +import type { UpdateFirewallDomainsInput, UpdateFirewallDomainsOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/UpdateFirewallRuleCommand.ts b/clients/client-route53globalresolver/src/commands/UpdateFirewallRuleCommand.ts index dc118b7f7a6f7..6a67edff673ef 100644 --- a/clients/client-route53globalresolver/src/commands/UpdateFirewallRuleCommand.ts +++ b/clients/client-route53globalresolver/src/commands/UpdateFirewallRuleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFirewallRuleInput, UpdateFirewallRuleOutput } from "../models/models_0"; -import { +import type { UpdateFirewallRuleInput, UpdateFirewallRuleOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/UpdateGlobalResolverCommand.ts b/clients/client-route53globalresolver/src/commands/UpdateGlobalResolverCommand.ts index 582918472b227..6444ac044b5cd 100644 --- a/clients/client-route53globalresolver/src/commands/UpdateGlobalResolverCommand.ts +++ b/clients/client-route53globalresolver/src/commands/UpdateGlobalResolverCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlobalResolverInput, UpdateGlobalResolverOutput } from "../models/models_0"; -import { +import type { UpdateGlobalResolverInput, UpdateGlobalResolverOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/commands/UpdateHostedZoneAssociationCommand.ts b/clients/client-route53globalresolver/src/commands/UpdateHostedZoneAssociationCommand.ts index 6bba8cf8180a6..8bd8dd2f3d404 100644 --- a/clients/client-route53globalresolver/src/commands/UpdateHostedZoneAssociationCommand.ts +++ b/clients/client-route53globalresolver/src/commands/UpdateHostedZoneAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHostedZoneAssociationInput, UpdateHostedZoneAssociationOutput } from "../models/models_0"; -import { +import type { UpdateHostedZoneAssociationInput, UpdateHostedZoneAssociationOutput } from "../models/models_0"; +import type { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-route53globalresolver/src/endpoint/EndpointParameters.ts b/clients/client-route53globalresolver/src/endpoint/EndpointParameters.ts index de75675bf6c24..9fece0488ae67 100644 --- a/clients/client-route53globalresolver/src/endpoint/EndpointParameters.ts +++ b/clients/client-route53globalresolver/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-route53globalresolver/src/endpoint/endpointResolver.ts b/clients/client-route53globalresolver/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-route53globalresolver/src/endpoint/endpointResolver.ts +++ b/clients/client-route53globalresolver/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-route53globalresolver/src/extensionConfiguration.ts b/clients/client-route53globalresolver/src/extensionConfiguration.ts index 147b83b478b53..a5a0fdd7d1663 100644 --- a/clients/client-route53globalresolver/src/extensionConfiguration.ts +++ b/clients/client-route53globalresolver/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-route53globalresolver/src/models/Route53GlobalResolverServiceException.ts b/clients/client-route53globalresolver/src/models/Route53GlobalResolverServiceException.ts index 0ad29e2ac7c7b..8f624864ceb09 100644 --- a/clients/client-route53globalresolver/src/models/Route53GlobalResolverServiceException.ts +++ b/clients/client-route53globalresolver/src/models/Route53GlobalResolverServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-route53globalresolver/src/models/errors.ts b/clients/client-route53globalresolver/src/models/errors.ts index dd8ad4714e333..5c14609412bd7 100644 --- a/clients/client-route53globalresolver/src/models/errors.ts +++ b/clients/client-route53globalresolver/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-route53globalresolver/src/pagination/Interfaces.ts b/clients/client-route53globalresolver/src/pagination/Interfaces.ts index e1c3283a4e941..eababe341c49d 100644 --- a/clients/client-route53globalresolver/src/pagination/Interfaces.ts +++ b/clients/client-route53globalresolver/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Route53GlobalResolverClient } from "../Route53GlobalResolverClient"; diff --git a/clients/client-route53globalresolver/src/pagination/ListAccessSourcesPaginator.ts b/clients/client-route53globalresolver/src/pagination/ListAccessSourcesPaginator.ts index d59a4892ffe26..749dfb1ddc7db 100644 --- a/clients/client-route53globalresolver/src/pagination/ListAccessSourcesPaginator.ts +++ b/clients/client-route53globalresolver/src/pagination/ListAccessSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessSourcesCommand, diff --git a/clients/client-route53globalresolver/src/pagination/ListAccessTokensPaginator.ts b/clients/client-route53globalresolver/src/pagination/ListAccessTokensPaginator.ts index 80c3e87435627..d65d80b207c40 100644 --- a/clients/client-route53globalresolver/src/pagination/ListAccessTokensPaginator.ts +++ b/clients/client-route53globalresolver/src/pagination/ListAccessTokensPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessTokensCommand, diff --git a/clients/client-route53globalresolver/src/pagination/ListDNSViewsPaginator.ts b/clients/client-route53globalresolver/src/pagination/ListDNSViewsPaginator.ts index 147b205a7a89c..adc3d7c75df54 100644 --- a/clients/client-route53globalresolver/src/pagination/ListDNSViewsPaginator.ts +++ b/clients/client-route53globalresolver/src/pagination/ListDNSViewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDNSViewsCommand, diff --git a/clients/client-route53globalresolver/src/pagination/ListFirewallDomainListsPaginator.ts b/clients/client-route53globalresolver/src/pagination/ListFirewallDomainListsPaginator.ts index af29f10086b80..920a3062b6a17 100644 --- a/clients/client-route53globalresolver/src/pagination/ListFirewallDomainListsPaginator.ts +++ b/clients/client-route53globalresolver/src/pagination/ListFirewallDomainListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallDomainListsCommand, diff --git a/clients/client-route53globalresolver/src/pagination/ListFirewallDomainsPaginator.ts b/clients/client-route53globalresolver/src/pagination/ListFirewallDomainsPaginator.ts index aeecd0dfa683c..a5c6526f8c9ba 100644 --- a/clients/client-route53globalresolver/src/pagination/ListFirewallDomainsPaginator.ts +++ b/clients/client-route53globalresolver/src/pagination/ListFirewallDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallDomainsCommand, diff --git a/clients/client-route53globalresolver/src/pagination/ListFirewallRulesPaginator.ts b/clients/client-route53globalresolver/src/pagination/ListFirewallRulesPaginator.ts index 93f2249cc0ada..215b89f3c99fd 100644 --- a/clients/client-route53globalresolver/src/pagination/ListFirewallRulesPaginator.ts +++ b/clients/client-route53globalresolver/src/pagination/ListFirewallRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallRulesCommand, diff --git a/clients/client-route53globalresolver/src/pagination/ListGlobalResolversPaginator.ts b/clients/client-route53globalresolver/src/pagination/ListGlobalResolversPaginator.ts index d0ff7b00a8b64..f4a596499e651 100644 --- a/clients/client-route53globalresolver/src/pagination/ListGlobalResolversPaginator.ts +++ b/clients/client-route53globalresolver/src/pagination/ListGlobalResolversPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGlobalResolversCommand, diff --git a/clients/client-route53globalresolver/src/pagination/ListHostedZoneAssociationsPaginator.ts b/clients/client-route53globalresolver/src/pagination/ListHostedZoneAssociationsPaginator.ts index 15f14ffdb923b..945e97310b471 100644 --- a/clients/client-route53globalresolver/src/pagination/ListHostedZoneAssociationsPaginator.ts +++ b/clients/client-route53globalresolver/src/pagination/ListHostedZoneAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHostedZoneAssociationsCommand, diff --git a/clients/client-route53globalresolver/src/pagination/ListManagedFirewallDomainListsPaginator.ts b/clients/client-route53globalresolver/src/pagination/ListManagedFirewallDomainListsPaginator.ts index bcc6a76ba2584..71fd0274ec849 100644 --- a/clients/client-route53globalresolver/src/pagination/ListManagedFirewallDomainListsPaginator.ts +++ b/clients/client-route53globalresolver/src/pagination/ListManagedFirewallDomainListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedFirewallDomainListsCommand, diff --git a/clients/client-route53globalresolver/src/runtimeConfig.browser.ts b/clients/client-route53globalresolver/src/runtimeConfig.browser.ts index c47b3200f8230..a47a9b3a17790 100644 --- a/clients/client-route53globalresolver/src/runtimeConfig.browser.ts +++ b/clients/client-route53globalresolver/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient"; + +import type { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-route53globalresolver/src/runtimeConfig.native.ts b/clients/client-route53globalresolver/src/runtimeConfig.native.ts index e29a085de2118..925077223743b 100644 --- a/clients/client-route53globalresolver/src/runtimeConfig.native.ts +++ b/clients/client-route53globalresolver/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient"; +import type { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-route53globalresolver/src/runtimeConfig.shared.ts b/clients/client-route53globalresolver/src/runtimeConfig.shared.ts index cb11e43279128..17445597fd0d5 100644 --- a/clients/client-route53globalresolver/src/runtimeConfig.shared.ts +++ b/clients/client-route53globalresolver/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRoute53GlobalResolverHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient"; +import type { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient"; /** * @internal diff --git a/clients/client-route53globalresolver/src/runtimeConfig.ts b/clients/client-route53globalresolver/src/runtimeConfig.ts index 430c472615d56..6e8c60b81b324 100644 --- a/clients/client-route53globalresolver/src/runtimeConfig.ts +++ b/clients/client-route53globalresolver/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient"; + +import type { Route53GlobalResolverClientConfig } from "./Route53GlobalResolverClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-route53globalresolver/src/runtimeExtensions.ts b/clients/client-route53globalresolver/src/runtimeExtensions.ts index b2aa1dd1541fd..1dc4c1f4c7e12 100644 --- a/clients/client-route53globalresolver/src/runtimeExtensions.ts +++ b/clients/client-route53globalresolver/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Route53GlobalResolverExtensionConfiguration } from "./extensionConfiguration"; +import type { Route53GlobalResolverExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-route53globalresolver/src/schemas/schemas_0.ts b/clients/client-route53globalresolver/src/schemas/schemas_0.ts index faf0fcb8f5123..97c392d9cae96 100644 --- a/clients/client-route53globalresolver/src/schemas/schemas_0.ts +++ b/clients/client-route53globalresolver/src/schemas/schemas_0.ts @@ -273,7 +273,7 @@ const n0 = "com.amazonaws.route53globalresolver"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-route53profiles/package.json b/clients/client-route53profiles/package.json index 56c45160a21ce..12a76d05664a9 100644 --- a/clients/client-route53profiles/package.json +++ b/clients/client-route53profiles/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-route53profiles/src/Route53Profiles.ts b/clients/client-route53profiles/src/Route53Profiles.ts index 6577459b3efe6..d0dd7e9133d7c 100644 --- a/clients/client-route53profiles/src/Route53Profiles.ts +++ b/clients/client-route53profiles/src/Route53Profiles.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateProfileCommand, @@ -74,7 +74,7 @@ import { UpdateProfileResourceAssociationCommandInput, UpdateProfileResourceAssociationCommandOutput, } from "./commands/UpdateProfileResourceAssociationCommand"; -import { Route53ProfilesClient, Route53ProfilesClientConfig } from "./Route53ProfilesClient"; +import { Route53ProfilesClient } from "./Route53ProfilesClient"; const commands = { AssociateProfileCommand, diff --git a/clients/client-route53profiles/src/Route53ProfilesClient.ts b/clients/client-route53profiles/src/Route53ProfilesClient.ts index 38258a7aa34eb..49e63f70a3297 100644 --- a/clients/client-route53profiles/src/Route53ProfilesClient.ts +++ b/clients/client-route53profiles/src/Route53ProfilesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRoute53ProfilesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateProfileCommandInput, AssociateProfileCommandOutput } from "./commands/AssociateProfileCommand"; @@ -107,7 +116,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-route53profiles/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-route53profiles/src/auth/httpAuthExtensionConfiguration.ts index 68ac8f5d04816..ba4b3fad19589 100644 --- a/clients/client-route53profiles/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-route53profiles/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Route53ProfilesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Route53ProfilesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-route53profiles/src/auth/httpAuthSchemeProvider.ts b/clients/client-route53profiles/src/auth/httpAuthSchemeProvider.ts index 548e8d8a1917c..46b2c1d6452d1 100644 --- a/clients/client-route53profiles/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-route53profiles/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { Route53ProfilesClientConfig, Route53ProfilesClientResolvedConfig } from "../Route53ProfilesClient"; +import { type Route53ProfilesClientResolvedConfig, Route53ProfilesClientConfig } from "../Route53ProfilesClient"; /** * @internal diff --git a/clients/client-route53profiles/src/commands/AssociateProfileCommand.ts b/clients/client-route53profiles/src/commands/AssociateProfileCommand.ts index f7af97845b923..1696e0f34bee9 100644 --- a/clients/client-route53profiles/src/commands/AssociateProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/AssociateProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateProfileRequest, AssociateProfileResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { AssociateProfileRequest, AssociateProfileResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { AssociateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/AssociateResourceToProfileCommand.ts b/clients/client-route53profiles/src/commands/AssociateResourceToProfileCommand.ts index f8e21e31d2e7a..00d9ea6a13b24 100644 --- a/clients/client-route53profiles/src/commands/AssociateResourceToProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/AssociateResourceToProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateResourceToProfileRequest, AssociateResourceToProfileResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { AssociateResourceToProfileRequest, AssociateResourceToProfileResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { AssociateResourceToProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/CreateProfileCommand.ts b/clients/client-route53profiles/src/commands/CreateProfileCommand.ts index 818a2e46f7581..59182731e7b49 100644 --- a/clients/client-route53profiles/src/commands/CreateProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/CreateProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProfileRequest, CreateProfileResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { CreateProfileRequest, CreateProfileResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { CreateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/DeleteProfileCommand.ts b/clients/client-route53profiles/src/commands/DeleteProfileCommand.ts index c51d9ab422102..4c7131746b495 100644 --- a/clients/client-route53profiles/src/commands/DeleteProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/DeleteProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfileRequest, DeleteProfileResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { DeleteProfileRequest, DeleteProfileResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { DeleteProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/DisassociateProfileCommand.ts b/clients/client-route53profiles/src/commands/DisassociateProfileCommand.ts index d849f7571c1e7..26f1ab28c428d 100644 --- a/clients/client-route53profiles/src/commands/DisassociateProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/DisassociateProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateProfileRequest, DisassociateProfileResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { DisassociateProfileRequest, DisassociateProfileResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { DisassociateProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/DisassociateResourceFromProfileCommand.ts b/clients/client-route53profiles/src/commands/DisassociateResourceFromProfileCommand.ts index 4e503d9f0d2ab..d94b6760ba1ec 100644 --- a/clients/client-route53profiles/src/commands/DisassociateResourceFromProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/DisassociateResourceFromProfileCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateResourceFromProfileRequest, DisassociateResourceFromProfileResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { + DisassociateResourceFromProfileRequest, + DisassociateResourceFromProfileResponse, +} from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { DisassociateResourceFromProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/GetProfileAssociationCommand.ts b/clients/client-route53profiles/src/commands/GetProfileAssociationCommand.ts index d162ed739d96b..7a372f2dc5aae 100644 --- a/clients/client-route53profiles/src/commands/GetProfileAssociationCommand.ts +++ b/clients/client-route53profiles/src/commands/GetProfileAssociationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileAssociationRequest, GetProfileAssociationResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { GetProfileAssociationRequest, GetProfileAssociationResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { GetProfileAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/GetProfileCommand.ts b/clients/client-route53profiles/src/commands/GetProfileCommand.ts index 959f25578dc07..a18cb1d429f76 100644 --- a/clients/client-route53profiles/src/commands/GetProfileCommand.ts +++ b/clients/client-route53profiles/src/commands/GetProfileCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileRequest, GetProfileResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { GetProfileRequest, GetProfileResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { GetProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/GetProfileResourceAssociationCommand.ts b/clients/client-route53profiles/src/commands/GetProfileResourceAssociationCommand.ts index 2b4528be48432..1332402291a49 100644 --- a/clients/client-route53profiles/src/commands/GetProfileResourceAssociationCommand.ts +++ b/clients/client-route53profiles/src/commands/GetProfileResourceAssociationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileResourceAssociationRequest, GetProfileResourceAssociationResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { GetProfileResourceAssociationRequest, GetProfileResourceAssociationResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { GetProfileResourceAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/ListProfileAssociationsCommand.ts b/clients/client-route53profiles/src/commands/ListProfileAssociationsCommand.ts index 33915d7f9f5e5..1a8bb649ace71 100644 --- a/clients/client-route53profiles/src/commands/ListProfileAssociationsCommand.ts +++ b/clients/client-route53profiles/src/commands/ListProfileAssociationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfileAssociationsRequest, ListProfileAssociationsResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { ListProfileAssociationsRequest, ListProfileAssociationsResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { ListProfileAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/ListProfileResourceAssociationsCommand.ts b/clients/client-route53profiles/src/commands/ListProfileResourceAssociationsCommand.ts index f3775b99c39e2..5b347811f7ebd 100644 --- a/clients/client-route53profiles/src/commands/ListProfileResourceAssociationsCommand.ts +++ b/clients/client-route53profiles/src/commands/ListProfileResourceAssociationsCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfileResourceAssociationsRequest, ListProfileResourceAssociationsResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { + ListProfileResourceAssociationsRequest, + ListProfileResourceAssociationsResponse, +} from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { ListProfileResourceAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/ListProfilesCommand.ts b/clients/client-route53profiles/src/commands/ListProfilesCommand.ts index ab6855a2ada1e..9cee9543c5265 100644 --- a/clients/client-route53profiles/src/commands/ListProfilesCommand.ts +++ b/clients/client-route53profiles/src/commands/ListProfilesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfilesRequest, ListProfilesResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { ListProfilesRequest, ListProfilesResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { ListProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/ListTagsForResourceCommand.ts b/clients/client-route53profiles/src/commands/ListTagsForResourceCommand.ts index bee96f353085b..cb6abd1fda923 100644 --- a/clients/client-route53profiles/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-route53profiles/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/TagResourceCommand.ts b/clients/client-route53profiles/src/commands/TagResourceCommand.ts index d3494ad888d87..355a44a4503b9 100644 --- a/clients/client-route53profiles/src/commands/TagResourceCommand.ts +++ b/clients/client-route53profiles/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/UntagResourceCommand.ts b/clients/client-route53profiles/src/commands/UntagResourceCommand.ts index 0a9062e5fa179..d13bec242b131 100644 --- a/clients/client-route53profiles/src/commands/UntagResourceCommand.ts +++ b/clients/client-route53profiles/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/commands/UpdateProfileResourceAssociationCommand.ts b/clients/client-route53profiles/src/commands/UpdateProfileResourceAssociationCommand.ts index adb4b20d003b3..d852d95777b11 100644 --- a/clients/client-route53profiles/src/commands/UpdateProfileResourceAssociationCommand.ts +++ b/clients/client-route53profiles/src/commands/UpdateProfileResourceAssociationCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProfileResourceAssociationRequest, UpdateProfileResourceAssociationResponse } from "../models/models_0"; -import { Route53ProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ProfilesClient"; +import type { + UpdateProfileResourceAssociationRequest, + UpdateProfileResourceAssociationResponse, +} from "../models/models_0"; +import type { + Route53ProfilesClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ProfilesClient"; import { UpdateProfileResourceAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53profiles/src/endpoint/EndpointParameters.ts b/clients/client-route53profiles/src/endpoint/EndpointParameters.ts index 8ef12c24e3d7f..18e16aa9fec78 100644 --- a/clients/client-route53profiles/src/endpoint/EndpointParameters.ts +++ b/clients/client-route53profiles/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-route53profiles/src/endpoint/endpointResolver.ts b/clients/client-route53profiles/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-route53profiles/src/endpoint/endpointResolver.ts +++ b/clients/client-route53profiles/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-route53profiles/src/extensionConfiguration.ts b/clients/client-route53profiles/src/extensionConfiguration.ts index 12fddacc59a00..bba1fe5e9161a 100644 --- a/clients/client-route53profiles/src/extensionConfiguration.ts +++ b/clients/client-route53profiles/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-route53profiles/src/models/Route53ProfilesServiceException.ts b/clients/client-route53profiles/src/models/Route53ProfilesServiceException.ts index 7859cee4b37a7..942fbe779c20c 100644 --- a/clients/client-route53profiles/src/models/Route53ProfilesServiceException.ts +++ b/clients/client-route53profiles/src/models/Route53ProfilesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-route53profiles/src/models/errors.ts b/clients/client-route53profiles/src/models/errors.ts index c4e27d3588f1a..4395b8fa8a9d9 100644 --- a/clients/client-route53profiles/src/models/errors.ts +++ b/clients/client-route53profiles/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { Route53ProfilesServiceException as __BaseException } from "./Route53ProfilesServiceException"; diff --git a/clients/client-route53profiles/src/pagination/Interfaces.ts b/clients/client-route53profiles/src/pagination/Interfaces.ts index 1a77b6e796602..f0acc3b15c94e 100644 --- a/clients/client-route53profiles/src/pagination/Interfaces.ts +++ b/clients/client-route53profiles/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Route53ProfilesClient } from "../Route53ProfilesClient"; diff --git a/clients/client-route53profiles/src/pagination/ListProfileAssociationsPaginator.ts b/clients/client-route53profiles/src/pagination/ListProfileAssociationsPaginator.ts index 9f3c9b9b309e8..df55c0b0340e4 100644 --- a/clients/client-route53profiles/src/pagination/ListProfileAssociationsPaginator.ts +++ b/clients/client-route53profiles/src/pagination/ListProfileAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProfileAssociationsCommand, diff --git a/clients/client-route53profiles/src/pagination/ListProfileResourceAssociationsPaginator.ts b/clients/client-route53profiles/src/pagination/ListProfileResourceAssociationsPaginator.ts index bfb7ca722196f..81a8ecf5aa02f 100644 --- a/clients/client-route53profiles/src/pagination/ListProfileResourceAssociationsPaginator.ts +++ b/clients/client-route53profiles/src/pagination/ListProfileResourceAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProfileResourceAssociationsCommand, diff --git a/clients/client-route53profiles/src/pagination/ListProfilesPaginator.ts b/clients/client-route53profiles/src/pagination/ListProfilesPaginator.ts index 5fd3771b4dd58..f91ed94e0dddc 100644 --- a/clients/client-route53profiles/src/pagination/ListProfilesPaginator.ts +++ b/clients/client-route53profiles/src/pagination/ListProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProfilesCommand, diff --git a/clients/client-route53profiles/src/runtimeConfig.browser.ts b/clients/client-route53profiles/src/runtimeConfig.browser.ts index 04ff2fb5798bf..daad8886b7bb2 100644 --- a/clients/client-route53profiles/src/runtimeConfig.browser.ts +++ b/clients/client-route53profiles/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53ProfilesClientConfig } from "./Route53ProfilesClient"; + +import type { Route53ProfilesClientConfig } from "./Route53ProfilesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-route53profiles/src/runtimeConfig.native.ts b/clients/client-route53profiles/src/runtimeConfig.native.ts index 59e4ce68adee6..5c6243ad9f1e1 100644 --- a/clients/client-route53profiles/src/runtimeConfig.native.ts +++ b/clients/client-route53profiles/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Route53ProfilesClientConfig } from "./Route53ProfilesClient"; +import type { Route53ProfilesClientConfig } from "./Route53ProfilesClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-route53profiles/src/runtimeConfig.shared.ts b/clients/client-route53profiles/src/runtimeConfig.shared.ts index 9ee34b886a35c..b96f198b7784a 100644 --- a/clients/client-route53profiles/src/runtimeConfig.shared.ts +++ b/clients/client-route53profiles/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRoute53ProfilesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Route53ProfilesClientConfig } from "./Route53ProfilesClient"; +import type { Route53ProfilesClientConfig } from "./Route53ProfilesClient"; /** * @internal diff --git a/clients/client-route53profiles/src/runtimeConfig.ts b/clients/client-route53profiles/src/runtimeConfig.ts index 8f93393e2023f..55245519d9e43 100644 --- a/clients/client-route53profiles/src/runtimeConfig.ts +++ b/clients/client-route53profiles/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53ProfilesClientConfig } from "./Route53ProfilesClient"; + +import type { Route53ProfilesClientConfig } from "./Route53ProfilesClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-route53profiles/src/runtimeExtensions.ts b/clients/client-route53profiles/src/runtimeExtensions.ts index fcc831898445c..d330b9625d518 100644 --- a/clients/client-route53profiles/src/runtimeExtensions.ts +++ b/clients/client-route53profiles/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Route53ProfilesExtensionConfiguration } from "./extensionConfiguration"; +import type { Route53ProfilesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-route53profiles/src/schemas/schemas_0.ts b/clients/client-route53profiles/src/schemas/schemas_0.ts index db98c1e4f9b3e..37c786a06515f 100644 --- a/clients/client-route53profiles/src/schemas/schemas_0.ts +++ b/clients/client-route53profiles/src/schemas/schemas_0.ts @@ -106,7 +106,7 @@ const n0 = "com.amazonaws.route53profiles"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-route53resolver/package.json b/clients/client-route53resolver/package.json index 3d468134ae306..84860bafc8a4f 100644 --- a/clients/client-route53resolver/package.json +++ b/clients/client-route53resolver/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-route53resolver/src/Route53Resolver.ts b/clients/client-route53resolver/src/Route53Resolver.ts index 14a4cf978f6f7..a71c3662abd89 100644 --- a/clients/client-route53resolver/src/Route53Resolver.ts +++ b/clients/client-route53resolver/src/Route53Resolver.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateFirewallRuleGroupCommand, @@ -338,7 +338,7 @@ import { UpdateResolverRuleCommandInput, UpdateResolverRuleCommandOutput, } from "./commands/UpdateResolverRuleCommand"; -import { Route53ResolverClient, Route53ResolverClientConfig } from "./Route53ResolverClient"; +import { Route53ResolverClient } from "./Route53ResolverClient"; const commands = { AssociateFirewallRuleGroupCommand, diff --git a/clients/client-route53resolver/src/Route53ResolverClient.ts b/clients/client-route53resolver/src/Route53ResolverClient.ts index 724205b706fd1..96b582b019ce9 100644 --- a/clients/client-route53resolver/src/Route53ResolverClient.ts +++ b/clients/client-route53resolver/src/Route53ResolverClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRoute53ResolverHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -294,7 +303,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-route53resolver/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-route53resolver/src/auth/httpAuthExtensionConfiguration.ts index ee9af9efc836d..6f842c5553fbb 100644 --- a/clients/client-route53resolver/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-route53resolver/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { Route53ResolverHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { Route53ResolverHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-route53resolver/src/auth/httpAuthSchemeProvider.ts b/clients/client-route53resolver/src/auth/httpAuthSchemeProvider.ts index 096fe9e13e294..a6da9de08a670 100644 --- a/clients/client-route53resolver/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-route53resolver/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { Route53ResolverClientConfig, Route53ResolverClientResolvedConfig } from "../Route53ResolverClient"; +import { type Route53ResolverClientResolvedConfig, Route53ResolverClientConfig } from "../Route53ResolverClient"; /** * @internal diff --git a/clients/client-route53resolver/src/commands/AssociateFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/AssociateFirewallRuleGroupCommand.ts index 8fe50b971289b..f24852a18831f 100644 --- a/clients/client-route53resolver/src/commands/AssociateFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/AssociateFirewallRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateFirewallRuleGroupRequest, AssociateFirewallRuleGroupResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { AssociateFirewallRuleGroupRequest, AssociateFirewallRuleGroupResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { AssociateFirewallRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/AssociateResolverEndpointIpAddressCommand.ts b/clients/client-route53resolver/src/commands/AssociateResolverEndpointIpAddressCommand.ts index e9702db929492..cfeaea049ac64 100644 --- a/clients/client-route53resolver/src/commands/AssociateResolverEndpointIpAddressCommand.ts +++ b/clients/client-route53resolver/src/commands/AssociateResolverEndpointIpAddressCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateResolverEndpointIpAddressRequest, AssociateResolverEndpointIpAddressResponse, } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { AssociateResolverEndpointIpAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/AssociateResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/AssociateResolverQueryLogConfigCommand.ts index 8c9662b6ba36d..8af88dddc197d 100644 --- a/clients/client-route53resolver/src/commands/AssociateResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/AssociateResolverQueryLogConfigCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateResolverQueryLogConfigRequest, AssociateResolverQueryLogConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + AssociateResolverQueryLogConfigRequest, + AssociateResolverQueryLogConfigResponse, +} from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { AssociateResolverQueryLogConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/AssociateResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/AssociateResolverRuleCommand.ts index 50189994f7675..c92dd379993aa 100644 --- a/clients/client-route53resolver/src/commands/AssociateResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/AssociateResolverRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateResolverRuleRequest, AssociateResolverRuleResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { AssociateResolverRuleRequest, AssociateResolverRuleResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { AssociateResolverRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/CreateFirewallDomainListCommand.ts b/clients/client-route53resolver/src/commands/CreateFirewallDomainListCommand.ts index ce6992b200f5d..37c3a87a71e35 100644 --- a/clients/client-route53resolver/src/commands/CreateFirewallDomainListCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateFirewallDomainListCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFirewallDomainListRequest, CreateFirewallDomainListResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { CreateFirewallDomainListRequest, CreateFirewallDomainListResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { CreateFirewallDomainList } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/CreateFirewallRuleCommand.ts b/clients/client-route53resolver/src/commands/CreateFirewallRuleCommand.ts index 33f63af3b69f5..6e40772606a04 100644 --- a/clients/client-route53resolver/src/commands/CreateFirewallRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateFirewallRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFirewallRuleRequest, CreateFirewallRuleResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { CreateFirewallRuleRequest, CreateFirewallRuleResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { CreateFirewallRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/CreateFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/CreateFirewallRuleGroupCommand.ts index 2f3a1239eeefc..b7fdb512c002b 100644 --- a/clients/client-route53resolver/src/commands/CreateFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateFirewallRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFirewallRuleGroupRequest, CreateFirewallRuleGroupResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { CreateFirewallRuleGroupRequest, CreateFirewallRuleGroupResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { CreateFirewallRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/CreateOutpostResolverCommand.ts b/clients/client-route53resolver/src/commands/CreateOutpostResolverCommand.ts index fd038f45d79b7..e5738aa35c9f4 100644 --- a/clients/client-route53resolver/src/commands/CreateOutpostResolverCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateOutpostResolverCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOutpostResolverRequest, CreateOutpostResolverResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { CreateOutpostResolverRequest, CreateOutpostResolverResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { CreateOutpostResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/CreateResolverEndpointCommand.ts b/clients/client-route53resolver/src/commands/CreateResolverEndpointCommand.ts index abb82ffc3feb7..7188d6183b36e 100644 --- a/clients/client-route53resolver/src/commands/CreateResolverEndpointCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateResolverEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResolverEndpointRequest, CreateResolverEndpointResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { CreateResolverEndpointRequest, CreateResolverEndpointResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { CreateResolverEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/CreateResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/CreateResolverQueryLogConfigCommand.ts index 0050c60e2cecd..e05eec5c15645 100644 --- a/clients/client-route53resolver/src/commands/CreateResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateResolverQueryLogConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResolverQueryLogConfigRequest, CreateResolverQueryLogConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { CreateResolverQueryLogConfigRequest, CreateResolverQueryLogConfigResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { CreateResolverQueryLogConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/CreateResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/CreateResolverRuleCommand.ts index 1ed32052259c4..cd3c4970c10a1 100644 --- a/clients/client-route53resolver/src/commands/CreateResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/CreateResolverRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResolverRuleRequest, CreateResolverRuleResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { CreateResolverRuleRequest, CreateResolverRuleResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { CreateResolverRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DeleteFirewallDomainListCommand.ts b/clients/client-route53resolver/src/commands/DeleteFirewallDomainListCommand.ts index a6b5a9a1c7f26..04a02cbc6778b 100644 --- a/clients/client-route53resolver/src/commands/DeleteFirewallDomainListCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteFirewallDomainListCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFirewallDomainListRequest, DeleteFirewallDomainListResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { DeleteFirewallDomainListRequest, DeleteFirewallDomainListResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DeleteFirewallDomainList } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DeleteFirewallRuleCommand.ts b/clients/client-route53resolver/src/commands/DeleteFirewallRuleCommand.ts index c456334bdaf80..1a1236a4a0025 100644 --- a/clients/client-route53resolver/src/commands/DeleteFirewallRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteFirewallRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFirewallRuleRequest, DeleteFirewallRuleResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { DeleteFirewallRuleRequest, DeleteFirewallRuleResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DeleteFirewallRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DeleteFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/DeleteFirewallRuleGroupCommand.ts index e418fac38efa7..ad7bf3605e0e6 100644 --- a/clients/client-route53resolver/src/commands/DeleteFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteFirewallRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFirewallRuleGroupRequest, DeleteFirewallRuleGroupResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { DeleteFirewallRuleGroupRequest, DeleteFirewallRuleGroupResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DeleteFirewallRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DeleteOutpostResolverCommand.ts b/clients/client-route53resolver/src/commands/DeleteOutpostResolverCommand.ts index 02026e80c8ab4..c85a686138fc6 100644 --- a/clients/client-route53resolver/src/commands/DeleteOutpostResolverCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteOutpostResolverCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOutpostResolverRequest, DeleteOutpostResolverResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { DeleteOutpostResolverRequest, DeleteOutpostResolverResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DeleteOutpostResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DeleteResolverEndpointCommand.ts b/clients/client-route53resolver/src/commands/DeleteResolverEndpointCommand.ts index bc828d5739ddf..8d980d4c8d9c4 100644 --- a/clients/client-route53resolver/src/commands/DeleteResolverEndpointCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteResolverEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResolverEndpointRequest, DeleteResolverEndpointResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { DeleteResolverEndpointRequest, DeleteResolverEndpointResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DeleteResolverEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DeleteResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/DeleteResolverQueryLogConfigCommand.ts index 937cb81561883..2915506de5274 100644 --- a/clients/client-route53resolver/src/commands/DeleteResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteResolverQueryLogConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResolverQueryLogConfigRequest, DeleteResolverQueryLogConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { DeleteResolverQueryLogConfigRequest, DeleteResolverQueryLogConfigResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DeleteResolverQueryLogConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DeleteResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/DeleteResolverRuleCommand.ts index 8a848fdae0ece..d27b176caeb2e 100644 --- a/clients/client-route53resolver/src/commands/DeleteResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/DeleteResolverRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResolverRuleRequest, DeleteResolverRuleResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { DeleteResolverRuleRequest, DeleteResolverRuleResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DeleteResolverRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DisassociateFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/DisassociateFirewallRuleGroupCommand.ts index d4c169ce94230..5a3feed3d6e91 100644 --- a/clients/client-route53resolver/src/commands/DisassociateFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/DisassociateFirewallRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateFirewallRuleGroupRequest, DisassociateFirewallRuleGroupResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { DisassociateFirewallRuleGroupRequest, DisassociateFirewallRuleGroupResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DisassociateFirewallRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DisassociateResolverEndpointIpAddressCommand.ts b/clients/client-route53resolver/src/commands/DisassociateResolverEndpointIpAddressCommand.ts index 89f57c4a9c344..3730740910ad5 100644 --- a/clients/client-route53resolver/src/commands/DisassociateResolverEndpointIpAddressCommand.ts +++ b/clients/client-route53resolver/src/commands/DisassociateResolverEndpointIpAddressCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateResolverEndpointIpAddressRequest, DisassociateResolverEndpointIpAddressResponse, } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DisassociateResolverEndpointIpAddress } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DisassociateResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/DisassociateResolverQueryLogConfigCommand.ts index de97df7063158..43a4f742c6afe 100644 --- a/clients/client-route53resolver/src/commands/DisassociateResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/DisassociateResolverQueryLogConfigCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateResolverQueryLogConfigRequest, DisassociateResolverQueryLogConfigResponse, } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DisassociateResolverQueryLogConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/DisassociateResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/DisassociateResolverRuleCommand.ts index a19eb196e4dd0..9cef0fce5911c 100644 --- a/clients/client-route53resolver/src/commands/DisassociateResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/DisassociateResolverRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateResolverRuleRequest, DisassociateResolverRuleResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { DisassociateResolverRuleRequest, DisassociateResolverRuleResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { DisassociateResolverRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetFirewallConfigCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallConfigCommand.ts index 4ce94c9145773..f1ae5c9942ac3 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFirewallConfigRequest, GetFirewallConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetFirewallConfigRequest, GetFirewallConfigResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetFirewallConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetFirewallDomainListCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallDomainListCommand.ts index 333ac72de1668..c3e3b8f604320 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallDomainListCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallDomainListCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFirewallDomainListRequest, GetFirewallDomainListResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetFirewallDomainListRequest, GetFirewallDomainListResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetFirewallDomainList } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupAssociationCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupAssociationCommand.ts index 498819b122950..ef537e5785d22 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupAssociationCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupAssociationCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFirewallRuleGroupAssociationRequest, GetFirewallRuleGroupAssociationResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + GetFirewallRuleGroupAssociationRequest, + GetFirewallRuleGroupAssociationResponse, +} from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetFirewallRuleGroupAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupCommand.ts index 23eb83f129e74..bf34b7c53b326 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFirewallRuleGroupRequest, GetFirewallRuleGroupResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetFirewallRuleGroupRequest, GetFirewallRuleGroupResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetFirewallRuleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupPolicyCommand.ts b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupPolicyCommand.ts index 5519979c4df0c..155613b5bd5c6 100644 --- a/clients/client-route53resolver/src/commands/GetFirewallRuleGroupPolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/GetFirewallRuleGroupPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFirewallRuleGroupPolicyRequest, GetFirewallRuleGroupPolicyResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetFirewallRuleGroupPolicyRequest, GetFirewallRuleGroupPolicyResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetFirewallRuleGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetOutpostResolverCommand.ts b/clients/client-route53resolver/src/commands/GetOutpostResolverCommand.ts index 728b32dfc50f9..79d533cb297f7 100644 --- a/clients/client-route53resolver/src/commands/GetOutpostResolverCommand.ts +++ b/clients/client-route53resolver/src/commands/GetOutpostResolverCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOutpostResolverRequest, GetOutpostResolverResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetOutpostResolverRequest, GetOutpostResolverResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetOutpostResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetResolverConfigCommand.ts b/clients/client-route53resolver/src/commands/GetResolverConfigCommand.ts index 50b37ccd4ddd1..1207660c86fa3 100644 --- a/clients/client-route53resolver/src/commands/GetResolverConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResolverConfigRequest, GetResolverConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetResolverConfigRequest, GetResolverConfigResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetResolverConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetResolverDnssecConfigCommand.ts b/clients/client-route53resolver/src/commands/GetResolverDnssecConfigCommand.ts index 75ea066508656..6357fbc7d315a 100644 --- a/clients/client-route53resolver/src/commands/GetResolverDnssecConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverDnssecConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResolverDnssecConfigRequest, GetResolverDnssecConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetResolverDnssecConfigRequest, GetResolverDnssecConfigResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetResolverDnssecConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetResolverEndpointCommand.ts b/clients/client-route53resolver/src/commands/GetResolverEndpointCommand.ts index 9a2831a1411b0..088223aa11801 100644 --- a/clients/client-route53resolver/src/commands/GetResolverEndpointCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResolverEndpointRequest, GetResolverEndpointResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetResolverEndpointRequest, GetResolverEndpointResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetResolverEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigAssociationCommand.ts b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigAssociationCommand.ts index e4011027c1abf..50ff206ca1dd7 100644 --- a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigAssociationCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigAssociationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetResolverQueryLogConfigAssociationRequest, GetResolverQueryLogConfigAssociationResponse, } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetResolverQueryLogConfigAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigCommand.ts b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigCommand.ts index 65803bdcc3d08..51d6382aa6d82 100644 --- a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResolverQueryLogConfigRequest, GetResolverQueryLogConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetResolverQueryLogConfigRequest, GetResolverQueryLogConfigResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetResolverQueryLogConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigPolicyCommand.ts b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigPolicyCommand.ts index 16ea5b580a441..6255b00bb7826 100644 --- a/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigPolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverQueryLogConfigPolicyCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResolverQueryLogConfigPolicyRequest, GetResolverQueryLogConfigPolicyResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + GetResolverQueryLogConfigPolicyRequest, + GetResolverQueryLogConfigPolicyResponse, +} from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetResolverQueryLogConfigPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetResolverRuleAssociationCommand.ts b/clients/client-route53resolver/src/commands/GetResolverRuleAssociationCommand.ts index 156814ff7ee25..88dbaef295ac0 100644 --- a/clients/client-route53resolver/src/commands/GetResolverRuleAssociationCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverRuleAssociationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResolverRuleAssociationRequest, GetResolverRuleAssociationResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetResolverRuleAssociationRequest, GetResolverRuleAssociationResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetResolverRuleAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/GetResolverRuleCommand.ts index 222994089332e..8d941c45b8708 100644 --- a/clients/client-route53resolver/src/commands/GetResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResolverRuleRequest, GetResolverRuleResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetResolverRuleRequest, GetResolverRuleResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetResolverRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/GetResolverRulePolicyCommand.ts b/clients/client-route53resolver/src/commands/GetResolverRulePolicyCommand.ts index 29903e6937970..3b66e82255b04 100644 --- a/clients/client-route53resolver/src/commands/GetResolverRulePolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/GetResolverRulePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResolverRulePolicyRequest, GetResolverRulePolicyResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { GetResolverRulePolicyRequest, GetResolverRulePolicyResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { GetResolverRulePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ImportFirewallDomainsCommand.ts b/clients/client-route53resolver/src/commands/ImportFirewallDomainsCommand.ts index 29a5692ac5c47..737b2275802f3 100644 --- a/clients/client-route53resolver/src/commands/ImportFirewallDomainsCommand.ts +++ b/clients/client-route53resolver/src/commands/ImportFirewallDomainsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportFirewallDomainsRequest, ImportFirewallDomainsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ImportFirewallDomainsRequest, ImportFirewallDomainsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ImportFirewallDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListFirewallConfigsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallConfigsCommand.ts index f5213800a2cb5..a6f04176b84fa 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallConfigsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallConfigsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallConfigsRequest, ListFirewallConfigsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListFirewallConfigsRequest, ListFirewallConfigsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListFirewallConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListFirewallDomainListsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallDomainListsCommand.ts index aa5ddfe4b380f..64b5ad5ab4095 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallDomainListsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallDomainListsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallDomainListsRequest, ListFirewallDomainListsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListFirewallDomainListsRequest, ListFirewallDomainListsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListFirewallDomainLists } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListFirewallDomainsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallDomainsCommand.ts index 417734925c62b..a1537aeb07bdf 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallDomainsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallDomainsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallDomainsRequest, ListFirewallDomainsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListFirewallDomainsRequest, ListFirewallDomainsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListFirewallDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListFirewallRuleGroupAssociationsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallRuleGroupAssociationsCommand.ts index 9e9bfe4598feb..c9fe1b11ea231 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallRuleGroupAssociationsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallRuleGroupAssociationsCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListFirewallRuleGroupAssociationsRequest, ListFirewallRuleGroupAssociationsResponse, } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListFirewallRuleGroupAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListFirewallRuleGroupsCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallRuleGroupsCommand.ts index 622129462094d..79d1caacf9dbc 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallRuleGroupsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallRuleGroupsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallRuleGroupsRequest, ListFirewallRuleGroupsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListFirewallRuleGroupsRequest, ListFirewallRuleGroupsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListFirewallRuleGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListFirewallRulesCommand.ts b/clients/client-route53resolver/src/commands/ListFirewallRulesCommand.ts index c8ff9f1d4c383..2f9cdbce67a20 100644 --- a/clients/client-route53resolver/src/commands/ListFirewallRulesCommand.ts +++ b/clients/client-route53resolver/src/commands/ListFirewallRulesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFirewallRulesRequest, ListFirewallRulesResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListFirewallRulesRequest, ListFirewallRulesResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListFirewallRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListOutpostResolversCommand.ts b/clients/client-route53resolver/src/commands/ListOutpostResolversCommand.ts index 20b6a29c6b86f..7f5c94e5a751b 100644 --- a/clients/client-route53resolver/src/commands/ListOutpostResolversCommand.ts +++ b/clients/client-route53resolver/src/commands/ListOutpostResolversCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOutpostResolversRequest, ListOutpostResolversResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListOutpostResolversRequest, ListOutpostResolversResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListOutpostResolvers } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListResolverConfigsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverConfigsCommand.ts index 60663e12dfbf2..0055f0bbdf828 100644 --- a/clients/client-route53resolver/src/commands/ListResolverConfigsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverConfigsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResolverConfigsRequest, ListResolverConfigsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListResolverConfigsRequest, ListResolverConfigsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListResolverConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListResolverDnssecConfigsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverDnssecConfigsCommand.ts index ec9756b54c439..3c9c6b832fb4d 100644 --- a/clients/client-route53resolver/src/commands/ListResolverDnssecConfigsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverDnssecConfigsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResolverDnssecConfigsRequest, ListResolverDnssecConfigsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListResolverDnssecConfigsRequest, ListResolverDnssecConfigsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListResolverDnssecConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListResolverEndpointIpAddressesCommand.ts b/clients/client-route53resolver/src/commands/ListResolverEndpointIpAddressesCommand.ts index 9a2ec1ad6a80c..7e90914b508d1 100644 --- a/clients/client-route53resolver/src/commands/ListResolverEndpointIpAddressesCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverEndpointIpAddressesCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResolverEndpointIpAddressesRequest, ListResolverEndpointIpAddressesResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + ListResolverEndpointIpAddressesRequest, + ListResolverEndpointIpAddressesResponse, +} from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListResolverEndpointIpAddresses } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListResolverEndpointsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverEndpointsCommand.ts index 499b2ebbb5d70..c4a0b6b82c095 100644 --- a/clients/client-route53resolver/src/commands/ListResolverEndpointsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverEndpointsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResolverEndpointsRequest, ListResolverEndpointsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListResolverEndpointsRequest, ListResolverEndpointsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListResolverEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigAssociationsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigAssociationsCommand.ts index acf97ab8d7383..d6bf109742404 100644 --- a/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigAssociationsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigAssociationsCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListResolverQueryLogConfigAssociationsRequest, ListResolverQueryLogConfigAssociationsResponse, } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListResolverQueryLogConfigAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigsCommand.ts index 322a11c9337e0..2cd4e297ac534 100644 --- a/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverQueryLogConfigsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResolverQueryLogConfigsRequest, ListResolverQueryLogConfigsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListResolverQueryLogConfigsRequest, ListResolverQueryLogConfigsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListResolverQueryLogConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListResolverRuleAssociationsCommand.ts b/clients/client-route53resolver/src/commands/ListResolverRuleAssociationsCommand.ts index f6b48f67c6281..702ffb916aadb 100644 --- a/clients/client-route53resolver/src/commands/ListResolverRuleAssociationsCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverRuleAssociationsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResolverRuleAssociationsRequest, ListResolverRuleAssociationsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListResolverRuleAssociationsRequest, ListResolverRuleAssociationsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListResolverRuleAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListResolverRulesCommand.ts b/clients/client-route53resolver/src/commands/ListResolverRulesCommand.ts index 2c7a613e50da9..57f7f588b5851 100644 --- a/clients/client-route53resolver/src/commands/ListResolverRulesCommand.ts +++ b/clients/client-route53resolver/src/commands/ListResolverRulesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResolverRulesRequest, ListResolverRulesResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListResolverRulesRequest, ListResolverRulesResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListResolverRules } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/ListTagsForResourceCommand.ts b/clients/client-route53resolver/src/commands/ListTagsForResourceCommand.ts index da2f7f5f3e85b..25d3386d680a8 100644 --- a/clients/client-route53resolver/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-route53resolver/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/PutFirewallRuleGroupPolicyCommand.ts b/clients/client-route53resolver/src/commands/PutFirewallRuleGroupPolicyCommand.ts index 8285107978bff..daaa9e923b399 100644 --- a/clients/client-route53resolver/src/commands/PutFirewallRuleGroupPolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/PutFirewallRuleGroupPolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutFirewallRuleGroupPolicyRequest, PutFirewallRuleGroupPolicyResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { PutFirewallRuleGroupPolicyRequest, PutFirewallRuleGroupPolicyResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { PutFirewallRuleGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/PutResolverQueryLogConfigPolicyCommand.ts b/clients/client-route53resolver/src/commands/PutResolverQueryLogConfigPolicyCommand.ts index cd1191ea2a211..85ab55961b588 100644 --- a/clients/client-route53resolver/src/commands/PutResolverQueryLogConfigPolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/PutResolverQueryLogConfigPolicyCommand.ts @@ -1,11 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResolverQueryLogConfigPolicyRequest, PutResolverQueryLogConfigPolicyResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + PutResolverQueryLogConfigPolicyRequest, + PutResolverQueryLogConfigPolicyResponse, +} from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { PutResolverQueryLogConfigPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/PutResolverRulePolicyCommand.ts b/clients/client-route53resolver/src/commands/PutResolverRulePolicyCommand.ts index e0d92bbef0466..8a9066ec48c1c 100644 --- a/clients/client-route53resolver/src/commands/PutResolverRulePolicyCommand.ts +++ b/clients/client-route53resolver/src/commands/PutResolverRulePolicyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResolverRulePolicyRequest, PutResolverRulePolicyResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { PutResolverRulePolicyRequest, PutResolverRulePolicyResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { PutResolverRulePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/TagResourceCommand.ts b/clients/client-route53resolver/src/commands/TagResourceCommand.ts index 911bd8d774581..c4ded5bdbc3e2 100644 --- a/clients/client-route53resolver/src/commands/TagResourceCommand.ts +++ b/clients/client-route53resolver/src/commands/TagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UntagResourceCommand.ts b/clients/client-route53resolver/src/commands/UntagResourceCommand.ts index 6633cce8c9a44..2dd44b3ae8132 100644 --- a/clients/client-route53resolver/src/commands/UntagResourceCommand.ts +++ b/clients/client-route53resolver/src/commands/UntagResourceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UpdateFirewallConfigCommand.ts b/clients/client-route53resolver/src/commands/UpdateFirewallConfigCommand.ts index 169e6231710ce..114faca601826 100644 --- a/clients/client-route53resolver/src/commands/UpdateFirewallConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateFirewallConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFirewallConfigRequest, UpdateFirewallConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { UpdateFirewallConfigRequest, UpdateFirewallConfigResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UpdateFirewallConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UpdateFirewallDomainsCommand.ts b/clients/client-route53resolver/src/commands/UpdateFirewallDomainsCommand.ts index ff73ecbd98d64..3f0c84071b273 100644 --- a/clients/client-route53resolver/src/commands/UpdateFirewallDomainsCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateFirewallDomainsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFirewallDomainsRequest, UpdateFirewallDomainsResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { UpdateFirewallDomainsRequest, UpdateFirewallDomainsResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UpdateFirewallDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UpdateFirewallRuleCommand.ts b/clients/client-route53resolver/src/commands/UpdateFirewallRuleCommand.ts index 5f556cb430a8e..f1d868e8e9453 100644 --- a/clients/client-route53resolver/src/commands/UpdateFirewallRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateFirewallRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFirewallRuleRequest, UpdateFirewallRuleResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { UpdateFirewallRuleRequest, UpdateFirewallRuleResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UpdateFirewallRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UpdateFirewallRuleGroupAssociationCommand.ts b/clients/client-route53resolver/src/commands/UpdateFirewallRuleGroupAssociationCommand.ts index f4517ceb684ec..fe182e30b31cb 100644 --- a/clients/client-route53resolver/src/commands/UpdateFirewallRuleGroupAssociationCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateFirewallRuleGroupAssociationCommand.ts @@ -1,14 +1,18 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateFirewallRuleGroupAssociationRequest, UpdateFirewallRuleGroupAssociationResponse, } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UpdateFirewallRuleGroupAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UpdateOutpostResolverCommand.ts b/clients/client-route53resolver/src/commands/UpdateOutpostResolverCommand.ts index 579ca073265cd..70642739e21fe 100644 --- a/clients/client-route53resolver/src/commands/UpdateOutpostResolverCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateOutpostResolverCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOutpostResolverRequest, UpdateOutpostResolverResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { UpdateOutpostResolverRequest, UpdateOutpostResolverResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UpdateOutpostResolver } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UpdateResolverConfigCommand.ts b/clients/client-route53resolver/src/commands/UpdateResolverConfigCommand.ts index 79300654d47dd..7930608400822 100644 --- a/clients/client-route53resolver/src/commands/UpdateResolverConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateResolverConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResolverConfigRequest, UpdateResolverConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { UpdateResolverConfigRequest, UpdateResolverConfigResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UpdateResolverConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UpdateResolverDnssecConfigCommand.ts b/clients/client-route53resolver/src/commands/UpdateResolverDnssecConfigCommand.ts index 68dcd683180ca..ec0f7da2bf61d 100644 --- a/clients/client-route53resolver/src/commands/UpdateResolverDnssecConfigCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateResolverDnssecConfigCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResolverDnssecConfigRequest, UpdateResolverDnssecConfigResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { UpdateResolverDnssecConfigRequest, UpdateResolverDnssecConfigResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UpdateResolverDnssecConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UpdateResolverEndpointCommand.ts b/clients/client-route53resolver/src/commands/UpdateResolverEndpointCommand.ts index 65b278e66d66b..42efa83e4d60e 100644 --- a/clients/client-route53resolver/src/commands/UpdateResolverEndpointCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateResolverEndpointCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResolverEndpointRequest, UpdateResolverEndpointResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { UpdateResolverEndpointRequest, UpdateResolverEndpointResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UpdateResolverEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/commands/UpdateResolverRuleCommand.ts b/clients/client-route53resolver/src/commands/UpdateResolverRuleCommand.ts index 481fb8b9b315b..6692b43579a69 100644 --- a/clients/client-route53resolver/src/commands/UpdateResolverRuleCommand.ts +++ b/clients/client-route53resolver/src/commands/UpdateResolverRuleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResolverRuleRequest, UpdateResolverRuleResponse } from "../models/models_0"; -import { Route53ResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53ResolverClient"; +import type { UpdateResolverRuleRequest, UpdateResolverRuleResponse } from "../models/models_0"; +import type { + Route53ResolverClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../Route53ResolverClient"; import { UpdateResolverRule } from "../schemas/schemas_0"; /** diff --git a/clients/client-route53resolver/src/endpoint/EndpointParameters.ts b/clients/client-route53resolver/src/endpoint/EndpointParameters.ts index 816356fb978e6..4726ecc96d826 100644 --- a/clients/client-route53resolver/src/endpoint/EndpointParameters.ts +++ b/clients/client-route53resolver/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-route53resolver/src/endpoint/endpointResolver.ts b/clients/client-route53resolver/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-route53resolver/src/endpoint/endpointResolver.ts +++ b/clients/client-route53resolver/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-route53resolver/src/extensionConfiguration.ts b/clients/client-route53resolver/src/extensionConfiguration.ts index da042fe9dba5d..aff74c172f521 100644 --- a/clients/client-route53resolver/src/extensionConfiguration.ts +++ b/clients/client-route53resolver/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-route53resolver/src/models/Route53ResolverServiceException.ts b/clients/client-route53resolver/src/models/Route53ResolverServiceException.ts index 6fa205f922119..8a353b673fb7a 100644 --- a/clients/client-route53resolver/src/models/Route53ResolverServiceException.ts +++ b/clients/client-route53resolver/src/models/Route53ResolverServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-route53resolver/src/models/errors.ts b/clients/client-route53resolver/src/models/errors.ts index a7f1ddf30172e..1812fb212d83d 100644 --- a/clients/client-route53resolver/src/models/errors.ts +++ b/clients/client-route53resolver/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { Route53ResolverServiceException as __BaseException } from "./Route53ResolverServiceException"; diff --git a/clients/client-route53resolver/src/pagination/Interfaces.ts b/clients/client-route53resolver/src/pagination/Interfaces.ts index 91ea207e15ac2..62a992bd5caa8 100644 --- a/clients/client-route53resolver/src/pagination/Interfaces.ts +++ b/clients/client-route53resolver/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { Route53ResolverClient } from "../Route53ResolverClient"; diff --git a/clients/client-route53resolver/src/pagination/ListFirewallConfigsPaginator.ts b/clients/client-route53resolver/src/pagination/ListFirewallConfigsPaginator.ts index 104216d27b2a4..4301d85e1fa4d 100644 --- a/clients/client-route53resolver/src/pagination/ListFirewallConfigsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListFirewallConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallConfigsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListFirewallDomainListsPaginator.ts b/clients/client-route53resolver/src/pagination/ListFirewallDomainListsPaginator.ts index 8dff334fa0343..791d9bca2a165 100644 --- a/clients/client-route53resolver/src/pagination/ListFirewallDomainListsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListFirewallDomainListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallDomainListsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListFirewallDomainsPaginator.ts b/clients/client-route53resolver/src/pagination/ListFirewallDomainsPaginator.ts index 31708e4022898..f2d3b74db45a0 100644 --- a/clients/client-route53resolver/src/pagination/ListFirewallDomainsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListFirewallDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallDomainsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListFirewallRuleGroupAssociationsPaginator.ts b/clients/client-route53resolver/src/pagination/ListFirewallRuleGroupAssociationsPaginator.ts index 74ed7fd0ffd7b..40f0fe07b53ee 100644 --- a/clients/client-route53resolver/src/pagination/ListFirewallRuleGroupAssociationsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListFirewallRuleGroupAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallRuleGroupAssociationsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListFirewallRuleGroupsPaginator.ts b/clients/client-route53resolver/src/pagination/ListFirewallRuleGroupsPaginator.ts index 182d29aaa0672..540bd0d2395af 100644 --- a/clients/client-route53resolver/src/pagination/ListFirewallRuleGroupsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListFirewallRuleGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallRuleGroupsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListFirewallRulesPaginator.ts b/clients/client-route53resolver/src/pagination/ListFirewallRulesPaginator.ts index 348c7c1e378e7..b576c04154ba0 100644 --- a/clients/client-route53resolver/src/pagination/ListFirewallRulesPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListFirewallRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFirewallRulesCommand, diff --git a/clients/client-route53resolver/src/pagination/ListOutpostResolversPaginator.ts b/clients/client-route53resolver/src/pagination/ListOutpostResolversPaginator.ts index 48b3738693ca4..2cd51a4bde4eb 100644 --- a/clients/client-route53resolver/src/pagination/ListOutpostResolversPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListOutpostResolversPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOutpostResolversCommand, diff --git a/clients/client-route53resolver/src/pagination/ListResolverConfigsPaginator.ts b/clients/client-route53resolver/src/pagination/ListResolverConfigsPaginator.ts index 76d013256c2e6..e3b02eec69e4e 100644 --- a/clients/client-route53resolver/src/pagination/ListResolverConfigsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListResolverConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResolverConfigsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListResolverDnssecConfigsPaginator.ts b/clients/client-route53resolver/src/pagination/ListResolverDnssecConfigsPaginator.ts index e941db5c6fc82..fc39b381bbd77 100644 --- a/clients/client-route53resolver/src/pagination/ListResolverDnssecConfigsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListResolverDnssecConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResolverDnssecConfigsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListResolverEndpointIpAddressesPaginator.ts b/clients/client-route53resolver/src/pagination/ListResolverEndpointIpAddressesPaginator.ts index 1cd3934524272..2dfe5c7183bdd 100644 --- a/clients/client-route53resolver/src/pagination/ListResolverEndpointIpAddressesPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListResolverEndpointIpAddressesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResolverEndpointIpAddressesCommand, diff --git a/clients/client-route53resolver/src/pagination/ListResolverEndpointsPaginator.ts b/clients/client-route53resolver/src/pagination/ListResolverEndpointsPaginator.ts index d2eb06cad008c..8ba4e3de9e483 100644 --- a/clients/client-route53resolver/src/pagination/ListResolverEndpointsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListResolverEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResolverEndpointsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListResolverQueryLogConfigAssociationsPaginator.ts b/clients/client-route53resolver/src/pagination/ListResolverQueryLogConfigAssociationsPaginator.ts index aae0328d7ccaa..36ae880aa583c 100644 --- a/clients/client-route53resolver/src/pagination/ListResolverQueryLogConfigAssociationsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListResolverQueryLogConfigAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResolverQueryLogConfigAssociationsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListResolverQueryLogConfigsPaginator.ts b/clients/client-route53resolver/src/pagination/ListResolverQueryLogConfigsPaginator.ts index a21812d4af5c8..5f39a50a2c3b6 100644 --- a/clients/client-route53resolver/src/pagination/ListResolverQueryLogConfigsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListResolverQueryLogConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResolverQueryLogConfigsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListResolverRuleAssociationsPaginator.ts b/clients/client-route53resolver/src/pagination/ListResolverRuleAssociationsPaginator.ts index 8678c6b917f9a..f18c3e417cb2e 100644 --- a/clients/client-route53resolver/src/pagination/ListResolverRuleAssociationsPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListResolverRuleAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResolverRuleAssociationsCommand, diff --git a/clients/client-route53resolver/src/pagination/ListResolverRulesPaginator.ts b/clients/client-route53resolver/src/pagination/ListResolverRulesPaginator.ts index 5e17c68bf3e9f..13cea1f8ff774 100644 --- a/clients/client-route53resolver/src/pagination/ListResolverRulesPaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListResolverRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResolverRulesCommand, diff --git a/clients/client-route53resolver/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-route53resolver/src/pagination/ListTagsForResourcePaginator.ts index afabfc59477f0..b3a36d5b96b23 100644 --- a/clients/client-route53resolver/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-route53resolver/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-route53resolver/src/runtimeConfig.browser.ts b/clients/client-route53resolver/src/runtimeConfig.browser.ts index f99efc1623be4..057e5569285dc 100644 --- a/clients/client-route53resolver/src/runtimeConfig.browser.ts +++ b/clients/client-route53resolver/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53ResolverClientConfig } from "./Route53ResolverClient"; + +import type { Route53ResolverClientConfig } from "./Route53ResolverClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-route53resolver/src/runtimeConfig.native.ts b/clients/client-route53resolver/src/runtimeConfig.native.ts index 1b81aecc91dc7..3a6be76fbc8d1 100644 --- a/clients/client-route53resolver/src/runtimeConfig.native.ts +++ b/clients/client-route53resolver/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { Route53ResolverClientConfig } from "./Route53ResolverClient"; +import type { Route53ResolverClientConfig } from "./Route53ResolverClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-route53resolver/src/runtimeConfig.shared.ts b/clients/client-route53resolver/src/runtimeConfig.shared.ts index 4dec1727d546d..9e199a2a94571 100644 --- a/clients/client-route53resolver/src/runtimeConfig.shared.ts +++ b/clients/client-route53resolver/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRoute53ResolverHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { Route53ResolverClientConfig } from "./Route53ResolverClient"; +import type { Route53ResolverClientConfig } from "./Route53ResolverClient"; /** * @internal diff --git a/clients/client-route53resolver/src/runtimeConfig.ts b/clients/client-route53resolver/src/runtimeConfig.ts index a16dc8840f7b0..a7d66d717fb8d 100644 --- a/clients/client-route53resolver/src/runtimeConfig.ts +++ b/clients/client-route53resolver/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { Route53ResolverClientConfig } from "./Route53ResolverClient"; + +import type { Route53ResolverClientConfig } from "./Route53ResolverClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-route53resolver/src/runtimeExtensions.ts b/clients/client-route53resolver/src/runtimeExtensions.ts index 7f2b892d7b82d..4bc10670a8807 100644 --- a/clients/client-route53resolver/src/runtimeExtensions.ts +++ b/clients/client-route53resolver/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { Route53ResolverExtensionConfiguration } from "./extensionConfiguration"; +import type { Route53ResolverExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-route53resolver/src/schemas/schemas_0.ts b/clients/client-route53resolver/src/schemas/schemas_0.ts index 5ea4301140de7..faf6115f7c66e 100644 --- a/clients/client-route53resolver/src/schemas/schemas_0.ts +++ b/clients/client-route53resolver/src/schemas/schemas_0.ts @@ -367,7 +367,7 @@ const n0 = "com.amazonaws.route53resolver"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-rtbfabric/package.json b/clients/client-rtbfabric/package.json index 4e923204791f8..0f074110a7ccb 100644 --- a/clients/client-rtbfabric/package.json +++ b/clients/client-rtbfabric/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-rtbfabric/src/RTBFabric.ts b/clients/client-rtbfabric/src/RTBFabric.ts index 4f7a6f115b31e..2ab6cdf44554d 100644 --- a/clients/client-rtbfabric/src/RTBFabric.ts +++ b/clients/client-rtbfabric/src/RTBFabric.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptLinkCommand, AcceptLinkCommandInput, AcceptLinkCommandOutput } from "./commands/AcceptLinkCommand"; import { @@ -105,7 +105,7 @@ import { UpdateResponderGatewayCommandInput, UpdateResponderGatewayCommandOutput, } from "./commands/UpdateResponderGatewayCommand"; -import { RTBFabricClient, RTBFabricClientConfig } from "./RTBFabricClient"; +import { RTBFabricClient } from "./RTBFabricClient"; const commands = { AcceptLinkCommand, diff --git a/clients/client-rtbfabric/src/RTBFabricClient.ts b/clients/client-rtbfabric/src/RTBFabricClient.ts index 6a0c071086821..67154886b0c19 100644 --- a/clients/client-rtbfabric/src/RTBFabricClient.ts +++ b/clients/client-rtbfabric/src/RTBFabricClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRTBFabricHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptLinkCommandInput, AcceptLinkCommandOutput } from "./commands/AcceptLinkCommand"; @@ -145,7 +154,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-rtbfabric/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-rtbfabric/src/auth/httpAuthExtensionConfiguration.ts index 4e55f73e930c4..69f2e8973415d 100644 --- a/clients/client-rtbfabric/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-rtbfabric/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RTBFabricHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RTBFabricHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-rtbfabric/src/auth/httpAuthSchemeProvider.ts b/clients/client-rtbfabric/src/auth/httpAuthSchemeProvider.ts index d0b92f6573f72..de09ac0a3eac7 100644 --- a/clients/client-rtbfabric/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-rtbfabric/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RTBFabricClientConfig, RTBFabricClientResolvedConfig } from "../RTBFabricClient"; +import { type RTBFabricClientResolvedConfig, RTBFabricClientConfig } from "../RTBFabricClient"; /** * @internal diff --git a/clients/client-rtbfabric/src/commands/AcceptLinkCommand.ts b/clients/client-rtbfabric/src/commands/AcceptLinkCommand.ts index dc76997cab587..823cd456c718c 100644 --- a/clients/client-rtbfabric/src/commands/AcceptLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/AcceptLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptLinkRequest, AcceptLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { AcceptLinkRequest, AcceptLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { AcceptLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/CreateInboundExternalLinkCommand.ts b/clients/client-rtbfabric/src/commands/CreateInboundExternalLinkCommand.ts index de5f4f45fe399..c15a5e0974132 100644 --- a/clients/client-rtbfabric/src/commands/CreateInboundExternalLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/CreateInboundExternalLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInboundExternalLinkRequest, CreateInboundExternalLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { CreateInboundExternalLinkRequest, CreateInboundExternalLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { CreateInboundExternalLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/CreateLinkCommand.ts b/clients/client-rtbfabric/src/commands/CreateLinkCommand.ts index 32e9072828688..5abc79c403eba 100644 --- a/clients/client-rtbfabric/src/commands/CreateLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/CreateLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLinkRequest, CreateLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { CreateLinkRequest, CreateLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { CreateLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/CreateOutboundExternalLinkCommand.ts b/clients/client-rtbfabric/src/commands/CreateOutboundExternalLinkCommand.ts index 5b23285d9f5ff..9de3e141f82df 100644 --- a/clients/client-rtbfabric/src/commands/CreateOutboundExternalLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/CreateOutboundExternalLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOutboundExternalLinkRequest, CreateOutboundExternalLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { CreateOutboundExternalLinkRequest, CreateOutboundExternalLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { CreateOutboundExternalLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/CreateRequesterGatewayCommand.ts b/clients/client-rtbfabric/src/commands/CreateRequesterGatewayCommand.ts index 98800b51ac9de..79106830d72d7 100644 --- a/clients/client-rtbfabric/src/commands/CreateRequesterGatewayCommand.ts +++ b/clients/client-rtbfabric/src/commands/CreateRequesterGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRequesterGatewayRequest, CreateRequesterGatewayResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { CreateRequesterGatewayRequest, CreateRequesterGatewayResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { CreateRequesterGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/CreateResponderGatewayCommand.ts b/clients/client-rtbfabric/src/commands/CreateResponderGatewayCommand.ts index 030a548aeec8d..e6c6282857055 100644 --- a/clients/client-rtbfabric/src/commands/CreateResponderGatewayCommand.ts +++ b/clients/client-rtbfabric/src/commands/CreateResponderGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResponderGatewayRequest, CreateResponderGatewayResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { CreateResponderGatewayRequest, CreateResponderGatewayResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { CreateResponderGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/DeleteInboundExternalLinkCommand.ts b/clients/client-rtbfabric/src/commands/DeleteInboundExternalLinkCommand.ts index fbcd64add30a2..5fba4e8daff55 100644 --- a/clients/client-rtbfabric/src/commands/DeleteInboundExternalLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/DeleteInboundExternalLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInboundExternalLinkRequest, DeleteInboundExternalLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { DeleteInboundExternalLinkRequest, DeleteInboundExternalLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { DeleteInboundExternalLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/DeleteLinkCommand.ts b/clients/client-rtbfabric/src/commands/DeleteLinkCommand.ts index ed90f629e6a2c..ec8ea68500e78 100644 --- a/clients/client-rtbfabric/src/commands/DeleteLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/DeleteLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLinkRequest, DeleteLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { DeleteLinkRequest, DeleteLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { DeleteLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/DeleteOutboundExternalLinkCommand.ts b/clients/client-rtbfabric/src/commands/DeleteOutboundExternalLinkCommand.ts index f28a1679def34..1b743469c11d3 100644 --- a/clients/client-rtbfabric/src/commands/DeleteOutboundExternalLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/DeleteOutboundExternalLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOutboundExternalLinkRequest, DeleteOutboundExternalLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { DeleteOutboundExternalLinkRequest, DeleteOutboundExternalLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { DeleteOutboundExternalLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/DeleteRequesterGatewayCommand.ts b/clients/client-rtbfabric/src/commands/DeleteRequesterGatewayCommand.ts index 592085ade01d8..f3896c656ff87 100644 --- a/clients/client-rtbfabric/src/commands/DeleteRequesterGatewayCommand.ts +++ b/clients/client-rtbfabric/src/commands/DeleteRequesterGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRequesterGatewayRequest, DeleteRequesterGatewayResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { DeleteRequesterGatewayRequest, DeleteRequesterGatewayResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { DeleteRequesterGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/DeleteResponderGatewayCommand.ts b/clients/client-rtbfabric/src/commands/DeleteResponderGatewayCommand.ts index bcbc9179b61ff..23eff92d9b8ed 100644 --- a/clients/client-rtbfabric/src/commands/DeleteResponderGatewayCommand.ts +++ b/clients/client-rtbfabric/src/commands/DeleteResponderGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResponderGatewayRequest, DeleteResponderGatewayResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { DeleteResponderGatewayRequest, DeleteResponderGatewayResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { DeleteResponderGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/GetInboundExternalLinkCommand.ts b/clients/client-rtbfabric/src/commands/GetInboundExternalLinkCommand.ts index 5be1002fed21b..71383c232be97 100644 --- a/clients/client-rtbfabric/src/commands/GetInboundExternalLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/GetInboundExternalLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInboundExternalLinkRequest, GetInboundExternalLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { GetInboundExternalLinkRequest, GetInboundExternalLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { GetInboundExternalLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/GetLinkCommand.ts b/clients/client-rtbfabric/src/commands/GetLinkCommand.ts index cf98a4a431bba..bfbb40b306a08 100644 --- a/clients/client-rtbfabric/src/commands/GetLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/GetLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLinkRequest, GetLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { GetLinkRequest, GetLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { GetLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/GetOutboundExternalLinkCommand.ts b/clients/client-rtbfabric/src/commands/GetOutboundExternalLinkCommand.ts index 4ecef0fbb6fc9..71a19506b0575 100644 --- a/clients/client-rtbfabric/src/commands/GetOutboundExternalLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/GetOutboundExternalLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOutboundExternalLinkRequest, GetOutboundExternalLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { GetOutboundExternalLinkRequest, GetOutboundExternalLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { GetOutboundExternalLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/GetRequesterGatewayCommand.ts b/clients/client-rtbfabric/src/commands/GetRequesterGatewayCommand.ts index d3461235f7a5f..2950653b29239 100644 --- a/clients/client-rtbfabric/src/commands/GetRequesterGatewayCommand.ts +++ b/clients/client-rtbfabric/src/commands/GetRequesterGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRequesterGatewayRequest, GetRequesterGatewayResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { GetRequesterGatewayRequest, GetRequesterGatewayResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { GetRequesterGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/GetResponderGatewayCommand.ts b/clients/client-rtbfabric/src/commands/GetResponderGatewayCommand.ts index 894829470df5e..5808237af1d27 100644 --- a/clients/client-rtbfabric/src/commands/GetResponderGatewayCommand.ts +++ b/clients/client-rtbfabric/src/commands/GetResponderGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResponderGatewayRequest, GetResponderGatewayResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { GetResponderGatewayRequest, GetResponderGatewayResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { GetResponderGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/ListLinksCommand.ts b/clients/client-rtbfabric/src/commands/ListLinksCommand.ts index 69561ea9a456c..66673fac55725 100644 --- a/clients/client-rtbfabric/src/commands/ListLinksCommand.ts +++ b/clients/client-rtbfabric/src/commands/ListLinksCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLinksRequest, ListLinksResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { ListLinksRequest, ListLinksResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { ListLinks } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/ListRequesterGatewaysCommand.ts b/clients/client-rtbfabric/src/commands/ListRequesterGatewaysCommand.ts index 6225c41619275..020cd75fe4276 100644 --- a/clients/client-rtbfabric/src/commands/ListRequesterGatewaysCommand.ts +++ b/clients/client-rtbfabric/src/commands/ListRequesterGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRequesterGatewaysRequest, ListRequesterGatewaysResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { ListRequesterGatewaysRequest, ListRequesterGatewaysResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { ListRequesterGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/ListResponderGatewaysCommand.ts b/clients/client-rtbfabric/src/commands/ListResponderGatewaysCommand.ts index 1488faedb2436..0737de1dedb6e 100644 --- a/clients/client-rtbfabric/src/commands/ListResponderGatewaysCommand.ts +++ b/clients/client-rtbfabric/src/commands/ListResponderGatewaysCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResponderGatewaysRequest, ListResponderGatewaysResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { ListResponderGatewaysRequest, ListResponderGatewaysResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { ListResponderGateways } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/ListTagsForResourceCommand.ts b/clients/client-rtbfabric/src/commands/ListTagsForResourceCommand.ts index 03e9e8067650d..d34f1e919babf 100644 --- a/clients/client-rtbfabric/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rtbfabric/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/RejectLinkCommand.ts b/clients/client-rtbfabric/src/commands/RejectLinkCommand.ts index 80ec96cff8436..367b04eebf914 100644 --- a/clients/client-rtbfabric/src/commands/RejectLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/RejectLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectLinkRequest, RejectLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { RejectLinkRequest, RejectLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { RejectLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/TagResourceCommand.ts b/clients/client-rtbfabric/src/commands/TagResourceCommand.ts index 72a5f27c724c8..e90ead184f421 100644 --- a/clients/client-rtbfabric/src/commands/TagResourceCommand.ts +++ b/clients/client-rtbfabric/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/UntagResourceCommand.ts b/clients/client-rtbfabric/src/commands/UntagResourceCommand.ts index 17faa308d8309..5eac304f9bfd5 100644 --- a/clients/client-rtbfabric/src/commands/UntagResourceCommand.ts +++ b/clients/client-rtbfabric/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/UpdateLinkCommand.ts b/clients/client-rtbfabric/src/commands/UpdateLinkCommand.ts index 182eecc4af787..6397cbfaa2511 100644 --- a/clients/client-rtbfabric/src/commands/UpdateLinkCommand.ts +++ b/clients/client-rtbfabric/src/commands/UpdateLinkCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLinkRequest, UpdateLinkResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { UpdateLinkRequest, UpdateLinkResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { UpdateLink } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/UpdateLinkModuleFlowCommand.ts b/clients/client-rtbfabric/src/commands/UpdateLinkModuleFlowCommand.ts index 6b7d657652779..df09c20b5c59e 100644 --- a/clients/client-rtbfabric/src/commands/UpdateLinkModuleFlowCommand.ts +++ b/clients/client-rtbfabric/src/commands/UpdateLinkModuleFlowCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLinkModuleFlowRequest, UpdateLinkModuleFlowResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { UpdateLinkModuleFlowRequest, UpdateLinkModuleFlowResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { UpdateLinkModuleFlow } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/UpdateRequesterGatewayCommand.ts b/clients/client-rtbfabric/src/commands/UpdateRequesterGatewayCommand.ts index 003741f0b61ed..9ac5b25aa04ab 100644 --- a/clients/client-rtbfabric/src/commands/UpdateRequesterGatewayCommand.ts +++ b/clients/client-rtbfabric/src/commands/UpdateRequesterGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRequesterGatewayRequest, UpdateRequesterGatewayResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { UpdateRequesterGatewayRequest, UpdateRequesterGatewayResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { UpdateRequesterGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/commands/UpdateResponderGatewayCommand.ts b/clients/client-rtbfabric/src/commands/UpdateResponderGatewayCommand.ts index 37fa777435209..6420cd6bc042c 100644 --- a/clients/client-rtbfabric/src/commands/UpdateResponderGatewayCommand.ts +++ b/clients/client-rtbfabric/src/commands/UpdateResponderGatewayCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResponderGatewayRequest, UpdateResponderGatewayResponse } from "../models/models_0"; -import { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; +import type { UpdateResponderGatewayRequest, UpdateResponderGatewayResponse } from "../models/models_0"; +import type { RTBFabricClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RTBFabricClient"; import { UpdateResponderGateway } from "../schemas/schemas_0"; /** diff --git a/clients/client-rtbfabric/src/endpoint/EndpointParameters.ts b/clients/client-rtbfabric/src/endpoint/EndpointParameters.ts index 682f7d4d02b9f..73116c213af12 100644 --- a/clients/client-rtbfabric/src/endpoint/EndpointParameters.ts +++ b/clients/client-rtbfabric/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-rtbfabric/src/endpoint/endpointResolver.ts b/clients/client-rtbfabric/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-rtbfabric/src/endpoint/endpointResolver.ts +++ b/clients/client-rtbfabric/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-rtbfabric/src/extensionConfiguration.ts b/clients/client-rtbfabric/src/extensionConfiguration.ts index 4ca9d4ccc0119..d22965f131467 100644 --- a/clients/client-rtbfabric/src/extensionConfiguration.ts +++ b/clients/client-rtbfabric/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-rtbfabric/src/models/RTBFabricServiceException.ts b/clients/client-rtbfabric/src/models/RTBFabricServiceException.ts index 0d6bd21f812c7..d6c85f341a20c 100644 --- a/clients/client-rtbfabric/src/models/RTBFabricServiceException.ts +++ b/clients/client-rtbfabric/src/models/RTBFabricServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-rtbfabric/src/models/errors.ts b/clients/client-rtbfabric/src/models/errors.ts index 022f57d726b17..c6ae9defab4c7 100644 --- a/clients/client-rtbfabric/src/models/errors.ts +++ b/clients/client-rtbfabric/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RTBFabricServiceException as __BaseException } from "./RTBFabricServiceException"; diff --git a/clients/client-rtbfabric/src/pagination/Interfaces.ts b/clients/client-rtbfabric/src/pagination/Interfaces.ts index eddc8f9c8f815..8924ac0ac8a2e 100644 --- a/clients/client-rtbfabric/src/pagination/Interfaces.ts +++ b/clients/client-rtbfabric/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RTBFabricClient } from "../RTBFabricClient"; diff --git a/clients/client-rtbfabric/src/pagination/ListLinksPaginator.ts b/clients/client-rtbfabric/src/pagination/ListLinksPaginator.ts index 8c89fca7d75ea..0d7571208fea5 100644 --- a/clients/client-rtbfabric/src/pagination/ListLinksPaginator.ts +++ b/clients/client-rtbfabric/src/pagination/ListLinksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLinksCommand, ListLinksCommandInput, ListLinksCommandOutput } from "../commands/ListLinksCommand"; import { RTBFabricClient } from "../RTBFabricClient"; diff --git a/clients/client-rtbfabric/src/pagination/ListRequesterGatewaysPaginator.ts b/clients/client-rtbfabric/src/pagination/ListRequesterGatewaysPaginator.ts index fde91762b9922..14c39cdf01b9d 100644 --- a/clients/client-rtbfabric/src/pagination/ListRequesterGatewaysPaginator.ts +++ b/clients/client-rtbfabric/src/pagination/ListRequesterGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRequesterGatewaysCommand, diff --git a/clients/client-rtbfabric/src/pagination/ListResponderGatewaysPaginator.ts b/clients/client-rtbfabric/src/pagination/ListResponderGatewaysPaginator.ts index efe9ad4f6161d..c322e5cfc9b24 100644 --- a/clients/client-rtbfabric/src/pagination/ListResponderGatewaysPaginator.ts +++ b/clients/client-rtbfabric/src/pagination/ListResponderGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResponderGatewaysCommand, diff --git a/clients/client-rtbfabric/src/runtimeConfig.browser.ts b/clients/client-rtbfabric/src/runtimeConfig.browser.ts index 435b8561fcf98..86828e6b005f9 100644 --- a/clients/client-rtbfabric/src/runtimeConfig.browser.ts +++ b/clients/client-rtbfabric/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RTBFabricClientConfig } from "./RTBFabricClient"; + +import type { RTBFabricClientConfig } from "./RTBFabricClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-rtbfabric/src/runtimeConfig.native.ts b/clients/client-rtbfabric/src/runtimeConfig.native.ts index bc23cef12ed0d..ea7f9d0b38e67 100644 --- a/clients/client-rtbfabric/src/runtimeConfig.native.ts +++ b/clients/client-rtbfabric/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RTBFabricClientConfig } from "./RTBFabricClient"; +import type { RTBFabricClientConfig } from "./RTBFabricClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-rtbfabric/src/runtimeConfig.shared.ts b/clients/client-rtbfabric/src/runtimeConfig.shared.ts index 49a80eec20767..b675867139884 100644 --- a/clients/client-rtbfabric/src/runtimeConfig.shared.ts +++ b/clients/client-rtbfabric/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRTBFabricHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RTBFabricClientConfig } from "./RTBFabricClient"; +import type { RTBFabricClientConfig } from "./RTBFabricClient"; /** * @internal diff --git a/clients/client-rtbfabric/src/runtimeConfig.ts b/clients/client-rtbfabric/src/runtimeConfig.ts index 378bf8348b222..40f73d57cdf11 100644 --- a/clients/client-rtbfabric/src/runtimeConfig.ts +++ b/clients/client-rtbfabric/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RTBFabricClientConfig } from "./RTBFabricClient"; + +import type { RTBFabricClientConfig } from "./RTBFabricClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-rtbfabric/src/runtimeExtensions.ts b/clients/client-rtbfabric/src/runtimeExtensions.ts index 259bd0b26a858..909ac7ab64d08 100644 --- a/clients/client-rtbfabric/src/runtimeExtensions.ts +++ b/clients/client-rtbfabric/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RTBFabricExtensionConfiguration } from "./extensionConfiguration"; +import type { RTBFabricExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-rtbfabric/src/schemas/schemas_0.ts b/clients/client-rtbfabric/src/schemas/schemas_0.ts index fc70e5f79f04c..b7a22eda2341c 100644 --- a/clients/client-rtbfabric/src/schemas/schemas_0.ts +++ b/clients/client-rtbfabric/src/schemas/schemas_0.ts @@ -199,7 +199,7 @@ const n0 = "com.amazonaws.rtbfabric"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-rum/package.json b/clients/client-rum/package.json index b5d44a1930932..51091f54cadcf 100644 --- a/clients/client-rum/package.json +++ b/clients/client-rum/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-rum/src/RUM.ts b/clients/client-rum/src/RUM.ts index 3db7d74627671..7c901f1a791b3 100644 --- a/clients/client-rum/src/RUM.ts +++ b/clients/client-rum/src/RUM.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchCreateRumMetricDefinitionsCommand, @@ -98,7 +98,7 @@ import { UpdateRumMetricDefinitionCommandInput, UpdateRumMetricDefinitionCommandOutput, } from "./commands/UpdateRumMetricDefinitionCommand"; -import { RUMClient, RUMClientConfig } from "./RUMClient"; +import { RUMClient } from "./RUMClient"; const commands = { BatchCreateRumMetricDefinitionsCommand, diff --git a/clients/client-rum/src/RUMClient.ts b/clients/client-rum/src/RUMClient.ts index 6a69c3b233df3..ddb77e4a67b8e 100644 --- a/clients/client-rum/src/RUMClient.ts +++ b/clients/client-rum/src/RUMClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRUMHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -111,7 +120,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-rum/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-rum/src/auth/httpAuthExtensionConfiguration.ts index 0e5f1ca4e8957..88134b21c6110 100644 --- a/clients/client-rum/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-rum/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RUMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RUMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-rum/src/auth/httpAuthSchemeProvider.ts b/clients/client-rum/src/auth/httpAuthSchemeProvider.ts index 4621602279955..c391df0b986f5 100644 --- a/clients/client-rum/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-rum/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RUMClientConfig, RUMClientResolvedConfig } from "../RUMClient"; +import { type RUMClientResolvedConfig, RUMClientConfig } from "../RUMClient"; /** * @internal diff --git a/clients/client-rum/src/commands/BatchCreateRumMetricDefinitionsCommand.ts b/clients/client-rum/src/commands/BatchCreateRumMetricDefinitionsCommand.ts index 2dc619e2b498d..a2f2db60f1733 100644 --- a/clients/client-rum/src/commands/BatchCreateRumMetricDefinitionsCommand.ts +++ b/clients/client-rum/src/commands/BatchCreateRumMetricDefinitionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchCreateRumMetricDefinitionsRequest, BatchCreateRumMetricDefinitionsResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { + BatchCreateRumMetricDefinitionsRequest, + BatchCreateRumMetricDefinitionsResponse, +} from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { BatchCreateRumMetricDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/BatchDeleteRumMetricDefinitionsCommand.ts b/clients/client-rum/src/commands/BatchDeleteRumMetricDefinitionsCommand.ts index 33157119a1759..6ed92c2a630bc 100644 --- a/clients/client-rum/src/commands/BatchDeleteRumMetricDefinitionsCommand.ts +++ b/clients/client-rum/src/commands/BatchDeleteRumMetricDefinitionsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteRumMetricDefinitionsRequest, BatchDeleteRumMetricDefinitionsResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { + BatchDeleteRumMetricDefinitionsRequest, + BatchDeleteRumMetricDefinitionsResponse, +} from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { BatchDeleteRumMetricDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/BatchGetRumMetricDefinitionsCommand.ts b/clients/client-rum/src/commands/BatchGetRumMetricDefinitionsCommand.ts index 2ebb95bf68d48..8cd5ea4f12e09 100644 --- a/clients/client-rum/src/commands/BatchGetRumMetricDefinitionsCommand.ts +++ b/clients/client-rum/src/commands/BatchGetRumMetricDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetRumMetricDefinitionsRequest, BatchGetRumMetricDefinitionsResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { BatchGetRumMetricDefinitionsRequest, BatchGetRumMetricDefinitionsResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { BatchGetRumMetricDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/CreateAppMonitorCommand.ts b/clients/client-rum/src/commands/CreateAppMonitorCommand.ts index 3808fbd2a326a..b219b875b30d1 100644 --- a/clients/client-rum/src/commands/CreateAppMonitorCommand.ts +++ b/clients/client-rum/src/commands/CreateAppMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppMonitorRequest, CreateAppMonitorResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { CreateAppMonitorRequest, CreateAppMonitorResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { CreateAppMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/DeleteAppMonitorCommand.ts b/clients/client-rum/src/commands/DeleteAppMonitorCommand.ts index bda5289f560ae..96a7f6ed53a46 100644 --- a/clients/client-rum/src/commands/DeleteAppMonitorCommand.ts +++ b/clients/client-rum/src/commands/DeleteAppMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppMonitorRequest, DeleteAppMonitorResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { DeleteAppMonitorRequest, DeleteAppMonitorResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { DeleteAppMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-rum/src/commands/DeleteResourcePolicyCommand.ts index c7be99b735619..8b714194caca2 100644 --- a/clients/client-rum/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-rum/src/commands/DeleteResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/DeleteRumMetricsDestinationCommand.ts b/clients/client-rum/src/commands/DeleteRumMetricsDestinationCommand.ts index 22cabbf9e5418..90da5c8d748fd 100644 --- a/clients/client-rum/src/commands/DeleteRumMetricsDestinationCommand.ts +++ b/clients/client-rum/src/commands/DeleteRumMetricsDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRumMetricsDestinationRequest, DeleteRumMetricsDestinationResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { DeleteRumMetricsDestinationRequest, DeleteRumMetricsDestinationResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { DeleteRumMetricsDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/GetAppMonitorCommand.ts b/clients/client-rum/src/commands/GetAppMonitorCommand.ts index 17d8eaef39c72..9e91fc99200d1 100644 --- a/clients/client-rum/src/commands/GetAppMonitorCommand.ts +++ b/clients/client-rum/src/commands/GetAppMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAppMonitorRequest, GetAppMonitorResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { GetAppMonitorRequest, GetAppMonitorResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { GetAppMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/GetAppMonitorDataCommand.ts b/clients/client-rum/src/commands/GetAppMonitorDataCommand.ts index 84187b6a0343e..d2727417e8801 100644 --- a/clients/client-rum/src/commands/GetAppMonitorDataCommand.ts +++ b/clients/client-rum/src/commands/GetAppMonitorDataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAppMonitorDataRequest, GetAppMonitorDataResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { GetAppMonitorDataRequest, GetAppMonitorDataResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { GetAppMonitorData } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/GetResourcePolicyCommand.ts b/clients/client-rum/src/commands/GetResourcePolicyCommand.ts index f20622fde6229..6ec48febcdb38 100644 --- a/clients/client-rum/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-rum/src/commands/GetResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { GetResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/ListAppMonitorsCommand.ts b/clients/client-rum/src/commands/ListAppMonitorsCommand.ts index 41df5c6bed9cb..8063bdc67413d 100644 --- a/clients/client-rum/src/commands/ListAppMonitorsCommand.ts +++ b/clients/client-rum/src/commands/ListAppMonitorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppMonitorsRequest, ListAppMonitorsResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { ListAppMonitorsRequest, ListAppMonitorsResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { ListAppMonitors } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/ListRumMetricsDestinationsCommand.ts b/clients/client-rum/src/commands/ListRumMetricsDestinationsCommand.ts index de341898d73ca..18818ac158bd8 100644 --- a/clients/client-rum/src/commands/ListRumMetricsDestinationsCommand.ts +++ b/clients/client-rum/src/commands/ListRumMetricsDestinationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRumMetricsDestinationsRequest, ListRumMetricsDestinationsResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { ListRumMetricsDestinationsRequest, ListRumMetricsDestinationsResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { ListRumMetricsDestinations } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/ListTagsForResourceCommand.ts b/clients/client-rum/src/commands/ListTagsForResourceCommand.ts index b316db22dd163..891ea8d6e8817 100644 --- a/clients/client-rum/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-rum/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/PutResourcePolicyCommand.ts b/clients/client-rum/src/commands/PutResourcePolicyCommand.ts index 103dc388f0099..0e3f04b311f2c 100644 --- a/clients/client-rum/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-rum/src/commands/PutResourcePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { PutResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/PutRumEventsCommand.ts b/clients/client-rum/src/commands/PutRumEventsCommand.ts index fc4f597a92411..29703ed96b8cd 100644 --- a/clients/client-rum/src/commands/PutRumEventsCommand.ts +++ b/clients/client-rum/src/commands/PutRumEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRumEventsRequest, PutRumEventsResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { PutRumEventsRequest, PutRumEventsResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { PutRumEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/PutRumMetricsDestinationCommand.ts b/clients/client-rum/src/commands/PutRumMetricsDestinationCommand.ts index bb5a40e82e11d..aac12b9b4854a 100644 --- a/clients/client-rum/src/commands/PutRumMetricsDestinationCommand.ts +++ b/clients/client-rum/src/commands/PutRumMetricsDestinationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRumMetricsDestinationRequest, PutRumMetricsDestinationResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { PutRumMetricsDestinationRequest, PutRumMetricsDestinationResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { PutRumMetricsDestination } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/TagResourceCommand.ts b/clients/client-rum/src/commands/TagResourceCommand.ts index 3e8153f9eb303..9e309c23c8b7c 100644 --- a/clients/client-rum/src/commands/TagResourceCommand.ts +++ b/clients/client-rum/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/UntagResourceCommand.ts b/clients/client-rum/src/commands/UntagResourceCommand.ts index 6d8fa10abd82e..623bfa02070aa 100644 --- a/clients/client-rum/src/commands/UntagResourceCommand.ts +++ b/clients/client-rum/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/UpdateAppMonitorCommand.ts b/clients/client-rum/src/commands/UpdateAppMonitorCommand.ts index 80f6cb00cb70c..85c837b0b2483 100644 --- a/clients/client-rum/src/commands/UpdateAppMonitorCommand.ts +++ b/clients/client-rum/src/commands/UpdateAppMonitorCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppMonitorRequest, UpdateAppMonitorResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { UpdateAppMonitorRequest, UpdateAppMonitorResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { UpdateAppMonitor } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/commands/UpdateRumMetricDefinitionCommand.ts b/clients/client-rum/src/commands/UpdateRumMetricDefinitionCommand.ts index 4c332f0099a7e..e2148e209973c 100644 --- a/clients/client-rum/src/commands/UpdateRumMetricDefinitionCommand.ts +++ b/clients/client-rum/src/commands/UpdateRumMetricDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRumMetricDefinitionRequest, UpdateRumMetricDefinitionResponse } from "../models/models_0"; -import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; +import type { UpdateRumMetricDefinitionRequest, UpdateRumMetricDefinitionResponse } from "../models/models_0"; +import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; import { UpdateRumMetricDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-rum/src/endpoint/EndpointParameters.ts b/clients/client-rum/src/endpoint/EndpointParameters.ts index 97cdb5c632fc7..0f3605f6d9b0b 100644 --- a/clients/client-rum/src/endpoint/EndpointParameters.ts +++ b/clients/client-rum/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-rum/src/endpoint/endpointResolver.ts b/clients/client-rum/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-rum/src/endpoint/endpointResolver.ts +++ b/clients/client-rum/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-rum/src/extensionConfiguration.ts b/clients/client-rum/src/extensionConfiguration.ts index cd2c0f57f2bfd..55c6175a4ebfc 100644 --- a/clients/client-rum/src/extensionConfiguration.ts +++ b/clients/client-rum/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-rum/src/models/RUMServiceException.ts b/clients/client-rum/src/models/RUMServiceException.ts index a0b589b9d444d..fa232416cc645 100644 --- a/clients/client-rum/src/models/RUMServiceException.ts +++ b/clients/client-rum/src/models/RUMServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-rum/src/models/errors.ts b/clients/client-rum/src/models/errors.ts index 6cee47d8705f1..1149632318244 100644 --- a/clients/client-rum/src/models/errors.ts +++ b/clients/client-rum/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RUMServiceException as __BaseException } from "./RUMServiceException"; diff --git a/clients/client-rum/src/pagination/BatchGetRumMetricDefinitionsPaginator.ts b/clients/client-rum/src/pagination/BatchGetRumMetricDefinitionsPaginator.ts index 060900debbe84..8260382eb264d 100644 --- a/clients/client-rum/src/pagination/BatchGetRumMetricDefinitionsPaginator.ts +++ b/clients/client-rum/src/pagination/BatchGetRumMetricDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchGetRumMetricDefinitionsCommand, diff --git a/clients/client-rum/src/pagination/GetAppMonitorDataPaginator.ts b/clients/client-rum/src/pagination/GetAppMonitorDataPaginator.ts index f0f8deda0108e..1c0901fb4951d 100644 --- a/clients/client-rum/src/pagination/GetAppMonitorDataPaginator.ts +++ b/clients/client-rum/src/pagination/GetAppMonitorDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetAppMonitorDataCommand, diff --git a/clients/client-rum/src/pagination/Interfaces.ts b/clients/client-rum/src/pagination/Interfaces.ts index 7e0034bc83148..e0d5fd07a3a6d 100644 --- a/clients/client-rum/src/pagination/Interfaces.ts +++ b/clients/client-rum/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { RUMClient } from "../RUMClient"; diff --git a/clients/client-rum/src/pagination/ListAppMonitorsPaginator.ts b/clients/client-rum/src/pagination/ListAppMonitorsPaginator.ts index 8d09c983cb760..0b599bb3b9afb 100644 --- a/clients/client-rum/src/pagination/ListAppMonitorsPaginator.ts +++ b/clients/client-rum/src/pagination/ListAppMonitorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppMonitorsCommand, diff --git a/clients/client-rum/src/pagination/ListRumMetricsDestinationsPaginator.ts b/clients/client-rum/src/pagination/ListRumMetricsDestinationsPaginator.ts index a86dc595b634c..d9a7b53e0472c 100644 --- a/clients/client-rum/src/pagination/ListRumMetricsDestinationsPaginator.ts +++ b/clients/client-rum/src/pagination/ListRumMetricsDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRumMetricsDestinationsCommand, diff --git a/clients/client-rum/src/runtimeConfig.browser.ts b/clients/client-rum/src/runtimeConfig.browser.ts index 30f5c0075059d..5f361bb844e79 100644 --- a/clients/client-rum/src/runtimeConfig.browser.ts +++ b/clients/client-rum/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RUMClientConfig } from "./RUMClient"; + +import type { RUMClientConfig } from "./RUMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/clients/client-rum/src/runtimeConfig.native.ts b/clients/client-rum/src/runtimeConfig.native.ts index daf0a68950e2d..f1c0d878558cd 100644 --- a/clients/client-rum/src/runtimeConfig.native.ts +++ b/clients/client-rum/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RUMClientConfig } from "./RUMClient"; +import type { RUMClientConfig } from "./RUMClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/clients/client-rum/src/runtimeConfig.shared.ts b/clients/client-rum/src/runtimeConfig.shared.ts index cf95bd9f22baa..c36eb5dfc275c 100644 --- a/clients/client-rum/src/runtimeConfig.shared.ts +++ b/clients/client-rum/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRUMHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RUMClientConfig } from "./RUMClient"; +import type { RUMClientConfig } from "./RUMClient"; /** * @internal diff --git a/clients/client-rum/src/runtimeConfig.ts b/clients/client-rum/src/runtimeConfig.ts index 424717bdf65fc..5965b70fa22a2 100644 --- a/clients/client-rum/src/runtimeConfig.ts +++ b/clients/client-rum/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RUMClientConfig } from "./RUMClient"; + +import type { RUMClientConfig } from "./RUMClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/clients/client-rum/src/runtimeExtensions.ts b/clients/client-rum/src/runtimeExtensions.ts index 1562fe1ef8487..092b533a131b2 100644 --- a/clients/client-rum/src/runtimeExtensions.ts +++ b/clients/client-rum/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RUMExtensionConfiguration } from "./extensionConfiguration"; +import type { RUMExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-rum/src/schemas/schemas_0.ts b/clients/client-rum/src/schemas/schemas_0.ts index 6c89464860dab..fca8dc7be4fa2 100644 --- a/clients/client-rum/src/schemas/schemas_0.ts +++ b/clients/client-rum/src/schemas/schemas_0.ts @@ -186,7 +186,7 @@ const n0 = "com.amazonaws.rum"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-s3-control/package.json b/clients/client-s3-control/package.json index f7f26fa7dfe52..97ef3afdff681 100644 --- a/clients/client-s3-control/package.json +++ b/clients/client-s3-control/package.json @@ -36,7 +36,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-blob-browser": "^4.2.6", "@smithy/hash-node": "^4.2.5", @@ -45,21 +45,21 @@ "@smithy/md5-js": "^4.2.5", "@smithy/middleware-apply-body-checksum": "^4.3.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-s3-control/src/S3Control.ts b/clients/client-s3-control/src/S3Control.ts index 9f995d1261108..68b59e8f0588b 100644 --- a/clients/client-s3-control/src/S3Control.ts +++ b/clients/client-s3-control/src/S3Control.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateAccessGrantsIdentityCenterCommand, @@ -467,7 +467,7 @@ import { UpdateStorageLensGroupCommandInput, UpdateStorageLensGroupCommandOutput, } from "./commands/UpdateStorageLensGroupCommand"; -import { S3ControlClient, S3ControlClientConfig } from "./S3ControlClient"; +import { S3ControlClient } from "./S3ControlClient"; const commands = { AssociateAccessGrantsIdentityCenterCommand, diff --git a/clients/client-s3-control/src/S3ControlClient.ts b/clients/client-s3-control/src/S3ControlClient.ts index c17c0b8481c18..2ae7fff97fc7d 100644 --- a/clients/client-s3-control/src/S3ControlClient.ts +++ b/clients/client-s3-control/src/S3ControlClient.ts @@ -1,25 +1,25 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type S3ControlInputConfig, + type S3ControlResolvedConfig, getHostPrefixDeduplicationPlugin, resolveS3ControlConfig, - S3ControlInputConfig, - S3ControlResolvedConfig, } from "@aws-sdk/middleware-sdk-s3-control"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -27,43 +27,52 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type Checksum as __Checksum, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type StreamHasher as __StreamHasher, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - Checksum as __Checksum, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - StreamHasher as __StreamHasher, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { Readable } from "stream"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultS3ControlHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -380,7 +389,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-s3-control/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-s3-control/src/auth/httpAuthExtensionConfiguration.ts index dfaa8dc1fb88a..d11ea772597ee 100644 --- a/clients/client-s3-control/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-s3-control/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { S3ControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { S3ControlHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-s3-control/src/auth/httpAuthSchemeProvider.ts b/clients/client-s3-control/src/auth/httpAuthSchemeProvider.ts index 84982e8952984..b6b950de5fc75 100644 --- a/clients/client-s3-control/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-s3-control/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { S3ControlClientConfig, S3ControlClientResolvedConfig } from "../S3ControlClient"; +import { type S3ControlClientResolvedConfig, S3ControlClientConfig } from "../S3ControlClient"; /** * @internal diff --git a/clients/client-s3-control/src/commands/AssociateAccessGrantsIdentityCenterCommand.ts b/clients/client-s3-control/src/commands/AssociateAccessGrantsIdentityCenterCommand.ts index 2c8b85ac097eb..a05a0fed07873 100644 --- a/clients/client-s3-control/src/commands/AssociateAccessGrantsIdentityCenterCommand.ts +++ b/clients/client-s3-control/src/commands/AssociateAccessGrantsIdentityCenterCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAccessGrantsIdentityCenterRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { AssociateAccessGrantsIdentityCenterRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { AssociateAccessGrantsIdentityCenter } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/CreateAccessGrantCommand.ts b/clients/client-s3-control/src/commands/CreateAccessGrantCommand.ts index 1688244b7d698..47e13d7add05e 100644 --- a/clients/client-s3-control/src/commands/CreateAccessGrantCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessGrantCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessGrantRequest, CreateAccessGrantResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { CreateAccessGrantRequest, CreateAccessGrantResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { CreateAccessGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/CreateAccessGrantsInstanceCommand.ts b/clients/client-s3-control/src/commands/CreateAccessGrantsInstanceCommand.ts index 20478364a67ef..1f9327b790b0b 100644 --- a/clients/client-s3-control/src/commands/CreateAccessGrantsInstanceCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessGrantsInstanceCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessGrantsInstanceRequest, CreateAccessGrantsInstanceResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { CreateAccessGrantsInstanceRequest, CreateAccessGrantsInstanceResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { CreateAccessGrantsInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/CreateAccessGrantsLocationCommand.ts b/clients/client-s3-control/src/commands/CreateAccessGrantsLocationCommand.ts index 4c50f2a12b509..dc25a614ae1f0 100644 --- a/clients/client-s3-control/src/commands/CreateAccessGrantsLocationCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessGrantsLocationCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessGrantsLocationRequest, CreateAccessGrantsLocationResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { CreateAccessGrantsLocationRequest, CreateAccessGrantsLocationResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { CreateAccessGrantsLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts b/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts index b2adb92fd09f0..ac86bf6d30c7f 100644 --- a/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessPointCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessPointRequest, CreateAccessPointResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { CreateAccessPointRequest, CreateAccessPointResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { CreateAccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts index 469955bb3ef67..32f1cb59e21db 100644 --- a/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/CreateAccessPointForObjectLambdaCommand.ts @@ -2,11 +2,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessPointForObjectLambdaRequest, CreateAccessPointForObjectLambdaResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { + CreateAccessPointForObjectLambdaRequest, + CreateAccessPointForObjectLambdaResult, +} from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { CreateAccessPointForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/CreateBucketCommand.ts b/clients/client-s3-control/src/commands/CreateBucketCommand.ts index 30cedb034ef24..885cf551b2818 100644 --- a/clients/client-s3-control/src/commands/CreateBucketCommand.ts +++ b/clients/client-s3-control/src/commands/CreateBucketCommand.ts @@ -3,11 +3,11 @@ import { getRedirectFromPostIdPlugin } from "@aws-sdk/middleware-sdk-s3-control" import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBucketRequest, CreateBucketResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { CreateBucketRequest, CreateBucketResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { CreateBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/CreateJobCommand.ts b/clients/client-s3-control/src/commands/CreateJobCommand.ts index 55c667f1f3466..4a4a57556a267 100644 --- a/clients/client-s3-control/src/commands/CreateJobCommand.ts +++ b/clients/client-s3-control/src/commands/CreateJobCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJobRequest, CreateJobResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { CreateJobRequest, CreateJobResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { CreateJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts b/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts index e567b13120da3..7df1307bf8aee 100644 --- a/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/CreateMultiRegionAccessPointCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMultiRegionAccessPointRequest, CreateMultiRegionAccessPointResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { CreateMultiRegionAccessPointRequest, CreateMultiRegionAccessPointResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { CreateMultiRegionAccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/CreateStorageLensGroupCommand.ts b/clients/client-s3-control/src/commands/CreateStorageLensGroupCommand.ts index 029225c1d0c4d..0f117466a0e5e 100644 --- a/clients/client-s3-control/src/commands/CreateStorageLensGroupCommand.ts +++ b/clients/client-s3-control/src/commands/CreateStorageLensGroupCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStorageLensGroupRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { CreateStorageLensGroupRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { CreateStorageLensGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteAccessGrantCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessGrantCommand.ts index 09ce7197fa98d..7e69eef3189f1 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessGrantCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessGrantCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessGrantRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteAccessGrantRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteAccessGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceCommand.ts index 5c23a9f6b56e3..fe97d12ca8135 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessGrantsInstanceRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteAccessGrantsInstanceRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteAccessGrantsInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.ts index 23314e5a46481..fe942c3f43d24 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessGrantsInstanceResourcePolicyRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteAccessGrantsInstanceResourcePolicyRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteAccessGrantsInstanceResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteAccessGrantsLocationCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessGrantsLocationCommand.ts index ea099788dd507..f4e7f2616e83e 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessGrantsLocationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessGrantsLocationCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessGrantsLocationRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteAccessGrantsLocationRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteAccessGrantsLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts index 6dfe81f92ac1d..6b34284bb4164 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessPointRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteAccessPointRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteAccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts index f9f57796bcbf4..14f987c5e306b 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointForObjectLambdaCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessPointForObjectLambdaRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteAccessPointForObjectLambdaRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteAccessPointForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts index a689435988432..043b24b9b6963 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessPointPolicyRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteAccessPointPolicyRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteAccessPointPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts index 3573340549175..1be3c9d81411a 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointPolicyForObjectLambdaCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessPointPolicyForObjectLambdaRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteAccessPointPolicyForObjectLambdaRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteAccessPointPolicyForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteAccessPointScopeCommand.ts b/clients/client-s3-control/src/commands/DeleteAccessPointScopeCommand.ts index cfb372eeeb06e..717b5e7d2eca3 100644 --- a/clients/client-s3-control/src/commands/DeleteAccessPointScopeCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteAccessPointScopeCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessPointScopeRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteAccessPointScopeRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteAccessPointScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteBucketCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketCommand.ts index 5dcc606758ebd..bf5bbe25e45e1 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteBucketRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts index 53d55e701d6f1..47357728ab721 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketLifecycleConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketLifecycleConfigurationRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteBucketLifecycleConfigurationRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteBucketLifecycleConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts index ccc21e482bf6d..04493005db970 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketPolicyCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketPolicyRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteBucketPolicyRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteBucketReplicationCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketReplicationCommand.ts index 28898dc89fafc..27551ff4910b8 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketReplicationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketReplicationCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketReplicationRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteBucketReplicationRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteBucketReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts b/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts index 212b77d7448ce..3e7bd95d5614f 100644 --- a/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteBucketTaggingCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketTaggingRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteBucketTaggingRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteBucketTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts b/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts index a8bcd80723f14..429760e91c2a1 100644 --- a/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteJobTaggingCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteJobTaggingRequest, DeleteJobTaggingResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteJobTaggingRequest, DeleteJobTaggingResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteJobTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts b/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts index 62ef86922f8dd..2534b76f79a00 100644 --- a/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteMultiRegionAccessPointCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMultiRegionAccessPointRequest, DeleteMultiRegionAccessPointResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteMultiRegionAccessPointRequest, DeleteMultiRegionAccessPointResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteMultiRegionAccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts b/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts index 315236f9a6fe4..8d0da2e6a5234 100644 --- a/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts +++ b/clients/client-s3-control/src/commands/DeletePublicAccessBlockCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePublicAccessBlockRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeletePublicAccessBlockRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeletePublicAccessBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts index bc65687ec3b20..9bb420e5f2c4c 100644 --- a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStorageLensConfigurationRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteStorageLensConfigurationRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteStorageLensConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts index 910af1032da25..1a2a49acde7a1 100644 --- a/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteStorageLensConfigurationTaggingCommand.ts @@ -2,14 +2,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteStorageLensConfigurationTaggingRequest, DeleteStorageLensConfigurationTaggingResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteStorageLensConfigurationTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DeleteStorageLensGroupCommand.ts b/clients/client-s3-control/src/commands/DeleteStorageLensGroupCommand.ts index efdbc23257ec2..163caa3e0032a 100644 --- a/clients/client-s3-control/src/commands/DeleteStorageLensGroupCommand.ts +++ b/clients/client-s3-control/src/commands/DeleteStorageLensGroupCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStorageLensGroupRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DeleteStorageLensGroupRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DeleteStorageLensGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DescribeJobCommand.ts b/clients/client-s3-control/src/commands/DescribeJobCommand.ts index 5725bd77c2b54..a59e67726b12f 100644 --- a/clients/client-s3-control/src/commands/DescribeJobCommand.ts +++ b/clients/client-s3-control/src/commands/DescribeJobCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobRequest, DescribeJobResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DescribeJobRequest, DescribeJobResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DescribeJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts b/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts index 42eb583b2349b..f816a6ff8cf91 100644 --- a/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts +++ b/clients/client-s3-control/src/commands/DescribeMultiRegionAccessPointOperationCommand.ts @@ -3,14 +3,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeMultiRegionAccessPointOperationRequest, DescribeMultiRegionAccessPointOperationResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DescribeMultiRegionAccessPointOperation } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/DissociateAccessGrantsIdentityCenterCommand.ts b/clients/client-s3-control/src/commands/DissociateAccessGrantsIdentityCenterCommand.ts index fa036df624da1..bd2406758be13 100644 --- a/clients/client-s3-control/src/commands/DissociateAccessGrantsIdentityCenterCommand.ts +++ b/clients/client-s3-control/src/commands/DissociateAccessGrantsIdentityCenterCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DissociateAccessGrantsIdentityCenterRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { DissociateAccessGrantsIdentityCenterRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { DissociateAccessGrantsIdentityCenter } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessGrantCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantCommand.ts index 1bcd03fd84542..8d7b8a33f10d4 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessGrantRequest, GetAccessGrantResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetAccessGrantRequest, GetAccessGrantResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessGrant } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceCommand.ts index e0fbcff911609..5d1129d0c8648 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessGrantsInstanceRequest, GetAccessGrantsInstanceResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetAccessGrantsInstanceRequest, GetAccessGrantsInstanceResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessGrantsInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceForPrefixCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceForPrefixCommand.ts index 46fa3c5d3f96e..45efaf4c5b4ab 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceForPrefixCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceForPrefixCommand.ts @@ -3,11 +3,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessGrantsInstanceForPrefixRequest, GetAccessGrantsInstanceForPrefixResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { + GetAccessGrantsInstanceForPrefixRequest, + GetAccessGrantsInstanceForPrefixResult, +} from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessGrantsInstanceForPrefix } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceResourcePolicyCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceResourcePolicyCommand.ts index 5db2581eae4aa..b58d5f375a71d 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantsInstanceResourcePolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantsInstanceResourcePolicyCommand.ts @@ -3,14 +3,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAccessGrantsInstanceResourcePolicyRequest, GetAccessGrantsInstanceResourcePolicyResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessGrantsInstanceResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessGrantsLocationCommand.ts b/clients/client-s3-control/src/commands/GetAccessGrantsLocationCommand.ts index 6ab219869d95b..30dc176151d8c 100644 --- a/clients/client-s3-control/src/commands/GetAccessGrantsLocationCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessGrantsLocationCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessGrantsLocationRequest, GetAccessGrantsLocationResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetAccessGrantsLocationRequest, GetAccessGrantsLocationResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessGrantsLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessPointCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointCommand.ts index 01418437fda92..dd000316b7c34 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessPointRequest, GetAccessPointResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetAccessPointRequest, GetAccessPointResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts index aeab23b17dd63..3fb2641f193b1 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointConfigurationForObjectLambdaCommand.ts @@ -2,14 +2,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAccessPointConfigurationForObjectLambdaRequest, GetAccessPointConfigurationForObjectLambdaResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessPointConfigurationForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts index 3bc9252e5a03e..ce43722d985d3 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointForObjectLambdaCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessPointForObjectLambdaRequest, GetAccessPointForObjectLambdaResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetAccessPointForObjectLambdaRequest, GetAccessPointForObjectLambdaResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessPointForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts index 7ff2635e133ab..8b071b9485b9c 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessPointPolicyRequest, GetAccessPointPolicyResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetAccessPointPolicyRequest, GetAccessPointPolicyResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessPointPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts index 4f771b624e5aa..cf7f51a11a4cf 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyForObjectLambdaCommand.ts @@ -2,14 +2,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAccessPointPolicyForObjectLambdaRequest, GetAccessPointPolicyForObjectLambdaResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessPointPolicyForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts index d948eb4c35414..1d86860ce1635 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessPointPolicyStatusRequest, GetAccessPointPolicyStatusResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetAccessPointPolicyStatusRequest, GetAccessPointPolicyStatusResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessPointPolicyStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts index 5398391c5908c..e53f37218e90d 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointPolicyStatusForObjectLambdaCommand.ts @@ -2,14 +2,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAccessPointPolicyStatusForObjectLambdaRequest, GetAccessPointPolicyStatusForObjectLambdaResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessPointPolicyStatusForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetAccessPointScopeCommand.ts b/clients/client-s3-control/src/commands/GetAccessPointScopeCommand.ts index eda39b2a63ff5..81da54502c2ad 100644 --- a/clients/client-s3-control/src/commands/GetAccessPointScopeCommand.ts +++ b/clients/client-s3-control/src/commands/GetAccessPointScopeCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessPointScopeRequest, GetAccessPointScopeResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetAccessPointScopeRequest, GetAccessPointScopeResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetAccessPointScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetBucketCommand.ts b/clients/client-s3-control/src/commands/GetBucketCommand.ts index 35a951e3af067..70d2f724e9416 100644 --- a/clients/client-s3-control/src/commands/GetBucketCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketRequest, GetBucketResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetBucketRequest, GetBucketResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts b/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts index 7caf09d32166f..ba3d9028c6236 100644 --- a/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketLifecycleConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketLifecycleConfigurationRequest, GetBucketLifecycleConfigurationResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetBucketLifecycleConfigurationRequest, GetBucketLifecycleConfigurationResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetBucketLifecycleConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts b/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts index 4ff1c15cf7f06..a9f9a17cf55e6 100644 --- a/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketPolicyCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketPolicyRequest, GetBucketPolicyResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetBucketPolicyRequest, GetBucketPolicyResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetBucketReplicationCommand.ts b/clients/client-s3-control/src/commands/GetBucketReplicationCommand.ts index 08238b6b8b490..60990a9e3bbeb 100644 --- a/clients/client-s3-control/src/commands/GetBucketReplicationCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketReplicationCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketReplicationRequest, GetBucketReplicationResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetBucketReplicationRequest, GetBucketReplicationResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetBucketReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts b/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts index 96a194c88f8a7..6398764a94c36 100644 --- a/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketTaggingCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketTaggingRequest, GetBucketTaggingResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetBucketTaggingRequest, GetBucketTaggingResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetBucketTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetBucketVersioningCommand.ts b/clients/client-s3-control/src/commands/GetBucketVersioningCommand.ts index 1f33f78ccce23..c226fc92c503b 100644 --- a/clients/client-s3-control/src/commands/GetBucketVersioningCommand.ts +++ b/clients/client-s3-control/src/commands/GetBucketVersioningCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketVersioningRequest, GetBucketVersioningResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetBucketVersioningRequest, GetBucketVersioningResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetBucketVersioning } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetDataAccessCommand.ts b/clients/client-s3-control/src/commands/GetDataAccessCommand.ts index 0d82571e8296c..3da5b3c9e9393 100644 --- a/clients/client-s3-control/src/commands/GetDataAccessCommand.ts +++ b/clients/client-s3-control/src/commands/GetDataAccessCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataAccessRequest, GetDataAccessResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetDataAccessRequest, GetDataAccessResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetDataAccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts b/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts index 5ebc0b21bb274..0447d9699d406 100644 --- a/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/GetJobTaggingCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobTaggingRequest, GetJobTaggingResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetJobTaggingRequest, GetJobTaggingResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetJobTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts index 2a19b13e65999..ca89f01087eb2 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMultiRegionAccessPointRequest, GetMultiRegionAccessPointResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetMultiRegionAccessPointRequest, GetMultiRegionAccessPointResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetMultiRegionAccessPoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts index fbcc19dc168fe..6f294f1a6650e 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMultiRegionAccessPointPolicyRequest, GetMultiRegionAccessPointPolicyResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetMultiRegionAccessPointPolicyRequest, GetMultiRegionAccessPointPolicyResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetMultiRegionAccessPointPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts index 358d09a960c4a..8257ceb8f5ab5 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointPolicyStatusCommand.ts @@ -3,14 +3,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetMultiRegionAccessPointPolicyStatusRequest, GetMultiRegionAccessPointPolicyStatusResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetMultiRegionAccessPointPolicyStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts index 116c850449844..cb8f127f09960 100644 --- a/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts +++ b/clients/client-s3-control/src/commands/GetMultiRegionAccessPointRoutesCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMultiRegionAccessPointRoutesRequest, GetMultiRegionAccessPointRoutesResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetMultiRegionAccessPointRoutesRequest, GetMultiRegionAccessPointRoutesResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetMultiRegionAccessPointRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts b/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts index 77f666efb0443..f27486a97ff38 100644 --- a/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts +++ b/clients/client-s3-control/src/commands/GetPublicAccessBlockCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPublicAccessBlockOutput, GetPublicAccessBlockRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetPublicAccessBlockOutput, GetPublicAccessBlockRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetPublicAccessBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts b/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts index cf2b6e79004b4..8b213bc3aaaa4 100644 --- a/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/GetStorageLensConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStorageLensConfigurationRequest, GetStorageLensConfigurationResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetStorageLensConfigurationRequest, GetStorageLensConfigurationResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetStorageLensConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts b/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts index 7b5e60ef5197a..202da2364a660 100644 --- a/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/GetStorageLensConfigurationTaggingCommand.ts @@ -2,14 +2,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetStorageLensConfigurationTaggingRequest, GetStorageLensConfigurationTaggingResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetStorageLensConfigurationTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/GetStorageLensGroupCommand.ts b/clients/client-s3-control/src/commands/GetStorageLensGroupCommand.ts index bcd9fdc93dfb1..cf4061756af82 100644 --- a/clients/client-s3-control/src/commands/GetStorageLensGroupCommand.ts +++ b/clients/client-s3-control/src/commands/GetStorageLensGroupCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetStorageLensGroupRequest, GetStorageLensGroupResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { GetStorageLensGroupRequest, GetStorageLensGroupResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { GetStorageLensGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListAccessGrantsCommand.ts b/clients/client-s3-control/src/commands/ListAccessGrantsCommand.ts index 34423cb6cbdb1..c28053aa31841 100644 --- a/clients/client-s3-control/src/commands/ListAccessGrantsCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessGrantsCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessGrantsRequest, ListAccessGrantsResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListAccessGrantsRequest, ListAccessGrantsResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListAccessGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListAccessGrantsInstancesCommand.ts b/clients/client-s3-control/src/commands/ListAccessGrantsInstancesCommand.ts index 6c5dc315bd384..e6c99939c5198 100644 --- a/clients/client-s3-control/src/commands/ListAccessGrantsInstancesCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessGrantsInstancesCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessGrantsInstancesRequest, ListAccessGrantsInstancesResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListAccessGrantsInstancesRequest, ListAccessGrantsInstancesResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListAccessGrantsInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListAccessGrantsLocationsCommand.ts b/clients/client-s3-control/src/commands/ListAccessGrantsLocationsCommand.ts index cb930ca7c76f2..f24d564529747 100644 --- a/clients/client-s3-control/src/commands/ListAccessGrantsLocationsCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessGrantsLocationsCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessGrantsLocationsRequest, ListAccessGrantsLocationsResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListAccessGrantsLocationsRequest, ListAccessGrantsLocationsResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListAccessGrantsLocations } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts b/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts index 0f10634209774..4e3847926cd6d 100644 --- a/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessPointsCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessPointsRequest, ListAccessPointsResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListAccessPointsRequest, ListAccessPointsResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListAccessPoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListAccessPointsForDirectoryBucketsCommand.ts b/clients/client-s3-control/src/commands/ListAccessPointsForDirectoryBucketsCommand.ts index fb88ed1cda42d..40af555b129a9 100644 --- a/clients/client-s3-control/src/commands/ListAccessPointsForDirectoryBucketsCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessPointsForDirectoryBucketsCommand.ts @@ -2,14 +2,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAccessPointsForDirectoryBucketsRequest, ListAccessPointsForDirectoryBucketsResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListAccessPointsForDirectoryBuckets } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts index ee2a79b79c67d..9834bac91fa93 100644 --- a/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/ListAccessPointsForObjectLambdaCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessPointsForObjectLambdaRequest, ListAccessPointsForObjectLambdaResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListAccessPointsForObjectLambdaRequest, ListAccessPointsForObjectLambdaResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListAccessPointsForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListCallerAccessGrantsCommand.ts b/clients/client-s3-control/src/commands/ListCallerAccessGrantsCommand.ts index f8d800cc2fe3b..ee1bd1da9ff1b 100644 --- a/clients/client-s3-control/src/commands/ListCallerAccessGrantsCommand.ts +++ b/clients/client-s3-control/src/commands/ListCallerAccessGrantsCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCallerAccessGrantsRequest, ListCallerAccessGrantsResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListCallerAccessGrantsRequest, ListCallerAccessGrantsResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListCallerAccessGrants } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListJobsCommand.ts b/clients/client-s3-control/src/commands/ListJobsCommand.ts index 6a635c580c8c7..d69e8219ed623 100644 --- a/clients/client-s3-control/src/commands/ListJobsCommand.ts +++ b/clients/client-s3-control/src/commands/ListJobsCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsRequest, ListJobsResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListJobsRequest, ListJobsResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts b/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts index 9e3bb6dfbcdc5..1d65bffebfc17 100644 --- a/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts +++ b/clients/client-s3-control/src/commands/ListMultiRegionAccessPointsCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMultiRegionAccessPointsRequest, ListMultiRegionAccessPointsResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListMultiRegionAccessPointsRequest, ListMultiRegionAccessPointsResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListMultiRegionAccessPoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts b/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts index 1a7913e706070..9a38fcd703056 100644 --- a/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts +++ b/clients/client-s3-control/src/commands/ListRegionalBucketsCommand.ts @@ -2,11 +2,11 @@ import { getRedirectFromPostIdPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegionalBucketsRequest, ListRegionalBucketsResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListRegionalBucketsRequest, ListRegionalBucketsResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListRegionalBuckets } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts b/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts index 066271869ed98..14c627378ab5f 100644 --- a/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts +++ b/clients/client-s3-control/src/commands/ListStorageLensConfigurationsCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStorageLensConfigurationsRequest, ListStorageLensConfigurationsResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListStorageLensConfigurationsRequest, ListStorageLensConfigurationsResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListStorageLensConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListStorageLensGroupsCommand.ts b/clients/client-s3-control/src/commands/ListStorageLensGroupsCommand.ts index c9bc939acb1f7..c8d5d8eef3511 100644 --- a/clients/client-s3-control/src/commands/ListStorageLensGroupsCommand.ts +++ b/clients/client-s3-control/src/commands/ListStorageLensGroupsCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStorageLensGroupsRequest, ListStorageLensGroupsResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListStorageLensGroupsRequest, ListStorageLensGroupsResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListStorageLensGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/ListTagsForResourceCommand.ts b/clients/client-s3-control/src/commands/ListTagsForResourceCommand.ts index 5fd56c457d250..62508ceea3fc0 100644 --- a/clients/client-s3-control/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-s3-control/src/commands/ListTagsForResourceCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts b/clients/client-s3-control/src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts index b0bfad7e0c14b..f0dbbbc9b7838 100644 --- a/clients/client-s3-control/src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts @@ -3,14 +3,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutAccessGrantsInstanceResourcePolicyRequest, PutAccessGrantsInstanceResourcePolicyResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutAccessGrantsInstanceResourcePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts index 88450481990e6..a0c6ff787f78a 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccessPointConfigurationForObjectLambdaRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutAccessPointConfigurationForObjectLambdaRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutAccessPointConfigurationForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts index e3b82f34b1aca..06168b008edbe 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointPolicyCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccessPointPolicyRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutAccessPointPolicyRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutAccessPointPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts index f951d12eefb90..3ecd99dc3f92e 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccessPointPolicyForObjectLambdaRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutAccessPointPolicyForObjectLambdaRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutAccessPointPolicyForObjectLambda } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutAccessPointScopeCommand.ts b/clients/client-s3-control/src/commands/PutAccessPointScopeCommand.ts index a9847582d42ee..68a4bcd9940a1 100644 --- a/clients/client-s3-control/src/commands/PutAccessPointScopeCommand.ts +++ b/clients/client-s3-control/src/commands/PutAccessPointScopeCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccessPointScopeRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutAccessPointScopeRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutAccessPointScope } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts b/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts index 02461a9adc2f4..b39b79c7e0b95 100644 --- a/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketLifecycleConfigurationCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketLifecycleConfigurationRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutBucketLifecycleConfigurationRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutBucketLifecycleConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts b/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts index 2f24fbdc2fd67..84d0a710866e7 100644 --- a/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketPolicyCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketPolicyRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutBucketPolicyRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutBucketReplicationCommand.ts b/clients/client-s3-control/src/commands/PutBucketReplicationCommand.ts index 8957b17f238ed..07aa6021e12ef 100644 --- a/clients/client-s3-control/src/commands/PutBucketReplicationCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketReplicationCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketReplicationRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutBucketReplicationRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutBucketReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts b/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts index 803474316ef26..c5e2955de3868 100644 --- a/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketTaggingCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketTaggingRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutBucketTaggingRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutBucketTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutBucketVersioningCommand.ts b/clients/client-s3-control/src/commands/PutBucketVersioningCommand.ts index bd38a1bb937ed..d1a79da3694be 100644 --- a/clients/client-s3-control/src/commands/PutBucketVersioningCommand.ts +++ b/clients/client-s3-control/src/commands/PutBucketVersioningCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketVersioningRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutBucketVersioningRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutBucketVersioning } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts b/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts index 080df716fa5b0..c7d7630de78f9 100644 --- a/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/PutJobTaggingCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutJobTaggingRequest, PutJobTaggingResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutJobTaggingRequest, PutJobTaggingResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutJobTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts b/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts index e0cbd9cbda18d..bf17ccbbf7158 100644 --- a/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts +++ b/clients/client-s3-control/src/commands/PutMultiRegionAccessPointPolicyCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMultiRegionAccessPointPolicyRequest, PutMultiRegionAccessPointPolicyResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutMultiRegionAccessPointPolicyRequest, PutMultiRegionAccessPointPolicyResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutMultiRegionAccessPointPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts b/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts index 6aa56fbd0c4c4..763a7e1e8a340 100644 --- a/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts +++ b/clients/client-s3-control/src/commands/PutPublicAccessBlockCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPublicAccessBlockRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutPublicAccessBlockRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutPublicAccessBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts b/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts index d1e58bb8bff0f..08a51b64c3baa 100644 --- a/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts +++ b/clients/client-s3-control/src/commands/PutStorageLensConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutStorageLensConfigurationRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { PutStorageLensConfigurationRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutStorageLensConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts b/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts index aa46eea212928..a33bab3cde00c 100644 --- a/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts +++ b/clients/client-s3-control/src/commands/PutStorageLensConfigurationTaggingCommand.ts @@ -2,14 +2,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutStorageLensConfigurationTaggingRequest, PutStorageLensConfigurationTaggingResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { PutStorageLensConfigurationTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts b/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts index e9712f796ce65..6116ab32e00c8 100644 --- a/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts +++ b/clients/client-s3-control/src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts @@ -3,14 +3,14 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { SubmitMultiRegionAccessPointRoutesRequest, SubmitMultiRegionAccessPointRoutesResult, } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { SubmitMultiRegionAccessPointRoutes } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/TagResourceCommand.ts b/clients/client-s3-control/src/commands/TagResourceCommand.ts index 0c8ea4ecbbb36..48fcb1354410e 100644 --- a/clients/client-s3-control/src/commands/TagResourceCommand.ts +++ b/clients/client-s3-control/src/commands/TagResourceCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { TagResourceRequest, TagResourceResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/UntagResourceCommand.ts b/clients/client-s3-control/src/commands/UntagResourceCommand.ts index 1081b05d98e8b..31eb2fba7a8e2 100644 --- a/clients/client-s3-control/src/commands/UntagResourceCommand.ts +++ b/clients/client-s3-control/src/commands/UntagResourceCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/UpdateAccessGrantsLocationCommand.ts b/clients/client-s3-control/src/commands/UpdateAccessGrantsLocationCommand.ts index 7e6d44e87082b..f68629124679c 100644 --- a/clients/client-s3-control/src/commands/UpdateAccessGrantsLocationCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateAccessGrantsLocationCommand.ts @@ -3,11 +3,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccessGrantsLocationRequest, UpdateAccessGrantsLocationResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { UpdateAccessGrantsLocationRequest, UpdateAccessGrantsLocationResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { UpdateAccessGrantsLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts b/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts index 0352069f79ef2..fa99521dee10e 100644 --- a/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateJobPriorityCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateJobPriorityRequest, UpdateJobPriorityResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { UpdateJobPriorityRequest, UpdateJobPriorityResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { UpdateJobPriority } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts b/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts index 519e1284f75e3..0ba88c3d0760b 100644 --- a/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateJobStatusCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateJobStatusRequest, UpdateJobStatusResult } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { UpdateJobStatusRequest, UpdateJobStatusResult } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { UpdateJobStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/commands/UpdateStorageLensGroupCommand.ts b/clients/client-s3-control/src/commands/UpdateStorageLensGroupCommand.ts index af7be9f3627e0..c50c7307ddfb4 100644 --- a/clients/client-s3-control/src/commands/UpdateStorageLensGroupCommand.ts +++ b/clients/client-s3-control/src/commands/UpdateStorageLensGroupCommand.ts @@ -2,11 +2,11 @@ import { getProcessArnablesPlugin } from "@aws-sdk/middleware-sdk-s3-control"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStorageLensGroupRequest } from "../models/models_0"; -import { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; +import type { UpdateStorageLensGroupRequest } from "../models/models_0"; +import type { S3ControlClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3ControlClient"; import { UpdateStorageLensGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3-control/src/endpoint/EndpointParameters.ts b/clients/client-s3-control/src/endpoint/EndpointParameters.ts index 2d1d5dadf2257..02082b24f58e6 100644 --- a/clients/client-s3-control/src/endpoint/EndpointParameters.ts +++ b/clients/client-s3-control/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-s3-control/src/endpoint/endpointResolver.ts b/clients/client-s3-control/src/endpoint/endpointResolver.ts index dd1ecdc37bb83..952dec75ab464 100644 --- a/clients/client-s3-control/src/endpoint/endpointResolver.ts +++ b/clients/client-s3-control/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-s3-control/src/extensionConfiguration.ts b/clients/client-s3-control/src/extensionConfiguration.ts index a19566aecd1b9..b3ac98665212f 100644 --- a/clients/client-s3-control/src/extensionConfiguration.ts +++ b/clients/client-s3-control/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-s3-control/src/models/S3ControlServiceException.ts b/clients/client-s3-control/src/models/S3ControlServiceException.ts index 2bc6979014e28..3f1b13dd7ed74 100644 --- a/clients/client-s3-control/src/models/S3ControlServiceException.ts +++ b/clients/client-s3-control/src/models/S3ControlServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-s3-control/src/models/errors.ts b/clients/client-s3-control/src/models/errors.ts index 01b9511176c45..8272bec751236 100644 --- a/clients/client-s3-control/src/models/errors.ts +++ b/clients/client-s3-control/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { S3ControlServiceException as __BaseException } from "./S3ControlServiceException"; diff --git a/clients/client-s3-control/src/pagination/Interfaces.ts b/clients/client-s3-control/src/pagination/Interfaces.ts index 75f84ec38d41d..11ac8e7c235d1 100644 --- a/clients/client-s3-control/src/pagination/Interfaces.ts +++ b/clients/client-s3-control/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { S3ControlClient } from "../S3ControlClient"; diff --git a/clients/client-s3-control/src/pagination/ListAccessGrantsInstancesPaginator.ts b/clients/client-s3-control/src/pagination/ListAccessGrantsInstancesPaginator.ts index 68d3c01bf0fdf..66be105161eb7 100644 --- a/clients/client-s3-control/src/pagination/ListAccessGrantsInstancesPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListAccessGrantsInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessGrantsInstancesCommand, diff --git a/clients/client-s3-control/src/pagination/ListAccessGrantsLocationsPaginator.ts b/clients/client-s3-control/src/pagination/ListAccessGrantsLocationsPaginator.ts index 276f46a749237..4bca03540f111 100644 --- a/clients/client-s3-control/src/pagination/ListAccessGrantsLocationsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListAccessGrantsLocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessGrantsLocationsCommand, diff --git a/clients/client-s3-control/src/pagination/ListAccessGrantsPaginator.ts b/clients/client-s3-control/src/pagination/ListAccessGrantsPaginator.ts index 1eb347058cd0c..33ea3668a7d56 100644 --- a/clients/client-s3-control/src/pagination/ListAccessGrantsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListAccessGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessGrantsCommand, diff --git a/clients/client-s3-control/src/pagination/ListAccessPointsForDirectoryBucketsPaginator.ts b/clients/client-s3-control/src/pagination/ListAccessPointsForDirectoryBucketsPaginator.ts index 5f9cc56d90741..c8e6d594c1578 100644 --- a/clients/client-s3-control/src/pagination/ListAccessPointsForDirectoryBucketsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListAccessPointsForDirectoryBucketsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessPointsForDirectoryBucketsCommand, diff --git a/clients/client-s3-control/src/pagination/ListAccessPointsForObjectLambdaPaginator.ts b/clients/client-s3-control/src/pagination/ListAccessPointsForObjectLambdaPaginator.ts index b4baf752caec0..c414a24347a78 100644 --- a/clients/client-s3-control/src/pagination/ListAccessPointsForObjectLambdaPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListAccessPointsForObjectLambdaPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessPointsForObjectLambdaCommand, diff --git a/clients/client-s3-control/src/pagination/ListAccessPointsPaginator.ts b/clients/client-s3-control/src/pagination/ListAccessPointsPaginator.ts index b89d6bf48127a..d2df5a06a455e 100644 --- a/clients/client-s3-control/src/pagination/ListAccessPointsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListAccessPointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessPointsCommand, diff --git a/clients/client-s3-control/src/pagination/ListCallerAccessGrantsPaginator.ts b/clients/client-s3-control/src/pagination/ListCallerAccessGrantsPaginator.ts index b5edfac5e22b2..ee9a4168c1147 100644 --- a/clients/client-s3-control/src/pagination/ListCallerAccessGrantsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListCallerAccessGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCallerAccessGrantsCommand, diff --git a/clients/client-s3-control/src/pagination/ListJobsPaginator.ts b/clients/client-s3-control/src/pagination/ListJobsPaginator.ts index 7e4f8b699f7a2..1c2658af1fc8e 100644 --- a/clients/client-s3-control/src/pagination/ListJobsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { S3ControlClient } from "../S3ControlClient"; diff --git a/clients/client-s3-control/src/pagination/ListMultiRegionAccessPointsPaginator.ts b/clients/client-s3-control/src/pagination/ListMultiRegionAccessPointsPaginator.ts index 593ac9a06ac43..78a724ad347f7 100644 --- a/clients/client-s3-control/src/pagination/ListMultiRegionAccessPointsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListMultiRegionAccessPointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMultiRegionAccessPointsCommand, diff --git a/clients/client-s3-control/src/pagination/ListRegionalBucketsPaginator.ts b/clients/client-s3-control/src/pagination/ListRegionalBucketsPaginator.ts index ee6582389389d..60d3455953f5a 100644 --- a/clients/client-s3-control/src/pagination/ListRegionalBucketsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListRegionalBucketsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRegionalBucketsCommand, diff --git a/clients/client-s3-control/src/pagination/ListStorageLensConfigurationsPaginator.ts b/clients/client-s3-control/src/pagination/ListStorageLensConfigurationsPaginator.ts index 1909096b83c57..a70690ec6c0b8 100644 --- a/clients/client-s3-control/src/pagination/ListStorageLensConfigurationsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListStorageLensConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStorageLensConfigurationsCommand, diff --git a/clients/client-s3-control/src/pagination/ListStorageLensGroupsPaginator.ts b/clients/client-s3-control/src/pagination/ListStorageLensGroupsPaginator.ts index c54d88a1e4b2d..ec48e28375d15 100644 --- a/clients/client-s3-control/src/pagination/ListStorageLensGroupsPaginator.ts +++ b/clients/client-s3-control/src/pagination/ListStorageLensGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStorageLensGroupsCommand, diff --git a/clients/client-s3-control/src/runtimeConfig.browser.ts b/clients/client-s3-control/src/runtimeConfig.browser.ts index 3cb0cbb3bac2d..21d49812a2dd7 100644 --- a/clients/client-s3-control/src/runtimeConfig.browser.ts +++ b/clients/client-s3-control/src/runtimeConfig.browser.ts @@ -9,12 +9,13 @@ import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fet import { blobHasher as streamHasher } from "@smithy/hash-blob-browser"; import { invalidProvider } from "@smithy/invalid-dependency"; import { Md5 } from "@smithy/md5-js"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3ControlClientConfig } from "./S3ControlClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { S3ControlClientConfig } from "./S3ControlClient"; /** * @internal diff --git a/clients/client-s3-control/src/runtimeConfig.native.ts b/clients/client-s3-control/src/runtimeConfig.native.ts index 06449201a6142..0fcf91b911222 100644 --- a/clients/client-s3-control/src/runtimeConfig.native.ts +++ b/clients/client-s3-control/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { S3ControlClientConfig } from "./S3ControlClient"; +import type { S3ControlClientConfig } from "./S3ControlClient"; /** * @internal diff --git a/clients/client-s3-control/src/runtimeConfig.shared.ts b/clients/client-s3-control/src/runtimeConfig.shared.ts index e9a1cde21e8b6..5e43cfa16b216 100644 --- a/clients/client-s3-control/src/runtimeConfig.shared.ts +++ b/clients/client-s3-control/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestXmlProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultS3ControlHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { S3ControlClientConfig } from "./S3ControlClient"; +import type { S3ControlClientConfig } from "./S3ControlClient"; /** * @internal diff --git a/clients/client-s3-control/src/runtimeConfig.ts b/clients/client-s3-control/src/runtimeConfig.ts index 6c0c357d3a050..f89fd3d893e08 100644 --- a/clients/client-s3-control/src/runtimeConfig.ts +++ b/clients/client-s3-control/src/runtimeConfig.ts @@ -17,13 +17,13 @@ import { fileStreamHasher as streamHasher } from "@smithy/hash-stream-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3ControlClientConfig } from "./S3ControlClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { S3ControlClientConfig } from "./S3ControlClient"; /** * @internal diff --git a/clients/client-s3-control/src/runtimeExtensions.ts b/clients/client-s3-control/src/runtimeExtensions.ts index 7a1b6d6131064..99f0e2d253402 100644 --- a/clients/client-s3-control/src/runtimeExtensions.ts +++ b/clients/client-s3-control/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { S3ControlExtensionConfiguration } from "./extensionConfiguration"; +import type { S3ControlExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-s3-control/src/schemas/schemas_0.ts b/clients/client-s3-control/src/schemas/schemas_0.ts index e76de77f00828..6ba28fb8258d7 100644 --- a/clients/client-s3-control/src/schemas/schemas_0.ts +++ b/clients/client-s3-control/src/schemas/schemas_0.ts @@ -775,7 +775,7 @@ const n0 = "com.amazonaws.s3control"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-s3/package.json b/clients/client-s3/package.json index b448dc6c87820..0d3650de7bccd 100644 --- a/clients/client-s3/package.json +++ b/clients/client-s3/package.json @@ -48,7 +48,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -59,21 +59,21 @@ "@smithy/invalid-dependency": "^4.2.5", "@smithy/md5-js": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-s3/src/S3.ts b/clients/client-s3/src/S3.ts index 127ea4c7e533c..35793c28e7d58 100644 --- a/clients/client-s3/src/S3.ts +++ b/clients/client-s3/src/S3.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AbortMultipartUploadCommand, @@ -496,7 +496,7 @@ import { WriteGetObjectResponseCommandInput, WriteGetObjectResponseCommandOutput, } from "./commands/WriteGetObjectResponseCommand"; -import { S3Client, S3ClientConfig } from "./S3Client"; +import { S3Client } from "./S3Client"; const commands = { AbortMultipartUploadCommand, diff --git a/clients/client-s3/src/S3Client.ts b/clients/client-s3/src/S3Client.ts index 69619573f3fa1..0618afe75122a 100644 --- a/clients/client-s3/src/S3Client.ts +++ b/clients/client-s3/src/S3Client.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getAddExpectContinuePlugin } from "@aws-sdk/middleware-expect-continue"; import { - FlexibleChecksumsInputConfig, - FlexibleChecksumsResolvedConfig, + type FlexibleChecksumsInputConfig, + type FlexibleChecksumsResolvedConfig, resolveFlexibleChecksumsConfig, } from "@aws-sdk/middleware-flexible-checksums"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; @@ -23,13 +23,13 @@ import { S3ResolvedConfig, } from "@aws-sdk/middleware-sdk-s3"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { GetAwsChunkedEncodingStream } from "@aws-sdk/types"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -37,51 +37,60 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, Checksum as __Checksum, ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, Hash as __Hash, HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, StreamHasher as __StreamHasher, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { Readable } from "stream"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultS3HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -384,7 +393,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-s3/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-s3/src/auth/httpAuthExtensionConfiguration.ts index 2699fc3c838be..e9ddaa7486e93 100644 --- a/clients/client-s3/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-s3/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { S3HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { S3HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-s3/src/auth/httpAuthSchemeProvider.ts b/clients/client-s3/src/auth/httpAuthSchemeProvider.ts index 043acacd70e21..7b1a142b07181 100644 --- a/clients/client-s3/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-s3/src/auth/httpAuthSchemeProvider.ts @@ -12,16 +12,16 @@ import { import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { EndpointParameterInstructions, resolveParams } from "@smithy/middleware-endpoint"; import { + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParametersProvider, + type Provider, EndpointV2, HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, HttpAuthSchemeId, HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Logger, - Provider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; diff --git a/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts b/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts index a92e399e2bad5..e0771339629e7 100644 --- a/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts +++ b/clients/client-s3/src/commands/AbortMultipartUploadCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AbortMultipartUploadOutput, AbortMultipartUploadRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { AbortMultipartUploadOutput, AbortMultipartUploadRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { AbortMultipartUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts b/clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts index f84071df8a0ca..666cde4fa578d 100644 --- a/clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts +++ b/clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts @@ -3,11 +3,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CompleteMultipartUploadOutput, CompleteMultipartUploadRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { CompleteMultipartUploadOutput, CompleteMultipartUploadRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { CompleteMultipartUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/CopyObjectCommand.ts b/clients/client-s3/src/commands/CopyObjectCommand.ts index 074c4f7dd90f4..4ec544145cca2 100644 --- a/clients/client-s3/src/commands/CopyObjectCommand.ts +++ b/clients/client-s3/src/commands/CopyObjectCommand.ts @@ -3,11 +3,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyObjectOutput, CopyObjectRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { CopyObjectOutput, CopyObjectRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { CopyObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/CreateBucketCommand.ts b/clients/client-s3/src/commands/CreateBucketCommand.ts index f9add11d9f7a5..0f6f7151e4239 100644 --- a/clients/client-s3/src/commands/CreateBucketCommand.ts +++ b/clients/client-s3/src/commands/CreateBucketCommand.ts @@ -3,11 +3,11 @@ import { getLocationConstraintPlugin } from "@aws-sdk/middleware-location-constr import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBucketOutput, CreateBucketRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { CreateBucketOutput, CreateBucketRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { CreateBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/CreateBucketMetadataConfigurationCommand.ts b/clients/client-s3/src/commands/CreateBucketMetadataConfigurationCommand.ts index 8ad624a3ee48a..18cd70bd5537f 100644 --- a/clients/client-s3/src/commands/CreateBucketMetadataConfigurationCommand.ts +++ b/clients/client-s3/src/commands/CreateBucketMetadataConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBucketMetadataConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { CreateBucketMetadataConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { CreateBucketMetadataConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/CreateBucketMetadataTableConfigurationCommand.ts b/clients/client-s3/src/commands/CreateBucketMetadataTableConfigurationCommand.ts index 275682f69b341..c313711d68aa7 100644 --- a/clients/client-s3/src/commands/CreateBucketMetadataTableConfigurationCommand.ts +++ b/clients/client-s3/src/commands/CreateBucketMetadataTableConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBucketMetadataTableConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { CreateBucketMetadataTableConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { CreateBucketMetadataTableConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/CreateMultipartUploadCommand.ts b/clients/client-s3/src/commands/CreateMultipartUploadCommand.ts index c7eaeb90efbe1..a9768c53c5f82 100644 --- a/clients/client-s3/src/commands/CreateMultipartUploadCommand.ts +++ b/clients/client-s3/src/commands/CreateMultipartUploadCommand.ts @@ -3,11 +3,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMultipartUploadOutput, CreateMultipartUploadRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { CreateMultipartUploadOutput, CreateMultipartUploadRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { CreateMultipartUpload } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/CreateSessionCommand.ts b/clients/client-s3/src/commands/CreateSessionCommand.ts index 9c8fe2026000b..de037b345ada7 100644 --- a/clients/client-s3/src/commands/CreateSessionCommand.ts +++ b/clients/client-s3/src/commands/CreateSessionCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSessionOutput, CreateSessionRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { CreateSessionOutput, CreateSessionRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { CreateSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketAnalyticsConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketAnalyticsConfigurationCommand.ts index 8a6f93b59b7c6..2f44b753ccf8d 100644 --- a/clients/client-s3/src/commands/DeleteBucketAnalyticsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketAnalyticsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketAnalyticsConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketAnalyticsConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketAnalyticsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketCommand.ts b/clients/client-s3/src/commands/DeleteBucketCommand.ts index bd7fba86c618a..20dbd5bcb49c1 100644 --- a/clients/client-s3/src/commands/DeleteBucketCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketCorsCommand.ts b/clients/client-s3/src/commands/DeleteBucketCorsCommand.ts index e026b7fdb754c..a27e5cf31e83e 100644 --- a/clients/client-s3/src/commands/DeleteBucketCorsCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketCorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketCorsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketCorsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketCors } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketEncryptionCommand.ts b/clients/client-s3/src/commands/DeleteBucketEncryptionCommand.ts index a99fe9c3a29a6..a284badfe06e7 100644 --- a/clients/client-s3/src/commands/DeleteBucketEncryptionCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketEncryptionRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketEncryptionRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketIntelligentTieringConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketIntelligentTieringConfigurationCommand.ts index a043c88ef0ba0..96a410bbbcb71 100644 --- a/clients/client-s3/src/commands/DeleteBucketIntelligentTieringConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketIntelligentTieringConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketIntelligentTieringConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketIntelligentTieringConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketIntelligentTieringConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketInventoryConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketInventoryConfigurationCommand.ts index c6eb82b282c54..2d0dcf5fecc3b 100644 --- a/clients/client-s3/src/commands/DeleteBucketInventoryConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketInventoryConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketInventoryConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketInventoryConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketInventoryConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketLifecycleCommand.ts b/clients/client-s3/src/commands/DeleteBucketLifecycleCommand.ts index f32354ac85eed..ee2338da12d8e 100644 --- a/clients/client-s3/src/commands/DeleteBucketLifecycleCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketLifecycleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketLifecycleRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketLifecycleRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketLifecycle } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketMetadataConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketMetadataConfigurationCommand.ts index eeceafec8ed43..2e3e126400b9c 100644 --- a/clients/client-s3/src/commands/DeleteBucketMetadataConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketMetadataConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketMetadataConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketMetadataConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketMetadataConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketMetadataTableConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketMetadataTableConfigurationCommand.ts index 9d4bd9bacd665..d77c5343f97ef 100644 --- a/clients/client-s3/src/commands/DeleteBucketMetadataTableConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketMetadataTableConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketMetadataTableConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketMetadataTableConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketMetadataTableConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketMetricsConfigurationCommand.ts b/clients/client-s3/src/commands/DeleteBucketMetricsConfigurationCommand.ts index 822aeb2ea48cc..fb49d794449c3 100644 --- a/clients/client-s3/src/commands/DeleteBucketMetricsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketMetricsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketMetricsConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketMetricsConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketMetricsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketOwnershipControlsCommand.ts b/clients/client-s3/src/commands/DeleteBucketOwnershipControlsCommand.ts index d72a72b04da5d..18720823f8357 100644 --- a/clients/client-s3/src/commands/DeleteBucketOwnershipControlsCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketOwnershipControlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketOwnershipControlsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketOwnershipControlsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketOwnershipControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketPolicyCommand.ts b/clients/client-s3/src/commands/DeleteBucketPolicyCommand.ts index 47e489f458e72..c6a9688f674a2 100644 --- a/clients/client-s3/src/commands/DeleteBucketPolicyCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketPolicyRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketPolicyRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketReplicationCommand.ts b/clients/client-s3/src/commands/DeleteBucketReplicationCommand.ts index 78dbdc72edebc..ec2c20cc2455a 100644 --- a/clients/client-s3/src/commands/DeleteBucketReplicationCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketReplicationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketReplicationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketReplicationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketTaggingCommand.ts b/clients/client-s3/src/commands/DeleteBucketTaggingCommand.ts index 48c6e104e5d14..250a66ddb4097 100644 --- a/clients/client-s3/src/commands/DeleteBucketTaggingCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketTaggingCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketTaggingRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketTaggingRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteBucketWebsiteCommand.ts b/clients/client-s3/src/commands/DeleteBucketWebsiteCommand.ts index a6d8a53b95dc1..04e7c51a69e12 100644 --- a/clients/client-s3/src/commands/DeleteBucketWebsiteCommand.ts +++ b/clients/client-s3/src/commands/DeleteBucketWebsiteCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBucketWebsiteRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteBucketWebsiteRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteBucketWebsite } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteObjectCommand.ts b/clients/client-s3/src/commands/DeleteObjectCommand.ts index cc9a65fd4ba98..05b86f74b3f8a 100644 --- a/clients/client-s3/src/commands/DeleteObjectCommand.ts +++ b/clients/client-s3/src/commands/DeleteObjectCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteObjectOutput, DeleteObjectRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteObjectOutput, DeleteObjectRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteObjectTaggingCommand.ts b/clients/client-s3/src/commands/DeleteObjectTaggingCommand.ts index 70764be6a8ea6..67caf15c689db 100644 --- a/clients/client-s3/src/commands/DeleteObjectTaggingCommand.ts +++ b/clients/client-s3/src/commands/DeleteObjectTaggingCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteObjectTaggingOutput, DeleteObjectTaggingRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteObjectTaggingOutput, DeleteObjectTaggingRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteObjectTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeleteObjectsCommand.ts b/clients/client-s3/src/commands/DeleteObjectsCommand.ts index 1b4379ee1079d..7515e111258b1 100644 --- a/clients/client-s3/src/commands/DeleteObjectsCommand.ts +++ b/clients/client-s3/src/commands/DeleteObjectsCommand.ts @@ -3,11 +3,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksu import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteObjectsOutput, DeleteObjectsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeleteObjectsOutput, DeleteObjectsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeleteObjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/DeletePublicAccessBlockCommand.ts b/clients/client-s3/src/commands/DeletePublicAccessBlockCommand.ts index 488b22662ce83..492b8cf5fa9c9 100644 --- a/clients/client-s3/src/commands/DeletePublicAccessBlockCommand.ts +++ b/clients/client-s3/src/commands/DeletePublicAccessBlockCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePublicAccessBlockRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { DeletePublicAccessBlockRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { DeletePublicAccessBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketAbacCommand.ts b/clients/client-s3/src/commands/GetBucketAbacCommand.ts index ee51264c0aee4..605ee933b5b06 100644 --- a/clients/client-s3/src/commands/GetBucketAbacCommand.ts +++ b/clients/client-s3/src/commands/GetBucketAbacCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketAbacOutput, GetBucketAbacRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketAbacOutput, GetBucketAbacRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketAbac } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketAccelerateConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketAccelerateConfigurationCommand.ts index 8fd399c3c65a8..6f10b86dd9ed6 100644 --- a/clients/client-s3/src/commands/GetBucketAccelerateConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketAccelerateConfigurationCommand.ts @@ -2,11 +2,14 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketAccelerateConfigurationOutput, GetBucketAccelerateConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { + GetBucketAccelerateConfigurationOutput, + GetBucketAccelerateConfigurationRequest, +} from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketAccelerateConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketAclCommand.ts b/clients/client-s3/src/commands/GetBucketAclCommand.ts index 613de049dcb4c..f92f2799ede85 100644 --- a/clients/client-s3/src/commands/GetBucketAclCommand.ts +++ b/clients/client-s3/src/commands/GetBucketAclCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketAclOutput, GetBucketAclRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketAclOutput, GetBucketAclRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketAcl } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketAnalyticsConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketAnalyticsConfigurationCommand.ts index de96955b125f2..2aadc5ac2aa1b 100644 --- a/clients/client-s3/src/commands/GetBucketAnalyticsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketAnalyticsConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketAnalyticsConfigurationOutput, GetBucketAnalyticsConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketAnalyticsConfigurationOutput, GetBucketAnalyticsConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketAnalyticsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketCorsCommand.ts b/clients/client-s3/src/commands/GetBucketCorsCommand.ts index 84cd9d023e21d..35a45ca2eedf8 100644 --- a/clients/client-s3/src/commands/GetBucketCorsCommand.ts +++ b/clients/client-s3/src/commands/GetBucketCorsCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketCorsOutput, GetBucketCorsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketCorsOutput, GetBucketCorsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketCors } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketEncryptionCommand.ts b/clients/client-s3/src/commands/GetBucketEncryptionCommand.ts index d3f5c6603379f..caf657aafbf80 100644 --- a/clients/client-s3/src/commands/GetBucketEncryptionCommand.ts +++ b/clients/client-s3/src/commands/GetBucketEncryptionCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketEncryptionOutput, GetBucketEncryptionRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketEncryptionOutput, GetBucketEncryptionRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketIntelligentTieringConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketIntelligentTieringConfigurationCommand.ts index 9bb1d450588c4..80498a11e9332 100644 --- a/clients/client-s3/src/commands/GetBucketIntelligentTieringConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketIntelligentTieringConfigurationCommand.ts @@ -2,14 +2,14 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetBucketIntelligentTieringConfigurationOutput, GetBucketIntelligentTieringConfigurationRequest, } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketIntelligentTieringConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketInventoryConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketInventoryConfigurationCommand.ts index cf2e93a10bba5..c6ff56667af66 100644 --- a/clients/client-s3/src/commands/GetBucketInventoryConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketInventoryConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketInventoryConfigurationOutput, GetBucketInventoryConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketInventoryConfigurationOutput, GetBucketInventoryConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketInventoryConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketLifecycleConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketLifecycleConfigurationCommand.ts index 045c51eed16be..8bb6ba4f81229 100644 --- a/clients/client-s3/src/commands/GetBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketLifecycleConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketLifecycleConfigurationOutput, GetBucketLifecycleConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketLifecycleConfigurationOutput, GetBucketLifecycleConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketLifecycleConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketLocationCommand.ts b/clients/client-s3/src/commands/GetBucketLocationCommand.ts index c4b435a9eaa50..628675447e56c 100644 --- a/clients/client-s3/src/commands/GetBucketLocationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketLocationCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketLocationOutput, GetBucketLocationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketLocationOutput, GetBucketLocationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketLoggingCommand.ts b/clients/client-s3/src/commands/GetBucketLoggingCommand.ts index 610751afd6268..56e51eaa368c6 100644 --- a/clients/client-s3/src/commands/GetBucketLoggingCommand.ts +++ b/clients/client-s3/src/commands/GetBucketLoggingCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketLoggingOutput, GetBucketLoggingRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketLoggingOutput, GetBucketLoggingRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketLogging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketMetadataConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketMetadataConfigurationCommand.ts index fc776ae563815..7d5f5a94de54a 100644 --- a/clients/client-s3/src/commands/GetBucketMetadataConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketMetadataConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketMetadataConfigurationOutput, GetBucketMetadataConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketMetadataConfigurationOutput, GetBucketMetadataConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketMetadataConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketMetadataTableConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketMetadataTableConfigurationCommand.ts index 7c717e934a39d..8c8fb8e27d585 100644 --- a/clients/client-s3/src/commands/GetBucketMetadataTableConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketMetadataTableConfigurationCommand.ts @@ -2,14 +2,14 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetBucketMetadataTableConfigurationOutput, GetBucketMetadataTableConfigurationRequest, } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketMetadataTableConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketMetricsConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketMetricsConfigurationCommand.ts index 37deb6c48ffba..2dfd8711f3702 100644 --- a/clients/client-s3/src/commands/GetBucketMetricsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketMetricsConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketMetricsConfigurationOutput, GetBucketMetricsConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketMetricsConfigurationOutput, GetBucketMetricsConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketMetricsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketNotificationConfigurationCommand.ts b/clients/client-s3/src/commands/GetBucketNotificationConfigurationCommand.ts index ea0d6dde93d06..4528d23939e22 100644 --- a/clients/client-s3/src/commands/GetBucketNotificationConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketNotificationConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketNotificationConfigurationRequest, NotificationConfiguration } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketNotificationConfigurationRequest, NotificationConfiguration } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketOwnershipControlsCommand.ts b/clients/client-s3/src/commands/GetBucketOwnershipControlsCommand.ts index aa5161cd4bbeb..065bf23d572cc 100644 --- a/clients/client-s3/src/commands/GetBucketOwnershipControlsCommand.ts +++ b/clients/client-s3/src/commands/GetBucketOwnershipControlsCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketOwnershipControlsOutput, GetBucketOwnershipControlsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketOwnershipControlsOutput, GetBucketOwnershipControlsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketOwnershipControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketPolicyCommand.ts b/clients/client-s3/src/commands/GetBucketPolicyCommand.ts index 5d103a2e8190e..9e2409ac8a172 100644 --- a/clients/client-s3/src/commands/GetBucketPolicyCommand.ts +++ b/clients/client-s3/src/commands/GetBucketPolicyCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketPolicyOutput, GetBucketPolicyRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketPolicyOutput, GetBucketPolicyRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketPolicyStatusCommand.ts b/clients/client-s3/src/commands/GetBucketPolicyStatusCommand.ts index 0178a5d376d4a..c57207be94840 100644 --- a/clients/client-s3/src/commands/GetBucketPolicyStatusCommand.ts +++ b/clients/client-s3/src/commands/GetBucketPolicyStatusCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketPolicyStatusOutput, GetBucketPolicyStatusRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketPolicyStatusOutput, GetBucketPolicyStatusRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketPolicyStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketReplicationCommand.ts b/clients/client-s3/src/commands/GetBucketReplicationCommand.ts index 2f6804de315ae..d4d20c608db3e 100644 --- a/clients/client-s3/src/commands/GetBucketReplicationCommand.ts +++ b/clients/client-s3/src/commands/GetBucketReplicationCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketReplicationOutput, GetBucketReplicationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketReplicationOutput, GetBucketReplicationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketRequestPaymentCommand.ts b/clients/client-s3/src/commands/GetBucketRequestPaymentCommand.ts index d132629e33124..df1a145678149 100644 --- a/clients/client-s3/src/commands/GetBucketRequestPaymentCommand.ts +++ b/clients/client-s3/src/commands/GetBucketRequestPaymentCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketRequestPaymentOutput, GetBucketRequestPaymentRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketRequestPaymentOutput, GetBucketRequestPaymentRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketRequestPayment } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketTaggingCommand.ts b/clients/client-s3/src/commands/GetBucketTaggingCommand.ts index bfde0cf4c4741..189b5f3ee18b8 100644 --- a/clients/client-s3/src/commands/GetBucketTaggingCommand.ts +++ b/clients/client-s3/src/commands/GetBucketTaggingCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketTaggingOutput, GetBucketTaggingRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketTaggingOutput, GetBucketTaggingRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketVersioningCommand.ts b/clients/client-s3/src/commands/GetBucketVersioningCommand.ts index 8c855d75994ac..5a99d32d0a6f8 100644 --- a/clients/client-s3/src/commands/GetBucketVersioningCommand.ts +++ b/clients/client-s3/src/commands/GetBucketVersioningCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketVersioningOutput, GetBucketVersioningRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketVersioningOutput, GetBucketVersioningRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketVersioning } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetBucketWebsiteCommand.ts b/clients/client-s3/src/commands/GetBucketWebsiteCommand.ts index ec97cd2f2ec65..ff145531bd95a 100644 --- a/clients/client-s3/src/commands/GetBucketWebsiteCommand.ts +++ b/clients/client-s3/src/commands/GetBucketWebsiteCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBucketWebsiteOutput, GetBucketWebsiteRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetBucketWebsiteOutput, GetBucketWebsiteRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetBucketWebsite } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetObjectAclCommand.ts b/clients/client-s3/src/commands/GetObjectAclCommand.ts index 4d6cf1af53a0f..6cc7664caaab4 100644 --- a/clients/client-s3/src/commands/GetObjectAclCommand.ts +++ b/clients/client-s3/src/commands/GetObjectAclCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectAclOutput, GetObjectAclRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetObjectAclOutput, GetObjectAclRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetObjectAcl } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetObjectAttributesCommand.ts b/clients/client-s3/src/commands/GetObjectAttributesCommand.ts index 422fd6e51062f..b3facbf32152d 100644 --- a/clients/client-s3/src/commands/GetObjectAttributesCommand.ts +++ b/clients/client-s3/src/commands/GetObjectAttributesCommand.ts @@ -3,11 +3,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectAttributesOutput, GetObjectAttributesRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetObjectAttributesOutput, GetObjectAttributesRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetObjectAttributes } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetObjectCommand.ts b/clients/client-s3/src/commands/GetObjectCommand.ts index 0c2809f867997..35d7859d72609 100644 --- a/clients/client-s3/src/commands/GetObjectCommand.ts +++ b/clients/client-s3/src/commands/GetObjectCommand.ts @@ -4,11 +4,11 @@ import { getS3ExpiresMiddlewarePlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectOutput, GetObjectRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import { type GetObjectRequest, GetObjectOutput } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetObjectLegalHoldCommand.ts b/clients/client-s3/src/commands/GetObjectLegalHoldCommand.ts index b0a6398d0a33a..1d430dfe4bd0f 100644 --- a/clients/client-s3/src/commands/GetObjectLegalHoldCommand.ts +++ b/clients/client-s3/src/commands/GetObjectLegalHoldCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectLegalHoldOutput, GetObjectLegalHoldRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetObjectLegalHoldOutput, GetObjectLegalHoldRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetObjectLegalHold } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetObjectLockConfigurationCommand.ts b/clients/client-s3/src/commands/GetObjectLockConfigurationCommand.ts index c94c28bab70ac..c7ecd0db53997 100644 --- a/clients/client-s3/src/commands/GetObjectLockConfigurationCommand.ts +++ b/clients/client-s3/src/commands/GetObjectLockConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectLockConfigurationOutput, GetObjectLockConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetObjectLockConfigurationOutput, GetObjectLockConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetObjectLockConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetObjectRetentionCommand.ts b/clients/client-s3/src/commands/GetObjectRetentionCommand.ts index 7f4781d1937be..8a990bcc9eee0 100644 --- a/clients/client-s3/src/commands/GetObjectRetentionCommand.ts +++ b/clients/client-s3/src/commands/GetObjectRetentionCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectRetentionOutput, GetObjectRetentionRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetObjectRetentionOutput, GetObjectRetentionRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetObjectRetention } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetObjectTaggingCommand.ts b/clients/client-s3/src/commands/GetObjectTaggingCommand.ts index 367a518118be6..40bc1413a1bee 100644 --- a/clients/client-s3/src/commands/GetObjectTaggingCommand.ts +++ b/clients/client-s3/src/commands/GetObjectTaggingCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectTaggingOutput, GetObjectTaggingRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetObjectTaggingOutput, GetObjectTaggingRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetObjectTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetObjectTorrentCommand.ts b/clients/client-s3/src/commands/GetObjectTorrentCommand.ts index 019c0c8cb1261..e49f3b014c38d 100644 --- a/clients/client-s3/src/commands/GetObjectTorrentCommand.ts +++ b/clients/client-s3/src/commands/GetObjectTorrentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetObjectTorrentOutput, GetObjectTorrentRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import { type GetObjectTorrentRequest, GetObjectTorrentOutput } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetObjectTorrent } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/GetPublicAccessBlockCommand.ts b/clients/client-s3/src/commands/GetPublicAccessBlockCommand.ts index 578bdc7ea0936..80045ffef612d 100644 --- a/clients/client-s3/src/commands/GetPublicAccessBlockCommand.ts +++ b/clients/client-s3/src/commands/GetPublicAccessBlockCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPublicAccessBlockOutput, GetPublicAccessBlockRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { GetPublicAccessBlockOutput, GetPublicAccessBlockRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { GetPublicAccessBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/HeadBucketCommand.ts b/clients/client-s3/src/commands/HeadBucketCommand.ts index 9d67e466da1c7..f3df27cd4c94f 100644 --- a/clients/client-s3/src/commands/HeadBucketCommand.ts +++ b/clients/client-s3/src/commands/HeadBucketCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HeadBucketOutput, HeadBucketRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { HeadBucketOutput, HeadBucketRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { HeadBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/HeadObjectCommand.ts b/clients/client-s3/src/commands/HeadObjectCommand.ts index 96a1a90f20583..b10f8a4343b28 100644 --- a/clients/client-s3/src/commands/HeadObjectCommand.ts +++ b/clients/client-s3/src/commands/HeadObjectCommand.ts @@ -3,11 +3,11 @@ import { getS3ExpiresMiddlewarePlugin, getThrow200ExceptionsPlugin } from "@aws- import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HeadObjectOutput, HeadObjectRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { HeadObjectOutput, HeadObjectRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { HeadObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListBucketAnalyticsConfigurationsCommand.ts b/clients/client-s3/src/commands/ListBucketAnalyticsConfigurationsCommand.ts index d7fa56212fcc0..4e35201e475fb 100644 --- a/clients/client-s3/src/commands/ListBucketAnalyticsConfigurationsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketAnalyticsConfigurationsCommand.ts @@ -2,11 +2,14 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBucketAnalyticsConfigurationsOutput, ListBucketAnalyticsConfigurationsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { + ListBucketAnalyticsConfigurationsOutput, + ListBucketAnalyticsConfigurationsRequest, +} from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListBucketAnalyticsConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListBucketIntelligentTieringConfigurationsCommand.ts b/clients/client-s3/src/commands/ListBucketIntelligentTieringConfigurationsCommand.ts index 46afb38fa357f..c140be4dea7b7 100644 --- a/clients/client-s3/src/commands/ListBucketIntelligentTieringConfigurationsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketIntelligentTieringConfigurationsCommand.ts @@ -2,14 +2,14 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListBucketIntelligentTieringConfigurationsOutput, ListBucketIntelligentTieringConfigurationsRequest, } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListBucketIntelligentTieringConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListBucketInventoryConfigurationsCommand.ts b/clients/client-s3/src/commands/ListBucketInventoryConfigurationsCommand.ts index 4ba0d0545d977..bc1fba70ab249 100644 --- a/clients/client-s3/src/commands/ListBucketInventoryConfigurationsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketInventoryConfigurationsCommand.ts @@ -2,11 +2,14 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBucketInventoryConfigurationsOutput, ListBucketInventoryConfigurationsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { + ListBucketInventoryConfigurationsOutput, + ListBucketInventoryConfigurationsRequest, +} from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListBucketInventoryConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListBucketMetricsConfigurationsCommand.ts b/clients/client-s3/src/commands/ListBucketMetricsConfigurationsCommand.ts index bd976e300a849..0ddff3a1133a4 100644 --- a/clients/client-s3/src/commands/ListBucketMetricsConfigurationsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketMetricsConfigurationsCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBucketMetricsConfigurationsOutput, ListBucketMetricsConfigurationsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { ListBucketMetricsConfigurationsOutput, ListBucketMetricsConfigurationsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListBucketMetricsConfigurations } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListBucketsCommand.ts b/clients/client-s3/src/commands/ListBucketsCommand.ts index 38d85a086e82d..5f91ba40066a5 100644 --- a/clients/client-s3/src/commands/ListBucketsCommand.ts +++ b/clients/client-s3/src/commands/ListBucketsCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBucketsOutput, ListBucketsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { ListBucketsOutput, ListBucketsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListBuckets } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListDirectoryBucketsCommand.ts b/clients/client-s3/src/commands/ListDirectoryBucketsCommand.ts index efa7f08ed4210..7e4a9e7405d8e 100644 --- a/clients/client-s3/src/commands/ListDirectoryBucketsCommand.ts +++ b/clients/client-s3/src/commands/ListDirectoryBucketsCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDirectoryBucketsOutput, ListDirectoryBucketsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { ListDirectoryBucketsOutput, ListDirectoryBucketsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListDirectoryBuckets } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts b/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts index ac9aae2538e9e..ebd22ca1bbd5c 100644 --- a/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts +++ b/clients/client-s3/src/commands/ListMultipartUploadsCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMultipartUploadsOutput, ListMultipartUploadsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { ListMultipartUploadsOutput, ListMultipartUploadsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListMultipartUploads } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListObjectVersionsCommand.ts b/clients/client-s3/src/commands/ListObjectVersionsCommand.ts index b14111132c545..b839f910bc535 100644 --- a/clients/client-s3/src/commands/ListObjectVersionsCommand.ts +++ b/clients/client-s3/src/commands/ListObjectVersionsCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectVersionsOutput, ListObjectVersionsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { ListObjectVersionsOutput, ListObjectVersionsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListObjectVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListObjectsCommand.ts b/clients/client-s3/src/commands/ListObjectsCommand.ts index c8fbd37643594..436563e874385 100644 --- a/clients/client-s3/src/commands/ListObjectsCommand.ts +++ b/clients/client-s3/src/commands/ListObjectsCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectsOutput, ListObjectsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { ListObjectsOutput, ListObjectsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListObjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListObjectsV2Command.ts b/clients/client-s3/src/commands/ListObjectsV2Command.ts index 19e14d0cab2f7..1e516d044b592 100644 --- a/clients/client-s3/src/commands/ListObjectsV2Command.ts +++ b/clients/client-s3/src/commands/ListObjectsV2Command.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListObjectsV2Output, ListObjectsV2Request } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { ListObjectsV2Output, ListObjectsV2Request } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListObjectsV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/ListPartsCommand.ts b/clients/client-s3/src/commands/ListPartsCommand.ts index 2ccd9d4a3fb60..504529cd57c9b 100644 --- a/clients/client-s3/src/commands/ListPartsCommand.ts +++ b/clients/client-s3/src/commands/ListPartsCommand.ts @@ -3,11 +3,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPartsOutput, ListPartsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { ListPartsOutput, ListPartsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { ListParts } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketAbacCommand.ts b/clients/client-s3/src/commands/PutBucketAbacCommand.ts index e40f566c3a209..92e6e52c87b8f 100644 --- a/clients/client-s3/src/commands/PutBucketAbacCommand.ts +++ b/clients/client-s3/src/commands/PutBucketAbacCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketAbacRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketAbacRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketAbac } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketAccelerateConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketAccelerateConfigurationCommand.ts index 00a67402ab09d..ba7d53ef0f97e 100644 --- a/clients/client-s3/src/commands/PutBucketAccelerateConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketAccelerateConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketAccelerateConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketAccelerateConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketAccelerateConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketAclCommand.ts b/clients/client-s3/src/commands/PutBucketAclCommand.ts index 55c898623a48c..3f7bc5df17254 100644 --- a/clients/client-s3/src/commands/PutBucketAclCommand.ts +++ b/clients/client-s3/src/commands/PutBucketAclCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketAclRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketAclRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketAcl } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketAnalyticsConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketAnalyticsConfigurationCommand.ts index 7a84edca17f7e..e88da8cc31f7c 100644 --- a/clients/client-s3/src/commands/PutBucketAnalyticsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketAnalyticsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketAnalyticsConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketAnalyticsConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketAnalyticsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketCorsCommand.ts b/clients/client-s3/src/commands/PutBucketCorsCommand.ts index 8759efe21b5bb..7b6894517bb57 100644 --- a/clients/client-s3/src/commands/PutBucketCorsCommand.ts +++ b/clients/client-s3/src/commands/PutBucketCorsCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketCorsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketCorsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketCors } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts b/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts index 8c9078d382acd..565808238f723 100644 --- a/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts +++ b/clients/client-s3/src/commands/PutBucketEncryptionCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketEncryptionRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketEncryptionRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketIntelligentTieringConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketIntelligentTieringConfigurationCommand.ts index cfa067bd0569d..c1d53c17373bb 100644 --- a/clients/client-s3/src/commands/PutBucketIntelligentTieringConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketIntelligentTieringConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketIntelligentTieringConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketIntelligentTieringConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketIntelligentTieringConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketInventoryConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketInventoryConfigurationCommand.ts index 528832a3df7ef..fcdfb596312ec 100644 --- a/clients/client-s3/src/commands/PutBucketInventoryConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketInventoryConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketInventoryConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketInventoryConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketInventoryConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketLifecycleConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketLifecycleConfigurationCommand.ts index a9998f1dd7457..99f852713c2d0 100644 --- a/clients/client-s3/src/commands/PutBucketLifecycleConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketLifecycleConfigurationCommand.ts @@ -3,11 +3,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksu import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketLifecycleConfigurationOutput, PutBucketLifecycleConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketLifecycleConfigurationOutput, PutBucketLifecycleConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketLifecycleConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketLoggingCommand.ts b/clients/client-s3/src/commands/PutBucketLoggingCommand.ts index 2b1f0ad1cffdd..d434259679a4b 100644 --- a/clients/client-s3/src/commands/PutBucketLoggingCommand.ts +++ b/clients/client-s3/src/commands/PutBucketLoggingCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketLoggingRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketLoggingRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketLogging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketMetricsConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketMetricsConfigurationCommand.ts index f82379ad9a021..49bda54be700c 100644 --- a/clients/client-s3/src/commands/PutBucketMetricsConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketMetricsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketMetricsConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketMetricsConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketMetricsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketNotificationConfigurationCommand.ts b/clients/client-s3/src/commands/PutBucketNotificationConfigurationCommand.ts index 28ceebbe10df3..44f6321037777 100644 --- a/clients/client-s3/src/commands/PutBucketNotificationConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketNotificationConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketNotificationConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketNotificationConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketNotificationConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketOwnershipControlsCommand.ts b/clients/client-s3/src/commands/PutBucketOwnershipControlsCommand.ts index bd2d89e275227..eabaa740f44e2 100644 --- a/clients/client-s3/src/commands/PutBucketOwnershipControlsCommand.ts +++ b/clients/client-s3/src/commands/PutBucketOwnershipControlsCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketOwnershipControlsRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketOwnershipControlsRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketOwnershipControls } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketPolicyCommand.ts b/clients/client-s3/src/commands/PutBucketPolicyCommand.ts index 0890d0167904d..8fa4c3718d814 100644 --- a/clients/client-s3/src/commands/PutBucketPolicyCommand.ts +++ b/clients/client-s3/src/commands/PutBucketPolicyCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketPolicyRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketPolicyRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketReplicationCommand.ts b/clients/client-s3/src/commands/PutBucketReplicationCommand.ts index 66422ed342adb..ae80333208e02 100644 --- a/clients/client-s3/src/commands/PutBucketReplicationCommand.ts +++ b/clients/client-s3/src/commands/PutBucketReplicationCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketReplicationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketReplicationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketReplication } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketRequestPaymentCommand.ts b/clients/client-s3/src/commands/PutBucketRequestPaymentCommand.ts index 779e66e98402a..5c41fe524d5d5 100644 --- a/clients/client-s3/src/commands/PutBucketRequestPaymentCommand.ts +++ b/clients/client-s3/src/commands/PutBucketRequestPaymentCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketRequestPaymentRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketRequestPaymentRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketRequestPayment } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketTaggingCommand.ts b/clients/client-s3/src/commands/PutBucketTaggingCommand.ts index 444cb5932e742..1585869285f5b 100644 --- a/clients/client-s3/src/commands/PutBucketTaggingCommand.ts +++ b/clients/client-s3/src/commands/PutBucketTaggingCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketTaggingRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketTaggingRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketVersioningCommand.ts b/clients/client-s3/src/commands/PutBucketVersioningCommand.ts index 80b4069918844..da5d83226aa52 100644 --- a/clients/client-s3/src/commands/PutBucketVersioningCommand.ts +++ b/clients/client-s3/src/commands/PutBucketVersioningCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketVersioningRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketVersioningRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketVersioning } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutBucketWebsiteCommand.ts b/clients/client-s3/src/commands/PutBucketWebsiteCommand.ts index 66f4373899e52..9cb14724ce6b7 100644 --- a/clients/client-s3/src/commands/PutBucketWebsiteCommand.ts +++ b/clients/client-s3/src/commands/PutBucketWebsiteCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutBucketWebsiteRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutBucketWebsiteRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutBucketWebsite } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutObjectAclCommand.ts b/clients/client-s3/src/commands/PutObjectAclCommand.ts index 11fda5fb684e1..8eb3012b1f546 100644 --- a/clients/client-s3/src/commands/PutObjectAclCommand.ts +++ b/clients/client-s3/src/commands/PutObjectAclCommand.ts @@ -3,11 +3,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksu import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutObjectAclOutput, PutObjectAclRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutObjectAclOutput, PutObjectAclRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutObjectAcl } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutObjectCommand.ts b/clients/client-s3/src/commands/PutObjectCommand.ts index 7876e409e49f4..630c0e86d38ba 100644 --- a/clients/client-s3/src/commands/PutObjectCommand.ts +++ b/clients/client-s3/src/commands/PutObjectCommand.ts @@ -4,11 +4,11 @@ import { getCheckContentLengthHeaderPlugin, getThrow200ExceptionsPlugin } from " import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutObjectOutput, PutObjectRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import { type PutObjectOutput, PutObjectRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutObjectLegalHoldCommand.ts b/clients/client-s3/src/commands/PutObjectLegalHoldCommand.ts index 391a109f66ac2..d0b1d0d457193 100644 --- a/clients/client-s3/src/commands/PutObjectLegalHoldCommand.ts +++ b/clients/client-s3/src/commands/PutObjectLegalHoldCommand.ts @@ -3,11 +3,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksu import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutObjectLegalHoldOutput, PutObjectLegalHoldRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutObjectLegalHoldOutput, PutObjectLegalHoldRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutObjectLegalHold } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutObjectLockConfigurationCommand.ts b/clients/client-s3/src/commands/PutObjectLockConfigurationCommand.ts index 0b5aaf3d1d596..159ed42870574 100644 --- a/clients/client-s3/src/commands/PutObjectLockConfigurationCommand.ts +++ b/clients/client-s3/src/commands/PutObjectLockConfigurationCommand.ts @@ -3,11 +3,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksu import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutObjectLockConfigurationOutput, PutObjectLockConfigurationRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutObjectLockConfigurationOutput, PutObjectLockConfigurationRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutObjectLockConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutObjectRetentionCommand.ts b/clients/client-s3/src/commands/PutObjectRetentionCommand.ts index 8a4b48881f593..6eb8f1e9f383e 100644 --- a/clients/client-s3/src/commands/PutObjectRetentionCommand.ts +++ b/clients/client-s3/src/commands/PutObjectRetentionCommand.ts @@ -3,11 +3,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksu import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutObjectRetentionOutput, PutObjectRetentionRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutObjectRetentionOutput, PutObjectRetentionRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutObjectRetention } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutObjectTaggingCommand.ts b/clients/client-s3/src/commands/PutObjectTaggingCommand.ts index 6fe9620f2ada4..f2d846193607c 100644 --- a/clients/client-s3/src/commands/PutObjectTaggingCommand.ts +++ b/clients/client-s3/src/commands/PutObjectTaggingCommand.ts @@ -3,11 +3,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksu import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutObjectTaggingOutput, PutObjectTaggingRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutObjectTaggingOutput, PutObjectTaggingRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutObjectTagging } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/PutPublicAccessBlockCommand.ts b/clients/client-s3/src/commands/PutPublicAccessBlockCommand.ts index 6360f78fe91ac..d79921ada9b18 100644 --- a/clients/client-s3/src/commands/PutPublicAccessBlockCommand.ts +++ b/clients/client-s3/src/commands/PutPublicAccessBlockCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPublicAccessBlockRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { PutPublicAccessBlockRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { PutPublicAccessBlock } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/RenameObjectCommand.ts b/clients/client-s3/src/commands/RenameObjectCommand.ts index 147f0143b8413..51f0db3029e3b 100644 --- a/clients/client-s3/src/commands/RenameObjectCommand.ts +++ b/clients/client-s3/src/commands/RenameObjectCommand.ts @@ -2,11 +2,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RenameObjectOutput, RenameObjectRequest } from "../models/models_0"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { RenameObjectOutput, RenameObjectRequest } from "../models/models_0"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { RenameObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/RestoreObjectCommand.ts b/clients/client-s3/src/commands/RestoreObjectCommand.ts index ca249c77a614b..e06a7d4826c7f 100644 --- a/clients/client-s3/src/commands/RestoreObjectCommand.ts +++ b/clients/client-s3/src/commands/RestoreObjectCommand.ts @@ -3,12 +3,12 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksu import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreObjectOutput } from "../models/models_0"; -import { RestoreObjectRequest } from "../models/models_1"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { RestoreObjectOutput } from "../models/models_0"; +import type { RestoreObjectRequest } from "../models/models_1"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { RestoreObject } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/SelectObjectContentCommand.ts b/clients/client-s3/src/commands/SelectObjectContentCommand.ts index b9191d50a30f3..8ddc2518789f1 100644 --- a/clients/client-s3/src/commands/SelectObjectContentCommand.ts +++ b/clients/client-s3/src/commands/SelectObjectContentCommand.ts @@ -3,11 +3,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SelectObjectContentOutput, SelectObjectContentRequest } from "../models/models_1"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { SelectObjectContentOutput, SelectObjectContentRequest } from "../models/models_1"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { SelectObjectContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.ts b/clients/client-s3/src/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.ts index 1c90580a9a490..bda5b1a418966 100644 --- a/clients/client-s3/src/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.ts +++ b/clients/client-s3/src/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBucketMetadataInventoryTableConfigurationRequest } from "../models/models_1"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { UpdateBucketMetadataInventoryTableConfigurationRequest } from "../models/models_1"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { UpdateBucketMetadataInventoryTableConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/UpdateBucketMetadataJournalTableConfigurationCommand.ts b/clients/client-s3/src/commands/UpdateBucketMetadataJournalTableConfigurationCommand.ts index 7b3ca4f6a2d64..2728a93d74d96 100644 --- a/clients/client-s3/src/commands/UpdateBucketMetadataJournalTableConfigurationCommand.ts +++ b/clients/client-s3/src/commands/UpdateBucketMetadataJournalTableConfigurationCommand.ts @@ -2,11 +2,11 @@ import { getFlexibleChecksumsPlugin } from "@aws-sdk/middleware-flexible-checksums"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBucketMetadataJournalTableConfigurationRequest } from "../models/models_1"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { UpdateBucketMetadataJournalTableConfigurationRequest } from "../models/models_1"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { UpdateBucketMetadataJournalTableConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/UploadPartCommand.ts b/clients/client-s3/src/commands/UploadPartCommand.ts index 02c05b8e8d4e1..4290e218ec5bf 100644 --- a/clients/client-s3/src/commands/UploadPartCommand.ts +++ b/clients/client-s3/src/commands/UploadPartCommand.ts @@ -4,11 +4,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UploadPartOutput, UploadPartRequest } from "../models/models_1"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import { type UploadPartOutput, UploadPartRequest } from "../models/models_1"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { UploadPart } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/UploadPartCopyCommand.ts b/clients/client-s3/src/commands/UploadPartCopyCommand.ts index 028264a149d62..207d91fecdddb 100644 --- a/clients/client-s3/src/commands/UploadPartCopyCommand.ts +++ b/clients/client-s3/src/commands/UploadPartCopyCommand.ts @@ -3,11 +3,11 @@ import { getThrow200ExceptionsPlugin } from "@aws-sdk/middleware-sdk-s3"; import { getSsecPlugin } from "@aws-sdk/middleware-ssec"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UploadPartCopyOutput, UploadPartCopyRequest } from "../models/models_1"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { UploadPartCopyOutput, UploadPartCopyRequest } from "../models/models_1"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { UploadPartCopy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/commands/WriteGetObjectResponseCommand.ts b/clients/client-s3/src/commands/WriteGetObjectResponseCommand.ts index bd411756021f8..aab9ea2963a46 100644 --- a/clients/client-s3/src/commands/WriteGetObjectResponseCommand.ts +++ b/clients/client-s3/src/commands/WriteGetObjectResponseCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { WriteGetObjectResponseRequest } from "../models/models_1"; -import { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; +import type { S3ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3Client"; import { WriteGetObjectResponse } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3/src/endpoint/EndpointParameters.ts b/clients/client-s3/src/endpoint/EndpointParameters.ts index ac1a97e08cc15..994a9359c2da7 100644 --- a/clients/client-s3/src/endpoint/EndpointParameters.ts +++ b/clients/client-s3/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-s3/src/endpoint/endpointResolver.ts b/clients/client-s3/src/endpoint/endpointResolver.ts index 654426f82a1f6..5ea72deb14499 100644 --- a/clients/client-s3/src/endpoint/endpointResolver.ts +++ b/clients/client-s3/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-s3/src/extensionConfiguration.ts b/clients/client-s3/src/extensionConfiguration.ts index 5acc0f2effcc3..15f04491c2c42 100644 --- a/clients/client-s3/src/extensionConfiguration.ts +++ b/clients/client-s3/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-s3/src/models/S3ServiceException.ts b/clients/client-s3/src/models/S3ServiceException.ts index 14dd9550605b7..7b179ad64c17e 100644 --- a/clients/client-s3/src/models/S3ServiceException.ts +++ b/clients/client-s3/src/models/S3ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-s3/src/models/errors.ts b/clients/client-s3/src/models/errors.ts index c6ea083d35096..a37b9770d2438 100644 --- a/clients/client-s3/src/models/errors.ts +++ b/clients/client-s3/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { IntelligentTieringAccessTier, StorageClass } from "./enums"; import { S3ServiceException as __BaseException } from "./S3ServiceException"; diff --git a/clients/client-s3/src/pagination/Interfaces.ts b/clients/client-s3/src/pagination/Interfaces.ts index e86088394a79f..17968ca3ece5c 100644 --- a/clients/client-s3/src/pagination/Interfaces.ts +++ b/clients/client-s3/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { S3Client } from "../S3Client"; diff --git a/clients/client-s3/src/pagination/ListBucketsPaginator.ts b/clients/client-s3/src/pagination/ListBucketsPaginator.ts index 0189811454498..57a34035aba84 100644 --- a/clients/client-s3/src/pagination/ListBucketsPaginator.ts +++ b/clients/client-s3/src/pagination/ListBucketsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBucketsCommand, ListBucketsCommandInput, ListBucketsCommandOutput } from "../commands/ListBucketsCommand"; import { S3Client } from "../S3Client"; diff --git a/clients/client-s3/src/pagination/ListDirectoryBucketsPaginator.ts b/clients/client-s3/src/pagination/ListDirectoryBucketsPaginator.ts index 2022a85a63a51..d95661efae97a 100644 --- a/clients/client-s3/src/pagination/ListDirectoryBucketsPaginator.ts +++ b/clients/client-s3/src/pagination/ListDirectoryBucketsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDirectoryBucketsCommand, diff --git a/clients/client-s3/src/pagination/ListObjectsV2Paginator.ts b/clients/client-s3/src/pagination/ListObjectsV2Paginator.ts index 75a6827f4f538..da61af3607204 100644 --- a/clients/client-s3/src/pagination/ListObjectsV2Paginator.ts +++ b/clients/client-s3/src/pagination/ListObjectsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListObjectsV2Command, diff --git a/clients/client-s3/src/pagination/ListPartsPaginator.ts b/clients/client-s3/src/pagination/ListPartsPaginator.ts index 83d8be56865e0..f8e5dddd39bef 100644 --- a/clients/client-s3/src/pagination/ListPartsPaginator.ts +++ b/clients/client-s3/src/pagination/ListPartsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPartsCommand, ListPartsCommandInput, ListPartsCommandOutput } from "../commands/ListPartsCommand"; import { S3Client } from "../S3Client"; diff --git a/clients/client-s3/src/runtimeConfig.browser.ts b/clients/client-s3/src/runtimeConfig.browser.ts index 60dd020f1fc58..ea27edb38b2a6 100644 --- a/clients/client-s3/src/runtimeConfig.browser.ts +++ b/clients/client-s3/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fet import { blobHasher as streamHasher } from "@smithy/hash-blob-browser"; import { invalidProvider } from "@smithy/invalid-dependency"; import { Md5 } from "@smithy/md5-js"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3ClientConfig } from "./S3Client"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { S3ClientConfig } from "./S3Client"; /** * @internal diff --git a/clients/client-s3/src/runtimeConfig.native.ts b/clients/client-s3/src/runtimeConfig.native.ts index 8cc71ac988e2f..bc6563091f5af 100644 --- a/clients/client-s3/src/runtimeConfig.native.ts +++ b/clients/client-s3/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { S3ClientConfig } from "./S3Client"; +import type { S3ClientConfig } from "./S3Client"; /** * @internal diff --git a/clients/client-s3/src/runtimeConfig.shared.ts b/clients/client-s3/src/runtimeConfig.shared.ts index 7cb09f0259cd5..907468fef82e6 100644 --- a/clients/client-s3/src/runtimeConfig.shared.ts +++ b/clients/client-s3/src/runtimeConfig.shared.ts @@ -3,7 +3,7 @@ import { AwsSdkSigV4ASigner, AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestXmlProtocol } from "@aws-sdk/core/protocols"; import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { getAwsChunkedEncodingStream, sdkStreamMixin } from "@smithy/util-stream"; @@ -11,7 +11,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultS3HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { S3ClientConfig } from "./S3Client"; +import type { S3ClientConfig } from "./S3Client"; /** * @internal diff --git a/clients/client-s3/src/runtimeConfig.ts b/clients/client-s3/src/runtimeConfig.ts index b95a8e43c9c1e..998da31d099a4 100644 --- a/clients/client-s3/src/runtimeConfig.ts +++ b/clients/client-s3/src/runtimeConfig.ts @@ -28,13 +28,13 @@ import { readableStreamHasher as streamHasher } from "@smithy/hash-stream-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3ClientConfig } from "./S3Client"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { S3ClientConfig } from "./S3Client"; /** * @internal diff --git a/clients/client-s3/src/runtimeExtensions.ts b/clients/client-s3/src/runtimeExtensions.ts index 53cf039394593..a9469ae70edb4 100644 --- a/clients/client-s3/src/runtimeExtensions.ts +++ b/clients/client-s3/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { S3ExtensionConfiguration } from "./extensionConfiguration"; +import type { S3ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-s3/src/schemas/schemas_0.ts b/clients/client-s3/src/schemas/schemas_0.ts index ea0683f165271..875154b1e2695 100644 --- a/clients/client-s3/src/schemas/schemas_0.ts +++ b/clients/client-s3/src/schemas/schemas_0.ts @@ -1006,7 +1006,7 @@ const n0 = "com.amazonaws.s3"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-s3outposts/package.json b/clients/client-s3outposts/package.json index cf3634ec4db17..a69d856b0d066 100644 --- a/clients/client-s3outposts/package.json +++ b/clients/client-s3outposts/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-s3outposts/src/S3Outposts.ts b/clients/client-s3outposts/src/S3Outposts.ts index 568d5cd87aabf..21cebc4ff24a7 100644 --- a/clients/client-s3outposts/src/S3Outposts.ts +++ b/clients/client-s3outposts/src/S3Outposts.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateEndpointCommand, @@ -27,7 +27,7 @@ import { ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput, } from "./commands/ListSharedEndpointsCommand"; -import { S3OutpostsClient, S3OutpostsClientConfig } from "./S3OutpostsClient"; +import { S3OutpostsClient } from "./S3OutpostsClient"; const commands = { CreateEndpointCommand, diff --git a/clients/client-s3outposts/src/S3OutpostsClient.ts b/clients/client-s3outposts/src/S3OutpostsClient.ts index 0d0b9cad1c12b..3434e30048cfa 100644 --- a/clients/client-s3outposts/src/S3OutpostsClient.ts +++ b/clients/client-s3outposts/src/S3OutpostsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultS3OutpostsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateEndpointCommandInput, CreateEndpointCommandOutput } from "./commands/CreateEndpointCommand"; @@ -72,7 +81,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-s3outposts/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-s3outposts/src/auth/httpAuthExtensionConfiguration.ts index 91d679321324c..061def205e123 100644 --- a/clients/client-s3outposts/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-s3outposts/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { S3OutpostsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { S3OutpostsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-s3outposts/src/auth/httpAuthSchemeProvider.ts b/clients/client-s3outposts/src/auth/httpAuthSchemeProvider.ts index a81126e93141d..87f34f1a9c1a4 100644 --- a/clients/client-s3outposts/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-s3outposts/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { S3OutpostsClientConfig, S3OutpostsClientResolvedConfig } from "../S3OutpostsClient"; +import { type S3OutpostsClientResolvedConfig, S3OutpostsClientConfig } from "../S3OutpostsClient"; /** * @internal diff --git a/clients/client-s3outposts/src/commands/CreateEndpointCommand.ts b/clients/client-s3outposts/src/commands/CreateEndpointCommand.ts index fa4e47b42d744..88d908b7a9ba5 100644 --- a/clients/client-s3outposts/src/commands/CreateEndpointCommand.ts +++ b/clients/client-s3outposts/src/commands/CreateEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEndpointRequest, CreateEndpointResult } from "../models/models_0"; -import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; +import type { CreateEndpointRequest, CreateEndpointResult } from "../models/models_0"; +import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; import { CreateEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3outposts/src/commands/DeleteEndpointCommand.ts b/clients/client-s3outposts/src/commands/DeleteEndpointCommand.ts index a529c8f44ebd9..a116a213d7709 100644 --- a/clients/client-s3outposts/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-s3outposts/src/commands/DeleteEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEndpointRequest } from "../models/models_0"; -import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; +import type { DeleteEndpointRequest } from "../models/models_0"; +import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; import { DeleteEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3outposts/src/commands/ListEndpointsCommand.ts b/clients/client-s3outposts/src/commands/ListEndpointsCommand.ts index b70fa5bcd32ff..8030473584fc0 100644 --- a/clients/client-s3outposts/src/commands/ListEndpointsCommand.ts +++ b/clients/client-s3outposts/src/commands/ListEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEndpointsRequest, ListEndpointsResult } from "../models/models_0"; -import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; +import type { ListEndpointsRequest, ListEndpointsResult } from "../models/models_0"; +import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; import { ListEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3outposts/src/commands/ListOutpostsWithS3Command.ts b/clients/client-s3outposts/src/commands/ListOutpostsWithS3Command.ts index db959e8d6ba7e..a4e79df106bdb 100644 --- a/clients/client-s3outposts/src/commands/ListOutpostsWithS3Command.ts +++ b/clients/client-s3outposts/src/commands/ListOutpostsWithS3Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOutpostsWithS3Request, ListOutpostsWithS3Result } from "../models/models_0"; -import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; +import type { ListOutpostsWithS3Request, ListOutpostsWithS3Result } from "../models/models_0"; +import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; import { ListOutpostsWithS3 } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3outposts/src/commands/ListSharedEndpointsCommand.ts b/clients/client-s3outposts/src/commands/ListSharedEndpointsCommand.ts index 565f288965bbc..7fbb8c3f87a3a 100644 --- a/clients/client-s3outposts/src/commands/ListSharedEndpointsCommand.ts +++ b/clients/client-s3outposts/src/commands/ListSharedEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSharedEndpointsRequest, ListSharedEndpointsResult } from "../models/models_0"; -import { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; +import type { ListSharedEndpointsRequest, ListSharedEndpointsResult } from "../models/models_0"; +import type { S3OutpostsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3OutpostsClient"; import { ListSharedEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3outposts/src/endpoint/EndpointParameters.ts b/clients/client-s3outposts/src/endpoint/EndpointParameters.ts index 1c8cbc0246def..f9e970c317221 100644 --- a/clients/client-s3outposts/src/endpoint/EndpointParameters.ts +++ b/clients/client-s3outposts/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-s3outposts/src/endpoint/endpointResolver.ts b/clients/client-s3outposts/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-s3outposts/src/endpoint/endpointResolver.ts +++ b/clients/client-s3outposts/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-s3outposts/src/extensionConfiguration.ts b/clients/client-s3outposts/src/extensionConfiguration.ts index b45a797130f43..413c7bcd1d9bf 100644 --- a/clients/client-s3outposts/src/extensionConfiguration.ts +++ b/clients/client-s3outposts/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-s3outposts/src/models/S3OutpostsServiceException.ts b/clients/client-s3outposts/src/models/S3OutpostsServiceException.ts index be253849b88af..1ca58e4ccea62 100644 --- a/clients/client-s3outposts/src/models/S3OutpostsServiceException.ts +++ b/clients/client-s3outposts/src/models/S3OutpostsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-s3outposts/src/models/errors.ts b/clients/client-s3outposts/src/models/errors.ts index f47db54ef784f..ca7da24694de0 100644 --- a/clients/client-s3outposts/src/models/errors.ts +++ b/clients/client-s3outposts/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { S3OutpostsServiceException as __BaseException } from "./S3OutpostsServiceException"; diff --git a/clients/client-s3outposts/src/pagination/Interfaces.ts b/clients/client-s3outposts/src/pagination/Interfaces.ts index 21fe6aa55eff3..a8f4f4c4a23de 100644 --- a/clients/client-s3outposts/src/pagination/Interfaces.ts +++ b/clients/client-s3outposts/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { S3OutpostsClient } from "../S3OutpostsClient"; diff --git a/clients/client-s3outposts/src/pagination/ListEndpointsPaginator.ts b/clients/client-s3outposts/src/pagination/ListEndpointsPaginator.ts index 31a673b4cc32b..fc88248b1d97b 100644 --- a/clients/client-s3outposts/src/pagination/ListEndpointsPaginator.ts +++ b/clients/client-s3outposts/src/pagination/ListEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEndpointsCommand, diff --git a/clients/client-s3outposts/src/pagination/ListOutpostsWithS3Paginator.ts b/clients/client-s3outposts/src/pagination/ListOutpostsWithS3Paginator.ts index 7ac5098c71c24..c51ae6a126b6e 100644 --- a/clients/client-s3outposts/src/pagination/ListOutpostsWithS3Paginator.ts +++ b/clients/client-s3outposts/src/pagination/ListOutpostsWithS3Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOutpostsWithS3Command, diff --git a/clients/client-s3outposts/src/pagination/ListSharedEndpointsPaginator.ts b/clients/client-s3outposts/src/pagination/ListSharedEndpointsPaginator.ts index 7346186381c1f..6fbfe1f8e6448 100644 --- a/clients/client-s3outposts/src/pagination/ListSharedEndpointsPaginator.ts +++ b/clients/client-s3outposts/src/pagination/ListSharedEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSharedEndpointsCommand, diff --git a/clients/client-s3outposts/src/runtimeConfig.browser.ts b/clients/client-s3outposts/src/runtimeConfig.browser.ts index ae31f79e9887f..41cf8e059e40e 100644 --- a/clients/client-s3outposts/src/runtimeConfig.browser.ts +++ b/clients/client-s3outposts/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3OutpostsClientConfig } from "./S3OutpostsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { S3OutpostsClientConfig } from "./S3OutpostsClient"; /** * @internal diff --git a/clients/client-s3outposts/src/runtimeConfig.native.ts b/clients/client-s3outposts/src/runtimeConfig.native.ts index 0a61921e580b5..92ee3bcd8b55d 100644 --- a/clients/client-s3outposts/src/runtimeConfig.native.ts +++ b/clients/client-s3outposts/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { S3OutpostsClientConfig } from "./S3OutpostsClient"; +import type { S3OutpostsClientConfig } from "./S3OutpostsClient"; /** * @internal diff --git a/clients/client-s3outposts/src/runtimeConfig.shared.ts b/clients/client-s3outposts/src/runtimeConfig.shared.ts index dd76fb7d5caf0..bfffdd700a985 100644 --- a/clients/client-s3outposts/src/runtimeConfig.shared.ts +++ b/clients/client-s3outposts/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultS3OutpostsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { S3OutpostsClientConfig } from "./S3OutpostsClient"; +import type { S3OutpostsClientConfig } from "./S3OutpostsClient"; /** * @internal diff --git a/clients/client-s3outposts/src/runtimeConfig.ts b/clients/client-s3outposts/src/runtimeConfig.ts index f869fff6b80ba..1620631302128 100644 --- a/clients/client-s3outposts/src/runtimeConfig.ts +++ b/clients/client-s3outposts/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3OutpostsClientConfig } from "./S3OutpostsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { S3OutpostsClientConfig } from "./S3OutpostsClient"; /** * @internal diff --git a/clients/client-s3outposts/src/runtimeExtensions.ts b/clients/client-s3outposts/src/runtimeExtensions.ts index 401904c4f9811..680b141208835 100644 --- a/clients/client-s3outposts/src/runtimeExtensions.ts +++ b/clients/client-s3outposts/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { S3OutpostsExtensionConfiguration } from "./extensionConfiguration"; +import type { S3OutpostsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-s3outposts/src/schemas/schemas_0.ts b/clients/client-s3outposts/src/schemas/schemas_0.ts index e4fb0695d1a51..b9068cf7cf2aa 100644 --- a/clients/client-s3outposts/src/schemas/schemas_0.ts +++ b/clients/client-s3outposts/src/schemas/schemas_0.ts @@ -62,7 +62,7 @@ const n0 = "com.amazonaws.s3outposts"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-s3tables/package.json b/clients/client-s3tables/package.json index 4cb04d0625cb3..fe146f10055e5 100644 --- a/clients/client-s3tables/package.json +++ b/clients/client-s3tables/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-s3tables/src/S3Tables.ts b/clients/client-s3tables/src/S3Tables.ts index 34d2090f156bf..f69bef8ee5d60 100644 --- a/clients/client-s3tables/src/S3Tables.ts +++ b/clients/client-s3tables/src/S3Tables.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateNamespaceCommand, @@ -158,7 +158,7 @@ import { UpdateTableMetadataLocationCommandInput, UpdateTableMetadataLocationCommandOutput, } from "./commands/UpdateTableMetadataLocationCommand"; -import { S3TablesClient, S3TablesClientConfig } from "./S3TablesClient"; +import { S3TablesClient } from "./S3TablesClient"; const commands = { CreateNamespaceCommand, diff --git a/clients/client-s3tables/src/S3TablesClient.ts b/clients/client-s3tables/src/S3TablesClient.ts index 7130db74afec9..708d275cc677a 100644 --- a/clients/client-s3tables/src/S3TablesClient.ts +++ b/clients/client-s3tables/src/S3TablesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultS3TablesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateNamespaceCommandInput, CreateNamespaceCommandOutput } from "./commands/CreateNamespaceCommand"; @@ -151,7 +160,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-s3tables/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-s3tables/src/auth/httpAuthExtensionConfiguration.ts index dd732128f9f2c..6d25b35de598b 100644 --- a/clients/client-s3tables/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-s3tables/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { S3TablesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { S3TablesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-s3tables/src/auth/httpAuthSchemeProvider.ts b/clients/client-s3tables/src/auth/httpAuthSchemeProvider.ts index c2c5333bb4d31..da1fcd8a796d2 100644 --- a/clients/client-s3tables/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-s3tables/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { S3TablesClientConfig, S3TablesClientResolvedConfig } from "../S3TablesClient"; +import { type S3TablesClientResolvedConfig, S3TablesClientConfig } from "../S3TablesClient"; /** * @internal diff --git a/clients/client-s3tables/src/commands/CreateNamespaceCommand.ts b/clients/client-s3tables/src/commands/CreateNamespaceCommand.ts index eb6dfcd43c3f9..237fa47a9d39d 100644 --- a/clients/client-s3tables/src/commands/CreateNamespaceCommand.ts +++ b/clients/client-s3tables/src/commands/CreateNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNamespaceRequest, CreateNamespaceResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { CreateNamespaceRequest, CreateNamespaceResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { CreateNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/CreateTableBucketCommand.ts b/clients/client-s3tables/src/commands/CreateTableBucketCommand.ts index 2d641dadfab57..4719b9f432f0d 100644 --- a/clients/client-s3tables/src/commands/CreateTableBucketCommand.ts +++ b/clients/client-s3tables/src/commands/CreateTableBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTableBucketRequest, CreateTableBucketResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { CreateTableBucketRequest, CreateTableBucketResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { CreateTableBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/CreateTableCommand.ts b/clients/client-s3tables/src/commands/CreateTableCommand.ts index 5f9035d9bb581..452d9f3dcb8c2 100644 --- a/clients/client-s3tables/src/commands/CreateTableCommand.ts +++ b/clients/client-s3tables/src/commands/CreateTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTableRequest, CreateTableResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { CreateTableRequest, CreateTableResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { CreateTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/DeleteNamespaceCommand.ts b/clients/client-s3tables/src/commands/DeleteNamespaceCommand.ts index 0a9078e56d77c..f819eb3371e0e 100644 --- a/clients/client-s3tables/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNamespaceRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { DeleteNamespaceRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { DeleteNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/DeleteTableBucketCommand.ts b/clients/client-s3tables/src/commands/DeleteTableBucketCommand.ts index c610ca4218183..e77036a3175d5 100644 --- a/clients/client-s3tables/src/commands/DeleteTableBucketCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTableBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTableBucketRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { DeleteTableBucketRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { DeleteTableBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/DeleteTableBucketEncryptionCommand.ts b/clients/client-s3tables/src/commands/DeleteTableBucketEncryptionCommand.ts index 1b8e7582d43b6..cbab3c033a7ce 100644 --- a/clients/client-s3tables/src/commands/DeleteTableBucketEncryptionCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTableBucketEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTableBucketEncryptionRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { DeleteTableBucketEncryptionRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { DeleteTableBucketEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/DeleteTableBucketMetricsConfigurationCommand.ts b/clients/client-s3tables/src/commands/DeleteTableBucketMetricsConfigurationCommand.ts index 59613c2885e9e..9c561f7a887cb 100644 --- a/clients/client-s3tables/src/commands/DeleteTableBucketMetricsConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTableBucketMetricsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTableBucketMetricsConfigurationRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { DeleteTableBucketMetricsConfigurationRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { DeleteTableBucketMetricsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/DeleteTableBucketPolicyCommand.ts b/clients/client-s3tables/src/commands/DeleteTableBucketPolicyCommand.ts index af0b86596dfc1..2145d7427178b 100644 --- a/clients/client-s3tables/src/commands/DeleteTableBucketPolicyCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTableBucketPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTableBucketPolicyRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { DeleteTableBucketPolicyRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { DeleteTableBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/DeleteTableCommand.ts b/clients/client-s3tables/src/commands/DeleteTableCommand.ts index 2fefc7c7a5082..d787410f39089 100644 --- a/clients/client-s3tables/src/commands/DeleteTableCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTableRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { DeleteTableRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { DeleteTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/DeleteTablePolicyCommand.ts b/clients/client-s3tables/src/commands/DeleteTablePolicyCommand.ts index 3bf98ee534102..3ad8659ae2823 100644 --- a/clients/client-s3tables/src/commands/DeleteTablePolicyCommand.ts +++ b/clients/client-s3tables/src/commands/DeleteTablePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTablePolicyRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { DeleteTablePolicyRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { DeleteTablePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetNamespaceCommand.ts b/clients/client-s3tables/src/commands/GetNamespaceCommand.ts index e3bb2312e5201..945c362aa124c 100644 --- a/clients/client-s3tables/src/commands/GetNamespaceCommand.ts +++ b/clients/client-s3tables/src/commands/GetNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetNamespace } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableBucketCommand.ts b/clients/client-s3tables/src/commands/GetTableBucketCommand.ts index 4abb52dde8af5..61ce54ce2e611 100644 --- a/clients/client-s3tables/src/commands/GetTableBucketCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableBucketRequest, GetTableBucketResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { GetTableBucketRequest, GetTableBucketResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTableBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableBucketEncryptionCommand.ts b/clients/client-s3tables/src/commands/GetTableBucketEncryptionCommand.ts index 0231faf2d5348..a44ca48bd0237 100644 --- a/clients/client-s3tables/src/commands/GetTableBucketEncryptionCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableBucketEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableBucketEncryptionRequest, GetTableBucketEncryptionResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { GetTableBucketEncryptionRequest, GetTableBucketEncryptionResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTableBucketEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableBucketMaintenanceConfigurationCommand.ts b/clients/client-s3tables/src/commands/GetTableBucketMaintenanceConfigurationCommand.ts index e482f072e9046..bce2ba011b2e0 100644 --- a/clients/client-s3tables/src/commands/GetTableBucketMaintenanceConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableBucketMaintenanceConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTableBucketMaintenanceConfigurationRequest, GetTableBucketMaintenanceConfigurationResponse, } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTableBucketMaintenanceConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableBucketMetricsConfigurationCommand.ts b/clients/client-s3tables/src/commands/GetTableBucketMetricsConfigurationCommand.ts index 5e6ac146d7eae..25d0d64505128 100644 --- a/clients/client-s3tables/src/commands/GetTableBucketMetricsConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableBucketMetricsConfigurationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetTableBucketMetricsConfigurationRequest, GetTableBucketMetricsConfigurationResponse, } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTableBucketMetricsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableBucketPolicyCommand.ts b/clients/client-s3tables/src/commands/GetTableBucketPolicyCommand.ts index 3722f7c8895a1..628d54f47a9ac 100644 --- a/clients/client-s3tables/src/commands/GetTableBucketPolicyCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableBucketPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableBucketPolicyRequest, GetTableBucketPolicyResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { GetTableBucketPolicyRequest, GetTableBucketPolicyResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTableBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableCommand.ts b/clients/client-s3tables/src/commands/GetTableCommand.ts index 6b7107b71b037..7ee634805921c 100644 --- a/clients/client-s3tables/src/commands/GetTableCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableRequest, GetTableResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { GetTableRequest, GetTableResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableEncryptionCommand.ts b/clients/client-s3tables/src/commands/GetTableEncryptionCommand.ts index 70c3e898cc150..643a548d2bece 100644 --- a/clients/client-s3tables/src/commands/GetTableEncryptionCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableEncryptionRequest, GetTableEncryptionResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { GetTableEncryptionRequest, GetTableEncryptionResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTableEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableMaintenanceConfigurationCommand.ts b/clients/client-s3tables/src/commands/GetTableMaintenanceConfigurationCommand.ts index 4819107cf7a32..31755f259cac2 100644 --- a/clients/client-s3tables/src/commands/GetTableMaintenanceConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableMaintenanceConfigurationCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableMaintenanceConfigurationRequest, GetTableMaintenanceConfigurationResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { + GetTableMaintenanceConfigurationRequest, + GetTableMaintenanceConfigurationResponse, +} from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTableMaintenanceConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableMaintenanceJobStatusCommand.ts b/clients/client-s3tables/src/commands/GetTableMaintenanceJobStatusCommand.ts index 095d443513c60..805587f421ea5 100644 --- a/clients/client-s3tables/src/commands/GetTableMaintenanceJobStatusCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableMaintenanceJobStatusCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableMaintenanceJobStatusRequest, GetTableMaintenanceJobStatusResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { GetTableMaintenanceJobStatusRequest, GetTableMaintenanceJobStatusResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTableMaintenanceJobStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTableMetadataLocationCommand.ts b/clients/client-s3tables/src/commands/GetTableMetadataLocationCommand.ts index 2b0083f250ffc..7d612812227ad 100644 --- a/clients/client-s3tables/src/commands/GetTableMetadataLocationCommand.ts +++ b/clients/client-s3tables/src/commands/GetTableMetadataLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTableMetadataLocationRequest, GetTableMetadataLocationResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { GetTableMetadataLocationRequest, GetTableMetadataLocationResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTableMetadataLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/GetTablePolicyCommand.ts b/clients/client-s3tables/src/commands/GetTablePolicyCommand.ts index efdd018a43e5d..3fa935303e27a 100644 --- a/clients/client-s3tables/src/commands/GetTablePolicyCommand.ts +++ b/clients/client-s3tables/src/commands/GetTablePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTablePolicyRequest, GetTablePolicyResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { GetTablePolicyRequest, GetTablePolicyResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { GetTablePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/ListNamespacesCommand.ts b/clients/client-s3tables/src/commands/ListNamespacesCommand.ts index 6e5917ac0940e..26b724d9773b7 100644 --- a/clients/client-s3tables/src/commands/ListNamespacesCommand.ts +++ b/clients/client-s3tables/src/commands/ListNamespacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { ListNamespaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/ListTableBucketsCommand.ts b/clients/client-s3tables/src/commands/ListTableBucketsCommand.ts index 29addab5f8a64..11b1990bb7661 100644 --- a/clients/client-s3tables/src/commands/ListTableBucketsCommand.ts +++ b/clients/client-s3tables/src/commands/ListTableBucketsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTableBucketsRequest, ListTableBucketsResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { ListTableBucketsRequest, ListTableBucketsResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { ListTableBuckets } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/ListTablesCommand.ts b/clients/client-s3tables/src/commands/ListTablesCommand.ts index 75ebd9ddc3d91..cd311eb47566b 100644 --- a/clients/client-s3tables/src/commands/ListTablesCommand.ts +++ b/clients/client-s3tables/src/commands/ListTablesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTablesRequest, ListTablesResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { ListTablesRequest, ListTablesResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { ListTables } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/ListTagsForResourceCommand.ts b/clients/client-s3tables/src/commands/ListTagsForResourceCommand.ts index ffb328b55dabb..ada4e0fd9e355 100644 --- a/clients/client-s3tables/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-s3tables/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/PutTableBucketEncryptionCommand.ts b/clients/client-s3tables/src/commands/PutTableBucketEncryptionCommand.ts index 6a6961d8d80af..c41155dea90c6 100644 --- a/clients/client-s3tables/src/commands/PutTableBucketEncryptionCommand.ts +++ b/clients/client-s3tables/src/commands/PutTableBucketEncryptionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTableBucketEncryptionRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { PutTableBucketEncryptionRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { PutTableBucketEncryption } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/PutTableBucketMaintenanceConfigurationCommand.ts b/clients/client-s3tables/src/commands/PutTableBucketMaintenanceConfigurationCommand.ts index 28e4884b77916..6e8191b1e8597 100644 --- a/clients/client-s3tables/src/commands/PutTableBucketMaintenanceConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/PutTableBucketMaintenanceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTableBucketMaintenanceConfigurationRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { PutTableBucketMaintenanceConfigurationRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { PutTableBucketMaintenanceConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/PutTableBucketMetricsConfigurationCommand.ts b/clients/client-s3tables/src/commands/PutTableBucketMetricsConfigurationCommand.ts index c86a3ed39d57d..5ec522e8b3c51 100644 --- a/clients/client-s3tables/src/commands/PutTableBucketMetricsConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/PutTableBucketMetricsConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTableBucketMetricsConfigurationRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { PutTableBucketMetricsConfigurationRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { PutTableBucketMetricsConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/PutTableBucketPolicyCommand.ts b/clients/client-s3tables/src/commands/PutTableBucketPolicyCommand.ts index 2e4332d56afcc..8bb00e8481aba 100644 --- a/clients/client-s3tables/src/commands/PutTableBucketPolicyCommand.ts +++ b/clients/client-s3tables/src/commands/PutTableBucketPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTableBucketPolicyRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { PutTableBucketPolicyRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { PutTableBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/PutTableMaintenanceConfigurationCommand.ts b/clients/client-s3tables/src/commands/PutTableMaintenanceConfigurationCommand.ts index d9432596005ea..82f4f8c9c3542 100644 --- a/clients/client-s3tables/src/commands/PutTableMaintenanceConfigurationCommand.ts +++ b/clients/client-s3tables/src/commands/PutTableMaintenanceConfigurationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTableMaintenanceConfigurationRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { PutTableMaintenanceConfigurationRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { PutTableMaintenanceConfiguration } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/PutTablePolicyCommand.ts b/clients/client-s3tables/src/commands/PutTablePolicyCommand.ts index afb9596a49c1c..a6d84ecf8cbbb 100644 --- a/clients/client-s3tables/src/commands/PutTablePolicyCommand.ts +++ b/clients/client-s3tables/src/commands/PutTablePolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTablePolicyRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { PutTablePolicyRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { PutTablePolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/RenameTableCommand.ts b/clients/client-s3tables/src/commands/RenameTableCommand.ts index 751f736da8a7e..f4be1d3b18b52 100644 --- a/clients/client-s3tables/src/commands/RenameTableCommand.ts +++ b/clients/client-s3tables/src/commands/RenameTableCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RenameTableRequest } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { RenameTableRequest } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { RenameTable } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/TagResourceCommand.ts b/clients/client-s3tables/src/commands/TagResourceCommand.ts index 3e9cf308a022b..f97a1b4090ddd 100644 --- a/clients/client-s3tables/src/commands/TagResourceCommand.ts +++ b/clients/client-s3tables/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/UntagResourceCommand.ts b/clients/client-s3tables/src/commands/UntagResourceCommand.ts index e6c5644b6ab08..406136e1ada50 100644 --- a/clients/client-s3tables/src/commands/UntagResourceCommand.ts +++ b/clients/client-s3tables/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/commands/UpdateTableMetadataLocationCommand.ts b/clients/client-s3tables/src/commands/UpdateTableMetadataLocationCommand.ts index fbca186fea7cb..6ca0fa80c9a9b 100644 --- a/clients/client-s3tables/src/commands/UpdateTableMetadataLocationCommand.ts +++ b/clients/client-s3tables/src/commands/UpdateTableMetadataLocationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTableMetadataLocationRequest, UpdateTableMetadataLocationResponse } from "../models/models_0"; -import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; +import type { UpdateTableMetadataLocationRequest, UpdateTableMetadataLocationResponse } from "../models/models_0"; +import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient"; import { UpdateTableMetadataLocation } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3tables/src/endpoint/EndpointParameters.ts b/clients/client-s3tables/src/endpoint/EndpointParameters.ts index 8a76a8d201fb8..b8b7fe624ba24 100644 --- a/clients/client-s3tables/src/endpoint/EndpointParameters.ts +++ b/clients/client-s3tables/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-s3tables/src/endpoint/endpointResolver.ts b/clients/client-s3tables/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-s3tables/src/endpoint/endpointResolver.ts +++ b/clients/client-s3tables/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-s3tables/src/extensionConfiguration.ts b/clients/client-s3tables/src/extensionConfiguration.ts index 8b7ff1c48031c..79f1b1dcad787 100644 --- a/clients/client-s3tables/src/extensionConfiguration.ts +++ b/clients/client-s3tables/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-s3tables/src/models/S3TablesServiceException.ts b/clients/client-s3tables/src/models/S3TablesServiceException.ts index a88d172630b4f..c8515e745bd6d 100644 --- a/clients/client-s3tables/src/models/S3TablesServiceException.ts +++ b/clients/client-s3tables/src/models/S3TablesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-s3tables/src/models/errors.ts b/clients/client-s3tables/src/models/errors.ts index 4054d1484a8b5..ac4fb00542983 100644 --- a/clients/client-s3tables/src/models/errors.ts +++ b/clients/client-s3tables/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { S3TablesServiceException as __BaseException } from "./S3TablesServiceException"; diff --git a/clients/client-s3tables/src/pagination/Interfaces.ts b/clients/client-s3tables/src/pagination/Interfaces.ts index bc281337ac658..ed07cffb1ec50 100644 --- a/clients/client-s3tables/src/pagination/Interfaces.ts +++ b/clients/client-s3tables/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { S3TablesClient } from "../S3TablesClient"; diff --git a/clients/client-s3tables/src/pagination/ListNamespacesPaginator.ts b/clients/client-s3tables/src/pagination/ListNamespacesPaginator.ts index ce233ae54947d..b75a8755f3178 100644 --- a/clients/client-s3tables/src/pagination/ListNamespacesPaginator.ts +++ b/clients/client-s3tables/src/pagination/ListNamespacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNamespacesCommand, diff --git a/clients/client-s3tables/src/pagination/ListTableBucketsPaginator.ts b/clients/client-s3tables/src/pagination/ListTableBucketsPaginator.ts index 8dd577c800cb0..15a8c1f352aa7 100644 --- a/clients/client-s3tables/src/pagination/ListTableBucketsPaginator.ts +++ b/clients/client-s3tables/src/pagination/ListTableBucketsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTableBucketsCommand, diff --git a/clients/client-s3tables/src/pagination/ListTablesPaginator.ts b/clients/client-s3tables/src/pagination/ListTablesPaginator.ts index e77ea3eccbb5d..790c31c33dcf8 100644 --- a/clients/client-s3tables/src/pagination/ListTablesPaginator.ts +++ b/clients/client-s3tables/src/pagination/ListTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTablesCommand, ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand"; import { S3TablesClient } from "../S3TablesClient"; diff --git a/clients/client-s3tables/src/runtimeConfig.browser.ts b/clients/client-s3tables/src/runtimeConfig.browser.ts index 5bfb168de9a76..a1ce870d04e26 100644 --- a/clients/client-s3tables/src/runtimeConfig.browser.ts +++ b/clients/client-s3tables/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3TablesClientConfig } from "./S3TablesClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { S3TablesClientConfig } from "./S3TablesClient"; /** * @internal diff --git a/clients/client-s3tables/src/runtimeConfig.native.ts b/clients/client-s3tables/src/runtimeConfig.native.ts index 3407beead53bb..1337c7dfcf804 100644 --- a/clients/client-s3tables/src/runtimeConfig.native.ts +++ b/clients/client-s3tables/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { S3TablesClientConfig } from "./S3TablesClient"; +import type { S3TablesClientConfig } from "./S3TablesClient"; /** * @internal diff --git a/clients/client-s3tables/src/runtimeConfig.shared.ts b/clients/client-s3tables/src/runtimeConfig.shared.ts index f2593cfc274b7..b64f868648e80 100644 --- a/clients/client-s3tables/src/runtimeConfig.shared.ts +++ b/clients/client-s3tables/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultS3TablesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { S3TablesClientConfig } from "./S3TablesClient"; +import type { S3TablesClientConfig } from "./S3TablesClient"; /** * @internal diff --git a/clients/client-s3tables/src/runtimeConfig.ts b/clients/client-s3tables/src/runtimeConfig.ts index 8589fff62a681..d7eaca804fa20 100644 --- a/clients/client-s3tables/src/runtimeConfig.ts +++ b/clients/client-s3tables/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3TablesClientConfig } from "./S3TablesClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { S3TablesClientConfig } from "./S3TablesClient"; /** * @internal diff --git a/clients/client-s3tables/src/runtimeExtensions.ts b/clients/client-s3tables/src/runtimeExtensions.ts index 862d8ca989852..a9d7a15b0be98 100644 --- a/clients/client-s3tables/src/runtimeExtensions.ts +++ b/clients/client-s3tables/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { S3TablesExtensionConfiguration } from "./extensionConfiguration"; +import type { S3TablesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-s3tables/src/schemas/schemas_0.ts b/clients/client-s3tables/src/schemas/schemas_0.ts index 92759b1931f58..1384e03daf057 100644 --- a/clients/client-s3tables/src/schemas/schemas_0.ts +++ b/clients/client-s3tables/src/schemas/schemas_0.ts @@ -191,7 +191,7 @@ const n0 = "com.amazonaws.s3tables"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-s3vectors/package.json b/clients/client-s3vectors/package.json index d5ba146640be4..5345e4947b4dd 100644 --- a/clients/client-s3vectors/package.json +++ b/clients/client-s3vectors/package.json @@ -34,26 +34,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-s3vectors/src/S3Vectors.ts b/clients/client-s3vectors/src/S3Vectors.ts index 1c5cb5391ce49..b76bf68bea53e 100644 --- a/clients/client-s3vectors/src/S3Vectors.ts +++ b/clients/client-s3vectors/src/S3Vectors.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateIndexCommand, CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand"; import { @@ -54,7 +54,7 @@ import { QueryVectorsCommandInput, QueryVectorsCommandOutput, } from "./commands/QueryVectorsCommand"; -import { S3VectorsClient, S3VectorsClientConfig } from "./S3VectorsClient"; +import { S3VectorsClient } from "./S3VectorsClient"; const commands = { CreateIndexCommand, diff --git a/clients/client-s3vectors/src/S3VectorsClient.ts b/clients/client-s3vectors/src/S3VectorsClient.ts index ac9d9b6c097a7..9ff188bb520ed 100644 --- a/clients/client-s3vectors/src/S3VectorsClient.ts +++ b/clients/client-s3vectors/src/S3VectorsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultS3VectorsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand"; @@ -89,7 +98,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-s3vectors/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-s3vectors/src/auth/httpAuthExtensionConfiguration.ts index ed6318bae20c7..ffd8cf7d7241e 100644 --- a/clients/client-s3vectors/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-s3vectors/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { S3VectorsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { S3VectorsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-s3vectors/src/auth/httpAuthSchemeProvider.ts b/clients/client-s3vectors/src/auth/httpAuthSchemeProvider.ts index 2f67b889bc789..0267dd2aeff9c 100644 --- a/clients/client-s3vectors/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-s3vectors/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { S3VectorsClientConfig, S3VectorsClientResolvedConfig } from "../S3VectorsClient"; +import { type S3VectorsClientResolvedConfig, S3VectorsClientConfig } from "../S3VectorsClient"; /** * @internal diff --git a/clients/client-s3vectors/src/commands/CreateIndexCommand.ts b/clients/client-s3vectors/src/commands/CreateIndexCommand.ts index a8ecb1fae98ab..716515ff6707d 100644 --- a/clients/client-s3vectors/src/commands/CreateIndexCommand.ts +++ b/clients/client-s3vectors/src/commands/CreateIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIndexInput, CreateIndexOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { CreateIndexInput, CreateIndexOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { CreateIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/CreateVectorBucketCommand.ts b/clients/client-s3vectors/src/commands/CreateVectorBucketCommand.ts index b22dfe07e3281..6b15bdaa365be 100644 --- a/clients/client-s3vectors/src/commands/CreateVectorBucketCommand.ts +++ b/clients/client-s3vectors/src/commands/CreateVectorBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVectorBucketInput, CreateVectorBucketOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { CreateVectorBucketInput, CreateVectorBucketOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { CreateVectorBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/DeleteIndexCommand.ts b/clients/client-s3vectors/src/commands/DeleteIndexCommand.ts index 4465c6c4aee6e..601973a08dc8b 100644 --- a/clients/client-s3vectors/src/commands/DeleteIndexCommand.ts +++ b/clients/client-s3vectors/src/commands/DeleteIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIndexInput, DeleteIndexOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { DeleteIndexInput, DeleteIndexOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { DeleteIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/DeleteVectorBucketCommand.ts b/clients/client-s3vectors/src/commands/DeleteVectorBucketCommand.ts index b01b228f63c55..98fb876885787 100644 --- a/clients/client-s3vectors/src/commands/DeleteVectorBucketCommand.ts +++ b/clients/client-s3vectors/src/commands/DeleteVectorBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVectorBucketInput, DeleteVectorBucketOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { DeleteVectorBucketInput, DeleteVectorBucketOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { DeleteVectorBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/DeleteVectorBucketPolicyCommand.ts b/clients/client-s3vectors/src/commands/DeleteVectorBucketPolicyCommand.ts index eb14ade755a05..785df1ac7cb79 100644 --- a/clients/client-s3vectors/src/commands/DeleteVectorBucketPolicyCommand.ts +++ b/clients/client-s3vectors/src/commands/DeleteVectorBucketPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVectorBucketPolicyInput, DeleteVectorBucketPolicyOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { DeleteVectorBucketPolicyInput, DeleteVectorBucketPolicyOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { DeleteVectorBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/DeleteVectorsCommand.ts b/clients/client-s3vectors/src/commands/DeleteVectorsCommand.ts index 2a734b751468d..aba470825bf6d 100644 --- a/clients/client-s3vectors/src/commands/DeleteVectorsCommand.ts +++ b/clients/client-s3vectors/src/commands/DeleteVectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVectorsInput, DeleteVectorsOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { DeleteVectorsInput, DeleteVectorsOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { DeleteVectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/GetIndexCommand.ts b/clients/client-s3vectors/src/commands/GetIndexCommand.ts index 5f1900638468f..69da6e33c6c23 100644 --- a/clients/client-s3vectors/src/commands/GetIndexCommand.ts +++ b/clients/client-s3vectors/src/commands/GetIndexCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIndexInput, GetIndexOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { GetIndexInput, GetIndexOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { GetIndex } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/GetVectorBucketCommand.ts b/clients/client-s3vectors/src/commands/GetVectorBucketCommand.ts index 538d30c974311..51fd3312e5733 100644 --- a/clients/client-s3vectors/src/commands/GetVectorBucketCommand.ts +++ b/clients/client-s3vectors/src/commands/GetVectorBucketCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVectorBucketInput, GetVectorBucketOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { GetVectorBucketInput, GetVectorBucketOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { GetVectorBucket } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/GetVectorBucketPolicyCommand.ts b/clients/client-s3vectors/src/commands/GetVectorBucketPolicyCommand.ts index ab0b7a1c14b97..4c0b1db714f3e 100644 --- a/clients/client-s3vectors/src/commands/GetVectorBucketPolicyCommand.ts +++ b/clients/client-s3vectors/src/commands/GetVectorBucketPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVectorBucketPolicyInput, GetVectorBucketPolicyOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { GetVectorBucketPolicyInput, GetVectorBucketPolicyOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { GetVectorBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/GetVectorsCommand.ts b/clients/client-s3vectors/src/commands/GetVectorsCommand.ts index bacd67bd68ce7..6429b557b9855 100644 --- a/clients/client-s3vectors/src/commands/GetVectorsCommand.ts +++ b/clients/client-s3vectors/src/commands/GetVectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVectorsInput, GetVectorsOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { GetVectorsInput, GetVectorsOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { GetVectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/ListIndexesCommand.ts b/clients/client-s3vectors/src/commands/ListIndexesCommand.ts index f265911b9767f..9883b9e01eec9 100644 --- a/clients/client-s3vectors/src/commands/ListIndexesCommand.ts +++ b/clients/client-s3vectors/src/commands/ListIndexesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIndexesInput, ListIndexesOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { ListIndexesInput, ListIndexesOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { ListIndexes } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/ListVectorBucketsCommand.ts b/clients/client-s3vectors/src/commands/ListVectorBucketsCommand.ts index a065bf661e96f..afc6b732ad121 100644 --- a/clients/client-s3vectors/src/commands/ListVectorBucketsCommand.ts +++ b/clients/client-s3vectors/src/commands/ListVectorBucketsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVectorBucketsInput, ListVectorBucketsOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { ListVectorBucketsInput, ListVectorBucketsOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { ListVectorBuckets } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/ListVectorsCommand.ts b/clients/client-s3vectors/src/commands/ListVectorsCommand.ts index d3c4b1bf2bd28..da7ff76afe870 100644 --- a/clients/client-s3vectors/src/commands/ListVectorsCommand.ts +++ b/clients/client-s3vectors/src/commands/ListVectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVectorsInput, ListVectorsOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { ListVectorsInput, ListVectorsOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { ListVectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/PutVectorBucketPolicyCommand.ts b/clients/client-s3vectors/src/commands/PutVectorBucketPolicyCommand.ts index c56c8929fabea..95ec90780965d 100644 --- a/clients/client-s3vectors/src/commands/PutVectorBucketPolicyCommand.ts +++ b/clients/client-s3vectors/src/commands/PutVectorBucketPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutVectorBucketPolicyInput, PutVectorBucketPolicyOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { PutVectorBucketPolicyInput, PutVectorBucketPolicyOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { PutVectorBucketPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/PutVectorsCommand.ts b/clients/client-s3vectors/src/commands/PutVectorsCommand.ts index 34adf0011f379..b9472ab5cd3fb 100644 --- a/clients/client-s3vectors/src/commands/PutVectorsCommand.ts +++ b/clients/client-s3vectors/src/commands/PutVectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutVectorsInput, PutVectorsOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { PutVectorsInput, PutVectorsOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { PutVectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/commands/QueryVectorsCommand.ts b/clients/client-s3vectors/src/commands/QueryVectorsCommand.ts index 011a910a782dd..4d5841b435fdc 100644 --- a/clients/client-s3vectors/src/commands/QueryVectorsCommand.ts +++ b/clients/client-s3vectors/src/commands/QueryVectorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryVectorsInput, QueryVectorsOutput } from "../models/models_0"; -import { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; +import type { QueryVectorsInput, QueryVectorsOutput } from "../models/models_0"; +import type { S3VectorsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3VectorsClient"; import { QueryVectors } from "../schemas/schemas_0"; /** diff --git a/clients/client-s3vectors/src/endpoint/EndpointParameters.ts b/clients/client-s3vectors/src/endpoint/EndpointParameters.ts index cf88c23acb65e..97813c570e89e 100644 --- a/clients/client-s3vectors/src/endpoint/EndpointParameters.ts +++ b/clients/client-s3vectors/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-s3vectors/src/endpoint/endpointResolver.ts b/clients/client-s3vectors/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-s3vectors/src/endpoint/endpointResolver.ts +++ b/clients/client-s3vectors/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-s3vectors/src/extensionConfiguration.ts b/clients/client-s3vectors/src/extensionConfiguration.ts index 4d902377ca3e7..3fd1d165e6065 100644 --- a/clients/client-s3vectors/src/extensionConfiguration.ts +++ b/clients/client-s3vectors/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-s3vectors/src/models/S3VectorsServiceException.ts b/clients/client-s3vectors/src/models/S3VectorsServiceException.ts index 689f28cfc8ada..ec89ee99ac0f1 100644 --- a/clients/client-s3vectors/src/models/S3VectorsServiceException.ts +++ b/clients/client-s3vectors/src/models/S3VectorsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-s3vectors/src/models/errors.ts b/clients/client-s3vectors/src/models/errors.ts index 54d2ed475d64c..44a8f1e2d5504 100644 --- a/clients/client-s3vectors/src/models/errors.ts +++ b/clients/client-s3vectors/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionField } from "./models_0"; import { S3VectorsServiceException as __BaseException } from "./S3VectorsServiceException"; diff --git a/clients/client-s3vectors/src/pagination/Interfaces.ts b/clients/client-s3vectors/src/pagination/Interfaces.ts index 668e64e8dd809..af1ff7f53d7e3 100644 --- a/clients/client-s3vectors/src/pagination/Interfaces.ts +++ b/clients/client-s3vectors/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { S3VectorsClient } from "../S3VectorsClient"; diff --git a/clients/client-s3vectors/src/pagination/ListIndexesPaginator.ts b/clients/client-s3vectors/src/pagination/ListIndexesPaginator.ts index 65fe4d374d8a5..5088def3d181f 100644 --- a/clients/client-s3vectors/src/pagination/ListIndexesPaginator.ts +++ b/clients/client-s3vectors/src/pagination/ListIndexesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIndexesCommand, ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand"; import { S3VectorsClient } from "../S3VectorsClient"; diff --git a/clients/client-s3vectors/src/pagination/ListVectorBucketsPaginator.ts b/clients/client-s3vectors/src/pagination/ListVectorBucketsPaginator.ts index 2ab1af3f9a246..fbb792d4791c0 100644 --- a/clients/client-s3vectors/src/pagination/ListVectorBucketsPaginator.ts +++ b/clients/client-s3vectors/src/pagination/ListVectorBucketsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVectorBucketsCommand, diff --git a/clients/client-s3vectors/src/pagination/ListVectorsPaginator.ts b/clients/client-s3vectors/src/pagination/ListVectorsPaginator.ts index 4fd80e742c4cb..6d0714a91cbc9 100644 --- a/clients/client-s3vectors/src/pagination/ListVectorsPaginator.ts +++ b/clients/client-s3vectors/src/pagination/ListVectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVectorsCommand, ListVectorsCommandInput, ListVectorsCommandOutput } from "../commands/ListVectorsCommand"; import { S3VectorsClient } from "../S3VectorsClient"; diff --git a/clients/client-s3vectors/src/runtimeConfig.browser.ts b/clients/client-s3vectors/src/runtimeConfig.browser.ts index ca98d7a6ef008..1ae21fc3040c7 100644 --- a/clients/client-s3vectors/src/runtimeConfig.browser.ts +++ b/clients/client-s3vectors/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3VectorsClientConfig } from "./S3VectorsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { S3VectorsClientConfig } from "./S3VectorsClient"; /** * @internal diff --git a/clients/client-s3vectors/src/runtimeConfig.native.ts b/clients/client-s3vectors/src/runtimeConfig.native.ts index dbf7421dd9a48..11cdf229f6d78 100644 --- a/clients/client-s3vectors/src/runtimeConfig.native.ts +++ b/clients/client-s3vectors/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { S3VectorsClientConfig } from "./S3VectorsClient"; +import type { S3VectorsClientConfig } from "./S3VectorsClient"; /** * @internal diff --git a/clients/client-s3vectors/src/runtimeConfig.shared.ts b/clients/client-s3vectors/src/runtimeConfig.shared.ts index b6cc0e1513992..fbcb42c81ae56 100644 --- a/clients/client-s3vectors/src/runtimeConfig.shared.ts +++ b/clients/client-s3vectors/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultS3VectorsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { S3VectorsClientConfig } from "./S3VectorsClient"; +import type { S3VectorsClientConfig } from "./S3VectorsClient"; /** * @internal diff --git a/clients/client-s3vectors/src/runtimeConfig.ts b/clients/client-s3vectors/src/runtimeConfig.ts index 2a000c341e284..8620124d1038e 100644 --- a/clients/client-s3vectors/src/runtimeConfig.ts +++ b/clients/client-s3vectors/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { S3VectorsClientConfig } from "./S3VectorsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { S3VectorsClientConfig } from "./S3VectorsClient"; /** * @internal diff --git a/clients/client-s3vectors/src/runtimeExtensions.ts b/clients/client-s3vectors/src/runtimeExtensions.ts index 1167f2872b6d2..55a80568e27b4 100644 --- a/clients/client-s3vectors/src/runtimeExtensions.ts +++ b/clients/client-s3vectors/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { S3VectorsExtensionConfiguration } from "./extensionConfiguration"; +import type { S3VectorsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-s3vectors/src/schemas/schemas_0.ts b/clients/client-s3vectors/src/schemas/schemas_0.ts index 450974856da06..c26345bc0f388 100644 --- a/clients/client-s3vectors/src/schemas/schemas_0.ts +++ b/clients/client-s3vectors/src/schemas/schemas_0.ts @@ -127,7 +127,7 @@ const n0 = "com.amazonaws.s3vectors"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-sagemaker-a2i-runtime/package.json b/clients/client-sagemaker-a2i-runtime/package.json index d80a1bf35e64f..98e1f9d5abd1c 100644 --- a/clients/client-sagemaker-a2i-runtime/package.json +++ b/clients/client-sagemaker-a2i-runtime/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sagemaker-a2i-runtime/src/SageMakerA2IRuntime.ts b/clients/client-sagemaker-a2i-runtime/src/SageMakerA2IRuntime.ts index efe5cc25e92f0..dfb4f63752548 100644 --- a/clients/client-sagemaker-a2i-runtime/src/SageMakerA2IRuntime.ts +++ b/clients/client-sagemaker-a2i-runtime/src/SageMakerA2IRuntime.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteHumanLoopCommand, @@ -27,7 +27,7 @@ import { StopHumanLoopCommandInput, StopHumanLoopCommandOutput, } from "./commands/StopHumanLoopCommand"; -import { SageMakerA2IRuntimeClient, SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient"; +import { SageMakerA2IRuntimeClient } from "./SageMakerA2IRuntimeClient"; const commands = { DeleteHumanLoopCommand, diff --git a/clients/client-sagemaker-a2i-runtime/src/SageMakerA2IRuntimeClient.ts b/clients/client-sagemaker-a2i-runtime/src/SageMakerA2IRuntimeClient.ts index b1afbf2f611b8..7071c6734bf1e 100644 --- a/clients/client-sagemaker-a2i-runtime/src/SageMakerA2IRuntimeClient.ts +++ b/clients/client-sagemaker-a2i-runtime/src/SageMakerA2IRuntimeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSageMakerA2IRuntimeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DeleteHumanLoopCommandInput, DeleteHumanLoopCommandOutput } from "./commands/DeleteHumanLoopCommand"; @@ -69,7 +78,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sagemaker-a2i-runtime/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sagemaker-a2i-runtime/src/auth/httpAuthExtensionConfiguration.ts index 5ab9f8b23b983..9a411810ccf6f 100644 --- a/clients/client-sagemaker-a2i-runtime/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sagemaker-a2i-runtime/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SageMakerA2IRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SageMakerA2IRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sagemaker-a2i-runtime/src/auth/httpAuthSchemeProvider.ts b/clients/client-sagemaker-a2i-runtime/src/auth/httpAuthSchemeProvider.ts index 05052fb6a636c..4d71e415c8cab 100644 --- a/clients/client-sagemaker-a2i-runtime/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sagemaker-a2i-runtime/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SageMakerA2IRuntimeClientConfig, SageMakerA2IRuntimeClientResolvedConfig } from "../SageMakerA2IRuntimeClient"; +import { + type SageMakerA2IRuntimeClientResolvedConfig, + SageMakerA2IRuntimeClientConfig, +} from "../SageMakerA2IRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/DeleteHumanLoopCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/DeleteHumanLoopCommand.ts index 6304b97cc6f24..c773ddcb6fcbe 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/DeleteHumanLoopCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/DeleteHumanLoopCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHumanLoopRequest, DeleteHumanLoopResponse } from "../models/models_0"; -import { +import type { DeleteHumanLoopRequest, DeleteHumanLoopResponse } from "../models/models_0"; +import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/DescribeHumanLoopCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/DescribeHumanLoopCommand.ts index 95cea0746c270..cd6e0232a7875 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/DescribeHumanLoopCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/DescribeHumanLoopCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHumanLoopRequest, DescribeHumanLoopResponse } from "../models/models_0"; -import { +import type { DescribeHumanLoopRequest, DescribeHumanLoopResponse } from "../models/models_0"; +import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/ListHumanLoopsCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/ListHumanLoopsCommand.ts index cd272332cd019..3f1f9e3443a3e 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/ListHumanLoopsCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/ListHumanLoopsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHumanLoopsRequest, ListHumanLoopsResponse } from "../models/models_0"; -import { +import type { ListHumanLoopsRequest, ListHumanLoopsResponse } from "../models/models_0"; +import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/StartHumanLoopCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/StartHumanLoopCommand.ts index ebecd1c8728f2..2d7d51b8939ac 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/StartHumanLoopCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/StartHumanLoopCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartHumanLoopRequest, StartHumanLoopResponse } from "../models/models_0"; -import { +import type { StartHumanLoopRequest, StartHumanLoopResponse } from "../models/models_0"; +import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-a2i-runtime/src/commands/StopHumanLoopCommand.ts b/clients/client-sagemaker-a2i-runtime/src/commands/StopHumanLoopCommand.ts index 1bd4a590f72ad..e54526b97cd2d 100644 --- a/clients/client-sagemaker-a2i-runtime/src/commands/StopHumanLoopCommand.ts +++ b/clients/client-sagemaker-a2i-runtime/src/commands/StopHumanLoopCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopHumanLoopRequest, StopHumanLoopResponse } from "../models/models_0"; -import { +import type { StopHumanLoopRequest, StopHumanLoopResponse } from "../models/models_0"; +import type { SageMakerA2IRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-a2i-runtime/src/endpoint/EndpointParameters.ts b/clients/client-sagemaker-a2i-runtime/src/endpoint/EndpointParameters.ts index c5d65476a254a..677cab51ac8b2 100644 --- a/clients/client-sagemaker-a2i-runtime/src/endpoint/EndpointParameters.ts +++ b/clients/client-sagemaker-a2i-runtime/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sagemaker-a2i-runtime/src/endpoint/endpointResolver.ts b/clients/client-sagemaker-a2i-runtime/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sagemaker-a2i-runtime/src/endpoint/endpointResolver.ts +++ b/clients/client-sagemaker-a2i-runtime/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sagemaker-a2i-runtime/src/extensionConfiguration.ts b/clients/client-sagemaker-a2i-runtime/src/extensionConfiguration.ts index 65fa9bb76cbff..1d78f46b72b01 100644 --- a/clients/client-sagemaker-a2i-runtime/src/extensionConfiguration.ts +++ b/clients/client-sagemaker-a2i-runtime/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sagemaker-a2i-runtime/src/models/SageMakerA2IRuntimeServiceException.ts b/clients/client-sagemaker-a2i-runtime/src/models/SageMakerA2IRuntimeServiceException.ts index 15f8a1f7e5122..5558e27a4cf6a 100644 --- a/clients/client-sagemaker-a2i-runtime/src/models/SageMakerA2IRuntimeServiceException.ts +++ b/clients/client-sagemaker-a2i-runtime/src/models/SageMakerA2IRuntimeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sagemaker-a2i-runtime/src/models/errors.ts b/clients/client-sagemaker-a2i-runtime/src/models/errors.ts index 7737db9a45efa..8c051543eb5f5 100644 --- a/clients/client-sagemaker-a2i-runtime/src/models/errors.ts +++ b/clients/client-sagemaker-a2i-runtime/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SageMakerA2IRuntimeServiceException as __BaseException } from "./SageMakerA2IRuntimeServiceException"; diff --git a/clients/client-sagemaker-a2i-runtime/src/pagination/Interfaces.ts b/clients/client-sagemaker-a2i-runtime/src/pagination/Interfaces.ts index 308b9d3e4318b..64eb0c8541ade 100644 --- a/clients/client-sagemaker-a2i-runtime/src/pagination/Interfaces.ts +++ b/clients/client-sagemaker-a2i-runtime/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SageMakerA2IRuntimeClient } from "../SageMakerA2IRuntimeClient"; diff --git a/clients/client-sagemaker-a2i-runtime/src/pagination/ListHumanLoopsPaginator.ts b/clients/client-sagemaker-a2i-runtime/src/pagination/ListHumanLoopsPaginator.ts index 77c31e5ffa088..2e96e0dea7512 100644 --- a/clients/client-sagemaker-a2i-runtime/src/pagination/ListHumanLoopsPaginator.ts +++ b/clients/client-sagemaker-a2i-runtime/src/pagination/ListHumanLoopsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHumanLoopsCommand, diff --git a/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.browser.ts b/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.browser.ts index c269742230a0a..4650e1c5d5409 100644 --- a/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.browser.ts +++ b/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.native.ts b/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.native.ts index 48f6a803d0f8b..d80663e1747a9 100644 --- a/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.native.ts +++ b/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient"; +import type { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.shared.ts b/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.shared.ts index 0658415d5b3e2..ad8e3d0ac6111 100644 --- a/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.shared.ts +++ b/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSageMakerA2IRuntimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient"; +import type { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.ts b/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.ts index a53e9f45e7c1d..7cd4a322d6ad1 100644 --- a/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.ts +++ b/clients/client-sagemaker-a2i-runtime/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SageMakerA2IRuntimeClientConfig } from "./SageMakerA2IRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-a2i-runtime/src/runtimeExtensions.ts b/clients/client-sagemaker-a2i-runtime/src/runtimeExtensions.ts index a2dcc88713346..11220657c91e3 100644 --- a/clients/client-sagemaker-a2i-runtime/src/runtimeExtensions.ts +++ b/clients/client-sagemaker-a2i-runtime/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SageMakerA2IRuntimeExtensionConfiguration } from "./extensionConfiguration"; +import type { SageMakerA2IRuntimeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sagemaker-a2i-runtime/src/schemas/schemas_0.ts b/clients/client-sagemaker-a2i-runtime/src/schemas/schemas_0.ts index 611c87913a7c7..33a2f56acdee8 100644 --- a/clients/client-sagemaker-a2i-runtime/src/schemas/schemas_0.ts +++ b/clients/client-sagemaker-a2i-runtime/src/schemas/schemas_0.ts @@ -52,7 +52,7 @@ const n0 = "com.amazonaws.sagemakera2iruntime"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { ConflictException as __ConflictException, diff --git a/clients/client-sagemaker-edge/package.json b/clients/client-sagemaker-edge/package.json index 4a9792d68c182..e482853224b67 100644 --- a/clients/client-sagemaker-edge/package.json +++ b/clients/client-sagemaker-edge/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sagemaker-edge/src/SagemakerEdge.ts b/clients/client-sagemaker-edge/src/SagemakerEdge.ts index 276e89d85a303..23ecc35014156 100644 --- a/clients/client-sagemaker-edge/src/SagemakerEdge.ts +++ b/clients/client-sagemaker-edge/src/SagemakerEdge.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetDeploymentsCommand, @@ -17,7 +17,7 @@ import { SendHeartbeatCommandInput, SendHeartbeatCommandOutput, } from "./commands/SendHeartbeatCommand"; -import { SagemakerEdgeClient, SagemakerEdgeClientConfig } from "./SagemakerEdgeClient"; +import { SagemakerEdgeClient } from "./SagemakerEdgeClient"; const commands = { GetDeploymentsCommand, diff --git a/clients/client-sagemaker-edge/src/SagemakerEdgeClient.ts b/clients/client-sagemaker-edge/src/SagemakerEdgeClient.ts index c9f6b9059317e..7441149d7c40b 100644 --- a/clients/client-sagemaker-edge/src/SagemakerEdgeClient.ts +++ b/clients/client-sagemaker-edge/src/SagemakerEdgeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSagemakerEdgeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetDeploymentsCommandInput, GetDeploymentsCommandOutput } from "./commands/GetDeploymentsCommand"; @@ -70,7 +79,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sagemaker-edge/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sagemaker-edge/src/auth/httpAuthExtensionConfiguration.ts index d88a55eeceec4..9153d4681ed0a 100644 --- a/clients/client-sagemaker-edge/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sagemaker-edge/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SagemakerEdgeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SagemakerEdgeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sagemaker-edge/src/auth/httpAuthSchemeProvider.ts b/clients/client-sagemaker-edge/src/auth/httpAuthSchemeProvider.ts index 0808f7c30840d..be31547579dde 100644 --- a/clients/client-sagemaker-edge/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sagemaker-edge/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SagemakerEdgeClientConfig, SagemakerEdgeClientResolvedConfig } from "../SagemakerEdgeClient"; +import { type SagemakerEdgeClientResolvedConfig, SagemakerEdgeClientConfig } from "../SagemakerEdgeClient"; /** * @internal diff --git a/clients/client-sagemaker-edge/src/commands/GetDeploymentsCommand.ts b/clients/client-sagemaker-edge/src/commands/GetDeploymentsCommand.ts index 94e8c71d6a8bb..f872be2cc1825 100644 --- a/clients/client-sagemaker-edge/src/commands/GetDeploymentsCommand.ts +++ b/clients/client-sagemaker-edge/src/commands/GetDeploymentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeploymentsRequest, GetDeploymentsResult } from "../models/models_0"; -import { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient"; +import type { GetDeploymentsRequest, GetDeploymentsResult } from "../models/models_0"; +import type { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient"; import { GetDeployments } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker-edge/src/commands/GetDeviceRegistrationCommand.ts b/clients/client-sagemaker-edge/src/commands/GetDeviceRegistrationCommand.ts index e1f4e6b9cf244..5095ebee49d73 100644 --- a/clients/client-sagemaker-edge/src/commands/GetDeviceRegistrationCommand.ts +++ b/clients/client-sagemaker-edge/src/commands/GetDeviceRegistrationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeviceRegistrationRequest, GetDeviceRegistrationResult } from "../models/models_0"; -import { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient"; +import type { GetDeviceRegistrationRequest, GetDeviceRegistrationResult } from "../models/models_0"; +import type { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient"; import { GetDeviceRegistration } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker-edge/src/commands/SendHeartbeatCommand.ts b/clients/client-sagemaker-edge/src/commands/SendHeartbeatCommand.ts index 86b90803306ef..384c9211fd8d4 100644 --- a/clients/client-sagemaker-edge/src/commands/SendHeartbeatCommand.ts +++ b/clients/client-sagemaker-edge/src/commands/SendHeartbeatCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendHeartbeatRequest } from "../models/models_0"; -import { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient"; +import type { SendHeartbeatRequest } from "../models/models_0"; +import type { SagemakerEdgeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SagemakerEdgeClient"; import { SendHeartbeat } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker-edge/src/endpoint/EndpointParameters.ts b/clients/client-sagemaker-edge/src/endpoint/EndpointParameters.ts index c5d65476a254a..677cab51ac8b2 100644 --- a/clients/client-sagemaker-edge/src/endpoint/EndpointParameters.ts +++ b/clients/client-sagemaker-edge/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sagemaker-edge/src/endpoint/endpointResolver.ts b/clients/client-sagemaker-edge/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sagemaker-edge/src/endpoint/endpointResolver.ts +++ b/clients/client-sagemaker-edge/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sagemaker-edge/src/extensionConfiguration.ts b/clients/client-sagemaker-edge/src/extensionConfiguration.ts index 197800b020728..250e2e8a16081 100644 --- a/clients/client-sagemaker-edge/src/extensionConfiguration.ts +++ b/clients/client-sagemaker-edge/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sagemaker-edge/src/models/SagemakerEdgeServiceException.ts b/clients/client-sagemaker-edge/src/models/SagemakerEdgeServiceException.ts index 8aa5edd119e87..8235f116969e7 100644 --- a/clients/client-sagemaker-edge/src/models/SagemakerEdgeServiceException.ts +++ b/clients/client-sagemaker-edge/src/models/SagemakerEdgeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sagemaker-edge/src/models/errors.ts b/clients/client-sagemaker-edge/src/models/errors.ts index 8a952b70e8952..c231548fab6be 100644 --- a/clients/client-sagemaker-edge/src/models/errors.ts +++ b/clients/client-sagemaker-edge/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SagemakerEdgeServiceException as __BaseException } from "./SagemakerEdgeServiceException"; diff --git a/clients/client-sagemaker-edge/src/runtimeConfig.browser.ts b/clients/client-sagemaker-edge/src/runtimeConfig.browser.ts index 20abe9dc3ab8b..94022734d386e 100644 --- a/clients/client-sagemaker-edge/src/runtimeConfig.browser.ts +++ b/clients/client-sagemaker-edge/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SagemakerEdgeClientConfig } from "./SagemakerEdgeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SagemakerEdgeClientConfig } from "./SagemakerEdgeClient"; /** * @internal diff --git a/clients/client-sagemaker-edge/src/runtimeConfig.native.ts b/clients/client-sagemaker-edge/src/runtimeConfig.native.ts index 30b4bad598d33..77531a9daefda 100644 --- a/clients/client-sagemaker-edge/src/runtimeConfig.native.ts +++ b/clients/client-sagemaker-edge/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SagemakerEdgeClientConfig } from "./SagemakerEdgeClient"; +import type { SagemakerEdgeClientConfig } from "./SagemakerEdgeClient"; /** * @internal diff --git a/clients/client-sagemaker-edge/src/runtimeConfig.shared.ts b/clients/client-sagemaker-edge/src/runtimeConfig.shared.ts index d96cd58558c3d..aeb9a989b41b7 100644 --- a/clients/client-sagemaker-edge/src/runtimeConfig.shared.ts +++ b/clients/client-sagemaker-edge/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSagemakerEdgeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SagemakerEdgeClientConfig } from "./SagemakerEdgeClient"; +import type { SagemakerEdgeClientConfig } from "./SagemakerEdgeClient"; /** * @internal diff --git a/clients/client-sagemaker-edge/src/runtimeConfig.ts b/clients/client-sagemaker-edge/src/runtimeConfig.ts index b947da470dab3..bec0ac5b205d4 100644 --- a/clients/client-sagemaker-edge/src/runtimeConfig.ts +++ b/clients/client-sagemaker-edge/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SagemakerEdgeClientConfig } from "./SagemakerEdgeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SagemakerEdgeClientConfig } from "./SagemakerEdgeClient"; /** * @internal diff --git a/clients/client-sagemaker-edge/src/runtimeExtensions.ts b/clients/client-sagemaker-edge/src/runtimeExtensions.ts index 435d9933eaeb2..257629a6a7932 100644 --- a/clients/client-sagemaker-edge/src/runtimeExtensions.ts +++ b/clients/client-sagemaker-edge/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SagemakerEdgeExtensionConfiguration } from "./extensionConfiguration"; +import type { SagemakerEdgeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sagemaker-edge/src/schemas/schemas_0.ts b/clients/client-sagemaker-edge/src/schemas/schemas_0.ts index 429ca934cad30..f8b7bd1473a5e 100644 --- a/clients/client-sagemaker-edge/src/schemas/schemas_0.ts +++ b/clients/client-sagemaker-edge/src/schemas/schemas_0.ts @@ -59,7 +59,7 @@ const n0 = "com.amazonaws.sagemakeredge"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { InternalServiceException as __InternalServiceException } from "../models/errors"; import { SagemakerEdgeServiceException as __SagemakerEdgeServiceException } from "../models/SagemakerEdgeServiceException"; diff --git a/clients/client-sagemaker-featurestore-runtime/package.json b/clients/client-sagemaker-featurestore-runtime/package.json index bb065f4aa3e9b..30a8bc8edddb0 100644 --- a/clients/client-sagemaker-featurestore-runtime/package.json +++ b/clients/client-sagemaker-featurestore-runtime/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sagemaker-featurestore-runtime/src/SageMakerFeatureStoreRuntime.ts b/clients/client-sagemaker-featurestore-runtime/src/SageMakerFeatureStoreRuntime.ts index 37c2a9b48b8eb..e5ce2df04016a 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/SageMakerFeatureStoreRuntime.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/SageMakerFeatureStoreRuntime.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetRecordCommand, @@ -14,10 +14,7 @@ import { } from "./commands/DeleteRecordCommand"; import { GetRecordCommand, GetRecordCommandInput, GetRecordCommandOutput } from "./commands/GetRecordCommand"; import { PutRecordCommand, PutRecordCommandInput, PutRecordCommandOutput } from "./commands/PutRecordCommand"; -import { - SageMakerFeatureStoreRuntimeClient, - SageMakerFeatureStoreRuntimeClientConfig, -} from "./SageMakerFeatureStoreRuntimeClient"; +import { SageMakerFeatureStoreRuntimeClient } from "./SageMakerFeatureStoreRuntimeClient"; const commands = { BatchGetRecordCommand, diff --git a/clients/client-sagemaker-featurestore-runtime/src/SageMakerFeatureStoreRuntimeClient.ts b/clients/client-sagemaker-featurestore-runtime/src/SageMakerFeatureStoreRuntimeClient.ts index d0cb5fce2e3ff..8c9c69235fd68 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/SageMakerFeatureStoreRuntimeClient.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/SageMakerFeatureStoreRuntimeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSageMakerFeatureStoreRuntimeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetRecordCommandInput, BatchGetRecordCommandOutput } from "./commands/BatchGetRecordCommand"; @@ -68,7 +77,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sagemaker-featurestore-runtime/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sagemaker-featurestore-runtime/src/auth/httpAuthExtensionConfiguration.ts index 321526dcfa214..8b5d6156db410 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SageMakerFeatureStoreRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SageMakerFeatureStoreRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sagemaker-featurestore-runtime/src/auth/httpAuthSchemeProvider.ts b/clients/client-sagemaker-featurestore-runtime/src/auth/httpAuthSchemeProvider.ts index d127082b50eb8..ef23abb885776 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type SageMakerFeatureStoreRuntimeClientResolvedConfig, SageMakerFeatureStoreRuntimeClientConfig, - SageMakerFeatureStoreRuntimeClientResolvedConfig, } from "../SageMakerFeatureStoreRuntimeClient"; /** diff --git a/clients/client-sagemaker-featurestore-runtime/src/commands/BatchGetRecordCommand.ts b/clients/client-sagemaker-featurestore-runtime/src/commands/BatchGetRecordCommand.ts index 9d9be1969d35b..b60d242453920 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/commands/BatchGetRecordCommand.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/commands/BatchGetRecordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetRecordRequest, BatchGetRecordResponse } from "../models/models_0"; -import { +import type { BatchGetRecordRequest, BatchGetRecordResponse } from "../models/models_0"; +import type { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-featurestore-runtime/src/commands/DeleteRecordCommand.ts b/clients/client-sagemaker-featurestore-runtime/src/commands/DeleteRecordCommand.ts index c55c8e3752741..12997c3254a6d 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/commands/DeleteRecordCommand.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/commands/DeleteRecordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRecordRequest } from "../models/models_0"; -import { +import type { DeleteRecordRequest } from "../models/models_0"; +import type { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-featurestore-runtime/src/commands/GetRecordCommand.ts b/clients/client-sagemaker-featurestore-runtime/src/commands/GetRecordCommand.ts index 6ab7066b8a10c..2b2960ab28810 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/commands/GetRecordCommand.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/commands/GetRecordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecordRequest, GetRecordResponse } from "../models/models_0"; -import { +import type { GetRecordRequest, GetRecordResponse } from "../models/models_0"; +import type { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-featurestore-runtime/src/commands/PutRecordCommand.ts b/clients/client-sagemaker-featurestore-runtime/src/commands/PutRecordCommand.ts index 8b59ed8b5a7f1..8818dd3083e7f 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/commands/PutRecordCommand.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/commands/PutRecordCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRecordRequest } from "../models/models_0"; -import { +import type { PutRecordRequest } from "../models/models_0"; +import type { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-featurestore-runtime/src/endpoint/EndpointParameters.ts b/clients/client-sagemaker-featurestore-runtime/src/endpoint/EndpointParameters.ts index c5d65476a254a..677cab51ac8b2 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/endpoint/EndpointParameters.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sagemaker-featurestore-runtime/src/endpoint/endpointResolver.ts b/clients/client-sagemaker-featurestore-runtime/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/endpoint/endpointResolver.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sagemaker-featurestore-runtime/src/extensionConfiguration.ts b/clients/client-sagemaker-featurestore-runtime/src/extensionConfiguration.ts index 6dc31705f8b52..013d220a97327 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/extensionConfiguration.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sagemaker-featurestore-runtime/src/models/SageMakerFeatureStoreRuntimeServiceException.ts b/clients/client-sagemaker-featurestore-runtime/src/models/SageMakerFeatureStoreRuntimeServiceException.ts index 8bbefb0c0e749..d7276ef29e1d5 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/models/SageMakerFeatureStoreRuntimeServiceException.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/models/SageMakerFeatureStoreRuntimeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sagemaker-featurestore-runtime/src/models/errors.ts b/clients/client-sagemaker-featurestore-runtime/src/models/errors.ts index 4907e5601973d..0e403d7360438 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/models/errors.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException"; diff --git a/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.browser.ts b/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.browser.ts index c41d85fd91687..3f32531f26f7e 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.browser.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.native.ts b/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.native.ts index c913abc335dac..2438e994931ba 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.native.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient"; +import type { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.shared.ts b/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.shared.ts index 7ce4a1e6b9093..117780eb96586 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.shared.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSageMakerFeatureStoreRuntimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient"; +import type { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.ts b/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.ts index 79876b3fd723f..38e8abb79b0ff 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-featurestore-runtime/src/runtimeExtensions.ts b/clients/client-sagemaker-featurestore-runtime/src/runtimeExtensions.ts index bbf938bdb1b9b..0932420443c5f 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/runtimeExtensions.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SageMakerFeatureStoreRuntimeExtensionConfiguration } from "./extensionConfiguration"; +import type { SageMakerFeatureStoreRuntimeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sagemaker-featurestore-runtime/src/schemas/schemas_0.ts b/clients/client-sagemaker-featurestore-runtime/src/schemas/schemas_0.ts index 61d06831cd63d..ffecd3952fbab 100644 --- a/clients/client-sagemaker-featurestore-runtime/src/schemas/schemas_0.ts +++ b/clients/client-sagemaker-featurestore-runtime/src/schemas/schemas_0.ts @@ -54,7 +54,7 @@ const n0 = "com.amazonaws.sagemakerfeaturestoreruntime"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessForbidden as __AccessForbidden, diff --git a/clients/client-sagemaker-geospatial/package.json b/clients/client-sagemaker-geospatial/package.json index 3c2e46df607f5..11957fa97d2bc 100644 --- a/clients/client-sagemaker-geospatial/package.json +++ b/clients/client-sagemaker-geospatial/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sagemaker-geospatial/src/SageMakerGeospatial.ts b/clients/client-sagemaker-geospatial/src/SageMakerGeospatial.ts index 5d250ae107a49..ca24a2e1f4c4b 100644 --- a/clients/client-sagemaker-geospatial/src/SageMakerGeospatial.ts +++ b/clients/client-sagemaker-geospatial/src/SageMakerGeospatial.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteEarthObservationJobCommand, @@ -89,7 +89,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { SageMakerGeospatialClient, SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient"; +import { SageMakerGeospatialClient } from "./SageMakerGeospatialClient"; const commands = { DeleteEarthObservationJobCommand, diff --git a/clients/client-sagemaker-geospatial/src/SageMakerGeospatialClient.ts b/clients/client-sagemaker-geospatial/src/SageMakerGeospatialClient.ts index 97a7a5ffcccc5..f80fefa688325 100644 --- a/clients/client-sagemaker-geospatial/src/SageMakerGeospatialClient.ts +++ b/clients/client-sagemaker-geospatial/src/SageMakerGeospatialClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSageMakerGeospatialHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -132,7 +141,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sagemaker-geospatial/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sagemaker-geospatial/src/auth/httpAuthExtensionConfiguration.ts index b03b8201d4451..a63a6bf591bba 100644 --- a/clients/client-sagemaker-geospatial/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sagemaker-geospatial/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SageMakerGeospatialHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SageMakerGeospatialHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sagemaker-geospatial/src/auth/httpAuthSchemeProvider.ts b/clients/client-sagemaker-geospatial/src/auth/httpAuthSchemeProvider.ts index 2ae71ee1d1a11..c7f6dc410a4f9 100644 --- a/clients/client-sagemaker-geospatial/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sagemaker-geospatial/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SageMakerGeospatialClientConfig, SageMakerGeospatialClientResolvedConfig } from "../SageMakerGeospatialClient"; +import { + type SageMakerGeospatialClientResolvedConfig, + SageMakerGeospatialClientConfig, +} from "../SageMakerGeospatialClient"; /** * @internal diff --git a/clients/client-sagemaker-geospatial/src/commands/DeleteEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/DeleteEarthObservationJobCommand.ts index 79fe632a95613..7cb7675b0a836 100644 --- a/clients/client-sagemaker-geospatial/src/commands/DeleteEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/DeleteEarthObservationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEarthObservationJobInput, DeleteEarthObservationJobOutput } from "../models/models_0"; -import { +import type { DeleteEarthObservationJobInput, DeleteEarthObservationJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/DeleteVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/DeleteVectorEnrichmentJobCommand.ts index b9f1407e34a34..b84329640169d 100644 --- a/clients/client-sagemaker-geospatial/src/commands/DeleteVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/DeleteVectorEnrichmentJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVectorEnrichmentJobInput, DeleteVectorEnrichmentJobOutput } from "../models/models_0"; -import { +import type { DeleteVectorEnrichmentJobInput, DeleteVectorEnrichmentJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/ExportEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ExportEarthObservationJobCommand.ts index 705d648396545..2fc63693ef5ba 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ExportEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ExportEarthObservationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportEarthObservationJobInput, ExportEarthObservationJobOutput } from "../models/models_0"; -import { +import type { ExportEarthObservationJobInput, ExportEarthObservationJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/ExportVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ExportVectorEnrichmentJobCommand.ts index 7c6cf0333c57c..af5bb76ffd956 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ExportVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ExportVectorEnrichmentJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportVectorEnrichmentJobInput, ExportVectorEnrichmentJobOutput } from "../models/models_0"; -import { +import type { ExportVectorEnrichmentJobInput, ExportVectorEnrichmentJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/GetEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/GetEarthObservationJobCommand.ts index 0316df7f94156..d118542b89890 100644 --- a/clients/client-sagemaker-geospatial/src/commands/GetEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/GetEarthObservationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEarthObservationJobInput, GetEarthObservationJobOutput } from "../models/models_0"; -import { +import type { GetEarthObservationJobInput, GetEarthObservationJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/GetRasterDataCollectionCommand.ts b/clients/client-sagemaker-geospatial/src/commands/GetRasterDataCollectionCommand.ts index 9b4e0014b770a..c1ab5c15ba78b 100644 --- a/clients/client-sagemaker-geospatial/src/commands/GetRasterDataCollectionCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/GetRasterDataCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRasterDataCollectionInput, GetRasterDataCollectionOutput } from "../models/models_0"; -import { +import type { GetRasterDataCollectionInput, GetRasterDataCollectionOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/GetTileCommand.ts b/clients/client-sagemaker-geospatial/src/commands/GetTileCommand.ts index 607c133a71f53..91a143aebebfa 100644 --- a/clients/client-sagemaker-geospatial/src/commands/GetTileCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/GetTileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTileInput, GetTileOutput } from "../models/models_0"; -import { +import { type GetTileInput, GetTileOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/GetVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/GetVectorEnrichmentJobCommand.ts index 7040664c20046..be0f4c44780f3 100644 --- a/clients/client-sagemaker-geospatial/src/commands/GetVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/GetVectorEnrichmentJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVectorEnrichmentJobInput, GetVectorEnrichmentJobOutput } from "../models/models_0"; -import { +import type { GetVectorEnrichmentJobInput, GetVectorEnrichmentJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/ListEarthObservationJobsCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ListEarthObservationJobsCommand.ts index d1ab5332e608d..e4312008422c6 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ListEarthObservationJobsCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ListEarthObservationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEarthObservationJobInput, ListEarthObservationJobOutput } from "../models/models_0"; -import { +import type { ListEarthObservationJobInput, ListEarthObservationJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/ListRasterDataCollectionsCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ListRasterDataCollectionsCommand.ts index c531531543d28..34dcad9ec0644 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ListRasterDataCollectionsCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ListRasterDataCollectionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRasterDataCollectionsInput, ListRasterDataCollectionsOutput } from "../models/models_0"; -import { +import type { ListRasterDataCollectionsInput, ListRasterDataCollectionsOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/ListTagsForResourceCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ListTagsForResourceCommand.ts index 60022317233fc..12f5309e25ba4 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/ListVectorEnrichmentJobsCommand.ts b/clients/client-sagemaker-geospatial/src/commands/ListVectorEnrichmentJobsCommand.ts index 3a0e5470258e5..4d24a5d17c7e3 100644 --- a/clients/client-sagemaker-geospatial/src/commands/ListVectorEnrichmentJobsCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/ListVectorEnrichmentJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVectorEnrichmentJobInput, ListVectorEnrichmentJobOutput } from "../models/models_0"; -import { +import type { ListVectorEnrichmentJobInput, ListVectorEnrichmentJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/SearchRasterDataCollectionCommand.ts b/clients/client-sagemaker-geospatial/src/commands/SearchRasterDataCollectionCommand.ts index e53dd0d3728a2..39768e984b829 100644 --- a/clients/client-sagemaker-geospatial/src/commands/SearchRasterDataCollectionCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/SearchRasterDataCollectionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchRasterDataCollectionInput, SearchRasterDataCollectionOutput } from "../models/models_0"; -import { +import type { SearchRasterDataCollectionInput, SearchRasterDataCollectionOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/StartEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/StartEarthObservationJobCommand.ts index 48e4bb903fe48..e1675fa70deb8 100644 --- a/clients/client-sagemaker-geospatial/src/commands/StartEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/StartEarthObservationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartEarthObservationJobInput, StartEarthObservationJobOutput } from "../models/models_0"; -import { +import type { StartEarthObservationJobInput, StartEarthObservationJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/StartVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/StartVectorEnrichmentJobCommand.ts index b7eb9af47a6ed..bd1b17fff6d52 100644 --- a/clients/client-sagemaker-geospatial/src/commands/StartVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/StartVectorEnrichmentJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartVectorEnrichmentJobInput, StartVectorEnrichmentJobOutput } from "../models/models_0"; -import { +import type { StartVectorEnrichmentJobInput, StartVectorEnrichmentJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/StopEarthObservationJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/StopEarthObservationJobCommand.ts index fbef7cff96023..cbe540b57ca43 100644 --- a/clients/client-sagemaker-geospatial/src/commands/StopEarthObservationJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/StopEarthObservationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopEarthObservationJobInput, StopEarthObservationJobOutput } from "../models/models_0"; -import { +import type { StopEarthObservationJobInput, StopEarthObservationJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/StopVectorEnrichmentJobCommand.ts b/clients/client-sagemaker-geospatial/src/commands/StopVectorEnrichmentJobCommand.ts index db26b5ec0d093..757a58bdeb9e9 100644 --- a/clients/client-sagemaker-geospatial/src/commands/StopVectorEnrichmentJobCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/StopVectorEnrichmentJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopVectorEnrichmentJobInput, StopVectorEnrichmentJobOutput } from "../models/models_0"; -import { +import type { StopVectorEnrichmentJobInput, StopVectorEnrichmentJobOutput } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/TagResourceCommand.ts b/clients/client-sagemaker-geospatial/src/commands/TagResourceCommand.ts index 1b0c9066eeef6..deae07830254e 100644 --- a/clients/client-sagemaker-geospatial/src/commands/TagResourceCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/commands/UntagResourceCommand.ts b/clients/client-sagemaker-geospatial/src/commands/UntagResourceCommand.ts index 18bc1ec49f6b2..83d66a2b641f4 100644 --- a/clients/client-sagemaker-geospatial/src/commands/UntagResourceCommand.ts +++ b/clients/client-sagemaker-geospatial/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-geospatial/src/endpoint/EndpointParameters.ts b/clients/client-sagemaker-geospatial/src/endpoint/EndpointParameters.ts index adb775e298642..44927f48ccd9c 100644 --- a/clients/client-sagemaker-geospatial/src/endpoint/EndpointParameters.ts +++ b/clients/client-sagemaker-geospatial/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sagemaker-geospatial/src/endpoint/endpointResolver.ts b/clients/client-sagemaker-geospatial/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sagemaker-geospatial/src/endpoint/endpointResolver.ts +++ b/clients/client-sagemaker-geospatial/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sagemaker-geospatial/src/extensionConfiguration.ts b/clients/client-sagemaker-geospatial/src/extensionConfiguration.ts index 8e12aa6e2ce2a..fbd17aba95cc6 100644 --- a/clients/client-sagemaker-geospatial/src/extensionConfiguration.ts +++ b/clients/client-sagemaker-geospatial/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sagemaker-geospatial/src/models/SageMakerGeospatialServiceException.ts b/clients/client-sagemaker-geospatial/src/models/SageMakerGeospatialServiceException.ts index 2a6f561525197..11e32a3759c75 100644 --- a/clients/client-sagemaker-geospatial/src/models/SageMakerGeospatialServiceException.ts +++ b/clients/client-sagemaker-geospatial/src/models/SageMakerGeospatialServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sagemaker-geospatial/src/models/errors.ts b/clients/client-sagemaker-geospatial/src/models/errors.ts index ddfbc83790299..d3e911fb450e5 100644 --- a/clients/client-sagemaker-geospatial/src/models/errors.ts +++ b/clients/client-sagemaker-geospatial/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SageMakerGeospatialServiceException as __BaseException } from "./SageMakerGeospatialServiceException"; diff --git a/clients/client-sagemaker-geospatial/src/pagination/Interfaces.ts b/clients/client-sagemaker-geospatial/src/pagination/Interfaces.ts index 1614d5ca9c03b..1a41b38380122 100644 --- a/clients/client-sagemaker-geospatial/src/pagination/Interfaces.ts +++ b/clients/client-sagemaker-geospatial/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SageMakerGeospatialClient } from "../SageMakerGeospatialClient"; diff --git a/clients/client-sagemaker-geospatial/src/pagination/ListEarthObservationJobsPaginator.ts b/clients/client-sagemaker-geospatial/src/pagination/ListEarthObservationJobsPaginator.ts index 8fdda1e1ac119..c73cb64fa96be 100644 --- a/clients/client-sagemaker-geospatial/src/pagination/ListEarthObservationJobsPaginator.ts +++ b/clients/client-sagemaker-geospatial/src/pagination/ListEarthObservationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEarthObservationJobsCommand, diff --git a/clients/client-sagemaker-geospatial/src/pagination/ListRasterDataCollectionsPaginator.ts b/clients/client-sagemaker-geospatial/src/pagination/ListRasterDataCollectionsPaginator.ts index b44d9f8bf9438..4b6233a721557 100644 --- a/clients/client-sagemaker-geospatial/src/pagination/ListRasterDataCollectionsPaginator.ts +++ b/clients/client-sagemaker-geospatial/src/pagination/ListRasterDataCollectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRasterDataCollectionsCommand, diff --git a/clients/client-sagemaker-geospatial/src/pagination/ListVectorEnrichmentJobsPaginator.ts b/clients/client-sagemaker-geospatial/src/pagination/ListVectorEnrichmentJobsPaginator.ts index f55630b6b26e4..3d590a0d36c12 100644 --- a/clients/client-sagemaker-geospatial/src/pagination/ListVectorEnrichmentJobsPaginator.ts +++ b/clients/client-sagemaker-geospatial/src/pagination/ListVectorEnrichmentJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVectorEnrichmentJobsCommand, diff --git a/clients/client-sagemaker-geospatial/src/pagination/SearchRasterDataCollectionPaginator.ts b/clients/client-sagemaker-geospatial/src/pagination/SearchRasterDataCollectionPaginator.ts index 9482e42cfe7dc..30db253c52910 100644 --- a/clients/client-sagemaker-geospatial/src/pagination/SearchRasterDataCollectionPaginator.ts +++ b/clients/client-sagemaker-geospatial/src/pagination/SearchRasterDataCollectionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchRasterDataCollectionCommand, diff --git a/clients/client-sagemaker-geospatial/src/runtimeConfig.browser.ts b/clients/client-sagemaker-geospatial/src/runtimeConfig.browser.ts index d8a9921196d09..4e7dd28d3ee92 100644 --- a/clients/client-sagemaker-geospatial/src/runtimeConfig.browser.ts +++ b/clients/client-sagemaker-geospatial/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient"; /** * @internal diff --git a/clients/client-sagemaker-geospatial/src/runtimeConfig.native.ts b/clients/client-sagemaker-geospatial/src/runtimeConfig.native.ts index 03b98ed638d85..f2d7878abd3bf 100644 --- a/clients/client-sagemaker-geospatial/src/runtimeConfig.native.ts +++ b/clients/client-sagemaker-geospatial/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient"; +import type { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient"; /** * @internal diff --git a/clients/client-sagemaker-geospatial/src/runtimeConfig.shared.ts b/clients/client-sagemaker-geospatial/src/runtimeConfig.shared.ts index 17269a87ad7f1..4ed704c61f5f9 100644 --- a/clients/client-sagemaker-geospatial/src/runtimeConfig.shared.ts +++ b/clients/client-sagemaker-geospatial/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSageMakerGeospatialHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient"; +import type { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient"; /** * @internal diff --git a/clients/client-sagemaker-geospatial/src/runtimeConfig.ts b/clients/client-sagemaker-geospatial/src/runtimeConfig.ts index 71de1af7599c4..7e7d75eb21c7f 100644 --- a/clients/client-sagemaker-geospatial/src/runtimeConfig.ts +++ b/clients/client-sagemaker-geospatial/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient"; /** * @internal diff --git a/clients/client-sagemaker-geospatial/src/runtimeExtensions.ts b/clients/client-sagemaker-geospatial/src/runtimeExtensions.ts index 7ba80d8201937..170cb424ed613 100644 --- a/clients/client-sagemaker-geospatial/src/runtimeExtensions.ts +++ b/clients/client-sagemaker-geospatial/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SageMakerGeospatialExtensionConfiguration } from "./extensionConfiguration"; +import type { SageMakerGeospatialExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sagemaker-geospatial/src/schemas/schemas_0.ts b/clients/client-sagemaker-geospatial/src/schemas/schemas_0.ts index da4cf462ad4f5..3beab5b823d8b 100644 --- a/clients/client-sagemaker-geospatial/src/schemas/schemas_0.ts +++ b/clients/client-sagemaker-geospatial/src/schemas/schemas_0.ts @@ -257,7 +257,7 @@ const n0 = "com.amazonaws.sagemakergeospatial"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-sagemaker-metrics/package.json b/clients/client-sagemaker-metrics/package.json index ffe0282a50fcc..70d197fb2dacb 100644 --- a/clients/client-sagemaker-metrics/package.json +++ b/clients/client-sagemaker-metrics/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sagemaker-metrics/src/SageMakerMetrics.ts b/clients/client-sagemaker-metrics/src/SageMakerMetrics.ts index e27cc188a275e..6c560ff8c4fb0 100644 --- a/clients/client-sagemaker-metrics/src/SageMakerMetrics.ts +++ b/clients/client-sagemaker-metrics/src/SageMakerMetrics.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetMetricsCommand, @@ -12,7 +12,7 @@ import { BatchPutMetricsCommandInput, BatchPutMetricsCommandOutput, } from "./commands/BatchPutMetricsCommand"; -import { SageMakerMetricsClient, SageMakerMetricsClientConfig } from "./SageMakerMetricsClient"; +import { SageMakerMetricsClient } from "./SageMakerMetricsClient"; const commands = { BatchGetMetricsCommand, diff --git a/clients/client-sagemaker-metrics/src/SageMakerMetricsClient.ts b/clients/client-sagemaker-metrics/src/SageMakerMetricsClient.ts index 4eff5b94d99d8..06e6728cc7cb9 100644 --- a/clients/client-sagemaker-metrics/src/SageMakerMetricsClient.ts +++ b/clients/client-sagemaker-metrics/src/SageMakerMetricsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSageMakerMetricsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetMetricsCommandInput, BatchGetMetricsCommandOutput } from "./commands/BatchGetMetricsCommand"; @@ -66,7 +75,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sagemaker-metrics/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sagemaker-metrics/src/auth/httpAuthExtensionConfiguration.ts index 6e2035422c219..1e0660e841ecd 100644 --- a/clients/client-sagemaker-metrics/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sagemaker-metrics/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SageMakerMetricsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SageMakerMetricsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sagemaker-metrics/src/auth/httpAuthSchemeProvider.ts b/clients/client-sagemaker-metrics/src/auth/httpAuthSchemeProvider.ts index 795bab1ad3dd1..5711bbaf8da12 100644 --- a/clients/client-sagemaker-metrics/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sagemaker-metrics/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SageMakerMetricsClientConfig, SageMakerMetricsClientResolvedConfig } from "../SageMakerMetricsClient"; +import { type SageMakerMetricsClientResolvedConfig, SageMakerMetricsClientConfig } from "../SageMakerMetricsClient"; /** * @internal diff --git a/clients/client-sagemaker-metrics/src/commands/BatchGetMetricsCommand.ts b/clients/client-sagemaker-metrics/src/commands/BatchGetMetricsCommand.ts index 49e35a3a60944..a7e5f1fb31bc2 100644 --- a/clients/client-sagemaker-metrics/src/commands/BatchGetMetricsCommand.ts +++ b/clients/client-sagemaker-metrics/src/commands/BatchGetMetricsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetMetricsRequest, BatchGetMetricsResponse } from "../models/models_0"; -import { SageMakerMetricsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerMetricsClient"; +import type { BatchGetMetricsRequest, BatchGetMetricsResponse } from "../models/models_0"; +import type { + SageMakerMetricsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SageMakerMetricsClient"; import { BatchGetMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker-metrics/src/commands/BatchPutMetricsCommand.ts b/clients/client-sagemaker-metrics/src/commands/BatchPutMetricsCommand.ts index facdc3567166c..40220f4f128b0 100644 --- a/clients/client-sagemaker-metrics/src/commands/BatchPutMetricsCommand.ts +++ b/clients/client-sagemaker-metrics/src/commands/BatchPutMetricsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchPutMetricsRequest, BatchPutMetricsResponse } from "../models/models_0"; -import { SageMakerMetricsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerMetricsClient"; +import type { BatchPutMetricsRequest, BatchPutMetricsResponse } from "../models/models_0"; +import type { + SageMakerMetricsClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SageMakerMetricsClient"; import { BatchPutMetrics } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker-metrics/src/endpoint/EndpointParameters.ts b/clients/client-sagemaker-metrics/src/endpoint/EndpointParameters.ts index c5d65476a254a..677cab51ac8b2 100644 --- a/clients/client-sagemaker-metrics/src/endpoint/EndpointParameters.ts +++ b/clients/client-sagemaker-metrics/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sagemaker-metrics/src/endpoint/endpointResolver.ts b/clients/client-sagemaker-metrics/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sagemaker-metrics/src/endpoint/endpointResolver.ts +++ b/clients/client-sagemaker-metrics/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sagemaker-metrics/src/extensionConfiguration.ts b/clients/client-sagemaker-metrics/src/extensionConfiguration.ts index 512c8934f6e09..ef7ce8bc61e5d 100644 --- a/clients/client-sagemaker-metrics/src/extensionConfiguration.ts +++ b/clients/client-sagemaker-metrics/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sagemaker-metrics/src/models/SageMakerMetricsServiceException.ts b/clients/client-sagemaker-metrics/src/models/SageMakerMetricsServiceException.ts index 499658837b623..0664fd8620e62 100644 --- a/clients/client-sagemaker-metrics/src/models/SageMakerMetricsServiceException.ts +++ b/clients/client-sagemaker-metrics/src/models/SageMakerMetricsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sagemaker-metrics/src/runtimeConfig.browser.ts b/clients/client-sagemaker-metrics/src/runtimeConfig.browser.ts index dd541256497fc..381bff785a76b 100644 --- a/clients/client-sagemaker-metrics/src/runtimeConfig.browser.ts +++ b/clients/client-sagemaker-metrics/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerMetricsClientConfig } from "./SageMakerMetricsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SageMakerMetricsClientConfig } from "./SageMakerMetricsClient"; /** * @internal diff --git a/clients/client-sagemaker-metrics/src/runtimeConfig.native.ts b/clients/client-sagemaker-metrics/src/runtimeConfig.native.ts index 69b3f75e9c686..1cf6747b9bf1d 100644 --- a/clients/client-sagemaker-metrics/src/runtimeConfig.native.ts +++ b/clients/client-sagemaker-metrics/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SageMakerMetricsClientConfig } from "./SageMakerMetricsClient"; +import type { SageMakerMetricsClientConfig } from "./SageMakerMetricsClient"; /** * @internal diff --git a/clients/client-sagemaker-metrics/src/runtimeConfig.shared.ts b/clients/client-sagemaker-metrics/src/runtimeConfig.shared.ts index 078eb27ea683f..cc977fbbdd846 100644 --- a/clients/client-sagemaker-metrics/src/runtimeConfig.shared.ts +++ b/clients/client-sagemaker-metrics/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSageMakerMetricsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SageMakerMetricsClientConfig } from "./SageMakerMetricsClient"; +import type { SageMakerMetricsClientConfig } from "./SageMakerMetricsClient"; /** * @internal diff --git a/clients/client-sagemaker-metrics/src/runtimeConfig.ts b/clients/client-sagemaker-metrics/src/runtimeConfig.ts index d459120797340..f2d8e12295979 100644 --- a/clients/client-sagemaker-metrics/src/runtimeConfig.ts +++ b/clients/client-sagemaker-metrics/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerMetricsClientConfig } from "./SageMakerMetricsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SageMakerMetricsClientConfig } from "./SageMakerMetricsClient"; /** * @internal diff --git a/clients/client-sagemaker-metrics/src/runtimeExtensions.ts b/clients/client-sagemaker-metrics/src/runtimeExtensions.ts index 04ea97c190fc6..db9258fc671a7 100644 --- a/clients/client-sagemaker-metrics/src/runtimeExtensions.ts +++ b/clients/client-sagemaker-metrics/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SageMakerMetricsExtensionConfiguration } from "./extensionConfiguration"; +import type { SageMakerMetricsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sagemaker-metrics/src/schemas/schemas_0.ts b/clients/client-sagemaker-metrics/src/schemas/schemas_0.ts index b4d4d1f746dd1..290bb61ffa932 100644 --- a/clients/client-sagemaker-metrics/src/schemas/schemas_0.ts +++ b/clients/client-sagemaker-metrics/src/schemas/schemas_0.ts @@ -39,7 +39,7 @@ const n0 = "com.amazonaws.sagemakermetrics"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { SageMakerMetricsServiceException as __SageMakerMetricsServiceException } from "../models/SageMakerMetricsServiceException"; diff --git a/clients/client-sagemaker-runtime-http2/package.json b/clients/client-sagemaker-runtime-http2/package.json index c3d6b7d507d01..6fb27363abb77 100644 --- a/clients/client-sagemaker-runtime-http2/package.json +++ b/clients/client-sagemaker-runtime-http2/package.json @@ -34,7 +34,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -42,21 +42,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sagemaker-runtime-http2/src/SageMakerRuntimeHTTP2.ts b/clients/client-sagemaker-runtime-http2/src/SageMakerRuntimeHTTP2.ts index fd9afe2f60a1d..8c2ebae29b767 100644 --- a/clients/client-sagemaker-runtime-http2/src/SageMakerRuntimeHTTP2.ts +++ b/clients/client-sagemaker-runtime-http2/src/SageMakerRuntimeHTTP2.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { InvokeEndpointWithBidirectionalStreamCommand, InvokeEndpointWithBidirectionalStreamCommandInput, InvokeEndpointWithBidirectionalStreamCommandOutput, } from "./commands/InvokeEndpointWithBidirectionalStreamCommand"; -import { SageMakerRuntimeHTTP2Client, SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2Client"; +import { SageMakerRuntimeHTTP2Client } from "./SageMakerRuntimeHTTP2Client"; const commands = { InvokeEndpointWithBidirectionalStreamCommand, diff --git a/clients/client-sagemaker-runtime-http2/src/SageMakerRuntimeHTTP2Client.ts b/clients/client-sagemaker-runtime-http2/src/SageMakerRuntimeHTTP2Client.ts index dc7191e9c7a5a..3c0c6d7883a02 100644 --- a/clients/client-sagemaker-runtime-http2/src/SageMakerRuntimeHTTP2Client.ts +++ b/clients/client-sagemaker-runtime-http2/src/SageMakerRuntimeHTTP2Client.ts @@ -1,25 +1,25 @@ // smithy-typescript generated code import { - EventStreamInputConfig, - EventStreamResolvedConfig, + type EventStreamInputConfig, + type EventStreamResolvedConfig, resolveEventStreamConfig, } from "@aws-sdk/middleware-eventstream"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -27,46 +27,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSageMakerRuntimeHTTP2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -80,7 +89,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sagemaker-runtime-http2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sagemaker-runtime-http2/src/auth/httpAuthExtensionConfiguration.ts index 35643361478cc..e3739f8b1044b 100644 --- a/clients/client-sagemaker-runtime-http2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sagemaker-runtime-http2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SageMakerRuntimeHTTP2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SageMakerRuntimeHTTP2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sagemaker-runtime-http2/src/auth/httpAuthSchemeProvider.ts b/clients/client-sagemaker-runtime-http2/src/auth/httpAuthSchemeProvider.ts index 56919dc633d26..81f9938843645 100644 --- a/clients/client-sagemaker-runtime-http2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sagemaker-runtime-http2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type SageMakerRuntimeHTTP2ClientResolvedConfig, SageMakerRuntimeHTTP2ClientConfig, - SageMakerRuntimeHTTP2ClientResolvedConfig, } from "../SageMakerRuntimeHTTP2Client"; /** diff --git a/clients/client-sagemaker-runtime-http2/src/commands/InvokeEndpointWithBidirectionalStreamCommand.ts b/clients/client-sagemaker-runtime-http2/src/commands/InvokeEndpointWithBidirectionalStreamCommand.ts index 81deebbd8034c..2b76addf70c70 100644 --- a/clients/client-sagemaker-runtime-http2/src/commands/InvokeEndpointWithBidirectionalStreamCommand.ts +++ b/clients/client-sagemaker-runtime-http2/src/commands/InvokeEndpointWithBidirectionalStreamCommand.ts @@ -2,14 +2,14 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { InvokeEndpointWithBidirectionalStreamInput, InvokeEndpointWithBidirectionalStreamOutput, } from "../models/models_0"; -import { +import type { SageMakerRuntimeHTTP2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-sagemaker-runtime-http2/src/endpoint/EndpointParameters.ts b/clients/client-sagemaker-runtime-http2/src/endpoint/EndpointParameters.ts index 6de82c8451ab6..d2c2791626d12 100644 --- a/clients/client-sagemaker-runtime-http2/src/endpoint/EndpointParameters.ts +++ b/clients/client-sagemaker-runtime-http2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sagemaker-runtime-http2/src/endpoint/endpointResolver.ts b/clients/client-sagemaker-runtime-http2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sagemaker-runtime-http2/src/endpoint/endpointResolver.ts +++ b/clients/client-sagemaker-runtime-http2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sagemaker-runtime-http2/src/extensionConfiguration.ts b/clients/client-sagemaker-runtime-http2/src/extensionConfiguration.ts index 9d289d6131d9f..ea24735011760 100644 --- a/clients/client-sagemaker-runtime-http2/src/extensionConfiguration.ts +++ b/clients/client-sagemaker-runtime-http2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sagemaker-runtime-http2/src/models/SageMakerRuntimeHTTP2ServiceException.ts b/clients/client-sagemaker-runtime-http2/src/models/SageMakerRuntimeHTTP2ServiceException.ts index 1b115e7d120a4..fc9c58734203b 100644 --- a/clients/client-sagemaker-runtime-http2/src/models/SageMakerRuntimeHTTP2ServiceException.ts +++ b/clients/client-sagemaker-runtime-http2/src/models/SageMakerRuntimeHTTP2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sagemaker-runtime-http2/src/models/errors.ts b/clients/client-sagemaker-runtime-http2/src/models/errors.ts index 23d2bcc0c2c2c..0878219ae1a53 100644 --- a/clients/client-sagemaker-runtime-http2/src/models/errors.ts +++ b/clients/client-sagemaker-runtime-http2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SageMakerRuntimeHTTP2ServiceException as __BaseException } from "./SageMakerRuntimeHTTP2ServiceException"; diff --git a/clients/client-sagemaker-runtime-http2/src/runtimeConfig.browser.ts b/clients/client-sagemaker-runtime-http2/src/runtimeConfig.browser.ts index 159b23a42520b..80b41b4ef74d3 100644 --- a/clients/client-sagemaker-runtime-http2/src/runtimeConfig.browser.ts +++ b/clients/client-sagemaker-runtime-http2/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidFunction, invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2Client"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2Client"; /** * @internal diff --git a/clients/client-sagemaker-runtime-http2/src/runtimeConfig.native.ts b/clients/client-sagemaker-runtime-http2/src/runtimeConfig.native.ts index 42010af23d33f..27dfb2f99b03b 100644 --- a/clients/client-sagemaker-runtime-http2/src/runtimeConfig.native.ts +++ b/clients/client-sagemaker-runtime-http2/src/runtimeConfig.native.ts @@ -3,7 +3,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { invalidFunction } from "@smithy/invalid-dependency"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2Client"; +import type { SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2Client"; /** * @internal diff --git a/clients/client-sagemaker-runtime-http2/src/runtimeConfig.shared.ts b/clients/client-sagemaker-runtime-http2/src/runtimeConfig.shared.ts index 67c4feeb05ef2..e3884799e7392 100644 --- a/clients/client-sagemaker-runtime-http2/src/runtimeConfig.shared.ts +++ b/clients/client-sagemaker-runtime-http2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSageMakerRuntimeHTTP2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2Client"; +import type { SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2Client"; /** * @internal diff --git a/clients/client-sagemaker-runtime-http2/src/runtimeConfig.ts b/clients/client-sagemaker-runtime-http2/src/runtimeConfig.ts index 895f0ce5de9ad..f84acca21cb75 100644 --- a/clients/client-sagemaker-runtime-http2/src/runtimeConfig.ts +++ b/clients/client-sagemaker-runtime-http2/src/runtimeConfig.ts @@ -17,13 +17,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttp2Handler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2Client"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SageMakerRuntimeHTTP2ClientConfig } from "./SageMakerRuntimeHTTP2Client"; /** * @internal diff --git a/clients/client-sagemaker-runtime-http2/src/runtimeExtensions.ts b/clients/client-sagemaker-runtime-http2/src/runtimeExtensions.ts index 710b54d6eb3c8..ab07f7f3c16df 100644 --- a/clients/client-sagemaker-runtime-http2/src/runtimeExtensions.ts +++ b/clients/client-sagemaker-runtime-http2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SageMakerRuntimeHTTP2ExtensionConfiguration } from "./extensionConfiguration"; +import type { SageMakerRuntimeHTTP2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sagemaker-runtime-http2/src/schemas/schemas_0.ts b/clients/client-sagemaker-runtime-http2/src/schemas/schemas_0.ts index 7ee2e841f0831..d12f77be87cc6 100644 --- a/clients/client-sagemaker-runtime-http2/src/schemas/schemas_0.ts +++ b/clients/client-sagemaker-runtime-http2/src/schemas/schemas_0.ts @@ -46,7 +46,12 @@ const n0 = "com.amazonaws.sagemakerruntimehttp2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types"; +import type { + StaticErrorSchema, + StaticOperationSchema, + StaticSimpleSchema, + StaticStructureSchema, +} from "@smithy/types"; import { InputValidationError as __InputValidationError, diff --git a/clients/client-sagemaker-runtime/package.json b/clients/client-sagemaker-runtime/package.json index 83cc6f9346e1d..07e0323e3746f 100644 --- a/clients/client-sagemaker-runtime/package.json +++ b/clients/client-sagemaker-runtime/package.json @@ -32,7 +32,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -40,21 +40,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sagemaker-runtime/src/SageMakerRuntime.ts b/clients/client-sagemaker-runtime/src/SageMakerRuntime.ts index 8290fffd71e4c..2ec29ed3adb2d 100644 --- a/clients/client-sagemaker-runtime/src/SageMakerRuntime.ts +++ b/clients/client-sagemaker-runtime/src/SageMakerRuntime.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { InvokeEndpointAsyncCommand, @@ -17,7 +17,7 @@ import { InvokeEndpointWithResponseStreamCommandInput, InvokeEndpointWithResponseStreamCommandOutput, } from "./commands/InvokeEndpointWithResponseStreamCommand"; -import { SageMakerRuntimeClient, SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient"; +import { SageMakerRuntimeClient } from "./SageMakerRuntimeClient"; const commands = { InvokeEndpointCommand, diff --git a/clients/client-sagemaker-runtime/src/SageMakerRuntimeClient.ts b/clients/client-sagemaker-runtime/src/SageMakerRuntimeClient.ts index a8922e3d91ffc..ea25fde193345 100644 --- a/clients/client-sagemaker-runtime/src/SageMakerRuntimeClient.ts +++ b/clients/client-sagemaker-runtime/src/SageMakerRuntimeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,46 +21,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSageMakerRuntimeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -79,7 +88,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sagemaker-runtime/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sagemaker-runtime/src/auth/httpAuthExtensionConfiguration.ts index 76e3cc65bfbe7..477ca253feaf4 100644 --- a/clients/client-sagemaker-runtime/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sagemaker-runtime/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SageMakerRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SageMakerRuntimeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sagemaker-runtime/src/auth/httpAuthSchemeProvider.ts b/clients/client-sagemaker-runtime/src/auth/httpAuthSchemeProvider.ts index 04144c93785b1..c86e1e1dd87aa 100644 --- a/clients/client-sagemaker-runtime/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sagemaker-runtime/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SageMakerRuntimeClientConfig, SageMakerRuntimeClientResolvedConfig } from "../SageMakerRuntimeClient"; +import { type SageMakerRuntimeClientResolvedConfig, SageMakerRuntimeClientConfig } from "../SageMakerRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointAsyncCommand.ts b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointAsyncCommand.ts index 8f219c3dba965..f0823601ff33d 100644 --- a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointAsyncCommand.ts +++ b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointAsyncCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeEndpointAsyncInput, InvokeEndpointAsyncOutput } from "../models/models_0"; -import { SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerRuntimeClient"; +import type { InvokeEndpointAsyncInput, InvokeEndpointAsyncOutput } from "../models/models_0"; +import type { + SageMakerRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SageMakerRuntimeClient"; import { InvokeEndpointAsync } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointCommand.ts b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointCommand.ts index 33611a44948eb..267920635d23c 100644 --- a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointCommand.ts +++ b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; import { InvokeEndpointInput, InvokeEndpointOutput } from "../models/models_0"; -import { SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerRuntimeClient"; +import type { + SageMakerRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SageMakerRuntimeClient"; import { InvokeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointWithResponseStreamCommand.ts b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointWithResponseStreamCommand.ts index d19c93874e430..b4a18822e0cd4 100644 --- a/clients/client-sagemaker-runtime/src/commands/InvokeEndpointWithResponseStreamCommand.ts +++ b/clients/client-sagemaker-runtime/src/commands/InvokeEndpointWithResponseStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InvokeEndpointWithResponseStreamInput, InvokeEndpointWithResponseStreamOutput } from "../models/models_0"; -import { SageMakerRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerRuntimeClient"; +import { type InvokeEndpointWithResponseStreamOutput, InvokeEndpointWithResponseStreamInput } from "../models/models_0"; +import type { + SageMakerRuntimeClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SageMakerRuntimeClient"; import { InvokeEndpointWithResponseStream } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker-runtime/src/endpoint/EndpointParameters.ts b/clients/client-sagemaker-runtime/src/endpoint/EndpointParameters.ts index c5d65476a254a..677cab51ac8b2 100644 --- a/clients/client-sagemaker-runtime/src/endpoint/EndpointParameters.ts +++ b/clients/client-sagemaker-runtime/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sagemaker-runtime/src/endpoint/endpointResolver.ts b/clients/client-sagemaker-runtime/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sagemaker-runtime/src/endpoint/endpointResolver.ts +++ b/clients/client-sagemaker-runtime/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sagemaker-runtime/src/extensionConfiguration.ts b/clients/client-sagemaker-runtime/src/extensionConfiguration.ts index f38d90e1efd4b..590e25829f23b 100644 --- a/clients/client-sagemaker-runtime/src/extensionConfiguration.ts +++ b/clients/client-sagemaker-runtime/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sagemaker-runtime/src/models/SageMakerRuntimeServiceException.ts b/clients/client-sagemaker-runtime/src/models/SageMakerRuntimeServiceException.ts index 9c6bd59f2f39f..d96a1ae5cd21d 100644 --- a/clients/client-sagemaker-runtime/src/models/SageMakerRuntimeServiceException.ts +++ b/clients/client-sagemaker-runtime/src/models/SageMakerRuntimeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sagemaker-runtime/src/models/errors.ts b/clients/client-sagemaker-runtime/src/models/errors.ts index fbc0abaea564c..03a4cd87b577f 100644 --- a/clients/client-sagemaker-runtime/src/models/errors.ts +++ b/clients/client-sagemaker-runtime/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SageMakerRuntimeServiceException as __BaseException } from "./SageMakerRuntimeServiceException"; diff --git a/clients/client-sagemaker-runtime/src/runtimeConfig.browser.ts b/clients/client-sagemaker-runtime/src/runtimeConfig.browser.ts index 0c6df43a59c55..f04c1a7406ed3 100644 --- a/clients/client-sagemaker-runtime/src/runtimeConfig.browser.ts +++ b/clients/client-sagemaker-runtime/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-runtime/src/runtimeConfig.native.ts b/clients/client-sagemaker-runtime/src/runtimeConfig.native.ts index 6f107795c3f1b..795f134119c3e 100644 --- a/clients/client-sagemaker-runtime/src/runtimeConfig.native.ts +++ b/clients/client-sagemaker-runtime/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient"; +import type { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-runtime/src/runtimeConfig.shared.ts b/clients/client-sagemaker-runtime/src/runtimeConfig.shared.ts index 58303e32f5816..f79fba9084d4b 100644 --- a/clients/client-sagemaker-runtime/src/runtimeConfig.shared.ts +++ b/clients/client-sagemaker-runtime/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSageMakerRuntimeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient"; +import type { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-runtime/src/runtimeConfig.ts b/clients/client-sagemaker-runtime/src/runtimeConfig.ts index 71a310150cbf7..c6f4b6185120e 100644 --- a/clients/client-sagemaker-runtime/src/runtimeConfig.ts +++ b/clients/client-sagemaker-runtime/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient"; /** * @internal diff --git a/clients/client-sagemaker-runtime/src/runtimeExtensions.ts b/clients/client-sagemaker-runtime/src/runtimeExtensions.ts index d1359d7eca9ff..81cfbae951240 100644 --- a/clients/client-sagemaker-runtime/src/runtimeExtensions.ts +++ b/clients/client-sagemaker-runtime/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SageMakerRuntimeExtensionConfiguration } from "./extensionConfiguration"; +import type { SageMakerRuntimeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sagemaker-runtime/src/schemas/schemas_0.ts b/clients/client-sagemaker-runtime/src/schemas/schemas_0.ts index f69b81f9726f3..56a1be5f681d5 100644 --- a/clients/client-sagemaker-runtime/src/schemas/schemas_0.ts +++ b/clients/client-sagemaker-runtime/src/schemas/schemas_0.ts @@ -79,7 +79,12 @@ const n0 = "com.amazonaws.sagemakerruntime"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types"; +import type { + StaticErrorSchema, + StaticOperationSchema, + StaticSimpleSchema, + StaticStructureSchema, +} from "@smithy/types"; import { InternalDependencyException as __InternalDependencyException, diff --git a/clients/client-sagemaker/package.json b/clients/client-sagemaker/package.json index ee5bd39a52a9d..ae6c674ea180e 100644 --- a/clients/client-sagemaker/package.json +++ b/clients/client-sagemaker/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sagemaker/src/SageMaker.ts b/clients/client-sagemaker/src/SageMaker.ts index d8e7e9f85ba91..403bf6cd24098 100644 --- a/clients/client-sagemaker/src/SageMaker.ts +++ b/clients/client-sagemaker/src/SageMaker.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddAssociationCommand, @@ -1739,7 +1739,7 @@ import { UpdateWorkteamCommandInput, UpdateWorkteamCommandOutput, } from "./commands/UpdateWorkteamCommand"; -import { SageMakerClient, SageMakerClientConfig } from "./SageMakerClient"; +import { SageMakerClient } from "./SageMakerClient"; const commands = { AddAssociationCommand, diff --git a/clients/client-sagemaker/src/SageMakerClient.ts b/clients/client-sagemaker/src/SageMakerClient.ts index 7df82511e7e83..2edf25cdff715 100644 --- a/clients/client-sagemaker/src/SageMakerClient.ts +++ b/clients/client-sagemaker/src/SageMakerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSageMakerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddAssociationCommandInput, AddAssociationCommandOutput } from "./commands/AddAssociationCommand"; @@ -1043,7 +1052,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sagemaker/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sagemaker/src/auth/httpAuthExtensionConfiguration.ts index b9e93ee47d97c..d03e685fccfcc 100644 --- a/clients/client-sagemaker/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sagemaker/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SageMakerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SageMakerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sagemaker/src/auth/httpAuthSchemeProvider.ts b/clients/client-sagemaker/src/auth/httpAuthSchemeProvider.ts index 1f76b700fbe9d..2637316a1f2ae 100644 --- a/clients/client-sagemaker/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sagemaker/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SageMakerClientConfig, SageMakerClientResolvedConfig } from "../SageMakerClient"; +import { type SageMakerClientResolvedConfig, SageMakerClientConfig } from "../SageMakerClient"; /** * @internal diff --git a/clients/client-sagemaker/src/commands/AddAssociationCommand.ts b/clients/client-sagemaker/src/commands/AddAssociationCommand.ts index b59b0d66bfe2c..63f0bcc402acd 100644 --- a/clients/client-sagemaker/src/commands/AddAssociationCommand.ts +++ b/clients/client-sagemaker/src/commands/AddAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddAssociationRequest, AddAssociationResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { AddAssociationRequest, AddAssociationResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { AddAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/AddTagsCommand.ts b/clients/client-sagemaker/src/commands/AddTagsCommand.ts index 9c6398a6a5f78..b0d08434157ad 100644 --- a/clients/client-sagemaker/src/commands/AddTagsCommand.ts +++ b/clients/client-sagemaker/src/commands/AddTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsInput, AddTagsOutput } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { AddTagsInput, AddTagsOutput } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { AddTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/AssociateTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/AssociateTrialComponentCommand.ts index cb279efa6f379..01e9e9da7983a 100644 --- a/clients/client-sagemaker/src/commands/AssociateTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/AssociateTrialComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateTrialComponentRequest, AssociateTrialComponentResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { AssociateTrialComponentRequest, AssociateTrialComponentResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { AssociateTrialComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/AttachClusterNodeVolumeCommand.ts b/clients/client-sagemaker/src/commands/AttachClusterNodeVolumeCommand.ts index 98a0ac502a28e..0e04df5692758 100644 --- a/clients/client-sagemaker/src/commands/AttachClusterNodeVolumeCommand.ts +++ b/clients/client-sagemaker/src/commands/AttachClusterNodeVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachClusterNodeVolumeRequest, AttachClusterNodeVolumeResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { AttachClusterNodeVolumeRequest, AttachClusterNodeVolumeResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { AttachClusterNodeVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/BatchAddClusterNodesCommand.ts b/clients/client-sagemaker/src/commands/BatchAddClusterNodesCommand.ts index eba4f1a67e48b..8019ef4235630 100644 --- a/clients/client-sagemaker/src/commands/BatchAddClusterNodesCommand.ts +++ b/clients/client-sagemaker/src/commands/BatchAddClusterNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchAddClusterNodesRequest, BatchAddClusterNodesResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { BatchAddClusterNodesRequest, BatchAddClusterNodesResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { BatchAddClusterNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/BatchDeleteClusterNodesCommand.ts b/clients/client-sagemaker/src/commands/BatchDeleteClusterNodesCommand.ts index 1a977122c6e8b..7457302d9bb5e 100644 --- a/clients/client-sagemaker/src/commands/BatchDeleteClusterNodesCommand.ts +++ b/clients/client-sagemaker/src/commands/BatchDeleteClusterNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteClusterNodesRequest, BatchDeleteClusterNodesResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { BatchDeleteClusterNodesRequest, BatchDeleteClusterNodesResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { BatchDeleteClusterNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/BatchDescribeModelPackageCommand.ts b/clients/client-sagemaker/src/commands/BatchDescribeModelPackageCommand.ts index efaee3f30f762..b05d723a13692 100644 --- a/clients/client-sagemaker/src/commands/BatchDescribeModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/BatchDescribeModelPackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDescribeModelPackageInput, BatchDescribeModelPackageOutput } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { BatchDescribeModelPackageInput, BatchDescribeModelPackageOutput } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { BatchDescribeModelPackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/BatchRebootClusterNodesCommand.ts b/clients/client-sagemaker/src/commands/BatchRebootClusterNodesCommand.ts index 5a8b318e6a64d..7aa0a0688907b 100644 --- a/clients/client-sagemaker/src/commands/BatchRebootClusterNodesCommand.ts +++ b/clients/client-sagemaker/src/commands/BatchRebootClusterNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchRebootClusterNodesRequest, BatchRebootClusterNodesResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { BatchRebootClusterNodesRequest, BatchRebootClusterNodesResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { BatchRebootClusterNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/BatchReplaceClusterNodesCommand.ts b/clients/client-sagemaker/src/commands/BatchReplaceClusterNodesCommand.ts index 937df9d03eea0..2abcfd5cd634d 100644 --- a/clients/client-sagemaker/src/commands/BatchReplaceClusterNodesCommand.ts +++ b/clients/client-sagemaker/src/commands/BatchReplaceClusterNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchReplaceClusterNodesRequest, BatchReplaceClusterNodesResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { BatchReplaceClusterNodesRequest, BatchReplaceClusterNodesResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { BatchReplaceClusterNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateActionCommand.ts b/clients/client-sagemaker/src/commands/CreateActionCommand.ts index dddafd9a7832c..e247e81631d6a 100644 --- a/clients/client-sagemaker/src/commands/CreateActionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateActionRequest, CreateActionResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateActionRequest, CreateActionResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateAlgorithmCommand.ts b/clients/client-sagemaker/src/commands/CreateAlgorithmCommand.ts index d431568fe2114..f9feb35eee53f 100644 --- a/clients/client-sagemaker/src/commands/CreateAlgorithmCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateAlgorithmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAlgorithmInput, CreateAlgorithmOutput } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateAlgorithmInput, CreateAlgorithmOutput } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateAlgorithm } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateAppCommand.ts b/clients/client-sagemaker/src/commands/CreateAppCommand.ts index 081960c7683e7..671213b118efa 100644 --- a/clients/client-sagemaker/src/commands/CreateAppCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppRequest, CreateAppResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateAppRequest, CreateAppResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateAppImageConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateAppImageConfigCommand.ts index fd39d7d4d4bfe..60e3bf290afc4 100644 --- a/clients/client-sagemaker/src/commands/CreateAppImageConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateAppImageConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAppImageConfigRequest, CreateAppImageConfigResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateAppImageConfigRequest, CreateAppImageConfigResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateAppImageConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateArtifactCommand.ts b/clients/client-sagemaker/src/commands/CreateArtifactCommand.ts index 8ab2b3b92931a..737e44c22ce85 100644 --- a/clients/client-sagemaker/src/commands/CreateArtifactCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateArtifactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateArtifactRequest, CreateArtifactResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateArtifactRequest, CreateArtifactResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateArtifact } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateAutoMLJobCommand.ts b/clients/client-sagemaker/src/commands/CreateAutoMLJobCommand.ts index 00c55d42854b4..b73fb9ca4514f 100644 --- a/clients/client-sagemaker/src/commands/CreateAutoMLJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateAutoMLJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAutoMLJobRequest, CreateAutoMLJobResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateAutoMLJobRequest, CreateAutoMLJobResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateAutoMLJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateAutoMLJobV2Command.ts b/clients/client-sagemaker/src/commands/CreateAutoMLJobV2Command.ts index f88217639db06..a14fb48e79cf7 100644 --- a/clients/client-sagemaker/src/commands/CreateAutoMLJobV2Command.ts +++ b/clients/client-sagemaker/src/commands/CreateAutoMLJobV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAutoMLJobV2Request, CreateAutoMLJobV2Response } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateAutoMLJobV2Request, CreateAutoMLJobV2Response } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateAutoMLJobV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateClusterCommand.ts b/clients/client-sagemaker/src/commands/CreateClusterCommand.ts index 350d38c060371..1b6ae779d5b47 100644 --- a/clients/client-sagemaker/src/commands/CreateClusterCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateClusterRequest, CreateClusterResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateClusterSchedulerConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateClusterSchedulerConfigCommand.ts index 7d6172165504f..d67888ae0adcf 100644 --- a/clients/client-sagemaker/src/commands/CreateClusterSchedulerConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateClusterSchedulerConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterSchedulerConfigRequest, CreateClusterSchedulerConfigResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateClusterSchedulerConfigRequest, CreateClusterSchedulerConfigResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateClusterSchedulerConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateCodeRepositoryCommand.ts b/clients/client-sagemaker/src/commands/CreateCodeRepositoryCommand.ts index 22e483febec2d..eaf2fe1eb23ac 100644 --- a/clients/client-sagemaker/src/commands/CreateCodeRepositoryCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateCodeRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCodeRepositoryInput, CreateCodeRepositoryOutput } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateCodeRepositoryInput, CreateCodeRepositoryOutput } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateCodeRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateCompilationJobCommand.ts b/clients/client-sagemaker/src/commands/CreateCompilationJobCommand.ts index 181ee669c90b7..3f965068d4dcd 100644 --- a/clients/client-sagemaker/src/commands/CreateCompilationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateCompilationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCompilationJobRequest, CreateCompilationJobResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateCompilationJobRequest, CreateCompilationJobResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateCompilationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateComputeQuotaCommand.ts b/clients/client-sagemaker/src/commands/CreateComputeQuotaCommand.ts index 90b93716c0f48..08ed44b957c0b 100644 --- a/clients/client-sagemaker/src/commands/CreateComputeQuotaCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateComputeQuotaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateComputeQuotaRequest, CreateComputeQuotaResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateComputeQuotaRequest, CreateComputeQuotaResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateComputeQuota } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateContextCommand.ts b/clients/client-sagemaker/src/commands/CreateContextCommand.ts index 3ee508691e65c..9f56a20bce8ee 100644 --- a/clients/client-sagemaker/src/commands/CreateContextCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateContextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContextRequest, CreateContextResponse } from "../models/models_0"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateContextRequest, CreateContextResponse } from "../models/models_0"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateContext } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts index 28e9f036181d4..fbcc0d5553ceb 100644 --- a/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateDataQualityJobDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataQualityJobDefinitionRequest, CreateDataQualityJobDefinitionResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateDataQualityJobDefinitionRequest, CreateDataQualityJobDefinitionResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateDataQualityJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateDeviceFleetCommand.ts b/clients/client-sagemaker/src/commands/CreateDeviceFleetCommand.ts index c4d341250fc79..b24e945011a4d 100644 --- a/clients/client-sagemaker/src/commands/CreateDeviceFleetCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateDeviceFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeviceFleetRequest } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateDeviceFleetRequest } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateDeviceFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateDomainCommand.ts b/clients/client-sagemaker/src/commands/CreateDomainCommand.ts index 0da40b2055eb9..d70b705ced63f 100644 --- a/clients/client-sagemaker/src/commands/CreateDomainCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainRequest, CreateDomainResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateDomainRequest, CreateDomainResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateEdgeDeploymentPlanCommand.ts b/clients/client-sagemaker/src/commands/CreateEdgeDeploymentPlanCommand.ts index b1f7806e4fb60..f18b1ecd5290a 100644 --- a/clients/client-sagemaker/src/commands/CreateEdgeDeploymentPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEdgeDeploymentPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEdgeDeploymentPlanRequest, CreateEdgeDeploymentPlanResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateEdgeDeploymentPlanRequest, CreateEdgeDeploymentPlanResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateEdgeDeploymentPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateEdgeDeploymentStageCommand.ts b/clients/client-sagemaker/src/commands/CreateEdgeDeploymentStageCommand.ts index 084459591ed50..aadda3723eae3 100644 --- a/clients/client-sagemaker/src/commands/CreateEdgeDeploymentStageCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEdgeDeploymentStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEdgeDeploymentStageRequest } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateEdgeDeploymentStageRequest } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateEdgeDeploymentStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateEdgePackagingJobCommand.ts b/clients/client-sagemaker/src/commands/CreateEdgePackagingJobCommand.ts index f1bc509a784fe..65499c6be2372 100644 --- a/clients/client-sagemaker/src/commands/CreateEdgePackagingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEdgePackagingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEdgePackagingJobRequest } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateEdgePackagingJobRequest } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateEdgePackagingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateEndpointCommand.ts b/clients/client-sagemaker/src/commands/CreateEndpointCommand.ts index 1230849c082fa..9abd3661955a8 100644 --- a/clients/client-sagemaker/src/commands/CreateEndpointCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEndpointInput, CreateEndpointOutput } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateEndpointInput, CreateEndpointOutput } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateEndpointConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateEndpointConfigCommand.ts index 82b438ecbac26..4412adcc1361b 100644 --- a/clients/client-sagemaker/src/commands/CreateEndpointConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateEndpointConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEndpointConfigInput, CreateEndpointConfigOutput } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateEndpointConfigInput, CreateEndpointConfigOutput } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateEndpointConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateExperimentCommand.ts b/clients/client-sagemaker/src/commands/CreateExperimentCommand.ts index 6b4edf3e69f6f..2cbb9cbd33f27 100644 --- a/clients/client-sagemaker/src/commands/CreateExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExperimentRequest, CreateExperimentResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateExperimentRequest, CreateExperimentResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts index b3def9563eb9d..00954c90bc78c 100644 --- a/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateFeatureGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFeatureGroupRequest, CreateFeatureGroupResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateFeatureGroupRequest, CreateFeatureGroupResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateFeatureGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateFlowDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateFlowDefinitionCommand.ts index b5b321ef4a27f..163c90a58852c 100644 --- a/clients/client-sagemaker/src/commands/CreateFlowDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateFlowDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFlowDefinitionRequest, CreateFlowDefinitionResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateFlowDefinitionRequest, CreateFlowDefinitionResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateFlowDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateHubCommand.ts b/clients/client-sagemaker/src/commands/CreateHubCommand.ts index d731c6c009a24..c337f8b093ecb 100644 --- a/clients/client-sagemaker/src/commands/CreateHubCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateHubCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHubRequest, CreateHubResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateHubRequest, CreateHubResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateHub } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateHubContentPresignedUrlsCommand.ts b/clients/client-sagemaker/src/commands/CreateHubContentPresignedUrlsCommand.ts index 01a401d3ada5f..808a87e55354c 100644 --- a/clients/client-sagemaker/src/commands/CreateHubContentPresignedUrlsCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateHubContentPresignedUrlsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHubContentPresignedUrlsRequest, CreateHubContentPresignedUrlsResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateHubContentPresignedUrlsRequest, CreateHubContentPresignedUrlsResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateHubContentPresignedUrls } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateHubContentReferenceCommand.ts b/clients/client-sagemaker/src/commands/CreateHubContentReferenceCommand.ts index 2e3da05e94ce2..89739afcad1ff 100644 --- a/clients/client-sagemaker/src/commands/CreateHubContentReferenceCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateHubContentReferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHubContentReferenceRequest, CreateHubContentReferenceResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateHubContentReferenceRequest, CreateHubContentReferenceResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateHubContentReference } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateHumanTaskUiCommand.ts b/clients/client-sagemaker/src/commands/CreateHumanTaskUiCommand.ts index ad0dcd107ca58..4fff4124d2744 100644 --- a/clients/client-sagemaker/src/commands/CreateHumanTaskUiCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateHumanTaskUiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHumanTaskUiRequest, CreateHumanTaskUiResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateHumanTaskUiRequest, CreateHumanTaskUiResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateHumanTaskUi } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/CreateHyperParameterTuningJobCommand.ts index 870ac10e539fb..a6f4eb1e9adff 100644 --- a/clients/client-sagemaker/src/commands/CreateHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateHyperParameterTuningJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHyperParameterTuningJobRequest, CreateHyperParameterTuningJobResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateHyperParameterTuningJobRequest, CreateHyperParameterTuningJobResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateHyperParameterTuningJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateImageCommand.ts b/clients/client-sagemaker/src/commands/CreateImageCommand.ts index 48be66640583c..73962caaa84b4 100644 --- a/clients/client-sagemaker/src/commands/CreateImageCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImageRequest, CreateImageResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateImageRequest, CreateImageResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateImageVersionCommand.ts b/clients/client-sagemaker/src/commands/CreateImageVersionCommand.ts index 55433d0974339..f6923d17e0104 100644 --- a/clients/client-sagemaker/src/commands/CreateImageVersionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateImageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImageVersionRequest, CreateImageVersionResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateImageVersionRequest, CreateImageVersionResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateImageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateInferenceComponentCommand.ts b/clients/client-sagemaker/src/commands/CreateInferenceComponentCommand.ts index 95e6db923835d..40696e6dff942 100644 --- a/clients/client-sagemaker/src/commands/CreateInferenceComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateInferenceComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInferenceComponentInput, CreateInferenceComponentOutput } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateInferenceComponentInput, CreateInferenceComponentOutput } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateInferenceComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/CreateInferenceExperimentCommand.ts index d3fd941ebdeff..ddec5cf2b2a90 100644 --- a/clients/client-sagemaker/src/commands/CreateInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateInferenceExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInferenceExperimentRequest, CreateInferenceExperimentResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateInferenceExperimentRequest, CreateInferenceExperimentResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateInferenceExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateInferenceRecommendationsJobCommand.ts b/clients/client-sagemaker/src/commands/CreateInferenceRecommendationsJobCommand.ts index 9bf3b6e9e57aa..a5802a5afca73 100644 --- a/clients/client-sagemaker/src/commands/CreateInferenceRecommendationsJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateInferenceRecommendationsJobCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateInferenceRecommendationsJobRequest, CreateInferenceRecommendationsJobResponse, } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateInferenceRecommendationsJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateLabelingJobCommand.ts b/clients/client-sagemaker/src/commands/CreateLabelingJobCommand.ts index 257719eff62e7..7ac41c3ed686f 100644 --- a/clients/client-sagemaker/src/commands/CreateLabelingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateLabelingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLabelingJobRequest, CreateLabelingJobResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateLabelingJobRequest, CreateLabelingJobResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateLabelingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/CreateMlflowTrackingServerCommand.ts index 04b5c5d5d8c8b..61d3565ed32c2 100644 --- a/clients/client-sagemaker/src/commands/CreateMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateMlflowTrackingServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMlflowTrackingServerRequest, CreateMlflowTrackingServerResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateMlflowTrackingServerRequest, CreateMlflowTrackingServerResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateMlflowTrackingServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateModelBiasJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateModelBiasJobDefinitionCommand.ts index d16cd4519b0ca..746941e40b7c4 100644 --- a/clients/client-sagemaker/src/commands/CreateModelBiasJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelBiasJobDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelBiasJobDefinitionRequest, CreateModelBiasJobDefinitionResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateModelBiasJobDefinitionRequest, CreateModelBiasJobDefinitionResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateModelBiasJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateModelCardCommand.ts b/clients/client-sagemaker/src/commands/CreateModelCardCommand.ts index 989f51ff589b1..ff6217e2bc5c8 100644 --- a/clients/client-sagemaker/src/commands/CreateModelCardCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelCardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelCardRequest, CreateModelCardResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateModelCardRequest, CreateModelCardResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateModelCard } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateModelCardExportJobCommand.ts b/clients/client-sagemaker/src/commands/CreateModelCardExportJobCommand.ts index c8337b42bb252..c5a66592924c9 100644 --- a/clients/client-sagemaker/src/commands/CreateModelCardExportJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelCardExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelCardExportJobRequest, CreateModelCardExportJobResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateModelCardExportJobRequest, CreateModelCardExportJobResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateModelCardExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateModelCommand.ts b/clients/client-sagemaker/src/commands/CreateModelCommand.ts index cb6aa75a4d0ac..ac12502724968 100644 --- a/clients/client-sagemaker/src/commands/CreateModelCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelInput, CreateModelOutput } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateModelInput, CreateModelOutput } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateModelExplainabilityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateModelExplainabilityJobDefinitionCommand.ts index 4f7f07b74cc15..e08eea2fac399 100644 --- a/clients/client-sagemaker/src/commands/CreateModelExplainabilityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelExplainabilityJobDefinitionCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateModelExplainabilityJobDefinitionRequest, CreateModelExplainabilityJobDefinitionResponse, } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateModelExplainabilityJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateModelPackageCommand.ts b/clients/client-sagemaker/src/commands/CreateModelPackageCommand.ts index 19f1e61cb108e..535bccb71fbd3 100644 --- a/clients/client-sagemaker/src/commands/CreateModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelPackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelPackageInput, CreateModelPackageOutput } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateModelPackageInput, CreateModelPackageOutput } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateModelPackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateModelPackageGroupCommand.ts b/clients/client-sagemaker/src/commands/CreateModelPackageGroupCommand.ts index 0471072073343..b339c7d27b8aa 100644 --- a/clients/client-sagemaker/src/commands/CreateModelPackageGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelPackageGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelPackageGroupInput, CreateModelPackageGroupOutput } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateModelPackageGroupInput, CreateModelPackageGroupOutput } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateModelPackageGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateModelQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/CreateModelQualityJobDefinitionCommand.ts index d50c9510b8927..87041510740a7 100644 --- a/clients/client-sagemaker/src/commands/CreateModelQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateModelQualityJobDefinitionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateModelQualityJobDefinitionRequest, CreateModelQualityJobDefinitionResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { + CreateModelQualityJobDefinitionRequest, + CreateModelQualityJobDefinitionResponse, +} from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateModelQualityJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/CreateMonitoringScheduleCommand.ts index e6a066bfee743..4c9dc3c13a1c4 100644 --- a/clients/client-sagemaker/src/commands/CreateMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateMonitoringScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMonitoringScheduleRequest, CreateMonitoringScheduleResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateMonitoringScheduleRequest, CreateMonitoringScheduleResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateMonitoringSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/CreateNotebookInstanceCommand.ts index e6129b3d87b73..61a98c27c25c1 100644 --- a/clients/client-sagemaker/src/commands/CreateNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateNotebookInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNotebookInstanceInput, CreateNotebookInstanceOutput } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateNotebookInstanceInput, CreateNotebookInstanceOutput } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateNotebookInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateNotebookInstanceLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateNotebookInstanceLifecycleConfigCommand.ts index e3ebb988dae73..bce7392880460 100644 --- a/clients/client-sagemaker/src/commands/CreateNotebookInstanceLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateNotebookInstanceLifecycleConfigCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateNotebookInstanceLifecycleConfigInput, CreateNotebookInstanceLifecycleConfigOutput, } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateNotebookInstanceLifecycleConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateOptimizationJobCommand.ts b/clients/client-sagemaker/src/commands/CreateOptimizationJobCommand.ts index b92bd45d84078..21f2bddf92512 100644 --- a/clients/client-sagemaker/src/commands/CreateOptimizationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateOptimizationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOptimizationJobRequest, CreateOptimizationJobResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateOptimizationJobRequest, CreateOptimizationJobResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateOptimizationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreatePartnerAppCommand.ts b/clients/client-sagemaker/src/commands/CreatePartnerAppCommand.ts index 7e7fc93468040..d40f8172fa40b 100644 --- a/clients/client-sagemaker/src/commands/CreatePartnerAppCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePartnerAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePartnerAppRequest, CreatePartnerAppResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreatePartnerAppRequest, CreatePartnerAppResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreatePartnerApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreatePartnerAppPresignedUrlCommand.ts b/clients/client-sagemaker/src/commands/CreatePartnerAppPresignedUrlCommand.ts index c392d08676063..132f52ebf34ef 100644 --- a/clients/client-sagemaker/src/commands/CreatePartnerAppPresignedUrlCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePartnerAppPresignedUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePartnerAppPresignedUrlRequest, CreatePartnerAppPresignedUrlResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreatePartnerAppPresignedUrlRequest, CreatePartnerAppPresignedUrlResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreatePartnerAppPresignedUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreatePipelineCommand.ts b/clients/client-sagemaker/src/commands/CreatePipelineCommand.ts index 758d307b18ae7..c37a6df89695e 100644 --- a/clients/client-sagemaker/src/commands/CreatePipelineCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreatePipelineRequest, CreatePipelineResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreatePresignedDomainUrlCommand.ts b/clients/client-sagemaker/src/commands/CreatePresignedDomainUrlCommand.ts index 56b797c4872b4..8bd52b7e4575f 100644 --- a/clients/client-sagemaker/src/commands/CreatePresignedDomainUrlCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePresignedDomainUrlCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePresignedDomainUrlRequest, CreatePresignedDomainUrlResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreatePresignedDomainUrlRequest, CreatePresignedDomainUrlResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreatePresignedDomainUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreatePresignedMlflowTrackingServerUrlCommand.ts b/clients/client-sagemaker/src/commands/CreatePresignedMlflowTrackingServerUrlCommand.ts index ff9f2db376a3b..4ade6e1f1f4bd 100644 --- a/clients/client-sagemaker/src/commands/CreatePresignedMlflowTrackingServerUrlCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePresignedMlflowTrackingServerUrlCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreatePresignedMlflowTrackingServerUrlRequest, CreatePresignedMlflowTrackingServerUrlResponse, } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreatePresignedMlflowTrackingServerUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreatePresignedNotebookInstanceUrlCommand.ts b/clients/client-sagemaker/src/commands/CreatePresignedNotebookInstanceUrlCommand.ts index fef9fd50ddc4c..71b16a826bac1 100644 --- a/clients/client-sagemaker/src/commands/CreatePresignedNotebookInstanceUrlCommand.ts +++ b/clients/client-sagemaker/src/commands/CreatePresignedNotebookInstanceUrlCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePresignedNotebookInstanceUrlInput, CreatePresignedNotebookInstanceUrlOutput } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { + CreatePresignedNotebookInstanceUrlInput, + CreatePresignedNotebookInstanceUrlOutput, +} from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreatePresignedNotebookInstanceUrl } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateProcessingJobCommand.ts b/clients/client-sagemaker/src/commands/CreateProcessingJobCommand.ts index c794d66369a02..e6de47ce5e829 100644 --- a/clients/client-sagemaker/src/commands/CreateProcessingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateProcessingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProcessingJobRequest, CreateProcessingJobResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateProcessingJobRequest, CreateProcessingJobResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateProcessingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateProjectCommand.ts b/clients/client-sagemaker/src/commands/CreateProjectCommand.ts index f105bc063eea8..9e0f63848bb18 100644 --- a/clients/client-sagemaker/src/commands/CreateProjectCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProjectInput, CreateProjectOutput } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateProjectInput, CreateProjectOutput } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateSpaceCommand.ts b/clients/client-sagemaker/src/commands/CreateSpaceCommand.ts index d986d89727c7d..32d6940d9e4c3 100644 --- a/clients/client-sagemaker/src/commands/CreateSpaceCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSpaceRequest, CreateSpaceResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateSpaceRequest, CreateSpaceResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateStudioLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/CreateStudioLifecycleConfigCommand.ts index 25d139639adae..97b52da951055 100644 --- a/clients/client-sagemaker/src/commands/CreateStudioLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateStudioLifecycleConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStudioLifecycleConfigRequest, CreateStudioLifecycleConfigResponse } from "../models/models_1"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateStudioLifecycleConfigRequest, CreateStudioLifecycleConfigResponse } from "../models/models_1"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateStudioLifecycleConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateTrainingJobCommand.ts b/clients/client-sagemaker/src/commands/CreateTrainingJobCommand.ts index 7197b20503e04..d746104541afa 100644 --- a/clients/client-sagemaker/src/commands/CreateTrainingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTrainingJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrainingJobRequest } from "../models/models_1"; -import { CreateTrainingJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateTrainingJobRequest } from "../models/models_1"; +import type { CreateTrainingJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateTrainingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateTrainingPlanCommand.ts b/clients/client-sagemaker/src/commands/CreateTrainingPlanCommand.ts index eaa5b58cbc10f..6e47f5bc0843b 100644 --- a/clients/client-sagemaker/src/commands/CreateTrainingPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTrainingPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrainingPlanRequest, CreateTrainingPlanResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateTrainingPlanRequest, CreateTrainingPlanResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateTrainingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateTransformJobCommand.ts b/clients/client-sagemaker/src/commands/CreateTransformJobCommand.ts index 183c066c02050..d12e9134a9d4d 100644 --- a/clients/client-sagemaker/src/commands/CreateTransformJobCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTransformJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTransformJobRequest, CreateTransformJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateTransformJobRequest, CreateTransformJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateTransformJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateTrialCommand.ts b/clients/client-sagemaker/src/commands/CreateTrialCommand.ts index 22b7a4a513f77..1928eefee0cb8 100644 --- a/clients/client-sagemaker/src/commands/CreateTrialCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTrialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrialRequest, CreateTrialResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateTrialRequest, CreateTrialResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateTrial } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/CreateTrialComponentCommand.ts index cdcad67446550..5f8ea36e61bb1 100644 --- a/clients/client-sagemaker/src/commands/CreateTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateTrialComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrialComponentRequest, CreateTrialComponentResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateTrialComponentRequest, CreateTrialComponentResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateTrialComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts b/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts index 89158eec1fcd0..c8e128fcf0e43 100644 --- a/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateUserProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserProfileRequest, CreateUserProfileResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateUserProfileRequest, CreateUserProfileResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateUserProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateWorkforceCommand.ts b/clients/client-sagemaker/src/commands/CreateWorkforceCommand.ts index 8811c6ce0e2b7..5262edf084a91 100644 --- a/clients/client-sagemaker/src/commands/CreateWorkforceCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateWorkforceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkforceRequest, CreateWorkforceResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateWorkforceRequest, CreateWorkforceResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateWorkforce } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/CreateWorkteamCommand.ts b/clients/client-sagemaker/src/commands/CreateWorkteamCommand.ts index d790281d74e34..dae691cade7fa 100644 --- a/clients/client-sagemaker/src/commands/CreateWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/CreateWorkteamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkteamRequest, CreateWorkteamResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { CreateWorkteamRequest, CreateWorkteamResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { CreateWorkteam } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteActionCommand.ts b/clients/client-sagemaker/src/commands/DeleteActionCommand.ts index 082199462042a..f891e8d322809 100644 --- a/clients/client-sagemaker/src/commands/DeleteActionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteActionRequest, DeleteActionResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteActionRequest, DeleteActionResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteAlgorithmCommand.ts b/clients/client-sagemaker/src/commands/DeleteAlgorithmCommand.ts index 656ad9f2a436e..05281e02f2be5 100644 --- a/clients/client-sagemaker/src/commands/DeleteAlgorithmCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteAlgorithmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAlgorithmInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteAlgorithmInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteAlgorithm } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteAppCommand.ts b/clients/client-sagemaker/src/commands/DeleteAppCommand.ts index b0a9c9f25fefc..32fb565b2ff3b 100644 --- a/clients/client-sagemaker/src/commands/DeleteAppCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteAppRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteAppImageConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteAppImageConfigCommand.ts index 2f57d2c6a0cd9..bb18a8b59a727 100644 --- a/clients/client-sagemaker/src/commands/DeleteAppImageConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteAppImageConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppImageConfigRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteAppImageConfigRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteAppImageConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteArtifactCommand.ts b/clients/client-sagemaker/src/commands/DeleteArtifactCommand.ts index bdbf108190e10..53d3fba95e5ec 100644 --- a/clients/client-sagemaker/src/commands/DeleteArtifactCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteArtifactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteArtifactRequest, DeleteArtifactResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteArtifactRequest, DeleteArtifactResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteArtifact } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteAssociationCommand.ts b/clients/client-sagemaker/src/commands/DeleteAssociationCommand.ts index 3efd3058934ba..68070d21cd9fd 100644 --- a/clients/client-sagemaker/src/commands/DeleteAssociationCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteAssociationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssociationRequest, DeleteAssociationResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteAssociationRequest, DeleteAssociationResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteAssociation } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteClusterCommand.ts b/clients/client-sagemaker/src/commands/DeleteClusterCommand.ts index 80a9da4713eea..a5a1cb83d5bd1 100644 --- a/clients/client-sagemaker/src/commands/DeleteClusterCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteClusterSchedulerConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteClusterSchedulerConfigCommand.ts index c5b0fc2f7e53b..8c797b5fbb04f 100644 --- a/clients/client-sagemaker/src/commands/DeleteClusterSchedulerConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteClusterSchedulerConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClusterSchedulerConfigRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteClusterSchedulerConfigRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteClusterSchedulerConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteCodeRepositoryCommand.ts b/clients/client-sagemaker/src/commands/DeleteCodeRepositoryCommand.ts index 6444c4fec82d8..7170958c15468 100644 --- a/clients/client-sagemaker/src/commands/DeleteCodeRepositoryCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteCodeRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCodeRepositoryInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteCodeRepositoryInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteCodeRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteCompilationJobCommand.ts b/clients/client-sagemaker/src/commands/DeleteCompilationJobCommand.ts index 0aa9cb25c00c7..a7c157f26ff3c 100644 --- a/clients/client-sagemaker/src/commands/DeleteCompilationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteCompilationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCompilationJobRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteCompilationJobRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteCompilationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteComputeQuotaCommand.ts b/clients/client-sagemaker/src/commands/DeleteComputeQuotaCommand.ts index 76a038ef5f1aa..fcd3fa0a9de71 100644 --- a/clients/client-sagemaker/src/commands/DeleteComputeQuotaCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteComputeQuotaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteComputeQuotaRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteComputeQuotaRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteComputeQuota } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteContextCommand.ts b/clients/client-sagemaker/src/commands/DeleteContextCommand.ts index a4a7a25312c0a..969b69ad114e5 100644 --- a/clients/client-sagemaker/src/commands/DeleteContextCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteContextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContextRequest, DeleteContextResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteContextRequest, DeleteContextResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteContext } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts index e45412cee9c82..a0e07ede0352c 100644 --- a/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteDataQualityJobDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataQualityJobDefinitionRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteDataQualityJobDefinitionRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteDataQualityJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts b/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts index 29a09c9e2bbbc..235fe2c5a32ec 100644 --- a/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteDeviceFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeviceFleetRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteDeviceFleetRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteDeviceFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteDomainCommand.ts b/clients/client-sagemaker/src/commands/DeleteDomainCommand.ts index 38bec8d6dd011..14c05338a57a9 100644 --- a/clients/client-sagemaker/src/commands/DeleteDomainCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteDomainRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentPlanCommand.ts b/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentPlanCommand.ts index 177c9b6b2f3ae..454c4bbfc0f9c 100644 --- a/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEdgeDeploymentPlanRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteEdgeDeploymentPlanRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteEdgeDeploymentPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentStageCommand.ts b/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentStageCommand.ts index 4cb5d74f5244c..df73dee3fd45b 100644 --- a/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentStageCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteEdgeDeploymentStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEdgeDeploymentStageRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteEdgeDeploymentStageRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteEdgeDeploymentStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteEndpointCommand.ts b/clients/client-sagemaker/src/commands/DeleteEndpointCommand.ts index 48d7b34e6a0a9..0d5f384ca9b3c 100644 --- a/clients/client-sagemaker/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEndpointInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteEndpointInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteEndpointConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteEndpointConfigCommand.ts index 613defe8e375f..08fc062415b00 100644 --- a/clients/client-sagemaker/src/commands/DeleteEndpointConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteEndpointConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEndpointConfigInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteEndpointConfigInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteEndpointConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteExperimentCommand.ts b/clients/client-sagemaker/src/commands/DeleteExperimentCommand.ts index 3d2b9f5060455..692ab45005e2b 100644 --- a/clients/client-sagemaker/src/commands/DeleteExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteExperimentRequest, DeleteExperimentResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteExperimentRequest, DeleteExperimentResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts index 29a78a5c37a1e..2491af3ebd591 100644 --- a/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteFeatureGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFeatureGroupRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteFeatureGroupRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteFeatureGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteFlowDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteFlowDefinitionCommand.ts index 27a1928c32c68..9879e5fbc0bc3 100644 --- a/clients/client-sagemaker/src/commands/DeleteFlowDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteFlowDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFlowDefinitionRequest, DeleteFlowDefinitionResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteFlowDefinitionRequest, DeleteFlowDefinitionResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteFlowDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteHubCommand.ts b/clients/client-sagemaker/src/commands/DeleteHubCommand.ts index bab816be689aa..02ca43407c7e2 100644 --- a/clients/client-sagemaker/src/commands/DeleteHubCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHubCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHubRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteHubRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteHub } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteHubContentCommand.ts b/clients/client-sagemaker/src/commands/DeleteHubContentCommand.ts index fbd47ba4dd19d..accd80e0c1706 100644 --- a/clients/client-sagemaker/src/commands/DeleteHubContentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHubContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHubContentRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteHubContentRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteHubContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteHubContentReferenceCommand.ts b/clients/client-sagemaker/src/commands/DeleteHubContentReferenceCommand.ts index f5791313dde44..6d08d2297745a 100644 --- a/clients/client-sagemaker/src/commands/DeleteHubContentReferenceCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHubContentReferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHubContentReferenceRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteHubContentReferenceRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteHubContentReference } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteHumanTaskUiCommand.ts b/clients/client-sagemaker/src/commands/DeleteHumanTaskUiCommand.ts index 9541865df9bab..6d62d016f1ce1 100644 --- a/clients/client-sagemaker/src/commands/DeleteHumanTaskUiCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHumanTaskUiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHumanTaskUiRequest, DeleteHumanTaskUiResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteHumanTaskUiRequest, DeleteHumanTaskUiResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteHumanTaskUi } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/DeleteHyperParameterTuningJobCommand.ts index 6916cbd5ae68b..0070dc7df3954 100644 --- a/clients/client-sagemaker/src/commands/DeleteHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteHyperParameterTuningJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHyperParameterTuningJobRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteHyperParameterTuningJobRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteHyperParameterTuningJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteImageCommand.ts b/clients/client-sagemaker/src/commands/DeleteImageCommand.ts index 15fb69662b97d..3b42751f9fcce 100644 --- a/clients/client-sagemaker/src/commands/DeleteImageCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImageRequest, DeleteImageResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteImageRequest, DeleteImageResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteImageVersionCommand.ts b/clients/client-sagemaker/src/commands/DeleteImageVersionCommand.ts index 810fcf9c688c8..6cc336fbd0fc2 100644 --- a/clients/client-sagemaker/src/commands/DeleteImageVersionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteImageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImageVersionRequest, DeleteImageVersionResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteImageVersionRequest, DeleteImageVersionResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteImageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteInferenceComponentCommand.ts b/clients/client-sagemaker/src/commands/DeleteInferenceComponentCommand.ts index f66999df744e2..67a903b6b2b74 100644 --- a/clients/client-sagemaker/src/commands/DeleteInferenceComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteInferenceComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInferenceComponentInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteInferenceComponentInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteInferenceComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/DeleteInferenceExperimentCommand.ts index 86df8c2e6d3f9..99dae802a0597 100644 --- a/clients/client-sagemaker/src/commands/DeleteInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteInferenceExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInferenceExperimentRequest, DeleteInferenceExperimentResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteInferenceExperimentRequest, DeleteInferenceExperimentResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteInferenceExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/DeleteMlflowTrackingServerCommand.ts index a3c1dc10d36be..20f11590fbc9b 100644 --- a/clients/client-sagemaker/src/commands/DeleteMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteMlflowTrackingServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMlflowTrackingServerRequest, DeleteMlflowTrackingServerResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteMlflowTrackingServerRequest, DeleteMlflowTrackingServerResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteMlflowTrackingServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteModelBiasJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelBiasJobDefinitionCommand.ts index 8ece8fbb9d4ef..4f8ae8d699f61 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelBiasJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelBiasJobDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelBiasJobDefinitionRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteModelBiasJobDefinitionRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteModelBiasJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteModelCardCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelCardCommand.ts index ad0edcd5c6f0f..c55c7f2c5a80e 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelCardCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelCardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelCardRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteModelCardRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteModelCard } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteModelCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelCommand.ts index 7ee7272b8b909..ab7f7a7e49154 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteModelInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteModelExplainabilityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelExplainabilityJobDefinitionCommand.ts index c04d030a76504..6db7056015061 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelExplainabilityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelExplainabilityJobDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelExplainabilityJobDefinitionRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteModelExplainabilityJobDefinitionRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteModelExplainabilityJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteModelPackageCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelPackageCommand.ts index b7d1bbab11b91..a88887a79ac7a 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelPackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelPackageInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteModelPackageInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteModelPackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteModelPackageGroupCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelPackageGroupCommand.ts index 0caffb2203122..1e6a3cf029c71 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelPackageGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelPackageGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelPackageGroupInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteModelPackageGroupInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteModelPackageGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteModelPackageGroupPolicyCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelPackageGroupPolicyCommand.ts index 0ce3faf088e13..b534099f4ecc3 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelPackageGroupPolicyCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelPackageGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelPackageGroupPolicyInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteModelPackageGroupPolicyInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteModelPackageGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteModelQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DeleteModelQualityJobDefinitionCommand.ts index 0f5819d9bbfb3..4ee66c1da9020 100644 --- a/clients/client-sagemaker/src/commands/DeleteModelQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteModelQualityJobDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteModelQualityJobDefinitionRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteModelQualityJobDefinitionRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteModelQualityJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/DeleteMonitoringScheduleCommand.ts index ad6b0165ecc27..c110122ad3322 100644 --- a/clients/client-sagemaker/src/commands/DeleteMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteMonitoringScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMonitoringScheduleRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteMonitoringScheduleRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteMonitoringSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/DeleteNotebookInstanceCommand.ts index 9ee58ae389440..ba93bd0781d92 100644 --- a/clients/client-sagemaker/src/commands/DeleteNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteNotebookInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNotebookInstanceInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteNotebookInstanceInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteNotebookInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteNotebookInstanceLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteNotebookInstanceLifecycleConfigCommand.ts index 423114484dede..6fb3c4ce32dc4 100644 --- a/clients/client-sagemaker/src/commands/DeleteNotebookInstanceLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteNotebookInstanceLifecycleConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNotebookInstanceLifecycleConfigInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteNotebookInstanceLifecycleConfigInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteNotebookInstanceLifecycleConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteOptimizationJobCommand.ts b/clients/client-sagemaker/src/commands/DeleteOptimizationJobCommand.ts index 9549ea9610366..e62757d7c4bb6 100644 --- a/clients/client-sagemaker/src/commands/DeleteOptimizationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteOptimizationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOptimizationJobRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteOptimizationJobRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteOptimizationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeletePartnerAppCommand.ts b/clients/client-sagemaker/src/commands/DeletePartnerAppCommand.ts index 106ae2eb98bee..be467926e924a 100644 --- a/clients/client-sagemaker/src/commands/DeletePartnerAppCommand.ts +++ b/clients/client-sagemaker/src/commands/DeletePartnerAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePartnerAppRequest, DeletePartnerAppResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeletePartnerAppRequest, DeletePartnerAppResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeletePartnerApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeletePipelineCommand.ts b/clients/client-sagemaker/src/commands/DeletePipelineCommand.ts index 5fa2afdfa6368..b1a05380d349f 100644 --- a/clients/client-sagemaker/src/commands/DeletePipelineCommand.ts +++ b/clients/client-sagemaker/src/commands/DeletePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePipelineRequest, DeletePipelineResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeletePipelineRequest, DeletePipelineResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeletePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteProcessingJobCommand.ts b/clients/client-sagemaker/src/commands/DeleteProcessingJobCommand.ts index 333b38cfb8bb4..186d29390dedb 100644 --- a/clients/client-sagemaker/src/commands/DeleteProcessingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteProcessingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProcessingJobRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteProcessingJobRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteProcessingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteProjectCommand.ts b/clients/client-sagemaker/src/commands/DeleteProjectCommand.ts index 6512fed9f7492..2ffd992ac6fa6 100644 --- a/clients/client-sagemaker/src/commands/DeleteProjectCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProjectInput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteProjectInput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteSpaceCommand.ts b/clients/client-sagemaker/src/commands/DeleteSpaceCommand.ts index 33e58a3d87049..88251d28be7e2 100644 --- a/clients/client-sagemaker/src/commands/DeleteSpaceCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSpaceRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteSpaceRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteStudioLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/DeleteStudioLifecycleConfigCommand.ts index 2180d28b8a61a..a58285b993c2e 100644 --- a/clients/client-sagemaker/src/commands/DeleteStudioLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteStudioLifecycleConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStudioLifecycleConfigRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteStudioLifecycleConfigRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteStudioLifecycleConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteTagsCommand.ts b/clients/client-sagemaker/src/commands/DeleteTagsCommand.ts index 83026455354f9..b4a1aab0cb45b 100644 --- a/clients/client-sagemaker/src/commands/DeleteTagsCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagsInput, DeleteTagsOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteTagsInput, DeleteTagsOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteTrainingJobCommand.ts b/clients/client-sagemaker/src/commands/DeleteTrainingJobCommand.ts index 7cee347642047..2daecdf792a5e 100644 --- a/clients/client-sagemaker/src/commands/DeleteTrainingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteTrainingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrainingJobRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteTrainingJobRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteTrainingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteTrialCommand.ts b/clients/client-sagemaker/src/commands/DeleteTrialCommand.ts index cfe95d5c74cc2..c2ef55b81814d 100644 --- a/clients/client-sagemaker/src/commands/DeleteTrialCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteTrialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrialRequest, DeleteTrialResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteTrialRequest, DeleteTrialResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteTrial } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/DeleteTrialComponentCommand.ts index e4b52b98cfce1..1c59a0534e8b1 100644 --- a/clients/client-sagemaker/src/commands/DeleteTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteTrialComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrialComponentRequest, DeleteTrialComponentResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteTrialComponentRequest, DeleteTrialComponentResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteTrialComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteUserProfileCommand.ts b/clients/client-sagemaker/src/commands/DeleteUserProfileCommand.ts index f1a430cf7d6a0..de7487b9fd6b6 100644 --- a/clients/client-sagemaker/src/commands/DeleteUserProfileCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteUserProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserProfileRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteUserProfileRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteUserProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteWorkforceCommand.ts b/clients/client-sagemaker/src/commands/DeleteWorkforceCommand.ts index 0959dbc0f74cf..1d4f6869f6a10 100644 --- a/clients/client-sagemaker/src/commands/DeleteWorkforceCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteWorkforceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkforceRequest, DeleteWorkforceResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteWorkforceRequest, DeleteWorkforceResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteWorkforce } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeleteWorkteamCommand.ts b/clients/client-sagemaker/src/commands/DeleteWorkteamCommand.ts index 3228bffd1d1fa..45efc97418041 100644 --- a/clients/client-sagemaker/src/commands/DeleteWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/DeleteWorkteamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkteamRequest, DeleteWorkteamResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeleteWorkteamRequest, DeleteWorkteamResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeleteWorkteam } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DeregisterDevicesCommand.ts b/clients/client-sagemaker/src/commands/DeregisterDevicesCommand.ts index a52bc62c5eec0..a97dcc567b3a9 100644 --- a/clients/client-sagemaker/src/commands/DeregisterDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/DeregisterDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterDevicesRequest } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DeregisterDevicesRequest } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DeregisterDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeActionCommand.ts b/clients/client-sagemaker/src/commands/DescribeActionCommand.ts index 29b41a4d624ba..5f67de73173cb 100644 --- a/clients/client-sagemaker/src/commands/DescribeActionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeActionRequest, DescribeActionResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeActionRequest, DescribeActionResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeAlgorithmCommand.ts b/clients/client-sagemaker/src/commands/DescribeAlgorithmCommand.ts index 062182bf49662..897effd2ce9be 100644 --- a/clients/client-sagemaker/src/commands/DescribeAlgorithmCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeAlgorithmCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAlgorithmInput, DescribeAlgorithmOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeAlgorithmInput, DescribeAlgorithmOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeAlgorithm } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeAppCommand.ts b/clients/client-sagemaker/src/commands/DescribeAppCommand.ts index d0437135585cb..9f922586d3ee3 100644 --- a/clients/client-sagemaker/src/commands/DescribeAppCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppRequest, DescribeAppResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeAppRequest, DescribeAppResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeAppImageConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeAppImageConfigCommand.ts index eb063e84de8f2..80ca80570c794 100644 --- a/clients/client-sagemaker/src/commands/DescribeAppImageConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeAppImageConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppImageConfigRequest, DescribeAppImageConfigResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeAppImageConfigRequest, DescribeAppImageConfigResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeAppImageConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeArtifactCommand.ts b/clients/client-sagemaker/src/commands/DescribeArtifactCommand.ts index b3fd0c8ce5c1b..bc5cdae7a218c 100644 --- a/clients/client-sagemaker/src/commands/DescribeArtifactCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeArtifactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeArtifactRequest, DescribeArtifactResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeArtifactRequest, DescribeArtifactResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeArtifact } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeAutoMLJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeAutoMLJobCommand.ts index 0d59cea112899..49f4ff2c8f41a 100644 --- a/clients/client-sagemaker/src/commands/DescribeAutoMLJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeAutoMLJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAutoMLJobRequest, DescribeAutoMLJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeAutoMLJobRequest, DescribeAutoMLJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeAutoMLJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeAutoMLJobV2Command.ts b/clients/client-sagemaker/src/commands/DescribeAutoMLJobV2Command.ts index df089538af4bf..67789fa9507bf 100644 --- a/clients/client-sagemaker/src/commands/DescribeAutoMLJobV2Command.ts +++ b/clients/client-sagemaker/src/commands/DescribeAutoMLJobV2Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAutoMLJobV2Request, DescribeAutoMLJobV2Response } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeAutoMLJobV2Request, DescribeAutoMLJobV2Response } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeAutoMLJobV2 } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeClusterCommand.ts b/clients/client-sagemaker/src/commands/DescribeClusterCommand.ts index 7bf137103bd76..0a232bfb99253 100644 --- a/clients/client-sagemaker/src/commands/DescribeClusterCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeClusterEventCommand.ts b/clients/client-sagemaker/src/commands/DescribeClusterEventCommand.ts index 990fadde52f94..de96b7ac02fff 100644 --- a/clients/client-sagemaker/src/commands/DescribeClusterEventCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeClusterEventCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterEventRequest, DescribeClusterEventResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeClusterEventRequest, DescribeClusterEventResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeClusterEvent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeClusterNodeCommand.ts b/clients/client-sagemaker/src/commands/DescribeClusterNodeCommand.ts index 24d62af27835a..49d56254fede1 100644 --- a/clients/client-sagemaker/src/commands/DescribeClusterNodeCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeClusterNodeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterNodeRequest, DescribeClusterNodeResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeClusterNodeRequest, DescribeClusterNodeResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeClusterNode } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeClusterSchedulerConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeClusterSchedulerConfigCommand.ts index bfc38ead5dfbc..78b73876012c7 100644 --- a/clients/client-sagemaker/src/commands/DescribeClusterSchedulerConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeClusterSchedulerConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterSchedulerConfigRequest, DescribeClusterSchedulerConfigResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeClusterSchedulerConfigRequest, DescribeClusterSchedulerConfigResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeClusterSchedulerConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeCodeRepositoryCommand.ts b/clients/client-sagemaker/src/commands/DescribeCodeRepositoryCommand.ts index 493a44d40697d..581d5f99a4c6d 100644 --- a/clients/client-sagemaker/src/commands/DescribeCodeRepositoryCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeCodeRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCodeRepositoryInput, DescribeCodeRepositoryOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeCodeRepositoryInput, DescribeCodeRepositoryOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeCodeRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeCompilationJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeCompilationJobCommand.ts index 5568165643456..b428157899726 100644 --- a/clients/client-sagemaker/src/commands/DescribeCompilationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeCompilationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCompilationJobRequest, DescribeCompilationJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeCompilationJobRequest, DescribeCompilationJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeCompilationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeComputeQuotaCommand.ts b/clients/client-sagemaker/src/commands/DescribeComputeQuotaCommand.ts index 4ff74f9eba80f..bc12a55eea57b 100644 --- a/clients/client-sagemaker/src/commands/DescribeComputeQuotaCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeComputeQuotaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeComputeQuotaRequest, DescribeComputeQuotaResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeComputeQuotaRequest, DescribeComputeQuotaResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeComputeQuota } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeContextCommand.ts b/clients/client-sagemaker/src/commands/DescribeContextCommand.ts index 16458b65417da..31f096bf60013 100644 --- a/clients/client-sagemaker/src/commands/DescribeContextCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeContextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeContextRequest, DescribeContextResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeContextRequest, DescribeContextResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeContext } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeDataQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeDataQualityJobDefinitionCommand.ts index 88f9d5b41696e..82a2c7c539667 100644 --- a/clients/client-sagemaker/src/commands/DescribeDataQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeDataQualityJobDefinitionCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDataQualityJobDefinitionRequest, DescribeDataQualityJobDefinitionResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { + DescribeDataQualityJobDefinitionRequest, + DescribeDataQualityJobDefinitionResponse, +} from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeDataQualityJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeDeviceCommand.ts b/clients/client-sagemaker/src/commands/DescribeDeviceCommand.ts index 4bd21708d69da..a7aa25dd801bc 100644 --- a/clients/client-sagemaker/src/commands/DescribeDeviceCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeDeviceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeviceRequest, DescribeDeviceResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeDeviceRequest, DescribeDeviceResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeDevice } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeDeviceFleetCommand.ts b/clients/client-sagemaker/src/commands/DescribeDeviceFleetCommand.ts index cb1c36809d815..d8a8b186d54c4 100644 --- a/clients/client-sagemaker/src/commands/DescribeDeviceFleetCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeDeviceFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeviceFleetRequest, DescribeDeviceFleetResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeDeviceFleetRequest, DescribeDeviceFleetResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeDeviceFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts b/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts index f3bff1d82668e..02cb25e2f2ca5 100644 --- a/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainRequest, DescribeDomainResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeDomainRequest, DescribeDomainResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeEdgeDeploymentPlanCommand.ts b/clients/client-sagemaker/src/commands/DescribeEdgeDeploymentPlanCommand.ts index 93c21dd77d64e..e3c72bd5c821c 100644 --- a/clients/client-sagemaker/src/commands/DescribeEdgeDeploymentPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeEdgeDeploymentPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEdgeDeploymentPlanRequest, DescribeEdgeDeploymentPlanResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeEdgeDeploymentPlanRequest, DescribeEdgeDeploymentPlanResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeEdgeDeploymentPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeEdgePackagingJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeEdgePackagingJobCommand.ts index 4dd8a0c835808..869e99b02cc0f 100644 --- a/clients/client-sagemaker/src/commands/DescribeEdgePackagingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeEdgePackagingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEdgePackagingJobRequest, DescribeEdgePackagingJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeEdgePackagingJobRequest, DescribeEdgePackagingJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeEdgePackagingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeEndpointCommand.ts b/clients/client-sagemaker/src/commands/DescribeEndpointCommand.ts index 242020f714b5c..16a320f3946b4 100644 --- a/clients/client-sagemaker/src/commands/DescribeEndpointCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointInput, DescribeEndpointOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeEndpointInput, DescribeEndpointOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeEndpointConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeEndpointConfigCommand.ts index 96edc11568266..6065c32031399 100644 --- a/clients/client-sagemaker/src/commands/DescribeEndpointConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeEndpointConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointConfigInput, DescribeEndpointConfigOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeEndpointConfigInput, DescribeEndpointConfigOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeEndpointConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeExperimentCommand.ts b/clients/client-sagemaker/src/commands/DescribeExperimentCommand.ts index 6fae919368c46..08becfeee704e 100644 --- a/clients/client-sagemaker/src/commands/DescribeExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExperimentRequest, DescribeExperimentResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeExperimentRequest, DescribeExperimentResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/DescribeFeatureGroupCommand.ts index fc33954c6797d..152bcbebab620 100644 --- a/clients/client-sagemaker/src/commands/DescribeFeatureGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeFeatureGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFeatureGroupRequest, DescribeFeatureGroupResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeFeatureGroupRequest, DescribeFeatureGroupResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeFeatureGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeFeatureMetadataCommand.ts b/clients/client-sagemaker/src/commands/DescribeFeatureMetadataCommand.ts index 272a4c42a32c1..911fee9302a71 100644 --- a/clients/client-sagemaker/src/commands/DescribeFeatureMetadataCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeFeatureMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFeatureMetadataRequest, DescribeFeatureMetadataResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeFeatureMetadataRequest, DescribeFeatureMetadataResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeFeatureMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeFlowDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeFlowDefinitionCommand.ts index 667ced2bbdfdb..cc86480ec4b8f 100644 --- a/clients/client-sagemaker/src/commands/DescribeFlowDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeFlowDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFlowDefinitionRequest, DescribeFlowDefinitionResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeFlowDefinitionRequest, DescribeFlowDefinitionResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeFlowDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeHubCommand.ts b/clients/client-sagemaker/src/commands/DescribeHubCommand.ts index f33e4c25638b8..e254869ffc9ff 100644 --- a/clients/client-sagemaker/src/commands/DescribeHubCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeHubCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHubRequest, DescribeHubResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeHubRequest, DescribeHubResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeHub } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeHubContentCommand.ts b/clients/client-sagemaker/src/commands/DescribeHubContentCommand.ts index 31ea9983ccd3d..866c88e638d40 100644 --- a/clients/client-sagemaker/src/commands/DescribeHubContentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeHubContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHubContentRequest, DescribeHubContentResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeHubContentRequest, DescribeHubContentResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeHubContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeHumanTaskUiCommand.ts b/clients/client-sagemaker/src/commands/DescribeHumanTaskUiCommand.ts index 9b734adba3c50..1638e377dd6ec 100644 --- a/clients/client-sagemaker/src/commands/DescribeHumanTaskUiCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeHumanTaskUiCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHumanTaskUiRequest, DescribeHumanTaskUiResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeHumanTaskUiRequest, DescribeHumanTaskUiResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeHumanTaskUi } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeHyperParameterTuningJobCommand.ts index 304bfa06c1430..5d689cba41db8 100644 --- a/clients/client-sagemaker/src/commands/DescribeHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeHyperParameterTuningJobCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHyperParameterTuningJobRequest, DescribeHyperParameterTuningJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { + DescribeHyperParameterTuningJobRequest, + DescribeHyperParameterTuningJobResponse, +} from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeHyperParameterTuningJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeImageCommand.ts b/clients/client-sagemaker/src/commands/DescribeImageCommand.ts index 67c907d415648..7bc3c1a1be7a7 100644 --- a/clients/client-sagemaker/src/commands/DescribeImageCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageRequest, DescribeImageResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeImageRequest, DescribeImageResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeImageVersionCommand.ts b/clients/client-sagemaker/src/commands/DescribeImageVersionCommand.ts index 3b1300211b19c..eea7212aa8c5a 100644 --- a/clients/client-sagemaker/src/commands/DescribeImageVersionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeImageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageVersionRequest, DescribeImageVersionResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeImageVersionRequest, DescribeImageVersionResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeImageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeInferenceComponentCommand.ts b/clients/client-sagemaker/src/commands/DescribeInferenceComponentCommand.ts index 21b55d861a2c4..ffdc9b2021038 100644 --- a/clients/client-sagemaker/src/commands/DescribeInferenceComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeInferenceComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInferenceComponentInput, DescribeInferenceComponentOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeInferenceComponentInput, DescribeInferenceComponentOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeInferenceComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/DescribeInferenceExperimentCommand.ts index ba7b593d433d7..48bddd67b3291 100644 --- a/clients/client-sagemaker/src/commands/DescribeInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeInferenceExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInferenceExperimentRequest, DescribeInferenceExperimentResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeInferenceExperimentRequest, DescribeInferenceExperimentResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeInferenceExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeInferenceRecommendationsJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeInferenceRecommendationsJobCommand.ts index a133ee307666d..3ef523acb4530 100644 --- a/clients/client-sagemaker/src/commands/DescribeInferenceRecommendationsJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeInferenceRecommendationsJobCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeInferenceRecommendationsJobRequest, DescribeInferenceRecommendationsJobResponse, } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeInferenceRecommendationsJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeLabelingJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeLabelingJobCommand.ts index e5c272ddf7680..fc2e33ce688c1 100644 --- a/clients/client-sagemaker/src/commands/DescribeLabelingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeLabelingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLabelingJobRequest, DescribeLabelingJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeLabelingJobRequest, DescribeLabelingJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeLabelingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeLineageGroupCommand.ts b/clients/client-sagemaker/src/commands/DescribeLineageGroupCommand.ts index 1d95a97b62f07..7dcf7ec03b6cb 100644 --- a/clients/client-sagemaker/src/commands/DescribeLineageGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeLineageGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLineageGroupRequest, DescribeLineageGroupResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeLineageGroupRequest, DescribeLineageGroupResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeLineageGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/DescribeMlflowTrackingServerCommand.ts index 3be142618f3ae..0e7b980f8d29e 100644 --- a/clients/client-sagemaker/src/commands/DescribeMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeMlflowTrackingServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMlflowTrackingServerRequest, DescribeMlflowTrackingServerResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeMlflowTrackingServerRequest, DescribeMlflowTrackingServerResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeMlflowTrackingServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeModelBiasJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelBiasJobDefinitionCommand.ts index ccdb40d98a40e..8d48a20a05417 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelBiasJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelBiasJobDefinitionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeModelBiasJobDefinitionRequest, DescribeModelBiasJobDefinitionResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeModelBiasJobDefinitionRequest, DescribeModelBiasJobDefinitionResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeModelBiasJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeModelCardCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelCardCommand.ts index 36f295cf9e232..a18f37956f672 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelCardCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelCardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeModelCardRequest, DescribeModelCardResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeModelCardRequest, DescribeModelCardResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeModelCard } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeModelCardExportJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelCardExportJobCommand.ts index 03145267e923e..6ba3f38d161fc 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelCardExportJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelCardExportJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeModelCardExportJobRequest, DescribeModelCardExportJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeModelCardExportJobRequest, DescribeModelCardExportJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeModelCardExportJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeModelCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelCommand.ts index 61d0f831f9448..4baa348919a69 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeModelInput, DescribeModelOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeModelInput, DescribeModelOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeModel } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeModelExplainabilityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelExplainabilityJobDefinitionCommand.ts index 5b3dca980df70..99331e3cf966a 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelExplainabilityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelExplainabilityJobDefinitionCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeModelExplainabilityJobDefinitionRequest, DescribeModelExplainabilityJobDefinitionResponse, } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeModelExplainabilityJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeModelPackageCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelPackageCommand.ts index 58eb820bb452c..f22b40d536f6b 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelPackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeModelPackageInput, DescribeModelPackageOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeModelPackageInput, DescribeModelPackageOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeModelPackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeModelPackageGroupCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelPackageGroupCommand.ts index 7b5c4d9576c76..f6e0601ada749 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelPackageGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelPackageGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeModelPackageGroupInput, DescribeModelPackageGroupOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeModelPackageGroupInput, DescribeModelPackageGroupOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeModelPackageGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeModelQualityJobDefinitionCommand.ts b/clients/client-sagemaker/src/commands/DescribeModelQualityJobDefinitionCommand.ts index ea05c9cdf91ec..94d67fc6e3306 100644 --- a/clients/client-sagemaker/src/commands/DescribeModelQualityJobDefinitionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeModelQualityJobDefinitionCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeModelQualityJobDefinitionRequest, DescribeModelQualityJobDefinitionResponse, } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeModelQualityJobDefinition } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/DescribeMonitoringScheduleCommand.ts index 0898f2cdbce6c..ebad290354567 100644 --- a/clients/client-sagemaker/src/commands/DescribeMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeMonitoringScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMonitoringScheduleRequest, DescribeMonitoringScheduleResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeMonitoringScheduleRequest, DescribeMonitoringScheduleResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeMonitoringSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/DescribeNotebookInstanceCommand.ts index a728a50bd504d..1221fd0cdb73c 100644 --- a/clients/client-sagemaker/src/commands/DescribeNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeNotebookInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNotebookInstanceInput, DescribeNotebookInstanceOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeNotebookInstanceInput, DescribeNotebookInstanceOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeNotebookInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeNotebookInstanceLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeNotebookInstanceLifecycleConfigCommand.ts index e301d75a8356d..a1fa48dd74500 100644 --- a/clients/client-sagemaker/src/commands/DescribeNotebookInstanceLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeNotebookInstanceLifecycleConfigCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeNotebookInstanceLifecycleConfigInput, DescribeNotebookInstanceLifecycleConfigOutput, } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeNotebookInstanceLifecycleConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeOptimizationJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeOptimizationJobCommand.ts index 7273e141042b0..c65e07a7f1a57 100644 --- a/clients/client-sagemaker/src/commands/DescribeOptimizationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeOptimizationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOptimizationJobRequest, DescribeOptimizationJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeOptimizationJobRequest, DescribeOptimizationJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeOptimizationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribePartnerAppCommand.ts b/clients/client-sagemaker/src/commands/DescribePartnerAppCommand.ts index be13fe2105a14..ba83662fb78df 100644 --- a/clients/client-sagemaker/src/commands/DescribePartnerAppCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribePartnerAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePartnerAppRequest, DescribePartnerAppResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribePartnerAppRequest, DescribePartnerAppResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribePartnerApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribePipelineCommand.ts b/clients/client-sagemaker/src/commands/DescribePipelineCommand.ts index 970a627be45e7..33ef22b7ba5ef 100644 --- a/clients/client-sagemaker/src/commands/DescribePipelineCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePipelineRequest, DescribePipelineResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribePipelineRequest, DescribePipelineResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribePipelineDefinitionForExecutionCommand.ts b/clients/client-sagemaker/src/commands/DescribePipelineDefinitionForExecutionCommand.ts index 67ee78c40a25c..57fe068aa082b 100644 --- a/clients/client-sagemaker/src/commands/DescribePipelineDefinitionForExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribePipelineDefinitionForExecutionCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribePipelineDefinitionForExecutionRequest, DescribePipelineDefinitionForExecutionResponse, } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribePipelineDefinitionForExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribePipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/DescribePipelineExecutionCommand.ts index 071ff6f8dd777..4bbde4c25a329 100644 --- a/clients/client-sagemaker/src/commands/DescribePipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribePipelineExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePipelineExecutionRequest, DescribePipelineExecutionResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribePipelineExecutionRequest, DescribePipelineExecutionResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribePipelineExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeProcessingJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeProcessingJobCommand.ts index 7340ee293b44d..11e5431c2b8d0 100644 --- a/clients/client-sagemaker/src/commands/DescribeProcessingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeProcessingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProcessingJobRequest, DescribeProcessingJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeProcessingJobRequest, DescribeProcessingJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeProcessingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeProjectCommand.ts b/clients/client-sagemaker/src/commands/DescribeProjectCommand.ts index 12514efb13488..8a08ac46cb0f4 100644 --- a/clients/client-sagemaker/src/commands/DescribeProjectCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProjectInput, DescribeProjectOutput } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeProjectInput, DescribeProjectOutput } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeReservedCapacityCommand.ts b/clients/client-sagemaker/src/commands/DescribeReservedCapacityCommand.ts index 159c2794c6457..fb3a3b92dc43e 100644 --- a/clients/client-sagemaker/src/commands/DescribeReservedCapacityCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeReservedCapacityCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReservedCapacityRequest, DescribeReservedCapacityResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeReservedCapacityRequest, DescribeReservedCapacityResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeReservedCapacity } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeSpaceCommand.ts b/clients/client-sagemaker/src/commands/DescribeSpaceCommand.ts index 823f573b31627..f0cc9fe1425eb 100644 --- a/clients/client-sagemaker/src/commands/DescribeSpaceCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpaceRequest, DescribeSpaceResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeSpaceRequest, DescribeSpaceResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeStudioLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/DescribeStudioLifecycleConfigCommand.ts index ce826dc81f8aa..56951eda13acd 100644 --- a/clients/client-sagemaker/src/commands/DescribeStudioLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeStudioLifecycleConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStudioLifecycleConfigRequest, DescribeStudioLifecycleConfigResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeStudioLifecycleConfigRequest, DescribeStudioLifecycleConfigResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeStudioLifecycleConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeSubscribedWorkteamCommand.ts b/clients/client-sagemaker/src/commands/DescribeSubscribedWorkteamCommand.ts index fc3af193c1455..ca1848002cc3d 100644 --- a/clients/client-sagemaker/src/commands/DescribeSubscribedWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeSubscribedWorkteamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSubscribedWorkteamRequest, DescribeSubscribedWorkteamResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeSubscribedWorkteamRequest, DescribeSubscribedWorkteamResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeSubscribedWorkteam } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeTrainingJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeTrainingJobCommand.ts index 3085a9b6e25ea..eb48204e24cfa 100644 --- a/clients/client-sagemaker/src/commands/DescribeTrainingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTrainingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrainingJobRequest, DescribeTrainingJobResponse } from "../models/models_2"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeTrainingJobRequest, DescribeTrainingJobResponse } from "../models/models_2"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeTrainingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeTrainingPlanCommand.ts b/clients/client-sagemaker/src/commands/DescribeTrainingPlanCommand.ts index b929e588258bb..693cfe465741c 100644 --- a/clients/client-sagemaker/src/commands/DescribeTrainingPlanCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTrainingPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrainingPlanRequest, DescribeTrainingPlanResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeTrainingPlanRequest, DescribeTrainingPlanResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeTrainingPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeTransformJobCommand.ts b/clients/client-sagemaker/src/commands/DescribeTransformJobCommand.ts index 31bec97380dc8..0ad450483c853 100644 --- a/clients/client-sagemaker/src/commands/DescribeTransformJobCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTransformJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTransformJobRequest, DescribeTransformJobResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeTransformJobRequest, DescribeTransformJobResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeTransformJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeTrialCommand.ts b/clients/client-sagemaker/src/commands/DescribeTrialCommand.ts index c44038fd0902d..733d33d54d48c 100644 --- a/clients/client-sagemaker/src/commands/DescribeTrialCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTrialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrialRequest, DescribeTrialResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeTrialRequest, DescribeTrialResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeTrial } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/DescribeTrialComponentCommand.ts index 570ed4eca86fa..6531923037327 100644 --- a/clients/client-sagemaker/src/commands/DescribeTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeTrialComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrialComponentRequest, DescribeTrialComponentResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeTrialComponentRequest, DescribeTrialComponentResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeTrialComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts b/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts index f25df0e2463b3..9938e3e9aca56 100644 --- a/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeUserProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserProfileRequest, DescribeUserProfileResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeUserProfileRequest, DescribeUserProfileResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeUserProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeWorkforceCommand.ts b/clients/client-sagemaker/src/commands/DescribeWorkforceCommand.ts index ddd6064afc4ce..840057688a8dc 100644 --- a/clients/client-sagemaker/src/commands/DescribeWorkforceCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeWorkforceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkforceRequest, DescribeWorkforceResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeWorkforceRequest, DescribeWorkforceResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeWorkforce } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DescribeWorkteamCommand.ts b/clients/client-sagemaker/src/commands/DescribeWorkteamCommand.ts index 276511c9d9b95..ec1b7ac8a1eb2 100644 --- a/clients/client-sagemaker/src/commands/DescribeWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/DescribeWorkteamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkteamRequest, DescribeWorkteamResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DescribeWorkteamRequest, DescribeWorkteamResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DescribeWorkteam } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DetachClusterNodeVolumeCommand.ts b/clients/client-sagemaker/src/commands/DetachClusterNodeVolumeCommand.ts index b2f043f40d654..a162ddae7c484 100644 --- a/clients/client-sagemaker/src/commands/DetachClusterNodeVolumeCommand.ts +++ b/clients/client-sagemaker/src/commands/DetachClusterNodeVolumeCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachClusterNodeVolumeRequest, DetachClusterNodeVolumeResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DetachClusterNodeVolumeRequest, DetachClusterNodeVolumeResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DetachClusterNodeVolume } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DisableSagemakerServicecatalogPortfolioCommand.ts b/clients/client-sagemaker/src/commands/DisableSagemakerServicecatalogPortfolioCommand.ts index 778ec8a7ad177..027415dba0602 100644 --- a/clients/client-sagemaker/src/commands/DisableSagemakerServicecatalogPortfolioCommand.ts +++ b/clients/client-sagemaker/src/commands/DisableSagemakerServicecatalogPortfolioCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisableSagemakerServicecatalogPortfolioInput, DisableSagemakerServicecatalogPortfolioOutput, } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DisableSagemakerServicecatalogPortfolio } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/DisassociateTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/DisassociateTrialComponentCommand.ts index ef8ecc63bd9aa..bf45bf7787588 100644 --- a/clients/client-sagemaker/src/commands/DisassociateTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/DisassociateTrialComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateTrialComponentRequest, DisassociateTrialComponentResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { DisassociateTrialComponentRequest, DisassociateTrialComponentResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { DisassociateTrialComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/EnableSagemakerServicecatalogPortfolioCommand.ts b/clients/client-sagemaker/src/commands/EnableSagemakerServicecatalogPortfolioCommand.ts index 2bb81ff39ff13..0471002f56ce7 100644 --- a/clients/client-sagemaker/src/commands/EnableSagemakerServicecatalogPortfolioCommand.ts +++ b/clients/client-sagemaker/src/commands/EnableSagemakerServicecatalogPortfolioCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { EnableSagemakerServicecatalogPortfolioInput, EnableSagemakerServicecatalogPortfolioOutput, } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { EnableSagemakerServicecatalogPortfolio } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/GetDeviceFleetReportCommand.ts b/clients/client-sagemaker/src/commands/GetDeviceFleetReportCommand.ts index 392b6292fb880..4ce6c9b5b712c 100644 --- a/clients/client-sagemaker/src/commands/GetDeviceFleetReportCommand.ts +++ b/clients/client-sagemaker/src/commands/GetDeviceFleetReportCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeviceFleetReportRequest, GetDeviceFleetReportResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { GetDeviceFleetReportRequest, GetDeviceFleetReportResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { GetDeviceFleetReport } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/GetLineageGroupPolicyCommand.ts b/clients/client-sagemaker/src/commands/GetLineageGroupPolicyCommand.ts index 1f1099600b681..6d39f6377ea38 100644 --- a/clients/client-sagemaker/src/commands/GetLineageGroupPolicyCommand.ts +++ b/clients/client-sagemaker/src/commands/GetLineageGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLineageGroupPolicyRequest, GetLineageGroupPolicyResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { GetLineageGroupPolicyRequest, GetLineageGroupPolicyResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { GetLineageGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/GetModelPackageGroupPolicyCommand.ts b/clients/client-sagemaker/src/commands/GetModelPackageGroupPolicyCommand.ts index 6d8c3eea042df..91a3de780ec03 100644 --- a/clients/client-sagemaker/src/commands/GetModelPackageGroupPolicyCommand.ts +++ b/clients/client-sagemaker/src/commands/GetModelPackageGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetModelPackageGroupPolicyInput, GetModelPackageGroupPolicyOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { GetModelPackageGroupPolicyInput, GetModelPackageGroupPolicyOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { GetModelPackageGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/GetSagemakerServicecatalogPortfolioStatusCommand.ts b/clients/client-sagemaker/src/commands/GetSagemakerServicecatalogPortfolioStatusCommand.ts index 1c2bce72f585b..9d8501728c6e1 100644 --- a/clients/client-sagemaker/src/commands/GetSagemakerServicecatalogPortfolioStatusCommand.ts +++ b/clients/client-sagemaker/src/commands/GetSagemakerServicecatalogPortfolioStatusCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetSagemakerServicecatalogPortfolioStatusInput, GetSagemakerServicecatalogPortfolioStatusOutput, } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { GetSagemakerServicecatalogPortfolioStatus } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/GetScalingConfigurationRecommendationCommand.ts b/clients/client-sagemaker/src/commands/GetScalingConfigurationRecommendationCommand.ts index 03b498f37bacf..79ae9d5c66b6e 100644 --- a/clients/client-sagemaker/src/commands/GetScalingConfigurationRecommendationCommand.ts +++ b/clients/client-sagemaker/src/commands/GetScalingConfigurationRecommendationCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetScalingConfigurationRecommendationRequest, GetScalingConfigurationRecommendationResponse, } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { GetScalingConfigurationRecommendation } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/GetSearchSuggestionsCommand.ts b/clients/client-sagemaker/src/commands/GetSearchSuggestionsCommand.ts index 695b0e16e2acf..487b191371020 100644 --- a/clients/client-sagemaker/src/commands/GetSearchSuggestionsCommand.ts +++ b/clients/client-sagemaker/src/commands/GetSearchSuggestionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSearchSuggestionsRequest, GetSearchSuggestionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { GetSearchSuggestionsRequest, GetSearchSuggestionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { GetSearchSuggestions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ImportHubContentCommand.ts b/clients/client-sagemaker/src/commands/ImportHubContentCommand.ts index 49eb6f748dcc3..b0f1f23704c45 100644 --- a/clients/client-sagemaker/src/commands/ImportHubContentCommand.ts +++ b/clients/client-sagemaker/src/commands/ImportHubContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportHubContentRequest, ImportHubContentResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ImportHubContentRequest, ImportHubContentResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ImportHubContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListActionsCommand.ts b/clients/client-sagemaker/src/commands/ListActionsCommand.ts index ec9a02246d63c..b9e3c282ec151 100644 --- a/clients/client-sagemaker/src/commands/ListActionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListActionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListActionsRequest, ListActionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListActionsRequest, ListActionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListActions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListAlgorithmsCommand.ts b/clients/client-sagemaker/src/commands/ListAlgorithmsCommand.ts index 350647216ce31..5ed989f344af2 100644 --- a/clients/client-sagemaker/src/commands/ListAlgorithmsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAlgorithmsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAlgorithmsInput, ListAlgorithmsOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListAlgorithmsInput, ListAlgorithmsOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListAlgorithms } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListAliasesCommand.ts b/clients/client-sagemaker/src/commands/ListAliasesCommand.ts index a9b514b311ef8..adad547171575 100644 --- a/clients/client-sagemaker/src/commands/ListAliasesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAliasesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAliasesRequest, ListAliasesResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListAliasesRequest, ListAliasesResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListAliases } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListAppImageConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListAppImageConfigsCommand.ts index b84d9ae434546..db6c34defcb12 100644 --- a/clients/client-sagemaker/src/commands/ListAppImageConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAppImageConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppImageConfigsRequest, ListAppImageConfigsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListAppImageConfigsRequest, ListAppImageConfigsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListAppImageConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListAppsCommand.ts b/clients/client-sagemaker/src/commands/ListAppsCommand.ts index 5106f31e83173..cec20fc1874b3 100644 --- a/clients/client-sagemaker/src/commands/ListAppsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAppsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppsRequest, ListAppsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListAppsRequest, ListAppsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListApps } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListArtifactsCommand.ts b/clients/client-sagemaker/src/commands/ListArtifactsCommand.ts index 87460112bd1b3..fbbae190ed4b3 100644 --- a/clients/client-sagemaker/src/commands/ListArtifactsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListArtifactsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListArtifactsRequest, ListArtifactsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListArtifactsRequest, ListArtifactsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListArtifacts } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListAssociationsCommand.ts b/clients/client-sagemaker/src/commands/ListAssociationsCommand.ts index e6ba63940c5fe..a540b36b661cd 100644 --- a/clients/client-sagemaker/src/commands/ListAssociationsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAssociationsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociationsRequest, ListAssociationsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListAssociationsRequest, ListAssociationsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListAssociations } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListAutoMLJobsCommand.ts b/clients/client-sagemaker/src/commands/ListAutoMLJobsCommand.ts index d3416b24de9c6..fa32c7c5698a2 100644 --- a/clients/client-sagemaker/src/commands/ListAutoMLJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListAutoMLJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutoMLJobsRequest, ListAutoMLJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListAutoMLJobsRequest, ListAutoMLJobsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListAutoMLJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListCandidatesForAutoMLJobCommand.ts b/clients/client-sagemaker/src/commands/ListCandidatesForAutoMLJobCommand.ts index 058a7d7c5b5ca..2356a7b050990 100644 --- a/clients/client-sagemaker/src/commands/ListCandidatesForAutoMLJobCommand.ts +++ b/clients/client-sagemaker/src/commands/ListCandidatesForAutoMLJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCandidatesForAutoMLJobRequest, ListCandidatesForAutoMLJobResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListCandidatesForAutoMLJobRequest, ListCandidatesForAutoMLJobResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListCandidatesForAutoMLJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListClusterEventsCommand.ts b/clients/client-sagemaker/src/commands/ListClusterEventsCommand.ts index 915a39e773230..0201dafbb8fca 100644 --- a/clients/client-sagemaker/src/commands/ListClusterEventsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListClusterEventsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClusterEventsRequest, ListClusterEventsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListClusterEventsRequest, ListClusterEventsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListClusterEvents } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListClusterNodesCommand.ts b/clients/client-sagemaker/src/commands/ListClusterNodesCommand.ts index 3bdcc5ed239c1..18d4c97568a43 100644 --- a/clients/client-sagemaker/src/commands/ListClusterNodesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListClusterNodesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClusterNodesRequest, ListClusterNodesResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListClusterNodesRequest, ListClusterNodesResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListClusterNodes } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListClusterSchedulerConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListClusterSchedulerConfigsCommand.ts index ac8eb95d2bd3d..bd4296fdd2eef 100644 --- a/clients/client-sagemaker/src/commands/ListClusterSchedulerConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListClusterSchedulerConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClusterSchedulerConfigsRequest, ListClusterSchedulerConfigsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListClusterSchedulerConfigsRequest, ListClusterSchedulerConfigsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListClusterSchedulerConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListClustersCommand.ts b/clients/client-sagemaker/src/commands/ListClustersCommand.ts index 2e39f82693e97..e2b2998c265ff 100644 --- a/clients/client-sagemaker/src/commands/ListClustersCommand.ts +++ b/clients/client-sagemaker/src/commands/ListClustersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClustersRequest, ListClustersResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListClustersRequest, ListClustersResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListClusters } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListCodeRepositoriesCommand.ts b/clients/client-sagemaker/src/commands/ListCodeRepositoriesCommand.ts index 69a9004cee7c2..72a167930b833 100644 --- a/clients/client-sagemaker/src/commands/ListCodeRepositoriesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListCodeRepositoriesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCodeRepositoriesInput, ListCodeRepositoriesOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListCodeRepositoriesInput, ListCodeRepositoriesOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListCodeRepositories } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListCompilationJobsCommand.ts b/clients/client-sagemaker/src/commands/ListCompilationJobsCommand.ts index 8377549f5c4b3..42954367a8a78 100644 --- a/clients/client-sagemaker/src/commands/ListCompilationJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListCompilationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCompilationJobsRequest, ListCompilationJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListCompilationJobsRequest, ListCompilationJobsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListCompilationJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListComputeQuotasCommand.ts b/clients/client-sagemaker/src/commands/ListComputeQuotasCommand.ts index 7ff738f4e2708..32e4a63092302 100644 --- a/clients/client-sagemaker/src/commands/ListComputeQuotasCommand.ts +++ b/clients/client-sagemaker/src/commands/ListComputeQuotasCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComputeQuotasRequest, ListComputeQuotasResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListComputeQuotasRequest, ListComputeQuotasResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListComputeQuotas } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListContextsCommand.ts b/clients/client-sagemaker/src/commands/ListContextsCommand.ts index 1099bca778886..18d8860779ede 100644 --- a/clients/client-sagemaker/src/commands/ListContextsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListContextsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContextsRequest, ListContextsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListContextsRequest, ListContextsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListContexts } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListDataQualityJobDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListDataQualityJobDefinitionsCommand.ts index 556e6b0997752..96e63b136fba8 100644 --- a/clients/client-sagemaker/src/commands/ListDataQualityJobDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListDataQualityJobDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataQualityJobDefinitionsRequest, ListDataQualityJobDefinitionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListDataQualityJobDefinitionsRequest, ListDataQualityJobDefinitionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListDataQualityJobDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListDeviceFleetsCommand.ts b/clients/client-sagemaker/src/commands/ListDeviceFleetsCommand.ts index 93515a8fe9b18..2d111b4203ef3 100644 --- a/clients/client-sagemaker/src/commands/ListDeviceFleetsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListDeviceFleetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeviceFleetsRequest, ListDeviceFleetsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListDeviceFleetsRequest, ListDeviceFleetsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListDeviceFleets } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListDevicesCommand.ts b/clients/client-sagemaker/src/commands/ListDevicesCommand.ts index c5c721e78f91d..b23a37e14e969 100644 --- a/clients/client-sagemaker/src/commands/ListDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevicesRequest, ListDevicesResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListDevicesRequest, ListDevicesResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListDomainsCommand.ts b/clients/client-sagemaker/src/commands/ListDomainsCommand.ts index ff8b16e99950c..6819414a22512 100644 --- a/clients/client-sagemaker/src/commands/ListDomainsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListDomainsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsRequest, ListDomainsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListDomainsRequest, ListDomainsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListDomains } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListEdgeDeploymentPlansCommand.ts b/clients/client-sagemaker/src/commands/ListEdgeDeploymentPlansCommand.ts index 37fb427e00886..bfab553ece969 100644 --- a/clients/client-sagemaker/src/commands/ListEdgeDeploymentPlansCommand.ts +++ b/clients/client-sagemaker/src/commands/ListEdgeDeploymentPlansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEdgeDeploymentPlansRequest, ListEdgeDeploymentPlansResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListEdgeDeploymentPlansRequest, ListEdgeDeploymentPlansResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListEdgeDeploymentPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListEdgePackagingJobsCommand.ts b/clients/client-sagemaker/src/commands/ListEdgePackagingJobsCommand.ts index 6e034e65d53de..f76875c570ff8 100644 --- a/clients/client-sagemaker/src/commands/ListEdgePackagingJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListEdgePackagingJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEdgePackagingJobsRequest, ListEdgePackagingJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListEdgePackagingJobsRequest, ListEdgePackagingJobsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListEdgePackagingJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListEndpointConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListEndpointConfigsCommand.ts index 21f02661b5e7d..eddff6030d124 100644 --- a/clients/client-sagemaker/src/commands/ListEndpointConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListEndpointConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEndpointConfigsInput, ListEndpointConfigsOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListEndpointConfigsInput, ListEndpointConfigsOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListEndpointConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListEndpointsCommand.ts b/clients/client-sagemaker/src/commands/ListEndpointsCommand.ts index 4f116652b7151..c775fc911bbde 100644 --- a/clients/client-sagemaker/src/commands/ListEndpointsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListEndpointsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEndpointsInput, ListEndpointsOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListEndpointsInput, ListEndpointsOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListEndpoints } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListExperimentsCommand.ts b/clients/client-sagemaker/src/commands/ListExperimentsCommand.ts index 15d3865e8e896..dfca915ca3dbe 100644 --- a/clients/client-sagemaker/src/commands/ListExperimentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListExperimentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExperimentsRequest, ListExperimentsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListExperimentsRequest, ListExperimentsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListExperiments } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListFeatureGroupsCommand.ts b/clients/client-sagemaker/src/commands/ListFeatureGroupsCommand.ts index 1eca032e61cdb..4cfa561e4e977 100644 --- a/clients/client-sagemaker/src/commands/ListFeatureGroupsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListFeatureGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFeatureGroupsRequest, ListFeatureGroupsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListFeatureGroupsRequest, ListFeatureGroupsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListFeatureGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListFlowDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListFlowDefinitionsCommand.ts index 8079e1f717bb1..cad20646d34dc 100644 --- a/clients/client-sagemaker/src/commands/ListFlowDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListFlowDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFlowDefinitionsRequest, ListFlowDefinitionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListFlowDefinitionsRequest, ListFlowDefinitionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListFlowDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListHubContentVersionsCommand.ts b/clients/client-sagemaker/src/commands/ListHubContentVersionsCommand.ts index 29b83a2780b5b..a6301bbc9ff62 100644 --- a/clients/client-sagemaker/src/commands/ListHubContentVersionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHubContentVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHubContentVersionsRequest, ListHubContentVersionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListHubContentVersionsRequest, ListHubContentVersionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListHubContentVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListHubContentsCommand.ts b/clients/client-sagemaker/src/commands/ListHubContentsCommand.ts index d5dc6cac63c03..60d78622cc4b6 100644 --- a/clients/client-sagemaker/src/commands/ListHubContentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHubContentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHubContentsRequest, ListHubContentsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListHubContentsRequest, ListHubContentsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListHubContents } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListHubsCommand.ts b/clients/client-sagemaker/src/commands/ListHubsCommand.ts index 524dc4d4bd45b..58170bbed2772 100644 --- a/clients/client-sagemaker/src/commands/ListHubsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHubsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHubsRequest, ListHubsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListHubsRequest, ListHubsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListHubs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListHumanTaskUisCommand.ts b/clients/client-sagemaker/src/commands/ListHumanTaskUisCommand.ts index 93470d874f1ef..1b2002207a37c 100644 --- a/clients/client-sagemaker/src/commands/ListHumanTaskUisCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHumanTaskUisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHumanTaskUisRequest, ListHumanTaskUisResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListHumanTaskUisRequest, ListHumanTaskUisResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListHumanTaskUis } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListHyperParameterTuningJobsCommand.ts b/clients/client-sagemaker/src/commands/ListHyperParameterTuningJobsCommand.ts index 0dd6c42598fc9..c4f6043375a63 100644 --- a/clients/client-sagemaker/src/commands/ListHyperParameterTuningJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListHyperParameterTuningJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHyperParameterTuningJobsRequest, ListHyperParameterTuningJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListHyperParameterTuningJobsRequest, ListHyperParameterTuningJobsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListHyperParameterTuningJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListImageVersionsCommand.ts b/clients/client-sagemaker/src/commands/ListImageVersionsCommand.ts index cf176fabe5efa..ec0f972249d2f 100644 --- a/clients/client-sagemaker/src/commands/ListImageVersionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListImageVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImageVersionsRequest, ListImageVersionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListImageVersionsRequest, ListImageVersionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListImageVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListImagesCommand.ts b/clients/client-sagemaker/src/commands/ListImagesCommand.ts index cd6c8a219d9de..cc6192a1d3086 100644 --- a/clients/client-sagemaker/src/commands/ListImagesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListImagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImagesRequest, ListImagesResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListImagesRequest, ListImagesResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListImages } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListInferenceComponentsCommand.ts b/clients/client-sagemaker/src/commands/ListInferenceComponentsCommand.ts index 6e357fd111eec..b2d8d4c44b99d 100644 --- a/clients/client-sagemaker/src/commands/ListInferenceComponentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListInferenceComponentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInferenceComponentsInput, ListInferenceComponentsOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListInferenceComponentsInput, ListInferenceComponentsOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListInferenceComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListInferenceExperimentsCommand.ts b/clients/client-sagemaker/src/commands/ListInferenceExperimentsCommand.ts index 7572487426236..f4c19c4845567 100644 --- a/clients/client-sagemaker/src/commands/ListInferenceExperimentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListInferenceExperimentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInferenceExperimentsRequest, ListInferenceExperimentsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListInferenceExperimentsRequest, ListInferenceExperimentsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListInferenceExperiments } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobStepsCommand.ts b/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobStepsCommand.ts index d649d8f0e68dd..150efbcab6511 100644 --- a/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobStepsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobStepsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListInferenceRecommendationsJobStepsRequest, ListInferenceRecommendationsJobStepsResponse, } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListInferenceRecommendationsJobSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobsCommand.ts b/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobsCommand.ts index 84cc7cc1068d0..55002ee9dead3 100644 --- a/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListInferenceRecommendationsJobsCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInferenceRecommendationsJobsRequest, ListInferenceRecommendationsJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { + ListInferenceRecommendationsJobsRequest, + ListInferenceRecommendationsJobsResponse, +} from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListInferenceRecommendationsJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListLabelingJobsCommand.ts b/clients/client-sagemaker/src/commands/ListLabelingJobsCommand.ts index 11844953b36e9..47d1eb73082f0 100644 --- a/clients/client-sagemaker/src/commands/ListLabelingJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListLabelingJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLabelingJobsRequest, ListLabelingJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListLabelingJobsRequest, ListLabelingJobsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListLabelingJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListLabelingJobsForWorkteamCommand.ts b/clients/client-sagemaker/src/commands/ListLabelingJobsForWorkteamCommand.ts index c3f3494029264..7c7de4ffc8348 100644 --- a/clients/client-sagemaker/src/commands/ListLabelingJobsForWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/ListLabelingJobsForWorkteamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLabelingJobsForWorkteamRequest, ListLabelingJobsForWorkteamResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListLabelingJobsForWorkteamRequest, ListLabelingJobsForWorkteamResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListLabelingJobsForWorkteam } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListLineageGroupsCommand.ts b/clients/client-sagemaker/src/commands/ListLineageGroupsCommand.ts index 3b324d775ba3a..eff6572180387 100644 --- a/clients/client-sagemaker/src/commands/ListLineageGroupsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListLineageGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLineageGroupsRequest, ListLineageGroupsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListLineageGroupsRequest, ListLineageGroupsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListLineageGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListMlflowTrackingServersCommand.ts b/clients/client-sagemaker/src/commands/ListMlflowTrackingServersCommand.ts index 0b67dc62ca88b..a976301aafa2d 100644 --- a/clients/client-sagemaker/src/commands/ListMlflowTrackingServersCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMlflowTrackingServersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMlflowTrackingServersRequest, ListMlflowTrackingServersResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListMlflowTrackingServersRequest, ListMlflowTrackingServersResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListMlflowTrackingServers } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelBiasJobDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListModelBiasJobDefinitionsCommand.ts index 7bc45ef1df301..1437291242b4a 100644 --- a/clients/client-sagemaker/src/commands/ListModelBiasJobDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelBiasJobDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelBiasJobDefinitionsRequest, ListModelBiasJobDefinitionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListModelBiasJobDefinitionsRequest, ListModelBiasJobDefinitionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModelBiasJobDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelCardExportJobsCommand.ts b/clients/client-sagemaker/src/commands/ListModelCardExportJobsCommand.ts index e4c9a4d910c99..1ee97a014a773 100644 --- a/clients/client-sagemaker/src/commands/ListModelCardExportJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelCardExportJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelCardExportJobsRequest, ListModelCardExportJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListModelCardExportJobsRequest, ListModelCardExportJobsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModelCardExportJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelCardVersionsCommand.ts b/clients/client-sagemaker/src/commands/ListModelCardVersionsCommand.ts index 6bbe51add821c..afff13f88fb77 100644 --- a/clients/client-sagemaker/src/commands/ListModelCardVersionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelCardVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelCardVersionsRequest, ListModelCardVersionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListModelCardVersionsRequest, ListModelCardVersionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModelCardVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelCardsCommand.ts b/clients/client-sagemaker/src/commands/ListModelCardsCommand.ts index 088142ba8a572..9bc27394dd05e 100644 --- a/clients/client-sagemaker/src/commands/ListModelCardsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelCardsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelCardsRequest, ListModelCardsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListModelCardsRequest, ListModelCardsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModelCards } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelExplainabilityJobDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListModelExplainabilityJobDefinitionsCommand.ts index 5c1d41b94eed8..69cfbd001efba 100644 --- a/clients/client-sagemaker/src/commands/ListModelExplainabilityJobDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelExplainabilityJobDefinitionsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListModelExplainabilityJobDefinitionsRequest, ListModelExplainabilityJobDefinitionsResponse, } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModelExplainabilityJobDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelMetadataCommand.ts b/clients/client-sagemaker/src/commands/ListModelMetadataCommand.ts index 20a3b29cf6b49..0f38f4c5aeaf4 100644 --- a/clients/client-sagemaker/src/commands/ListModelMetadataCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelMetadataRequest, ListModelMetadataResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListModelMetadataRequest, ListModelMetadataResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModelMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelPackageGroupsCommand.ts b/clients/client-sagemaker/src/commands/ListModelPackageGroupsCommand.ts index fa32974e91ce5..9d1b8b6fe565e 100644 --- a/clients/client-sagemaker/src/commands/ListModelPackageGroupsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelPackageGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelPackageGroupsInput, ListModelPackageGroupsOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListModelPackageGroupsInput, ListModelPackageGroupsOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModelPackageGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelPackagesCommand.ts b/clients/client-sagemaker/src/commands/ListModelPackagesCommand.ts index cb78464b27976..50572b022e156 100644 --- a/clients/client-sagemaker/src/commands/ListModelPackagesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelPackagesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelPackagesInput, ListModelPackagesOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListModelPackagesInput, ListModelPackagesOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModelPackages } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelQualityJobDefinitionsCommand.ts b/clients/client-sagemaker/src/commands/ListModelQualityJobDefinitionsCommand.ts index 48408db6b25dc..f187a8789e3ca 100644 --- a/clients/client-sagemaker/src/commands/ListModelQualityJobDefinitionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelQualityJobDefinitionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelQualityJobDefinitionsRequest, ListModelQualityJobDefinitionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListModelQualityJobDefinitionsRequest, ListModelQualityJobDefinitionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModelQualityJobDefinitions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListModelsCommand.ts b/clients/client-sagemaker/src/commands/ListModelsCommand.ts index 75533d34237fe..53f29dfab0b23 100644 --- a/clients/client-sagemaker/src/commands/ListModelsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListModelsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListModelsInput, ListModelsOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListModelsInput, ListModelsOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListModels } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListMonitoringAlertHistoryCommand.ts b/clients/client-sagemaker/src/commands/ListMonitoringAlertHistoryCommand.ts index 85c20f08dfe9f..c11034a9bdf62 100644 --- a/clients/client-sagemaker/src/commands/ListMonitoringAlertHistoryCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMonitoringAlertHistoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMonitoringAlertHistoryRequest, ListMonitoringAlertHistoryResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListMonitoringAlertHistoryRequest, ListMonitoringAlertHistoryResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListMonitoringAlertHistory } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListMonitoringAlertsCommand.ts b/clients/client-sagemaker/src/commands/ListMonitoringAlertsCommand.ts index 396a152b8f8c4..e0da2ef881b1a 100644 --- a/clients/client-sagemaker/src/commands/ListMonitoringAlertsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMonitoringAlertsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMonitoringAlertsRequest, ListMonitoringAlertsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListMonitoringAlertsRequest, ListMonitoringAlertsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListMonitoringAlerts } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListMonitoringExecutionsCommand.ts b/clients/client-sagemaker/src/commands/ListMonitoringExecutionsCommand.ts index b8efc35f225dd..2073c746a3509 100644 --- a/clients/client-sagemaker/src/commands/ListMonitoringExecutionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMonitoringExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMonitoringExecutionsRequest, ListMonitoringExecutionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListMonitoringExecutionsRequest, ListMonitoringExecutionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListMonitoringExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListMonitoringSchedulesCommand.ts b/clients/client-sagemaker/src/commands/ListMonitoringSchedulesCommand.ts index 5b4f2394e48c9..b0b6e0f8b4621 100644 --- a/clients/client-sagemaker/src/commands/ListMonitoringSchedulesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListMonitoringSchedulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMonitoringSchedulesRequest, ListMonitoringSchedulesResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListMonitoringSchedulesRequest, ListMonitoringSchedulesResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListMonitoringSchedules } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListNotebookInstanceLifecycleConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListNotebookInstanceLifecycleConfigsCommand.ts index 2569c39c354cf..7ba7a8dd1cc95 100644 --- a/clients/client-sagemaker/src/commands/ListNotebookInstanceLifecycleConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListNotebookInstanceLifecycleConfigsCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListNotebookInstanceLifecycleConfigsInput, ListNotebookInstanceLifecycleConfigsOutput, } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListNotebookInstanceLifecycleConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListNotebookInstancesCommand.ts b/clients/client-sagemaker/src/commands/ListNotebookInstancesCommand.ts index e41e8942fce6b..0f030eef0f250 100644 --- a/clients/client-sagemaker/src/commands/ListNotebookInstancesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListNotebookInstancesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotebookInstancesInput, ListNotebookInstancesOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListNotebookInstancesInput, ListNotebookInstancesOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListNotebookInstances } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListOptimizationJobsCommand.ts b/clients/client-sagemaker/src/commands/ListOptimizationJobsCommand.ts index f2a386ea4cb90..5d212c33b1c54 100644 --- a/clients/client-sagemaker/src/commands/ListOptimizationJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListOptimizationJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOptimizationJobsRequest, ListOptimizationJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListOptimizationJobsRequest, ListOptimizationJobsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListOptimizationJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListPartnerAppsCommand.ts b/clients/client-sagemaker/src/commands/ListPartnerAppsCommand.ts index a3d7645c9e3b2..f804c1967994b 100644 --- a/clients/client-sagemaker/src/commands/ListPartnerAppsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPartnerAppsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPartnerAppsRequest, ListPartnerAppsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListPartnerAppsRequest, ListPartnerAppsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListPartnerApps } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListPipelineExecutionStepsCommand.ts b/clients/client-sagemaker/src/commands/ListPipelineExecutionStepsCommand.ts index 0e42abc4016d7..f5fdb51cd2e79 100644 --- a/clients/client-sagemaker/src/commands/ListPipelineExecutionStepsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPipelineExecutionStepsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelineExecutionStepsRequest, ListPipelineExecutionStepsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListPipelineExecutionStepsRequest, ListPipelineExecutionStepsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListPipelineExecutionSteps } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListPipelineExecutionsCommand.ts b/clients/client-sagemaker/src/commands/ListPipelineExecutionsCommand.ts index 09445590fda54..6c55bf571a9b3 100644 --- a/clients/client-sagemaker/src/commands/ListPipelineExecutionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPipelineExecutionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelineExecutionsRequest, ListPipelineExecutionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListPipelineExecutionsRequest, ListPipelineExecutionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListPipelineExecutions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListPipelineParametersForExecutionCommand.ts b/clients/client-sagemaker/src/commands/ListPipelineParametersForExecutionCommand.ts index d3782ba8db43b..5352ba2aa6b36 100644 --- a/clients/client-sagemaker/src/commands/ListPipelineParametersForExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPipelineParametersForExecutionCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListPipelineParametersForExecutionRequest, ListPipelineParametersForExecutionResponse, } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListPipelineParametersForExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListPipelineVersionsCommand.ts b/clients/client-sagemaker/src/commands/ListPipelineVersionsCommand.ts index 1c4235a6a695c..6e59b80dc3e28 100644 --- a/clients/client-sagemaker/src/commands/ListPipelineVersionsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPipelineVersionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelineVersionsRequest, ListPipelineVersionsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListPipelineVersionsRequest, ListPipelineVersionsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListPipelineVersions } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListPipelinesCommand.ts b/clients/client-sagemaker/src/commands/ListPipelinesCommand.ts index b38a286a70d6b..894af15a3195c 100644 --- a/clients/client-sagemaker/src/commands/ListPipelinesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListPipelinesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListPipelinesRequest, ListPipelinesResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListPipelines } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListProcessingJobsCommand.ts b/clients/client-sagemaker/src/commands/ListProcessingJobsCommand.ts index 5ce4896bea2cb..c9d1ade09a1aa 100644 --- a/clients/client-sagemaker/src/commands/ListProcessingJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListProcessingJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProcessingJobsRequest, ListProcessingJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListProcessingJobsRequest, ListProcessingJobsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListProcessingJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListProjectsCommand.ts b/clients/client-sagemaker/src/commands/ListProjectsCommand.ts index 9264953a5cc28..6b22039eb2fda 100644 --- a/clients/client-sagemaker/src/commands/ListProjectsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListProjectsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProjectsInput, ListProjectsOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListProjectsInput, ListProjectsOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListProjects } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListResourceCatalogsCommand.ts b/clients/client-sagemaker/src/commands/ListResourceCatalogsCommand.ts index abdb744031118..63200772a9acc 100644 --- a/clients/client-sagemaker/src/commands/ListResourceCatalogsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListResourceCatalogsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceCatalogsRequest, ListResourceCatalogsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListResourceCatalogsRequest, ListResourceCatalogsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListResourceCatalogs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListSpacesCommand.ts b/clients/client-sagemaker/src/commands/ListSpacesCommand.ts index b8a56b657dc90..e70eb8c959f7b 100644 --- a/clients/client-sagemaker/src/commands/ListSpacesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListSpacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSpacesRequest, ListSpacesResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListSpacesRequest, ListSpacesResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListSpaces } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListStageDevicesCommand.ts b/clients/client-sagemaker/src/commands/ListStageDevicesCommand.ts index 0a8fcaf6f0ad3..a95435e07e00f 100644 --- a/clients/client-sagemaker/src/commands/ListStageDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListStageDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStageDevicesRequest, ListStageDevicesResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListStageDevicesRequest, ListStageDevicesResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListStageDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListStudioLifecycleConfigsCommand.ts b/clients/client-sagemaker/src/commands/ListStudioLifecycleConfigsCommand.ts index b784d811959c0..0dab697777209 100644 --- a/clients/client-sagemaker/src/commands/ListStudioLifecycleConfigsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListStudioLifecycleConfigsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStudioLifecycleConfigsRequest, ListStudioLifecycleConfigsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListStudioLifecycleConfigsRequest, ListStudioLifecycleConfigsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListStudioLifecycleConfigs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListSubscribedWorkteamsCommand.ts b/clients/client-sagemaker/src/commands/ListSubscribedWorkteamsCommand.ts index 1a790345b0dae..21591f1839074 100644 --- a/clients/client-sagemaker/src/commands/ListSubscribedWorkteamsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListSubscribedWorkteamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscribedWorkteamsRequest, ListSubscribedWorkteamsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListSubscribedWorkteamsRequest, ListSubscribedWorkteamsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListSubscribedWorkteams } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListTagsCommand.ts b/clients/client-sagemaker/src/commands/ListTagsCommand.ts index decfb48cfe31f..e3d3dcac757b3 100644 --- a/clients/client-sagemaker/src/commands/ListTagsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTagsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsInput, ListTagsOutput } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListTagsInput, ListTagsOutput } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListTags } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListTrainingJobsCommand.ts b/clients/client-sagemaker/src/commands/ListTrainingJobsCommand.ts index b266fd276f109..499c7b4d2fdfd 100644 --- a/clients/client-sagemaker/src/commands/ListTrainingJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrainingJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrainingJobsRequest, ListTrainingJobsResponse } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListTrainingJobsRequest, ListTrainingJobsResponse } from "../models/models_3"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListTrainingJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListTrainingJobsForHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/ListTrainingJobsForHyperParameterTuningJobCommand.ts index f58608df7b179..a38331fc7b6f6 100644 --- a/clients/client-sagemaker/src/commands/ListTrainingJobsForHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrainingJobsForHyperParameterTuningJobCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListTrainingJobsForHyperParameterTuningJobRequest, ListTrainingJobsForHyperParameterTuningJobResponse, } from "../models/models_3"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListTrainingJobsForHyperParameterTuningJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListTrainingPlansCommand.ts b/clients/client-sagemaker/src/commands/ListTrainingPlansCommand.ts index 38b9f25fa429f..808540e850d88 100644 --- a/clients/client-sagemaker/src/commands/ListTrainingPlansCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrainingPlansCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrainingPlansRequest } from "../models/models_3"; -import { ListTrainingPlansResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListTrainingPlansRequest } from "../models/models_3"; +import type { ListTrainingPlansResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListTrainingPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListTransformJobsCommand.ts b/clients/client-sagemaker/src/commands/ListTransformJobsCommand.ts index 022b949aa0836..af92f18e0ff00 100644 --- a/clients/client-sagemaker/src/commands/ListTransformJobsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTransformJobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTransformJobsRequest, ListTransformJobsResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListTransformJobsRequest, ListTransformJobsResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListTransformJobs } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListTrialComponentsCommand.ts b/clients/client-sagemaker/src/commands/ListTrialComponentsCommand.ts index ec6fab15be2af..0be3d0ece0e19 100644 --- a/clients/client-sagemaker/src/commands/ListTrialComponentsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrialComponentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrialComponentsRequest, ListTrialComponentsResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListTrialComponentsRequest, ListTrialComponentsResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListTrialComponents } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListTrialsCommand.ts b/clients/client-sagemaker/src/commands/ListTrialsCommand.ts index c98aa9899ee36..11a8cba7fbe18 100644 --- a/clients/client-sagemaker/src/commands/ListTrialsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListTrialsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrialsRequest, ListTrialsResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListTrialsRequest, ListTrialsResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListTrials } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListUltraServersByReservedCapacityCommand.ts b/clients/client-sagemaker/src/commands/ListUltraServersByReservedCapacityCommand.ts index b8f4d883a1de7..86f1222ebef11 100644 --- a/clients/client-sagemaker/src/commands/ListUltraServersByReservedCapacityCommand.ts +++ b/clients/client-sagemaker/src/commands/ListUltraServersByReservedCapacityCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListUltraServersByReservedCapacityRequest, ListUltraServersByReservedCapacityResponse, } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListUltraServersByReservedCapacity } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListUserProfilesCommand.ts b/clients/client-sagemaker/src/commands/ListUserProfilesCommand.ts index bbe458d31f74d..0059f3f6a0329 100644 --- a/clients/client-sagemaker/src/commands/ListUserProfilesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListUserProfilesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUserProfilesRequest, ListUserProfilesResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListUserProfilesRequest, ListUserProfilesResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListUserProfiles } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListWorkforcesCommand.ts b/clients/client-sagemaker/src/commands/ListWorkforcesCommand.ts index a55645d491edd..0831cc27fa001 100644 --- a/clients/client-sagemaker/src/commands/ListWorkforcesCommand.ts +++ b/clients/client-sagemaker/src/commands/ListWorkforcesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkforcesRequest, ListWorkforcesResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListWorkforcesRequest, ListWorkforcesResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListWorkforces } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/ListWorkteamsCommand.ts b/clients/client-sagemaker/src/commands/ListWorkteamsCommand.ts index 3d704595b14ed..9334d5b5710cd 100644 --- a/clients/client-sagemaker/src/commands/ListWorkteamsCommand.ts +++ b/clients/client-sagemaker/src/commands/ListWorkteamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkteamsRequest, ListWorkteamsResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { ListWorkteamsRequest, ListWorkteamsResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { ListWorkteams } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/PutModelPackageGroupPolicyCommand.ts b/clients/client-sagemaker/src/commands/PutModelPackageGroupPolicyCommand.ts index 9fd3f393ef2e2..18bf2f90b6f11 100644 --- a/clients/client-sagemaker/src/commands/PutModelPackageGroupPolicyCommand.ts +++ b/clients/client-sagemaker/src/commands/PutModelPackageGroupPolicyCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutModelPackageGroupPolicyInput, PutModelPackageGroupPolicyOutput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { PutModelPackageGroupPolicyInput, PutModelPackageGroupPolicyOutput } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { PutModelPackageGroupPolicy } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/QueryLineageCommand.ts b/clients/client-sagemaker/src/commands/QueryLineageCommand.ts index 35a3aa5be40c3..7da365db30ada 100644 --- a/clients/client-sagemaker/src/commands/QueryLineageCommand.ts +++ b/clients/client-sagemaker/src/commands/QueryLineageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryLineageRequest, QueryLineageResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { QueryLineageRequest, QueryLineageResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { QueryLineage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/RegisterDevicesCommand.ts b/clients/client-sagemaker/src/commands/RegisterDevicesCommand.ts index a3b1e25137f2d..48352e1660715 100644 --- a/clients/client-sagemaker/src/commands/RegisterDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/RegisterDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterDevicesRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { RegisterDevicesRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { RegisterDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/RenderUiTemplateCommand.ts b/clients/client-sagemaker/src/commands/RenderUiTemplateCommand.ts index eaad96de16fb2..929a5e681f5d9 100644 --- a/clients/client-sagemaker/src/commands/RenderUiTemplateCommand.ts +++ b/clients/client-sagemaker/src/commands/RenderUiTemplateCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RenderUiTemplateRequest, RenderUiTemplateResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { RenderUiTemplateRequest, RenderUiTemplateResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { RenderUiTemplate } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/RetryPipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/RetryPipelineExecutionCommand.ts index 3e5c9c34a3e5e..9ecba01276f05 100644 --- a/clients/client-sagemaker/src/commands/RetryPipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/RetryPipelineExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetryPipelineExecutionRequest, RetryPipelineExecutionResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { RetryPipelineExecutionRequest, RetryPipelineExecutionResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { RetryPipelineExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/SearchCommand.ts b/clients/client-sagemaker/src/commands/SearchCommand.ts index 20d1ed0433464..6477ca19940d8 100644 --- a/clients/client-sagemaker/src/commands/SearchCommand.ts +++ b/clients/client-sagemaker/src/commands/SearchCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchRequest, SearchResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SearchRequest, SearchResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { Search } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/SearchTrainingPlanOfferingsCommand.ts b/clients/client-sagemaker/src/commands/SearchTrainingPlanOfferingsCommand.ts index 18da67732c936..6e71b377eae74 100644 --- a/clients/client-sagemaker/src/commands/SearchTrainingPlanOfferingsCommand.ts +++ b/clients/client-sagemaker/src/commands/SearchTrainingPlanOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchTrainingPlanOfferingsRequest, SearchTrainingPlanOfferingsResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SearchTrainingPlanOfferingsRequest, SearchTrainingPlanOfferingsResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { SearchTrainingPlanOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/SendPipelineExecutionStepFailureCommand.ts b/clients/client-sagemaker/src/commands/SendPipelineExecutionStepFailureCommand.ts index 9951e5f7e8e1f..54f6698b3058b 100644 --- a/clients/client-sagemaker/src/commands/SendPipelineExecutionStepFailureCommand.ts +++ b/clients/client-sagemaker/src/commands/SendPipelineExecutionStepFailureCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendPipelineExecutionStepFailureRequest, SendPipelineExecutionStepFailureResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { + SendPipelineExecutionStepFailureRequest, + SendPipelineExecutionStepFailureResponse, +} from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { SendPipelineExecutionStepFailure } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/SendPipelineExecutionStepSuccessCommand.ts b/clients/client-sagemaker/src/commands/SendPipelineExecutionStepSuccessCommand.ts index d6b9fd653da4b..6abf486c9125e 100644 --- a/clients/client-sagemaker/src/commands/SendPipelineExecutionStepSuccessCommand.ts +++ b/clients/client-sagemaker/src/commands/SendPipelineExecutionStepSuccessCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendPipelineExecutionStepSuccessRequest, SendPipelineExecutionStepSuccessResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { + SendPipelineExecutionStepSuccessRequest, + SendPipelineExecutionStepSuccessResponse, +} from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { SendPipelineExecutionStepSuccess } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StartEdgeDeploymentStageCommand.ts b/clients/client-sagemaker/src/commands/StartEdgeDeploymentStageCommand.ts index b10ae1350a4a7..4a4d46fc584de 100644 --- a/clients/client-sagemaker/src/commands/StartEdgeDeploymentStageCommand.ts +++ b/clients/client-sagemaker/src/commands/StartEdgeDeploymentStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartEdgeDeploymentStageRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StartEdgeDeploymentStageRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StartEdgeDeploymentStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StartInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/StartInferenceExperimentCommand.ts index 449300cc6b7d3..40cc8a7d48a7e 100644 --- a/clients/client-sagemaker/src/commands/StartInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/StartInferenceExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartInferenceExperimentRequest, StartInferenceExperimentResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StartInferenceExperimentRequest, StartInferenceExperimentResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StartInferenceExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StartMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/StartMlflowTrackingServerCommand.ts index 4ca23db0d7eb1..19919c455a7e3 100644 --- a/clients/client-sagemaker/src/commands/StartMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/StartMlflowTrackingServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMlflowTrackingServerRequest, StartMlflowTrackingServerResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StartMlflowTrackingServerRequest, StartMlflowTrackingServerResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StartMlflowTrackingServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StartMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/StartMonitoringScheduleCommand.ts index ded23e3306c12..9d04e2c334859 100644 --- a/clients/client-sagemaker/src/commands/StartMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/StartMonitoringScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMonitoringScheduleRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StartMonitoringScheduleRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StartMonitoringSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StartNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/StartNotebookInstanceCommand.ts index 5a849b013b525..55e3d994e62cd 100644 --- a/clients/client-sagemaker/src/commands/StartNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/StartNotebookInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartNotebookInstanceInput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StartNotebookInstanceInput } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StartNotebookInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StartPipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/StartPipelineExecutionCommand.ts index 761d9ca84d4ce..b25ab6fcb556c 100644 --- a/clients/client-sagemaker/src/commands/StartPipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/StartPipelineExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartPipelineExecutionRequest, StartPipelineExecutionResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StartPipelineExecutionRequest, StartPipelineExecutionResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StartPipelineExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StartSessionCommand.ts b/clients/client-sagemaker/src/commands/StartSessionCommand.ts index b14ac40043144..8f74fe7730c60 100644 --- a/clients/client-sagemaker/src/commands/StartSessionCommand.ts +++ b/clients/client-sagemaker/src/commands/StartSessionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSessionRequest, StartSessionResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StartSessionRequest, StartSessionResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StartSession } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopAutoMLJobCommand.ts b/clients/client-sagemaker/src/commands/StopAutoMLJobCommand.ts index 089530e645246..45fbb210aaa8e 100644 --- a/clients/client-sagemaker/src/commands/StopAutoMLJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopAutoMLJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopAutoMLJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopAutoMLJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopAutoMLJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopCompilationJobCommand.ts b/clients/client-sagemaker/src/commands/StopCompilationJobCommand.ts index f4dc3c1ce575a..583a7511c56bc 100644 --- a/clients/client-sagemaker/src/commands/StopCompilationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopCompilationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopCompilationJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopCompilationJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopCompilationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopEdgeDeploymentStageCommand.ts b/clients/client-sagemaker/src/commands/StopEdgeDeploymentStageCommand.ts index 07a75cbabe2eb..9c80036519c2d 100644 --- a/clients/client-sagemaker/src/commands/StopEdgeDeploymentStageCommand.ts +++ b/clients/client-sagemaker/src/commands/StopEdgeDeploymentStageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopEdgeDeploymentStageRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopEdgeDeploymentStageRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopEdgeDeploymentStage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopEdgePackagingJobCommand.ts b/clients/client-sagemaker/src/commands/StopEdgePackagingJobCommand.ts index 1aff6f45a53d4..83e575091bd2a 100644 --- a/clients/client-sagemaker/src/commands/StopEdgePackagingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopEdgePackagingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopEdgePackagingJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopEdgePackagingJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopEdgePackagingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopHyperParameterTuningJobCommand.ts b/clients/client-sagemaker/src/commands/StopHyperParameterTuningJobCommand.ts index c23045cf5e3f3..3dcebf95bcae9 100644 --- a/clients/client-sagemaker/src/commands/StopHyperParameterTuningJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopHyperParameterTuningJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopHyperParameterTuningJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopHyperParameterTuningJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopHyperParameterTuningJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/StopInferenceExperimentCommand.ts index 3482c8f37e6ce..85b882e30a5ad 100644 --- a/clients/client-sagemaker/src/commands/StopInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/StopInferenceExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopInferenceExperimentRequest, StopInferenceExperimentResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopInferenceExperimentRequest, StopInferenceExperimentResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopInferenceExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopInferenceRecommendationsJobCommand.ts b/clients/client-sagemaker/src/commands/StopInferenceRecommendationsJobCommand.ts index 9eed0bda11081..42ef53b55f34f 100644 --- a/clients/client-sagemaker/src/commands/StopInferenceRecommendationsJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopInferenceRecommendationsJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopInferenceRecommendationsJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopInferenceRecommendationsJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopInferenceRecommendationsJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopLabelingJobCommand.ts b/clients/client-sagemaker/src/commands/StopLabelingJobCommand.ts index 8c05e9390a363..c35d28d1549bf 100644 --- a/clients/client-sagemaker/src/commands/StopLabelingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopLabelingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopLabelingJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopLabelingJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopLabelingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/StopMlflowTrackingServerCommand.ts index 9629cabd08e22..0bd70fb5c0afa 100644 --- a/clients/client-sagemaker/src/commands/StopMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/StopMlflowTrackingServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopMlflowTrackingServerRequest, StopMlflowTrackingServerResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopMlflowTrackingServerRequest, StopMlflowTrackingServerResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopMlflowTrackingServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/StopMonitoringScheduleCommand.ts index c9f96c469a9d9..5dc9b68c60ef6 100644 --- a/clients/client-sagemaker/src/commands/StopMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/StopMonitoringScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopMonitoringScheduleRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopMonitoringScheduleRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopMonitoringSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/StopNotebookInstanceCommand.ts index 9d0bd25c2e01b..2dd3cff771118 100644 --- a/clients/client-sagemaker/src/commands/StopNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/StopNotebookInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopNotebookInstanceInput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopNotebookInstanceInput } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopNotebookInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopOptimizationJobCommand.ts b/clients/client-sagemaker/src/commands/StopOptimizationJobCommand.ts index d7472c1d75b23..43d856fa06b60 100644 --- a/clients/client-sagemaker/src/commands/StopOptimizationJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopOptimizationJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopOptimizationJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopOptimizationJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopOptimizationJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopPipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/StopPipelineExecutionCommand.ts index bc18c67d35790..d81bf5abd5cd6 100644 --- a/clients/client-sagemaker/src/commands/StopPipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/StopPipelineExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopPipelineExecutionRequest, StopPipelineExecutionResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopPipelineExecutionRequest, StopPipelineExecutionResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopPipelineExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopProcessingJobCommand.ts b/clients/client-sagemaker/src/commands/StopProcessingJobCommand.ts index ae5f15ceef69e..6d96c3daa7b98 100644 --- a/clients/client-sagemaker/src/commands/StopProcessingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopProcessingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopProcessingJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopProcessingJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopProcessingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopTrainingJobCommand.ts b/clients/client-sagemaker/src/commands/StopTrainingJobCommand.ts index 8edc8383aecf1..72aab2f12ddff 100644 --- a/clients/client-sagemaker/src/commands/StopTrainingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopTrainingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopTrainingJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopTrainingJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopTrainingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/StopTransformJobCommand.ts b/clients/client-sagemaker/src/commands/StopTransformJobCommand.ts index b4c9b18bd79ee..9722cf631c1c7 100644 --- a/clients/client-sagemaker/src/commands/StopTransformJobCommand.ts +++ b/clients/client-sagemaker/src/commands/StopTransformJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopTransformJobRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { StopTransformJobRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { StopTransformJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateActionCommand.ts b/clients/client-sagemaker/src/commands/UpdateActionCommand.ts index 26c5f1580278b..d716232d7fe6c 100644 --- a/clients/client-sagemaker/src/commands/UpdateActionCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateActionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateActionRequest, UpdateActionResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateActionRequest, UpdateActionResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateAction } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateAppImageConfigCommand.ts b/clients/client-sagemaker/src/commands/UpdateAppImageConfigCommand.ts index 3d54d1c63aa2f..e4887777de136 100644 --- a/clients/client-sagemaker/src/commands/UpdateAppImageConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateAppImageConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAppImageConfigRequest, UpdateAppImageConfigResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateAppImageConfigRequest, UpdateAppImageConfigResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateAppImageConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateArtifactCommand.ts b/clients/client-sagemaker/src/commands/UpdateArtifactCommand.ts index 6f50470b62d09..5a9b89514e87f 100644 --- a/clients/client-sagemaker/src/commands/UpdateArtifactCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateArtifactCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateArtifactRequest, UpdateArtifactResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateArtifactRequest, UpdateArtifactResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateArtifact } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateClusterCommand.ts b/clients/client-sagemaker/src/commands/UpdateClusterCommand.ts index 69edbf0057094..a19bf1ba3841a 100644 --- a/clients/client-sagemaker/src/commands/UpdateClusterCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateClusterCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateCluster } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateClusterSchedulerConfigCommand.ts b/clients/client-sagemaker/src/commands/UpdateClusterSchedulerConfigCommand.ts index dec77900b85a0..edb3a997f478d 100644 --- a/clients/client-sagemaker/src/commands/UpdateClusterSchedulerConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateClusterSchedulerConfigCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterSchedulerConfigRequest, UpdateClusterSchedulerConfigResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateClusterSchedulerConfigRequest, UpdateClusterSchedulerConfigResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateClusterSchedulerConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateClusterSoftwareCommand.ts b/clients/client-sagemaker/src/commands/UpdateClusterSoftwareCommand.ts index 1e76b3a6c460d..f30378bebf4fb 100644 --- a/clients/client-sagemaker/src/commands/UpdateClusterSoftwareCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateClusterSoftwareCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterSoftwareRequest, UpdateClusterSoftwareResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateClusterSoftwareRequest, UpdateClusterSoftwareResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateClusterSoftware } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateCodeRepositoryCommand.ts b/clients/client-sagemaker/src/commands/UpdateCodeRepositoryCommand.ts index 9767fd9268857..74844a637b5c3 100644 --- a/clients/client-sagemaker/src/commands/UpdateCodeRepositoryCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateCodeRepositoryCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCodeRepositoryInput, UpdateCodeRepositoryOutput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateCodeRepositoryInput, UpdateCodeRepositoryOutput } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateCodeRepository } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateComputeQuotaCommand.ts b/clients/client-sagemaker/src/commands/UpdateComputeQuotaCommand.ts index f836946209385..dbd21704426d3 100644 --- a/clients/client-sagemaker/src/commands/UpdateComputeQuotaCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateComputeQuotaCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateComputeQuotaRequest, UpdateComputeQuotaResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateComputeQuotaRequest, UpdateComputeQuotaResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateComputeQuota } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateContextCommand.ts b/clients/client-sagemaker/src/commands/UpdateContextCommand.ts index 2ef947b4ffb6b..5f916422bcbeb 100644 --- a/clients/client-sagemaker/src/commands/UpdateContextCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateContextCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContextRequest, UpdateContextResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateContextRequest, UpdateContextResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateContext } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateDeviceFleetCommand.ts b/clients/client-sagemaker/src/commands/UpdateDeviceFleetCommand.ts index c67ff2a386b3d..907d553b11574 100644 --- a/clients/client-sagemaker/src/commands/UpdateDeviceFleetCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateDeviceFleetCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeviceFleetRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateDeviceFleetRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateDeviceFleet } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateDevicesCommand.ts b/clients/client-sagemaker/src/commands/UpdateDevicesCommand.ts index e9c12b7a22417..597ff7d20b8fd 100644 --- a/clients/client-sagemaker/src/commands/UpdateDevicesCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateDevicesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDevicesRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateDevicesRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateDevices } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts b/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts index 2193f6b79f296..c74fb4c88a723 100644 --- a/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateDomainCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateDomain } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateEndpointCommand.ts b/clients/client-sagemaker/src/commands/UpdateEndpointCommand.ts index 8a2b1ddc8ff8b..10f48fafe559e 100644 --- a/clients/client-sagemaker/src/commands/UpdateEndpointCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateEndpointCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEndpointInput, UpdateEndpointOutput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateEndpointInput, UpdateEndpointOutput } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateEndpoint } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateEndpointWeightsAndCapacitiesCommand.ts b/clients/client-sagemaker/src/commands/UpdateEndpointWeightsAndCapacitiesCommand.ts index 7ee79ca939d39..f1abaacd8a7bd 100644 --- a/clients/client-sagemaker/src/commands/UpdateEndpointWeightsAndCapacitiesCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateEndpointWeightsAndCapacitiesCommand.ts @@ -1,11 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEndpointWeightsAndCapacitiesInput, UpdateEndpointWeightsAndCapacitiesOutput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { + UpdateEndpointWeightsAndCapacitiesInput, + UpdateEndpointWeightsAndCapacitiesOutput, +} from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateEndpointWeightsAndCapacities } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateExperimentCommand.ts b/clients/client-sagemaker/src/commands/UpdateExperimentCommand.ts index 1a6bdfd366696..aab48efa56567 100644 --- a/clients/client-sagemaker/src/commands/UpdateExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateExperimentRequest, UpdateExperimentResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateExperimentRequest, UpdateExperimentResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateFeatureGroupCommand.ts b/clients/client-sagemaker/src/commands/UpdateFeatureGroupCommand.ts index 59c488465dd4b..288db5553dab9 100644 --- a/clients/client-sagemaker/src/commands/UpdateFeatureGroupCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateFeatureGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFeatureGroupRequest, UpdateFeatureGroupResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateFeatureGroupRequest, UpdateFeatureGroupResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateFeatureGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateFeatureMetadataCommand.ts b/clients/client-sagemaker/src/commands/UpdateFeatureMetadataCommand.ts index 5349b8baba582..56306b2353275 100644 --- a/clients/client-sagemaker/src/commands/UpdateFeatureMetadataCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateFeatureMetadataCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFeatureMetadataRequest } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateFeatureMetadataRequest } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateFeatureMetadata } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateHubCommand.ts b/clients/client-sagemaker/src/commands/UpdateHubCommand.ts index 3a4b92814fd73..37c50c3015dea 100644 --- a/clients/client-sagemaker/src/commands/UpdateHubCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateHubCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHubRequest, UpdateHubResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateHubRequest, UpdateHubResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateHub } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateHubContentCommand.ts b/clients/client-sagemaker/src/commands/UpdateHubContentCommand.ts index 41c56e005a8bd..936ecbeb2b41e 100644 --- a/clients/client-sagemaker/src/commands/UpdateHubContentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateHubContentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHubContentRequest, UpdateHubContentResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateHubContentRequest, UpdateHubContentResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateHubContent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateHubContentReferenceCommand.ts b/clients/client-sagemaker/src/commands/UpdateHubContentReferenceCommand.ts index ed8e826862fa4..1ebfeecc51869 100644 --- a/clients/client-sagemaker/src/commands/UpdateHubContentReferenceCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateHubContentReferenceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHubContentReferenceRequest, UpdateHubContentReferenceResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateHubContentReferenceRequest, UpdateHubContentReferenceResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateHubContentReference } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateImageCommand.ts b/clients/client-sagemaker/src/commands/UpdateImageCommand.ts index 4a217f588066b..2244ba62da8c9 100644 --- a/clients/client-sagemaker/src/commands/UpdateImageCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateImageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateImageRequest, UpdateImageResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateImageRequest, UpdateImageResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateImage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateImageVersionCommand.ts b/clients/client-sagemaker/src/commands/UpdateImageVersionCommand.ts index b6ee60ded3799..82253e1ceec71 100644 --- a/clients/client-sagemaker/src/commands/UpdateImageVersionCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateImageVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateImageVersionRequest, UpdateImageVersionResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateImageVersionRequest, UpdateImageVersionResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateImageVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateInferenceComponentCommand.ts b/clients/client-sagemaker/src/commands/UpdateInferenceComponentCommand.ts index 9938ddf45f890..c397006ed0fe4 100644 --- a/clients/client-sagemaker/src/commands/UpdateInferenceComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateInferenceComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInferenceComponentInput, UpdateInferenceComponentOutput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateInferenceComponentInput, UpdateInferenceComponentOutput } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateInferenceComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateInferenceComponentRuntimeConfigCommand.ts b/clients/client-sagemaker/src/commands/UpdateInferenceComponentRuntimeConfigCommand.ts index 96138625adc85..d1733a63ed6eb 100644 --- a/clients/client-sagemaker/src/commands/UpdateInferenceComponentRuntimeConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateInferenceComponentRuntimeConfigCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateInferenceComponentRuntimeConfigInput, UpdateInferenceComponentRuntimeConfigOutput, } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateInferenceComponentRuntimeConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateInferenceExperimentCommand.ts b/clients/client-sagemaker/src/commands/UpdateInferenceExperimentCommand.ts index b0675740f8aea..63e656027fc60 100644 --- a/clients/client-sagemaker/src/commands/UpdateInferenceExperimentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateInferenceExperimentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInferenceExperimentRequest, UpdateInferenceExperimentResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateInferenceExperimentRequest, UpdateInferenceExperimentResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateInferenceExperiment } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateMlflowTrackingServerCommand.ts b/clients/client-sagemaker/src/commands/UpdateMlflowTrackingServerCommand.ts index 288042abdac71..485936d9afd7a 100644 --- a/clients/client-sagemaker/src/commands/UpdateMlflowTrackingServerCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateMlflowTrackingServerCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMlflowTrackingServerRequest, UpdateMlflowTrackingServerResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateMlflowTrackingServerRequest, UpdateMlflowTrackingServerResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateMlflowTrackingServer } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateModelCardCommand.ts b/clients/client-sagemaker/src/commands/UpdateModelCardCommand.ts index 86a73611ed862..77f3628777ac9 100644 --- a/clients/client-sagemaker/src/commands/UpdateModelCardCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateModelCardCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateModelCardRequest, UpdateModelCardResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateModelCardRequest, UpdateModelCardResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateModelCard } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateModelPackageCommand.ts b/clients/client-sagemaker/src/commands/UpdateModelPackageCommand.ts index d41de156f673e..e0d316c941e90 100644 --- a/clients/client-sagemaker/src/commands/UpdateModelPackageCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateModelPackageCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateModelPackageInput, UpdateModelPackageOutput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateModelPackageInput, UpdateModelPackageOutput } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateModelPackage } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateMonitoringAlertCommand.ts b/clients/client-sagemaker/src/commands/UpdateMonitoringAlertCommand.ts index af3e1a15dd9e8..e1c4edee1b3c1 100644 --- a/clients/client-sagemaker/src/commands/UpdateMonitoringAlertCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateMonitoringAlertCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMonitoringAlertRequest, UpdateMonitoringAlertResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateMonitoringAlertRequest, UpdateMonitoringAlertResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateMonitoringAlert } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateMonitoringScheduleCommand.ts b/clients/client-sagemaker/src/commands/UpdateMonitoringScheduleCommand.ts index 416a5293b9afe..c7c138ee59b31 100644 --- a/clients/client-sagemaker/src/commands/UpdateMonitoringScheduleCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateMonitoringScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMonitoringScheduleRequest, UpdateMonitoringScheduleResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateMonitoringScheduleRequest, UpdateMonitoringScheduleResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateMonitoringSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateNotebookInstanceCommand.ts b/clients/client-sagemaker/src/commands/UpdateNotebookInstanceCommand.ts index c77120d1f1bf0..5f4993d56f064 100644 --- a/clients/client-sagemaker/src/commands/UpdateNotebookInstanceCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateNotebookInstanceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNotebookInstanceInput, UpdateNotebookInstanceOutput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateNotebookInstanceInput, UpdateNotebookInstanceOutput } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateNotebookInstance } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateNotebookInstanceLifecycleConfigCommand.ts b/clients/client-sagemaker/src/commands/UpdateNotebookInstanceLifecycleConfigCommand.ts index 448bd911d25cc..7ea7384419a80 100644 --- a/clients/client-sagemaker/src/commands/UpdateNotebookInstanceLifecycleConfigCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateNotebookInstanceLifecycleConfigCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateNotebookInstanceLifecycleConfigInput, UpdateNotebookInstanceLifecycleConfigOutput, } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateNotebookInstanceLifecycleConfig } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdatePartnerAppCommand.ts b/clients/client-sagemaker/src/commands/UpdatePartnerAppCommand.ts index c59b2e8eab494..0b7aa78631c46 100644 --- a/clients/client-sagemaker/src/commands/UpdatePartnerAppCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdatePartnerAppCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePartnerAppRequest, UpdatePartnerAppResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdatePartnerAppRequest, UpdatePartnerAppResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdatePartnerApp } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdatePipelineCommand.ts b/clients/client-sagemaker/src/commands/UpdatePipelineCommand.ts index eb9f6b2d17706..7e2c977cdc9e4 100644 --- a/clients/client-sagemaker/src/commands/UpdatePipelineCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdatePipelineCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePipelineRequest, UpdatePipelineResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdatePipelineRequest, UpdatePipelineResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdatePipeline } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdatePipelineExecutionCommand.ts b/clients/client-sagemaker/src/commands/UpdatePipelineExecutionCommand.ts index 366c3c5e1ae38..02ff25dba02ff 100644 --- a/clients/client-sagemaker/src/commands/UpdatePipelineExecutionCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdatePipelineExecutionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePipelineExecutionRequest, UpdatePipelineExecutionResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdatePipelineExecutionRequest, UpdatePipelineExecutionResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdatePipelineExecution } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdatePipelineVersionCommand.ts b/clients/client-sagemaker/src/commands/UpdatePipelineVersionCommand.ts index 038630808628a..43d5452ce0f55 100644 --- a/clients/client-sagemaker/src/commands/UpdatePipelineVersionCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdatePipelineVersionCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePipelineVersionRequest, UpdatePipelineVersionResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdatePipelineVersionRequest, UpdatePipelineVersionResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdatePipelineVersion } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateProjectCommand.ts b/clients/client-sagemaker/src/commands/UpdateProjectCommand.ts index ab1ff6df81079..21b360be93dfe 100644 --- a/clients/client-sagemaker/src/commands/UpdateProjectCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateProjectCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProjectInput, UpdateProjectOutput } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateProjectInput, UpdateProjectOutput } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateProject } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateSpaceCommand.ts b/clients/client-sagemaker/src/commands/UpdateSpaceCommand.ts index ea35e9f7740ee..488f215203e16 100644 --- a/clients/client-sagemaker/src/commands/UpdateSpaceCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateSpaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSpaceRequest, UpdateSpaceResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateSpaceRequest, UpdateSpaceResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateSpace } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateTrainingJobCommand.ts b/clients/client-sagemaker/src/commands/UpdateTrainingJobCommand.ts index 879d14e45cd0e..3a9daeddeee4e 100644 --- a/clients/client-sagemaker/src/commands/UpdateTrainingJobCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateTrainingJobCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrainingJobRequest, UpdateTrainingJobResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateTrainingJobRequest, UpdateTrainingJobResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateTrainingJob } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateTrialCommand.ts b/clients/client-sagemaker/src/commands/UpdateTrialCommand.ts index fd4e6e1882ee2..7e96c4e3e917f 100644 --- a/clients/client-sagemaker/src/commands/UpdateTrialCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateTrialCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrialRequest, UpdateTrialResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateTrialRequest, UpdateTrialResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateTrial } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateTrialComponentCommand.ts b/clients/client-sagemaker/src/commands/UpdateTrialComponentCommand.ts index 11590eb56d49a..89b65559891e5 100644 --- a/clients/client-sagemaker/src/commands/UpdateTrialComponentCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateTrialComponentCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrialComponentRequest, UpdateTrialComponentResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateTrialComponentRequest, UpdateTrialComponentResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateTrialComponent } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts b/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts index 7348f5cb269b2..8b8f275350f82 100644 --- a/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateUserProfileCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserProfileRequest, UpdateUserProfileResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateUserProfileRequest, UpdateUserProfileResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateUserProfile } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateWorkforceCommand.ts b/clients/client-sagemaker/src/commands/UpdateWorkforceCommand.ts index 16ed95b16aeec..ae523758c3863 100644 --- a/clients/client-sagemaker/src/commands/UpdateWorkforceCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateWorkforceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkforceRequest, UpdateWorkforceResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateWorkforceRequest, UpdateWorkforceResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateWorkforce } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/commands/UpdateWorkteamCommand.ts b/clients/client-sagemaker/src/commands/UpdateWorkteamCommand.ts index 633a52e8a15dd..31aae9f1a8710 100644 --- a/clients/client-sagemaker/src/commands/UpdateWorkteamCommand.ts +++ b/clients/client-sagemaker/src/commands/UpdateWorkteamCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkteamRequest, UpdateWorkteamResponse } from "../models/models_4"; -import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; +import type { UpdateWorkteamRequest, UpdateWorkteamResponse } from "../models/models_4"; +import type { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; import { UpdateWorkteam } from "../schemas/schemas_0"; /** diff --git a/clients/client-sagemaker/src/endpoint/EndpointParameters.ts b/clients/client-sagemaker/src/endpoint/EndpointParameters.ts index c5d65476a254a..677cab51ac8b2 100644 --- a/clients/client-sagemaker/src/endpoint/EndpointParameters.ts +++ b/clients/client-sagemaker/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sagemaker/src/endpoint/endpointResolver.ts b/clients/client-sagemaker/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sagemaker/src/endpoint/endpointResolver.ts +++ b/clients/client-sagemaker/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sagemaker/src/extensionConfiguration.ts b/clients/client-sagemaker/src/extensionConfiguration.ts index 0358e5de7432c..5477567a6ab23 100644 --- a/clients/client-sagemaker/src/extensionConfiguration.ts +++ b/clients/client-sagemaker/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sagemaker/src/models/SageMakerServiceException.ts b/clients/client-sagemaker/src/models/SageMakerServiceException.ts index 0aeb49ecbb5d7..d469117fb8a2b 100644 --- a/clients/client-sagemaker/src/models/SageMakerServiceException.ts +++ b/clients/client-sagemaker/src/models/SageMakerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sagemaker/src/models/errors.ts b/clients/client-sagemaker/src/models/errors.ts index 8e389beee6fe0..75ff066543e4c 100644 --- a/clients/client-sagemaker/src/models/errors.ts +++ b/clients/client-sagemaker/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException"; diff --git a/clients/client-sagemaker/src/pagination/CreateHubContentPresignedUrlsPaginator.ts b/clients/client-sagemaker/src/pagination/CreateHubContentPresignedUrlsPaginator.ts index 27ff0741c033c..90f304acc80d0 100644 --- a/clients/client-sagemaker/src/pagination/CreateHubContentPresignedUrlsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/CreateHubContentPresignedUrlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { CreateHubContentPresignedUrlsCommand, diff --git a/clients/client-sagemaker/src/pagination/Interfaces.ts b/clients/client-sagemaker/src/pagination/Interfaces.ts index 6f3bc3f245de0..e2ad3ef39d6bc 100644 --- a/clients/client-sagemaker/src/pagination/Interfaces.ts +++ b/clients/client-sagemaker/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListActionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListActionsPaginator.ts index 3a9685ddd8dfd..c9ec57e312a7e 100644 --- a/clients/client-sagemaker/src/pagination/ListActionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListActionsCommand, ListActionsCommandInput, ListActionsCommandOutput } from "../commands/ListActionsCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListAlgorithmsPaginator.ts b/clients/client-sagemaker/src/pagination/ListAlgorithmsPaginator.ts index ec1f4342fbee8..a0e032f827ef1 100644 --- a/clients/client-sagemaker/src/pagination/ListAlgorithmsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListAlgorithmsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAlgorithmsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListAliasesPaginator.ts b/clients/client-sagemaker/src/pagination/ListAliasesPaginator.ts index 9517c62ef2bb8..9f7b90603845d 100644 --- a/clients/client-sagemaker/src/pagination/ListAliasesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAliasesCommand, ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListAppImageConfigsPaginator.ts b/clients/client-sagemaker/src/pagination/ListAppImageConfigsPaginator.ts index 73a35a926efa5..eb99a280c7f02 100644 --- a/clients/client-sagemaker/src/pagination/ListAppImageConfigsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListAppImageConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppImageConfigsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListAppsPaginator.ts b/clients/client-sagemaker/src/pagination/ListAppsPaginator.ts index dcccd708d89ec..7debc34712e98 100644 --- a/clients/client-sagemaker/src/pagination/ListAppsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListAppsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppsCommand, ListAppsCommandInput, ListAppsCommandOutput } from "../commands/ListAppsCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListArtifactsPaginator.ts b/clients/client-sagemaker/src/pagination/ListArtifactsPaginator.ts index 2ec912aa8559c..5ad93f62a0c1a 100644 --- a/clients/client-sagemaker/src/pagination/ListArtifactsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListArtifactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListArtifactsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListAssociationsPaginator.ts b/clients/client-sagemaker/src/pagination/ListAssociationsPaginator.ts index a0784f2337e31..6221da05f1897 100644 --- a/clients/client-sagemaker/src/pagination/ListAssociationsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssociationsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListAutoMLJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListAutoMLJobsPaginator.ts index a5cbec6e372d5..867c17df89d15 100644 --- a/clients/client-sagemaker/src/pagination/ListAutoMLJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListAutoMLJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAutoMLJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListCandidatesForAutoMLJobPaginator.ts b/clients/client-sagemaker/src/pagination/ListCandidatesForAutoMLJobPaginator.ts index a311d6b154854..48022c6336455 100644 --- a/clients/client-sagemaker/src/pagination/ListCandidatesForAutoMLJobPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListCandidatesForAutoMLJobPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCandidatesForAutoMLJobCommand, diff --git a/clients/client-sagemaker/src/pagination/ListClusterEventsPaginator.ts b/clients/client-sagemaker/src/pagination/ListClusterEventsPaginator.ts index 68257c8fafcba..5a5872d89e31a 100644 --- a/clients/client-sagemaker/src/pagination/ListClusterEventsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListClusterEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClusterEventsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListClusterNodesPaginator.ts b/clients/client-sagemaker/src/pagination/ListClusterNodesPaginator.ts index 6e866d42ce9ee..2ac346fa9e36c 100644 --- a/clients/client-sagemaker/src/pagination/ListClusterNodesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListClusterNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClusterNodesCommand, diff --git a/clients/client-sagemaker/src/pagination/ListClusterSchedulerConfigsPaginator.ts b/clients/client-sagemaker/src/pagination/ListClusterSchedulerConfigsPaginator.ts index 8e2572d6609cf..54fec4dba20e0 100644 --- a/clients/client-sagemaker/src/pagination/ListClusterSchedulerConfigsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListClusterSchedulerConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClusterSchedulerConfigsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListClustersPaginator.ts b/clients/client-sagemaker/src/pagination/ListClustersPaginator.ts index 62fe4749ad240..099f61aa15766 100644 --- a/clients/client-sagemaker/src/pagination/ListClustersPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-sagemaker/src/pagination/ListCodeRepositoriesPaginator.ts b/clients/client-sagemaker/src/pagination/ListCodeRepositoriesPaginator.ts index 9103480bd26cf..18315a02c36c2 100644 --- a/clients/client-sagemaker/src/pagination/ListCodeRepositoriesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListCodeRepositoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCodeRepositoriesCommand, diff --git a/clients/client-sagemaker/src/pagination/ListCompilationJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListCompilationJobsPaginator.ts index 635bfe5ca6dfa..cbf2aa2bc0a45 100644 --- a/clients/client-sagemaker/src/pagination/ListCompilationJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListCompilationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCompilationJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListComputeQuotasPaginator.ts b/clients/client-sagemaker/src/pagination/ListComputeQuotasPaginator.ts index 3f38c834fb665..c7aa8e0450de8 100644 --- a/clients/client-sagemaker/src/pagination/ListComputeQuotasPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListComputeQuotasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComputeQuotasCommand, diff --git a/clients/client-sagemaker/src/pagination/ListContextsPaginator.ts b/clients/client-sagemaker/src/pagination/ListContextsPaginator.ts index 48d8e57245707..550db1a821c78 100644 --- a/clients/client-sagemaker/src/pagination/ListContextsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListContextsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContextsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListDataQualityJobDefinitionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListDataQualityJobDefinitionsPaginator.ts index 17bb94c92157c..7bc34efaa12ce 100644 --- a/clients/client-sagemaker/src/pagination/ListDataQualityJobDefinitionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListDataQualityJobDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataQualityJobDefinitionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListDeviceFleetsPaginator.ts b/clients/client-sagemaker/src/pagination/ListDeviceFleetsPaginator.ts index 306353e3e765c..bb129e11209d9 100644 --- a/clients/client-sagemaker/src/pagination/ListDeviceFleetsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListDeviceFleetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeviceFleetsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListDevicesPaginator.ts b/clients/client-sagemaker/src/pagination/ListDevicesPaginator.ts index 16c947704b7fe..64b622b15a95a 100644 --- a/clients/client-sagemaker/src/pagination/ListDevicesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDevicesCommand, ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListDomainsPaginator.ts b/clients/client-sagemaker/src/pagination/ListDomainsPaginator.ts index 64b1ef7616374..a9ea88dfcc365 100644 --- a/clients/client-sagemaker/src/pagination/ListDomainsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainsCommand, ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListEdgeDeploymentPlansPaginator.ts b/clients/client-sagemaker/src/pagination/ListEdgeDeploymentPlansPaginator.ts index 40ef42e050bc1..0fe3678283a61 100644 --- a/clients/client-sagemaker/src/pagination/ListEdgeDeploymentPlansPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListEdgeDeploymentPlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEdgeDeploymentPlansCommand, diff --git a/clients/client-sagemaker/src/pagination/ListEdgePackagingJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListEdgePackagingJobsPaginator.ts index 2305f21cdd113..3d213ad73d061 100644 --- a/clients/client-sagemaker/src/pagination/ListEdgePackagingJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListEdgePackagingJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEdgePackagingJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListEndpointConfigsPaginator.ts b/clients/client-sagemaker/src/pagination/ListEndpointConfigsPaginator.ts index a7b75cca1c71f..05cd9fb5fe72e 100644 --- a/clients/client-sagemaker/src/pagination/ListEndpointConfigsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListEndpointConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEndpointConfigsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListEndpointsPaginator.ts b/clients/client-sagemaker/src/pagination/ListEndpointsPaginator.ts index 9f9b06a666af5..7ffa5b3731c82 100644 --- a/clients/client-sagemaker/src/pagination/ListEndpointsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEndpointsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListExperimentsPaginator.ts b/clients/client-sagemaker/src/pagination/ListExperimentsPaginator.ts index 016bb20e6cbbc..a6b3bf5e08e5d 100644 --- a/clients/client-sagemaker/src/pagination/ListExperimentsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListExperimentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExperimentsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListFeatureGroupsPaginator.ts b/clients/client-sagemaker/src/pagination/ListFeatureGroupsPaginator.ts index 844b070c0d491..5330fd8936d04 100644 --- a/clients/client-sagemaker/src/pagination/ListFeatureGroupsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListFeatureGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFeatureGroupsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListFlowDefinitionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListFlowDefinitionsPaginator.ts index 22bfe792e04bb..bdbc92c4a6bcc 100644 --- a/clients/client-sagemaker/src/pagination/ListFlowDefinitionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListFlowDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFlowDefinitionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListHumanTaskUisPaginator.ts b/clients/client-sagemaker/src/pagination/ListHumanTaskUisPaginator.ts index c0b7fcae3218b..076180d9205fe 100644 --- a/clients/client-sagemaker/src/pagination/ListHumanTaskUisPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListHumanTaskUisPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHumanTaskUisCommand, diff --git a/clients/client-sagemaker/src/pagination/ListHyperParameterTuningJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListHyperParameterTuningJobsPaginator.ts index a4c8ac2df32a4..393e0145c0620 100644 --- a/clients/client-sagemaker/src/pagination/ListHyperParameterTuningJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListHyperParameterTuningJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListHyperParameterTuningJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListImageVersionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListImageVersionsPaginator.ts index 28078de83a244..78a77efa81988 100644 --- a/clients/client-sagemaker/src/pagination/ListImageVersionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListImageVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImageVersionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListImagesPaginator.ts b/clients/client-sagemaker/src/pagination/ListImagesPaginator.ts index a090fdeb995cb..485386e66d2b5 100644 --- a/clients/client-sagemaker/src/pagination/ListImagesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImagesCommand, ListImagesCommandInput, ListImagesCommandOutput } from "../commands/ListImagesCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListInferenceComponentsPaginator.ts b/clients/client-sagemaker/src/pagination/ListInferenceComponentsPaginator.ts index d464f114545ad..c7a03abebee8e 100644 --- a/clients/client-sagemaker/src/pagination/ListInferenceComponentsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListInferenceComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInferenceComponentsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListInferenceExperimentsPaginator.ts b/clients/client-sagemaker/src/pagination/ListInferenceExperimentsPaginator.ts index 461dcc09e8aa8..645445b4cf30d 100644 --- a/clients/client-sagemaker/src/pagination/ListInferenceExperimentsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListInferenceExperimentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInferenceExperimentsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListInferenceRecommendationsJobStepsPaginator.ts b/clients/client-sagemaker/src/pagination/ListInferenceRecommendationsJobStepsPaginator.ts index 406ec6ec569a6..120d69b41315b 100644 --- a/clients/client-sagemaker/src/pagination/ListInferenceRecommendationsJobStepsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListInferenceRecommendationsJobStepsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInferenceRecommendationsJobStepsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListInferenceRecommendationsJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListInferenceRecommendationsJobsPaginator.ts index 90cb70c510162..b5339be2e5ac7 100644 --- a/clients/client-sagemaker/src/pagination/ListInferenceRecommendationsJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListInferenceRecommendationsJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInferenceRecommendationsJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListLabelingJobsForWorkteamPaginator.ts b/clients/client-sagemaker/src/pagination/ListLabelingJobsForWorkteamPaginator.ts index 294b2095b80bc..6863c6442a17e 100644 --- a/clients/client-sagemaker/src/pagination/ListLabelingJobsForWorkteamPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListLabelingJobsForWorkteamPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLabelingJobsForWorkteamCommand, diff --git a/clients/client-sagemaker/src/pagination/ListLabelingJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListLabelingJobsPaginator.ts index c24afcbdca444..d496e2bace0c1 100644 --- a/clients/client-sagemaker/src/pagination/ListLabelingJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListLabelingJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLabelingJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListLineageGroupsPaginator.ts b/clients/client-sagemaker/src/pagination/ListLineageGroupsPaginator.ts index 610e2158ecb37..b12d423ceb041 100644 --- a/clients/client-sagemaker/src/pagination/ListLineageGroupsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListLineageGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLineageGroupsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListMlflowTrackingServersPaginator.ts b/clients/client-sagemaker/src/pagination/ListMlflowTrackingServersPaginator.ts index a5835e8001dcc..e6131f04280e9 100644 --- a/clients/client-sagemaker/src/pagination/ListMlflowTrackingServersPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListMlflowTrackingServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMlflowTrackingServersCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelBiasJobDefinitionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelBiasJobDefinitionsPaginator.ts index df76cd662bf91..90b7060ef5d84 100644 --- a/clients/client-sagemaker/src/pagination/ListModelBiasJobDefinitionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelBiasJobDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelBiasJobDefinitionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelCardExportJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelCardExportJobsPaginator.ts index 5678676e831ad..bf10fdfdd6cc4 100644 --- a/clients/client-sagemaker/src/pagination/ListModelCardExportJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelCardExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelCardExportJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelCardVersionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelCardVersionsPaginator.ts index 261c4456c231f..4335331d96fa4 100644 --- a/clients/client-sagemaker/src/pagination/ListModelCardVersionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelCardVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelCardVersionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelCardsPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelCardsPaginator.ts index 90ea771eaf184..82523d36e3c9d 100644 --- a/clients/client-sagemaker/src/pagination/ListModelCardsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelCardsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelCardsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelExplainabilityJobDefinitionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelExplainabilityJobDefinitionsPaginator.ts index b0b5a056bd5da..44573000d5850 100644 --- a/clients/client-sagemaker/src/pagination/ListModelExplainabilityJobDefinitionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelExplainabilityJobDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelExplainabilityJobDefinitionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelMetadataPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelMetadataPaginator.ts index 4f8682ed3a29a..3e392a6359391 100644 --- a/clients/client-sagemaker/src/pagination/ListModelMetadataPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelMetadataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelMetadataCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelPackageGroupsPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelPackageGroupsPaginator.ts index 52c309f0e1876..ffe1a395651e1 100644 --- a/clients/client-sagemaker/src/pagination/ListModelPackageGroupsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelPackageGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelPackageGroupsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelPackagesPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelPackagesPaginator.ts index 51c39a61d7236..f2bcc8062e9a4 100644 --- a/clients/client-sagemaker/src/pagination/ListModelPackagesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelPackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelPackagesCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelQualityJobDefinitionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelQualityJobDefinitionsPaginator.ts index cbf7ad580d1df..433b0840fe45e 100644 --- a/clients/client-sagemaker/src/pagination/ListModelQualityJobDefinitionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelQualityJobDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelQualityJobDefinitionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListModelsPaginator.ts b/clients/client-sagemaker/src/pagination/ListModelsPaginator.ts index 5abf65557321d..7259c620a98c6 100644 --- a/clients/client-sagemaker/src/pagination/ListModelsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListModelsCommand, ListModelsCommandInput, ListModelsCommandOutput } from "../commands/ListModelsCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListMonitoringAlertHistoryPaginator.ts b/clients/client-sagemaker/src/pagination/ListMonitoringAlertHistoryPaginator.ts index c8e7d18d535f5..0e1e9abee9dfe 100644 --- a/clients/client-sagemaker/src/pagination/ListMonitoringAlertHistoryPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListMonitoringAlertHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitoringAlertHistoryCommand, diff --git a/clients/client-sagemaker/src/pagination/ListMonitoringAlertsPaginator.ts b/clients/client-sagemaker/src/pagination/ListMonitoringAlertsPaginator.ts index 7b8b8e254b2b9..ba06ff2afb4e1 100644 --- a/clients/client-sagemaker/src/pagination/ListMonitoringAlertsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListMonitoringAlertsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitoringAlertsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListMonitoringExecutionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListMonitoringExecutionsPaginator.ts index 8219fa85daf93..fdf4423296b19 100644 --- a/clients/client-sagemaker/src/pagination/ListMonitoringExecutionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListMonitoringExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitoringExecutionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListMonitoringSchedulesPaginator.ts b/clients/client-sagemaker/src/pagination/ListMonitoringSchedulesPaginator.ts index 1d59885a256f2..884bcdd43651f 100644 --- a/clients/client-sagemaker/src/pagination/ListMonitoringSchedulesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListMonitoringSchedulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMonitoringSchedulesCommand, diff --git a/clients/client-sagemaker/src/pagination/ListNotebookInstanceLifecycleConfigsPaginator.ts b/clients/client-sagemaker/src/pagination/ListNotebookInstanceLifecycleConfigsPaginator.ts index ca0ef48ce7bbc..bdf7f9fcaf529 100644 --- a/clients/client-sagemaker/src/pagination/ListNotebookInstanceLifecycleConfigsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListNotebookInstanceLifecycleConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotebookInstanceLifecycleConfigsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListNotebookInstancesPaginator.ts b/clients/client-sagemaker/src/pagination/ListNotebookInstancesPaginator.ts index cc46ef6973721..baa7e84989596 100644 --- a/clients/client-sagemaker/src/pagination/ListNotebookInstancesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListNotebookInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotebookInstancesCommand, diff --git a/clients/client-sagemaker/src/pagination/ListOptimizationJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListOptimizationJobsPaginator.ts index 8e90a4e4c5849..69037c28f0780 100644 --- a/clients/client-sagemaker/src/pagination/ListOptimizationJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListOptimizationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOptimizationJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListPartnerAppsPaginator.ts b/clients/client-sagemaker/src/pagination/ListPartnerAppsPaginator.ts index ece7eb2e27364..7fa34635bab62 100644 --- a/clients/client-sagemaker/src/pagination/ListPartnerAppsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListPartnerAppsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPartnerAppsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListPipelineExecutionStepsPaginator.ts b/clients/client-sagemaker/src/pagination/ListPipelineExecutionStepsPaginator.ts index 4a81591e6f5e0..e109bca7a46de 100644 --- a/clients/client-sagemaker/src/pagination/ListPipelineExecutionStepsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListPipelineExecutionStepsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelineExecutionStepsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListPipelineExecutionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListPipelineExecutionsPaginator.ts index 748ac2d0a562d..924ff5bc0ccb6 100644 --- a/clients/client-sagemaker/src/pagination/ListPipelineExecutionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListPipelineExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelineExecutionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListPipelineParametersForExecutionPaginator.ts b/clients/client-sagemaker/src/pagination/ListPipelineParametersForExecutionPaginator.ts index 28fa496523a44..c4235776257ac 100644 --- a/clients/client-sagemaker/src/pagination/ListPipelineParametersForExecutionPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListPipelineParametersForExecutionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelineParametersForExecutionCommand, diff --git a/clients/client-sagemaker/src/pagination/ListPipelineVersionsPaginator.ts b/clients/client-sagemaker/src/pagination/ListPipelineVersionsPaginator.ts index 71acca545e750..24b1ff1999471 100644 --- a/clients/client-sagemaker/src/pagination/ListPipelineVersionsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListPipelineVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelineVersionsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListPipelinesPaginator.ts b/clients/client-sagemaker/src/pagination/ListPipelinesPaginator.ts index abd577300ace8..79f633ad473ee 100644 --- a/clients/client-sagemaker/src/pagination/ListPipelinesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListPipelinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPipelinesCommand, diff --git a/clients/client-sagemaker/src/pagination/ListProcessingJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListProcessingJobsPaginator.ts index e2e4e34b22499..1cf1c616d6adf 100644 --- a/clients/client-sagemaker/src/pagination/ListProcessingJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListProcessingJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProcessingJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListProjectsPaginator.ts b/clients/client-sagemaker/src/pagination/ListProjectsPaginator.ts index dd889fa68a03f..2c292130c7c1a 100644 --- a/clients/client-sagemaker/src/pagination/ListProjectsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListProjectsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProjectsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListResourceCatalogsPaginator.ts b/clients/client-sagemaker/src/pagination/ListResourceCatalogsPaginator.ts index 78ddbc29f0d13..81eb0cd1a82d4 100644 --- a/clients/client-sagemaker/src/pagination/ListResourceCatalogsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListResourceCatalogsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceCatalogsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListSpacesPaginator.ts b/clients/client-sagemaker/src/pagination/ListSpacesPaginator.ts index 40c02e890e419..748b74be6f691 100644 --- a/clients/client-sagemaker/src/pagination/ListSpacesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListSpacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSpacesCommand, ListSpacesCommandInput, ListSpacesCommandOutput } from "../commands/ListSpacesCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListStageDevicesPaginator.ts b/clients/client-sagemaker/src/pagination/ListStageDevicesPaginator.ts index 676f50cb9ca31..86e27cc768531 100644 --- a/clients/client-sagemaker/src/pagination/ListStageDevicesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListStageDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStageDevicesCommand, diff --git a/clients/client-sagemaker/src/pagination/ListStudioLifecycleConfigsPaginator.ts b/clients/client-sagemaker/src/pagination/ListStudioLifecycleConfigsPaginator.ts index 390673c08ecf4..50acd2a671315 100644 --- a/clients/client-sagemaker/src/pagination/ListStudioLifecycleConfigsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListStudioLifecycleConfigsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStudioLifecycleConfigsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListSubscribedWorkteamsPaginator.ts b/clients/client-sagemaker/src/pagination/ListSubscribedWorkteamsPaginator.ts index e4fbea5b44a2e..06d12d9d77c4c 100644 --- a/clients/client-sagemaker/src/pagination/ListSubscribedWorkteamsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListSubscribedWorkteamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubscribedWorkteamsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListTagsPaginator.ts b/clients/client-sagemaker/src/pagination/ListTagsPaginator.ts index 912f82809a1ae..9b3626cf7c277 100644 --- a/clients/client-sagemaker/src/pagination/ListTagsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListTagsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsCommand, ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListTrainingJobsForHyperParameterTuningJobPaginator.ts b/clients/client-sagemaker/src/pagination/ListTrainingJobsForHyperParameterTuningJobPaginator.ts index 60aa82075dafe..fc217aed45416 100644 --- a/clients/client-sagemaker/src/pagination/ListTrainingJobsForHyperParameterTuningJobPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListTrainingJobsForHyperParameterTuningJobPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrainingJobsForHyperParameterTuningJobCommand, diff --git a/clients/client-sagemaker/src/pagination/ListTrainingJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListTrainingJobsPaginator.ts index 5ca646ab77296..845eb94c30478 100644 --- a/clients/client-sagemaker/src/pagination/ListTrainingJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListTrainingJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrainingJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListTrainingPlansPaginator.ts b/clients/client-sagemaker/src/pagination/ListTrainingPlansPaginator.ts index d0c93aa0376d3..fff2ac94c7425 100644 --- a/clients/client-sagemaker/src/pagination/ListTrainingPlansPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListTrainingPlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrainingPlansCommand, diff --git a/clients/client-sagemaker/src/pagination/ListTransformJobsPaginator.ts b/clients/client-sagemaker/src/pagination/ListTransformJobsPaginator.ts index 80912339ea16a..c03c00e8c7483 100644 --- a/clients/client-sagemaker/src/pagination/ListTransformJobsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListTransformJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTransformJobsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListTrialComponentsPaginator.ts b/clients/client-sagemaker/src/pagination/ListTrialComponentsPaginator.ts index 4a55bbb60c233..54a859380bd78 100644 --- a/clients/client-sagemaker/src/pagination/ListTrialComponentsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListTrialComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrialComponentsCommand, diff --git a/clients/client-sagemaker/src/pagination/ListTrialsPaginator.ts b/clients/client-sagemaker/src/pagination/ListTrialsPaginator.ts index 82b99079b7459..dec34de551aec 100644 --- a/clients/client-sagemaker/src/pagination/ListTrialsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListTrialsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrialsCommand, ListTrialsCommandInput, ListTrialsCommandOutput } from "../commands/ListTrialsCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/pagination/ListUltraServersByReservedCapacityPaginator.ts b/clients/client-sagemaker/src/pagination/ListUltraServersByReservedCapacityPaginator.ts index 2ccdb882da3ee..aef451c0b912d 100644 --- a/clients/client-sagemaker/src/pagination/ListUltraServersByReservedCapacityPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListUltraServersByReservedCapacityPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUltraServersByReservedCapacityCommand, diff --git a/clients/client-sagemaker/src/pagination/ListUserProfilesPaginator.ts b/clients/client-sagemaker/src/pagination/ListUserProfilesPaginator.ts index 3528d916e04db..b3ed4f22da458 100644 --- a/clients/client-sagemaker/src/pagination/ListUserProfilesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListUserProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUserProfilesCommand, diff --git a/clients/client-sagemaker/src/pagination/ListWorkforcesPaginator.ts b/clients/client-sagemaker/src/pagination/ListWorkforcesPaginator.ts index 6a594af4736d5..172bacb920084 100644 --- a/clients/client-sagemaker/src/pagination/ListWorkforcesPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListWorkforcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkforcesCommand, diff --git a/clients/client-sagemaker/src/pagination/ListWorkteamsPaginator.ts b/clients/client-sagemaker/src/pagination/ListWorkteamsPaginator.ts index 851aec027d474..79f42a422d2ce 100644 --- a/clients/client-sagemaker/src/pagination/ListWorkteamsPaginator.ts +++ b/clients/client-sagemaker/src/pagination/ListWorkteamsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkteamsCommand, diff --git a/clients/client-sagemaker/src/pagination/QueryLineagePaginator.ts b/clients/client-sagemaker/src/pagination/QueryLineagePaginator.ts index 0c849a5908443..15af2d2d83aba 100644 --- a/clients/client-sagemaker/src/pagination/QueryLineagePaginator.ts +++ b/clients/client-sagemaker/src/pagination/QueryLineagePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { QueryLineageCommand, diff --git a/clients/client-sagemaker/src/pagination/SearchPaginator.ts b/clients/client-sagemaker/src/pagination/SearchPaginator.ts index 8a613f16f8d2d..82fa53251b31a 100644 --- a/clients/client-sagemaker/src/pagination/SearchPaginator.ts +++ b/clients/client-sagemaker/src/pagination/SearchPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchCommand, SearchCommandInput, SearchCommandOutput } from "../commands/SearchCommand"; import { SageMakerClient } from "../SageMakerClient"; diff --git a/clients/client-sagemaker/src/runtimeConfig.browser.ts b/clients/client-sagemaker/src/runtimeConfig.browser.ts index a1052f5d8c6ec..f3fb06cb40766 100644 --- a/clients/client-sagemaker/src/runtimeConfig.browser.ts +++ b/clients/client-sagemaker/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerClientConfig } from "./SageMakerClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SageMakerClientConfig } from "./SageMakerClient"; /** * @internal diff --git a/clients/client-sagemaker/src/runtimeConfig.native.ts b/clients/client-sagemaker/src/runtimeConfig.native.ts index cc56b40442215..2651b824d4bc3 100644 --- a/clients/client-sagemaker/src/runtimeConfig.native.ts +++ b/clients/client-sagemaker/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SageMakerClientConfig } from "./SageMakerClient"; +import type { SageMakerClientConfig } from "./SageMakerClient"; /** * @internal diff --git a/clients/client-sagemaker/src/runtimeConfig.shared.ts b/clients/client-sagemaker/src/runtimeConfig.shared.ts index a456c37e782ee..d48b279edca42 100644 --- a/clients/client-sagemaker/src/runtimeConfig.shared.ts +++ b/clients/client-sagemaker/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSageMakerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SageMakerClientConfig } from "./SageMakerClient"; +import type { SageMakerClientConfig } from "./SageMakerClient"; /** * @internal diff --git a/clients/client-sagemaker/src/runtimeConfig.ts b/clients/client-sagemaker/src/runtimeConfig.ts index 544b153aecda9..fc16a6c1f656e 100644 --- a/clients/client-sagemaker/src/runtimeConfig.ts +++ b/clients/client-sagemaker/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SageMakerClientConfig } from "./SageMakerClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SageMakerClientConfig } from "./SageMakerClient"; /** * @internal diff --git a/clients/client-sagemaker/src/runtimeExtensions.ts b/clients/client-sagemaker/src/runtimeExtensions.ts index 080e106892121..de8eb156c698d 100644 --- a/clients/client-sagemaker/src/runtimeExtensions.ts +++ b/clients/client-sagemaker/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SageMakerExtensionConfiguration } from "./extensionConfiguration"; +import type { SageMakerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sagemaker/src/schemas/schemas_0.ts b/clients/client-sagemaker/src/schemas/schemas_0.ts index 7eedbaf3d8d2c..5502bead8b8f8 100644 --- a/clients/client-sagemaker/src/schemas/schemas_0.ts +++ b/clients/client-sagemaker/src/schemas/schemas_0.ts @@ -3366,7 +3366,7 @@ const n0 = "com.amazonaws.sagemaker"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-savingsplans/package.json b/clients/client-savingsplans/package.json index 351728614da8e..e11cb9628a793 100644 --- a/clients/client-savingsplans/package.json +++ b/clients/client-savingsplans/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-savingsplans/src/Savingsplans.ts b/clients/client-savingsplans/src/Savingsplans.ts index 327383bed6bc1..49174a6ca12e1 100644 --- a/clients/client-savingsplans/src/Savingsplans.ts +++ b/clients/client-savingsplans/src/Savingsplans.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateSavingsPlanCommand, @@ -48,7 +48,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { SavingsplansClient, SavingsplansClientConfig } from "./SavingsplansClient"; +import { SavingsplansClient } from "./SavingsplansClient"; const commands = { CreateSavingsPlanCommand, diff --git a/clients/client-savingsplans/src/SavingsplansClient.ts b/clients/client-savingsplans/src/SavingsplansClient.ts index ad64580b63baf..3b076214e6c38 100644 --- a/clients/client-savingsplans/src/SavingsplansClient.ts +++ b/clients/client-savingsplans/src/SavingsplansClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSavingsplansHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateSavingsPlanCommandInput, CreateSavingsPlanCommandOutput } from "./commands/CreateSavingsPlanCommand"; @@ -92,7 +101,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-savingsplans/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-savingsplans/src/auth/httpAuthExtensionConfiguration.ts index f7a1318535701..4487c6e238922 100644 --- a/clients/client-savingsplans/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-savingsplans/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SavingsplansHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SavingsplansHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-savingsplans/src/auth/httpAuthSchemeProvider.ts b/clients/client-savingsplans/src/auth/httpAuthSchemeProvider.ts index 8497a061619a8..53bc00ef5e94c 100644 --- a/clients/client-savingsplans/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-savingsplans/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SavingsplansClientConfig, SavingsplansClientResolvedConfig } from "../SavingsplansClient"; +import { type SavingsplansClientResolvedConfig, SavingsplansClientConfig } from "../SavingsplansClient"; /** * @internal diff --git a/clients/client-savingsplans/src/commands/CreateSavingsPlanCommand.ts b/clients/client-savingsplans/src/commands/CreateSavingsPlanCommand.ts index 2999b96d2c7b4..3220a74da2c87 100644 --- a/clients/client-savingsplans/src/commands/CreateSavingsPlanCommand.ts +++ b/clients/client-savingsplans/src/commands/CreateSavingsPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSavingsPlanRequest, CreateSavingsPlanResponse } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { CreateSavingsPlanRequest, CreateSavingsPlanResponse } from "../models/models_0"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { CreateSavingsPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/commands/DeleteQueuedSavingsPlanCommand.ts b/clients/client-savingsplans/src/commands/DeleteQueuedSavingsPlanCommand.ts index fe9ec4a920bdf..0b944fc1b97e3 100644 --- a/clients/client-savingsplans/src/commands/DeleteQueuedSavingsPlanCommand.ts +++ b/clients/client-savingsplans/src/commands/DeleteQueuedSavingsPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueuedSavingsPlanRequest, DeleteQueuedSavingsPlanResponse } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { DeleteQueuedSavingsPlanRequest, DeleteQueuedSavingsPlanResponse } from "../models/models_0"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { DeleteQueuedSavingsPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/commands/DescribeSavingsPlanRatesCommand.ts b/clients/client-savingsplans/src/commands/DescribeSavingsPlanRatesCommand.ts index 2e44ceabbfcfa..f6435d49b5d22 100644 --- a/clients/client-savingsplans/src/commands/DescribeSavingsPlanRatesCommand.ts +++ b/clients/client-savingsplans/src/commands/DescribeSavingsPlanRatesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSavingsPlanRatesRequest, DescribeSavingsPlanRatesResponse } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { DescribeSavingsPlanRatesRequest, DescribeSavingsPlanRatesResponse } from "../models/models_0"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { DescribeSavingsPlanRates } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/commands/DescribeSavingsPlansCommand.ts b/clients/client-savingsplans/src/commands/DescribeSavingsPlansCommand.ts index f6eac4ad2dd75..8e334db82ca55 100644 --- a/clients/client-savingsplans/src/commands/DescribeSavingsPlansCommand.ts +++ b/clients/client-savingsplans/src/commands/DescribeSavingsPlansCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSavingsPlansRequest, DescribeSavingsPlansResponse } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { DescribeSavingsPlansRequest, DescribeSavingsPlansResponse } from "../models/models_0"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { DescribeSavingsPlans } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingRatesCommand.ts b/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingRatesCommand.ts index 7bf4b33319fb5..21ceba6385af8 100644 --- a/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingRatesCommand.ts +++ b/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingRatesCommand.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeSavingsPlansOfferingRatesRequest, DescribeSavingsPlansOfferingRatesResponse, } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { DescribeSavingsPlansOfferingRates } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingsCommand.ts b/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingsCommand.ts index 0a1702e014850..09471e94b2318 100644 --- a/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingsCommand.ts +++ b/clients/client-savingsplans/src/commands/DescribeSavingsPlansOfferingsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSavingsPlansOfferingsRequest, DescribeSavingsPlansOfferingsResponse } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { DescribeSavingsPlansOfferingsRequest, DescribeSavingsPlansOfferingsResponse } from "../models/models_0"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { DescribeSavingsPlansOfferings } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/commands/ListTagsForResourceCommand.ts b/clients/client-savingsplans/src/commands/ListTagsForResourceCommand.ts index bd12550042abf..e2177358ca918 100644 --- a/clients/client-savingsplans/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-savingsplans/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/commands/ReturnSavingsPlanCommand.ts b/clients/client-savingsplans/src/commands/ReturnSavingsPlanCommand.ts index 8792d3a7f39c6..5aefdb496e98d 100644 --- a/clients/client-savingsplans/src/commands/ReturnSavingsPlanCommand.ts +++ b/clients/client-savingsplans/src/commands/ReturnSavingsPlanCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReturnSavingsPlanRequest, ReturnSavingsPlanResponse } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { ReturnSavingsPlanRequest, ReturnSavingsPlanResponse } from "../models/models_0"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { ReturnSavingsPlan } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/commands/TagResourceCommand.ts b/clients/client-savingsplans/src/commands/TagResourceCommand.ts index b6949bfca9d9a..f6c2c799f5705 100644 --- a/clients/client-savingsplans/src/commands/TagResourceCommand.ts +++ b/clients/client-savingsplans/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/commands/UntagResourceCommand.ts b/clients/client-savingsplans/src/commands/UntagResourceCommand.ts index c4ee11033b6fd..997aa5072cba8 100644 --- a/clients/client-savingsplans/src/commands/UntagResourceCommand.ts +++ b/clients/client-savingsplans/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; -import { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { SavingsplansClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SavingsplansClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-savingsplans/src/endpoint/EndpointParameters.ts b/clients/client-savingsplans/src/endpoint/EndpointParameters.ts index c7697e770fed1..ea59a97e28897 100644 --- a/clients/client-savingsplans/src/endpoint/EndpointParameters.ts +++ b/clients/client-savingsplans/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-savingsplans/src/endpoint/endpointResolver.ts b/clients/client-savingsplans/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-savingsplans/src/endpoint/endpointResolver.ts +++ b/clients/client-savingsplans/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-savingsplans/src/extensionConfiguration.ts b/clients/client-savingsplans/src/extensionConfiguration.ts index 408f4416d9293..4b748dbc0713e 100644 --- a/clients/client-savingsplans/src/extensionConfiguration.ts +++ b/clients/client-savingsplans/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-savingsplans/src/models/SavingsplansServiceException.ts b/clients/client-savingsplans/src/models/SavingsplansServiceException.ts index 115767d36ac80..65c64dc0f5915 100644 --- a/clients/client-savingsplans/src/models/SavingsplansServiceException.ts +++ b/clients/client-savingsplans/src/models/SavingsplansServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-savingsplans/src/models/errors.ts b/clients/client-savingsplans/src/models/errors.ts index 019edf55b4306..c0f37f23977a4 100644 --- a/clients/client-savingsplans/src/models/errors.ts +++ b/clients/client-savingsplans/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SavingsplansServiceException as __BaseException } from "./SavingsplansServiceException"; diff --git a/clients/client-savingsplans/src/runtimeConfig.browser.ts b/clients/client-savingsplans/src/runtimeConfig.browser.ts index a6040969e3c74..502d4b19e5638 100644 --- a/clients/client-savingsplans/src/runtimeConfig.browser.ts +++ b/clients/client-savingsplans/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SavingsplansClientConfig } from "./SavingsplansClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SavingsplansClientConfig } from "./SavingsplansClient"; /** * @internal diff --git a/clients/client-savingsplans/src/runtimeConfig.native.ts b/clients/client-savingsplans/src/runtimeConfig.native.ts index b0968667683d6..042a90335a1c0 100644 --- a/clients/client-savingsplans/src/runtimeConfig.native.ts +++ b/clients/client-savingsplans/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SavingsplansClientConfig } from "./SavingsplansClient"; +import type { SavingsplansClientConfig } from "./SavingsplansClient"; /** * @internal diff --git a/clients/client-savingsplans/src/runtimeConfig.shared.ts b/clients/client-savingsplans/src/runtimeConfig.shared.ts index a2cc371928528..fd06d56045c1c 100644 --- a/clients/client-savingsplans/src/runtimeConfig.shared.ts +++ b/clients/client-savingsplans/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSavingsplansHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SavingsplansClientConfig } from "./SavingsplansClient"; +import type { SavingsplansClientConfig } from "./SavingsplansClient"; /** * @internal diff --git a/clients/client-savingsplans/src/runtimeConfig.ts b/clients/client-savingsplans/src/runtimeConfig.ts index 170be922edc10..c12b37780003a 100644 --- a/clients/client-savingsplans/src/runtimeConfig.ts +++ b/clients/client-savingsplans/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SavingsplansClientConfig } from "./SavingsplansClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SavingsplansClientConfig } from "./SavingsplansClient"; /** * @internal diff --git a/clients/client-savingsplans/src/runtimeExtensions.ts b/clients/client-savingsplans/src/runtimeExtensions.ts index 584deecda139e..c1cd235b4d5b0 100644 --- a/clients/client-savingsplans/src/runtimeExtensions.ts +++ b/clients/client-savingsplans/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SavingsplansExtensionConfiguration } from "./extensionConfiguration"; +import type { SavingsplansExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-savingsplans/src/schemas/schemas_0.ts b/clients/client-savingsplans/src/schemas/schemas_0.ts index f6b5e53ee23e0..d4fe1ed1b9916 100644 --- a/clients/client-savingsplans/src/schemas/schemas_0.ts +++ b/clients/client-savingsplans/src/schemas/schemas_0.ts @@ -126,7 +126,7 @@ const n0 = "com.amazonaws.savingsplans"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-scheduler/package.json b/clients/client-scheduler/package.json index d7a78aabf7232..4a79e569ec602 100644 --- a/clients/client-scheduler/package.json +++ b/clients/client-scheduler/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-scheduler/src/Scheduler.ts b/clients/client-scheduler/src/Scheduler.ts index 47e10e17b87f0..1cec57834e853 100644 --- a/clients/client-scheduler/src/Scheduler.ts +++ b/clients/client-scheduler/src/Scheduler.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateScheduleCommand, @@ -54,7 +54,7 @@ import { UpdateScheduleCommandInput, UpdateScheduleCommandOutput, } from "./commands/UpdateScheduleCommand"; -import { SchedulerClient, SchedulerClientConfig } from "./SchedulerClient"; +import { SchedulerClient } from "./SchedulerClient"; const commands = { CreateScheduleCommand, diff --git a/clients/client-scheduler/src/SchedulerClient.ts b/clients/client-scheduler/src/SchedulerClient.ts index 887bab4673296..ab49dac141ef8 100644 --- a/clients/client-scheduler/src/SchedulerClient.ts +++ b/clients/client-scheduler/src/SchedulerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSchedulerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateScheduleCommandInput, CreateScheduleCommandOutput } from "./commands/CreateScheduleCommand"; @@ -85,7 +94,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-scheduler/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-scheduler/src/auth/httpAuthExtensionConfiguration.ts index 45a458bfae855..408c7b4340fb6 100644 --- a/clients/client-scheduler/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-scheduler/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SchedulerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SchedulerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-scheduler/src/auth/httpAuthSchemeProvider.ts b/clients/client-scheduler/src/auth/httpAuthSchemeProvider.ts index c60a3f1e30c63..b9fb65e7c54af 100644 --- a/clients/client-scheduler/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-scheduler/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SchedulerClientConfig, SchedulerClientResolvedConfig } from "../SchedulerClient"; +import { type SchedulerClientResolvedConfig, SchedulerClientConfig } from "../SchedulerClient"; /** * @internal diff --git a/clients/client-scheduler/src/commands/CreateScheduleCommand.ts b/clients/client-scheduler/src/commands/CreateScheduleCommand.ts index d87cedfb704d3..16e352fcbd46a 100644 --- a/clients/client-scheduler/src/commands/CreateScheduleCommand.ts +++ b/clients/client-scheduler/src/commands/CreateScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScheduleInput, CreateScheduleOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { CreateScheduleInput, CreateScheduleOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { CreateSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/CreateScheduleGroupCommand.ts b/clients/client-scheduler/src/commands/CreateScheduleGroupCommand.ts index 1b51696d1f78f..f8467692dd1e3 100644 --- a/clients/client-scheduler/src/commands/CreateScheduleGroupCommand.ts +++ b/clients/client-scheduler/src/commands/CreateScheduleGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScheduleGroupInput, CreateScheduleGroupOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { CreateScheduleGroupInput, CreateScheduleGroupOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { CreateScheduleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/DeleteScheduleCommand.ts b/clients/client-scheduler/src/commands/DeleteScheduleCommand.ts index fe179ae0f762b..bb406a388b5f8 100644 --- a/clients/client-scheduler/src/commands/DeleteScheduleCommand.ts +++ b/clients/client-scheduler/src/commands/DeleteScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScheduleInput, DeleteScheduleOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { DeleteScheduleInput, DeleteScheduleOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { DeleteSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/DeleteScheduleGroupCommand.ts b/clients/client-scheduler/src/commands/DeleteScheduleGroupCommand.ts index 1c8de7e8e837c..75ccf398348cf 100644 --- a/clients/client-scheduler/src/commands/DeleteScheduleGroupCommand.ts +++ b/clients/client-scheduler/src/commands/DeleteScheduleGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScheduleGroupInput, DeleteScheduleGroupOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { DeleteScheduleGroupInput, DeleteScheduleGroupOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { DeleteScheduleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/GetScheduleCommand.ts b/clients/client-scheduler/src/commands/GetScheduleCommand.ts index 8241ad2ee490c..5d35de27b42b1 100644 --- a/clients/client-scheduler/src/commands/GetScheduleCommand.ts +++ b/clients/client-scheduler/src/commands/GetScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetScheduleInput, GetScheduleOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { GetScheduleInput, GetScheduleOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { GetSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/GetScheduleGroupCommand.ts b/clients/client-scheduler/src/commands/GetScheduleGroupCommand.ts index b3d8a3dd43db2..2f35817744e43 100644 --- a/clients/client-scheduler/src/commands/GetScheduleGroupCommand.ts +++ b/clients/client-scheduler/src/commands/GetScheduleGroupCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetScheduleGroupInput, GetScheduleGroupOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { GetScheduleGroupInput, GetScheduleGroupOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { GetScheduleGroup } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/ListScheduleGroupsCommand.ts b/clients/client-scheduler/src/commands/ListScheduleGroupsCommand.ts index fce9e24787393..ffddc3fb9e73a 100644 --- a/clients/client-scheduler/src/commands/ListScheduleGroupsCommand.ts +++ b/clients/client-scheduler/src/commands/ListScheduleGroupsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScheduleGroupsInput, ListScheduleGroupsOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { ListScheduleGroupsInput, ListScheduleGroupsOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { ListScheduleGroups } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/ListSchedulesCommand.ts b/clients/client-scheduler/src/commands/ListSchedulesCommand.ts index 4f4f0841a721e..efc03d50ee392 100644 --- a/clients/client-scheduler/src/commands/ListSchedulesCommand.ts +++ b/clients/client-scheduler/src/commands/ListSchedulesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSchedulesInput, ListSchedulesOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { ListSchedulesInput, ListSchedulesOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { ListSchedules } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/ListTagsForResourceCommand.ts b/clients/client-scheduler/src/commands/ListTagsForResourceCommand.ts index 2d8961abac280..de2ffaeac243b 100644 --- a/clients/client-scheduler/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-scheduler/src/commands/ListTagsForResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { ListTagsForResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/TagResourceCommand.ts b/clients/client-scheduler/src/commands/TagResourceCommand.ts index ad97db120a353..54adafdb328a8 100644 --- a/clients/client-scheduler/src/commands/TagResourceCommand.ts +++ b/clients/client-scheduler/src/commands/TagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { TagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/UntagResourceCommand.ts b/clients/client-scheduler/src/commands/UntagResourceCommand.ts index 1308d993408ff..1b6e4e48063a1 100644 --- a/clients/client-scheduler/src/commands/UntagResourceCommand.ts +++ b/clients/client-scheduler/src/commands/UntagResourceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { UntagResource } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/commands/UpdateScheduleCommand.ts b/clients/client-scheduler/src/commands/UpdateScheduleCommand.ts index d3f4b690127f7..220749ec119a4 100644 --- a/clients/client-scheduler/src/commands/UpdateScheduleCommand.ts +++ b/clients/client-scheduler/src/commands/UpdateScheduleCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScheduleInput, UpdateScheduleOutput } from "../models/models_0"; -import { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; +import type { UpdateScheduleInput, UpdateScheduleOutput } from "../models/models_0"; +import type { SchedulerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchedulerClient"; import { UpdateSchedule } from "../schemas/schemas_0"; /** diff --git a/clients/client-scheduler/src/endpoint/EndpointParameters.ts b/clients/client-scheduler/src/endpoint/EndpointParameters.ts index 8473a6724a4cc..a77cdf63d4069 100644 --- a/clients/client-scheduler/src/endpoint/EndpointParameters.ts +++ b/clients/client-scheduler/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-scheduler/src/endpoint/endpointResolver.ts b/clients/client-scheduler/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-scheduler/src/endpoint/endpointResolver.ts +++ b/clients/client-scheduler/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-scheduler/src/extensionConfiguration.ts b/clients/client-scheduler/src/extensionConfiguration.ts index 51b692bb0af1a..f2376b424b6be 100644 --- a/clients/client-scheduler/src/extensionConfiguration.ts +++ b/clients/client-scheduler/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-scheduler/src/models/SchedulerServiceException.ts b/clients/client-scheduler/src/models/SchedulerServiceException.ts index 4f329012ea756..0ac26e4430bb3 100644 --- a/clients/client-scheduler/src/models/SchedulerServiceException.ts +++ b/clients/client-scheduler/src/models/SchedulerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-scheduler/src/models/errors.ts b/clients/client-scheduler/src/models/errors.ts index 32dd191f5e596..68c270f789002 100644 --- a/clients/client-scheduler/src/models/errors.ts +++ b/clients/client-scheduler/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SchedulerServiceException as __BaseException } from "./SchedulerServiceException"; diff --git a/clients/client-scheduler/src/pagination/Interfaces.ts b/clients/client-scheduler/src/pagination/Interfaces.ts index 47bae26d3518c..826d7c7fe65d4 100644 --- a/clients/client-scheduler/src/pagination/Interfaces.ts +++ b/clients/client-scheduler/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SchedulerClient } from "../SchedulerClient"; diff --git a/clients/client-scheduler/src/pagination/ListScheduleGroupsPaginator.ts b/clients/client-scheduler/src/pagination/ListScheduleGroupsPaginator.ts index 823eb3200e974..90be9a58f718e 100644 --- a/clients/client-scheduler/src/pagination/ListScheduleGroupsPaginator.ts +++ b/clients/client-scheduler/src/pagination/ListScheduleGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListScheduleGroupsCommand, diff --git a/clients/client-scheduler/src/pagination/ListSchedulesPaginator.ts b/clients/client-scheduler/src/pagination/ListSchedulesPaginator.ts index 72091329a4749..a130f7f317b28 100644 --- a/clients/client-scheduler/src/pagination/ListSchedulesPaginator.ts +++ b/clients/client-scheduler/src/pagination/ListSchedulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchedulesCommand, diff --git a/clients/client-scheduler/src/runtimeConfig.browser.ts b/clients/client-scheduler/src/runtimeConfig.browser.ts index 24811355e77d2..65cedc76c7bf2 100644 --- a/clients/client-scheduler/src/runtimeConfig.browser.ts +++ b/clients/client-scheduler/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SchedulerClientConfig } from "./SchedulerClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SchedulerClientConfig } from "./SchedulerClient"; /** * @internal diff --git a/clients/client-scheduler/src/runtimeConfig.native.ts b/clients/client-scheduler/src/runtimeConfig.native.ts index 853b5939e6e77..5125954debf85 100644 --- a/clients/client-scheduler/src/runtimeConfig.native.ts +++ b/clients/client-scheduler/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SchedulerClientConfig } from "./SchedulerClient"; +import type { SchedulerClientConfig } from "./SchedulerClient"; /** * @internal diff --git a/clients/client-scheduler/src/runtimeConfig.shared.ts b/clients/client-scheduler/src/runtimeConfig.shared.ts index 22c089f50c3cd..f5afa95a4f50f 100644 --- a/clients/client-scheduler/src/runtimeConfig.shared.ts +++ b/clients/client-scheduler/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSchedulerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SchedulerClientConfig } from "./SchedulerClient"; +import type { SchedulerClientConfig } from "./SchedulerClient"; /** * @internal diff --git a/clients/client-scheduler/src/runtimeConfig.ts b/clients/client-scheduler/src/runtimeConfig.ts index 4d1558b5d3b3b..69498a0b3a167 100644 --- a/clients/client-scheduler/src/runtimeConfig.ts +++ b/clients/client-scheduler/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SchedulerClientConfig } from "./SchedulerClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SchedulerClientConfig } from "./SchedulerClient"; /** * @internal diff --git a/clients/client-scheduler/src/runtimeExtensions.ts b/clients/client-scheduler/src/runtimeExtensions.ts index c449c32c39466..45b64c39f152d 100644 --- a/clients/client-scheduler/src/runtimeExtensions.ts +++ b/clients/client-scheduler/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SchedulerExtensionConfiguration } from "./extensionConfiguration"; +import type { SchedulerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-scheduler/src/schemas/schemas_0.ts b/clients/client-scheduler/src/schemas/schemas_0.ts index 53c17ebf9c2bf..1d200be1ecbea 100644 --- a/clients/client-scheduler/src/schemas/schemas_0.ts +++ b/clients/client-scheduler/src/schemas/schemas_0.ts @@ -138,7 +138,7 @@ const n0 = "com.amazonaws.scheduler"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-schemas/package.json b/clients/client-schemas/package.json index 95c47b729a2f4..73fd83330b41e 100644 --- a/clients/client-schemas/package.json +++ b/clients/client-schemas/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-schemas/src/Schemas.ts b/clients/client-schemas/src/Schemas.ts index adfd87f2c6e27..6a04c8d50206e 100644 --- a/clients/client-schemas/src/Schemas.ts +++ b/clients/client-schemas/src/Schemas.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateDiscovererCommand, @@ -149,7 +149,7 @@ import { UpdateSchemaCommandInput, UpdateSchemaCommandOutput, } from "./commands/UpdateSchemaCommand"; -import { SchemasClient, SchemasClientConfig } from "./SchemasClient"; +import { SchemasClient } from "./SchemasClient"; const commands = { CreateDiscovererCommand, diff --git a/clients/client-schemas/src/SchemasClient.ts b/clients/client-schemas/src/SchemasClient.ts index a7051b77879e2..9578077bf6b33 100644 --- a/clients/client-schemas/src/SchemasClient.ts +++ b/clients/client-schemas/src/SchemasClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSchemasHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateDiscovererCommandInput, CreateDiscovererCommandOutput } from "./commands/CreateDiscovererCommand"; @@ -113,7 +122,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-schemas/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-schemas/src/auth/httpAuthExtensionConfiguration.ts index e158764aa4731..b3985ed814fee 100644 --- a/clients/client-schemas/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-schemas/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SchemasHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SchemasHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-schemas/src/auth/httpAuthSchemeProvider.ts b/clients/client-schemas/src/auth/httpAuthSchemeProvider.ts index 286be4ad00b18..fe7bd99ff5f81 100644 --- a/clients/client-schemas/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-schemas/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SchemasClientConfig, SchemasClientResolvedConfig } from "../SchemasClient"; +import { type SchemasClientResolvedConfig, SchemasClientConfig } from "../SchemasClient"; /** * @internal diff --git a/clients/client-schemas/src/commands/CreateDiscovererCommand.ts b/clients/client-schemas/src/commands/CreateDiscovererCommand.ts index 61c4174973b8f..6f664d2f99520 100644 --- a/clients/client-schemas/src/commands/CreateDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/CreateDiscovererCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDiscovererRequest, CreateDiscovererResponse } from "../models/models_0"; +import type { CreateDiscovererRequest, CreateDiscovererResponse } from "../models/models_0"; import { CreateDiscoverer } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/CreateRegistryCommand.ts b/clients/client-schemas/src/commands/CreateRegistryCommand.ts index 42b49468b75d6..ee7f80315fcd8 100644 --- a/clients/client-schemas/src/commands/CreateRegistryCommand.ts +++ b/clients/client-schemas/src/commands/CreateRegistryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegistryRequest, CreateRegistryResponse } from "../models/models_0"; +import type { CreateRegistryRequest, CreateRegistryResponse } from "../models/models_0"; import { CreateRegistry } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/CreateSchemaCommand.ts b/clients/client-schemas/src/commands/CreateSchemaCommand.ts index 45a80c77c48ab..164f52822ed8c 100644 --- a/clients/client-schemas/src/commands/CreateSchemaCommand.ts +++ b/clients/client-schemas/src/commands/CreateSchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSchemaRequest, CreateSchemaResponse } from "../models/models_0"; +import type { CreateSchemaRequest, CreateSchemaResponse } from "../models/models_0"; import { CreateSchema } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/DeleteDiscovererCommand.ts b/clients/client-schemas/src/commands/DeleteDiscovererCommand.ts index b2de9efa55001..e3e9ffde58a12 100644 --- a/clients/client-schemas/src/commands/DeleteDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/DeleteDiscovererCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDiscovererRequest } from "../models/models_0"; +import type { DeleteDiscovererRequest } from "../models/models_0"; import { DeleteDiscoverer } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/DeleteRegistryCommand.ts b/clients/client-schemas/src/commands/DeleteRegistryCommand.ts index 626b5f9ffb1e8..eb54d7f600d5c 100644 --- a/clients/client-schemas/src/commands/DeleteRegistryCommand.ts +++ b/clients/client-schemas/src/commands/DeleteRegistryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegistryRequest } from "../models/models_0"; +import type { DeleteRegistryRequest } from "../models/models_0"; import { DeleteRegistry } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-schemas/src/commands/DeleteResourcePolicyCommand.ts index ccd03a1623715..dd9b8455c27b2 100644 --- a/clients/client-schemas/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-schemas/src/commands/DeleteResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest } from "../models/models_0"; +import type { DeleteResourcePolicyRequest } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/DeleteSchemaCommand.ts b/clients/client-schemas/src/commands/DeleteSchemaCommand.ts index 6b0668e9c8a00..f435164211111 100644 --- a/clients/client-schemas/src/commands/DeleteSchemaCommand.ts +++ b/clients/client-schemas/src/commands/DeleteSchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSchemaRequest } from "../models/models_0"; +import type { DeleteSchemaRequest } from "../models/models_0"; import { DeleteSchema } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/DeleteSchemaVersionCommand.ts b/clients/client-schemas/src/commands/DeleteSchemaVersionCommand.ts index 51be861d06616..dd882d1bfbafa 100644 --- a/clients/client-schemas/src/commands/DeleteSchemaVersionCommand.ts +++ b/clients/client-schemas/src/commands/DeleteSchemaVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSchemaVersionRequest } from "../models/models_0"; +import type { DeleteSchemaVersionRequest } from "../models/models_0"; import { DeleteSchemaVersion } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/DescribeCodeBindingCommand.ts b/clients/client-schemas/src/commands/DescribeCodeBindingCommand.ts index 09c1b1004fd39..44227c3bb7a27 100644 --- a/clients/client-schemas/src/commands/DescribeCodeBindingCommand.ts +++ b/clients/client-schemas/src/commands/DescribeCodeBindingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCodeBindingRequest, DescribeCodeBindingResponse } from "../models/models_0"; +import type { DescribeCodeBindingRequest, DescribeCodeBindingResponse } from "../models/models_0"; import { DescribeCodeBinding } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/DescribeDiscovererCommand.ts b/clients/client-schemas/src/commands/DescribeDiscovererCommand.ts index a50b5051492b2..35140acdfa8c1 100644 --- a/clients/client-schemas/src/commands/DescribeDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/DescribeDiscovererCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDiscovererRequest, DescribeDiscovererResponse } from "../models/models_0"; +import type { DescribeDiscovererRequest, DescribeDiscovererResponse } from "../models/models_0"; import { DescribeDiscoverer } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/DescribeRegistryCommand.ts b/clients/client-schemas/src/commands/DescribeRegistryCommand.ts index d77906d0f661d..72da7a0bd9d24 100644 --- a/clients/client-schemas/src/commands/DescribeRegistryCommand.ts +++ b/clients/client-schemas/src/commands/DescribeRegistryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRegistryRequest, DescribeRegistryResponse } from "../models/models_0"; +import type { DescribeRegistryRequest, DescribeRegistryResponse } from "../models/models_0"; import { DescribeRegistry } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/DescribeSchemaCommand.ts b/clients/client-schemas/src/commands/DescribeSchemaCommand.ts index 0e1d93abda6c5..c5ea27f1393b2 100644 --- a/clients/client-schemas/src/commands/DescribeSchemaCommand.ts +++ b/clients/client-schemas/src/commands/DescribeSchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSchemaRequest, DescribeSchemaResponse } from "../models/models_0"; +import type { DescribeSchemaRequest, DescribeSchemaResponse } from "../models/models_0"; import { DescribeSchema } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/ExportSchemaCommand.ts b/clients/client-schemas/src/commands/ExportSchemaCommand.ts index edeb0447d08bf..b108c17199613 100644 --- a/clients/client-schemas/src/commands/ExportSchemaCommand.ts +++ b/clients/client-schemas/src/commands/ExportSchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportSchemaRequest, ExportSchemaResponse } from "../models/models_0"; +import type { ExportSchemaRequest, ExportSchemaResponse } from "../models/models_0"; import { ExportSchema } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/GetCodeBindingSourceCommand.ts b/clients/client-schemas/src/commands/GetCodeBindingSourceCommand.ts index 1c106a10c0c33..ac7ea74696066 100644 --- a/clients/client-schemas/src/commands/GetCodeBindingSourceCommand.ts +++ b/clients/client-schemas/src/commands/GetCodeBindingSourceCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCodeBindingSourceRequest, GetCodeBindingSourceResponse } from "../models/models_0"; +import { type GetCodeBindingSourceRequest, GetCodeBindingSourceResponse } from "../models/models_0"; import { GetCodeBindingSource } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/GetDiscoveredSchemaCommand.ts b/clients/client-schemas/src/commands/GetDiscoveredSchemaCommand.ts index 48a8e3e71ad30..6c396ded25978 100644 --- a/clients/client-schemas/src/commands/GetDiscoveredSchemaCommand.ts +++ b/clients/client-schemas/src/commands/GetDiscoveredSchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDiscoveredSchemaRequest, GetDiscoveredSchemaResponse } from "../models/models_0"; +import type { GetDiscoveredSchemaRequest, GetDiscoveredSchemaResponse } from "../models/models_0"; import { GetDiscoveredSchema } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/GetResourcePolicyCommand.ts b/clients/client-schemas/src/commands/GetResourcePolicyCommand.ts index ba3933807e367..67fb907de4785 100644 --- a/clients/client-schemas/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-schemas/src/commands/GetResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/ListDiscoverersCommand.ts b/clients/client-schemas/src/commands/ListDiscoverersCommand.ts index 7c0b97dcd228b..5adce8f8b7637 100644 --- a/clients/client-schemas/src/commands/ListDiscoverersCommand.ts +++ b/clients/client-schemas/src/commands/ListDiscoverersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDiscoverersRequest, ListDiscoverersResponse } from "../models/models_0"; +import type { ListDiscoverersRequest, ListDiscoverersResponse } from "../models/models_0"; import { ListDiscoverers } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/ListRegistriesCommand.ts b/clients/client-schemas/src/commands/ListRegistriesCommand.ts index 22be176c246cb..d34b367b1b0a5 100644 --- a/clients/client-schemas/src/commands/ListRegistriesCommand.ts +++ b/clients/client-schemas/src/commands/ListRegistriesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegistriesRequest, ListRegistriesResponse } from "../models/models_0"; +import type { ListRegistriesRequest, ListRegistriesResponse } from "../models/models_0"; import { ListRegistries } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/ListSchemaVersionsCommand.ts b/clients/client-schemas/src/commands/ListSchemaVersionsCommand.ts index 77a1a592d1c8d..629d2c18fce5e 100644 --- a/clients/client-schemas/src/commands/ListSchemaVersionsCommand.ts +++ b/clients/client-schemas/src/commands/ListSchemaVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSchemaVersionsRequest, ListSchemaVersionsResponse } from "../models/models_0"; +import type { ListSchemaVersionsRequest, ListSchemaVersionsResponse } from "../models/models_0"; import { ListSchemaVersions } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/ListSchemasCommand.ts b/clients/client-schemas/src/commands/ListSchemasCommand.ts index d736e2868b3ff..e3314ed9f0207 100644 --- a/clients/client-schemas/src/commands/ListSchemasCommand.ts +++ b/clients/client-schemas/src/commands/ListSchemasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSchemasRequest, ListSchemasResponse } from "../models/models_0"; +import type { ListSchemasRequest, ListSchemasResponse } from "../models/models_0"; import { ListSchemas } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/ListTagsForResourceCommand.ts b/clients/client-schemas/src/commands/ListTagsForResourceCommand.ts index cee2182af7882..9264c9249c236 100644 --- a/clients/client-schemas/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-schemas/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/PutCodeBindingCommand.ts b/clients/client-schemas/src/commands/PutCodeBindingCommand.ts index 9383add323f44..1a143359ef07c 100644 --- a/clients/client-schemas/src/commands/PutCodeBindingCommand.ts +++ b/clients/client-schemas/src/commands/PutCodeBindingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutCodeBindingRequest, PutCodeBindingResponse } from "../models/models_0"; +import type { PutCodeBindingRequest, PutCodeBindingResponse } from "../models/models_0"; import { PutCodeBinding } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/PutResourcePolicyCommand.ts b/clients/client-schemas/src/commands/PutResourcePolicyCommand.ts index 20815faf5cd08..6f419ab952031 100644 --- a/clients/client-schemas/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-schemas/src/commands/PutResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/SearchSchemasCommand.ts b/clients/client-schemas/src/commands/SearchSchemasCommand.ts index a2c4908424ce8..2992d44067845 100644 --- a/clients/client-schemas/src/commands/SearchSchemasCommand.ts +++ b/clients/client-schemas/src/commands/SearchSchemasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchSchemasRequest, SearchSchemasResponse } from "../models/models_0"; +import type { SearchSchemasRequest, SearchSchemasResponse } from "../models/models_0"; import { SearchSchemas } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/StartDiscovererCommand.ts b/clients/client-schemas/src/commands/StartDiscovererCommand.ts index 1d51098cdd444..327f8e8533c82 100644 --- a/clients/client-schemas/src/commands/StartDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/StartDiscovererCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDiscovererRequest, StartDiscovererResponse } from "../models/models_0"; +import type { StartDiscovererRequest, StartDiscovererResponse } from "../models/models_0"; import { StartDiscoverer } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/StopDiscovererCommand.ts b/clients/client-schemas/src/commands/StopDiscovererCommand.ts index fb751c1c146f5..2b62f6716fb8c 100644 --- a/clients/client-schemas/src/commands/StopDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/StopDiscovererCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopDiscovererRequest, StopDiscovererResponse } from "../models/models_0"; +import type { StopDiscovererRequest, StopDiscovererResponse } from "../models/models_0"; import { StopDiscoverer } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/TagResourceCommand.ts b/clients/client-schemas/src/commands/TagResourceCommand.ts index 24dc75ee2c8ac..b7df1e5e9c483 100644 --- a/clients/client-schemas/src/commands/TagResourceCommand.ts +++ b/clients/client-schemas/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/UntagResourceCommand.ts b/clients/client-schemas/src/commands/UntagResourceCommand.ts index 4cdb95e14c02b..6aa5e999d6973 100644 --- a/clients/client-schemas/src/commands/UntagResourceCommand.ts +++ b/clients/client-schemas/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/UpdateDiscovererCommand.ts b/clients/client-schemas/src/commands/UpdateDiscovererCommand.ts index 1764558c66fb9..d75bece806b8e 100644 --- a/clients/client-schemas/src/commands/UpdateDiscovererCommand.ts +++ b/clients/client-schemas/src/commands/UpdateDiscovererCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDiscovererRequest, UpdateDiscovererResponse } from "../models/models_0"; +import type { UpdateDiscovererRequest, UpdateDiscovererResponse } from "../models/models_0"; import { UpdateDiscoverer } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/UpdateRegistryCommand.ts b/clients/client-schemas/src/commands/UpdateRegistryCommand.ts index 4cadda5d93c70..a50ed648f1c2e 100644 --- a/clients/client-schemas/src/commands/UpdateRegistryCommand.ts +++ b/clients/client-schemas/src/commands/UpdateRegistryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRegistryRequest, UpdateRegistryResponse } from "../models/models_0"; +import type { UpdateRegistryRequest, UpdateRegistryResponse } from "../models/models_0"; import { UpdateRegistry } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/commands/UpdateSchemaCommand.ts b/clients/client-schemas/src/commands/UpdateSchemaCommand.ts index c5c5cdc4150c4..5c2f57000bcec 100644 --- a/clients/client-schemas/src/commands/UpdateSchemaCommand.ts +++ b/clients/client-schemas/src/commands/UpdateSchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSchemaRequest, UpdateSchemaResponse } from "../models/models_0"; +import type { UpdateSchemaRequest, UpdateSchemaResponse } from "../models/models_0"; import { UpdateSchema } from "../schemas/schemas_0"; -import { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; +import type { SchemasClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SchemasClient"; /** * @public diff --git a/clients/client-schemas/src/endpoint/EndpointParameters.ts b/clients/client-schemas/src/endpoint/EndpointParameters.ts index cd0e301a030c4..0717a55b6a06c 100644 --- a/clients/client-schemas/src/endpoint/EndpointParameters.ts +++ b/clients/client-schemas/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-schemas/src/endpoint/endpointResolver.ts b/clients/client-schemas/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-schemas/src/endpoint/endpointResolver.ts +++ b/clients/client-schemas/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-schemas/src/extensionConfiguration.ts b/clients/client-schemas/src/extensionConfiguration.ts index d9374974607a9..3f812c859d40e 100644 --- a/clients/client-schemas/src/extensionConfiguration.ts +++ b/clients/client-schemas/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-schemas/src/models/SchemasServiceException.ts b/clients/client-schemas/src/models/SchemasServiceException.ts index 844d7d980f97c..1d6224567ab39 100644 --- a/clients/client-schemas/src/models/SchemasServiceException.ts +++ b/clients/client-schemas/src/models/SchemasServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-schemas/src/models/errors.ts b/clients/client-schemas/src/models/errors.ts index eb4b9d3d452e9..60cf377811b8b 100644 --- a/clients/client-schemas/src/models/errors.ts +++ b/clients/client-schemas/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SchemasServiceException as __BaseException } from "./SchemasServiceException"; diff --git a/clients/client-schemas/src/pagination/Interfaces.ts b/clients/client-schemas/src/pagination/Interfaces.ts index 61f53b46fee7d..1b473ae5c6fa5 100644 --- a/clients/client-schemas/src/pagination/Interfaces.ts +++ b/clients/client-schemas/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SchemasClient } from "../SchemasClient"; diff --git a/clients/client-schemas/src/pagination/ListDiscoverersPaginator.ts b/clients/client-schemas/src/pagination/ListDiscoverersPaginator.ts index 3a4154795b888..0b7fe08d3a45c 100644 --- a/clients/client-schemas/src/pagination/ListDiscoverersPaginator.ts +++ b/clients/client-schemas/src/pagination/ListDiscoverersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDiscoverersCommand, diff --git a/clients/client-schemas/src/pagination/ListRegistriesPaginator.ts b/clients/client-schemas/src/pagination/ListRegistriesPaginator.ts index 6f0a8e05822a5..4575f63ca637a 100644 --- a/clients/client-schemas/src/pagination/ListRegistriesPaginator.ts +++ b/clients/client-schemas/src/pagination/ListRegistriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRegistriesCommand, diff --git a/clients/client-schemas/src/pagination/ListSchemaVersionsPaginator.ts b/clients/client-schemas/src/pagination/ListSchemaVersionsPaginator.ts index 78096a265f8b2..0a7298c6d6b90 100644 --- a/clients/client-schemas/src/pagination/ListSchemaVersionsPaginator.ts +++ b/clients/client-schemas/src/pagination/ListSchemaVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchemaVersionsCommand, diff --git a/clients/client-schemas/src/pagination/ListSchemasPaginator.ts b/clients/client-schemas/src/pagination/ListSchemasPaginator.ts index f0ecb7ba7448e..c80ad4f84f1cb 100644 --- a/clients/client-schemas/src/pagination/ListSchemasPaginator.ts +++ b/clients/client-schemas/src/pagination/ListSchemasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSchemasCommand, ListSchemasCommandInput, ListSchemasCommandOutput } from "../commands/ListSchemasCommand"; import { SchemasClient } from "../SchemasClient"; diff --git a/clients/client-schemas/src/pagination/SearchSchemasPaginator.ts b/clients/client-schemas/src/pagination/SearchSchemasPaginator.ts index 4a8ccb1867d11..24b404e76c290 100644 --- a/clients/client-schemas/src/pagination/SearchSchemasPaginator.ts +++ b/clients/client-schemas/src/pagination/SearchSchemasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchSchemasCommand, diff --git a/clients/client-schemas/src/runtimeConfig.browser.ts b/clients/client-schemas/src/runtimeConfig.browser.ts index d8a647e71e77c..d4407eadbd236 100644 --- a/clients/client-schemas/src/runtimeConfig.browser.ts +++ b/clients/client-schemas/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SchemasClientConfig } from "./SchemasClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SchemasClientConfig } from "./SchemasClient"; /** * @internal diff --git a/clients/client-schemas/src/runtimeConfig.native.ts b/clients/client-schemas/src/runtimeConfig.native.ts index dae2add5f8817..21fb98af04f1e 100644 --- a/clients/client-schemas/src/runtimeConfig.native.ts +++ b/clients/client-schemas/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SchemasClientConfig } from "./SchemasClient"; +import type { SchemasClientConfig } from "./SchemasClient"; /** * @internal diff --git a/clients/client-schemas/src/runtimeConfig.shared.ts b/clients/client-schemas/src/runtimeConfig.shared.ts index c26385f149588..16e8c622cd7ed 100644 --- a/clients/client-schemas/src/runtimeConfig.shared.ts +++ b/clients/client-schemas/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSchemasHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SchemasClientConfig } from "./SchemasClient"; +import type { SchemasClientConfig } from "./SchemasClient"; /** * @internal diff --git a/clients/client-schemas/src/runtimeConfig.ts b/clients/client-schemas/src/runtimeConfig.ts index 39b77073077df..d363c6b18503b 100644 --- a/clients/client-schemas/src/runtimeConfig.ts +++ b/clients/client-schemas/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SchemasClientConfig } from "./SchemasClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SchemasClientConfig } from "./SchemasClient"; /** * @internal diff --git a/clients/client-schemas/src/runtimeExtensions.ts b/clients/client-schemas/src/runtimeExtensions.ts index 96214313122d0..fc70ecf940c41 100644 --- a/clients/client-schemas/src/runtimeExtensions.ts +++ b/clients/client-schemas/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SchemasExtensionConfiguration } from "./extensionConfiguration"; +import type { SchemasExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-schemas/src/schemas/schemas_0.ts b/clients/client-schemas/src/schemas/schemas_0.ts index 65df4af219b4f..643f8572d83da 100644 --- a/clients/client-schemas/src/schemas/schemas_0.ts +++ b/clients/client-schemas/src/schemas/schemas_0.ts @@ -176,7 +176,7 @@ const n0 = "com.amazonaws.schemas"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-secrets-manager/package.json b/clients/client-secrets-manager/package.json index b606d48c1e80d..4c5737c4ba3e1 100644 --- a/clients/client-secrets-manager/package.json +++ b/clients/client-secrets-manager/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-secrets-manager/src/SecretsManager.ts b/clients/client-secrets-manager/src/SecretsManager.ts index 7666dccdec2d8..180f4f68cfcba 100644 --- a/clients/client-secrets-manager/src/SecretsManager.ts +++ b/clients/client-secrets-manager/src/SecretsManager.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetSecretValueCommand, @@ -109,7 +109,7 @@ import { ValidateResourcePolicyCommandInput, ValidateResourcePolicyCommandOutput, } from "./commands/ValidateResourcePolicyCommand"; -import { SecretsManagerClient, SecretsManagerClientConfig } from "./SecretsManagerClient"; +import { SecretsManagerClient } from "./SecretsManagerClient"; const commands = { BatchGetSecretValueCommand, diff --git a/clients/client-secrets-manager/src/SecretsManagerClient.ts b/clients/client-secrets-manager/src/SecretsManagerClient.ts index ff527fd688ab7..2185bd9d85dc7 100644 --- a/clients/client-secrets-manager/src/SecretsManagerClient.ts +++ b/clients/client-secrets-manager/src/SecretsManagerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSecretsManagerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -111,7 +120,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-secrets-manager/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-secrets-manager/src/auth/httpAuthExtensionConfiguration.ts index 7fe4a7575cb17..a556e509c5883 100644 --- a/clients/client-secrets-manager/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-secrets-manager/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SecretsManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SecretsManagerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-secrets-manager/src/auth/httpAuthSchemeProvider.ts b/clients/client-secrets-manager/src/auth/httpAuthSchemeProvider.ts index b19a5f8cc0029..ab1b98f2357b3 100644 --- a/clients/client-secrets-manager/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-secrets-manager/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SecretsManagerClientConfig, SecretsManagerClientResolvedConfig } from "../SecretsManagerClient"; +import { type SecretsManagerClientResolvedConfig, SecretsManagerClientConfig } from "../SecretsManagerClient"; /** * @internal diff --git a/clients/client-secrets-manager/src/commands/BatchGetSecretValueCommand.ts b/clients/client-secrets-manager/src/commands/BatchGetSecretValueCommand.ts index 37e7cb889024a..57a7f5177467f 100644 --- a/clients/client-secrets-manager/src/commands/BatchGetSecretValueCommand.ts +++ b/clients/client-secrets-manager/src/commands/BatchGetSecretValueCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetSecretValueRequest, BatchGetSecretValueResponse } from "../models/models_0"; +import type { BatchGetSecretValueRequest, BatchGetSecretValueResponse } from "../models/models_0"; import { BatchGetSecretValue } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/CancelRotateSecretCommand.ts b/clients/client-secrets-manager/src/commands/CancelRotateSecretCommand.ts index bf6f17ffa11e7..198ef97c30722 100644 --- a/clients/client-secrets-manager/src/commands/CancelRotateSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/CancelRotateSecretCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelRotateSecretRequest, CancelRotateSecretResponse } from "../models/models_0"; +import type { CancelRotateSecretRequest, CancelRotateSecretResponse } from "../models/models_0"; import { CancelRotateSecret } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/CreateSecretCommand.ts b/clients/client-secrets-manager/src/commands/CreateSecretCommand.ts index adbf14c89e850..af3afb7f0e6f1 100644 --- a/clients/client-secrets-manager/src/commands/CreateSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/CreateSecretCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSecretRequest, CreateSecretResponse } from "../models/models_0"; +import type { CreateSecretRequest, CreateSecretResponse } from "../models/models_0"; import { CreateSecret } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-secrets-manager/src/commands/DeleteResourcePolicyCommand.ts index 8d0d8f291f347..62d2965698ea3 100644 --- a/clients/client-secrets-manager/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-secrets-manager/src/commands/DeleteResourcePolicyCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/DeleteSecretCommand.ts b/clients/client-secrets-manager/src/commands/DeleteSecretCommand.ts index dc5dfe11f6f0d..986adff72c756 100644 --- a/clients/client-secrets-manager/src/commands/DeleteSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/DeleteSecretCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSecretRequest, DeleteSecretResponse } from "../models/models_0"; +import type { DeleteSecretRequest, DeleteSecretResponse } from "../models/models_0"; import { DeleteSecret } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/DescribeSecretCommand.ts b/clients/client-secrets-manager/src/commands/DescribeSecretCommand.ts index 984d518a9b0ab..8dae158e943ce 100644 --- a/clients/client-secrets-manager/src/commands/DescribeSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/DescribeSecretCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSecretRequest, DescribeSecretResponse } from "../models/models_0"; +import type { DescribeSecretRequest, DescribeSecretResponse } from "../models/models_0"; import { DescribeSecret } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/GetRandomPasswordCommand.ts b/clients/client-secrets-manager/src/commands/GetRandomPasswordCommand.ts index f319945e63200..26584d28729fa 100644 --- a/clients/client-secrets-manager/src/commands/GetRandomPasswordCommand.ts +++ b/clients/client-secrets-manager/src/commands/GetRandomPasswordCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRandomPasswordRequest, GetRandomPasswordResponse } from "../models/models_0"; +import type { GetRandomPasswordRequest, GetRandomPasswordResponse } from "../models/models_0"; import { GetRandomPassword } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/GetResourcePolicyCommand.ts b/clients/client-secrets-manager/src/commands/GetResourcePolicyCommand.ts index b23587c594491..a4752fd4b1f97 100644 --- a/clients/client-secrets-manager/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-secrets-manager/src/commands/GetResourcePolicyCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/GetSecretValueCommand.ts b/clients/client-secrets-manager/src/commands/GetSecretValueCommand.ts index f52820f94edf7..69b227e76f426 100644 --- a/clients/client-secrets-manager/src/commands/GetSecretValueCommand.ts +++ b/clients/client-secrets-manager/src/commands/GetSecretValueCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSecretValueRequest, GetSecretValueResponse } from "../models/models_0"; +import type { GetSecretValueRequest, GetSecretValueResponse } from "../models/models_0"; import { GetSecretValue } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/ListSecretVersionIdsCommand.ts b/clients/client-secrets-manager/src/commands/ListSecretVersionIdsCommand.ts index fbba33c49796d..2b6c4d9e26ab1 100644 --- a/clients/client-secrets-manager/src/commands/ListSecretVersionIdsCommand.ts +++ b/clients/client-secrets-manager/src/commands/ListSecretVersionIdsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecretVersionIdsRequest, ListSecretVersionIdsResponse } from "../models/models_0"; +import type { ListSecretVersionIdsRequest, ListSecretVersionIdsResponse } from "../models/models_0"; import { ListSecretVersionIds } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/ListSecretsCommand.ts b/clients/client-secrets-manager/src/commands/ListSecretsCommand.ts index 80b324eee023e..819ba5dac2854 100644 --- a/clients/client-secrets-manager/src/commands/ListSecretsCommand.ts +++ b/clients/client-secrets-manager/src/commands/ListSecretsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecretsRequest, ListSecretsResponse } from "../models/models_0"; +import type { ListSecretsRequest, ListSecretsResponse } from "../models/models_0"; import { ListSecrets } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/PutResourcePolicyCommand.ts b/clients/client-secrets-manager/src/commands/PutResourcePolicyCommand.ts index ad35bdcc5859d..68cc4f25d5aed 100644 --- a/clients/client-secrets-manager/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-secrets-manager/src/commands/PutResourcePolicyCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/PutSecretValueCommand.ts b/clients/client-secrets-manager/src/commands/PutSecretValueCommand.ts index 90bbff3672f21..c458213810d3f 100644 --- a/clients/client-secrets-manager/src/commands/PutSecretValueCommand.ts +++ b/clients/client-secrets-manager/src/commands/PutSecretValueCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSecretValueRequest, PutSecretValueResponse } from "../models/models_0"; +import type { PutSecretValueRequest, PutSecretValueResponse } from "../models/models_0"; import { PutSecretValue } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/RemoveRegionsFromReplicationCommand.ts b/clients/client-secrets-manager/src/commands/RemoveRegionsFromReplicationCommand.ts index 4bd2cce4b4791..11b1e3f3609ac 100644 --- a/clients/client-secrets-manager/src/commands/RemoveRegionsFromReplicationCommand.ts +++ b/clients/client-secrets-manager/src/commands/RemoveRegionsFromReplicationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveRegionsFromReplicationRequest, RemoveRegionsFromReplicationResponse } from "../models/models_0"; +import type { RemoveRegionsFromReplicationRequest, RemoveRegionsFromReplicationResponse } from "../models/models_0"; import { RemoveRegionsFromReplication } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/ReplicateSecretToRegionsCommand.ts b/clients/client-secrets-manager/src/commands/ReplicateSecretToRegionsCommand.ts index f87a8f6c9beb0..176f1d46c9853 100644 --- a/clients/client-secrets-manager/src/commands/ReplicateSecretToRegionsCommand.ts +++ b/clients/client-secrets-manager/src/commands/ReplicateSecretToRegionsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReplicateSecretToRegionsRequest, ReplicateSecretToRegionsResponse } from "../models/models_0"; +import type { ReplicateSecretToRegionsRequest, ReplicateSecretToRegionsResponse } from "../models/models_0"; import { ReplicateSecretToRegions } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/RestoreSecretCommand.ts b/clients/client-secrets-manager/src/commands/RestoreSecretCommand.ts index 4523fc7e8cc13..178d821d958dd 100644 --- a/clients/client-secrets-manager/src/commands/RestoreSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/RestoreSecretCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreSecretRequest, RestoreSecretResponse } from "../models/models_0"; +import type { RestoreSecretRequest, RestoreSecretResponse } from "../models/models_0"; import { RestoreSecret } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/RotateSecretCommand.ts b/clients/client-secrets-manager/src/commands/RotateSecretCommand.ts index 02dfbacf163ac..72819c68a781c 100644 --- a/clients/client-secrets-manager/src/commands/RotateSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/RotateSecretCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RotateSecretRequest, RotateSecretResponse } from "../models/models_0"; +import type { RotateSecretRequest, RotateSecretResponse } from "../models/models_0"; import { RotateSecret } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/StopReplicationToReplicaCommand.ts b/clients/client-secrets-manager/src/commands/StopReplicationToReplicaCommand.ts index a4ac8a669ba02..38e87b9faf752 100644 --- a/clients/client-secrets-manager/src/commands/StopReplicationToReplicaCommand.ts +++ b/clients/client-secrets-manager/src/commands/StopReplicationToReplicaCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopReplicationToReplicaRequest, StopReplicationToReplicaResponse } from "../models/models_0"; +import type { StopReplicationToReplicaRequest, StopReplicationToReplicaResponse } from "../models/models_0"; import { StopReplicationToReplica } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/TagResourceCommand.ts b/clients/client-secrets-manager/src/commands/TagResourceCommand.ts index 5474c73f20f24..90efabda16889 100644 --- a/clients/client-secrets-manager/src/commands/TagResourceCommand.ts +++ b/clients/client-secrets-manager/src/commands/TagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/UntagResourceCommand.ts b/clients/client-secrets-manager/src/commands/UntagResourceCommand.ts index 5b4d9d9c15033..681a7d29076de 100644 --- a/clients/client-secrets-manager/src/commands/UntagResourceCommand.ts +++ b/clients/client-secrets-manager/src/commands/UntagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/UpdateSecretCommand.ts b/clients/client-secrets-manager/src/commands/UpdateSecretCommand.ts index fe3b87120b505..dc07858503b3d 100644 --- a/clients/client-secrets-manager/src/commands/UpdateSecretCommand.ts +++ b/clients/client-secrets-manager/src/commands/UpdateSecretCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSecretRequest, UpdateSecretResponse } from "../models/models_0"; +import type { UpdateSecretRequest, UpdateSecretResponse } from "../models/models_0"; import { UpdateSecret } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/UpdateSecretVersionStageCommand.ts b/clients/client-secrets-manager/src/commands/UpdateSecretVersionStageCommand.ts index 854149ffafe3b..57831ae3ac3fe 100644 --- a/clients/client-secrets-manager/src/commands/UpdateSecretVersionStageCommand.ts +++ b/clients/client-secrets-manager/src/commands/UpdateSecretVersionStageCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSecretVersionStageRequest, UpdateSecretVersionStageResponse } from "../models/models_0"; +import type { UpdateSecretVersionStageRequest, UpdateSecretVersionStageResponse } from "../models/models_0"; import { UpdateSecretVersionStage } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/commands/ValidateResourcePolicyCommand.ts b/clients/client-secrets-manager/src/commands/ValidateResourcePolicyCommand.ts index b215590ecb3f6..556b6d17cd97d 100644 --- a/clients/client-secrets-manager/src/commands/ValidateResourcePolicyCommand.ts +++ b/clients/client-secrets-manager/src/commands/ValidateResourcePolicyCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidateResourcePolicyRequest, ValidateResourcePolicyResponse } from "../models/models_0"; +import type { ValidateResourcePolicyRequest, ValidateResourcePolicyResponse } from "../models/models_0"; import { ValidateResourcePolicy } from "../schemas/schemas_0"; -import { SecretsManagerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecretsManagerClient"; +import type { + SecretsManagerClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../SecretsManagerClient"; /** * @public diff --git a/clients/client-secrets-manager/src/endpoint/EndpointParameters.ts b/clients/client-secrets-manager/src/endpoint/EndpointParameters.ts index 3be6524ffe825..f61918c31bccd 100644 --- a/clients/client-secrets-manager/src/endpoint/EndpointParameters.ts +++ b/clients/client-secrets-manager/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-secrets-manager/src/endpoint/endpointResolver.ts b/clients/client-secrets-manager/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-secrets-manager/src/endpoint/endpointResolver.ts +++ b/clients/client-secrets-manager/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-secrets-manager/src/extensionConfiguration.ts b/clients/client-secrets-manager/src/extensionConfiguration.ts index 78ec6af474e01..cc2ecaf3d44b5 100644 --- a/clients/client-secrets-manager/src/extensionConfiguration.ts +++ b/clients/client-secrets-manager/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-secrets-manager/src/models/SecretsManagerServiceException.ts b/clients/client-secrets-manager/src/models/SecretsManagerServiceException.ts index 663a921b2a0fd..b063d4a99293d 100644 --- a/clients/client-secrets-manager/src/models/SecretsManagerServiceException.ts +++ b/clients/client-secrets-manager/src/models/SecretsManagerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-secrets-manager/src/models/errors.ts b/clients/client-secrets-manager/src/models/errors.ts index f7a3e0bbbbe8f..5036bf0c25f86 100644 --- a/clients/client-secrets-manager/src/models/errors.ts +++ b/clients/client-secrets-manager/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SecretsManagerServiceException as __BaseException } from "./SecretsManagerServiceException"; diff --git a/clients/client-secrets-manager/src/pagination/BatchGetSecretValuePaginator.ts b/clients/client-secrets-manager/src/pagination/BatchGetSecretValuePaginator.ts index 0c9cd82bcbd10..a107734fa047a 100644 --- a/clients/client-secrets-manager/src/pagination/BatchGetSecretValuePaginator.ts +++ b/clients/client-secrets-manager/src/pagination/BatchGetSecretValuePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchGetSecretValueCommand, diff --git a/clients/client-secrets-manager/src/pagination/Interfaces.ts b/clients/client-secrets-manager/src/pagination/Interfaces.ts index 5dc56bc4c1073..e2adf4f516b42 100644 --- a/clients/client-secrets-manager/src/pagination/Interfaces.ts +++ b/clients/client-secrets-manager/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SecretsManagerClient } from "../SecretsManagerClient"; diff --git a/clients/client-secrets-manager/src/pagination/ListSecretVersionIdsPaginator.ts b/clients/client-secrets-manager/src/pagination/ListSecretVersionIdsPaginator.ts index 23aa5d2dbbe38..a5921f047b254 100644 --- a/clients/client-secrets-manager/src/pagination/ListSecretVersionIdsPaginator.ts +++ b/clients/client-secrets-manager/src/pagination/ListSecretVersionIdsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecretVersionIdsCommand, diff --git a/clients/client-secrets-manager/src/pagination/ListSecretsPaginator.ts b/clients/client-secrets-manager/src/pagination/ListSecretsPaginator.ts index 863e9b19b0029..182cf7ad5553b 100644 --- a/clients/client-secrets-manager/src/pagination/ListSecretsPaginator.ts +++ b/clients/client-secrets-manager/src/pagination/ListSecretsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecretsCommand, ListSecretsCommandInput, ListSecretsCommandOutput } from "../commands/ListSecretsCommand"; import { SecretsManagerClient } from "../SecretsManagerClient"; diff --git a/clients/client-secrets-manager/src/runtimeConfig.browser.ts b/clients/client-secrets-manager/src/runtimeConfig.browser.ts index 6fa502c1b6065..a96528c93eb3e 100644 --- a/clients/client-secrets-manager/src/runtimeConfig.browser.ts +++ b/clients/client-secrets-manager/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SecretsManagerClientConfig } from "./SecretsManagerClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SecretsManagerClientConfig } from "./SecretsManagerClient"; /** * @internal diff --git a/clients/client-secrets-manager/src/runtimeConfig.native.ts b/clients/client-secrets-manager/src/runtimeConfig.native.ts index 9cdc8a36af3fa..951624fa4785c 100644 --- a/clients/client-secrets-manager/src/runtimeConfig.native.ts +++ b/clients/client-secrets-manager/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SecretsManagerClientConfig } from "./SecretsManagerClient"; +import type { SecretsManagerClientConfig } from "./SecretsManagerClient"; /** * @internal diff --git a/clients/client-secrets-manager/src/runtimeConfig.shared.ts b/clients/client-secrets-manager/src/runtimeConfig.shared.ts index a2ab202074e27..eb55b5fe5538b 100644 --- a/clients/client-secrets-manager/src/runtimeConfig.shared.ts +++ b/clients/client-secrets-manager/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSecretsManagerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SecretsManagerClientConfig } from "./SecretsManagerClient"; +import type { SecretsManagerClientConfig } from "./SecretsManagerClient"; /** * @internal diff --git a/clients/client-secrets-manager/src/runtimeConfig.ts b/clients/client-secrets-manager/src/runtimeConfig.ts index 34921bea2182a..df574e135d931 100644 --- a/clients/client-secrets-manager/src/runtimeConfig.ts +++ b/clients/client-secrets-manager/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SecretsManagerClientConfig } from "./SecretsManagerClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SecretsManagerClientConfig } from "./SecretsManagerClient"; /** * @internal diff --git a/clients/client-secrets-manager/src/runtimeExtensions.ts b/clients/client-secrets-manager/src/runtimeExtensions.ts index ce14dca5451bc..e20ba50cf6414 100644 --- a/clients/client-secrets-manager/src/runtimeExtensions.ts +++ b/clients/client-secrets-manager/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SecretsManagerExtensionConfiguration } from "./extensionConfiguration"; +import type { SecretsManagerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-secrets-manager/src/schemas/schemas_0.ts b/clients/client-secrets-manager/src/schemas/schemas_0.ts index fb73274e4d153..214b516188f06 100644 --- a/clients/client-secrets-manager/src/schemas/schemas_0.ts +++ b/clients/client-secrets-manager/src/schemas/schemas_0.ts @@ -189,7 +189,7 @@ const n0 = "com.amazonaws.secretsmanager"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-security-ir/package.json b/clients/client-security-ir/package.json index 1abd67220319a..9376fec5ad4ba 100644 --- a/clients/client-security-ir/package.json +++ b/clients/client-security-ir/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-security-ir/src/SecurityIR.ts b/clients/client-security-ir/src/SecurityIR.ts index 85eeda2f3f115..05e6c64d05e46 100644 --- a/clients/client-security-ir/src/SecurityIR.ts +++ b/clients/client-security-ir/src/SecurityIR.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetMemberAccountDetailsCommand, @@ -98,7 +98,7 @@ import { UpdateResolverTypeCommandInput, UpdateResolverTypeCommandOutput, } from "./commands/UpdateResolverTypeCommand"; -import { SecurityIRClient, SecurityIRClientConfig } from "./SecurityIRClient"; +import { SecurityIRClient } from "./SecurityIRClient"; const commands = { BatchGetMemberAccountDetailsCommand, diff --git a/clients/client-security-ir/src/SecurityIRClient.ts b/clients/client-security-ir/src/SecurityIRClient.ts index cd3aeb94d4473..db6ebeea403ec 100644 --- a/clients/client-security-ir/src/SecurityIRClient.ts +++ b/clients/client-security-ir/src/SecurityIRClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSecurityIRHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -100,7 +109,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-security-ir/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-security-ir/src/auth/httpAuthExtensionConfiguration.ts index 9945677ca9bd9..a84d270d4cb3d 100644 --- a/clients/client-security-ir/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-security-ir/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SecurityIRHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SecurityIRHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-security-ir/src/auth/httpAuthSchemeProvider.ts b/clients/client-security-ir/src/auth/httpAuthSchemeProvider.ts index b129e4463e79b..cc6b9d6db0b0e 100644 --- a/clients/client-security-ir/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-security-ir/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SecurityIRClientConfig, SecurityIRClientResolvedConfig } from "../SecurityIRClient"; +import { type SecurityIRClientResolvedConfig, SecurityIRClientConfig } from "../SecurityIRClient"; /** * @internal diff --git a/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts b/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts index 65317fae166a2..929df2382fcec 100644 --- a/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts +++ b/clients/client-security-ir/src/commands/BatchGetMemberAccountDetailsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetMemberAccountDetailsRequest, BatchGetMemberAccountDetailsResponse } from "../models/models_0"; +import type { BatchGetMemberAccountDetailsRequest, BatchGetMemberAccountDetailsResponse } from "../models/models_0"; import { BatchGetMemberAccountDetails } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/CancelMembershipCommand.ts b/clients/client-security-ir/src/commands/CancelMembershipCommand.ts index 2c7b871f7a802..ee862f7c968d6 100644 --- a/clients/client-security-ir/src/commands/CancelMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/CancelMembershipCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMembershipRequest, CancelMembershipResponse } from "../models/models_0"; +import type { CancelMembershipRequest, CancelMembershipResponse } from "../models/models_0"; import { CancelMembership } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/CloseCaseCommand.ts b/clients/client-security-ir/src/commands/CloseCaseCommand.ts index 2407fa30cbfc7..2ef759bdd3b0d 100644 --- a/clients/client-security-ir/src/commands/CloseCaseCommand.ts +++ b/clients/client-security-ir/src/commands/CloseCaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CloseCaseRequest, CloseCaseResponse } from "../models/models_0"; +import type { CloseCaseRequest, CloseCaseResponse } from "../models/models_0"; import { CloseCase } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/CreateCaseCommand.ts b/clients/client-security-ir/src/commands/CreateCaseCommand.ts index 3d5da592ec84e..21bafbbd308c3 100644 --- a/clients/client-security-ir/src/commands/CreateCaseCommand.ts +++ b/clients/client-security-ir/src/commands/CreateCaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCaseRequest, CreateCaseResponse } from "../models/models_0"; +import type { CreateCaseRequest, CreateCaseResponse } from "../models/models_0"; import { CreateCase } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts b/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts index 7bf79aac9d43d..73e7c3d57e394 100644 --- a/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts +++ b/clients/client-security-ir/src/commands/CreateCaseCommentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCaseCommentRequest, CreateCaseCommentResponse } from "../models/models_0"; +import type { CreateCaseCommentRequest, CreateCaseCommentResponse } from "../models/models_0"; import { CreateCaseComment } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/CreateMembershipCommand.ts b/clients/client-security-ir/src/commands/CreateMembershipCommand.ts index 2ec7af10b104f..15e36ed87c4f3 100644 --- a/clients/client-security-ir/src/commands/CreateMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/CreateMembershipCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMembershipRequest, CreateMembershipResponse } from "../models/models_0"; +import type { CreateMembershipRequest, CreateMembershipResponse } from "../models/models_0"; import { CreateMembership } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts b/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts index 0367e3ff89988..e1d8f3a78988b 100644 --- a/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts +++ b/clients/client-security-ir/src/commands/GetCaseAttachmentDownloadUrlCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCaseAttachmentDownloadUrlRequest, GetCaseAttachmentDownloadUrlResponse } from "../models/models_0"; +import type { GetCaseAttachmentDownloadUrlRequest, GetCaseAttachmentDownloadUrlResponse } from "../models/models_0"; import { GetCaseAttachmentDownloadUrl } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts b/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts index d9f97193d51d6..a3dadb28d374b 100644 --- a/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts +++ b/clients/client-security-ir/src/commands/GetCaseAttachmentUploadUrlCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCaseAttachmentUploadUrlRequest, GetCaseAttachmentUploadUrlResponse } from "../models/models_0"; +import type { GetCaseAttachmentUploadUrlRequest, GetCaseAttachmentUploadUrlResponse } from "../models/models_0"; import { GetCaseAttachmentUploadUrl } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/GetCaseCommand.ts b/clients/client-security-ir/src/commands/GetCaseCommand.ts index 1ea0c18068499..82edd9a2b6a3e 100644 --- a/clients/client-security-ir/src/commands/GetCaseCommand.ts +++ b/clients/client-security-ir/src/commands/GetCaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCaseRequest, GetCaseResponse } from "../models/models_0"; +import type { GetCaseRequest, GetCaseResponse } from "../models/models_0"; import { GetCase } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/GetMembershipCommand.ts b/clients/client-security-ir/src/commands/GetMembershipCommand.ts index c9ff21236c8bd..07d732c7db0f5 100644 --- a/clients/client-security-ir/src/commands/GetMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/GetMembershipCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMembershipRequest, GetMembershipResponse } from "../models/models_0"; +import type { GetMembershipRequest, GetMembershipResponse } from "../models/models_0"; import { GetMembership } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts b/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts index 26f6971458c5a..b4ef1ec6b53b8 100644 --- a/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts +++ b/clients/client-security-ir/src/commands/ListCaseEditsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCaseEditsRequest, ListCaseEditsResponse } from "../models/models_0"; +import type { ListCaseEditsRequest, ListCaseEditsResponse } from "../models/models_0"; import { ListCaseEdits } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/ListCasesCommand.ts b/clients/client-security-ir/src/commands/ListCasesCommand.ts index 20c4ceca2a064..76e92539b4886 100644 --- a/clients/client-security-ir/src/commands/ListCasesCommand.ts +++ b/clients/client-security-ir/src/commands/ListCasesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCasesRequest, ListCasesResponse } from "../models/models_0"; +import type { ListCasesRequest, ListCasesResponse } from "../models/models_0"; import { ListCases } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/ListCommentsCommand.ts b/clients/client-security-ir/src/commands/ListCommentsCommand.ts index a8e2a37821154..614a3171a5233 100644 --- a/clients/client-security-ir/src/commands/ListCommentsCommand.ts +++ b/clients/client-security-ir/src/commands/ListCommentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCommentsRequest, ListCommentsResponse } from "../models/models_0"; +import type { ListCommentsRequest, ListCommentsResponse } from "../models/models_0"; import { ListComments } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/ListInvestigationsCommand.ts b/clients/client-security-ir/src/commands/ListInvestigationsCommand.ts index 8dacb004471da..eeef4765a91b3 100644 --- a/clients/client-security-ir/src/commands/ListInvestigationsCommand.ts +++ b/clients/client-security-ir/src/commands/ListInvestigationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInvestigationsRequest, ListInvestigationsResponse } from "../models/models_0"; +import type { ListInvestigationsRequest, ListInvestigationsResponse } from "../models/models_0"; import { ListInvestigations } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/ListMembershipsCommand.ts b/clients/client-security-ir/src/commands/ListMembershipsCommand.ts index 765e8d94f5b18..2625dee3d5541 100644 --- a/clients/client-security-ir/src/commands/ListMembershipsCommand.ts +++ b/clients/client-security-ir/src/commands/ListMembershipsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMembershipsRequest, ListMembershipsResponse } from "../models/models_0"; +import type { ListMembershipsRequest, ListMembershipsResponse } from "../models/models_0"; import { ListMemberships } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts b/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts index 91df2f3810718..c2a66141e47a6 100644 --- a/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-security-ir/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/SendFeedbackCommand.ts b/clients/client-security-ir/src/commands/SendFeedbackCommand.ts index 78edc0789d77d..74d91d4d207fc 100644 --- a/clients/client-security-ir/src/commands/SendFeedbackCommand.ts +++ b/clients/client-security-ir/src/commands/SendFeedbackCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendFeedbackRequest, SendFeedbackResponse } from "../models/models_0"; +import type { SendFeedbackRequest, SendFeedbackResponse } from "../models/models_0"; import { SendFeedback } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/TagResourceCommand.ts b/clients/client-security-ir/src/commands/TagResourceCommand.ts index cdbe0866b7bd9..89cdd0b5b7414 100644 --- a/clients/client-security-ir/src/commands/TagResourceCommand.ts +++ b/clients/client-security-ir/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/UntagResourceCommand.ts b/clients/client-security-ir/src/commands/UntagResourceCommand.ts index 6b914154bb0e5..ea79710a1a000 100644 --- a/clients/client-security-ir/src/commands/UntagResourceCommand.ts +++ b/clients/client-security-ir/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/UpdateCaseCommand.ts b/clients/client-security-ir/src/commands/UpdateCaseCommand.ts index 2ae165fa902c4..bbbb7fd1dab40 100644 --- a/clients/client-security-ir/src/commands/UpdateCaseCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateCaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCaseRequest, UpdateCaseResponse } from "../models/models_0"; +import type { UpdateCaseRequest, UpdateCaseResponse } from "../models/models_0"; import { UpdateCase } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts b/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts index e5c841104a1ea..41337b664d88b 100644 --- a/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateCaseCommentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCaseCommentRequest, UpdateCaseCommentResponse } from "../models/models_0"; +import type { UpdateCaseCommentRequest, UpdateCaseCommentResponse } from "../models/models_0"; import { UpdateCaseComment } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts b/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts index 5ff9a00547bd6..754016497675f 100644 --- a/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateCaseStatusCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCaseStatusRequest, UpdateCaseStatusResponse } from "../models/models_0"; +import type { UpdateCaseStatusRequest, UpdateCaseStatusResponse } from "../models/models_0"; import { UpdateCaseStatus } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts b/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts index f0ab8c8156916..df3a5150fd57c 100644 --- a/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateMembershipCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMembershipRequest, UpdateMembershipResponse } from "../models/models_0"; +import type { UpdateMembershipRequest, UpdateMembershipResponse } from "../models/models_0"; import { UpdateMembership } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts b/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts index bb1e7d01469d0..c83d990d4a129 100644 --- a/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts +++ b/clients/client-security-ir/src/commands/UpdateResolverTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResolverTypeRequest, UpdateResolverTypeResponse } from "../models/models_0"; +import type { UpdateResolverTypeRequest, UpdateResolverTypeResponse } from "../models/models_0"; import { UpdateResolverType } from "../schemas/schemas_0"; -import { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; +import type { SecurityIRClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityIRClient"; /** * @public diff --git a/clients/client-security-ir/src/endpoint/EndpointParameters.ts b/clients/client-security-ir/src/endpoint/EndpointParameters.ts index 8e45505663e9b..8153d50f67c37 100644 --- a/clients/client-security-ir/src/endpoint/EndpointParameters.ts +++ b/clients/client-security-ir/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-security-ir/src/endpoint/endpointResolver.ts b/clients/client-security-ir/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-security-ir/src/endpoint/endpointResolver.ts +++ b/clients/client-security-ir/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-security-ir/src/extensionConfiguration.ts b/clients/client-security-ir/src/extensionConfiguration.ts index 62ef0cdf2c29a..9683e24ffc77e 100644 --- a/clients/client-security-ir/src/extensionConfiguration.ts +++ b/clients/client-security-ir/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-security-ir/src/models/SecurityIRServiceException.ts b/clients/client-security-ir/src/models/SecurityIRServiceException.ts index 94b93e70659a4..9b8abd9edf9e5 100644 --- a/clients/client-security-ir/src/models/SecurityIRServiceException.ts +++ b/clients/client-security-ir/src/models/SecurityIRServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-security-ir/src/models/errors.ts b/clients/client-security-ir/src/models/errors.ts index 9b7a08c13095e..4efa8910d968b 100644 --- a/clients/client-security-ir/src/models/errors.ts +++ b/clients/client-security-ir/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-security-ir/src/pagination/Interfaces.ts b/clients/client-security-ir/src/pagination/Interfaces.ts index b6b16f00582ab..93156cc47ce40 100644 --- a/clients/client-security-ir/src/pagination/Interfaces.ts +++ b/clients/client-security-ir/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SecurityIRClient } from "../SecurityIRClient"; diff --git a/clients/client-security-ir/src/pagination/ListCaseEditsPaginator.ts b/clients/client-security-ir/src/pagination/ListCaseEditsPaginator.ts index 64959bd2d8f2d..fcf13ca42529f 100644 --- a/clients/client-security-ir/src/pagination/ListCaseEditsPaginator.ts +++ b/clients/client-security-ir/src/pagination/ListCaseEditsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCaseEditsCommand, diff --git a/clients/client-security-ir/src/pagination/ListCasesPaginator.ts b/clients/client-security-ir/src/pagination/ListCasesPaginator.ts index 704b27777f780..a7569c15fc087 100644 --- a/clients/client-security-ir/src/pagination/ListCasesPaginator.ts +++ b/clients/client-security-ir/src/pagination/ListCasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCasesCommand, ListCasesCommandInput, ListCasesCommandOutput } from "../commands/ListCasesCommand"; import { SecurityIRClient } from "../SecurityIRClient"; diff --git a/clients/client-security-ir/src/pagination/ListCommentsPaginator.ts b/clients/client-security-ir/src/pagination/ListCommentsPaginator.ts index ccbd05e42d864..c63db0b5f3aa8 100644 --- a/clients/client-security-ir/src/pagination/ListCommentsPaginator.ts +++ b/clients/client-security-ir/src/pagination/ListCommentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCommentsCommand, diff --git a/clients/client-security-ir/src/pagination/ListInvestigationsPaginator.ts b/clients/client-security-ir/src/pagination/ListInvestigationsPaginator.ts index 1009c2b867a8b..52b73dd8b9541 100644 --- a/clients/client-security-ir/src/pagination/ListInvestigationsPaginator.ts +++ b/clients/client-security-ir/src/pagination/ListInvestigationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInvestigationsCommand, diff --git a/clients/client-security-ir/src/pagination/ListMembershipsPaginator.ts b/clients/client-security-ir/src/pagination/ListMembershipsPaginator.ts index f125b37adeab8..d8d8f1baa00aa 100644 --- a/clients/client-security-ir/src/pagination/ListMembershipsPaginator.ts +++ b/clients/client-security-ir/src/pagination/ListMembershipsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMembershipsCommand, diff --git a/clients/client-security-ir/src/runtimeConfig.browser.ts b/clients/client-security-ir/src/runtimeConfig.browser.ts index 8b1580fa5d8b3..c6d60a0d64550 100644 --- a/clients/client-security-ir/src/runtimeConfig.browser.ts +++ b/clients/client-security-ir/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SecurityIRClientConfig } from "./SecurityIRClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SecurityIRClientConfig } from "./SecurityIRClient"; /** * @internal diff --git a/clients/client-security-ir/src/runtimeConfig.native.ts b/clients/client-security-ir/src/runtimeConfig.native.ts index a71e88f3dd0e0..17109715b76f7 100644 --- a/clients/client-security-ir/src/runtimeConfig.native.ts +++ b/clients/client-security-ir/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SecurityIRClientConfig } from "./SecurityIRClient"; +import type { SecurityIRClientConfig } from "./SecurityIRClient"; /** * @internal diff --git a/clients/client-security-ir/src/runtimeConfig.shared.ts b/clients/client-security-ir/src/runtimeConfig.shared.ts index e61cad82e05ff..e50f2aedef6a5 100644 --- a/clients/client-security-ir/src/runtimeConfig.shared.ts +++ b/clients/client-security-ir/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSecurityIRHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SecurityIRClientConfig } from "./SecurityIRClient"; +import type { SecurityIRClientConfig } from "./SecurityIRClient"; /** * @internal diff --git a/clients/client-security-ir/src/runtimeConfig.ts b/clients/client-security-ir/src/runtimeConfig.ts index e8026e2f2498d..3aa35fb12c62d 100644 --- a/clients/client-security-ir/src/runtimeConfig.ts +++ b/clients/client-security-ir/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SecurityIRClientConfig } from "./SecurityIRClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SecurityIRClientConfig } from "./SecurityIRClient"; /** * @internal diff --git a/clients/client-security-ir/src/runtimeExtensions.ts b/clients/client-security-ir/src/runtimeExtensions.ts index 3a9df695628cf..bcad108dbadd2 100644 --- a/clients/client-security-ir/src/runtimeExtensions.ts +++ b/clients/client-security-ir/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SecurityIRExtensionConfiguration } from "./extensionConfiguration"; +import type { SecurityIRExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-security-ir/src/schemas/schemas_0.ts b/clients/client-security-ir/src/schemas/schemas_0.ts index 2fd24ae727c33..d7f97993f4175 100644 --- a/clients/client-security-ir/src/schemas/schemas_0.ts +++ b/clients/client-security-ir/src/schemas/schemas_0.ts @@ -239,7 +239,7 @@ const n0 = "com.amazonaws.securityir"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-securityhub/package.json b/clients/client-securityhub/package.json index 1fed7f163a5bd..34df97b4d00f7 100644 --- a/clients/client-securityhub/package.json +++ b/clients/client-securityhub/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-securityhub/src/SecurityHub.ts b/clients/client-securityhub/src/SecurityHub.ts index 49fdf526c1e40..b1c8555b5664d 100644 --- a/clients/client-securityhub/src/SecurityHub.ts +++ b/clients/client-securityhub/src/SecurityHub.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptAdministratorInvitationCommand, @@ -513,7 +513,7 @@ import { UpdateStandardsControlCommandInput, UpdateStandardsControlCommandOutput, } from "./commands/UpdateStandardsControlCommand"; -import { SecurityHubClient, SecurityHubClientConfig } from "./SecurityHubClient"; +import { SecurityHubClient } from "./SecurityHubClient"; const commands = { AcceptAdministratorInvitationCommand, diff --git a/clients/client-securityhub/src/SecurityHubClient.ts b/clients/client-securityhub/src/SecurityHubClient.ts index 5b48b954a3927..8c2b37a3982a6 100644 --- a/clients/client-securityhub/src/SecurityHubClient.ts +++ b/clients/client-securityhub/src/SecurityHubClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSecurityHubHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -366,7 +375,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-securityhub/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-securityhub/src/auth/httpAuthExtensionConfiguration.ts index f75690cb9caa7..52d9e8d83d54a 100644 --- a/clients/client-securityhub/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-securityhub/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SecurityHubHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SecurityHubHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-securityhub/src/auth/httpAuthSchemeProvider.ts b/clients/client-securityhub/src/auth/httpAuthSchemeProvider.ts index 8e9b0b40d4af0..2dc5b341a4410 100644 --- a/clients/client-securityhub/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-securityhub/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SecurityHubClientConfig, SecurityHubClientResolvedConfig } from "../SecurityHubClient"; +import { type SecurityHubClientResolvedConfig, SecurityHubClientConfig } from "../SecurityHubClient"; /** * @internal diff --git a/clients/client-securityhub/src/commands/AcceptAdministratorInvitationCommand.ts b/clients/client-securityhub/src/commands/AcceptAdministratorInvitationCommand.ts index 6fe3deb1be5a9..c0faaeee951c3 100644 --- a/clients/client-securityhub/src/commands/AcceptAdministratorInvitationCommand.ts +++ b/clients/client-securityhub/src/commands/AcceptAdministratorInvitationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptAdministratorInvitationRequest, AcceptAdministratorInvitationResponse } from "../models/models_0"; +import type { AcceptAdministratorInvitationRequest, AcceptAdministratorInvitationResponse } from "../models/models_0"; import { AcceptAdministratorInvitation } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/AcceptInvitationCommand.ts b/clients/client-securityhub/src/commands/AcceptInvitationCommand.ts index 1705cf34f6007..b424c66e2a676 100644 --- a/clients/client-securityhub/src/commands/AcceptInvitationCommand.ts +++ b/clients/client-securityhub/src/commands/AcceptInvitationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptInvitationRequest, AcceptInvitationResponse } from "../models/models_0"; +import type { AcceptInvitationRequest, AcceptInvitationResponse } from "../models/models_0"; import { AcceptInvitation } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchDeleteAutomationRulesCommand.ts b/clients/client-securityhub/src/commands/BatchDeleteAutomationRulesCommand.ts index 058785681dd56..d2f09b519bce0 100644 --- a/clients/client-securityhub/src/commands/BatchDeleteAutomationRulesCommand.ts +++ b/clients/client-securityhub/src/commands/BatchDeleteAutomationRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteAutomationRulesRequest, BatchDeleteAutomationRulesResponse } from "../models/models_2"; +import type { BatchDeleteAutomationRulesRequest, BatchDeleteAutomationRulesResponse } from "../models/models_2"; import { BatchDeleteAutomationRules } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchDisableStandardsCommand.ts b/clients/client-securityhub/src/commands/BatchDisableStandardsCommand.ts index 85c8ecce5cb8a..32faa1af59a0d 100644 --- a/clients/client-securityhub/src/commands/BatchDisableStandardsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchDisableStandardsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDisableStandardsRequest, BatchDisableStandardsResponse } from "../models/models_2"; +import type { BatchDisableStandardsRequest, BatchDisableStandardsResponse } from "../models/models_2"; import { BatchDisableStandards } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchEnableStandardsCommand.ts b/clients/client-securityhub/src/commands/BatchEnableStandardsCommand.ts index 2a7d7f1c6fd60..2fe8ec895710b 100644 --- a/clients/client-securityhub/src/commands/BatchEnableStandardsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchEnableStandardsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchEnableStandardsRequest, BatchEnableStandardsResponse } from "../models/models_2"; +import type { BatchEnableStandardsRequest, BatchEnableStandardsResponse } from "../models/models_2"; import { BatchEnableStandards } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchGetAutomationRulesCommand.ts b/clients/client-securityhub/src/commands/BatchGetAutomationRulesCommand.ts index 44c2f5c3f0856..73b73c93cad0f 100644 --- a/clients/client-securityhub/src/commands/BatchGetAutomationRulesCommand.ts +++ b/clients/client-securityhub/src/commands/BatchGetAutomationRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetAutomationRulesRequest, BatchGetAutomationRulesResponse } from "../models/models_2"; +import type { BatchGetAutomationRulesRequest, BatchGetAutomationRulesResponse } from "../models/models_2"; import { BatchGetAutomationRules } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchGetConfigurationPolicyAssociationsCommand.ts b/clients/client-securityhub/src/commands/BatchGetConfigurationPolicyAssociationsCommand.ts index 44bf57c3dd5ef..330c2406c411a 100644 --- a/clients/client-securityhub/src/commands/BatchGetConfigurationPolicyAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchGetConfigurationPolicyAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchGetConfigurationPolicyAssociationsRequest, BatchGetConfigurationPolicyAssociationsResponse, } from "../models/models_2"; import { BatchGetConfigurationPolicyAssociations } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchGetSecurityControlsCommand.ts b/clients/client-securityhub/src/commands/BatchGetSecurityControlsCommand.ts index d91ad71b0cbe6..f8b336fae39aa 100644 --- a/clients/client-securityhub/src/commands/BatchGetSecurityControlsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchGetSecurityControlsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetSecurityControlsRequest, BatchGetSecurityControlsResponse } from "../models/models_2"; +import type { BatchGetSecurityControlsRequest, BatchGetSecurityControlsResponse } from "../models/models_2"; import { BatchGetSecurityControls } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchGetStandardsControlAssociationsCommand.ts b/clients/client-securityhub/src/commands/BatchGetStandardsControlAssociationsCommand.ts index dcab02a030dd0..44fe177c370a1 100644 --- a/clients/client-securityhub/src/commands/BatchGetStandardsControlAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchGetStandardsControlAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchGetStandardsControlAssociationsRequest, BatchGetStandardsControlAssociationsResponse, } from "../models/models_2"; import { BatchGetStandardsControlAssociations } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchImportFindingsCommand.ts b/clients/client-securityhub/src/commands/BatchImportFindingsCommand.ts index 7802572169f29..be635c81832df 100644 --- a/clients/client-securityhub/src/commands/BatchImportFindingsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchImportFindingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchImportFindingsRequest, BatchImportFindingsResponse } from "../models/models_2"; +import type { BatchImportFindingsRequest, BatchImportFindingsResponse } from "../models/models_2"; import { BatchImportFindings } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchUpdateAutomationRulesCommand.ts b/clients/client-securityhub/src/commands/BatchUpdateAutomationRulesCommand.ts index 03d2d8033fc2c..b12db7b964363 100644 --- a/clients/client-securityhub/src/commands/BatchUpdateAutomationRulesCommand.ts +++ b/clients/client-securityhub/src/commands/BatchUpdateAutomationRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateAutomationRulesRequest, BatchUpdateAutomationRulesResponse } from "../models/models_2"; +import type { BatchUpdateAutomationRulesRequest, BatchUpdateAutomationRulesResponse } from "../models/models_2"; import { BatchUpdateAutomationRules } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchUpdateFindingsCommand.ts b/clients/client-securityhub/src/commands/BatchUpdateFindingsCommand.ts index c1d4d36dff36c..497d1fba3b592 100644 --- a/clients/client-securityhub/src/commands/BatchUpdateFindingsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchUpdateFindingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateFindingsRequest, BatchUpdateFindingsResponse } from "../models/models_2"; +import type { BatchUpdateFindingsRequest, BatchUpdateFindingsResponse } from "../models/models_2"; import { BatchUpdateFindings } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchUpdateFindingsV2Command.ts b/clients/client-securityhub/src/commands/BatchUpdateFindingsV2Command.ts index e45775139cfb2..91da52d23bb95 100644 --- a/clients/client-securityhub/src/commands/BatchUpdateFindingsV2Command.ts +++ b/clients/client-securityhub/src/commands/BatchUpdateFindingsV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateFindingsV2Request, BatchUpdateFindingsV2Response } from "../models/models_2"; +import type { BatchUpdateFindingsV2Request, BatchUpdateFindingsV2Response } from "../models/models_2"; import { BatchUpdateFindingsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/BatchUpdateStandardsControlAssociationsCommand.ts b/clients/client-securityhub/src/commands/BatchUpdateStandardsControlAssociationsCommand.ts index 9775d3fc3f67c..454e1ecf4405d 100644 --- a/clients/client-securityhub/src/commands/BatchUpdateStandardsControlAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/BatchUpdateStandardsControlAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchUpdateStandardsControlAssociationsRequest, BatchUpdateStandardsControlAssociationsResponse, } from "../models/models_2"; import { BatchUpdateStandardsControlAssociations } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ConnectorRegistrationsV2Command.ts b/clients/client-securityhub/src/commands/ConnectorRegistrationsV2Command.ts index 2e992fbfd681e..f9a0dadcb9174 100644 --- a/clients/client-securityhub/src/commands/ConnectorRegistrationsV2Command.ts +++ b/clients/client-securityhub/src/commands/ConnectorRegistrationsV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConnectorRegistrationsV2Request, ConnectorRegistrationsV2Response } from "../models/models_2"; +import type { ConnectorRegistrationsV2Request, ConnectorRegistrationsV2Response } from "../models/models_2"; import { ConnectorRegistrationsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateActionTargetCommand.ts b/clients/client-securityhub/src/commands/CreateActionTargetCommand.ts index 80b7e5f5c76aa..e2160e4fedeb3 100644 --- a/clients/client-securityhub/src/commands/CreateActionTargetCommand.ts +++ b/clients/client-securityhub/src/commands/CreateActionTargetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateActionTargetRequest, CreateActionTargetResponse } from "../models/models_2"; +import type { CreateActionTargetRequest, CreateActionTargetResponse } from "../models/models_2"; import { CreateActionTarget } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateAggregatorV2Command.ts b/clients/client-securityhub/src/commands/CreateAggregatorV2Command.ts index 55990027c0c20..9a19f9440c41c 100644 --- a/clients/client-securityhub/src/commands/CreateAggregatorV2Command.ts +++ b/clients/client-securityhub/src/commands/CreateAggregatorV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAggregatorV2Request, CreateAggregatorV2Response } from "../models/models_2"; +import type { CreateAggregatorV2Request, CreateAggregatorV2Response } from "../models/models_2"; import { CreateAggregatorV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateAutomationRuleCommand.ts b/clients/client-securityhub/src/commands/CreateAutomationRuleCommand.ts index dc8176b50b2c6..70118ddf5a58a 100644 --- a/clients/client-securityhub/src/commands/CreateAutomationRuleCommand.ts +++ b/clients/client-securityhub/src/commands/CreateAutomationRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAutomationRuleRequest, CreateAutomationRuleResponse } from "../models/models_2"; +import type { CreateAutomationRuleRequest, CreateAutomationRuleResponse } from "../models/models_2"; import { CreateAutomationRule } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateAutomationRuleV2Command.ts b/clients/client-securityhub/src/commands/CreateAutomationRuleV2Command.ts index 9d48568bd3e08..1e9b5c231172c 100644 --- a/clients/client-securityhub/src/commands/CreateAutomationRuleV2Command.ts +++ b/clients/client-securityhub/src/commands/CreateAutomationRuleV2Command.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAutomationRuleV2Response } from "../models/models_2"; -import { CreateAutomationRuleV2Request } from "../models/models_3"; +import type { CreateAutomationRuleV2Response } from "../models/models_2"; +import type { CreateAutomationRuleV2Request } from "../models/models_3"; import { CreateAutomationRuleV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateConfigurationPolicyCommand.ts b/clients/client-securityhub/src/commands/CreateConfigurationPolicyCommand.ts index 3ba48a02faf4a..abcae122d1d40 100644 --- a/clients/client-securityhub/src/commands/CreateConfigurationPolicyCommand.ts +++ b/clients/client-securityhub/src/commands/CreateConfigurationPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfigurationPolicyRequest, CreateConfigurationPolicyResponse } from "../models/models_2"; +import type { CreateConfigurationPolicyRequest, CreateConfigurationPolicyResponse } from "../models/models_2"; import { CreateConfigurationPolicy } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateConnectorV2Command.ts b/clients/client-securityhub/src/commands/CreateConnectorV2Command.ts index 1db3cd6bf079b..eac534839ae1e 100644 --- a/clients/client-securityhub/src/commands/CreateConnectorV2Command.ts +++ b/clients/client-securityhub/src/commands/CreateConnectorV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectorV2Request, CreateConnectorV2Response } from "../models/models_2"; +import type { CreateConnectorV2Request, CreateConnectorV2Response } from "../models/models_2"; import { CreateConnectorV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateFindingAggregatorCommand.ts b/clients/client-securityhub/src/commands/CreateFindingAggregatorCommand.ts index c7b961ec4d7ec..cb874e9086b56 100644 --- a/clients/client-securityhub/src/commands/CreateFindingAggregatorCommand.ts +++ b/clients/client-securityhub/src/commands/CreateFindingAggregatorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFindingAggregatorRequest, CreateFindingAggregatorResponse } from "../models/models_2"; +import type { CreateFindingAggregatorRequest, CreateFindingAggregatorResponse } from "../models/models_2"; import { CreateFindingAggregator } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateInsightCommand.ts b/clients/client-securityhub/src/commands/CreateInsightCommand.ts index ede82f66b784a..6951ea63ad02e 100644 --- a/clients/client-securityhub/src/commands/CreateInsightCommand.ts +++ b/clients/client-securityhub/src/commands/CreateInsightCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInsightRequest, CreateInsightResponse } from "../models/models_2"; +import type { CreateInsightRequest, CreateInsightResponse } from "../models/models_2"; import { CreateInsight } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateMembersCommand.ts b/clients/client-securityhub/src/commands/CreateMembersCommand.ts index 2fb8759c091ef..bccdbef484c4c 100644 --- a/clients/client-securityhub/src/commands/CreateMembersCommand.ts +++ b/clients/client-securityhub/src/commands/CreateMembersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMembersRequest, CreateMembersResponse } from "../models/models_2"; +import type { CreateMembersRequest, CreateMembersResponse } from "../models/models_2"; import { CreateMembers } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/CreateTicketV2Command.ts b/clients/client-securityhub/src/commands/CreateTicketV2Command.ts index d242515e835b0..ee12964a87934 100644 --- a/clients/client-securityhub/src/commands/CreateTicketV2Command.ts +++ b/clients/client-securityhub/src/commands/CreateTicketV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTicketV2Request, CreateTicketV2Response } from "../models/models_2"; +import type { CreateTicketV2Request, CreateTicketV2Response } from "../models/models_2"; import { CreateTicketV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeclineInvitationsCommand.ts b/clients/client-securityhub/src/commands/DeclineInvitationsCommand.ts index 0a1ec91b59d62..fec34bc5fb15f 100644 --- a/clients/client-securityhub/src/commands/DeclineInvitationsCommand.ts +++ b/clients/client-securityhub/src/commands/DeclineInvitationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeclineInvitationsRequest, DeclineInvitationsResponse } from "../models/models_2"; +import type { DeclineInvitationsRequest, DeclineInvitationsResponse } from "../models/models_2"; import { DeclineInvitations } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeleteActionTargetCommand.ts b/clients/client-securityhub/src/commands/DeleteActionTargetCommand.ts index be9a1461a9290..52e981df33385 100644 --- a/clients/client-securityhub/src/commands/DeleteActionTargetCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteActionTargetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteActionTargetRequest, DeleteActionTargetResponse } from "../models/models_2"; +import type { DeleteActionTargetRequest, DeleteActionTargetResponse } from "../models/models_2"; import { DeleteActionTarget } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeleteAggregatorV2Command.ts b/clients/client-securityhub/src/commands/DeleteAggregatorV2Command.ts index 3580bf092a14d..63a4344c5a493 100644 --- a/clients/client-securityhub/src/commands/DeleteAggregatorV2Command.ts +++ b/clients/client-securityhub/src/commands/DeleteAggregatorV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAggregatorV2Request, DeleteAggregatorV2Response } from "../models/models_2"; +import type { DeleteAggregatorV2Request, DeleteAggregatorV2Response } from "../models/models_2"; import { DeleteAggregatorV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeleteAutomationRuleV2Command.ts b/clients/client-securityhub/src/commands/DeleteAutomationRuleV2Command.ts index c64f07f785188..882e088a755e7 100644 --- a/clients/client-securityhub/src/commands/DeleteAutomationRuleV2Command.ts +++ b/clients/client-securityhub/src/commands/DeleteAutomationRuleV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAutomationRuleV2Request, DeleteAutomationRuleV2Response } from "../models/models_2"; +import type { DeleteAutomationRuleV2Request, DeleteAutomationRuleV2Response } from "../models/models_2"; import { DeleteAutomationRuleV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeleteConfigurationPolicyCommand.ts b/clients/client-securityhub/src/commands/DeleteConfigurationPolicyCommand.ts index f3cf10b501402..84b13a07678de 100644 --- a/clients/client-securityhub/src/commands/DeleteConfigurationPolicyCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteConfigurationPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationPolicyRequest, DeleteConfigurationPolicyResponse } from "../models/models_2"; +import type { DeleteConfigurationPolicyRequest, DeleteConfigurationPolicyResponse } from "../models/models_2"; import { DeleteConfigurationPolicy } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeleteConnectorV2Command.ts b/clients/client-securityhub/src/commands/DeleteConnectorV2Command.ts index 4cb7df8d4e09e..f7d25e365b5c1 100644 --- a/clients/client-securityhub/src/commands/DeleteConnectorV2Command.ts +++ b/clients/client-securityhub/src/commands/DeleteConnectorV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectorV2Request, DeleteConnectorV2Response } from "../models/models_2"; +import type { DeleteConnectorV2Request, DeleteConnectorV2Response } from "../models/models_2"; import { DeleteConnectorV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeleteFindingAggregatorCommand.ts b/clients/client-securityhub/src/commands/DeleteFindingAggregatorCommand.ts index 97835f5da41fd..74cf7299b3f26 100644 --- a/clients/client-securityhub/src/commands/DeleteFindingAggregatorCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteFindingAggregatorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFindingAggregatorRequest, DeleteFindingAggregatorResponse } from "../models/models_2"; +import type { DeleteFindingAggregatorRequest, DeleteFindingAggregatorResponse } from "../models/models_2"; import { DeleteFindingAggregator } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeleteInsightCommand.ts b/clients/client-securityhub/src/commands/DeleteInsightCommand.ts index 219c1905f1263..c9d163fe00815 100644 --- a/clients/client-securityhub/src/commands/DeleteInsightCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteInsightCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInsightRequest, DeleteInsightResponse } from "../models/models_2"; +import type { DeleteInsightRequest, DeleteInsightResponse } from "../models/models_2"; import { DeleteInsight } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeleteInvitationsCommand.ts b/clients/client-securityhub/src/commands/DeleteInvitationsCommand.ts index 2cc379d1db3f6..69414ac16cf08 100644 --- a/clients/client-securityhub/src/commands/DeleteInvitationsCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteInvitationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInvitationsRequest, DeleteInvitationsResponse } from "../models/models_2"; +import type { DeleteInvitationsRequest, DeleteInvitationsResponse } from "../models/models_2"; import { DeleteInvitations } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DeleteMembersCommand.ts b/clients/client-securityhub/src/commands/DeleteMembersCommand.ts index a561cd13f75ad..766329cb56444 100644 --- a/clients/client-securityhub/src/commands/DeleteMembersCommand.ts +++ b/clients/client-securityhub/src/commands/DeleteMembersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMembersRequest, DeleteMembersResponse } from "../models/models_2"; +import type { DeleteMembersRequest, DeleteMembersResponse } from "../models/models_2"; import { DeleteMembers } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DescribeActionTargetsCommand.ts b/clients/client-securityhub/src/commands/DescribeActionTargetsCommand.ts index 40c9ff3c64635..aadd50249eeb6 100644 --- a/clients/client-securityhub/src/commands/DescribeActionTargetsCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeActionTargetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeActionTargetsRequest, DescribeActionTargetsResponse } from "../models/models_2"; +import type { DescribeActionTargetsRequest, DescribeActionTargetsResponse } from "../models/models_2"; import { DescribeActionTargets } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DescribeHubCommand.ts b/clients/client-securityhub/src/commands/DescribeHubCommand.ts index e48f1b39d469e..cdf0db1f42ae5 100644 --- a/clients/client-securityhub/src/commands/DescribeHubCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeHubCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHubRequest, DescribeHubResponse } from "../models/models_2"; +import type { DescribeHubRequest, DescribeHubResponse } from "../models/models_2"; import { DescribeHub } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DescribeOrganizationConfigurationCommand.ts b/clients/client-securityhub/src/commands/DescribeOrganizationConfigurationCommand.ts index 91dc518234d37..26fa01b1d1c61 100644 --- a/clients/client-securityhub/src/commands/DescribeOrganizationConfigurationCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeOrganizationConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeOrganizationConfigurationRequest, DescribeOrganizationConfigurationResponse, } from "../models/models_2"; import { DescribeOrganizationConfiguration } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DescribeProductsCommand.ts b/clients/client-securityhub/src/commands/DescribeProductsCommand.ts index 6d87a099632bc..58f9e04494c52 100644 --- a/clients/client-securityhub/src/commands/DescribeProductsCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeProductsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProductsRequest, DescribeProductsResponse } from "../models/models_2"; +import type { DescribeProductsRequest, DescribeProductsResponse } from "../models/models_2"; import { DescribeProducts } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DescribeProductsV2Command.ts b/clients/client-securityhub/src/commands/DescribeProductsV2Command.ts index cb7eda6da8eeb..c9e5d0930a6dd 100644 --- a/clients/client-securityhub/src/commands/DescribeProductsV2Command.ts +++ b/clients/client-securityhub/src/commands/DescribeProductsV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProductsV2Request, DescribeProductsV2Response } from "../models/models_2"; +import type { DescribeProductsV2Request, DescribeProductsV2Response } from "../models/models_2"; import { DescribeProductsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DescribeSecurityHubV2Command.ts b/clients/client-securityhub/src/commands/DescribeSecurityHubV2Command.ts index bba5e56a841c3..5a8daaff07fed 100644 --- a/clients/client-securityhub/src/commands/DescribeSecurityHubV2Command.ts +++ b/clients/client-securityhub/src/commands/DescribeSecurityHubV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSecurityHubV2Request, DescribeSecurityHubV2Response } from "../models/models_2"; +import type { DescribeSecurityHubV2Request, DescribeSecurityHubV2Response } from "../models/models_2"; import { DescribeSecurityHubV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DescribeStandardsCommand.ts b/clients/client-securityhub/src/commands/DescribeStandardsCommand.ts index 06e5e721a68bb..a8c402ba67f04 100644 --- a/clients/client-securityhub/src/commands/DescribeStandardsCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeStandardsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStandardsRequest, DescribeStandardsResponse } from "../models/models_2"; +import type { DescribeStandardsRequest, DescribeStandardsResponse } from "../models/models_2"; import { DescribeStandards } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DescribeStandardsControlsCommand.ts b/clients/client-securityhub/src/commands/DescribeStandardsControlsCommand.ts index 78c4f631aa82c..8a0a6f4c73d3d 100644 --- a/clients/client-securityhub/src/commands/DescribeStandardsControlsCommand.ts +++ b/clients/client-securityhub/src/commands/DescribeStandardsControlsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStandardsControlsRequest, DescribeStandardsControlsResponse } from "../models/models_2"; +import type { DescribeStandardsControlsRequest, DescribeStandardsControlsResponse } from "../models/models_2"; import { DescribeStandardsControls } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DisableImportFindingsForProductCommand.ts b/clients/client-securityhub/src/commands/DisableImportFindingsForProductCommand.ts index ac8d4e9c7fe1b..b15fcb54a5353 100644 --- a/clients/client-securityhub/src/commands/DisableImportFindingsForProductCommand.ts +++ b/clients/client-securityhub/src/commands/DisableImportFindingsForProductCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableImportFindingsForProductRequest, DisableImportFindingsForProductResponse } from "../models/models_2"; +import type { + DisableImportFindingsForProductRequest, + DisableImportFindingsForProductResponse, +} from "../models/models_2"; import { DisableImportFindingsForProduct } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DisableOrganizationAdminAccountCommand.ts b/clients/client-securityhub/src/commands/DisableOrganizationAdminAccountCommand.ts index d7688429e58a5..57731eea9aad1 100644 --- a/clients/client-securityhub/src/commands/DisableOrganizationAdminAccountCommand.ts +++ b/clients/client-securityhub/src/commands/DisableOrganizationAdminAccountCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableOrganizationAdminAccountRequest, DisableOrganizationAdminAccountResponse } from "../models/models_2"; +import type { + DisableOrganizationAdminAccountRequest, + DisableOrganizationAdminAccountResponse, +} from "../models/models_2"; import { DisableOrganizationAdminAccount } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DisableSecurityHubCommand.ts b/clients/client-securityhub/src/commands/DisableSecurityHubCommand.ts index e97ab039df711..88529574cdb6c 100644 --- a/clients/client-securityhub/src/commands/DisableSecurityHubCommand.ts +++ b/clients/client-securityhub/src/commands/DisableSecurityHubCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableSecurityHubRequest, DisableSecurityHubResponse } from "../models/models_2"; +import type { DisableSecurityHubRequest, DisableSecurityHubResponse } from "../models/models_2"; import { DisableSecurityHub } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DisableSecurityHubV2Command.ts b/clients/client-securityhub/src/commands/DisableSecurityHubV2Command.ts index 06de17d6b46d9..41739ca461e98 100644 --- a/clients/client-securityhub/src/commands/DisableSecurityHubV2Command.ts +++ b/clients/client-securityhub/src/commands/DisableSecurityHubV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableSecurityHubV2Request, DisableSecurityHubV2Response } from "../models/models_2"; +import type { DisableSecurityHubV2Request, DisableSecurityHubV2Response } from "../models/models_2"; import { DisableSecurityHubV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DisassociateFromAdministratorAccountCommand.ts b/clients/client-securityhub/src/commands/DisassociateFromAdministratorAccountCommand.ts index fa28d664736c4..3f03dc4717e89 100644 --- a/clients/client-securityhub/src/commands/DisassociateFromAdministratorAccountCommand.ts +++ b/clients/client-securityhub/src/commands/DisassociateFromAdministratorAccountCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateFromAdministratorAccountRequest, DisassociateFromAdministratorAccountResponse, } from "../models/models_2"; import { DisassociateFromAdministratorAccount } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DisassociateFromMasterAccountCommand.ts b/clients/client-securityhub/src/commands/DisassociateFromMasterAccountCommand.ts index 5630264950b65..7ec5c4fc27ca8 100644 --- a/clients/client-securityhub/src/commands/DisassociateFromMasterAccountCommand.ts +++ b/clients/client-securityhub/src/commands/DisassociateFromMasterAccountCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateFromMasterAccountRequest, DisassociateFromMasterAccountResponse } from "../models/models_2"; +import type { DisassociateFromMasterAccountRequest, DisassociateFromMasterAccountResponse } from "../models/models_2"; import { DisassociateFromMasterAccount } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/DisassociateMembersCommand.ts b/clients/client-securityhub/src/commands/DisassociateMembersCommand.ts index 0f1ee9db200e3..63ed21d3b0e6d 100644 --- a/clients/client-securityhub/src/commands/DisassociateMembersCommand.ts +++ b/clients/client-securityhub/src/commands/DisassociateMembersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateMembersRequest, DisassociateMembersResponse } from "../models/models_2"; +import type { DisassociateMembersRequest, DisassociateMembersResponse } from "../models/models_2"; import { DisassociateMembers } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/EnableImportFindingsForProductCommand.ts b/clients/client-securityhub/src/commands/EnableImportFindingsForProductCommand.ts index 295ec4444cc5f..c0a5c6288b9f7 100644 --- a/clients/client-securityhub/src/commands/EnableImportFindingsForProductCommand.ts +++ b/clients/client-securityhub/src/commands/EnableImportFindingsForProductCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableImportFindingsForProductRequest, EnableImportFindingsForProductResponse } from "../models/models_2"; +import type { EnableImportFindingsForProductRequest, EnableImportFindingsForProductResponse } from "../models/models_2"; import { EnableImportFindingsForProduct } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/EnableOrganizationAdminAccountCommand.ts b/clients/client-securityhub/src/commands/EnableOrganizationAdminAccountCommand.ts index e1ff770a17d5d..68e04571c758e 100644 --- a/clients/client-securityhub/src/commands/EnableOrganizationAdminAccountCommand.ts +++ b/clients/client-securityhub/src/commands/EnableOrganizationAdminAccountCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableOrganizationAdminAccountRequest, EnableOrganizationAdminAccountResponse } from "../models/models_2"; +import type { EnableOrganizationAdminAccountRequest, EnableOrganizationAdminAccountResponse } from "../models/models_2"; import { EnableOrganizationAdminAccount } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/EnableSecurityHubCommand.ts b/clients/client-securityhub/src/commands/EnableSecurityHubCommand.ts index 902a12b99102b..2fbebfa4650fe 100644 --- a/clients/client-securityhub/src/commands/EnableSecurityHubCommand.ts +++ b/clients/client-securityhub/src/commands/EnableSecurityHubCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableSecurityHubRequest, EnableSecurityHubResponse } from "../models/models_2"; +import type { EnableSecurityHubRequest, EnableSecurityHubResponse } from "../models/models_2"; import { EnableSecurityHub } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/EnableSecurityHubV2Command.ts b/clients/client-securityhub/src/commands/EnableSecurityHubV2Command.ts index 7c53c21ec185e..5b66d0dca99c2 100644 --- a/clients/client-securityhub/src/commands/EnableSecurityHubV2Command.ts +++ b/clients/client-securityhub/src/commands/EnableSecurityHubV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableSecurityHubV2Request, EnableSecurityHubV2Response } from "../models/models_2"; +import type { EnableSecurityHubV2Request, EnableSecurityHubV2Response } from "../models/models_2"; import { EnableSecurityHubV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetAdministratorAccountCommand.ts b/clients/client-securityhub/src/commands/GetAdministratorAccountCommand.ts index 3662193622e5b..149590883c501 100644 --- a/clients/client-securityhub/src/commands/GetAdministratorAccountCommand.ts +++ b/clients/client-securityhub/src/commands/GetAdministratorAccountCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAdministratorAccountRequest, GetAdministratorAccountResponse } from "../models/models_2"; +import type { GetAdministratorAccountRequest, GetAdministratorAccountResponse } from "../models/models_2"; import { GetAdministratorAccount } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetAggregatorV2Command.ts b/clients/client-securityhub/src/commands/GetAggregatorV2Command.ts index e80b16a7fcd08..bf420f7f94062 100644 --- a/clients/client-securityhub/src/commands/GetAggregatorV2Command.ts +++ b/clients/client-securityhub/src/commands/GetAggregatorV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAggregatorV2Request, GetAggregatorV2Response } from "../models/models_2"; +import type { GetAggregatorV2Request, GetAggregatorV2Response } from "../models/models_2"; import { GetAggregatorV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetAutomationRuleV2Command.ts b/clients/client-securityhub/src/commands/GetAutomationRuleV2Command.ts index e63685ae02b98..bcb6fbbf24faf 100644 --- a/clients/client-securityhub/src/commands/GetAutomationRuleV2Command.ts +++ b/clients/client-securityhub/src/commands/GetAutomationRuleV2Command.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAutomationRuleV2Request } from "../models/models_2"; -import { GetAutomationRuleV2Response } from "../models/models_3"; +import type { GetAutomationRuleV2Request } from "../models/models_2"; +import type { GetAutomationRuleV2Response } from "../models/models_3"; import { GetAutomationRuleV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetConfigurationPolicyAssociationCommand.ts b/clients/client-securityhub/src/commands/GetConfigurationPolicyAssociationCommand.ts index b4c7adc7fb7fb..667a502ac393d 100644 --- a/clients/client-securityhub/src/commands/GetConfigurationPolicyAssociationCommand.ts +++ b/clients/client-securityhub/src/commands/GetConfigurationPolicyAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConfigurationPolicyAssociationRequest, GetConfigurationPolicyAssociationResponse, } from "../models/models_2"; import { GetConfigurationPolicyAssociation } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetConfigurationPolicyCommand.ts b/clients/client-securityhub/src/commands/GetConfigurationPolicyCommand.ts index d626dd1765d8a..414efd3785e03 100644 --- a/clients/client-securityhub/src/commands/GetConfigurationPolicyCommand.ts +++ b/clients/client-securityhub/src/commands/GetConfigurationPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfigurationPolicyRequest, GetConfigurationPolicyResponse } from "../models/models_2"; +import type { GetConfigurationPolicyRequest, GetConfigurationPolicyResponse } from "../models/models_2"; import { GetConfigurationPolicy } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetConnectorV2Command.ts b/clients/client-securityhub/src/commands/GetConnectorV2Command.ts index 612882f9b74eb..00d66c189cee9 100644 --- a/clients/client-securityhub/src/commands/GetConnectorV2Command.ts +++ b/clients/client-securityhub/src/commands/GetConnectorV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectorV2Request, GetConnectorV2Response } from "../models/models_2"; +import type { GetConnectorV2Request, GetConnectorV2Response } from "../models/models_2"; import { GetConnectorV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetEnabledStandardsCommand.ts b/clients/client-securityhub/src/commands/GetEnabledStandardsCommand.ts index 21b339e4f2413..1e14b7e03463d 100644 --- a/clients/client-securityhub/src/commands/GetEnabledStandardsCommand.ts +++ b/clients/client-securityhub/src/commands/GetEnabledStandardsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnabledStandardsRequest, GetEnabledStandardsResponse } from "../models/models_2"; +import type { GetEnabledStandardsRequest, GetEnabledStandardsResponse } from "../models/models_2"; import { GetEnabledStandards } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetFindingAggregatorCommand.ts b/clients/client-securityhub/src/commands/GetFindingAggregatorCommand.ts index cfe6ecce0a4a6..67c1b20ab6e87 100644 --- a/clients/client-securityhub/src/commands/GetFindingAggregatorCommand.ts +++ b/clients/client-securityhub/src/commands/GetFindingAggregatorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingAggregatorRequest, GetFindingAggregatorResponse } from "../models/models_2"; +import type { GetFindingAggregatorRequest, GetFindingAggregatorResponse } from "../models/models_2"; import { GetFindingAggregator } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetFindingHistoryCommand.ts b/clients/client-securityhub/src/commands/GetFindingHistoryCommand.ts index 4ccbff116e79d..4e9c581889acf 100644 --- a/clients/client-securityhub/src/commands/GetFindingHistoryCommand.ts +++ b/clients/client-securityhub/src/commands/GetFindingHistoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingHistoryRequest, GetFindingHistoryResponse } from "../models/models_2"; +import type { GetFindingHistoryRequest, GetFindingHistoryResponse } from "../models/models_2"; import { GetFindingHistory } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetFindingStatisticsV2Command.ts b/clients/client-securityhub/src/commands/GetFindingStatisticsV2Command.ts index 1a7396bb15606..cbf3215ae66c9 100644 --- a/clients/client-securityhub/src/commands/GetFindingStatisticsV2Command.ts +++ b/clients/client-securityhub/src/commands/GetFindingStatisticsV2Command.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingStatisticsV2Response } from "../models/models_2"; -import { GetFindingStatisticsV2Request } from "../models/models_3"; +import type { GetFindingStatisticsV2Response } from "../models/models_2"; +import type { GetFindingStatisticsV2Request } from "../models/models_3"; import { GetFindingStatisticsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetFindingsCommand.ts b/clients/client-securityhub/src/commands/GetFindingsCommand.ts index fe4d3df7694b7..dd9f2eea7e524 100644 --- a/clients/client-securityhub/src/commands/GetFindingsCommand.ts +++ b/clients/client-securityhub/src/commands/GetFindingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingsRequest, GetFindingsResponse } from "../models/models_2"; +import type { GetFindingsRequest, GetFindingsResponse } from "../models/models_2"; import { GetFindings } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetFindingsTrendsV2Command.ts b/clients/client-securityhub/src/commands/GetFindingsTrendsV2Command.ts index a6afbe75f0e02..5885d1bb35ac2 100644 --- a/clients/client-securityhub/src/commands/GetFindingsTrendsV2Command.ts +++ b/clients/client-securityhub/src/commands/GetFindingsTrendsV2Command.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingsTrendsV2Response } from "../models/models_2"; -import { GetFindingsTrendsV2Request } from "../models/models_3"; +import type { GetFindingsTrendsV2Response } from "../models/models_2"; +import type { GetFindingsTrendsV2Request } from "../models/models_3"; import { GetFindingsTrendsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetFindingsV2Command.ts b/clients/client-securityhub/src/commands/GetFindingsV2Command.ts index 5d96ebee6497c..74b1fcd50e38f 100644 --- a/clients/client-securityhub/src/commands/GetFindingsV2Command.ts +++ b/clients/client-securityhub/src/commands/GetFindingsV2Command.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFindingsV2Response } from "../models/models_2"; -import { GetFindingsV2Request } from "../models/models_3"; +import type { GetFindingsV2Response } from "../models/models_2"; +import type { GetFindingsV2Request } from "../models/models_3"; import { GetFindingsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetInsightResultsCommand.ts b/clients/client-securityhub/src/commands/GetInsightResultsCommand.ts index 611bc2105d892..fa15f5cefaa8f 100644 --- a/clients/client-securityhub/src/commands/GetInsightResultsCommand.ts +++ b/clients/client-securityhub/src/commands/GetInsightResultsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightResultsRequest, GetInsightResultsResponse } from "../models/models_2"; +import type { GetInsightResultsRequest, GetInsightResultsResponse } from "../models/models_2"; import { GetInsightResults } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetInsightsCommand.ts b/clients/client-securityhub/src/commands/GetInsightsCommand.ts index 1d778a9afb4a7..b88133670c817 100644 --- a/clients/client-securityhub/src/commands/GetInsightsCommand.ts +++ b/clients/client-securityhub/src/commands/GetInsightsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightsRequest, GetInsightsResponse } from "../models/models_2"; +import type { GetInsightsRequest, GetInsightsResponse } from "../models/models_2"; import { GetInsights } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetInvitationsCountCommand.ts b/clients/client-securityhub/src/commands/GetInvitationsCountCommand.ts index 8f06791970081..044e1bc437727 100644 --- a/clients/client-securityhub/src/commands/GetInvitationsCountCommand.ts +++ b/clients/client-securityhub/src/commands/GetInvitationsCountCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInvitationsCountRequest, GetInvitationsCountResponse } from "../models/models_2"; +import type { GetInvitationsCountRequest, GetInvitationsCountResponse } from "../models/models_2"; import { GetInvitationsCount } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetMasterAccountCommand.ts b/clients/client-securityhub/src/commands/GetMasterAccountCommand.ts index 5cf32fb2c702f..e736941d97775 100644 --- a/clients/client-securityhub/src/commands/GetMasterAccountCommand.ts +++ b/clients/client-securityhub/src/commands/GetMasterAccountCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMasterAccountRequest, GetMasterAccountResponse } from "../models/models_2"; +import type { GetMasterAccountRequest, GetMasterAccountResponse } from "../models/models_2"; import { GetMasterAccount } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetMembersCommand.ts b/clients/client-securityhub/src/commands/GetMembersCommand.ts index d13f9ba00e767..2ea91452cf26d 100644 --- a/clients/client-securityhub/src/commands/GetMembersCommand.ts +++ b/clients/client-securityhub/src/commands/GetMembersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMembersRequest, GetMembersResponse } from "../models/models_2"; +import type { GetMembersRequest, GetMembersResponse } from "../models/models_2"; import { GetMembers } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetResourcesStatisticsV2Command.ts b/clients/client-securityhub/src/commands/GetResourcesStatisticsV2Command.ts index 7d15fb6a6d1c1..9b4dee968b744 100644 --- a/clients/client-securityhub/src/commands/GetResourcesStatisticsV2Command.ts +++ b/clients/client-securityhub/src/commands/GetResourcesStatisticsV2Command.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcesStatisticsV2Response } from "../models/models_2"; -import { GetResourcesStatisticsV2Request } from "../models/models_3"; +import type { GetResourcesStatisticsV2Response } from "../models/models_2"; +import type { GetResourcesStatisticsV2Request } from "../models/models_3"; import { GetResourcesStatisticsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetResourcesTrendsV2Command.ts b/clients/client-securityhub/src/commands/GetResourcesTrendsV2Command.ts index 581ad4f991111..07831858a8ae2 100644 --- a/clients/client-securityhub/src/commands/GetResourcesTrendsV2Command.ts +++ b/clients/client-securityhub/src/commands/GetResourcesTrendsV2Command.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcesTrendsV2Response } from "../models/models_2"; -import { GetResourcesTrendsV2Request } from "../models/models_3"; +import type { GetResourcesTrendsV2Response } from "../models/models_2"; +import type { GetResourcesTrendsV2Request } from "../models/models_3"; import { GetResourcesTrendsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetResourcesV2Command.ts b/clients/client-securityhub/src/commands/GetResourcesV2Command.ts index 1ebf8e6f5d3cc..b89d4cba4795e 100644 --- a/clients/client-securityhub/src/commands/GetResourcesV2Command.ts +++ b/clients/client-securityhub/src/commands/GetResourcesV2Command.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcesV2Response } from "../models/models_2"; -import { GetResourcesV2Request } from "../models/models_3"; +import type { GetResourcesV2Response } from "../models/models_2"; +import type { GetResourcesV2Request } from "../models/models_3"; import { GetResourcesV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/GetSecurityControlDefinitionCommand.ts b/clients/client-securityhub/src/commands/GetSecurityControlDefinitionCommand.ts index 5ff48eeccac43..0836e3dcd7471 100644 --- a/clients/client-securityhub/src/commands/GetSecurityControlDefinitionCommand.ts +++ b/clients/client-securityhub/src/commands/GetSecurityControlDefinitionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSecurityControlDefinitionRequest, GetSecurityControlDefinitionResponse } from "../models/models_2"; +import type { GetSecurityControlDefinitionRequest, GetSecurityControlDefinitionResponse } from "../models/models_2"; import { GetSecurityControlDefinition } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/InviteMembersCommand.ts b/clients/client-securityhub/src/commands/InviteMembersCommand.ts index 2bb0761091239..a037a9f25c364 100644 --- a/clients/client-securityhub/src/commands/InviteMembersCommand.ts +++ b/clients/client-securityhub/src/commands/InviteMembersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InviteMembersRequest, InviteMembersResponse } from "../models/models_2"; +import type { InviteMembersRequest, InviteMembersResponse } from "../models/models_2"; import { InviteMembers } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListAggregatorsV2Command.ts b/clients/client-securityhub/src/commands/ListAggregatorsV2Command.ts index 9b521987a38f3..71344d3e409aa 100644 --- a/clients/client-securityhub/src/commands/ListAggregatorsV2Command.ts +++ b/clients/client-securityhub/src/commands/ListAggregatorsV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAggregatorsV2Request, ListAggregatorsV2Response } from "../models/models_2"; +import type { ListAggregatorsV2Request, ListAggregatorsV2Response } from "../models/models_2"; import { ListAggregatorsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListAutomationRulesCommand.ts b/clients/client-securityhub/src/commands/ListAutomationRulesCommand.ts index 3dbc08d2d84e6..e15bf0070cc7e 100644 --- a/clients/client-securityhub/src/commands/ListAutomationRulesCommand.ts +++ b/clients/client-securityhub/src/commands/ListAutomationRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutomationRulesRequest, ListAutomationRulesResponse } from "../models/models_2"; +import type { ListAutomationRulesRequest, ListAutomationRulesResponse } from "../models/models_2"; import { ListAutomationRules } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListAutomationRulesV2Command.ts b/clients/client-securityhub/src/commands/ListAutomationRulesV2Command.ts index c782fa484834e..395fb4d61a703 100644 --- a/clients/client-securityhub/src/commands/ListAutomationRulesV2Command.ts +++ b/clients/client-securityhub/src/commands/ListAutomationRulesV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutomationRulesV2Request, ListAutomationRulesV2Response } from "../models/models_2"; +import type { ListAutomationRulesV2Request, ListAutomationRulesV2Response } from "../models/models_2"; import { ListAutomationRulesV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListConfigurationPoliciesCommand.ts b/clients/client-securityhub/src/commands/ListConfigurationPoliciesCommand.ts index 46beae5af4b9f..cd580347b5c4d 100644 --- a/clients/client-securityhub/src/commands/ListConfigurationPoliciesCommand.ts +++ b/clients/client-securityhub/src/commands/ListConfigurationPoliciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationPoliciesRequest, ListConfigurationPoliciesResponse } from "../models/models_2"; +import type { ListConfigurationPoliciesRequest, ListConfigurationPoliciesResponse } from "../models/models_2"; import { ListConfigurationPolicies } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListConfigurationPolicyAssociationsCommand.ts b/clients/client-securityhub/src/commands/ListConfigurationPolicyAssociationsCommand.ts index fa4d41e0afefa..17a257770eab2 100644 --- a/clients/client-securityhub/src/commands/ListConfigurationPolicyAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/ListConfigurationPolicyAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListConfigurationPolicyAssociationsRequest, ListConfigurationPolicyAssociationsResponse, } from "../models/models_2"; import { ListConfigurationPolicyAssociations } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListConnectorsV2Command.ts b/clients/client-securityhub/src/commands/ListConnectorsV2Command.ts index 6359278710ca3..78cf3a8476882 100644 --- a/clients/client-securityhub/src/commands/ListConnectorsV2Command.ts +++ b/clients/client-securityhub/src/commands/ListConnectorsV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectorsV2Request, ListConnectorsV2Response } from "../models/models_2"; +import type { ListConnectorsV2Request, ListConnectorsV2Response } from "../models/models_2"; import { ListConnectorsV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListEnabledProductsForImportCommand.ts b/clients/client-securityhub/src/commands/ListEnabledProductsForImportCommand.ts index bb6920f308a18..0014cb0ca9f4d 100644 --- a/clients/client-securityhub/src/commands/ListEnabledProductsForImportCommand.ts +++ b/clients/client-securityhub/src/commands/ListEnabledProductsForImportCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnabledProductsForImportRequest, ListEnabledProductsForImportResponse } from "../models/models_2"; +import type { ListEnabledProductsForImportRequest, ListEnabledProductsForImportResponse } from "../models/models_2"; import { ListEnabledProductsForImport } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListFindingAggregatorsCommand.ts b/clients/client-securityhub/src/commands/ListFindingAggregatorsCommand.ts index f6de3a2c59797..bb7166884af3c 100644 --- a/clients/client-securityhub/src/commands/ListFindingAggregatorsCommand.ts +++ b/clients/client-securityhub/src/commands/ListFindingAggregatorsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFindingAggregatorsRequest, ListFindingAggregatorsResponse } from "../models/models_2"; +import type { ListFindingAggregatorsRequest, ListFindingAggregatorsResponse } from "../models/models_2"; import { ListFindingAggregators } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListInvitationsCommand.ts b/clients/client-securityhub/src/commands/ListInvitationsCommand.ts index 1d332b14f384a..f46685a5b17c2 100644 --- a/clients/client-securityhub/src/commands/ListInvitationsCommand.ts +++ b/clients/client-securityhub/src/commands/ListInvitationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_2"; +import type { ListInvitationsRequest, ListInvitationsResponse } from "../models/models_2"; import { ListInvitations } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListMembersCommand.ts b/clients/client-securityhub/src/commands/ListMembersCommand.ts index 1d01cba94cc8f..01acd2fda41c9 100644 --- a/clients/client-securityhub/src/commands/ListMembersCommand.ts +++ b/clients/client-securityhub/src/commands/ListMembersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMembersRequest, ListMembersResponse } from "../models/models_2"; +import type { ListMembersRequest, ListMembersResponse } from "../models/models_2"; import { ListMembers } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListOrganizationAdminAccountsCommand.ts b/clients/client-securityhub/src/commands/ListOrganizationAdminAccountsCommand.ts index 5720db49451b0..0b727122e1217 100644 --- a/clients/client-securityhub/src/commands/ListOrganizationAdminAccountsCommand.ts +++ b/clients/client-securityhub/src/commands/ListOrganizationAdminAccountsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_2"; +import type { ListOrganizationAdminAccountsRequest, ListOrganizationAdminAccountsResponse } from "../models/models_2"; import { ListOrganizationAdminAccounts } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListSecurityControlDefinitionsCommand.ts b/clients/client-securityhub/src/commands/ListSecurityControlDefinitionsCommand.ts index b9589cec00a56..1dc76c3b31740 100644 --- a/clients/client-securityhub/src/commands/ListSecurityControlDefinitionsCommand.ts +++ b/clients/client-securityhub/src/commands/ListSecurityControlDefinitionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityControlDefinitionsRequest, ListSecurityControlDefinitionsResponse } from "../models/models_2"; +import type { ListSecurityControlDefinitionsRequest, ListSecurityControlDefinitionsResponse } from "../models/models_2"; import { ListSecurityControlDefinitions } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListStandardsControlAssociationsCommand.ts b/clients/client-securityhub/src/commands/ListStandardsControlAssociationsCommand.ts index 51012b152f7fb..d3fa489169d5f 100644 --- a/clients/client-securityhub/src/commands/ListStandardsControlAssociationsCommand.ts +++ b/clients/client-securityhub/src/commands/ListStandardsControlAssociationsCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStandardsControlAssociationsRequest } from "../models/models_2"; -import { ListStandardsControlAssociationsResponse } from "../models/models_3"; +import type { ListStandardsControlAssociationsRequest } from "../models/models_2"; +import type { ListStandardsControlAssociationsResponse } from "../models/models_3"; import { ListStandardsControlAssociations } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/ListTagsForResourceCommand.ts b/clients/client-securityhub/src/commands/ListTagsForResourceCommand.ts index 9a8907fc514c9..37017352cd4ba 100644 --- a/clients/client-securityhub/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-securityhub/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_3"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_3"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/StartConfigurationPolicyAssociationCommand.ts b/clients/client-securityhub/src/commands/StartConfigurationPolicyAssociationCommand.ts index f486a8d1db045..4242d3dd5adf5 100644 --- a/clients/client-securityhub/src/commands/StartConfigurationPolicyAssociationCommand.ts +++ b/clients/client-securityhub/src/commands/StartConfigurationPolicyAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartConfigurationPolicyAssociationRequest, StartConfigurationPolicyAssociationResponse, } from "../models/models_3"; import { StartConfigurationPolicyAssociation } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/StartConfigurationPolicyDisassociationCommand.ts b/clients/client-securityhub/src/commands/StartConfigurationPolicyDisassociationCommand.ts index b03d71c89a479..33fe19019e94c 100644 --- a/clients/client-securityhub/src/commands/StartConfigurationPolicyDisassociationCommand.ts +++ b/clients/client-securityhub/src/commands/StartConfigurationPolicyDisassociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartConfigurationPolicyDisassociationRequest, StartConfigurationPolicyDisassociationResponse, } from "../models/models_3"; import { StartConfigurationPolicyDisassociation } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/TagResourceCommand.ts b/clients/client-securityhub/src/commands/TagResourceCommand.ts index b60fcf8d26381..c944377d5d596 100644 --- a/clients/client-securityhub/src/commands/TagResourceCommand.ts +++ b/clients/client-securityhub/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_3"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_3"; import { TagResource } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UntagResourceCommand.ts b/clients/client-securityhub/src/commands/UntagResourceCommand.ts index 2e3cbea8f47fe..e1f11af19104c 100644 --- a/clients/client-securityhub/src/commands/UntagResourceCommand.ts +++ b/clients/client-securityhub/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_3"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_3"; import { UntagResource } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateActionTargetCommand.ts b/clients/client-securityhub/src/commands/UpdateActionTargetCommand.ts index 4059128ec7fd2..f644a841f4ea8 100644 --- a/clients/client-securityhub/src/commands/UpdateActionTargetCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateActionTargetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateActionTargetRequest, UpdateActionTargetResponse } from "../models/models_3"; +import type { UpdateActionTargetRequest, UpdateActionTargetResponse } from "../models/models_3"; import { UpdateActionTarget } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateAggregatorV2Command.ts b/clients/client-securityhub/src/commands/UpdateAggregatorV2Command.ts index 53fb57adc8b80..d2ab5929592a6 100644 --- a/clients/client-securityhub/src/commands/UpdateAggregatorV2Command.ts +++ b/clients/client-securityhub/src/commands/UpdateAggregatorV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAggregatorV2Request, UpdateAggregatorV2Response } from "../models/models_3"; +import type { UpdateAggregatorV2Request, UpdateAggregatorV2Response } from "../models/models_3"; import { UpdateAggregatorV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateAutomationRuleV2Command.ts b/clients/client-securityhub/src/commands/UpdateAutomationRuleV2Command.ts index e4ddf62074f26..ba554ab773ff0 100644 --- a/clients/client-securityhub/src/commands/UpdateAutomationRuleV2Command.ts +++ b/clients/client-securityhub/src/commands/UpdateAutomationRuleV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAutomationRuleV2Request, UpdateAutomationRuleV2Response } from "../models/models_3"; +import type { UpdateAutomationRuleV2Request, UpdateAutomationRuleV2Response } from "../models/models_3"; import { UpdateAutomationRuleV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateConfigurationPolicyCommand.ts b/clients/client-securityhub/src/commands/UpdateConfigurationPolicyCommand.ts index 52e91aa819c7e..6b058013cdf6a 100644 --- a/clients/client-securityhub/src/commands/UpdateConfigurationPolicyCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateConfigurationPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfigurationPolicyRequest, UpdateConfigurationPolicyResponse } from "../models/models_3"; +import type { UpdateConfigurationPolicyRequest, UpdateConfigurationPolicyResponse } from "../models/models_3"; import { UpdateConfigurationPolicy } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateConnectorV2Command.ts b/clients/client-securityhub/src/commands/UpdateConnectorV2Command.ts index 66eac150cd16e..0d60c0bd43cc0 100644 --- a/clients/client-securityhub/src/commands/UpdateConnectorV2Command.ts +++ b/clients/client-securityhub/src/commands/UpdateConnectorV2Command.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectorV2Request, UpdateConnectorV2Response } from "../models/models_3"; +import type { UpdateConnectorV2Request, UpdateConnectorV2Response } from "../models/models_3"; import { UpdateConnectorV2 } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateFindingAggregatorCommand.ts b/clients/client-securityhub/src/commands/UpdateFindingAggregatorCommand.ts index c89962c656cc1..da2d8dc091efc 100644 --- a/clients/client-securityhub/src/commands/UpdateFindingAggregatorCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateFindingAggregatorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFindingAggregatorRequest, UpdateFindingAggregatorResponse } from "../models/models_3"; +import type { UpdateFindingAggregatorRequest, UpdateFindingAggregatorResponse } from "../models/models_3"; import { UpdateFindingAggregator } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateFindingsCommand.ts b/clients/client-securityhub/src/commands/UpdateFindingsCommand.ts index bc93918b345ba..9b1da9d131329 100644 --- a/clients/client-securityhub/src/commands/UpdateFindingsCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateFindingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFindingsRequest, UpdateFindingsResponse } from "../models/models_3"; +import type { UpdateFindingsRequest, UpdateFindingsResponse } from "../models/models_3"; import { UpdateFindings } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateInsightCommand.ts b/clients/client-securityhub/src/commands/UpdateInsightCommand.ts index 807985f66de21..335c3ff78601c 100644 --- a/clients/client-securityhub/src/commands/UpdateInsightCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateInsightCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInsightRequest, UpdateInsightResponse } from "../models/models_3"; +import type { UpdateInsightRequest, UpdateInsightResponse } from "../models/models_3"; import { UpdateInsight } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateOrganizationConfigurationCommand.ts b/clients/client-securityhub/src/commands/UpdateOrganizationConfigurationCommand.ts index 27a41052f51d6..49ed19e139702 100644 --- a/clients/client-securityhub/src/commands/UpdateOrganizationConfigurationCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateOrganizationConfigurationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOrganizationConfigurationRequest, UpdateOrganizationConfigurationResponse } from "../models/models_3"; +import type { + UpdateOrganizationConfigurationRequest, + UpdateOrganizationConfigurationResponse, +} from "../models/models_3"; import { UpdateOrganizationConfiguration } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateSecurityControlCommand.ts b/clients/client-securityhub/src/commands/UpdateSecurityControlCommand.ts index 324aab8d4bfbe..b097478f04299 100644 --- a/clients/client-securityhub/src/commands/UpdateSecurityControlCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateSecurityControlCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSecurityControlRequest, UpdateSecurityControlResponse } from "../models/models_3"; +import type { UpdateSecurityControlRequest, UpdateSecurityControlResponse } from "../models/models_3"; import { UpdateSecurityControl } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateSecurityHubConfigurationCommand.ts b/clients/client-securityhub/src/commands/UpdateSecurityHubConfigurationCommand.ts index 4541b3dfada3a..959cd3ca47753 100644 --- a/clients/client-securityhub/src/commands/UpdateSecurityHubConfigurationCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateSecurityHubConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSecurityHubConfigurationRequest, UpdateSecurityHubConfigurationResponse } from "../models/models_3"; +import type { UpdateSecurityHubConfigurationRequest, UpdateSecurityHubConfigurationResponse } from "../models/models_3"; import { UpdateSecurityHubConfiguration } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/commands/UpdateStandardsControlCommand.ts b/clients/client-securityhub/src/commands/UpdateStandardsControlCommand.ts index d7a7589d0f632..ede37768d6c04 100644 --- a/clients/client-securityhub/src/commands/UpdateStandardsControlCommand.ts +++ b/clients/client-securityhub/src/commands/UpdateStandardsControlCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStandardsControlRequest, UpdateStandardsControlResponse } from "../models/models_3"; +import type { UpdateStandardsControlRequest, UpdateStandardsControlResponse } from "../models/models_3"; import { UpdateStandardsControl } from "../schemas/schemas_0"; -import { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; +import type { SecurityHubClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityHubClient"; /** * @public diff --git a/clients/client-securityhub/src/endpoint/EndpointParameters.ts b/clients/client-securityhub/src/endpoint/EndpointParameters.ts index f9293b7b888d2..722c9ce00c1b9 100644 --- a/clients/client-securityhub/src/endpoint/EndpointParameters.ts +++ b/clients/client-securityhub/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-securityhub/src/endpoint/endpointResolver.ts b/clients/client-securityhub/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-securityhub/src/endpoint/endpointResolver.ts +++ b/clients/client-securityhub/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-securityhub/src/extensionConfiguration.ts b/clients/client-securityhub/src/extensionConfiguration.ts index abd16c1d17036..3fe610120d05f 100644 --- a/clients/client-securityhub/src/extensionConfiguration.ts +++ b/clients/client-securityhub/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-securityhub/src/models/SecurityHubServiceException.ts b/clients/client-securityhub/src/models/SecurityHubServiceException.ts index 70f8587f7b862..41740c26689d8 100644 --- a/clients/client-securityhub/src/models/SecurityHubServiceException.ts +++ b/clients/client-securityhub/src/models/SecurityHubServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-securityhub/src/models/errors.ts b/clients/client-securityhub/src/models/errors.ts index 22f87542af321..a625e843fe4ac 100644 --- a/clients/client-securityhub/src/models/errors.ts +++ b/clients/client-securityhub/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SecurityHubServiceException as __BaseException } from "./SecurityHubServiceException"; diff --git a/clients/client-securityhub/src/pagination/DescribeActionTargetsPaginator.ts b/clients/client-securityhub/src/pagination/DescribeActionTargetsPaginator.ts index 84810d8e6b7f8..dadd1096ee717 100644 --- a/clients/client-securityhub/src/pagination/DescribeActionTargetsPaginator.ts +++ b/clients/client-securityhub/src/pagination/DescribeActionTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeActionTargetsCommand, diff --git a/clients/client-securityhub/src/pagination/DescribeProductsPaginator.ts b/clients/client-securityhub/src/pagination/DescribeProductsPaginator.ts index 9439715b46331..03453520a3f80 100644 --- a/clients/client-securityhub/src/pagination/DescribeProductsPaginator.ts +++ b/clients/client-securityhub/src/pagination/DescribeProductsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeProductsCommand, diff --git a/clients/client-securityhub/src/pagination/DescribeProductsV2Paginator.ts b/clients/client-securityhub/src/pagination/DescribeProductsV2Paginator.ts index e5241c9f2caa7..a5ef0a28e89cf 100644 --- a/clients/client-securityhub/src/pagination/DescribeProductsV2Paginator.ts +++ b/clients/client-securityhub/src/pagination/DescribeProductsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeProductsV2Command, diff --git a/clients/client-securityhub/src/pagination/DescribeStandardsControlsPaginator.ts b/clients/client-securityhub/src/pagination/DescribeStandardsControlsPaginator.ts index a4d476301078a..a001de2444c9b 100644 --- a/clients/client-securityhub/src/pagination/DescribeStandardsControlsPaginator.ts +++ b/clients/client-securityhub/src/pagination/DescribeStandardsControlsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeStandardsControlsCommand, diff --git a/clients/client-securityhub/src/pagination/DescribeStandardsPaginator.ts b/clients/client-securityhub/src/pagination/DescribeStandardsPaginator.ts index 2a92d9496a1d3..3e993ac426ab7 100644 --- a/clients/client-securityhub/src/pagination/DescribeStandardsPaginator.ts +++ b/clients/client-securityhub/src/pagination/DescribeStandardsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeStandardsCommand, diff --git a/clients/client-securityhub/src/pagination/GetEnabledStandardsPaginator.ts b/clients/client-securityhub/src/pagination/GetEnabledStandardsPaginator.ts index 92b948af8d44f..50ade9765726f 100644 --- a/clients/client-securityhub/src/pagination/GetEnabledStandardsPaginator.ts +++ b/clients/client-securityhub/src/pagination/GetEnabledStandardsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetEnabledStandardsCommand, diff --git a/clients/client-securityhub/src/pagination/GetFindingHistoryPaginator.ts b/clients/client-securityhub/src/pagination/GetFindingHistoryPaginator.ts index f8d80f6c4ec4e..71dee232b4d7f 100644 --- a/clients/client-securityhub/src/pagination/GetFindingHistoryPaginator.ts +++ b/clients/client-securityhub/src/pagination/GetFindingHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetFindingHistoryCommand, diff --git a/clients/client-securityhub/src/pagination/GetFindingsPaginator.ts b/clients/client-securityhub/src/pagination/GetFindingsPaginator.ts index d20e774593826..a62d40519f500 100644 --- a/clients/client-securityhub/src/pagination/GetFindingsPaginator.ts +++ b/clients/client-securityhub/src/pagination/GetFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetFindingsCommand, GetFindingsCommandInput, GetFindingsCommandOutput } from "../commands/GetFindingsCommand"; import { SecurityHubClient } from "../SecurityHubClient"; diff --git a/clients/client-securityhub/src/pagination/GetFindingsTrendsV2Paginator.ts b/clients/client-securityhub/src/pagination/GetFindingsTrendsV2Paginator.ts index d13a120b8bac7..867faf66d4828 100644 --- a/clients/client-securityhub/src/pagination/GetFindingsTrendsV2Paginator.ts +++ b/clients/client-securityhub/src/pagination/GetFindingsTrendsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetFindingsTrendsV2Command, diff --git a/clients/client-securityhub/src/pagination/GetFindingsV2Paginator.ts b/clients/client-securityhub/src/pagination/GetFindingsV2Paginator.ts index 0a576017b1d2c..de8ce61d9ecd9 100644 --- a/clients/client-securityhub/src/pagination/GetFindingsV2Paginator.ts +++ b/clients/client-securityhub/src/pagination/GetFindingsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetFindingsV2Command, diff --git a/clients/client-securityhub/src/pagination/GetInsightsPaginator.ts b/clients/client-securityhub/src/pagination/GetInsightsPaginator.ts index 42837fe4ae113..c02c8f707829b 100644 --- a/clients/client-securityhub/src/pagination/GetInsightsPaginator.ts +++ b/clients/client-securityhub/src/pagination/GetInsightsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetInsightsCommand, GetInsightsCommandInput, GetInsightsCommandOutput } from "../commands/GetInsightsCommand"; import { SecurityHubClient } from "../SecurityHubClient"; diff --git a/clients/client-securityhub/src/pagination/GetResourcesTrendsV2Paginator.ts b/clients/client-securityhub/src/pagination/GetResourcesTrendsV2Paginator.ts index f682d09339d3f..13f875fcb78a8 100644 --- a/clients/client-securityhub/src/pagination/GetResourcesTrendsV2Paginator.ts +++ b/clients/client-securityhub/src/pagination/GetResourcesTrendsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourcesTrendsV2Command, diff --git a/clients/client-securityhub/src/pagination/GetResourcesV2Paginator.ts b/clients/client-securityhub/src/pagination/GetResourcesV2Paginator.ts index bde6d83334621..7a6eb4f1e7b78 100644 --- a/clients/client-securityhub/src/pagination/GetResourcesV2Paginator.ts +++ b/clients/client-securityhub/src/pagination/GetResourcesV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourcesV2Command, diff --git a/clients/client-securityhub/src/pagination/Interfaces.ts b/clients/client-securityhub/src/pagination/Interfaces.ts index 6be36bae1596c..264329df16387 100644 --- a/clients/client-securityhub/src/pagination/Interfaces.ts +++ b/clients/client-securityhub/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SecurityHubClient } from "../SecurityHubClient"; diff --git a/clients/client-securityhub/src/pagination/ListAggregatorsV2Paginator.ts b/clients/client-securityhub/src/pagination/ListAggregatorsV2Paginator.ts index ea00f3301ee9c..6908c414c091d 100644 --- a/clients/client-securityhub/src/pagination/ListAggregatorsV2Paginator.ts +++ b/clients/client-securityhub/src/pagination/ListAggregatorsV2Paginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAggregatorsV2Command, diff --git a/clients/client-securityhub/src/pagination/ListConfigurationPoliciesPaginator.ts b/clients/client-securityhub/src/pagination/ListConfigurationPoliciesPaginator.ts index 419214fdff7a2..b5f7a2925716e 100644 --- a/clients/client-securityhub/src/pagination/ListConfigurationPoliciesPaginator.ts +++ b/clients/client-securityhub/src/pagination/ListConfigurationPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationPoliciesCommand, diff --git a/clients/client-securityhub/src/pagination/ListConfigurationPolicyAssociationsPaginator.ts b/clients/client-securityhub/src/pagination/ListConfigurationPolicyAssociationsPaginator.ts index ae3b64e6210fe..9812c6290c650 100644 --- a/clients/client-securityhub/src/pagination/ListConfigurationPolicyAssociationsPaginator.ts +++ b/clients/client-securityhub/src/pagination/ListConfigurationPolicyAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationPolicyAssociationsCommand, diff --git a/clients/client-securityhub/src/pagination/ListEnabledProductsForImportPaginator.ts b/clients/client-securityhub/src/pagination/ListEnabledProductsForImportPaginator.ts index 9eefa08b4e6f6..3edc653698177 100644 --- a/clients/client-securityhub/src/pagination/ListEnabledProductsForImportPaginator.ts +++ b/clients/client-securityhub/src/pagination/ListEnabledProductsForImportPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnabledProductsForImportCommand, diff --git a/clients/client-securityhub/src/pagination/ListFindingAggregatorsPaginator.ts b/clients/client-securityhub/src/pagination/ListFindingAggregatorsPaginator.ts index 0f2bf9585ee31..52f31ce6fb382 100644 --- a/clients/client-securityhub/src/pagination/ListFindingAggregatorsPaginator.ts +++ b/clients/client-securityhub/src/pagination/ListFindingAggregatorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFindingAggregatorsCommand, diff --git a/clients/client-securityhub/src/pagination/ListInvitationsPaginator.ts b/clients/client-securityhub/src/pagination/ListInvitationsPaginator.ts index 8cf8afff0c2d7..9b085ee26dfe6 100644 --- a/clients/client-securityhub/src/pagination/ListInvitationsPaginator.ts +++ b/clients/client-securityhub/src/pagination/ListInvitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInvitationsCommand, diff --git a/clients/client-securityhub/src/pagination/ListMembersPaginator.ts b/clients/client-securityhub/src/pagination/ListMembersPaginator.ts index d15fd4918a7b2..8ff864bc23384 100644 --- a/clients/client-securityhub/src/pagination/ListMembersPaginator.ts +++ b/clients/client-securityhub/src/pagination/ListMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMembersCommand, ListMembersCommandInput, ListMembersCommandOutput } from "../commands/ListMembersCommand"; import { SecurityHubClient } from "../SecurityHubClient"; diff --git a/clients/client-securityhub/src/pagination/ListOrganizationAdminAccountsPaginator.ts b/clients/client-securityhub/src/pagination/ListOrganizationAdminAccountsPaginator.ts index 3e10519b24caa..6863512581c36 100644 --- a/clients/client-securityhub/src/pagination/ListOrganizationAdminAccountsPaginator.ts +++ b/clients/client-securityhub/src/pagination/ListOrganizationAdminAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationAdminAccountsCommand, diff --git a/clients/client-securityhub/src/pagination/ListSecurityControlDefinitionsPaginator.ts b/clients/client-securityhub/src/pagination/ListSecurityControlDefinitionsPaginator.ts index 91341abc9c5b2..79fbc9a3c7cf1 100644 --- a/clients/client-securityhub/src/pagination/ListSecurityControlDefinitionsPaginator.ts +++ b/clients/client-securityhub/src/pagination/ListSecurityControlDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityControlDefinitionsCommand, diff --git a/clients/client-securityhub/src/pagination/ListStandardsControlAssociationsPaginator.ts b/clients/client-securityhub/src/pagination/ListStandardsControlAssociationsPaginator.ts index 6d7bd88971929..b6b962c6a5f10 100644 --- a/clients/client-securityhub/src/pagination/ListStandardsControlAssociationsPaginator.ts +++ b/clients/client-securityhub/src/pagination/ListStandardsControlAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStandardsControlAssociationsCommand, diff --git a/clients/client-securityhub/src/runtimeConfig.browser.ts b/clients/client-securityhub/src/runtimeConfig.browser.ts index e25911aa72901..4561e21575605 100644 --- a/clients/client-securityhub/src/runtimeConfig.browser.ts +++ b/clients/client-securityhub/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SecurityHubClientConfig } from "./SecurityHubClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SecurityHubClientConfig } from "./SecurityHubClient"; /** * @internal diff --git a/clients/client-securityhub/src/runtimeConfig.native.ts b/clients/client-securityhub/src/runtimeConfig.native.ts index ac0f2cbdd36ef..173750028d3f2 100644 --- a/clients/client-securityhub/src/runtimeConfig.native.ts +++ b/clients/client-securityhub/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SecurityHubClientConfig } from "./SecurityHubClient"; +import type { SecurityHubClientConfig } from "./SecurityHubClient"; /** * @internal diff --git a/clients/client-securityhub/src/runtimeConfig.shared.ts b/clients/client-securityhub/src/runtimeConfig.shared.ts index 6f8c96877ffe7..b56244334aba2 100644 --- a/clients/client-securityhub/src/runtimeConfig.shared.ts +++ b/clients/client-securityhub/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSecurityHubHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SecurityHubClientConfig } from "./SecurityHubClient"; +import type { SecurityHubClientConfig } from "./SecurityHubClient"; /** * @internal diff --git a/clients/client-securityhub/src/runtimeConfig.ts b/clients/client-securityhub/src/runtimeConfig.ts index 6f6c8ad0c2ae2..7c8ef788b008d 100644 --- a/clients/client-securityhub/src/runtimeConfig.ts +++ b/clients/client-securityhub/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SecurityHubClientConfig } from "./SecurityHubClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SecurityHubClientConfig } from "./SecurityHubClient"; /** * @internal diff --git a/clients/client-securityhub/src/runtimeExtensions.ts b/clients/client-securityhub/src/runtimeExtensions.ts index d98bfa6344567..e3434949590cd 100644 --- a/clients/client-securityhub/src/runtimeExtensions.ts +++ b/clients/client-securityhub/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SecurityHubExtensionConfiguration } from "./extensionConfiguration"; +import type { SecurityHubExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-securityhub/src/schemas/schemas_0.ts b/clients/client-securityhub/src/schemas/schemas_0.ts index db2450e5a9796..d65235c327b85 100644 --- a/clients/client-securityhub/src/schemas/schemas_0.ts +++ b/clients/client-securityhub/src/schemas/schemas_0.ts @@ -3424,7 +3424,7 @@ const n0 = "com.amazonaws.securityhub"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-securitylake/package.json b/clients/client-securitylake/package.json index 3eb26cf254c4b..db8bad87a4d57 100644 --- a/clients/client-securitylake/package.json +++ b/clients/client-securitylake/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-securitylake/src/SecurityLake.ts b/clients/client-securitylake/src/SecurityLake.ts index d0a5fb79e10ca..96d351b479a0e 100644 --- a/clients/client-securitylake/src/SecurityLake.ts +++ b/clients/client-securitylake/src/SecurityLake.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAwsLogSourceCommand, @@ -153,7 +153,7 @@ import { UpdateSubscriberNotificationCommandInput, UpdateSubscriberNotificationCommandOutput, } from "./commands/UpdateSubscriberNotificationCommand"; -import { SecurityLakeClient, SecurityLakeClientConfig } from "./SecurityLakeClient"; +import { SecurityLakeClient } from "./SecurityLakeClient"; const commands = { CreateAwsLogSourceCommand, diff --git a/clients/client-securitylake/src/SecurityLakeClient.ts b/clients/client-securitylake/src/SecurityLakeClient.ts index ac9648977a65a..5a1988f467262 100644 --- a/clients/client-securitylake/src/SecurityLakeClient.ts +++ b/clients/client-securitylake/src/SecurityLakeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSecurityLakeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateAwsLogSourceCommandInput, CreateAwsLogSourceCommandOutput } from "./commands/CreateAwsLogSourceCommand"; @@ -143,7 +152,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-securitylake/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-securitylake/src/auth/httpAuthExtensionConfiguration.ts index 50d3f9c8d56f0..ee3500218f9d9 100644 --- a/clients/client-securitylake/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-securitylake/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SecurityLakeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SecurityLakeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-securitylake/src/auth/httpAuthSchemeProvider.ts b/clients/client-securitylake/src/auth/httpAuthSchemeProvider.ts index 30f4a1c46e1de..d4b8b5eba6b0f 100644 --- a/clients/client-securitylake/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-securitylake/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SecurityLakeClientConfig, SecurityLakeClientResolvedConfig } from "../SecurityLakeClient"; +import { type SecurityLakeClientResolvedConfig, SecurityLakeClientConfig } from "../SecurityLakeClient"; /** * @internal diff --git a/clients/client-securitylake/src/commands/CreateAwsLogSourceCommand.ts b/clients/client-securitylake/src/commands/CreateAwsLogSourceCommand.ts index 5e292a5a87e63..92f9eb3d5ac86 100644 --- a/clients/client-securitylake/src/commands/CreateAwsLogSourceCommand.ts +++ b/clients/client-securitylake/src/commands/CreateAwsLogSourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAwsLogSourceRequest, CreateAwsLogSourceResponse } from "../models/models_0"; +import type { CreateAwsLogSourceRequest, CreateAwsLogSourceResponse } from "../models/models_0"; import { CreateAwsLogSource } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/CreateCustomLogSourceCommand.ts b/clients/client-securitylake/src/commands/CreateCustomLogSourceCommand.ts index 09586078b6647..ce5a41e28f948 100644 --- a/clients/client-securitylake/src/commands/CreateCustomLogSourceCommand.ts +++ b/clients/client-securitylake/src/commands/CreateCustomLogSourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomLogSourceRequest, CreateCustomLogSourceResponse } from "../models/models_0"; +import type { CreateCustomLogSourceRequest, CreateCustomLogSourceResponse } from "../models/models_0"; import { CreateCustomLogSource } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/CreateDataLakeCommand.ts b/clients/client-securitylake/src/commands/CreateDataLakeCommand.ts index 7c279b675f90c..5ea87eb62d2e5 100644 --- a/clients/client-securitylake/src/commands/CreateDataLakeCommand.ts +++ b/clients/client-securitylake/src/commands/CreateDataLakeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataLakeRequest, CreateDataLakeResponse } from "../models/models_0"; +import type { CreateDataLakeRequest, CreateDataLakeResponse } from "../models/models_0"; import { CreateDataLake } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/CreateDataLakeExceptionSubscriptionCommand.ts b/clients/client-securitylake/src/commands/CreateDataLakeExceptionSubscriptionCommand.ts index 0583fe5bc365a..723b584124ef6 100644 --- a/clients/client-securitylake/src/commands/CreateDataLakeExceptionSubscriptionCommand.ts +++ b/clients/client-securitylake/src/commands/CreateDataLakeExceptionSubscriptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateDataLakeExceptionSubscriptionRequest, CreateDataLakeExceptionSubscriptionResponse, } from "../models/models_0"; import { CreateDataLakeExceptionSubscription } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/CreateDataLakeOrganizationConfigurationCommand.ts b/clients/client-securitylake/src/commands/CreateDataLakeOrganizationConfigurationCommand.ts index 707456f28e305..35e0edf12fc70 100644 --- a/clients/client-securitylake/src/commands/CreateDataLakeOrganizationConfigurationCommand.ts +++ b/clients/client-securitylake/src/commands/CreateDataLakeOrganizationConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateDataLakeOrganizationConfigurationRequest, CreateDataLakeOrganizationConfigurationResponse, } from "../models/models_0"; import { CreateDataLakeOrganizationConfiguration } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/CreateSubscriberCommand.ts b/clients/client-securitylake/src/commands/CreateSubscriberCommand.ts index 5d4e776817641..10c204b61cea6 100644 --- a/clients/client-securitylake/src/commands/CreateSubscriberCommand.ts +++ b/clients/client-securitylake/src/commands/CreateSubscriberCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubscriberRequest, CreateSubscriberResponse } from "../models/models_0"; +import type { CreateSubscriberRequest, CreateSubscriberResponse } from "../models/models_0"; import { CreateSubscriber } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/CreateSubscriberNotificationCommand.ts b/clients/client-securitylake/src/commands/CreateSubscriberNotificationCommand.ts index 90c80d8ca4d97..947e60d23fb51 100644 --- a/clients/client-securitylake/src/commands/CreateSubscriberNotificationCommand.ts +++ b/clients/client-securitylake/src/commands/CreateSubscriberNotificationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubscriberNotificationRequest, CreateSubscriberNotificationResponse } from "../models/models_0"; +import type { CreateSubscriberNotificationRequest, CreateSubscriberNotificationResponse } from "../models/models_0"; import { CreateSubscriberNotification } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/DeleteAwsLogSourceCommand.ts b/clients/client-securitylake/src/commands/DeleteAwsLogSourceCommand.ts index 024065eb02be1..792a7b53ae503 100644 --- a/clients/client-securitylake/src/commands/DeleteAwsLogSourceCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteAwsLogSourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAwsLogSourceRequest, DeleteAwsLogSourceResponse } from "../models/models_0"; +import type { DeleteAwsLogSourceRequest, DeleteAwsLogSourceResponse } from "../models/models_0"; import { DeleteAwsLogSource } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/DeleteCustomLogSourceCommand.ts b/clients/client-securitylake/src/commands/DeleteCustomLogSourceCommand.ts index 9f6ae380d36a8..a69d52ec805cf 100644 --- a/clients/client-securitylake/src/commands/DeleteCustomLogSourceCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteCustomLogSourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomLogSourceRequest, DeleteCustomLogSourceResponse } from "../models/models_0"; +import type { DeleteCustomLogSourceRequest, DeleteCustomLogSourceResponse } from "../models/models_0"; import { DeleteCustomLogSource } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/DeleteDataLakeCommand.ts b/clients/client-securitylake/src/commands/DeleteDataLakeCommand.ts index 4a38227ec74ea..ce91ddf81dd62 100644 --- a/clients/client-securitylake/src/commands/DeleteDataLakeCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteDataLakeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataLakeRequest, DeleteDataLakeResponse } from "../models/models_0"; +import type { DeleteDataLakeRequest, DeleteDataLakeResponse } from "../models/models_0"; import { DeleteDataLake } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/DeleteDataLakeExceptionSubscriptionCommand.ts b/clients/client-securitylake/src/commands/DeleteDataLakeExceptionSubscriptionCommand.ts index 25dd21055a800..fba79d86a52c3 100644 --- a/clients/client-securitylake/src/commands/DeleteDataLakeExceptionSubscriptionCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteDataLakeExceptionSubscriptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteDataLakeExceptionSubscriptionRequest, DeleteDataLakeExceptionSubscriptionResponse, } from "../models/models_0"; import { DeleteDataLakeExceptionSubscription } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/DeleteDataLakeOrganizationConfigurationCommand.ts b/clients/client-securitylake/src/commands/DeleteDataLakeOrganizationConfigurationCommand.ts index 0398527d9ba75..ffd0b3643f675 100644 --- a/clients/client-securitylake/src/commands/DeleteDataLakeOrganizationConfigurationCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteDataLakeOrganizationConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteDataLakeOrganizationConfigurationRequest, DeleteDataLakeOrganizationConfigurationResponse, } from "../models/models_0"; import { DeleteDataLakeOrganizationConfiguration } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/DeleteSubscriberCommand.ts b/clients/client-securitylake/src/commands/DeleteSubscriberCommand.ts index 59437f0e0b010..9049679a46422 100644 --- a/clients/client-securitylake/src/commands/DeleteSubscriberCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteSubscriberCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubscriberRequest, DeleteSubscriberResponse } from "../models/models_0"; +import type { DeleteSubscriberRequest, DeleteSubscriberResponse } from "../models/models_0"; import { DeleteSubscriber } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/DeleteSubscriberNotificationCommand.ts b/clients/client-securitylake/src/commands/DeleteSubscriberNotificationCommand.ts index 52d66214623ac..6e4565fea8720 100644 --- a/clients/client-securitylake/src/commands/DeleteSubscriberNotificationCommand.ts +++ b/clients/client-securitylake/src/commands/DeleteSubscriberNotificationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubscriberNotificationRequest, DeleteSubscriberNotificationResponse } from "../models/models_0"; +import type { DeleteSubscriberNotificationRequest, DeleteSubscriberNotificationResponse } from "../models/models_0"; import { DeleteSubscriberNotification } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/DeregisterDataLakeDelegatedAdministratorCommand.ts b/clients/client-securitylake/src/commands/DeregisterDataLakeDelegatedAdministratorCommand.ts index 681481701f4a2..9547437322db5 100644 --- a/clients/client-securitylake/src/commands/DeregisterDataLakeDelegatedAdministratorCommand.ts +++ b/clients/client-securitylake/src/commands/DeregisterDataLakeDelegatedAdministratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterDataLakeDelegatedAdministratorRequest, DeregisterDataLakeDelegatedAdministratorResponse, } from "../models/models_0"; import { DeregisterDataLakeDelegatedAdministrator } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/GetDataLakeExceptionSubscriptionCommand.ts b/clients/client-securitylake/src/commands/GetDataLakeExceptionSubscriptionCommand.ts index 480e2cfa031bc..486f6816c1e1c 100644 --- a/clients/client-securitylake/src/commands/GetDataLakeExceptionSubscriptionCommand.ts +++ b/clients/client-securitylake/src/commands/GetDataLakeExceptionSubscriptionCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataLakeExceptionSubscriptionRequest, GetDataLakeExceptionSubscriptionResponse } from "../models/models_0"; +import type { + GetDataLakeExceptionSubscriptionRequest, + GetDataLakeExceptionSubscriptionResponse, +} from "../models/models_0"; import { GetDataLakeExceptionSubscription } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/GetDataLakeOrganizationConfigurationCommand.ts b/clients/client-securitylake/src/commands/GetDataLakeOrganizationConfigurationCommand.ts index 92adfce392c32..7856e831a04dc 100644 --- a/clients/client-securitylake/src/commands/GetDataLakeOrganizationConfigurationCommand.ts +++ b/clients/client-securitylake/src/commands/GetDataLakeOrganizationConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetDataLakeOrganizationConfigurationRequest, GetDataLakeOrganizationConfigurationResponse, } from "../models/models_0"; import { GetDataLakeOrganizationConfiguration } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/GetDataLakeSourcesCommand.ts b/clients/client-securitylake/src/commands/GetDataLakeSourcesCommand.ts index 19aa091d0c8e6..4c5b1d5191d94 100644 --- a/clients/client-securitylake/src/commands/GetDataLakeSourcesCommand.ts +++ b/clients/client-securitylake/src/commands/GetDataLakeSourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataLakeSourcesRequest, GetDataLakeSourcesResponse } from "../models/models_0"; +import type { GetDataLakeSourcesRequest, GetDataLakeSourcesResponse } from "../models/models_0"; import { GetDataLakeSources } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/GetSubscriberCommand.ts b/clients/client-securitylake/src/commands/GetSubscriberCommand.ts index a7428f1f36f1f..e9636167de035 100644 --- a/clients/client-securitylake/src/commands/GetSubscriberCommand.ts +++ b/clients/client-securitylake/src/commands/GetSubscriberCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSubscriberRequest, GetSubscriberResponse } from "../models/models_0"; +import type { GetSubscriberRequest, GetSubscriberResponse } from "../models/models_0"; import { GetSubscriber } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/ListDataLakeExceptionsCommand.ts b/clients/client-securitylake/src/commands/ListDataLakeExceptionsCommand.ts index e5459d20301a2..3cdae4096c26e 100644 --- a/clients/client-securitylake/src/commands/ListDataLakeExceptionsCommand.ts +++ b/clients/client-securitylake/src/commands/ListDataLakeExceptionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataLakeExceptionsRequest, ListDataLakeExceptionsResponse } from "../models/models_0"; +import type { ListDataLakeExceptionsRequest, ListDataLakeExceptionsResponse } from "../models/models_0"; import { ListDataLakeExceptions } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/ListDataLakesCommand.ts b/clients/client-securitylake/src/commands/ListDataLakesCommand.ts index 9bec04d769653..2e9ede9f4c287 100644 --- a/clients/client-securitylake/src/commands/ListDataLakesCommand.ts +++ b/clients/client-securitylake/src/commands/ListDataLakesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataLakesRequest, ListDataLakesResponse } from "../models/models_0"; +import type { ListDataLakesRequest, ListDataLakesResponse } from "../models/models_0"; import { ListDataLakes } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/ListLogSourcesCommand.ts b/clients/client-securitylake/src/commands/ListLogSourcesCommand.ts index d57c14ea5d943..65cd929fcbf88 100644 --- a/clients/client-securitylake/src/commands/ListLogSourcesCommand.ts +++ b/clients/client-securitylake/src/commands/ListLogSourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLogSourcesRequest, ListLogSourcesResponse } from "../models/models_0"; +import type { ListLogSourcesRequest, ListLogSourcesResponse } from "../models/models_0"; import { ListLogSources } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/ListSubscribersCommand.ts b/clients/client-securitylake/src/commands/ListSubscribersCommand.ts index 25869c252b2a7..bfbd56ad00148 100644 --- a/clients/client-securitylake/src/commands/ListSubscribersCommand.ts +++ b/clients/client-securitylake/src/commands/ListSubscribersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscribersRequest, ListSubscribersResponse } from "../models/models_0"; +import type { ListSubscribersRequest, ListSubscribersResponse } from "../models/models_0"; import { ListSubscribers } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/ListTagsForResourceCommand.ts b/clients/client-securitylake/src/commands/ListTagsForResourceCommand.ts index 4eef65762cbd3..1062ec6e8b07a 100644 --- a/clients/client-securitylake/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-securitylake/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/RegisterDataLakeDelegatedAdministratorCommand.ts b/clients/client-securitylake/src/commands/RegisterDataLakeDelegatedAdministratorCommand.ts index 6bbb9518fd13f..fd83c3069a17e 100644 --- a/clients/client-securitylake/src/commands/RegisterDataLakeDelegatedAdministratorCommand.ts +++ b/clients/client-securitylake/src/commands/RegisterDataLakeDelegatedAdministratorCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RegisterDataLakeDelegatedAdministratorRequest, RegisterDataLakeDelegatedAdministratorResponse, } from "../models/models_0"; import { RegisterDataLakeDelegatedAdministrator } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/TagResourceCommand.ts b/clients/client-securitylake/src/commands/TagResourceCommand.ts index 71f539ec6fbe0..c112d63d89723 100644 --- a/clients/client-securitylake/src/commands/TagResourceCommand.ts +++ b/clients/client-securitylake/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/UntagResourceCommand.ts b/clients/client-securitylake/src/commands/UntagResourceCommand.ts index c186f3a74f778..6c24d77b7a6e4 100644 --- a/clients/client-securitylake/src/commands/UntagResourceCommand.ts +++ b/clients/client-securitylake/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/UpdateDataLakeCommand.ts b/clients/client-securitylake/src/commands/UpdateDataLakeCommand.ts index 49dee8dcc9664..55c1ec3ef18e7 100644 --- a/clients/client-securitylake/src/commands/UpdateDataLakeCommand.ts +++ b/clients/client-securitylake/src/commands/UpdateDataLakeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataLakeRequest, UpdateDataLakeResponse } from "../models/models_0"; +import type { UpdateDataLakeRequest, UpdateDataLakeResponse } from "../models/models_0"; import { UpdateDataLake } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/UpdateDataLakeExceptionSubscriptionCommand.ts b/clients/client-securitylake/src/commands/UpdateDataLakeExceptionSubscriptionCommand.ts index 5f492b05c87c4..c8dd428f447dc 100644 --- a/clients/client-securitylake/src/commands/UpdateDataLakeExceptionSubscriptionCommand.ts +++ b/clients/client-securitylake/src/commands/UpdateDataLakeExceptionSubscriptionCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateDataLakeExceptionSubscriptionRequest, UpdateDataLakeExceptionSubscriptionResponse, } from "../models/models_0"; import { UpdateDataLakeExceptionSubscription } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/UpdateSubscriberCommand.ts b/clients/client-securitylake/src/commands/UpdateSubscriberCommand.ts index 41029a471615f..839b2a62f3552 100644 --- a/clients/client-securitylake/src/commands/UpdateSubscriberCommand.ts +++ b/clients/client-securitylake/src/commands/UpdateSubscriberCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubscriberRequest, UpdateSubscriberResponse } from "../models/models_0"; +import type { UpdateSubscriberRequest, UpdateSubscriberResponse } from "../models/models_0"; import { UpdateSubscriber } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/commands/UpdateSubscriberNotificationCommand.ts b/clients/client-securitylake/src/commands/UpdateSubscriberNotificationCommand.ts index d03ce999739cf..9a607ddaa097b 100644 --- a/clients/client-securitylake/src/commands/UpdateSubscriberNotificationCommand.ts +++ b/clients/client-securitylake/src/commands/UpdateSubscriberNotificationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubscriberNotificationRequest, UpdateSubscriberNotificationResponse } from "../models/models_0"; +import type { UpdateSubscriberNotificationRequest, UpdateSubscriberNotificationResponse } from "../models/models_0"; import { UpdateSubscriberNotification } from "../schemas/schemas_0"; -import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; +import type { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient"; /** * @public diff --git a/clients/client-securitylake/src/endpoint/EndpointParameters.ts b/clients/client-securitylake/src/endpoint/EndpointParameters.ts index 328a24b2ad509..6c2bb11eae1c1 100644 --- a/clients/client-securitylake/src/endpoint/EndpointParameters.ts +++ b/clients/client-securitylake/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-securitylake/src/endpoint/endpointResolver.ts b/clients/client-securitylake/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-securitylake/src/endpoint/endpointResolver.ts +++ b/clients/client-securitylake/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-securitylake/src/extensionConfiguration.ts b/clients/client-securitylake/src/extensionConfiguration.ts index 1090560c1573e..0d84fe55ccdea 100644 --- a/clients/client-securitylake/src/extensionConfiguration.ts +++ b/clients/client-securitylake/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-securitylake/src/models/SecurityLakeServiceException.ts b/clients/client-securitylake/src/models/SecurityLakeServiceException.ts index 68da84f6734cd..b13e33c52b707 100644 --- a/clients/client-securitylake/src/models/SecurityLakeServiceException.ts +++ b/clients/client-securitylake/src/models/SecurityLakeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-securitylake/src/models/errors.ts b/clients/client-securitylake/src/models/errors.ts index 1d711caeaeb0e..1b8675f40ef4a 100644 --- a/clients/client-securitylake/src/models/errors.ts +++ b/clients/client-securitylake/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SecurityLakeServiceException as __BaseException } from "./SecurityLakeServiceException"; diff --git a/clients/client-securitylake/src/pagination/GetDataLakeSourcesPaginator.ts b/clients/client-securitylake/src/pagination/GetDataLakeSourcesPaginator.ts index 77153f5009dd3..69da92a96f791 100644 --- a/clients/client-securitylake/src/pagination/GetDataLakeSourcesPaginator.ts +++ b/clients/client-securitylake/src/pagination/GetDataLakeSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetDataLakeSourcesCommand, diff --git a/clients/client-securitylake/src/pagination/Interfaces.ts b/clients/client-securitylake/src/pagination/Interfaces.ts index 9dc1dc5b1f96b..647a994d096a4 100644 --- a/clients/client-securitylake/src/pagination/Interfaces.ts +++ b/clients/client-securitylake/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SecurityLakeClient } from "../SecurityLakeClient"; diff --git a/clients/client-securitylake/src/pagination/ListDataLakeExceptionsPaginator.ts b/clients/client-securitylake/src/pagination/ListDataLakeExceptionsPaginator.ts index bb2014974cc6e..a86b3de22ca0f 100644 --- a/clients/client-securitylake/src/pagination/ListDataLakeExceptionsPaginator.ts +++ b/clients/client-securitylake/src/pagination/ListDataLakeExceptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataLakeExceptionsCommand, diff --git a/clients/client-securitylake/src/pagination/ListLogSourcesPaginator.ts b/clients/client-securitylake/src/pagination/ListLogSourcesPaginator.ts index fdd36cffbe43e..a548484d244d7 100644 --- a/clients/client-securitylake/src/pagination/ListLogSourcesPaginator.ts +++ b/clients/client-securitylake/src/pagination/ListLogSourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLogSourcesCommand, diff --git a/clients/client-securitylake/src/pagination/ListSubscribersPaginator.ts b/clients/client-securitylake/src/pagination/ListSubscribersPaginator.ts index 473e48933586f..96c715de6924a 100644 --- a/clients/client-securitylake/src/pagination/ListSubscribersPaginator.ts +++ b/clients/client-securitylake/src/pagination/ListSubscribersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubscribersCommand, diff --git a/clients/client-securitylake/src/runtimeConfig.browser.ts b/clients/client-securitylake/src/runtimeConfig.browser.ts index 86f4fd0cb0a2c..b14ae0fd1a9a6 100644 --- a/clients/client-securitylake/src/runtimeConfig.browser.ts +++ b/clients/client-securitylake/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SecurityLakeClientConfig } from "./SecurityLakeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SecurityLakeClientConfig } from "./SecurityLakeClient"; /** * @internal diff --git a/clients/client-securitylake/src/runtimeConfig.native.ts b/clients/client-securitylake/src/runtimeConfig.native.ts index e25465df02eac..5fcbdee5442bc 100644 --- a/clients/client-securitylake/src/runtimeConfig.native.ts +++ b/clients/client-securitylake/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SecurityLakeClientConfig } from "./SecurityLakeClient"; +import type { SecurityLakeClientConfig } from "./SecurityLakeClient"; /** * @internal diff --git a/clients/client-securitylake/src/runtimeConfig.shared.ts b/clients/client-securitylake/src/runtimeConfig.shared.ts index eaa5ce45a993d..5346daec349b1 100644 --- a/clients/client-securitylake/src/runtimeConfig.shared.ts +++ b/clients/client-securitylake/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSecurityLakeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SecurityLakeClientConfig } from "./SecurityLakeClient"; +import type { SecurityLakeClientConfig } from "./SecurityLakeClient"; /** * @internal diff --git a/clients/client-securitylake/src/runtimeConfig.ts b/clients/client-securitylake/src/runtimeConfig.ts index 496d68ba811f5..becd1cbd162ed 100644 --- a/clients/client-securitylake/src/runtimeConfig.ts +++ b/clients/client-securitylake/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SecurityLakeClientConfig } from "./SecurityLakeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SecurityLakeClientConfig } from "./SecurityLakeClient"; /** * @internal diff --git a/clients/client-securitylake/src/runtimeExtensions.ts b/clients/client-securitylake/src/runtimeExtensions.ts index 7c5bee7cae7e5..93e4414b160e3 100644 --- a/clients/client-securitylake/src/runtimeExtensions.ts +++ b/clients/client-securitylake/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SecurityLakeExtensionConfiguration } from "./extensionConfiguration"; +import type { SecurityLakeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-securitylake/src/schemas/schemas_0.ts b/clients/client-securitylake/src/schemas/schemas_0.ts index 45a3fd8a5aa10..847414c8c7b6c 100644 --- a/clients/client-securitylake/src/schemas/schemas_0.ts +++ b/clients/client-securitylake/src/schemas/schemas_0.ts @@ -241,7 +241,7 @@ const n0 = "com.amazonaws.securitylake"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-serverlessapplicationrepository/package.json b/clients/client-serverlessapplicationrepository/package.json index 97afbb64739f8..5404711e8aaa1 100644 --- a/clients/client-serverlessapplicationrepository/package.json +++ b/clients/client-serverlessapplicationrepository/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-serverlessapplicationrepository/src/ServerlessApplicationRepository.ts b/clients/client-serverlessapplicationrepository/src/ServerlessApplicationRepository.ts index 48817b38bf341..13f0fad10dc94 100644 --- a/clients/client-serverlessapplicationrepository/src/ServerlessApplicationRepository.ts +++ b/clients/client-serverlessapplicationrepository/src/ServerlessApplicationRepository.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateApplicationCommand, @@ -72,10 +72,7 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput, } from "./commands/UpdateApplicationCommand"; -import { - ServerlessApplicationRepositoryClient, - ServerlessApplicationRepositoryClientConfig, -} from "./ServerlessApplicationRepositoryClient"; +import { ServerlessApplicationRepositoryClient } from "./ServerlessApplicationRepositoryClient"; const commands = { CreateApplicationCommand, diff --git a/clients/client-serverlessapplicationrepository/src/ServerlessApplicationRepositoryClient.ts b/clients/client-serverlessapplicationrepository/src/ServerlessApplicationRepositoryClient.ts index 0b15e31d981ac..46978c9151497 100644 --- a/clients/client-serverlessapplicationrepository/src/ServerlessApplicationRepositoryClient.ts +++ b/clients/client-serverlessapplicationrepository/src/ServerlessApplicationRepositoryClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultServerlessApplicationRepositoryHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand"; @@ -102,7 +111,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-serverlessapplicationrepository/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-serverlessapplicationrepository/src/auth/httpAuthExtensionConfiguration.ts index ce426b2e27f40..97c95c992b0d8 100644 --- a/clients/client-serverlessapplicationrepository/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-serverlessapplicationrepository/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ServerlessApplicationRepositoryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ServerlessApplicationRepositoryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-serverlessapplicationrepository/src/auth/httpAuthSchemeProvider.ts b/clients/client-serverlessapplicationrepository/src/auth/httpAuthSchemeProvider.ts index 53b6f5c832e60..af132fbf98692 100644 --- a/clients/client-serverlessapplicationrepository/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-serverlessapplicationrepository/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ServerlessApplicationRepositoryClientResolvedConfig, ServerlessApplicationRepositoryClientConfig, - ServerlessApplicationRepositoryClientResolvedConfig, } from "../ServerlessApplicationRepositoryClient"; /** diff --git a/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationCommand.ts index aae00264cd209..00ea9035125e1 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationVersionCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationVersionCommand.ts index fe63b9b9f819b..9e48b0a162896 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationVersionCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/CreateApplicationVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationVersionRequest, CreateApplicationVersionResponse } from "../models/models_0"; +import type { CreateApplicationVersionRequest, CreateApplicationVersionResponse } from "../models/models_0"; import { CreateApplicationVersion } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationChangeSetCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationChangeSetCommand.ts index 904d8a90f4bd3..2b1bf97dadee9 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationChangeSetCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationChangeSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCloudFormationChangeSetRequest, CreateCloudFormationChangeSetResponse } from "../models/models_0"; +import type { CreateCloudFormationChangeSetRequest, CreateCloudFormationChangeSetResponse } from "../models/models_0"; import { CreateCloudFormationChangeSet } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationTemplateCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationTemplateCommand.ts index 632abf51b436b..38d40abcc014a 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationTemplateCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/CreateCloudFormationTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCloudFormationTemplateRequest, CreateCloudFormationTemplateResponse } from "../models/models_0"; +import type { CreateCloudFormationTemplateRequest, CreateCloudFormationTemplateResponse } from "../models/models_0"; import { CreateCloudFormationTemplate } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/DeleteApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/DeleteApplicationCommand.ts index 561e5e9a57370..a01f4cbd3f816 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/DeleteApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest } from "../models/models_0"; +import type { DeleteApplicationRequest } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/GetApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/GetApplicationCommand.ts index 0d559d8ee05bc..419ab209fd935 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/GetApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/GetApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; +import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/GetApplicationPolicyCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/GetApplicationPolicyCommand.ts index 684b64c6be4e5..16930f5818a0c 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/GetApplicationPolicyCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/GetApplicationPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationPolicyRequest, GetApplicationPolicyResponse } from "../models/models_0"; +import type { GetApplicationPolicyRequest, GetApplicationPolicyResponse } from "../models/models_0"; import { GetApplicationPolicy } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/GetCloudFormationTemplateCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/GetCloudFormationTemplateCommand.ts index 52db30a4d5c46..8d1f9d51a7438 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/GetCloudFormationTemplateCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/GetCloudFormationTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCloudFormationTemplateRequest, GetCloudFormationTemplateResponse } from "../models/models_0"; +import type { GetCloudFormationTemplateRequest, GetCloudFormationTemplateResponse } from "../models/models_0"; import { GetCloudFormationTemplate } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationDependenciesCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationDependenciesCommand.ts index cf1d04ef173b1..fcbf38a23772b 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationDependenciesCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationDependenciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationDependenciesRequest, ListApplicationDependenciesResponse } from "../models/models_0"; +import type { ListApplicationDependenciesRequest, ListApplicationDependenciesResponse } from "../models/models_0"; import { ListApplicationDependencies } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationVersionsCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationVersionsCommand.ts index 85ae95cb61f7f..9dc71ee8c926a 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationVersionsCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0"; +import type { ListApplicationVersionsRequest, ListApplicationVersionsResponse } from "../models/models_0"; import { ListApplicationVersions } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationsCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationsCommand.ts index 2a9cedce9cc6b..b81eb05ae4828 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/ListApplicationsCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/ListApplicationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/PutApplicationPolicyCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/PutApplicationPolicyCommand.ts index 341a128ee9f92..baecccefc5d1b 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/PutApplicationPolicyCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/PutApplicationPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutApplicationPolicyRequest, PutApplicationPolicyResponse } from "../models/models_0"; +import type { PutApplicationPolicyRequest, PutApplicationPolicyResponse } from "../models/models_0"; import { PutApplicationPolicy } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/UnshareApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/UnshareApplicationCommand.ts index 31da494446ec8..2c3846a5edec6 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/UnshareApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/UnshareApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnshareApplicationRequest } from "../models/models_0"; +import type { UnshareApplicationRequest } from "../models/models_0"; import { UnshareApplication } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/commands/UpdateApplicationCommand.ts b/clients/client-serverlessapplicationrepository/src/commands/UpdateApplicationCommand.ts index 3175d7f4c23d8..33c0ca9243210 100644 --- a/clients/client-serverlessapplicationrepository/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-serverlessapplicationrepository/src/commands/UpdateApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; -import { +import type { ServerlessApplicationRepositoryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-serverlessapplicationrepository/src/endpoint/EndpointParameters.ts b/clients/client-serverlessapplicationrepository/src/endpoint/EndpointParameters.ts index c0ebb0eafe703..c1bd4fa97511a 100644 --- a/clients/client-serverlessapplicationrepository/src/endpoint/EndpointParameters.ts +++ b/clients/client-serverlessapplicationrepository/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-serverlessapplicationrepository/src/endpoint/endpointResolver.ts b/clients/client-serverlessapplicationrepository/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-serverlessapplicationrepository/src/endpoint/endpointResolver.ts +++ b/clients/client-serverlessapplicationrepository/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-serverlessapplicationrepository/src/extensionConfiguration.ts b/clients/client-serverlessapplicationrepository/src/extensionConfiguration.ts index 615e15a4d1a63..9e489fc0aeedc 100644 --- a/clients/client-serverlessapplicationrepository/src/extensionConfiguration.ts +++ b/clients/client-serverlessapplicationrepository/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-serverlessapplicationrepository/src/models/ServerlessApplicationRepositoryServiceException.ts b/clients/client-serverlessapplicationrepository/src/models/ServerlessApplicationRepositoryServiceException.ts index 495cb31d15800..f11c4a38be36f 100644 --- a/clients/client-serverlessapplicationrepository/src/models/ServerlessApplicationRepositoryServiceException.ts +++ b/clients/client-serverlessapplicationrepository/src/models/ServerlessApplicationRepositoryServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-serverlessapplicationrepository/src/models/errors.ts b/clients/client-serverlessapplicationrepository/src/models/errors.ts index e4820b39c8da5..13e1371a42f85 100644 --- a/clients/client-serverlessapplicationrepository/src/models/errors.ts +++ b/clients/client-serverlessapplicationrepository/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ServerlessApplicationRepositoryServiceException as __BaseException } from "./ServerlessApplicationRepositoryServiceException"; diff --git a/clients/client-serverlessapplicationrepository/src/pagination/Interfaces.ts b/clients/client-serverlessapplicationrepository/src/pagination/Interfaces.ts index a6f1f1c573382..33366a4ff6441 100644 --- a/clients/client-serverlessapplicationrepository/src/pagination/Interfaces.ts +++ b/clients/client-serverlessapplicationrepository/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ServerlessApplicationRepositoryClient } from "../ServerlessApplicationRepositoryClient"; diff --git a/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationDependenciesPaginator.ts b/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationDependenciesPaginator.ts index b14e8bb039acc..e46f64f6a0b77 100644 --- a/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationDependenciesPaginator.ts +++ b/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationDependenciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationDependenciesCommand, diff --git a/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationVersionsPaginator.ts b/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationVersionsPaginator.ts index 56343942f8d79..7bb37d6549de9 100644 --- a/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationVersionsPaginator.ts +++ b/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationVersionsCommand, diff --git a/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationsPaginator.ts b/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationsPaginator.ts index 7e72dc452e44b..99830c37c3a18 100644 --- a/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-serverlessapplicationrepository/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-serverlessapplicationrepository/src/runtimeConfig.browser.ts b/clients/client-serverlessapplicationrepository/src/runtimeConfig.browser.ts index c7321cb056889..eac6cc66f3dc0 100644 --- a/clients/client-serverlessapplicationrepository/src/runtimeConfig.browser.ts +++ b/clients/client-serverlessapplicationrepository/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient"; /** * @internal diff --git a/clients/client-serverlessapplicationrepository/src/runtimeConfig.native.ts b/clients/client-serverlessapplicationrepository/src/runtimeConfig.native.ts index b86bc95fb0ae4..03ca00f1cc370 100644 --- a/clients/client-serverlessapplicationrepository/src/runtimeConfig.native.ts +++ b/clients/client-serverlessapplicationrepository/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient"; +import type { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient"; /** * @internal diff --git a/clients/client-serverlessapplicationrepository/src/runtimeConfig.shared.ts b/clients/client-serverlessapplicationrepository/src/runtimeConfig.shared.ts index f53967661ab2f..b875393855f09 100644 --- a/clients/client-serverlessapplicationrepository/src/runtimeConfig.shared.ts +++ b/clients/client-serverlessapplicationrepository/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultServerlessApplicationRepositoryHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient"; +import type { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient"; /** * @internal diff --git a/clients/client-serverlessapplicationrepository/src/runtimeConfig.ts b/clients/client-serverlessapplicationrepository/src/runtimeConfig.ts index 3b2aafa3db840..6a5ce6b06dcc2 100644 --- a/clients/client-serverlessapplicationrepository/src/runtimeConfig.ts +++ b/clients/client-serverlessapplicationrepository/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { ServerlessApplicationRepositoryClientConfig } from "./ServerlessApplicationRepositoryClient"; /** * @internal diff --git a/clients/client-serverlessapplicationrepository/src/runtimeExtensions.ts b/clients/client-serverlessapplicationrepository/src/runtimeExtensions.ts index 79ee1b0b7d1d8..ac0cfcad2bd04 100644 --- a/clients/client-serverlessapplicationrepository/src/runtimeExtensions.ts +++ b/clients/client-serverlessapplicationrepository/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ServerlessApplicationRepositoryExtensionConfiguration } from "./extensionConfiguration"; +import type { ServerlessApplicationRepositoryExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-serverlessapplicationrepository/src/schemas/schemas_0.ts b/clients/client-serverlessapplicationrepository/src/schemas/schemas_0.ts index a96fa3d33ea65..1c2700b803e17 100644 --- a/clients/client-serverlessapplicationrepository/src/schemas/schemas_0.ts +++ b/clients/client-serverlessapplicationrepository/src/schemas/schemas_0.ts @@ -204,7 +204,7 @@ const n0 = "com.amazonaws.serverlessapplicationrepository"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { BadRequestException as __BadRequestException, diff --git a/clients/client-service-catalog-appregistry/package.json b/clients/client-service-catalog-appregistry/package.json index 95e211c43d980..89bb25e154f12 100644 --- a/clients/client-service-catalog-appregistry/package.json +++ b/clients/client-service-catalog-appregistry/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-service-catalog-appregistry/src/ServiceCatalogAppRegistry.ts b/clients/client-service-catalog-appregistry/src/ServiceCatalogAppRegistry.ts index 3be8e7e178235..18a18313f7d70 100644 --- a/clients/client-service-catalog-appregistry/src/ServiceCatalogAppRegistry.ts +++ b/clients/client-service-catalog-appregistry/src/ServiceCatalogAppRegistry.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateAttributeGroupCommand, @@ -118,10 +118,7 @@ import { UpdateAttributeGroupCommandInput, UpdateAttributeGroupCommandOutput, } from "./commands/UpdateAttributeGroupCommand"; -import { - ServiceCatalogAppRegistryClient, - ServiceCatalogAppRegistryClientConfig, -} from "./ServiceCatalogAppRegistryClient"; +import { ServiceCatalogAppRegistryClient } from "./ServiceCatalogAppRegistryClient"; const commands = { AssociateAttributeGroupCommand, diff --git a/clients/client-service-catalog-appregistry/src/ServiceCatalogAppRegistryClient.ts b/clients/client-service-catalog-appregistry/src/ServiceCatalogAppRegistryClient.ts index 9d4a074f2a0f7..ef60c6079b910 100644 --- a/clients/client-service-catalog-appregistry/src/ServiceCatalogAppRegistryClient.ts +++ b/clients/client-service-catalog-appregistry/src/ServiceCatalogAppRegistryClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultServiceCatalogAppRegistryHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -124,7 +133,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-service-catalog-appregistry/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-service-catalog-appregistry/src/auth/httpAuthExtensionConfiguration.ts index 197d8c18a7c76..944591adc50d4 100644 --- a/clients/client-service-catalog-appregistry/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-service-catalog-appregistry/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ServiceCatalogAppRegistryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ServiceCatalogAppRegistryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-service-catalog-appregistry/src/auth/httpAuthSchemeProvider.ts b/clients/client-service-catalog-appregistry/src/auth/httpAuthSchemeProvider.ts index 90195b72ea24b..d9d1c7cc54e57 100644 --- a/clients/client-service-catalog-appregistry/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-service-catalog-appregistry/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type ServiceCatalogAppRegistryClientResolvedConfig, ServiceCatalogAppRegistryClientConfig, - ServiceCatalogAppRegistryClientResolvedConfig, } from "../ServiceCatalogAppRegistryClient"; /** diff --git a/clients/client-service-catalog-appregistry/src/commands/AssociateAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/AssociateAttributeGroupCommand.ts index 1b99b9c5030e7..c108e6c166b97 100644 --- a/clients/client-service-catalog-appregistry/src/commands/AssociateAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/AssociateAttributeGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateAttributeGroupRequest, AssociateAttributeGroupResponse } from "../models/models_0"; +import type { AssociateAttributeGroupRequest, AssociateAttributeGroupResponse } from "../models/models_0"; import { AssociateAttributeGroup } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/AssociateResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/AssociateResourceCommand.ts index 2e4a6b086bf86..ab831e8ec7a70 100644 --- a/clients/client-service-catalog-appregistry/src/commands/AssociateResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/AssociateResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateResourceRequest, AssociateResourceResponse } from "../models/models_0"; +import type { AssociateResourceRequest, AssociateResourceResponse } from "../models/models_0"; import { AssociateResource } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/CreateApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/CreateApplicationCommand.ts index a9c9c2d549a2f..4eccc1a39eb32 100644 --- a/clients/client-service-catalog-appregistry/src/commands/CreateApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/CreateApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/CreateAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/CreateAttributeGroupCommand.ts index 81d10deba2a72..c8f277ae4eb46 100644 --- a/clients/client-service-catalog-appregistry/src/commands/CreateAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/CreateAttributeGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAttributeGroupRequest, CreateAttributeGroupResponse } from "../models/models_0"; +import type { CreateAttributeGroupRequest, CreateAttributeGroupResponse } from "../models/models_0"; import { CreateAttributeGroup } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/DeleteApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/DeleteApplicationCommand.ts index 3810ad51ce040..b72fcde4ae932 100644 --- a/clients/client-service-catalog-appregistry/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/DeleteApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/DeleteAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/DeleteAttributeGroupCommand.ts index b2b3f3bc63a32..dce9c34c2205b 100644 --- a/clients/client-service-catalog-appregistry/src/commands/DeleteAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/DeleteAttributeGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAttributeGroupRequest, DeleteAttributeGroupResponse } from "../models/models_0"; +import type { DeleteAttributeGroupRequest, DeleteAttributeGroupResponse } from "../models/models_0"; import { DeleteAttributeGroup } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/DisassociateAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/DisassociateAttributeGroupCommand.ts index a2ebb48fa00c2..832c82d1362eb 100644 --- a/clients/client-service-catalog-appregistry/src/commands/DisassociateAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/DisassociateAttributeGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateAttributeGroupRequest, DisassociateAttributeGroupResponse } from "../models/models_0"; +import type { DisassociateAttributeGroupRequest, DisassociateAttributeGroupResponse } from "../models/models_0"; import { DisassociateAttributeGroup } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/DisassociateResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/DisassociateResourceCommand.ts index 197088e47fbcd..9455922366308 100644 --- a/clients/client-service-catalog-appregistry/src/commands/DisassociateResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/DisassociateResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateResourceRequest, DisassociateResourceResponse } from "../models/models_0"; +import type { DisassociateResourceRequest, DisassociateResourceResponse } from "../models/models_0"; import { DisassociateResource } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/GetApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/GetApplicationCommand.ts index 85445c88252da..c3c9b776d4b29 100644 --- a/clients/client-service-catalog-appregistry/src/commands/GetApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/GetApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; +import type { GetApplicationRequest, GetApplicationResponse } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/GetAssociatedResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/GetAssociatedResourceCommand.ts index 209de00fa3c07..e1cd6585a9531 100644 --- a/clients/client-service-catalog-appregistry/src/commands/GetAssociatedResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/GetAssociatedResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssociatedResourceRequest, GetAssociatedResourceResponse } from "../models/models_0"; +import type { GetAssociatedResourceRequest, GetAssociatedResourceResponse } from "../models/models_0"; import { GetAssociatedResource } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/GetAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/GetAttributeGroupCommand.ts index 8521066a49860..fd2347371f965 100644 --- a/clients/client-service-catalog-appregistry/src/commands/GetAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/GetAttributeGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAttributeGroupRequest, GetAttributeGroupResponse } from "../models/models_0"; +import type { GetAttributeGroupRequest, GetAttributeGroupResponse } from "../models/models_0"; import { GetAttributeGroup } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/GetConfigurationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/GetConfigurationCommand.ts index f2b0977181711..1180db3f0dac0 100644 --- a/clients/client-service-catalog-appregistry/src/commands/GetConfigurationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/GetConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfigurationResponse } from "../models/models_0"; +import type { GetConfigurationResponse } from "../models/models_0"; import { GetConfiguration } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/ListApplicationsCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListApplicationsCommand.ts index 570ac7aa40752..a1ffe6ea325ad 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListApplicationsCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListApplicationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/ListAssociatedAttributeGroupsCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListAssociatedAttributeGroupsCommand.ts index a53e63ecc3f7a..891ef8302a6d0 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListAssociatedAttributeGroupsCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListAssociatedAttributeGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociatedAttributeGroupsRequest, ListAssociatedAttributeGroupsResponse } from "../models/models_0"; +import type { ListAssociatedAttributeGroupsRequest, ListAssociatedAttributeGroupsResponse } from "../models/models_0"; import { ListAssociatedAttributeGroups } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/ListAssociatedResourcesCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListAssociatedResourcesCommand.ts index 965daaf1a23b2..61327efab42cd 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListAssociatedResourcesCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListAssociatedResourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociatedResourcesRequest, ListAssociatedResourcesResponse } from "../models/models_0"; +import type { ListAssociatedResourcesRequest, ListAssociatedResourcesResponse } from "../models/models_0"; import { ListAssociatedResources } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsCommand.ts index d777831efb704..412ac736f96fc 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAttributeGroupsRequest, ListAttributeGroupsResponse } from "../models/models_0"; +import type { ListAttributeGroupsRequest, ListAttributeGroupsResponse } from "../models/models_0"; import { ListAttributeGroups } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsForApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsForApplicationCommand.ts index 4bd86b9d27fec..1c610de70b619 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsForApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListAttributeGroupsForApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAttributeGroupsForApplicationRequest, ListAttributeGroupsForApplicationResponse, } from "../models/models_0"; import { ListAttributeGroupsForApplication } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/ListTagsForResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/ListTagsForResourceCommand.ts index 3bfdb53898683..a93c86d67f35d 100644 --- a/clients/client-service-catalog-appregistry/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/PutConfigurationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/PutConfigurationCommand.ts index d4861a5634ebf..6629ce148ef69 100644 --- a/clients/client-service-catalog-appregistry/src/commands/PutConfigurationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/PutConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutConfigurationRequest } from "../models/models_0"; +import type { PutConfigurationRequest } from "../models/models_0"; import { PutConfiguration } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/SyncResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/SyncResourceCommand.ts index 86268e0c9e8c3..5566bd38b6ecb 100644 --- a/clients/client-service-catalog-appregistry/src/commands/SyncResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/SyncResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SyncResourceRequest, SyncResourceResponse } from "../models/models_0"; +import type { SyncResourceRequest, SyncResourceResponse } from "../models/models_0"; import { SyncResource } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/TagResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/TagResourceCommand.ts index edaf5c1c74bf9..c405d4cfb7b0d 100644 --- a/clients/client-service-catalog-appregistry/src/commands/TagResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/UntagResourceCommand.ts b/clients/client-service-catalog-appregistry/src/commands/UntagResourceCommand.ts index 9cfe5aa4b0e92..42116e6ddaa01 100644 --- a/clients/client-service-catalog-appregistry/src/commands/UntagResourceCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/UpdateApplicationCommand.ts b/clients/client-service-catalog-appregistry/src/commands/UpdateApplicationCommand.ts index 527445ef7ea5f..fc64fffc4faf0 100644 --- a/clients/client-service-catalog-appregistry/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/UpdateApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/commands/UpdateAttributeGroupCommand.ts b/clients/client-service-catalog-appregistry/src/commands/UpdateAttributeGroupCommand.ts index 89199fdb8bdb0..69c70b4fa2bf6 100644 --- a/clients/client-service-catalog-appregistry/src/commands/UpdateAttributeGroupCommand.ts +++ b/clients/client-service-catalog-appregistry/src/commands/UpdateAttributeGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAttributeGroupRequest, UpdateAttributeGroupResponse } from "../models/models_0"; +import type { UpdateAttributeGroupRequest, UpdateAttributeGroupResponse } from "../models/models_0"; import { UpdateAttributeGroup } from "../schemas/schemas_0"; -import { +import type { ServiceCatalogAppRegistryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes, diff --git a/clients/client-service-catalog-appregistry/src/endpoint/EndpointParameters.ts b/clients/client-service-catalog-appregistry/src/endpoint/EndpointParameters.ts index 9af3f6fdd5d1b..12801ac6d0be8 100644 --- a/clients/client-service-catalog-appregistry/src/endpoint/EndpointParameters.ts +++ b/clients/client-service-catalog-appregistry/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-service-catalog-appregistry/src/endpoint/endpointResolver.ts b/clients/client-service-catalog-appregistry/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-service-catalog-appregistry/src/endpoint/endpointResolver.ts +++ b/clients/client-service-catalog-appregistry/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-service-catalog-appregistry/src/extensionConfiguration.ts b/clients/client-service-catalog-appregistry/src/extensionConfiguration.ts index ce0bfb05a51f3..2e4c374e74937 100644 --- a/clients/client-service-catalog-appregistry/src/extensionConfiguration.ts +++ b/clients/client-service-catalog-appregistry/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-service-catalog-appregistry/src/models/ServiceCatalogAppRegistryServiceException.ts b/clients/client-service-catalog-appregistry/src/models/ServiceCatalogAppRegistryServiceException.ts index 57b02f6e76e1e..5fae302a4a252 100644 --- a/clients/client-service-catalog-appregistry/src/models/ServiceCatalogAppRegistryServiceException.ts +++ b/clients/client-service-catalog-appregistry/src/models/ServiceCatalogAppRegistryServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-service-catalog-appregistry/src/models/errors.ts b/clients/client-service-catalog-appregistry/src/models/errors.ts index 3029c1467ad8f..5a81413532c87 100644 --- a/clients/client-service-catalog-appregistry/src/models/errors.ts +++ b/clients/client-service-catalog-appregistry/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ServiceCatalogAppRegistryServiceException as __BaseException } from "./ServiceCatalogAppRegistryServiceException"; diff --git a/clients/client-service-catalog-appregistry/src/pagination/Interfaces.ts b/clients/client-service-catalog-appregistry/src/pagination/Interfaces.ts index dfad17ffe7dcc..c20e8d020bb52 100644 --- a/clients/client-service-catalog-appregistry/src/pagination/Interfaces.ts +++ b/clients/client-service-catalog-appregistry/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ServiceCatalogAppRegistryClient } from "../ServiceCatalogAppRegistryClient"; diff --git a/clients/client-service-catalog-appregistry/src/pagination/ListApplicationsPaginator.ts b/clients/client-service-catalog-appregistry/src/pagination/ListApplicationsPaginator.ts index 5308f66a82bfa..7c0b289322ea7 100644 --- a/clients/client-service-catalog-appregistry/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-service-catalog-appregistry/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-service-catalog-appregistry/src/pagination/ListAssociatedAttributeGroupsPaginator.ts b/clients/client-service-catalog-appregistry/src/pagination/ListAssociatedAttributeGroupsPaginator.ts index acb17436c5e85..b05f8d4eb64ab 100644 --- a/clients/client-service-catalog-appregistry/src/pagination/ListAssociatedAttributeGroupsPaginator.ts +++ b/clients/client-service-catalog-appregistry/src/pagination/ListAssociatedAttributeGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssociatedAttributeGroupsCommand, diff --git a/clients/client-service-catalog-appregistry/src/pagination/ListAssociatedResourcesPaginator.ts b/clients/client-service-catalog-appregistry/src/pagination/ListAssociatedResourcesPaginator.ts index f38dbdbe2768d..b2bd5c412247c 100644 --- a/clients/client-service-catalog-appregistry/src/pagination/ListAssociatedResourcesPaginator.ts +++ b/clients/client-service-catalog-appregistry/src/pagination/ListAssociatedResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssociatedResourcesCommand, diff --git a/clients/client-service-catalog-appregistry/src/pagination/ListAttributeGroupsForApplicationPaginator.ts b/clients/client-service-catalog-appregistry/src/pagination/ListAttributeGroupsForApplicationPaginator.ts index 9a08f274f285c..a9e8f6c9ecc7d 100644 --- a/clients/client-service-catalog-appregistry/src/pagination/ListAttributeGroupsForApplicationPaginator.ts +++ b/clients/client-service-catalog-appregistry/src/pagination/ListAttributeGroupsForApplicationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttributeGroupsForApplicationCommand, diff --git a/clients/client-service-catalog-appregistry/src/pagination/ListAttributeGroupsPaginator.ts b/clients/client-service-catalog-appregistry/src/pagination/ListAttributeGroupsPaginator.ts index 8a7c62f1eb2b5..163fe00d1a370 100644 --- a/clients/client-service-catalog-appregistry/src/pagination/ListAttributeGroupsPaginator.ts +++ b/clients/client-service-catalog-appregistry/src/pagination/ListAttributeGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttributeGroupsCommand, diff --git a/clients/client-service-catalog-appregistry/src/runtimeConfig.browser.ts b/clients/client-service-catalog-appregistry/src/runtimeConfig.browser.ts index 73ffc6e23d338..8ffbe795454fd 100644 --- a/clients/client-service-catalog-appregistry/src/runtimeConfig.browser.ts +++ b/clients/client-service-catalog-appregistry/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient"; /** * @internal diff --git a/clients/client-service-catalog-appregistry/src/runtimeConfig.native.ts b/clients/client-service-catalog-appregistry/src/runtimeConfig.native.ts index 73f47fe780fc4..acfab0845854c 100644 --- a/clients/client-service-catalog-appregistry/src/runtimeConfig.native.ts +++ b/clients/client-service-catalog-appregistry/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient"; +import type { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient"; /** * @internal diff --git a/clients/client-service-catalog-appregistry/src/runtimeConfig.shared.ts b/clients/client-service-catalog-appregistry/src/runtimeConfig.shared.ts index aefa6e57b553d..33a3590eb3432 100644 --- a/clients/client-service-catalog-appregistry/src/runtimeConfig.shared.ts +++ b/clients/client-service-catalog-appregistry/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultServiceCatalogAppRegistryHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient"; +import type { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient"; /** * @internal diff --git a/clients/client-service-catalog-appregistry/src/runtimeConfig.ts b/clients/client-service-catalog-appregistry/src/runtimeConfig.ts index 25a1b3d9a38de..61021615ec2e8 100644 --- a/clients/client-service-catalog-appregistry/src/runtimeConfig.ts +++ b/clients/client-service-catalog-appregistry/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { ServiceCatalogAppRegistryClientConfig } from "./ServiceCatalogAppRegistryClient"; /** * @internal diff --git a/clients/client-service-catalog-appregistry/src/runtimeExtensions.ts b/clients/client-service-catalog-appregistry/src/runtimeExtensions.ts index d74c7f38d117e..43379b8906beb 100644 --- a/clients/client-service-catalog-appregistry/src/runtimeExtensions.ts +++ b/clients/client-service-catalog-appregistry/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ServiceCatalogAppRegistryExtensionConfiguration } from "./extensionConfiguration"; +import type { ServiceCatalogAppRegistryExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-service-catalog-appregistry/src/schemas/schemas_0.ts b/clients/client-service-catalog-appregistry/src/schemas/schemas_0.ts index bc86172c957f7..330d8cf72a6a5 100644 --- a/clients/client-service-catalog-appregistry/src/schemas/schemas_0.ts +++ b/clients/client-service-catalog-appregistry/src/schemas/schemas_0.ts @@ -150,7 +150,7 @@ const n0 = "com.amazonaws.servicecatalogappregistry"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-service-catalog/package.json b/clients/client-service-catalog/package.json index bf0f7485857e7..124ac58238ae2 100644 --- a/clients/client-service-catalog/package.json +++ b/clients/client-service-catalog/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-service-catalog/src/ServiceCatalog.ts b/clients/client-service-catalog/src/ServiceCatalog.ts index 11f484e4eada0..0c77ad76c5607 100644 --- a/clients/client-service-catalog/src/ServiceCatalog.ts +++ b/clients/client-service-catalog/src/ServiceCatalog.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptPortfolioShareCommand, @@ -448,7 +448,7 @@ import { UpdateTagOptionCommandInput, UpdateTagOptionCommandOutput, } from "./commands/UpdateTagOptionCommand"; -import { ServiceCatalogClient, ServiceCatalogClientConfig } from "./ServiceCatalogClient"; +import { ServiceCatalogClient } from "./ServiceCatalogClient"; const commands = { AcceptPortfolioShareCommand, diff --git a/clients/client-service-catalog/src/ServiceCatalogClient.ts b/clients/client-service-catalog/src/ServiceCatalogClient.ts index b484b70361173..028e36bd34dd5 100644 --- a/clients/client-service-catalog/src/ServiceCatalogClient.ts +++ b/clients/client-service-catalog/src/ServiceCatalogClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultServiceCatalogHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -349,7 +358,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-service-catalog/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-service-catalog/src/auth/httpAuthExtensionConfiguration.ts index a54d728136ef0..9ca6db42a0e5b 100644 --- a/clients/client-service-catalog/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-service-catalog/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ServiceCatalogHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ServiceCatalogHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-service-catalog/src/auth/httpAuthSchemeProvider.ts b/clients/client-service-catalog/src/auth/httpAuthSchemeProvider.ts index 94622680d4b97..892770bddb018 100644 --- a/clients/client-service-catalog/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-service-catalog/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ServiceCatalogClientConfig, ServiceCatalogClientResolvedConfig } from "../ServiceCatalogClient"; +import { type ServiceCatalogClientResolvedConfig, ServiceCatalogClientConfig } from "../ServiceCatalogClient"; /** * @internal diff --git a/clients/client-service-catalog/src/commands/AcceptPortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/AcceptPortfolioShareCommand.ts index 0f267a56fa0b2..a3e62026603ae 100644 --- a/clients/client-service-catalog/src/commands/AcceptPortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/AcceptPortfolioShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptPortfolioShareInput, AcceptPortfolioShareOutput } from "../models/models_0"; +import type { AcceptPortfolioShareInput, AcceptPortfolioShareOutput } from "../models/models_0"; import { AcceptPortfolioShare } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/AssociateBudgetWithResourceCommand.ts b/clients/client-service-catalog/src/commands/AssociateBudgetWithResourceCommand.ts index d36a8da2c0f2f..b6a80f9cc172b 100644 --- a/clients/client-service-catalog/src/commands/AssociateBudgetWithResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociateBudgetWithResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateBudgetWithResourceInput, AssociateBudgetWithResourceOutput } from "../models/models_0"; +import type { AssociateBudgetWithResourceInput, AssociateBudgetWithResourceOutput } from "../models/models_0"; import { AssociateBudgetWithResource } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/AssociatePrincipalWithPortfolioCommand.ts b/clients/client-service-catalog/src/commands/AssociatePrincipalWithPortfolioCommand.ts index 7bc39754a81c4..76e5278d8ef83 100644 --- a/clients/client-service-catalog/src/commands/AssociatePrincipalWithPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociatePrincipalWithPortfolioCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociatePrincipalWithPortfolioInput, AssociatePrincipalWithPortfolioOutput } from "../models/models_0"; +import type { AssociatePrincipalWithPortfolioInput, AssociatePrincipalWithPortfolioOutput } from "../models/models_0"; import { AssociatePrincipalWithPortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/AssociateProductWithPortfolioCommand.ts b/clients/client-service-catalog/src/commands/AssociateProductWithPortfolioCommand.ts index c3679ae357b74..a9392158c40a3 100644 --- a/clients/client-service-catalog/src/commands/AssociateProductWithPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociateProductWithPortfolioCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateProductWithPortfolioInput, AssociateProductWithPortfolioOutput } from "../models/models_0"; +import type { AssociateProductWithPortfolioInput, AssociateProductWithPortfolioOutput } from "../models/models_0"; import { AssociateProductWithPortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/AssociateServiceActionWithProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/AssociateServiceActionWithProvisioningArtifactCommand.ts index 6769635e76cbe..318b3ef3d4b8b 100644 --- a/clients/client-service-catalog/src/commands/AssociateServiceActionWithProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociateServiceActionWithProvisioningArtifactCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateServiceActionWithProvisioningArtifactInput, AssociateServiceActionWithProvisioningArtifactOutput, } from "../models/models_0"; import { AssociateServiceActionWithProvisioningArtifact } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/AssociateTagOptionWithResourceCommand.ts b/clients/client-service-catalog/src/commands/AssociateTagOptionWithResourceCommand.ts index 1ea1edc12b9b7..e43f565e23a45 100644 --- a/clients/client-service-catalog/src/commands/AssociateTagOptionWithResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/AssociateTagOptionWithResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateTagOptionWithResourceInput, AssociateTagOptionWithResourceOutput } from "../models/models_0"; +import type { AssociateTagOptionWithResourceInput, AssociateTagOptionWithResourceOutput } from "../models/models_0"; import { AssociateTagOptionWithResource } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/BatchAssociateServiceActionWithProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/BatchAssociateServiceActionWithProvisioningArtifactCommand.ts index 6afe231309ac7..ee72ba663050e 100644 --- a/clients/client-service-catalog/src/commands/BatchAssociateServiceActionWithProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/BatchAssociateServiceActionWithProvisioningArtifactCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchAssociateServiceActionWithProvisioningArtifactInput, BatchAssociateServiceActionWithProvisioningArtifactOutput, } from "../models/models_0"; import { BatchAssociateServiceActionWithProvisioningArtifact } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/BatchDisassociateServiceActionFromProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/BatchDisassociateServiceActionFromProvisioningArtifactCommand.ts index f2a9d8487c777..058e291ad33f3 100644 --- a/clients/client-service-catalog/src/commands/BatchDisassociateServiceActionFromProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/BatchDisassociateServiceActionFromProvisioningArtifactCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchDisassociateServiceActionFromProvisioningArtifactInput, BatchDisassociateServiceActionFromProvisioningArtifactOutput, } from "../models/models_0"; import { BatchDisassociateServiceActionFromProvisioningArtifact } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/CopyProductCommand.ts b/clients/client-service-catalog/src/commands/CopyProductCommand.ts index 088c881b4e9bb..3c740bf51652e 100644 --- a/clients/client-service-catalog/src/commands/CopyProductCommand.ts +++ b/clients/client-service-catalog/src/commands/CopyProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyProductInput, CopyProductOutput } from "../models/models_0"; +import type { CopyProductInput, CopyProductOutput } from "../models/models_0"; import { CopyProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/CreateConstraintCommand.ts b/clients/client-service-catalog/src/commands/CreateConstraintCommand.ts index 9eddf21ed7aac..cb914bf941cb4 100644 --- a/clients/client-service-catalog/src/commands/CreateConstraintCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateConstraintCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConstraintInput, CreateConstraintOutput } from "../models/models_0"; +import type { CreateConstraintInput, CreateConstraintOutput } from "../models/models_0"; import { CreateConstraint } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/CreatePortfolioCommand.ts b/clients/client-service-catalog/src/commands/CreatePortfolioCommand.ts index 31d2d67ec5635..bd5e1f49275b9 100644 --- a/clients/client-service-catalog/src/commands/CreatePortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/CreatePortfolioCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePortfolioInput, CreatePortfolioOutput } from "../models/models_0"; +import type { CreatePortfolioInput, CreatePortfolioOutput } from "../models/models_0"; import { CreatePortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/CreatePortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/CreatePortfolioShareCommand.ts index bc4203db01c3a..b4c82175ef20c 100644 --- a/clients/client-service-catalog/src/commands/CreatePortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/CreatePortfolioShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePortfolioShareInput, CreatePortfolioShareOutput } from "../models/models_0"; +import type { CreatePortfolioShareInput, CreatePortfolioShareOutput } from "../models/models_0"; import { CreatePortfolioShare } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/CreateProductCommand.ts b/clients/client-service-catalog/src/commands/CreateProductCommand.ts index c4d5e549a03e8..10b5f00bf258a 100644 --- a/clients/client-service-catalog/src/commands/CreateProductCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProductInput, CreateProductOutput } from "../models/models_0"; +import type { CreateProductInput, CreateProductOutput } from "../models/models_0"; import { CreateProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/CreateProvisionedProductPlanCommand.ts b/clients/client-service-catalog/src/commands/CreateProvisionedProductPlanCommand.ts index c0dd424a4f275..03f9a70453562 100644 --- a/clients/client-service-catalog/src/commands/CreateProvisionedProductPlanCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateProvisionedProductPlanCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProvisionedProductPlanInput, CreateProvisionedProductPlanOutput } from "../models/models_0"; +import type { CreateProvisionedProductPlanInput, CreateProvisionedProductPlanOutput } from "../models/models_0"; import { CreateProvisionedProductPlan } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/CreateProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/CreateProvisioningArtifactCommand.ts index b7215bfaba2b1..268d19ac4cebd 100644 --- a/clients/client-service-catalog/src/commands/CreateProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateProvisioningArtifactCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProvisioningArtifactInput, CreateProvisioningArtifactOutput } from "../models/models_0"; +import type { CreateProvisioningArtifactInput, CreateProvisioningArtifactOutput } from "../models/models_0"; import { CreateProvisioningArtifact } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/CreateServiceActionCommand.ts b/clients/client-service-catalog/src/commands/CreateServiceActionCommand.ts index 8176382bde9ba..2477102845d64 100644 --- a/clients/client-service-catalog/src/commands/CreateServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateServiceActionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceActionInput, CreateServiceActionOutput } from "../models/models_0"; +import type { CreateServiceActionInput, CreateServiceActionOutput } from "../models/models_0"; import { CreateServiceAction } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/CreateTagOptionCommand.ts b/clients/client-service-catalog/src/commands/CreateTagOptionCommand.ts index a8bdeec4d3f20..9da7a1cc7d005 100644 --- a/clients/client-service-catalog/src/commands/CreateTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/CreateTagOptionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTagOptionInput, CreateTagOptionOutput } from "../models/models_0"; +import type { CreateTagOptionInput, CreateTagOptionOutput } from "../models/models_0"; import { CreateTagOption } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DeleteConstraintCommand.ts b/clients/client-service-catalog/src/commands/DeleteConstraintCommand.ts index 2899902d5c4a2..b0144fa9af16b 100644 --- a/clients/client-service-catalog/src/commands/DeleteConstraintCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteConstraintCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConstraintInput, DeleteConstraintOutput } from "../models/models_0"; +import type { DeleteConstraintInput, DeleteConstraintOutput } from "../models/models_0"; import { DeleteConstraint } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DeletePortfolioCommand.ts b/clients/client-service-catalog/src/commands/DeletePortfolioCommand.ts index 523de2ccb1e27..e4b11afcfa1de 100644 --- a/clients/client-service-catalog/src/commands/DeletePortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/DeletePortfolioCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePortfolioInput, DeletePortfolioOutput } from "../models/models_0"; +import type { DeletePortfolioInput, DeletePortfolioOutput } from "../models/models_0"; import { DeletePortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DeletePortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/DeletePortfolioShareCommand.ts index 5c9f1b66a3225..ef7d69e018658 100644 --- a/clients/client-service-catalog/src/commands/DeletePortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/DeletePortfolioShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePortfolioShareInput, DeletePortfolioShareOutput } from "../models/models_0"; +import type { DeletePortfolioShareInput, DeletePortfolioShareOutput } from "../models/models_0"; import { DeletePortfolioShare } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DeleteProductCommand.ts b/clients/client-service-catalog/src/commands/DeleteProductCommand.ts index 542c775bc6914..ae4ae15371d25 100644 --- a/clients/client-service-catalog/src/commands/DeleteProductCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProductInput, DeleteProductOutput } from "../models/models_0"; +import type { DeleteProductInput, DeleteProductOutput } from "../models/models_0"; import { DeleteProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DeleteProvisionedProductPlanCommand.ts b/clients/client-service-catalog/src/commands/DeleteProvisionedProductPlanCommand.ts index 456f2ca66179d..cf53bc30a6296 100644 --- a/clients/client-service-catalog/src/commands/DeleteProvisionedProductPlanCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteProvisionedProductPlanCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProvisionedProductPlanInput, DeleteProvisionedProductPlanOutput } from "../models/models_0"; +import type { DeleteProvisionedProductPlanInput, DeleteProvisionedProductPlanOutput } from "../models/models_0"; import { DeleteProvisionedProductPlan } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DeleteProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/DeleteProvisioningArtifactCommand.ts index 029f026aa0728..dc68a465193e4 100644 --- a/clients/client-service-catalog/src/commands/DeleteProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteProvisioningArtifactCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProvisioningArtifactInput, DeleteProvisioningArtifactOutput } from "../models/models_0"; +import type { DeleteProvisioningArtifactInput, DeleteProvisioningArtifactOutput } from "../models/models_0"; import { DeleteProvisioningArtifact } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DeleteServiceActionCommand.ts b/clients/client-service-catalog/src/commands/DeleteServiceActionCommand.ts index 763c2d3e2e6cd..67698411ca8de 100644 --- a/clients/client-service-catalog/src/commands/DeleteServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteServiceActionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceActionInput, DeleteServiceActionOutput } from "../models/models_0"; +import type { DeleteServiceActionInput, DeleteServiceActionOutput } from "../models/models_0"; import { DeleteServiceAction } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DeleteTagOptionCommand.ts b/clients/client-service-catalog/src/commands/DeleteTagOptionCommand.ts index 39ba0de000968..a44fc6757f176 100644 --- a/clients/client-service-catalog/src/commands/DeleteTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/DeleteTagOptionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagOptionInput, DeleteTagOptionOutput } from "../models/models_0"; +import type { DeleteTagOptionInput, DeleteTagOptionOutput } from "../models/models_0"; import { DeleteTagOption } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeConstraintCommand.ts b/clients/client-service-catalog/src/commands/DescribeConstraintCommand.ts index 61237942f94a7..f393881de6a59 100644 --- a/clients/client-service-catalog/src/commands/DescribeConstraintCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeConstraintCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConstraintInput, DescribeConstraintOutput } from "../models/models_0"; +import type { DescribeConstraintInput, DescribeConstraintOutput } from "../models/models_0"; import { DescribeConstraint } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeCopyProductStatusCommand.ts b/clients/client-service-catalog/src/commands/DescribeCopyProductStatusCommand.ts index b79a8e68bde83..c9653bdf0490a 100644 --- a/clients/client-service-catalog/src/commands/DescribeCopyProductStatusCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeCopyProductStatusCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCopyProductStatusInput, DescribeCopyProductStatusOutput } from "../models/models_0"; +import type { DescribeCopyProductStatusInput, DescribeCopyProductStatusOutput } from "../models/models_0"; import { DescribeCopyProductStatus } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribePortfolioCommand.ts b/clients/client-service-catalog/src/commands/DescribePortfolioCommand.ts index d8d1bb9e83ca3..232ad2eaa6a7b 100644 --- a/clients/client-service-catalog/src/commands/DescribePortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribePortfolioCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePortfolioInput, DescribePortfolioOutput } from "../models/models_0"; +import type { DescribePortfolioInput, DescribePortfolioOutput } from "../models/models_0"; import { DescribePortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribePortfolioShareStatusCommand.ts b/clients/client-service-catalog/src/commands/DescribePortfolioShareStatusCommand.ts index 231f2bb8b449d..4dd6a90dfe009 100644 --- a/clients/client-service-catalog/src/commands/DescribePortfolioShareStatusCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribePortfolioShareStatusCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePortfolioShareStatusInput, DescribePortfolioShareStatusOutput } from "../models/models_0"; +import type { DescribePortfolioShareStatusInput, DescribePortfolioShareStatusOutput } from "../models/models_0"; import { DescribePortfolioShareStatus } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribePortfolioSharesCommand.ts b/clients/client-service-catalog/src/commands/DescribePortfolioSharesCommand.ts index 54f25a8ef18ff..71cfd3dafee90 100644 --- a/clients/client-service-catalog/src/commands/DescribePortfolioSharesCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribePortfolioSharesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePortfolioSharesInput, DescribePortfolioSharesOutput } from "../models/models_0"; +import type { DescribePortfolioSharesInput, DescribePortfolioSharesOutput } from "../models/models_0"; import { DescribePortfolioShares } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeProductAsAdminCommand.ts b/clients/client-service-catalog/src/commands/DescribeProductAsAdminCommand.ts index f3e3970db350a..ae8d8a32538d5 100644 --- a/clients/client-service-catalog/src/commands/DescribeProductAsAdminCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProductAsAdminCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProductAsAdminInput, DescribeProductAsAdminOutput } from "../models/models_0"; +import type { DescribeProductAsAdminInput, DescribeProductAsAdminOutput } from "../models/models_0"; import { DescribeProductAsAdmin } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeProductCommand.ts b/clients/client-service-catalog/src/commands/DescribeProductCommand.ts index acefe304d2de1..6904c71d872ef 100644 --- a/clients/client-service-catalog/src/commands/DescribeProductCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProductInput, DescribeProductOutput } from "../models/models_0"; +import type { DescribeProductInput, DescribeProductOutput } from "../models/models_0"; import { DescribeProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeProductViewCommand.ts b/clients/client-service-catalog/src/commands/DescribeProductViewCommand.ts index a04280118e6af..cc3dc7deb6199 100644 --- a/clients/client-service-catalog/src/commands/DescribeProductViewCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProductViewCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProductViewInput, DescribeProductViewOutput } from "../models/models_0"; +import type { DescribeProductViewInput, DescribeProductViewOutput } from "../models/models_0"; import { DescribeProductView } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/DescribeProvisionedProductCommand.ts index 14b484d65ee93..e507a8c8df8f5 100644 --- a/clients/client-service-catalog/src/commands/DescribeProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProvisionedProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProvisionedProductInput, DescribeProvisionedProductOutput } from "../models/models_0"; +import type { DescribeProvisionedProductInput, DescribeProvisionedProductOutput } from "../models/models_0"; import { DescribeProvisionedProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeProvisionedProductPlanCommand.ts b/clients/client-service-catalog/src/commands/DescribeProvisionedProductPlanCommand.ts index 6c98deca15095..7d4a15310070d 100644 --- a/clients/client-service-catalog/src/commands/DescribeProvisionedProductPlanCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProvisionedProductPlanCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProvisionedProductPlanInput, DescribeProvisionedProductPlanOutput } from "../models/models_0"; +import type { DescribeProvisionedProductPlanInput, DescribeProvisionedProductPlanOutput } from "../models/models_0"; import { DescribeProvisionedProductPlan } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/DescribeProvisioningArtifactCommand.ts index 51120edf7f605..ae720ef0e3b5f 100644 --- a/clients/client-service-catalog/src/commands/DescribeProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProvisioningArtifactCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProvisioningArtifactInput, DescribeProvisioningArtifactOutput } from "../models/models_0"; +import type { DescribeProvisioningArtifactInput, DescribeProvisioningArtifactOutput } from "../models/models_0"; import { DescribeProvisioningArtifact } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeProvisioningParametersCommand.ts b/clients/client-service-catalog/src/commands/DescribeProvisioningParametersCommand.ts index c2f1deccf5fed..d914e602694b7 100644 --- a/clients/client-service-catalog/src/commands/DescribeProvisioningParametersCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeProvisioningParametersCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProvisioningParametersInput, DescribeProvisioningParametersOutput } from "../models/models_0"; +import type { DescribeProvisioningParametersInput, DescribeProvisioningParametersOutput } from "../models/models_0"; import { DescribeProvisioningParameters } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeRecordCommand.ts b/clients/client-service-catalog/src/commands/DescribeRecordCommand.ts index 602ecd61d95f3..b665ce15fb9c2 100644 --- a/clients/client-service-catalog/src/commands/DescribeRecordCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeRecordCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRecordInput, DescribeRecordOutput } from "../models/models_0"; +import type { DescribeRecordInput, DescribeRecordOutput } from "../models/models_0"; import { DescribeRecord } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeServiceActionCommand.ts b/clients/client-service-catalog/src/commands/DescribeServiceActionCommand.ts index de91f2d00e665..20d0cd86b4355 100644 --- a/clients/client-service-catalog/src/commands/DescribeServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeServiceActionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServiceActionInput, DescribeServiceActionOutput } from "../models/models_0"; +import type { DescribeServiceActionInput, DescribeServiceActionOutput } from "../models/models_0"; import { DescribeServiceAction } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeServiceActionExecutionParametersCommand.ts b/clients/client-service-catalog/src/commands/DescribeServiceActionExecutionParametersCommand.ts index bd93186755946..fc73069a953e9 100644 --- a/clients/client-service-catalog/src/commands/DescribeServiceActionExecutionParametersCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeServiceActionExecutionParametersCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeServiceActionExecutionParametersInput, DescribeServiceActionExecutionParametersOutput, } from "../models/models_0"; import { DescribeServiceActionExecutionParameters } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DescribeTagOptionCommand.ts b/clients/client-service-catalog/src/commands/DescribeTagOptionCommand.ts index 26e4a80e6b1ca..3a3c530ba521d 100644 --- a/clients/client-service-catalog/src/commands/DescribeTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/DescribeTagOptionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagOptionInput, DescribeTagOptionOutput } from "../models/models_0"; +import type { DescribeTagOptionInput, DescribeTagOptionOutput } from "../models/models_0"; import { DescribeTagOption } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DisableAWSOrganizationsAccessCommand.ts b/clients/client-service-catalog/src/commands/DisableAWSOrganizationsAccessCommand.ts index 6c90704c499ff..b25ec18f2f5fc 100644 --- a/clients/client-service-catalog/src/commands/DisableAWSOrganizationsAccessCommand.ts +++ b/clients/client-service-catalog/src/commands/DisableAWSOrganizationsAccessCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableAWSOrganizationsAccessInput, DisableAWSOrganizationsAccessOutput } from "../models/models_0"; +import type { DisableAWSOrganizationsAccessInput, DisableAWSOrganizationsAccessOutput } from "../models/models_0"; import { DisableAWSOrganizationsAccess } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DisassociateBudgetFromResourceCommand.ts b/clients/client-service-catalog/src/commands/DisassociateBudgetFromResourceCommand.ts index 0ffdeec7bd4be..076d2127e831f 100644 --- a/clients/client-service-catalog/src/commands/DisassociateBudgetFromResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociateBudgetFromResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateBudgetFromResourceInput, DisassociateBudgetFromResourceOutput } from "../models/models_0"; +import type { DisassociateBudgetFromResourceInput, DisassociateBudgetFromResourceOutput } from "../models/models_0"; import { DisassociateBudgetFromResource } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DisassociatePrincipalFromPortfolioCommand.ts b/clients/client-service-catalog/src/commands/DisassociatePrincipalFromPortfolioCommand.ts index 4eac096edcc16..8681c1be88fe1 100644 --- a/clients/client-service-catalog/src/commands/DisassociatePrincipalFromPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociatePrincipalFromPortfolioCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociatePrincipalFromPortfolioInput, DisassociatePrincipalFromPortfolioOutput } from "../models/models_0"; +import type { + DisassociatePrincipalFromPortfolioInput, + DisassociatePrincipalFromPortfolioOutput, +} from "../models/models_0"; import { DisassociatePrincipalFromPortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DisassociateProductFromPortfolioCommand.ts b/clients/client-service-catalog/src/commands/DisassociateProductFromPortfolioCommand.ts index 7a9d9dcb48d33..87bb393e4a627 100644 --- a/clients/client-service-catalog/src/commands/DisassociateProductFromPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociateProductFromPortfolioCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateProductFromPortfolioInput, DisassociateProductFromPortfolioOutput } from "../models/models_0"; +import type { DisassociateProductFromPortfolioInput, DisassociateProductFromPortfolioOutput } from "../models/models_0"; import { DisassociateProductFromPortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DisassociateServiceActionFromProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/DisassociateServiceActionFromProvisioningArtifactCommand.ts index bec3141219143..a29654cd72fb6 100644 --- a/clients/client-service-catalog/src/commands/DisassociateServiceActionFromProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociateServiceActionFromProvisioningArtifactCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateServiceActionFromProvisioningArtifactInput, DisassociateServiceActionFromProvisioningArtifactOutput, } from "../models/models_0"; import { DisassociateServiceActionFromProvisioningArtifact } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/DisassociateTagOptionFromResourceCommand.ts b/clients/client-service-catalog/src/commands/DisassociateTagOptionFromResourceCommand.ts index e3d48ace77e4c..f1546282d21f1 100644 --- a/clients/client-service-catalog/src/commands/DisassociateTagOptionFromResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/DisassociateTagOptionFromResourceCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateTagOptionFromResourceInput, DisassociateTagOptionFromResourceOutput } from "../models/models_0"; +import type { + DisassociateTagOptionFromResourceInput, + DisassociateTagOptionFromResourceOutput, +} from "../models/models_0"; import { DisassociateTagOptionFromResource } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/EnableAWSOrganizationsAccessCommand.ts b/clients/client-service-catalog/src/commands/EnableAWSOrganizationsAccessCommand.ts index 4f0e9af3ee6a8..b5d48162dc7a5 100644 --- a/clients/client-service-catalog/src/commands/EnableAWSOrganizationsAccessCommand.ts +++ b/clients/client-service-catalog/src/commands/EnableAWSOrganizationsAccessCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableAWSOrganizationsAccessInput, EnableAWSOrganizationsAccessOutput } from "../models/models_0"; +import type { EnableAWSOrganizationsAccessInput, EnableAWSOrganizationsAccessOutput } from "../models/models_0"; import { EnableAWSOrganizationsAccess } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ExecuteProvisionedProductPlanCommand.ts b/clients/client-service-catalog/src/commands/ExecuteProvisionedProductPlanCommand.ts index 1e517e62917ed..0d7195c22c062 100644 --- a/clients/client-service-catalog/src/commands/ExecuteProvisionedProductPlanCommand.ts +++ b/clients/client-service-catalog/src/commands/ExecuteProvisionedProductPlanCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteProvisionedProductPlanInput, ExecuteProvisionedProductPlanOutput } from "../models/models_0"; +import type { ExecuteProvisionedProductPlanInput, ExecuteProvisionedProductPlanOutput } from "../models/models_0"; import { ExecuteProvisionedProductPlan } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ExecuteProvisionedProductServiceActionCommand.ts b/clients/client-service-catalog/src/commands/ExecuteProvisionedProductServiceActionCommand.ts index 8f63cbe116e91..7ec6aeda68899 100644 --- a/clients/client-service-catalog/src/commands/ExecuteProvisionedProductServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/ExecuteProvisionedProductServiceActionCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ExecuteProvisionedProductServiceActionInput, ExecuteProvisionedProductServiceActionOutput, } from "../models/models_0"; import { ExecuteProvisionedProductServiceAction } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/GetAWSOrganizationsAccessStatusCommand.ts b/clients/client-service-catalog/src/commands/GetAWSOrganizationsAccessStatusCommand.ts index da7e0ee76a0a0..f569a26464dad 100644 --- a/clients/client-service-catalog/src/commands/GetAWSOrganizationsAccessStatusCommand.ts +++ b/clients/client-service-catalog/src/commands/GetAWSOrganizationsAccessStatusCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAWSOrganizationsAccessStatusInput, GetAWSOrganizationsAccessStatusOutput } from "../models/models_0"; +import type { GetAWSOrganizationsAccessStatusInput, GetAWSOrganizationsAccessStatusOutput } from "../models/models_0"; import { GetAWSOrganizationsAccessStatus } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/GetProvisionedProductOutputsCommand.ts b/clients/client-service-catalog/src/commands/GetProvisionedProductOutputsCommand.ts index 59d4cbc402c42..b4d0f5519529b 100644 --- a/clients/client-service-catalog/src/commands/GetProvisionedProductOutputsCommand.ts +++ b/clients/client-service-catalog/src/commands/GetProvisionedProductOutputsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProvisionedProductOutputsInput, GetProvisionedProductOutputsOutput } from "../models/models_0"; +import type { GetProvisionedProductOutputsInput, GetProvisionedProductOutputsOutput } from "../models/models_0"; import { GetProvisionedProductOutputs } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ImportAsProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/ImportAsProvisionedProductCommand.ts index 3787310dbd59b..4b52223693f10 100644 --- a/clients/client-service-catalog/src/commands/ImportAsProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/ImportAsProvisionedProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportAsProvisionedProductInput, ImportAsProvisionedProductOutput } from "../models/models_0"; +import type { ImportAsProvisionedProductInput, ImportAsProvisionedProductOutput } from "../models/models_0"; import { ImportAsProvisionedProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListAcceptedPortfolioSharesCommand.ts b/clients/client-service-catalog/src/commands/ListAcceptedPortfolioSharesCommand.ts index 9585b84cece53..31d96c10fbe3a 100644 --- a/clients/client-service-catalog/src/commands/ListAcceptedPortfolioSharesCommand.ts +++ b/clients/client-service-catalog/src/commands/ListAcceptedPortfolioSharesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAcceptedPortfolioSharesInput, ListAcceptedPortfolioSharesOutput } from "../models/models_0"; +import type { ListAcceptedPortfolioSharesInput, ListAcceptedPortfolioSharesOutput } from "../models/models_0"; import { ListAcceptedPortfolioShares } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListBudgetsForResourceCommand.ts b/clients/client-service-catalog/src/commands/ListBudgetsForResourceCommand.ts index 308ed1865e7c9..57dc4cd61005b 100644 --- a/clients/client-service-catalog/src/commands/ListBudgetsForResourceCommand.ts +++ b/clients/client-service-catalog/src/commands/ListBudgetsForResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBudgetsForResourceInput, ListBudgetsForResourceOutput } from "../models/models_0"; +import type { ListBudgetsForResourceInput, ListBudgetsForResourceOutput } from "../models/models_0"; import { ListBudgetsForResource } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListConstraintsForPortfolioCommand.ts b/clients/client-service-catalog/src/commands/ListConstraintsForPortfolioCommand.ts index b8d97836832d7..b8aaaf359a023 100644 --- a/clients/client-service-catalog/src/commands/ListConstraintsForPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/ListConstraintsForPortfolioCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConstraintsForPortfolioInput, ListConstraintsForPortfolioOutput } from "../models/models_0"; +import type { ListConstraintsForPortfolioInput, ListConstraintsForPortfolioOutput } from "../models/models_0"; import { ListConstraintsForPortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListLaunchPathsCommand.ts b/clients/client-service-catalog/src/commands/ListLaunchPathsCommand.ts index 0e7ae56290d94..dfeed4f359133 100644 --- a/clients/client-service-catalog/src/commands/ListLaunchPathsCommand.ts +++ b/clients/client-service-catalog/src/commands/ListLaunchPathsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLaunchPathsInput, ListLaunchPathsOutput } from "../models/models_0"; +import type { ListLaunchPathsInput, ListLaunchPathsOutput } from "../models/models_0"; import { ListLaunchPaths } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListOrganizationPortfolioAccessCommand.ts b/clients/client-service-catalog/src/commands/ListOrganizationPortfolioAccessCommand.ts index 2d6ebe009e2c9..f44c74922699c 100644 --- a/clients/client-service-catalog/src/commands/ListOrganizationPortfolioAccessCommand.ts +++ b/clients/client-service-catalog/src/commands/ListOrganizationPortfolioAccessCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOrganizationPortfolioAccessInput, ListOrganizationPortfolioAccessOutput } from "../models/models_0"; +import type { ListOrganizationPortfolioAccessInput, ListOrganizationPortfolioAccessOutput } from "../models/models_0"; import { ListOrganizationPortfolioAccess } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListPortfolioAccessCommand.ts b/clients/client-service-catalog/src/commands/ListPortfolioAccessCommand.ts index 510d90d6045dd..18518393ad5a1 100644 --- a/clients/client-service-catalog/src/commands/ListPortfolioAccessCommand.ts +++ b/clients/client-service-catalog/src/commands/ListPortfolioAccessCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPortfolioAccessInput, ListPortfolioAccessOutput } from "../models/models_0"; +import type { ListPortfolioAccessInput, ListPortfolioAccessOutput } from "../models/models_0"; import { ListPortfolioAccess } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListPortfoliosCommand.ts b/clients/client-service-catalog/src/commands/ListPortfoliosCommand.ts index c40c988581d8f..195d2d47678f8 100644 --- a/clients/client-service-catalog/src/commands/ListPortfoliosCommand.ts +++ b/clients/client-service-catalog/src/commands/ListPortfoliosCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPortfoliosInput, ListPortfoliosOutput } from "../models/models_0"; +import type { ListPortfoliosInput, ListPortfoliosOutput } from "../models/models_0"; import { ListPortfolios } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListPortfoliosForProductCommand.ts b/clients/client-service-catalog/src/commands/ListPortfoliosForProductCommand.ts index 0523b84fbdcd2..d90b4d160f0b1 100644 --- a/clients/client-service-catalog/src/commands/ListPortfoliosForProductCommand.ts +++ b/clients/client-service-catalog/src/commands/ListPortfoliosForProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPortfoliosForProductInput, ListPortfoliosForProductOutput } from "../models/models_0"; +import type { ListPortfoliosForProductInput, ListPortfoliosForProductOutput } from "../models/models_0"; import { ListPortfoliosForProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListPrincipalsForPortfolioCommand.ts b/clients/client-service-catalog/src/commands/ListPrincipalsForPortfolioCommand.ts index 79d9c262e6262..cc9327d613612 100644 --- a/clients/client-service-catalog/src/commands/ListPrincipalsForPortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/ListPrincipalsForPortfolioCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPrincipalsForPortfolioInput, ListPrincipalsForPortfolioOutput } from "../models/models_0"; +import type { ListPrincipalsForPortfolioInput, ListPrincipalsForPortfolioOutput } from "../models/models_0"; import { ListPrincipalsForPortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListProvisionedProductPlansCommand.ts b/clients/client-service-catalog/src/commands/ListProvisionedProductPlansCommand.ts index ec36c1f324119..945917859ea09 100644 --- a/clients/client-service-catalog/src/commands/ListProvisionedProductPlansCommand.ts +++ b/clients/client-service-catalog/src/commands/ListProvisionedProductPlansCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProvisionedProductPlansInput, ListProvisionedProductPlansOutput } from "../models/models_0"; +import type { ListProvisionedProductPlansInput, ListProvisionedProductPlansOutput } from "../models/models_0"; import { ListProvisionedProductPlans } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListProvisioningArtifactsCommand.ts b/clients/client-service-catalog/src/commands/ListProvisioningArtifactsCommand.ts index c7785821fd517..d19136935d2ac 100644 --- a/clients/client-service-catalog/src/commands/ListProvisioningArtifactsCommand.ts +++ b/clients/client-service-catalog/src/commands/ListProvisioningArtifactsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProvisioningArtifactsInput, ListProvisioningArtifactsOutput } from "../models/models_0"; +import type { ListProvisioningArtifactsInput, ListProvisioningArtifactsOutput } from "../models/models_0"; import { ListProvisioningArtifacts } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListProvisioningArtifactsForServiceActionCommand.ts b/clients/client-service-catalog/src/commands/ListProvisioningArtifactsForServiceActionCommand.ts index cc595e7c97e41..d6fb1ebeaf192 100644 --- a/clients/client-service-catalog/src/commands/ListProvisioningArtifactsForServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/ListProvisioningArtifactsForServiceActionCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListProvisioningArtifactsForServiceActionInput, ListProvisioningArtifactsForServiceActionOutput, } from "../models/models_0"; import { ListProvisioningArtifactsForServiceAction } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListRecordHistoryCommand.ts b/clients/client-service-catalog/src/commands/ListRecordHistoryCommand.ts index f6c12ae584afb..4b9320016b4b0 100644 --- a/clients/client-service-catalog/src/commands/ListRecordHistoryCommand.ts +++ b/clients/client-service-catalog/src/commands/ListRecordHistoryCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecordHistoryInput, ListRecordHistoryOutput } from "../models/models_0"; +import type { ListRecordHistoryInput, ListRecordHistoryOutput } from "../models/models_0"; import { ListRecordHistory } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListResourcesForTagOptionCommand.ts b/clients/client-service-catalog/src/commands/ListResourcesForTagOptionCommand.ts index 1f5ff00371e31..8f01c2e3f572a 100644 --- a/clients/client-service-catalog/src/commands/ListResourcesForTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/ListResourcesForTagOptionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcesForTagOptionInput, ListResourcesForTagOptionOutput } from "../models/models_0"; +import type { ListResourcesForTagOptionInput, ListResourcesForTagOptionOutput } from "../models/models_0"; import { ListResourcesForTagOption } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListServiceActionsCommand.ts b/clients/client-service-catalog/src/commands/ListServiceActionsCommand.ts index d139e30ab693b..8320fe430273d 100644 --- a/clients/client-service-catalog/src/commands/ListServiceActionsCommand.ts +++ b/clients/client-service-catalog/src/commands/ListServiceActionsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceActionsInput, ListServiceActionsOutput } from "../models/models_0"; +import type { ListServiceActionsInput, ListServiceActionsOutput } from "../models/models_0"; import { ListServiceActions } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListServiceActionsForProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/ListServiceActionsForProvisioningArtifactCommand.ts index ab251f9eb4628..73589a8bc29c7 100644 --- a/clients/client-service-catalog/src/commands/ListServiceActionsForProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/ListServiceActionsForProvisioningArtifactCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServiceActionsForProvisioningArtifactInput, ListServiceActionsForProvisioningArtifactOutput, } from "../models/models_0"; import { ListServiceActionsForProvisioningArtifact } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListStackInstancesForProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/ListStackInstancesForProvisionedProductCommand.ts index fae3d87048455..83119071dc014 100644 --- a/clients/client-service-catalog/src/commands/ListStackInstancesForProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/ListStackInstancesForProvisionedProductCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListStackInstancesForProvisionedProductInput, ListStackInstancesForProvisionedProductOutput, } from "../models/models_0"; import { ListStackInstancesForProvisionedProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ListTagOptionsCommand.ts b/clients/client-service-catalog/src/commands/ListTagOptionsCommand.ts index 49efb0f58202d..a2a47c92d844e 100644 --- a/clients/client-service-catalog/src/commands/ListTagOptionsCommand.ts +++ b/clients/client-service-catalog/src/commands/ListTagOptionsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagOptionsInput, ListTagOptionsOutput } from "../models/models_0"; +import type { ListTagOptionsInput, ListTagOptionsOutput } from "../models/models_0"; import { ListTagOptions } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/NotifyProvisionProductEngineWorkflowResultCommand.ts b/clients/client-service-catalog/src/commands/NotifyProvisionProductEngineWorkflowResultCommand.ts index 44f16541cebbf..ce6e9e489e924 100644 --- a/clients/client-service-catalog/src/commands/NotifyProvisionProductEngineWorkflowResultCommand.ts +++ b/clients/client-service-catalog/src/commands/NotifyProvisionProductEngineWorkflowResultCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { NotifyProvisionProductEngineWorkflowResultInput, NotifyProvisionProductEngineWorkflowResultOutput, } from "../models/models_0"; import { NotifyProvisionProductEngineWorkflowResult } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.ts b/clients/client-service-catalog/src/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.ts index b55b977e62b3f..5d719d6be6b7d 100644 --- a/clients/client-service-catalog/src/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.ts +++ b/clients/client-service-catalog/src/commands/NotifyTerminateProvisionedProductEngineWorkflowResultCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { NotifyTerminateProvisionedProductEngineWorkflowResultInput, NotifyTerminateProvisionedProductEngineWorkflowResultOutput, } from "../models/models_0"; import { NotifyTerminateProvisionedProductEngineWorkflowResult } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.ts b/clients/client-service-catalog/src/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.ts index 197fc50e128b0..ad9e5a66890a5 100644 --- a/clients/client-service-catalog/src/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.ts +++ b/clients/client-service-catalog/src/commands/NotifyUpdateProvisionedProductEngineWorkflowResultCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { NotifyUpdateProvisionedProductEngineWorkflowResultInput, NotifyUpdateProvisionedProductEngineWorkflowResultOutput, } from "../models/models_0"; import { NotifyUpdateProvisionedProductEngineWorkflowResult } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ProvisionProductCommand.ts b/clients/client-service-catalog/src/commands/ProvisionProductCommand.ts index bd495b11787cc..2c258afac3f4a 100644 --- a/clients/client-service-catalog/src/commands/ProvisionProductCommand.ts +++ b/clients/client-service-catalog/src/commands/ProvisionProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProvisionProductInput, ProvisionProductOutput } from "../models/models_0"; +import type { ProvisionProductInput, ProvisionProductOutput } from "../models/models_0"; import { ProvisionProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/RejectPortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/RejectPortfolioShareCommand.ts index ac9ef25aa7fe1..94697791426a4 100644 --- a/clients/client-service-catalog/src/commands/RejectPortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/RejectPortfolioShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectPortfolioShareInput, RejectPortfolioShareOutput } from "../models/models_0"; +import type { RejectPortfolioShareInput, RejectPortfolioShareOutput } from "../models/models_0"; import { RejectPortfolioShare } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/ScanProvisionedProductsCommand.ts b/clients/client-service-catalog/src/commands/ScanProvisionedProductsCommand.ts index 61c1b70d80030..c092b769a2696 100644 --- a/clients/client-service-catalog/src/commands/ScanProvisionedProductsCommand.ts +++ b/clients/client-service-catalog/src/commands/ScanProvisionedProductsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ScanProvisionedProductsInput, ScanProvisionedProductsOutput } from "../models/models_0"; +import type { ScanProvisionedProductsInput, ScanProvisionedProductsOutput } from "../models/models_0"; import { ScanProvisionedProducts } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/SearchProductsAsAdminCommand.ts b/clients/client-service-catalog/src/commands/SearchProductsAsAdminCommand.ts index 27ac6ea0436a4..46e17d92aa377 100644 --- a/clients/client-service-catalog/src/commands/SearchProductsAsAdminCommand.ts +++ b/clients/client-service-catalog/src/commands/SearchProductsAsAdminCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchProductsAsAdminInput, SearchProductsAsAdminOutput } from "../models/models_0"; +import type { SearchProductsAsAdminInput, SearchProductsAsAdminOutput } from "../models/models_0"; import { SearchProductsAsAdmin } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/SearchProductsCommand.ts b/clients/client-service-catalog/src/commands/SearchProductsCommand.ts index f3c1c36746031..a3f191075ac55 100644 --- a/clients/client-service-catalog/src/commands/SearchProductsCommand.ts +++ b/clients/client-service-catalog/src/commands/SearchProductsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchProductsInput, SearchProductsOutput } from "../models/models_0"; +import type { SearchProductsInput, SearchProductsOutput } from "../models/models_0"; import { SearchProducts } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/SearchProvisionedProductsCommand.ts b/clients/client-service-catalog/src/commands/SearchProvisionedProductsCommand.ts index 07ae269645350..cf7865e2c2916 100644 --- a/clients/client-service-catalog/src/commands/SearchProvisionedProductsCommand.ts +++ b/clients/client-service-catalog/src/commands/SearchProvisionedProductsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchProvisionedProductsInput, SearchProvisionedProductsOutput } from "../models/models_0"; +import type { SearchProvisionedProductsInput, SearchProvisionedProductsOutput } from "../models/models_0"; import { SearchProvisionedProducts } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/TerminateProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/TerminateProvisionedProductCommand.ts index 6b4a9b92a3892..b031ab908bd93 100644 --- a/clients/client-service-catalog/src/commands/TerminateProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/TerminateProvisionedProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateProvisionedProductInput, TerminateProvisionedProductOutput } from "../models/models_0"; +import type { TerminateProvisionedProductInput, TerminateProvisionedProductOutput } from "../models/models_0"; import { TerminateProvisionedProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/UpdateConstraintCommand.ts b/clients/client-service-catalog/src/commands/UpdateConstraintCommand.ts index a889bf69f318b..7594c0934f22f 100644 --- a/clients/client-service-catalog/src/commands/UpdateConstraintCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateConstraintCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConstraintInput, UpdateConstraintOutput } from "../models/models_0"; +import type { UpdateConstraintInput, UpdateConstraintOutput } from "../models/models_0"; import { UpdateConstraint } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/UpdatePortfolioCommand.ts b/clients/client-service-catalog/src/commands/UpdatePortfolioCommand.ts index 13af3858cc65f..5d2aa8830968b 100644 --- a/clients/client-service-catalog/src/commands/UpdatePortfolioCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdatePortfolioCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePortfolioInput, UpdatePortfolioOutput } from "../models/models_0"; +import type { UpdatePortfolioInput, UpdatePortfolioOutput } from "../models/models_0"; import { UpdatePortfolio } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/UpdatePortfolioShareCommand.ts b/clients/client-service-catalog/src/commands/UpdatePortfolioShareCommand.ts index ca60677dbfdf3..aa3abc568263a 100644 --- a/clients/client-service-catalog/src/commands/UpdatePortfolioShareCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdatePortfolioShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePortfolioShareInput, UpdatePortfolioShareOutput } from "../models/models_0"; +import type { UpdatePortfolioShareInput, UpdatePortfolioShareOutput } from "../models/models_0"; import { UpdatePortfolioShare } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/UpdateProductCommand.ts b/clients/client-service-catalog/src/commands/UpdateProductCommand.ts index 414ee0ed887cc..ef50d7fd32498 100644 --- a/clients/client-service-catalog/src/commands/UpdateProductCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProductInput, UpdateProductOutput } from "../models/models_0"; +import type { UpdateProductInput, UpdateProductOutput } from "../models/models_0"; import { UpdateProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/UpdateProvisionedProductCommand.ts b/clients/client-service-catalog/src/commands/UpdateProvisionedProductCommand.ts index 8a6f6f9725364..92a29e3e0b4f3 100644 --- a/clients/client-service-catalog/src/commands/UpdateProvisionedProductCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateProvisionedProductCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProvisionedProductInput, UpdateProvisionedProductOutput } from "../models/models_0"; +import type { UpdateProvisionedProductInput, UpdateProvisionedProductOutput } from "../models/models_0"; import { UpdateProvisionedProduct } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/UpdateProvisionedProductPropertiesCommand.ts b/clients/client-service-catalog/src/commands/UpdateProvisionedProductPropertiesCommand.ts index 8ab502db5092e..87657bc5f03e6 100644 --- a/clients/client-service-catalog/src/commands/UpdateProvisionedProductPropertiesCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateProvisionedProductPropertiesCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProvisionedProductPropertiesInput, UpdateProvisionedProductPropertiesOutput } from "../models/models_0"; +import type { + UpdateProvisionedProductPropertiesInput, + UpdateProvisionedProductPropertiesOutput, +} from "../models/models_0"; import { UpdateProvisionedProductProperties } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/UpdateProvisioningArtifactCommand.ts b/clients/client-service-catalog/src/commands/UpdateProvisioningArtifactCommand.ts index 93726b4b119bf..91295cefd091f 100644 --- a/clients/client-service-catalog/src/commands/UpdateProvisioningArtifactCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateProvisioningArtifactCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProvisioningArtifactInput, UpdateProvisioningArtifactOutput } from "../models/models_0"; +import type { UpdateProvisioningArtifactInput, UpdateProvisioningArtifactOutput } from "../models/models_0"; import { UpdateProvisioningArtifact } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/UpdateServiceActionCommand.ts b/clients/client-service-catalog/src/commands/UpdateServiceActionCommand.ts index a8bc36bfa166a..e4fc4342e1dc8 100644 --- a/clients/client-service-catalog/src/commands/UpdateServiceActionCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateServiceActionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceActionInput, UpdateServiceActionOutput } from "../models/models_0"; +import type { UpdateServiceActionInput, UpdateServiceActionOutput } from "../models/models_0"; import { UpdateServiceAction } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/commands/UpdateTagOptionCommand.ts b/clients/client-service-catalog/src/commands/UpdateTagOptionCommand.ts index ea0a27add2ed7..ce918f599be11 100644 --- a/clients/client-service-catalog/src/commands/UpdateTagOptionCommand.ts +++ b/clients/client-service-catalog/src/commands/UpdateTagOptionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTagOptionInput, UpdateTagOptionOutput } from "../models/models_0"; +import type { UpdateTagOptionInput, UpdateTagOptionOutput } from "../models/models_0"; import { UpdateTagOption } from "../schemas/schemas_0"; -import { ServiceCatalogClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceCatalogClient"; +import type { + ServiceCatalogClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceCatalogClient"; /** * @public diff --git a/clients/client-service-catalog/src/endpoint/EndpointParameters.ts b/clients/client-service-catalog/src/endpoint/EndpointParameters.ts index 9af3f6fdd5d1b..12801ac6d0be8 100644 --- a/clients/client-service-catalog/src/endpoint/EndpointParameters.ts +++ b/clients/client-service-catalog/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-service-catalog/src/endpoint/endpointResolver.ts b/clients/client-service-catalog/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-service-catalog/src/endpoint/endpointResolver.ts +++ b/clients/client-service-catalog/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-service-catalog/src/extensionConfiguration.ts b/clients/client-service-catalog/src/extensionConfiguration.ts index 3a3309f4a94bf..d5071cea7a811 100644 --- a/clients/client-service-catalog/src/extensionConfiguration.ts +++ b/clients/client-service-catalog/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-service-catalog/src/models/ServiceCatalogServiceException.ts b/clients/client-service-catalog/src/models/ServiceCatalogServiceException.ts index 0eb365fb67e90..0258e4d186820 100644 --- a/clients/client-service-catalog/src/models/ServiceCatalogServiceException.ts +++ b/clients/client-service-catalog/src/models/ServiceCatalogServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-service-catalog/src/models/errors.ts b/clients/client-service-catalog/src/models/errors.ts index 07e3286570c9b..f54b3bc655801 100644 --- a/clients/client-service-catalog/src/models/errors.ts +++ b/clients/client-service-catalog/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ServiceCatalogServiceException as __BaseException } from "./ServiceCatalogServiceException"; diff --git a/clients/client-service-catalog/src/pagination/DescribePortfolioSharesPaginator.ts b/clients/client-service-catalog/src/pagination/DescribePortfolioSharesPaginator.ts index fbc209c8fbae8..5df2c8e3574a5 100644 --- a/clients/client-service-catalog/src/pagination/DescribePortfolioSharesPaginator.ts +++ b/clients/client-service-catalog/src/pagination/DescribePortfolioSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePortfolioSharesCommand, diff --git a/clients/client-service-catalog/src/pagination/GetProvisionedProductOutputsPaginator.ts b/clients/client-service-catalog/src/pagination/GetProvisionedProductOutputsPaginator.ts index 34a69eda70313..b3adce735797b 100644 --- a/clients/client-service-catalog/src/pagination/GetProvisionedProductOutputsPaginator.ts +++ b/clients/client-service-catalog/src/pagination/GetProvisionedProductOutputsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetProvisionedProductOutputsCommand, diff --git a/clients/client-service-catalog/src/pagination/Interfaces.ts b/clients/client-service-catalog/src/pagination/Interfaces.ts index 7df66abc30209..57554f2f4a6cf 100644 --- a/clients/client-service-catalog/src/pagination/Interfaces.ts +++ b/clients/client-service-catalog/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ServiceCatalogClient } from "../ServiceCatalogClient"; diff --git a/clients/client-service-catalog/src/pagination/ListAcceptedPortfolioSharesPaginator.ts b/clients/client-service-catalog/src/pagination/ListAcceptedPortfolioSharesPaginator.ts index 848c56599f33c..029a6dde6a948 100644 --- a/clients/client-service-catalog/src/pagination/ListAcceptedPortfolioSharesPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListAcceptedPortfolioSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAcceptedPortfolioSharesCommand, diff --git a/clients/client-service-catalog/src/pagination/ListBudgetsForResourcePaginator.ts b/clients/client-service-catalog/src/pagination/ListBudgetsForResourcePaginator.ts index d6d8461dea043..e953d44edef80 100644 --- a/clients/client-service-catalog/src/pagination/ListBudgetsForResourcePaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListBudgetsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBudgetsForResourceCommand, diff --git a/clients/client-service-catalog/src/pagination/ListConstraintsForPortfolioPaginator.ts b/clients/client-service-catalog/src/pagination/ListConstraintsForPortfolioPaginator.ts index 893ac679b71fc..4a680ee82c9dc 100644 --- a/clients/client-service-catalog/src/pagination/ListConstraintsForPortfolioPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListConstraintsForPortfolioPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConstraintsForPortfolioCommand, diff --git a/clients/client-service-catalog/src/pagination/ListLaunchPathsPaginator.ts b/clients/client-service-catalog/src/pagination/ListLaunchPathsPaginator.ts index ec057b297d383..42ab5497e47fa 100644 --- a/clients/client-service-catalog/src/pagination/ListLaunchPathsPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListLaunchPathsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLaunchPathsCommand, diff --git a/clients/client-service-catalog/src/pagination/ListOrganizationPortfolioAccessPaginator.ts b/clients/client-service-catalog/src/pagination/ListOrganizationPortfolioAccessPaginator.ts index 3c76b63b98bf7..af6926b2562ea 100644 --- a/clients/client-service-catalog/src/pagination/ListOrganizationPortfolioAccessPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListOrganizationPortfolioAccessPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationPortfolioAccessCommand, diff --git a/clients/client-service-catalog/src/pagination/ListPortfolioAccessPaginator.ts b/clients/client-service-catalog/src/pagination/ListPortfolioAccessPaginator.ts index b845b06f3575f..966dc8767d91c 100644 --- a/clients/client-service-catalog/src/pagination/ListPortfolioAccessPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListPortfolioAccessPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPortfolioAccessCommand, diff --git a/clients/client-service-catalog/src/pagination/ListPortfoliosForProductPaginator.ts b/clients/client-service-catalog/src/pagination/ListPortfoliosForProductPaginator.ts index 43ce1c78f1efe..02f35eecb4601 100644 --- a/clients/client-service-catalog/src/pagination/ListPortfoliosForProductPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListPortfoliosForProductPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPortfoliosForProductCommand, diff --git a/clients/client-service-catalog/src/pagination/ListPortfoliosPaginator.ts b/clients/client-service-catalog/src/pagination/ListPortfoliosPaginator.ts index de8e926cd3715..a0923a6bbab14 100644 --- a/clients/client-service-catalog/src/pagination/ListPortfoliosPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListPortfoliosPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPortfoliosCommand, diff --git a/clients/client-service-catalog/src/pagination/ListPrincipalsForPortfolioPaginator.ts b/clients/client-service-catalog/src/pagination/ListPrincipalsForPortfolioPaginator.ts index 2a4631d207f7a..a577efa284ef3 100644 --- a/clients/client-service-catalog/src/pagination/ListPrincipalsForPortfolioPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListPrincipalsForPortfolioPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPrincipalsForPortfolioCommand, diff --git a/clients/client-service-catalog/src/pagination/ListProvisioningArtifactsForServiceActionPaginator.ts b/clients/client-service-catalog/src/pagination/ListProvisioningArtifactsForServiceActionPaginator.ts index 1d8449d6fea1c..f22e07d2f1f9b 100644 --- a/clients/client-service-catalog/src/pagination/ListProvisioningArtifactsForServiceActionPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListProvisioningArtifactsForServiceActionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProvisioningArtifactsForServiceActionCommand, diff --git a/clients/client-service-catalog/src/pagination/ListResourcesForTagOptionPaginator.ts b/clients/client-service-catalog/src/pagination/ListResourcesForTagOptionPaginator.ts index 1057ad2665889..b3cecfe9950c2 100644 --- a/clients/client-service-catalog/src/pagination/ListResourcesForTagOptionPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListResourcesForTagOptionPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourcesForTagOptionCommand, diff --git a/clients/client-service-catalog/src/pagination/ListServiceActionsForProvisioningArtifactPaginator.ts b/clients/client-service-catalog/src/pagination/ListServiceActionsForProvisioningArtifactPaginator.ts index e5eb446f079d1..69190bc784d9a 100644 --- a/clients/client-service-catalog/src/pagination/ListServiceActionsForProvisioningArtifactPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListServiceActionsForProvisioningArtifactPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceActionsForProvisioningArtifactCommand, diff --git a/clients/client-service-catalog/src/pagination/ListServiceActionsPaginator.ts b/clients/client-service-catalog/src/pagination/ListServiceActionsPaginator.ts index b6dbda186951f..56b78e03a85e9 100644 --- a/clients/client-service-catalog/src/pagination/ListServiceActionsPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListServiceActionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceActionsCommand, diff --git a/clients/client-service-catalog/src/pagination/ListTagOptionsPaginator.ts b/clients/client-service-catalog/src/pagination/ListTagOptionsPaginator.ts index f738ee1b05e42..20f59c960ffcf 100644 --- a/clients/client-service-catalog/src/pagination/ListTagOptionsPaginator.ts +++ b/clients/client-service-catalog/src/pagination/ListTagOptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagOptionsCommand, diff --git a/clients/client-service-catalog/src/pagination/SearchProductsAsAdminPaginator.ts b/clients/client-service-catalog/src/pagination/SearchProductsAsAdminPaginator.ts index b0444b18a4465..e81f9091973c0 100644 --- a/clients/client-service-catalog/src/pagination/SearchProductsAsAdminPaginator.ts +++ b/clients/client-service-catalog/src/pagination/SearchProductsAsAdminPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchProductsAsAdminCommand, diff --git a/clients/client-service-catalog/src/pagination/SearchProductsPaginator.ts b/clients/client-service-catalog/src/pagination/SearchProductsPaginator.ts index e7a9de495df60..91e2e4700c800 100644 --- a/clients/client-service-catalog/src/pagination/SearchProductsPaginator.ts +++ b/clients/client-service-catalog/src/pagination/SearchProductsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchProductsCommand, diff --git a/clients/client-service-catalog/src/pagination/SearchProvisionedProductsPaginator.ts b/clients/client-service-catalog/src/pagination/SearchProvisionedProductsPaginator.ts index 3a57aa016915d..5456bce7afca9 100644 --- a/clients/client-service-catalog/src/pagination/SearchProvisionedProductsPaginator.ts +++ b/clients/client-service-catalog/src/pagination/SearchProvisionedProductsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchProvisionedProductsCommand, diff --git a/clients/client-service-catalog/src/runtimeConfig.browser.ts b/clients/client-service-catalog/src/runtimeConfig.browser.ts index 8677b47614029..fc513bc71f66b 100644 --- a/clients/client-service-catalog/src/runtimeConfig.browser.ts +++ b/clients/client-service-catalog/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServiceCatalogClientConfig } from "./ServiceCatalogClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { ServiceCatalogClientConfig } from "./ServiceCatalogClient"; /** * @internal diff --git a/clients/client-service-catalog/src/runtimeConfig.native.ts b/clients/client-service-catalog/src/runtimeConfig.native.ts index 51b3e48e1502e..6d371318559ab 100644 --- a/clients/client-service-catalog/src/runtimeConfig.native.ts +++ b/clients/client-service-catalog/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { ServiceCatalogClientConfig } from "./ServiceCatalogClient"; +import type { ServiceCatalogClientConfig } from "./ServiceCatalogClient"; /** * @internal diff --git a/clients/client-service-catalog/src/runtimeConfig.shared.ts b/clients/client-service-catalog/src/runtimeConfig.shared.ts index 72c0f3a6e8a4c..4ea095e38c6ad 100644 --- a/clients/client-service-catalog/src/runtimeConfig.shared.ts +++ b/clients/client-service-catalog/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultServiceCatalogHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ServiceCatalogClientConfig } from "./ServiceCatalogClient"; +import type { ServiceCatalogClientConfig } from "./ServiceCatalogClient"; /** * @internal diff --git a/clients/client-service-catalog/src/runtimeConfig.ts b/clients/client-service-catalog/src/runtimeConfig.ts index 7e242986af272..edb25a784c4db 100644 --- a/clients/client-service-catalog/src/runtimeConfig.ts +++ b/clients/client-service-catalog/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServiceCatalogClientConfig } from "./ServiceCatalogClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { ServiceCatalogClientConfig } from "./ServiceCatalogClient"; /** * @internal diff --git a/clients/client-service-catalog/src/runtimeExtensions.ts b/clients/client-service-catalog/src/runtimeExtensions.ts index 8f33cbdf13b7f..de9feaae5fde5 100644 --- a/clients/client-service-catalog/src/runtimeExtensions.ts +++ b/clients/client-service-catalog/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ServiceCatalogExtensionConfiguration } from "./extensionConfiguration"; +import type { ServiceCatalogExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-service-catalog/src/schemas/schemas_0.ts b/clients/client-service-catalog/src/schemas/schemas_0.ts index aa83bfe4a7d9a..0985b730327a0 100644 --- a/clients/client-service-catalog/src/schemas/schemas_0.ts +++ b/clients/client-service-catalog/src/schemas/schemas_0.ts @@ -571,7 +571,7 @@ const n0 = "com.amazonaws.servicecatalog"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-service-quotas/package.json b/clients/client-service-quotas/package.json index 50fe2ed364054..41e064541ae07 100644 --- a/clients/client-service-quotas/package.json +++ b/clients/client-service-quotas/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-service-quotas/src/ServiceQuotas.ts b/clients/client-service-quotas/src/ServiceQuotas.ts index 4a8f1199ef159..ca16ecd469b48 100644 --- a/clients/client-service-quotas/src/ServiceQuotas.ts +++ b/clients/client-service-quotas/src/ServiceQuotas.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateServiceQuotaTemplateCommand, @@ -118,7 +118,7 @@ import { UpdateAutoManagementCommandInput, UpdateAutoManagementCommandOutput, } from "./commands/UpdateAutoManagementCommand"; -import { ServiceQuotasClient, ServiceQuotasClientConfig } from "./ServiceQuotasClient"; +import { ServiceQuotasClient } from "./ServiceQuotasClient"; const commands = { AssociateServiceQuotaTemplateCommand, diff --git a/clients/client-service-quotas/src/ServiceQuotasClient.ts b/clients/client-service-quotas/src/ServiceQuotasClient.ts index 6a28ac2deebd8..2bb258f9c0003 100644 --- a/clients/client-service-quotas/src/ServiceQuotasClient.ts +++ b/clients/client-service-quotas/src/ServiceQuotasClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultServiceQuotasHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -139,7 +148,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-service-quotas/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-service-quotas/src/auth/httpAuthExtensionConfiguration.ts index 3a962f0e63d2a..9fb62b3394e52 100644 --- a/clients/client-service-quotas/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-service-quotas/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ServiceQuotasHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ServiceQuotasHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-service-quotas/src/auth/httpAuthSchemeProvider.ts b/clients/client-service-quotas/src/auth/httpAuthSchemeProvider.ts index f50ced8a54173..de73c5674801c 100644 --- a/clients/client-service-quotas/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-service-quotas/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ServiceQuotasClientConfig, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import { type ServiceQuotasClientResolvedConfig, ServiceQuotasClientConfig } from "../ServiceQuotasClient"; /** * @internal diff --git a/clients/client-service-quotas/src/commands/AssociateServiceQuotaTemplateCommand.ts b/clients/client-service-quotas/src/commands/AssociateServiceQuotaTemplateCommand.ts index b6b2a7adabd5a..15812ca237a97 100644 --- a/clients/client-service-quotas/src/commands/AssociateServiceQuotaTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/AssociateServiceQuotaTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateServiceQuotaTemplateRequest, AssociateServiceQuotaTemplateResponse } from "../models/models_0"; +import type { AssociateServiceQuotaTemplateRequest, AssociateServiceQuotaTemplateResponse } from "../models/models_0"; import { AssociateServiceQuotaTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/CreateSupportCaseCommand.ts b/clients/client-service-quotas/src/commands/CreateSupportCaseCommand.ts index 64b13c4ea9dae..3fb9267251299 100644 --- a/clients/client-service-quotas/src/commands/CreateSupportCaseCommand.ts +++ b/clients/client-service-quotas/src/commands/CreateSupportCaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSupportCaseRequest, CreateSupportCaseResponse } from "../models/models_0"; +import type { CreateSupportCaseRequest, CreateSupportCaseResponse } from "../models/models_0"; import { CreateSupportCase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.ts b/clients/client-service-quotas/src/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.ts index 7b5db7eaccb1f..facc3326e9d19 100644 --- a/clients/client-service-quotas/src/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/DeleteServiceQuotaIncreaseRequestFromTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteServiceQuotaIncreaseRequestFromTemplateRequest, DeleteServiceQuotaIncreaseRequestFromTemplateResponse, } from "../models/models_0"; import { DeleteServiceQuotaIncreaseRequestFromTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/DisassociateServiceQuotaTemplateCommand.ts b/clients/client-service-quotas/src/commands/DisassociateServiceQuotaTemplateCommand.ts index 380404cc89085..a7ce9f2903de3 100644 --- a/clients/client-service-quotas/src/commands/DisassociateServiceQuotaTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/DisassociateServiceQuotaTemplateCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateServiceQuotaTemplateRequest, DisassociateServiceQuotaTemplateResponse } from "../models/models_0"; +import type { + DisassociateServiceQuotaTemplateRequest, + DisassociateServiceQuotaTemplateResponse, +} from "../models/models_0"; import { DisassociateServiceQuotaTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/GetAWSDefaultServiceQuotaCommand.ts b/clients/client-service-quotas/src/commands/GetAWSDefaultServiceQuotaCommand.ts index 106d4b4d2e7df..31dadfdb79dde 100644 --- a/clients/client-service-quotas/src/commands/GetAWSDefaultServiceQuotaCommand.ts +++ b/clients/client-service-quotas/src/commands/GetAWSDefaultServiceQuotaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAWSDefaultServiceQuotaRequest, GetAWSDefaultServiceQuotaResponse } from "../models/models_0"; +import type { GetAWSDefaultServiceQuotaRequest, GetAWSDefaultServiceQuotaResponse } from "../models/models_0"; import { GetAWSDefaultServiceQuota } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/GetAssociationForServiceQuotaTemplateCommand.ts b/clients/client-service-quotas/src/commands/GetAssociationForServiceQuotaTemplateCommand.ts index 75deda402a5ca..e9068c037d3f3 100644 --- a/clients/client-service-quotas/src/commands/GetAssociationForServiceQuotaTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/GetAssociationForServiceQuotaTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetAssociationForServiceQuotaTemplateRequest, GetAssociationForServiceQuotaTemplateResponse, } from "../models/models_0"; import { GetAssociationForServiceQuotaTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/GetAutoManagementConfigurationCommand.ts b/clients/client-service-quotas/src/commands/GetAutoManagementConfigurationCommand.ts index aaf7a49face35..22c4ca6d89f5c 100644 --- a/clients/client-service-quotas/src/commands/GetAutoManagementConfigurationCommand.ts +++ b/clients/client-service-quotas/src/commands/GetAutoManagementConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAutoManagementConfigurationRequest, GetAutoManagementConfigurationResponse } from "../models/models_0"; +import type { GetAutoManagementConfigurationRequest, GetAutoManagementConfigurationResponse } from "../models/models_0"; import { GetAutoManagementConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/GetRequestedServiceQuotaChangeCommand.ts b/clients/client-service-quotas/src/commands/GetRequestedServiceQuotaChangeCommand.ts index a1822f0d1461c..0e8dcbfd81259 100644 --- a/clients/client-service-quotas/src/commands/GetRequestedServiceQuotaChangeCommand.ts +++ b/clients/client-service-quotas/src/commands/GetRequestedServiceQuotaChangeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRequestedServiceQuotaChangeRequest, GetRequestedServiceQuotaChangeResponse } from "../models/models_0"; +import type { GetRequestedServiceQuotaChangeRequest, GetRequestedServiceQuotaChangeResponse } from "../models/models_0"; import { GetRequestedServiceQuotaChange } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/GetServiceQuotaCommand.ts b/clients/client-service-quotas/src/commands/GetServiceQuotaCommand.ts index 6e66d7d8207d1..b5cc401693629 100644 --- a/clients/client-service-quotas/src/commands/GetServiceQuotaCommand.ts +++ b/clients/client-service-quotas/src/commands/GetServiceQuotaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceQuotaRequest, GetServiceQuotaResponse } from "../models/models_0"; +import type { GetServiceQuotaRequest, GetServiceQuotaResponse } from "../models/models_0"; import { GetServiceQuota } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.ts b/clients/client-service-quotas/src/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.ts index 4986a7eb6a686..47db8c514d46d 100644 --- a/clients/client-service-quotas/src/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/GetServiceQuotaIncreaseRequestFromTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetServiceQuotaIncreaseRequestFromTemplateRequest, GetServiceQuotaIncreaseRequestFromTemplateResponse, } from "../models/models_0"; import { GetServiceQuotaIncreaseRequestFromTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/ListAWSDefaultServiceQuotasCommand.ts b/clients/client-service-quotas/src/commands/ListAWSDefaultServiceQuotasCommand.ts index 28bac10db4f57..a223ae0e4fd6f 100644 --- a/clients/client-service-quotas/src/commands/ListAWSDefaultServiceQuotasCommand.ts +++ b/clients/client-service-quotas/src/commands/ListAWSDefaultServiceQuotasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAWSDefaultServiceQuotasRequest, ListAWSDefaultServiceQuotasResponse } from "../models/models_0"; +import type { ListAWSDefaultServiceQuotasRequest, ListAWSDefaultServiceQuotasResponse } from "../models/models_0"; import { ListAWSDefaultServiceQuotas } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.ts b/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.ts index e1611ee2ea878..0eb6836ecffe4 100644 --- a/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.ts +++ b/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryByQuotaCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListRequestedServiceQuotaChangeHistoryByQuotaRequest, ListRequestedServiceQuotaChangeHistoryByQuotaResponse, } from "../models/models_0"; import { ListRequestedServiceQuotaChangeHistoryByQuota } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryCommand.ts b/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryCommand.ts index f3f0e44c9e908..4674558314c84 100644 --- a/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryCommand.ts +++ b/clients/client-service-quotas/src/commands/ListRequestedServiceQuotaChangeHistoryCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListRequestedServiceQuotaChangeHistoryRequest, ListRequestedServiceQuotaChangeHistoryResponse, } from "../models/models_0"; import { ListRequestedServiceQuotaChangeHistory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.ts b/clients/client-service-quotas/src/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.ts index 3a6ec09f0bd04..5d0fb5a329ab8 100644 --- a/clients/client-service-quotas/src/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/ListServiceQuotaIncreaseRequestsInTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServiceQuotaIncreaseRequestsInTemplateRequest, ListServiceQuotaIncreaseRequestsInTemplateResponse, } from "../models/models_0"; import { ListServiceQuotaIncreaseRequestsInTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/ListServiceQuotasCommand.ts b/clients/client-service-quotas/src/commands/ListServiceQuotasCommand.ts index 8f07e58c8f6a5..04b19136a2088 100644 --- a/clients/client-service-quotas/src/commands/ListServiceQuotasCommand.ts +++ b/clients/client-service-quotas/src/commands/ListServiceQuotasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceQuotasRequest, ListServiceQuotasResponse } from "../models/models_0"; +import type { ListServiceQuotasRequest, ListServiceQuotasResponse } from "../models/models_0"; import { ListServiceQuotas } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/ListServicesCommand.ts b/clients/client-service-quotas/src/commands/ListServicesCommand.ts index cd887c6157d7e..125ceab6209ad 100644 --- a/clients/client-service-quotas/src/commands/ListServicesCommand.ts +++ b/clients/client-service-quotas/src/commands/ListServicesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicesRequest, ListServicesResponse } from "../models/models_0"; +import type { ListServicesRequest, ListServicesResponse } from "../models/models_0"; import { ListServices } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/ListTagsForResourceCommand.ts b/clients/client-service-quotas/src/commands/ListTagsForResourceCommand.ts index dc9ac5e17ad80..ecb84572d2280 100644 --- a/clients/client-service-quotas/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-service-quotas/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.ts b/clients/client-service-quotas/src/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.ts index 8cdd60b769836..e4ad7b1ae1273 100644 --- a/clients/client-service-quotas/src/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.ts +++ b/clients/client-service-quotas/src/commands/PutServiceQuotaIncreaseRequestIntoTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutServiceQuotaIncreaseRequestIntoTemplateRequest, PutServiceQuotaIncreaseRequestIntoTemplateResponse, } from "../models/models_0"; import { PutServiceQuotaIncreaseRequestIntoTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/RequestServiceQuotaIncreaseCommand.ts b/clients/client-service-quotas/src/commands/RequestServiceQuotaIncreaseCommand.ts index a6af1a2425c31..d4d302ef828f4 100644 --- a/clients/client-service-quotas/src/commands/RequestServiceQuotaIncreaseCommand.ts +++ b/clients/client-service-quotas/src/commands/RequestServiceQuotaIncreaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RequestServiceQuotaIncreaseRequest, RequestServiceQuotaIncreaseResponse } from "../models/models_0"; +import type { RequestServiceQuotaIncreaseRequest, RequestServiceQuotaIncreaseResponse } from "../models/models_0"; import { RequestServiceQuotaIncrease } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/StartAutoManagementCommand.ts b/clients/client-service-quotas/src/commands/StartAutoManagementCommand.ts index 85c61a0e7a89a..e2b37ef3ab100 100644 --- a/clients/client-service-quotas/src/commands/StartAutoManagementCommand.ts +++ b/clients/client-service-quotas/src/commands/StartAutoManagementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAutoManagementRequest, StartAutoManagementResponse } from "../models/models_0"; +import type { StartAutoManagementRequest, StartAutoManagementResponse } from "../models/models_0"; import { StartAutoManagement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/StopAutoManagementCommand.ts b/clients/client-service-quotas/src/commands/StopAutoManagementCommand.ts index fedff4a1ec7bc..c2ee3b023fa94 100644 --- a/clients/client-service-quotas/src/commands/StopAutoManagementCommand.ts +++ b/clients/client-service-quotas/src/commands/StopAutoManagementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopAutoManagementRequest, StopAutoManagementResponse } from "../models/models_0"; +import type { StopAutoManagementRequest, StopAutoManagementResponse } from "../models/models_0"; import { StopAutoManagement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/TagResourceCommand.ts b/clients/client-service-quotas/src/commands/TagResourceCommand.ts index 3fd9ad2c5ad8a..cec01175f0cc6 100644 --- a/clients/client-service-quotas/src/commands/TagResourceCommand.ts +++ b/clients/client-service-quotas/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/UntagResourceCommand.ts b/clients/client-service-quotas/src/commands/UntagResourceCommand.ts index 567781d3860bb..cbf0551eb7a22 100644 --- a/clients/client-service-quotas/src/commands/UntagResourceCommand.ts +++ b/clients/client-service-quotas/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/commands/UpdateAutoManagementCommand.ts b/clients/client-service-quotas/src/commands/UpdateAutoManagementCommand.ts index 6a525d56a215a..46d98bda2760a 100644 --- a/clients/client-service-quotas/src/commands/UpdateAutoManagementCommand.ts +++ b/clients/client-service-quotas/src/commands/UpdateAutoManagementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAutoManagementRequest, UpdateAutoManagementResponse } from "../models/models_0"; +import type { UpdateAutoManagementRequest, UpdateAutoManagementResponse } from "../models/models_0"; import { UpdateAutoManagement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ServiceQuotasClientResolvedConfig } from "../ServiceQuotasClient"; /** * @public diff --git a/clients/client-service-quotas/src/endpoint/EndpointParameters.ts b/clients/client-service-quotas/src/endpoint/EndpointParameters.ts index fce1ece200a61..0436d4c2d91a4 100644 --- a/clients/client-service-quotas/src/endpoint/EndpointParameters.ts +++ b/clients/client-service-quotas/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-service-quotas/src/endpoint/endpointResolver.ts b/clients/client-service-quotas/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-service-quotas/src/endpoint/endpointResolver.ts +++ b/clients/client-service-quotas/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-service-quotas/src/extensionConfiguration.ts b/clients/client-service-quotas/src/extensionConfiguration.ts index 9baae50b460e4..52f1cefc57894 100644 --- a/clients/client-service-quotas/src/extensionConfiguration.ts +++ b/clients/client-service-quotas/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-service-quotas/src/models/ServiceQuotasServiceException.ts b/clients/client-service-quotas/src/models/ServiceQuotasServiceException.ts index 59d3ceda79779..b4664252863e4 100644 --- a/clients/client-service-quotas/src/models/ServiceQuotasServiceException.ts +++ b/clients/client-service-quotas/src/models/ServiceQuotasServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-service-quotas/src/models/errors.ts b/clients/client-service-quotas/src/models/errors.ts index 3b6d099ba4dad..158a1dbfc509a 100644 --- a/clients/client-service-quotas/src/models/errors.ts +++ b/clients/client-service-quotas/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ServiceQuotasServiceException as __BaseException } from "./ServiceQuotasServiceException"; diff --git a/clients/client-service-quotas/src/pagination/Interfaces.ts b/clients/client-service-quotas/src/pagination/Interfaces.ts index 69761f67cbfcd..ec2e135638d3b 100644 --- a/clients/client-service-quotas/src/pagination/Interfaces.ts +++ b/clients/client-service-quotas/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ServiceQuotasClient } from "../ServiceQuotasClient"; diff --git a/clients/client-service-quotas/src/pagination/ListAWSDefaultServiceQuotasPaginator.ts b/clients/client-service-quotas/src/pagination/ListAWSDefaultServiceQuotasPaginator.ts index d4bed0a35b26e..6b154504e1512 100644 --- a/clients/client-service-quotas/src/pagination/ListAWSDefaultServiceQuotasPaginator.ts +++ b/clients/client-service-quotas/src/pagination/ListAWSDefaultServiceQuotasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAWSDefaultServiceQuotasCommand, diff --git a/clients/client-service-quotas/src/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.ts b/clients/client-service-quotas/src/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.ts index f2725660a5c32..2a425d1950d79 100644 --- a/clients/client-service-quotas/src/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.ts +++ b/clients/client-service-quotas/src/pagination/ListRequestedServiceQuotaChangeHistoryByQuotaPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRequestedServiceQuotaChangeHistoryByQuotaCommand, diff --git a/clients/client-service-quotas/src/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.ts b/clients/client-service-quotas/src/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.ts index 44d77145c0989..eb830ebb9f3d3 100644 --- a/clients/client-service-quotas/src/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.ts +++ b/clients/client-service-quotas/src/pagination/ListRequestedServiceQuotaChangeHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRequestedServiceQuotaChangeHistoryCommand, diff --git a/clients/client-service-quotas/src/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.ts b/clients/client-service-quotas/src/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.ts index 75c010f1037e1..388e1ea429c46 100644 --- a/clients/client-service-quotas/src/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.ts +++ b/clients/client-service-quotas/src/pagination/ListServiceQuotaIncreaseRequestsInTemplatePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceQuotaIncreaseRequestsInTemplateCommand, diff --git a/clients/client-service-quotas/src/pagination/ListServiceQuotasPaginator.ts b/clients/client-service-quotas/src/pagination/ListServiceQuotasPaginator.ts index 670f4e98a4f5e..760044f534bf6 100644 --- a/clients/client-service-quotas/src/pagination/ListServiceQuotasPaginator.ts +++ b/clients/client-service-quotas/src/pagination/ListServiceQuotasPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceQuotasCommand, diff --git a/clients/client-service-quotas/src/pagination/ListServicesPaginator.ts b/clients/client-service-quotas/src/pagination/ListServicesPaginator.ts index 84b5ae0ed736c..92810f1e87f46 100644 --- a/clients/client-service-quotas/src/pagination/ListServicesPaginator.ts +++ b/clients/client-service-quotas/src/pagination/ListServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicesCommand, diff --git a/clients/client-service-quotas/src/runtimeConfig.browser.ts b/clients/client-service-quotas/src/runtimeConfig.browser.ts index 8f98512050ef3..f73cfb36aa546 100644 --- a/clients/client-service-quotas/src/runtimeConfig.browser.ts +++ b/clients/client-service-quotas/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServiceQuotasClientConfig } from "./ServiceQuotasClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { ServiceQuotasClientConfig } from "./ServiceQuotasClient"; /** * @internal diff --git a/clients/client-service-quotas/src/runtimeConfig.native.ts b/clients/client-service-quotas/src/runtimeConfig.native.ts index 5326f47d00ed5..01409220d9ac4 100644 --- a/clients/client-service-quotas/src/runtimeConfig.native.ts +++ b/clients/client-service-quotas/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { ServiceQuotasClientConfig } from "./ServiceQuotasClient"; +import type { ServiceQuotasClientConfig } from "./ServiceQuotasClient"; /** * @internal diff --git a/clients/client-service-quotas/src/runtimeConfig.shared.ts b/clients/client-service-quotas/src/runtimeConfig.shared.ts index 8d77222dcabc4..e492b17fff0df 100644 --- a/clients/client-service-quotas/src/runtimeConfig.shared.ts +++ b/clients/client-service-quotas/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultServiceQuotasHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ServiceQuotasClientConfig } from "./ServiceQuotasClient"; +import type { ServiceQuotasClientConfig } from "./ServiceQuotasClient"; /** * @internal diff --git a/clients/client-service-quotas/src/runtimeConfig.ts b/clients/client-service-quotas/src/runtimeConfig.ts index 0fbb097801c5f..71e3ccd6bace5 100644 --- a/clients/client-service-quotas/src/runtimeConfig.ts +++ b/clients/client-service-quotas/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServiceQuotasClientConfig } from "./ServiceQuotasClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { ServiceQuotasClientConfig } from "./ServiceQuotasClient"; /** * @internal diff --git a/clients/client-service-quotas/src/runtimeExtensions.ts b/clients/client-service-quotas/src/runtimeExtensions.ts index c172a3bab01c7..144662cf0b3ef 100644 --- a/clients/client-service-quotas/src/runtimeExtensions.ts +++ b/clients/client-service-quotas/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ServiceQuotasExtensionConfiguration } from "./extensionConfiguration"; +import type { ServiceQuotasExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-service-quotas/src/schemas/schemas_0.ts b/clients/client-service-quotas/src/schemas/schemas_0.ts index 728476609f15a..af688417bf887 100644 --- a/clients/client-service-quotas/src/schemas/schemas_0.ts +++ b/clients/client-service-quotas/src/schemas/schemas_0.ts @@ -168,7 +168,7 @@ const n0 = "com.amazonaws.servicequotas"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-servicediscovery/package.json b/clients/client-servicediscovery/package.json index 7a416446039b2..3519ff354be4f 100644 --- a/clients/client-servicediscovery/package.json +++ b/clients/client-servicediscovery/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-servicediscovery/src/ServiceDiscovery.ts b/clients/client-servicediscovery/src/ServiceDiscovery.ts index fa22c5336ad5f..3e889ad02972b 100644 --- a/clients/client-servicediscovery/src/ServiceDiscovery.ts +++ b/clients/client-servicediscovery/src/ServiceDiscovery.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateHttpNamespaceCommand, @@ -140,7 +140,7 @@ import { UpdateServiceCommandInput, UpdateServiceCommandOutput, } from "./commands/UpdateServiceCommand"; -import { ServiceDiscoveryClient, ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient"; +import { ServiceDiscoveryClient } from "./ServiceDiscoveryClient"; const commands = { CreateHttpNamespaceCommand, diff --git a/clients/client-servicediscovery/src/ServiceDiscoveryClient.ts b/clients/client-servicediscovery/src/ServiceDiscoveryClient.ts index 1a8aee684539f..a8ed65488e063 100644 --- a/clients/client-servicediscovery/src/ServiceDiscoveryClient.ts +++ b/clients/client-servicediscovery/src/ServiceDiscoveryClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultServiceDiscoveryHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -133,7 +142,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-servicediscovery/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-servicediscovery/src/auth/httpAuthExtensionConfiguration.ts index ee3ff6c9fc76c..4b6b2a557cf9b 100644 --- a/clients/client-servicediscovery/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-servicediscovery/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ServiceDiscoveryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ServiceDiscoveryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-servicediscovery/src/auth/httpAuthSchemeProvider.ts b/clients/client-servicediscovery/src/auth/httpAuthSchemeProvider.ts index 1d4845487c1ff..fd2f58779c451 100644 --- a/clients/client-servicediscovery/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-servicediscovery/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ServiceDiscoveryClientConfig, ServiceDiscoveryClientResolvedConfig } from "../ServiceDiscoveryClient"; +import { type ServiceDiscoveryClientResolvedConfig, ServiceDiscoveryClientConfig } from "../ServiceDiscoveryClient"; /** * @internal diff --git a/clients/client-servicediscovery/src/commands/CreateHttpNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/CreateHttpNamespaceCommand.ts index 19d0de2be21f2..f38039e60959b 100644 --- a/clients/client-servicediscovery/src/commands/CreateHttpNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/CreateHttpNamespaceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateHttpNamespaceRequest, CreateHttpNamespaceResponse } from "../models/models_0"; +import type { CreateHttpNamespaceRequest, CreateHttpNamespaceResponse } from "../models/models_0"; import { CreateHttpNamespace } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/CreatePrivateDnsNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/CreatePrivateDnsNamespaceCommand.ts index f40c69159ff54..fff0dfd749131 100644 --- a/clients/client-servicediscovery/src/commands/CreatePrivateDnsNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/CreatePrivateDnsNamespaceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePrivateDnsNamespaceRequest, CreatePrivateDnsNamespaceResponse } from "../models/models_0"; +import type { CreatePrivateDnsNamespaceRequest, CreatePrivateDnsNamespaceResponse } from "../models/models_0"; import { CreatePrivateDnsNamespace } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/CreatePublicDnsNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/CreatePublicDnsNamespaceCommand.ts index d317b1def8497..3af909197a7ee 100644 --- a/clients/client-servicediscovery/src/commands/CreatePublicDnsNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/CreatePublicDnsNamespaceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePublicDnsNamespaceRequest, CreatePublicDnsNamespaceResponse } from "../models/models_0"; +import type { CreatePublicDnsNamespaceRequest, CreatePublicDnsNamespaceResponse } from "../models/models_0"; import { CreatePublicDnsNamespace } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/CreateServiceCommand.ts b/clients/client-servicediscovery/src/commands/CreateServiceCommand.ts index 75013b6e60bfb..b7e276e542a70 100644 --- a/clients/client-servicediscovery/src/commands/CreateServiceCommand.ts +++ b/clients/client-servicediscovery/src/commands/CreateServiceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; +import type { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; import { CreateService } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/DeleteNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/DeleteNamespaceCommand.ts index 61a3981607b64..eae0d021d8d45 100644 --- a/clients/client-servicediscovery/src/commands/DeleteNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/DeleteNamespaceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0"; +import type { DeleteNamespaceRequest, DeleteNamespaceResponse } from "../models/models_0"; import { DeleteNamespace } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/DeleteServiceAttributesCommand.ts b/clients/client-servicediscovery/src/commands/DeleteServiceAttributesCommand.ts index 0539e20dc5675..2ba8813d7fca2 100644 --- a/clients/client-servicediscovery/src/commands/DeleteServiceAttributesCommand.ts +++ b/clients/client-servicediscovery/src/commands/DeleteServiceAttributesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceAttributesRequest, DeleteServiceAttributesResponse } from "../models/models_0"; +import type { DeleteServiceAttributesRequest, DeleteServiceAttributesResponse } from "../models/models_0"; import { DeleteServiceAttributes } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/DeleteServiceCommand.ts b/clients/client-servicediscovery/src/commands/DeleteServiceCommand.ts index 0844ae9ddee7d..3efa8f2c4cab1 100644 --- a/clients/client-servicediscovery/src/commands/DeleteServiceCommand.ts +++ b/clients/client-servicediscovery/src/commands/DeleteServiceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; +import type { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; import { DeleteService } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/DeregisterInstanceCommand.ts b/clients/client-servicediscovery/src/commands/DeregisterInstanceCommand.ts index f3e9e93e0159a..a530dee13e025 100644 --- a/clients/client-servicediscovery/src/commands/DeregisterInstanceCommand.ts +++ b/clients/client-servicediscovery/src/commands/DeregisterInstanceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterInstanceRequest, DeregisterInstanceResponse } from "../models/models_0"; +import type { DeregisterInstanceRequest, DeregisterInstanceResponse } from "../models/models_0"; import { DeregisterInstance } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/DiscoverInstancesCommand.ts b/clients/client-servicediscovery/src/commands/DiscoverInstancesCommand.ts index b83770187269a..484a7428007ae 100644 --- a/clients/client-servicediscovery/src/commands/DiscoverInstancesCommand.ts +++ b/clients/client-servicediscovery/src/commands/DiscoverInstancesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DiscoverInstancesRequest, DiscoverInstancesResponse } from "../models/models_0"; +import type { DiscoverInstancesRequest, DiscoverInstancesResponse } from "../models/models_0"; import { DiscoverInstances } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/DiscoverInstancesRevisionCommand.ts b/clients/client-servicediscovery/src/commands/DiscoverInstancesRevisionCommand.ts index a5062a2c3cb39..ef4415f272b4f 100644 --- a/clients/client-servicediscovery/src/commands/DiscoverInstancesRevisionCommand.ts +++ b/clients/client-servicediscovery/src/commands/DiscoverInstancesRevisionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DiscoverInstancesRevisionRequest, DiscoverInstancesRevisionResponse } from "../models/models_0"; +import type { DiscoverInstancesRevisionRequest, DiscoverInstancesRevisionResponse } from "../models/models_0"; import { DiscoverInstancesRevision } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/GetInstanceCommand.ts b/clients/client-servicediscovery/src/commands/GetInstanceCommand.ts index c8dde38571d94..505db564ea0ce 100644 --- a/clients/client-servicediscovery/src/commands/GetInstanceCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetInstanceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstanceRequest, GetInstanceResponse } from "../models/models_0"; +import type { GetInstanceRequest, GetInstanceResponse } from "../models/models_0"; import { GetInstance } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/GetInstancesHealthStatusCommand.ts b/clients/client-servicediscovery/src/commands/GetInstancesHealthStatusCommand.ts index 17d60289c3668..ad77c30a75e40 100644 --- a/clients/client-servicediscovery/src/commands/GetInstancesHealthStatusCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetInstancesHealthStatusCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstancesHealthStatusRequest, GetInstancesHealthStatusResponse } from "../models/models_0"; +import type { GetInstancesHealthStatusRequest, GetInstancesHealthStatusResponse } from "../models/models_0"; import { GetInstancesHealthStatus } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/GetNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/GetNamespaceCommand.ts index d0a92d759fdc7..7bfc582fa51ac 100644 --- a/clients/client-servicediscovery/src/commands/GetNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetNamespaceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0"; +import type { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0"; import { GetNamespace } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/GetOperationCommand.ts b/clients/client-servicediscovery/src/commands/GetOperationCommand.ts index 9c0b839030718..f181610a2232d 100644 --- a/clients/client-servicediscovery/src/commands/GetOperationCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetOperationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOperationRequest, GetOperationResponse } from "../models/models_0"; +import type { GetOperationRequest, GetOperationResponse } from "../models/models_0"; import { GetOperation } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/GetServiceAttributesCommand.ts b/clients/client-servicediscovery/src/commands/GetServiceAttributesCommand.ts index 363de592c9260..bd18846f6ff5e 100644 --- a/clients/client-servicediscovery/src/commands/GetServiceAttributesCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetServiceAttributesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceAttributesRequest, GetServiceAttributesResponse } from "../models/models_0"; +import type { GetServiceAttributesRequest, GetServiceAttributesResponse } from "../models/models_0"; import { GetServiceAttributes } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/GetServiceCommand.ts b/clients/client-servicediscovery/src/commands/GetServiceCommand.ts index a1bd0010c252b..2572f06fbfc9a 100644 --- a/clients/client-servicediscovery/src/commands/GetServiceCommand.ts +++ b/clients/client-servicediscovery/src/commands/GetServiceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceRequest, GetServiceResponse } from "../models/models_0"; +import type { GetServiceRequest, GetServiceResponse } from "../models/models_0"; import { GetService } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/ListInstancesCommand.ts b/clients/client-servicediscovery/src/commands/ListInstancesCommand.ts index 9aa33c511cbcb..db85ad18f7be1 100644 --- a/clients/client-servicediscovery/src/commands/ListInstancesCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListInstancesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstancesRequest, ListInstancesResponse } from "../models/models_0"; +import type { ListInstancesRequest, ListInstancesResponse } from "../models/models_0"; import { ListInstances } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/ListNamespacesCommand.ts b/clients/client-servicediscovery/src/commands/ListNamespacesCommand.ts index c160123ee4aea..e3242b6f5b942 100644 --- a/clients/client-servicediscovery/src/commands/ListNamespacesCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListNamespacesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_0"; +import type { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_0"; import { ListNamespaces } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/ListOperationsCommand.ts b/clients/client-servicediscovery/src/commands/ListOperationsCommand.ts index 4965d3e944c8b..3f2d8bdfaa143 100644 --- a/clients/client-servicediscovery/src/commands/ListOperationsCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListOperationsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOperationsRequest, ListOperationsResponse } from "../models/models_0"; +import type { ListOperationsRequest, ListOperationsResponse } from "../models/models_0"; import { ListOperations } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/ListServicesCommand.ts b/clients/client-servicediscovery/src/commands/ListServicesCommand.ts index 02b749e36dd9a..b911551d040d4 100644 --- a/clients/client-servicediscovery/src/commands/ListServicesCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListServicesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicesRequest, ListServicesResponse } from "../models/models_0"; +import type { ListServicesRequest, ListServicesResponse } from "../models/models_0"; import { ListServices } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/ListTagsForResourceCommand.ts b/clients/client-servicediscovery/src/commands/ListTagsForResourceCommand.ts index 5bdd2cc7205c1..be37bdd5296b9 100644 --- a/clients/client-servicediscovery/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-servicediscovery/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/RegisterInstanceCommand.ts b/clients/client-servicediscovery/src/commands/RegisterInstanceCommand.ts index 79bf320ccb357..6256a77861138 100644 --- a/clients/client-servicediscovery/src/commands/RegisterInstanceCommand.ts +++ b/clients/client-servicediscovery/src/commands/RegisterInstanceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterInstanceRequest, RegisterInstanceResponse } from "../models/models_0"; +import type { RegisterInstanceRequest, RegisterInstanceResponse } from "../models/models_0"; import { RegisterInstance } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/TagResourceCommand.ts b/clients/client-servicediscovery/src/commands/TagResourceCommand.ts index 3b02038091916..24c3899089cd5 100644 --- a/clients/client-servicediscovery/src/commands/TagResourceCommand.ts +++ b/clients/client-servicediscovery/src/commands/TagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/UntagResourceCommand.ts b/clients/client-servicediscovery/src/commands/UntagResourceCommand.ts index 8e595c7c4ca94..b246431daa747 100644 --- a/clients/client-servicediscovery/src/commands/UntagResourceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UntagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/UpdateHttpNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/UpdateHttpNamespaceCommand.ts index d400257c556c8..01b1f00a565e2 100644 --- a/clients/client-servicediscovery/src/commands/UpdateHttpNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdateHttpNamespaceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHttpNamespaceRequest, UpdateHttpNamespaceResponse } from "../models/models_0"; +import type { UpdateHttpNamespaceRequest, UpdateHttpNamespaceResponse } from "../models/models_0"; import { UpdateHttpNamespace } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/UpdateInstanceCustomHealthStatusCommand.ts b/clients/client-servicediscovery/src/commands/UpdateInstanceCustomHealthStatusCommand.ts index 4091669a5d8ba..eaeef5b920918 100644 --- a/clients/client-servicediscovery/src/commands/UpdateInstanceCustomHealthStatusCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdateInstanceCustomHealthStatusCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInstanceCustomHealthStatusRequest } from "../models/models_0"; +import type { UpdateInstanceCustomHealthStatusRequest } from "../models/models_0"; import { UpdateInstanceCustomHealthStatus } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/UpdatePrivateDnsNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/UpdatePrivateDnsNamespaceCommand.ts index 0a8b7434cc1c8..fdb51f55c5585 100644 --- a/clients/client-servicediscovery/src/commands/UpdatePrivateDnsNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdatePrivateDnsNamespaceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePrivateDnsNamespaceRequest, UpdatePrivateDnsNamespaceResponse } from "../models/models_0"; +import type { UpdatePrivateDnsNamespaceRequest, UpdatePrivateDnsNamespaceResponse } from "../models/models_0"; import { UpdatePrivateDnsNamespace } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/UpdatePublicDnsNamespaceCommand.ts b/clients/client-servicediscovery/src/commands/UpdatePublicDnsNamespaceCommand.ts index f1f251c90ed96..b6755c7e5860d 100644 --- a/clients/client-servicediscovery/src/commands/UpdatePublicDnsNamespaceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdatePublicDnsNamespaceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePublicDnsNamespaceRequest, UpdatePublicDnsNamespaceResponse } from "../models/models_0"; +import type { UpdatePublicDnsNamespaceRequest, UpdatePublicDnsNamespaceResponse } from "../models/models_0"; import { UpdatePublicDnsNamespace } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/UpdateServiceAttributesCommand.ts b/clients/client-servicediscovery/src/commands/UpdateServiceAttributesCommand.ts index 5c38cd190ef68..8f8500ab1faed 100644 --- a/clients/client-servicediscovery/src/commands/UpdateServiceAttributesCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdateServiceAttributesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceAttributesRequest, UpdateServiceAttributesResponse } from "../models/models_0"; +import type { UpdateServiceAttributesRequest, UpdateServiceAttributesResponse } from "../models/models_0"; import { UpdateServiceAttributes } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/commands/UpdateServiceCommand.ts b/clients/client-servicediscovery/src/commands/UpdateServiceCommand.ts index c407584596fb4..7d0eca691028f 100644 --- a/clients/client-servicediscovery/src/commands/UpdateServiceCommand.ts +++ b/clients/client-servicediscovery/src/commands/UpdateServiceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0"; +import type { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0"; import { UpdateService } from "../schemas/schemas_0"; -import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient"; +import type { + ServiceDiscoveryClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../ServiceDiscoveryClient"; /** * @public diff --git a/clients/client-servicediscovery/src/endpoint/EndpointParameters.ts b/clients/client-servicediscovery/src/endpoint/EndpointParameters.ts index 04323dd910676..97f5f0d1a7518 100644 --- a/clients/client-servicediscovery/src/endpoint/EndpointParameters.ts +++ b/clients/client-servicediscovery/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-servicediscovery/src/endpoint/endpointResolver.ts b/clients/client-servicediscovery/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-servicediscovery/src/endpoint/endpointResolver.ts +++ b/clients/client-servicediscovery/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-servicediscovery/src/extensionConfiguration.ts b/clients/client-servicediscovery/src/extensionConfiguration.ts index 3351b6f48e6bc..bc0a2d6ebe803 100644 --- a/clients/client-servicediscovery/src/extensionConfiguration.ts +++ b/clients/client-servicediscovery/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-servicediscovery/src/models/ServiceDiscoveryServiceException.ts b/clients/client-servicediscovery/src/models/ServiceDiscoveryServiceException.ts index 4ad4107e4b580..2868e17cfa2b8 100644 --- a/clients/client-servicediscovery/src/models/ServiceDiscoveryServiceException.ts +++ b/clients/client-servicediscovery/src/models/ServiceDiscoveryServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-servicediscovery/src/models/errors.ts b/clients/client-servicediscovery/src/models/errors.ts index 6651e7ad13e8d..419ec9571540c 100644 --- a/clients/client-servicediscovery/src/models/errors.ts +++ b/clients/client-servicediscovery/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ServiceDiscoveryServiceException as __BaseException } from "./ServiceDiscoveryServiceException"; diff --git a/clients/client-servicediscovery/src/pagination/GetInstancesHealthStatusPaginator.ts b/clients/client-servicediscovery/src/pagination/GetInstancesHealthStatusPaginator.ts index 459037d76d75f..ad076a79277ee 100644 --- a/clients/client-servicediscovery/src/pagination/GetInstancesHealthStatusPaginator.ts +++ b/clients/client-servicediscovery/src/pagination/GetInstancesHealthStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetInstancesHealthStatusCommand, diff --git a/clients/client-servicediscovery/src/pagination/Interfaces.ts b/clients/client-servicediscovery/src/pagination/Interfaces.ts index 1842e68375ffd..985fca30d66ed 100644 --- a/clients/client-servicediscovery/src/pagination/Interfaces.ts +++ b/clients/client-servicediscovery/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ServiceDiscoveryClient } from "../ServiceDiscoveryClient"; diff --git a/clients/client-servicediscovery/src/pagination/ListInstancesPaginator.ts b/clients/client-servicediscovery/src/pagination/ListInstancesPaginator.ts index 43e6a97dbc319..cdd8f3c464e4d 100644 --- a/clients/client-servicediscovery/src/pagination/ListInstancesPaginator.ts +++ b/clients/client-servicediscovery/src/pagination/ListInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstancesCommand, diff --git a/clients/client-servicediscovery/src/pagination/ListNamespacesPaginator.ts b/clients/client-servicediscovery/src/pagination/ListNamespacesPaginator.ts index 3ab588b2cf8e7..3fdb72733ee48 100644 --- a/clients/client-servicediscovery/src/pagination/ListNamespacesPaginator.ts +++ b/clients/client-servicediscovery/src/pagination/ListNamespacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNamespacesCommand, diff --git a/clients/client-servicediscovery/src/pagination/ListOperationsPaginator.ts b/clients/client-servicediscovery/src/pagination/ListOperationsPaginator.ts index 849698ae20205..91f5a689db7f9 100644 --- a/clients/client-servicediscovery/src/pagination/ListOperationsPaginator.ts +++ b/clients/client-servicediscovery/src/pagination/ListOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOperationsCommand, diff --git a/clients/client-servicediscovery/src/pagination/ListServicesPaginator.ts b/clients/client-servicediscovery/src/pagination/ListServicesPaginator.ts index 104e5df8bc176..efc5107021752 100644 --- a/clients/client-servicediscovery/src/pagination/ListServicesPaginator.ts +++ b/clients/client-servicediscovery/src/pagination/ListServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicesCommand, diff --git a/clients/client-servicediscovery/src/runtimeConfig.browser.ts b/clients/client-servicediscovery/src/runtimeConfig.browser.ts index 8bf085168a062..ae21d0ff2a1f0 100644 --- a/clients/client-servicediscovery/src/runtimeConfig.browser.ts +++ b/clients/client-servicediscovery/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient"; /** * @internal diff --git a/clients/client-servicediscovery/src/runtimeConfig.native.ts b/clients/client-servicediscovery/src/runtimeConfig.native.ts index ba4d48250d769..4824f8ea340e4 100644 --- a/clients/client-servicediscovery/src/runtimeConfig.native.ts +++ b/clients/client-servicediscovery/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient"; +import type { ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient"; /** * @internal diff --git a/clients/client-servicediscovery/src/runtimeConfig.shared.ts b/clients/client-servicediscovery/src/runtimeConfig.shared.ts index 8610cce6dce81..58bb9a95297d8 100644 --- a/clients/client-servicediscovery/src/runtimeConfig.shared.ts +++ b/clients/client-servicediscovery/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultServiceDiscoveryHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient"; +import type { ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient"; /** * @internal diff --git a/clients/client-servicediscovery/src/runtimeConfig.ts b/clients/client-servicediscovery/src/runtimeConfig.ts index 1f98ffdfa3c68..319ce3b5f647d 100644 --- a/clients/client-servicediscovery/src/runtimeConfig.ts +++ b/clients/client-servicediscovery/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { ServiceDiscoveryClientConfig } from "./ServiceDiscoveryClient"; /** * @internal diff --git a/clients/client-servicediscovery/src/runtimeExtensions.ts b/clients/client-servicediscovery/src/runtimeExtensions.ts index 087dfc4323f37..e981d8cd9d4f8 100644 --- a/clients/client-servicediscovery/src/runtimeExtensions.ts +++ b/clients/client-servicediscovery/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ServiceDiscoveryExtensionConfiguration } from "./extensionConfiguration"; +import type { ServiceDiscoveryExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-servicediscovery/src/schemas/schemas_0.ts b/clients/client-servicediscovery/src/schemas/schemas_0.ts index ee0326d33fd60..1d7ae2b674e58 100644 --- a/clients/client-servicediscovery/src/schemas/schemas_0.ts +++ b/clients/client-servicediscovery/src/schemas/schemas_0.ts @@ -217,7 +217,7 @@ const n0 = "com.amazonaws.servicediscovery"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ses/package.json b/clients/client-ses/package.json index 89df0217fceec..779aed0e06366 100644 --- a/clients/client-ses/package.json +++ b/clients/client-ses/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ses/src/SES.ts b/clients/client-ses/src/SES.ts index e8d6d15658cc9..f69a9d052c99e 100644 --- a/clients/client-ses/src/SES.ts +++ b/clients/client-ses/src/SES.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CloneReceiptRuleSetCommand, @@ -345,7 +345,7 @@ import { VerifyEmailIdentityCommandInput, VerifyEmailIdentityCommandOutput, } from "./commands/VerifyEmailIdentityCommand"; -import { SESClient, SESClientConfig } from "./SESClient"; +import { SESClient } from "./SESClient"; const commands = { CloneReceiptRuleSetCommand, diff --git a/clients/client-ses/src/SESClient.ts b/clients/client-ses/src/SESClient.ts index a34cf5835f66b..97319b3172296 100644 --- a/clients/client-ses/src/SESClient.ts +++ b/clients/client-ses/src/SESClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSESHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -285,7 +294,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ses/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ses/src/auth/httpAuthExtensionConfiguration.ts index 29ee5b3d5f862..e8f26b31c9a39 100644 --- a/clients/client-ses/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ses/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SESHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SESHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ses/src/auth/httpAuthSchemeProvider.ts b/clients/client-ses/src/auth/httpAuthSchemeProvider.ts index 4cc2e8be2c991..20739b114cd11 100644 --- a/clients/client-ses/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ses/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SESClientConfig, SESClientResolvedConfig } from "../SESClient"; +import { type SESClientResolvedConfig, SESClientConfig } from "../SESClient"; /** * @internal diff --git a/clients/client-ses/src/commands/CloneReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/CloneReceiptRuleSetCommand.ts index b005915427730..7a9129903c261 100644 --- a/clients/client-ses/src/commands/CloneReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/CloneReceiptRuleSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CloneReceiptRuleSetRequest, CloneReceiptRuleSetResponse } from "../models/models_0"; +import type { CloneReceiptRuleSetRequest, CloneReceiptRuleSetResponse } from "../models/models_0"; import { CloneReceiptRuleSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/CreateConfigurationSetCommand.ts b/clients/client-ses/src/commands/CreateConfigurationSetCommand.ts index 63bae1f33c960..1463f60517541 100644 --- a/clients/client-ses/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-ses/src/commands/CreateConfigurationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfigurationSetRequest, CreateConfigurationSetResponse } from "../models/models_0"; +import type { CreateConfigurationSetRequest, CreateConfigurationSetResponse } from "../models/models_0"; import { CreateConfigurationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/CreateConfigurationSetEventDestinationCommand.ts b/clients/client-ses/src/commands/CreateConfigurationSetEventDestinationCommand.ts index 457fea0f3c808..1093ad4c51c5b 100644 --- a/clients/client-ses/src/commands/CreateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-ses/src/commands/CreateConfigurationSetEventDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateConfigurationSetEventDestinationRequest, CreateConfigurationSetEventDestinationResponse, } from "../models/models_0"; import { CreateConfigurationSetEventDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/CreateConfigurationSetTrackingOptionsCommand.ts b/clients/client-ses/src/commands/CreateConfigurationSetTrackingOptionsCommand.ts index a2597eb2adcb3..015532e0b472d 100644 --- a/clients/client-ses/src/commands/CreateConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-ses/src/commands/CreateConfigurationSetTrackingOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateConfigurationSetTrackingOptionsRequest, CreateConfigurationSetTrackingOptionsResponse, } from "../models/models_0"; import { CreateConfigurationSetTrackingOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/CreateCustomVerificationEmailTemplateCommand.ts b/clients/client-ses/src/commands/CreateCustomVerificationEmailTemplateCommand.ts index ce9c3f79ffbdd..63437df870c1b 100644 --- a/clients/client-ses/src/commands/CreateCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-ses/src/commands/CreateCustomVerificationEmailTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomVerificationEmailTemplateRequest } from "../models/models_0"; +import type { CreateCustomVerificationEmailTemplateRequest } from "../models/models_0"; import { CreateCustomVerificationEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/CreateReceiptFilterCommand.ts b/clients/client-ses/src/commands/CreateReceiptFilterCommand.ts index ea215903ae052..7dbffcb461355 100644 --- a/clients/client-ses/src/commands/CreateReceiptFilterCommand.ts +++ b/clients/client-ses/src/commands/CreateReceiptFilterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReceiptFilterRequest, CreateReceiptFilterResponse } from "../models/models_0"; +import type { CreateReceiptFilterRequest, CreateReceiptFilterResponse } from "../models/models_0"; import { CreateReceiptFilter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/CreateReceiptRuleCommand.ts b/clients/client-ses/src/commands/CreateReceiptRuleCommand.ts index c460096ac7f0c..33b5850715e79 100644 --- a/clients/client-ses/src/commands/CreateReceiptRuleCommand.ts +++ b/clients/client-ses/src/commands/CreateReceiptRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReceiptRuleRequest, CreateReceiptRuleResponse } from "../models/models_0"; +import type { CreateReceiptRuleRequest, CreateReceiptRuleResponse } from "../models/models_0"; import { CreateReceiptRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/CreateReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/CreateReceiptRuleSetCommand.ts index aa79c36ef8b79..153812270cf4a 100644 --- a/clients/client-ses/src/commands/CreateReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/CreateReceiptRuleSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReceiptRuleSetRequest, CreateReceiptRuleSetResponse } from "../models/models_0"; +import type { CreateReceiptRuleSetRequest, CreateReceiptRuleSetResponse } from "../models/models_0"; import { CreateReceiptRuleSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/CreateTemplateCommand.ts b/clients/client-ses/src/commands/CreateTemplateCommand.ts index eaca01efe6f34..bcd404ec0496e 100644 --- a/clients/client-ses/src/commands/CreateTemplateCommand.ts +++ b/clients/client-ses/src/commands/CreateTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_0"; +import type { CreateTemplateRequest, CreateTemplateResponse } from "../models/models_0"; import { CreateTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-ses/src/commands/DeleteConfigurationSetCommand.ts index b9f8f04476732..871f9cf085288 100644 --- a/clients/client-ses/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-ses/src/commands/DeleteConfigurationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationSetRequest, DeleteConfigurationSetResponse } from "../models/models_0"; +import type { DeleteConfigurationSetRequest, DeleteConfigurationSetResponse } from "../models/models_0"; import { DeleteConfigurationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteConfigurationSetEventDestinationCommand.ts b/clients/client-ses/src/commands/DeleteConfigurationSetEventDestinationCommand.ts index b7823a0d3b92d..f693dee2b7cfc 100644 --- a/clients/client-ses/src/commands/DeleteConfigurationSetEventDestinationCommand.ts +++ b/clients/client-ses/src/commands/DeleteConfigurationSetEventDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteConfigurationSetEventDestinationRequest, DeleteConfigurationSetEventDestinationResponse, } from "../models/models_0"; import { DeleteConfigurationSetEventDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteConfigurationSetTrackingOptionsCommand.ts b/clients/client-ses/src/commands/DeleteConfigurationSetTrackingOptionsCommand.ts index 6df3fc8ad87f1..655553c0edb4e 100644 --- a/clients/client-ses/src/commands/DeleteConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-ses/src/commands/DeleteConfigurationSetTrackingOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteConfigurationSetTrackingOptionsRequest, DeleteConfigurationSetTrackingOptionsResponse, } from "../models/models_0"; import { DeleteConfigurationSetTrackingOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts b/clients/client-ses/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts index 359925e650c2f..d6eba176d79a0 100644 --- a/clients/client-ses/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-ses/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomVerificationEmailTemplateRequest } from "../models/models_0"; +import type { DeleteCustomVerificationEmailTemplateRequest } from "../models/models_0"; import { DeleteCustomVerificationEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteIdentityCommand.ts b/clients/client-ses/src/commands/DeleteIdentityCommand.ts index 6109cd7db340e..1a11061430720 100644 --- a/clients/client-ses/src/commands/DeleteIdentityCommand.ts +++ b/clients/client-ses/src/commands/DeleteIdentityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentityRequest, DeleteIdentityResponse } from "../models/models_0"; +import type { DeleteIdentityRequest, DeleteIdentityResponse } from "../models/models_0"; import { DeleteIdentity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteIdentityPolicyCommand.ts b/clients/client-ses/src/commands/DeleteIdentityPolicyCommand.ts index 9a8942637afb0..01923ca5b6e9b 100644 --- a/clients/client-ses/src/commands/DeleteIdentityPolicyCommand.ts +++ b/clients/client-ses/src/commands/DeleteIdentityPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentityPolicyRequest, DeleteIdentityPolicyResponse } from "../models/models_0"; +import type { DeleteIdentityPolicyRequest, DeleteIdentityPolicyResponse } from "../models/models_0"; import { DeleteIdentityPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteReceiptFilterCommand.ts b/clients/client-ses/src/commands/DeleteReceiptFilterCommand.ts index b41638c56a1f4..36f0dccc01555 100644 --- a/clients/client-ses/src/commands/DeleteReceiptFilterCommand.ts +++ b/clients/client-ses/src/commands/DeleteReceiptFilterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReceiptFilterRequest, DeleteReceiptFilterResponse } from "../models/models_0"; +import type { DeleteReceiptFilterRequest, DeleteReceiptFilterResponse } from "../models/models_0"; import { DeleteReceiptFilter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteReceiptRuleCommand.ts b/clients/client-ses/src/commands/DeleteReceiptRuleCommand.ts index 522f5408081ca..bdc6c04b7016c 100644 --- a/clients/client-ses/src/commands/DeleteReceiptRuleCommand.ts +++ b/clients/client-ses/src/commands/DeleteReceiptRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReceiptRuleRequest, DeleteReceiptRuleResponse } from "../models/models_0"; +import type { DeleteReceiptRuleRequest, DeleteReceiptRuleResponse } from "../models/models_0"; import { DeleteReceiptRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/DeleteReceiptRuleSetCommand.ts index 566b3d7031828..391c9b0b93917 100644 --- a/clients/client-ses/src/commands/DeleteReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/DeleteReceiptRuleSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReceiptRuleSetRequest, DeleteReceiptRuleSetResponse } from "../models/models_0"; +import type { DeleteReceiptRuleSetRequest, DeleteReceiptRuleSetResponse } from "../models/models_0"; import { DeleteReceiptRuleSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteTemplateCommand.ts b/clients/client-ses/src/commands/DeleteTemplateCommand.ts index 0043c10100cb3..78a15d4f18b05 100644 --- a/clients/client-ses/src/commands/DeleteTemplateCommand.ts +++ b/clients/client-ses/src/commands/DeleteTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTemplateRequest, DeleteTemplateResponse } from "../models/models_0"; +import type { DeleteTemplateRequest, DeleteTemplateResponse } from "../models/models_0"; import { DeleteTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DeleteVerifiedEmailAddressCommand.ts b/clients/client-ses/src/commands/DeleteVerifiedEmailAddressCommand.ts index 3d66ef7ae8e27..a9070608a7a65 100644 --- a/clients/client-ses/src/commands/DeleteVerifiedEmailAddressCommand.ts +++ b/clients/client-ses/src/commands/DeleteVerifiedEmailAddressCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVerifiedEmailAddressRequest } from "../models/models_0"; +import type { DeleteVerifiedEmailAddressRequest } from "../models/models_0"; import { DeleteVerifiedEmailAddress } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DescribeActiveReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/DescribeActiveReceiptRuleSetCommand.ts index 36437994eb03d..9723e87daeac0 100644 --- a/clients/client-ses/src/commands/DescribeActiveReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/DescribeActiveReceiptRuleSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeActiveReceiptRuleSetRequest, DescribeActiveReceiptRuleSetResponse } from "../models/models_0"; +import type { DescribeActiveReceiptRuleSetRequest, DescribeActiveReceiptRuleSetResponse } from "../models/models_0"; import { DescribeActiveReceiptRuleSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DescribeConfigurationSetCommand.ts b/clients/client-ses/src/commands/DescribeConfigurationSetCommand.ts index 6250989ceb94f..9e4a753ea5f78 100644 --- a/clients/client-ses/src/commands/DescribeConfigurationSetCommand.ts +++ b/clients/client-ses/src/commands/DescribeConfigurationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConfigurationSetRequest, DescribeConfigurationSetResponse } from "../models/models_0"; +import type { DescribeConfigurationSetRequest, DescribeConfigurationSetResponse } from "../models/models_0"; import { DescribeConfigurationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DescribeReceiptRuleCommand.ts b/clients/client-ses/src/commands/DescribeReceiptRuleCommand.ts index ad13f5a01e2bb..6ced6649d578a 100644 --- a/clients/client-ses/src/commands/DescribeReceiptRuleCommand.ts +++ b/clients/client-ses/src/commands/DescribeReceiptRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReceiptRuleRequest, DescribeReceiptRuleResponse } from "../models/models_0"; +import type { DescribeReceiptRuleRequest, DescribeReceiptRuleResponse } from "../models/models_0"; import { DescribeReceiptRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/DescribeReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/DescribeReceiptRuleSetCommand.ts index 09045599c2336..7d1554323faa3 100644 --- a/clients/client-ses/src/commands/DescribeReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/DescribeReceiptRuleSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReceiptRuleSetRequest, DescribeReceiptRuleSetResponse } from "../models/models_0"; +import type { DescribeReceiptRuleSetRequest, DescribeReceiptRuleSetResponse } from "../models/models_0"; import { DescribeReceiptRuleSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetAccountSendingEnabledCommand.ts b/clients/client-ses/src/commands/GetAccountSendingEnabledCommand.ts index 2125008446fb8..be388b4e1dc6b 100644 --- a/clients/client-ses/src/commands/GetAccountSendingEnabledCommand.ts +++ b/clients/client-ses/src/commands/GetAccountSendingEnabledCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountSendingEnabledResponse } from "../models/models_0"; +import type { GetAccountSendingEnabledResponse } from "../models/models_0"; import { GetAccountSendingEnabled } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetCustomVerificationEmailTemplateCommand.ts b/clients/client-ses/src/commands/GetCustomVerificationEmailTemplateCommand.ts index ab34360cd7442..d78fe9b24687b 100644 --- a/clients/client-ses/src/commands/GetCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-ses/src/commands/GetCustomVerificationEmailTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCustomVerificationEmailTemplateRequest, GetCustomVerificationEmailTemplateResponse, } from "../models/models_0"; import { GetCustomVerificationEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetIdentityDkimAttributesCommand.ts b/clients/client-ses/src/commands/GetIdentityDkimAttributesCommand.ts index 895ee12d0833a..01144088a708a 100644 --- a/clients/client-ses/src/commands/GetIdentityDkimAttributesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityDkimAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentityDkimAttributesRequest, GetIdentityDkimAttributesResponse } from "../models/models_0"; +import type { GetIdentityDkimAttributesRequest, GetIdentityDkimAttributesResponse } from "../models/models_0"; import { GetIdentityDkimAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetIdentityMailFromDomainAttributesCommand.ts b/clients/client-ses/src/commands/GetIdentityMailFromDomainAttributesCommand.ts index 855521a0323f8..39ee87d072a52 100644 --- a/clients/client-ses/src/commands/GetIdentityMailFromDomainAttributesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityMailFromDomainAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetIdentityMailFromDomainAttributesRequest, GetIdentityMailFromDomainAttributesResponse, } from "../models/models_0"; import { GetIdentityMailFromDomainAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetIdentityNotificationAttributesCommand.ts b/clients/client-ses/src/commands/GetIdentityNotificationAttributesCommand.ts index e2d8ba8e92525..e19081b3e0952 100644 --- a/clients/client-ses/src/commands/GetIdentityNotificationAttributesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityNotificationAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetIdentityNotificationAttributesRequest, GetIdentityNotificationAttributesResponse, } from "../models/models_0"; import { GetIdentityNotificationAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetIdentityPoliciesCommand.ts b/clients/client-ses/src/commands/GetIdentityPoliciesCommand.ts index eeaf5d9663e8b..f9fb40794f4ee 100644 --- a/clients/client-ses/src/commands/GetIdentityPoliciesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityPoliciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentityPoliciesRequest, GetIdentityPoliciesResponse } from "../models/models_0"; +import type { GetIdentityPoliciesRequest, GetIdentityPoliciesResponse } from "../models/models_0"; import { GetIdentityPolicies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetIdentityVerificationAttributesCommand.ts b/clients/client-ses/src/commands/GetIdentityVerificationAttributesCommand.ts index cf93885b81ed2..058b25ab01088 100644 --- a/clients/client-ses/src/commands/GetIdentityVerificationAttributesCommand.ts +++ b/clients/client-ses/src/commands/GetIdentityVerificationAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetIdentityVerificationAttributesRequest, GetIdentityVerificationAttributesResponse, } from "../models/models_0"; import { GetIdentityVerificationAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetSendQuotaCommand.ts b/clients/client-ses/src/commands/GetSendQuotaCommand.ts index da19e199b6858..1d09ca291b817 100644 --- a/clients/client-ses/src/commands/GetSendQuotaCommand.ts +++ b/clients/client-ses/src/commands/GetSendQuotaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSendQuotaResponse } from "../models/models_0"; +import type { GetSendQuotaResponse } from "../models/models_0"; import { GetSendQuota } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetSendStatisticsCommand.ts b/clients/client-ses/src/commands/GetSendStatisticsCommand.ts index 98eff49128f64..71e4fa3116b4a 100644 --- a/clients/client-ses/src/commands/GetSendStatisticsCommand.ts +++ b/clients/client-ses/src/commands/GetSendStatisticsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSendStatisticsResponse } from "../models/models_0"; +import type { GetSendStatisticsResponse } from "../models/models_0"; import { GetSendStatistics } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/GetTemplateCommand.ts b/clients/client-ses/src/commands/GetTemplateCommand.ts index c93b5d7903a59..2dba399888f0f 100644 --- a/clients/client-ses/src/commands/GetTemplateCommand.ts +++ b/clients/client-ses/src/commands/GetTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTemplateRequest, GetTemplateResponse } from "../models/models_0"; +import type { GetTemplateRequest, GetTemplateResponse } from "../models/models_0"; import { GetTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/ListConfigurationSetsCommand.ts b/clients/client-ses/src/commands/ListConfigurationSetsCommand.ts index d44c761db48b7..9e1b223d9c0e5 100644 --- a/clients/client-ses/src/commands/ListConfigurationSetsCommand.ts +++ b/clients/client-ses/src/commands/ListConfigurationSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0"; +import type { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0"; import { ListConfigurationSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/ListCustomVerificationEmailTemplatesCommand.ts b/clients/client-ses/src/commands/ListCustomVerificationEmailTemplatesCommand.ts index ff87455b4a2c0..4ce47963d7c7d 100644 --- a/clients/client-ses/src/commands/ListCustomVerificationEmailTemplatesCommand.ts +++ b/clients/client-ses/src/commands/ListCustomVerificationEmailTemplatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCustomVerificationEmailTemplatesRequest, ListCustomVerificationEmailTemplatesResponse, } from "../models/models_0"; import { ListCustomVerificationEmailTemplates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/ListIdentitiesCommand.ts b/clients/client-ses/src/commands/ListIdentitiesCommand.ts index 5905d1b0eb243..04f2bc21550b9 100644 --- a/clients/client-ses/src/commands/ListIdentitiesCommand.ts +++ b/clients/client-ses/src/commands/ListIdentitiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentitiesRequest, ListIdentitiesResponse } from "../models/models_0"; +import type { ListIdentitiesRequest, ListIdentitiesResponse } from "../models/models_0"; import { ListIdentities } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/ListIdentityPoliciesCommand.ts b/clients/client-ses/src/commands/ListIdentityPoliciesCommand.ts index 50813d36927b8..bddeb4b3d1bbf 100644 --- a/clients/client-ses/src/commands/ListIdentityPoliciesCommand.ts +++ b/clients/client-ses/src/commands/ListIdentityPoliciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentityPoliciesRequest, ListIdentityPoliciesResponse } from "../models/models_0"; +import type { ListIdentityPoliciesRequest, ListIdentityPoliciesResponse } from "../models/models_0"; import { ListIdentityPolicies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/ListReceiptFiltersCommand.ts b/clients/client-ses/src/commands/ListReceiptFiltersCommand.ts index 169925b683a03..2b52ae477ad53 100644 --- a/clients/client-ses/src/commands/ListReceiptFiltersCommand.ts +++ b/clients/client-ses/src/commands/ListReceiptFiltersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReceiptFiltersRequest, ListReceiptFiltersResponse } from "../models/models_0"; +import type { ListReceiptFiltersRequest, ListReceiptFiltersResponse } from "../models/models_0"; import { ListReceiptFilters } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/ListReceiptRuleSetsCommand.ts b/clients/client-ses/src/commands/ListReceiptRuleSetsCommand.ts index 887f7d84fe1ac..1a7db5ae7bc59 100644 --- a/clients/client-ses/src/commands/ListReceiptRuleSetsCommand.ts +++ b/clients/client-ses/src/commands/ListReceiptRuleSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReceiptRuleSetsRequest, ListReceiptRuleSetsResponse } from "../models/models_0"; +import type { ListReceiptRuleSetsRequest, ListReceiptRuleSetsResponse } from "../models/models_0"; import { ListReceiptRuleSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/ListTemplatesCommand.ts b/clients/client-ses/src/commands/ListTemplatesCommand.ts index d492218840544..e6e5d8d4c9b44 100644 --- a/clients/client-ses/src/commands/ListTemplatesCommand.ts +++ b/clients/client-ses/src/commands/ListTemplatesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_0"; +import type { ListTemplatesRequest, ListTemplatesResponse } from "../models/models_0"; import { ListTemplates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/ListVerifiedEmailAddressesCommand.ts b/clients/client-ses/src/commands/ListVerifiedEmailAddressesCommand.ts index ae6b5f544aa35..b3b91a57d01f6 100644 --- a/clients/client-ses/src/commands/ListVerifiedEmailAddressesCommand.ts +++ b/clients/client-ses/src/commands/ListVerifiedEmailAddressesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVerifiedEmailAddressesResponse } from "../models/models_0"; +import type { ListVerifiedEmailAddressesResponse } from "../models/models_0"; import { ListVerifiedEmailAddresses } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts b/clients/client-ses/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts index d35953d8e29a2..45705454f2214 100644 --- a/clients/client-ses/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts +++ b/clients/client-ses/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetDeliveryOptionsRequest, PutConfigurationSetDeliveryOptionsResponse, } from "../models/models_0"; import { PutConfigurationSetDeliveryOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/PutIdentityPolicyCommand.ts b/clients/client-ses/src/commands/PutIdentityPolicyCommand.ts index a1c1d691bcd1e..4c20953f5fc78 100644 --- a/clients/client-ses/src/commands/PutIdentityPolicyCommand.ts +++ b/clients/client-ses/src/commands/PutIdentityPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutIdentityPolicyRequest, PutIdentityPolicyResponse } from "../models/models_0"; +import type { PutIdentityPolicyRequest, PutIdentityPolicyResponse } from "../models/models_0"; import { PutIdentityPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/ReorderReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/ReorderReceiptRuleSetCommand.ts index b7084f332b4b4..24246bd9fe90a 100644 --- a/clients/client-ses/src/commands/ReorderReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/ReorderReceiptRuleSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReorderReceiptRuleSetRequest, ReorderReceiptRuleSetResponse } from "../models/models_0"; +import type { ReorderReceiptRuleSetRequest, ReorderReceiptRuleSetResponse } from "../models/models_0"; import { ReorderReceiptRuleSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SendBounceCommand.ts b/clients/client-ses/src/commands/SendBounceCommand.ts index 6f5e1e2bca582..9bc292fc6d53a 100644 --- a/clients/client-ses/src/commands/SendBounceCommand.ts +++ b/clients/client-ses/src/commands/SendBounceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendBounceRequest, SendBounceResponse } from "../models/models_0"; +import type { SendBounceRequest, SendBounceResponse } from "../models/models_0"; import { SendBounce } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SendBulkTemplatedEmailCommand.ts b/clients/client-ses/src/commands/SendBulkTemplatedEmailCommand.ts index 12c3f06c36a7c..3367b12a0d506 100644 --- a/clients/client-ses/src/commands/SendBulkTemplatedEmailCommand.ts +++ b/clients/client-ses/src/commands/SendBulkTemplatedEmailCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendBulkTemplatedEmailRequest, SendBulkTemplatedEmailResponse } from "../models/models_0"; +import type { SendBulkTemplatedEmailRequest, SendBulkTemplatedEmailResponse } from "../models/models_0"; import { SendBulkTemplatedEmail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SendCustomVerificationEmailCommand.ts b/clients/client-ses/src/commands/SendCustomVerificationEmailCommand.ts index 26053d7d59f1c..37d6f98329701 100644 --- a/clients/client-ses/src/commands/SendCustomVerificationEmailCommand.ts +++ b/clients/client-ses/src/commands/SendCustomVerificationEmailCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendCustomVerificationEmailRequest, SendCustomVerificationEmailResponse } from "../models/models_0"; +import type { SendCustomVerificationEmailRequest, SendCustomVerificationEmailResponse } from "../models/models_0"; import { SendCustomVerificationEmail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SendEmailCommand.ts b/clients/client-ses/src/commands/SendEmailCommand.ts index f4d86340520a5..fbba83b146b03 100644 --- a/clients/client-ses/src/commands/SendEmailCommand.ts +++ b/clients/client-ses/src/commands/SendEmailCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendEmailRequest, SendEmailResponse } from "../models/models_0"; +import type { SendEmailRequest, SendEmailResponse } from "../models/models_0"; import { SendEmail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SendRawEmailCommand.ts b/clients/client-ses/src/commands/SendRawEmailCommand.ts index bad7fad285fd9..a9ef9b2c666cb 100644 --- a/clients/client-ses/src/commands/SendRawEmailCommand.ts +++ b/clients/client-ses/src/commands/SendRawEmailCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendRawEmailRequest, SendRawEmailResponse } from "../models/models_0"; +import type { SendRawEmailRequest, SendRawEmailResponse } from "../models/models_0"; import { SendRawEmail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SendTemplatedEmailCommand.ts b/clients/client-ses/src/commands/SendTemplatedEmailCommand.ts index 0e0897a567762..13fe8f47f7af1 100644 --- a/clients/client-ses/src/commands/SendTemplatedEmailCommand.ts +++ b/clients/client-ses/src/commands/SendTemplatedEmailCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendTemplatedEmailRequest, SendTemplatedEmailResponse } from "../models/models_0"; +import type { SendTemplatedEmailRequest, SendTemplatedEmailResponse } from "../models/models_0"; import { SendTemplatedEmail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SetActiveReceiptRuleSetCommand.ts b/clients/client-ses/src/commands/SetActiveReceiptRuleSetCommand.ts index d5cb874469731..1454d2bd8076a 100644 --- a/clients/client-ses/src/commands/SetActiveReceiptRuleSetCommand.ts +++ b/clients/client-ses/src/commands/SetActiveReceiptRuleSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetActiveReceiptRuleSetRequest, SetActiveReceiptRuleSetResponse } from "../models/models_0"; +import type { SetActiveReceiptRuleSetRequest, SetActiveReceiptRuleSetResponse } from "../models/models_0"; import { SetActiveReceiptRuleSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SetIdentityDkimEnabledCommand.ts b/clients/client-ses/src/commands/SetIdentityDkimEnabledCommand.ts index 3c7127a58c3a5..44941736391c4 100644 --- a/clients/client-ses/src/commands/SetIdentityDkimEnabledCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityDkimEnabledCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetIdentityDkimEnabledRequest, SetIdentityDkimEnabledResponse } from "../models/models_0"; +import type { SetIdentityDkimEnabledRequest, SetIdentityDkimEnabledResponse } from "../models/models_0"; import { SetIdentityDkimEnabled } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SetIdentityFeedbackForwardingEnabledCommand.ts b/clients/client-ses/src/commands/SetIdentityFeedbackForwardingEnabledCommand.ts index 7b7ee1e280ebb..4476881e03de7 100644 --- a/clients/client-ses/src/commands/SetIdentityFeedbackForwardingEnabledCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityFeedbackForwardingEnabledCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { SetIdentityFeedbackForwardingEnabledRequest, SetIdentityFeedbackForwardingEnabledResponse, } from "../models/models_0"; import { SetIdentityFeedbackForwardingEnabled } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts b/clients/client-ses/src/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts index 9ffc9b1a32ae3..0600fe7cb86e9 100644 --- a/clients/client-ses/src/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityHeadersInNotificationsEnabledCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { SetIdentityHeadersInNotificationsEnabledRequest, SetIdentityHeadersInNotificationsEnabledResponse, } from "../models/models_0"; import { SetIdentityHeadersInNotificationsEnabled } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SetIdentityMailFromDomainCommand.ts b/clients/client-ses/src/commands/SetIdentityMailFromDomainCommand.ts index ae83263534d8e..c7d9451f0130c 100644 --- a/clients/client-ses/src/commands/SetIdentityMailFromDomainCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityMailFromDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetIdentityMailFromDomainRequest, SetIdentityMailFromDomainResponse } from "../models/models_0"; +import type { SetIdentityMailFromDomainRequest, SetIdentityMailFromDomainResponse } from "../models/models_0"; import { SetIdentityMailFromDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SetIdentityNotificationTopicCommand.ts b/clients/client-ses/src/commands/SetIdentityNotificationTopicCommand.ts index 45618ce854f87..93ad2c3639d51 100644 --- a/clients/client-ses/src/commands/SetIdentityNotificationTopicCommand.ts +++ b/clients/client-ses/src/commands/SetIdentityNotificationTopicCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetIdentityNotificationTopicRequest, SetIdentityNotificationTopicResponse } from "../models/models_0"; +import type { SetIdentityNotificationTopicRequest, SetIdentityNotificationTopicResponse } from "../models/models_0"; import { SetIdentityNotificationTopic } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/SetReceiptRulePositionCommand.ts b/clients/client-ses/src/commands/SetReceiptRulePositionCommand.ts index e1a286704f28f..814395344ff37 100644 --- a/clients/client-ses/src/commands/SetReceiptRulePositionCommand.ts +++ b/clients/client-ses/src/commands/SetReceiptRulePositionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetReceiptRulePositionRequest, SetReceiptRulePositionResponse } from "../models/models_0"; +import type { SetReceiptRulePositionRequest, SetReceiptRulePositionResponse } from "../models/models_0"; import { SetReceiptRulePosition } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/TestRenderTemplateCommand.ts b/clients/client-ses/src/commands/TestRenderTemplateCommand.ts index edd282973a388..5e1ada9601850 100644 --- a/clients/client-ses/src/commands/TestRenderTemplateCommand.ts +++ b/clients/client-ses/src/commands/TestRenderTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestRenderTemplateRequest, TestRenderTemplateResponse } from "../models/models_0"; +import type { TestRenderTemplateRequest, TestRenderTemplateResponse } from "../models/models_0"; import { TestRenderTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/UpdateAccountSendingEnabledCommand.ts b/clients/client-ses/src/commands/UpdateAccountSendingEnabledCommand.ts index d23568e298362..6b1b62f402f27 100644 --- a/clients/client-ses/src/commands/UpdateAccountSendingEnabledCommand.ts +++ b/clients/client-ses/src/commands/UpdateAccountSendingEnabledCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountSendingEnabledRequest } from "../models/models_0"; +import type { UpdateAccountSendingEnabledRequest } from "../models/models_0"; import { UpdateAccountSendingEnabled } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/UpdateConfigurationSetEventDestinationCommand.ts b/clients/client-ses/src/commands/UpdateConfigurationSetEventDestinationCommand.ts index 16e1b17419caa..ca67338212c51 100644 --- a/clients/client-ses/src/commands/UpdateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-ses/src/commands/UpdateConfigurationSetEventDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateConfigurationSetEventDestinationRequest, UpdateConfigurationSetEventDestinationResponse, } from "../models/models_0"; import { UpdateConfigurationSetEventDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts b/clients/client-ses/src/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts index 95b9f95a2f3d2..70005d476144b 100644 --- a/clients/client-ses/src/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts +++ b/clients/client-ses/src/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfigurationSetReputationMetricsEnabledRequest } from "../models/models_0"; +import type { UpdateConfigurationSetReputationMetricsEnabledRequest } from "../models/models_0"; import { UpdateConfigurationSetReputationMetricsEnabled } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/UpdateConfigurationSetSendingEnabledCommand.ts b/clients/client-ses/src/commands/UpdateConfigurationSetSendingEnabledCommand.ts index dbbe1485687e4..55dc277c23c50 100644 --- a/clients/client-ses/src/commands/UpdateConfigurationSetSendingEnabledCommand.ts +++ b/clients/client-ses/src/commands/UpdateConfigurationSetSendingEnabledCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfigurationSetSendingEnabledRequest } from "../models/models_0"; +import type { UpdateConfigurationSetSendingEnabledRequest } from "../models/models_0"; import { UpdateConfigurationSetSendingEnabled } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/UpdateConfigurationSetTrackingOptionsCommand.ts b/clients/client-ses/src/commands/UpdateConfigurationSetTrackingOptionsCommand.ts index 3b5608b843767..40510d9092626 100644 --- a/clients/client-ses/src/commands/UpdateConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-ses/src/commands/UpdateConfigurationSetTrackingOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateConfigurationSetTrackingOptionsRequest, UpdateConfigurationSetTrackingOptionsResponse, } from "../models/models_0"; import { UpdateConfigurationSetTrackingOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts b/clients/client-ses/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts index 654fcfa40022d..81efb5ee8a0d3 100644 --- a/clients/client-ses/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-ses/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCustomVerificationEmailTemplateRequest } from "../models/models_0"; +import type { UpdateCustomVerificationEmailTemplateRequest } from "../models/models_0"; import { UpdateCustomVerificationEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/UpdateReceiptRuleCommand.ts b/clients/client-ses/src/commands/UpdateReceiptRuleCommand.ts index 54edee434a5a7..04c7ef8896be1 100644 --- a/clients/client-ses/src/commands/UpdateReceiptRuleCommand.ts +++ b/clients/client-ses/src/commands/UpdateReceiptRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReceiptRuleRequest, UpdateReceiptRuleResponse } from "../models/models_0"; +import type { UpdateReceiptRuleRequest, UpdateReceiptRuleResponse } from "../models/models_0"; import { UpdateReceiptRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/UpdateTemplateCommand.ts b/clients/client-ses/src/commands/UpdateTemplateCommand.ts index c960387962419..23f2c07bca4cd 100644 --- a/clients/client-ses/src/commands/UpdateTemplateCommand.ts +++ b/clients/client-ses/src/commands/UpdateTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_0"; +import type { UpdateTemplateRequest, UpdateTemplateResponse } from "../models/models_0"; import { UpdateTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/VerifyDomainDkimCommand.ts b/clients/client-ses/src/commands/VerifyDomainDkimCommand.ts index 1ea42a06b8603..f5d8bcee0471c 100644 --- a/clients/client-ses/src/commands/VerifyDomainDkimCommand.ts +++ b/clients/client-ses/src/commands/VerifyDomainDkimCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyDomainDkimRequest, VerifyDomainDkimResponse } from "../models/models_0"; +import type { VerifyDomainDkimRequest, VerifyDomainDkimResponse } from "../models/models_0"; import { VerifyDomainDkim } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/VerifyDomainIdentityCommand.ts b/clients/client-ses/src/commands/VerifyDomainIdentityCommand.ts index c154f31031964..6e42c39788125 100644 --- a/clients/client-ses/src/commands/VerifyDomainIdentityCommand.ts +++ b/clients/client-ses/src/commands/VerifyDomainIdentityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyDomainIdentityRequest, VerifyDomainIdentityResponse } from "../models/models_0"; +import type { VerifyDomainIdentityRequest, VerifyDomainIdentityResponse } from "../models/models_0"; import { VerifyDomainIdentity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/VerifyEmailAddressCommand.ts b/clients/client-ses/src/commands/VerifyEmailAddressCommand.ts index 52c1c6e6e072f..16053f339fcb8 100644 --- a/clients/client-ses/src/commands/VerifyEmailAddressCommand.ts +++ b/clients/client-ses/src/commands/VerifyEmailAddressCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyEmailAddressRequest } from "../models/models_0"; +import type { VerifyEmailAddressRequest } from "../models/models_0"; import { VerifyEmailAddress } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/commands/VerifyEmailIdentityCommand.ts b/clients/client-ses/src/commands/VerifyEmailIdentityCommand.ts index 383437376cb29..50996c9730e37 100644 --- a/clients/client-ses/src/commands/VerifyEmailIdentityCommand.ts +++ b/clients/client-ses/src/commands/VerifyEmailIdentityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifyEmailIdentityRequest, VerifyEmailIdentityResponse } from "../models/models_0"; +import type { VerifyEmailIdentityRequest, VerifyEmailIdentityResponse } from "../models/models_0"; import { VerifyEmailIdentity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SESClientResolvedConfig } from "../SESClient"; /** * @public diff --git a/clients/client-ses/src/endpoint/EndpointParameters.ts b/clients/client-ses/src/endpoint/EndpointParameters.ts index d56e54a561aad..d7ebbd3ef1299 100644 --- a/clients/client-ses/src/endpoint/EndpointParameters.ts +++ b/clients/client-ses/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ses/src/endpoint/endpointResolver.ts b/clients/client-ses/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ses/src/endpoint/endpointResolver.ts +++ b/clients/client-ses/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ses/src/extensionConfiguration.ts b/clients/client-ses/src/extensionConfiguration.ts index 7dfbb23a91d81..d3c5d55774991 100644 --- a/clients/client-ses/src/extensionConfiguration.ts +++ b/clients/client-ses/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ses/src/models/SESServiceException.ts b/clients/client-ses/src/models/SESServiceException.ts index 01c31d1f39a6b..dc13add038463 100644 --- a/clients/client-ses/src/models/SESServiceException.ts +++ b/clients/client-ses/src/models/SESServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ses/src/models/errors.ts b/clients/client-ses/src/models/errors.ts index 320202b490ff8..968c5ff491271 100644 --- a/clients/client-ses/src/models/errors.ts +++ b/clients/client-ses/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SESServiceException as __BaseException } from "./SESServiceException"; diff --git a/clients/client-ses/src/pagination/Interfaces.ts b/clients/client-ses/src/pagination/Interfaces.ts index 166c9739c77ef..ce9e339e1d254 100644 --- a/clients/client-ses/src/pagination/Interfaces.ts +++ b/clients/client-ses/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SESClient } from "../SESClient"; diff --git a/clients/client-ses/src/pagination/ListCustomVerificationEmailTemplatesPaginator.ts b/clients/client-ses/src/pagination/ListCustomVerificationEmailTemplatesPaginator.ts index 100b5fb907306..9745bd2adbbc1 100644 --- a/clients/client-ses/src/pagination/ListCustomVerificationEmailTemplatesPaginator.ts +++ b/clients/client-ses/src/pagination/ListCustomVerificationEmailTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomVerificationEmailTemplatesCommand, diff --git a/clients/client-ses/src/pagination/ListIdentitiesPaginator.ts b/clients/client-ses/src/pagination/ListIdentitiesPaginator.ts index 958f8a7003b09..4136a0231cb14 100644 --- a/clients/client-ses/src/pagination/ListIdentitiesPaginator.ts +++ b/clients/client-ses/src/pagination/ListIdentitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIdentitiesCommand, diff --git a/clients/client-ses/src/runtimeConfig.browser.ts b/clients/client-ses/src/runtimeConfig.browser.ts index 5acf39c8b9b99..b6b6e7513e003 100644 --- a/clients/client-ses/src/runtimeConfig.browser.ts +++ b/clients/client-ses/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SESClientConfig } from "./SESClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SESClientConfig } from "./SESClient"; /** * @internal diff --git a/clients/client-ses/src/runtimeConfig.native.ts b/clients/client-ses/src/runtimeConfig.native.ts index aa4dbf4c3f61b..f2f813b92ac3b 100644 --- a/clients/client-ses/src/runtimeConfig.native.ts +++ b/clients/client-ses/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SESClientConfig } from "./SESClient"; +import type { SESClientConfig } from "./SESClient"; /** * @internal diff --git a/clients/client-ses/src/runtimeConfig.shared.ts b/clients/client-ses/src/runtimeConfig.shared.ts index d069b0eaf69d8..50bfddf569465 100644 --- a/clients/client-ses/src/runtimeConfig.shared.ts +++ b/clients/client-ses/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSESHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SESClientConfig } from "./SESClient"; +import type { SESClientConfig } from "./SESClient"; /** * @internal diff --git a/clients/client-ses/src/runtimeConfig.ts b/clients/client-ses/src/runtimeConfig.ts index b93cc1f063413..9f4367c6d1368 100644 --- a/clients/client-ses/src/runtimeConfig.ts +++ b/clients/client-ses/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SESClientConfig } from "./SESClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SESClientConfig } from "./SESClient"; /** * @internal diff --git a/clients/client-ses/src/runtimeExtensions.ts b/clients/client-ses/src/runtimeExtensions.ts index bf69a14280a65..821a5b5a5acd8 100644 --- a/clients/client-ses/src/runtimeExtensions.ts +++ b/clients/client-ses/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SESExtensionConfiguration } from "./extensionConfiguration"; +import type { SESExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ses/src/schemas/schemas_0.ts b/clients/client-ses/src/schemas/schemas_0.ts index 52ff19635f420..5766a33fa717c 100644 --- a/clients/client-ses/src/schemas/schemas_0.ts +++ b/clients/client-ses/src/schemas/schemas_0.ts @@ -450,7 +450,7 @@ const n0 = "com.amazonaws.ses"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-sesv2/package.json b/clients/client-sesv2/package.json index 05144630da4cf..ad2421b1a217a 100644 --- a/clients/client-sesv2/package.json +++ b/clients/client-sesv2/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sesv2/src/SESv2.ts b/clients/client-sesv2/src/SESv2.ts index 5e726d5b1ad2a..778da6f99abeb 100644 --- a/clients/client-sesv2/src/SESv2.ts +++ b/clients/client-sesv2/src/SESv2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetMetricDataCommand, @@ -523,7 +523,7 @@ import { UpdateReputationEntityPolicyCommandInput, UpdateReputationEntityPolicyCommandOutput, } from "./commands/UpdateReputationEntityPolicyCommand"; -import { SESv2Client, SESv2ClientConfig } from "./SESv2Client"; +import { SESv2Client } from "./SESv2Client"; const commands = { BatchGetMetricDataCommand, diff --git a/clients/client-sesv2/src/SESv2Client.ts b/clients/client-sesv2/src/SESv2Client.ts index 612e02ae3875c..41dc8629d25fc 100644 --- a/clients/client-sesv2/src/SESv2Client.ts +++ b/clients/client-sesv2/src/SESv2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSESv2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetMetricDataCommandInput, BatchGetMetricDataCommandOutput } from "./commands/BatchGetMetricDataCommand"; @@ -395,7 +404,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sesv2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sesv2/src/auth/httpAuthExtensionConfiguration.ts index 1c196ec9d15f4..7f5bada637c4d 100644 --- a/clients/client-sesv2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sesv2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SESv2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SESv2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sesv2/src/auth/httpAuthSchemeProvider.ts b/clients/client-sesv2/src/auth/httpAuthSchemeProvider.ts index 749a2878cf3bb..59cc69c3775e2 100644 --- a/clients/client-sesv2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sesv2/src/auth/httpAuthSchemeProvider.ts @@ -12,16 +12,16 @@ import { import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { EndpointParameterInstructions, resolveParams } from "@smithy/middleware-endpoint"; import { + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParametersProvider, + type Provider, EndpointV2, HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, HttpAuthSchemeId, HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Logger, - Provider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; diff --git a/clients/client-sesv2/src/commands/BatchGetMetricDataCommand.ts b/clients/client-sesv2/src/commands/BatchGetMetricDataCommand.ts index 1273afc1fe784..837902916c1be 100644 --- a/clients/client-sesv2/src/commands/BatchGetMetricDataCommand.ts +++ b/clients/client-sesv2/src/commands/BatchGetMetricDataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetMetricDataRequest, BatchGetMetricDataResponse } from "../models/models_0"; +import type { BatchGetMetricDataRequest, BatchGetMetricDataResponse } from "../models/models_0"; import { BatchGetMetricData } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CancelExportJobCommand.ts b/clients/client-sesv2/src/commands/CancelExportJobCommand.ts index f1030a81840c1..218b14bae9669 100644 --- a/clients/client-sesv2/src/commands/CancelExportJobCommand.ts +++ b/clients/client-sesv2/src/commands/CancelExportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelExportJobRequest, CancelExportJobResponse } from "../models/models_0"; +import type { CancelExportJobRequest, CancelExportJobResponse } from "../models/models_0"; import { CancelExportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateConfigurationSetCommand.ts b/clients/client-sesv2/src/commands/CreateConfigurationSetCommand.ts index 690d123d7d1f3..615d095adc85e 100644 --- a/clients/client-sesv2/src/commands/CreateConfigurationSetCommand.ts +++ b/clients/client-sesv2/src/commands/CreateConfigurationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfigurationSetRequest, CreateConfigurationSetResponse } from "../models/models_0"; +import type { CreateConfigurationSetRequest, CreateConfigurationSetResponse } from "../models/models_0"; import { CreateConfigurationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateConfigurationSetEventDestinationCommand.ts b/clients/client-sesv2/src/commands/CreateConfigurationSetEventDestinationCommand.ts index d3eb54d732c1a..51c439f2dc517 100644 --- a/clients/client-sesv2/src/commands/CreateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/CreateConfigurationSetEventDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateConfigurationSetEventDestinationRequest, CreateConfigurationSetEventDestinationResponse, } from "../models/models_0"; import { CreateConfigurationSetEventDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateContactCommand.ts b/clients/client-sesv2/src/commands/CreateContactCommand.ts index 376bd9c7ed48c..7a41040d8686c 100644 --- a/clients/client-sesv2/src/commands/CreateContactCommand.ts +++ b/clients/client-sesv2/src/commands/CreateContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactRequest, CreateContactResponse } from "../models/models_0"; +import type { CreateContactRequest, CreateContactResponse } from "../models/models_0"; import { CreateContact } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateContactListCommand.ts b/clients/client-sesv2/src/commands/CreateContactListCommand.ts index 49ed2b537bbcf..4301175f48f75 100644 --- a/clients/client-sesv2/src/commands/CreateContactListCommand.ts +++ b/clients/client-sesv2/src/commands/CreateContactListCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactListRequest, CreateContactListResponse } from "../models/models_0"; +import type { CreateContactListRequest, CreateContactListResponse } from "../models/models_0"; import { CreateContactList } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateCustomVerificationEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/CreateCustomVerificationEmailTemplateCommand.ts index 91108be8e1d2a..1c0554cf01eaa 100644 --- a/clients/client-sesv2/src/commands/CreateCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/CreateCustomVerificationEmailTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateCustomVerificationEmailTemplateRequest, CreateCustomVerificationEmailTemplateResponse, } from "../models/models_0"; import { CreateCustomVerificationEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateDedicatedIpPoolCommand.ts b/clients/client-sesv2/src/commands/CreateDedicatedIpPoolCommand.ts index 88a8489fed56a..47660f8ea721c 100644 --- a/clients/client-sesv2/src/commands/CreateDedicatedIpPoolCommand.ts +++ b/clients/client-sesv2/src/commands/CreateDedicatedIpPoolCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDedicatedIpPoolRequest, CreateDedicatedIpPoolResponse } from "../models/models_0"; +import type { CreateDedicatedIpPoolRequest, CreateDedicatedIpPoolResponse } from "../models/models_0"; import { CreateDedicatedIpPool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateDeliverabilityTestReportCommand.ts b/clients/client-sesv2/src/commands/CreateDeliverabilityTestReportCommand.ts index bd4a3814526a0..dd91c66e56f00 100644 --- a/clients/client-sesv2/src/commands/CreateDeliverabilityTestReportCommand.ts +++ b/clients/client-sesv2/src/commands/CreateDeliverabilityTestReportCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDeliverabilityTestReportRequest, CreateDeliverabilityTestReportResponse } from "../models/models_0"; +import type { CreateDeliverabilityTestReportRequest, CreateDeliverabilityTestReportResponse } from "../models/models_0"; import { CreateDeliverabilityTestReport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateEmailIdentityCommand.ts b/clients/client-sesv2/src/commands/CreateEmailIdentityCommand.ts index 0ec384e177455..4c11dde5daf8d 100644 --- a/clients/client-sesv2/src/commands/CreateEmailIdentityCommand.ts +++ b/clients/client-sesv2/src/commands/CreateEmailIdentityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEmailIdentityRequest, CreateEmailIdentityResponse } from "../models/models_0"; +import type { CreateEmailIdentityRequest, CreateEmailIdentityResponse } from "../models/models_0"; import { CreateEmailIdentity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateEmailIdentityPolicyCommand.ts b/clients/client-sesv2/src/commands/CreateEmailIdentityPolicyCommand.ts index 57e3c78d2af89..4ca1c9eae3f66 100644 --- a/clients/client-sesv2/src/commands/CreateEmailIdentityPolicyCommand.ts +++ b/clients/client-sesv2/src/commands/CreateEmailIdentityPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEmailIdentityPolicyRequest, CreateEmailIdentityPolicyResponse } from "../models/models_0"; +import type { CreateEmailIdentityPolicyRequest, CreateEmailIdentityPolicyResponse } from "../models/models_0"; import { CreateEmailIdentityPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/CreateEmailTemplateCommand.ts index e9103df636dbd..2450514dfc62e 100644 --- a/clients/client-sesv2/src/commands/CreateEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/CreateEmailTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEmailTemplateRequest, CreateEmailTemplateResponse } from "../models/models_0"; +import type { CreateEmailTemplateRequest, CreateEmailTemplateResponse } from "../models/models_0"; import { CreateEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateExportJobCommand.ts b/clients/client-sesv2/src/commands/CreateExportJobCommand.ts index 5b3ae89a76f76..df279554e61b1 100644 --- a/clients/client-sesv2/src/commands/CreateExportJobCommand.ts +++ b/clients/client-sesv2/src/commands/CreateExportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateExportJobRequest, CreateExportJobResponse } from "../models/models_0"; +import type { CreateExportJobRequest, CreateExportJobResponse } from "../models/models_0"; import { CreateExportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateImportJobCommand.ts b/clients/client-sesv2/src/commands/CreateImportJobCommand.ts index da536fc6636da..b26136d666c78 100644 --- a/clients/client-sesv2/src/commands/CreateImportJobCommand.ts +++ b/clients/client-sesv2/src/commands/CreateImportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImportJobRequest, CreateImportJobResponse } from "../models/models_0"; +import type { CreateImportJobRequest, CreateImportJobResponse } from "../models/models_0"; import { CreateImportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateMultiRegionEndpointCommand.ts b/clients/client-sesv2/src/commands/CreateMultiRegionEndpointCommand.ts index eb5d74a66f14c..f81f424a0dfc4 100644 --- a/clients/client-sesv2/src/commands/CreateMultiRegionEndpointCommand.ts +++ b/clients/client-sesv2/src/commands/CreateMultiRegionEndpointCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMultiRegionEndpointRequest, CreateMultiRegionEndpointResponse } from "../models/models_0"; +import type { CreateMultiRegionEndpointRequest, CreateMultiRegionEndpointResponse } from "../models/models_0"; import { CreateMultiRegionEndpoint } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateTenantCommand.ts b/clients/client-sesv2/src/commands/CreateTenantCommand.ts index 08c112546bb2f..239ac14503476 100644 --- a/clients/client-sesv2/src/commands/CreateTenantCommand.ts +++ b/clients/client-sesv2/src/commands/CreateTenantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTenantRequest, CreateTenantResponse } from "../models/models_0"; +import type { CreateTenantRequest, CreateTenantResponse } from "../models/models_0"; import { CreateTenant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/CreateTenantResourceAssociationCommand.ts b/clients/client-sesv2/src/commands/CreateTenantResourceAssociationCommand.ts index 55ba6649ca3bf..f8958fe38d85d 100644 --- a/clients/client-sesv2/src/commands/CreateTenantResourceAssociationCommand.ts +++ b/clients/client-sesv2/src/commands/CreateTenantResourceAssociationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTenantResourceAssociationRequest, CreateTenantResourceAssociationResponse } from "../models/models_0"; +import type { + CreateTenantResourceAssociationRequest, + CreateTenantResourceAssociationResponse, +} from "../models/models_0"; import { CreateTenantResourceAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteConfigurationSetCommand.ts b/clients/client-sesv2/src/commands/DeleteConfigurationSetCommand.ts index e057139cd1d7b..be5aafc09e354 100644 --- a/clients/client-sesv2/src/commands/DeleteConfigurationSetCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteConfigurationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationSetRequest, DeleteConfigurationSetResponse } from "../models/models_0"; +import type { DeleteConfigurationSetRequest, DeleteConfigurationSetResponse } from "../models/models_0"; import { DeleteConfigurationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteConfigurationSetEventDestinationCommand.ts b/clients/client-sesv2/src/commands/DeleteConfigurationSetEventDestinationCommand.ts index 50160c36a0c21..602bfb67377e3 100644 --- a/clients/client-sesv2/src/commands/DeleteConfigurationSetEventDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteConfigurationSetEventDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteConfigurationSetEventDestinationRequest, DeleteConfigurationSetEventDestinationResponse, } from "../models/models_0"; import { DeleteConfigurationSetEventDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteContactCommand.ts b/clients/client-sesv2/src/commands/DeleteContactCommand.ts index ac8a74ebfe468..a2f66aec8c8ca 100644 --- a/clients/client-sesv2/src/commands/DeleteContactCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactRequest, DeleteContactResponse } from "../models/models_0"; +import type { DeleteContactRequest, DeleteContactResponse } from "../models/models_0"; import { DeleteContact } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteContactListCommand.ts b/clients/client-sesv2/src/commands/DeleteContactListCommand.ts index 9ac6ef5510bcb..cdea60152c983 100644 --- a/clients/client-sesv2/src/commands/DeleteContactListCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteContactListCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactListRequest, DeleteContactListResponse } from "../models/models_0"; +import type { DeleteContactListRequest, DeleteContactListResponse } from "../models/models_0"; import { DeleteContactList } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts index 66ac109744716..88d614e585d43 100644 --- a/clients/client-sesv2/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteCustomVerificationEmailTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteCustomVerificationEmailTemplateRequest, DeleteCustomVerificationEmailTemplateResponse, } from "../models/models_0"; import { DeleteCustomVerificationEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteDedicatedIpPoolCommand.ts b/clients/client-sesv2/src/commands/DeleteDedicatedIpPoolCommand.ts index 0a3e4f1d72901..971ce27d665a8 100644 --- a/clients/client-sesv2/src/commands/DeleteDedicatedIpPoolCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteDedicatedIpPoolCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDedicatedIpPoolRequest, DeleteDedicatedIpPoolResponse } from "../models/models_0"; +import type { DeleteDedicatedIpPoolRequest, DeleteDedicatedIpPoolResponse } from "../models/models_0"; import { DeleteDedicatedIpPool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteEmailIdentityCommand.ts b/clients/client-sesv2/src/commands/DeleteEmailIdentityCommand.ts index 8dc9e106b75be..c2be9b6a53ba6 100644 --- a/clients/client-sesv2/src/commands/DeleteEmailIdentityCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteEmailIdentityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEmailIdentityRequest, DeleteEmailIdentityResponse } from "../models/models_0"; +import type { DeleteEmailIdentityRequest, DeleteEmailIdentityResponse } from "../models/models_0"; import { DeleteEmailIdentity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteEmailIdentityPolicyCommand.ts b/clients/client-sesv2/src/commands/DeleteEmailIdentityPolicyCommand.ts index 7c5dc6799b90b..028e78e90725e 100644 --- a/clients/client-sesv2/src/commands/DeleteEmailIdentityPolicyCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteEmailIdentityPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEmailIdentityPolicyRequest, DeleteEmailIdentityPolicyResponse } from "../models/models_0"; +import type { DeleteEmailIdentityPolicyRequest, DeleteEmailIdentityPolicyResponse } from "../models/models_0"; import { DeleteEmailIdentityPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/DeleteEmailTemplateCommand.ts index 641aed4c3fc91..501df1ec71089 100644 --- a/clients/client-sesv2/src/commands/DeleteEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteEmailTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEmailTemplateRequest, DeleteEmailTemplateResponse } from "../models/models_0"; +import type { DeleteEmailTemplateRequest, DeleteEmailTemplateResponse } from "../models/models_0"; import { DeleteEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteMultiRegionEndpointCommand.ts b/clients/client-sesv2/src/commands/DeleteMultiRegionEndpointCommand.ts index 95714bc3b0ca8..8529d031d4264 100644 --- a/clients/client-sesv2/src/commands/DeleteMultiRegionEndpointCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteMultiRegionEndpointCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMultiRegionEndpointRequest, DeleteMultiRegionEndpointResponse } from "../models/models_0"; +import type { DeleteMultiRegionEndpointRequest, DeleteMultiRegionEndpointResponse } from "../models/models_0"; import { DeleteMultiRegionEndpoint } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteSuppressedDestinationCommand.ts b/clients/client-sesv2/src/commands/DeleteSuppressedDestinationCommand.ts index d35f44348a4d2..6ccf0ff2bca5c 100644 --- a/clients/client-sesv2/src/commands/DeleteSuppressedDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteSuppressedDestinationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSuppressedDestinationRequest, DeleteSuppressedDestinationResponse } from "../models/models_0"; +import type { DeleteSuppressedDestinationRequest, DeleteSuppressedDestinationResponse } from "../models/models_0"; import { DeleteSuppressedDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteTenantCommand.ts b/clients/client-sesv2/src/commands/DeleteTenantCommand.ts index 0fe5c1716150a..55d759f51a91d 100644 --- a/clients/client-sesv2/src/commands/DeleteTenantCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteTenantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTenantRequest, DeleteTenantResponse } from "../models/models_0"; +import type { DeleteTenantRequest, DeleteTenantResponse } from "../models/models_0"; import { DeleteTenant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/DeleteTenantResourceAssociationCommand.ts b/clients/client-sesv2/src/commands/DeleteTenantResourceAssociationCommand.ts index c024743f2b471..624c3ae2327a3 100644 --- a/clients/client-sesv2/src/commands/DeleteTenantResourceAssociationCommand.ts +++ b/clients/client-sesv2/src/commands/DeleteTenantResourceAssociationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTenantResourceAssociationRequest, DeleteTenantResourceAssociationResponse } from "../models/models_0"; +import type { + DeleteTenantResourceAssociationRequest, + DeleteTenantResourceAssociationResponse, +} from "../models/models_0"; import { DeleteTenantResourceAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetAccountCommand.ts b/clients/client-sesv2/src/commands/GetAccountCommand.ts index 39c90e5fcd8ee..4875ef60c5c71 100644 --- a/clients/client-sesv2/src/commands/GetAccountCommand.ts +++ b/clients/client-sesv2/src/commands/GetAccountCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountRequest, GetAccountResponse } from "../models/models_0"; +import type { GetAccountRequest, GetAccountResponse } from "../models/models_0"; import { GetAccount } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetBlacklistReportsCommand.ts b/clients/client-sesv2/src/commands/GetBlacklistReportsCommand.ts index aa8632f4c0fe3..25865f0fc52e8 100644 --- a/clients/client-sesv2/src/commands/GetBlacklistReportsCommand.ts +++ b/clients/client-sesv2/src/commands/GetBlacklistReportsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBlacklistReportsRequest, GetBlacklistReportsResponse } from "../models/models_0"; +import type { GetBlacklistReportsRequest, GetBlacklistReportsResponse } from "../models/models_0"; import { GetBlacklistReports } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetConfigurationSetCommand.ts b/clients/client-sesv2/src/commands/GetConfigurationSetCommand.ts index 20d44b04f17ce..1952b24af2bbe 100644 --- a/clients/client-sesv2/src/commands/GetConfigurationSetCommand.ts +++ b/clients/client-sesv2/src/commands/GetConfigurationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfigurationSetRequest, GetConfigurationSetResponse } from "../models/models_0"; +import type { GetConfigurationSetRequest, GetConfigurationSetResponse } from "../models/models_0"; import { GetConfigurationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetConfigurationSetEventDestinationsCommand.ts b/clients/client-sesv2/src/commands/GetConfigurationSetEventDestinationsCommand.ts index c1d5527ef67ac..14b1bcf69bac6 100644 --- a/clients/client-sesv2/src/commands/GetConfigurationSetEventDestinationsCommand.ts +++ b/clients/client-sesv2/src/commands/GetConfigurationSetEventDestinationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetConfigurationSetEventDestinationsRequest, GetConfigurationSetEventDestinationsResponse, } from "../models/models_0"; import { GetConfigurationSetEventDestinations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetContactCommand.ts b/clients/client-sesv2/src/commands/GetContactCommand.ts index 1faa2a8d94339..4253193eab47b 100644 --- a/clients/client-sesv2/src/commands/GetContactCommand.ts +++ b/clients/client-sesv2/src/commands/GetContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContactRequest, GetContactResponse } from "../models/models_0"; +import type { GetContactRequest, GetContactResponse } from "../models/models_0"; import { GetContact } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetContactListCommand.ts b/clients/client-sesv2/src/commands/GetContactListCommand.ts index fbd8016a9994f..a4fdef7914a85 100644 --- a/clients/client-sesv2/src/commands/GetContactListCommand.ts +++ b/clients/client-sesv2/src/commands/GetContactListCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContactListRequest, GetContactListResponse } from "../models/models_0"; +import type { GetContactListRequest, GetContactListResponse } from "../models/models_0"; import { GetContactList } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetCustomVerificationEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/GetCustomVerificationEmailTemplateCommand.ts index e72c854cc57cd..f9d3380e2e58b 100644 --- a/clients/client-sesv2/src/commands/GetCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/GetCustomVerificationEmailTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetCustomVerificationEmailTemplateRequest, GetCustomVerificationEmailTemplateResponse, } from "../models/models_0"; import { GetCustomVerificationEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetDedicatedIpCommand.ts b/clients/client-sesv2/src/commands/GetDedicatedIpCommand.ts index 73090e662bc95..606b57db5403d 100644 --- a/clients/client-sesv2/src/commands/GetDedicatedIpCommand.ts +++ b/clients/client-sesv2/src/commands/GetDedicatedIpCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDedicatedIpRequest, GetDedicatedIpResponse } from "../models/models_0"; +import type { GetDedicatedIpRequest, GetDedicatedIpResponse } from "../models/models_0"; import { GetDedicatedIp } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetDedicatedIpPoolCommand.ts b/clients/client-sesv2/src/commands/GetDedicatedIpPoolCommand.ts index dff5941a30cd7..ba529442425ae 100644 --- a/clients/client-sesv2/src/commands/GetDedicatedIpPoolCommand.ts +++ b/clients/client-sesv2/src/commands/GetDedicatedIpPoolCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDedicatedIpPoolRequest, GetDedicatedIpPoolResponse } from "../models/models_0"; +import type { GetDedicatedIpPoolRequest, GetDedicatedIpPoolResponse } from "../models/models_0"; import { GetDedicatedIpPool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetDedicatedIpsCommand.ts b/clients/client-sesv2/src/commands/GetDedicatedIpsCommand.ts index 33b19aaa4b1eb..fa01f59c92947 100644 --- a/clients/client-sesv2/src/commands/GetDedicatedIpsCommand.ts +++ b/clients/client-sesv2/src/commands/GetDedicatedIpsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDedicatedIpsRequest, GetDedicatedIpsResponse } from "../models/models_0"; +import type { GetDedicatedIpsRequest, GetDedicatedIpsResponse } from "../models/models_0"; import { GetDedicatedIps } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetDeliverabilityDashboardOptionsCommand.ts b/clients/client-sesv2/src/commands/GetDeliverabilityDashboardOptionsCommand.ts index 833eb24a9d6db..da84944a6787c 100644 --- a/clients/client-sesv2/src/commands/GetDeliverabilityDashboardOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/GetDeliverabilityDashboardOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetDeliverabilityDashboardOptionsRequest, GetDeliverabilityDashboardOptionsResponse, } from "../models/models_0"; import { GetDeliverabilityDashboardOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetDeliverabilityTestReportCommand.ts b/clients/client-sesv2/src/commands/GetDeliverabilityTestReportCommand.ts index 947fc46380dc5..a33e2ba78ad69 100644 --- a/clients/client-sesv2/src/commands/GetDeliverabilityTestReportCommand.ts +++ b/clients/client-sesv2/src/commands/GetDeliverabilityTestReportCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeliverabilityTestReportRequest, GetDeliverabilityTestReportResponse } from "../models/models_0"; +import type { GetDeliverabilityTestReportRequest, GetDeliverabilityTestReportResponse } from "../models/models_0"; import { GetDeliverabilityTestReport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetDomainDeliverabilityCampaignCommand.ts b/clients/client-sesv2/src/commands/GetDomainDeliverabilityCampaignCommand.ts index 836aa7b67bc7a..5a9ac10051793 100644 --- a/clients/client-sesv2/src/commands/GetDomainDeliverabilityCampaignCommand.ts +++ b/clients/client-sesv2/src/commands/GetDomainDeliverabilityCampaignCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainDeliverabilityCampaignRequest, GetDomainDeliverabilityCampaignResponse } from "../models/models_0"; +import type { + GetDomainDeliverabilityCampaignRequest, + GetDomainDeliverabilityCampaignResponse, +} from "../models/models_0"; import { GetDomainDeliverabilityCampaign } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetDomainStatisticsReportCommand.ts b/clients/client-sesv2/src/commands/GetDomainStatisticsReportCommand.ts index e926fd131d82c..5f2f8b0013d57 100644 --- a/clients/client-sesv2/src/commands/GetDomainStatisticsReportCommand.ts +++ b/clients/client-sesv2/src/commands/GetDomainStatisticsReportCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainStatisticsReportRequest, GetDomainStatisticsReportResponse } from "../models/models_0"; +import type { GetDomainStatisticsReportRequest, GetDomainStatisticsReportResponse } from "../models/models_0"; import { GetDomainStatisticsReport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetEmailIdentityCommand.ts b/clients/client-sesv2/src/commands/GetEmailIdentityCommand.ts index 0955e198f8e1e..64d2728501e2e 100644 --- a/clients/client-sesv2/src/commands/GetEmailIdentityCommand.ts +++ b/clients/client-sesv2/src/commands/GetEmailIdentityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEmailIdentityRequest, GetEmailIdentityResponse } from "../models/models_0"; +import type { GetEmailIdentityRequest, GetEmailIdentityResponse } from "../models/models_0"; import { GetEmailIdentity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetEmailIdentityPoliciesCommand.ts b/clients/client-sesv2/src/commands/GetEmailIdentityPoliciesCommand.ts index 5dfeb0d380fe3..9b4e2d1955345 100644 --- a/clients/client-sesv2/src/commands/GetEmailIdentityPoliciesCommand.ts +++ b/clients/client-sesv2/src/commands/GetEmailIdentityPoliciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEmailIdentityPoliciesRequest, GetEmailIdentityPoliciesResponse } from "../models/models_0"; +import type { GetEmailIdentityPoliciesRequest, GetEmailIdentityPoliciesResponse } from "../models/models_0"; import { GetEmailIdentityPolicies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/GetEmailTemplateCommand.ts index 2046eb2dabe99..d07bc6c6553b6 100644 --- a/clients/client-sesv2/src/commands/GetEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/GetEmailTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEmailTemplateRequest, GetEmailTemplateResponse } from "../models/models_0"; +import type { GetEmailTemplateRequest, GetEmailTemplateResponse } from "../models/models_0"; import { GetEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetExportJobCommand.ts b/clients/client-sesv2/src/commands/GetExportJobCommand.ts index 639bcc56c5a42..e7482f390021e 100644 --- a/clients/client-sesv2/src/commands/GetExportJobCommand.ts +++ b/clients/client-sesv2/src/commands/GetExportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExportJobRequest, GetExportJobResponse } from "../models/models_0"; +import type { GetExportJobRequest, GetExportJobResponse } from "../models/models_0"; import { GetExportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetImportJobCommand.ts b/clients/client-sesv2/src/commands/GetImportJobCommand.ts index 8d99210a0a625..a1c5a5c09ac66 100644 --- a/clients/client-sesv2/src/commands/GetImportJobCommand.ts +++ b/clients/client-sesv2/src/commands/GetImportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImportJobRequest, GetImportJobResponse } from "../models/models_0"; +import type { GetImportJobRequest, GetImportJobResponse } from "../models/models_0"; import { GetImportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetMessageInsightsCommand.ts b/clients/client-sesv2/src/commands/GetMessageInsightsCommand.ts index a2dea1b72aab2..b078e95b5449c 100644 --- a/clients/client-sesv2/src/commands/GetMessageInsightsCommand.ts +++ b/clients/client-sesv2/src/commands/GetMessageInsightsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMessageInsightsRequest, GetMessageInsightsResponse } from "../models/models_0"; +import type { GetMessageInsightsRequest, GetMessageInsightsResponse } from "../models/models_0"; import { GetMessageInsights } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetMultiRegionEndpointCommand.ts b/clients/client-sesv2/src/commands/GetMultiRegionEndpointCommand.ts index df76dce82bb90..321624bc5c786 100644 --- a/clients/client-sesv2/src/commands/GetMultiRegionEndpointCommand.ts +++ b/clients/client-sesv2/src/commands/GetMultiRegionEndpointCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMultiRegionEndpointRequest, GetMultiRegionEndpointResponse } from "../models/models_0"; +import type { GetMultiRegionEndpointRequest, GetMultiRegionEndpointResponse } from "../models/models_0"; import { GetMultiRegionEndpoint } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetReputationEntityCommand.ts b/clients/client-sesv2/src/commands/GetReputationEntityCommand.ts index c463e2bab8fc8..5ea906cf768c6 100644 --- a/clients/client-sesv2/src/commands/GetReputationEntityCommand.ts +++ b/clients/client-sesv2/src/commands/GetReputationEntityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReputationEntityRequest, GetReputationEntityResponse } from "../models/models_0"; +import type { GetReputationEntityRequest, GetReputationEntityResponse } from "../models/models_0"; import { GetReputationEntity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetSuppressedDestinationCommand.ts b/clients/client-sesv2/src/commands/GetSuppressedDestinationCommand.ts index 7833cf35a3eb0..6ef1d0702cf07 100644 --- a/clients/client-sesv2/src/commands/GetSuppressedDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/GetSuppressedDestinationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSuppressedDestinationRequest, GetSuppressedDestinationResponse } from "../models/models_0"; +import type { GetSuppressedDestinationRequest, GetSuppressedDestinationResponse } from "../models/models_0"; import { GetSuppressedDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/GetTenantCommand.ts b/clients/client-sesv2/src/commands/GetTenantCommand.ts index f125b0538fbb9..e97c7c59a5ece 100644 --- a/clients/client-sesv2/src/commands/GetTenantCommand.ts +++ b/clients/client-sesv2/src/commands/GetTenantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTenantRequest, GetTenantResponse } from "../models/models_0"; +import type { GetTenantRequest, GetTenantResponse } from "../models/models_0"; import { GetTenant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListConfigurationSetsCommand.ts b/clients/client-sesv2/src/commands/ListConfigurationSetsCommand.ts index f435d7be6f829..19b2d084bfeb9 100644 --- a/clients/client-sesv2/src/commands/ListConfigurationSetsCommand.ts +++ b/clients/client-sesv2/src/commands/ListConfigurationSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0"; +import type { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0"; import { ListConfigurationSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListContactListsCommand.ts b/clients/client-sesv2/src/commands/ListContactListsCommand.ts index f906acb65f874..0033daadeb5b6 100644 --- a/clients/client-sesv2/src/commands/ListContactListsCommand.ts +++ b/clients/client-sesv2/src/commands/ListContactListsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactListsRequest, ListContactListsResponse } from "../models/models_0"; +import type { ListContactListsRequest, ListContactListsResponse } from "../models/models_0"; import { ListContactLists } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListContactsCommand.ts b/clients/client-sesv2/src/commands/ListContactsCommand.ts index e3d531c0c72b7..fab52c892087d 100644 --- a/clients/client-sesv2/src/commands/ListContactsCommand.ts +++ b/clients/client-sesv2/src/commands/ListContactsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactsRequest, ListContactsResponse } from "../models/models_0"; +import type { ListContactsRequest, ListContactsResponse } from "../models/models_0"; import { ListContacts } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListCustomVerificationEmailTemplatesCommand.ts b/clients/client-sesv2/src/commands/ListCustomVerificationEmailTemplatesCommand.ts index ce5e6a3c6bcfc..872b759bf0a40 100644 --- a/clients/client-sesv2/src/commands/ListCustomVerificationEmailTemplatesCommand.ts +++ b/clients/client-sesv2/src/commands/ListCustomVerificationEmailTemplatesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCustomVerificationEmailTemplatesRequest, ListCustomVerificationEmailTemplatesResponse, } from "../models/models_0"; import { ListCustomVerificationEmailTemplates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListDedicatedIpPoolsCommand.ts b/clients/client-sesv2/src/commands/ListDedicatedIpPoolsCommand.ts index 897f36c408565..c47d9c1af7f58 100644 --- a/clients/client-sesv2/src/commands/ListDedicatedIpPoolsCommand.ts +++ b/clients/client-sesv2/src/commands/ListDedicatedIpPoolsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDedicatedIpPoolsRequest, ListDedicatedIpPoolsResponse } from "../models/models_0"; +import type { ListDedicatedIpPoolsRequest, ListDedicatedIpPoolsResponse } from "../models/models_0"; import { ListDedicatedIpPools } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListDeliverabilityTestReportsCommand.ts b/clients/client-sesv2/src/commands/ListDeliverabilityTestReportsCommand.ts index fefd9ecda78f5..f1f8c9a0e1882 100644 --- a/clients/client-sesv2/src/commands/ListDeliverabilityTestReportsCommand.ts +++ b/clients/client-sesv2/src/commands/ListDeliverabilityTestReportsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeliverabilityTestReportsRequest, ListDeliverabilityTestReportsResponse } from "../models/models_0"; +import type { ListDeliverabilityTestReportsRequest, ListDeliverabilityTestReportsResponse } from "../models/models_0"; import { ListDeliverabilityTestReports } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListDomainDeliverabilityCampaignsCommand.ts b/clients/client-sesv2/src/commands/ListDomainDeliverabilityCampaignsCommand.ts index b609ed1019c4b..51de8358cd912 100644 --- a/clients/client-sesv2/src/commands/ListDomainDeliverabilityCampaignsCommand.ts +++ b/clients/client-sesv2/src/commands/ListDomainDeliverabilityCampaignsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDomainDeliverabilityCampaignsRequest, ListDomainDeliverabilityCampaignsResponse, } from "../models/models_0"; import { ListDomainDeliverabilityCampaigns } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListEmailIdentitiesCommand.ts b/clients/client-sesv2/src/commands/ListEmailIdentitiesCommand.ts index 66aa0a4322074..da0b1766400c9 100644 --- a/clients/client-sesv2/src/commands/ListEmailIdentitiesCommand.ts +++ b/clients/client-sesv2/src/commands/ListEmailIdentitiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEmailIdentitiesRequest, ListEmailIdentitiesResponse } from "../models/models_0"; +import type { ListEmailIdentitiesRequest, ListEmailIdentitiesResponse } from "../models/models_0"; import { ListEmailIdentities } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListEmailTemplatesCommand.ts b/clients/client-sesv2/src/commands/ListEmailTemplatesCommand.ts index 41b2ba0d040dc..492389ad77f47 100644 --- a/clients/client-sesv2/src/commands/ListEmailTemplatesCommand.ts +++ b/clients/client-sesv2/src/commands/ListEmailTemplatesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEmailTemplatesRequest, ListEmailTemplatesResponse } from "../models/models_0"; +import type { ListEmailTemplatesRequest, ListEmailTemplatesResponse } from "../models/models_0"; import { ListEmailTemplates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListExportJobsCommand.ts b/clients/client-sesv2/src/commands/ListExportJobsCommand.ts index 0e5a0f47b0858..9053b0e005096 100644 --- a/clients/client-sesv2/src/commands/ListExportJobsCommand.ts +++ b/clients/client-sesv2/src/commands/ListExportJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExportJobsRequest, ListExportJobsResponse } from "../models/models_0"; +import type { ListExportJobsRequest, ListExportJobsResponse } from "../models/models_0"; import { ListExportJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListImportJobsCommand.ts b/clients/client-sesv2/src/commands/ListImportJobsCommand.ts index 533d6da2a820f..c9c055449ac98 100644 --- a/clients/client-sesv2/src/commands/ListImportJobsCommand.ts +++ b/clients/client-sesv2/src/commands/ListImportJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImportJobsRequest, ListImportJobsResponse } from "../models/models_0"; +import type { ListImportJobsRequest, ListImportJobsResponse } from "../models/models_0"; import { ListImportJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListMultiRegionEndpointsCommand.ts b/clients/client-sesv2/src/commands/ListMultiRegionEndpointsCommand.ts index b324c246e0da3..001151d91975c 100644 --- a/clients/client-sesv2/src/commands/ListMultiRegionEndpointsCommand.ts +++ b/clients/client-sesv2/src/commands/ListMultiRegionEndpointsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMultiRegionEndpointsRequest, ListMultiRegionEndpointsResponse } from "../models/models_0"; +import type { ListMultiRegionEndpointsRequest, ListMultiRegionEndpointsResponse } from "../models/models_0"; import { ListMultiRegionEndpoints } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListRecommendationsCommand.ts b/clients/client-sesv2/src/commands/ListRecommendationsCommand.ts index 356fbb5271b58..84cb562f748c9 100644 --- a/clients/client-sesv2/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-sesv2/src/commands/ListRecommendationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; +import type { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; import { ListRecommendations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListReputationEntitiesCommand.ts b/clients/client-sesv2/src/commands/ListReputationEntitiesCommand.ts index bcd863e5475bf..ed8e5f5ccf245 100644 --- a/clients/client-sesv2/src/commands/ListReputationEntitiesCommand.ts +++ b/clients/client-sesv2/src/commands/ListReputationEntitiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReputationEntitiesRequest, ListReputationEntitiesResponse } from "../models/models_0"; +import type { ListReputationEntitiesRequest, ListReputationEntitiesResponse } from "../models/models_0"; import { ListReputationEntities } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListResourceTenantsCommand.ts b/clients/client-sesv2/src/commands/ListResourceTenantsCommand.ts index 471f99e2c774f..dee271432e07d 100644 --- a/clients/client-sesv2/src/commands/ListResourceTenantsCommand.ts +++ b/clients/client-sesv2/src/commands/ListResourceTenantsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceTenantsRequest, ListResourceTenantsResponse } from "../models/models_0"; +import type { ListResourceTenantsRequest, ListResourceTenantsResponse } from "../models/models_0"; import { ListResourceTenants } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListSuppressedDestinationsCommand.ts b/clients/client-sesv2/src/commands/ListSuppressedDestinationsCommand.ts index 32ce12e2f6d74..eb0f7c65733ea 100644 --- a/clients/client-sesv2/src/commands/ListSuppressedDestinationsCommand.ts +++ b/clients/client-sesv2/src/commands/ListSuppressedDestinationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSuppressedDestinationsRequest, ListSuppressedDestinationsResponse } from "../models/models_0"; +import type { ListSuppressedDestinationsRequest, ListSuppressedDestinationsResponse } from "../models/models_0"; import { ListSuppressedDestinations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListTagsForResourceCommand.ts b/clients/client-sesv2/src/commands/ListTagsForResourceCommand.ts index 4455648b3855e..7f4c430231ed5 100644 --- a/clients/client-sesv2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sesv2/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListTenantResourcesCommand.ts b/clients/client-sesv2/src/commands/ListTenantResourcesCommand.ts index d1b5c353a9878..e3e7badaa898c 100644 --- a/clients/client-sesv2/src/commands/ListTenantResourcesCommand.ts +++ b/clients/client-sesv2/src/commands/ListTenantResourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTenantResourcesRequest, ListTenantResourcesResponse } from "../models/models_0"; +import type { ListTenantResourcesRequest, ListTenantResourcesResponse } from "../models/models_0"; import { ListTenantResources } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/ListTenantsCommand.ts b/clients/client-sesv2/src/commands/ListTenantsCommand.ts index 4a4998cefe3c7..e06f5581fd0b6 100644 --- a/clients/client-sesv2/src/commands/ListTenantsCommand.ts +++ b/clients/client-sesv2/src/commands/ListTenantsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTenantsRequest, ListTenantsResponse } from "../models/models_0"; +import type { ListTenantsRequest, ListTenantsResponse } from "../models/models_0"; import { ListTenants } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts b/clients/client-sesv2/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts index c0e52bff9bd26..e2dd7a70b2137 100644 --- a/clients/client-sesv2/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountDedicatedIpWarmupAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutAccountDedicatedIpWarmupAttributesRequest, PutAccountDedicatedIpWarmupAttributesResponse, } from "../models/models_0"; import { PutAccountDedicatedIpWarmupAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutAccountDetailsCommand.ts b/clients/client-sesv2/src/commands/PutAccountDetailsCommand.ts index 9891bf05133d3..7b02c12c62802 100644 --- a/clients/client-sesv2/src/commands/PutAccountDetailsCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountDetailsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountDetailsRequest, PutAccountDetailsResponse } from "../models/models_0"; +import type { PutAccountDetailsRequest, PutAccountDetailsResponse } from "../models/models_0"; import { PutAccountDetails } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutAccountSendingAttributesCommand.ts b/clients/client-sesv2/src/commands/PutAccountSendingAttributesCommand.ts index 244b7eae5863a..65b44aa755fb5 100644 --- a/clients/client-sesv2/src/commands/PutAccountSendingAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountSendingAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountSendingAttributesRequest, PutAccountSendingAttributesResponse } from "../models/models_0"; +import type { PutAccountSendingAttributesRequest, PutAccountSendingAttributesResponse } from "../models/models_0"; import { PutAccountSendingAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutAccountSuppressionAttributesCommand.ts b/clients/client-sesv2/src/commands/PutAccountSuppressionAttributesCommand.ts index 15c3fed61c2b0..bb02f3ec8bf28 100644 --- a/clients/client-sesv2/src/commands/PutAccountSuppressionAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountSuppressionAttributesCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountSuppressionAttributesRequest, PutAccountSuppressionAttributesResponse } from "../models/models_0"; +import type { + PutAccountSuppressionAttributesRequest, + PutAccountSuppressionAttributesResponse, +} from "../models/models_0"; import { PutAccountSuppressionAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutAccountVdmAttributesCommand.ts b/clients/client-sesv2/src/commands/PutAccountVdmAttributesCommand.ts index b18cdac7f8af8..fcbba21cbb92c 100644 --- a/clients/client-sesv2/src/commands/PutAccountVdmAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutAccountVdmAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountVdmAttributesRequest, PutAccountVdmAttributesResponse } from "../models/models_0"; +import type { PutAccountVdmAttributesRequest, PutAccountVdmAttributesResponse } from "../models/models_0"; import { PutAccountVdmAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetArchivingOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetArchivingOptionsCommand.ts index 03bed703f286a..f80d354f84c7f 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetArchivingOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetArchivingOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetArchivingOptionsRequest, PutConfigurationSetArchivingOptionsResponse, } from "../models/models_0"; import { PutConfigurationSetArchivingOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts index 63ee7a5a936e0..9a3048476acfe 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetDeliveryOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetDeliveryOptionsRequest, PutConfigurationSetDeliveryOptionsResponse, } from "../models/models_0"; import { PutConfigurationSetDeliveryOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetReputationOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetReputationOptionsCommand.ts index e95d746a40bae..0e3387488dcb3 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetReputationOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetReputationOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetReputationOptionsRequest, PutConfigurationSetReputationOptionsResponse, } from "../models/models_0"; import { PutConfigurationSetReputationOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetSendingOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetSendingOptionsCommand.ts index 05b77aeb867c8..801037b9af89a 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetSendingOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetSendingOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetSendingOptionsRequest, PutConfigurationSetSendingOptionsResponse, } from "../models/models_0"; import { PutConfigurationSetSendingOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetSuppressionOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetSuppressionOptionsCommand.ts index fe087b195cf04..f9ba9d0326287 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetSuppressionOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetSuppressionOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetSuppressionOptionsRequest, PutConfigurationSetSuppressionOptionsResponse, } from "../models/models_0"; import { PutConfigurationSetSuppressionOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetTrackingOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetTrackingOptionsCommand.ts index 15f7d199a1bc4..ea903316930ef 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetTrackingOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetTrackingOptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutConfigurationSetTrackingOptionsRequest, PutConfigurationSetTrackingOptionsResponse, } from "../models/models_0"; import { PutConfigurationSetTrackingOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutConfigurationSetVdmOptionsCommand.ts b/clients/client-sesv2/src/commands/PutConfigurationSetVdmOptionsCommand.ts index 16ef15bd8a772..e8d72500470a9 100644 --- a/clients/client-sesv2/src/commands/PutConfigurationSetVdmOptionsCommand.ts +++ b/clients/client-sesv2/src/commands/PutConfigurationSetVdmOptionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutConfigurationSetVdmOptionsRequest, PutConfigurationSetVdmOptionsResponse } from "../models/models_0"; +import type { PutConfigurationSetVdmOptionsRequest, PutConfigurationSetVdmOptionsResponse } from "../models/models_0"; import { PutConfigurationSetVdmOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutDedicatedIpInPoolCommand.ts b/clients/client-sesv2/src/commands/PutDedicatedIpInPoolCommand.ts index 511752608624e..711b8ca88cec2 100644 --- a/clients/client-sesv2/src/commands/PutDedicatedIpInPoolCommand.ts +++ b/clients/client-sesv2/src/commands/PutDedicatedIpInPoolCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDedicatedIpInPoolRequest, PutDedicatedIpInPoolResponse } from "../models/models_0"; +import type { PutDedicatedIpInPoolRequest, PutDedicatedIpInPoolResponse } from "../models/models_0"; import { PutDedicatedIpInPool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts b/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts index a64b14cfce6d6..18b555f0b4113 100644 --- a/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutDedicatedIpPoolScalingAttributesRequest, PutDedicatedIpPoolScalingAttributesResponse, } from "../models/models_0"; import { PutDedicatedIpPoolScalingAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutDedicatedIpWarmupAttributesCommand.ts b/clients/client-sesv2/src/commands/PutDedicatedIpWarmupAttributesCommand.ts index 78c47671e03ed..3e5ef4d122098 100644 --- a/clients/client-sesv2/src/commands/PutDedicatedIpWarmupAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutDedicatedIpWarmupAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDedicatedIpWarmupAttributesRequest, PutDedicatedIpWarmupAttributesResponse } from "../models/models_0"; +import type { PutDedicatedIpWarmupAttributesRequest, PutDedicatedIpWarmupAttributesResponse } from "../models/models_0"; import { PutDedicatedIpWarmupAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutDeliverabilityDashboardOptionCommand.ts b/clients/client-sesv2/src/commands/PutDeliverabilityDashboardOptionCommand.ts index 1f8372efdc3d6..2476c2702cccc 100644 --- a/clients/client-sesv2/src/commands/PutDeliverabilityDashboardOptionCommand.ts +++ b/clients/client-sesv2/src/commands/PutDeliverabilityDashboardOptionCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDeliverabilityDashboardOptionRequest, PutDeliverabilityDashboardOptionResponse } from "../models/models_0"; +import type { + PutDeliverabilityDashboardOptionRequest, + PutDeliverabilityDashboardOptionResponse, +} from "../models/models_0"; import { PutDeliverabilityDashboardOption } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityConfigurationSetAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityConfigurationSetAttributesCommand.ts index ac9a312c78e35..55ae564bcc976 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityConfigurationSetAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityConfigurationSetAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutEmailIdentityConfigurationSetAttributesRequest, PutEmailIdentityConfigurationSetAttributesResponse, } from "../models/models_0"; import { PutEmailIdentityConfigurationSetAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityDkimAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityDkimAttributesCommand.ts index 3467ae6c89182..33af30db63cda 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityDkimAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityDkimAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEmailIdentityDkimAttributesRequest, PutEmailIdentityDkimAttributesResponse } from "../models/models_0"; +import type { PutEmailIdentityDkimAttributesRequest, PutEmailIdentityDkimAttributesResponse } from "../models/models_0"; import { PutEmailIdentityDkimAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityDkimSigningAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityDkimSigningAttributesCommand.ts index 46d0ab2bd62eb..fc05a7f4d0338 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityDkimSigningAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityDkimSigningAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutEmailIdentityDkimSigningAttributesRequest, PutEmailIdentityDkimSigningAttributesResponse, } from "../models/models_0"; import { PutEmailIdentityDkimSigningAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts index b2202b93f9892..44c81f6aab2f3 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityFeedbackAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutEmailIdentityFeedbackAttributesRequest, PutEmailIdentityFeedbackAttributesResponse, } from "../models/models_0"; import { PutEmailIdentityFeedbackAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutEmailIdentityMailFromAttributesCommand.ts b/clients/client-sesv2/src/commands/PutEmailIdentityMailFromAttributesCommand.ts index 157c4e8cab646..853fb9a32357c 100644 --- a/clients/client-sesv2/src/commands/PutEmailIdentityMailFromAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutEmailIdentityMailFromAttributesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutEmailIdentityMailFromAttributesRequest, PutEmailIdentityMailFromAttributesResponse, } from "../models/models_0"; import { PutEmailIdentityMailFromAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/PutSuppressedDestinationCommand.ts b/clients/client-sesv2/src/commands/PutSuppressedDestinationCommand.ts index 9befb11e24c05..aa2ae0713fb39 100644 --- a/clients/client-sesv2/src/commands/PutSuppressedDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/PutSuppressedDestinationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSuppressedDestinationRequest, PutSuppressedDestinationResponse } from "../models/models_0"; +import type { PutSuppressedDestinationRequest, PutSuppressedDestinationResponse } from "../models/models_0"; import { PutSuppressedDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts b/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts index 20c9b438b598c..d4176e50c013b 100644 --- a/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts +++ b/clients/client-sesv2/src/commands/SendBulkEmailCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendBulkEmailRequest, SendBulkEmailResponse } from "../models/models_0"; +import type { SendBulkEmailRequest, SendBulkEmailResponse } from "../models/models_0"; import { SendBulkEmail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/SendCustomVerificationEmailCommand.ts b/clients/client-sesv2/src/commands/SendCustomVerificationEmailCommand.ts index 4bb5a768e5d62..65d9173109932 100644 --- a/clients/client-sesv2/src/commands/SendCustomVerificationEmailCommand.ts +++ b/clients/client-sesv2/src/commands/SendCustomVerificationEmailCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendCustomVerificationEmailRequest, SendCustomVerificationEmailResponse } from "../models/models_0"; +import type { SendCustomVerificationEmailRequest, SendCustomVerificationEmailResponse } from "../models/models_0"; import { SendCustomVerificationEmail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/SendEmailCommand.ts b/clients/client-sesv2/src/commands/SendEmailCommand.ts index 934eba7e7e16a..2164293e090e3 100644 --- a/clients/client-sesv2/src/commands/SendEmailCommand.ts +++ b/clients/client-sesv2/src/commands/SendEmailCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendEmailRequest } from "../models/models_0"; -import { SendEmailResponse } from "../models/models_1"; +import type { SendEmailRequest } from "../models/models_0"; +import type { SendEmailResponse } from "../models/models_1"; import { SendEmail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/TagResourceCommand.ts b/clients/client-sesv2/src/commands/TagResourceCommand.ts index 5e7077497c180..9ed3c3667562a 100644 --- a/clients/client-sesv2/src/commands/TagResourceCommand.ts +++ b/clients/client-sesv2/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_1"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_1"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/TestRenderEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/TestRenderEmailTemplateCommand.ts index c49051423450d..b5b3910746574 100644 --- a/clients/client-sesv2/src/commands/TestRenderEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/TestRenderEmailTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestRenderEmailTemplateRequest, TestRenderEmailTemplateResponse } from "../models/models_1"; +import type { TestRenderEmailTemplateRequest, TestRenderEmailTemplateResponse } from "../models/models_1"; import { TestRenderEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/UntagResourceCommand.ts b/clients/client-sesv2/src/commands/UntagResourceCommand.ts index 2f358a44e11f4..5f42c67c3055b 100644 --- a/clients/client-sesv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-sesv2/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_1"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/UpdateConfigurationSetEventDestinationCommand.ts b/clients/client-sesv2/src/commands/UpdateConfigurationSetEventDestinationCommand.ts index 38a64a12a0bc7..89ea688d39efe 100644 --- a/clients/client-sesv2/src/commands/UpdateConfigurationSetEventDestinationCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateConfigurationSetEventDestinationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateConfigurationSetEventDestinationRequest, UpdateConfigurationSetEventDestinationResponse, } from "../models/models_1"; import { UpdateConfigurationSetEventDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/UpdateContactCommand.ts b/clients/client-sesv2/src/commands/UpdateContactCommand.ts index 82e85569d1f4d..0ed3bde777a16 100644 --- a/clients/client-sesv2/src/commands/UpdateContactCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactRequest, UpdateContactResponse } from "../models/models_1"; +import type { UpdateContactRequest, UpdateContactResponse } from "../models/models_1"; import { UpdateContact } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/UpdateContactListCommand.ts b/clients/client-sesv2/src/commands/UpdateContactListCommand.ts index 1c19af476296f..946c084d5008a 100644 --- a/clients/client-sesv2/src/commands/UpdateContactListCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateContactListCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactListRequest, UpdateContactListResponse } from "../models/models_1"; +import type { UpdateContactListRequest, UpdateContactListResponse } from "../models/models_1"; import { UpdateContactList } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts index 885c34c9fc239..b72b4776f972c 100644 --- a/clients/client-sesv2/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateCustomVerificationEmailTemplateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateCustomVerificationEmailTemplateRequest, UpdateCustomVerificationEmailTemplateResponse, } from "../models/models_1"; import { UpdateCustomVerificationEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/UpdateEmailIdentityPolicyCommand.ts b/clients/client-sesv2/src/commands/UpdateEmailIdentityPolicyCommand.ts index 2a4ea10d402dc..64ad2cedde683 100644 --- a/clients/client-sesv2/src/commands/UpdateEmailIdentityPolicyCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateEmailIdentityPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEmailIdentityPolicyRequest, UpdateEmailIdentityPolicyResponse } from "../models/models_1"; +import type { UpdateEmailIdentityPolicyRequest, UpdateEmailIdentityPolicyResponse } from "../models/models_1"; import { UpdateEmailIdentityPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/UpdateEmailTemplateCommand.ts b/clients/client-sesv2/src/commands/UpdateEmailTemplateCommand.ts index a2311f7f0df6f..36e5f87b57c74 100644 --- a/clients/client-sesv2/src/commands/UpdateEmailTemplateCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateEmailTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEmailTemplateRequest, UpdateEmailTemplateResponse } from "../models/models_1"; +import type { UpdateEmailTemplateRequest, UpdateEmailTemplateResponse } from "../models/models_1"; import { UpdateEmailTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/UpdateReputationEntityCustomerManagedStatusCommand.ts b/clients/client-sesv2/src/commands/UpdateReputationEntityCustomerManagedStatusCommand.ts index c8c8ea8121b72..132cf7a1f2c16 100644 --- a/clients/client-sesv2/src/commands/UpdateReputationEntityCustomerManagedStatusCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateReputationEntityCustomerManagedStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateReputationEntityCustomerManagedStatusRequest, UpdateReputationEntityCustomerManagedStatusResponse, } from "../models/models_1"; import { UpdateReputationEntityCustomerManagedStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/commands/UpdateReputationEntityPolicyCommand.ts b/clients/client-sesv2/src/commands/UpdateReputationEntityPolicyCommand.ts index 02f709844e47e..cb9e37e23ff59 100644 --- a/clients/client-sesv2/src/commands/UpdateReputationEntityPolicyCommand.ts +++ b/clients/client-sesv2/src/commands/UpdateReputationEntityPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReputationEntityPolicyRequest, UpdateReputationEntityPolicyResponse } from "../models/models_1"; +import type { UpdateReputationEntityPolicyRequest, UpdateReputationEntityPolicyResponse } from "../models/models_1"; import { UpdateReputationEntityPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, SESv2ClientResolvedConfig } from "../SESv2Client"; /** * @public diff --git a/clients/client-sesv2/src/endpoint/EndpointParameters.ts b/clients/client-sesv2/src/endpoint/EndpointParameters.ts index 4f76b5282ba76..3a578a0592a7d 100644 --- a/clients/client-sesv2/src/endpoint/EndpointParameters.ts +++ b/clients/client-sesv2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sesv2/src/endpoint/endpointResolver.ts b/clients/client-sesv2/src/endpoint/endpointResolver.ts index 30df04e5bbbcd..f2200ce62a013 100644 --- a/clients/client-sesv2/src/endpoint/endpointResolver.ts +++ b/clients/client-sesv2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sesv2/src/extensionConfiguration.ts b/clients/client-sesv2/src/extensionConfiguration.ts index c1d7679c92077..5af4ec546bf0f 100644 --- a/clients/client-sesv2/src/extensionConfiguration.ts +++ b/clients/client-sesv2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sesv2/src/models/SESv2ServiceException.ts b/clients/client-sesv2/src/models/SESv2ServiceException.ts index a0183bbe3bf7a..8188c83098c0d 100644 --- a/clients/client-sesv2/src/models/SESv2ServiceException.ts +++ b/clients/client-sesv2/src/models/SESv2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sesv2/src/models/errors.ts b/clients/client-sesv2/src/models/errors.ts index 6c5d99055901e..de58ad3079d60 100644 --- a/clients/client-sesv2/src/models/errors.ts +++ b/clients/client-sesv2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SESv2ServiceException as __BaseException } from "./SESv2ServiceException"; diff --git a/clients/client-sesv2/src/pagination/GetDedicatedIpsPaginator.ts b/clients/client-sesv2/src/pagination/GetDedicatedIpsPaginator.ts index 2d86383993ebe..cf95e467ef1d2 100644 --- a/clients/client-sesv2/src/pagination/GetDedicatedIpsPaginator.ts +++ b/clients/client-sesv2/src/pagination/GetDedicatedIpsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetDedicatedIpsCommand, diff --git a/clients/client-sesv2/src/pagination/Interfaces.ts b/clients/client-sesv2/src/pagination/Interfaces.ts index 790b3e7a2f294..be8539efeb1d9 100644 --- a/clients/client-sesv2/src/pagination/Interfaces.ts +++ b/clients/client-sesv2/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SESv2Client } from "../SESv2Client"; diff --git a/clients/client-sesv2/src/pagination/ListConfigurationSetsPaginator.ts b/clients/client-sesv2/src/pagination/ListConfigurationSetsPaginator.ts index d85a8711b24bc..3fc8ea50b5ea9 100644 --- a/clients/client-sesv2/src/pagination/ListConfigurationSetsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListConfigurationSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationSetsCommand, diff --git a/clients/client-sesv2/src/pagination/ListContactListsPaginator.ts b/clients/client-sesv2/src/pagination/ListContactListsPaginator.ts index 1270d480ae1f6..5d9eef68f8bbb 100644 --- a/clients/client-sesv2/src/pagination/ListContactListsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListContactListsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactListsCommand, diff --git a/clients/client-sesv2/src/pagination/ListContactsPaginator.ts b/clients/client-sesv2/src/pagination/ListContactsPaginator.ts index b14ffd6b88f22..d093f8af7ea64 100644 --- a/clients/client-sesv2/src/pagination/ListContactsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListContactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactsCommand, diff --git a/clients/client-sesv2/src/pagination/ListCustomVerificationEmailTemplatesPaginator.ts b/clients/client-sesv2/src/pagination/ListCustomVerificationEmailTemplatesPaginator.ts index 3778da9a46330..51f0e8d3c47df 100644 --- a/clients/client-sesv2/src/pagination/ListCustomVerificationEmailTemplatesPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListCustomVerificationEmailTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomVerificationEmailTemplatesCommand, diff --git a/clients/client-sesv2/src/pagination/ListDedicatedIpPoolsPaginator.ts b/clients/client-sesv2/src/pagination/ListDedicatedIpPoolsPaginator.ts index 6cdf8af687cd3..0881543175760 100644 --- a/clients/client-sesv2/src/pagination/ListDedicatedIpPoolsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListDedicatedIpPoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDedicatedIpPoolsCommand, diff --git a/clients/client-sesv2/src/pagination/ListDeliverabilityTestReportsPaginator.ts b/clients/client-sesv2/src/pagination/ListDeliverabilityTestReportsPaginator.ts index 00f5923010051..2408b9a518469 100644 --- a/clients/client-sesv2/src/pagination/ListDeliverabilityTestReportsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListDeliverabilityTestReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeliverabilityTestReportsCommand, diff --git a/clients/client-sesv2/src/pagination/ListDomainDeliverabilityCampaignsPaginator.ts b/clients/client-sesv2/src/pagination/ListDomainDeliverabilityCampaignsPaginator.ts index 52dfd6ef33b6f..165c003745610 100644 --- a/clients/client-sesv2/src/pagination/ListDomainDeliverabilityCampaignsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListDomainDeliverabilityCampaignsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainDeliverabilityCampaignsCommand, diff --git a/clients/client-sesv2/src/pagination/ListEmailIdentitiesPaginator.ts b/clients/client-sesv2/src/pagination/ListEmailIdentitiesPaginator.ts index 66f4c2b145101..38433030025f8 100644 --- a/clients/client-sesv2/src/pagination/ListEmailIdentitiesPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListEmailIdentitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEmailIdentitiesCommand, diff --git a/clients/client-sesv2/src/pagination/ListEmailTemplatesPaginator.ts b/clients/client-sesv2/src/pagination/ListEmailTemplatesPaginator.ts index 82f3a668bc69e..d4966e5c8811f 100644 --- a/clients/client-sesv2/src/pagination/ListEmailTemplatesPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListEmailTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEmailTemplatesCommand, diff --git a/clients/client-sesv2/src/pagination/ListExportJobsPaginator.ts b/clients/client-sesv2/src/pagination/ListExportJobsPaginator.ts index 9c27d765f64bf..fb908d0537a8c 100644 --- a/clients/client-sesv2/src/pagination/ListExportJobsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExportJobsCommand, diff --git a/clients/client-sesv2/src/pagination/ListImportJobsPaginator.ts b/clients/client-sesv2/src/pagination/ListImportJobsPaginator.ts index 6c506f911d374..50b29487f3c37 100644 --- a/clients/client-sesv2/src/pagination/ListImportJobsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImportJobsCommand, diff --git a/clients/client-sesv2/src/pagination/ListMultiRegionEndpointsPaginator.ts b/clients/client-sesv2/src/pagination/ListMultiRegionEndpointsPaginator.ts index 142b5078b324b..67fbc4ed7350b 100644 --- a/clients/client-sesv2/src/pagination/ListMultiRegionEndpointsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListMultiRegionEndpointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMultiRegionEndpointsCommand, diff --git a/clients/client-sesv2/src/pagination/ListRecommendationsPaginator.ts b/clients/client-sesv2/src/pagination/ListRecommendationsPaginator.ts index 82514b0f811f3..ae14392aecd47 100644 --- a/clients/client-sesv2/src/pagination/ListRecommendationsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendationsCommand, diff --git a/clients/client-sesv2/src/pagination/ListReputationEntitiesPaginator.ts b/clients/client-sesv2/src/pagination/ListReputationEntitiesPaginator.ts index 2ae5a06d35912..2ce8dcdf24875 100644 --- a/clients/client-sesv2/src/pagination/ListReputationEntitiesPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListReputationEntitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReputationEntitiesCommand, diff --git a/clients/client-sesv2/src/pagination/ListResourceTenantsPaginator.ts b/clients/client-sesv2/src/pagination/ListResourceTenantsPaginator.ts index a927fb522fbb1..7ae2acf9285fa 100644 --- a/clients/client-sesv2/src/pagination/ListResourceTenantsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListResourceTenantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceTenantsCommand, diff --git a/clients/client-sesv2/src/pagination/ListSuppressedDestinationsPaginator.ts b/clients/client-sesv2/src/pagination/ListSuppressedDestinationsPaginator.ts index 4be112b89ca55..f08a6224e6974 100644 --- a/clients/client-sesv2/src/pagination/ListSuppressedDestinationsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListSuppressedDestinationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSuppressedDestinationsCommand, diff --git a/clients/client-sesv2/src/pagination/ListTenantResourcesPaginator.ts b/clients/client-sesv2/src/pagination/ListTenantResourcesPaginator.ts index d029c6cfe1625..ea2e74fd1e69b 100644 --- a/clients/client-sesv2/src/pagination/ListTenantResourcesPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListTenantResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTenantResourcesCommand, diff --git a/clients/client-sesv2/src/pagination/ListTenantsPaginator.ts b/clients/client-sesv2/src/pagination/ListTenantsPaginator.ts index 645963e592d52..156dfbb9cd33b 100644 --- a/clients/client-sesv2/src/pagination/ListTenantsPaginator.ts +++ b/clients/client-sesv2/src/pagination/ListTenantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTenantsCommand, ListTenantsCommandInput, ListTenantsCommandOutput } from "../commands/ListTenantsCommand"; import { SESv2Client } from "../SESv2Client"; diff --git a/clients/client-sesv2/src/runtimeConfig.browser.ts b/clients/client-sesv2/src/runtimeConfig.browser.ts index 1f3c03d44b1b6..5e2f00e4ca604 100644 --- a/clients/client-sesv2/src/runtimeConfig.browser.ts +++ b/clients/client-sesv2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SESv2ClientConfig } from "./SESv2Client"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SESv2ClientConfig } from "./SESv2Client"; /** * @internal diff --git a/clients/client-sesv2/src/runtimeConfig.native.ts b/clients/client-sesv2/src/runtimeConfig.native.ts index 025a1d3c35da9..04061e17aa861 100644 --- a/clients/client-sesv2/src/runtimeConfig.native.ts +++ b/clients/client-sesv2/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SESv2ClientConfig } from "./SESv2Client"; +import type { SESv2ClientConfig } from "./SESv2Client"; /** * @internal diff --git a/clients/client-sesv2/src/runtimeConfig.shared.ts b/clients/client-sesv2/src/runtimeConfig.shared.ts index 35bc11fda02d5..f0de452b91dc7 100644 --- a/clients/client-sesv2/src/runtimeConfig.shared.ts +++ b/clients/client-sesv2/src/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4ASigner, AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSESv2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SESv2ClientConfig } from "./SESv2Client"; +import type { SESv2ClientConfig } from "./SESv2Client"; /** * @internal diff --git a/clients/client-sesv2/src/runtimeConfig.ts b/clients/client-sesv2/src/runtimeConfig.ts index bd4eb6af89617..710c7602b8d03 100644 --- a/clients/client-sesv2/src/runtimeConfig.ts +++ b/clients/client-sesv2/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SESv2ClientConfig } from "./SESv2Client"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SESv2ClientConfig } from "./SESv2Client"; /** * @internal diff --git a/clients/client-sesv2/src/runtimeExtensions.ts b/clients/client-sesv2/src/runtimeExtensions.ts index 213178ba9cfb4..9367a85010581 100644 --- a/clients/client-sesv2/src/runtimeExtensions.ts +++ b/clients/client-sesv2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SESv2ExtensionConfiguration } from "./extensionConfiguration"; +import type { SESv2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sesv2/src/schemas/schemas_0.ts b/clients/client-sesv2/src/schemas/schemas_0.ts index bd99e2013e535..a4b166ba06948 100644 --- a/clients/client-sesv2/src/schemas/schemas_0.ts +++ b/clients/client-sesv2/src/schemas/schemas_0.ts @@ -774,7 +774,7 @@ const n0 = "com.amazonaws.sesv2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-sfn/package.json b/clients/client-sfn/package.json index d4d560e491cc3..827de9efdc18f 100644 --- a/clients/client-sfn/package.json +++ b/clients/client-sfn/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sfn/src/SFN.ts b/clients/client-sfn/src/SFN.ts index edd3303185ddb..462f274fe4f7e 100644 --- a/clients/client-sfn/src/SFN.ts +++ b/clients/client-sfn/src/SFN.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateActivityCommand, @@ -175,7 +175,7 @@ import { ValidateStateMachineDefinitionCommandInput, ValidateStateMachineDefinitionCommandOutput, } from "./commands/ValidateStateMachineDefinitionCommand"; -import { SFNClient, SFNClientConfig } from "./SFNClient"; +import { SFNClient } from "./SFNClient"; const commands = { CreateActivityCommand, diff --git a/clients/client-sfn/src/SFNClient.ts b/clients/client-sfn/src/SFNClient.ts index b852b33509581..3bfc6123d2c01 100644 --- a/clients/client-sfn/src/SFNClient.ts +++ b/clients/client-sfn/src/SFNClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSFNHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateActivityCommandInput, CreateActivityCommandOutput } from "./commands/CreateActivityCommand"; @@ -140,7 +149,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sfn/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sfn/src/auth/httpAuthExtensionConfiguration.ts index 407f4bcd54358..59bd81be85a73 100644 --- a/clients/client-sfn/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sfn/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SFNHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SFNHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sfn/src/auth/httpAuthSchemeProvider.ts b/clients/client-sfn/src/auth/httpAuthSchemeProvider.ts index 014a1d6fa1609..b34289ad52b87 100644 --- a/clients/client-sfn/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sfn/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SFNClientConfig, SFNClientResolvedConfig } from "../SFNClient"; +import { type SFNClientResolvedConfig, SFNClientConfig } from "../SFNClient"; /** * @internal diff --git a/clients/client-sfn/src/commands/CreateActivityCommand.ts b/clients/client-sfn/src/commands/CreateActivityCommand.ts index d287e55299c1d..178687bbf61e7 100644 --- a/clients/client-sfn/src/commands/CreateActivityCommand.ts +++ b/clients/client-sfn/src/commands/CreateActivityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateActivityInput, CreateActivityOutput } from "../models/models_0"; +import type { CreateActivityInput, CreateActivityOutput } from "../models/models_0"; import { CreateActivity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/CreateStateMachineAliasCommand.ts b/clients/client-sfn/src/commands/CreateStateMachineAliasCommand.ts index bc5559d3086f5..18031543c9b67 100644 --- a/clients/client-sfn/src/commands/CreateStateMachineAliasCommand.ts +++ b/clients/client-sfn/src/commands/CreateStateMachineAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStateMachineAliasInput, CreateStateMachineAliasOutput } from "../models/models_0"; +import type { CreateStateMachineAliasInput, CreateStateMachineAliasOutput } from "../models/models_0"; import { CreateStateMachineAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/CreateStateMachineCommand.ts b/clients/client-sfn/src/commands/CreateStateMachineCommand.ts index 3b01711be5edf..c39fa8f273252 100644 --- a/clients/client-sfn/src/commands/CreateStateMachineCommand.ts +++ b/clients/client-sfn/src/commands/CreateStateMachineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStateMachineInput, CreateStateMachineOutput } from "../models/models_0"; +import type { CreateStateMachineInput, CreateStateMachineOutput } from "../models/models_0"; import { CreateStateMachine } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DeleteActivityCommand.ts b/clients/client-sfn/src/commands/DeleteActivityCommand.ts index b9de8ee4fab0c..c7fedfe6c42e1 100644 --- a/clients/client-sfn/src/commands/DeleteActivityCommand.ts +++ b/clients/client-sfn/src/commands/DeleteActivityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteActivityInput, DeleteActivityOutput } from "../models/models_0"; +import type { DeleteActivityInput, DeleteActivityOutput } from "../models/models_0"; import { DeleteActivity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DeleteStateMachineAliasCommand.ts b/clients/client-sfn/src/commands/DeleteStateMachineAliasCommand.ts index 55c21e7d0beb6..528b4fef38df1 100644 --- a/clients/client-sfn/src/commands/DeleteStateMachineAliasCommand.ts +++ b/clients/client-sfn/src/commands/DeleteStateMachineAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStateMachineAliasInput, DeleteStateMachineAliasOutput } from "../models/models_0"; +import type { DeleteStateMachineAliasInput, DeleteStateMachineAliasOutput } from "../models/models_0"; import { DeleteStateMachineAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DeleteStateMachineCommand.ts b/clients/client-sfn/src/commands/DeleteStateMachineCommand.ts index c0b1c90bf149e..6772523d08dbe 100644 --- a/clients/client-sfn/src/commands/DeleteStateMachineCommand.ts +++ b/clients/client-sfn/src/commands/DeleteStateMachineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStateMachineInput, DeleteStateMachineOutput } from "../models/models_0"; +import type { DeleteStateMachineInput, DeleteStateMachineOutput } from "../models/models_0"; import { DeleteStateMachine } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DeleteStateMachineVersionCommand.ts b/clients/client-sfn/src/commands/DeleteStateMachineVersionCommand.ts index ca2e35320a7e8..03dcd464cedbb 100644 --- a/clients/client-sfn/src/commands/DeleteStateMachineVersionCommand.ts +++ b/clients/client-sfn/src/commands/DeleteStateMachineVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteStateMachineVersionInput, DeleteStateMachineVersionOutput } from "../models/models_0"; +import type { DeleteStateMachineVersionInput, DeleteStateMachineVersionOutput } from "../models/models_0"; import { DeleteStateMachineVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DescribeActivityCommand.ts b/clients/client-sfn/src/commands/DescribeActivityCommand.ts index c81949424d664..86f9544ee48ad 100644 --- a/clients/client-sfn/src/commands/DescribeActivityCommand.ts +++ b/clients/client-sfn/src/commands/DescribeActivityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeActivityInput, DescribeActivityOutput } from "../models/models_0"; +import type { DescribeActivityInput, DescribeActivityOutput } from "../models/models_0"; import { DescribeActivity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DescribeExecutionCommand.ts b/clients/client-sfn/src/commands/DescribeExecutionCommand.ts index 01b302f005751..92e7a3611f9b6 100644 --- a/clients/client-sfn/src/commands/DescribeExecutionCommand.ts +++ b/clients/client-sfn/src/commands/DescribeExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExecutionInput, DescribeExecutionOutput } from "../models/models_0"; +import type { DescribeExecutionInput, DescribeExecutionOutput } from "../models/models_0"; import { DescribeExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DescribeMapRunCommand.ts b/clients/client-sfn/src/commands/DescribeMapRunCommand.ts index d71fc0bdbb14c..25e6a2c3e31f0 100644 --- a/clients/client-sfn/src/commands/DescribeMapRunCommand.ts +++ b/clients/client-sfn/src/commands/DescribeMapRunCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMapRunInput, DescribeMapRunOutput } from "../models/models_0"; +import type { DescribeMapRunInput, DescribeMapRunOutput } from "../models/models_0"; import { DescribeMapRun } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DescribeStateMachineAliasCommand.ts b/clients/client-sfn/src/commands/DescribeStateMachineAliasCommand.ts index 5fb9243251d55..3981d6f51c8a1 100644 --- a/clients/client-sfn/src/commands/DescribeStateMachineAliasCommand.ts +++ b/clients/client-sfn/src/commands/DescribeStateMachineAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStateMachineAliasInput, DescribeStateMachineAliasOutput } from "../models/models_0"; +import type { DescribeStateMachineAliasInput, DescribeStateMachineAliasOutput } from "../models/models_0"; import { DescribeStateMachineAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DescribeStateMachineCommand.ts b/clients/client-sfn/src/commands/DescribeStateMachineCommand.ts index 711e404392d28..4c8f64fa99d5c 100644 --- a/clients/client-sfn/src/commands/DescribeStateMachineCommand.ts +++ b/clients/client-sfn/src/commands/DescribeStateMachineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStateMachineInput, DescribeStateMachineOutput } from "../models/models_0"; +import type { DescribeStateMachineInput, DescribeStateMachineOutput } from "../models/models_0"; import { DescribeStateMachine } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/DescribeStateMachineForExecutionCommand.ts b/clients/client-sfn/src/commands/DescribeStateMachineForExecutionCommand.ts index 86858942cc09b..ce08714fa4938 100644 --- a/clients/client-sfn/src/commands/DescribeStateMachineForExecutionCommand.ts +++ b/clients/client-sfn/src/commands/DescribeStateMachineForExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStateMachineForExecutionInput, DescribeStateMachineForExecutionOutput } from "../models/models_0"; +import type { DescribeStateMachineForExecutionInput, DescribeStateMachineForExecutionOutput } from "../models/models_0"; import { DescribeStateMachineForExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/GetActivityTaskCommand.ts b/clients/client-sfn/src/commands/GetActivityTaskCommand.ts index 070b10a24a10d..3494e23ffb81e 100644 --- a/clients/client-sfn/src/commands/GetActivityTaskCommand.ts +++ b/clients/client-sfn/src/commands/GetActivityTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetActivityTaskInput, GetActivityTaskOutput } from "../models/models_0"; +import type { GetActivityTaskInput, GetActivityTaskOutput } from "../models/models_0"; import { GetActivityTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/GetExecutionHistoryCommand.ts b/clients/client-sfn/src/commands/GetExecutionHistoryCommand.ts index 978bd8a4f6c22..badf94e78724c 100644 --- a/clients/client-sfn/src/commands/GetExecutionHistoryCommand.ts +++ b/clients/client-sfn/src/commands/GetExecutionHistoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExecutionHistoryInput, GetExecutionHistoryOutput } from "../models/models_0"; +import type { GetExecutionHistoryInput, GetExecutionHistoryOutput } from "../models/models_0"; import { GetExecutionHistory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/ListActivitiesCommand.ts b/clients/client-sfn/src/commands/ListActivitiesCommand.ts index 43fb9af4803f8..ba3c8f9f950c8 100644 --- a/clients/client-sfn/src/commands/ListActivitiesCommand.ts +++ b/clients/client-sfn/src/commands/ListActivitiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListActivitiesInput, ListActivitiesOutput } from "../models/models_0"; +import type { ListActivitiesInput, ListActivitiesOutput } from "../models/models_0"; import { ListActivities } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/ListExecutionsCommand.ts b/clients/client-sfn/src/commands/ListExecutionsCommand.ts index 5cf92c12cc9fe..b66d00dbc37d2 100644 --- a/clients/client-sfn/src/commands/ListExecutionsCommand.ts +++ b/clients/client-sfn/src/commands/ListExecutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExecutionsInput, ListExecutionsOutput } from "../models/models_0"; +import type { ListExecutionsInput, ListExecutionsOutput } from "../models/models_0"; import { ListExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/ListMapRunsCommand.ts b/clients/client-sfn/src/commands/ListMapRunsCommand.ts index 7e3b49da10810..666027683f25e 100644 --- a/clients/client-sfn/src/commands/ListMapRunsCommand.ts +++ b/clients/client-sfn/src/commands/ListMapRunsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMapRunsInput, ListMapRunsOutput } from "../models/models_0"; +import type { ListMapRunsInput, ListMapRunsOutput } from "../models/models_0"; import { ListMapRuns } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/ListStateMachineAliasesCommand.ts b/clients/client-sfn/src/commands/ListStateMachineAliasesCommand.ts index e09290382c2c7..2fb5ce3136944 100644 --- a/clients/client-sfn/src/commands/ListStateMachineAliasesCommand.ts +++ b/clients/client-sfn/src/commands/ListStateMachineAliasesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStateMachineAliasesInput, ListStateMachineAliasesOutput } from "../models/models_0"; +import type { ListStateMachineAliasesInput, ListStateMachineAliasesOutput } from "../models/models_0"; import { ListStateMachineAliases } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/ListStateMachineVersionsCommand.ts b/clients/client-sfn/src/commands/ListStateMachineVersionsCommand.ts index 491bc458705ef..5dc94c713642b 100644 --- a/clients/client-sfn/src/commands/ListStateMachineVersionsCommand.ts +++ b/clients/client-sfn/src/commands/ListStateMachineVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStateMachineVersionsInput, ListStateMachineVersionsOutput } from "../models/models_0"; +import type { ListStateMachineVersionsInput, ListStateMachineVersionsOutput } from "../models/models_0"; import { ListStateMachineVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/ListStateMachinesCommand.ts b/clients/client-sfn/src/commands/ListStateMachinesCommand.ts index b769d0c24fa40..da0a2cabd989c 100644 --- a/clients/client-sfn/src/commands/ListStateMachinesCommand.ts +++ b/clients/client-sfn/src/commands/ListStateMachinesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListStateMachinesInput, ListStateMachinesOutput } from "../models/models_0"; +import type { ListStateMachinesInput, ListStateMachinesOutput } from "../models/models_0"; import { ListStateMachines } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/ListTagsForResourceCommand.ts b/clients/client-sfn/src/commands/ListTagsForResourceCommand.ts index c1fa6e38aa222..4a03f3aed4bf3 100644 --- a/clients/client-sfn/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sfn/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/PublishStateMachineVersionCommand.ts b/clients/client-sfn/src/commands/PublishStateMachineVersionCommand.ts index cc23c05256ce2..8018a471e504f 100644 --- a/clients/client-sfn/src/commands/PublishStateMachineVersionCommand.ts +++ b/clients/client-sfn/src/commands/PublishStateMachineVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishStateMachineVersionInput, PublishStateMachineVersionOutput } from "../models/models_0"; +import type { PublishStateMachineVersionInput, PublishStateMachineVersionOutput } from "../models/models_0"; import { PublishStateMachineVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/RedriveExecutionCommand.ts b/clients/client-sfn/src/commands/RedriveExecutionCommand.ts index ce1ae57e5bb35..35d06111843cb 100644 --- a/clients/client-sfn/src/commands/RedriveExecutionCommand.ts +++ b/clients/client-sfn/src/commands/RedriveExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RedriveExecutionInput, RedriveExecutionOutput } from "../models/models_0"; +import type { RedriveExecutionInput, RedriveExecutionOutput } from "../models/models_0"; import { RedriveExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/SendTaskFailureCommand.ts b/clients/client-sfn/src/commands/SendTaskFailureCommand.ts index 40f79ffdd3819..89c0871e30e50 100644 --- a/clients/client-sfn/src/commands/SendTaskFailureCommand.ts +++ b/clients/client-sfn/src/commands/SendTaskFailureCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendTaskFailureInput, SendTaskFailureOutput } from "../models/models_0"; +import type { SendTaskFailureInput, SendTaskFailureOutput } from "../models/models_0"; import { SendTaskFailure } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/SendTaskHeartbeatCommand.ts b/clients/client-sfn/src/commands/SendTaskHeartbeatCommand.ts index 74ff30dbf129f..9a0f59126cbb3 100644 --- a/clients/client-sfn/src/commands/SendTaskHeartbeatCommand.ts +++ b/clients/client-sfn/src/commands/SendTaskHeartbeatCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendTaskHeartbeatInput, SendTaskHeartbeatOutput } from "../models/models_0"; +import type { SendTaskHeartbeatInput, SendTaskHeartbeatOutput } from "../models/models_0"; import { SendTaskHeartbeat } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/SendTaskSuccessCommand.ts b/clients/client-sfn/src/commands/SendTaskSuccessCommand.ts index e865b35f9ebe8..fab1699ca42cc 100644 --- a/clients/client-sfn/src/commands/SendTaskSuccessCommand.ts +++ b/clients/client-sfn/src/commands/SendTaskSuccessCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendTaskSuccessInput, SendTaskSuccessOutput } from "../models/models_0"; +import type { SendTaskSuccessInput, SendTaskSuccessOutput } from "../models/models_0"; import { SendTaskSuccess } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/StartExecutionCommand.ts b/clients/client-sfn/src/commands/StartExecutionCommand.ts index 0cb1311eeb2aa..7dc8671f4e346 100644 --- a/clients/client-sfn/src/commands/StartExecutionCommand.ts +++ b/clients/client-sfn/src/commands/StartExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartExecutionInput, StartExecutionOutput } from "../models/models_0"; +import type { StartExecutionInput, StartExecutionOutput } from "../models/models_0"; import { StartExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/StartSyncExecutionCommand.ts b/clients/client-sfn/src/commands/StartSyncExecutionCommand.ts index 166a03ca817a4..3beaf6d57fa16 100644 --- a/clients/client-sfn/src/commands/StartSyncExecutionCommand.ts +++ b/clients/client-sfn/src/commands/StartSyncExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSyncExecutionInput, StartSyncExecutionOutput } from "../models/models_0"; +import type { StartSyncExecutionInput, StartSyncExecutionOutput } from "../models/models_0"; import { StartSyncExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/StopExecutionCommand.ts b/clients/client-sfn/src/commands/StopExecutionCommand.ts index a414b706f5b52..6c3951a98bcdc 100644 --- a/clients/client-sfn/src/commands/StopExecutionCommand.ts +++ b/clients/client-sfn/src/commands/StopExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopExecutionInput, StopExecutionOutput } from "../models/models_0"; +import type { StopExecutionInput, StopExecutionOutput } from "../models/models_0"; import { StopExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/TagResourceCommand.ts b/clients/client-sfn/src/commands/TagResourceCommand.ts index 9852c1ffc5ddb..48934764a39d0 100644 --- a/clients/client-sfn/src/commands/TagResourceCommand.ts +++ b/clients/client-sfn/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/TestStateCommand.ts b/clients/client-sfn/src/commands/TestStateCommand.ts index fbebb7c82209a..b3f1441ca96cb 100644 --- a/clients/client-sfn/src/commands/TestStateCommand.ts +++ b/clients/client-sfn/src/commands/TestStateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestStateInput, TestStateOutput } from "../models/models_0"; +import type { TestStateInput, TestStateOutput } from "../models/models_0"; import { TestState } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/UntagResourceCommand.ts b/clients/client-sfn/src/commands/UntagResourceCommand.ts index d85294d07886c..08726898e32bf 100644 --- a/clients/client-sfn/src/commands/UntagResourceCommand.ts +++ b/clients/client-sfn/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/UpdateMapRunCommand.ts b/clients/client-sfn/src/commands/UpdateMapRunCommand.ts index a3928dc22539d..0cfe87385fd3f 100644 --- a/clients/client-sfn/src/commands/UpdateMapRunCommand.ts +++ b/clients/client-sfn/src/commands/UpdateMapRunCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMapRunInput, UpdateMapRunOutput } from "../models/models_0"; +import type { UpdateMapRunInput, UpdateMapRunOutput } from "../models/models_0"; import { UpdateMapRun } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/UpdateStateMachineAliasCommand.ts b/clients/client-sfn/src/commands/UpdateStateMachineAliasCommand.ts index a6bd1f1987a55..31424a01d5705 100644 --- a/clients/client-sfn/src/commands/UpdateStateMachineAliasCommand.ts +++ b/clients/client-sfn/src/commands/UpdateStateMachineAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStateMachineAliasInput, UpdateStateMachineAliasOutput } from "../models/models_0"; +import type { UpdateStateMachineAliasInput, UpdateStateMachineAliasOutput } from "../models/models_0"; import { UpdateStateMachineAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/UpdateStateMachineCommand.ts b/clients/client-sfn/src/commands/UpdateStateMachineCommand.ts index d0cc9109bca39..ed46297e9ac4b 100644 --- a/clients/client-sfn/src/commands/UpdateStateMachineCommand.ts +++ b/clients/client-sfn/src/commands/UpdateStateMachineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateStateMachineInput, UpdateStateMachineOutput } from "../models/models_0"; +import type { UpdateStateMachineInput, UpdateStateMachineOutput } from "../models/models_0"; import { UpdateStateMachine } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/commands/ValidateStateMachineDefinitionCommand.ts b/clients/client-sfn/src/commands/ValidateStateMachineDefinitionCommand.ts index 07059f27bfeb5..50ed3df026b48 100644 --- a/clients/client-sfn/src/commands/ValidateStateMachineDefinitionCommand.ts +++ b/clients/client-sfn/src/commands/ValidateStateMachineDefinitionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidateStateMachineDefinitionInput, ValidateStateMachineDefinitionOutput } from "../models/models_0"; +import type { ValidateStateMachineDefinitionInput, ValidateStateMachineDefinitionOutput } from "../models/models_0"; import { ValidateStateMachineDefinition } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public diff --git a/clients/client-sfn/src/endpoint/EndpointParameters.ts b/clients/client-sfn/src/endpoint/EndpointParameters.ts index 155be834c2fb9..840a293b0fe85 100644 --- a/clients/client-sfn/src/endpoint/EndpointParameters.ts +++ b/clients/client-sfn/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sfn/src/endpoint/endpointResolver.ts b/clients/client-sfn/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sfn/src/endpoint/endpointResolver.ts +++ b/clients/client-sfn/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sfn/src/extensionConfiguration.ts b/clients/client-sfn/src/extensionConfiguration.ts index 60d0ef0034501..f1e59eeb25215 100644 --- a/clients/client-sfn/src/extensionConfiguration.ts +++ b/clients/client-sfn/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sfn/src/models/SFNServiceException.ts b/clients/client-sfn/src/models/SFNServiceException.ts index a7a286a968e85..875fd5e91a16e 100644 --- a/clients/client-sfn/src/models/SFNServiceException.ts +++ b/clients/client-sfn/src/models/SFNServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sfn/src/models/errors.ts b/clients/client-sfn/src/models/errors.ts index 07f785ab8e833..86e4c8ac34347 100644 --- a/clients/client-sfn/src/models/errors.ts +++ b/clients/client-sfn/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { KmsKeyState, ValidationExceptionReason } from "./enums"; import { SFNServiceException as __BaseException } from "./SFNServiceException"; diff --git a/clients/client-sfn/src/pagination/GetExecutionHistoryPaginator.ts b/clients/client-sfn/src/pagination/GetExecutionHistoryPaginator.ts index 71fb816dfd10e..ee7493309a9e2 100644 --- a/clients/client-sfn/src/pagination/GetExecutionHistoryPaginator.ts +++ b/clients/client-sfn/src/pagination/GetExecutionHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetExecutionHistoryCommand, diff --git a/clients/client-sfn/src/pagination/Interfaces.ts b/clients/client-sfn/src/pagination/Interfaces.ts index 3be3c2f9fc4f9..733c4efe83f68 100644 --- a/clients/client-sfn/src/pagination/Interfaces.ts +++ b/clients/client-sfn/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SFNClient } from "../SFNClient"; diff --git a/clients/client-sfn/src/pagination/ListActivitiesPaginator.ts b/clients/client-sfn/src/pagination/ListActivitiesPaginator.ts index 6a83ef938d12f..9a949e6d645a4 100644 --- a/clients/client-sfn/src/pagination/ListActivitiesPaginator.ts +++ b/clients/client-sfn/src/pagination/ListActivitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListActivitiesCommand, diff --git a/clients/client-sfn/src/pagination/ListExecutionsPaginator.ts b/clients/client-sfn/src/pagination/ListExecutionsPaginator.ts index 96a948a480cec..47e9848ed6527 100644 --- a/clients/client-sfn/src/pagination/ListExecutionsPaginator.ts +++ b/clients/client-sfn/src/pagination/ListExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExecutionsCommand, diff --git a/clients/client-sfn/src/pagination/ListMapRunsPaginator.ts b/clients/client-sfn/src/pagination/ListMapRunsPaginator.ts index fdc24dd53544e..d4311481faed9 100644 --- a/clients/client-sfn/src/pagination/ListMapRunsPaginator.ts +++ b/clients/client-sfn/src/pagination/ListMapRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMapRunsCommand, ListMapRunsCommandInput, ListMapRunsCommandOutput } from "../commands/ListMapRunsCommand"; import { SFNClient } from "../SFNClient"; diff --git a/clients/client-sfn/src/pagination/ListStateMachinesPaginator.ts b/clients/client-sfn/src/pagination/ListStateMachinesPaginator.ts index 1d16250ee361e..0ab31eaf2926b 100644 --- a/clients/client-sfn/src/pagination/ListStateMachinesPaginator.ts +++ b/clients/client-sfn/src/pagination/ListStateMachinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListStateMachinesCommand, diff --git a/clients/client-sfn/src/runtimeConfig.browser.ts b/clients/client-sfn/src/runtimeConfig.browser.ts index 7674151ddcfba..a2f79da0814fe 100644 --- a/clients/client-sfn/src/runtimeConfig.browser.ts +++ b/clients/client-sfn/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SFNClientConfig } from "./SFNClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SFNClientConfig } from "./SFNClient"; /** * @internal diff --git a/clients/client-sfn/src/runtimeConfig.native.ts b/clients/client-sfn/src/runtimeConfig.native.ts index 5f9719f94ac42..a9259ecb1e2b6 100644 --- a/clients/client-sfn/src/runtimeConfig.native.ts +++ b/clients/client-sfn/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SFNClientConfig } from "./SFNClient"; +import type { SFNClientConfig } from "./SFNClient"; /** * @internal diff --git a/clients/client-sfn/src/runtimeConfig.shared.ts b/clients/client-sfn/src/runtimeConfig.shared.ts index 1ed0a5a942f32..e82d35ccb542e 100644 --- a/clients/client-sfn/src/runtimeConfig.shared.ts +++ b/clients/client-sfn/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSFNHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SFNClientConfig } from "./SFNClient"; +import type { SFNClientConfig } from "./SFNClient"; /** * @internal diff --git a/clients/client-sfn/src/runtimeConfig.ts b/clients/client-sfn/src/runtimeConfig.ts index fba42ce3b91d4..1461ea810bc07 100644 --- a/clients/client-sfn/src/runtimeConfig.ts +++ b/clients/client-sfn/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SFNClientConfig } from "./SFNClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SFNClientConfig } from "./SFNClient"; /** * @internal diff --git a/clients/client-sfn/src/runtimeExtensions.ts b/clients/client-sfn/src/runtimeExtensions.ts index 4d5fa727f3cf5..872508663c1e8 100644 --- a/clients/client-sfn/src/runtimeExtensions.ts +++ b/clients/client-sfn/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SFNExtensionConfiguration } from "./extensionConfiguration"; +import type { SFNExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sfn/src/schemas/schemas_0.ts b/clients/client-sfn/src/schemas/schemas_0.ts index f44c3ce534a44..37b41a8b89aa4 100644 --- a/clients/client-sfn/src/schemas/schemas_0.ts +++ b/clients/client-sfn/src/schemas/schemas_0.ts @@ -432,7 +432,7 @@ const n0 = "com.amazonaws.sfn"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-shield/package.json b/clients/client-shield/package.json index cc6c41b3ba033..24d94325f024f 100644 --- a/clients/client-shield/package.json +++ b/clients/client-shield/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-shield/src/Shield.ts b/clients/client-shield/src/Shield.ts index 1a6dc17d3124b..c6b9a6d952f9f 100644 --- a/clients/client-shield/src/Shield.ts +++ b/clients/client-shield/src/Shield.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateDRTLogBucketCommand, @@ -174,7 +174,7 @@ import { UpdateSubscriptionCommandInput, UpdateSubscriptionCommandOutput, } from "./commands/UpdateSubscriptionCommand"; -import { ShieldClient, ShieldClientConfig } from "./ShieldClient"; +import { ShieldClient } from "./ShieldClient"; const commands = { AssociateDRTLogBucketCommand, diff --git a/clients/client-shield/src/ShieldClient.ts b/clients/client-shield/src/ShieldClient.ts index 98d55f53fc9bc..b5fd67c6e3ceb 100644 --- a/clients/client-shield/src/ShieldClient.ts +++ b/clients/client-shield/src/ShieldClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultShieldHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -169,7 +178,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-shield/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-shield/src/auth/httpAuthExtensionConfiguration.ts index e207dcb00c0a1..bfcbf8eed8ff9 100644 --- a/clients/client-shield/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-shield/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { ShieldHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { ShieldHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-shield/src/auth/httpAuthSchemeProvider.ts b/clients/client-shield/src/auth/httpAuthSchemeProvider.ts index 266c8334118b2..38b9208156378 100644 --- a/clients/client-shield/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-shield/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { ShieldClientConfig, ShieldClientResolvedConfig } from "../ShieldClient"; +import { type ShieldClientResolvedConfig, ShieldClientConfig } from "../ShieldClient"; /** * @internal diff --git a/clients/client-shield/src/commands/AssociateDRTLogBucketCommand.ts b/clients/client-shield/src/commands/AssociateDRTLogBucketCommand.ts index d75e07560e26a..a1af5e5f23a18 100644 --- a/clients/client-shield/src/commands/AssociateDRTLogBucketCommand.ts +++ b/clients/client-shield/src/commands/AssociateDRTLogBucketCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDRTLogBucketRequest, AssociateDRTLogBucketResponse } from "../models/models_0"; +import type { AssociateDRTLogBucketRequest, AssociateDRTLogBucketResponse } from "../models/models_0"; import { AssociateDRTLogBucket } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/AssociateDRTRoleCommand.ts b/clients/client-shield/src/commands/AssociateDRTRoleCommand.ts index bc318849f0a5b..6cde403fe18c0 100644 --- a/clients/client-shield/src/commands/AssociateDRTRoleCommand.ts +++ b/clients/client-shield/src/commands/AssociateDRTRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDRTRoleRequest, AssociateDRTRoleResponse } from "../models/models_0"; +import type { AssociateDRTRoleRequest, AssociateDRTRoleResponse } from "../models/models_0"; import { AssociateDRTRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/AssociateHealthCheckCommand.ts b/clients/client-shield/src/commands/AssociateHealthCheckCommand.ts index 936bfd3dbd5e0..4af6343489eed 100644 --- a/clients/client-shield/src/commands/AssociateHealthCheckCommand.ts +++ b/clients/client-shield/src/commands/AssociateHealthCheckCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateHealthCheckRequest, AssociateHealthCheckResponse } from "../models/models_0"; +import type { AssociateHealthCheckRequest, AssociateHealthCheckResponse } from "../models/models_0"; import { AssociateHealthCheck } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/AssociateProactiveEngagementDetailsCommand.ts b/clients/client-shield/src/commands/AssociateProactiveEngagementDetailsCommand.ts index 04d5d6f26c105..be7ff89fe7b03 100644 --- a/clients/client-shield/src/commands/AssociateProactiveEngagementDetailsCommand.ts +++ b/clients/client-shield/src/commands/AssociateProactiveEngagementDetailsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateProactiveEngagementDetailsRequest, AssociateProactiveEngagementDetailsResponse, } from "../models/models_0"; import { AssociateProactiveEngagementDetails } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/CreateProtectionCommand.ts b/clients/client-shield/src/commands/CreateProtectionCommand.ts index f06307576b894..cd3ab7d266bfc 100644 --- a/clients/client-shield/src/commands/CreateProtectionCommand.ts +++ b/clients/client-shield/src/commands/CreateProtectionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProtectionRequest, CreateProtectionResponse } from "../models/models_0"; +import type { CreateProtectionRequest, CreateProtectionResponse } from "../models/models_0"; import { CreateProtection } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/CreateProtectionGroupCommand.ts b/clients/client-shield/src/commands/CreateProtectionGroupCommand.ts index 8b9842a3740f4..5d162eab0d583 100644 --- a/clients/client-shield/src/commands/CreateProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/CreateProtectionGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProtectionGroupRequest, CreateProtectionGroupResponse } from "../models/models_0"; +import type { CreateProtectionGroupRequest, CreateProtectionGroupResponse } from "../models/models_0"; import { CreateProtectionGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/CreateSubscriptionCommand.ts b/clients/client-shield/src/commands/CreateSubscriptionCommand.ts index 96de0cd1973a8..76d9ae8442d4b 100644 --- a/clients/client-shield/src/commands/CreateSubscriptionCommand.ts +++ b/clients/client-shield/src/commands/CreateSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSubscriptionRequest, CreateSubscriptionResponse } from "../models/models_0"; +import type { CreateSubscriptionRequest, CreateSubscriptionResponse } from "../models/models_0"; import { CreateSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DeleteProtectionCommand.ts b/clients/client-shield/src/commands/DeleteProtectionCommand.ts index 9d553eefaa43a..566d8b9cfd0ac 100644 --- a/clients/client-shield/src/commands/DeleteProtectionCommand.ts +++ b/clients/client-shield/src/commands/DeleteProtectionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProtectionRequest, DeleteProtectionResponse } from "../models/models_0"; +import type { DeleteProtectionRequest, DeleteProtectionResponse } from "../models/models_0"; import { DeleteProtection } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DeleteProtectionGroupCommand.ts b/clients/client-shield/src/commands/DeleteProtectionGroupCommand.ts index c57a6155412bf..87c31946c5c91 100644 --- a/clients/client-shield/src/commands/DeleteProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/DeleteProtectionGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProtectionGroupRequest, DeleteProtectionGroupResponse } from "../models/models_0"; +import type { DeleteProtectionGroupRequest, DeleteProtectionGroupResponse } from "../models/models_0"; import { DeleteProtectionGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DeleteSubscriptionCommand.ts b/clients/client-shield/src/commands/DeleteSubscriptionCommand.ts index 1559fc5b92dd4..e16bc6fc45b86 100644 --- a/clients/client-shield/src/commands/DeleteSubscriptionCommand.ts +++ b/clients/client-shield/src/commands/DeleteSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSubscriptionRequest, DeleteSubscriptionResponse } from "../models/models_0"; +import type { DeleteSubscriptionRequest, DeleteSubscriptionResponse } from "../models/models_0"; import { DeleteSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DescribeAttackCommand.ts b/clients/client-shield/src/commands/DescribeAttackCommand.ts index d2b5bc6a27a03..fbb2fe65d74ca 100644 --- a/clients/client-shield/src/commands/DescribeAttackCommand.ts +++ b/clients/client-shield/src/commands/DescribeAttackCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAttackRequest, DescribeAttackResponse } from "../models/models_0"; +import type { DescribeAttackRequest, DescribeAttackResponse } from "../models/models_0"; import { DescribeAttack } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DescribeAttackStatisticsCommand.ts b/clients/client-shield/src/commands/DescribeAttackStatisticsCommand.ts index 113eedc0a774f..03853d4f0a6ce 100644 --- a/clients/client-shield/src/commands/DescribeAttackStatisticsCommand.ts +++ b/clients/client-shield/src/commands/DescribeAttackStatisticsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAttackStatisticsRequest, DescribeAttackStatisticsResponse } from "../models/models_0"; +import type { DescribeAttackStatisticsRequest, DescribeAttackStatisticsResponse } from "../models/models_0"; import { DescribeAttackStatistics } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DescribeDRTAccessCommand.ts b/clients/client-shield/src/commands/DescribeDRTAccessCommand.ts index 16e6aa56a9354..88cfc403d0e8b 100644 --- a/clients/client-shield/src/commands/DescribeDRTAccessCommand.ts +++ b/clients/client-shield/src/commands/DescribeDRTAccessCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDRTAccessRequest, DescribeDRTAccessResponse } from "../models/models_0"; +import type { DescribeDRTAccessRequest, DescribeDRTAccessResponse } from "../models/models_0"; import { DescribeDRTAccess } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DescribeEmergencyContactSettingsCommand.ts b/clients/client-shield/src/commands/DescribeEmergencyContactSettingsCommand.ts index bfb5250e49828..f841940257802 100644 --- a/clients/client-shield/src/commands/DescribeEmergencyContactSettingsCommand.ts +++ b/clients/client-shield/src/commands/DescribeEmergencyContactSettingsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEmergencyContactSettingsRequest, DescribeEmergencyContactSettingsResponse } from "../models/models_0"; +import type { + DescribeEmergencyContactSettingsRequest, + DescribeEmergencyContactSettingsResponse, +} from "../models/models_0"; import { DescribeEmergencyContactSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DescribeProtectionCommand.ts b/clients/client-shield/src/commands/DescribeProtectionCommand.ts index a0bd2baefa6d0..178092080bd4c 100644 --- a/clients/client-shield/src/commands/DescribeProtectionCommand.ts +++ b/clients/client-shield/src/commands/DescribeProtectionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProtectionRequest, DescribeProtectionResponse } from "../models/models_0"; +import type { DescribeProtectionRequest, DescribeProtectionResponse } from "../models/models_0"; import { DescribeProtection } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DescribeProtectionGroupCommand.ts b/clients/client-shield/src/commands/DescribeProtectionGroupCommand.ts index 932abb8aac70c..47360ce948c2f 100644 --- a/clients/client-shield/src/commands/DescribeProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/DescribeProtectionGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProtectionGroupRequest, DescribeProtectionGroupResponse } from "../models/models_0"; +import type { DescribeProtectionGroupRequest, DescribeProtectionGroupResponse } from "../models/models_0"; import { DescribeProtectionGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DescribeSubscriptionCommand.ts b/clients/client-shield/src/commands/DescribeSubscriptionCommand.ts index f93fd9d485005..f1d24779213c5 100644 --- a/clients/client-shield/src/commands/DescribeSubscriptionCommand.ts +++ b/clients/client-shield/src/commands/DescribeSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSubscriptionRequest, DescribeSubscriptionResponse } from "../models/models_0"; +import type { DescribeSubscriptionRequest, DescribeSubscriptionResponse } from "../models/models_0"; import { DescribeSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DisableApplicationLayerAutomaticResponseCommand.ts b/clients/client-shield/src/commands/DisableApplicationLayerAutomaticResponseCommand.ts index bd902557410b0..a0a9a9b6f29dc 100644 --- a/clients/client-shield/src/commands/DisableApplicationLayerAutomaticResponseCommand.ts +++ b/clients/client-shield/src/commands/DisableApplicationLayerAutomaticResponseCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisableApplicationLayerAutomaticResponseRequest, DisableApplicationLayerAutomaticResponseResponse, } from "../models/models_0"; import { DisableApplicationLayerAutomaticResponse } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DisableProactiveEngagementCommand.ts b/clients/client-shield/src/commands/DisableProactiveEngagementCommand.ts index b016fc2c87ccb..1e4624ddb8570 100644 --- a/clients/client-shield/src/commands/DisableProactiveEngagementCommand.ts +++ b/clients/client-shield/src/commands/DisableProactiveEngagementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableProactiveEngagementRequest, DisableProactiveEngagementResponse } from "../models/models_0"; +import type { DisableProactiveEngagementRequest, DisableProactiveEngagementResponse } from "../models/models_0"; import { DisableProactiveEngagement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DisassociateDRTLogBucketCommand.ts b/clients/client-shield/src/commands/DisassociateDRTLogBucketCommand.ts index 4bb2297d7c074..d09c261fb0b5a 100644 --- a/clients/client-shield/src/commands/DisassociateDRTLogBucketCommand.ts +++ b/clients/client-shield/src/commands/DisassociateDRTLogBucketCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateDRTLogBucketRequest, DisassociateDRTLogBucketResponse } from "../models/models_0"; +import type { DisassociateDRTLogBucketRequest, DisassociateDRTLogBucketResponse } from "../models/models_0"; import { DisassociateDRTLogBucket } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DisassociateDRTRoleCommand.ts b/clients/client-shield/src/commands/DisassociateDRTRoleCommand.ts index 8ee7557367d88..bd062e14f0242 100644 --- a/clients/client-shield/src/commands/DisassociateDRTRoleCommand.ts +++ b/clients/client-shield/src/commands/DisassociateDRTRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateDRTRoleRequest, DisassociateDRTRoleResponse } from "../models/models_0"; +import type { DisassociateDRTRoleRequest, DisassociateDRTRoleResponse } from "../models/models_0"; import { DisassociateDRTRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/DisassociateHealthCheckCommand.ts b/clients/client-shield/src/commands/DisassociateHealthCheckCommand.ts index 9ff3d083daba4..d16f64a32f848 100644 --- a/clients/client-shield/src/commands/DisassociateHealthCheckCommand.ts +++ b/clients/client-shield/src/commands/DisassociateHealthCheckCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateHealthCheckRequest, DisassociateHealthCheckResponse } from "../models/models_0"; +import type { DisassociateHealthCheckRequest, DisassociateHealthCheckResponse } from "../models/models_0"; import { DisassociateHealthCheck } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/EnableApplicationLayerAutomaticResponseCommand.ts b/clients/client-shield/src/commands/EnableApplicationLayerAutomaticResponseCommand.ts index d37f0f1f4023d..5265c13498742 100644 --- a/clients/client-shield/src/commands/EnableApplicationLayerAutomaticResponseCommand.ts +++ b/clients/client-shield/src/commands/EnableApplicationLayerAutomaticResponseCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { EnableApplicationLayerAutomaticResponseRequest, EnableApplicationLayerAutomaticResponseResponse, } from "../models/models_0"; import { EnableApplicationLayerAutomaticResponse } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/EnableProactiveEngagementCommand.ts b/clients/client-shield/src/commands/EnableProactiveEngagementCommand.ts index 18fd6c0102da9..4cdf2783a7b92 100644 --- a/clients/client-shield/src/commands/EnableProactiveEngagementCommand.ts +++ b/clients/client-shield/src/commands/EnableProactiveEngagementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnableProactiveEngagementRequest, EnableProactiveEngagementResponse } from "../models/models_0"; +import type { EnableProactiveEngagementRequest, EnableProactiveEngagementResponse } from "../models/models_0"; import { EnableProactiveEngagement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/GetSubscriptionStateCommand.ts b/clients/client-shield/src/commands/GetSubscriptionStateCommand.ts index 7bfacbc0882c1..6e63499b8bc51 100644 --- a/clients/client-shield/src/commands/GetSubscriptionStateCommand.ts +++ b/clients/client-shield/src/commands/GetSubscriptionStateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSubscriptionStateRequest, GetSubscriptionStateResponse } from "../models/models_0"; +import type { GetSubscriptionStateRequest, GetSubscriptionStateResponse } from "../models/models_0"; import { GetSubscriptionState } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/ListAttacksCommand.ts b/clients/client-shield/src/commands/ListAttacksCommand.ts index 4278059d57ad8..892f1bfcfe89c 100644 --- a/clients/client-shield/src/commands/ListAttacksCommand.ts +++ b/clients/client-shield/src/commands/ListAttacksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAttacksRequest, ListAttacksResponse } from "../models/models_0"; +import type { ListAttacksRequest, ListAttacksResponse } from "../models/models_0"; import { ListAttacks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/ListProtectionGroupsCommand.ts b/clients/client-shield/src/commands/ListProtectionGroupsCommand.ts index 6cd6cbf83ea44..8945b7e2b7199 100644 --- a/clients/client-shield/src/commands/ListProtectionGroupsCommand.ts +++ b/clients/client-shield/src/commands/ListProtectionGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProtectionGroupsRequest, ListProtectionGroupsResponse } from "../models/models_0"; +import type { ListProtectionGroupsRequest, ListProtectionGroupsResponse } from "../models/models_0"; import { ListProtectionGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/ListProtectionsCommand.ts b/clients/client-shield/src/commands/ListProtectionsCommand.ts index 75682d7a35ec6..1be3b66272d8a 100644 --- a/clients/client-shield/src/commands/ListProtectionsCommand.ts +++ b/clients/client-shield/src/commands/ListProtectionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProtectionsRequest, ListProtectionsResponse } from "../models/models_0"; +import type { ListProtectionsRequest, ListProtectionsResponse } from "../models/models_0"; import { ListProtections } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/ListResourcesInProtectionGroupCommand.ts b/clients/client-shield/src/commands/ListResourcesInProtectionGroupCommand.ts index 85903fa07e277..2fbf7e84f22ec 100644 --- a/clients/client-shield/src/commands/ListResourcesInProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/ListResourcesInProtectionGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcesInProtectionGroupRequest, ListResourcesInProtectionGroupResponse } from "../models/models_0"; +import type { ListResourcesInProtectionGroupRequest, ListResourcesInProtectionGroupResponse } from "../models/models_0"; import { ListResourcesInProtectionGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/ListTagsForResourceCommand.ts b/clients/client-shield/src/commands/ListTagsForResourceCommand.ts index 88ae4ebd521cd..e33a289ea1eed 100644 --- a/clients/client-shield/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-shield/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/TagResourceCommand.ts b/clients/client-shield/src/commands/TagResourceCommand.ts index d35bdb9cb47c9..acb42eed15cda 100644 --- a/clients/client-shield/src/commands/TagResourceCommand.ts +++ b/clients/client-shield/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/UntagResourceCommand.ts b/clients/client-shield/src/commands/UntagResourceCommand.ts index e608eb359242e..ac615ba62733b 100644 --- a/clients/client-shield/src/commands/UntagResourceCommand.ts +++ b/clients/client-shield/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/UpdateApplicationLayerAutomaticResponseCommand.ts b/clients/client-shield/src/commands/UpdateApplicationLayerAutomaticResponseCommand.ts index 3b49bb880ff6d..236ac80049fa1 100644 --- a/clients/client-shield/src/commands/UpdateApplicationLayerAutomaticResponseCommand.ts +++ b/clients/client-shield/src/commands/UpdateApplicationLayerAutomaticResponseCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateApplicationLayerAutomaticResponseRequest, UpdateApplicationLayerAutomaticResponseResponse, } from "../models/models_0"; import { UpdateApplicationLayerAutomaticResponse } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/UpdateEmergencyContactSettingsCommand.ts b/clients/client-shield/src/commands/UpdateEmergencyContactSettingsCommand.ts index 1398860154c00..01a037196e150 100644 --- a/clients/client-shield/src/commands/UpdateEmergencyContactSettingsCommand.ts +++ b/clients/client-shield/src/commands/UpdateEmergencyContactSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEmergencyContactSettingsRequest, UpdateEmergencyContactSettingsResponse } from "../models/models_0"; +import type { UpdateEmergencyContactSettingsRequest, UpdateEmergencyContactSettingsResponse } from "../models/models_0"; import { UpdateEmergencyContactSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/UpdateProtectionGroupCommand.ts b/clients/client-shield/src/commands/UpdateProtectionGroupCommand.ts index 417814a41ab93..f6b5176363c4c 100644 --- a/clients/client-shield/src/commands/UpdateProtectionGroupCommand.ts +++ b/clients/client-shield/src/commands/UpdateProtectionGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProtectionGroupRequest, UpdateProtectionGroupResponse } from "../models/models_0"; +import type { UpdateProtectionGroupRequest, UpdateProtectionGroupResponse } from "../models/models_0"; import { UpdateProtectionGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/commands/UpdateSubscriptionCommand.ts b/clients/client-shield/src/commands/UpdateSubscriptionCommand.ts index 9ed602ad4b1e6..aab87072e5393 100644 --- a/clients/client-shield/src/commands/UpdateSubscriptionCommand.ts +++ b/clients/client-shield/src/commands/UpdateSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSubscriptionRequest, UpdateSubscriptionResponse } from "../models/models_0"; +import type { UpdateSubscriptionRequest, UpdateSubscriptionResponse } from "../models/models_0"; import { UpdateSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; +import type { ServiceInputTypes, ServiceOutputTypes, ShieldClientResolvedConfig } from "../ShieldClient"; /** * @public diff --git a/clients/client-shield/src/endpoint/EndpointParameters.ts b/clients/client-shield/src/endpoint/EndpointParameters.ts index fe1d9d0fa1485..432ec409a8546 100644 --- a/clients/client-shield/src/endpoint/EndpointParameters.ts +++ b/clients/client-shield/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-shield/src/endpoint/endpointResolver.ts b/clients/client-shield/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-shield/src/endpoint/endpointResolver.ts +++ b/clients/client-shield/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-shield/src/extensionConfiguration.ts b/clients/client-shield/src/extensionConfiguration.ts index e7e45452b0124..3de4e44762af4 100644 --- a/clients/client-shield/src/extensionConfiguration.ts +++ b/clients/client-shield/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-shield/src/models/ShieldServiceException.ts b/clients/client-shield/src/models/ShieldServiceException.ts index f83f606bc0577..b224fe00c2ec0 100644 --- a/clients/client-shield/src/models/ShieldServiceException.ts +++ b/clients/client-shield/src/models/ShieldServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-shield/src/models/errors.ts b/clients/client-shield/src/models/errors.ts index 3cccafd82faaa..2b001c3172d96 100644 --- a/clients/client-shield/src/models/errors.ts +++ b/clients/client-shield/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-shield/src/pagination/Interfaces.ts b/clients/client-shield/src/pagination/Interfaces.ts index 0a1274d3e79c4..46a7befdb6a4e 100644 --- a/clients/client-shield/src/pagination/Interfaces.ts +++ b/clients/client-shield/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { ShieldClient } from "../ShieldClient"; diff --git a/clients/client-shield/src/pagination/ListAttacksPaginator.ts b/clients/client-shield/src/pagination/ListAttacksPaginator.ts index 1d3f44c597b7a..ae4f2ed1aef5b 100644 --- a/clients/client-shield/src/pagination/ListAttacksPaginator.ts +++ b/clients/client-shield/src/pagination/ListAttacksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAttacksCommand, ListAttacksCommandInput, ListAttacksCommandOutput } from "../commands/ListAttacksCommand"; import { ShieldClient } from "../ShieldClient"; diff --git a/clients/client-shield/src/pagination/ListProtectionGroupsPaginator.ts b/clients/client-shield/src/pagination/ListProtectionGroupsPaginator.ts index 4b77ba2287e75..16ae0f0390931 100644 --- a/clients/client-shield/src/pagination/ListProtectionGroupsPaginator.ts +++ b/clients/client-shield/src/pagination/ListProtectionGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProtectionGroupsCommand, diff --git a/clients/client-shield/src/pagination/ListProtectionsPaginator.ts b/clients/client-shield/src/pagination/ListProtectionsPaginator.ts index 9160e8bb76ad0..c87a0dcd71deb 100644 --- a/clients/client-shield/src/pagination/ListProtectionsPaginator.ts +++ b/clients/client-shield/src/pagination/ListProtectionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProtectionsCommand, diff --git a/clients/client-shield/src/pagination/ListResourcesInProtectionGroupPaginator.ts b/clients/client-shield/src/pagination/ListResourcesInProtectionGroupPaginator.ts index 8a1031f9adad1..22c08a9238644 100644 --- a/clients/client-shield/src/pagination/ListResourcesInProtectionGroupPaginator.ts +++ b/clients/client-shield/src/pagination/ListResourcesInProtectionGroupPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourcesInProtectionGroupCommand, diff --git a/clients/client-shield/src/runtimeConfig.browser.ts b/clients/client-shield/src/runtimeConfig.browser.ts index c9b6354d7edb1..ce24f582ef0c5 100644 --- a/clients/client-shield/src/runtimeConfig.browser.ts +++ b/clients/client-shield/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ShieldClientConfig } from "./ShieldClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { ShieldClientConfig } from "./ShieldClient"; /** * @internal diff --git a/clients/client-shield/src/runtimeConfig.native.ts b/clients/client-shield/src/runtimeConfig.native.ts index fd3c7085c53a0..1be31055dae7d 100644 --- a/clients/client-shield/src/runtimeConfig.native.ts +++ b/clients/client-shield/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { ShieldClientConfig } from "./ShieldClient"; +import type { ShieldClientConfig } from "./ShieldClient"; /** * @internal diff --git a/clients/client-shield/src/runtimeConfig.shared.ts b/clients/client-shield/src/runtimeConfig.shared.ts index 00e31a34d01aa..adf1397d6f1ca 100644 --- a/clients/client-shield/src/runtimeConfig.shared.ts +++ b/clients/client-shield/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultShieldHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { ShieldClientConfig } from "./ShieldClient"; +import type { ShieldClientConfig } from "./ShieldClient"; /** * @internal diff --git a/clients/client-shield/src/runtimeConfig.ts b/clients/client-shield/src/runtimeConfig.ts index af3accf91ff27..59eea24b46347 100644 --- a/clients/client-shield/src/runtimeConfig.ts +++ b/clients/client-shield/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { ShieldClientConfig } from "./ShieldClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { ShieldClientConfig } from "./ShieldClient"; /** * @internal diff --git a/clients/client-shield/src/runtimeExtensions.ts b/clients/client-shield/src/runtimeExtensions.ts index eec9419694108..5a9018b82265d 100644 --- a/clients/client-shield/src/runtimeExtensions.ts +++ b/clients/client-shield/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { ShieldExtensionConfiguration } from "./extensionConfiguration"; +import type { ShieldExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-shield/src/schemas/schemas_0.ts b/clients/client-shield/src/schemas/schemas_0.ts index 79836f055378f..0a8fea1ecd177 100644 --- a/clients/client-shield/src/schemas/schemas_0.ts +++ b/clients/client-shield/src/schemas/schemas_0.ts @@ -253,7 +253,7 @@ const n0 = "com.amazonaws.shield"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-signer/package.json b/clients/client-signer/package.json index adff66679090f..11fefef91206d 100644 --- a/clients/client-signer/package.json +++ b/clients/client-signer/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-signer/src/Signer.ts b/clients/client-signer/src/Signer.ts index 8879586819242..3db21a5c612db 100644 --- a/clients/client-signer/src/Signer.ts +++ b/clients/client-signer/src/Signer.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddProfilePermissionCommand, @@ -89,7 +89,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { SignerClient, SignerClientConfig } from "./SignerClient"; +import { SignerClient } from "./SignerClient"; const commands = { AddProfilePermissionCommand, diff --git a/clients/client-signer/src/SignerClient.ts b/clients/client-signer/src/SignerClient.ts index de17c10170119..f27dda071ec95 100644 --- a/clients/client-signer/src/SignerClient.ts +++ b/clients/client-signer/src/SignerClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSignerHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -110,7 +119,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-signer/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-signer/src/auth/httpAuthExtensionConfiguration.ts index 613fea58db7f2..9ff521042faee 100644 --- a/clients/client-signer/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-signer/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SignerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SignerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-signer/src/auth/httpAuthSchemeProvider.ts b/clients/client-signer/src/auth/httpAuthSchemeProvider.ts index 52a7b86bd9739..07b9f771aa310 100644 --- a/clients/client-signer/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-signer/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SignerClientConfig, SignerClientResolvedConfig } from "../SignerClient"; +import { type SignerClientResolvedConfig, SignerClientConfig } from "../SignerClient"; /** * @internal diff --git a/clients/client-signer/src/commands/AddProfilePermissionCommand.ts b/clients/client-signer/src/commands/AddProfilePermissionCommand.ts index 50360d364a856..91d5cc493bdd7 100644 --- a/clients/client-signer/src/commands/AddProfilePermissionCommand.ts +++ b/clients/client-signer/src/commands/AddProfilePermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddProfilePermissionRequest, AddProfilePermissionResponse } from "../models/models_0"; +import type { AddProfilePermissionRequest, AddProfilePermissionResponse } from "../models/models_0"; import { AddProfilePermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/CancelSigningProfileCommand.ts b/clients/client-signer/src/commands/CancelSigningProfileCommand.ts index b0483fdf5fe33..3fd2266c3eb06 100644 --- a/clients/client-signer/src/commands/CancelSigningProfileCommand.ts +++ b/clients/client-signer/src/commands/CancelSigningProfileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelSigningProfileRequest } from "../models/models_0"; +import type { CancelSigningProfileRequest } from "../models/models_0"; import { CancelSigningProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/DescribeSigningJobCommand.ts b/clients/client-signer/src/commands/DescribeSigningJobCommand.ts index d725bdce50021..f68bdaeca131b 100644 --- a/clients/client-signer/src/commands/DescribeSigningJobCommand.ts +++ b/clients/client-signer/src/commands/DescribeSigningJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSigningJobRequest, DescribeSigningJobResponse } from "../models/models_0"; +import type { DescribeSigningJobRequest, DescribeSigningJobResponse } from "../models/models_0"; import { DescribeSigningJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/GetRevocationStatusCommand.ts b/clients/client-signer/src/commands/GetRevocationStatusCommand.ts index bceee3bc92991..28779faca4fd0 100644 --- a/clients/client-signer/src/commands/GetRevocationStatusCommand.ts +++ b/clients/client-signer/src/commands/GetRevocationStatusCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRevocationStatusRequest, GetRevocationStatusResponse } from "../models/models_0"; +import type { GetRevocationStatusRequest, GetRevocationStatusResponse } from "../models/models_0"; import { GetRevocationStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/GetSigningPlatformCommand.ts b/clients/client-signer/src/commands/GetSigningPlatformCommand.ts index d997514882c33..230595303e172 100644 --- a/clients/client-signer/src/commands/GetSigningPlatformCommand.ts +++ b/clients/client-signer/src/commands/GetSigningPlatformCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSigningPlatformRequest, GetSigningPlatformResponse } from "../models/models_0"; +import type { GetSigningPlatformRequest, GetSigningPlatformResponse } from "../models/models_0"; import { GetSigningPlatform } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/GetSigningProfileCommand.ts b/clients/client-signer/src/commands/GetSigningProfileCommand.ts index 31c8c3a387153..349585a0778c8 100644 --- a/clients/client-signer/src/commands/GetSigningProfileCommand.ts +++ b/clients/client-signer/src/commands/GetSigningProfileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSigningProfileRequest, GetSigningProfileResponse } from "../models/models_0"; +import type { GetSigningProfileRequest, GetSigningProfileResponse } from "../models/models_0"; import { GetSigningProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/ListProfilePermissionsCommand.ts b/clients/client-signer/src/commands/ListProfilePermissionsCommand.ts index 0bc39d9d57802..85938f0d1bb77 100644 --- a/clients/client-signer/src/commands/ListProfilePermissionsCommand.ts +++ b/clients/client-signer/src/commands/ListProfilePermissionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfilePermissionsRequest, ListProfilePermissionsResponse } from "../models/models_0"; +import type { ListProfilePermissionsRequest, ListProfilePermissionsResponse } from "../models/models_0"; import { ListProfilePermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/ListSigningJobsCommand.ts b/clients/client-signer/src/commands/ListSigningJobsCommand.ts index 1fd0f87203259..316e8934d9ead 100644 --- a/clients/client-signer/src/commands/ListSigningJobsCommand.ts +++ b/clients/client-signer/src/commands/ListSigningJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSigningJobsRequest, ListSigningJobsResponse } from "../models/models_0"; +import type { ListSigningJobsRequest, ListSigningJobsResponse } from "../models/models_0"; import { ListSigningJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/ListSigningPlatformsCommand.ts b/clients/client-signer/src/commands/ListSigningPlatformsCommand.ts index 7be3dfb383420..38d7e815cb301 100644 --- a/clients/client-signer/src/commands/ListSigningPlatformsCommand.ts +++ b/clients/client-signer/src/commands/ListSigningPlatformsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSigningPlatformsRequest, ListSigningPlatformsResponse } from "../models/models_0"; +import type { ListSigningPlatformsRequest, ListSigningPlatformsResponse } from "../models/models_0"; import { ListSigningPlatforms } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/ListSigningProfilesCommand.ts b/clients/client-signer/src/commands/ListSigningProfilesCommand.ts index 4188d9c6073a0..7209a6b00f93c 100644 --- a/clients/client-signer/src/commands/ListSigningProfilesCommand.ts +++ b/clients/client-signer/src/commands/ListSigningProfilesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSigningProfilesRequest, ListSigningProfilesResponse } from "../models/models_0"; +import type { ListSigningProfilesRequest, ListSigningProfilesResponse } from "../models/models_0"; import { ListSigningProfiles } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/ListTagsForResourceCommand.ts b/clients/client-signer/src/commands/ListTagsForResourceCommand.ts index 40a6806a7e792..becf146fdf582 100644 --- a/clients/client-signer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-signer/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/PutSigningProfileCommand.ts b/clients/client-signer/src/commands/PutSigningProfileCommand.ts index d4b52582517bb..17166761209ec 100644 --- a/clients/client-signer/src/commands/PutSigningProfileCommand.ts +++ b/clients/client-signer/src/commands/PutSigningProfileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSigningProfileRequest, PutSigningProfileResponse } from "../models/models_0"; +import type { PutSigningProfileRequest, PutSigningProfileResponse } from "../models/models_0"; import { PutSigningProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/RemoveProfilePermissionCommand.ts b/clients/client-signer/src/commands/RemoveProfilePermissionCommand.ts index 8b6fa31b5f936..e5f4dd372e010 100644 --- a/clients/client-signer/src/commands/RemoveProfilePermissionCommand.ts +++ b/clients/client-signer/src/commands/RemoveProfilePermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveProfilePermissionRequest, RemoveProfilePermissionResponse } from "../models/models_0"; +import type { RemoveProfilePermissionRequest, RemoveProfilePermissionResponse } from "../models/models_0"; import { RemoveProfilePermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/RevokeSignatureCommand.ts b/clients/client-signer/src/commands/RevokeSignatureCommand.ts index 62a84edac31fa..263f80d688d01 100644 --- a/clients/client-signer/src/commands/RevokeSignatureCommand.ts +++ b/clients/client-signer/src/commands/RevokeSignatureCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeSignatureRequest } from "../models/models_0"; +import type { RevokeSignatureRequest } from "../models/models_0"; import { RevokeSignature } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/RevokeSigningProfileCommand.ts b/clients/client-signer/src/commands/RevokeSigningProfileCommand.ts index 488558aca61e1..8b5a86bbd15f1 100644 --- a/clients/client-signer/src/commands/RevokeSigningProfileCommand.ts +++ b/clients/client-signer/src/commands/RevokeSigningProfileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeSigningProfileRequest } from "../models/models_0"; +import type { RevokeSigningProfileRequest } from "../models/models_0"; import { RevokeSigningProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/SignPayloadCommand.ts b/clients/client-signer/src/commands/SignPayloadCommand.ts index b145891750ad7..f9a5a54d1cf4a 100644 --- a/clients/client-signer/src/commands/SignPayloadCommand.ts +++ b/clients/client-signer/src/commands/SignPayloadCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SignPayloadRequest, SignPayloadResponse } from "../models/models_0"; +import type { SignPayloadRequest, SignPayloadResponse } from "../models/models_0"; import { SignPayload } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/StartSigningJobCommand.ts b/clients/client-signer/src/commands/StartSigningJobCommand.ts index 5100b4b301ce0..ef4a280a096ef 100644 --- a/clients/client-signer/src/commands/StartSigningJobCommand.ts +++ b/clients/client-signer/src/commands/StartSigningJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSigningJobRequest, StartSigningJobResponse } from "../models/models_0"; +import type { StartSigningJobRequest, StartSigningJobResponse } from "../models/models_0"; import { StartSigningJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/TagResourceCommand.ts b/clients/client-signer/src/commands/TagResourceCommand.ts index 2fc7db3c8c1af..89b07bf4a559e 100644 --- a/clients/client-signer/src/commands/TagResourceCommand.ts +++ b/clients/client-signer/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/commands/UntagResourceCommand.ts b/clients/client-signer/src/commands/UntagResourceCommand.ts index 416902a52501d..75276a4192ffc 100644 --- a/clients/client-signer/src/commands/UntagResourceCommand.ts +++ b/clients/client-signer/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SignerClientResolvedConfig } from "../SignerClient"; /** * @public diff --git a/clients/client-signer/src/endpoint/EndpointParameters.ts b/clients/client-signer/src/endpoint/EndpointParameters.ts index a2c47f29d167f..bda81f6d69ab4 100644 --- a/clients/client-signer/src/endpoint/EndpointParameters.ts +++ b/clients/client-signer/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-signer/src/endpoint/endpointResolver.ts b/clients/client-signer/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-signer/src/endpoint/endpointResolver.ts +++ b/clients/client-signer/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-signer/src/extensionConfiguration.ts b/clients/client-signer/src/extensionConfiguration.ts index 7764005b24ae7..361a2418fd454 100644 --- a/clients/client-signer/src/extensionConfiguration.ts +++ b/clients/client-signer/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-signer/src/models/SignerServiceException.ts b/clients/client-signer/src/models/SignerServiceException.ts index 62f839cc29f04..3402e1ca6821f 100644 --- a/clients/client-signer/src/models/SignerServiceException.ts +++ b/clients/client-signer/src/models/SignerServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-signer/src/models/errors.ts b/clients/client-signer/src/models/errors.ts index c62dac68b0c35..9bf5691956c03 100644 --- a/clients/client-signer/src/models/errors.ts +++ b/clients/client-signer/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SignerServiceException as __BaseException } from "./SignerServiceException"; diff --git a/clients/client-signer/src/pagination/Interfaces.ts b/clients/client-signer/src/pagination/Interfaces.ts index 9ec248bc1f769..ae6823b7008e1 100644 --- a/clients/client-signer/src/pagination/Interfaces.ts +++ b/clients/client-signer/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SignerClient } from "../SignerClient"; diff --git a/clients/client-signer/src/pagination/ListSigningJobsPaginator.ts b/clients/client-signer/src/pagination/ListSigningJobsPaginator.ts index 1f8874ba1ad31..d84ad65c5a574 100644 --- a/clients/client-signer/src/pagination/ListSigningJobsPaginator.ts +++ b/clients/client-signer/src/pagination/ListSigningJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSigningJobsCommand, diff --git a/clients/client-signer/src/pagination/ListSigningPlatformsPaginator.ts b/clients/client-signer/src/pagination/ListSigningPlatformsPaginator.ts index efe36eadffe6d..94fbaffebb030 100644 --- a/clients/client-signer/src/pagination/ListSigningPlatformsPaginator.ts +++ b/clients/client-signer/src/pagination/ListSigningPlatformsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSigningPlatformsCommand, diff --git a/clients/client-signer/src/pagination/ListSigningProfilesPaginator.ts b/clients/client-signer/src/pagination/ListSigningProfilesPaginator.ts index 3c882a9ffd058..193d470cc6ede 100644 --- a/clients/client-signer/src/pagination/ListSigningProfilesPaginator.ts +++ b/clients/client-signer/src/pagination/ListSigningProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSigningProfilesCommand, diff --git a/clients/client-signer/src/runtimeConfig.browser.ts b/clients/client-signer/src/runtimeConfig.browser.ts index 3fd20bc5cd693..4830156f365f6 100644 --- a/clients/client-signer/src/runtimeConfig.browser.ts +++ b/clients/client-signer/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SignerClientConfig } from "./SignerClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SignerClientConfig } from "./SignerClient"; /** * @internal diff --git a/clients/client-signer/src/runtimeConfig.native.ts b/clients/client-signer/src/runtimeConfig.native.ts index c3cb35daab830..ef7e21107bb23 100644 --- a/clients/client-signer/src/runtimeConfig.native.ts +++ b/clients/client-signer/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SignerClientConfig } from "./SignerClient"; +import type { SignerClientConfig } from "./SignerClient"; /** * @internal diff --git a/clients/client-signer/src/runtimeConfig.shared.ts b/clients/client-signer/src/runtimeConfig.shared.ts index e0ae6e4c5979c..a77aa3889bbfa 100644 --- a/clients/client-signer/src/runtimeConfig.shared.ts +++ b/clients/client-signer/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSignerHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SignerClientConfig } from "./SignerClient"; +import type { SignerClientConfig } from "./SignerClient"; /** * @internal diff --git a/clients/client-signer/src/runtimeConfig.ts b/clients/client-signer/src/runtimeConfig.ts index 940ec39b7ea58..5e5fa8c15a5cd 100644 --- a/clients/client-signer/src/runtimeConfig.ts +++ b/clients/client-signer/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SignerClientConfig } from "./SignerClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SignerClientConfig } from "./SignerClient"; /** * @internal diff --git a/clients/client-signer/src/runtimeExtensions.ts b/clients/client-signer/src/runtimeExtensions.ts index cf9619fc5f0cc..09b55700576b8 100644 --- a/clients/client-signer/src/runtimeExtensions.ts +++ b/clients/client-signer/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SignerExtensionConfiguration } from "./extensionConfiguration"; +import type { SignerExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-signer/src/schemas/schemas_0.ts b/clients/client-signer/src/schemas/schemas_0.ts index 3f06861eb81ad..f9f946ffb52c6 100644 --- a/clients/client-signer/src/schemas/schemas_0.ts +++ b/clients/client-signer/src/schemas/schemas_0.ts @@ -181,7 +181,7 @@ const n0 = "com.amazonaws.signer"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-signin/package.json b/clients/client-signin/package.json index 2ca9560a63c86..36dc179dcbdb8 100644 --- a/clients/client-signin/package.json +++ b/clients/client-signin/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-signin/src/Signin.ts b/clients/client-signin/src/Signin.ts index 831fe1142aaab..577f44b708a72 100644 --- a/clients/client-signin/src/Signin.ts +++ b/clients/client-signin/src/Signin.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateOAuth2TokenCommand, CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, } from "./commands/CreateOAuth2TokenCommand"; -import { SigninClient, SigninClientConfig } from "./SigninClient"; +import { SigninClient } from "./SigninClient"; const commands = { CreateOAuth2TokenCommand, diff --git a/clients/client-signin/src/SigninClient.ts b/clients/client-signin/src/SigninClient.ts index e5af0f66241d8..15431759e577d 100644 --- a/clients/client-signin/src/SigninClient.ts +++ b/clients/client-signin/src/SigninClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSigninHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput } from "./commands/CreateOAuth2TokenCommand"; @@ -65,7 +74,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-signin/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-signin/src/auth/httpAuthExtensionConfiguration.ts index b62c43708b678..60084202f0150 100644 --- a/clients/client-signin/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-signin/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SigninHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SigninHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-signin/src/auth/httpAuthSchemeProvider.ts b/clients/client-signin/src/auth/httpAuthSchemeProvider.ts index 7d5ca3de36a10..b9d3a6a3da6f9 100644 --- a/clients/client-signin/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-signin/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SigninClientConfig, SigninClientResolvedConfig } from "../SigninClient"; +import { type SigninClientResolvedConfig, SigninClientConfig } from "../SigninClient"; /** * @internal diff --git a/clients/client-signin/src/commands/CreateOAuth2TokenCommand.ts b/clients/client-signin/src/commands/CreateOAuth2TokenCommand.ts index 42db762d7e40e..b244ea1b4eabb 100644 --- a/clients/client-signin/src/commands/CreateOAuth2TokenCommand.ts +++ b/clients/client-signin/src/commands/CreateOAuth2TokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOAuth2TokenRequest, CreateOAuth2TokenResponse } from "../models/models_0"; +import type { CreateOAuth2TokenRequest, CreateOAuth2TokenResponse } from "../models/models_0"; import { CreateOAuth2Token } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient"; /** * @public diff --git a/clients/client-signin/src/endpoint/EndpointParameters.ts b/clients/client-signin/src/endpoint/EndpointParameters.ts index c1b7328597662..1296373256942 100644 --- a/clients/client-signin/src/endpoint/EndpointParameters.ts +++ b/clients/client-signin/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-signin/src/endpoint/endpointResolver.ts b/clients/client-signin/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-signin/src/endpoint/endpointResolver.ts +++ b/clients/client-signin/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-signin/src/extensionConfiguration.ts b/clients/client-signin/src/extensionConfiguration.ts index e33b06b907bdc..76401264e2af9 100644 --- a/clients/client-signin/src/extensionConfiguration.ts +++ b/clients/client-signin/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-signin/src/models/SigninServiceException.ts b/clients/client-signin/src/models/SigninServiceException.ts index fc893f835a0ba..cdd5f3af4c10d 100644 --- a/clients/client-signin/src/models/SigninServiceException.ts +++ b/clients/client-signin/src/models/SigninServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-signin/src/models/errors.ts b/clients/client-signin/src/models/errors.ts index 0fed14cad4077..c4e22d7ff934a 100644 --- a/clients/client-signin/src/models/errors.ts +++ b/clients/client-signin/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { OAuth2ErrorCode } from "./enums"; import { SigninServiceException as __BaseException } from "./SigninServiceException"; diff --git a/clients/client-signin/src/runtimeConfig.browser.ts b/clients/client-signin/src/runtimeConfig.browser.ts index 0f8c03cd47cf0..06dcf5a7a66be 100644 --- a/clients/client-signin/src/runtimeConfig.browser.ts +++ b/clients/client-signin/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SigninClientConfig } from "./SigninClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SigninClientConfig } from "./SigninClient"; /** * @internal diff --git a/clients/client-signin/src/runtimeConfig.native.ts b/clients/client-signin/src/runtimeConfig.native.ts index bd3be451e46f9..e18f211673466 100644 --- a/clients/client-signin/src/runtimeConfig.native.ts +++ b/clients/client-signin/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SigninClientConfig } from "./SigninClient"; +import type { SigninClientConfig } from "./SigninClient"; /** * @internal diff --git a/clients/client-signin/src/runtimeConfig.shared.ts b/clients/client-signin/src/runtimeConfig.shared.ts index d4a465a9bef78..df472fa0012b0 100644 --- a/clients/client-signin/src/runtimeConfig.shared.ts +++ b/clients/client-signin/src/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSigninHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SigninClientConfig } from "./SigninClient"; +import type { SigninClientConfig } from "./SigninClient"; /** * @internal diff --git a/clients/client-signin/src/runtimeConfig.ts b/clients/client-signin/src/runtimeConfig.ts index 42ed55ae3a864..007f43728b65e 100644 --- a/clients/client-signin/src/runtimeConfig.ts +++ b/clients/client-signin/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SigninClientConfig } from "./SigninClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SigninClientConfig } from "./SigninClient"; /** * @internal diff --git a/clients/client-signin/src/runtimeExtensions.ts b/clients/client-signin/src/runtimeExtensions.ts index bc1b6e3b145af..fd0d4561f915f 100644 --- a/clients/client-signin/src/runtimeExtensions.ts +++ b/clients/client-signin/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SigninExtensionConfiguration } from "./extensionConfiguration"; +import type { SigninExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-signin/src/schemas/schemas_0.ts b/clients/client-signin/src/schemas/schemas_0.ts index 924325dd776cd..817367fa978ec 100644 --- a/clients/client-signin/src/schemas/schemas_0.ts +++ b/clients/client-signin/src/schemas/schemas_0.ts @@ -36,7 +36,12 @@ const n0 = "com.amazonaws.signin"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types"; +import type { + StaticErrorSchema, + StaticOperationSchema, + StaticSimpleSchema, + StaticStructureSchema, +} from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-simspaceweaver/package.json b/clients/client-simspaceweaver/package.json index 7562428e85ca0..14168940644c8 100644 --- a/clients/client-simspaceweaver/package.json +++ b/clients/client-simspaceweaver/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-simspaceweaver/src/SimSpaceWeaver.ts b/clients/client-simspaceweaver/src/SimSpaceWeaver.ts index 28b6c373704b8..2185a59ba172f 100644 --- a/clients/client-simspaceweaver/src/SimSpaceWeaver.ts +++ b/clients/client-simspaceweaver/src/SimSpaceWeaver.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateSnapshotCommand, @@ -50,7 +50,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { SimSpaceWeaverClient, SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient"; +import { SimSpaceWeaverClient } from "./SimSpaceWeaverClient"; const commands = { CreateSnapshotCommand, diff --git a/clients/client-simspaceweaver/src/SimSpaceWeaverClient.ts b/clients/client-simspaceweaver/src/SimSpaceWeaverClient.ts index 98e410fee87c2..643851015a446 100644 --- a/clients/client-simspaceweaver/src/SimSpaceWeaverClient.ts +++ b/clients/client-simspaceweaver/src/SimSpaceWeaverClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSimSpaceWeaverHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "./commands/CreateSnapshotCommand"; @@ -83,7 +92,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-simspaceweaver/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-simspaceweaver/src/auth/httpAuthExtensionConfiguration.ts index 64e8f5545e513..a606c4fd94173 100644 --- a/clients/client-simspaceweaver/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-simspaceweaver/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SimSpaceWeaverHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SimSpaceWeaverHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-simspaceweaver/src/auth/httpAuthSchemeProvider.ts b/clients/client-simspaceweaver/src/auth/httpAuthSchemeProvider.ts index 0809a2bb6dcd8..7364d313ad55c 100644 --- a/clients/client-simspaceweaver/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-simspaceweaver/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SimSpaceWeaverClientConfig, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import { type SimSpaceWeaverClientResolvedConfig, SimSpaceWeaverClientConfig } from "../SimSpaceWeaverClient"; /** * @internal diff --git a/clients/client-simspaceweaver/src/commands/CreateSnapshotCommand.ts b/clients/client-simspaceweaver/src/commands/CreateSnapshotCommand.ts index e43603d4d92a6..a9b0e4849aec5 100644 --- a/clients/client-simspaceweaver/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-simspaceweaver/src/commands/CreateSnapshotCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotInput, CreateSnapshotOutput } from "../models/models_0"; +import type { CreateSnapshotInput, CreateSnapshotOutput } from "../models/models_0"; import { CreateSnapshot } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/DeleteAppCommand.ts b/clients/client-simspaceweaver/src/commands/DeleteAppCommand.ts index 7c1cdbd5ab478..e4080c22f1171 100644 --- a/clients/client-simspaceweaver/src/commands/DeleteAppCommand.ts +++ b/clients/client-simspaceweaver/src/commands/DeleteAppCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAppInput, DeleteAppOutput } from "../models/models_0"; +import type { DeleteAppInput, DeleteAppOutput } from "../models/models_0"; import { DeleteApp } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/DeleteSimulationCommand.ts b/clients/client-simspaceweaver/src/commands/DeleteSimulationCommand.ts index 6caa64807b528..8089edd54450f 100644 --- a/clients/client-simspaceweaver/src/commands/DeleteSimulationCommand.ts +++ b/clients/client-simspaceweaver/src/commands/DeleteSimulationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSimulationInput, DeleteSimulationOutput } from "../models/models_0"; +import type { DeleteSimulationInput, DeleteSimulationOutput } from "../models/models_0"; import { DeleteSimulation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/DescribeAppCommand.ts b/clients/client-simspaceweaver/src/commands/DescribeAppCommand.ts index f18146283169b..7b7aefb02071a 100644 --- a/clients/client-simspaceweaver/src/commands/DescribeAppCommand.ts +++ b/clients/client-simspaceweaver/src/commands/DescribeAppCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAppInput, DescribeAppOutput } from "../models/models_0"; +import type { DescribeAppInput, DescribeAppOutput } from "../models/models_0"; import { DescribeApp } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/DescribeSimulationCommand.ts b/clients/client-simspaceweaver/src/commands/DescribeSimulationCommand.ts index d56687dba0ada..2488689a5ad53 100644 --- a/clients/client-simspaceweaver/src/commands/DescribeSimulationCommand.ts +++ b/clients/client-simspaceweaver/src/commands/DescribeSimulationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSimulationInput, DescribeSimulationOutput } from "../models/models_0"; +import type { DescribeSimulationInput, DescribeSimulationOutput } from "../models/models_0"; import { DescribeSimulation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/ListAppsCommand.ts b/clients/client-simspaceweaver/src/commands/ListAppsCommand.ts index dafe8c59c33b4..2ae1dbaef652b 100644 --- a/clients/client-simspaceweaver/src/commands/ListAppsCommand.ts +++ b/clients/client-simspaceweaver/src/commands/ListAppsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAppsInput, ListAppsOutput } from "../models/models_0"; +import type { ListAppsInput, ListAppsOutput } from "../models/models_0"; import { ListApps } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/ListSimulationsCommand.ts b/clients/client-simspaceweaver/src/commands/ListSimulationsCommand.ts index 2bf5ff736d6b5..72eecef7ba145 100644 --- a/clients/client-simspaceweaver/src/commands/ListSimulationsCommand.ts +++ b/clients/client-simspaceweaver/src/commands/ListSimulationsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSimulationsInput, ListSimulationsOutput } from "../models/models_0"; +import type { ListSimulationsInput, ListSimulationsOutput } from "../models/models_0"; import { ListSimulations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/ListTagsForResourceCommand.ts b/clients/client-simspaceweaver/src/commands/ListTagsForResourceCommand.ts index 7605a85805dde..08cac32d8f595 100644 --- a/clients/client-simspaceweaver/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-simspaceweaver/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/StartAppCommand.ts b/clients/client-simspaceweaver/src/commands/StartAppCommand.ts index ac2632737aaa1..92af1257b1db0 100644 --- a/clients/client-simspaceweaver/src/commands/StartAppCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StartAppCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAppInput, StartAppOutput } from "../models/models_0"; +import type { StartAppInput, StartAppOutput } from "../models/models_0"; import { StartApp } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/StartClockCommand.ts b/clients/client-simspaceweaver/src/commands/StartClockCommand.ts index eeef8f92742bb..36a444b644665 100644 --- a/clients/client-simspaceweaver/src/commands/StartClockCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StartClockCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartClockInput, StartClockOutput } from "../models/models_0"; +import type { StartClockInput, StartClockOutput } from "../models/models_0"; import { StartClock } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/StartSimulationCommand.ts b/clients/client-simspaceweaver/src/commands/StartSimulationCommand.ts index 9e3e1fa84b1d2..f20095d50d1c2 100644 --- a/clients/client-simspaceweaver/src/commands/StartSimulationCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StartSimulationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSimulationInput, StartSimulationOutput } from "../models/models_0"; +import type { StartSimulationInput, StartSimulationOutput } from "../models/models_0"; import { StartSimulation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/StopAppCommand.ts b/clients/client-simspaceweaver/src/commands/StopAppCommand.ts index 8933f8bdd6f3f..39881a86b579e 100644 --- a/clients/client-simspaceweaver/src/commands/StopAppCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StopAppCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopAppInput, StopAppOutput } from "../models/models_0"; +import type { StopAppInput, StopAppOutput } from "../models/models_0"; import { StopApp } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/StopClockCommand.ts b/clients/client-simspaceweaver/src/commands/StopClockCommand.ts index 6e8a1137c77c7..fa744faa84d9b 100644 --- a/clients/client-simspaceweaver/src/commands/StopClockCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StopClockCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopClockInput, StopClockOutput } from "../models/models_0"; +import type { StopClockInput, StopClockOutput } from "../models/models_0"; import { StopClock } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/StopSimulationCommand.ts b/clients/client-simspaceweaver/src/commands/StopSimulationCommand.ts index ba06915d87bc7..3e39e28893f03 100644 --- a/clients/client-simspaceweaver/src/commands/StopSimulationCommand.ts +++ b/clients/client-simspaceweaver/src/commands/StopSimulationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopSimulationInput, StopSimulationOutput } from "../models/models_0"; +import type { StopSimulationInput, StopSimulationOutput } from "../models/models_0"; import { StopSimulation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/TagResourceCommand.ts b/clients/client-simspaceweaver/src/commands/TagResourceCommand.ts index 2cfe876db571e..2c54836a3658c 100644 --- a/clients/client-simspaceweaver/src/commands/TagResourceCommand.ts +++ b/clients/client-simspaceweaver/src/commands/TagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/commands/UntagResourceCommand.ts b/clients/client-simspaceweaver/src/commands/UntagResourceCommand.ts index 1c554ee52ab52..3a95fb6a5bc9d 100644 --- a/clients/client-simspaceweaver/src/commands/UntagResourceCommand.ts +++ b/clients/client-simspaceweaver/src/commands/UntagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SimSpaceWeaverClientResolvedConfig, +} from "../SimSpaceWeaverClient"; /** * @public diff --git a/clients/client-simspaceweaver/src/endpoint/EndpointParameters.ts b/clients/client-simspaceweaver/src/endpoint/EndpointParameters.ts index a03ccaff29297..bd2b7956efac1 100644 --- a/clients/client-simspaceweaver/src/endpoint/EndpointParameters.ts +++ b/clients/client-simspaceweaver/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-simspaceweaver/src/endpoint/endpointResolver.ts b/clients/client-simspaceweaver/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-simspaceweaver/src/endpoint/endpointResolver.ts +++ b/clients/client-simspaceweaver/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-simspaceweaver/src/extensionConfiguration.ts b/clients/client-simspaceweaver/src/extensionConfiguration.ts index 3d22bc14d3070..df839e89b00d6 100644 --- a/clients/client-simspaceweaver/src/extensionConfiguration.ts +++ b/clients/client-simspaceweaver/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-simspaceweaver/src/models/SimSpaceWeaverServiceException.ts b/clients/client-simspaceweaver/src/models/SimSpaceWeaverServiceException.ts index d29b5fa484854..b138fec5760ab 100644 --- a/clients/client-simspaceweaver/src/models/SimSpaceWeaverServiceException.ts +++ b/clients/client-simspaceweaver/src/models/SimSpaceWeaverServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-simspaceweaver/src/models/errors.ts b/clients/client-simspaceweaver/src/models/errors.ts index c7b56207cda16..116b22eb8fc06 100644 --- a/clients/client-simspaceweaver/src/models/errors.ts +++ b/clients/client-simspaceweaver/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException"; diff --git a/clients/client-simspaceweaver/src/pagination/Interfaces.ts b/clients/client-simspaceweaver/src/pagination/Interfaces.ts index 31da4b5631837..dc3cad4f5ce3a 100644 --- a/clients/client-simspaceweaver/src/pagination/Interfaces.ts +++ b/clients/client-simspaceweaver/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SimSpaceWeaverClient } from "../SimSpaceWeaverClient"; diff --git a/clients/client-simspaceweaver/src/pagination/ListAppsPaginator.ts b/clients/client-simspaceweaver/src/pagination/ListAppsPaginator.ts index e42763bc47e7d..891974e236131 100644 --- a/clients/client-simspaceweaver/src/pagination/ListAppsPaginator.ts +++ b/clients/client-simspaceweaver/src/pagination/ListAppsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAppsCommand, ListAppsCommandInput, ListAppsCommandOutput } from "../commands/ListAppsCommand"; import { SimSpaceWeaverClient } from "../SimSpaceWeaverClient"; diff --git a/clients/client-simspaceweaver/src/pagination/ListSimulationsPaginator.ts b/clients/client-simspaceweaver/src/pagination/ListSimulationsPaginator.ts index 0ac95b2ad5730..4ac9053e7a03f 100644 --- a/clients/client-simspaceweaver/src/pagination/ListSimulationsPaginator.ts +++ b/clients/client-simspaceweaver/src/pagination/ListSimulationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSimulationsCommand, diff --git a/clients/client-simspaceweaver/src/runtimeConfig.browser.ts b/clients/client-simspaceweaver/src/runtimeConfig.browser.ts index 9cc4ee5a01449..b7e44751e10b1 100644 --- a/clients/client-simspaceweaver/src/runtimeConfig.browser.ts +++ b/clients/client-simspaceweaver/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient"; /** * @internal diff --git a/clients/client-simspaceweaver/src/runtimeConfig.native.ts b/clients/client-simspaceweaver/src/runtimeConfig.native.ts index 2818c5fa744ed..113e6ec5d5dad 100644 --- a/clients/client-simspaceweaver/src/runtimeConfig.native.ts +++ b/clients/client-simspaceweaver/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient"; +import type { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient"; /** * @internal diff --git a/clients/client-simspaceweaver/src/runtimeConfig.shared.ts b/clients/client-simspaceweaver/src/runtimeConfig.shared.ts index ce2e3b3bd611c..65cedd52e6a9f 100644 --- a/clients/client-simspaceweaver/src/runtimeConfig.shared.ts +++ b/clients/client-simspaceweaver/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSimSpaceWeaverHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient"; +import type { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient"; /** * @internal diff --git a/clients/client-simspaceweaver/src/runtimeConfig.ts b/clients/client-simspaceweaver/src/runtimeConfig.ts index 12c6a333cf0ec..6392027e56f9c 100644 --- a/clients/client-simspaceweaver/src/runtimeConfig.ts +++ b/clients/client-simspaceweaver/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SimSpaceWeaverClientConfig } from "./SimSpaceWeaverClient"; /** * @internal diff --git a/clients/client-simspaceweaver/src/runtimeExtensions.ts b/clients/client-simspaceweaver/src/runtimeExtensions.ts index c2274fb45b48a..eb1180bea3f9c 100644 --- a/clients/client-simspaceweaver/src/runtimeExtensions.ts +++ b/clients/client-simspaceweaver/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SimSpaceWeaverExtensionConfiguration } from "./extensionConfiguration"; +import type { SimSpaceWeaverExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-simspaceweaver/src/schemas/schemas_0.ts b/clients/client-simspaceweaver/src/schemas/schemas_0.ts index 91e5f2bb6c1b2..7f023e263e356 100644 --- a/clients/client-simspaceweaver/src/schemas/schemas_0.ts +++ b/clients/client-simspaceweaver/src/schemas/schemas_0.ts @@ -128,7 +128,7 @@ const n0 = "com.amazonaws.simspaceweaver"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-snow-device-management/package.json b/clients/client-snow-device-management/package.json index 3938514985266..f9f3cb46ffb0a 100644 --- a/clients/client-snow-device-management/package.json +++ b/clients/client-snow-device-management/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-snow-device-management/src/SnowDeviceManagement.ts b/clients/client-snow-device-management/src/SnowDeviceManagement.ts index cc3e29f462014..ee81772cefcdc 100644 --- a/clients/client-snow-device-management/src/SnowDeviceManagement.ts +++ b/clients/client-snow-device-management/src/SnowDeviceManagement.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelTaskCommand, CancelTaskCommandInput, CancelTaskCommandOutput } from "./commands/CancelTaskCommand"; import { CreateTaskCommand, CreateTaskCommandInput, CreateTaskCommandOutput } from "./commands/CreateTaskCommand"; @@ -47,7 +47,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { SnowDeviceManagementClient, SnowDeviceManagementClientConfig } from "./SnowDeviceManagementClient"; +import { SnowDeviceManagementClient } from "./SnowDeviceManagementClient"; const commands = { CancelTaskCommand, diff --git a/clients/client-snow-device-management/src/SnowDeviceManagementClient.ts b/clients/client-snow-device-management/src/SnowDeviceManagementClient.ts index 5b3d2a15040c0..b3749c3e885f6 100644 --- a/clients/client-snow-device-management/src/SnowDeviceManagementClient.ts +++ b/clients/client-snow-device-management/src/SnowDeviceManagementClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSnowDeviceManagementHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelTaskCommandInput, CancelTaskCommandOutput } from "./commands/CancelTaskCommand"; @@ -86,7 +95,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-snow-device-management/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-snow-device-management/src/auth/httpAuthExtensionConfiguration.ts index 4c9a362bef585..088f2fd539e11 100644 --- a/clients/client-snow-device-management/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-snow-device-management/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SnowDeviceManagementHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SnowDeviceManagementHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-snow-device-management/src/auth/httpAuthSchemeProvider.ts b/clients/client-snow-device-management/src/auth/httpAuthSchemeProvider.ts index 6bfe0bf35a5f9..9186ebf821d46 100644 --- a/clients/client-snow-device-management/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-snow-device-management/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type SnowDeviceManagementClientResolvedConfig, SnowDeviceManagementClientConfig, - SnowDeviceManagementClientResolvedConfig, } from "../SnowDeviceManagementClient"; /** diff --git a/clients/client-snow-device-management/src/commands/CancelTaskCommand.ts b/clients/client-snow-device-management/src/commands/CancelTaskCommand.ts index a24e00c9e8066..e2486a2d74488 100644 --- a/clients/client-snow-device-management/src/commands/CancelTaskCommand.ts +++ b/clients/client-snow-device-management/src/commands/CancelTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelTaskInput, CancelTaskOutput } from "../models/models_0"; +import type { CancelTaskInput, CancelTaskOutput } from "../models/models_0"; import { CancelTask } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/CreateTaskCommand.ts b/clients/client-snow-device-management/src/commands/CreateTaskCommand.ts index 4a292424f74ee..2936b7e778820 100644 --- a/clients/client-snow-device-management/src/commands/CreateTaskCommand.ts +++ b/clients/client-snow-device-management/src/commands/CreateTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTaskInput, CreateTaskOutput } from "../models/models_0"; +import type { CreateTaskInput, CreateTaskOutput } from "../models/models_0"; import { CreateTask } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/DescribeDeviceCommand.ts b/clients/client-snow-device-management/src/commands/DescribeDeviceCommand.ts index 3a5fb1588ed08..dd70a6d5116d2 100644 --- a/clients/client-snow-device-management/src/commands/DescribeDeviceCommand.ts +++ b/clients/client-snow-device-management/src/commands/DescribeDeviceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeviceInput, DescribeDeviceOutput } from "../models/models_0"; +import type { DescribeDeviceInput, DescribeDeviceOutput } from "../models/models_0"; import { DescribeDevice } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/DescribeDeviceEc2InstancesCommand.ts b/clients/client-snow-device-management/src/commands/DescribeDeviceEc2InstancesCommand.ts index cae3d23d18ef4..f01d93d0d7201 100644 --- a/clients/client-snow-device-management/src/commands/DescribeDeviceEc2InstancesCommand.ts +++ b/clients/client-snow-device-management/src/commands/DescribeDeviceEc2InstancesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDeviceEc2Input, DescribeDeviceEc2Output } from "../models/models_0"; +import type { DescribeDeviceEc2Input, DescribeDeviceEc2Output } from "../models/models_0"; import { DescribeDeviceEc2Instances } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/DescribeExecutionCommand.ts b/clients/client-snow-device-management/src/commands/DescribeExecutionCommand.ts index 588d9f0f6e027..a160ebfb42382 100644 --- a/clients/client-snow-device-management/src/commands/DescribeExecutionCommand.ts +++ b/clients/client-snow-device-management/src/commands/DescribeExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExecutionInput, DescribeExecutionOutput } from "../models/models_0"; +import type { DescribeExecutionInput, DescribeExecutionOutput } from "../models/models_0"; import { DescribeExecution } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/DescribeTaskCommand.ts b/clients/client-snow-device-management/src/commands/DescribeTaskCommand.ts index 6b32f14378d80..bcea4c61f17f5 100644 --- a/clients/client-snow-device-management/src/commands/DescribeTaskCommand.ts +++ b/clients/client-snow-device-management/src/commands/DescribeTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTaskInput, DescribeTaskOutput } from "../models/models_0"; +import type { DescribeTaskInput, DescribeTaskOutput } from "../models/models_0"; import { DescribeTask } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/ListDeviceResourcesCommand.ts b/clients/client-snow-device-management/src/commands/ListDeviceResourcesCommand.ts index 61f6c44bbe0d3..26cce9ca837a7 100644 --- a/clients/client-snow-device-management/src/commands/ListDeviceResourcesCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListDeviceResourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeviceResourcesInput, ListDeviceResourcesOutput } from "../models/models_0"; +import type { ListDeviceResourcesInput, ListDeviceResourcesOutput } from "../models/models_0"; import { ListDeviceResources } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/ListDevicesCommand.ts b/clients/client-snow-device-management/src/commands/ListDevicesCommand.ts index c789945aa7f7b..857f14439e5bc 100644 --- a/clients/client-snow-device-management/src/commands/ListDevicesCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListDevicesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevicesInput, ListDevicesOutput } from "../models/models_0"; +import type { ListDevicesInput, ListDevicesOutput } from "../models/models_0"; import { ListDevices } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/ListExecutionsCommand.ts b/clients/client-snow-device-management/src/commands/ListExecutionsCommand.ts index ac1118123a6aa..732583f470156 100644 --- a/clients/client-snow-device-management/src/commands/ListExecutionsCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListExecutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExecutionsInput, ListExecutionsOutput } from "../models/models_0"; +import type { ListExecutionsInput, ListExecutionsOutput } from "../models/models_0"; import { ListExecutions } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/ListTagsForResourceCommand.ts b/clients/client-snow-device-management/src/commands/ListTagsForResourceCommand.ts index 1cbae2fce072a..617a4e572f850 100644 --- a/clients/client-snow-device-management/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/ListTasksCommand.ts b/clients/client-snow-device-management/src/commands/ListTasksCommand.ts index 0f67543d79c81..2e2653b4d0c98 100644 --- a/clients/client-snow-device-management/src/commands/ListTasksCommand.ts +++ b/clients/client-snow-device-management/src/commands/ListTasksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTasksInput, ListTasksOutput } from "../models/models_0"; +import type { ListTasksInput, ListTasksOutput } from "../models/models_0"; import { ListTasks } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/TagResourceCommand.ts b/clients/client-snow-device-management/src/commands/TagResourceCommand.ts index 7dac27dba4584..5d7997f391b17 100644 --- a/clients/client-snow-device-management/src/commands/TagResourceCommand.ts +++ b/clients/client-snow-device-management/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput } from "../models/models_0"; +import type { TagResourceInput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/commands/UntagResourceCommand.ts b/clients/client-snow-device-management/src/commands/UntagResourceCommand.ts index f9790138957d0..76c789ad4d9b7 100644 --- a/clients/client-snow-device-management/src/commands/UntagResourceCommand.ts +++ b/clients/client-snow-device-management/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput } from "../models/models_0"; +import type { UntagResourceInput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, SnowDeviceManagementClientResolvedConfig, diff --git a/clients/client-snow-device-management/src/endpoint/EndpointParameters.ts b/clients/client-snow-device-management/src/endpoint/EndpointParameters.ts index c61fcee7a8eda..39ea8cebcbc89 100644 --- a/clients/client-snow-device-management/src/endpoint/EndpointParameters.ts +++ b/clients/client-snow-device-management/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-snow-device-management/src/endpoint/endpointResolver.ts b/clients/client-snow-device-management/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-snow-device-management/src/endpoint/endpointResolver.ts +++ b/clients/client-snow-device-management/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-snow-device-management/src/extensionConfiguration.ts b/clients/client-snow-device-management/src/extensionConfiguration.ts index ed1656d6f3301..d013348779d45 100644 --- a/clients/client-snow-device-management/src/extensionConfiguration.ts +++ b/clients/client-snow-device-management/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-snow-device-management/src/models/SnowDeviceManagementServiceException.ts b/clients/client-snow-device-management/src/models/SnowDeviceManagementServiceException.ts index 511f7d3926f2d..58a4aa0c6625d 100644 --- a/clients/client-snow-device-management/src/models/SnowDeviceManagementServiceException.ts +++ b/clients/client-snow-device-management/src/models/SnowDeviceManagementServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-snow-device-management/src/models/errors.ts b/clients/client-snow-device-management/src/models/errors.ts index 00ff01b61eab4..961a6e71e1b2a 100644 --- a/clients/client-snow-device-management/src/models/errors.ts +++ b/clients/client-snow-device-management/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SnowDeviceManagementServiceException as __BaseException } from "./SnowDeviceManagementServiceException"; diff --git a/clients/client-snow-device-management/src/pagination/Interfaces.ts b/clients/client-snow-device-management/src/pagination/Interfaces.ts index e45d577e12f9c..cf4d3a2cad6f0 100644 --- a/clients/client-snow-device-management/src/pagination/Interfaces.ts +++ b/clients/client-snow-device-management/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SnowDeviceManagementClient } from "../SnowDeviceManagementClient"; diff --git a/clients/client-snow-device-management/src/pagination/ListDeviceResourcesPaginator.ts b/clients/client-snow-device-management/src/pagination/ListDeviceResourcesPaginator.ts index f301f17df5568..e1a29f5f76b48 100644 --- a/clients/client-snow-device-management/src/pagination/ListDeviceResourcesPaginator.ts +++ b/clients/client-snow-device-management/src/pagination/ListDeviceResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeviceResourcesCommand, diff --git a/clients/client-snow-device-management/src/pagination/ListDevicesPaginator.ts b/clients/client-snow-device-management/src/pagination/ListDevicesPaginator.ts index b002eb8b4bc7d..fc673da8bb3f2 100644 --- a/clients/client-snow-device-management/src/pagination/ListDevicesPaginator.ts +++ b/clients/client-snow-device-management/src/pagination/ListDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDevicesCommand, ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand"; import { SnowDeviceManagementClient } from "../SnowDeviceManagementClient"; diff --git a/clients/client-snow-device-management/src/pagination/ListExecutionsPaginator.ts b/clients/client-snow-device-management/src/pagination/ListExecutionsPaginator.ts index ae1c54187c7bf..2d0fa5eeb9f0b 100644 --- a/clients/client-snow-device-management/src/pagination/ListExecutionsPaginator.ts +++ b/clients/client-snow-device-management/src/pagination/ListExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExecutionsCommand, diff --git a/clients/client-snow-device-management/src/pagination/ListTasksPaginator.ts b/clients/client-snow-device-management/src/pagination/ListTasksPaginator.ts index 7d95c24d56409..64fc5384dc744 100644 --- a/clients/client-snow-device-management/src/pagination/ListTasksPaginator.ts +++ b/clients/client-snow-device-management/src/pagination/ListTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTasksCommand, ListTasksCommandInput, ListTasksCommandOutput } from "../commands/ListTasksCommand"; import { SnowDeviceManagementClient } from "../SnowDeviceManagementClient"; diff --git a/clients/client-snow-device-management/src/runtimeConfig.browser.ts b/clients/client-snow-device-management/src/runtimeConfig.browser.ts index 6a5708864a616..026bb61d76ae3 100644 --- a/clients/client-snow-device-management/src/runtimeConfig.browser.ts +++ b/clients/client-snow-device-management/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SnowDeviceManagementClientConfig } from "./SnowDeviceManagementClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SnowDeviceManagementClientConfig } from "./SnowDeviceManagementClient"; /** * @internal diff --git a/clients/client-snow-device-management/src/runtimeConfig.native.ts b/clients/client-snow-device-management/src/runtimeConfig.native.ts index 5bc20b753f68a..1193a746e44f5 100644 --- a/clients/client-snow-device-management/src/runtimeConfig.native.ts +++ b/clients/client-snow-device-management/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SnowDeviceManagementClientConfig } from "./SnowDeviceManagementClient"; +import type { SnowDeviceManagementClientConfig } from "./SnowDeviceManagementClient"; /** * @internal diff --git a/clients/client-snow-device-management/src/runtimeConfig.shared.ts b/clients/client-snow-device-management/src/runtimeConfig.shared.ts index 24834b4de99d3..e3d8982b67a16 100644 --- a/clients/client-snow-device-management/src/runtimeConfig.shared.ts +++ b/clients/client-snow-device-management/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSnowDeviceManagementHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SnowDeviceManagementClientConfig } from "./SnowDeviceManagementClient"; +import type { SnowDeviceManagementClientConfig } from "./SnowDeviceManagementClient"; /** * @internal diff --git a/clients/client-snow-device-management/src/runtimeConfig.ts b/clients/client-snow-device-management/src/runtimeConfig.ts index e0c4c9f50f851..dc447b5a5f1b6 100644 --- a/clients/client-snow-device-management/src/runtimeConfig.ts +++ b/clients/client-snow-device-management/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SnowDeviceManagementClientConfig } from "./SnowDeviceManagementClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SnowDeviceManagementClientConfig } from "./SnowDeviceManagementClient"; /** * @internal diff --git a/clients/client-snow-device-management/src/runtimeExtensions.ts b/clients/client-snow-device-management/src/runtimeExtensions.ts index 8e8bec123a8c0..c75085815b14d 100644 --- a/clients/client-snow-device-management/src/runtimeExtensions.ts +++ b/clients/client-snow-device-management/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SnowDeviceManagementExtensionConfiguration } from "./extensionConfiguration"; +import type { SnowDeviceManagementExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-snow-device-management/src/schemas/schemas_0.ts b/clients/client-snow-device-management/src/schemas/schemas_0.ts index 59f4179b31e76..7d3cb9d182c9e 100644 --- a/clients/client-snow-device-management/src/schemas/schemas_0.ts +++ b/clients/client-snow-device-management/src/schemas/schemas_0.ts @@ -156,7 +156,7 @@ const n0 = "com.amazonaws.snowdevicemanagement"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-snowball/package.json b/clients/client-snowball/package.json index 5ab0aecb6828f..45f556c5d660a 100644 --- a/clients/client-snowball/package.json +++ b/clients/client-snowball/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-snowball/src/Snowball.ts b/clients/client-snowball/src/Snowball.ts index fc94592dba07a..a59e8e38feeb5 100644 --- a/clients/client-snowball/src/Snowball.ts +++ b/clients/client-snowball/src/Snowball.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelClusterCommand, @@ -117,7 +117,7 @@ import { UpdateLongTermPricingCommandInput, UpdateLongTermPricingCommandOutput, } from "./commands/UpdateLongTermPricingCommand"; -import { SnowballClient, SnowballClientConfig } from "./SnowballClient"; +import { SnowballClient } from "./SnowballClient"; const commands = { CancelClusterCommand, diff --git a/clients/client-snowball/src/SnowballClient.ts b/clients/client-snowball/src/SnowballClient.ts index a57a1531d4511..7f8e8c8b27094 100644 --- a/clients/client-snowball/src/SnowballClient.ts +++ b/clients/client-snowball/src/SnowballClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSnowballHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelClusterCommandInput, CancelClusterCommandOutput } from "./commands/CancelClusterCommand"; @@ -118,7 +127,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-snowball/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-snowball/src/auth/httpAuthExtensionConfiguration.ts index 1dfdf7244e721..34924d31acdbf 100644 --- a/clients/client-snowball/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-snowball/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SnowballHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SnowballHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-snowball/src/auth/httpAuthSchemeProvider.ts b/clients/client-snowball/src/auth/httpAuthSchemeProvider.ts index 1ee08397e3819..615eceb634210 100644 --- a/clients/client-snowball/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-snowball/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SnowballClientConfig, SnowballClientResolvedConfig } from "../SnowballClient"; +import { type SnowballClientResolvedConfig, SnowballClientConfig } from "../SnowballClient"; /** * @internal diff --git a/clients/client-snowball/src/commands/CancelClusterCommand.ts b/clients/client-snowball/src/commands/CancelClusterCommand.ts index 1dca52167ef9f..6e40d2845e96f 100644 --- a/clients/client-snowball/src/commands/CancelClusterCommand.ts +++ b/clients/client-snowball/src/commands/CancelClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelClusterRequest, CancelClusterResult } from "../models/models_0"; +import type { CancelClusterRequest, CancelClusterResult } from "../models/models_0"; import { CancelCluster } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/CancelJobCommand.ts b/clients/client-snowball/src/commands/CancelJobCommand.ts index bc5bed95d9bcd..87f0512f07797 100644 --- a/clients/client-snowball/src/commands/CancelJobCommand.ts +++ b/clients/client-snowball/src/commands/CancelJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelJobRequest, CancelJobResult } from "../models/models_0"; +import type { CancelJobRequest, CancelJobResult } from "../models/models_0"; import { CancelJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/CreateAddressCommand.ts b/clients/client-snowball/src/commands/CreateAddressCommand.ts index 421014713240e..f699b95d213d4 100644 --- a/clients/client-snowball/src/commands/CreateAddressCommand.ts +++ b/clients/client-snowball/src/commands/CreateAddressCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAddressRequest, CreateAddressResult } from "../models/models_0"; +import type { CreateAddressRequest, CreateAddressResult } from "../models/models_0"; import { CreateAddress } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/CreateClusterCommand.ts b/clients/client-snowball/src/commands/CreateClusterCommand.ts index 6b3f29ca31fe8..3d25e30f0d0ea 100644 --- a/clients/client-snowball/src/commands/CreateClusterCommand.ts +++ b/clients/client-snowball/src/commands/CreateClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateClusterRequest, CreateClusterResult } from "../models/models_0"; +import type { CreateClusterRequest, CreateClusterResult } from "../models/models_0"; import { CreateCluster } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/CreateJobCommand.ts b/clients/client-snowball/src/commands/CreateJobCommand.ts index 323057bfcbe4a..455cbbc909613 100644 --- a/clients/client-snowball/src/commands/CreateJobCommand.ts +++ b/clients/client-snowball/src/commands/CreateJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateJobRequest, CreateJobResult } from "../models/models_0"; +import type { CreateJobRequest, CreateJobResult } from "../models/models_0"; import { CreateJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/CreateLongTermPricingCommand.ts b/clients/client-snowball/src/commands/CreateLongTermPricingCommand.ts index 968c8844a441e..09f50d9da1b21 100644 --- a/clients/client-snowball/src/commands/CreateLongTermPricingCommand.ts +++ b/clients/client-snowball/src/commands/CreateLongTermPricingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLongTermPricingRequest, CreateLongTermPricingResult } from "../models/models_0"; +import type { CreateLongTermPricingRequest, CreateLongTermPricingResult } from "../models/models_0"; import { CreateLongTermPricing } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/CreateReturnShippingLabelCommand.ts b/clients/client-snowball/src/commands/CreateReturnShippingLabelCommand.ts index 606f7880201f5..06a8fa52ad6c9 100644 --- a/clients/client-snowball/src/commands/CreateReturnShippingLabelCommand.ts +++ b/clients/client-snowball/src/commands/CreateReturnShippingLabelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReturnShippingLabelRequest, CreateReturnShippingLabelResult } from "../models/models_0"; +import type { CreateReturnShippingLabelRequest, CreateReturnShippingLabelResult } from "../models/models_0"; import { CreateReturnShippingLabel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/DescribeAddressCommand.ts b/clients/client-snowball/src/commands/DescribeAddressCommand.ts index 6fa6f28d1a549..6f0712923deb7 100644 --- a/clients/client-snowball/src/commands/DescribeAddressCommand.ts +++ b/clients/client-snowball/src/commands/DescribeAddressCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAddressRequest, DescribeAddressResult } from "../models/models_0"; +import type { DescribeAddressRequest, DescribeAddressResult } from "../models/models_0"; import { DescribeAddress } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/DescribeAddressesCommand.ts b/clients/client-snowball/src/commands/DescribeAddressesCommand.ts index ffed490df9262..b7cae3ae8ccbc 100644 --- a/clients/client-snowball/src/commands/DescribeAddressesCommand.ts +++ b/clients/client-snowball/src/commands/DescribeAddressesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAddressesRequest, DescribeAddressesResult } from "../models/models_0"; +import type { DescribeAddressesRequest, DescribeAddressesResult } from "../models/models_0"; import { DescribeAddresses } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/DescribeClusterCommand.ts b/clients/client-snowball/src/commands/DescribeClusterCommand.ts index 0ee8b8b284288..bc3257c78c417 100644 --- a/clients/client-snowball/src/commands/DescribeClusterCommand.ts +++ b/clients/client-snowball/src/commands/DescribeClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClusterRequest, DescribeClusterResult } from "../models/models_0"; +import type { DescribeClusterRequest, DescribeClusterResult } from "../models/models_0"; import { DescribeCluster } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/DescribeJobCommand.ts b/clients/client-snowball/src/commands/DescribeJobCommand.ts index 067d1815b13f2..978f604aad723 100644 --- a/clients/client-snowball/src/commands/DescribeJobCommand.ts +++ b/clients/client-snowball/src/commands/DescribeJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeJobRequest, DescribeJobResult } from "../models/models_0"; +import type { DescribeJobRequest, DescribeJobResult } from "../models/models_0"; import { DescribeJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/DescribeReturnShippingLabelCommand.ts b/clients/client-snowball/src/commands/DescribeReturnShippingLabelCommand.ts index bcfda89e00461..32dadc66d5071 100644 --- a/clients/client-snowball/src/commands/DescribeReturnShippingLabelCommand.ts +++ b/clients/client-snowball/src/commands/DescribeReturnShippingLabelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeReturnShippingLabelRequest, DescribeReturnShippingLabelResult } from "../models/models_0"; +import type { DescribeReturnShippingLabelRequest, DescribeReturnShippingLabelResult } from "../models/models_0"; import { DescribeReturnShippingLabel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/GetJobManifestCommand.ts b/clients/client-snowball/src/commands/GetJobManifestCommand.ts index c4720cb90fef4..96deae35ce007 100644 --- a/clients/client-snowball/src/commands/GetJobManifestCommand.ts +++ b/clients/client-snowball/src/commands/GetJobManifestCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobManifestRequest, GetJobManifestResult } from "../models/models_0"; +import type { GetJobManifestRequest, GetJobManifestResult } from "../models/models_0"; import { GetJobManifest } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/GetJobUnlockCodeCommand.ts b/clients/client-snowball/src/commands/GetJobUnlockCodeCommand.ts index 5c3a0aca7a2d2..694608fb0eea5 100644 --- a/clients/client-snowball/src/commands/GetJobUnlockCodeCommand.ts +++ b/clients/client-snowball/src/commands/GetJobUnlockCodeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetJobUnlockCodeRequest, GetJobUnlockCodeResult } from "../models/models_0"; +import type { GetJobUnlockCodeRequest, GetJobUnlockCodeResult } from "../models/models_0"; import { GetJobUnlockCode } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/GetSnowballUsageCommand.ts b/clients/client-snowball/src/commands/GetSnowballUsageCommand.ts index 8a25a59204cd9..73d89fdae138d 100644 --- a/clients/client-snowball/src/commands/GetSnowballUsageCommand.ts +++ b/clients/client-snowball/src/commands/GetSnowballUsageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSnowballUsageRequest, GetSnowballUsageResult } from "../models/models_0"; +import type { GetSnowballUsageRequest, GetSnowballUsageResult } from "../models/models_0"; import { GetSnowballUsage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/GetSoftwareUpdatesCommand.ts b/clients/client-snowball/src/commands/GetSoftwareUpdatesCommand.ts index 27a7891652c7b..f9224ff94a4d7 100644 --- a/clients/client-snowball/src/commands/GetSoftwareUpdatesCommand.ts +++ b/clients/client-snowball/src/commands/GetSoftwareUpdatesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSoftwareUpdatesRequest, GetSoftwareUpdatesResult } from "../models/models_0"; +import type { GetSoftwareUpdatesRequest, GetSoftwareUpdatesResult } from "../models/models_0"; import { GetSoftwareUpdates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/ListClusterJobsCommand.ts b/clients/client-snowball/src/commands/ListClusterJobsCommand.ts index 32a0d79881d00..5c3ab94782dac 100644 --- a/clients/client-snowball/src/commands/ListClusterJobsCommand.ts +++ b/clients/client-snowball/src/commands/ListClusterJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClusterJobsRequest, ListClusterJobsResult } from "../models/models_0"; +import type { ListClusterJobsRequest, ListClusterJobsResult } from "../models/models_0"; import { ListClusterJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/ListClustersCommand.ts b/clients/client-snowball/src/commands/ListClustersCommand.ts index 4cb1cf45d66f8..cea10e0d1a1fd 100644 --- a/clients/client-snowball/src/commands/ListClustersCommand.ts +++ b/clients/client-snowball/src/commands/ListClustersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClustersRequest, ListClustersResult } from "../models/models_0"; +import type { ListClustersRequest, ListClustersResult } from "../models/models_0"; import { ListClusters } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/ListCompatibleImagesCommand.ts b/clients/client-snowball/src/commands/ListCompatibleImagesCommand.ts index f059e98f2c31d..b2c518ae43200 100644 --- a/clients/client-snowball/src/commands/ListCompatibleImagesCommand.ts +++ b/clients/client-snowball/src/commands/ListCompatibleImagesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCompatibleImagesRequest, ListCompatibleImagesResult } from "../models/models_0"; +import type { ListCompatibleImagesRequest, ListCompatibleImagesResult } from "../models/models_0"; import { ListCompatibleImages } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/ListJobsCommand.ts b/clients/client-snowball/src/commands/ListJobsCommand.ts index ac11cdd3566dd..c09c79e253798 100644 --- a/clients/client-snowball/src/commands/ListJobsCommand.ts +++ b/clients/client-snowball/src/commands/ListJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListJobsRequest, ListJobsResult } from "../models/models_0"; +import type { ListJobsRequest, ListJobsResult } from "../models/models_0"; import { ListJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/ListLongTermPricingCommand.ts b/clients/client-snowball/src/commands/ListLongTermPricingCommand.ts index c35fac0ead691..113d2585283a9 100644 --- a/clients/client-snowball/src/commands/ListLongTermPricingCommand.ts +++ b/clients/client-snowball/src/commands/ListLongTermPricingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLongTermPricingRequest, ListLongTermPricingResult } from "../models/models_0"; +import type { ListLongTermPricingRequest, ListLongTermPricingResult } from "../models/models_0"; import { ListLongTermPricing } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/ListPickupLocationsCommand.ts b/clients/client-snowball/src/commands/ListPickupLocationsCommand.ts index aa6a9a451dedc..15cc1d4c0aad8 100644 --- a/clients/client-snowball/src/commands/ListPickupLocationsCommand.ts +++ b/clients/client-snowball/src/commands/ListPickupLocationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPickupLocationsRequest, ListPickupLocationsResult } from "../models/models_0"; +import type { ListPickupLocationsRequest, ListPickupLocationsResult } from "../models/models_0"; import { ListPickupLocations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/ListServiceVersionsCommand.ts b/clients/client-snowball/src/commands/ListServiceVersionsCommand.ts index 885dc244e1460..85fee91a9c121 100644 --- a/clients/client-snowball/src/commands/ListServiceVersionsCommand.ts +++ b/clients/client-snowball/src/commands/ListServiceVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceVersionsRequest, ListServiceVersionsResult } from "../models/models_0"; +import type { ListServiceVersionsRequest, ListServiceVersionsResult } from "../models/models_0"; import { ListServiceVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/UpdateClusterCommand.ts b/clients/client-snowball/src/commands/UpdateClusterCommand.ts index fe720de38ffbd..4cc5be4d777d1 100644 --- a/clients/client-snowball/src/commands/UpdateClusterCommand.ts +++ b/clients/client-snowball/src/commands/UpdateClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateClusterRequest, UpdateClusterResult } from "../models/models_0"; +import type { UpdateClusterRequest, UpdateClusterResult } from "../models/models_0"; import { UpdateCluster } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/UpdateJobCommand.ts b/clients/client-snowball/src/commands/UpdateJobCommand.ts index 2bace2eecffa4..b1f28c00cd12e 100644 --- a/clients/client-snowball/src/commands/UpdateJobCommand.ts +++ b/clients/client-snowball/src/commands/UpdateJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateJobRequest, UpdateJobResult } from "../models/models_0"; +import type { UpdateJobRequest, UpdateJobResult } from "../models/models_0"; import { UpdateJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/UpdateJobShipmentStateCommand.ts b/clients/client-snowball/src/commands/UpdateJobShipmentStateCommand.ts index 1201dff8cbe78..7c682704abffd 100644 --- a/clients/client-snowball/src/commands/UpdateJobShipmentStateCommand.ts +++ b/clients/client-snowball/src/commands/UpdateJobShipmentStateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateJobShipmentStateRequest, UpdateJobShipmentStateResult } from "../models/models_0"; +import type { UpdateJobShipmentStateRequest, UpdateJobShipmentStateResult } from "../models/models_0"; import { UpdateJobShipmentState } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/commands/UpdateLongTermPricingCommand.ts b/clients/client-snowball/src/commands/UpdateLongTermPricingCommand.ts index e4be33d3a8378..d68321e45ffac 100644 --- a/clients/client-snowball/src/commands/UpdateLongTermPricingCommand.ts +++ b/clients/client-snowball/src/commands/UpdateLongTermPricingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLongTermPricingRequest, UpdateLongTermPricingResult } from "../models/models_0"; +import type { UpdateLongTermPricingRequest, UpdateLongTermPricingResult } from "../models/models_0"; import { UpdateLongTermPricing } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SnowballClientResolvedConfig } from "../SnowballClient"; /** * @public diff --git a/clients/client-snowball/src/endpoint/EndpointParameters.ts b/clients/client-snowball/src/endpoint/EndpointParameters.ts index f2342a71e16d0..09b1621bc8d53 100644 --- a/clients/client-snowball/src/endpoint/EndpointParameters.ts +++ b/clients/client-snowball/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-snowball/src/endpoint/endpointResolver.ts b/clients/client-snowball/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-snowball/src/endpoint/endpointResolver.ts +++ b/clients/client-snowball/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-snowball/src/extensionConfiguration.ts b/clients/client-snowball/src/extensionConfiguration.ts index d015f1dafb3e7..6a71afe045d94 100644 --- a/clients/client-snowball/src/extensionConfiguration.ts +++ b/clients/client-snowball/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-snowball/src/models/SnowballServiceException.ts b/clients/client-snowball/src/models/SnowballServiceException.ts index 29b190a3fa565..ac5a0a25f0292 100644 --- a/clients/client-snowball/src/models/SnowballServiceException.ts +++ b/clients/client-snowball/src/models/SnowballServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-snowball/src/models/errors.ts b/clients/client-snowball/src/models/errors.ts index b640ed4eca4e7..6ec5150da4b8a 100644 --- a/clients/client-snowball/src/models/errors.ts +++ b/clients/client-snowball/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SnowballServiceException as __BaseException } from "./SnowballServiceException"; diff --git a/clients/client-snowball/src/pagination/DescribeAddressesPaginator.ts b/clients/client-snowball/src/pagination/DescribeAddressesPaginator.ts index 69ea59bdbb222..826f51efe7fa9 100644 --- a/clients/client-snowball/src/pagination/DescribeAddressesPaginator.ts +++ b/clients/client-snowball/src/pagination/DescribeAddressesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAddressesCommand, diff --git a/clients/client-snowball/src/pagination/Interfaces.ts b/clients/client-snowball/src/pagination/Interfaces.ts index f24726718c480..169b125760ac4 100644 --- a/clients/client-snowball/src/pagination/Interfaces.ts +++ b/clients/client-snowball/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SnowballClient } from "../SnowballClient"; diff --git a/clients/client-snowball/src/pagination/ListClusterJobsPaginator.ts b/clients/client-snowball/src/pagination/ListClusterJobsPaginator.ts index 03292b5702110..5601d9f30ab81 100644 --- a/clients/client-snowball/src/pagination/ListClusterJobsPaginator.ts +++ b/clients/client-snowball/src/pagination/ListClusterJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClusterJobsCommand, diff --git a/clients/client-snowball/src/pagination/ListClustersPaginator.ts b/clients/client-snowball/src/pagination/ListClustersPaginator.ts index 4fbee39ae8236..34486ee654308 100644 --- a/clients/client-snowball/src/pagination/ListClustersPaginator.ts +++ b/clients/client-snowball/src/pagination/ListClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClustersCommand, diff --git a/clients/client-snowball/src/pagination/ListCompatibleImagesPaginator.ts b/clients/client-snowball/src/pagination/ListCompatibleImagesPaginator.ts index 184adacef971b..fd195aa2231fa 100644 --- a/clients/client-snowball/src/pagination/ListCompatibleImagesPaginator.ts +++ b/clients/client-snowball/src/pagination/ListCompatibleImagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCompatibleImagesCommand, diff --git a/clients/client-snowball/src/pagination/ListJobsPaginator.ts b/clients/client-snowball/src/pagination/ListJobsPaginator.ts index af1e47179be06..d332b44aa9ff6 100644 --- a/clients/client-snowball/src/pagination/ListJobsPaginator.ts +++ b/clients/client-snowball/src/pagination/ListJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListJobsCommand, ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand"; import { SnowballClient } from "../SnowballClient"; diff --git a/clients/client-snowball/src/pagination/ListLongTermPricingPaginator.ts b/clients/client-snowball/src/pagination/ListLongTermPricingPaginator.ts index 01fd477f0c468..7e0c2ea6f4618 100644 --- a/clients/client-snowball/src/pagination/ListLongTermPricingPaginator.ts +++ b/clients/client-snowball/src/pagination/ListLongTermPricingPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLongTermPricingCommand, diff --git a/clients/client-snowball/src/pagination/ListPickupLocationsPaginator.ts b/clients/client-snowball/src/pagination/ListPickupLocationsPaginator.ts index 68fab57558106..c28f8665ca514 100644 --- a/clients/client-snowball/src/pagination/ListPickupLocationsPaginator.ts +++ b/clients/client-snowball/src/pagination/ListPickupLocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPickupLocationsCommand, diff --git a/clients/client-snowball/src/runtimeConfig.browser.ts b/clients/client-snowball/src/runtimeConfig.browser.ts index a4c401b574de4..5175796a92173 100644 --- a/clients/client-snowball/src/runtimeConfig.browser.ts +++ b/clients/client-snowball/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SnowballClientConfig } from "./SnowballClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SnowballClientConfig } from "./SnowballClient"; /** * @internal diff --git a/clients/client-snowball/src/runtimeConfig.native.ts b/clients/client-snowball/src/runtimeConfig.native.ts index 17fbfb4cb15fb..78f8fa5b7c44d 100644 --- a/clients/client-snowball/src/runtimeConfig.native.ts +++ b/clients/client-snowball/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SnowballClientConfig } from "./SnowballClient"; +import type { SnowballClientConfig } from "./SnowballClient"; /** * @internal diff --git a/clients/client-snowball/src/runtimeConfig.shared.ts b/clients/client-snowball/src/runtimeConfig.shared.ts index 6acd0cc243e98..dfbdd0e99d296 100644 --- a/clients/client-snowball/src/runtimeConfig.shared.ts +++ b/clients/client-snowball/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSnowballHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SnowballClientConfig } from "./SnowballClient"; +import type { SnowballClientConfig } from "./SnowballClient"; /** * @internal diff --git a/clients/client-snowball/src/runtimeConfig.ts b/clients/client-snowball/src/runtimeConfig.ts index e80b8d45d3237..8a8c02ea0c171 100644 --- a/clients/client-snowball/src/runtimeConfig.ts +++ b/clients/client-snowball/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SnowballClientConfig } from "./SnowballClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SnowballClientConfig } from "./SnowballClient"; /** * @internal diff --git a/clients/client-snowball/src/runtimeExtensions.ts b/clients/client-snowball/src/runtimeExtensions.ts index bf665bf86b6fe..d627f18076879 100644 --- a/clients/client-snowball/src/runtimeExtensions.ts +++ b/clients/client-snowball/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SnowballExtensionConfiguration } from "./extensionConfiguration"; +import type { SnowballExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-snowball/src/schemas/schemas_0.ts b/clients/client-snowball/src/schemas/schemas_0.ts index 67b83813a2f69..7c7814b9c85ba 100644 --- a/clients/client-snowball/src/schemas/schemas_0.ts +++ b/clients/client-snowball/src/schemas/schemas_0.ts @@ -258,7 +258,7 @@ const n0 = "com.amazonaws.snowball"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-sns/package.json b/clients/client-sns/package.json index 8eac094442ae8..ae95af76cef49 100644 --- a/clients/client-sns/package.json +++ b/clients/client-sns/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sns/src/SNS.ts b/clients/client-sns/src/SNS.ts index 68823f81b2431..f60afb85f7fd6 100644 --- a/clients/client-sns/src/SNS.ts +++ b/clients/client-sns/src/SNS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddPermissionCommand, @@ -184,7 +184,7 @@ import { VerifySMSSandboxPhoneNumberCommandInput, VerifySMSSandboxPhoneNumberCommandOutput, } from "./commands/VerifySMSSandboxPhoneNumberCommand"; -import { SNSClient, SNSClientConfig } from "./SNSClient"; +import { SNSClient } from "./SNSClient"; const commands = { AddPermissionCommand, diff --git a/clients/client-sns/src/SNSClient.ts b/clients/client-sns/src/SNSClient.ts index e0283523e41df..0caf1e1a0908b 100644 --- a/clients/client-sns/src/SNSClient.ts +++ b/clients/client-sns/src/SNSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSNSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand"; @@ -178,7 +187,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sns/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sns/src/auth/httpAuthExtensionConfiguration.ts index b15d370b7ffa5..e3b8ae3e23110 100644 --- a/clients/client-sns/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sns/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SNSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SNSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sns/src/auth/httpAuthSchemeProvider.ts b/clients/client-sns/src/auth/httpAuthSchemeProvider.ts index 3859147452de2..2aab4d4caeeb3 100644 --- a/clients/client-sns/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sns/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SNSClientConfig, SNSClientResolvedConfig } from "../SNSClient"; +import { type SNSClientResolvedConfig, SNSClientConfig } from "../SNSClient"; /** * @internal diff --git a/clients/client-sns/src/commands/AddPermissionCommand.ts b/clients/client-sns/src/commands/AddPermissionCommand.ts index 0f54d3cc0a2c0..b88f4125a1a9b 100644 --- a/clients/client-sns/src/commands/AddPermissionCommand.ts +++ b/clients/client-sns/src/commands/AddPermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddPermissionInput } from "../models/models_0"; +import type { AddPermissionInput } from "../models/models_0"; import { AddPermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/CheckIfPhoneNumberIsOptedOutCommand.ts b/clients/client-sns/src/commands/CheckIfPhoneNumberIsOptedOutCommand.ts index b6cef8dd04195..3375e71472969 100644 --- a/clients/client-sns/src/commands/CheckIfPhoneNumberIsOptedOutCommand.ts +++ b/clients/client-sns/src/commands/CheckIfPhoneNumberIsOptedOutCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CheckIfPhoneNumberIsOptedOutInput, CheckIfPhoneNumberIsOptedOutResponse } from "../models/models_0"; +import type { CheckIfPhoneNumberIsOptedOutInput, CheckIfPhoneNumberIsOptedOutResponse } from "../models/models_0"; import { CheckIfPhoneNumberIsOptedOut } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ConfirmSubscriptionCommand.ts b/clients/client-sns/src/commands/ConfirmSubscriptionCommand.ts index 730dcc84a6441..415481399cedc 100644 --- a/clients/client-sns/src/commands/ConfirmSubscriptionCommand.ts +++ b/clients/client-sns/src/commands/ConfirmSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConfirmSubscriptionInput, ConfirmSubscriptionResponse } from "../models/models_0"; +import type { ConfirmSubscriptionInput, ConfirmSubscriptionResponse } from "../models/models_0"; import { ConfirmSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/CreatePlatformApplicationCommand.ts b/clients/client-sns/src/commands/CreatePlatformApplicationCommand.ts index bae82fc7d4448..199cb6ff6da55 100644 --- a/clients/client-sns/src/commands/CreatePlatformApplicationCommand.ts +++ b/clients/client-sns/src/commands/CreatePlatformApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePlatformApplicationInput, CreatePlatformApplicationResponse } from "../models/models_0"; +import type { CreatePlatformApplicationInput, CreatePlatformApplicationResponse } from "../models/models_0"; import { CreatePlatformApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/CreatePlatformEndpointCommand.ts b/clients/client-sns/src/commands/CreatePlatformEndpointCommand.ts index 11586cc29ec71..83aa9d1346c43 100644 --- a/clients/client-sns/src/commands/CreatePlatformEndpointCommand.ts +++ b/clients/client-sns/src/commands/CreatePlatformEndpointCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEndpointResponse, CreatePlatformEndpointInput } from "../models/models_0"; +import type { CreateEndpointResponse, CreatePlatformEndpointInput } from "../models/models_0"; import { CreatePlatformEndpoint } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/CreateSMSSandboxPhoneNumberCommand.ts b/clients/client-sns/src/commands/CreateSMSSandboxPhoneNumberCommand.ts index c0f87fe7082c0..35243750f8d2a 100644 --- a/clients/client-sns/src/commands/CreateSMSSandboxPhoneNumberCommand.ts +++ b/clients/client-sns/src/commands/CreateSMSSandboxPhoneNumberCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSMSSandboxPhoneNumberInput, CreateSMSSandboxPhoneNumberResult } from "../models/models_0"; +import type { CreateSMSSandboxPhoneNumberInput, CreateSMSSandboxPhoneNumberResult } from "../models/models_0"; import { CreateSMSSandboxPhoneNumber } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/CreateTopicCommand.ts b/clients/client-sns/src/commands/CreateTopicCommand.ts index e5d0947515541..99ef215dcdd36 100644 --- a/clients/client-sns/src/commands/CreateTopicCommand.ts +++ b/clients/client-sns/src/commands/CreateTopicCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTopicInput, CreateTopicResponse } from "../models/models_0"; +import type { CreateTopicInput, CreateTopicResponse } from "../models/models_0"; import { CreateTopic } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/DeleteEndpointCommand.ts b/clients/client-sns/src/commands/DeleteEndpointCommand.ts index 040017495c916..e5c511005ef9b 100644 --- a/clients/client-sns/src/commands/DeleteEndpointCommand.ts +++ b/clients/client-sns/src/commands/DeleteEndpointCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEndpointInput } from "../models/models_0"; +import type { DeleteEndpointInput } from "../models/models_0"; import { DeleteEndpoint } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/DeletePlatformApplicationCommand.ts b/clients/client-sns/src/commands/DeletePlatformApplicationCommand.ts index 6d30f31c37762..ab65902b20c64 100644 --- a/clients/client-sns/src/commands/DeletePlatformApplicationCommand.ts +++ b/clients/client-sns/src/commands/DeletePlatformApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePlatformApplicationInput } from "../models/models_0"; +import type { DeletePlatformApplicationInput } from "../models/models_0"; import { DeletePlatformApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/DeleteSMSSandboxPhoneNumberCommand.ts b/clients/client-sns/src/commands/DeleteSMSSandboxPhoneNumberCommand.ts index 4ea926dd08a69..ffe1d91bfca4b 100644 --- a/clients/client-sns/src/commands/DeleteSMSSandboxPhoneNumberCommand.ts +++ b/clients/client-sns/src/commands/DeleteSMSSandboxPhoneNumberCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSMSSandboxPhoneNumberInput, DeleteSMSSandboxPhoneNumberResult } from "../models/models_0"; +import type { DeleteSMSSandboxPhoneNumberInput, DeleteSMSSandboxPhoneNumberResult } from "../models/models_0"; import { DeleteSMSSandboxPhoneNumber } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/DeleteTopicCommand.ts b/clients/client-sns/src/commands/DeleteTopicCommand.ts index fee674b9e442c..cc3c9c77a5cdb 100644 --- a/clients/client-sns/src/commands/DeleteTopicCommand.ts +++ b/clients/client-sns/src/commands/DeleteTopicCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTopicInput } from "../models/models_0"; +import type { DeleteTopicInput } from "../models/models_0"; import { DeleteTopic } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/GetDataProtectionPolicyCommand.ts b/clients/client-sns/src/commands/GetDataProtectionPolicyCommand.ts index 4f74973250739..d6259c54406bb 100644 --- a/clients/client-sns/src/commands/GetDataProtectionPolicyCommand.ts +++ b/clients/client-sns/src/commands/GetDataProtectionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataProtectionPolicyInput, GetDataProtectionPolicyResponse } from "../models/models_0"; +import type { GetDataProtectionPolicyInput, GetDataProtectionPolicyResponse } from "../models/models_0"; import { GetDataProtectionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/GetEndpointAttributesCommand.ts b/clients/client-sns/src/commands/GetEndpointAttributesCommand.ts index 621be436a4e5f..9cc74292f9421 100644 --- a/clients/client-sns/src/commands/GetEndpointAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetEndpointAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEndpointAttributesInput, GetEndpointAttributesResponse } from "../models/models_0"; +import type { GetEndpointAttributesInput, GetEndpointAttributesResponse } from "../models/models_0"; import { GetEndpointAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/GetPlatformApplicationAttributesCommand.ts b/clients/client-sns/src/commands/GetPlatformApplicationAttributesCommand.ts index 1e5a16c8635d0..d6c325979b041 100644 --- a/clients/client-sns/src/commands/GetPlatformApplicationAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetPlatformApplicationAttributesCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPlatformApplicationAttributesInput, GetPlatformApplicationAttributesResponse } from "../models/models_0"; +import type { + GetPlatformApplicationAttributesInput, + GetPlatformApplicationAttributesResponse, +} from "../models/models_0"; import { GetPlatformApplicationAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/GetSMSAttributesCommand.ts b/clients/client-sns/src/commands/GetSMSAttributesCommand.ts index ed018670724b8..553b3756a16f0 100644 --- a/clients/client-sns/src/commands/GetSMSAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetSMSAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSMSAttributesInput, GetSMSAttributesResponse } from "../models/models_0"; +import type { GetSMSAttributesInput, GetSMSAttributesResponse } from "../models/models_0"; import { GetSMSAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/GetSMSSandboxAccountStatusCommand.ts b/clients/client-sns/src/commands/GetSMSSandboxAccountStatusCommand.ts index 5028e57c4d160..aa44014f66626 100644 --- a/clients/client-sns/src/commands/GetSMSSandboxAccountStatusCommand.ts +++ b/clients/client-sns/src/commands/GetSMSSandboxAccountStatusCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSMSSandboxAccountStatusInput, GetSMSSandboxAccountStatusResult } from "../models/models_0"; +import type { GetSMSSandboxAccountStatusInput, GetSMSSandboxAccountStatusResult } from "../models/models_0"; import { GetSMSSandboxAccountStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/GetSubscriptionAttributesCommand.ts b/clients/client-sns/src/commands/GetSubscriptionAttributesCommand.ts index 266938f2141fb..bb3e6aa71cbeb 100644 --- a/clients/client-sns/src/commands/GetSubscriptionAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetSubscriptionAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSubscriptionAttributesInput, GetSubscriptionAttributesResponse } from "../models/models_0"; +import type { GetSubscriptionAttributesInput, GetSubscriptionAttributesResponse } from "../models/models_0"; import { GetSubscriptionAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/GetTopicAttributesCommand.ts b/clients/client-sns/src/commands/GetTopicAttributesCommand.ts index 35d3336ac99a1..87f15292a45f2 100644 --- a/clients/client-sns/src/commands/GetTopicAttributesCommand.ts +++ b/clients/client-sns/src/commands/GetTopicAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTopicAttributesInput, GetTopicAttributesResponse } from "../models/models_0"; +import type { GetTopicAttributesInput, GetTopicAttributesResponse } from "../models/models_0"; import { GetTopicAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ListEndpointsByPlatformApplicationCommand.ts b/clients/client-sns/src/commands/ListEndpointsByPlatformApplicationCommand.ts index a5c32706ffa73..5696288bdc829 100644 --- a/clients/client-sns/src/commands/ListEndpointsByPlatformApplicationCommand.ts +++ b/clients/client-sns/src/commands/ListEndpointsByPlatformApplicationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListEndpointsByPlatformApplicationInput, ListEndpointsByPlatformApplicationResponse, } from "../models/models_0"; import { ListEndpointsByPlatformApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ListOriginationNumbersCommand.ts b/clients/client-sns/src/commands/ListOriginationNumbersCommand.ts index 8ed3e4e7c9be8..df6b4e042fa54 100644 --- a/clients/client-sns/src/commands/ListOriginationNumbersCommand.ts +++ b/clients/client-sns/src/commands/ListOriginationNumbersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOriginationNumbersRequest, ListOriginationNumbersResult } from "../models/models_0"; +import type { ListOriginationNumbersRequest, ListOriginationNumbersResult } from "../models/models_0"; import { ListOriginationNumbers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ListPhoneNumbersOptedOutCommand.ts b/clients/client-sns/src/commands/ListPhoneNumbersOptedOutCommand.ts index 20a1c88bcc485..646107df58714 100644 --- a/clients/client-sns/src/commands/ListPhoneNumbersOptedOutCommand.ts +++ b/clients/client-sns/src/commands/ListPhoneNumbersOptedOutCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPhoneNumbersOptedOutInput, ListPhoneNumbersOptedOutResponse } from "../models/models_0"; +import type { ListPhoneNumbersOptedOutInput, ListPhoneNumbersOptedOutResponse } from "../models/models_0"; import { ListPhoneNumbersOptedOut } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ListPlatformApplicationsCommand.ts b/clients/client-sns/src/commands/ListPlatformApplicationsCommand.ts index 1063c0295cf92..5467f333af02e 100644 --- a/clients/client-sns/src/commands/ListPlatformApplicationsCommand.ts +++ b/clients/client-sns/src/commands/ListPlatformApplicationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPlatformApplicationsInput, ListPlatformApplicationsResponse } from "../models/models_0"; +import type { ListPlatformApplicationsInput, ListPlatformApplicationsResponse } from "../models/models_0"; import { ListPlatformApplications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ListSMSSandboxPhoneNumbersCommand.ts b/clients/client-sns/src/commands/ListSMSSandboxPhoneNumbersCommand.ts index ce94de9d5696f..7990ae5292c5c 100644 --- a/clients/client-sns/src/commands/ListSMSSandboxPhoneNumbersCommand.ts +++ b/clients/client-sns/src/commands/ListSMSSandboxPhoneNumbersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSMSSandboxPhoneNumbersInput, ListSMSSandboxPhoneNumbersResult } from "../models/models_0"; +import type { ListSMSSandboxPhoneNumbersInput, ListSMSSandboxPhoneNumbersResult } from "../models/models_0"; import { ListSMSSandboxPhoneNumbers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ListSubscriptionsByTopicCommand.ts b/clients/client-sns/src/commands/ListSubscriptionsByTopicCommand.ts index 6b38464e0f98e..33f58070c80f5 100644 --- a/clients/client-sns/src/commands/ListSubscriptionsByTopicCommand.ts +++ b/clients/client-sns/src/commands/ListSubscriptionsByTopicCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscriptionsByTopicInput, ListSubscriptionsByTopicResponse } from "../models/models_0"; +import type { ListSubscriptionsByTopicInput, ListSubscriptionsByTopicResponse } from "../models/models_0"; import { ListSubscriptionsByTopic } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ListSubscriptionsCommand.ts b/clients/client-sns/src/commands/ListSubscriptionsCommand.ts index d9d35282aa37d..c10b93118072d 100644 --- a/clients/client-sns/src/commands/ListSubscriptionsCommand.ts +++ b/clients/client-sns/src/commands/ListSubscriptionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscriptionsInput, ListSubscriptionsResponse } from "../models/models_0"; +import type { ListSubscriptionsInput, ListSubscriptionsResponse } from "../models/models_0"; import { ListSubscriptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ListTagsForResourceCommand.ts b/clients/client-sns/src/commands/ListTagsForResourceCommand.ts index 3ec3137d9bb89..86ef9dfdb69c6 100644 --- a/clients/client-sns/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sns/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/ListTopicsCommand.ts b/clients/client-sns/src/commands/ListTopicsCommand.ts index 362f467e522f8..4afdba1b253ad 100644 --- a/clients/client-sns/src/commands/ListTopicsCommand.ts +++ b/clients/client-sns/src/commands/ListTopicsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTopicsInput, ListTopicsResponse } from "../models/models_0"; +import type { ListTopicsInput, ListTopicsResponse } from "../models/models_0"; import { ListTopics } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/OptInPhoneNumberCommand.ts b/clients/client-sns/src/commands/OptInPhoneNumberCommand.ts index 16d4798ec1988..586c6ec36ebfa 100644 --- a/clients/client-sns/src/commands/OptInPhoneNumberCommand.ts +++ b/clients/client-sns/src/commands/OptInPhoneNumberCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OptInPhoneNumberInput, OptInPhoneNumberResponse } from "../models/models_0"; +import type { OptInPhoneNumberInput, OptInPhoneNumberResponse } from "../models/models_0"; import { OptInPhoneNumber } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/PublishBatchCommand.ts b/clients/client-sns/src/commands/PublishBatchCommand.ts index b1a9b4673b2c7..a2886f975327c 100644 --- a/clients/client-sns/src/commands/PublishBatchCommand.ts +++ b/clients/client-sns/src/commands/PublishBatchCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishBatchInput, PublishBatchResponse } from "../models/models_0"; +import type { PublishBatchInput, PublishBatchResponse } from "../models/models_0"; import { PublishBatch } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/PublishCommand.ts b/clients/client-sns/src/commands/PublishCommand.ts index 98cd867a8de8a..c976be3387471 100644 --- a/clients/client-sns/src/commands/PublishCommand.ts +++ b/clients/client-sns/src/commands/PublishCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PublishInput, PublishResponse } from "../models/models_0"; +import type { PublishInput, PublishResponse } from "../models/models_0"; import { Publish } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/PutDataProtectionPolicyCommand.ts b/clients/client-sns/src/commands/PutDataProtectionPolicyCommand.ts index 16123bbd4f03f..437fade2c8ef1 100644 --- a/clients/client-sns/src/commands/PutDataProtectionPolicyCommand.ts +++ b/clients/client-sns/src/commands/PutDataProtectionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutDataProtectionPolicyInput } from "../models/models_0"; +import type { PutDataProtectionPolicyInput } from "../models/models_0"; import { PutDataProtectionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/RemovePermissionCommand.ts b/clients/client-sns/src/commands/RemovePermissionCommand.ts index b106c61d058c5..9ca1bf766376a 100644 --- a/clients/client-sns/src/commands/RemovePermissionCommand.ts +++ b/clients/client-sns/src/commands/RemovePermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemovePermissionInput } from "../models/models_0"; +import type { RemovePermissionInput } from "../models/models_0"; import { RemovePermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/SetEndpointAttributesCommand.ts b/clients/client-sns/src/commands/SetEndpointAttributesCommand.ts index 3e16c4d19c52f..5f9470d6fd61f 100644 --- a/clients/client-sns/src/commands/SetEndpointAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetEndpointAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetEndpointAttributesInput } from "../models/models_0"; +import type { SetEndpointAttributesInput } from "../models/models_0"; import { SetEndpointAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/SetPlatformApplicationAttributesCommand.ts b/clients/client-sns/src/commands/SetPlatformApplicationAttributesCommand.ts index 76d9c789c7cc3..6ef4ef21e0b56 100644 --- a/clients/client-sns/src/commands/SetPlatformApplicationAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetPlatformApplicationAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetPlatformApplicationAttributesInput } from "../models/models_0"; +import type { SetPlatformApplicationAttributesInput } from "../models/models_0"; import { SetPlatformApplicationAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/SetSMSAttributesCommand.ts b/clients/client-sns/src/commands/SetSMSAttributesCommand.ts index 441cc9e9d6973..1e8981d0d97db 100644 --- a/clients/client-sns/src/commands/SetSMSAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetSMSAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetSMSAttributesInput, SetSMSAttributesResponse } from "../models/models_0"; +import type { SetSMSAttributesInput, SetSMSAttributesResponse } from "../models/models_0"; import { SetSMSAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/SetSubscriptionAttributesCommand.ts b/clients/client-sns/src/commands/SetSubscriptionAttributesCommand.ts index 195cb6b75674f..6cb04724fe518 100644 --- a/clients/client-sns/src/commands/SetSubscriptionAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetSubscriptionAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetSubscriptionAttributesInput } from "../models/models_0"; +import type { SetSubscriptionAttributesInput } from "../models/models_0"; import { SetSubscriptionAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/SetTopicAttributesCommand.ts b/clients/client-sns/src/commands/SetTopicAttributesCommand.ts index 63863dcd32fb5..7bef2d4a1050e 100644 --- a/clients/client-sns/src/commands/SetTopicAttributesCommand.ts +++ b/clients/client-sns/src/commands/SetTopicAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetTopicAttributesInput } from "../models/models_0"; +import type { SetTopicAttributesInput } from "../models/models_0"; import { SetTopicAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/SubscribeCommand.ts b/clients/client-sns/src/commands/SubscribeCommand.ts index 05bd78844672a..ea5881083933f 100644 --- a/clients/client-sns/src/commands/SubscribeCommand.ts +++ b/clients/client-sns/src/commands/SubscribeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SubscribeInput, SubscribeResponse } from "../models/models_0"; +import type { SubscribeInput, SubscribeResponse } from "../models/models_0"; import { Subscribe } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/TagResourceCommand.ts b/clients/client-sns/src/commands/TagResourceCommand.ts index e5a0cc7619399..007dd888d5dde 100644 --- a/clients/client-sns/src/commands/TagResourceCommand.ts +++ b/clients/client-sns/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/UnsubscribeCommand.ts b/clients/client-sns/src/commands/UnsubscribeCommand.ts index 70cf6a8fb2ab5..d746eafcdd524 100644 --- a/clients/client-sns/src/commands/UnsubscribeCommand.ts +++ b/clients/client-sns/src/commands/UnsubscribeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnsubscribeInput } from "../models/models_0"; +import type { UnsubscribeInput } from "../models/models_0"; import { Unsubscribe } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/UntagResourceCommand.ts b/clients/client-sns/src/commands/UntagResourceCommand.ts index c2e8897612d4d..7f50cef831848 100644 --- a/clients/client-sns/src/commands/UntagResourceCommand.ts +++ b/clients/client-sns/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/commands/VerifySMSSandboxPhoneNumberCommand.ts b/clients/client-sns/src/commands/VerifySMSSandboxPhoneNumberCommand.ts index e34073328f534..1f9a469d5ad46 100644 --- a/clients/client-sns/src/commands/VerifySMSSandboxPhoneNumberCommand.ts +++ b/clients/client-sns/src/commands/VerifySMSSandboxPhoneNumberCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { VerifySMSSandboxPhoneNumberInput, VerifySMSSandboxPhoneNumberResult } from "../models/models_0"; +import type { VerifySMSSandboxPhoneNumberInput, VerifySMSSandboxPhoneNumberResult } from "../models/models_0"; import { VerifySMSSandboxPhoneNumber } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SNSClientResolvedConfig } from "../SNSClient"; /** * @public diff --git a/clients/client-sns/src/endpoint/EndpointParameters.ts b/clients/client-sns/src/endpoint/EndpointParameters.ts index 69d06f5484063..d00b6630947fe 100644 --- a/clients/client-sns/src/endpoint/EndpointParameters.ts +++ b/clients/client-sns/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sns/src/endpoint/endpointResolver.ts b/clients/client-sns/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sns/src/endpoint/endpointResolver.ts +++ b/clients/client-sns/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sns/src/extensionConfiguration.ts b/clients/client-sns/src/extensionConfiguration.ts index bb6228251da68..e8e00fe6f269e 100644 --- a/clients/client-sns/src/extensionConfiguration.ts +++ b/clients/client-sns/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sns/src/models/SNSServiceException.ts b/clients/client-sns/src/models/SNSServiceException.ts index be16844ebddf5..74a414adcae47 100644 --- a/clients/client-sns/src/models/SNSServiceException.ts +++ b/clients/client-sns/src/models/SNSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sns/src/models/errors.ts b/clients/client-sns/src/models/errors.ts index 25336b6601cdb..02b532c9137b4 100644 --- a/clients/client-sns/src/models/errors.ts +++ b/clients/client-sns/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SNSServiceException as __BaseException } from "./SNSServiceException"; diff --git a/clients/client-sns/src/pagination/Interfaces.ts b/clients/client-sns/src/pagination/Interfaces.ts index 41859bd075763..880489b6b33aa 100644 --- a/clients/client-sns/src/pagination/Interfaces.ts +++ b/clients/client-sns/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SNSClient } from "../SNSClient"; diff --git a/clients/client-sns/src/pagination/ListEndpointsByPlatformApplicationPaginator.ts b/clients/client-sns/src/pagination/ListEndpointsByPlatformApplicationPaginator.ts index 8f1a707899d64..00b22d2a60bff 100644 --- a/clients/client-sns/src/pagination/ListEndpointsByPlatformApplicationPaginator.ts +++ b/clients/client-sns/src/pagination/ListEndpointsByPlatformApplicationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEndpointsByPlatformApplicationCommand, diff --git a/clients/client-sns/src/pagination/ListOriginationNumbersPaginator.ts b/clients/client-sns/src/pagination/ListOriginationNumbersPaginator.ts index f838bfdb319bc..528677d40716e 100644 --- a/clients/client-sns/src/pagination/ListOriginationNumbersPaginator.ts +++ b/clients/client-sns/src/pagination/ListOriginationNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOriginationNumbersCommand, diff --git a/clients/client-sns/src/pagination/ListPhoneNumbersOptedOutPaginator.ts b/clients/client-sns/src/pagination/ListPhoneNumbersOptedOutPaginator.ts index 53e36cb04df23..8f7f607ecfef1 100644 --- a/clients/client-sns/src/pagination/ListPhoneNumbersOptedOutPaginator.ts +++ b/clients/client-sns/src/pagination/ListPhoneNumbersOptedOutPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPhoneNumbersOptedOutCommand, diff --git a/clients/client-sns/src/pagination/ListPlatformApplicationsPaginator.ts b/clients/client-sns/src/pagination/ListPlatformApplicationsPaginator.ts index 5a86be9b0e5ca..2fd9e8e111ec4 100644 --- a/clients/client-sns/src/pagination/ListPlatformApplicationsPaginator.ts +++ b/clients/client-sns/src/pagination/ListPlatformApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPlatformApplicationsCommand, diff --git a/clients/client-sns/src/pagination/ListSMSSandboxPhoneNumbersPaginator.ts b/clients/client-sns/src/pagination/ListSMSSandboxPhoneNumbersPaginator.ts index c66c01e4dfa5b..ccba19c3edb56 100644 --- a/clients/client-sns/src/pagination/ListSMSSandboxPhoneNumbersPaginator.ts +++ b/clients/client-sns/src/pagination/ListSMSSandboxPhoneNumbersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSMSSandboxPhoneNumbersCommand, diff --git a/clients/client-sns/src/pagination/ListSubscriptionsByTopicPaginator.ts b/clients/client-sns/src/pagination/ListSubscriptionsByTopicPaginator.ts index 9f413056a4123..17ad5ad30f9bc 100644 --- a/clients/client-sns/src/pagination/ListSubscriptionsByTopicPaginator.ts +++ b/clients/client-sns/src/pagination/ListSubscriptionsByTopicPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubscriptionsByTopicCommand, diff --git a/clients/client-sns/src/pagination/ListSubscriptionsPaginator.ts b/clients/client-sns/src/pagination/ListSubscriptionsPaginator.ts index 67047b3317706..421f3d898f6d9 100644 --- a/clients/client-sns/src/pagination/ListSubscriptionsPaginator.ts +++ b/clients/client-sns/src/pagination/ListSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubscriptionsCommand, diff --git a/clients/client-sns/src/pagination/ListTopicsPaginator.ts b/clients/client-sns/src/pagination/ListTopicsPaginator.ts index f69b1769b4697..dd0296abb075c 100644 --- a/clients/client-sns/src/pagination/ListTopicsPaginator.ts +++ b/clients/client-sns/src/pagination/ListTopicsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTopicsCommand, ListTopicsCommandInput, ListTopicsCommandOutput } from "../commands/ListTopicsCommand"; import { SNSClient } from "../SNSClient"; diff --git a/clients/client-sns/src/runtimeConfig.browser.ts b/clients/client-sns/src/runtimeConfig.browser.ts index 0824d767b165a..03cb4ba4c61d5 100644 --- a/clients/client-sns/src/runtimeConfig.browser.ts +++ b/clients/client-sns/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SNSClientConfig } from "./SNSClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SNSClientConfig } from "./SNSClient"; /** * @internal diff --git a/clients/client-sns/src/runtimeConfig.native.ts b/clients/client-sns/src/runtimeConfig.native.ts index 7391cd4f5c571..41176f670ac95 100644 --- a/clients/client-sns/src/runtimeConfig.native.ts +++ b/clients/client-sns/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SNSClientConfig } from "./SNSClient"; +import type { SNSClientConfig } from "./SNSClient"; /** * @internal diff --git a/clients/client-sns/src/runtimeConfig.shared.ts b/clients/client-sns/src/runtimeConfig.shared.ts index 0f944d6b2d0b3..fbc071a54dec5 100644 --- a/clients/client-sns/src/runtimeConfig.shared.ts +++ b/clients/client-sns/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSNSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SNSClientConfig } from "./SNSClient"; +import type { SNSClientConfig } from "./SNSClient"; /** * @internal diff --git a/clients/client-sns/src/runtimeConfig.ts b/clients/client-sns/src/runtimeConfig.ts index 7d09cae5e4a07..fd6665e4e53a6 100644 --- a/clients/client-sns/src/runtimeConfig.ts +++ b/clients/client-sns/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SNSClientConfig } from "./SNSClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SNSClientConfig } from "./SNSClient"; /** * @internal diff --git a/clients/client-sns/src/runtimeExtensions.ts b/clients/client-sns/src/runtimeExtensions.ts index 569c1aa1ec188..ace9d3ff06fe0 100644 --- a/clients/client-sns/src/runtimeExtensions.ts +++ b/clients/client-sns/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SNSExtensionConfiguration } from "./extensionConfiguration"; +import type { SNSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sns/src/schemas/schemas_0.ts b/clients/client-sns/src/schemas/schemas_0.ts index 20875d019bb34..036e9220c3392 100644 --- a/clients/client-sns/src/schemas/schemas_0.ts +++ b/clients/client-sns/src/schemas/schemas_0.ts @@ -246,7 +246,7 @@ const n0 = "com.amazonaws.sns"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-socialmessaging/package.json b/clients/client-socialmessaging/package.json index dd9a9036c7385..d839a22f70a2a 100644 --- a/clients/client-socialmessaging/package.json +++ b/clients/client-socialmessaging/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-socialmessaging/src/SocialMessaging.ts b/clients/client-socialmessaging/src/SocialMessaging.ts index 64a573614bcee..7d4921dc57afc 100644 --- a/clients/client-socialmessaging/src/SocialMessaging.ts +++ b/clients/client-socialmessaging/src/SocialMessaging.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateWhatsAppBusinessAccountCommand, @@ -103,7 +103,7 @@ import { UpdateWhatsAppMessageTemplateCommandInput, UpdateWhatsAppMessageTemplateCommandOutput, } from "./commands/UpdateWhatsAppMessageTemplateCommand"; -import { SocialMessagingClient, SocialMessagingClientConfig } from "./SocialMessagingClient"; +import { SocialMessagingClient } from "./SocialMessagingClient"; const commands = { AssociateWhatsAppBusinessAccountCommand, diff --git a/clients/client-socialmessaging/src/SocialMessagingClient.ts b/clients/client-socialmessaging/src/SocialMessagingClient.ts index 0d48df64b9051..ff25f3962583d 100644 --- a/clients/client-socialmessaging/src/SocialMessagingClient.ts +++ b/clients/client-socialmessaging/src/SocialMessagingClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSocialMessagingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -142,7 +151,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-socialmessaging/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-socialmessaging/src/auth/httpAuthExtensionConfiguration.ts index fc62790ed916b..87c49019f4740 100644 --- a/clients/client-socialmessaging/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-socialmessaging/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SocialMessagingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SocialMessagingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-socialmessaging/src/auth/httpAuthSchemeProvider.ts b/clients/client-socialmessaging/src/auth/httpAuthSchemeProvider.ts index 836574b2d0bee..fbce62a84487e 100644 --- a/clients/client-socialmessaging/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-socialmessaging/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SocialMessagingClientConfig, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import { type SocialMessagingClientResolvedConfig, SocialMessagingClientConfig } from "../SocialMessagingClient"; /** * @internal diff --git a/clients/client-socialmessaging/src/commands/AssociateWhatsAppBusinessAccountCommand.ts b/clients/client-socialmessaging/src/commands/AssociateWhatsAppBusinessAccountCommand.ts index baf317c69c2f1..7523a2aa9abd4 100644 --- a/clients/client-socialmessaging/src/commands/AssociateWhatsAppBusinessAccountCommand.ts +++ b/clients/client-socialmessaging/src/commands/AssociateWhatsAppBusinessAccountCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateWhatsAppBusinessAccountInput, AssociateWhatsAppBusinessAccountOutput } from "../models/models_0"; +import type { AssociateWhatsAppBusinessAccountInput, AssociateWhatsAppBusinessAccountOutput } from "../models/models_0"; import { AssociateWhatsAppBusinessAccount } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateCommand.ts b/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateCommand.ts index a0217a5a46c2a..d160167b271c2 100644 --- a/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateCommand.ts +++ b/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWhatsAppMessageTemplateInput, CreateWhatsAppMessageTemplateOutput } from "../models/models_0"; +import type { CreateWhatsAppMessageTemplateInput, CreateWhatsAppMessageTemplateOutput } from "../models/models_0"; import { CreateWhatsAppMessageTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateFromLibraryCommand.ts b/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateFromLibraryCommand.ts index fd7251d1b7573..edccd9d50b4a1 100644 --- a/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateFromLibraryCommand.ts +++ b/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateFromLibraryCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateWhatsAppMessageTemplateFromLibraryInput, CreateWhatsAppMessageTemplateFromLibraryOutput, } from "../models/models_0"; import { CreateWhatsAppMessageTemplateFromLibrary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateMediaCommand.ts b/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateMediaCommand.ts index 6b2b30a6271a5..3d7b2bcd4478e 100644 --- a/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateMediaCommand.ts +++ b/clients/client-socialmessaging/src/commands/CreateWhatsAppMessageTemplateMediaCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWhatsAppMessageTemplateMediaInput, CreateWhatsAppMessageTemplateMediaOutput } from "../models/models_0"; +import type { + CreateWhatsAppMessageTemplateMediaInput, + CreateWhatsAppMessageTemplateMediaOutput, +} from "../models/models_0"; import { CreateWhatsAppMessageTemplateMedia } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageMediaCommand.ts b/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageMediaCommand.ts index d499ae728a744..4b3c97da4c944 100644 --- a/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageMediaCommand.ts +++ b/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageMediaCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWhatsAppMessageMediaInput, DeleteWhatsAppMessageMediaOutput } from "../models/models_0"; +import type { DeleteWhatsAppMessageMediaInput, DeleteWhatsAppMessageMediaOutput } from "../models/models_0"; import { DeleteWhatsAppMessageMedia } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageTemplateCommand.ts b/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageTemplateCommand.ts index fdeafdeb63c12..1af27a43aea0e 100644 --- a/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageTemplateCommand.ts +++ b/clients/client-socialmessaging/src/commands/DeleteWhatsAppMessageTemplateCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWhatsAppMessageTemplateInput, DeleteWhatsAppMessageTemplateOutput } from "../models/models_0"; +import type { DeleteWhatsAppMessageTemplateInput, DeleteWhatsAppMessageTemplateOutput } from "../models/models_0"; import { DeleteWhatsAppMessageTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/DisassociateWhatsAppBusinessAccountCommand.ts b/clients/client-socialmessaging/src/commands/DisassociateWhatsAppBusinessAccountCommand.ts index 4e1c21a169a7e..21cc87b901110 100644 --- a/clients/client-socialmessaging/src/commands/DisassociateWhatsAppBusinessAccountCommand.ts +++ b/clients/client-socialmessaging/src/commands/DisassociateWhatsAppBusinessAccountCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateWhatsAppBusinessAccountInput, DisassociateWhatsAppBusinessAccountOutput, } from "../models/models_0"; import { DisassociateWhatsAppBusinessAccount } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountCommand.ts b/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountCommand.ts index 3beb1c029ca45..c08e10094b3cc 100644 --- a/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountCommand.ts +++ b/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLinkedWhatsAppBusinessAccountInput, GetLinkedWhatsAppBusinessAccountOutput } from "../models/models_0"; +import type { GetLinkedWhatsAppBusinessAccountInput, GetLinkedWhatsAppBusinessAccountOutput } from "../models/models_0"; import { GetLinkedWhatsAppBusinessAccount } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.ts b/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.ts index 4f343a2bfe18e..adbd979a6a00b 100644 --- a/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.ts +++ b/clients/client-socialmessaging/src/commands/GetLinkedWhatsAppBusinessAccountPhoneNumberCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetLinkedWhatsAppBusinessAccountPhoneNumberInput, GetLinkedWhatsAppBusinessAccountPhoneNumberOutput, } from "../models/models_0"; import { GetLinkedWhatsAppBusinessAccountPhoneNumber } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/GetWhatsAppMessageMediaCommand.ts b/clients/client-socialmessaging/src/commands/GetWhatsAppMessageMediaCommand.ts index 903ff5331e00b..ebea4f8856043 100644 --- a/clients/client-socialmessaging/src/commands/GetWhatsAppMessageMediaCommand.ts +++ b/clients/client-socialmessaging/src/commands/GetWhatsAppMessageMediaCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWhatsAppMessageMediaInput, GetWhatsAppMessageMediaOutput } from "../models/models_0"; +import type { GetWhatsAppMessageMediaInput, GetWhatsAppMessageMediaOutput } from "../models/models_0"; import { GetWhatsAppMessageMedia } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/GetWhatsAppMessageTemplateCommand.ts b/clients/client-socialmessaging/src/commands/GetWhatsAppMessageTemplateCommand.ts index 4aeda54778655..5f6fb7abef5be 100644 --- a/clients/client-socialmessaging/src/commands/GetWhatsAppMessageTemplateCommand.ts +++ b/clients/client-socialmessaging/src/commands/GetWhatsAppMessageTemplateCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWhatsAppMessageTemplateInput, GetWhatsAppMessageTemplateOutput } from "../models/models_0"; +import type { GetWhatsAppMessageTemplateInput, GetWhatsAppMessageTemplateOutput } from "../models/models_0"; import { GetWhatsAppMessageTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/ListLinkedWhatsAppBusinessAccountsCommand.ts b/clients/client-socialmessaging/src/commands/ListLinkedWhatsAppBusinessAccountsCommand.ts index 5b89f44be5428..e46c5b6a42f9e 100644 --- a/clients/client-socialmessaging/src/commands/ListLinkedWhatsAppBusinessAccountsCommand.ts +++ b/clients/client-socialmessaging/src/commands/ListLinkedWhatsAppBusinessAccountsCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLinkedWhatsAppBusinessAccountsInput, ListLinkedWhatsAppBusinessAccountsOutput } from "../models/models_0"; +import type { + ListLinkedWhatsAppBusinessAccountsInput, + ListLinkedWhatsAppBusinessAccountsOutput, +} from "../models/models_0"; import { ListLinkedWhatsAppBusinessAccounts } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/ListTagsForResourceCommand.ts b/clients/client-socialmessaging/src/commands/ListTagsForResourceCommand.ts index 70f599b7812eb..0658cfd11913f 100644 --- a/clients/client-socialmessaging/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-socialmessaging/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/ListWhatsAppMessageTemplatesCommand.ts b/clients/client-socialmessaging/src/commands/ListWhatsAppMessageTemplatesCommand.ts index 9df1035c92055..19de36135c6d4 100644 --- a/clients/client-socialmessaging/src/commands/ListWhatsAppMessageTemplatesCommand.ts +++ b/clients/client-socialmessaging/src/commands/ListWhatsAppMessageTemplatesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWhatsAppMessageTemplatesInput, ListWhatsAppMessageTemplatesOutput } from "../models/models_0"; +import type { ListWhatsAppMessageTemplatesInput, ListWhatsAppMessageTemplatesOutput } from "../models/models_0"; import { ListWhatsAppMessageTemplates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/ListWhatsAppTemplateLibraryCommand.ts b/clients/client-socialmessaging/src/commands/ListWhatsAppTemplateLibraryCommand.ts index 2d454329a8401..25fe323acc8e5 100644 --- a/clients/client-socialmessaging/src/commands/ListWhatsAppTemplateLibraryCommand.ts +++ b/clients/client-socialmessaging/src/commands/ListWhatsAppTemplateLibraryCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWhatsAppTemplateLibraryInput, ListWhatsAppTemplateLibraryOutput } from "../models/models_0"; +import type { ListWhatsAppTemplateLibraryInput, ListWhatsAppTemplateLibraryOutput } from "../models/models_0"; import { ListWhatsAppTemplateLibrary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/PostWhatsAppMessageMediaCommand.ts b/clients/client-socialmessaging/src/commands/PostWhatsAppMessageMediaCommand.ts index 23da39c92de53..d99816cbbffe3 100644 --- a/clients/client-socialmessaging/src/commands/PostWhatsAppMessageMediaCommand.ts +++ b/clients/client-socialmessaging/src/commands/PostWhatsAppMessageMediaCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostWhatsAppMessageMediaInput, PostWhatsAppMessageMediaOutput } from "../models/models_0"; +import type { PostWhatsAppMessageMediaInput, PostWhatsAppMessageMediaOutput } from "../models/models_0"; import { PostWhatsAppMessageMedia } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.ts b/clients/client-socialmessaging/src/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.ts index 703fb6c300890..73a1b681c6e51 100644 --- a/clients/client-socialmessaging/src/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.ts +++ b/clients/client-socialmessaging/src/commands/PutWhatsAppBusinessAccountEventDestinationsCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutWhatsAppBusinessAccountEventDestinationsInput, PutWhatsAppBusinessAccountEventDestinationsOutput, } from "../models/models_0"; import { PutWhatsAppBusinessAccountEventDestinations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/SendWhatsAppMessageCommand.ts b/clients/client-socialmessaging/src/commands/SendWhatsAppMessageCommand.ts index 16b766526a347..06b5eb3c0e9f7 100644 --- a/clients/client-socialmessaging/src/commands/SendWhatsAppMessageCommand.ts +++ b/clients/client-socialmessaging/src/commands/SendWhatsAppMessageCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendWhatsAppMessageInput, SendWhatsAppMessageOutput } from "../models/models_0"; +import type { SendWhatsAppMessageInput, SendWhatsAppMessageOutput } from "../models/models_0"; import { SendWhatsAppMessage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/TagResourceCommand.ts b/clients/client-socialmessaging/src/commands/TagResourceCommand.ts index 4fe36127157eb..ecf6cffb7451e 100644 --- a/clients/client-socialmessaging/src/commands/TagResourceCommand.ts +++ b/clients/client-socialmessaging/src/commands/TagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/UntagResourceCommand.ts b/clients/client-socialmessaging/src/commands/UntagResourceCommand.ts index 029696d5c7628..14d740fc06289 100644 --- a/clients/client-socialmessaging/src/commands/UntagResourceCommand.ts +++ b/clients/client-socialmessaging/src/commands/UntagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/commands/UpdateWhatsAppMessageTemplateCommand.ts b/clients/client-socialmessaging/src/commands/UpdateWhatsAppMessageTemplateCommand.ts index f287e91dc0ea5..759be1b03c357 100644 --- a/clients/client-socialmessaging/src/commands/UpdateWhatsAppMessageTemplateCommand.ts +++ b/clients/client-socialmessaging/src/commands/UpdateWhatsAppMessageTemplateCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWhatsAppMessageTemplateInput, UpdateWhatsAppMessageTemplateOutput } from "../models/models_0"; +import type { UpdateWhatsAppMessageTemplateInput, UpdateWhatsAppMessageTemplateOutput } from "../models/models_0"; import { UpdateWhatsAppMessageTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SocialMessagingClientResolvedConfig } from "../SocialMessagingClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + SocialMessagingClientResolvedConfig, +} from "../SocialMessagingClient"; /** * @public diff --git a/clients/client-socialmessaging/src/endpoint/EndpointParameters.ts b/clients/client-socialmessaging/src/endpoint/EndpointParameters.ts index 173abc7ccdce4..13384a2199e23 100644 --- a/clients/client-socialmessaging/src/endpoint/EndpointParameters.ts +++ b/clients/client-socialmessaging/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-socialmessaging/src/endpoint/endpointResolver.ts b/clients/client-socialmessaging/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-socialmessaging/src/endpoint/endpointResolver.ts +++ b/clients/client-socialmessaging/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-socialmessaging/src/extensionConfiguration.ts b/clients/client-socialmessaging/src/extensionConfiguration.ts index cb7397c0c1f6d..4718dc09db66e 100644 --- a/clients/client-socialmessaging/src/extensionConfiguration.ts +++ b/clients/client-socialmessaging/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-socialmessaging/src/models/SocialMessagingServiceException.ts b/clients/client-socialmessaging/src/models/SocialMessagingServiceException.ts index 7c36f82937cac..e2d26d3e8128c 100644 --- a/clients/client-socialmessaging/src/models/SocialMessagingServiceException.ts +++ b/clients/client-socialmessaging/src/models/SocialMessagingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-socialmessaging/src/models/errors.ts b/clients/client-socialmessaging/src/models/errors.ts index 6362feec2ebce..f61933721f63c 100644 --- a/clients/client-socialmessaging/src/models/errors.ts +++ b/clients/client-socialmessaging/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SocialMessagingServiceException as __BaseException } from "./SocialMessagingServiceException"; diff --git a/clients/client-socialmessaging/src/pagination/Interfaces.ts b/clients/client-socialmessaging/src/pagination/Interfaces.ts index a393745e75d6f..a00e316e79467 100644 --- a/clients/client-socialmessaging/src/pagination/Interfaces.ts +++ b/clients/client-socialmessaging/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SocialMessagingClient } from "../SocialMessagingClient"; diff --git a/clients/client-socialmessaging/src/pagination/ListLinkedWhatsAppBusinessAccountsPaginator.ts b/clients/client-socialmessaging/src/pagination/ListLinkedWhatsAppBusinessAccountsPaginator.ts index 757460f239126..29ca9ac169c86 100644 --- a/clients/client-socialmessaging/src/pagination/ListLinkedWhatsAppBusinessAccountsPaginator.ts +++ b/clients/client-socialmessaging/src/pagination/ListLinkedWhatsAppBusinessAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLinkedWhatsAppBusinessAccountsCommand, diff --git a/clients/client-socialmessaging/src/pagination/ListWhatsAppMessageTemplatesPaginator.ts b/clients/client-socialmessaging/src/pagination/ListWhatsAppMessageTemplatesPaginator.ts index 234af6e735c01..75bf09fcae327 100644 --- a/clients/client-socialmessaging/src/pagination/ListWhatsAppMessageTemplatesPaginator.ts +++ b/clients/client-socialmessaging/src/pagination/ListWhatsAppMessageTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWhatsAppMessageTemplatesCommand, diff --git a/clients/client-socialmessaging/src/pagination/ListWhatsAppTemplateLibraryPaginator.ts b/clients/client-socialmessaging/src/pagination/ListWhatsAppTemplateLibraryPaginator.ts index 5ac9c2d87c9d8..45fd31bfe988a 100644 --- a/clients/client-socialmessaging/src/pagination/ListWhatsAppTemplateLibraryPaginator.ts +++ b/clients/client-socialmessaging/src/pagination/ListWhatsAppTemplateLibraryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWhatsAppTemplateLibraryCommand, diff --git a/clients/client-socialmessaging/src/runtimeConfig.browser.ts b/clients/client-socialmessaging/src/runtimeConfig.browser.ts index 0160a311048f8..91113f0078ca2 100644 --- a/clients/client-socialmessaging/src/runtimeConfig.browser.ts +++ b/clients/client-socialmessaging/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SocialMessagingClientConfig } from "./SocialMessagingClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SocialMessagingClientConfig } from "./SocialMessagingClient"; /** * @internal diff --git a/clients/client-socialmessaging/src/runtimeConfig.native.ts b/clients/client-socialmessaging/src/runtimeConfig.native.ts index 4bb0e8b40a33c..22b88510693a6 100644 --- a/clients/client-socialmessaging/src/runtimeConfig.native.ts +++ b/clients/client-socialmessaging/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SocialMessagingClientConfig } from "./SocialMessagingClient"; +import type { SocialMessagingClientConfig } from "./SocialMessagingClient"; /** * @internal diff --git a/clients/client-socialmessaging/src/runtimeConfig.shared.ts b/clients/client-socialmessaging/src/runtimeConfig.shared.ts index a707db13fa63d..9738b80ec18cf 100644 --- a/clients/client-socialmessaging/src/runtimeConfig.shared.ts +++ b/clients/client-socialmessaging/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSocialMessagingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SocialMessagingClientConfig } from "./SocialMessagingClient"; +import type { SocialMessagingClientConfig } from "./SocialMessagingClient"; /** * @internal diff --git a/clients/client-socialmessaging/src/runtimeConfig.ts b/clients/client-socialmessaging/src/runtimeConfig.ts index 9b9d10b525924..cf2620a053ad4 100644 --- a/clients/client-socialmessaging/src/runtimeConfig.ts +++ b/clients/client-socialmessaging/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SocialMessagingClientConfig } from "./SocialMessagingClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SocialMessagingClientConfig } from "./SocialMessagingClient"; /** * @internal diff --git a/clients/client-socialmessaging/src/runtimeExtensions.ts b/clients/client-socialmessaging/src/runtimeExtensions.ts index 97dc35bd8c2a6..6ca2a4dac9b3b 100644 --- a/clients/client-socialmessaging/src/runtimeExtensions.ts +++ b/clients/client-socialmessaging/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SocialMessagingExtensionConfiguration } from "./extensionConfiguration"; +import type { SocialMessagingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-socialmessaging/src/schemas/schemas_0.ts b/clients/client-socialmessaging/src/schemas/schemas_0.ts index 3622214be83aa..1d0e3bfbd28c0 100644 --- a/clients/client-socialmessaging/src/schemas/schemas_0.ts +++ b/clients/client-socialmessaging/src/schemas/schemas_0.ts @@ -209,7 +209,7 @@ const n0 = "com.amazonaws.socialmessaging"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-sqs/package.json b/clients/client-sqs/package.json index 75518071f3a7b..de877b0838382 100644 --- a/clients/client-sqs/package.json +++ b/clients/client-sqs/package.json @@ -33,27 +33,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/md5-js": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sqs/src/SQS.ts b/clients/client-sqs/src/SQS.ts index e062a8f113618..d7c86c5a7c8d1 100644 --- a/clients/client-sqs/src/SQS.ts +++ b/clients/client-sqs/src/SQS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddPermissionCommand, @@ -85,7 +85,7 @@ import { } from "./commands/StartMessageMoveTaskCommand"; import { TagQueueCommand, TagQueueCommandInput, TagQueueCommandOutput } from "./commands/TagQueueCommand"; import { UntagQueueCommand, UntagQueueCommandInput, UntagQueueCommandOutput } from "./commands/UntagQueueCommand"; -import { SQSClient, SQSClientConfig } from "./SQSClient"; +import { SQSClient } from "./SQSClient"; const commands = { AddPermissionCommand, diff --git a/clients/client-sqs/src/SQSClient.ts b/clients/client-sqs/src/SQSClient.ts index 2b9a13801aad0..28f8def458964 100644 --- a/clients/client-sqs/src/SQSClient.ts +++ b/clients/client-sqs/src/SQSClient.ts @@ -1,25 +1,25 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type QueueUrlInputConfig, + type QueueUrlResolvedConfig, getQueueUrlPlugin, - QueueUrlInputConfig, - QueueUrlResolvedConfig, resolveQueueUrlConfig, } from "@aws-sdk/middleware-sdk-sqs"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -27,42 +27,51 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, Checksum as __Checksum, ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, Hash as __Hash, HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSQSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddPermissionCommandInput, AddPermissionCommandOutput } from "./commands/AddPermissionCommand"; @@ -113,7 +122,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sqs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sqs/src/auth/httpAuthExtensionConfiguration.ts index 8360edba2d330..1363f6307758f 100644 --- a/clients/client-sqs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sqs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SQSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SQSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sqs/src/auth/httpAuthSchemeProvider.ts b/clients/client-sqs/src/auth/httpAuthSchemeProvider.ts index 1c69d768a48fc..66ff0dd8f8931 100644 --- a/clients/client-sqs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sqs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SQSClientConfig, SQSClientResolvedConfig } from "../SQSClient"; +import { type SQSClientResolvedConfig, SQSClientConfig } from "../SQSClient"; /** * @internal diff --git a/clients/client-sqs/src/commands/AddPermissionCommand.ts b/clients/client-sqs/src/commands/AddPermissionCommand.ts index 013408aae3913..874262b7b583e 100644 --- a/clients/client-sqs/src/commands/AddPermissionCommand.ts +++ b/clients/client-sqs/src/commands/AddPermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddPermissionRequest } from "../models/models_0"; +import type { AddPermissionRequest } from "../models/models_0"; import { AddPermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/CancelMessageMoveTaskCommand.ts b/clients/client-sqs/src/commands/CancelMessageMoveTaskCommand.ts index ca7d975d2e16f..2cf3878600052 100644 --- a/clients/client-sqs/src/commands/CancelMessageMoveTaskCommand.ts +++ b/clients/client-sqs/src/commands/CancelMessageMoveTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMessageMoveTaskRequest, CancelMessageMoveTaskResult } from "../models/models_0"; +import type { CancelMessageMoveTaskRequest, CancelMessageMoveTaskResult } from "../models/models_0"; import { CancelMessageMoveTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/ChangeMessageVisibilityBatchCommand.ts b/clients/client-sqs/src/commands/ChangeMessageVisibilityBatchCommand.ts index 784f57290873d..c40ba810d4da6 100644 --- a/clients/client-sqs/src/commands/ChangeMessageVisibilityBatchCommand.ts +++ b/clients/client-sqs/src/commands/ChangeMessageVisibilityBatchCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResult } from "../models/models_0"; +import type { ChangeMessageVisibilityBatchRequest, ChangeMessageVisibilityBatchResult } from "../models/models_0"; import { ChangeMessageVisibilityBatch } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/ChangeMessageVisibilityCommand.ts b/clients/client-sqs/src/commands/ChangeMessageVisibilityCommand.ts index 9cc9a7bc5cb41..4d34bbf3c2170 100644 --- a/clients/client-sqs/src/commands/ChangeMessageVisibilityCommand.ts +++ b/clients/client-sqs/src/commands/ChangeMessageVisibilityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ChangeMessageVisibilityRequest } from "../models/models_0"; +import type { ChangeMessageVisibilityRequest } from "../models/models_0"; import { ChangeMessageVisibility } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/CreateQueueCommand.ts b/clients/client-sqs/src/commands/CreateQueueCommand.ts index 8a17b7459b8f8..2065b1f1995e8 100644 --- a/clients/client-sqs/src/commands/CreateQueueCommand.ts +++ b/clients/client-sqs/src/commands/CreateQueueCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQueueRequest, CreateQueueResult } from "../models/models_0"; +import type { CreateQueueRequest, CreateQueueResult } from "../models/models_0"; import { CreateQueue } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/DeleteMessageBatchCommand.ts b/clients/client-sqs/src/commands/DeleteMessageBatchCommand.ts index 907a0e8ca8d77..64dfb7144507e 100644 --- a/clients/client-sqs/src/commands/DeleteMessageBatchCommand.ts +++ b/clients/client-sqs/src/commands/DeleteMessageBatchCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMessageBatchRequest, DeleteMessageBatchResult } from "../models/models_0"; +import type { DeleteMessageBatchRequest, DeleteMessageBatchResult } from "../models/models_0"; import { DeleteMessageBatch } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/DeleteMessageCommand.ts b/clients/client-sqs/src/commands/DeleteMessageCommand.ts index 7a99344dd703e..98759ba6ec86a 100644 --- a/clients/client-sqs/src/commands/DeleteMessageCommand.ts +++ b/clients/client-sqs/src/commands/DeleteMessageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMessageRequest } from "../models/models_0"; +import type { DeleteMessageRequest } from "../models/models_0"; import { DeleteMessage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/DeleteQueueCommand.ts b/clients/client-sqs/src/commands/DeleteQueueCommand.ts index 154c02052d8ed..0604f989e63b1 100644 --- a/clients/client-sqs/src/commands/DeleteQueueCommand.ts +++ b/clients/client-sqs/src/commands/DeleteQueueCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQueueRequest } from "../models/models_0"; +import type { DeleteQueueRequest } from "../models/models_0"; import { DeleteQueue } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/GetQueueAttributesCommand.ts b/clients/client-sqs/src/commands/GetQueueAttributesCommand.ts index c60732e6a57de..0151f5425e995 100644 --- a/clients/client-sqs/src/commands/GetQueueAttributesCommand.ts +++ b/clients/client-sqs/src/commands/GetQueueAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueueAttributesRequest, GetQueueAttributesResult } from "../models/models_0"; +import type { GetQueueAttributesRequest, GetQueueAttributesResult } from "../models/models_0"; import { GetQueueAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/GetQueueUrlCommand.ts b/clients/client-sqs/src/commands/GetQueueUrlCommand.ts index 59df25c6304d9..6a864d68e4436 100644 --- a/clients/client-sqs/src/commands/GetQueueUrlCommand.ts +++ b/clients/client-sqs/src/commands/GetQueueUrlCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQueueUrlRequest, GetQueueUrlResult } from "../models/models_0"; +import type { GetQueueUrlRequest, GetQueueUrlResult } from "../models/models_0"; import { GetQueueUrl } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/ListDeadLetterSourceQueuesCommand.ts b/clients/client-sqs/src/commands/ListDeadLetterSourceQueuesCommand.ts index 5a38e79f0d649..d0655af281f3b 100644 --- a/clients/client-sqs/src/commands/ListDeadLetterSourceQueuesCommand.ts +++ b/clients/client-sqs/src/commands/ListDeadLetterSourceQueuesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDeadLetterSourceQueuesRequest, ListDeadLetterSourceQueuesResult } from "../models/models_0"; +import type { ListDeadLetterSourceQueuesRequest, ListDeadLetterSourceQueuesResult } from "../models/models_0"; import { ListDeadLetterSourceQueues } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/ListMessageMoveTasksCommand.ts b/clients/client-sqs/src/commands/ListMessageMoveTasksCommand.ts index 04ac66fdf907a..6abbfe2c13718 100644 --- a/clients/client-sqs/src/commands/ListMessageMoveTasksCommand.ts +++ b/clients/client-sqs/src/commands/ListMessageMoveTasksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMessageMoveTasksRequest, ListMessageMoveTasksResult } from "../models/models_0"; +import type { ListMessageMoveTasksRequest, ListMessageMoveTasksResult } from "../models/models_0"; import { ListMessageMoveTasks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/ListQueueTagsCommand.ts b/clients/client-sqs/src/commands/ListQueueTagsCommand.ts index b5de25f06ca90..d320b45c3b471 100644 --- a/clients/client-sqs/src/commands/ListQueueTagsCommand.ts +++ b/clients/client-sqs/src/commands/ListQueueTagsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueueTagsRequest, ListQueueTagsResult } from "../models/models_0"; +import type { ListQueueTagsRequest, ListQueueTagsResult } from "../models/models_0"; import { ListQueueTags } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/ListQueuesCommand.ts b/clients/client-sqs/src/commands/ListQueuesCommand.ts index 0dbd827354871..b24011f261e58 100644 --- a/clients/client-sqs/src/commands/ListQueuesCommand.ts +++ b/clients/client-sqs/src/commands/ListQueuesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQueuesRequest, ListQueuesResult } from "../models/models_0"; +import type { ListQueuesRequest, ListQueuesResult } from "../models/models_0"; import { ListQueues } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/PurgeQueueCommand.ts b/clients/client-sqs/src/commands/PurgeQueueCommand.ts index b9ced79c815ee..2ad9c32a82afe 100644 --- a/clients/client-sqs/src/commands/PurgeQueueCommand.ts +++ b/clients/client-sqs/src/commands/PurgeQueueCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PurgeQueueRequest } from "../models/models_0"; +import type { PurgeQueueRequest } from "../models/models_0"; import { PurgeQueue } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/ReceiveMessageCommand.ts b/clients/client-sqs/src/commands/ReceiveMessageCommand.ts index fd9b594eea0fa..929db2f0f1b35 100644 --- a/clients/client-sqs/src/commands/ReceiveMessageCommand.ts +++ b/clients/client-sqs/src/commands/ReceiveMessageCommand.ts @@ -2,12 +2,12 @@ import { getReceiveMessagePlugin } from "@aws-sdk/middleware-sdk-sqs"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ReceiveMessageRequest, ReceiveMessageResult } from "../models/models_0"; +import type { ReceiveMessageRequest, ReceiveMessageResult } from "../models/models_0"; import { ReceiveMessage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/RemovePermissionCommand.ts b/clients/client-sqs/src/commands/RemovePermissionCommand.ts index 770c62a7abb12..360ffd005a1d6 100644 --- a/clients/client-sqs/src/commands/RemovePermissionCommand.ts +++ b/clients/client-sqs/src/commands/RemovePermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemovePermissionRequest } from "../models/models_0"; +import type { RemovePermissionRequest } from "../models/models_0"; import { RemovePermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/SendMessageBatchCommand.ts b/clients/client-sqs/src/commands/SendMessageBatchCommand.ts index 92d4d669de916..3ec8c462420b2 100644 --- a/clients/client-sqs/src/commands/SendMessageBatchCommand.ts +++ b/clients/client-sqs/src/commands/SendMessageBatchCommand.ts @@ -2,12 +2,12 @@ import { getSendMessageBatchPlugin } from "@aws-sdk/middleware-sdk-sqs"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendMessageBatchRequest, SendMessageBatchResult } from "../models/models_0"; +import type { SendMessageBatchRequest, SendMessageBatchResult } from "../models/models_0"; import { SendMessageBatch } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/SendMessageCommand.ts b/clients/client-sqs/src/commands/SendMessageCommand.ts index ee5baa7ed1656..ed27e230cc038 100644 --- a/clients/client-sqs/src/commands/SendMessageCommand.ts +++ b/clients/client-sqs/src/commands/SendMessageCommand.ts @@ -2,12 +2,12 @@ import { getSendMessagePlugin } from "@aws-sdk/middleware-sdk-sqs"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendMessageRequest, SendMessageResult } from "../models/models_0"; +import type { SendMessageRequest, SendMessageResult } from "../models/models_0"; import { SendMessage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/SetQueueAttributesCommand.ts b/clients/client-sqs/src/commands/SetQueueAttributesCommand.ts index 316e36241cffa..153bca21e1e5c 100644 --- a/clients/client-sqs/src/commands/SetQueueAttributesCommand.ts +++ b/clients/client-sqs/src/commands/SetQueueAttributesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetQueueAttributesRequest } from "../models/models_0"; +import type { SetQueueAttributesRequest } from "../models/models_0"; import { SetQueueAttributes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/StartMessageMoveTaskCommand.ts b/clients/client-sqs/src/commands/StartMessageMoveTaskCommand.ts index 692d1e62c45f9..eae3688955944 100644 --- a/clients/client-sqs/src/commands/StartMessageMoveTaskCommand.ts +++ b/clients/client-sqs/src/commands/StartMessageMoveTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMessageMoveTaskRequest, StartMessageMoveTaskResult } from "../models/models_0"; +import type { StartMessageMoveTaskRequest, StartMessageMoveTaskResult } from "../models/models_0"; import { StartMessageMoveTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/TagQueueCommand.ts b/clients/client-sqs/src/commands/TagQueueCommand.ts index 4bd40abce3b5c..dec2ed2473bd4 100644 --- a/clients/client-sqs/src/commands/TagQueueCommand.ts +++ b/clients/client-sqs/src/commands/TagQueueCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagQueueRequest } from "../models/models_0"; +import type { TagQueueRequest } from "../models/models_0"; import { TagQueue } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/commands/UntagQueueCommand.ts b/clients/client-sqs/src/commands/UntagQueueCommand.ts index 2a1d9fcc4d4a0..76a896501b9ae 100644 --- a/clients/client-sqs/src/commands/UntagQueueCommand.ts +++ b/clients/client-sqs/src/commands/UntagQueueCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagQueueRequest } from "../models/models_0"; +import type { UntagQueueRequest } from "../models/models_0"; import { UntagQueue } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SQSClientResolvedConfig } from "../SQSClient"; /** * @public diff --git a/clients/client-sqs/src/endpoint/EndpointParameters.ts b/clients/client-sqs/src/endpoint/EndpointParameters.ts index bc01f0b129dfd..e56206d598034 100644 --- a/clients/client-sqs/src/endpoint/EndpointParameters.ts +++ b/clients/client-sqs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sqs/src/endpoint/endpointResolver.ts b/clients/client-sqs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sqs/src/endpoint/endpointResolver.ts +++ b/clients/client-sqs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sqs/src/extensionConfiguration.ts b/clients/client-sqs/src/extensionConfiguration.ts index 34ce9f7c61af9..05d0e831b89ac 100644 --- a/clients/client-sqs/src/extensionConfiguration.ts +++ b/clients/client-sqs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sqs/src/models/SQSServiceException.ts b/clients/client-sqs/src/models/SQSServiceException.ts index b89886fc9ff43..4fb38466193a0 100644 --- a/clients/client-sqs/src/models/SQSServiceException.ts +++ b/clients/client-sqs/src/models/SQSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sqs/src/models/errors.ts b/clients/client-sqs/src/models/errors.ts index 11bb728ef351b..e9757de1b934d 100644 --- a/clients/client-sqs/src/models/errors.ts +++ b/clients/client-sqs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SQSServiceException as __BaseException } from "./SQSServiceException"; diff --git a/clients/client-sqs/src/pagination/Interfaces.ts b/clients/client-sqs/src/pagination/Interfaces.ts index 1baf7f0fb6b6d..709adfd0198c4 100644 --- a/clients/client-sqs/src/pagination/Interfaces.ts +++ b/clients/client-sqs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SQSClient } from "../SQSClient"; diff --git a/clients/client-sqs/src/pagination/ListDeadLetterSourceQueuesPaginator.ts b/clients/client-sqs/src/pagination/ListDeadLetterSourceQueuesPaginator.ts index b9b27e602e430..a721e23c2bfd2 100644 --- a/clients/client-sqs/src/pagination/ListDeadLetterSourceQueuesPaginator.ts +++ b/clients/client-sqs/src/pagination/ListDeadLetterSourceQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDeadLetterSourceQueuesCommand, diff --git a/clients/client-sqs/src/pagination/ListQueuesPaginator.ts b/clients/client-sqs/src/pagination/ListQueuesPaginator.ts index 86461ffc1d08c..de412c188aa18 100644 --- a/clients/client-sqs/src/pagination/ListQueuesPaginator.ts +++ b/clients/client-sqs/src/pagination/ListQueuesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQueuesCommand, ListQueuesCommandInput, ListQueuesCommandOutput } from "../commands/ListQueuesCommand"; import { SQSClient } from "../SQSClient"; diff --git a/clients/client-sqs/src/runtimeConfig.browser.ts b/clients/client-sqs/src/runtimeConfig.browser.ts index a90c73003594e..979a93b275d2f 100644 --- a/clients/client-sqs/src/runtimeConfig.browser.ts +++ b/clients/client-sqs/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; import { Md5 } from "@smithy/md5-js"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SQSClientConfig } from "./SQSClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SQSClientConfig } from "./SQSClient"; /** * @internal diff --git a/clients/client-sqs/src/runtimeConfig.native.ts b/clients/client-sqs/src/runtimeConfig.native.ts index 7d5a6ed6ca299..4cab94884390b 100644 --- a/clients/client-sqs/src/runtimeConfig.native.ts +++ b/clients/client-sqs/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SQSClientConfig } from "./SQSClient"; +import type { SQSClientConfig } from "./SQSClient"; /** * @internal diff --git a/clients/client-sqs/src/runtimeConfig.shared.ts b/clients/client-sqs/src/runtimeConfig.shared.ts index 52eb7cc8e0965..97f806d075379 100644 --- a/clients/client-sqs/src/runtimeConfig.shared.ts +++ b/clients/client-sqs/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSQSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SQSClientConfig } from "./SQSClient"; +import type { SQSClientConfig } from "./SQSClient"; /** * @internal diff --git a/clients/client-sqs/src/runtimeConfig.ts b/clients/client-sqs/src/runtimeConfig.ts index d2a159d5c2fe7..ad82c252424f9 100644 --- a/clients/client-sqs/src/runtimeConfig.ts +++ b/clients/client-sqs/src/runtimeConfig.ts @@ -15,14 +15,14 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { ChecksumConstructor as __ChecksumConstructor, HashConstructor as __HashConstructor } from "@smithy/types"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SQSClientConfig } from "./SQSClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SQSClientConfig } from "./SQSClient"; /** * @internal diff --git a/clients/client-sqs/src/runtimeExtensions.ts b/clients/client-sqs/src/runtimeExtensions.ts index abe71bff83b36..9b117e2d3555f 100644 --- a/clients/client-sqs/src/runtimeExtensions.ts +++ b/clients/client-sqs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SQSExtensionConfiguration } from "./extensionConfiguration"; +import type { SQSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sqs/src/schemas/schemas_0.ts b/clients/client-sqs/src/schemas/schemas_0.ts index 403f43f7ad56b..c5a7615a21b9b 100644 --- a/clients/client-sqs/src/schemas/schemas_0.ts +++ b/clients/client-sqs/src/schemas/schemas_0.ts @@ -197,7 +197,7 @@ const n0 = "com.amazonaws.sqs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ssm-contacts/package.json b/clients/client-ssm-contacts/package.json index 710057f704404..ab96e3ceaa034 100644 --- a/clients/client-ssm-contacts/package.json +++ b/clients/client-ssm-contacts/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ssm-contacts/src/SSMContacts.ts b/clients/client-ssm-contacts/src/SSMContacts.ts index 367c1716426dd..3d0b95ceaa9c1 100644 --- a/clients/client-ssm-contacts/src/SSMContacts.ts +++ b/clients/client-ssm-contacts/src/SSMContacts.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptPageCommand, AcceptPageCommandInput, AcceptPageCommandOutput } from "./commands/AcceptPageCommand"; import { @@ -181,7 +181,7 @@ import { UpdateRotationCommandInput, UpdateRotationCommandOutput, } from "./commands/UpdateRotationCommand"; -import { SSMContactsClient, SSMContactsClientConfig } from "./SSMContactsClient"; +import { SSMContactsClient } from "./SSMContactsClient"; const commands = { AcceptPageCommand, diff --git a/clients/client-ssm-contacts/src/SSMContactsClient.ts b/clients/client-ssm-contacts/src/SSMContactsClient.ts index 506f5e2310fa4..de8745824d7f7 100644 --- a/clients/client-ssm-contacts/src/SSMContactsClient.ts +++ b/clients/client-ssm-contacts/src/SSMContactsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSSMContactsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AcceptPageCommandInput, AcceptPageCommandOutput } from "./commands/AcceptPageCommand"; @@ -145,7 +154,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ssm-contacts/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ssm-contacts/src/auth/httpAuthExtensionConfiguration.ts index a94d97b858421..049238095e389 100644 --- a/clients/client-ssm-contacts/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ssm-contacts/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SSMContactsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SSMContactsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ssm-contacts/src/auth/httpAuthSchemeProvider.ts b/clients/client-ssm-contacts/src/auth/httpAuthSchemeProvider.ts index e3c16aa91f8f8..cee539c246ff1 100644 --- a/clients/client-ssm-contacts/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ssm-contacts/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SSMContactsClientConfig, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import { type SSMContactsClientResolvedConfig, SSMContactsClientConfig } from "../SSMContactsClient"; /** * @internal diff --git a/clients/client-ssm-contacts/src/commands/AcceptPageCommand.ts b/clients/client-ssm-contacts/src/commands/AcceptPageCommand.ts index aac9e531cba12..475f2c2aa6660 100644 --- a/clients/client-ssm-contacts/src/commands/AcceptPageCommand.ts +++ b/clients/client-ssm-contacts/src/commands/AcceptPageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptPageRequest, AcceptPageResult } from "../models/models_0"; +import type { AcceptPageRequest, AcceptPageResult } from "../models/models_0"; import { AcceptPage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ActivateContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/ActivateContactChannelCommand.ts index b95f128296e14..b429dc46e6dc0 100644 --- a/clients/client-ssm-contacts/src/commands/ActivateContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ActivateContactChannelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateContactChannelRequest, ActivateContactChannelResult } from "../models/models_0"; +import type { ActivateContactChannelRequest, ActivateContactChannelResult } from "../models/models_0"; import { ActivateContactChannel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/CreateContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/CreateContactChannelCommand.ts index 19527cfb30e0a..0aaa814dff611 100644 --- a/clients/client-ssm-contacts/src/commands/CreateContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/CreateContactChannelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactChannelRequest, CreateContactChannelResult } from "../models/models_0"; +import type { CreateContactChannelRequest, CreateContactChannelResult } from "../models/models_0"; import { CreateContactChannel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/CreateContactCommand.ts b/clients/client-ssm-contacts/src/commands/CreateContactCommand.ts index 105995e61bd8e..fb7b8043066a1 100644 --- a/clients/client-ssm-contacts/src/commands/CreateContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/CreateContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContactRequest, CreateContactResult } from "../models/models_0"; +import type { CreateContactRequest, CreateContactResult } from "../models/models_0"; import { CreateContact } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/CreateRotationCommand.ts b/clients/client-ssm-contacts/src/commands/CreateRotationCommand.ts index 3bbfb13e9ec55..31a5c3e58e6af 100644 --- a/clients/client-ssm-contacts/src/commands/CreateRotationCommand.ts +++ b/clients/client-ssm-contacts/src/commands/CreateRotationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRotationRequest, CreateRotationResult } from "../models/models_0"; +import type { CreateRotationRequest, CreateRotationResult } from "../models/models_0"; import { CreateRotation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/CreateRotationOverrideCommand.ts b/clients/client-ssm-contacts/src/commands/CreateRotationOverrideCommand.ts index 4b9001c2f9e9c..a39b651c43fa2 100644 --- a/clients/client-ssm-contacts/src/commands/CreateRotationOverrideCommand.ts +++ b/clients/client-ssm-contacts/src/commands/CreateRotationOverrideCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRotationOverrideRequest, CreateRotationOverrideResult } from "../models/models_0"; +import type { CreateRotationOverrideRequest, CreateRotationOverrideResult } from "../models/models_0"; import { CreateRotationOverride } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/DeactivateContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/DeactivateContactChannelCommand.ts index e56511d48b22c..c17cebfa7b26e 100644 --- a/clients/client-ssm-contacts/src/commands/DeactivateContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeactivateContactChannelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeactivateContactChannelRequest, DeactivateContactChannelResult } from "../models/models_0"; +import type { DeactivateContactChannelRequest, DeactivateContactChannelResult } from "../models/models_0"; import { DeactivateContactChannel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/DeleteContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/DeleteContactChannelCommand.ts index 3d3d77074adc0..c61033f6c788f 100644 --- a/clients/client-ssm-contacts/src/commands/DeleteContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeleteContactChannelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactChannelRequest, DeleteContactChannelResult } from "../models/models_0"; +import type { DeleteContactChannelRequest, DeleteContactChannelResult } from "../models/models_0"; import { DeleteContactChannel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/DeleteContactCommand.ts b/clients/client-ssm-contacts/src/commands/DeleteContactCommand.ts index d53cb29559220..bf620ceb323cd 100644 --- a/clients/client-ssm-contacts/src/commands/DeleteContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeleteContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContactRequest, DeleteContactResult } from "../models/models_0"; +import type { DeleteContactRequest, DeleteContactResult } from "../models/models_0"; import { DeleteContact } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/DeleteRotationCommand.ts b/clients/client-ssm-contacts/src/commands/DeleteRotationCommand.ts index eeac53b96adec..6b1a8f5872f22 100644 --- a/clients/client-ssm-contacts/src/commands/DeleteRotationCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeleteRotationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRotationRequest, DeleteRotationResult } from "../models/models_0"; +import type { DeleteRotationRequest, DeleteRotationResult } from "../models/models_0"; import { DeleteRotation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/DeleteRotationOverrideCommand.ts b/clients/client-ssm-contacts/src/commands/DeleteRotationOverrideCommand.ts index a836c6d0d1e12..67635e11e91e8 100644 --- a/clients/client-ssm-contacts/src/commands/DeleteRotationOverrideCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DeleteRotationOverrideCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRotationOverrideRequest, DeleteRotationOverrideResult } from "../models/models_0"; +import type { DeleteRotationOverrideRequest, DeleteRotationOverrideResult } from "../models/models_0"; import { DeleteRotationOverride } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/DescribeEngagementCommand.ts b/clients/client-ssm-contacts/src/commands/DescribeEngagementCommand.ts index 64d2574c85617..b2189ce2e5818 100644 --- a/clients/client-ssm-contacts/src/commands/DescribeEngagementCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DescribeEngagementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEngagementRequest, DescribeEngagementResult } from "../models/models_0"; +import type { DescribeEngagementRequest, DescribeEngagementResult } from "../models/models_0"; import { DescribeEngagement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/DescribePageCommand.ts b/clients/client-ssm-contacts/src/commands/DescribePageCommand.ts index eb4635066f6f0..3d24148eec75a 100644 --- a/clients/client-ssm-contacts/src/commands/DescribePageCommand.ts +++ b/clients/client-ssm-contacts/src/commands/DescribePageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePageRequest, DescribePageResult } from "../models/models_0"; +import type { DescribePageRequest, DescribePageResult } from "../models/models_0"; import { DescribePage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/GetContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/GetContactChannelCommand.ts index 68d26593d9167..9dba15f62b29c 100644 --- a/clients/client-ssm-contacts/src/commands/GetContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetContactChannelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContactChannelRequest, GetContactChannelResult } from "../models/models_0"; +import type { GetContactChannelRequest, GetContactChannelResult } from "../models/models_0"; import { GetContactChannel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/GetContactCommand.ts b/clients/client-ssm-contacts/src/commands/GetContactCommand.ts index 13bd0df91f0a5..ee87f1c2edf0e 100644 --- a/clients/client-ssm-contacts/src/commands/GetContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContactRequest, GetContactResult } from "../models/models_0"; +import type { GetContactRequest, GetContactResult } from "../models/models_0"; import { GetContact } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/GetContactPolicyCommand.ts b/clients/client-ssm-contacts/src/commands/GetContactPolicyCommand.ts index e8702875adb6b..30ce6b63f250b 100644 --- a/clients/client-ssm-contacts/src/commands/GetContactPolicyCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetContactPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContactPolicyRequest, GetContactPolicyResult } from "../models/models_0"; +import type { GetContactPolicyRequest, GetContactPolicyResult } from "../models/models_0"; import { GetContactPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/GetRotationCommand.ts b/clients/client-ssm-contacts/src/commands/GetRotationCommand.ts index 7385bb8922d7e..ba160e4315e46 100644 --- a/clients/client-ssm-contacts/src/commands/GetRotationCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetRotationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRotationRequest, GetRotationResult } from "../models/models_0"; +import type { GetRotationRequest, GetRotationResult } from "../models/models_0"; import { GetRotation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/GetRotationOverrideCommand.ts b/clients/client-ssm-contacts/src/commands/GetRotationOverrideCommand.ts index 2364848aba10c..adef13ee5bddc 100644 --- a/clients/client-ssm-contacts/src/commands/GetRotationOverrideCommand.ts +++ b/clients/client-ssm-contacts/src/commands/GetRotationOverrideCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRotationOverrideRequest, GetRotationOverrideResult } from "../models/models_0"; +import type { GetRotationOverrideRequest, GetRotationOverrideResult } from "../models/models_0"; import { GetRotationOverride } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListContactChannelsCommand.ts b/clients/client-ssm-contacts/src/commands/ListContactChannelsCommand.ts index 2d4b7c108bdf0..f297c2e0a5545 100644 --- a/clients/client-ssm-contacts/src/commands/ListContactChannelsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListContactChannelsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactChannelsRequest, ListContactChannelsResult } from "../models/models_0"; +import type { ListContactChannelsRequest, ListContactChannelsResult } from "../models/models_0"; import { ListContactChannels } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListContactsCommand.ts b/clients/client-ssm-contacts/src/commands/ListContactsCommand.ts index 8e7039e37e801..c6fabccc08043 100644 --- a/clients/client-ssm-contacts/src/commands/ListContactsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListContactsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContactsRequest, ListContactsResult } from "../models/models_0"; +import type { ListContactsRequest, ListContactsResult } from "../models/models_0"; import { ListContacts } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListEngagementsCommand.ts b/clients/client-ssm-contacts/src/commands/ListEngagementsCommand.ts index ed93300db1dc5..5aa131f7fa086 100644 --- a/clients/client-ssm-contacts/src/commands/ListEngagementsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListEngagementsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEngagementsRequest, ListEngagementsResult } from "../models/models_0"; +import type { ListEngagementsRequest, ListEngagementsResult } from "../models/models_0"; import { ListEngagements } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListPageReceiptsCommand.ts b/clients/client-ssm-contacts/src/commands/ListPageReceiptsCommand.ts index 51ea6870152f0..1103aab0bb3d3 100644 --- a/clients/client-ssm-contacts/src/commands/ListPageReceiptsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPageReceiptsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPageReceiptsRequest, ListPageReceiptsResult } from "../models/models_0"; +import type { ListPageReceiptsRequest, ListPageReceiptsResult } from "../models/models_0"; import { ListPageReceipts } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListPageResolutionsCommand.ts b/clients/client-ssm-contacts/src/commands/ListPageResolutionsCommand.ts index 12c5114460701..a0fd13c3b3a03 100644 --- a/clients/client-ssm-contacts/src/commands/ListPageResolutionsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPageResolutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPageResolutionsRequest, ListPageResolutionsResult } from "../models/models_0"; +import type { ListPageResolutionsRequest, ListPageResolutionsResult } from "../models/models_0"; import { ListPageResolutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListPagesByContactCommand.ts b/clients/client-ssm-contacts/src/commands/ListPagesByContactCommand.ts index f546d11938af3..687f9a3905a2f 100644 --- a/clients/client-ssm-contacts/src/commands/ListPagesByContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPagesByContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPagesByContactRequest, ListPagesByContactResult } from "../models/models_0"; +import type { ListPagesByContactRequest, ListPagesByContactResult } from "../models/models_0"; import { ListPagesByContact } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListPagesByEngagementCommand.ts b/clients/client-ssm-contacts/src/commands/ListPagesByEngagementCommand.ts index c58a88114d277..85b82b10484c2 100644 --- a/clients/client-ssm-contacts/src/commands/ListPagesByEngagementCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPagesByEngagementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPagesByEngagementRequest, ListPagesByEngagementResult } from "../models/models_0"; +import type { ListPagesByEngagementRequest, ListPagesByEngagementResult } from "../models/models_0"; import { ListPagesByEngagement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListPreviewRotationShiftsCommand.ts b/clients/client-ssm-contacts/src/commands/ListPreviewRotationShiftsCommand.ts index 786a4436b6a86..923e7e72d2fa0 100644 --- a/clients/client-ssm-contacts/src/commands/ListPreviewRotationShiftsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListPreviewRotationShiftsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPreviewRotationShiftsRequest, ListPreviewRotationShiftsResult } from "../models/models_0"; +import type { ListPreviewRotationShiftsRequest, ListPreviewRotationShiftsResult } from "../models/models_0"; import { ListPreviewRotationShifts } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListRotationOverridesCommand.ts b/clients/client-ssm-contacts/src/commands/ListRotationOverridesCommand.ts index 8a3c46abfe3b9..7bc3ca6e25806 100644 --- a/clients/client-ssm-contacts/src/commands/ListRotationOverridesCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListRotationOverridesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRotationOverridesRequest, ListRotationOverridesResult } from "../models/models_0"; +import type { ListRotationOverridesRequest, ListRotationOverridesResult } from "../models/models_0"; import { ListRotationOverrides } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListRotationShiftsCommand.ts b/clients/client-ssm-contacts/src/commands/ListRotationShiftsCommand.ts index c58e45a4ca4e2..88acbfdee36f1 100644 --- a/clients/client-ssm-contacts/src/commands/ListRotationShiftsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListRotationShiftsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRotationShiftsRequest, ListRotationShiftsResult } from "../models/models_0"; +import type { ListRotationShiftsRequest, ListRotationShiftsResult } from "../models/models_0"; import { ListRotationShifts } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListRotationsCommand.ts b/clients/client-ssm-contacts/src/commands/ListRotationsCommand.ts index 8bd925a8e34b9..07585080a20af 100644 --- a/clients/client-ssm-contacts/src/commands/ListRotationsCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListRotationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRotationsRequest, ListRotationsResult } from "../models/models_0"; +import type { ListRotationsRequest, ListRotationsResult } from "../models/models_0"; import { ListRotations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm-contacts/src/commands/ListTagsForResourceCommand.ts index 224e7b15f1911..87407386617fa 100644 --- a/clients/client-ssm-contacts/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm-contacts/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/PutContactPolicyCommand.ts b/clients/client-ssm-contacts/src/commands/PutContactPolicyCommand.ts index 507a123dbeaa8..11a792db30d35 100644 --- a/clients/client-ssm-contacts/src/commands/PutContactPolicyCommand.ts +++ b/clients/client-ssm-contacts/src/commands/PutContactPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutContactPolicyRequest, PutContactPolicyResult } from "../models/models_0"; +import type { PutContactPolicyRequest, PutContactPolicyResult } from "../models/models_0"; import { PutContactPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/SendActivationCodeCommand.ts b/clients/client-ssm-contacts/src/commands/SendActivationCodeCommand.ts index 3d75761b503dd..779fe10a3d1f7 100644 --- a/clients/client-ssm-contacts/src/commands/SendActivationCodeCommand.ts +++ b/clients/client-ssm-contacts/src/commands/SendActivationCodeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendActivationCodeRequest, SendActivationCodeResult } from "../models/models_0"; +import type { SendActivationCodeRequest, SendActivationCodeResult } from "../models/models_0"; import { SendActivationCode } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/StartEngagementCommand.ts b/clients/client-ssm-contacts/src/commands/StartEngagementCommand.ts index ea61ab924318c..25822051ca2eb 100644 --- a/clients/client-ssm-contacts/src/commands/StartEngagementCommand.ts +++ b/clients/client-ssm-contacts/src/commands/StartEngagementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartEngagementRequest, StartEngagementResult } from "../models/models_0"; +import type { StartEngagementRequest, StartEngagementResult } from "../models/models_0"; import { StartEngagement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/StopEngagementCommand.ts b/clients/client-ssm-contacts/src/commands/StopEngagementCommand.ts index 82d0fb19813f4..04d1fdd2a4cd1 100644 --- a/clients/client-ssm-contacts/src/commands/StopEngagementCommand.ts +++ b/clients/client-ssm-contacts/src/commands/StopEngagementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopEngagementRequest, StopEngagementResult } from "../models/models_0"; +import type { StopEngagementRequest, StopEngagementResult } from "../models/models_0"; import { StopEngagement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/TagResourceCommand.ts b/clients/client-ssm-contacts/src/commands/TagResourceCommand.ts index 38329f6884e7d..0f67e2fc8113e 100644 --- a/clients/client-ssm-contacts/src/commands/TagResourceCommand.ts +++ b/clients/client-ssm-contacts/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResult } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResult } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/UntagResourceCommand.ts b/clients/client-ssm-contacts/src/commands/UntagResourceCommand.ts index b6c9753d78f9a..77f6a9bb998b0 100644 --- a/clients/client-ssm-contacts/src/commands/UntagResourceCommand.ts +++ b/clients/client-ssm-contacts/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResult } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/UpdateContactChannelCommand.ts b/clients/client-ssm-contacts/src/commands/UpdateContactChannelCommand.ts index 5c2272d1398bb..9ba00e463a7e9 100644 --- a/clients/client-ssm-contacts/src/commands/UpdateContactChannelCommand.ts +++ b/clients/client-ssm-contacts/src/commands/UpdateContactChannelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactChannelRequest, UpdateContactChannelResult } from "../models/models_0"; +import type { UpdateContactChannelRequest, UpdateContactChannelResult } from "../models/models_0"; import { UpdateContactChannel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/UpdateContactCommand.ts b/clients/client-ssm-contacts/src/commands/UpdateContactCommand.ts index 7650ce4643a66..2130bdb531b10 100644 --- a/clients/client-ssm-contacts/src/commands/UpdateContactCommand.ts +++ b/clients/client-ssm-contacts/src/commands/UpdateContactCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContactRequest, UpdateContactResult } from "../models/models_0"; +import type { UpdateContactRequest, UpdateContactResult } from "../models/models_0"; import { UpdateContact } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/commands/UpdateRotationCommand.ts b/clients/client-ssm-contacts/src/commands/UpdateRotationCommand.ts index cacde41d01da3..ff305cbb9b27b 100644 --- a/clients/client-ssm-contacts/src/commands/UpdateRotationCommand.ts +++ b/clients/client-ssm-contacts/src/commands/UpdateRotationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRotationRequest, UpdateRotationResult } from "../models/models_0"; +import type { UpdateRotationRequest, UpdateRotationResult } from "../models/models_0"; import { UpdateRotation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient"; /** * @public diff --git a/clients/client-ssm-contacts/src/endpoint/EndpointParameters.ts b/clients/client-ssm-contacts/src/endpoint/EndpointParameters.ts index 6e7940d034b0f..fc13c08128b13 100644 --- a/clients/client-ssm-contacts/src/endpoint/EndpointParameters.ts +++ b/clients/client-ssm-contacts/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ssm-contacts/src/endpoint/endpointResolver.ts b/clients/client-ssm-contacts/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ssm-contacts/src/endpoint/endpointResolver.ts +++ b/clients/client-ssm-contacts/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ssm-contacts/src/extensionConfiguration.ts b/clients/client-ssm-contacts/src/extensionConfiguration.ts index 4ea9c2204e03f..5009ce60ae8cc 100644 --- a/clients/client-ssm-contacts/src/extensionConfiguration.ts +++ b/clients/client-ssm-contacts/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ssm-contacts/src/models/SSMContactsServiceException.ts b/clients/client-ssm-contacts/src/models/SSMContactsServiceException.ts index b76b5fa36d809..1ad280f663a64 100644 --- a/clients/client-ssm-contacts/src/models/SSMContactsServiceException.ts +++ b/clients/client-ssm-contacts/src/models/SSMContactsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ssm-contacts/src/models/errors.ts b/clients/client-ssm-contacts/src/models/errors.ts index 605a1e279145b..46323715fe2ff 100644 --- a/clients/client-ssm-contacts/src/models/errors.ts +++ b/clients/client-ssm-contacts/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { DependentEntity, ValidationExceptionField } from "./models_0"; diff --git a/clients/client-ssm-contacts/src/pagination/Interfaces.ts b/clients/client-ssm-contacts/src/pagination/Interfaces.ts index b8188042d61ac..df6b288b96ad5 100644 --- a/clients/client-ssm-contacts/src/pagination/Interfaces.ts +++ b/clients/client-ssm-contacts/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SSMContactsClient } from "../SSMContactsClient"; diff --git a/clients/client-ssm-contacts/src/pagination/ListContactChannelsPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListContactChannelsPaginator.ts index 7508a8788d707..eff2e5c67abe0 100644 --- a/clients/client-ssm-contacts/src/pagination/ListContactChannelsPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListContactChannelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactChannelsCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListContactsPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListContactsPaginator.ts index 3c798f7d2a4ff..233b43cb2bded 100644 --- a/clients/client-ssm-contacts/src/pagination/ListContactsPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListContactsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContactsCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListEngagementsPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListEngagementsPaginator.ts index 7ea347735eb9e..eaa2e08139514 100644 --- a/clients/client-ssm-contacts/src/pagination/ListEngagementsPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListEngagementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEngagementsCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListPageReceiptsPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListPageReceiptsPaginator.ts index 13f28f6157c55..4c4c1f88b860b 100644 --- a/clients/client-ssm-contacts/src/pagination/ListPageReceiptsPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListPageReceiptsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPageReceiptsCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListPageResolutionsPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListPageResolutionsPaginator.ts index 3537c5b880d97..eec019c64e8e5 100644 --- a/clients/client-ssm-contacts/src/pagination/ListPageResolutionsPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListPageResolutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPageResolutionsCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListPagesByContactPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListPagesByContactPaginator.ts index a66329409e2eb..f8e6a0000baaf 100644 --- a/clients/client-ssm-contacts/src/pagination/ListPagesByContactPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListPagesByContactPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPagesByContactCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListPagesByEngagementPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListPagesByEngagementPaginator.ts index f63fb55ddce9f..2f7a9eb536645 100644 --- a/clients/client-ssm-contacts/src/pagination/ListPagesByEngagementPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListPagesByEngagementPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPagesByEngagementCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListPreviewRotationShiftsPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListPreviewRotationShiftsPaginator.ts index 761ea4aa47392..b7764ea714bc0 100644 --- a/clients/client-ssm-contacts/src/pagination/ListPreviewRotationShiftsPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListPreviewRotationShiftsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPreviewRotationShiftsCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListRotationOverridesPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListRotationOverridesPaginator.ts index c940c05480609..a7c6e3dfcf5cd 100644 --- a/clients/client-ssm-contacts/src/pagination/ListRotationOverridesPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListRotationOverridesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRotationOverridesCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListRotationShiftsPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListRotationShiftsPaginator.ts index 3476a29d17e5b..7e6f9cb82941c 100644 --- a/clients/client-ssm-contacts/src/pagination/ListRotationShiftsPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListRotationShiftsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRotationShiftsCommand, diff --git a/clients/client-ssm-contacts/src/pagination/ListRotationsPaginator.ts b/clients/client-ssm-contacts/src/pagination/ListRotationsPaginator.ts index 386dc216c0a77..3526a61174383 100644 --- a/clients/client-ssm-contacts/src/pagination/ListRotationsPaginator.ts +++ b/clients/client-ssm-contacts/src/pagination/ListRotationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRotationsCommand, diff --git a/clients/client-ssm-contacts/src/runtimeConfig.browser.ts b/clients/client-ssm-contacts/src/runtimeConfig.browser.ts index 64582e8e3a7a5..54aee3784bedf 100644 --- a/clients/client-ssm-contacts/src/runtimeConfig.browser.ts +++ b/clients/client-ssm-contacts/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMContactsClientConfig } from "./SSMContactsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SSMContactsClientConfig } from "./SSMContactsClient"; /** * @internal diff --git a/clients/client-ssm-contacts/src/runtimeConfig.native.ts b/clients/client-ssm-contacts/src/runtimeConfig.native.ts index 1af5cbb6e2298..629a8085fbebf 100644 --- a/clients/client-ssm-contacts/src/runtimeConfig.native.ts +++ b/clients/client-ssm-contacts/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SSMContactsClientConfig } from "./SSMContactsClient"; +import type { SSMContactsClientConfig } from "./SSMContactsClient"; /** * @internal diff --git a/clients/client-ssm-contacts/src/runtimeConfig.shared.ts b/clients/client-ssm-contacts/src/runtimeConfig.shared.ts index a5f31c26c990c..b7578097721fa 100644 --- a/clients/client-ssm-contacts/src/runtimeConfig.shared.ts +++ b/clients/client-ssm-contacts/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSSMContactsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SSMContactsClientConfig } from "./SSMContactsClient"; +import type { SSMContactsClientConfig } from "./SSMContactsClient"; /** * @internal diff --git a/clients/client-ssm-contacts/src/runtimeConfig.ts b/clients/client-ssm-contacts/src/runtimeConfig.ts index 30587f4171e05..1610bbc8c5fb8 100644 --- a/clients/client-ssm-contacts/src/runtimeConfig.ts +++ b/clients/client-ssm-contacts/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMContactsClientConfig } from "./SSMContactsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SSMContactsClientConfig } from "./SSMContactsClient"; /** * @internal diff --git a/clients/client-ssm-contacts/src/runtimeExtensions.ts b/clients/client-ssm-contacts/src/runtimeExtensions.ts index 1941d66b13297..de0b904de9bfb 100644 --- a/clients/client-ssm-contacts/src/runtimeExtensions.ts +++ b/clients/client-ssm-contacts/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SSMContactsExtensionConfiguration } from "./extensionConfiguration"; +import type { SSMContactsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ssm-contacts/src/schemas/schemas_0.ts b/clients/client-ssm-contacts/src/schemas/schemas_0.ts index a0920feae3646..1015c56b07896 100644 --- a/clients/client-ssm-contacts/src/schemas/schemas_0.ts +++ b/clients/client-ssm-contacts/src/schemas/schemas_0.ts @@ -274,7 +274,7 @@ const n0 = "com.amazonaws.ssmcontacts"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ssm-guiconnect/package.json b/clients/client-ssm-guiconnect/package.json index 06e9fb836966c..8a6459c34fd19 100644 --- a/clients/client-ssm-guiconnect/package.json +++ b/clients/client-ssm-guiconnect/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ssm-guiconnect/src/SSMGuiConnect.ts b/clients/client-ssm-guiconnect/src/SSMGuiConnect.ts index d0b60d77da4ce..7b9c2e024aac1 100644 --- a/clients/client-ssm-guiconnect/src/SSMGuiConnect.ts +++ b/clients/client-ssm-guiconnect/src/SSMGuiConnect.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteConnectionRecordingPreferencesCommand, @@ -17,7 +17,7 @@ import { UpdateConnectionRecordingPreferencesCommandInput, UpdateConnectionRecordingPreferencesCommandOutput, } from "./commands/UpdateConnectionRecordingPreferencesCommand"; -import { SSMGuiConnectClient, SSMGuiConnectClientConfig } from "./SSMGuiConnectClient"; +import { SSMGuiConnectClient } from "./SSMGuiConnectClient"; const commands = { DeleteConnectionRecordingPreferencesCommand, diff --git a/clients/client-ssm-guiconnect/src/SSMGuiConnectClient.ts b/clients/client-ssm-guiconnect/src/SSMGuiConnectClient.ts index 1e638afa26238..a977b48602f3f 100644 --- a/clients/client-ssm-guiconnect/src/SSMGuiConnectClient.ts +++ b/clients/client-ssm-guiconnect/src/SSMGuiConnectClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSSMGuiConnectHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -76,7 +85,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ssm-guiconnect/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ssm-guiconnect/src/auth/httpAuthExtensionConfiguration.ts index 2e7c7ab38a08f..50462e5c5742b 100644 --- a/clients/client-ssm-guiconnect/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ssm-guiconnect/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SSMGuiConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SSMGuiConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ssm-guiconnect/src/auth/httpAuthSchemeProvider.ts b/clients/client-ssm-guiconnect/src/auth/httpAuthSchemeProvider.ts index 6159119f1797e..ed1da9dd7d738 100644 --- a/clients/client-ssm-guiconnect/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ssm-guiconnect/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SSMGuiConnectClientConfig, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient"; +import { type SSMGuiConnectClientResolvedConfig, SSMGuiConnectClientConfig } from "../SSMGuiConnectClient"; /** * @internal diff --git a/clients/client-ssm-guiconnect/src/commands/DeleteConnectionRecordingPreferencesCommand.ts b/clients/client-ssm-guiconnect/src/commands/DeleteConnectionRecordingPreferencesCommand.ts index a21bf34ef1918..7f0189a7edf07 100644 --- a/clients/client-ssm-guiconnect/src/commands/DeleteConnectionRecordingPreferencesCommand.ts +++ b/clients/client-ssm-guiconnect/src/commands/DeleteConnectionRecordingPreferencesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteConnectionRecordingPreferencesRequest, DeleteConnectionRecordingPreferencesResponse, } from "../models/models_0"; import { DeleteConnectionRecordingPreferences } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient"; /** * @public diff --git a/clients/client-ssm-guiconnect/src/commands/GetConnectionRecordingPreferencesCommand.ts b/clients/client-ssm-guiconnect/src/commands/GetConnectionRecordingPreferencesCommand.ts index 314e63e82c3f4..010a70a70855e 100644 --- a/clients/client-ssm-guiconnect/src/commands/GetConnectionRecordingPreferencesCommand.ts +++ b/clients/client-ssm-guiconnect/src/commands/GetConnectionRecordingPreferencesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionRecordingPreferencesResponse } from "../models/models_0"; +import type { GetConnectionRecordingPreferencesResponse } from "../models/models_0"; import { GetConnectionRecordingPreferences } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient"; /** * @public diff --git a/clients/client-ssm-guiconnect/src/commands/UpdateConnectionRecordingPreferencesCommand.ts b/clients/client-ssm-guiconnect/src/commands/UpdateConnectionRecordingPreferencesCommand.ts index a60e3be822cb3..61ad2958a69cb 100644 --- a/clients/client-ssm-guiconnect/src/commands/UpdateConnectionRecordingPreferencesCommand.ts +++ b/clients/client-ssm-guiconnect/src/commands/UpdateConnectionRecordingPreferencesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateConnectionRecordingPreferencesRequest, UpdateConnectionRecordingPreferencesResponse, } from "../models/models_0"; import { UpdateConnectionRecordingPreferences } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMGuiConnectClientResolvedConfig } from "../SSMGuiConnectClient"; /** * @public diff --git a/clients/client-ssm-guiconnect/src/endpoint/EndpointParameters.ts b/clients/client-ssm-guiconnect/src/endpoint/EndpointParameters.ts index b28eae6392d7a..1de6a7bc07dd7 100644 --- a/clients/client-ssm-guiconnect/src/endpoint/EndpointParameters.ts +++ b/clients/client-ssm-guiconnect/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ssm-guiconnect/src/endpoint/endpointResolver.ts b/clients/client-ssm-guiconnect/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ssm-guiconnect/src/endpoint/endpointResolver.ts +++ b/clients/client-ssm-guiconnect/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ssm-guiconnect/src/extensionConfiguration.ts b/clients/client-ssm-guiconnect/src/extensionConfiguration.ts index a65d94c988926..4e28283d133ef 100644 --- a/clients/client-ssm-guiconnect/src/extensionConfiguration.ts +++ b/clients/client-ssm-guiconnect/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ssm-guiconnect/src/models/SSMGuiConnectServiceException.ts b/clients/client-ssm-guiconnect/src/models/SSMGuiConnectServiceException.ts index 010884eb7053a..0803ec1f8425c 100644 --- a/clients/client-ssm-guiconnect/src/models/SSMGuiConnectServiceException.ts +++ b/clients/client-ssm-guiconnect/src/models/SSMGuiConnectServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ssm-guiconnect/src/models/errors.ts b/clients/client-ssm-guiconnect/src/models/errors.ts index 4374d33da6079..61e3c2095e73e 100644 --- a/clients/client-ssm-guiconnect/src/models/errors.ts +++ b/clients/client-ssm-guiconnect/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SSMGuiConnectServiceException as __BaseException } from "./SSMGuiConnectServiceException"; diff --git a/clients/client-ssm-guiconnect/src/runtimeConfig.browser.ts b/clients/client-ssm-guiconnect/src/runtimeConfig.browser.ts index 9a4e5938863b7..8b958460a16f6 100644 --- a/clients/client-ssm-guiconnect/src/runtimeConfig.browser.ts +++ b/clients/client-ssm-guiconnect/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient"; /** * @internal diff --git a/clients/client-ssm-guiconnect/src/runtimeConfig.native.ts b/clients/client-ssm-guiconnect/src/runtimeConfig.native.ts index 3dde11b932dea..a712a75c3186e 100644 --- a/clients/client-ssm-guiconnect/src/runtimeConfig.native.ts +++ b/clients/client-ssm-guiconnect/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient"; +import type { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient"; /** * @internal diff --git a/clients/client-ssm-guiconnect/src/runtimeConfig.shared.ts b/clients/client-ssm-guiconnect/src/runtimeConfig.shared.ts index e5786c251a6da..eff6a25392af0 100644 --- a/clients/client-ssm-guiconnect/src/runtimeConfig.shared.ts +++ b/clients/client-ssm-guiconnect/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSSMGuiConnectHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient"; +import type { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient"; /** * @internal diff --git a/clients/client-ssm-guiconnect/src/runtimeConfig.ts b/clients/client-ssm-guiconnect/src/runtimeConfig.ts index dd006e34c61cf..fc81564e48a39 100644 --- a/clients/client-ssm-guiconnect/src/runtimeConfig.ts +++ b/clients/client-ssm-guiconnect/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SSMGuiConnectClientConfig } from "./SSMGuiConnectClient"; /** * @internal diff --git a/clients/client-ssm-guiconnect/src/runtimeExtensions.ts b/clients/client-ssm-guiconnect/src/runtimeExtensions.ts index a8cf8c9b7df5f..731faf5d04cbf 100644 --- a/clients/client-ssm-guiconnect/src/runtimeExtensions.ts +++ b/clients/client-ssm-guiconnect/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SSMGuiConnectExtensionConfiguration } from "./extensionConfiguration"; +import type { SSMGuiConnectExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ssm-guiconnect/src/schemas/schemas_0.ts b/clients/client-ssm-guiconnect/src/schemas/schemas_0.ts index 3174d3b5d156c..72df7966a9dca 100644 --- a/clients/client-ssm-guiconnect/src/schemas/schemas_0.ts +++ b/clients/client-ssm-guiconnect/src/schemas/schemas_0.ts @@ -32,7 +32,7 @@ const n0 = "com.amazonaws.ssmguiconnect"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-ssm-incidents/package.json b/clients/client-ssm-incidents/package.json index 2bc46ce8eed5f..5432336771664 100644 --- a/clients/client-ssm-incidents/package.json +++ b/clients/client-ssm-incidents/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ssm-incidents/src/SSMIncidents.ts b/clients/client-ssm-incidents/src/SSMIncidents.ts index 5b072df44b381..69542996d7e57 100644 --- a/clients/client-ssm-incidents/src/SSMIncidents.ts +++ b/clients/client-ssm-incidents/src/SSMIncidents.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetIncidentFindingsCommand, @@ -153,7 +153,7 @@ import { UpdateTimelineEventCommandInput, UpdateTimelineEventCommandOutput, } from "./commands/UpdateTimelineEventCommand"; -import { SSMIncidentsClient, SSMIncidentsClientConfig } from "./SSMIncidentsClient"; +import { SSMIncidentsClient } from "./SSMIncidentsClient"; const commands = { BatchGetIncidentFindingsCommand, diff --git a/clients/client-ssm-incidents/src/SSMIncidentsClient.ts b/clients/client-ssm-incidents/src/SSMIncidentsClient.ts index 7d62a867cd277..839520ee5d8c2 100644 --- a/clients/client-ssm-incidents/src/SSMIncidentsClient.ts +++ b/clients/client-ssm-incidents/src/SSMIncidentsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSSMIncidentsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -143,7 +152,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ssm-incidents/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ssm-incidents/src/auth/httpAuthExtensionConfiguration.ts index 164faad9cc652..2c9e2a818268c 100644 --- a/clients/client-ssm-incidents/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ssm-incidents/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SSMIncidentsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SSMIncidentsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ssm-incidents/src/auth/httpAuthSchemeProvider.ts b/clients/client-ssm-incidents/src/auth/httpAuthSchemeProvider.ts index acd3e550404b4..16830ee73250f 100644 --- a/clients/client-ssm-incidents/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ssm-incidents/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SSMIncidentsClientConfig, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import { type SSMIncidentsClientResolvedConfig, SSMIncidentsClientConfig } from "../SSMIncidentsClient"; /** * @internal diff --git a/clients/client-ssm-incidents/src/commands/BatchGetIncidentFindingsCommand.ts b/clients/client-ssm-incidents/src/commands/BatchGetIncidentFindingsCommand.ts index e2956e81c0618..11621fe11849a 100644 --- a/clients/client-ssm-incidents/src/commands/BatchGetIncidentFindingsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/BatchGetIncidentFindingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetIncidentFindingsInput, BatchGetIncidentFindingsOutput } from "../models/models_0"; +import type { BatchGetIncidentFindingsInput, BatchGetIncidentFindingsOutput } from "../models/models_0"; import { BatchGetIncidentFindings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/CreateReplicationSetCommand.ts b/clients/client-ssm-incidents/src/commands/CreateReplicationSetCommand.ts index 6fa46cd1467f3..1d974f7ae4ff9 100644 --- a/clients/client-ssm-incidents/src/commands/CreateReplicationSetCommand.ts +++ b/clients/client-ssm-incidents/src/commands/CreateReplicationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReplicationSetInput, CreateReplicationSetOutput } from "../models/models_0"; +import type { CreateReplicationSetInput, CreateReplicationSetOutput } from "../models/models_0"; import { CreateReplicationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/CreateResponsePlanCommand.ts b/clients/client-ssm-incidents/src/commands/CreateResponsePlanCommand.ts index 7d0286ccc28c4..e2f81eaecba97 100644 --- a/clients/client-ssm-incidents/src/commands/CreateResponsePlanCommand.ts +++ b/clients/client-ssm-incidents/src/commands/CreateResponsePlanCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResponsePlanInput, CreateResponsePlanOutput } from "../models/models_0"; +import type { CreateResponsePlanInput, CreateResponsePlanOutput } from "../models/models_0"; import { CreateResponsePlan } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/CreateTimelineEventCommand.ts b/clients/client-ssm-incidents/src/commands/CreateTimelineEventCommand.ts index 69070313532f3..ae286bfc0591c 100644 --- a/clients/client-ssm-incidents/src/commands/CreateTimelineEventCommand.ts +++ b/clients/client-ssm-incidents/src/commands/CreateTimelineEventCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTimelineEventInput, CreateTimelineEventOutput } from "../models/models_0"; +import type { CreateTimelineEventInput, CreateTimelineEventOutput } from "../models/models_0"; import { CreateTimelineEvent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/DeleteIncidentRecordCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteIncidentRecordCommand.ts index 7d8ade6d638ae..f10003360ad13 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteIncidentRecordCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteIncidentRecordCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIncidentRecordInput, DeleteIncidentRecordOutput } from "../models/models_0"; +import type { DeleteIncidentRecordInput, DeleteIncidentRecordOutput } from "../models/models_0"; import { DeleteIncidentRecord } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/DeleteReplicationSetCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteReplicationSetCommand.ts index 09e5c6c32d542..d2f78328bef17 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteReplicationSetCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteReplicationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReplicationSetInput, DeleteReplicationSetOutput } from "../models/models_0"; +import type { DeleteReplicationSetInput, DeleteReplicationSetOutput } from "../models/models_0"; import { DeleteReplicationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteResourcePolicyCommand.ts index f10f2769f9215..2b9b9b7d06f97 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyInput, DeleteResourcePolicyOutput } from "../models/models_0"; +import type { DeleteResourcePolicyInput, DeleteResourcePolicyOutput } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/DeleteResponsePlanCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteResponsePlanCommand.ts index 9fb4afbe56421..e87e312e44761 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteResponsePlanCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteResponsePlanCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResponsePlanInput, DeleteResponsePlanOutput } from "../models/models_0"; +import type { DeleteResponsePlanInput, DeleteResponsePlanOutput } from "../models/models_0"; import { DeleteResponsePlan } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/DeleteTimelineEventCommand.ts b/clients/client-ssm-incidents/src/commands/DeleteTimelineEventCommand.ts index a5a26fbe830fc..f80f0907341c1 100644 --- a/clients/client-ssm-incidents/src/commands/DeleteTimelineEventCommand.ts +++ b/clients/client-ssm-incidents/src/commands/DeleteTimelineEventCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTimelineEventInput, DeleteTimelineEventOutput } from "../models/models_0"; +import type { DeleteTimelineEventInput, DeleteTimelineEventOutput } from "../models/models_0"; import { DeleteTimelineEvent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/GetIncidentRecordCommand.ts b/clients/client-ssm-incidents/src/commands/GetIncidentRecordCommand.ts index a78782c7f3d32..20ea8bcd9b6db 100644 --- a/clients/client-ssm-incidents/src/commands/GetIncidentRecordCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetIncidentRecordCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIncidentRecordInput, GetIncidentRecordOutput } from "../models/models_0"; +import type { GetIncidentRecordInput, GetIncidentRecordOutput } from "../models/models_0"; import { GetIncidentRecord } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/GetReplicationSetCommand.ts b/clients/client-ssm-incidents/src/commands/GetReplicationSetCommand.ts index 8aac12e796edc..2a7c975ed12fa 100644 --- a/clients/client-ssm-incidents/src/commands/GetReplicationSetCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetReplicationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReplicationSetInput, GetReplicationSetOutput } from "../models/models_0"; +import type { GetReplicationSetInput, GetReplicationSetOutput } from "../models/models_0"; import { GetReplicationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/GetResourcePoliciesCommand.ts b/clients/client-ssm-incidents/src/commands/GetResourcePoliciesCommand.ts index c57e294dc3df4..e2f15e4289b23 100644 --- a/clients/client-ssm-incidents/src/commands/GetResourcePoliciesCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetResourcePoliciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePoliciesInput, GetResourcePoliciesOutput } from "../models/models_0"; +import type { GetResourcePoliciesInput, GetResourcePoliciesOutput } from "../models/models_0"; import { GetResourcePolicies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/GetResponsePlanCommand.ts b/clients/client-ssm-incidents/src/commands/GetResponsePlanCommand.ts index bd550ffbe499a..708ed95cd402d 100644 --- a/clients/client-ssm-incidents/src/commands/GetResponsePlanCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetResponsePlanCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResponsePlanInput, GetResponsePlanOutput } from "../models/models_0"; +import type { GetResponsePlanInput, GetResponsePlanOutput } from "../models/models_0"; import { GetResponsePlan } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/GetTimelineEventCommand.ts b/clients/client-ssm-incidents/src/commands/GetTimelineEventCommand.ts index 643b2eae336f0..17c8423fafa38 100644 --- a/clients/client-ssm-incidents/src/commands/GetTimelineEventCommand.ts +++ b/clients/client-ssm-incidents/src/commands/GetTimelineEventCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTimelineEventInput, GetTimelineEventOutput } from "../models/models_0"; +import type { GetTimelineEventInput, GetTimelineEventOutput } from "../models/models_0"; import { GetTimelineEvent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/ListIncidentFindingsCommand.ts b/clients/client-ssm-incidents/src/commands/ListIncidentFindingsCommand.ts index 2e4dbf118804e..511fc5401db4f 100644 --- a/clients/client-ssm-incidents/src/commands/ListIncidentFindingsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListIncidentFindingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIncidentFindingsInput, ListIncidentFindingsOutput } from "../models/models_0"; +import type { ListIncidentFindingsInput, ListIncidentFindingsOutput } from "../models/models_0"; import { ListIncidentFindings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/ListIncidentRecordsCommand.ts b/clients/client-ssm-incidents/src/commands/ListIncidentRecordsCommand.ts index f9d643b275efb..9523bc03d7834 100644 --- a/clients/client-ssm-incidents/src/commands/ListIncidentRecordsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListIncidentRecordsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIncidentRecordsInput, ListIncidentRecordsOutput } from "../models/models_0"; +import type { ListIncidentRecordsInput, ListIncidentRecordsOutput } from "../models/models_0"; import { ListIncidentRecords } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/ListRelatedItemsCommand.ts b/clients/client-ssm-incidents/src/commands/ListRelatedItemsCommand.ts index 73c3ba0a53985..e18f0d84f3d6f 100644 --- a/clients/client-ssm-incidents/src/commands/ListRelatedItemsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListRelatedItemsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRelatedItemsInput, ListRelatedItemsOutput } from "../models/models_0"; +import type { ListRelatedItemsInput, ListRelatedItemsOutput } from "../models/models_0"; import { ListRelatedItems } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/ListReplicationSetsCommand.ts b/clients/client-ssm-incidents/src/commands/ListReplicationSetsCommand.ts index 202b994beda74..1352b2172e7f4 100644 --- a/clients/client-ssm-incidents/src/commands/ListReplicationSetsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListReplicationSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReplicationSetsInput, ListReplicationSetsOutput } from "../models/models_0"; +import type { ListReplicationSetsInput, ListReplicationSetsOutput } from "../models/models_0"; import { ListReplicationSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/ListResponsePlansCommand.ts b/clients/client-ssm-incidents/src/commands/ListResponsePlansCommand.ts index 6953fe9899e23..6254cc5113850 100644 --- a/clients/client-ssm-incidents/src/commands/ListResponsePlansCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListResponsePlansCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResponsePlansInput, ListResponsePlansOutput } from "../models/models_0"; +import type { ListResponsePlansInput, ListResponsePlansOutput } from "../models/models_0"; import { ListResponsePlans } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm-incidents/src/commands/ListTagsForResourceCommand.ts index 530dbce1ac092..c30d83043389c 100644 --- a/clients/client-ssm-incidents/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/ListTimelineEventsCommand.ts b/clients/client-ssm-incidents/src/commands/ListTimelineEventsCommand.ts index a68ce7fa91be7..29a533fe82060 100644 --- a/clients/client-ssm-incidents/src/commands/ListTimelineEventsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/ListTimelineEventsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTimelineEventsInput, ListTimelineEventsOutput } from "../models/models_0"; +import type { ListTimelineEventsInput, ListTimelineEventsOutput } from "../models/models_0"; import { ListTimelineEvents } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/PutResourcePolicyCommand.ts b/clients/client-ssm-incidents/src/commands/PutResourcePolicyCommand.ts index 67062e3ee0b0f..6a8a5195db5bd 100644 --- a/clients/client-ssm-incidents/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-ssm-incidents/src/commands/PutResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0"; +import type { PutResourcePolicyInput, PutResourcePolicyOutput } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/StartIncidentCommand.ts b/clients/client-ssm-incidents/src/commands/StartIncidentCommand.ts index 9e52dc505407b..851061267ea77 100644 --- a/clients/client-ssm-incidents/src/commands/StartIncidentCommand.ts +++ b/clients/client-ssm-incidents/src/commands/StartIncidentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartIncidentInput, StartIncidentOutput } from "../models/models_0"; +import type { StartIncidentInput, StartIncidentOutput } from "../models/models_0"; import { StartIncident } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/TagResourceCommand.ts b/clients/client-ssm-incidents/src/commands/TagResourceCommand.ts index b090e22bca26d..309eee58411f6 100644 --- a/clients/client-ssm-incidents/src/commands/TagResourceCommand.ts +++ b/clients/client-ssm-incidents/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/UntagResourceCommand.ts b/clients/client-ssm-incidents/src/commands/UntagResourceCommand.ts index 77f842c220ae3..04cf545413523 100644 --- a/clients/client-ssm-incidents/src/commands/UntagResourceCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/UpdateDeletionProtectionCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateDeletionProtectionCommand.ts index 4f3d903a1414d..a2c241566ecbb 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateDeletionProtectionCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateDeletionProtectionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeletionProtectionInput, UpdateDeletionProtectionOutput } from "../models/models_0"; +import type { UpdateDeletionProtectionInput, UpdateDeletionProtectionOutput } from "../models/models_0"; import { UpdateDeletionProtection } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/UpdateIncidentRecordCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateIncidentRecordCommand.ts index 9da04670ad06c..61820d344c107 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateIncidentRecordCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateIncidentRecordCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIncidentRecordInput, UpdateIncidentRecordOutput } from "../models/models_0"; +import type { UpdateIncidentRecordInput, UpdateIncidentRecordOutput } from "../models/models_0"; import { UpdateIncidentRecord } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/UpdateRelatedItemsCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateRelatedItemsCommand.ts index ed3a844d5f6bb..cf732e00606c3 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateRelatedItemsCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateRelatedItemsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRelatedItemsInput, UpdateRelatedItemsOutput } from "../models/models_0"; +import type { UpdateRelatedItemsInput, UpdateRelatedItemsOutput } from "../models/models_0"; import { UpdateRelatedItems } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/UpdateReplicationSetCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateReplicationSetCommand.ts index 2afb5856563ab..62c5fd22021f2 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateReplicationSetCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateReplicationSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReplicationSetInput, UpdateReplicationSetOutput } from "../models/models_0"; +import type { UpdateReplicationSetInput, UpdateReplicationSetOutput } from "../models/models_0"; import { UpdateReplicationSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/UpdateResponsePlanCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateResponsePlanCommand.ts index 21b3ec7374576..505f087eba2ea 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateResponsePlanCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateResponsePlanCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResponsePlanInput, UpdateResponsePlanOutput } from "../models/models_0"; +import type { UpdateResponsePlanInput, UpdateResponsePlanOutput } from "../models/models_0"; import { UpdateResponsePlan } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/commands/UpdateTimelineEventCommand.ts b/clients/client-ssm-incidents/src/commands/UpdateTimelineEventCommand.ts index 4f28f8a0428b7..32c4b86fcf024 100644 --- a/clients/client-ssm-incidents/src/commands/UpdateTimelineEventCommand.ts +++ b/clients/client-ssm-incidents/src/commands/UpdateTimelineEventCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTimelineEventInput, UpdateTimelineEventOutput } from "../models/models_0"; +import type { UpdateTimelineEventInput, UpdateTimelineEventOutput } from "../models/models_0"; import { UpdateTimelineEvent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMIncidentsClientResolvedConfig } from "../SSMIncidentsClient"; /** * @public diff --git a/clients/client-ssm-incidents/src/endpoint/EndpointParameters.ts b/clients/client-ssm-incidents/src/endpoint/EndpointParameters.ts index 8bd5568af018d..7aefc2b92e167 100644 --- a/clients/client-ssm-incidents/src/endpoint/EndpointParameters.ts +++ b/clients/client-ssm-incidents/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ssm-incidents/src/endpoint/endpointResolver.ts b/clients/client-ssm-incidents/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ssm-incidents/src/endpoint/endpointResolver.ts +++ b/clients/client-ssm-incidents/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ssm-incidents/src/extensionConfiguration.ts b/clients/client-ssm-incidents/src/extensionConfiguration.ts index b122c924c67ed..0b2ea01eadfdb 100644 --- a/clients/client-ssm-incidents/src/extensionConfiguration.ts +++ b/clients/client-ssm-incidents/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ssm-incidents/src/models/SSMIncidentsServiceException.ts b/clients/client-ssm-incidents/src/models/SSMIncidentsServiceException.ts index f1644513b7420..cc85c2fd98811 100644 --- a/clients/client-ssm-incidents/src/models/SSMIncidentsServiceException.ts +++ b/clients/client-ssm-incidents/src/models/SSMIncidentsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ssm-incidents/src/models/errors.ts b/clients/client-ssm-incidents/src/models/errors.ts index d9d8487230e1f..3e085897935b8 100644 --- a/clients/client-ssm-incidents/src/models/errors.ts +++ b/clients/client-ssm-incidents/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ResourceType, ServiceCode } from "./enums"; import { SSMIncidentsServiceException as __BaseException } from "./SSMIncidentsServiceException"; diff --git a/clients/client-ssm-incidents/src/pagination/GetResourcePoliciesPaginator.ts b/clients/client-ssm-incidents/src/pagination/GetResourcePoliciesPaginator.ts index 4690b6bc7161c..dd7c58a0c25b8 100644 --- a/clients/client-ssm-incidents/src/pagination/GetResourcePoliciesPaginator.ts +++ b/clients/client-ssm-incidents/src/pagination/GetResourcePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourcePoliciesCommand, diff --git a/clients/client-ssm-incidents/src/pagination/Interfaces.ts b/clients/client-ssm-incidents/src/pagination/Interfaces.ts index b6e257bdb59dd..b2ac832f10f5b 100644 --- a/clients/client-ssm-incidents/src/pagination/Interfaces.ts +++ b/clients/client-ssm-incidents/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SSMIncidentsClient } from "../SSMIncidentsClient"; diff --git a/clients/client-ssm-incidents/src/pagination/ListIncidentFindingsPaginator.ts b/clients/client-ssm-incidents/src/pagination/ListIncidentFindingsPaginator.ts index 16997489067d6..02b050c9e50e2 100644 --- a/clients/client-ssm-incidents/src/pagination/ListIncidentFindingsPaginator.ts +++ b/clients/client-ssm-incidents/src/pagination/ListIncidentFindingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIncidentFindingsCommand, diff --git a/clients/client-ssm-incidents/src/pagination/ListIncidentRecordsPaginator.ts b/clients/client-ssm-incidents/src/pagination/ListIncidentRecordsPaginator.ts index 3f5b593de4ebc..95ed3d75d2690 100644 --- a/clients/client-ssm-incidents/src/pagination/ListIncidentRecordsPaginator.ts +++ b/clients/client-ssm-incidents/src/pagination/ListIncidentRecordsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIncidentRecordsCommand, diff --git a/clients/client-ssm-incidents/src/pagination/ListRelatedItemsPaginator.ts b/clients/client-ssm-incidents/src/pagination/ListRelatedItemsPaginator.ts index 19bdf08185cbd..e95f536a8fed1 100644 --- a/clients/client-ssm-incidents/src/pagination/ListRelatedItemsPaginator.ts +++ b/clients/client-ssm-incidents/src/pagination/ListRelatedItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRelatedItemsCommand, diff --git a/clients/client-ssm-incidents/src/pagination/ListReplicationSetsPaginator.ts b/clients/client-ssm-incidents/src/pagination/ListReplicationSetsPaginator.ts index 5f14c9b0f5f89..f7560ef976ff9 100644 --- a/clients/client-ssm-incidents/src/pagination/ListReplicationSetsPaginator.ts +++ b/clients/client-ssm-incidents/src/pagination/ListReplicationSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReplicationSetsCommand, diff --git a/clients/client-ssm-incidents/src/pagination/ListResponsePlansPaginator.ts b/clients/client-ssm-incidents/src/pagination/ListResponsePlansPaginator.ts index cd2d73a4530d9..00bc36f081be0 100644 --- a/clients/client-ssm-incidents/src/pagination/ListResponsePlansPaginator.ts +++ b/clients/client-ssm-incidents/src/pagination/ListResponsePlansPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResponsePlansCommand, diff --git a/clients/client-ssm-incidents/src/pagination/ListTimelineEventsPaginator.ts b/clients/client-ssm-incidents/src/pagination/ListTimelineEventsPaginator.ts index 1db0c3d802cea..178be0e02b697 100644 --- a/clients/client-ssm-incidents/src/pagination/ListTimelineEventsPaginator.ts +++ b/clients/client-ssm-incidents/src/pagination/ListTimelineEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTimelineEventsCommand, diff --git a/clients/client-ssm-incidents/src/runtimeConfig.browser.ts b/clients/client-ssm-incidents/src/runtimeConfig.browser.ts index d83c946482134..af95c8dbf670e 100644 --- a/clients/client-ssm-incidents/src/runtimeConfig.browser.ts +++ b/clients/client-ssm-incidents/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMIncidentsClientConfig } from "./SSMIncidentsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SSMIncidentsClientConfig } from "./SSMIncidentsClient"; /** * @internal diff --git a/clients/client-ssm-incidents/src/runtimeConfig.native.ts b/clients/client-ssm-incidents/src/runtimeConfig.native.ts index e635fd597ebe0..39d47cb9438ee 100644 --- a/clients/client-ssm-incidents/src/runtimeConfig.native.ts +++ b/clients/client-ssm-incidents/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SSMIncidentsClientConfig } from "./SSMIncidentsClient"; +import type { SSMIncidentsClientConfig } from "./SSMIncidentsClient"; /** * @internal diff --git a/clients/client-ssm-incidents/src/runtimeConfig.shared.ts b/clients/client-ssm-incidents/src/runtimeConfig.shared.ts index d9f0889787f2b..25605fce6fc0d 100644 --- a/clients/client-ssm-incidents/src/runtimeConfig.shared.ts +++ b/clients/client-ssm-incidents/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSSMIncidentsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SSMIncidentsClientConfig } from "./SSMIncidentsClient"; +import type { SSMIncidentsClientConfig } from "./SSMIncidentsClient"; /** * @internal diff --git a/clients/client-ssm-incidents/src/runtimeConfig.ts b/clients/client-ssm-incidents/src/runtimeConfig.ts index c392140b21528..a423dc5c71aae 100644 --- a/clients/client-ssm-incidents/src/runtimeConfig.ts +++ b/clients/client-ssm-incidents/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMIncidentsClientConfig } from "./SSMIncidentsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SSMIncidentsClientConfig } from "./SSMIncidentsClient"; /** * @internal diff --git a/clients/client-ssm-incidents/src/runtimeExtensions.ts b/clients/client-ssm-incidents/src/runtimeExtensions.ts index 834f152ddfbc9..0a982286a4ad6 100644 --- a/clients/client-ssm-incidents/src/runtimeExtensions.ts +++ b/clients/client-ssm-incidents/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SSMIncidentsExtensionConfiguration } from "./extensionConfiguration"; +import type { SSMIncidentsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ssm-incidents/src/schemas/schemas_0.ts b/clients/client-ssm-incidents/src/schemas/schemas_0.ts index cc77d29c75680..3db75848aaf40 100644 --- a/clients/client-ssm-incidents/src/schemas/schemas_0.ts +++ b/clients/client-ssm-incidents/src/schemas/schemas_0.ts @@ -298,7 +298,7 @@ const n0 = "com.amazonaws.ssmincidents"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ssm-quicksetup/package.json b/clients/client-ssm-quicksetup/package.json index 14e133bad20f4..80d3ef67c0935 100644 --- a/clients/client-ssm-quicksetup/package.json +++ b/clients/client-ssm-quicksetup/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ssm-quicksetup/src/SSMQuickSetup.ts b/clients/client-ssm-quicksetup/src/SSMQuickSetup.ts index 8364893717721..1cefd4b770b56 100644 --- a/clients/client-ssm-quicksetup/src/SSMQuickSetup.ts +++ b/clients/client-ssm-quicksetup/src/SSMQuickSetup.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateConfigurationManagerCommand, @@ -68,7 +68,7 @@ import { UpdateServiceSettingsCommandInput, UpdateServiceSettingsCommandOutput, } from "./commands/UpdateServiceSettingsCommand"; -import { SSMQuickSetupClient, SSMQuickSetupClientConfig } from "./SSMQuickSetupClient"; +import { SSMQuickSetupClient } from "./SSMQuickSetupClient"; const commands = { CreateConfigurationManagerCommand, diff --git a/clients/client-ssm-quicksetup/src/SSMQuickSetupClient.ts b/clients/client-ssm-quicksetup/src/SSMQuickSetupClient.ts index 6c77a65b055d4..1ac58dbbfc0cf 100644 --- a/clients/client-ssm-quicksetup/src/SSMQuickSetupClient.ts +++ b/clients/client-ssm-quicksetup/src/SSMQuickSetupClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSSMQuickSetupHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -105,7 +114,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ssm-quicksetup/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ssm-quicksetup/src/auth/httpAuthExtensionConfiguration.ts index 6f9eeca0f06bc..a23382b7a6ea6 100644 --- a/clients/client-ssm-quicksetup/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ssm-quicksetup/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SSMQuickSetupHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SSMQuickSetupHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ssm-quicksetup/src/auth/httpAuthSchemeProvider.ts b/clients/client-ssm-quicksetup/src/auth/httpAuthSchemeProvider.ts index f74c887b4267a..334bfec2f276a 100644 --- a/clients/client-ssm-quicksetup/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ssm-quicksetup/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SSMQuickSetupClientConfig, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import { type SSMQuickSetupClientResolvedConfig, SSMQuickSetupClientConfig } from "../SSMQuickSetupClient"; /** * @internal diff --git a/clients/client-ssm-quicksetup/src/commands/CreateConfigurationManagerCommand.ts b/clients/client-ssm-quicksetup/src/commands/CreateConfigurationManagerCommand.ts index 98a963eed679a..56710a5dce4f3 100644 --- a/clients/client-ssm-quicksetup/src/commands/CreateConfigurationManagerCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/CreateConfigurationManagerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConfigurationManagerInput, CreateConfigurationManagerOutput } from "../models/models_0"; +import type { CreateConfigurationManagerInput, CreateConfigurationManagerOutput } from "../models/models_0"; import { CreateConfigurationManager } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/DeleteConfigurationManagerCommand.ts b/clients/client-ssm-quicksetup/src/commands/DeleteConfigurationManagerCommand.ts index 2526e039efc48..bd756879ec874 100644 --- a/clients/client-ssm-quicksetup/src/commands/DeleteConfigurationManagerCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/DeleteConfigurationManagerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConfigurationManagerInput } from "../models/models_0"; +import type { DeleteConfigurationManagerInput } from "../models/models_0"; import { DeleteConfigurationManager } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/GetConfigurationCommand.ts b/clients/client-ssm-quicksetup/src/commands/GetConfigurationCommand.ts index edf6732ff0cc9..e3b58bcc33496 100644 --- a/clients/client-ssm-quicksetup/src/commands/GetConfigurationCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/GetConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfigurationInput, GetConfigurationOutput } from "../models/models_0"; +import type { GetConfigurationInput, GetConfigurationOutput } from "../models/models_0"; import { GetConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/GetConfigurationManagerCommand.ts b/clients/client-ssm-quicksetup/src/commands/GetConfigurationManagerCommand.ts index e23cf8a6cfcbe..060d477e67da5 100644 --- a/clients/client-ssm-quicksetup/src/commands/GetConfigurationManagerCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/GetConfigurationManagerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfigurationManagerInput, GetConfigurationManagerOutput } from "../models/models_0"; +import type { GetConfigurationManagerInput, GetConfigurationManagerOutput } from "../models/models_0"; import { GetConfigurationManager } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/GetServiceSettingsCommand.ts b/clients/client-ssm-quicksetup/src/commands/GetServiceSettingsCommand.ts index 1b8e2678d37b9..ea7518fb426e0 100644 --- a/clients/client-ssm-quicksetup/src/commands/GetServiceSettingsCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/GetServiceSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceSettingsOutput } from "../models/models_0"; +import type { GetServiceSettingsOutput } from "../models/models_0"; import { GetServiceSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/ListConfigurationManagersCommand.ts b/clients/client-ssm-quicksetup/src/commands/ListConfigurationManagersCommand.ts index b2b5171d2f585..fc37d95a90059 100644 --- a/clients/client-ssm-quicksetup/src/commands/ListConfigurationManagersCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/ListConfigurationManagersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationManagersInput, ListConfigurationManagersOutput } from "../models/models_0"; +import type { ListConfigurationManagersInput, ListConfigurationManagersOutput } from "../models/models_0"; import { ListConfigurationManagers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/ListConfigurationsCommand.ts b/clients/client-ssm-quicksetup/src/commands/ListConfigurationsCommand.ts index 914a5df848ca6..57526547fbff7 100644 --- a/clients/client-ssm-quicksetup/src/commands/ListConfigurationsCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/ListConfigurationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationsInput, ListConfigurationsOutput } from "../models/models_0"; +import type { ListConfigurationsInput, ListConfigurationsOutput } from "../models/models_0"; import { ListConfigurations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/ListQuickSetupTypesCommand.ts b/clients/client-ssm-quicksetup/src/commands/ListQuickSetupTypesCommand.ts index 6da16de15f279..6532de09d794c 100644 --- a/clients/client-ssm-quicksetup/src/commands/ListQuickSetupTypesCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/ListQuickSetupTypesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQuickSetupTypesOutput } from "../models/models_0"; +import type { ListQuickSetupTypesOutput } from "../models/models_0"; import { ListQuickSetupTypes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm-quicksetup/src/commands/ListTagsForResourceCommand.ts index 99cc65bdb55da..ee9bea06bd204 100644 --- a/clients/client-ssm-quicksetup/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/TagResourceCommand.ts b/clients/client-ssm-quicksetup/src/commands/TagResourceCommand.ts index 0f59747362960..3afae557c58bb 100644 --- a/clients/client-ssm-quicksetup/src/commands/TagResourceCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput } from "../models/models_0"; +import type { TagResourceInput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/UntagResourceCommand.ts b/clients/client-ssm-quicksetup/src/commands/UntagResourceCommand.ts index 22f8e0731d32e..a49447322160b 100644 --- a/clients/client-ssm-quicksetup/src/commands/UntagResourceCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput } from "../models/models_0"; +import type { UntagResourceInput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationDefinitionCommand.ts b/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationDefinitionCommand.ts index 9904b4a2e2290..7566576926820 100644 --- a/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationDefinitionCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationDefinitionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfigurationDefinitionInput } from "../models/models_0"; +import type { UpdateConfigurationDefinitionInput } from "../models/models_0"; import { UpdateConfigurationDefinition } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationManagerCommand.ts b/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationManagerCommand.ts index 36a7c2f5eb528..072a884737549 100644 --- a/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationManagerCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/UpdateConfigurationManagerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConfigurationManagerInput } from "../models/models_0"; +import type { UpdateConfigurationManagerInput } from "../models/models_0"; import { UpdateConfigurationManager } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/commands/UpdateServiceSettingsCommand.ts b/clients/client-ssm-quicksetup/src/commands/UpdateServiceSettingsCommand.ts index 28cd40a5875dd..6d4e73074a03d 100644 --- a/clients/client-ssm-quicksetup/src/commands/UpdateServiceSettingsCommand.ts +++ b/clients/client-ssm-quicksetup/src/commands/UpdateServiceSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceSettingsInput } from "../models/models_0"; +import type { UpdateServiceSettingsInput } from "../models/models_0"; import { UpdateServiceSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/endpoint/EndpointParameters.ts b/clients/client-ssm-quicksetup/src/endpoint/EndpointParameters.ts index 3bca2f0e4ac10..cd54c1f5da6f1 100644 --- a/clients/client-ssm-quicksetup/src/endpoint/EndpointParameters.ts +++ b/clients/client-ssm-quicksetup/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/endpoint/endpointResolver.ts b/clients/client-ssm-quicksetup/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ssm-quicksetup/src/endpoint/endpointResolver.ts +++ b/clients/client-ssm-quicksetup/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ssm-quicksetup/src/extensionConfiguration.ts b/clients/client-ssm-quicksetup/src/extensionConfiguration.ts index a2868bb0b4471..930b82e3008a7 100644 --- a/clients/client-ssm-quicksetup/src/extensionConfiguration.ts +++ b/clients/client-ssm-quicksetup/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ssm-quicksetup/src/models/SSMQuickSetupServiceException.ts b/clients/client-ssm-quicksetup/src/models/SSMQuickSetupServiceException.ts index 5fdf5fb292047..bff0526e4a023 100644 --- a/clients/client-ssm-quicksetup/src/models/SSMQuickSetupServiceException.ts +++ b/clients/client-ssm-quicksetup/src/models/SSMQuickSetupServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ssm-quicksetup/src/models/errors.ts b/clients/client-ssm-quicksetup/src/models/errors.ts index d3baf7fc74da5..431838bfa3a99 100644 --- a/clients/client-ssm-quicksetup/src/models/errors.ts +++ b/clients/client-ssm-quicksetup/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetupServiceException"; diff --git a/clients/client-ssm-quicksetup/src/pagination/Interfaces.ts b/clients/client-ssm-quicksetup/src/pagination/Interfaces.ts index a4e079a0f4127..53d0d06001da5 100644 --- a/clients/client-ssm-quicksetup/src/pagination/Interfaces.ts +++ b/clients/client-ssm-quicksetup/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SSMQuickSetupClient } from "../SSMQuickSetupClient"; diff --git a/clients/client-ssm-quicksetup/src/pagination/ListConfigurationManagersPaginator.ts b/clients/client-ssm-quicksetup/src/pagination/ListConfigurationManagersPaginator.ts index 2ddba87dc79f8..fbdbc9fa2c2dd 100644 --- a/clients/client-ssm-quicksetup/src/pagination/ListConfigurationManagersPaginator.ts +++ b/clients/client-ssm-quicksetup/src/pagination/ListConfigurationManagersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationManagersCommand, diff --git a/clients/client-ssm-quicksetup/src/pagination/ListConfigurationsPaginator.ts b/clients/client-ssm-quicksetup/src/pagination/ListConfigurationsPaginator.ts index 3a101fd4e4c1b..915ad630a385e 100644 --- a/clients/client-ssm-quicksetup/src/pagination/ListConfigurationsPaginator.ts +++ b/clients/client-ssm-quicksetup/src/pagination/ListConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationsCommand, diff --git a/clients/client-ssm-quicksetup/src/runtimeConfig.browser.ts b/clients/client-ssm-quicksetup/src/runtimeConfig.browser.ts index 115bd65c186b8..b636d0fddc3bb 100644 --- a/clients/client-ssm-quicksetup/src/runtimeConfig.browser.ts +++ b/clients/client-ssm-quicksetup/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient"; /** * @internal diff --git a/clients/client-ssm-quicksetup/src/runtimeConfig.native.ts b/clients/client-ssm-quicksetup/src/runtimeConfig.native.ts index 540f12cf37743..3d9b7fd4f456c 100644 --- a/clients/client-ssm-quicksetup/src/runtimeConfig.native.ts +++ b/clients/client-ssm-quicksetup/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient"; +import type { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient"; /** * @internal diff --git a/clients/client-ssm-quicksetup/src/runtimeConfig.shared.ts b/clients/client-ssm-quicksetup/src/runtimeConfig.shared.ts index 21f4cf2b65f40..19dbd9591845c 100644 --- a/clients/client-ssm-quicksetup/src/runtimeConfig.shared.ts +++ b/clients/client-ssm-quicksetup/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSSMQuickSetupHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient"; +import type { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient"; /** * @internal diff --git a/clients/client-ssm-quicksetup/src/runtimeConfig.ts b/clients/client-ssm-quicksetup/src/runtimeConfig.ts index a57304d39de06..976da066ca722 100644 --- a/clients/client-ssm-quicksetup/src/runtimeConfig.ts +++ b/clients/client-ssm-quicksetup/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SSMQuickSetupClientConfig } from "./SSMQuickSetupClient"; /** * @internal diff --git a/clients/client-ssm-quicksetup/src/runtimeExtensions.ts b/clients/client-ssm-quicksetup/src/runtimeExtensions.ts index 93d3188a401c7..68c442fcd483e 100644 --- a/clients/client-ssm-quicksetup/src/runtimeExtensions.ts +++ b/clients/client-ssm-quicksetup/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SSMQuickSetupExtensionConfiguration } from "./extensionConfiguration"; +import type { SSMQuickSetupExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ssm-quicksetup/src/schemas/schemas_0.ts b/clients/client-ssm-quicksetup/src/schemas/schemas_0.ts index eb81d4ab9908e..c4c3567d2f330 100644 --- a/clients/client-ssm-quicksetup/src/schemas/schemas_0.ts +++ b/clients/client-ssm-quicksetup/src/schemas/schemas_0.ts @@ -107,7 +107,7 @@ const n0 = "com.amazonaws.ssmquicksetup"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ssm-sap/package.json b/clients/client-ssm-sap/package.json index 5070fc4dbba3a..8e153909a3f01 100644 --- a/clients/client-ssm-sap/package.json +++ b/clients/client-ssm-sap/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ssm-sap/src/SsmSap.ts b/clients/client-ssm-sap/src/SsmSap.ts index af2993d0a8c26..c1986603179f4 100644 --- a/clients/client-ssm-sap/src/SsmSap.ts +++ b/clients/client-ssm-sap/src/SsmSap.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DeleteResourcePermissionCommand, @@ -129,7 +129,7 @@ import { UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput, } from "./commands/UpdateApplicationSettingsCommand"; -import { SsmSapClient, SsmSapClientConfig } from "./SsmSapClient"; +import { SsmSapClient } from "./SsmSapClient"; const commands = { DeleteResourcePermissionCommand, diff --git a/clients/client-ssm-sap/src/SsmSapClient.ts b/clients/client-ssm-sap/src/SsmSapClient.ts index be83913a7080a..5283bc4eb356a 100644 --- a/clients/client-ssm-sap/src/SsmSapClient.ts +++ b/clients/client-ssm-sap/src/SsmSapClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSsmSapHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -136,7 +145,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ssm-sap/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ssm-sap/src/auth/httpAuthExtensionConfiguration.ts index 9dc4b1b8a92e5..b14a94df53ca7 100644 --- a/clients/client-ssm-sap/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ssm-sap/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SsmSapHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SsmSapHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ssm-sap/src/auth/httpAuthSchemeProvider.ts b/clients/client-ssm-sap/src/auth/httpAuthSchemeProvider.ts index afc55c9f5c335..2a3cccfaaeecc 100644 --- a/clients/client-ssm-sap/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ssm-sap/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SsmSapClientConfig, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import { type SsmSapClientResolvedConfig, SsmSapClientConfig } from "../SsmSapClient"; /** * @internal diff --git a/clients/client-ssm-sap/src/commands/DeleteResourcePermissionCommand.ts b/clients/client-ssm-sap/src/commands/DeleteResourcePermissionCommand.ts index ce631f6fc9bdb..8298898a9050a 100644 --- a/clients/client-ssm-sap/src/commands/DeleteResourcePermissionCommand.ts +++ b/clients/client-ssm-sap/src/commands/DeleteResourcePermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePermissionInput, DeleteResourcePermissionOutput } from "../models/models_0"; +import type { DeleteResourcePermissionInput, DeleteResourcePermissionOutput } from "../models/models_0"; import { DeleteResourcePermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/DeregisterApplicationCommand.ts b/clients/client-ssm-sap/src/commands/DeregisterApplicationCommand.ts index f1a2491fa8ace..a4352c66a4199 100644 --- a/clients/client-ssm-sap/src/commands/DeregisterApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/DeregisterApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterApplicationInput, DeregisterApplicationOutput } from "../models/models_0"; +import type { DeregisterApplicationInput, DeregisterApplicationOutput } from "../models/models_0"; import { DeregisterApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/GetApplicationCommand.ts b/clients/client-ssm-sap/src/commands/GetApplicationCommand.ts index 7e52bea9a44d6..d878af44579a8 100644 --- a/clients/client-ssm-sap/src/commands/GetApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationInput, GetApplicationOutput } from "../models/models_0"; +import type { GetApplicationInput, GetApplicationOutput } from "../models/models_0"; import { GetApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/GetComponentCommand.ts b/clients/client-ssm-sap/src/commands/GetComponentCommand.ts index 7bec743d00bb2..0a72bb733e2e6 100644 --- a/clients/client-ssm-sap/src/commands/GetComponentCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetComponentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetComponentInput, GetComponentOutput } from "../models/models_0"; +import type { GetComponentInput, GetComponentOutput } from "../models/models_0"; import { GetComponent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/GetConfigurationCheckOperationCommand.ts b/clients/client-ssm-sap/src/commands/GetConfigurationCheckOperationCommand.ts index 26087f8efe992..f74257e848a92 100644 --- a/clients/client-ssm-sap/src/commands/GetConfigurationCheckOperationCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetConfigurationCheckOperationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConfigurationCheckOperationInput, GetConfigurationCheckOperationOutput } from "../models/models_0"; +import type { GetConfigurationCheckOperationInput, GetConfigurationCheckOperationOutput } from "../models/models_0"; import { GetConfigurationCheckOperation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/GetDatabaseCommand.ts b/clients/client-ssm-sap/src/commands/GetDatabaseCommand.ts index 49467ca0b5e5a..82865895e7087 100644 --- a/clients/client-ssm-sap/src/commands/GetDatabaseCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetDatabaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDatabaseInput, GetDatabaseOutput } from "../models/models_0"; +import type { GetDatabaseInput, GetDatabaseOutput } from "../models/models_0"; import { GetDatabase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/GetOperationCommand.ts b/clients/client-ssm-sap/src/commands/GetOperationCommand.ts index 1398b6898741b..b469259216cf8 100644 --- a/clients/client-ssm-sap/src/commands/GetOperationCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetOperationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOperationInput, GetOperationOutput } from "../models/models_0"; +import type { GetOperationInput, GetOperationOutput } from "../models/models_0"; import { GetOperation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/GetResourcePermissionCommand.ts b/clients/client-ssm-sap/src/commands/GetResourcePermissionCommand.ts index 21a3375b3e393..f46e099c61885 100644 --- a/clients/client-ssm-sap/src/commands/GetResourcePermissionCommand.ts +++ b/clients/client-ssm-sap/src/commands/GetResourcePermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePermissionInput, GetResourcePermissionOutput } from "../models/models_0"; +import type { GetResourcePermissionInput, GetResourcePermissionOutput } from "../models/models_0"; import { GetResourcePermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListApplicationsCommand.ts b/clients/client-ssm-sap/src/commands/ListApplicationsCommand.ts index 35baa7f9ba3bd..64e6d0abb583b 100644 --- a/clients/client-ssm-sap/src/commands/ListApplicationsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListApplicationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0"; +import type { ListApplicationsInput, ListApplicationsOutput } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListComponentsCommand.ts b/clients/client-ssm-sap/src/commands/ListComponentsCommand.ts index 56404c4073cc3..07f6ebe6bcdcd 100644 --- a/clients/client-ssm-sap/src/commands/ListComponentsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListComponentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComponentsInput, ListComponentsOutput } from "../models/models_0"; +import type { ListComponentsInput, ListComponentsOutput } from "../models/models_0"; import { ListComponents } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListConfigurationCheckDefinitionsCommand.ts b/clients/client-ssm-sap/src/commands/ListConfigurationCheckDefinitionsCommand.ts index 4e2eb159fd9bc..c8c716aac14d8 100644 --- a/clients/client-ssm-sap/src/commands/ListConfigurationCheckDefinitionsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListConfigurationCheckDefinitionsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationCheckDefinitionsInput, ListConfigurationCheckDefinitionsOutput } from "../models/models_0"; +import type { + ListConfigurationCheckDefinitionsInput, + ListConfigurationCheckDefinitionsOutput, +} from "../models/models_0"; import { ListConfigurationCheckDefinitions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListConfigurationCheckOperationsCommand.ts b/clients/client-ssm-sap/src/commands/ListConfigurationCheckOperationsCommand.ts index 306c5b591e151..c966554bf924a 100644 --- a/clients/client-ssm-sap/src/commands/ListConfigurationCheckOperationsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListConfigurationCheckOperationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConfigurationCheckOperationsInput, ListConfigurationCheckOperationsOutput } from "../models/models_0"; +import type { ListConfigurationCheckOperationsInput, ListConfigurationCheckOperationsOutput } from "../models/models_0"; import { ListConfigurationCheckOperations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListDatabasesCommand.ts b/clients/client-ssm-sap/src/commands/ListDatabasesCommand.ts index d29e166282dd5..55cbd1e066d51 100644 --- a/clients/client-ssm-sap/src/commands/ListDatabasesCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListDatabasesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0"; +import type { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0"; import { ListDatabases } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListOperationEventsCommand.ts b/clients/client-ssm-sap/src/commands/ListOperationEventsCommand.ts index ecb812a0fe1f3..3e2045a4743ce 100644 --- a/clients/client-ssm-sap/src/commands/ListOperationEventsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListOperationEventsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOperationEventsInput, ListOperationEventsOutput } from "../models/models_0"; +import type { ListOperationEventsInput, ListOperationEventsOutput } from "../models/models_0"; import { ListOperationEvents } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListOperationsCommand.ts b/clients/client-ssm-sap/src/commands/ListOperationsCommand.ts index 3ea0709d1a299..5f5f45c70c927 100644 --- a/clients/client-ssm-sap/src/commands/ListOperationsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListOperationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOperationsInput, ListOperationsOutput } from "../models/models_0"; +import type { ListOperationsInput, ListOperationsOutput } from "../models/models_0"; import { ListOperations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListSubCheckResultsCommand.ts b/clients/client-ssm-sap/src/commands/ListSubCheckResultsCommand.ts index 58201d95b60ca..62b29968ac1ee 100644 --- a/clients/client-ssm-sap/src/commands/ListSubCheckResultsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListSubCheckResultsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubCheckResultsInput, ListSubCheckResultsOutput } from "../models/models_0"; +import type { ListSubCheckResultsInput, ListSubCheckResultsOutput } from "../models/models_0"; import { ListSubCheckResults } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListSubCheckRuleResultsCommand.ts b/clients/client-ssm-sap/src/commands/ListSubCheckRuleResultsCommand.ts index c3b98270c585e..0f18d0527b920 100644 --- a/clients/client-ssm-sap/src/commands/ListSubCheckRuleResultsCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListSubCheckRuleResultsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubCheckRuleResultsInput, ListSubCheckRuleResultsOutput } from "../models/models_0"; +import type { ListSubCheckRuleResultsInput, ListSubCheckRuleResultsOutput } from "../models/models_0"; import { ListSubCheckRuleResults } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm-sap/src/commands/ListTagsForResourceCommand.ts index e61ee05a34592..5092d13ec6554 100644 --- a/clients/client-ssm-sap/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm-sap/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/PutResourcePermissionCommand.ts b/clients/client-ssm-sap/src/commands/PutResourcePermissionCommand.ts index 871a3c17f5c5e..89d1c6cadd0bf 100644 --- a/clients/client-ssm-sap/src/commands/PutResourcePermissionCommand.ts +++ b/clients/client-ssm-sap/src/commands/PutResourcePermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePermissionInput, PutResourcePermissionOutput } from "../models/models_0"; +import type { PutResourcePermissionInput, PutResourcePermissionOutput } from "../models/models_0"; import { PutResourcePermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/RegisterApplicationCommand.ts b/clients/client-ssm-sap/src/commands/RegisterApplicationCommand.ts index 579e1e77bc984..e5391708ae1ab 100644 --- a/clients/client-ssm-sap/src/commands/RegisterApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/RegisterApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterApplicationInput, RegisterApplicationOutput } from "../models/models_0"; +import type { RegisterApplicationInput, RegisterApplicationOutput } from "../models/models_0"; import { RegisterApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/StartApplicationCommand.ts b/clients/client-ssm-sap/src/commands/StartApplicationCommand.ts index a778d6970a387..ba6e12996a575 100644 --- a/clients/client-ssm-sap/src/commands/StartApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/StartApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartApplicationInput, StartApplicationOutput } from "../models/models_0"; +import type { StartApplicationInput, StartApplicationOutput } from "../models/models_0"; import { StartApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/StartApplicationRefreshCommand.ts b/clients/client-ssm-sap/src/commands/StartApplicationRefreshCommand.ts index 250f92673f976..7e94e3af39156 100644 --- a/clients/client-ssm-sap/src/commands/StartApplicationRefreshCommand.ts +++ b/clients/client-ssm-sap/src/commands/StartApplicationRefreshCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartApplicationRefreshInput, StartApplicationRefreshOutput } from "../models/models_0"; +import type { StartApplicationRefreshInput, StartApplicationRefreshOutput } from "../models/models_0"; import { StartApplicationRefresh } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/StartConfigurationChecksCommand.ts b/clients/client-ssm-sap/src/commands/StartConfigurationChecksCommand.ts index f0b7e2ca485c2..a0432c9c56972 100644 --- a/clients/client-ssm-sap/src/commands/StartConfigurationChecksCommand.ts +++ b/clients/client-ssm-sap/src/commands/StartConfigurationChecksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartConfigurationChecksInput, StartConfigurationChecksOutput } from "../models/models_0"; +import type { StartConfigurationChecksInput, StartConfigurationChecksOutput } from "../models/models_0"; import { StartConfigurationChecks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/StopApplicationCommand.ts b/clients/client-ssm-sap/src/commands/StopApplicationCommand.ts index b08f0e0dee1a2..c1e0e52e4cc4e 100644 --- a/clients/client-ssm-sap/src/commands/StopApplicationCommand.ts +++ b/clients/client-ssm-sap/src/commands/StopApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopApplicationInput, StopApplicationOutput } from "../models/models_0"; +import type { StopApplicationInput, StopApplicationOutput } from "../models/models_0"; import { StopApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/TagResourceCommand.ts b/clients/client-ssm-sap/src/commands/TagResourceCommand.ts index 32b979f5e873d..c30dff9e9443f 100644 --- a/clients/client-ssm-sap/src/commands/TagResourceCommand.ts +++ b/clients/client-ssm-sap/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/UntagResourceCommand.ts b/clients/client-ssm-sap/src/commands/UntagResourceCommand.ts index 96e75ab7cd6ee..cd68881b4883d 100644 --- a/clients/client-ssm-sap/src/commands/UntagResourceCommand.ts +++ b/clients/client-ssm-sap/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/commands/UpdateApplicationSettingsCommand.ts b/clients/client-ssm-sap/src/commands/UpdateApplicationSettingsCommand.ts index 52714d0aee7e5..d1970c6b57650 100644 --- a/clients/client-ssm-sap/src/commands/UpdateApplicationSettingsCommand.ts +++ b/clients/client-ssm-sap/src/commands/UpdateApplicationSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationSettingsInput, UpdateApplicationSettingsOutput } from "../models/models_0"; +import type { UpdateApplicationSettingsInput, UpdateApplicationSettingsOutput } from "../models/models_0"; import { UpdateApplicationSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient"; /** * @public diff --git a/clients/client-ssm-sap/src/endpoint/EndpointParameters.ts b/clients/client-ssm-sap/src/endpoint/EndpointParameters.ts index a1036b19aec4a..4cba85de35ddc 100644 --- a/clients/client-ssm-sap/src/endpoint/EndpointParameters.ts +++ b/clients/client-ssm-sap/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ssm-sap/src/endpoint/endpointResolver.ts b/clients/client-ssm-sap/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ssm-sap/src/endpoint/endpointResolver.ts +++ b/clients/client-ssm-sap/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ssm-sap/src/extensionConfiguration.ts b/clients/client-ssm-sap/src/extensionConfiguration.ts index 97d1c6a1b10ba..51cc3b187ffe1 100644 --- a/clients/client-ssm-sap/src/extensionConfiguration.ts +++ b/clients/client-ssm-sap/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ssm-sap/src/models/SsmSapServiceException.ts b/clients/client-ssm-sap/src/models/SsmSapServiceException.ts index 0565b858c7f86..992f68e60b37f 100644 --- a/clients/client-ssm-sap/src/models/SsmSapServiceException.ts +++ b/clients/client-ssm-sap/src/models/SsmSapServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ssm-sap/src/models/errors.ts b/clients/client-ssm-sap/src/models/errors.ts index c603b5e9ad691..962909bf0e954 100644 --- a/clients/client-ssm-sap/src/models/errors.ts +++ b/clients/client-ssm-sap/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SsmSapServiceException as __BaseException } from "./SsmSapServiceException"; diff --git a/clients/client-ssm-sap/src/pagination/Interfaces.ts b/clients/client-ssm-sap/src/pagination/Interfaces.ts index 9c9ec9b731c92..ef2053a3e3a02 100644 --- a/clients/client-ssm-sap/src/pagination/Interfaces.ts +++ b/clients/client-ssm-sap/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SsmSapClient } from "../SsmSapClient"; diff --git a/clients/client-ssm-sap/src/pagination/ListApplicationsPaginator.ts b/clients/client-ssm-sap/src/pagination/ListApplicationsPaginator.ts index b0c2666619b27..35b83ebc09ad0 100644 --- a/clients/client-ssm-sap/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-ssm-sap/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-ssm-sap/src/pagination/ListComponentsPaginator.ts b/clients/client-ssm-sap/src/pagination/ListComponentsPaginator.ts index 83df4d2987fbf..c0a8f9ce8148b 100644 --- a/clients/client-ssm-sap/src/pagination/ListComponentsPaginator.ts +++ b/clients/client-ssm-sap/src/pagination/ListComponentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComponentsCommand, diff --git a/clients/client-ssm-sap/src/pagination/ListConfigurationCheckDefinitionsPaginator.ts b/clients/client-ssm-sap/src/pagination/ListConfigurationCheckDefinitionsPaginator.ts index 995322dc00adb..fc98ffb0dd898 100644 --- a/clients/client-ssm-sap/src/pagination/ListConfigurationCheckDefinitionsPaginator.ts +++ b/clients/client-ssm-sap/src/pagination/ListConfigurationCheckDefinitionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationCheckDefinitionsCommand, diff --git a/clients/client-ssm-sap/src/pagination/ListConfigurationCheckOperationsPaginator.ts b/clients/client-ssm-sap/src/pagination/ListConfigurationCheckOperationsPaginator.ts index c8e28364f873e..ae5a7ea0ded00 100644 --- a/clients/client-ssm-sap/src/pagination/ListConfigurationCheckOperationsPaginator.ts +++ b/clients/client-ssm-sap/src/pagination/ListConfigurationCheckOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConfigurationCheckOperationsCommand, diff --git a/clients/client-ssm-sap/src/pagination/ListDatabasesPaginator.ts b/clients/client-ssm-sap/src/pagination/ListDatabasesPaginator.ts index 543d1a99b6b19..e2c77d8e09b8b 100644 --- a/clients/client-ssm-sap/src/pagination/ListDatabasesPaginator.ts +++ b/clients/client-ssm-sap/src/pagination/ListDatabasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatabasesCommand, diff --git a/clients/client-ssm-sap/src/pagination/ListOperationEventsPaginator.ts b/clients/client-ssm-sap/src/pagination/ListOperationEventsPaginator.ts index bd7b5a616fe49..3a34a58d038e9 100644 --- a/clients/client-ssm-sap/src/pagination/ListOperationEventsPaginator.ts +++ b/clients/client-ssm-sap/src/pagination/ListOperationEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOperationEventsCommand, diff --git a/clients/client-ssm-sap/src/pagination/ListOperationsPaginator.ts b/clients/client-ssm-sap/src/pagination/ListOperationsPaginator.ts index a28398e12fff7..f363bc6691524 100644 --- a/clients/client-ssm-sap/src/pagination/ListOperationsPaginator.ts +++ b/clients/client-ssm-sap/src/pagination/ListOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOperationsCommand, diff --git a/clients/client-ssm-sap/src/pagination/ListSubCheckResultsPaginator.ts b/clients/client-ssm-sap/src/pagination/ListSubCheckResultsPaginator.ts index 2264ca97ece0d..506c64df3f4b9 100644 --- a/clients/client-ssm-sap/src/pagination/ListSubCheckResultsPaginator.ts +++ b/clients/client-ssm-sap/src/pagination/ListSubCheckResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubCheckResultsCommand, diff --git a/clients/client-ssm-sap/src/pagination/ListSubCheckRuleResultsPaginator.ts b/clients/client-ssm-sap/src/pagination/ListSubCheckRuleResultsPaginator.ts index cae6443abe318..f23d2429856a8 100644 --- a/clients/client-ssm-sap/src/pagination/ListSubCheckRuleResultsPaginator.ts +++ b/clients/client-ssm-sap/src/pagination/ListSubCheckRuleResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSubCheckRuleResultsCommand, diff --git a/clients/client-ssm-sap/src/runtimeConfig.browser.ts b/clients/client-ssm-sap/src/runtimeConfig.browser.ts index cf02f0cbc348b..4edf5923b7f63 100644 --- a/clients/client-ssm-sap/src/runtimeConfig.browser.ts +++ b/clients/client-ssm-sap/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SsmSapClientConfig } from "./SsmSapClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SsmSapClientConfig } from "./SsmSapClient"; /** * @internal diff --git a/clients/client-ssm-sap/src/runtimeConfig.native.ts b/clients/client-ssm-sap/src/runtimeConfig.native.ts index 412c1ce467c9a..9077541416b22 100644 --- a/clients/client-ssm-sap/src/runtimeConfig.native.ts +++ b/clients/client-ssm-sap/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SsmSapClientConfig } from "./SsmSapClient"; +import type { SsmSapClientConfig } from "./SsmSapClient"; /** * @internal diff --git a/clients/client-ssm-sap/src/runtimeConfig.shared.ts b/clients/client-ssm-sap/src/runtimeConfig.shared.ts index d1e7829339f12..7fe555ac2a7a7 100644 --- a/clients/client-ssm-sap/src/runtimeConfig.shared.ts +++ b/clients/client-ssm-sap/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSsmSapHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SsmSapClientConfig } from "./SsmSapClient"; +import type { SsmSapClientConfig } from "./SsmSapClient"; /** * @internal diff --git a/clients/client-ssm-sap/src/runtimeConfig.ts b/clients/client-ssm-sap/src/runtimeConfig.ts index 467e0a9a9750a..af3bd15d02d31 100644 --- a/clients/client-ssm-sap/src/runtimeConfig.ts +++ b/clients/client-ssm-sap/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SsmSapClientConfig } from "./SsmSapClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SsmSapClientConfig } from "./SsmSapClient"; /** * @internal diff --git a/clients/client-ssm-sap/src/runtimeExtensions.ts b/clients/client-ssm-sap/src/runtimeExtensions.ts index 3d7603684c423..20b42fd3dc08d 100644 --- a/clients/client-ssm-sap/src/runtimeExtensions.ts +++ b/clients/client-ssm-sap/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SsmSapExtensionConfiguration } from "./extensionConfiguration"; +import type { SsmSapExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ssm-sap/src/schemas/schemas_0.ts b/clients/client-ssm-sap/src/schemas/schemas_0.ts index 7bd34ed16c76a..d7c3dc050e017 100644 --- a/clients/client-ssm-sap/src/schemas/schemas_0.ts +++ b/clients/client-ssm-sap/src/schemas/schemas_0.ts @@ -244,7 +244,7 @@ const n0 = "com.amazonaws.ssmsap"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-ssm/package.json b/clients/client-ssm/package.json index 6bf70cf422bb4..28885ffff5151 100644 --- a/clients/client-ssm/package.json +++ b/clients/client-ssm/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-ssm/src/SSM.ts b/clients/client-ssm/src/SSM.ts index b466dd9fe34bb..32a9ac68e8e63 100644 --- a/clients/client-ssm/src/SSM.ts +++ b/clients/client-ssm/src/SSM.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddTagsToResourceCommand, @@ -716,7 +716,7 @@ import { UpdateServiceSettingCommandInput, UpdateServiceSettingCommandOutput, } from "./commands/UpdateServiceSettingCommand"; -import { SSMClient, SSMClientConfig } from "./SSMClient"; +import { SSMClient } from "./SSMClient"; const commands = { AddTagsToResourceCommand, diff --git a/clients/client-ssm/src/SSMClient.ts b/clients/client-ssm/src/SSMClient.ts index ecc93022bf40c..fdc0f8f4ac19a 100644 --- a/clients/client-ssm/src/SSMClient.ts +++ b/clients/client-ssm/src/SSMClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSSMHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput } from "./commands/AddTagsToResourceCommand"; @@ -495,7 +504,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-ssm/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-ssm/src/auth/httpAuthExtensionConfiguration.ts index 1736c3e44aafc..dce2c6490e5d9 100644 --- a/clients/client-ssm/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-ssm/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SSMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SSMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-ssm/src/auth/httpAuthSchemeProvider.ts b/clients/client-ssm/src/auth/httpAuthSchemeProvider.ts index cd7f00a91ae95..dfa4c83774faa 100644 --- a/clients/client-ssm/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-ssm/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SSMClientConfig, SSMClientResolvedConfig } from "../SSMClient"; +import { type SSMClientResolvedConfig, SSMClientConfig } from "../SSMClient"; /** * @internal diff --git a/clients/client-ssm/src/commands/AddTagsToResourceCommand.ts b/clients/client-ssm/src/commands/AddTagsToResourceCommand.ts index 39649bc3cf979..3c8101f191be3 100644 --- a/clients/client-ssm/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-ssm/src/commands/AddTagsToResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToResourceRequest, AddTagsToResourceResult } from "../models/models_0"; +import type { AddTagsToResourceRequest, AddTagsToResourceResult } from "../models/models_0"; import { AddTagsToResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/AssociateOpsItemRelatedItemCommand.ts b/clients/client-ssm/src/commands/AssociateOpsItemRelatedItemCommand.ts index 74429d8c88f43..27681c54b06a8 100644 --- a/clients/client-ssm/src/commands/AssociateOpsItemRelatedItemCommand.ts +++ b/clients/client-ssm/src/commands/AssociateOpsItemRelatedItemCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateOpsItemRelatedItemRequest, AssociateOpsItemRelatedItemResponse } from "../models/models_0"; +import type { AssociateOpsItemRelatedItemRequest, AssociateOpsItemRelatedItemResponse } from "../models/models_0"; import { AssociateOpsItemRelatedItem } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CancelCommandCommand.ts b/clients/client-ssm/src/commands/CancelCommandCommand.ts index 0dfad469714f1..6756bb399643d 100644 --- a/clients/client-ssm/src/commands/CancelCommandCommand.ts +++ b/clients/client-ssm/src/commands/CancelCommandCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelCommandRequest, CancelCommandResult } from "../models/models_0"; +import type { CancelCommandRequest, CancelCommandResult } from "../models/models_0"; import { CancelCommand } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CancelMaintenanceWindowExecutionCommand.ts b/clients/client-ssm/src/commands/CancelMaintenanceWindowExecutionCommand.ts index 77a752a508b0c..6609b232119a2 100644 --- a/clients/client-ssm/src/commands/CancelMaintenanceWindowExecutionCommand.ts +++ b/clients/client-ssm/src/commands/CancelMaintenanceWindowExecutionCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMaintenanceWindowExecutionRequest, CancelMaintenanceWindowExecutionResult } from "../models/models_0"; +import type { + CancelMaintenanceWindowExecutionRequest, + CancelMaintenanceWindowExecutionResult, +} from "../models/models_0"; import { CancelMaintenanceWindowExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CreateActivationCommand.ts b/clients/client-ssm/src/commands/CreateActivationCommand.ts index 80b0cfc03e62e..b9bef328fc951 100644 --- a/clients/client-ssm/src/commands/CreateActivationCommand.ts +++ b/clients/client-ssm/src/commands/CreateActivationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateActivationRequest, CreateActivationResult } from "../models/models_0"; +import type { CreateActivationRequest, CreateActivationResult } from "../models/models_0"; import { CreateActivation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CreateAssociationBatchCommand.ts b/clients/client-ssm/src/commands/CreateAssociationBatchCommand.ts index ff8382aa0353d..a166bcd44a85b 100644 --- a/clients/client-ssm/src/commands/CreateAssociationBatchCommand.ts +++ b/clients/client-ssm/src/commands/CreateAssociationBatchCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssociationBatchRequest, CreateAssociationBatchResult } from "../models/models_0"; +import type { CreateAssociationBatchRequest, CreateAssociationBatchResult } from "../models/models_0"; import { CreateAssociationBatch } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CreateAssociationCommand.ts b/clients/client-ssm/src/commands/CreateAssociationCommand.ts index db48868c5419c..e5fdf1f1eb83c 100644 --- a/clients/client-ssm/src/commands/CreateAssociationCommand.ts +++ b/clients/client-ssm/src/commands/CreateAssociationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssociationRequest, CreateAssociationResult } from "../models/models_0"; +import type { CreateAssociationRequest, CreateAssociationResult } from "../models/models_0"; import { CreateAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CreateDocumentCommand.ts b/clients/client-ssm/src/commands/CreateDocumentCommand.ts index af0c31e5ec6cb..7affe33160b30 100644 --- a/clients/client-ssm/src/commands/CreateDocumentCommand.ts +++ b/clients/client-ssm/src/commands/CreateDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDocumentRequest, CreateDocumentResult } from "../models/models_0"; +import type { CreateDocumentRequest, CreateDocumentResult } from "../models/models_0"; import { CreateDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CreateMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/CreateMaintenanceWindowCommand.ts index 072691ec5aba3..32f123e55f250 100644 --- a/clients/client-ssm/src/commands/CreateMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/CreateMaintenanceWindowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMaintenanceWindowRequest, CreateMaintenanceWindowResult } from "../models/models_0"; +import type { CreateMaintenanceWindowRequest, CreateMaintenanceWindowResult } from "../models/models_0"; import { CreateMaintenanceWindow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CreateOpsItemCommand.ts b/clients/client-ssm/src/commands/CreateOpsItemCommand.ts index ac6892e362336..1d9b6166cf863 100644 --- a/clients/client-ssm/src/commands/CreateOpsItemCommand.ts +++ b/clients/client-ssm/src/commands/CreateOpsItemCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOpsItemRequest, CreateOpsItemResponse } from "../models/models_0"; +import type { CreateOpsItemRequest, CreateOpsItemResponse } from "../models/models_0"; import { CreateOpsItem } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CreateOpsMetadataCommand.ts b/clients/client-ssm/src/commands/CreateOpsMetadataCommand.ts index 50136ecd62120..1b19768d3a439 100644 --- a/clients/client-ssm/src/commands/CreateOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/CreateOpsMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOpsMetadataRequest, CreateOpsMetadataResult } from "../models/models_0"; +import type { CreateOpsMetadataRequest, CreateOpsMetadataResult } from "../models/models_0"; import { CreateOpsMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CreatePatchBaselineCommand.ts b/clients/client-ssm/src/commands/CreatePatchBaselineCommand.ts index 50ddfb345e5f1..99b09d859105d 100644 --- a/clients/client-ssm/src/commands/CreatePatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/CreatePatchBaselineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePatchBaselineRequest, CreatePatchBaselineResult } from "../models/models_0"; +import type { CreatePatchBaselineRequest, CreatePatchBaselineResult } from "../models/models_0"; import { CreatePatchBaseline } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/CreateResourceDataSyncCommand.ts b/clients/client-ssm/src/commands/CreateResourceDataSyncCommand.ts index 18bbd1ab0e139..9e818e1f39eb4 100644 --- a/clients/client-ssm/src/commands/CreateResourceDataSyncCommand.ts +++ b/clients/client-ssm/src/commands/CreateResourceDataSyncCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceDataSyncRequest, CreateResourceDataSyncResult } from "../models/models_0"; +import type { CreateResourceDataSyncRequest, CreateResourceDataSyncResult } from "../models/models_0"; import { CreateResourceDataSync } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteActivationCommand.ts b/clients/client-ssm/src/commands/DeleteActivationCommand.ts index bd0d83f054519..065e2a591700e 100644 --- a/clients/client-ssm/src/commands/DeleteActivationCommand.ts +++ b/clients/client-ssm/src/commands/DeleteActivationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteActivationRequest, DeleteActivationResult } from "../models/models_0"; +import type { DeleteActivationRequest, DeleteActivationResult } from "../models/models_0"; import { DeleteActivation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteAssociationCommand.ts b/clients/client-ssm/src/commands/DeleteAssociationCommand.ts index 7541b36159b69..c0e85624fe6b4 100644 --- a/clients/client-ssm/src/commands/DeleteAssociationCommand.ts +++ b/clients/client-ssm/src/commands/DeleteAssociationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssociationRequest, DeleteAssociationResult } from "../models/models_0"; +import type { DeleteAssociationRequest, DeleteAssociationResult } from "../models/models_0"; import { DeleteAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteDocumentCommand.ts b/clients/client-ssm/src/commands/DeleteDocumentCommand.ts index 5128e7084c769..ce57f388cdd46 100644 --- a/clients/client-ssm/src/commands/DeleteDocumentCommand.ts +++ b/clients/client-ssm/src/commands/DeleteDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDocumentRequest, DeleteDocumentResult } from "../models/models_0"; +import type { DeleteDocumentRequest, DeleteDocumentResult } from "../models/models_0"; import { DeleteDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteInventoryCommand.ts b/clients/client-ssm/src/commands/DeleteInventoryCommand.ts index 2152c4c63fda8..ed4164fd30762 100644 --- a/clients/client-ssm/src/commands/DeleteInventoryCommand.ts +++ b/clients/client-ssm/src/commands/DeleteInventoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInventoryRequest, DeleteInventoryResult } from "../models/models_0"; +import type { DeleteInventoryRequest, DeleteInventoryResult } from "../models/models_0"; import { DeleteInventory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/DeleteMaintenanceWindowCommand.ts index 3cbd397b79b39..ec3fa86b78f11 100644 --- a/clients/client-ssm/src/commands/DeleteMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/DeleteMaintenanceWindowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMaintenanceWindowRequest, DeleteMaintenanceWindowResult } from "../models/models_0"; +import type { DeleteMaintenanceWindowRequest, DeleteMaintenanceWindowResult } from "../models/models_0"; import { DeleteMaintenanceWindow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteOpsItemCommand.ts b/clients/client-ssm/src/commands/DeleteOpsItemCommand.ts index 5a11b86d7a99d..f9328cdf4afe0 100644 --- a/clients/client-ssm/src/commands/DeleteOpsItemCommand.ts +++ b/clients/client-ssm/src/commands/DeleteOpsItemCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOpsItemRequest, DeleteOpsItemResponse } from "../models/models_0"; +import type { DeleteOpsItemRequest, DeleteOpsItemResponse } from "../models/models_0"; import { DeleteOpsItem } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteOpsMetadataCommand.ts b/clients/client-ssm/src/commands/DeleteOpsMetadataCommand.ts index 53b6f06f3c632..aa251e4fb238b 100644 --- a/clients/client-ssm/src/commands/DeleteOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/DeleteOpsMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOpsMetadataRequest, DeleteOpsMetadataResult } from "../models/models_0"; +import type { DeleteOpsMetadataRequest, DeleteOpsMetadataResult } from "../models/models_0"; import { DeleteOpsMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteParameterCommand.ts b/clients/client-ssm/src/commands/DeleteParameterCommand.ts index 41170727ba577..77416e0252ecf 100644 --- a/clients/client-ssm/src/commands/DeleteParameterCommand.ts +++ b/clients/client-ssm/src/commands/DeleteParameterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteParameterRequest, DeleteParameterResult } from "../models/models_0"; +import type { DeleteParameterRequest, DeleteParameterResult } from "../models/models_0"; import { DeleteParameter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteParametersCommand.ts b/clients/client-ssm/src/commands/DeleteParametersCommand.ts index ada111250100a..49e553b61ccf9 100644 --- a/clients/client-ssm/src/commands/DeleteParametersCommand.ts +++ b/clients/client-ssm/src/commands/DeleteParametersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteParametersRequest, DeleteParametersResult } from "../models/models_0"; +import type { DeleteParametersRequest, DeleteParametersResult } from "../models/models_0"; import { DeleteParameters } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeletePatchBaselineCommand.ts b/clients/client-ssm/src/commands/DeletePatchBaselineCommand.ts index ce4b3b1de227e..84757771f71db 100644 --- a/clients/client-ssm/src/commands/DeletePatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/DeletePatchBaselineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePatchBaselineRequest, DeletePatchBaselineResult } from "../models/models_0"; +import type { DeletePatchBaselineRequest, DeletePatchBaselineResult } from "../models/models_0"; import { DeletePatchBaseline } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteResourceDataSyncCommand.ts b/clients/client-ssm/src/commands/DeleteResourceDataSyncCommand.ts index 68514b975c7a7..208bf2610ab55 100644 --- a/clients/client-ssm/src/commands/DeleteResourceDataSyncCommand.ts +++ b/clients/client-ssm/src/commands/DeleteResourceDataSyncCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceDataSyncRequest, DeleteResourceDataSyncResult } from "../models/models_0"; +import type { DeleteResourceDataSyncRequest, DeleteResourceDataSyncResult } from "../models/models_0"; import { DeleteResourceDataSync } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-ssm/src/commands/DeleteResourcePolicyCommand.ts index 78f90d5c30c56..e1ee33f1aade0 100644 --- a/clients/client-ssm/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-ssm/src/commands/DeleteResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeregisterManagedInstanceCommand.ts b/clients/client-ssm/src/commands/DeregisterManagedInstanceCommand.ts index bfd0b7e7f03ae..92e2c06caf4ef 100644 --- a/clients/client-ssm/src/commands/DeregisterManagedInstanceCommand.ts +++ b/clients/client-ssm/src/commands/DeregisterManagedInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterManagedInstanceRequest, DeregisterManagedInstanceResult } from "../models/models_0"; +import type { DeregisterManagedInstanceRequest, DeregisterManagedInstanceResult } from "../models/models_0"; import { DeregisterManagedInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeregisterPatchBaselineForPatchGroupCommand.ts b/clients/client-ssm/src/commands/DeregisterPatchBaselineForPatchGroupCommand.ts index 0ee4d642a823e..31d1651ab3d25 100644 --- a/clients/client-ssm/src/commands/DeregisterPatchBaselineForPatchGroupCommand.ts +++ b/clients/client-ssm/src/commands/DeregisterPatchBaselineForPatchGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterPatchBaselineForPatchGroupRequest, DeregisterPatchBaselineForPatchGroupResult, } from "../models/models_0"; import { DeregisterPatchBaselineForPatchGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeregisterTargetFromMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/DeregisterTargetFromMaintenanceWindowCommand.ts index c74cb146f01db..abb7b47de6b15 100644 --- a/clients/client-ssm/src/commands/DeregisterTargetFromMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/DeregisterTargetFromMaintenanceWindowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterTargetFromMaintenanceWindowRequest, DeregisterTargetFromMaintenanceWindowResult, } from "../models/models_0"; import { DeregisterTargetFromMaintenanceWindow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DeregisterTaskFromMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/DeregisterTaskFromMaintenanceWindowCommand.ts index 8f97bb4d74c26..7f9be4d0ba9ad 100644 --- a/clients/client-ssm/src/commands/DeregisterTaskFromMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/DeregisterTaskFromMaintenanceWindowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeregisterTaskFromMaintenanceWindowRequest, DeregisterTaskFromMaintenanceWindowResult, } from "../models/models_0"; import { DeregisterTaskFromMaintenanceWindow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeActivationsCommand.ts b/clients/client-ssm/src/commands/DescribeActivationsCommand.ts index a8d60cb1a541f..eb52c31b3526c 100644 --- a/clients/client-ssm/src/commands/DescribeActivationsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeActivationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeActivationsRequest, DescribeActivationsResult } from "../models/models_0"; +import type { DescribeActivationsRequest, DescribeActivationsResult } from "../models/models_0"; import { DescribeActivations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeAssociationCommand.ts b/clients/client-ssm/src/commands/DescribeAssociationCommand.ts index 09785ca863646..4b58c3342d24e 100644 --- a/clients/client-ssm/src/commands/DescribeAssociationCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAssociationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAssociationRequest, DescribeAssociationResult } from "../models/models_0"; +import type { DescribeAssociationRequest, DescribeAssociationResult } from "../models/models_0"; import { DescribeAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeAssociationExecutionTargetsCommand.ts b/clients/client-ssm/src/commands/DescribeAssociationExecutionTargetsCommand.ts index 2bee61e3ef3a2..cf04b3d8cb951 100644 --- a/clients/client-ssm/src/commands/DescribeAssociationExecutionTargetsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAssociationExecutionTargetsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeAssociationExecutionTargetsRequest, DescribeAssociationExecutionTargetsResult, } from "../models/models_0"; import { DescribeAssociationExecutionTargets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeAssociationExecutionsCommand.ts b/clients/client-ssm/src/commands/DescribeAssociationExecutionsCommand.ts index a11e191d3a55f..4860289d74261 100644 --- a/clients/client-ssm/src/commands/DescribeAssociationExecutionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAssociationExecutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAssociationExecutionsRequest, DescribeAssociationExecutionsResult } from "../models/models_0"; +import type { DescribeAssociationExecutionsRequest, DescribeAssociationExecutionsResult } from "../models/models_0"; import { DescribeAssociationExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeAutomationExecutionsCommand.ts b/clients/client-ssm/src/commands/DescribeAutomationExecutionsCommand.ts index 95fbf4e3ae5b9..1ee98d53db786 100644 --- a/clients/client-ssm/src/commands/DescribeAutomationExecutionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAutomationExecutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAutomationExecutionsRequest, DescribeAutomationExecutionsResult } from "../models/models_0"; +import type { DescribeAutomationExecutionsRequest, DescribeAutomationExecutionsResult } from "../models/models_0"; import { DescribeAutomationExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeAutomationStepExecutionsCommand.ts b/clients/client-ssm/src/commands/DescribeAutomationStepExecutionsCommand.ts index 408777f4d3f18..81f136faf2e5e 100644 --- a/clients/client-ssm/src/commands/DescribeAutomationStepExecutionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAutomationStepExecutionsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAutomationStepExecutionsRequest, DescribeAutomationStepExecutionsResult } from "../models/models_0"; +import type { + DescribeAutomationStepExecutionsRequest, + DescribeAutomationStepExecutionsResult, +} from "../models/models_0"; import { DescribeAutomationStepExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeAvailablePatchesCommand.ts b/clients/client-ssm/src/commands/DescribeAvailablePatchesCommand.ts index 67cfed4db5686..1c525a9964143 100644 --- a/clients/client-ssm/src/commands/DescribeAvailablePatchesCommand.ts +++ b/clients/client-ssm/src/commands/DescribeAvailablePatchesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAvailablePatchesRequest, DescribeAvailablePatchesResult } from "../models/models_0"; +import type { DescribeAvailablePatchesRequest, DescribeAvailablePatchesResult } from "../models/models_0"; import { DescribeAvailablePatches } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeDocumentCommand.ts b/clients/client-ssm/src/commands/DescribeDocumentCommand.ts index 900b8c7af26b5..fdbd746be18e1 100644 --- a/clients/client-ssm/src/commands/DescribeDocumentCommand.ts +++ b/clients/client-ssm/src/commands/DescribeDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDocumentRequest, DescribeDocumentResult } from "../models/models_0"; +import type { DescribeDocumentRequest, DescribeDocumentResult } from "../models/models_0"; import { DescribeDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeDocumentPermissionCommand.ts b/clients/client-ssm/src/commands/DescribeDocumentPermissionCommand.ts index 656001d32e613..9c9ccc2811cec 100644 --- a/clients/client-ssm/src/commands/DescribeDocumentPermissionCommand.ts +++ b/clients/client-ssm/src/commands/DescribeDocumentPermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDocumentPermissionRequest, DescribeDocumentPermissionResponse } from "../models/models_0"; +import type { DescribeDocumentPermissionRequest, DescribeDocumentPermissionResponse } from "../models/models_0"; import { DescribeDocumentPermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeEffectiveInstanceAssociationsCommand.ts b/clients/client-ssm/src/commands/DescribeEffectiveInstanceAssociationsCommand.ts index 876dcb9bd1129..c3dd0dc07993a 100644 --- a/clients/client-ssm/src/commands/DescribeEffectiveInstanceAssociationsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeEffectiveInstanceAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeEffectiveInstanceAssociationsRequest, DescribeEffectiveInstanceAssociationsResult, } from "../models/models_0"; import { DescribeEffectiveInstanceAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeEffectivePatchesForPatchBaselineCommand.ts b/clients/client-ssm/src/commands/DescribeEffectivePatchesForPatchBaselineCommand.ts index c6895642baf7f..a4d6019bfaf3d 100644 --- a/clients/client-ssm/src/commands/DescribeEffectivePatchesForPatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/DescribeEffectivePatchesForPatchBaselineCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeEffectivePatchesForPatchBaselineRequest, DescribeEffectivePatchesForPatchBaselineResult, } from "../models/models_0"; import { DescribeEffectivePatchesForPatchBaseline } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeInstanceAssociationsStatusCommand.ts b/clients/client-ssm/src/commands/DescribeInstanceAssociationsStatusCommand.ts index 299301d7c2efb..e7deea71a40cc 100644 --- a/clients/client-ssm/src/commands/DescribeInstanceAssociationsStatusCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstanceAssociationsStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeInstanceAssociationsStatusRequest, DescribeInstanceAssociationsStatusResult, } from "../models/models_0"; import { DescribeInstanceAssociationsStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeInstanceInformationCommand.ts b/clients/client-ssm/src/commands/DescribeInstanceInformationCommand.ts index ed7c6376b85da..fa91ff5f63969 100644 --- a/clients/client-ssm/src/commands/DescribeInstanceInformationCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstanceInformationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceInformationRequest, DescribeInstanceInformationResult } from "../models/models_0"; +import type { DescribeInstanceInformationRequest, DescribeInstanceInformationResult } from "../models/models_0"; import { DescribeInstanceInformation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeInstancePatchStatesCommand.ts b/clients/client-ssm/src/commands/DescribeInstancePatchStatesCommand.ts index 503d7978c16c0..895239539a5e2 100644 --- a/clients/client-ssm/src/commands/DescribeInstancePatchStatesCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstancePatchStatesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstancePatchStatesRequest, DescribeInstancePatchStatesResult } from "../models/models_0"; +import type { DescribeInstancePatchStatesRequest, DescribeInstancePatchStatesResult } from "../models/models_0"; import { DescribeInstancePatchStates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeInstancePatchStatesForPatchGroupCommand.ts b/clients/client-ssm/src/commands/DescribeInstancePatchStatesForPatchGroupCommand.ts index 6c6d2e94f11b3..b2707e5417132 100644 --- a/clients/client-ssm/src/commands/DescribeInstancePatchStatesForPatchGroupCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstancePatchStatesForPatchGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeInstancePatchStatesForPatchGroupRequest, DescribeInstancePatchStatesForPatchGroupResult, } from "../models/models_0"; import { DescribeInstancePatchStatesForPatchGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeInstancePatchesCommand.ts b/clients/client-ssm/src/commands/DescribeInstancePatchesCommand.ts index 003bc9fbbcf38..50fd4ea2d737a 100644 --- a/clients/client-ssm/src/commands/DescribeInstancePatchesCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstancePatchesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstancePatchesRequest, DescribeInstancePatchesResult } from "../models/models_0"; +import type { DescribeInstancePatchesRequest, DescribeInstancePatchesResult } from "../models/models_0"; import { DescribeInstancePatches } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeInstancePropertiesCommand.ts b/clients/client-ssm/src/commands/DescribeInstancePropertiesCommand.ts index 01d14a913ebad..2c45205b4f302 100644 --- a/clients/client-ssm/src/commands/DescribeInstancePropertiesCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInstancePropertiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstancePropertiesRequest, DescribeInstancePropertiesResult } from "../models/models_0"; +import type { DescribeInstancePropertiesRequest, DescribeInstancePropertiesResult } from "../models/models_0"; import { DescribeInstanceProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeInventoryDeletionsCommand.ts b/clients/client-ssm/src/commands/DescribeInventoryDeletionsCommand.ts index 8bad460a575a0..e44c27faf0f54 100644 --- a/clients/client-ssm/src/commands/DescribeInventoryDeletionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeInventoryDeletionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInventoryDeletionsRequest, DescribeInventoryDeletionsResult } from "../models/models_0"; +import type { DescribeInventoryDeletionsRequest, DescribeInventoryDeletionsResult } from "../models/models_0"; import { DescribeInventoryDeletions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.ts index de7e14ea29d75..da8f2c43b4863 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeMaintenanceWindowExecutionTaskInvocationsRequest, DescribeMaintenanceWindowExecutionTaskInvocationsResult, } from "../models/models_0"; import { DescribeMaintenanceWindowExecutionTaskInvocations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTasksCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTasksCommand.ts index da90e9ebb2797..a5dfdabd616a1 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTasksCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionTasksCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeMaintenanceWindowExecutionTasksRequest, DescribeMaintenanceWindowExecutionTasksResult, } from "../models/models_0"; import { DescribeMaintenanceWindowExecutionTasks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionsCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionsCommand.ts index f44f4a909fa28..183960a660068 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowExecutionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeMaintenanceWindowExecutionsRequest, DescribeMaintenanceWindowExecutionsResult, } from "../models/models_0"; import { DescribeMaintenanceWindowExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowScheduleCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowScheduleCommand.ts index feff29e721778..b154a39b68a43 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowScheduleCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowScheduleCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMaintenanceWindowScheduleRequest, DescribeMaintenanceWindowScheduleResult } from "../models/models_0"; +import type { + DescribeMaintenanceWindowScheduleRequest, + DescribeMaintenanceWindowScheduleResult, +} from "../models/models_0"; import { DescribeMaintenanceWindowSchedule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowTargetsCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowTargetsCommand.ts index 3a7bc17a90690..2326d9bfd0efe 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowTargetsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowTargetsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMaintenanceWindowTargetsRequest, DescribeMaintenanceWindowTargetsResult } from "../models/models_0"; +import type { + DescribeMaintenanceWindowTargetsRequest, + DescribeMaintenanceWindowTargetsResult, +} from "../models/models_0"; import { DescribeMaintenanceWindowTargets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowTasksCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowTasksCommand.ts index dccfe3b24cdaf..42d3972acd4a7 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowTasksCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowTasksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMaintenanceWindowTasksRequest, DescribeMaintenanceWindowTasksResult } from "../models/models_0"; +import type { DescribeMaintenanceWindowTasksRequest, DescribeMaintenanceWindowTasksResult } from "../models/models_0"; import { DescribeMaintenanceWindowTasks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowsCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowsCommand.ts index 361909af4776a..9135f264df194 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMaintenanceWindowsRequest, DescribeMaintenanceWindowsResult } from "../models/models_0"; +import type { DescribeMaintenanceWindowsRequest, DescribeMaintenanceWindowsResult } from "../models/models_0"; import { DescribeMaintenanceWindows } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeMaintenanceWindowsForTargetCommand.ts b/clients/client-ssm/src/commands/DescribeMaintenanceWindowsForTargetCommand.ts index 6eba8a0c0036b..b94120e223ceb 100644 --- a/clients/client-ssm/src/commands/DescribeMaintenanceWindowsForTargetCommand.ts +++ b/clients/client-ssm/src/commands/DescribeMaintenanceWindowsForTargetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeMaintenanceWindowsForTargetRequest, DescribeMaintenanceWindowsForTargetResult, } from "../models/models_0"; import { DescribeMaintenanceWindowsForTarget } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeOpsItemsCommand.ts b/clients/client-ssm/src/commands/DescribeOpsItemsCommand.ts index b4ec97abf7ca3..954191905a0db 100644 --- a/clients/client-ssm/src/commands/DescribeOpsItemsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeOpsItemsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOpsItemsRequest, DescribeOpsItemsResponse } from "../models/models_0"; +import type { DescribeOpsItemsRequest, DescribeOpsItemsResponse } from "../models/models_0"; import { DescribeOpsItems } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeParametersCommand.ts b/clients/client-ssm/src/commands/DescribeParametersCommand.ts index 2ff2d69e966d5..aee23a9a30bec 100644 --- a/clients/client-ssm/src/commands/DescribeParametersCommand.ts +++ b/clients/client-ssm/src/commands/DescribeParametersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeParametersRequest, DescribeParametersResult } from "../models/models_0"; +import type { DescribeParametersRequest, DescribeParametersResult } from "../models/models_0"; import { DescribeParameters } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribePatchBaselinesCommand.ts b/clients/client-ssm/src/commands/DescribePatchBaselinesCommand.ts index 6d2b3043b0e4e..9ab6a228e0e2f 100644 --- a/clients/client-ssm/src/commands/DescribePatchBaselinesCommand.ts +++ b/clients/client-ssm/src/commands/DescribePatchBaselinesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePatchBaselinesRequest, DescribePatchBaselinesResult } from "../models/models_0"; +import type { DescribePatchBaselinesRequest, DescribePatchBaselinesResult } from "../models/models_0"; import { DescribePatchBaselines } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribePatchGroupStateCommand.ts b/clients/client-ssm/src/commands/DescribePatchGroupStateCommand.ts index c2a6abfcecaa0..f77c56fa1dab6 100644 --- a/clients/client-ssm/src/commands/DescribePatchGroupStateCommand.ts +++ b/clients/client-ssm/src/commands/DescribePatchGroupStateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePatchGroupStateRequest, DescribePatchGroupStateResult } from "../models/models_0"; +import type { DescribePatchGroupStateRequest, DescribePatchGroupStateResult } from "../models/models_0"; import { DescribePatchGroupState } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribePatchGroupsCommand.ts b/clients/client-ssm/src/commands/DescribePatchGroupsCommand.ts index d6d6244c647a4..311b7e0f07975 100644 --- a/clients/client-ssm/src/commands/DescribePatchGroupsCommand.ts +++ b/clients/client-ssm/src/commands/DescribePatchGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePatchGroupsRequest, DescribePatchGroupsResult } from "../models/models_0"; +import type { DescribePatchGroupsRequest, DescribePatchGroupsResult } from "../models/models_0"; import { DescribePatchGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribePatchPropertiesCommand.ts b/clients/client-ssm/src/commands/DescribePatchPropertiesCommand.ts index a7ad21122fa1e..69368ca2bad5a 100644 --- a/clients/client-ssm/src/commands/DescribePatchPropertiesCommand.ts +++ b/clients/client-ssm/src/commands/DescribePatchPropertiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePatchPropertiesRequest, DescribePatchPropertiesResult } from "../models/models_0"; +import type { DescribePatchPropertiesRequest, DescribePatchPropertiesResult } from "../models/models_0"; import { DescribePatchProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DescribeSessionsCommand.ts b/clients/client-ssm/src/commands/DescribeSessionsCommand.ts index 68c239b7e3279..967cde8f46228 100644 --- a/clients/client-ssm/src/commands/DescribeSessionsCommand.ts +++ b/clients/client-ssm/src/commands/DescribeSessionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSessionsRequest, DescribeSessionsResponse } from "../models/models_0"; +import type { DescribeSessionsRequest, DescribeSessionsResponse } from "../models/models_0"; import { DescribeSessions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/DisassociateOpsItemRelatedItemCommand.ts b/clients/client-ssm/src/commands/DisassociateOpsItemRelatedItemCommand.ts index aedc44d592b70..aeb7a455af33f 100644 --- a/clients/client-ssm/src/commands/DisassociateOpsItemRelatedItemCommand.ts +++ b/clients/client-ssm/src/commands/DisassociateOpsItemRelatedItemCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateOpsItemRelatedItemRequest, DisassociateOpsItemRelatedItemResponse } from "../models/models_0"; +import type { DisassociateOpsItemRelatedItemRequest, DisassociateOpsItemRelatedItemResponse } from "../models/models_0"; import { DisassociateOpsItemRelatedItem } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetAccessTokenCommand.ts b/clients/client-ssm/src/commands/GetAccessTokenCommand.ts index c519d2db06eae..2f634fb29d55d 100644 --- a/clients/client-ssm/src/commands/GetAccessTokenCommand.ts +++ b/clients/client-ssm/src/commands/GetAccessTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessTokenRequest, GetAccessTokenResponse } from "../models/models_0"; +import type { GetAccessTokenRequest, GetAccessTokenResponse } from "../models/models_0"; import { GetAccessToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetAutomationExecutionCommand.ts b/clients/client-ssm/src/commands/GetAutomationExecutionCommand.ts index 5aa98dbdea3a5..f5d9833d375ec 100644 --- a/clients/client-ssm/src/commands/GetAutomationExecutionCommand.ts +++ b/clients/client-ssm/src/commands/GetAutomationExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAutomationExecutionRequest, GetAutomationExecutionResult } from "../models/models_0"; +import type { GetAutomationExecutionRequest, GetAutomationExecutionResult } from "../models/models_0"; import { GetAutomationExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetCalendarStateCommand.ts b/clients/client-ssm/src/commands/GetCalendarStateCommand.ts index e3b09965df21f..960bec8403c75 100644 --- a/clients/client-ssm/src/commands/GetCalendarStateCommand.ts +++ b/clients/client-ssm/src/commands/GetCalendarStateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCalendarStateRequest, GetCalendarStateResponse } from "../models/models_0"; +import type { GetCalendarStateRequest, GetCalendarStateResponse } from "../models/models_0"; import { GetCalendarState } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetCommandInvocationCommand.ts b/clients/client-ssm/src/commands/GetCommandInvocationCommand.ts index f208a025c8130..03a0223974074 100644 --- a/clients/client-ssm/src/commands/GetCommandInvocationCommand.ts +++ b/clients/client-ssm/src/commands/GetCommandInvocationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCommandInvocationRequest, GetCommandInvocationResult } from "../models/models_0"; +import type { GetCommandInvocationRequest, GetCommandInvocationResult } from "../models/models_0"; import { GetCommandInvocation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetConnectionStatusCommand.ts b/clients/client-ssm/src/commands/GetConnectionStatusCommand.ts index 6690c3f4bf00d..ae2d657623990 100644 --- a/clients/client-ssm/src/commands/GetConnectionStatusCommand.ts +++ b/clients/client-ssm/src/commands/GetConnectionStatusCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConnectionStatusRequest, GetConnectionStatusResponse } from "../models/models_0"; +import type { GetConnectionStatusRequest, GetConnectionStatusResponse } from "../models/models_0"; import { GetConnectionStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetDefaultPatchBaselineCommand.ts b/clients/client-ssm/src/commands/GetDefaultPatchBaselineCommand.ts index fb861391ae44f..7fdfd40032492 100644 --- a/clients/client-ssm/src/commands/GetDefaultPatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/GetDefaultPatchBaselineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDefaultPatchBaselineRequest, GetDefaultPatchBaselineResult } from "../models/models_0"; +import type { GetDefaultPatchBaselineRequest, GetDefaultPatchBaselineResult } from "../models/models_0"; import { GetDefaultPatchBaseline } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetDeployablePatchSnapshotForInstanceCommand.ts b/clients/client-ssm/src/commands/GetDeployablePatchSnapshotForInstanceCommand.ts index 1b3fe29d22450..94e05ca7d6aa5 100644 --- a/clients/client-ssm/src/commands/GetDeployablePatchSnapshotForInstanceCommand.ts +++ b/clients/client-ssm/src/commands/GetDeployablePatchSnapshotForInstanceCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetDeployablePatchSnapshotForInstanceRequest, GetDeployablePatchSnapshotForInstanceResult, } from "../models/models_0"; import { GetDeployablePatchSnapshotForInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetDocumentCommand.ts b/clients/client-ssm/src/commands/GetDocumentCommand.ts index 2abeb96c74c24..8e0c2d0cc38b6 100644 --- a/clients/client-ssm/src/commands/GetDocumentCommand.ts +++ b/clients/client-ssm/src/commands/GetDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDocumentRequest, GetDocumentResult } from "../models/models_0"; +import type { GetDocumentRequest, GetDocumentResult } from "../models/models_0"; import { GetDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetExecutionPreviewCommand.ts b/clients/client-ssm/src/commands/GetExecutionPreviewCommand.ts index 8feea18f1becb..373b06b277d80 100644 --- a/clients/client-ssm/src/commands/GetExecutionPreviewCommand.ts +++ b/clients/client-ssm/src/commands/GetExecutionPreviewCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExecutionPreviewRequest, GetExecutionPreviewResponse } from "../models/models_0"; +import type { GetExecutionPreviewRequest, GetExecutionPreviewResponse } from "../models/models_0"; import { GetExecutionPreview } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetInventoryCommand.ts b/clients/client-ssm/src/commands/GetInventoryCommand.ts index 6f816f04398dd..e51432ee0b6d1 100644 --- a/clients/client-ssm/src/commands/GetInventoryCommand.ts +++ b/clients/client-ssm/src/commands/GetInventoryCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInventoryResult } from "../models/models_0"; -import { GetInventoryRequest } from "../models/models_1"; +import type { GetInventoryResult } from "../models/models_0"; +import type { GetInventoryRequest } from "../models/models_1"; import { GetInventory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetInventorySchemaCommand.ts b/clients/client-ssm/src/commands/GetInventorySchemaCommand.ts index 34762bf7a7617..55da37ef2f4a4 100644 --- a/clients/client-ssm/src/commands/GetInventorySchemaCommand.ts +++ b/clients/client-ssm/src/commands/GetInventorySchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInventorySchemaRequest, GetInventorySchemaResult } from "../models/models_0"; +import type { GetInventorySchemaRequest, GetInventorySchemaResult } from "../models/models_0"; import { GetInventorySchema } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowCommand.ts index 1aa759f19f324..2ea476c7bde13 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMaintenanceWindowRequest, GetMaintenanceWindowResult } from "../models/models_0"; +import type { GetMaintenanceWindowRequest, GetMaintenanceWindowResult } from "../models/models_0"; import { GetMaintenanceWindow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionCommand.ts index c65fd953e80e9..97ea2508f8f3e 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMaintenanceWindowExecutionRequest, GetMaintenanceWindowExecutionResult } from "../models/models_0"; +import type { GetMaintenanceWindowExecutionRequest, GetMaintenanceWindowExecutionResult } from "../models/models_0"; import { GetMaintenanceWindowExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskCommand.ts index 73a457fbefff7..9dff541e48f05 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMaintenanceWindowExecutionTaskRequest, GetMaintenanceWindowExecutionTaskResult } from "../models/models_0"; +import type { + GetMaintenanceWindowExecutionTaskRequest, + GetMaintenanceWindowExecutionTaskResult, +} from "../models/models_0"; import { GetMaintenanceWindowExecutionTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.ts index 9c576d53c0633..8425905482f3b 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetMaintenanceWindowExecutionTaskInvocationRequest, GetMaintenanceWindowExecutionTaskInvocationResult, } from "../models/models_0"; import { GetMaintenanceWindowExecutionTaskInvocation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetMaintenanceWindowTaskCommand.ts b/clients/client-ssm/src/commands/GetMaintenanceWindowTaskCommand.ts index 4870947bed6f7..13e3facdc9525 100644 --- a/clients/client-ssm/src/commands/GetMaintenanceWindowTaskCommand.ts +++ b/clients/client-ssm/src/commands/GetMaintenanceWindowTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMaintenanceWindowTaskRequest, GetMaintenanceWindowTaskResult } from "../models/models_0"; +import type { GetMaintenanceWindowTaskRequest, GetMaintenanceWindowTaskResult } from "../models/models_0"; import { GetMaintenanceWindowTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetOpsItemCommand.ts b/clients/client-ssm/src/commands/GetOpsItemCommand.ts index 064e4c7d25baa..98bb1012b9ffa 100644 --- a/clients/client-ssm/src/commands/GetOpsItemCommand.ts +++ b/clients/client-ssm/src/commands/GetOpsItemCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOpsItemRequest, GetOpsItemResponse } from "../models/models_0"; +import type { GetOpsItemRequest, GetOpsItemResponse } from "../models/models_0"; import { GetOpsItem } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetOpsMetadataCommand.ts b/clients/client-ssm/src/commands/GetOpsMetadataCommand.ts index ceb74eb058922..c7c7ea3acac1b 100644 --- a/clients/client-ssm/src/commands/GetOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/GetOpsMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOpsMetadataRequest, GetOpsMetadataResult } from "../models/models_0"; +import type { GetOpsMetadataRequest, GetOpsMetadataResult } from "../models/models_0"; import { GetOpsMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetOpsSummaryCommand.ts b/clients/client-ssm/src/commands/GetOpsSummaryCommand.ts index a72fcc0eb549c..ec0ccb643c8fe 100644 --- a/clients/client-ssm/src/commands/GetOpsSummaryCommand.ts +++ b/clients/client-ssm/src/commands/GetOpsSummaryCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOpsSummaryResult } from "../models/models_0"; -import { GetOpsSummaryRequest } from "../models/models_1"; +import type { GetOpsSummaryResult } from "../models/models_0"; +import type { GetOpsSummaryRequest } from "../models/models_1"; import { GetOpsSummary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetParameterCommand.ts b/clients/client-ssm/src/commands/GetParameterCommand.ts index d2723ad3b00b7..40f027afb9b99 100644 --- a/clients/client-ssm/src/commands/GetParameterCommand.ts +++ b/clients/client-ssm/src/commands/GetParameterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetParameterRequest, GetParameterResult } from "../models/models_0"; +import type { GetParameterRequest, GetParameterResult } from "../models/models_0"; import { GetParameter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetParameterHistoryCommand.ts b/clients/client-ssm/src/commands/GetParameterHistoryCommand.ts index 8ec72f7ad75dd..e38435b3486d2 100644 --- a/clients/client-ssm/src/commands/GetParameterHistoryCommand.ts +++ b/clients/client-ssm/src/commands/GetParameterHistoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetParameterHistoryRequest, GetParameterHistoryResult } from "../models/models_0"; +import type { GetParameterHistoryRequest, GetParameterHistoryResult } from "../models/models_0"; import { GetParameterHistory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetParametersByPathCommand.ts b/clients/client-ssm/src/commands/GetParametersByPathCommand.ts index c6619107f3e18..5b147b6070eb6 100644 --- a/clients/client-ssm/src/commands/GetParametersByPathCommand.ts +++ b/clients/client-ssm/src/commands/GetParametersByPathCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetParametersByPathRequest, GetParametersByPathResult } from "../models/models_0"; +import type { GetParametersByPathRequest, GetParametersByPathResult } from "../models/models_0"; import { GetParametersByPath } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetParametersCommand.ts b/clients/client-ssm/src/commands/GetParametersCommand.ts index bafc4c76d9eee..e1ac4a71508a9 100644 --- a/clients/client-ssm/src/commands/GetParametersCommand.ts +++ b/clients/client-ssm/src/commands/GetParametersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetParametersRequest, GetParametersResult } from "../models/models_0"; +import type { GetParametersRequest, GetParametersResult } from "../models/models_0"; import { GetParameters } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetPatchBaselineCommand.ts b/clients/client-ssm/src/commands/GetPatchBaselineCommand.ts index 2e32d2d9f8f51..f895d329dffc1 100644 --- a/clients/client-ssm/src/commands/GetPatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/GetPatchBaselineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPatchBaselineRequest, GetPatchBaselineResult } from "../models/models_0"; +import type { GetPatchBaselineRequest, GetPatchBaselineResult } from "../models/models_0"; import { GetPatchBaseline } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetPatchBaselineForPatchGroupCommand.ts b/clients/client-ssm/src/commands/GetPatchBaselineForPatchGroupCommand.ts index 99f4ea6d58db3..912da052aad16 100644 --- a/clients/client-ssm/src/commands/GetPatchBaselineForPatchGroupCommand.ts +++ b/clients/client-ssm/src/commands/GetPatchBaselineForPatchGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPatchBaselineForPatchGroupRequest, GetPatchBaselineForPatchGroupResult } from "../models/models_0"; +import type { GetPatchBaselineForPatchGroupRequest, GetPatchBaselineForPatchGroupResult } from "../models/models_0"; import { GetPatchBaselineForPatchGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetResourcePoliciesCommand.ts b/clients/client-ssm/src/commands/GetResourcePoliciesCommand.ts index c3291107aa7da..bd0ef85dca4a7 100644 --- a/clients/client-ssm/src/commands/GetResourcePoliciesCommand.ts +++ b/clients/client-ssm/src/commands/GetResourcePoliciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePoliciesRequest, GetResourcePoliciesResponse } from "../models/models_0"; +import type { GetResourcePoliciesRequest, GetResourcePoliciesResponse } from "../models/models_0"; import { GetResourcePolicies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/GetServiceSettingCommand.ts b/clients/client-ssm/src/commands/GetServiceSettingCommand.ts index 583332ad0b08a..50cf721079b1d 100644 --- a/clients/client-ssm/src/commands/GetServiceSettingCommand.ts +++ b/clients/client-ssm/src/commands/GetServiceSettingCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceSettingRequest } from "../models/models_0"; -import { GetServiceSettingResult } from "../models/models_1"; +import type { GetServiceSettingRequest } from "../models/models_0"; +import type { GetServiceSettingResult } from "../models/models_1"; import { GetServiceSetting } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/LabelParameterVersionCommand.ts b/clients/client-ssm/src/commands/LabelParameterVersionCommand.ts index 154a6616e6ccc..677d1c68c536e 100644 --- a/clients/client-ssm/src/commands/LabelParameterVersionCommand.ts +++ b/clients/client-ssm/src/commands/LabelParameterVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LabelParameterVersionRequest, LabelParameterVersionResult } from "../models/models_1"; +import type { LabelParameterVersionRequest, LabelParameterVersionResult } from "../models/models_1"; import { LabelParameterVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListAssociationVersionsCommand.ts b/clients/client-ssm/src/commands/ListAssociationVersionsCommand.ts index 6a22b98037048..e894bf13d2d95 100644 --- a/clients/client-ssm/src/commands/ListAssociationVersionsCommand.ts +++ b/clients/client-ssm/src/commands/ListAssociationVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociationVersionsRequest, ListAssociationVersionsResult } from "../models/models_1"; +import type { ListAssociationVersionsRequest, ListAssociationVersionsResult } from "../models/models_1"; import { ListAssociationVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListAssociationsCommand.ts b/clients/client-ssm/src/commands/ListAssociationsCommand.ts index 2d7de38f00f2f..3ff28dc378676 100644 --- a/clients/client-ssm/src/commands/ListAssociationsCommand.ts +++ b/clients/client-ssm/src/commands/ListAssociationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociationsRequest, ListAssociationsResult } from "../models/models_1"; +import type { ListAssociationsRequest, ListAssociationsResult } from "../models/models_1"; import { ListAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListCommandInvocationsCommand.ts b/clients/client-ssm/src/commands/ListCommandInvocationsCommand.ts index df41e69ff6d6b..b53c0942ae2e3 100644 --- a/clients/client-ssm/src/commands/ListCommandInvocationsCommand.ts +++ b/clients/client-ssm/src/commands/ListCommandInvocationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCommandInvocationsRequest, ListCommandInvocationsResult } from "../models/models_1"; +import type { ListCommandInvocationsRequest, ListCommandInvocationsResult } from "../models/models_1"; import { ListCommandInvocations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListCommandsCommand.ts b/clients/client-ssm/src/commands/ListCommandsCommand.ts index 53ee7b44ee69a..42a3cb2ee4f42 100644 --- a/clients/client-ssm/src/commands/ListCommandsCommand.ts +++ b/clients/client-ssm/src/commands/ListCommandsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCommandsRequest, ListCommandsResult } from "../models/models_1"; +import type { ListCommandsRequest, ListCommandsResult } from "../models/models_1"; import { ListCommands } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListComplianceItemsCommand.ts b/clients/client-ssm/src/commands/ListComplianceItemsCommand.ts index be2d0b8f186dd..7f9e7da1cd1c5 100644 --- a/clients/client-ssm/src/commands/ListComplianceItemsCommand.ts +++ b/clients/client-ssm/src/commands/ListComplianceItemsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComplianceItemsRequest, ListComplianceItemsResult } from "../models/models_1"; +import type { ListComplianceItemsRequest, ListComplianceItemsResult } from "../models/models_1"; import { ListComplianceItems } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListComplianceSummariesCommand.ts b/clients/client-ssm/src/commands/ListComplianceSummariesCommand.ts index d41ceb499c789..77f69994a62f8 100644 --- a/clients/client-ssm/src/commands/ListComplianceSummariesCommand.ts +++ b/clients/client-ssm/src/commands/ListComplianceSummariesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListComplianceSummariesRequest, ListComplianceSummariesResult } from "../models/models_1"; +import type { ListComplianceSummariesRequest, ListComplianceSummariesResult } from "../models/models_1"; import { ListComplianceSummaries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListDocumentMetadataHistoryCommand.ts b/clients/client-ssm/src/commands/ListDocumentMetadataHistoryCommand.ts index a6785c2a91f14..86cdba7708f44 100644 --- a/clients/client-ssm/src/commands/ListDocumentMetadataHistoryCommand.ts +++ b/clients/client-ssm/src/commands/ListDocumentMetadataHistoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDocumentMetadataHistoryRequest, ListDocumentMetadataHistoryResponse } from "../models/models_1"; +import type { ListDocumentMetadataHistoryRequest, ListDocumentMetadataHistoryResponse } from "../models/models_1"; import { ListDocumentMetadataHistory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListDocumentVersionsCommand.ts b/clients/client-ssm/src/commands/ListDocumentVersionsCommand.ts index 970c82766b796..e496b4b3c451a 100644 --- a/clients/client-ssm/src/commands/ListDocumentVersionsCommand.ts +++ b/clients/client-ssm/src/commands/ListDocumentVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDocumentVersionsRequest, ListDocumentVersionsResult } from "../models/models_1"; +import type { ListDocumentVersionsRequest, ListDocumentVersionsResult } from "../models/models_1"; import { ListDocumentVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListDocumentsCommand.ts b/clients/client-ssm/src/commands/ListDocumentsCommand.ts index 1466ea563d56d..4f66b250e3723 100644 --- a/clients/client-ssm/src/commands/ListDocumentsCommand.ts +++ b/clients/client-ssm/src/commands/ListDocumentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDocumentsRequest, ListDocumentsResult } from "../models/models_1"; +import type { ListDocumentsRequest, ListDocumentsResult } from "../models/models_1"; import { ListDocuments } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListInventoryEntriesCommand.ts b/clients/client-ssm/src/commands/ListInventoryEntriesCommand.ts index 1d88cf9598f09..6472e0dfd650c 100644 --- a/clients/client-ssm/src/commands/ListInventoryEntriesCommand.ts +++ b/clients/client-ssm/src/commands/ListInventoryEntriesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInventoryEntriesRequest, ListInventoryEntriesResult } from "../models/models_1"; +import type { ListInventoryEntriesRequest, ListInventoryEntriesResult } from "../models/models_1"; import { ListInventoryEntries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListNodesCommand.ts b/clients/client-ssm/src/commands/ListNodesCommand.ts index 6783a091dec82..a9d9841a88a46 100644 --- a/clients/client-ssm/src/commands/ListNodesCommand.ts +++ b/clients/client-ssm/src/commands/ListNodesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNodesRequest, ListNodesResult } from "../models/models_1"; +import type { ListNodesRequest, ListNodesResult } from "../models/models_1"; import { ListNodes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListNodesSummaryCommand.ts b/clients/client-ssm/src/commands/ListNodesSummaryCommand.ts index 3a4cf1adfa51b..b2daaab2c3ba3 100644 --- a/clients/client-ssm/src/commands/ListNodesSummaryCommand.ts +++ b/clients/client-ssm/src/commands/ListNodesSummaryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNodesSummaryRequest, ListNodesSummaryResult } from "../models/models_1"; +import type { ListNodesSummaryRequest, ListNodesSummaryResult } from "../models/models_1"; import { ListNodesSummary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListOpsItemEventsCommand.ts b/clients/client-ssm/src/commands/ListOpsItemEventsCommand.ts index 64f22152221ed..8adff6ebcb6e8 100644 --- a/clients/client-ssm/src/commands/ListOpsItemEventsCommand.ts +++ b/clients/client-ssm/src/commands/ListOpsItemEventsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOpsItemEventsRequest, ListOpsItemEventsResponse } from "../models/models_1"; +import type { ListOpsItemEventsRequest, ListOpsItemEventsResponse } from "../models/models_1"; import { ListOpsItemEvents } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListOpsItemRelatedItemsCommand.ts b/clients/client-ssm/src/commands/ListOpsItemRelatedItemsCommand.ts index 0d1ba58ceeccd..75857bc1709be 100644 --- a/clients/client-ssm/src/commands/ListOpsItemRelatedItemsCommand.ts +++ b/clients/client-ssm/src/commands/ListOpsItemRelatedItemsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOpsItemRelatedItemsRequest, ListOpsItemRelatedItemsResponse } from "../models/models_1"; +import type { ListOpsItemRelatedItemsRequest, ListOpsItemRelatedItemsResponse } from "../models/models_1"; import { ListOpsItemRelatedItems } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListOpsMetadataCommand.ts b/clients/client-ssm/src/commands/ListOpsMetadataCommand.ts index 467b61eef0d8b..487f0df7db31e 100644 --- a/clients/client-ssm/src/commands/ListOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/ListOpsMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOpsMetadataRequest, ListOpsMetadataResult } from "../models/models_1"; +import type { ListOpsMetadataRequest, ListOpsMetadataResult } from "../models/models_1"; import { ListOpsMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListResourceComplianceSummariesCommand.ts b/clients/client-ssm/src/commands/ListResourceComplianceSummariesCommand.ts index a9658ddfd57f3..b888117f50d18 100644 --- a/clients/client-ssm/src/commands/ListResourceComplianceSummariesCommand.ts +++ b/clients/client-ssm/src/commands/ListResourceComplianceSummariesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceComplianceSummariesRequest, ListResourceComplianceSummariesResult } from "../models/models_1"; +import type { ListResourceComplianceSummariesRequest, ListResourceComplianceSummariesResult } from "../models/models_1"; import { ListResourceComplianceSummaries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListResourceDataSyncCommand.ts b/clients/client-ssm/src/commands/ListResourceDataSyncCommand.ts index ac5c2ca5f2af0..2a310535654ef 100644 --- a/clients/client-ssm/src/commands/ListResourceDataSyncCommand.ts +++ b/clients/client-ssm/src/commands/ListResourceDataSyncCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceDataSyncRequest, ListResourceDataSyncResult } from "../models/models_1"; +import type { ListResourceDataSyncRequest, ListResourceDataSyncResult } from "../models/models_1"; import { ListResourceDataSync } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ListTagsForResourceCommand.ts b/clients/client-ssm/src/commands/ListTagsForResourceCommand.ts index fdf378b7635e9..e8dc14bf5c31e 100644 --- a/clients/client-ssm/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-ssm/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_1"; +import type { ListTagsForResourceRequest, ListTagsForResourceResult } from "../models/models_1"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ModifyDocumentPermissionCommand.ts b/clients/client-ssm/src/commands/ModifyDocumentPermissionCommand.ts index db1b53f3833fe..19c4c704af3f2 100644 --- a/clients/client-ssm/src/commands/ModifyDocumentPermissionCommand.ts +++ b/clients/client-ssm/src/commands/ModifyDocumentPermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyDocumentPermissionRequest, ModifyDocumentPermissionResponse } from "../models/models_1"; +import type { ModifyDocumentPermissionRequest, ModifyDocumentPermissionResponse } from "../models/models_1"; import { ModifyDocumentPermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/PutComplianceItemsCommand.ts b/clients/client-ssm/src/commands/PutComplianceItemsCommand.ts index 252dc86340458..d2e836d24dd09 100644 --- a/clients/client-ssm/src/commands/PutComplianceItemsCommand.ts +++ b/clients/client-ssm/src/commands/PutComplianceItemsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutComplianceItemsRequest, PutComplianceItemsResult } from "../models/models_1"; +import type { PutComplianceItemsRequest, PutComplianceItemsResult } from "../models/models_1"; import { PutComplianceItems } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/PutInventoryCommand.ts b/clients/client-ssm/src/commands/PutInventoryCommand.ts index 272e70cccca3e..e5bfa3e03d7ab 100644 --- a/clients/client-ssm/src/commands/PutInventoryCommand.ts +++ b/clients/client-ssm/src/commands/PutInventoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutInventoryRequest, PutInventoryResult } from "../models/models_1"; +import type { PutInventoryRequest, PutInventoryResult } from "../models/models_1"; import { PutInventory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/PutParameterCommand.ts b/clients/client-ssm/src/commands/PutParameterCommand.ts index 76b9007ab87e1..390d7f4d0b1d0 100644 --- a/clients/client-ssm/src/commands/PutParameterCommand.ts +++ b/clients/client-ssm/src/commands/PutParameterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutParameterRequest, PutParameterResult } from "../models/models_1"; +import type { PutParameterRequest, PutParameterResult } from "../models/models_1"; import { PutParameter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/PutResourcePolicyCommand.ts b/clients/client-ssm/src/commands/PutResourcePolicyCommand.ts index 7f7bbdaa4b732..9df698a85999a 100644 --- a/clients/client-ssm/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-ssm/src/commands/PutResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_1"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_1"; import { PutResourcePolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/RegisterDefaultPatchBaselineCommand.ts b/clients/client-ssm/src/commands/RegisterDefaultPatchBaselineCommand.ts index 1514251a25365..41da0cb847a9d 100644 --- a/clients/client-ssm/src/commands/RegisterDefaultPatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/RegisterDefaultPatchBaselineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterDefaultPatchBaselineRequest, RegisterDefaultPatchBaselineResult } from "../models/models_1"; +import type { RegisterDefaultPatchBaselineRequest, RegisterDefaultPatchBaselineResult } from "../models/models_1"; import { RegisterDefaultPatchBaseline } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/RegisterPatchBaselineForPatchGroupCommand.ts b/clients/client-ssm/src/commands/RegisterPatchBaselineForPatchGroupCommand.ts index cca93b7739656..c006e232d4978 100644 --- a/clients/client-ssm/src/commands/RegisterPatchBaselineForPatchGroupCommand.ts +++ b/clients/client-ssm/src/commands/RegisterPatchBaselineForPatchGroupCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RegisterPatchBaselineForPatchGroupRequest, RegisterPatchBaselineForPatchGroupResult, } from "../models/models_1"; import { RegisterPatchBaselineForPatchGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/RegisterTargetWithMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/RegisterTargetWithMaintenanceWindowCommand.ts index a7f03c6523757..c429fc7322d3e 100644 --- a/clients/client-ssm/src/commands/RegisterTargetWithMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/RegisterTargetWithMaintenanceWindowCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RegisterTargetWithMaintenanceWindowRequest, RegisterTargetWithMaintenanceWindowResult, } from "../models/models_1"; import { RegisterTargetWithMaintenanceWindow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/RegisterTaskWithMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/RegisterTaskWithMaintenanceWindowCommand.ts index b445d3bbf3c82..248d82d22541a 100644 --- a/clients/client-ssm/src/commands/RegisterTaskWithMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/RegisterTaskWithMaintenanceWindowCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterTaskWithMaintenanceWindowRequest, RegisterTaskWithMaintenanceWindowResult } from "../models/models_1"; +import type { + RegisterTaskWithMaintenanceWindowRequest, + RegisterTaskWithMaintenanceWindowResult, +} from "../models/models_1"; import { RegisterTaskWithMaintenanceWindow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-ssm/src/commands/RemoveTagsFromResourceCommand.ts index 895d84d8485d6..d4ea5a229fb93 100644 --- a/clients/client-ssm/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-ssm/src/commands/RemoveTagsFromResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromResourceRequest, RemoveTagsFromResourceResult } from "../models/models_1"; +import type { RemoveTagsFromResourceRequest, RemoveTagsFromResourceResult } from "../models/models_1"; import { RemoveTagsFromResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ResetServiceSettingCommand.ts b/clients/client-ssm/src/commands/ResetServiceSettingCommand.ts index 75eae8a63d2ab..692af18ad2c87 100644 --- a/clients/client-ssm/src/commands/ResetServiceSettingCommand.ts +++ b/clients/client-ssm/src/commands/ResetServiceSettingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetServiceSettingRequest, ResetServiceSettingResult } from "../models/models_1"; +import type { ResetServiceSettingRequest, ResetServiceSettingResult } from "../models/models_1"; import { ResetServiceSetting } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/ResumeSessionCommand.ts b/clients/client-ssm/src/commands/ResumeSessionCommand.ts index f2d5228442bbf..eb9f3e312bc4e 100644 --- a/clients/client-ssm/src/commands/ResumeSessionCommand.ts +++ b/clients/client-ssm/src/commands/ResumeSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResumeSessionRequest, ResumeSessionResponse } from "../models/models_1"; +import type { ResumeSessionRequest, ResumeSessionResponse } from "../models/models_1"; import { ResumeSession } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/SendAutomationSignalCommand.ts b/clients/client-ssm/src/commands/SendAutomationSignalCommand.ts index 6001c03dd3b78..9f92457ead298 100644 --- a/clients/client-ssm/src/commands/SendAutomationSignalCommand.ts +++ b/clients/client-ssm/src/commands/SendAutomationSignalCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendAutomationSignalRequest, SendAutomationSignalResult } from "../models/models_1"; +import type { SendAutomationSignalRequest, SendAutomationSignalResult } from "../models/models_1"; import { SendAutomationSignal } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/SendCommandCommand.ts b/clients/client-ssm/src/commands/SendCommandCommand.ts index 47da18d14811b..edac0ac53fd28 100644 --- a/clients/client-ssm/src/commands/SendCommandCommand.ts +++ b/clients/client-ssm/src/commands/SendCommandCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendCommandRequest, SendCommandResult } from "../models/models_1"; +import type { SendCommandRequest, SendCommandResult } from "../models/models_1"; import { SendCommand } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/StartAccessRequestCommand.ts b/clients/client-ssm/src/commands/StartAccessRequestCommand.ts index 0dbdb2a8f7490..579f03dd9e94d 100644 --- a/clients/client-ssm/src/commands/StartAccessRequestCommand.ts +++ b/clients/client-ssm/src/commands/StartAccessRequestCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAccessRequestRequest, StartAccessRequestResponse } from "../models/models_1"; +import type { StartAccessRequestRequest, StartAccessRequestResponse } from "../models/models_1"; import { StartAccessRequest } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/StartAssociationsOnceCommand.ts b/clients/client-ssm/src/commands/StartAssociationsOnceCommand.ts index eb15aa3f555ac..cb884695c7cc3 100644 --- a/clients/client-ssm/src/commands/StartAssociationsOnceCommand.ts +++ b/clients/client-ssm/src/commands/StartAssociationsOnceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAssociationsOnceRequest, StartAssociationsOnceResult } from "../models/models_1"; +import type { StartAssociationsOnceRequest, StartAssociationsOnceResult } from "../models/models_1"; import { StartAssociationsOnce } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/StartAutomationExecutionCommand.ts b/clients/client-ssm/src/commands/StartAutomationExecutionCommand.ts index dc66365feda2a..b1f8137fd3d20 100644 --- a/clients/client-ssm/src/commands/StartAutomationExecutionCommand.ts +++ b/clients/client-ssm/src/commands/StartAutomationExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAutomationExecutionRequest, StartAutomationExecutionResult } from "../models/models_1"; +import type { StartAutomationExecutionRequest, StartAutomationExecutionResult } from "../models/models_1"; import { StartAutomationExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/StartChangeRequestExecutionCommand.ts b/clients/client-ssm/src/commands/StartChangeRequestExecutionCommand.ts index 03e749f8e5389..434b6de4f470b 100644 --- a/clients/client-ssm/src/commands/StartChangeRequestExecutionCommand.ts +++ b/clients/client-ssm/src/commands/StartChangeRequestExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartChangeRequestExecutionRequest, StartChangeRequestExecutionResult } from "../models/models_1"; +import type { StartChangeRequestExecutionRequest, StartChangeRequestExecutionResult } from "../models/models_1"; import { StartChangeRequestExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/StartExecutionPreviewCommand.ts b/clients/client-ssm/src/commands/StartExecutionPreviewCommand.ts index fa8522fee0816..d3bb7ad782ec9 100644 --- a/clients/client-ssm/src/commands/StartExecutionPreviewCommand.ts +++ b/clients/client-ssm/src/commands/StartExecutionPreviewCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartExecutionPreviewRequest, StartExecutionPreviewResponse } from "../models/models_1"; +import type { StartExecutionPreviewRequest, StartExecutionPreviewResponse } from "../models/models_1"; import { StartExecutionPreview } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/StartSessionCommand.ts b/clients/client-ssm/src/commands/StartSessionCommand.ts index 9b63b391fbb7a..7f150dee5e4d0 100644 --- a/clients/client-ssm/src/commands/StartSessionCommand.ts +++ b/clients/client-ssm/src/commands/StartSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSessionRequest, StartSessionResponse } from "../models/models_1"; +import type { StartSessionRequest, StartSessionResponse } from "../models/models_1"; import { StartSession } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/StopAutomationExecutionCommand.ts b/clients/client-ssm/src/commands/StopAutomationExecutionCommand.ts index e68fcae312fa3..827ee3c04c58a 100644 --- a/clients/client-ssm/src/commands/StopAutomationExecutionCommand.ts +++ b/clients/client-ssm/src/commands/StopAutomationExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopAutomationExecutionRequest, StopAutomationExecutionResult } from "../models/models_1"; +import type { StopAutomationExecutionRequest, StopAutomationExecutionResult } from "../models/models_1"; import { StopAutomationExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/TerminateSessionCommand.ts b/clients/client-ssm/src/commands/TerminateSessionCommand.ts index fa7be5e00e4d9..b3f60738a3230 100644 --- a/clients/client-ssm/src/commands/TerminateSessionCommand.ts +++ b/clients/client-ssm/src/commands/TerminateSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateSessionRequest, TerminateSessionResponse } from "../models/models_1"; +import type { TerminateSessionRequest, TerminateSessionResponse } from "../models/models_1"; import { TerminateSession } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UnlabelParameterVersionCommand.ts b/clients/client-ssm/src/commands/UnlabelParameterVersionCommand.ts index 52c6b7738cd04..9db2a07b061cc 100644 --- a/clients/client-ssm/src/commands/UnlabelParameterVersionCommand.ts +++ b/clients/client-ssm/src/commands/UnlabelParameterVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnlabelParameterVersionRequest, UnlabelParameterVersionResult } from "../models/models_1"; +import type { UnlabelParameterVersionRequest, UnlabelParameterVersionResult } from "../models/models_1"; import { UnlabelParameterVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateAssociationCommand.ts b/clients/client-ssm/src/commands/UpdateAssociationCommand.ts index b07bdab91bb54..e7134c84faab9 100644 --- a/clients/client-ssm/src/commands/UpdateAssociationCommand.ts +++ b/clients/client-ssm/src/commands/UpdateAssociationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssociationRequest, UpdateAssociationResult } from "../models/models_1"; +import type { UpdateAssociationRequest, UpdateAssociationResult } from "../models/models_1"; import { UpdateAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateAssociationStatusCommand.ts b/clients/client-ssm/src/commands/UpdateAssociationStatusCommand.ts index 7778d479a417a..2b10e5af83e7e 100644 --- a/clients/client-ssm/src/commands/UpdateAssociationStatusCommand.ts +++ b/clients/client-ssm/src/commands/UpdateAssociationStatusCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAssociationStatusRequest, UpdateAssociationStatusResult } from "../models/models_1"; +import type { UpdateAssociationStatusRequest, UpdateAssociationStatusResult } from "../models/models_1"; import { UpdateAssociationStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateDocumentCommand.ts b/clients/client-ssm/src/commands/UpdateDocumentCommand.ts index aaa44c910a98e..65dc4d438c693 100644 --- a/clients/client-ssm/src/commands/UpdateDocumentCommand.ts +++ b/clients/client-ssm/src/commands/UpdateDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDocumentRequest, UpdateDocumentResult } from "../models/models_1"; +import type { UpdateDocumentRequest, UpdateDocumentResult } from "../models/models_1"; import { UpdateDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateDocumentDefaultVersionCommand.ts b/clients/client-ssm/src/commands/UpdateDocumentDefaultVersionCommand.ts index 322d0f937649c..d0bb4a138094b 100644 --- a/clients/client-ssm/src/commands/UpdateDocumentDefaultVersionCommand.ts +++ b/clients/client-ssm/src/commands/UpdateDocumentDefaultVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDocumentDefaultVersionRequest, UpdateDocumentDefaultVersionResult } from "../models/models_1"; +import type { UpdateDocumentDefaultVersionRequest, UpdateDocumentDefaultVersionResult } from "../models/models_1"; import { UpdateDocumentDefaultVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateDocumentMetadataCommand.ts b/clients/client-ssm/src/commands/UpdateDocumentMetadataCommand.ts index 4e7cebe968470..8280d2f8fb617 100644 --- a/clients/client-ssm/src/commands/UpdateDocumentMetadataCommand.ts +++ b/clients/client-ssm/src/commands/UpdateDocumentMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDocumentMetadataRequest, UpdateDocumentMetadataResponse } from "../models/models_1"; +import type { UpdateDocumentMetadataRequest, UpdateDocumentMetadataResponse } from "../models/models_1"; import { UpdateDocumentMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateMaintenanceWindowCommand.ts b/clients/client-ssm/src/commands/UpdateMaintenanceWindowCommand.ts index 721146f03c9ce..e1f3dfdc8bacd 100644 --- a/clients/client-ssm/src/commands/UpdateMaintenanceWindowCommand.ts +++ b/clients/client-ssm/src/commands/UpdateMaintenanceWindowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMaintenanceWindowRequest, UpdateMaintenanceWindowResult } from "../models/models_1"; +import type { UpdateMaintenanceWindowRequest, UpdateMaintenanceWindowResult } from "../models/models_1"; import { UpdateMaintenanceWindow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateMaintenanceWindowTargetCommand.ts b/clients/client-ssm/src/commands/UpdateMaintenanceWindowTargetCommand.ts index e9e79d1931e33..f9e151e470707 100644 --- a/clients/client-ssm/src/commands/UpdateMaintenanceWindowTargetCommand.ts +++ b/clients/client-ssm/src/commands/UpdateMaintenanceWindowTargetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMaintenanceWindowTargetRequest, UpdateMaintenanceWindowTargetResult } from "../models/models_1"; +import type { UpdateMaintenanceWindowTargetRequest, UpdateMaintenanceWindowTargetResult } from "../models/models_1"; import { UpdateMaintenanceWindowTarget } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateMaintenanceWindowTaskCommand.ts b/clients/client-ssm/src/commands/UpdateMaintenanceWindowTaskCommand.ts index e014b6a46b158..530ce55061a36 100644 --- a/clients/client-ssm/src/commands/UpdateMaintenanceWindowTaskCommand.ts +++ b/clients/client-ssm/src/commands/UpdateMaintenanceWindowTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMaintenanceWindowTaskRequest, UpdateMaintenanceWindowTaskResult } from "../models/models_1"; +import type { UpdateMaintenanceWindowTaskRequest, UpdateMaintenanceWindowTaskResult } from "../models/models_1"; import { UpdateMaintenanceWindowTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateManagedInstanceRoleCommand.ts b/clients/client-ssm/src/commands/UpdateManagedInstanceRoleCommand.ts index 35ac9e0eb0937..cb880eb84ed09 100644 --- a/clients/client-ssm/src/commands/UpdateManagedInstanceRoleCommand.ts +++ b/clients/client-ssm/src/commands/UpdateManagedInstanceRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateManagedInstanceRoleRequest, UpdateManagedInstanceRoleResult } from "../models/models_1"; +import type { UpdateManagedInstanceRoleRequest, UpdateManagedInstanceRoleResult } from "../models/models_1"; import { UpdateManagedInstanceRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateOpsItemCommand.ts b/clients/client-ssm/src/commands/UpdateOpsItemCommand.ts index 5ce6d0797aafe..97229a694b78c 100644 --- a/clients/client-ssm/src/commands/UpdateOpsItemCommand.ts +++ b/clients/client-ssm/src/commands/UpdateOpsItemCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOpsItemRequest, UpdateOpsItemResponse } from "../models/models_1"; +import type { UpdateOpsItemRequest, UpdateOpsItemResponse } from "../models/models_1"; import { UpdateOpsItem } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateOpsMetadataCommand.ts b/clients/client-ssm/src/commands/UpdateOpsMetadataCommand.ts index ce4fe0d110fb8..bf82c51c2450d 100644 --- a/clients/client-ssm/src/commands/UpdateOpsMetadataCommand.ts +++ b/clients/client-ssm/src/commands/UpdateOpsMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOpsMetadataRequest, UpdateOpsMetadataResult } from "../models/models_1"; +import type { UpdateOpsMetadataRequest, UpdateOpsMetadataResult } from "../models/models_1"; import { UpdateOpsMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdatePatchBaselineCommand.ts b/clients/client-ssm/src/commands/UpdatePatchBaselineCommand.ts index f11122869bcb4..4b94984a97fa3 100644 --- a/clients/client-ssm/src/commands/UpdatePatchBaselineCommand.ts +++ b/clients/client-ssm/src/commands/UpdatePatchBaselineCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePatchBaselineRequest, UpdatePatchBaselineResult } from "../models/models_1"; +import type { UpdatePatchBaselineRequest, UpdatePatchBaselineResult } from "../models/models_1"; import { UpdatePatchBaseline } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateResourceDataSyncCommand.ts b/clients/client-ssm/src/commands/UpdateResourceDataSyncCommand.ts index e2aade5c7f717..3c14586c4ad8e 100644 --- a/clients/client-ssm/src/commands/UpdateResourceDataSyncCommand.ts +++ b/clients/client-ssm/src/commands/UpdateResourceDataSyncCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResourceDataSyncRequest, UpdateResourceDataSyncResult } from "../models/models_1"; +import type { UpdateResourceDataSyncRequest, UpdateResourceDataSyncResult } from "../models/models_1"; import { UpdateResourceDataSync } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/commands/UpdateServiceSettingCommand.ts b/clients/client-ssm/src/commands/UpdateServiceSettingCommand.ts index ca30f14ed4664..d199c0e9cb9e8 100644 --- a/clients/client-ssm/src/commands/UpdateServiceSettingCommand.ts +++ b/clients/client-ssm/src/commands/UpdateServiceSettingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceSettingRequest, UpdateServiceSettingResult } from "../models/models_1"; +import type { UpdateServiceSettingRequest, UpdateServiceSettingResult } from "../models/models_1"; import { UpdateServiceSetting } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public diff --git a/clients/client-ssm/src/endpoint/EndpointParameters.ts b/clients/client-ssm/src/endpoint/EndpointParameters.ts index 3b3b8a48ccd66..977a3d1a7708b 100644 --- a/clients/client-ssm/src/endpoint/EndpointParameters.ts +++ b/clients/client-ssm/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-ssm/src/endpoint/endpointResolver.ts b/clients/client-ssm/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-ssm/src/endpoint/endpointResolver.ts +++ b/clients/client-ssm/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-ssm/src/extensionConfiguration.ts b/clients/client-ssm/src/extensionConfiguration.ts index ebab648805283..422d91d556903 100644 --- a/clients/client-ssm/src/extensionConfiguration.ts +++ b/clients/client-ssm/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-ssm/src/models/SSMServiceException.ts b/clients/client-ssm/src/models/SSMServiceException.ts index d43d7460fac3d..e9fe2bde1154a 100644 --- a/clients/client-ssm/src/models/SSMServiceException.ts +++ b/clients/client-ssm/src/models/SSMServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-ssm/src/models/errors.ts b/clients/client-ssm/src/models/errors.ts index a682497a3fe97..7c14f9386fc39 100644 --- a/clients/client-ssm/src/models/errors.ts +++ b/clients/client-ssm/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SSMServiceException as __BaseException } from "./SSMServiceException"; diff --git a/clients/client-ssm/src/pagination/DescribeActivationsPaginator.ts b/clients/client-ssm/src/pagination/DescribeActivationsPaginator.ts index e2f265281ddd6..b970e8eedd4f4 100644 --- a/clients/client-ssm/src/pagination/DescribeActivationsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeActivationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeActivationsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeAssociationExecutionTargetsPaginator.ts b/clients/client-ssm/src/pagination/DescribeAssociationExecutionTargetsPaginator.ts index a182c48662da9..461d5ff2407fc 100644 --- a/clients/client-ssm/src/pagination/DescribeAssociationExecutionTargetsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeAssociationExecutionTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAssociationExecutionTargetsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeAssociationExecutionsPaginator.ts b/clients/client-ssm/src/pagination/DescribeAssociationExecutionsPaginator.ts index 5e28116cac61d..e6ff1a22a79b3 100644 --- a/clients/client-ssm/src/pagination/DescribeAssociationExecutionsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeAssociationExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAssociationExecutionsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeAutomationExecutionsPaginator.ts b/clients/client-ssm/src/pagination/DescribeAutomationExecutionsPaginator.ts index 277a2249feb09..dd7962cdffa25 100644 --- a/clients/client-ssm/src/pagination/DescribeAutomationExecutionsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeAutomationExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAutomationExecutionsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeAutomationStepExecutionsPaginator.ts b/clients/client-ssm/src/pagination/DescribeAutomationStepExecutionsPaginator.ts index 75ff93c9369c1..a90bd98f5f278 100644 --- a/clients/client-ssm/src/pagination/DescribeAutomationStepExecutionsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeAutomationStepExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAutomationStepExecutionsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeAvailablePatchesPaginator.ts b/clients/client-ssm/src/pagination/DescribeAvailablePatchesPaginator.ts index 6e6fb7ce4a9b0..1b1dd07f8f50b 100644 --- a/clients/client-ssm/src/pagination/DescribeAvailablePatchesPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeAvailablePatchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeAvailablePatchesCommand, diff --git a/clients/client-ssm/src/pagination/DescribeEffectiveInstanceAssociationsPaginator.ts b/clients/client-ssm/src/pagination/DescribeEffectiveInstanceAssociationsPaginator.ts index d145a63d26913..c3f15e9772a7d 100644 --- a/clients/client-ssm/src/pagination/DescribeEffectiveInstanceAssociationsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeEffectiveInstanceAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEffectiveInstanceAssociationsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.ts b/clients/client-ssm/src/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.ts index 08dd76f296505..e72e1777f9043 100644 --- a/clients/client-ssm/src/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeEffectivePatchesForPatchBaselinePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeEffectivePatchesForPatchBaselineCommand, diff --git a/clients/client-ssm/src/pagination/DescribeInstanceAssociationsStatusPaginator.ts b/clients/client-ssm/src/pagination/DescribeInstanceAssociationsStatusPaginator.ts index 9884f8a870d2f..23865a69ff401 100644 --- a/clients/client-ssm/src/pagination/DescribeInstanceAssociationsStatusPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeInstanceAssociationsStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceAssociationsStatusCommand, diff --git a/clients/client-ssm/src/pagination/DescribeInstanceInformationPaginator.ts b/clients/client-ssm/src/pagination/DescribeInstanceInformationPaginator.ts index 035193985a103..631f594da5616 100644 --- a/clients/client-ssm/src/pagination/DescribeInstanceInformationPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeInstanceInformationPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstanceInformationCommand, diff --git a/clients/client-ssm/src/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.ts b/clients/client-ssm/src/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.ts index d80c2679f00a8..58773340ca2a3 100644 --- a/clients/client-ssm/src/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeInstancePatchStatesForPatchGroupPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstancePatchStatesForPatchGroupCommand, diff --git a/clients/client-ssm/src/pagination/DescribeInstancePatchStatesPaginator.ts b/clients/client-ssm/src/pagination/DescribeInstancePatchStatesPaginator.ts index 4df51e6feb71f..0b7977f6a5af9 100644 --- a/clients/client-ssm/src/pagination/DescribeInstancePatchStatesPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeInstancePatchStatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstancePatchStatesCommand, diff --git a/clients/client-ssm/src/pagination/DescribeInstancePatchesPaginator.ts b/clients/client-ssm/src/pagination/DescribeInstancePatchesPaginator.ts index 2db44994b5758..4d00b69234034 100644 --- a/clients/client-ssm/src/pagination/DescribeInstancePatchesPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeInstancePatchesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstancePatchesCommand, diff --git a/clients/client-ssm/src/pagination/DescribeInstancePropertiesPaginator.ts b/clients/client-ssm/src/pagination/DescribeInstancePropertiesPaginator.ts index dd9585a5e9ec5..637b19bdcf327 100644 --- a/clients/client-ssm/src/pagination/DescribeInstancePropertiesPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeInstancePropertiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInstancePropertiesCommand, diff --git a/clients/client-ssm/src/pagination/DescribeInventoryDeletionsPaginator.ts b/clients/client-ssm/src/pagination/DescribeInventoryDeletionsPaginator.ts index b869d13c1e2a8..3377e326e8043 100644 --- a/clients/client-ssm/src/pagination/DescribeInventoryDeletionsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeInventoryDeletionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeInventoryDeletionsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.ts b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.ts index fda2a4ec13388..b5c99da32aa95 100644 --- a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionTaskInvocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMaintenanceWindowExecutionTaskInvocationsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.ts b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.ts index 0e1fa2613d786..7e9d6416e49e8 100644 --- a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMaintenanceWindowExecutionTasksCommand, diff --git a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionsPaginator.ts b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionsPaginator.ts index f7f4738a309cc..0018dbb9641dd 100644 --- a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMaintenanceWindowExecutionsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowSchedulePaginator.ts b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowSchedulePaginator.ts index cdc445d380d00..85f22a904bcc9 100644 --- a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowSchedulePaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowSchedulePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMaintenanceWindowScheduleCommand, diff --git a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowTargetsPaginator.ts b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowTargetsPaginator.ts index 053ee9f56c634..e25fcb36a9945 100644 --- a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowTargetsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMaintenanceWindowTargetsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowTasksPaginator.ts b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowTasksPaginator.ts index 777a3fe1b93ed..ed84531f7d41c 100644 --- a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowTasksPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMaintenanceWindowTasksCommand, diff --git a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowsForTargetPaginator.ts b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowsForTargetPaginator.ts index 0cddd3a362b77..aad8ba9b6dad7 100644 --- a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowsForTargetPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowsForTargetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMaintenanceWindowsForTargetCommand, diff --git a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowsPaginator.ts b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowsPaginator.ts index 98f4c6b3daa70..4f6683c771b50 100644 --- a/clients/client-ssm/src/pagination/DescribeMaintenanceWindowsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeMaintenanceWindowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeMaintenanceWindowsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeOpsItemsPaginator.ts b/clients/client-ssm/src/pagination/DescribeOpsItemsPaginator.ts index 0ba4bec95d8ae..cbb37c2fab1b0 100644 --- a/clients/client-ssm/src/pagination/DescribeOpsItemsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeOpsItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeOpsItemsCommand, diff --git a/clients/client-ssm/src/pagination/DescribeParametersPaginator.ts b/clients/client-ssm/src/pagination/DescribeParametersPaginator.ts index b8ab83fc8b45d..ea0c1de7e66c0 100644 --- a/clients/client-ssm/src/pagination/DescribeParametersPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeParametersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeParametersCommand, diff --git a/clients/client-ssm/src/pagination/DescribePatchBaselinesPaginator.ts b/clients/client-ssm/src/pagination/DescribePatchBaselinesPaginator.ts index 56474d6260636..bb596d42fa332 100644 --- a/clients/client-ssm/src/pagination/DescribePatchBaselinesPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribePatchBaselinesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePatchBaselinesCommand, diff --git a/clients/client-ssm/src/pagination/DescribePatchGroupsPaginator.ts b/clients/client-ssm/src/pagination/DescribePatchGroupsPaginator.ts index d74a7c928ab7c..9432a467dd8dc 100644 --- a/clients/client-ssm/src/pagination/DescribePatchGroupsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribePatchGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePatchGroupsCommand, diff --git a/clients/client-ssm/src/pagination/DescribePatchPropertiesPaginator.ts b/clients/client-ssm/src/pagination/DescribePatchPropertiesPaginator.ts index c9312d6f87fb2..bd246de73cbf3 100644 --- a/clients/client-ssm/src/pagination/DescribePatchPropertiesPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribePatchPropertiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribePatchPropertiesCommand, diff --git a/clients/client-ssm/src/pagination/DescribeSessionsPaginator.ts b/clients/client-ssm/src/pagination/DescribeSessionsPaginator.ts index 7017210a51540..c38f6ab16643d 100644 --- a/clients/client-ssm/src/pagination/DescribeSessionsPaginator.ts +++ b/clients/client-ssm/src/pagination/DescribeSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeSessionsCommand, diff --git a/clients/client-ssm/src/pagination/GetInventoryPaginator.ts b/clients/client-ssm/src/pagination/GetInventoryPaginator.ts index 454d8586f4b01..96a85b461ba45 100644 --- a/clients/client-ssm/src/pagination/GetInventoryPaginator.ts +++ b/clients/client-ssm/src/pagination/GetInventoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetInventoryCommand, diff --git a/clients/client-ssm/src/pagination/GetInventorySchemaPaginator.ts b/clients/client-ssm/src/pagination/GetInventorySchemaPaginator.ts index cff3114a065f3..d34d0f263259a 100644 --- a/clients/client-ssm/src/pagination/GetInventorySchemaPaginator.ts +++ b/clients/client-ssm/src/pagination/GetInventorySchemaPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetInventorySchemaCommand, diff --git a/clients/client-ssm/src/pagination/GetOpsSummaryPaginator.ts b/clients/client-ssm/src/pagination/GetOpsSummaryPaginator.ts index be0bd01f37892..f425b30ef089f 100644 --- a/clients/client-ssm/src/pagination/GetOpsSummaryPaginator.ts +++ b/clients/client-ssm/src/pagination/GetOpsSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetOpsSummaryCommand, diff --git a/clients/client-ssm/src/pagination/GetParameterHistoryPaginator.ts b/clients/client-ssm/src/pagination/GetParameterHistoryPaginator.ts index f4e61050d4b5e..85fc7b580d2fb 100644 --- a/clients/client-ssm/src/pagination/GetParameterHistoryPaginator.ts +++ b/clients/client-ssm/src/pagination/GetParameterHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetParameterHistoryCommand, diff --git a/clients/client-ssm/src/pagination/GetParametersByPathPaginator.ts b/clients/client-ssm/src/pagination/GetParametersByPathPaginator.ts index 488c73a276a23..901519fa878e5 100644 --- a/clients/client-ssm/src/pagination/GetParametersByPathPaginator.ts +++ b/clients/client-ssm/src/pagination/GetParametersByPathPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetParametersByPathCommand, diff --git a/clients/client-ssm/src/pagination/GetResourcePoliciesPaginator.ts b/clients/client-ssm/src/pagination/GetResourcePoliciesPaginator.ts index 888bbd6299c6a..02fc7ffcbc757 100644 --- a/clients/client-ssm/src/pagination/GetResourcePoliciesPaginator.ts +++ b/clients/client-ssm/src/pagination/GetResourcePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetResourcePoliciesCommand, diff --git a/clients/client-ssm/src/pagination/Interfaces.ts b/clients/client-ssm/src/pagination/Interfaces.ts index d291a4ce4082e..ba572b882d720 100644 --- a/clients/client-ssm/src/pagination/Interfaces.ts +++ b/clients/client-ssm/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SSMClient } from "../SSMClient"; diff --git a/clients/client-ssm/src/pagination/ListAssociationVersionsPaginator.ts b/clients/client-ssm/src/pagination/ListAssociationVersionsPaginator.ts index 98ee47b530830..35e68dc168952 100644 --- a/clients/client-ssm/src/pagination/ListAssociationVersionsPaginator.ts +++ b/clients/client-ssm/src/pagination/ListAssociationVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssociationVersionsCommand, diff --git a/clients/client-ssm/src/pagination/ListAssociationsPaginator.ts b/clients/client-ssm/src/pagination/ListAssociationsPaginator.ts index b2f525feaea84..e49cba52e83d6 100644 --- a/clients/client-ssm/src/pagination/ListAssociationsPaginator.ts +++ b/clients/client-ssm/src/pagination/ListAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssociationsCommand, diff --git a/clients/client-ssm/src/pagination/ListCommandInvocationsPaginator.ts b/clients/client-ssm/src/pagination/ListCommandInvocationsPaginator.ts index 30009010b31d3..71659cc8cd309 100644 --- a/clients/client-ssm/src/pagination/ListCommandInvocationsPaginator.ts +++ b/clients/client-ssm/src/pagination/ListCommandInvocationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCommandInvocationsCommand, diff --git a/clients/client-ssm/src/pagination/ListCommandsPaginator.ts b/clients/client-ssm/src/pagination/ListCommandsPaginator.ts index bc49512778927..eb4b1101127ad 100644 --- a/clients/client-ssm/src/pagination/ListCommandsPaginator.ts +++ b/clients/client-ssm/src/pagination/ListCommandsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCommandsCommand, diff --git a/clients/client-ssm/src/pagination/ListComplianceItemsPaginator.ts b/clients/client-ssm/src/pagination/ListComplianceItemsPaginator.ts index f0ab1109779cd..1590c8c3086da 100644 --- a/clients/client-ssm/src/pagination/ListComplianceItemsPaginator.ts +++ b/clients/client-ssm/src/pagination/ListComplianceItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComplianceItemsCommand, diff --git a/clients/client-ssm/src/pagination/ListComplianceSummariesPaginator.ts b/clients/client-ssm/src/pagination/ListComplianceSummariesPaginator.ts index 3dd54600bd301..5de65c12343c9 100644 --- a/clients/client-ssm/src/pagination/ListComplianceSummariesPaginator.ts +++ b/clients/client-ssm/src/pagination/ListComplianceSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListComplianceSummariesCommand, diff --git a/clients/client-ssm/src/pagination/ListDocumentVersionsPaginator.ts b/clients/client-ssm/src/pagination/ListDocumentVersionsPaginator.ts index edd948c9188d2..56d3c57180095 100644 --- a/clients/client-ssm/src/pagination/ListDocumentVersionsPaginator.ts +++ b/clients/client-ssm/src/pagination/ListDocumentVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDocumentVersionsCommand, diff --git a/clients/client-ssm/src/pagination/ListDocumentsPaginator.ts b/clients/client-ssm/src/pagination/ListDocumentsPaginator.ts index ab116146c2102..ff97a83c92ead 100644 --- a/clients/client-ssm/src/pagination/ListDocumentsPaginator.ts +++ b/clients/client-ssm/src/pagination/ListDocumentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDocumentsCommand, diff --git a/clients/client-ssm/src/pagination/ListNodesPaginator.ts b/clients/client-ssm/src/pagination/ListNodesPaginator.ts index 154f2fb018ad7..10d1f80368ca8 100644 --- a/clients/client-ssm/src/pagination/ListNodesPaginator.ts +++ b/clients/client-ssm/src/pagination/ListNodesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNodesCommand, ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand"; import { SSMClient } from "../SSMClient"; diff --git a/clients/client-ssm/src/pagination/ListNodesSummaryPaginator.ts b/clients/client-ssm/src/pagination/ListNodesSummaryPaginator.ts index 75aa4f1d76cd5..23ecd341b47d8 100644 --- a/clients/client-ssm/src/pagination/ListNodesSummaryPaginator.ts +++ b/clients/client-ssm/src/pagination/ListNodesSummaryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNodesSummaryCommand, diff --git a/clients/client-ssm/src/pagination/ListOpsItemEventsPaginator.ts b/clients/client-ssm/src/pagination/ListOpsItemEventsPaginator.ts index fc2aa78378cb0..1d95788198976 100644 --- a/clients/client-ssm/src/pagination/ListOpsItemEventsPaginator.ts +++ b/clients/client-ssm/src/pagination/ListOpsItemEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOpsItemEventsCommand, diff --git a/clients/client-ssm/src/pagination/ListOpsItemRelatedItemsPaginator.ts b/clients/client-ssm/src/pagination/ListOpsItemRelatedItemsPaginator.ts index a731ef1e59188..5e03f2e59a592 100644 --- a/clients/client-ssm/src/pagination/ListOpsItemRelatedItemsPaginator.ts +++ b/clients/client-ssm/src/pagination/ListOpsItemRelatedItemsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOpsItemRelatedItemsCommand, diff --git a/clients/client-ssm/src/pagination/ListOpsMetadataPaginator.ts b/clients/client-ssm/src/pagination/ListOpsMetadataPaginator.ts index 778d0dd84e9f7..58b4275b9f0b1 100644 --- a/clients/client-ssm/src/pagination/ListOpsMetadataPaginator.ts +++ b/clients/client-ssm/src/pagination/ListOpsMetadataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOpsMetadataCommand, diff --git a/clients/client-ssm/src/pagination/ListResourceComplianceSummariesPaginator.ts b/clients/client-ssm/src/pagination/ListResourceComplianceSummariesPaginator.ts index 6e58da15c47ca..fdc0327de96d0 100644 --- a/clients/client-ssm/src/pagination/ListResourceComplianceSummariesPaginator.ts +++ b/clients/client-ssm/src/pagination/ListResourceComplianceSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceComplianceSummariesCommand, diff --git a/clients/client-ssm/src/pagination/ListResourceDataSyncPaginator.ts b/clients/client-ssm/src/pagination/ListResourceDataSyncPaginator.ts index 6b7aa7a5dc2e9..614b5103ebe28 100644 --- a/clients/client-ssm/src/pagination/ListResourceDataSyncPaginator.ts +++ b/clients/client-ssm/src/pagination/ListResourceDataSyncPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceDataSyncCommand, diff --git a/clients/client-ssm/src/runtimeConfig.browser.ts b/clients/client-ssm/src/runtimeConfig.browser.ts index e67db495e67d0..b8d635745ac80 100644 --- a/clients/client-ssm/src/runtimeConfig.browser.ts +++ b/clients/client-ssm/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMClientConfig } from "./SSMClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SSMClientConfig } from "./SSMClient"; /** * @internal diff --git a/clients/client-ssm/src/runtimeConfig.native.ts b/clients/client-ssm/src/runtimeConfig.native.ts index 888c77390c540..54a3c804b1967 100644 --- a/clients/client-ssm/src/runtimeConfig.native.ts +++ b/clients/client-ssm/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SSMClientConfig } from "./SSMClient"; +import type { SSMClientConfig } from "./SSMClient"; /** * @internal diff --git a/clients/client-ssm/src/runtimeConfig.shared.ts b/clients/client-ssm/src/runtimeConfig.shared.ts index c18f5fdb42f2d..bc8e809a10b15 100644 --- a/clients/client-ssm/src/runtimeConfig.shared.ts +++ b/clients/client-ssm/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSSMHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SSMClientConfig } from "./SSMClient"; +import type { SSMClientConfig } from "./SSMClient"; /** * @internal diff --git a/clients/client-ssm/src/runtimeConfig.ts b/clients/client-ssm/src/runtimeConfig.ts index 6e033ddfee388..549605bfa0193 100644 --- a/clients/client-ssm/src/runtimeConfig.ts +++ b/clients/client-ssm/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSMClientConfig } from "./SSMClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SSMClientConfig } from "./SSMClient"; /** * @internal diff --git a/clients/client-ssm/src/runtimeExtensions.ts b/clients/client-ssm/src/runtimeExtensions.ts index bbcd8155b6e7c..f1786c68d0f75 100644 --- a/clients/client-ssm/src/runtimeExtensions.ts +++ b/clients/client-ssm/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SSMExtensionConfiguration } from "./extensionConfiguration"; +import type { SSMExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-ssm/src/schemas/schemas_0.ts b/clients/client-ssm/src/schemas/schemas_0.ts index c60c6a3ce1568..520470aa30749 100644 --- a/clients/client-ssm/src/schemas/schemas_0.ts +++ b/clients/client-ssm/src/schemas/schemas_0.ts @@ -1464,7 +1464,7 @@ const n0 = "com.amazonaws.ssm"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-sso-admin/package.json b/clients/client-sso-admin/package.json index 8c34aed1e5c6e..32ea448a3eb9d 100644 --- a/clients/client-sso-admin/package.json +++ b/clients/client-sso-admin/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sso-admin/src/SSOAdmin.ts b/clients/client-sso-admin/src/SSOAdmin.ts index 49ab87da65dd6..1ac7efc7f5fa7 100644 --- a/clients/client-sso-admin/src/SSOAdmin.ts +++ b/clients/client-sso-admin/src/SSOAdmin.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AttachCustomerManagedPolicyReferenceToPermissionSetCommand, @@ -373,7 +373,7 @@ import { UpdateTrustedTokenIssuerCommandInput, UpdateTrustedTokenIssuerCommandOutput, } from "./commands/UpdateTrustedTokenIssuerCommand"; -import { SSOAdminClient, SSOAdminClientConfig } from "./SSOAdminClient"; +import { SSOAdminClient } from "./SSOAdminClient"; const commands = { AttachCustomerManagedPolicyReferenceToPermissionSetCommand, diff --git a/clients/client-sso-admin/src/SSOAdminClient.ts b/clients/client-sso-admin/src/SSOAdminClient.ts index fbf01fa2b6f3f..22c027aae5a58 100644 --- a/clients/client-sso-admin/src/SSOAdminClient.ts +++ b/clients/client-sso-admin/src/SSOAdminClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSSOAdminHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -328,7 +337,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sso-admin/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sso-admin/src/auth/httpAuthExtensionConfiguration.ts index c75659c043311..443575141cfae 100644 --- a/clients/client-sso-admin/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sso-admin/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SSOAdminHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SSOAdminHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sso-admin/src/auth/httpAuthSchemeProvider.ts b/clients/client-sso-admin/src/auth/httpAuthSchemeProvider.ts index f1f0ba783d182..922f464582438 100644 --- a/clients/client-sso-admin/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sso-admin/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SSOAdminClientConfig, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import { type SSOAdminClientResolvedConfig, SSOAdminClientConfig } from "../SSOAdminClient"; /** * @internal diff --git a/clients/client-sso-admin/src/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.ts index b5c72adcdaf6f..72d28ced70359 100644 --- a/clients/client-sso-admin/src/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/AttachCustomerManagedPolicyReferenceToPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AttachCustomerManagedPolicyReferenceToPermissionSetRequest, AttachCustomerManagedPolicyReferenceToPermissionSetResponse, } from "../models/models_0"; import { AttachCustomerManagedPolicyReferenceToPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/AttachManagedPolicyToPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/AttachManagedPolicyToPermissionSetCommand.ts index 47318fe356a74..ac34381878245 100644 --- a/clients/client-sso-admin/src/commands/AttachManagedPolicyToPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/AttachManagedPolicyToPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AttachManagedPolicyToPermissionSetRequest, AttachManagedPolicyToPermissionSetResponse, } from "../models/models_0"; import { AttachManagedPolicyToPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/CreateAccountAssignmentCommand.ts b/clients/client-sso-admin/src/commands/CreateAccountAssignmentCommand.ts index 5d6367d072cca..664758f40afa2 100644 --- a/clients/client-sso-admin/src/commands/CreateAccountAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateAccountAssignmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccountAssignmentRequest, CreateAccountAssignmentResponse } from "../models/models_0"; +import type { CreateAccountAssignmentRequest, CreateAccountAssignmentResponse } from "../models/models_0"; import { CreateAccountAssignment } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/CreateApplicationAssignmentCommand.ts b/clients/client-sso-admin/src/commands/CreateApplicationAssignmentCommand.ts index 0f95edae93089..4e3e984d5acbd 100644 --- a/clients/client-sso-admin/src/commands/CreateApplicationAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateApplicationAssignmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationAssignmentRequest, CreateApplicationAssignmentResponse } from "../models/models_0"; +import type { CreateApplicationAssignmentRequest, CreateApplicationAssignmentResponse } from "../models/models_0"; import { CreateApplicationAssignment } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/CreateApplicationCommand.ts b/clients/client-sso-admin/src/commands/CreateApplicationCommand.ts index 85cf54759aa25..b53419e84ed2e 100644 --- a/clients/client-sso-admin/src/commands/CreateApplicationCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; +import type { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0"; import { CreateApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/CreateInstanceAccessControlAttributeConfigurationCommand.ts b/clients/client-sso-admin/src/commands/CreateInstanceAccessControlAttributeConfigurationCommand.ts index de3e2ac4112fe..86f1437947a9f 100644 --- a/clients/client-sso-admin/src/commands/CreateInstanceAccessControlAttributeConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateInstanceAccessControlAttributeConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateInstanceAccessControlAttributeConfigurationRequest, CreateInstanceAccessControlAttributeConfigurationResponse, } from "../models/models_0"; import { CreateInstanceAccessControlAttributeConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/CreateInstanceCommand.ts b/clients/client-sso-admin/src/commands/CreateInstanceCommand.ts index 6ba80166715f5..e03c1fdc80519 100644 --- a/clients/client-sso-admin/src/commands/CreateInstanceCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInstanceRequest, CreateInstanceResponse } from "../models/models_0"; +import type { CreateInstanceRequest, CreateInstanceResponse } from "../models/models_0"; import { CreateInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/CreatePermissionSetCommand.ts b/clients/client-sso-admin/src/commands/CreatePermissionSetCommand.ts index 39b76c5aab69c..25532d823b1b7 100644 --- a/clients/client-sso-admin/src/commands/CreatePermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/CreatePermissionSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePermissionSetRequest, CreatePermissionSetResponse } from "../models/models_0"; +import type { CreatePermissionSetRequest, CreatePermissionSetResponse } from "../models/models_0"; import { CreatePermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/CreateTrustedTokenIssuerCommand.ts b/clients/client-sso-admin/src/commands/CreateTrustedTokenIssuerCommand.ts index d88c91d5872c3..7912810b861fd 100644 --- a/clients/client-sso-admin/src/commands/CreateTrustedTokenIssuerCommand.ts +++ b/clients/client-sso-admin/src/commands/CreateTrustedTokenIssuerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrustedTokenIssuerRequest, CreateTrustedTokenIssuerResponse } from "../models/models_0"; +import type { CreateTrustedTokenIssuerRequest, CreateTrustedTokenIssuerResponse } from "../models/models_0"; import { CreateTrustedTokenIssuer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteAccountAssignmentCommand.ts b/clients/client-sso-admin/src/commands/DeleteAccountAssignmentCommand.ts index fed9241696f68..c69e87dddf9ba 100644 --- a/clients/client-sso-admin/src/commands/DeleteAccountAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteAccountAssignmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountAssignmentRequest, DeleteAccountAssignmentResponse } from "../models/models_0"; +import type { DeleteAccountAssignmentRequest, DeleteAccountAssignmentResponse } from "../models/models_0"; import { DeleteAccountAssignment } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationAccessScopeCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationAccessScopeCommand.ts index d0834edb62180..b4b4478225e9e 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationAccessScopeCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationAccessScopeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationAccessScopeRequest } from "../models/models_0"; +import type { DeleteApplicationAccessScopeRequest } from "../models/models_0"; import { DeleteApplicationAccessScope } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationAssignmentCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationAssignmentCommand.ts index 209b936948190..e7a6117e1e5c1 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationAssignmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationAssignmentRequest, DeleteApplicationAssignmentResponse } from "../models/models_0"; +import type { DeleteApplicationAssignmentRequest, DeleteApplicationAssignmentResponse } from "../models/models_0"; import { DeleteApplicationAssignment } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationAuthenticationMethodCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationAuthenticationMethodCommand.ts index 0df49546e3ed2..ec2b7c9d75aa5 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationAuthenticationMethodCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationAuthenticationMethodCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationAuthenticationMethodRequest } from "../models/models_0"; +import type { DeleteApplicationAuthenticationMethodRequest } from "../models/models_0"; import { DeleteApplicationAuthenticationMethod } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationCommand.ts index e2617ac8d7e55..607a0e0e96f87 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; +import type { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0"; import { DeleteApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteApplicationGrantCommand.ts b/clients/client-sso-admin/src/commands/DeleteApplicationGrantCommand.ts index c4f6878b93202..9bfd981b80002 100644 --- a/clients/client-sso-admin/src/commands/DeleteApplicationGrantCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteApplicationGrantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteApplicationGrantRequest } from "../models/models_0"; +import type { DeleteApplicationGrantRequest } from "../models/models_0"; import { DeleteApplicationGrant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteInlinePolicyFromPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DeleteInlinePolicyFromPermissionSetCommand.ts index 9f4f1275e205d..05b003c63b568 100644 --- a/clients/client-sso-admin/src/commands/DeleteInlinePolicyFromPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteInlinePolicyFromPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteInlinePolicyFromPermissionSetRequest, DeleteInlinePolicyFromPermissionSetResponse, } from "../models/models_0"; import { DeleteInlinePolicyFromPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.ts b/clients/client-sso-admin/src/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.ts index 8feb15d7d1c3a..fe13f2cdf5dc5 100644 --- a/clients/client-sso-admin/src/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteInstanceAccessControlAttributeConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteInstanceAccessControlAttributeConfigurationRequest, DeleteInstanceAccessControlAttributeConfigurationResponse, } from "../models/models_0"; import { DeleteInstanceAccessControlAttributeConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteInstanceCommand.ts b/clients/client-sso-admin/src/commands/DeleteInstanceCommand.ts index 9033d18505024..7760a0f23f6f4 100644 --- a/clients/client-sso-admin/src/commands/DeleteInstanceCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInstanceRequest, DeleteInstanceResponse } from "../models/models_0"; +import type { DeleteInstanceRequest, DeleteInstanceResponse } from "../models/models_0"; import { DeleteInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeletePermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DeletePermissionSetCommand.ts index 60f0477c663bd..5c7d738e3daf5 100644 --- a/clients/client-sso-admin/src/commands/DeletePermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DeletePermissionSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePermissionSetRequest, DeletePermissionSetResponse } from "../models/models_0"; +import type { DeletePermissionSetRequest, DeletePermissionSetResponse } from "../models/models_0"; import { DeletePermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeletePermissionsBoundaryFromPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DeletePermissionsBoundaryFromPermissionSetCommand.ts index 6ac84efb5a6c1..d1e2f4355bd21 100644 --- a/clients/client-sso-admin/src/commands/DeletePermissionsBoundaryFromPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DeletePermissionsBoundaryFromPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeletePermissionsBoundaryFromPermissionSetRequest, DeletePermissionsBoundaryFromPermissionSetResponse, } from "../models/models_0"; import { DeletePermissionsBoundaryFromPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DeleteTrustedTokenIssuerCommand.ts b/clients/client-sso-admin/src/commands/DeleteTrustedTokenIssuerCommand.ts index e86100933bed1..7fac7177325ff 100644 --- a/clients/client-sso-admin/src/commands/DeleteTrustedTokenIssuerCommand.ts +++ b/clients/client-sso-admin/src/commands/DeleteTrustedTokenIssuerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrustedTokenIssuerRequest, DeleteTrustedTokenIssuerResponse } from "../models/models_0"; +import type { DeleteTrustedTokenIssuerRequest, DeleteTrustedTokenIssuerResponse } from "../models/models_0"; import { DeleteTrustedTokenIssuer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribeAccountAssignmentCreationStatusCommand.ts b/clients/client-sso-admin/src/commands/DescribeAccountAssignmentCreationStatusCommand.ts index 9f8638b9eca63..0d9453a1f6abc 100644 --- a/clients/client-sso-admin/src/commands/DescribeAccountAssignmentCreationStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeAccountAssignmentCreationStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeAccountAssignmentCreationStatusRequest, DescribeAccountAssignmentCreationStatusResponse, } from "../models/models_0"; import { DescribeAccountAssignmentCreationStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribeAccountAssignmentDeletionStatusCommand.ts b/clients/client-sso-admin/src/commands/DescribeAccountAssignmentDeletionStatusCommand.ts index 8895d29a296bf..aa6f71cc73f05 100644 --- a/clients/client-sso-admin/src/commands/DescribeAccountAssignmentDeletionStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeAccountAssignmentDeletionStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeAccountAssignmentDeletionStatusRequest, DescribeAccountAssignmentDeletionStatusResponse, } from "../models/models_0"; import { DescribeAccountAssignmentDeletionStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribeApplicationAssignmentCommand.ts b/clients/client-sso-admin/src/commands/DescribeApplicationAssignmentCommand.ts index 0f35c42af8438..58c7b49d8999b 100644 --- a/clients/client-sso-admin/src/commands/DescribeApplicationAssignmentCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeApplicationAssignmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeApplicationAssignmentRequest, DescribeApplicationAssignmentResponse } from "../models/models_0"; +import type { DescribeApplicationAssignmentRequest, DescribeApplicationAssignmentResponse } from "../models/models_0"; import { DescribeApplicationAssignment } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribeApplicationCommand.ts b/clients/client-sso-admin/src/commands/DescribeApplicationCommand.ts index 288c1f56a5b6f..50d85725537e7 100644 --- a/clients/client-sso-admin/src/commands/DescribeApplicationCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0"; +import type { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0"; import { DescribeApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribeApplicationProviderCommand.ts b/clients/client-sso-admin/src/commands/DescribeApplicationProviderCommand.ts index 9c8b6bc265d78..df3a20ebe6d48 100644 --- a/clients/client-sso-admin/src/commands/DescribeApplicationProviderCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeApplicationProviderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeApplicationProviderRequest, DescribeApplicationProviderResponse } from "../models/models_0"; +import type { DescribeApplicationProviderRequest, DescribeApplicationProviderResponse } from "../models/models_0"; import { DescribeApplicationProvider } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.ts b/clients/client-sso-admin/src/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.ts index 3a13e6d5af147..819006560622e 100644 --- a/clients/client-sso-admin/src/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeInstanceAccessControlAttributeConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeInstanceAccessControlAttributeConfigurationRequest, DescribeInstanceAccessControlAttributeConfigurationResponse, } from "../models/models_0"; import { DescribeInstanceAccessControlAttributeConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribeInstanceCommand.ts b/clients/client-sso-admin/src/commands/DescribeInstanceCommand.ts index 42d667dd5ad25..19326c6f4196d 100644 --- a/clients/client-sso-admin/src/commands/DescribeInstanceCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInstanceRequest, DescribeInstanceResponse } from "../models/models_0"; +import type { DescribeInstanceRequest, DescribeInstanceResponse } from "../models/models_0"; import { DescribeInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribePermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DescribePermissionSetCommand.ts index b8886c6ac8e30..b4ebe1ef41726 100644 --- a/clients/client-sso-admin/src/commands/DescribePermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribePermissionSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribePermissionSetRequest, DescribePermissionSetResponse } from "../models/models_0"; +import type { DescribePermissionSetRequest, DescribePermissionSetResponse } from "../models/models_0"; import { DescribePermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribePermissionSetProvisioningStatusCommand.ts b/clients/client-sso-admin/src/commands/DescribePermissionSetProvisioningStatusCommand.ts index 2108a6139e0a8..cbeb02c67e2ba 100644 --- a/clients/client-sso-admin/src/commands/DescribePermissionSetProvisioningStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribePermissionSetProvisioningStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribePermissionSetProvisioningStatusRequest, DescribePermissionSetProvisioningStatusResponse, } from "../models/models_0"; import { DescribePermissionSetProvisioningStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DescribeTrustedTokenIssuerCommand.ts b/clients/client-sso-admin/src/commands/DescribeTrustedTokenIssuerCommand.ts index 980cbb51ab721..03000ecdcd9fd 100644 --- a/clients/client-sso-admin/src/commands/DescribeTrustedTokenIssuerCommand.ts +++ b/clients/client-sso-admin/src/commands/DescribeTrustedTokenIssuerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrustedTokenIssuerRequest, DescribeTrustedTokenIssuerResponse } from "../models/models_0"; +import type { DescribeTrustedTokenIssuerRequest, DescribeTrustedTokenIssuerResponse } from "../models/models_0"; import { DescribeTrustedTokenIssuer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.ts index 4fa71fb2c4d10..2bb174827d4f0 100644 --- a/clients/client-sso-admin/src/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DetachCustomerManagedPolicyReferenceFromPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DetachCustomerManagedPolicyReferenceFromPermissionSetRequest, DetachCustomerManagedPolicyReferenceFromPermissionSetResponse, } from "../models/models_0"; import { DetachCustomerManagedPolicyReferenceFromPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/DetachManagedPolicyFromPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/DetachManagedPolicyFromPermissionSetCommand.ts index f1c831fdc53e0..10ebe20209069 100644 --- a/clients/client-sso-admin/src/commands/DetachManagedPolicyFromPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/DetachManagedPolicyFromPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DetachManagedPolicyFromPermissionSetRequest, DetachManagedPolicyFromPermissionSetResponse, } from "../models/models_0"; import { DetachManagedPolicyFromPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/GetApplicationAccessScopeCommand.ts b/clients/client-sso-admin/src/commands/GetApplicationAccessScopeCommand.ts index 7273bfe9540f1..cf6c439843211 100644 --- a/clients/client-sso-admin/src/commands/GetApplicationAccessScopeCommand.ts +++ b/clients/client-sso-admin/src/commands/GetApplicationAccessScopeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationAccessScopeRequest, GetApplicationAccessScopeResponse } from "../models/models_0"; +import type { GetApplicationAccessScopeRequest, GetApplicationAccessScopeResponse } from "../models/models_0"; import { GetApplicationAccessScope } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/GetApplicationAssignmentConfigurationCommand.ts b/clients/client-sso-admin/src/commands/GetApplicationAssignmentConfigurationCommand.ts index 8c1f10b25a269..591a7a20d1162 100644 --- a/clients/client-sso-admin/src/commands/GetApplicationAssignmentConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/GetApplicationAssignmentConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetApplicationAssignmentConfigurationRequest, GetApplicationAssignmentConfigurationResponse, } from "../models/models_0"; import { GetApplicationAssignmentConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/GetApplicationAuthenticationMethodCommand.ts b/clients/client-sso-admin/src/commands/GetApplicationAuthenticationMethodCommand.ts index 05770058a77b0..37406cc0f8c29 100644 --- a/clients/client-sso-admin/src/commands/GetApplicationAuthenticationMethodCommand.ts +++ b/clients/client-sso-admin/src/commands/GetApplicationAuthenticationMethodCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetApplicationAuthenticationMethodRequest, GetApplicationAuthenticationMethodResponse, } from "../models/models_0"; import { GetApplicationAuthenticationMethod } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/GetApplicationGrantCommand.ts b/clients/client-sso-admin/src/commands/GetApplicationGrantCommand.ts index 5067ff4ed410b..fd8c538b940e9 100644 --- a/clients/client-sso-admin/src/commands/GetApplicationGrantCommand.ts +++ b/clients/client-sso-admin/src/commands/GetApplicationGrantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetApplicationGrantRequest, GetApplicationGrantResponse } from "../models/models_0"; +import type { GetApplicationGrantRequest, GetApplicationGrantResponse } from "../models/models_0"; import { GetApplicationGrant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/GetApplicationSessionConfigurationCommand.ts b/clients/client-sso-admin/src/commands/GetApplicationSessionConfigurationCommand.ts index b66dc677a4c69..60735e931900a 100644 --- a/clients/client-sso-admin/src/commands/GetApplicationSessionConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/GetApplicationSessionConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetApplicationSessionConfigurationRequest, GetApplicationSessionConfigurationResponse, } from "../models/models_0"; import { GetApplicationSessionConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/GetInlinePolicyForPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/GetInlinePolicyForPermissionSetCommand.ts index f578034ce7c35..023b01a34cc17 100644 --- a/clients/client-sso-admin/src/commands/GetInlinePolicyForPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/GetInlinePolicyForPermissionSetCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInlinePolicyForPermissionSetRequest, GetInlinePolicyForPermissionSetResponse } from "../models/models_0"; +import type { + GetInlinePolicyForPermissionSetRequest, + GetInlinePolicyForPermissionSetResponse, +} from "../models/models_0"; import { GetInlinePolicyForPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/GetPermissionsBoundaryForPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/GetPermissionsBoundaryForPermissionSetCommand.ts index d7b761df348a2..4d94115612d9f 100644 --- a/clients/client-sso-admin/src/commands/GetPermissionsBoundaryForPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/GetPermissionsBoundaryForPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetPermissionsBoundaryForPermissionSetRequest, GetPermissionsBoundaryForPermissionSetResponse, } from "../models/models_0"; import { GetPermissionsBoundaryForPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListAccountAssignmentCreationStatusCommand.ts b/clients/client-sso-admin/src/commands/ListAccountAssignmentCreationStatusCommand.ts index 8594c0cfa4a69..05c596d05edf0 100644 --- a/clients/client-sso-admin/src/commands/ListAccountAssignmentCreationStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountAssignmentCreationStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAccountAssignmentCreationStatusRequest, ListAccountAssignmentCreationStatusResponse, } from "../models/models_0"; import { ListAccountAssignmentCreationStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListAccountAssignmentDeletionStatusCommand.ts b/clients/client-sso-admin/src/commands/ListAccountAssignmentDeletionStatusCommand.ts index 9a790ea1efae5..5cb577ee56aa3 100644 --- a/clients/client-sso-admin/src/commands/ListAccountAssignmentDeletionStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountAssignmentDeletionStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAccountAssignmentDeletionStatusRequest, ListAccountAssignmentDeletionStatusResponse, } from "../models/models_0"; import { ListAccountAssignmentDeletionStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListAccountAssignmentsCommand.ts b/clients/client-sso-admin/src/commands/ListAccountAssignmentsCommand.ts index 4fa4c0a578700..13ee355dfed52 100644 --- a/clients/client-sso-admin/src/commands/ListAccountAssignmentsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountAssignmentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountAssignmentsRequest, ListAccountAssignmentsResponse } from "../models/models_0"; +import type { ListAccountAssignmentsRequest, ListAccountAssignmentsResponse } from "../models/models_0"; import { ListAccountAssignments } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListAccountAssignmentsForPrincipalCommand.ts b/clients/client-sso-admin/src/commands/ListAccountAssignmentsForPrincipalCommand.ts index 9b7a8236f5807..52818a484631a 100644 --- a/clients/client-sso-admin/src/commands/ListAccountAssignmentsForPrincipalCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountAssignmentsForPrincipalCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAccountAssignmentsForPrincipalRequest, ListAccountAssignmentsForPrincipalResponse, } from "../models/models_0"; import { ListAccountAssignmentsForPrincipal } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListAccountsForProvisionedPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/ListAccountsForProvisionedPermissionSetCommand.ts index f0c8676d02bbc..55ebf0c039998 100644 --- a/clients/client-sso-admin/src/commands/ListAccountsForProvisionedPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/ListAccountsForProvisionedPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAccountsForProvisionedPermissionSetRequest, ListAccountsForProvisionedPermissionSetResponse, } from "../models/models_0"; import { ListAccountsForProvisionedPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListApplicationAccessScopesCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationAccessScopesCommand.ts index fd40763a4b178..f3e4818836499 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationAccessScopesCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationAccessScopesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationAccessScopesRequest, ListApplicationAccessScopesResponse } from "../models/models_0"; +import type { ListApplicationAccessScopesRequest, ListApplicationAccessScopesResponse } from "../models/models_0"; import { ListApplicationAccessScopes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListApplicationAssignmentsCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationAssignmentsCommand.ts index fa487b1ef0ec9..550b36b0af634 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationAssignmentsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationAssignmentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationAssignmentsRequest, ListApplicationAssignmentsResponse } from "../models/models_0"; +import type { ListApplicationAssignmentsRequest, ListApplicationAssignmentsResponse } from "../models/models_0"; import { ListApplicationAssignments } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListApplicationAssignmentsForPrincipalCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationAssignmentsForPrincipalCommand.ts index 0a7d9a90f98ee..d61d6b874fc6f 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationAssignmentsForPrincipalCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationAssignmentsForPrincipalCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListApplicationAssignmentsForPrincipalRequest, ListApplicationAssignmentsForPrincipalResponse, } from "../models/models_0"; import { ListApplicationAssignmentsForPrincipal } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListApplicationAuthenticationMethodsCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationAuthenticationMethodsCommand.ts index d3468c002b43d..33b164a788740 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationAuthenticationMethodsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationAuthenticationMethodsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListApplicationAuthenticationMethodsRequest, ListApplicationAuthenticationMethodsResponse, } from "../models/models_0"; import { ListApplicationAuthenticationMethods } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListApplicationGrantsCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationGrantsCommand.ts index 4626329cb9dab..af2642a4daa31 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationGrantsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationGrantsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationGrantsRequest, ListApplicationGrantsResponse } from "../models/models_0"; +import type { ListApplicationGrantsRequest, ListApplicationGrantsResponse } from "../models/models_0"; import { ListApplicationGrants } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListApplicationProvidersCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationProvidersCommand.ts index 2a9b2b89e63c9..a86badca448ef 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationProvidersCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationProvidersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationProvidersRequest, ListApplicationProvidersResponse } from "../models/models_0"; +import type { ListApplicationProvidersRequest, ListApplicationProvidersResponse } from "../models/models_0"; import { ListApplicationProviders } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListApplicationsCommand.ts b/clients/client-sso-admin/src/commands/ListApplicationsCommand.ts index 10cd9dce83324..8ba5622960fec 100644 --- a/clients/client-sso-admin/src/commands/ListApplicationsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListApplicationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; +import type { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0"; import { ListApplications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.ts index ae4085842ed55..c1a8444849f61 100644 --- a/clients/client-sso-admin/src/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/ListCustomerManagedPolicyReferencesInPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListCustomerManagedPolicyReferencesInPermissionSetRequest, ListCustomerManagedPolicyReferencesInPermissionSetResponse, } from "../models/models_0"; import { ListCustomerManagedPolicyReferencesInPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListInstancesCommand.ts b/clients/client-sso-admin/src/commands/ListInstancesCommand.ts index 487a140ae7d9b..eb0b49d20a74d 100644 --- a/clients/client-sso-admin/src/commands/ListInstancesCommand.ts +++ b/clients/client-sso-admin/src/commands/ListInstancesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstancesRequest, ListInstancesResponse } from "../models/models_0"; +import type { ListInstancesRequest, ListInstancesResponse } from "../models/models_0"; import { ListInstances } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListManagedPoliciesInPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/ListManagedPoliciesInPermissionSetCommand.ts index b421e4879c1ed..2ac9d680026e4 100644 --- a/clients/client-sso-admin/src/commands/ListManagedPoliciesInPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/ListManagedPoliciesInPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListManagedPoliciesInPermissionSetRequest, ListManagedPoliciesInPermissionSetResponse, } from "../models/models_0"; import { ListManagedPoliciesInPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListPermissionSetProvisioningStatusCommand.ts b/clients/client-sso-admin/src/commands/ListPermissionSetProvisioningStatusCommand.ts index 74d6de7d45366..5a3f2ea272683 100644 --- a/clients/client-sso-admin/src/commands/ListPermissionSetProvisioningStatusCommand.ts +++ b/clients/client-sso-admin/src/commands/ListPermissionSetProvisioningStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListPermissionSetProvisioningStatusRequest, ListPermissionSetProvisioningStatusResponse, } from "../models/models_0"; import { ListPermissionSetProvisioningStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListPermissionSetsCommand.ts b/clients/client-sso-admin/src/commands/ListPermissionSetsCommand.ts index 1d02dbeaaf930..d8e8e075385d8 100644 --- a/clients/client-sso-admin/src/commands/ListPermissionSetsCommand.ts +++ b/clients/client-sso-admin/src/commands/ListPermissionSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPermissionSetsRequest, ListPermissionSetsResponse } from "../models/models_0"; +import type { ListPermissionSetsRequest, ListPermissionSetsResponse } from "../models/models_0"; import { ListPermissionSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListPermissionSetsProvisionedToAccountCommand.ts b/clients/client-sso-admin/src/commands/ListPermissionSetsProvisionedToAccountCommand.ts index 188a5f06b4796..70f57fd51b49a 100644 --- a/clients/client-sso-admin/src/commands/ListPermissionSetsProvisionedToAccountCommand.ts +++ b/clients/client-sso-admin/src/commands/ListPermissionSetsProvisionedToAccountCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListPermissionSetsProvisionedToAccountRequest, ListPermissionSetsProvisionedToAccountResponse, } from "../models/models_0"; import { ListPermissionSetsProvisionedToAccount } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListTagsForResourceCommand.ts b/clients/client-sso-admin/src/commands/ListTagsForResourceCommand.ts index f2936fd5db88c..5a3c4611f3777 100644 --- a/clients/client-sso-admin/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-sso-admin/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ListTrustedTokenIssuersCommand.ts b/clients/client-sso-admin/src/commands/ListTrustedTokenIssuersCommand.ts index 213edab9b7adc..b4f6857ef4904 100644 --- a/clients/client-sso-admin/src/commands/ListTrustedTokenIssuersCommand.ts +++ b/clients/client-sso-admin/src/commands/ListTrustedTokenIssuersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrustedTokenIssuersRequest, ListTrustedTokenIssuersResponse } from "../models/models_0"; +import type { ListTrustedTokenIssuersRequest, ListTrustedTokenIssuersResponse } from "../models/models_0"; import { ListTrustedTokenIssuers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/ProvisionPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/ProvisionPermissionSetCommand.ts index e7c6310c5616c..0a743e96996c3 100644 --- a/clients/client-sso-admin/src/commands/ProvisionPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/ProvisionPermissionSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ProvisionPermissionSetRequest, ProvisionPermissionSetResponse } from "../models/models_0"; +import type { ProvisionPermissionSetRequest, ProvisionPermissionSetResponse } from "../models/models_0"; import { ProvisionPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/PutApplicationAccessScopeCommand.ts b/clients/client-sso-admin/src/commands/PutApplicationAccessScopeCommand.ts index 352b501a4ceb6..175e49104f85d 100644 --- a/clients/client-sso-admin/src/commands/PutApplicationAccessScopeCommand.ts +++ b/clients/client-sso-admin/src/commands/PutApplicationAccessScopeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutApplicationAccessScopeRequest } from "../models/models_0"; +import type { PutApplicationAccessScopeRequest } from "../models/models_0"; import { PutApplicationAccessScope } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/PutApplicationAssignmentConfigurationCommand.ts b/clients/client-sso-admin/src/commands/PutApplicationAssignmentConfigurationCommand.ts index 39ebfb0838e1a..dbc31ae937bc3 100644 --- a/clients/client-sso-admin/src/commands/PutApplicationAssignmentConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/PutApplicationAssignmentConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutApplicationAssignmentConfigurationRequest, PutApplicationAssignmentConfigurationResponse, } from "../models/models_0"; import { PutApplicationAssignmentConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/PutApplicationAuthenticationMethodCommand.ts b/clients/client-sso-admin/src/commands/PutApplicationAuthenticationMethodCommand.ts index 2ef426f34f68f..3d4983db67fb3 100644 --- a/clients/client-sso-admin/src/commands/PutApplicationAuthenticationMethodCommand.ts +++ b/clients/client-sso-admin/src/commands/PutApplicationAuthenticationMethodCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutApplicationAuthenticationMethodRequest } from "../models/models_0"; +import type { PutApplicationAuthenticationMethodRequest } from "../models/models_0"; import { PutApplicationAuthenticationMethod } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/PutApplicationGrantCommand.ts b/clients/client-sso-admin/src/commands/PutApplicationGrantCommand.ts index 9831302a9cabb..9f5993326a3bf 100644 --- a/clients/client-sso-admin/src/commands/PutApplicationGrantCommand.ts +++ b/clients/client-sso-admin/src/commands/PutApplicationGrantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutApplicationGrantRequest } from "../models/models_0"; +import type { PutApplicationGrantRequest } from "../models/models_0"; import { PutApplicationGrant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/PutApplicationSessionConfigurationCommand.ts b/clients/client-sso-admin/src/commands/PutApplicationSessionConfigurationCommand.ts index 66e6d1343cf32..e753e86c0cf22 100644 --- a/clients/client-sso-admin/src/commands/PutApplicationSessionConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/PutApplicationSessionConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutApplicationSessionConfigurationRequest, PutApplicationSessionConfigurationResponse, } from "../models/models_0"; import { PutApplicationSessionConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/PutInlinePolicyToPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/PutInlinePolicyToPermissionSetCommand.ts index 272e959a32896..743bc5760d098 100644 --- a/clients/client-sso-admin/src/commands/PutInlinePolicyToPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/PutInlinePolicyToPermissionSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutInlinePolicyToPermissionSetRequest, PutInlinePolicyToPermissionSetResponse } from "../models/models_0"; +import type { PutInlinePolicyToPermissionSetRequest, PutInlinePolicyToPermissionSetResponse } from "../models/models_0"; import { PutInlinePolicyToPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/PutPermissionsBoundaryToPermissionSetCommand.ts b/clients/client-sso-admin/src/commands/PutPermissionsBoundaryToPermissionSetCommand.ts index 12dba085d0636..46635e5be6c70 100644 --- a/clients/client-sso-admin/src/commands/PutPermissionsBoundaryToPermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/PutPermissionsBoundaryToPermissionSetCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { PutPermissionsBoundaryToPermissionSetRequest, PutPermissionsBoundaryToPermissionSetResponse, } from "../models/models_0"; import { PutPermissionsBoundaryToPermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/TagResourceCommand.ts b/clients/client-sso-admin/src/commands/TagResourceCommand.ts index ac867bad355cd..85f8057ab9f84 100644 --- a/clients/client-sso-admin/src/commands/TagResourceCommand.ts +++ b/clients/client-sso-admin/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/UntagResourceCommand.ts b/clients/client-sso-admin/src/commands/UntagResourceCommand.ts index 541a581fc8186..27af6a8813f3f 100644 --- a/clients/client-sso-admin/src/commands/UntagResourceCommand.ts +++ b/clients/client-sso-admin/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/UpdateApplicationCommand.ts b/clients/client-sso-admin/src/commands/UpdateApplicationCommand.ts index ed2ee03e088a7..e49b33477ab86 100644 --- a/clients/client-sso-admin/src/commands/UpdateApplicationCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdateApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; +import type { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0"; import { UpdateApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.ts b/clients/client-sso-admin/src/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.ts index e52a45ddd708f..40f28d6989bd1 100644 --- a/clients/client-sso-admin/src/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdateInstanceAccessControlAttributeConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateInstanceAccessControlAttributeConfigurationRequest, UpdateInstanceAccessControlAttributeConfigurationResponse, } from "../models/models_0"; import { UpdateInstanceAccessControlAttributeConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/UpdateInstanceCommand.ts b/clients/client-sso-admin/src/commands/UpdateInstanceCommand.ts index 6c71e6a1f3a94..7c52321eb739f 100644 --- a/clients/client-sso-admin/src/commands/UpdateInstanceCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdateInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInstanceRequest, UpdateInstanceResponse } from "../models/models_0"; +import type { UpdateInstanceRequest, UpdateInstanceResponse } from "../models/models_0"; import { UpdateInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/UpdatePermissionSetCommand.ts b/clients/client-sso-admin/src/commands/UpdatePermissionSetCommand.ts index e8dc8fa9a793f..b2c1cb6b82d3a 100644 --- a/clients/client-sso-admin/src/commands/UpdatePermissionSetCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdatePermissionSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePermissionSetRequest, UpdatePermissionSetResponse } from "../models/models_0"; +import type { UpdatePermissionSetRequest, UpdatePermissionSetResponse } from "../models/models_0"; import { UpdatePermissionSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/commands/UpdateTrustedTokenIssuerCommand.ts b/clients/client-sso-admin/src/commands/UpdateTrustedTokenIssuerCommand.ts index ee4f5db404f0a..972c26405e14b 100644 --- a/clients/client-sso-admin/src/commands/UpdateTrustedTokenIssuerCommand.ts +++ b/clients/client-sso-admin/src/commands/UpdateTrustedTokenIssuerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrustedTokenIssuerRequest, UpdateTrustedTokenIssuerResponse } from "../models/models_0"; +import type { UpdateTrustedTokenIssuerRequest, UpdateTrustedTokenIssuerResponse } from "../models/models_0"; import { UpdateTrustedTokenIssuer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOAdminClientResolvedConfig } from "../SSOAdminClient"; /** * @public diff --git a/clients/client-sso-admin/src/endpoint/EndpointParameters.ts b/clients/client-sso-admin/src/endpoint/EndpointParameters.ts index c8bdc0dbec9ee..d5957c5133059 100644 --- a/clients/client-sso-admin/src/endpoint/EndpointParameters.ts +++ b/clients/client-sso-admin/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sso-admin/src/endpoint/endpointResolver.ts b/clients/client-sso-admin/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sso-admin/src/endpoint/endpointResolver.ts +++ b/clients/client-sso-admin/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sso-admin/src/extensionConfiguration.ts b/clients/client-sso-admin/src/extensionConfiguration.ts index 69386f3fe6d8a..2f55ea079b478 100644 --- a/clients/client-sso-admin/src/extensionConfiguration.ts +++ b/clients/client-sso-admin/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sso-admin/src/models/SSOAdminServiceException.ts b/clients/client-sso-admin/src/models/SSOAdminServiceException.ts index c4189e98b227f..ab6235c156818 100644 --- a/clients/client-sso-admin/src/models/SSOAdminServiceException.ts +++ b/clients/client-sso-admin/src/models/SSOAdminServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sso-admin/src/models/errors.ts b/clients/client-sso-admin/src/models/errors.ts index 7c4951d7f661b..1cc9eb166bc48 100644 --- a/clients/client-sso-admin/src/models/errors.ts +++ b/clients/client-sso-admin/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessDeniedExceptionReason, diff --git a/clients/client-sso-admin/src/pagination/Interfaces.ts b/clients/client-sso-admin/src/pagination/Interfaces.ts index bf15b55f65504..708842b63354a 100644 --- a/clients/client-sso-admin/src/pagination/Interfaces.ts +++ b/clients/client-sso-admin/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SSOAdminClient } from "../SSOAdminClient"; diff --git a/clients/client-sso-admin/src/pagination/ListAccountAssignmentCreationStatusPaginator.ts b/clients/client-sso-admin/src/pagination/ListAccountAssignmentCreationStatusPaginator.ts index cbbe8ebec1e3f..cab87af123b8e 100644 --- a/clients/client-sso-admin/src/pagination/ListAccountAssignmentCreationStatusPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListAccountAssignmentCreationStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountAssignmentCreationStatusCommand, diff --git a/clients/client-sso-admin/src/pagination/ListAccountAssignmentDeletionStatusPaginator.ts b/clients/client-sso-admin/src/pagination/ListAccountAssignmentDeletionStatusPaginator.ts index dbe8ef1e825af..54b3cff8a42e0 100644 --- a/clients/client-sso-admin/src/pagination/ListAccountAssignmentDeletionStatusPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListAccountAssignmentDeletionStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountAssignmentDeletionStatusCommand, diff --git a/clients/client-sso-admin/src/pagination/ListAccountAssignmentsForPrincipalPaginator.ts b/clients/client-sso-admin/src/pagination/ListAccountAssignmentsForPrincipalPaginator.ts index 46a1ec196d926..9f78f7d2850cf 100644 --- a/clients/client-sso-admin/src/pagination/ListAccountAssignmentsForPrincipalPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListAccountAssignmentsForPrincipalPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountAssignmentsForPrincipalCommand, diff --git a/clients/client-sso-admin/src/pagination/ListAccountAssignmentsPaginator.ts b/clients/client-sso-admin/src/pagination/ListAccountAssignmentsPaginator.ts index c4a9509758b80..8d7c7f398db26 100644 --- a/clients/client-sso-admin/src/pagination/ListAccountAssignmentsPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListAccountAssignmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountAssignmentsCommand, diff --git a/clients/client-sso-admin/src/pagination/ListAccountsForProvisionedPermissionSetPaginator.ts b/clients/client-sso-admin/src/pagination/ListAccountsForProvisionedPermissionSetPaginator.ts index 5fbe174fa1129..558f938f6a441 100644 --- a/clients/client-sso-admin/src/pagination/ListAccountsForProvisionedPermissionSetPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListAccountsForProvisionedPermissionSetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountsForProvisionedPermissionSetCommand, diff --git a/clients/client-sso-admin/src/pagination/ListApplicationAccessScopesPaginator.ts b/clients/client-sso-admin/src/pagination/ListApplicationAccessScopesPaginator.ts index a3051dea30e96..619aca9658088 100644 --- a/clients/client-sso-admin/src/pagination/ListApplicationAccessScopesPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListApplicationAccessScopesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationAccessScopesCommand, diff --git a/clients/client-sso-admin/src/pagination/ListApplicationAssignmentsForPrincipalPaginator.ts b/clients/client-sso-admin/src/pagination/ListApplicationAssignmentsForPrincipalPaginator.ts index 553832485cc65..c1fb2702d659d 100644 --- a/clients/client-sso-admin/src/pagination/ListApplicationAssignmentsForPrincipalPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListApplicationAssignmentsForPrincipalPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationAssignmentsForPrincipalCommand, diff --git a/clients/client-sso-admin/src/pagination/ListApplicationAssignmentsPaginator.ts b/clients/client-sso-admin/src/pagination/ListApplicationAssignmentsPaginator.ts index ab1f8680296a5..19f85dfeb6d9b 100644 --- a/clients/client-sso-admin/src/pagination/ListApplicationAssignmentsPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListApplicationAssignmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationAssignmentsCommand, diff --git a/clients/client-sso-admin/src/pagination/ListApplicationAuthenticationMethodsPaginator.ts b/clients/client-sso-admin/src/pagination/ListApplicationAuthenticationMethodsPaginator.ts index 040adfacc08f1..cfd7e37f3359a 100644 --- a/clients/client-sso-admin/src/pagination/ListApplicationAuthenticationMethodsPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListApplicationAuthenticationMethodsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationAuthenticationMethodsCommand, diff --git a/clients/client-sso-admin/src/pagination/ListApplicationGrantsPaginator.ts b/clients/client-sso-admin/src/pagination/ListApplicationGrantsPaginator.ts index 63cecb1749e82..34b2ec7df9e2e 100644 --- a/clients/client-sso-admin/src/pagination/ListApplicationGrantsPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListApplicationGrantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationGrantsCommand, diff --git a/clients/client-sso-admin/src/pagination/ListApplicationProvidersPaginator.ts b/clients/client-sso-admin/src/pagination/ListApplicationProvidersPaginator.ts index b59451b5c699f..1f1bbcc3cfc9c 100644 --- a/clients/client-sso-admin/src/pagination/ListApplicationProvidersPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListApplicationProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationProvidersCommand, diff --git a/clients/client-sso-admin/src/pagination/ListApplicationsPaginator.ts b/clients/client-sso-admin/src/pagination/ListApplicationsPaginator.ts index 32b2db532c13d..cde7cfa35f8d4 100644 --- a/clients/client-sso-admin/src/pagination/ListApplicationsPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListApplicationsCommand, diff --git a/clients/client-sso-admin/src/pagination/ListCustomerManagedPolicyReferencesInPermissionSetPaginator.ts b/clients/client-sso-admin/src/pagination/ListCustomerManagedPolicyReferencesInPermissionSetPaginator.ts index b802ea8a718cd..bff4019d55312 100644 --- a/clients/client-sso-admin/src/pagination/ListCustomerManagedPolicyReferencesInPermissionSetPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListCustomerManagedPolicyReferencesInPermissionSetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCustomerManagedPolicyReferencesInPermissionSetCommand, diff --git a/clients/client-sso-admin/src/pagination/ListInstancesPaginator.ts b/clients/client-sso-admin/src/pagination/ListInstancesPaginator.ts index 512e9522eb4c7..e2758ba53daf2 100644 --- a/clients/client-sso-admin/src/pagination/ListInstancesPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstancesCommand, diff --git a/clients/client-sso-admin/src/pagination/ListManagedPoliciesInPermissionSetPaginator.ts b/clients/client-sso-admin/src/pagination/ListManagedPoliciesInPermissionSetPaginator.ts index 780d0fc549eaf..a87d5867debb3 100644 --- a/clients/client-sso-admin/src/pagination/ListManagedPoliciesInPermissionSetPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListManagedPoliciesInPermissionSetPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListManagedPoliciesInPermissionSetCommand, diff --git a/clients/client-sso-admin/src/pagination/ListPermissionSetProvisioningStatusPaginator.ts b/clients/client-sso-admin/src/pagination/ListPermissionSetProvisioningStatusPaginator.ts index fd0fba7a22215..5a1beb84b42bf 100644 --- a/clients/client-sso-admin/src/pagination/ListPermissionSetProvisioningStatusPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListPermissionSetProvisioningStatusPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPermissionSetProvisioningStatusCommand, diff --git a/clients/client-sso-admin/src/pagination/ListPermissionSetsPaginator.ts b/clients/client-sso-admin/src/pagination/ListPermissionSetsPaginator.ts index 0e658d454e85c..8787cbfaa86c5 100644 --- a/clients/client-sso-admin/src/pagination/ListPermissionSetsPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListPermissionSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPermissionSetsCommand, diff --git a/clients/client-sso-admin/src/pagination/ListPermissionSetsProvisionedToAccountPaginator.ts b/clients/client-sso-admin/src/pagination/ListPermissionSetsProvisionedToAccountPaginator.ts index 13a752651da07..20f9cf5548872 100644 --- a/clients/client-sso-admin/src/pagination/ListPermissionSetsProvisionedToAccountPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListPermissionSetsProvisionedToAccountPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPermissionSetsProvisionedToAccountCommand, diff --git a/clients/client-sso-admin/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-sso-admin/src/pagination/ListTagsForResourcePaginator.ts index 462f62f4e0546..cc8846524ae5c 100644 --- a/clients/client-sso-admin/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-sso-admin/src/pagination/ListTrustedTokenIssuersPaginator.ts b/clients/client-sso-admin/src/pagination/ListTrustedTokenIssuersPaginator.ts index 8572daac065fc..763ead08d3429 100644 --- a/clients/client-sso-admin/src/pagination/ListTrustedTokenIssuersPaginator.ts +++ b/clients/client-sso-admin/src/pagination/ListTrustedTokenIssuersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrustedTokenIssuersCommand, diff --git a/clients/client-sso-admin/src/runtimeConfig.browser.ts b/clients/client-sso-admin/src/runtimeConfig.browser.ts index ff86100c3709f..0dbf55cfcb187 100644 --- a/clients/client-sso-admin/src/runtimeConfig.browser.ts +++ b/clients/client-sso-admin/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSOAdminClientConfig } from "./SSOAdminClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SSOAdminClientConfig } from "./SSOAdminClient"; /** * @internal diff --git a/clients/client-sso-admin/src/runtimeConfig.native.ts b/clients/client-sso-admin/src/runtimeConfig.native.ts index 83958d926fb54..5941fae0cd43d 100644 --- a/clients/client-sso-admin/src/runtimeConfig.native.ts +++ b/clients/client-sso-admin/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SSOAdminClientConfig } from "./SSOAdminClient"; +import type { SSOAdminClientConfig } from "./SSOAdminClient"; /** * @internal diff --git a/clients/client-sso-admin/src/runtimeConfig.shared.ts b/clients/client-sso-admin/src/runtimeConfig.shared.ts index 3e66be573690f..0198e9d966bba 100644 --- a/clients/client-sso-admin/src/runtimeConfig.shared.ts +++ b/clients/client-sso-admin/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSSOAdminHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SSOAdminClientConfig } from "./SSOAdminClient"; +import type { SSOAdminClientConfig } from "./SSOAdminClient"; /** * @internal diff --git a/clients/client-sso-admin/src/runtimeConfig.ts b/clients/client-sso-admin/src/runtimeConfig.ts index b038db5b39211..d18845de53c59 100644 --- a/clients/client-sso-admin/src/runtimeConfig.ts +++ b/clients/client-sso-admin/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSOAdminClientConfig } from "./SSOAdminClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SSOAdminClientConfig } from "./SSOAdminClient"; /** * @internal diff --git a/clients/client-sso-admin/src/runtimeExtensions.ts b/clients/client-sso-admin/src/runtimeExtensions.ts index dc9d72d819c15..e41dc83105c57 100644 --- a/clients/client-sso-admin/src/runtimeExtensions.ts +++ b/clients/client-sso-admin/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SSOAdminExtensionConfiguration } from "./extensionConfiguration"; +import type { SSOAdminExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sso-admin/src/schemas/schemas_0.ts b/clients/client-sso-admin/src/schemas/schemas_0.ts index ff840a63eadf9..2d7e32ed0f411 100644 --- a/clients/client-sso-admin/src/schemas/schemas_0.ts +++ b/clients/client-sso-admin/src/schemas/schemas_0.ts @@ -388,7 +388,7 @@ const n0 = "com.amazonaws.ssoadmin"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-sso-oidc/package.json b/clients/client-sso-oidc/package.json index 82c96035c456e..47c55679afe3d 100644 --- a/clients/client-sso-oidc/package.json +++ b/clients/client-sso-oidc/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sso-oidc/src/SSOOIDC.ts b/clients/client-sso-oidc/src/SSOOIDC.ts index 32039a4f50f3b..e0da306e209d7 100644 --- a/clients/client-sso-oidc/src/SSOOIDC.ts +++ b/clients/client-sso-oidc/src/SSOOIDC.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateTokenCommand, CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand"; import { @@ -18,7 +18,7 @@ import { StartDeviceAuthorizationCommandInput, StartDeviceAuthorizationCommandOutput, } from "./commands/StartDeviceAuthorizationCommand"; -import { SSOOIDCClient, SSOOIDCClientConfig } from "./SSOOIDCClient"; +import { SSOOIDCClient } from "./SSOOIDCClient"; const commands = { CreateTokenCommand, diff --git a/clients/client-sso-oidc/src/SSOOIDCClient.ts b/clients/client-sso-oidc/src/SSOOIDCClient.ts index 18cb073a7053d..6d2c4aa4b98f3 100644 --- a/clients/client-sso-oidc/src/SSOOIDCClient.ts +++ b/clients/client-sso-oidc/src/SSOOIDCClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSSOOIDCHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand"; @@ -71,7 +80,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sso-oidc/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sso-oidc/src/auth/httpAuthExtensionConfiguration.ts index 3c506f609e2df..267c408d7dcb6 100644 --- a/clients/client-sso-oidc/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sso-oidc/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SSOOIDCHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SSOOIDCHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sso-oidc/src/auth/httpAuthSchemeProvider.ts b/clients/client-sso-oidc/src/auth/httpAuthSchemeProvider.ts index 253e304bf1ea4..795dea99e5086 100644 --- a/clients/client-sso-oidc/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sso-oidc/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SSOOIDCClientConfig, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; +import { type SSOOIDCClientResolvedConfig, SSOOIDCClientConfig } from "../SSOOIDCClient"; /** * @internal diff --git a/clients/client-sso-oidc/src/commands/CreateTokenCommand.ts b/clients/client-sso-oidc/src/commands/CreateTokenCommand.ts index 9147173ca4e1f..21429ff8f1566 100644 --- a/clients/client-sso-oidc/src/commands/CreateTokenCommand.ts +++ b/clients/client-sso-oidc/src/commands/CreateTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0"; +import type { CreateTokenRequest, CreateTokenResponse } from "../models/models_0"; import { CreateToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; /** * @public diff --git a/clients/client-sso-oidc/src/commands/CreateTokenWithIAMCommand.ts b/clients/client-sso-oidc/src/commands/CreateTokenWithIAMCommand.ts index 4d43793799022..e15fa3f9697b8 100644 --- a/clients/client-sso-oidc/src/commands/CreateTokenWithIAMCommand.ts +++ b/clients/client-sso-oidc/src/commands/CreateTokenWithIAMCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTokenWithIAMRequest, CreateTokenWithIAMResponse } from "../models/models_0"; +import type { CreateTokenWithIAMRequest, CreateTokenWithIAMResponse } from "../models/models_0"; import { CreateTokenWithIAM } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; /** * @public diff --git a/clients/client-sso-oidc/src/commands/RegisterClientCommand.ts b/clients/client-sso-oidc/src/commands/RegisterClientCommand.ts index 4824a1dad5306..fae4f95521c89 100644 --- a/clients/client-sso-oidc/src/commands/RegisterClientCommand.ts +++ b/clients/client-sso-oidc/src/commands/RegisterClientCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterClientRequest, RegisterClientResponse } from "../models/models_0"; +import type { RegisterClientRequest, RegisterClientResponse } from "../models/models_0"; import { RegisterClient } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; /** * @public diff --git a/clients/client-sso-oidc/src/commands/StartDeviceAuthorizationCommand.ts b/clients/client-sso-oidc/src/commands/StartDeviceAuthorizationCommand.ts index 15175d95b4ea7..17dcc6cddfdff 100644 --- a/clients/client-sso-oidc/src/commands/StartDeviceAuthorizationCommand.ts +++ b/clients/client-sso-oidc/src/commands/StartDeviceAuthorizationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDeviceAuthorizationRequest, StartDeviceAuthorizationResponse } from "../models/models_0"; +import type { StartDeviceAuthorizationRequest, StartDeviceAuthorizationResponse } from "../models/models_0"; import { StartDeviceAuthorization } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; /** * @public diff --git a/clients/client-sso-oidc/src/endpoint/EndpointParameters.ts b/clients/client-sso-oidc/src/endpoint/EndpointParameters.ts index b03c5191cacb7..e15287b4d1388 100644 --- a/clients/client-sso-oidc/src/endpoint/EndpointParameters.ts +++ b/clients/client-sso-oidc/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sso-oidc/src/endpoint/endpointResolver.ts b/clients/client-sso-oidc/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sso-oidc/src/endpoint/endpointResolver.ts +++ b/clients/client-sso-oidc/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sso-oidc/src/extensionConfiguration.ts b/clients/client-sso-oidc/src/extensionConfiguration.ts index 0907f5df89a75..4610a4fa99eba 100644 --- a/clients/client-sso-oidc/src/extensionConfiguration.ts +++ b/clients/client-sso-oidc/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sso-oidc/src/models/SSOOIDCServiceException.ts b/clients/client-sso-oidc/src/models/SSOOIDCServiceException.ts index 12a2c75b94afc..4dcea56352cb0 100644 --- a/clients/client-sso-oidc/src/models/SSOOIDCServiceException.ts +++ b/clients/client-sso-oidc/src/models/SSOOIDCServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sso-oidc/src/models/errors.ts b/clients/client-sso-oidc/src/models/errors.ts index c785f9421ab6f..1e284dc409fe5 100644 --- a/clients/client-sso-oidc/src/models/errors.ts +++ b/clients/client-sso-oidc/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessDeniedExceptionReason, InvalidRequestExceptionReason } from "./enums"; import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException"; diff --git a/clients/client-sso-oidc/src/runtimeConfig.browser.ts b/clients/client-sso-oidc/src/runtimeConfig.browser.ts index 767dd58f8e954..c960409e78b65 100644 --- a/clients/client-sso-oidc/src/runtimeConfig.browser.ts +++ b/clients/client-sso-oidc/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSOOIDCClientConfig } from "./SSOOIDCClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SSOOIDCClientConfig } from "./SSOOIDCClient"; /** * @internal diff --git a/clients/client-sso-oidc/src/runtimeConfig.native.ts b/clients/client-sso-oidc/src/runtimeConfig.native.ts index 8cf992aa5fe00..e1b8947c966f3 100644 --- a/clients/client-sso-oidc/src/runtimeConfig.native.ts +++ b/clients/client-sso-oidc/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SSOOIDCClientConfig } from "./SSOOIDCClient"; +import type { SSOOIDCClientConfig } from "./SSOOIDCClient"; /** * @internal diff --git a/clients/client-sso-oidc/src/runtimeConfig.shared.ts b/clients/client-sso-oidc/src/runtimeConfig.shared.ts index 686061d70b635..ee3bcb1449b51 100644 --- a/clients/client-sso-oidc/src/runtimeConfig.shared.ts +++ b/clients/client-sso-oidc/src/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSSOOIDCHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SSOOIDCClientConfig } from "./SSOOIDCClient"; +import type { SSOOIDCClientConfig } from "./SSOOIDCClient"; /** * @internal diff --git a/clients/client-sso-oidc/src/runtimeConfig.ts b/clients/client-sso-oidc/src/runtimeConfig.ts index c5340df10491f..57d99a52b548b 100644 --- a/clients/client-sso-oidc/src/runtimeConfig.ts +++ b/clients/client-sso-oidc/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSOOIDCClientConfig } from "./SSOOIDCClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SSOOIDCClientConfig } from "./SSOOIDCClient"; /** * @internal diff --git a/clients/client-sso-oidc/src/runtimeExtensions.ts b/clients/client-sso-oidc/src/runtimeExtensions.ts index 5c5850c895631..f2b1ed8017f70 100644 --- a/clients/client-sso-oidc/src/runtimeExtensions.ts +++ b/clients/client-sso-oidc/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SSOOIDCExtensionConfiguration } from "./extensionConfiguration"; +import type { SSOOIDCExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sso-oidc/src/schemas/schemas_0.ts b/clients/client-sso-oidc/src/schemas/schemas_0.ts index d25e723236686..c766419fe16c6 100644 --- a/clients/client-sso-oidc/src/schemas/schemas_0.ts +++ b/clients/client-sso-oidc/src/schemas/schemas_0.ts @@ -82,7 +82,7 @@ const n0 = "com.amazonaws.ssooidc"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-sso/package.json b/clients/client-sso/package.json index d5d83ec96f78f..376e626830f6f 100644 --- a/clients/client-sso/package.json +++ b/clients/client-sso/package.json @@ -31,26 +31,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sso/src/SSO.ts b/clients/client-sso/src/SSO.ts index 135573a47949a..e6ecc05757b43 100644 --- a/clients/client-sso/src/SSO.ts +++ b/clients/client-sso/src/SSO.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetRoleCredentialsCommand, @@ -18,7 +18,7 @@ import { ListAccountsCommandOutput, } from "./commands/ListAccountsCommand"; import { LogoutCommand, LogoutCommandInput, LogoutCommandOutput } from "./commands/LogoutCommand"; -import { SSOClient, SSOClientConfig } from "./SSOClient"; +import { SSOClient } from "./SSOClient"; const commands = { GetRoleCredentialsCommand, diff --git a/clients/client-sso/src/SSOClient.ts b/clients/client-sso/src/SSOClient.ts index 19bd871945a50..b443710e6085f 100644 --- a/clients/client-sso/src/SSOClient.ts +++ b/clients/client-sso/src/SSOClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,39 +21,48 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSSOHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetRoleCredentialsCommandInput, GetRoleCredentialsCommandOutput } from "./commands/GetRoleCredentialsCommand"; @@ -67,7 +76,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sso/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sso/src/auth/httpAuthExtensionConfiguration.ts index 1245bd3b6ab94..9c63f845596bf 100644 --- a/clients/client-sso/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sso/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SSOHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SSOHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sso/src/auth/httpAuthSchemeProvider.ts b/clients/client-sso/src/auth/httpAuthSchemeProvider.ts index 526121b3af85b..73628b0da92f8 100644 --- a/clients/client-sso/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sso/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SSOClientConfig, SSOClientResolvedConfig } from "../SSOClient"; +import { type SSOClientResolvedConfig, SSOClientConfig } from "../SSOClient"; /** * @internal diff --git a/clients/client-sso/src/commands/GetRoleCredentialsCommand.ts b/clients/client-sso/src/commands/GetRoleCredentialsCommand.ts index d461988fef35c..fb7920eaa7571 100644 --- a/clients/client-sso/src/commands/GetRoleCredentialsCommand.ts +++ b/clients/client-sso/src/commands/GetRoleCredentialsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRoleCredentialsRequest, GetRoleCredentialsResponse } from "../models/models_0"; +import type { GetRoleCredentialsRequest, GetRoleCredentialsResponse } from "../models/models_0"; import { GetRoleCredentials } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient"; /** * @public diff --git a/clients/client-sso/src/commands/ListAccountRolesCommand.ts b/clients/client-sso/src/commands/ListAccountRolesCommand.ts index 69d5a441c69a2..234b1d48a9fdf 100644 --- a/clients/client-sso/src/commands/ListAccountRolesCommand.ts +++ b/clients/client-sso/src/commands/ListAccountRolesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountRolesRequest, ListAccountRolesResponse } from "../models/models_0"; +import type { ListAccountRolesRequest, ListAccountRolesResponse } from "../models/models_0"; import { ListAccountRoles } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient"; /** * @public diff --git a/clients/client-sso/src/commands/ListAccountsCommand.ts b/clients/client-sso/src/commands/ListAccountsCommand.ts index 3363b71550e49..d53235211754a 100644 --- a/clients/client-sso/src/commands/ListAccountsCommand.ts +++ b/clients/client-sso/src/commands/ListAccountsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountsRequest, ListAccountsResponse } from "../models/models_0"; +import type { ListAccountsRequest, ListAccountsResponse } from "../models/models_0"; import { ListAccounts } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient"; /** * @public diff --git a/clients/client-sso/src/commands/LogoutCommand.ts b/clients/client-sso/src/commands/LogoutCommand.ts index f6eb78263c127..83e13a706ff7d 100644 --- a/clients/client-sso/src/commands/LogoutCommand.ts +++ b/clients/client-sso/src/commands/LogoutCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { LogoutRequest } from "../models/models_0"; +import type { LogoutRequest } from "../models/models_0"; import { Logout } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOClientResolvedConfig } from "../SSOClient"; /** * @public diff --git a/clients/client-sso/src/endpoint/EndpointParameters.ts b/clients/client-sso/src/endpoint/EndpointParameters.ts index 7ce652cf42747..5e51cc66a995a 100644 --- a/clients/client-sso/src/endpoint/EndpointParameters.ts +++ b/clients/client-sso/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sso/src/endpoint/endpointResolver.ts b/clients/client-sso/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-sso/src/endpoint/endpointResolver.ts +++ b/clients/client-sso/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sso/src/extensionConfiguration.ts b/clients/client-sso/src/extensionConfiguration.ts index 1adc84580cf23..bb81a40a5e5e5 100644 --- a/clients/client-sso/src/extensionConfiguration.ts +++ b/clients/client-sso/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sso/src/models/SSOServiceException.ts b/clients/client-sso/src/models/SSOServiceException.ts index eb04e5079e9db..ed5eca69a783b 100644 --- a/clients/client-sso/src/models/SSOServiceException.ts +++ b/clients/client-sso/src/models/SSOServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sso/src/models/errors.ts b/clients/client-sso/src/models/errors.ts index c54dbaaee5b0f..30730df01acb6 100644 --- a/clients/client-sso/src/models/errors.ts +++ b/clients/client-sso/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SSOServiceException as __BaseException } from "./SSOServiceException"; diff --git a/clients/client-sso/src/pagination/Interfaces.ts b/clients/client-sso/src/pagination/Interfaces.ts index 5aa8f483f5e15..e17a664222d1f 100644 --- a/clients/client-sso/src/pagination/Interfaces.ts +++ b/clients/client-sso/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SSOClient } from "../SSOClient"; diff --git a/clients/client-sso/src/pagination/ListAccountRolesPaginator.ts b/clients/client-sso/src/pagination/ListAccountRolesPaginator.ts index aaad8d6833eb4..239915c6c3661 100644 --- a/clients/client-sso/src/pagination/ListAccountRolesPaginator.ts +++ b/clients/client-sso/src/pagination/ListAccountRolesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountRolesCommand, diff --git a/clients/client-sso/src/pagination/ListAccountsPaginator.ts b/clients/client-sso/src/pagination/ListAccountsPaginator.ts index 4a7be677adb24..dfef9b95178bc 100644 --- a/clients/client-sso/src/pagination/ListAccountsPaginator.ts +++ b/clients/client-sso/src/pagination/ListAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountsCommand, diff --git a/clients/client-sso/src/runtimeConfig.browser.ts b/clients/client-sso/src/runtimeConfig.browser.ts index ce4bc972513b5..54b5fbd448978 100644 --- a/clients/client-sso/src/runtimeConfig.browser.ts +++ b/clients/client-sso/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSOClientConfig } from "./SSOClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SSOClientConfig } from "./SSOClient"; /** * @internal diff --git a/clients/client-sso/src/runtimeConfig.native.ts b/clients/client-sso/src/runtimeConfig.native.ts index 83849c1a92e2f..1c9b58edfdf45 100644 --- a/clients/client-sso/src/runtimeConfig.native.ts +++ b/clients/client-sso/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SSOClientConfig } from "./SSOClient"; +import type { SSOClientConfig } from "./SSOClient"; /** * @internal diff --git a/clients/client-sso/src/runtimeConfig.shared.ts b/clients/client-sso/src/runtimeConfig.shared.ts index ff11d033e7d58..3673c84308633 100644 --- a/clients/client-sso/src/runtimeConfig.shared.ts +++ b/clients/client-sso/src/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSSOHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SSOClientConfig } from "./SSOClient"; +import type { SSOClientConfig } from "./SSOClient"; /** * @internal diff --git a/clients/client-sso/src/runtimeConfig.ts b/clients/client-sso/src/runtimeConfig.ts index f1f3a7c9e5ec9..10793fece37e0 100644 --- a/clients/client-sso/src/runtimeConfig.ts +++ b/clients/client-sso/src/runtimeConfig.ts @@ -14,13 +14,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSOClientConfig } from "./SSOClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SSOClientConfig } from "./SSOClient"; /** * @internal diff --git a/clients/client-sso/src/runtimeExtensions.ts b/clients/client-sso/src/runtimeExtensions.ts index 1c65598f6ce16..5c5fce532c36c 100644 --- a/clients/client-sso/src/runtimeExtensions.ts +++ b/clients/client-sso/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SSOExtensionConfiguration } from "./extensionConfiguration"; +import type { SSOExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sso/src/schemas/schemas_0.ts b/clients/client-sso/src/schemas/schemas_0.ts index 611ad9a442c0d..4812f7925146b 100644 --- a/clients/client-sso/src/schemas/schemas_0.ts +++ b/clients/client-sso/src/schemas/schemas_0.ts @@ -52,7 +52,7 @@ const n0 = "com.amazonaws.sso"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-storage-gateway/package.json b/clients/client-storage-gateway/package.json index 418ea5964a35c..0f3ec8387a6c3 100644 --- a/clients/client-storage-gateway/package.json +++ b/clients/client-storage-gateway/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-storage-gateway/src/StorageGateway.ts b/clients/client-storage-gateway/src/StorageGateway.ts index 099a18a84b78c..e4cd1e83ddd59 100644 --- a/clients/client-storage-gateway/src/StorageGateway.ts +++ b/clients/client-storage-gateway/src/StorageGateway.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ActivateGatewayCommand, @@ -454,7 +454,7 @@ import { UpdateVTLDeviceTypeCommandInput, UpdateVTLDeviceTypeCommandOutput, } from "./commands/UpdateVTLDeviceTypeCommand"; -import { StorageGatewayClient, StorageGatewayClientConfig } from "./StorageGatewayClient"; +import { StorageGatewayClient } from "./StorageGatewayClient"; const commands = { ActivateGatewayCommand, diff --git a/clients/client-storage-gateway/src/StorageGatewayClient.ts b/clients/client-storage-gateway/src/StorageGatewayClient.ts index 9c43bbf24873a..1168bfe3a38e0 100644 --- a/clients/client-storage-gateway/src/StorageGatewayClient.ts +++ b/clients/client-storage-gateway/src/StorageGatewayClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultStorageGatewayHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { ActivateGatewayCommandInput, ActivateGatewayCommandOutput } from "./commands/ActivateGatewayCommand"; @@ -319,7 +328,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-storage-gateway/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-storage-gateway/src/auth/httpAuthExtensionConfiguration.ts index 06e0b11c7a316..c0cbd34121dfc 100644 --- a/clients/client-storage-gateway/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-storage-gateway/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { StorageGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { StorageGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-storage-gateway/src/auth/httpAuthSchemeProvider.ts b/clients/client-storage-gateway/src/auth/httpAuthSchemeProvider.ts index eb8cf3b254601..71dcd6b5d6969 100644 --- a/clients/client-storage-gateway/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-storage-gateway/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { StorageGatewayClientConfig, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import { type StorageGatewayClientResolvedConfig, StorageGatewayClientConfig } from "../StorageGatewayClient"; /** * @internal diff --git a/clients/client-storage-gateway/src/commands/ActivateGatewayCommand.ts b/clients/client-storage-gateway/src/commands/ActivateGatewayCommand.ts index 0c472245ff048..86a7e78db30fe 100644 --- a/clients/client-storage-gateway/src/commands/ActivateGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/ActivateGatewayCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateGatewayInput, ActivateGatewayOutput } from "../models/models_0"; +import type { ActivateGatewayInput, ActivateGatewayOutput } from "../models/models_0"; import { ActivateGateway } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/AddCacheCommand.ts b/clients/client-storage-gateway/src/commands/AddCacheCommand.ts index 3e9e02d438a14..4333a838b9057 100644 --- a/clients/client-storage-gateway/src/commands/AddCacheCommand.ts +++ b/clients/client-storage-gateway/src/commands/AddCacheCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddCacheInput, AddCacheOutput } from "../models/models_0"; +import type { AddCacheInput, AddCacheOutput } from "../models/models_0"; import { AddCache } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/AddTagsToResourceCommand.ts b/clients/client-storage-gateway/src/commands/AddTagsToResourceCommand.ts index aa11ec4c09e77..5d282dcb6daf1 100644 --- a/clients/client-storage-gateway/src/commands/AddTagsToResourceCommand.ts +++ b/clients/client-storage-gateway/src/commands/AddTagsToResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddTagsToResourceInput, AddTagsToResourceOutput } from "../models/models_0"; +import type { AddTagsToResourceInput, AddTagsToResourceOutput } from "../models/models_0"; import { AddTagsToResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/AddUploadBufferCommand.ts b/clients/client-storage-gateway/src/commands/AddUploadBufferCommand.ts index d2947826976c0..01e438acd74e6 100644 --- a/clients/client-storage-gateway/src/commands/AddUploadBufferCommand.ts +++ b/clients/client-storage-gateway/src/commands/AddUploadBufferCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddUploadBufferInput, AddUploadBufferOutput } from "../models/models_0"; +import type { AddUploadBufferInput, AddUploadBufferOutput } from "../models/models_0"; import { AddUploadBuffer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/AddWorkingStorageCommand.ts b/clients/client-storage-gateway/src/commands/AddWorkingStorageCommand.ts index a3ec7e1d62f49..725d865ba39cc 100644 --- a/clients/client-storage-gateway/src/commands/AddWorkingStorageCommand.ts +++ b/clients/client-storage-gateway/src/commands/AddWorkingStorageCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddWorkingStorageInput, AddWorkingStorageOutput } from "../models/models_0"; +import type { AddWorkingStorageInput, AddWorkingStorageOutput } from "../models/models_0"; import { AddWorkingStorage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/AssignTapePoolCommand.ts b/clients/client-storage-gateway/src/commands/AssignTapePoolCommand.ts index 4812cf9f49166..345d7dca020b2 100644 --- a/clients/client-storage-gateway/src/commands/AssignTapePoolCommand.ts +++ b/clients/client-storage-gateway/src/commands/AssignTapePoolCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssignTapePoolInput, AssignTapePoolOutput } from "../models/models_0"; +import type { AssignTapePoolInput, AssignTapePoolOutput } from "../models/models_0"; import { AssignTapePool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/AssociateFileSystemCommand.ts b/clients/client-storage-gateway/src/commands/AssociateFileSystemCommand.ts index 46184d0bed6f9..7151f3cdefeed 100644 --- a/clients/client-storage-gateway/src/commands/AssociateFileSystemCommand.ts +++ b/clients/client-storage-gateway/src/commands/AssociateFileSystemCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateFileSystemInput, AssociateFileSystemOutput } from "../models/models_0"; +import type { AssociateFileSystemInput, AssociateFileSystemOutput } from "../models/models_0"; import { AssociateFileSystem } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/AttachVolumeCommand.ts b/clients/client-storage-gateway/src/commands/AttachVolumeCommand.ts index 6d78c0d436917..d0a50f193f081 100644 --- a/clients/client-storage-gateway/src/commands/AttachVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/AttachVolumeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AttachVolumeInput, AttachVolumeOutput } from "../models/models_0"; +import type { AttachVolumeInput, AttachVolumeOutput } from "../models/models_0"; import { AttachVolume } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CancelArchivalCommand.ts b/clients/client-storage-gateway/src/commands/CancelArchivalCommand.ts index 8f9d8211514ea..ae10bad99e771 100644 --- a/clients/client-storage-gateway/src/commands/CancelArchivalCommand.ts +++ b/clients/client-storage-gateway/src/commands/CancelArchivalCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelArchivalInput, CancelArchivalOutput } from "../models/models_0"; +import type { CancelArchivalInput, CancelArchivalOutput } from "../models/models_0"; import { CancelArchival } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CancelCacheReportCommand.ts b/clients/client-storage-gateway/src/commands/CancelCacheReportCommand.ts index e1fb29fa9a1cc..3555ac8f010bb 100644 --- a/clients/client-storage-gateway/src/commands/CancelCacheReportCommand.ts +++ b/clients/client-storage-gateway/src/commands/CancelCacheReportCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelCacheReportInput, CancelCacheReportOutput } from "../models/models_0"; +import type { CancelCacheReportInput, CancelCacheReportOutput } from "../models/models_0"; import { CancelCacheReport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CancelRetrievalCommand.ts b/clients/client-storage-gateway/src/commands/CancelRetrievalCommand.ts index eda8929dfc3ff..9483dae6e37b0 100644 --- a/clients/client-storage-gateway/src/commands/CancelRetrievalCommand.ts +++ b/clients/client-storage-gateway/src/commands/CancelRetrievalCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelRetrievalInput, CancelRetrievalOutput } from "../models/models_0"; +import type { CancelRetrievalInput, CancelRetrievalOutput } from "../models/models_0"; import { CancelRetrieval } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CreateCachediSCSIVolumeCommand.ts b/clients/client-storage-gateway/src/commands/CreateCachediSCSIVolumeCommand.ts index 3c593eef484fa..89a7bc80a568c 100644 --- a/clients/client-storage-gateway/src/commands/CreateCachediSCSIVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateCachediSCSIVolumeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCachediSCSIVolumeInput, CreateCachediSCSIVolumeOutput } from "../models/models_0"; +import type { CreateCachediSCSIVolumeInput, CreateCachediSCSIVolumeOutput } from "../models/models_0"; import { CreateCachediSCSIVolume } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CreateNFSFileShareCommand.ts b/clients/client-storage-gateway/src/commands/CreateNFSFileShareCommand.ts index bdd577a7067e7..e54d0a6ef49a8 100644 --- a/clients/client-storage-gateway/src/commands/CreateNFSFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateNFSFileShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNFSFileShareInput, CreateNFSFileShareOutput } from "../models/models_0"; +import type { CreateNFSFileShareInput, CreateNFSFileShareOutput } from "../models/models_0"; import { CreateNFSFileShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CreateSMBFileShareCommand.ts b/clients/client-storage-gateway/src/commands/CreateSMBFileShareCommand.ts index 5d3f5b567f1b2..bffd405217f12 100644 --- a/clients/client-storage-gateway/src/commands/CreateSMBFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateSMBFileShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSMBFileShareInput, CreateSMBFileShareOutput } from "../models/models_0"; +import type { CreateSMBFileShareInput, CreateSMBFileShareOutput } from "../models/models_0"; import { CreateSMBFileShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CreateSnapshotCommand.ts b/clients/client-storage-gateway/src/commands/CreateSnapshotCommand.ts index cc1a03a2dfb57..ed420437febf7 100644 --- a/clients/client-storage-gateway/src/commands/CreateSnapshotCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateSnapshotCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSnapshotInput, CreateSnapshotOutput } from "../models/models_0"; +import type { CreateSnapshotInput, CreateSnapshotOutput } from "../models/models_0"; import { CreateSnapshot } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CreateSnapshotFromVolumeRecoveryPointCommand.ts b/clients/client-storage-gateway/src/commands/CreateSnapshotFromVolumeRecoveryPointCommand.ts index 5c27a82055efb..97c690d9b00e6 100644 --- a/clients/client-storage-gateway/src/commands/CreateSnapshotFromVolumeRecoveryPointCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateSnapshotFromVolumeRecoveryPointCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateSnapshotFromVolumeRecoveryPointInput, CreateSnapshotFromVolumeRecoveryPointOutput, } from "../models/models_0"; import { CreateSnapshotFromVolumeRecoveryPoint } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CreateStorediSCSIVolumeCommand.ts b/clients/client-storage-gateway/src/commands/CreateStorediSCSIVolumeCommand.ts index a57be4ae95d05..501b0af7b720d 100644 --- a/clients/client-storage-gateway/src/commands/CreateStorediSCSIVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateStorediSCSIVolumeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStorediSCSIVolumeInput, CreateStorediSCSIVolumeOutput } from "../models/models_0"; +import type { CreateStorediSCSIVolumeInput, CreateStorediSCSIVolumeOutput } from "../models/models_0"; import { CreateStorediSCSIVolume } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CreateTapePoolCommand.ts b/clients/client-storage-gateway/src/commands/CreateTapePoolCommand.ts index a58131d36511f..9b860464af50b 100644 --- a/clients/client-storage-gateway/src/commands/CreateTapePoolCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateTapePoolCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTapePoolInput, CreateTapePoolOutput } from "../models/models_0"; +import type { CreateTapePoolInput, CreateTapePoolOutput } from "../models/models_0"; import { CreateTapePool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CreateTapeWithBarcodeCommand.ts b/clients/client-storage-gateway/src/commands/CreateTapeWithBarcodeCommand.ts index e8497699ff27c..fd42a77018fb0 100644 --- a/clients/client-storage-gateway/src/commands/CreateTapeWithBarcodeCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateTapeWithBarcodeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTapeWithBarcodeInput, CreateTapeWithBarcodeOutput } from "../models/models_0"; +import type { CreateTapeWithBarcodeInput, CreateTapeWithBarcodeOutput } from "../models/models_0"; import { CreateTapeWithBarcode } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/CreateTapesCommand.ts b/clients/client-storage-gateway/src/commands/CreateTapesCommand.ts index c09b494b7adfd..cf6126390e8c4 100644 --- a/clients/client-storage-gateway/src/commands/CreateTapesCommand.ts +++ b/clients/client-storage-gateway/src/commands/CreateTapesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTapesInput, CreateTapesOutput } from "../models/models_0"; +import type { CreateTapesInput, CreateTapesOutput } from "../models/models_0"; import { CreateTapes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteAutomaticTapeCreationPolicyCommand.ts b/clients/client-storage-gateway/src/commands/DeleteAutomaticTapeCreationPolicyCommand.ts index 1d162d229edbd..826ae1aaa3176 100644 --- a/clients/client-storage-gateway/src/commands/DeleteAutomaticTapeCreationPolicyCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteAutomaticTapeCreationPolicyCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAutomaticTapeCreationPolicyInput, DeleteAutomaticTapeCreationPolicyOutput } from "../models/models_0"; +import type { + DeleteAutomaticTapeCreationPolicyInput, + DeleteAutomaticTapeCreationPolicyOutput, +} from "../models/models_0"; import { DeleteAutomaticTapeCreationPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteBandwidthRateLimitCommand.ts b/clients/client-storage-gateway/src/commands/DeleteBandwidthRateLimitCommand.ts index d7630cc885dd8..6ff6759992dd7 100644 --- a/clients/client-storage-gateway/src/commands/DeleteBandwidthRateLimitCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteBandwidthRateLimitCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBandwidthRateLimitInput, DeleteBandwidthRateLimitOutput } from "../models/models_0"; +import type { DeleteBandwidthRateLimitInput, DeleteBandwidthRateLimitOutput } from "../models/models_0"; import { DeleteBandwidthRateLimit } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteCacheReportCommand.ts b/clients/client-storage-gateway/src/commands/DeleteCacheReportCommand.ts index edd0825cad0e2..611c39700968f 100644 --- a/clients/client-storage-gateway/src/commands/DeleteCacheReportCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteCacheReportCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCacheReportInput, DeleteCacheReportOutput } from "../models/models_0"; +import type { DeleteCacheReportInput, DeleteCacheReportOutput } from "../models/models_0"; import { DeleteCacheReport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteChapCredentialsCommand.ts b/clients/client-storage-gateway/src/commands/DeleteChapCredentialsCommand.ts index 1a736a5e0d431..dceabaf46e2d4 100644 --- a/clients/client-storage-gateway/src/commands/DeleteChapCredentialsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteChapCredentialsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteChapCredentialsInput, DeleteChapCredentialsOutput } from "../models/models_0"; +import type { DeleteChapCredentialsInput, DeleteChapCredentialsOutput } from "../models/models_0"; import { DeleteChapCredentials } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteFileShareCommand.ts b/clients/client-storage-gateway/src/commands/DeleteFileShareCommand.ts index 9d8e77ba6c0bc..656b8a43180ad 100644 --- a/clients/client-storage-gateway/src/commands/DeleteFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteFileShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFileShareInput, DeleteFileShareOutput } from "../models/models_0"; +import type { DeleteFileShareInput, DeleteFileShareOutput } from "../models/models_0"; import { DeleteFileShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteGatewayCommand.ts b/clients/client-storage-gateway/src/commands/DeleteGatewayCommand.ts index a922c7866e8c4..458afe14c1712 100644 --- a/clients/client-storage-gateway/src/commands/DeleteGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteGatewayCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGatewayInput, DeleteGatewayOutput } from "../models/models_0"; +import type { DeleteGatewayInput, DeleteGatewayOutput } from "../models/models_0"; import { DeleteGateway } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteSnapshotScheduleCommand.ts b/clients/client-storage-gateway/src/commands/DeleteSnapshotScheduleCommand.ts index 92ae0d95cf476..4c9a76b03c6fb 100644 --- a/clients/client-storage-gateway/src/commands/DeleteSnapshotScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteSnapshotScheduleCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSnapshotScheduleInput, DeleteSnapshotScheduleOutput } from "../models/models_0"; +import type { DeleteSnapshotScheduleInput, DeleteSnapshotScheduleOutput } from "../models/models_0"; import { DeleteSnapshotSchedule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteTapeArchiveCommand.ts b/clients/client-storage-gateway/src/commands/DeleteTapeArchiveCommand.ts index 805fa6854d837..cc5600a928c78 100644 --- a/clients/client-storage-gateway/src/commands/DeleteTapeArchiveCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteTapeArchiveCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTapeArchiveInput, DeleteTapeArchiveOutput } from "../models/models_0"; +import type { DeleteTapeArchiveInput, DeleteTapeArchiveOutput } from "../models/models_0"; import { DeleteTapeArchive } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteTapeCommand.ts b/clients/client-storage-gateway/src/commands/DeleteTapeCommand.ts index 54289c4c5327e..77595b2847eca 100644 --- a/clients/client-storage-gateway/src/commands/DeleteTapeCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteTapeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTapeInput, DeleteTapeOutput } from "../models/models_0"; +import type { DeleteTapeInput, DeleteTapeOutput } from "../models/models_0"; import { DeleteTape } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteTapePoolCommand.ts b/clients/client-storage-gateway/src/commands/DeleteTapePoolCommand.ts index d08b9ceb20c75..9cacc17ed6704 100644 --- a/clients/client-storage-gateway/src/commands/DeleteTapePoolCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteTapePoolCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTapePoolInput, DeleteTapePoolOutput } from "../models/models_0"; +import type { DeleteTapePoolInput, DeleteTapePoolOutput } from "../models/models_0"; import { DeleteTapePool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DeleteVolumeCommand.ts b/clients/client-storage-gateway/src/commands/DeleteVolumeCommand.ts index 5b47bdd91d7de..cff62bc4affcd 100644 --- a/clients/client-storage-gateway/src/commands/DeleteVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/DeleteVolumeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVolumeInput, DeleteVolumeOutput } from "../models/models_0"; +import type { DeleteVolumeInput, DeleteVolumeOutput } from "../models/models_0"; import { DeleteVolume } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeAvailabilityMonitorTestCommand.ts b/clients/client-storage-gateway/src/commands/DescribeAvailabilityMonitorTestCommand.ts index d970bb5b3b716..7090db242abf0 100644 --- a/clients/client-storage-gateway/src/commands/DescribeAvailabilityMonitorTestCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeAvailabilityMonitorTestCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAvailabilityMonitorTestInput, DescribeAvailabilityMonitorTestOutput } from "../models/models_0"; +import type { DescribeAvailabilityMonitorTestInput, DescribeAvailabilityMonitorTestOutput } from "../models/models_0"; import { DescribeAvailabilityMonitorTest } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitCommand.ts b/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitCommand.ts index 73b6acb1c1760..3a9bbcec20ead 100644 --- a/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBandwidthRateLimitInput, DescribeBandwidthRateLimitOutput } from "../models/models_0"; +import type { DescribeBandwidthRateLimitInput, DescribeBandwidthRateLimitOutput } from "../models/models_0"; import { DescribeBandwidthRateLimit } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitScheduleCommand.ts b/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitScheduleCommand.ts index 901b2fc378b35..8ec63561b1c56 100644 --- a/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeBandwidthRateLimitScheduleCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBandwidthRateLimitScheduleInput, DescribeBandwidthRateLimitScheduleOutput } from "../models/models_0"; +import type { + DescribeBandwidthRateLimitScheduleInput, + DescribeBandwidthRateLimitScheduleOutput, +} from "../models/models_0"; import { DescribeBandwidthRateLimitSchedule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeCacheCommand.ts b/clients/client-storage-gateway/src/commands/DescribeCacheCommand.ts index e6f5642a57991..6c70b28af7694 100644 --- a/clients/client-storage-gateway/src/commands/DescribeCacheCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeCacheCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCacheInput, DescribeCacheOutput } from "../models/models_0"; +import type { DescribeCacheInput, DescribeCacheOutput } from "../models/models_0"; import { DescribeCache } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeCacheReportCommand.ts b/clients/client-storage-gateway/src/commands/DescribeCacheReportCommand.ts index 5f9422786a353..38efd3f0ea3af 100644 --- a/clients/client-storage-gateway/src/commands/DescribeCacheReportCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeCacheReportCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCacheReportInput, DescribeCacheReportOutput } from "../models/models_0"; +import type { DescribeCacheReportInput, DescribeCacheReportOutput } from "../models/models_0"; import { DescribeCacheReport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeCachediSCSIVolumesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeCachediSCSIVolumesCommand.ts index a693cbcd3e1e5..a29cff665b08a 100644 --- a/clients/client-storage-gateway/src/commands/DescribeCachediSCSIVolumesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeCachediSCSIVolumesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCachediSCSIVolumesInput, DescribeCachediSCSIVolumesOutput } from "../models/models_0"; +import type { DescribeCachediSCSIVolumesInput, DescribeCachediSCSIVolumesOutput } from "../models/models_0"; import { DescribeCachediSCSIVolumes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeChapCredentialsCommand.ts b/clients/client-storage-gateway/src/commands/DescribeChapCredentialsCommand.ts index 3c513556db6d5..b694fcd2f13c9 100644 --- a/clients/client-storage-gateway/src/commands/DescribeChapCredentialsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeChapCredentialsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeChapCredentialsInput, DescribeChapCredentialsOutput } from "../models/models_0"; +import type { DescribeChapCredentialsInput, DescribeChapCredentialsOutput } from "../models/models_0"; import { DescribeChapCredentials } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeFileSystemAssociationsCommand.ts b/clients/client-storage-gateway/src/commands/DescribeFileSystemAssociationsCommand.ts index 8bb4ea1867b71..8e519778c3b30 100644 --- a/clients/client-storage-gateway/src/commands/DescribeFileSystemAssociationsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeFileSystemAssociationsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFileSystemAssociationsInput, DescribeFileSystemAssociationsOutput } from "../models/models_0"; +import type { DescribeFileSystemAssociationsInput, DescribeFileSystemAssociationsOutput } from "../models/models_0"; import { DescribeFileSystemAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeGatewayInformationCommand.ts b/clients/client-storage-gateway/src/commands/DescribeGatewayInformationCommand.ts index 1e46a6aa81819..8f32d51d6cc16 100644 --- a/clients/client-storage-gateway/src/commands/DescribeGatewayInformationCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeGatewayInformationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGatewayInformationInput, DescribeGatewayInformationOutput } from "../models/models_0"; +import type { DescribeGatewayInformationInput, DescribeGatewayInformationOutput } from "../models/models_0"; import { DescribeGatewayInformation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeMaintenanceStartTimeCommand.ts b/clients/client-storage-gateway/src/commands/DescribeMaintenanceStartTimeCommand.ts index 22e44ef279a3f..7b3597bf86fa5 100644 --- a/clients/client-storage-gateway/src/commands/DescribeMaintenanceStartTimeCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeMaintenanceStartTimeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMaintenanceStartTimeInput, DescribeMaintenanceStartTimeOutput } from "../models/models_0"; +import type { DescribeMaintenanceStartTimeInput, DescribeMaintenanceStartTimeOutput } from "../models/models_0"; import { DescribeMaintenanceStartTime } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeNFSFileSharesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeNFSFileSharesCommand.ts index b082bf840d7aa..53a846e74b219 100644 --- a/clients/client-storage-gateway/src/commands/DescribeNFSFileSharesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeNFSFileSharesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeNFSFileSharesInput, DescribeNFSFileSharesOutput } from "../models/models_0"; +import type { DescribeNFSFileSharesInput, DescribeNFSFileSharesOutput } from "../models/models_0"; import { DescribeNFSFileShares } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeSMBFileSharesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeSMBFileSharesCommand.ts index ddae314858cf3..332cc23a7f07e 100644 --- a/clients/client-storage-gateway/src/commands/DescribeSMBFileSharesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeSMBFileSharesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSMBFileSharesInput, DescribeSMBFileSharesOutput } from "../models/models_0"; +import type { DescribeSMBFileSharesInput, DescribeSMBFileSharesOutput } from "../models/models_0"; import { DescribeSMBFileShares } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeSMBSettingsCommand.ts b/clients/client-storage-gateway/src/commands/DescribeSMBSettingsCommand.ts index 068b7ec5d02dc..b28d9cb26d7f8 100644 --- a/clients/client-storage-gateway/src/commands/DescribeSMBSettingsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeSMBSettingsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSMBSettingsInput, DescribeSMBSettingsOutput } from "../models/models_0"; +import type { DescribeSMBSettingsInput, DescribeSMBSettingsOutput } from "../models/models_0"; import { DescribeSMBSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeSnapshotScheduleCommand.ts b/clients/client-storage-gateway/src/commands/DescribeSnapshotScheduleCommand.ts index 89e305b15b30c..9c08f895ca575 100644 --- a/clients/client-storage-gateway/src/commands/DescribeSnapshotScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeSnapshotScheduleCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSnapshotScheduleInput, DescribeSnapshotScheduleOutput } from "../models/models_0"; +import type { DescribeSnapshotScheduleInput, DescribeSnapshotScheduleOutput } from "../models/models_0"; import { DescribeSnapshotSchedule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeStorediSCSIVolumesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeStorediSCSIVolumesCommand.ts index 0423485bdbcac..ff35533160cef 100644 --- a/clients/client-storage-gateway/src/commands/DescribeStorediSCSIVolumesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeStorediSCSIVolumesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeStorediSCSIVolumesInput, DescribeStorediSCSIVolumesOutput } from "../models/models_0"; +import type { DescribeStorediSCSIVolumesInput, DescribeStorediSCSIVolumesOutput } from "../models/models_0"; import { DescribeStorediSCSIVolumes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeTapeArchivesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeTapeArchivesCommand.ts index f410e54da3ad3..7d46493350845 100644 --- a/clients/client-storage-gateway/src/commands/DescribeTapeArchivesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeTapeArchivesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTapeArchivesInput, DescribeTapeArchivesOutput } from "../models/models_0"; +import type { DescribeTapeArchivesInput, DescribeTapeArchivesOutput } from "../models/models_0"; import { DescribeTapeArchives } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeTapeRecoveryPointsCommand.ts b/clients/client-storage-gateway/src/commands/DescribeTapeRecoveryPointsCommand.ts index f094f9f3700c4..b08ea461f6e17 100644 --- a/clients/client-storage-gateway/src/commands/DescribeTapeRecoveryPointsCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeTapeRecoveryPointsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTapeRecoveryPointsInput, DescribeTapeRecoveryPointsOutput } from "../models/models_0"; +import type { DescribeTapeRecoveryPointsInput, DescribeTapeRecoveryPointsOutput } from "../models/models_0"; import { DescribeTapeRecoveryPoints } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeTapesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeTapesCommand.ts index 17fa0efe1258a..b846078a5256e 100644 --- a/clients/client-storage-gateway/src/commands/DescribeTapesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeTapesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTapesInput, DescribeTapesOutput } from "../models/models_0"; +import type { DescribeTapesInput, DescribeTapesOutput } from "../models/models_0"; import { DescribeTapes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeUploadBufferCommand.ts b/clients/client-storage-gateway/src/commands/DescribeUploadBufferCommand.ts index 18e9b119e4dab..24762d45d5fdd 100644 --- a/clients/client-storage-gateway/src/commands/DescribeUploadBufferCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeUploadBufferCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUploadBufferInput, DescribeUploadBufferOutput } from "../models/models_0"; +import type { DescribeUploadBufferInput, DescribeUploadBufferOutput } from "../models/models_0"; import { DescribeUploadBuffer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeVTLDevicesCommand.ts b/clients/client-storage-gateway/src/commands/DescribeVTLDevicesCommand.ts index cc9b4a97ad3b4..073adf887e628 100644 --- a/clients/client-storage-gateway/src/commands/DescribeVTLDevicesCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeVTLDevicesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeVTLDevicesInput, DescribeVTLDevicesOutput } from "../models/models_0"; +import type { DescribeVTLDevicesInput, DescribeVTLDevicesOutput } from "../models/models_0"; import { DescribeVTLDevices } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DescribeWorkingStorageCommand.ts b/clients/client-storage-gateway/src/commands/DescribeWorkingStorageCommand.ts index 0be965fbb3096..e8157b7c81be1 100644 --- a/clients/client-storage-gateway/src/commands/DescribeWorkingStorageCommand.ts +++ b/clients/client-storage-gateway/src/commands/DescribeWorkingStorageCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkingStorageInput, DescribeWorkingStorageOutput } from "../models/models_0"; +import type { DescribeWorkingStorageInput, DescribeWorkingStorageOutput } from "../models/models_0"; import { DescribeWorkingStorage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DetachVolumeCommand.ts b/clients/client-storage-gateway/src/commands/DetachVolumeCommand.ts index 9167cc39b0ee5..7bb8585a64f39 100644 --- a/clients/client-storage-gateway/src/commands/DetachVolumeCommand.ts +++ b/clients/client-storage-gateway/src/commands/DetachVolumeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetachVolumeInput, DetachVolumeOutput } from "../models/models_0"; +import type { DetachVolumeInput, DetachVolumeOutput } from "../models/models_0"; import { DetachVolume } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DisableGatewayCommand.ts b/clients/client-storage-gateway/src/commands/DisableGatewayCommand.ts index 68a1469f50985..ade88ce55c34c 100644 --- a/clients/client-storage-gateway/src/commands/DisableGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/DisableGatewayCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisableGatewayInput, DisableGatewayOutput } from "../models/models_0"; +import type { DisableGatewayInput, DisableGatewayOutput } from "../models/models_0"; import { DisableGateway } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/DisassociateFileSystemCommand.ts b/clients/client-storage-gateway/src/commands/DisassociateFileSystemCommand.ts index 9af5872665b33..46ab4f8f32fc9 100644 --- a/clients/client-storage-gateway/src/commands/DisassociateFileSystemCommand.ts +++ b/clients/client-storage-gateway/src/commands/DisassociateFileSystemCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateFileSystemInput, DisassociateFileSystemOutput } from "../models/models_0"; +import type { DisassociateFileSystemInput, DisassociateFileSystemOutput } from "../models/models_0"; import { DisassociateFileSystem } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/EvictFilesFailingUploadCommand.ts b/clients/client-storage-gateway/src/commands/EvictFilesFailingUploadCommand.ts index 3cf275108cbfe..67bafd68be561 100644 --- a/clients/client-storage-gateway/src/commands/EvictFilesFailingUploadCommand.ts +++ b/clients/client-storage-gateway/src/commands/EvictFilesFailingUploadCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvictFilesFailingUploadInput, EvictFilesFailingUploadOutput } from "../models/models_0"; +import type { EvictFilesFailingUploadInput, EvictFilesFailingUploadOutput } from "../models/models_0"; import { EvictFilesFailingUpload } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/JoinDomainCommand.ts b/clients/client-storage-gateway/src/commands/JoinDomainCommand.ts index 1244fddd2594d..958bbf01358c4 100644 --- a/clients/client-storage-gateway/src/commands/JoinDomainCommand.ts +++ b/clients/client-storage-gateway/src/commands/JoinDomainCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JoinDomainInput, JoinDomainOutput } from "../models/models_0"; +import type { JoinDomainInput, JoinDomainOutput } from "../models/models_0"; import { JoinDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListAutomaticTapeCreationPoliciesCommand.ts b/clients/client-storage-gateway/src/commands/ListAutomaticTapeCreationPoliciesCommand.ts index c0b9588ffbc4e..0a0a80ad89ac9 100644 --- a/clients/client-storage-gateway/src/commands/ListAutomaticTapeCreationPoliciesCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListAutomaticTapeCreationPoliciesCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAutomaticTapeCreationPoliciesInput, ListAutomaticTapeCreationPoliciesOutput } from "../models/models_0"; +import type { + ListAutomaticTapeCreationPoliciesInput, + ListAutomaticTapeCreationPoliciesOutput, +} from "../models/models_0"; import { ListAutomaticTapeCreationPolicies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListCacheReportsCommand.ts b/clients/client-storage-gateway/src/commands/ListCacheReportsCommand.ts index 8412b8a480795..65bf6ebe0d07f 100644 --- a/clients/client-storage-gateway/src/commands/ListCacheReportsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListCacheReportsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCacheReportsInput, ListCacheReportsOutput } from "../models/models_0"; +import type { ListCacheReportsInput, ListCacheReportsOutput } from "../models/models_0"; import { ListCacheReports } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListFileSharesCommand.ts b/clients/client-storage-gateway/src/commands/ListFileSharesCommand.ts index cf4c89e7d2f77..b8d5e95271bf1 100644 --- a/clients/client-storage-gateway/src/commands/ListFileSharesCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListFileSharesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFileSharesInput, ListFileSharesOutput } from "../models/models_0"; +import type { ListFileSharesInput, ListFileSharesOutput } from "../models/models_0"; import { ListFileShares } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListFileSystemAssociationsCommand.ts b/clients/client-storage-gateway/src/commands/ListFileSystemAssociationsCommand.ts index c0e14017b019b..1f40604216f1e 100644 --- a/clients/client-storage-gateway/src/commands/ListFileSystemAssociationsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListFileSystemAssociationsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFileSystemAssociationsInput, ListFileSystemAssociationsOutput } from "../models/models_0"; +import type { ListFileSystemAssociationsInput, ListFileSystemAssociationsOutput } from "../models/models_0"; import { ListFileSystemAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListGatewaysCommand.ts b/clients/client-storage-gateway/src/commands/ListGatewaysCommand.ts index f9f5b6e46156e..05355ec30c025 100644 --- a/clients/client-storage-gateway/src/commands/ListGatewaysCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListGatewaysCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGatewaysInput, ListGatewaysOutput } from "../models/models_0"; +import type { ListGatewaysInput, ListGatewaysOutput } from "../models/models_0"; import { ListGateways } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListLocalDisksCommand.ts b/clients/client-storage-gateway/src/commands/ListLocalDisksCommand.ts index 6b1da2a77db27..2ef9aaeaa28d8 100644 --- a/clients/client-storage-gateway/src/commands/ListLocalDisksCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListLocalDisksCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLocalDisksInput, ListLocalDisksOutput } from "../models/models_0"; +import type { ListLocalDisksInput, ListLocalDisksOutput } from "../models/models_0"; import { ListLocalDisks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListTagsForResourceCommand.ts b/clients/client-storage-gateway/src/commands/ListTagsForResourceCommand.ts index 5ab6619850264..686173571d6cf 100644 --- a/clients/client-storage-gateway/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListTapePoolsCommand.ts b/clients/client-storage-gateway/src/commands/ListTapePoolsCommand.ts index 23a558d69d8a4..3218dade5be31 100644 --- a/clients/client-storage-gateway/src/commands/ListTapePoolsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListTapePoolsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTapePoolsInput, ListTapePoolsOutput } from "../models/models_0"; +import type { ListTapePoolsInput, ListTapePoolsOutput } from "../models/models_0"; import { ListTapePools } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListTapesCommand.ts b/clients/client-storage-gateway/src/commands/ListTapesCommand.ts index d75cbb3cd3a48..f84ea31b3c569 100644 --- a/clients/client-storage-gateway/src/commands/ListTapesCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListTapesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTapesInput, ListTapesOutput } from "../models/models_0"; +import type { ListTapesInput, ListTapesOutput } from "../models/models_0"; import { ListTapes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListVolumeInitiatorsCommand.ts b/clients/client-storage-gateway/src/commands/ListVolumeInitiatorsCommand.ts index 19544b78f623f..4637e903a74a9 100644 --- a/clients/client-storage-gateway/src/commands/ListVolumeInitiatorsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListVolumeInitiatorsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVolumeInitiatorsInput, ListVolumeInitiatorsOutput } from "../models/models_0"; +import type { ListVolumeInitiatorsInput, ListVolumeInitiatorsOutput } from "../models/models_0"; import { ListVolumeInitiators } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListVolumeRecoveryPointsCommand.ts b/clients/client-storage-gateway/src/commands/ListVolumeRecoveryPointsCommand.ts index 5b373c1e9adff..8c5329a7bd585 100644 --- a/clients/client-storage-gateway/src/commands/ListVolumeRecoveryPointsCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListVolumeRecoveryPointsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVolumeRecoveryPointsInput, ListVolumeRecoveryPointsOutput } from "../models/models_0"; +import type { ListVolumeRecoveryPointsInput, ListVolumeRecoveryPointsOutput } from "../models/models_0"; import { ListVolumeRecoveryPoints } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ListVolumesCommand.ts b/clients/client-storage-gateway/src/commands/ListVolumesCommand.ts index 28fb34ff872d8..9add3c5de1c41 100644 --- a/clients/client-storage-gateway/src/commands/ListVolumesCommand.ts +++ b/clients/client-storage-gateway/src/commands/ListVolumesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVolumesInput, ListVolumesOutput } from "../models/models_0"; +import type { ListVolumesInput, ListVolumesOutput } from "../models/models_0"; import { ListVolumes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/NotifyWhenUploadedCommand.ts b/clients/client-storage-gateway/src/commands/NotifyWhenUploadedCommand.ts index f270629f16dd9..6c6da06bd287e 100644 --- a/clients/client-storage-gateway/src/commands/NotifyWhenUploadedCommand.ts +++ b/clients/client-storage-gateway/src/commands/NotifyWhenUploadedCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NotifyWhenUploadedInput, NotifyWhenUploadedOutput } from "../models/models_0"; +import type { NotifyWhenUploadedInput, NotifyWhenUploadedOutput } from "../models/models_0"; import { NotifyWhenUploaded } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/RefreshCacheCommand.ts b/clients/client-storage-gateway/src/commands/RefreshCacheCommand.ts index 9402ec2736bdb..9d46a0c4018e8 100644 --- a/clients/client-storage-gateway/src/commands/RefreshCacheCommand.ts +++ b/clients/client-storage-gateway/src/commands/RefreshCacheCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RefreshCacheInput, RefreshCacheOutput } from "../models/models_0"; +import type { RefreshCacheInput, RefreshCacheOutput } from "../models/models_0"; import { RefreshCache } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/RemoveTagsFromResourceCommand.ts b/clients/client-storage-gateway/src/commands/RemoveTagsFromResourceCommand.ts index 6ac201bee60b6..fa1c0be00d964 100644 --- a/clients/client-storage-gateway/src/commands/RemoveTagsFromResourceCommand.ts +++ b/clients/client-storage-gateway/src/commands/RemoveTagsFromResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveTagsFromResourceInput, RemoveTagsFromResourceOutput } from "../models/models_0"; +import type { RemoveTagsFromResourceInput, RemoveTagsFromResourceOutput } from "../models/models_0"; import { RemoveTagsFromResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ResetCacheCommand.ts b/clients/client-storage-gateway/src/commands/ResetCacheCommand.ts index 3ea1b04b0b1e3..30dfde40a5ea2 100644 --- a/clients/client-storage-gateway/src/commands/ResetCacheCommand.ts +++ b/clients/client-storage-gateway/src/commands/ResetCacheCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetCacheInput, ResetCacheOutput } from "../models/models_0"; +import type { ResetCacheInput, ResetCacheOutput } from "../models/models_0"; import { ResetCache } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/RetrieveTapeArchiveCommand.ts b/clients/client-storage-gateway/src/commands/RetrieveTapeArchiveCommand.ts index c89694bed03f4..64a66335d4377 100644 --- a/clients/client-storage-gateway/src/commands/RetrieveTapeArchiveCommand.ts +++ b/clients/client-storage-gateway/src/commands/RetrieveTapeArchiveCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetrieveTapeArchiveInput, RetrieveTapeArchiveOutput } from "../models/models_0"; +import type { RetrieveTapeArchiveInput, RetrieveTapeArchiveOutput } from "../models/models_0"; import { RetrieveTapeArchive } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/RetrieveTapeRecoveryPointCommand.ts b/clients/client-storage-gateway/src/commands/RetrieveTapeRecoveryPointCommand.ts index 4e965c7250aa6..f0b5a830e2a4e 100644 --- a/clients/client-storage-gateway/src/commands/RetrieveTapeRecoveryPointCommand.ts +++ b/clients/client-storage-gateway/src/commands/RetrieveTapeRecoveryPointCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RetrieveTapeRecoveryPointInput, RetrieveTapeRecoveryPointOutput } from "../models/models_0"; +import type { RetrieveTapeRecoveryPointInput, RetrieveTapeRecoveryPointOutput } from "../models/models_0"; import { RetrieveTapeRecoveryPoint } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/SetLocalConsolePasswordCommand.ts b/clients/client-storage-gateway/src/commands/SetLocalConsolePasswordCommand.ts index ea21f734cb2fb..85094f7b78f6c 100644 --- a/clients/client-storage-gateway/src/commands/SetLocalConsolePasswordCommand.ts +++ b/clients/client-storage-gateway/src/commands/SetLocalConsolePasswordCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetLocalConsolePasswordInput, SetLocalConsolePasswordOutput } from "../models/models_0"; +import type { SetLocalConsolePasswordInput, SetLocalConsolePasswordOutput } from "../models/models_0"; import { SetLocalConsolePassword } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/SetSMBGuestPasswordCommand.ts b/clients/client-storage-gateway/src/commands/SetSMBGuestPasswordCommand.ts index 7d41945da80b9..afeca5077014b 100644 --- a/clients/client-storage-gateway/src/commands/SetSMBGuestPasswordCommand.ts +++ b/clients/client-storage-gateway/src/commands/SetSMBGuestPasswordCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SetSMBGuestPasswordInput, SetSMBGuestPasswordOutput } from "../models/models_0"; +import type { SetSMBGuestPasswordInput, SetSMBGuestPasswordOutput } from "../models/models_0"; import { SetSMBGuestPassword } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/ShutdownGatewayCommand.ts b/clients/client-storage-gateway/src/commands/ShutdownGatewayCommand.ts index 8429ea2b8cbb2..340ace72c3d2e 100644 --- a/clients/client-storage-gateway/src/commands/ShutdownGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/ShutdownGatewayCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ShutdownGatewayInput, ShutdownGatewayOutput } from "../models/models_0"; +import type { ShutdownGatewayInput, ShutdownGatewayOutput } from "../models/models_0"; import { ShutdownGateway } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/StartAvailabilityMonitorTestCommand.ts b/clients/client-storage-gateway/src/commands/StartAvailabilityMonitorTestCommand.ts index 792f2f3fcf72f..25c2900aad10c 100644 --- a/clients/client-storage-gateway/src/commands/StartAvailabilityMonitorTestCommand.ts +++ b/clients/client-storage-gateway/src/commands/StartAvailabilityMonitorTestCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartAvailabilityMonitorTestInput, StartAvailabilityMonitorTestOutput } from "../models/models_0"; +import type { StartAvailabilityMonitorTestInput, StartAvailabilityMonitorTestOutput } from "../models/models_0"; import { StartAvailabilityMonitorTest } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/StartCacheReportCommand.ts b/clients/client-storage-gateway/src/commands/StartCacheReportCommand.ts index 424b24e87b1c1..e7737ea3d606d 100644 --- a/clients/client-storage-gateway/src/commands/StartCacheReportCommand.ts +++ b/clients/client-storage-gateway/src/commands/StartCacheReportCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCacheReportInput, StartCacheReportOutput } from "../models/models_0"; +import type { StartCacheReportInput, StartCacheReportOutput } from "../models/models_0"; import { StartCacheReport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/StartGatewayCommand.ts b/clients/client-storage-gateway/src/commands/StartGatewayCommand.ts index f079cfea790ec..6a78e65c4940b 100644 --- a/clients/client-storage-gateway/src/commands/StartGatewayCommand.ts +++ b/clients/client-storage-gateway/src/commands/StartGatewayCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartGatewayInput, StartGatewayOutput } from "../models/models_0"; +import type { StartGatewayInput, StartGatewayOutput } from "../models/models_0"; import { StartGateway } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateAutomaticTapeCreationPolicyCommand.ts b/clients/client-storage-gateway/src/commands/UpdateAutomaticTapeCreationPolicyCommand.ts index 40788f3d0cc40..ce88758936f0f 100644 --- a/clients/client-storage-gateway/src/commands/UpdateAutomaticTapeCreationPolicyCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateAutomaticTapeCreationPolicyCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAutomaticTapeCreationPolicyInput, UpdateAutomaticTapeCreationPolicyOutput } from "../models/models_0"; +import type { + UpdateAutomaticTapeCreationPolicyInput, + UpdateAutomaticTapeCreationPolicyOutput, +} from "../models/models_0"; import { UpdateAutomaticTapeCreationPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitCommand.ts b/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitCommand.ts index 63d8a5bb1ba71..a4ca4440d3aed 100644 --- a/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBandwidthRateLimitInput, UpdateBandwidthRateLimitOutput } from "../models/models_0"; +import type { UpdateBandwidthRateLimitInput, UpdateBandwidthRateLimitOutput } from "../models/models_0"; import { UpdateBandwidthRateLimit } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitScheduleCommand.ts b/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitScheduleCommand.ts index e6f1ff2e3e7c8..43be1e58156ca 100644 --- a/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateBandwidthRateLimitScheduleCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBandwidthRateLimitScheduleInput, UpdateBandwidthRateLimitScheduleOutput } from "../models/models_0"; +import type { UpdateBandwidthRateLimitScheduleInput, UpdateBandwidthRateLimitScheduleOutput } from "../models/models_0"; import { UpdateBandwidthRateLimitSchedule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateChapCredentialsCommand.ts b/clients/client-storage-gateway/src/commands/UpdateChapCredentialsCommand.ts index 4aee955b8542a..afe22d9055782 100644 --- a/clients/client-storage-gateway/src/commands/UpdateChapCredentialsCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateChapCredentialsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateChapCredentialsInput, UpdateChapCredentialsOutput } from "../models/models_0"; +import type { UpdateChapCredentialsInput, UpdateChapCredentialsOutput } from "../models/models_0"; import { UpdateChapCredentials } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateFileSystemAssociationCommand.ts b/clients/client-storage-gateway/src/commands/UpdateFileSystemAssociationCommand.ts index c81c03f57ade9..08d109831f602 100644 --- a/clients/client-storage-gateway/src/commands/UpdateFileSystemAssociationCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateFileSystemAssociationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFileSystemAssociationInput, UpdateFileSystemAssociationOutput } from "../models/models_0"; +import type { UpdateFileSystemAssociationInput, UpdateFileSystemAssociationOutput } from "../models/models_0"; import { UpdateFileSystemAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateGatewayInformationCommand.ts b/clients/client-storage-gateway/src/commands/UpdateGatewayInformationCommand.ts index 2c0251e07c388..bb1b8547bdbe4 100644 --- a/clients/client-storage-gateway/src/commands/UpdateGatewayInformationCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateGatewayInformationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGatewayInformationInput, UpdateGatewayInformationOutput } from "../models/models_0"; +import type { UpdateGatewayInformationInput, UpdateGatewayInformationOutput } from "../models/models_0"; import { UpdateGatewayInformation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts b/clients/client-storage-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts index 7d27e644a78f3..1c16eab9dec75 100644 --- a/clients/client-storage-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateGatewaySoftwareNowCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGatewaySoftwareNowInput, UpdateGatewaySoftwareNowOutput } from "../models/models_0"; +import type { UpdateGatewaySoftwareNowInput, UpdateGatewaySoftwareNowOutput } from "../models/models_0"; import { UpdateGatewaySoftwareNow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateMaintenanceStartTimeCommand.ts b/clients/client-storage-gateway/src/commands/UpdateMaintenanceStartTimeCommand.ts index 8d38f843801bf..67c8453d8344e 100644 --- a/clients/client-storage-gateway/src/commands/UpdateMaintenanceStartTimeCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateMaintenanceStartTimeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMaintenanceStartTimeInput, UpdateMaintenanceStartTimeOutput } from "../models/models_0"; +import type { UpdateMaintenanceStartTimeInput, UpdateMaintenanceStartTimeOutput } from "../models/models_0"; import { UpdateMaintenanceStartTime } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateNFSFileShareCommand.ts b/clients/client-storage-gateway/src/commands/UpdateNFSFileShareCommand.ts index 5a1bf739e5373..f26bc730095aa 100644 --- a/clients/client-storage-gateway/src/commands/UpdateNFSFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateNFSFileShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNFSFileShareInput, UpdateNFSFileShareOutput } from "../models/models_0"; +import type { UpdateNFSFileShareInput, UpdateNFSFileShareOutput } from "../models/models_0"; import { UpdateNFSFileShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateSMBFileShareCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSMBFileShareCommand.ts index b052001f981a6..0dd4adb476d1a 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSMBFileShareCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSMBFileShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSMBFileShareInput, UpdateSMBFileShareOutput } from "../models/models_0"; +import type { UpdateSMBFileShareInput, UpdateSMBFileShareOutput } from "../models/models_0"; import { UpdateSMBFileShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateSMBFileShareVisibilityCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSMBFileShareVisibilityCommand.ts index e38d442e1a43d..e46c42013e5c5 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSMBFileShareVisibilityCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSMBFileShareVisibilityCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSMBFileShareVisibilityInput, UpdateSMBFileShareVisibilityOutput } from "../models/models_0"; +import type { UpdateSMBFileShareVisibilityInput, UpdateSMBFileShareVisibilityOutput } from "../models/models_0"; import { UpdateSMBFileShareVisibility } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateSMBLocalGroupsCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSMBLocalGroupsCommand.ts index 1597d3d63861b..256c47cc3e461 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSMBLocalGroupsCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSMBLocalGroupsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSMBLocalGroupsInput, UpdateSMBLocalGroupsOutput } from "../models/models_0"; +import type { UpdateSMBLocalGroupsInput, UpdateSMBLocalGroupsOutput } from "../models/models_0"; import { UpdateSMBLocalGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateSMBSecurityStrategyCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSMBSecurityStrategyCommand.ts index 438fa3c17d5ba..85b4a2f3b3abe 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSMBSecurityStrategyCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSMBSecurityStrategyCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSMBSecurityStrategyInput, UpdateSMBSecurityStrategyOutput } from "../models/models_0"; +import type { UpdateSMBSecurityStrategyInput, UpdateSMBSecurityStrategyOutput } from "../models/models_0"; import { UpdateSMBSecurityStrategy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateSnapshotScheduleCommand.ts b/clients/client-storage-gateway/src/commands/UpdateSnapshotScheduleCommand.ts index e069a1f35ec92..1d7ccb248c6b0 100644 --- a/clients/client-storage-gateway/src/commands/UpdateSnapshotScheduleCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateSnapshotScheduleCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSnapshotScheduleInput, UpdateSnapshotScheduleOutput } from "../models/models_0"; +import type { UpdateSnapshotScheduleInput, UpdateSnapshotScheduleOutput } from "../models/models_0"; import { UpdateSnapshotSchedule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/commands/UpdateVTLDeviceTypeCommand.ts b/clients/client-storage-gateway/src/commands/UpdateVTLDeviceTypeCommand.ts index 815be54f5389a..94ca4028c0432 100644 --- a/clients/client-storage-gateway/src/commands/UpdateVTLDeviceTypeCommand.ts +++ b/clients/client-storage-gateway/src/commands/UpdateVTLDeviceTypeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVTLDeviceTypeInput, UpdateVTLDeviceTypeOutput } from "../models/models_0"; +import type { UpdateVTLDeviceTypeInput, UpdateVTLDeviceTypeOutput } from "../models/models_0"; import { UpdateVTLDeviceType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, StorageGatewayClientResolvedConfig } from "../StorageGatewayClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + StorageGatewayClientResolvedConfig, +} from "../StorageGatewayClient"; /** * @public diff --git a/clients/client-storage-gateway/src/endpoint/EndpointParameters.ts b/clients/client-storage-gateway/src/endpoint/EndpointParameters.ts index d342d1c36b631..15afc32a929d9 100644 --- a/clients/client-storage-gateway/src/endpoint/EndpointParameters.ts +++ b/clients/client-storage-gateway/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-storage-gateway/src/endpoint/endpointResolver.ts b/clients/client-storage-gateway/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-storage-gateway/src/endpoint/endpointResolver.ts +++ b/clients/client-storage-gateway/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-storage-gateway/src/extensionConfiguration.ts b/clients/client-storage-gateway/src/extensionConfiguration.ts index 80f497dc882bb..1c98322ecb04c 100644 --- a/clients/client-storage-gateway/src/extensionConfiguration.ts +++ b/clients/client-storage-gateway/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-storage-gateway/src/models/StorageGatewayServiceException.ts b/clients/client-storage-gateway/src/models/StorageGatewayServiceException.ts index 638f63380ab71..8d01de4275972 100644 --- a/clients/client-storage-gateway/src/models/StorageGatewayServiceException.ts +++ b/clients/client-storage-gateway/src/models/StorageGatewayServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-storage-gateway/src/models/errors.ts b/clients/client-storage-gateway/src/models/errors.ts index 4b7b9bc673b31..1a38daa39dae8 100644 --- a/clients/client-storage-gateway/src/models/errors.ts +++ b/clients/client-storage-gateway/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { StorageGatewayError } from "./models_0"; import { StorageGatewayServiceException as __BaseException } from "./StorageGatewayServiceException"; diff --git a/clients/client-storage-gateway/src/pagination/DescribeTapeArchivesPaginator.ts b/clients/client-storage-gateway/src/pagination/DescribeTapeArchivesPaginator.ts index d704431814c76..9515bd9c7089e 100644 --- a/clients/client-storage-gateway/src/pagination/DescribeTapeArchivesPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/DescribeTapeArchivesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTapeArchivesCommand, diff --git a/clients/client-storage-gateway/src/pagination/DescribeTapeRecoveryPointsPaginator.ts b/clients/client-storage-gateway/src/pagination/DescribeTapeRecoveryPointsPaginator.ts index bbad2b8f09c1d..deca79454a964 100644 --- a/clients/client-storage-gateway/src/pagination/DescribeTapeRecoveryPointsPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/DescribeTapeRecoveryPointsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTapeRecoveryPointsCommand, diff --git a/clients/client-storage-gateway/src/pagination/DescribeTapesPaginator.ts b/clients/client-storage-gateway/src/pagination/DescribeTapesPaginator.ts index 1e1d254893913..f1e0b53c75d2e 100644 --- a/clients/client-storage-gateway/src/pagination/DescribeTapesPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/DescribeTapesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeTapesCommand, diff --git a/clients/client-storage-gateway/src/pagination/DescribeVTLDevicesPaginator.ts b/clients/client-storage-gateway/src/pagination/DescribeVTLDevicesPaginator.ts index 7f67204890194..5b987b76c0bfc 100644 --- a/clients/client-storage-gateway/src/pagination/DescribeVTLDevicesPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/DescribeVTLDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeVTLDevicesCommand, diff --git a/clients/client-storage-gateway/src/pagination/Interfaces.ts b/clients/client-storage-gateway/src/pagination/Interfaces.ts index 141498a5bc839..8fee3cbbe9ad9 100644 --- a/clients/client-storage-gateway/src/pagination/Interfaces.ts +++ b/clients/client-storage-gateway/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { StorageGatewayClient } from "../StorageGatewayClient"; diff --git a/clients/client-storage-gateway/src/pagination/ListCacheReportsPaginator.ts b/clients/client-storage-gateway/src/pagination/ListCacheReportsPaginator.ts index c3e7f977e8a1c..870d61598dc92 100644 --- a/clients/client-storage-gateway/src/pagination/ListCacheReportsPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/ListCacheReportsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCacheReportsCommand, diff --git a/clients/client-storage-gateway/src/pagination/ListFileSharesPaginator.ts b/clients/client-storage-gateway/src/pagination/ListFileSharesPaginator.ts index 35a2a3fa64c9b..dc3d561b57f64 100644 --- a/clients/client-storage-gateway/src/pagination/ListFileSharesPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/ListFileSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFileSharesCommand, diff --git a/clients/client-storage-gateway/src/pagination/ListFileSystemAssociationsPaginator.ts b/clients/client-storage-gateway/src/pagination/ListFileSystemAssociationsPaginator.ts index 185c837503e6b..c432ce9384052 100644 --- a/clients/client-storage-gateway/src/pagination/ListFileSystemAssociationsPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/ListFileSystemAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFileSystemAssociationsCommand, diff --git a/clients/client-storage-gateway/src/pagination/ListGatewaysPaginator.ts b/clients/client-storage-gateway/src/pagination/ListGatewaysPaginator.ts index b49bdb8bf82fd..cbc6cb139924d 100644 --- a/clients/client-storage-gateway/src/pagination/ListGatewaysPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/ListGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGatewaysCommand, diff --git a/clients/client-storage-gateway/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-storage-gateway/src/pagination/ListTagsForResourcePaginator.ts index 8d3e3e187d556..95e05f44fee58 100644 --- a/clients/client-storage-gateway/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-storage-gateway/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-storage-gateway/src/pagination/ListTapePoolsPaginator.ts b/clients/client-storage-gateway/src/pagination/ListTapePoolsPaginator.ts index f0ab0c48518c0..f815561bb18c3 100644 --- a/clients/client-storage-gateway/src/pagination/ListTapePoolsPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/ListTapePoolsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTapePoolsCommand, diff --git a/clients/client-storage-gateway/src/pagination/ListTapesPaginator.ts b/clients/client-storage-gateway/src/pagination/ListTapesPaginator.ts index 7e5fac72dd162..0459f303df743 100644 --- a/clients/client-storage-gateway/src/pagination/ListTapesPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/ListTapesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTapesCommand, ListTapesCommandInput, ListTapesCommandOutput } from "../commands/ListTapesCommand"; import { StorageGatewayClient } from "../StorageGatewayClient"; diff --git a/clients/client-storage-gateway/src/pagination/ListVolumesPaginator.ts b/clients/client-storage-gateway/src/pagination/ListVolumesPaginator.ts index e7c19f82a74a5..7905f4a91dbd7 100644 --- a/clients/client-storage-gateway/src/pagination/ListVolumesPaginator.ts +++ b/clients/client-storage-gateway/src/pagination/ListVolumesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVolumesCommand, ListVolumesCommandInput, ListVolumesCommandOutput } from "../commands/ListVolumesCommand"; import { StorageGatewayClient } from "../StorageGatewayClient"; diff --git a/clients/client-storage-gateway/src/runtimeConfig.browser.ts b/clients/client-storage-gateway/src/runtimeConfig.browser.ts index ef7bf905d3b56..be1d97dc6b9ca 100644 --- a/clients/client-storage-gateway/src/runtimeConfig.browser.ts +++ b/clients/client-storage-gateway/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { StorageGatewayClientConfig } from "./StorageGatewayClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { StorageGatewayClientConfig } from "./StorageGatewayClient"; /** * @internal diff --git a/clients/client-storage-gateway/src/runtimeConfig.native.ts b/clients/client-storage-gateway/src/runtimeConfig.native.ts index 8fd6e98232040..3be2ca82f5c44 100644 --- a/clients/client-storage-gateway/src/runtimeConfig.native.ts +++ b/clients/client-storage-gateway/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { StorageGatewayClientConfig } from "./StorageGatewayClient"; +import type { StorageGatewayClientConfig } from "./StorageGatewayClient"; /** * @internal diff --git a/clients/client-storage-gateway/src/runtimeConfig.shared.ts b/clients/client-storage-gateway/src/runtimeConfig.shared.ts index 90e8f60601273..7f6febe88e010 100644 --- a/clients/client-storage-gateway/src/runtimeConfig.shared.ts +++ b/clients/client-storage-gateway/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultStorageGatewayHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { StorageGatewayClientConfig } from "./StorageGatewayClient"; +import type { StorageGatewayClientConfig } from "./StorageGatewayClient"; /** * @internal diff --git a/clients/client-storage-gateway/src/runtimeConfig.ts b/clients/client-storage-gateway/src/runtimeConfig.ts index c1995b6c44b00..0b0775fdddaf6 100644 --- a/clients/client-storage-gateway/src/runtimeConfig.ts +++ b/clients/client-storage-gateway/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { StorageGatewayClientConfig } from "./StorageGatewayClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { StorageGatewayClientConfig } from "./StorageGatewayClient"; /** * @internal diff --git a/clients/client-storage-gateway/src/runtimeExtensions.ts b/clients/client-storage-gateway/src/runtimeExtensions.ts index bd8a99efcbd9e..8b2c4d851cac1 100644 --- a/clients/client-storage-gateway/src/runtimeExtensions.ts +++ b/clients/client-storage-gateway/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { StorageGatewayExtensionConfiguration } from "./extensionConfiguration"; +import type { StorageGatewayExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-storage-gateway/src/schemas/schemas_0.ts b/clients/client-storage-gateway/src/schemas/schemas_0.ts index 6bd6697b5db89..97d6204142b6a 100644 --- a/clients/client-storage-gateway/src/schemas/schemas_0.ts +++ b/clients/client-storage-gateway/src/schemas/schemas_0.ts @@ -567,7 +567,7 @@ const n0 = "com.amazonaws.storagegateway"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-sts/package.json b/clients/client-sts/package.json index 1026d5820825f..196f540e2042e 100644 --- a/clients/client-sts/package.json +++ b/clients/client-sts/package.json @@ -34,26 +34,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-sts/src/STS.ts b/clients/client-sts/src/STS.ts index 0f06c0c72211a..af3353b77a013 100644 --- a/clients/client-sts/src/STS.ts +++ b/clients/client-sts/src/STS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssumeRoleCommand, AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand"; import { @@ -49,7 +49,7 @@ import { GetWebIdentityTokenCommandInput, GetWebIdentityTokenCommandOutput, } from "./commands/GetWebIdentityTokenCommand"; -import { STSClient, STSClientConfig } from "./STSClient"; +import { STSClient } from "./STSClient"; const commands = { AssumeRoleCommand, diff --git a/clients/client-sts/src/STSClient.ts b/clients/client-sts/src/STSClient.ts index 16853890a8d18..94c7912ddabe2 100644 --- a/clients/client-sts/src/STSClient.ts +++ b/clients/client-sts/src/STSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSTSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand"; @@ -87,7 +96,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-sts/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-sts/src/auth/httpAuthExtensionConfiguration.ts index 2c37e6db7081c..7b476d0d3d724 100644 --- a/clients/client-sts/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-sts/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { STSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { STSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-sts/src/auth/httpAuthSchemeProvider.ts b/clients/client-sts/src/auth/httpAuthSchemeProvider.ts index 02f08c8be3425..a1c1c3f8ebfae 100644 --- a/clients/client-sts/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-sts/src/auth/httpAuthSchemeProvider.ts @@ -6,18 +6,18 @@ import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; import { + type HandlerExecutionContext, + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParameters, + type HttpAuthSchemeParametersProvider, + type HttpAuthSchemeProvider, + type Provider, Client, - HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, - HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, - HttpAuthSchemeProvider, - Provider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { STSClient, STSClientConfig, STSClientResolvedConfig } from "../STSClient"; +import { type STSClientResolvedConfig, STSClient, STSClientConfig } from "../STSClient"; /** * @internal diff --git a/clients/client-sts/src/commands/AssumeRoleCommand.ts b/clients/client-sts/src/commands/AssumeRoleCommand.ts index 0fcadd48c64ac..b0e0e7b2e0a21 100644 --- a/clients/client-sts/src/commands/AssumeRoleCommand.ts +++ b/clients/client-sts/src/commands/AssumeRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeRoleRequest, AssumeRoleResponse } from "../models/models_0"; +import type { AssumeRoleRequest, AssumeRoleResponse } from "../models/models_0"; import { AssumeRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/AssumeRoleWithSAMLCommand.ts b/clients/client-sts/src/commands/AssumeRoleWithSAMLCommand.ts index 0eeb23f6b8809..87cb98b31563b 100644 --- a/clients/client-sts/src/commands/AssumeRoleWithSAMLCommand.ts +++ b/clients/client-sts/src/commands/AssumeRoleWithSAMLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeRoleWithSAMLRequest, AssumeRoleWithSAMLResponse } from "../models/models_0"; +import type { AssumeRoleWithSAMLRequest, AssumeRoleWithSAMLResponse } from "../models/models_0"; import { AssumeRoleWithSAML } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/AssumeRoleWithWebIdentityCommand.ts b/clients/client-sts/src/commands/AssumeRoleWithWebIdentityCommand.ts index 99dd2018c54b0..a078029699e44 100644 --- a/clients/client-sts/src/commands/AssumeRoleWithWebIdentityCommand.ts +++ b/clients/client-sts/src/commands/AssumeRoleWithWebIdentityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeRoleWithWebIdentityRequest, AssumeRoleWithWebIdentityResponse } from "../models/models_0"; +import type { AssumeRoleWithWebIdentityRequest, AssumeRoleWithWebIdentityResponse } from "../models/models_0"; import { AssumeRoleWithWebIdentity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/AssumeRootCommand.ts b/clients/client-sts/src/commands/AssumeRootCommand.ts index 67ad2cf4bcf7f..13a2a74499339 100644 --- a/clients/client-sts/src/commands/AssumeRootCommand.ts +++ b/clients/client-sts/src/commands/AssumeRootCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeRootRequest, AssumeRootResponse } from "../models/models_0"; +import type { AssumeRootRequest, AssumeRootResponse } from "../models/models_0"; import { AssumeRoot } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/DecodeAuthorizationMessageCommand.ts b/clients/client-sts/src/commands/DecodeAuthorizationMessageCommand.ts index 44c009c0c06fc..a46c20ddf43c7 100644 --- a/clients/client-sts/src/commands/DecodeAuthorizationMessageCommand.ts +++ b/clients/client-sts/src/commands/DecodeAuthorizationMessageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DecodeAuthorizationMessageRequest, DecodeAuthorizationMessageResponse } from "../models/models_0"; +import type { DecodeAuthorizationMessageRequest, DecodeAuthorizationMessageResponse } from "../models/models_0"; import { DecodeAuthorizationMessage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/GetAccessKeyInfoCommand.ts b/clients/client-sts/src/commands/GetAccessKeyInfoCommand.ts index 4fb919a89f3fc..768f05c68146f 100644 --- a/clients/client-sts/src/commands/GetAccessKeyInfoCommand.ts +++ b/clients/client-sts/src/commands/GetAccessKeyInfoCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessKeyInfoRequest, GetAccessKeyInfoResponse } from "../models/models_0"; +import type { GetAccessKeyInfoRequest, GetAccessKeyInfoResponse } from "../models/models_0"; import { GetAccessKeyInfo } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/GetCallerIdentityCommand.ts b/clients/client-sts/src/commands/GetCallerIdentityCommand.ts index 8e5db27453543..4d9b9f4de28c5 100644 --- a/clients/client-sts/src/commands/GetCallerIdentityCommand.ts +++ b/clients/client-sts/src/commands/GetCallerIdentityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCallerIdentityRequest, GetCallerIdentityResponse } from "../models/models_0"; +import type { GetCallerIdentityRequest, GetCallerIdentityResponse } from "../models/models_0"; import { GetCallerIdentity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/GetDelegatedAccessTokenCommand.ts b/clients/client-sts/src/commands/GetDelegatedAccessTokenCommand.ts index df45cdd6c8761..714b427a0192d 100644 --- a/clients/client-sts/src/commands/GetDelegatedAccessTokenCommand.ts +++ b/clients/client-sts/src/commands/GetDelegatedAccessTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDelegatedAccessTokenRequest, GetDelegatedAccessTokenResponse } from "../models/models_0"; +import type { GetDelegatedAccessTokenRequest, GetDelegatedAccessTokenResponse } from "../models/models_0"; import { GetDelegatedAccessToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/GetFederationTokenCommand.ts b/clients/client-sts/src/commands/GetFederationTokenCommand.ts index 38c1f41991502..6b927aa3e5bf8 100644 --- a/clients/client-sts/src/commands/GetFederationTokenCommand.ts +++ b/clients/client-sts/src/commands/GetFederationTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFederationTokenRequest, GetFederationTokenResponse } from "../models/models_0"; +import type { GetFederationTokenRequest, GetFederationTokenResponse } from "../models/models_0"; import { GetFederationToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/GetSessionTokenCommand.ts b/clients/client-sts/src/commands/GetSessionTokenCommand.ts index 2d149f64daf10..469de3e2ae119 100644 --- a/clients/client-sts/src/commands/GetSessionTokenCommand.ts +++ b/clients/client-sts/src/commands/GetSessionTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionTokenRequest, GetSessionTokenResponse } from "../models/models_0"; +import type { GetSessionTokenRequest, GetSessionTokenResponse } from "../models/models_0"; import { GetSessionToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/commands/GetWebIdentityTokenCommand.ts b/clients/client-sts/src/commands/GetWebIdentityTokenCommand.ts index 699e5c75eb8e1..304ca31deff7c 100644 --- a/clients/client-sts/src/commands/GetWebIdentityTokenCommand.ts +++ b/clients/client-sts/src/commands/GetWebIdentityTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWebIdentityTokenRequest, GetWebIdentityTokenResponse } from "../models/models_0"; +import type { GetWebIdentityTokenRequest, GetWebIdentityTokenResponse } from "../models/models_0"; import { GetWebIdentityToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/clients/client-sts/src/endpoint/EndpointParameters.ts b/clients/client-sts/src/endpoint/EndpointParameters.ts index 866c98351399a..1130112c5f327 100644 --- a/clients/client-sts/src/endpoint/EndpointParameters.ts +++ b/clients/client-sts/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-sts/src/endpoint/endpointResolver.ts b/clients/client-sts/src/endpoint/endpointResolver.ts index b1d10295e0b31..94754f3ce5a4a 100644 --- a/clients/client-sts/src/endpoint/endpointResolver.ts +++ b/clients/client-sts/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-sts/src/extensionConfiguration.ts b/clients/client-sts/src/extensionConfiguration.ts index 160bb3e13bcd2..568ccaf5e4c47 100644 --- a/clients/client-sts/src/extensionConfiguration.ts +++ b/clients/client-sts/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-sts/src/models/STSServiceException.ts b/clients/client-sts/src/models/STSServiceException.ts index 39bb3621516bd..b16a999c17d96 100644 --- a/clients/client-sts/src/models/STSServiceException.ts +++ b/clients/client-sts/src/models/STSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-sts/src/models/errors.ts b/clients/client-sts/src/models/errors.ts index fbf91d8369e73..f456303c351a2 100644 --- a/clients/client-sts/src/models/errors.ts +++ b/clients/client-sts/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { STSServiceException as __BaseException } from "./STSServiceException"; diff --git a/clients/client-sts/src/runtimeConfig.browser.ts b/clients/client-sts/src/runtimeConfig.browser.ts index aebe75df7132f..823cb9841f78b 100644 --- a/clients/client-sts/src/runtimeConfig.browser.ts +++ b/clients/client-sts/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { STSClientConfig } from "./STSClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { STSClientConfig } from "./STSClient"; /** * @internal diff --git a/clients/client-sts/src/runtimeConfig.native.ts b/clients/client-sts/src/runtimeConfig.native.ts index 8be1a44031c2e..2fe00d9799d03 100644 --- a/clients/client-sts/src/runtimeConfig.native.ts +++ b/clients/client-sts/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { STSClientConfig } from "./STSClient"; +import type { STSClientConfig } from "./STSClient"; /** * @internal diff --git a/clients/client-sts/src/runtimeConfig.shared.ts b/clients/client-sts/src/runtimeConfig.shared.ts index 726c1f8dfbc56..e037d59b9e296 100644 --- a/clients/client-sts/src/runtimeConfig.shared.ts +++ b/clients/client-sts/src/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSTSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { STSClientConfig } from "./STSClient"; +import type { STSClientConfig } from "./STSClient"; /** * @internal diff --git a/clients/client-sts/src/runtimeConfig.ts b/clients/client-sts/src/runtimeConfig.ts index 56d408e6bd38f..4af5428f97452 100644 --- a/clients/client-sts/src/runtimeConfig.ts +++ b/clients/client-sts/src/runtimeConfig.ts @@ -20,14 +20,14 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; -import { IdentityProviderConfig } from "@smithy/types"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import type { IdentityProviderConfig } from "@smithy/types"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { STSClientConfig } from "./STSClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { STSClientConfig } from "./STSClient"; /** * @internal diff --git a/clients/client-sts/src/runtimeExtensions.ts b/clients/client-sts/src/runtimeExtensions.ts index 9b1345195f705..d1b869e1ed655 100644 --- a/clients/client-sts/src/runtimeExtensions.ts +++ b/clients/client-sts/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { STSExtensionConfiguration } from "./extensionConfiguration"; +import type { STSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-sts/src/schemas/schemas_0.ts b/clients/client-sts/src/schemas/schemas_0.ts index 2cd29f8172db6..aa70ff2bdbfad 100644 --- a/clients/client-sts/src/schemas/schemas_0.ts +++ b/clients/client-sts/src/schemas/schemas_0.ts @@ -113,7 +113,7 @@ const n0 = "com.amazonaws.sts"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-supplychain/package.json b/clients/client-supplychain/package.json index 4794a2d7ced02..06deb6dfd9336 100644 --- a/clients/client-supplychain/package.json +++ b/clients/client-supplychain/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-supplychain/src/SupplyChain.ts b/clients/client-supplychain/src/SupplyChain.ts index 7daae60c3baf0..50e357feeded2 100644 --- a/clients/client-supplychain/src/SupplyChain.ts +++ b/clients/client-supplychain/src/SupplyChain.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateBillOfMaterialsImportJobCommand, @@ -144,7 +144,7 @@ import { UpdateInstanceCommandInput, UpdateInstanceCommandOutput, } from "./commands/UpdateInstanceCommand"; -import { SupplyChainClient, SupplyChainClientConfig } from "./SupplyChainClient"; +import { SupplyChainClient } from "./SupplyChainClient"; const commands = { CreateBillOfMaterialsImportJobCommand, diff --git a/clients/client-supplychain/src/SupplyChainClient.ts b/clients/client-supplychain/src/SupplyChainClient.ts index 96144d146345d..1f36f86001994 100644 --- a/clients/client-supplychain/src/SupplyChainClient.ts +++ b/clients/client-supplychain/src/SupplyChainClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSupplyChainHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -160,7 +169,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-supplychain/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-supplychain/src/auth/httpAuthExtensionConfiguration.ts index 962f7348b5435..b75f57049ad54 100644 --- a/clients/client-supplychain/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-supplychain/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SupplyChainHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SupplyChainHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-supplychain/src/auth/httpAuthSchemeProvider.ts b/clients/client-supplychain/src/auth/httpAuthSchemeProvider.ts index c26cf13c655da..5b7c8bd6e976c 100644 --- a/clients/client-supplychain/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-supplychain/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SupplyChainClientConfig, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import { type SupplyChainClientResolvedConfig, SupplyChainClientConfig } from "../SupplyChainClient"; /** * @internal diff --git a/clients/client-supplychain/src/commands/CreateBillOfMaterialsImportJobCommand.ts b/clients/client-supplychain/src/commands/CreateBillOfMaterialsImportJobCommand.ts index e74ea2a5cae81..dcea26ce14819 100644 --- a/clients/client-supplychain/src/commands/CreateBillOfMaterialsImportJobCommand.ts +++ b/clients/client-supplychain/src/commands/CreateBillOfMaterialsImportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBillOfMaterialsImportJobRequest, CreateBillOfMaterialsImportJobResponse } from "../models/models_0"; +import type { CreateBillOfMaterialsImportJobRequest, CreateBillOfMaterialsImportJobResponse } from "../models/models_0"; import { CreateBillOfMaterialsImportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/CreateDataIntegrationFlowCommand.ts b/clients/client-supplychain/src/commands/CreateDataIntegrationFlowCommand.ts index 59673c642915b..8171bd7212fd8 100644 --- a/clients/client-supplychain/src/commands/CreateDataIntegrationFlowCommand.ts +++ b/clients/client-supplychain/src/commands/CreateDataIntegrationFlowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataIntegrationFlowRequest, CreateDataIntegrationFlowResponse } from "../models/models_0"; +import type { CreateDataIntegrationFlowRequest, CreateDataIntegrationFlowResponse } from "../models/models_0"; import { CreateDataIntegrationFlow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/CreateDataLakeDatasetCommand.ts b/clients/client-supplychain/src/commands/CreateDataLakeDatasetCommand.ts index a77b2addd0c69..69f68b9c3e045 100644 --- a/clients/client-supplychain/src/commands/CreateDataLakeDatasetCommand.ts +++ b/clients/client-supplychain/src/commands/CreateDataLakeDatasetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataLakeDatasetRequest, CreateDataLakeDatasetResponse } from "../models/models_0"; +import type { CreateDataLakeDatasetRequest, CreateDataLakeDatasetResponse } from "../models/models_0"; import { CreateDataLakeDataset } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/CreateDataLakeNamespaceCommand.ts b/clients/client-supplychain/src/commands/CreateDataLakeNamespaceCommand.ts index 9d35608ace3b7..a7abe93e32495 100644 --- a/clients/client-supplychain/src/commands/CreateDataLakeNamespaceCommand.ts +++ b/clients/client-supplychain/src/commands/CreateDataLakeNamespaceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataLakeNamespaceRequest, CreateDataLakeNamespaceResponse } from "../models/models_0"; +import type { CreateDataLakeNamespaceRequest, CreateDataLakeNamespaceResponse } from "../models/models_0"; import { CreateDataLakeNamespace } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/CreateInstanceCommand.ts b/clients/client-supplychain/src/commands/CreateInstanceCommand.ts index 3b70876ba337c..36b03a3e9738e 100644 --- a/clients/client-supplychain/src/commands/CreateInstanceCommand.ts +++ b/clients/client-supplychain/src/commands/CreateInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateInstanceRequest, CreateInstanceResponse } from "../models/models_0"; +import type { CreateInstanceRequest, CreateInstanceResponse } from "../models/models_0"; import { CreateInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/DeleteDataIntegrationFlowCommand.ts b/clients/client-supplychain/src/commands/DeleteDataIntegrationFlowCommand.ts index 2af2164207f0f..dbc25b8d2553e 100644 --- a/clients/client-supplychain/src/commands/DeleteDataIntegrationFlowCommand.ts +++ b/clients/client-supplychain/src/commands/DeleteDataIntegrationFlowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataIntegrationFlowRequest, DeleteDataIntegrationFlowResponse } from "../models/models_0"; +import type { DeleteDataIntegrationFlowRequest, DeleteDataIntegrationFlowResponse } from "../models/models_0"; import { DeleteDataIntegrationFlow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/DeleteDataLakeDatasetCommand.ts b/clients/client-supplychain/src/commands/DeleteDataLakeDatasetCommand.ts index 518ed9cb3fc02..ebdd2ad2c78e3 100644 --- a/clients/client-supplychain/src/commands/DeleteDataLakeDatasetCommand.ts +++ b/clients/client-supplychain/src/commands/DeleteDataLakeDatasetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataLakeDatasetRequest, DeleteDataLakeDatasetResponse } from "../models/models_0"; +import type { DeleteDataLakeDatasetRequest, DeleteDataLakeDatasetResponse } from "../models/models_0"; import { DeleteDataLakeDataset } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/DeleteDataLakeNamespaceCommand.ts b/clients/client-supplychain/src/commands/DeleteDataLakeNamespaceCommand.ts index 103d52a5789cf..0c94f1b70ae28 100644 --- a/clients/client-supplychain/src/commands/DeleteDataLakeNamespaceCommand.ts +++ b/clients/client-supplychain/src/commands/DeleteDataLakeNamespaceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataLakeNamespaceRequest, DeleteDataLakeNamespaceResponse } from "../models/models_0"; +import type { DeleteDataLakeNamespaceRequest, DeleteDataLakeNamespaceResponse } from "../models/models_0"; import { DeleteDataLakeNamespace } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/DeleteInstanceCommand.ts b/clients/client-supplychain/src/commands/DeleteInstanceCommand.ts index aa97334df4ecb..b07348d2cc169 100644 --- a/clients/client-supplychain/src/commands/DeleteInstanceCommand.ts +++ b/clients/client-supplychain/src/commands/DeleteInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteInstanceRequest, DeleteInstanceResponse } from "../models/models_0"; +import type { DeleteInstanceRequest, DeleteInstanceResponse } from "../models/models_0"; import { DeleteInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/GetBillOfMaterialsImportJobCommand.ts b/clients/client-supplychain/src/commands/GetBillOfMaterialsImportJobCommand.ts index fecaea9a967de..fd35f17acbbf7 100644 --- a/clients/client-supplychain/src/commands/GetBillOfMaterialsImportJobCommand.ts +++ b/clients/client-supplychain/src/commands/GetBillOfMaterialsImportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBillOfMaterialsImportJobRequest, GetBillOfMaterialsImportJobResponse } from "../models/models_0"; +import type { GetBillOfMaterialsImportJobRequest, GetBillOfMaterialsImportJobResponse } from "../models/models_0"; import { GetBillOfMaterialsImportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/GetDataIntegrationEventCommand.ts b/clients/client-supplychain/src/commands/GetDataIntegrationEventCommand.ts index f3c6a49942415..999aa8a018ae0 100644 --- a/clients/client-supplychain/src/commands/GetDataIntegrationEventCommand.ts +++ b/clients/client-supplychain/src/commands/GetDataIntegrationEventCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataIntegrationEventRequest, GetDataIntegrationEventResponse } from "../models/models_0"; +import type { GetDataIntegrationEventRequest, GetDataIntegrationEventResponse } from "../models/models_0"; import { GetDataIntegrationEvent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/GetDataIntegrationFlowCommand.ts b/clients/client-supplychain/src/commands/GetDataIntegrationFlowCommand.ts index 5fe3b83ef3fac..d23c2242d0f61 100644 --- a/clients/client-supplychain/src/commands/GetDataIntegrationFlowCommand.ts +++ b/clients/client-supplychain/src/commands/GetDataIntegrationFlowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataIntegrationFlowRequest, GetDataIntegrationFlowResponse } from "../models/models_0"; +import type { GetDataIntegrationFlowRequest, GetDataIntegrationFlowResponse } from "../models/models_0"; import { GetDataIntegrationFlow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/GetDataIntegrationFlowExecutionCommand.ts b/clients/client-supplychain/src/commands/GetDataIntegrationFlowExecutionCommand.ts index 1184b803b543e..00c0fd8a91471 100644 --- a/clients/client-supplychain/src/commands/GetDataIntegrationFlowExecutionCommand.ts +++ b/clients/client-supplychain/src/commands/GetDataIntegrationFlowExecutionCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataIntegrationFlowExecutionRequest, GetDataIntegrationFlowExecutionResponse } from "../models/models_0"; +import type { + GetDataIntegrationFlowExecutionRequest, + GetDataIntegrationFlowExecutionResponse, +} from "../models/models_0"; import { GetDataIntegrationFlowExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/GetDataLakeDatasetCommand.ts b/clients/client-supplychain/src/commands/GetDataLakeDatasetCommand.ts index e967668e5f132..a820810ae4b3e 100644 --- a/clients/client-supplychain/src/commands/GetDataLakeDatasetCommand.ts +++ b/clients/client-supplychain/src/commands/GetDataLakeDatasetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataLakeDatasetRequest, GetDataLakeDatasetResponse } from "../models/models_0"; +import type { GetDataLakeDatasetRequest, GetDataLakeDatasetResponse } from "../models/models_0"; import { GetDataLakeDataset } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/GetDataLakeNamespaceCommand.ts b/clients/client-supplychain/src/commands/GetDataLakeNamespaceCommand.ts index 227bf4017e0ca..003ee8f79cefe 100644 --- a/clients/client-supplychain/src/commands/GetDataLakeNamespaceCommand.ts +++ b/clients/client-supplychain/src/commands/GetDataLakeNamespaceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataLakeNamespaceRequest, GetDataLakeNamespaceResponse } from "../models/models_0"; +import type { GetDataLakeNamespaceRequest, GetDataLakeNamespaceResponse } from "../models/models_0"; import { GetDataLakeNamespace } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/GetInstanceCommand.ts b/clients/client-supplychain/src/commands/GetInstanceCommand.ts index 1a144228153e8..7b398f09d6f0e 100644 --- a/clients/client-supplychain/src/commands/GetInstanceCommand.ts +++ b/clients/client-supplychain/src/commands/GetInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInstanceRequest, GetInstanceResponse } from "../models/models_0"; +import type { GetInstanceRequest, GetInstanceResponse } from "../models/models_0"; import { GetInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/ListDataIntegrationEventsCommand.ts b/clients/client-supplychain/src/commands/ListDataIntegrationEventsCommand.ts index 81acee406489f..115ef8c2b8022 100644 --- a/clients/client-supplychain/src/commands/ListDataIntegrationEventsCommand.ts +++ b/clients/client-supplychain/src/commands/ListDataIntegrationEventsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataIntegrationEventsRequest, ListDataIntegrationEventsResponse } from "../models/models_0"; +import type { ListDataIntegrationEventsRequest, ListDataIntegrationEventsResponse } from "../models/models_0"; import { ListDataIntegrationEvents } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/ListDataIntegrationFlowExecutionsCommand.ts b/clients/client-supplychain/src/commands/ListDataIntegrationFlowExecutionsCommand.ts index 54cd937eb94db..0821bb1c17e56 100644 --- a/clients/client-supplychain/src/commands/ListDataIntegrationFlowExecutionsCommand.ts +++ b/clients/client-supplychain/src/commands/ListDataIntegrationFlowExecutionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListDataIntegrationFlowExecutionsRequest, ListDataIntegrationFlowExecutionsResponse, } from "../models/models_0"; import { ListDataIntegrationFlowExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/ListDataIntegrationFlowsCommand.ts b/clients/client-supplychain/src/commands/ListDataIntegrationFlowsCommand.ts index df7434833cc58..76ffdb7b33b51 100644 --- a/clients/client-supplychain/src/commands/ListDataIntegrationFlowsCommand.ts +++ b/clients/client-supplychain/src/commands/ListDataIntegrationFlowsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataIntegrationFlowsRequest, ListDataIntegrationFlowsResponse } from "../models/models_0"; +import type { ListDataIntegrationFlowsRequest, ListDataIntegrationFlowsResponse } from "../models/models_0"; import { ListDataIntegrationFlows } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/ListDataLakeDatasetsCommand.ts b/clients/client-supplychain/src/commands/ListDataLakeDatasetsCommand.ts index ab0a0af383051..23d4683dcfe86 100644 --- a/clients/client-supplychain/src/commands/ListDataLakeDatasetsCommand.ts +++ b/clients/client-supplychain/src/commands/ListDataLakeDatasetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataLakeDatasetsRequest, ListDataLakeDatasetsResponse } from "../models/models_0"; +import type { ListDataLakeDatasetsRequest, ListDataLakeDatasetsResponse } from "../models/models_0"; import { ListDataLakeDatasets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/ListDataLakeNamespacesCommand.ts b/clients/client-supplychain/src/commands/ListDataLakeNamespacesCommand.ts index 4a3424c05a79a..baaac2111d58f 100644 --- a/clients/client-supplychain/src/commands/ListDataLakeNamespacesCommand.ts +++ b/clients/client-supplychain/src/commands/ListDataLakeNamespacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataLakeNamespacesRequest, ListDataLakeNamespacesResponse } from "../models/models_0"; +import type { ListDataLakeNamespacesRequest, ListDataLakeNamespacesResponse } from "../models/models_0"; import { ListDataLakeNamespaces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/ListInstancesCommand.ts b/clients/client-supplychain/src/commands/ListInstancesCommand.ts index d49164ced1450..89da2a5d33c54 100644 --- a/clients/client-supplychain/src/commands/ListInstancesCommand.ts +++ b/clients/client-supplychain/src/commands/ListInstancesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstancesRequest, ListInstancesResponse } from "../models/models_0"; +import type { ListInstancesRequest, ListInstancesResponse } from "../models/models_0"; import { ListInstances } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/ListTagsForResourceCommand.ts b/clients/client-supplychain/src/commands/ListTagsForResourceCommand.ts index 551d6b579426e..725f103685c9e 100644 --- a/clients/client-supplychain/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-supplychain/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/SendDataIntegrationEventCommand.ts b/clients/client-supplychain/src/commands/SendDataIntegrationEventCommand.ts index 61cb346207aac..4ba67547457e2 100644 --- a/clients/client-supplychain/src/commands/SendDataIntegrationEventCommand.ts +++ b/clients/client-supplychain/src/commands/SendDataIntegrationEventCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendDataIntegrationEventRequest, SendDataIntegrationEventResponse } from "../models/models_0"; +import type { SendDataIntegrationEventRequest, SendDataIntegrationEventResponse } from "../models/models_0"; import { SendDataIntegrationEvent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/TagResourceCommand.ts b/clients/client-supplychain/src/commands/TagResourceCommand.ts index f5faeae7bd49b..776f1b568a7e2 100644 --- a/clients/client-supplychain/src/commands/TagResourceCommand.ts +++ b/clients/client-supplychain/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/UntagResourceCommand.ts b/clients/client-supplychain/src/commands/UntagResourceCommand.ts index 61d7d180ebbb2..c42c1d2f376e7 100644 --- a/clients/client-supplychain/src/commands/UntagResourceCommand.ts +++ b/clients/client-supplychain/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/UpdateDataIntegrationFlowCommand.ts b/clients/client-supplychain/src/commands/UpdateDataIntegrationFlowCommand.ts index d06fb10eebd1e..1f0c77711d7b8 100644 --- a/clients/client-supplychain/src/commands/UpdateDataIntegrationFlowCommand.ts +++ b/clients/client-supplychain/src/commands/UpdateDataIntegrationFlowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataIntegrationFlowRequest, UpdateDataIntegrationFlowResponse } from "../models/models_0"; +import type { UpdateDataIntegrationFlowRequest, UpdateDataIntegrationFlowResponse } from "../models/models_0"; import { UpdateDataIntegrationFlow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/UpdateDataLakeDatasetCommand.ts b/clients/client-supplychain/src/commands/UpdateDataLakeDatasetCommand.ts index 041fd6b21141d..76a91496a5e1e 100644 --- a/clients/client-supplychain/src/commands/UpdateDataLakeDatasetCommand.ts +++ b/clients/client-supplychain/src/commands/UpdateDataLakeDatasetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataLakeDatasetRequest, UpdateDataLakeDatasetResponse } from "../models/models_0"; +import type { UpdateDataLakeDatasetRequest, UpdateDataLakeDatasetResponse } from "../models/models_0"; import { UpdateDataLakeDataset } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/UpdateDataLakeNamespaceCommand.ts b/clients/client-supplychain/src/commands/UpdateDataLakeNamespaceCommand.ts index df0c429d2c778..a64a4d7afd8a4 100644 --- a/clients/client-supplychain/src/commands/UpdateDataLakeNamespaceCommand.ts +++ b/clients/client-supplychain/src/commands/UpdateDataLakeNamespaceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataLakeNamespaceRequest, UpdateDataLakeNamespaceResponse } from "../models/models_0"; +import type { UpdateDataLakeNamespaceRequest, UpdateDataLakeNamespaceResponse } from "../models/models_0"; import { UpdateDataLakeNamespace } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/commands/UpdateInstanceCommand.ts b/clients/client-supplychain/src/commands/UpdateInstanceCommand.ts index 2b43d8e77421d..b6932ea7e5e0a 100644 --- a/clients/client-supplychain/src/commands/UpdateInstanceCommand.ts +++ b/clients/client-supplychain/src/commands/UpdateInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateInstanceRequest, UpdateInstanceResponse } from "../models/models_0"; +import type { UpdateInstanceRequest, UpdateInstanceResponse } from "../models/models_0"; import { UpdateInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient"; /** * @public diff --git a/clients/client-supplychain/src/endpoint/EndpointParameters.ts b/clients/client-supplychain/src/endpoint/EndpointParameters.ts index 24b9acef894b4..50b233e90a85b 100644 --- a/clients/client-supplychain/src/endpoint/EndpointParameters.ts +++ b/clients/client-supplychain/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-supplychain/src/endpoint/endpointResolver.ts b/clients/client-supplychain/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-supplychain/src/endpoint/endpointResolver.ts +++ b/clients/client-supplychain/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-supplychain/src/extensionConfiguration.ts b/clients/client-supplychain/src/extensionConfiguration.ts index 61e7ef6ad482a..a57c862ae26cf 100644 --- a/clients/client-supplychain/src/extensionConfiguration.ts +++ b/clients/client-supplychain/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-supplychain/src/models/SupplyChainServiceException.ts b/clients/client-supplychain/src/models/SupplyChainServiceException.ts index fe57ee72d6558..ace3d2c8d5a10 100644 --- a/clients/client-supplychain/src/models/SupplyChainServiceException.ts +++ b/clients/client-supplychain/src/models/SupplyChainServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-supplychain/src/models/errors.ts b/clients/client-supplychain/src/models/errors.ts index 352178bd2850d..3eb9decb0fc69 100644 --- a/clients/client-supplychain/src/models/errors.ts +++ b/clients/client-supplychain/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SupplyChainServiceException as __BaseException } from "./SupplyChainServiceException"; diff --git a/clients/client-supplychain/src/pagination/Interfaces.ts b/clients/client-supplychain/src/pagination/Interfaces.ts index 4c13d4394de4b..49949c31fdf7c 100644 --- a/clients/client-supplychain/src/pagination/Interfaces.ts +++ b/clients/client-supplychain/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SupplyChainClient } from "../SupplyChainClient"; diff --git a/clients/client-supplychain/src/pagination/ListDataIntegrationEventsPaginator.ts b/clients/client-supplychain/src/pagination/ListDataIntegrationEventsPaginator.ts index aa2dedcc65593..32b08fe70430a 100644 --- a/clients/client-supplychain/src/pagination/ListDataIntegrationEventsPaginator.ts +++ b/clients/client-supplychain/src/pagination/ListDataIntegrationEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataIntegrationEventsCommand, diff --git a/clients/client-supplychain/src/pagination/ListDataIntegrationFlowExecutionsPaginator.ts b/clients/client-supplychain/src/pagination/ListDataIntegrationFlowExecutionsPaginator.ts index 2be280644312a..c83ec9c1a92e6 100644 --- a/clients/client-supplychain/src/pagination/ListDataIntegrationFlowExecutionsPaginator.ts +++ b/clients/client-supplychain/src/pagination/ListDataIntegrationFlowExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataIntegrationFlowExecutionsCommand, diff --git a/clients/client-supplychain/src/pagination/ListDataIntegrationFlowsPaginator.ts b/clients/client-supplychain/src/pagination/ListDataIntegrationFlowsPaginator.ts index 772194204cf10..cc29be3d8c93a 100644 --- a/clients/client-supplychain/src/pagination/ListDataIntegrationFlowsPaginator.ts +++ b/clients/client-supplychain/src/pagination/ListDataIntegrationFlowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataIntegrationFlowsCommand, diff --git a/clients/client-supplychain/src/pagination/ListDataLakeDatasetsPaginator.ts b/clients/client-supplychain/src/pagination/ListDataLakeDatasetsPaginator.ts index 9118b8286e859..53cb0ad5c8a78 100644 --- a/clients/client-supplychain/src/pagination/ListDataLakeDatasetsPaginator.ts +++ b/clients/client-supplychain/src/pagination/ListDataLakeDatasetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataLakeDatasetsCommand, diff --git a/clients/client-supplychain/src/pagination/ListDataLakeNamespacesPaginator.ts b/clients/client-supplychain/src/pagination/ListDataLakeNamespacesPaginator.ts index 1ff8e82687623..d044e924254f1 100644 --- a/clients/client-supplychain/src/pagination/ListDataLakeNamespacesPaginator.ts +++ b/clients/client-supplychain/src/pagination/ListDataLakeNamespacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataLakeNamespacesCommand, diff --git a/clients/client-supplychain/src/pagination/ListInstancesPaginator.ts b/clients/client-supplychain/src/pagination/ListInstancesPaginator.ts index fa95171d6194f..a18370d248028 100644 --- a/clients/client-supplychain/src/pagination/ListInstancesPaginator.ts +++ b/clients/client-supplychain/src/pagination/ListInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstancesCommand, diff --git a/clients/client-supplychain/src/runtimeConfig.browser.ts b/clients/client-supplychain/src/runtimeConfig.browser.ts index cfb3d59a29c0c..91844a072399c 100644 --- a/clients/client-supplychain/src/runtimeConfig.browser.ts +++ b/clients/client-supplychain/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SupplyChainClientConfig } from "./SupplyChainClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SupplyChainClientConfig } from "./SupplyChainClient"; /** * @internal diff --git a/clients/client-supplychain/src/runtimeConfig.native.ts b/clients/client-supplychain/src/runtimeConfig.native.ts index 102e101a33d2c..d18d8f69a50e7 100644 --- a/clients/client-supplychain/src/runtimeConfig.native.ts +++ b/clients/client-supplychain/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SupplyChainClientConfig } from "./SupplyChainClient"; +import type { SupplyChainClientConfig } from "./SupplyChainClient"; /** * @internal diff --git a/clients/client-supplychain/src/runtimeConfig.shared.ts b/clients/client-supplychain/src/runtimeConfig.shared.ts index e8adc9f94df72..70dc83c2569c7 100644 --- a/clients/client-supplychain/src/runtimeConfig.shared.ts +++ b/clients/client-supplychain/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSupplyChainHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SupplyChainClientConfig } from "./SupplyChainClient"; +import type { SupplyChainClientConfig } from "./SupplyChainClient"; /** * @internal diff --git a/clients/client-supplychain/src/runtimeConfig.ts b/clients/client-supplychain/src/runtimeConfig.ts index 1d59a24a0f23d..0d2448e55c5ef 100644 --- a/clients/client-supplychain/src/runtimeConfig.ts +++ b/clients/client-supplychain/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SupplyChainClientConfig } from "./SupplyChainClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SupplyChainClientConfig } from "./SupplyChainClient"; /** * @internal diff --git a/clients/client-supplychain/src/runtimeExtensions.ts b/clients/client-supplychain/src/runtimeExtensions.ts index a81ca2226545d..5b5912eee5910 100644 --- a/clients/client-supplychain/src/runtimeExtensions.ts +++ b/clients/client-supplychain/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SupplyChainExtensionConfiguration } from "./extensionConfiguration"; +import type { SupplyChainExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-supplychain/src/schemas/schemas_0.ts b/clients/client-supplychain/src/schemas/schemas_0.ts index 6c1058c1b54db..bdf4e8b5e1f6b 100644 --- a/clients/client-supplychain/src/schemas/schemas_0.ts +++ b/clients/client-supplychain/src/schemas/schemas_0.ts @@ -237,7 +237,7 @@ const n0 = "com.amazonaws.supplychain"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-support-app/package.json b/clients/client-support-app/package.json index 2efe58057e90c..5b984fb279343 100644 --- a/clients/client-support-app/package.json +++ b/clients/client-support-app/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-support-app/src/SupportApp.ts b/clients/client-support-app/src/SupportApp.ts index 7c8917b66b41f..2ec517e42719c 100644 --- a/clients/client-support-app/src/SupportApp.ts +++ b/clients/client-support-app/src/SupportApp.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateSlackChannelConfigurationCommand, @@ -52,7 +52,7 @@ import { UpdateSlackChannelConfigurationCommandInput, UpdateSlackChannelConfigurationCommandOutput, } from "./commands/UpdateSlackChannelConfigurationCommand"; -import { SupportAppClient, SupportAppClientConfig } from "./SupportAppClient"; +import { SupportAppClient } from "./SupportAppClient"; const commands = { CreateSlackChannelConfigurationCommand, diff --git a/clients/client-support-app/src/SupportAppClient.ts b/clients/client-support-app/src/SupportAppClient.ts index 6442fd4409c70..b47e71a893955 100644 --- a/clients/client-support-app/src/SupportAppClient.ts +++ b/clients/client-support-app/src/SupportAppClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSupportAppHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -95,7 +104,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-support-app/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-support-app/src/auth/httpAuthExtensionConfiguration.ts index e4b8ed0976e11..b60e32c96ab8e 100644 --- a/clients/client-support-app/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-support-app/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SupportAppHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SupportAppHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-support-app/src/auth/httpAuthSchemeProvider.ts b/clients/client-support-app/src/auth/httpAuthSchemeProvider.ts index 63f2e93881bdb..07309d636157f 100644 --- a/clients/client-support-app/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-support-app/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SupportAppClientConfig, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import { type SupportAppClientResolvedConfig, SupportAppClientConfig } from "../SupportAppClient"; /** * @internal diff --git a/clients/client-support-app/src/commands/CreateSlackChannelConfigurationCommand.ts b/clients/client-support-app/src/commands/CreateSlackChannelConfigurationCommand.ts index 23060e7551488..b06ec48d288fb 100644 --- a/clients/client-support-app/src/commands/CreateSlackChannelConfigurationCommand.ts +++ b/clients/client-support-app/src/commands/CreateSlackChannelConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSlackChannelConfigurationRequest, CreateSlackChannelConfigurationResult } from "../models/models_0"; +import type { CreateSlackChannelConfigurationRequest, CreateSlackChannelConfigurationResult } from "../models/models_0"; import { CreateSlackChannelConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/commands/DeleteAccountAliasCommand.ts b/clients/client-support-app/src/commands/DeleteAccountAliasCommand.ts index ad647cee19bdb..def33892a1125 100644 --- a/clients/client-support-app/src/commands/DeleteAccountAliasCommand.ts +++ b/clients/client-support-app/src/commands/DeleteAccountAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountAliasRequest, DeleteAccountAliasResult } from "../models/models_0"; +import type { DeleteAccountAliasRequest, DeleteAccountAliasResult } from "../models/models_0"; import { DeleteAccountAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/commands/DeleteSlackChannelConfigurationCommand.ts b/clients/client-support-app/src/commands/DeleteSlackChannelConfigurationCommand.ts index 5c06b6f8137f4..f825889da5e5f 100644 --- a/clients/client-support-app/src/commands/DeleteSlackChannelConfigurationCommand.ts +++ b/clients/client-support-app/src/commands/DeleteSlackChannelConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSlackChannelConfigurationRequest, DeleteSlackChannelConfigurationResult } from "../models/models_0"; +import type { DeleteSlackChannelConfigurationRequest, DeleteSlackChannelConfigurationResult } from "../models/models_0"; import { DeleteSlackChannelConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/commands/DeleteSlackWorkspaceConfigurationCommand.ts b/clients/client-support-app/src/commands/DeleteSlackWorkspaceConfigurationCommand.ts index b2586a6c70ca7..c01951887ffff 100644 --- a/clients/client-support-app/src/commands/DeleteSlackWorkspaceConfigurationCommand.ts +++ b/clients/client-support-app/src/commands/DeleteSlackWorkspaceConfigurationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSlackWorkspaceConfigurationRequest, DeleteSlackWorkspaceConfigurationResult } from "../models/models_0"; +import type { + DeleteSlackWorkspaceConfigurationRequest, + DeleteSlackWorkspaceConfigurationResult, +} from "../models/models_0"; import { DeleteSlackWorkspaceConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/commands/GetAccountAliasCommand.ts b/clients/client-support-app/src/commands/GetAccountAliasCommand.ts index 4ce4c84789a6d..68508e5f07ab2 100644 --- a/clients/client-support-app/src/commands/GetAccountAliasCommand.ts +++ b/clients/client-support-app/src/commands/GetAccountAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountAliasRequest, GetAccountAliasResult } from "../models/models_0"; +import type { GetAccountAliasRequest, GetAccountAliasResult } from "../models/models_0"; import { GetAccountAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/commands/ListSlackChannelConfigurationsCommand.ts b/clients/client-support-app/src/commands/ListSlackChannelConfigurationsCommand.ts index c51338371e7a9..93dc53f09b203 100644 --- a/clients/client-support-app/src/commands/ListSlackChannelConfigurationsCommand.ts +++ b/clients/client-support-app/src/commands/ListSlackChannelConfigurationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSlackChannelConfigurationsRequest, ListSlackChannelConfigurationsResult } from "../models/models_0"; +import type { ListSlackChannelConfigurationsRequest, ListSlackChannelConfigurationsResult } from "../models/models_0"; import { ListSlackChannelConfigurations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/commands/ListSlackWorkspaceConfigurationsCommand.ts b/clients/client-support-app/src/commands/ListSlackWorkspaceConfigurationsCommand.ts index c9cfd9485ffbd..50ef785de384a 100644 --- a/clients/client-support-app/src/commands/ListSlackWorkspaceConfigurationsCommand.ts +++ b/clients/client-support-app/src/commands/ListSlackWorkspaceConfigurationsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSlackWorkspaceConfigurationsRequest, ListSlackWorkspaceConfigurationsResult } from "../models/models_0"; +import type { + ListSlackWorkspaceConfigurationsRequest, + ListSlackWorkspaceConfigurationsResult, +} from "../models/models_0"; import { ListSlackWorkspaceConfigurations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/commands/PutAccountAliasCommand.ts b/clients/client-support-app/src/commands/PutAccountAliasCommand.ts index 1b5ae211be3c1..a207f74594bd6 100644 --- a/clients/client-support-app/src/commands/PutAccountAliasCommand.ts +++ b/clients/client-support-app/src/commands/PutAccountAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccountAliasRequest, PutAccountAliasResult } from "../models/models_0"; +import type { PutAccountAliasRequest, PutAccountAliasResult } from "../models/models_0"; import { PutAccountAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/commands/RegisterSlackWorkspaceForOrganizationCommand.ts b/clients/client-support-app/src/commands/RegisterSlackWorkspaceForOrganizationCommand.ts index ef58b51aa7ff7..0d3f85a836d2b 100644 --- a/clients/client-support-app/src/commands/RegisterSlackWorkspaceForOrganizationCommand.ts +++ b/clients/client-support-app/src/commands/RegisterSlackWorkspaceForOrganizationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { RegisterSlackWorkspaceForOrganizationRequest, RegisterSlackWorkspaceForOrganizationResult, } from "../models/models_0"; import { RegisterSlackWorkspaceForOrganization } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/commands/UpdateSlackChannelConfigurationCommand.ts b/clients/client-support-app/src/commands/UpdateSlackChannelConfigurationCommand.ts index 94978c5b26774..a1b9670338758 100644 --- a/clients/client-support-app/src/commands/UpdateSlackChannelConfigurationCommand.ts +++ b/clients/client-support-app/src/commands/UpdateSlackChannelConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSlackChannelConfigurationRequest, UpdateSlackChannelConfigurationResult } from "../models/models_0"; +import type { UpdateSlackChannelConfigurationRequest, UpdateSlackChannelConfigurationResult } from "../models/models_0"; import { UpdateSlackChannelConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportAppClientResolvedConfig } from "../SupportAppClient"; /** * @public diff --git a/clients/client-support-app/src/endpoint/EndpointParameters.ts b/clients/client-support-app/src/endpoint/EndpointParameters.ts index 26f38b970561e..f2e143b91afde 100644 --- a/clients/client-support-app/src/endpoint/EndpointParameters.ts +++ b/clients/client-support-app/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-support-app/src/endpoint/endpointResolver.ts b/clients/client-support-app/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-support-app/src/endpoint/endpointResolver.ts +++ b/clients/client-support-app/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-support-app/src/extensionConfiguration.ts b/clients/client-support-app/src/extensionConfiguration.ts index a007b4298cb72..2de085bd2e345 100644 --- a/clients/client-support-app/src/extensionConfiguration.ts +++ b/clients/client-support-app/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-support-app/src/models/SupportAppServiceException.ts b/clients/client-support-app/src/models/SupportAppServiceException.ts index 2bcd1ace3ac3b..4697ab2c07f27 100644 --- a/clients/client-support-app/src/models/SupportAppServiceException.ts +++ b/clients/client-support-app/src/models/SupportAppServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-support-app/src/models/errors.ts b/clients/client-support-app/src/models/errors.ts index ca57fa93f995f..5459253aa4213 100644 --- a/clients/client-support-app/src/models/errors.ts +++ b/clients/client-support-app/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SupportAppServiceException as __BaseException } from "./SupportAppServiceException"; diff --git a/clients/client-support-app/src/pagination/Interfaces.ts b/clients/client-support-app/src/pagination/Interfaces.ts index 52dcc9a95682a..51e87fd8911cb 100644 --- a/clients/client-support-app/src/pagination/Interfaces.ts +++ b/clients/client-support-app/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SupportAppClient } from "../SupportAppClient"; diff --git a/clients/client-support-app/src/pagination/ListSlackChannelConfigurationsPaginator.ts b/clients/client-support-app/src/pagination/ListSlackChannelConfigurationsPaginator.ts index 20de15e79a201..0b1c1b68a5828 100644 --- a/clients/client-support-app/src/pagination/ListSlackChannelConfigurationsPaginator.ts +++ b/clients/client-support-app/src/pagination/ListSlackChannelConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSlackChannelConfigurationsCommand, diff --git a/clients/client-support-app/src/pagination/ListSlackWorkspaceConfigurationsPaginator.ts b/clients/client-support-app/src/pagination/ListSlackWorkspaceConfigurationsPaginator.ts index d352ef7557436..b9b8af1eee037 100644 --- a/clients/client-support-app/src/pagination/ListSlackWorkspaceConfigurationsPaginator.ts +++ b/clients/client-support-app/src/pagination/ListSlackWorkspaceConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSlackWorkspaceConfigurationsCommand, diff --git a/clients/client-support-app/src/runtimeConfig.browser.ts b/clients/client-support-app/src/runtimeConfig.browser.ts index fc9db13825f45..29a9847692f64 100644 --- a/clients/client-support-app/src/runtimeConfig.browser.ts +++ b/clients/client-support-app/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SupportAppClientConfig } from "./SupportAppClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SupportAppClientConfig } from "./SupportAppClient"; /** * @internal diff --git a/clients/client-support-app/src/runtimeConfig.native.ts b/clients/client-support-app/src/runtimeConfig.native.ts index 3174fd0793504..86c595e8baab6 100644 --- a/clients/client-support-app/src/runtimeConfig.native.ts +++ b/clients/client-support-app/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SupportAppClientConfig } from "./SupportAppClient"; +import type { SupportAppClientConfig } from "./SupportAppClient"; /** * @internal diff --git a/clients/client-support-app/src/runtimeConfig.shared.ts b/clients/client-support-app/src/runtimeConfig.shared.ts index b80212ac62aa6..0cedc77eee760 100644 --- a/clients/client-support-app/src/runtimeConfig.shared.ts +++ b/clients/client-support-app/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSupportAppHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SupportAppClientConfig } from "./SupportAppClient"; +import type { SupportAppClientConfig } from "./SupportAppClient"; /** * @internal diff --git a/clients/client-support-app/src/runtimeConfig.ts b/clients/client-support-app/src/runtimeConfig.ts index 047d5d1f7a60d..4ccb22a99a734 100644 --- a/clients/client-support-app/src/runtimeConfig.ts +++ b/clients/client-support-app/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SupportAppClientConfig } from "./SupportAppClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SupportAppClientConfig } from "./SupportAppClient"; /** * @internal diff --git a/clients/client-support-app/src/runtimeExtensions.ts b/clients/client-support-app/src/runtimeExtensions.ts index b2328f2dc3538..823b334c91a86 100644 --- a/clients/client-support-app/src/runtimeExtensions.ts +++ b/clients/client-support-app/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SupportAppExtensionConfiguration } from "./extensionConfiguration"; +import type { SupportAppExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-support-app/src/schemas/schemas_0.ts b/clients/client-support-app/src/schemas/schemas_0.ts index e7369f780c870..6b97615ff8234 100644 --- a/clients/client-support-app/src/schemas/schemas_0.ts +++ b/clients/client-support-app/src/schemas/schemas_0.ts @@ -64,7 +64,7 @@ const n0 = "com.amazonaws.supportapp"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/clients/client-support/package.json b/clients/client-support/package.json index e4a72a0bc0aef..221e1946f38f3 100644 --- a/clients/client-support/package.json +++ b/clients/client-support/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-support/src/Support.ts b/clients/client-support/src/Support.ts index 0cbacdbe22e69..af87c7a97304a 100644 --- a/clients/client-support/src/Support.ts +++ b/clients/client-support/src/Support.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AddAttachmentsToSetCommand, @@ -74,7 +74,7 @@ import { RefreshTrustedAdvisorCheckCommandOutput, } from "./commands/RefreshTrustedAdvisorCheckCommand"; import { ResolveCaseCommand, ResolveCaseCommandInput, ResolveCaseCommandOutput } from "./commands/ResolveCaseCommand"; -import { SupportClient, SupportClientConfig } from "./SupportClient"; +import { SupportClient } from "./SupportClient"; const commands = { AddAttachmentsToSetCommand, diff --git a/clients/client-support/src/SupportClient.ts b/clients/client-support/src/SupportClient.ts index 1966511305999..f57625750c203 100644 --- a/clients/client-support/src/SupportClient.ts +++ b/clients/client-support/src/SupportClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSupportHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -113,7 +122,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-support/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-support/src/auth/httpAuthExtensionConfiguration.ts index b8de3b362d448..7e2ed298e3b10 100644 --- a/clients/client-support/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-support/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SupportHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SupportHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-support/src/auth/httpAuthSchemeProvider.ts b/clients/client-support/src/auth/httpAuthSchemeProvider.ts index bfefce042d02c..e8b2664fea5d4 100644 --- a/clients/client-support/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-support/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SupportClientConfig, SupportClientResolvedConfig } from "../SupportClient"; +import { type SupportClientResolvedConfig, SupportClientConfig } from "../SupportClient"; /** * @internal diff --git a/clients/client-support/src/commands/AddAttachmentsToSetCommand.ts b/clients/client-support/src/commands/AddAttachmentsToSetCommand.ts index 191a2b8fb8b46..978d25ed1b2ca 100644 --- a/clients/client-support/src/commands/AddAttachmentsToSetCommand.ts +++ b/clients/client-support/src/commands/AddAttachmentsToSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddAttachmentsToSetRequest, AddAttachmentsToSetResponse } from "../models/models_0"; +import type { AddAttachmentsToSetRequest, AddAttachmentsToSetResponse } from "../models/models_0"; import { AddAttachmentsToSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/AddCommunicationToCaseCommand.ts b/clients/client-support/src/commands/AddCommunicationToCaseCommand.ts index a58b21c3963b6..2812cbd4ae56e 100644 --- a/clients/client-support/src/commands/AddCommunicationToCaseCommand.ts +++ b/clients/client-support/src/commands/AddCommunicationToCaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddCommunicationToCaseRequest, AddCommunicationToCaseResponse } from "../models/models_0"; +import type { AddCommunicationToCaseRequest, AddCommunicationToCaseResponse } from "../models/models_0"; import { AddCommunicationToCase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/CreateCaseCommand.ts b/clients/client-support/src/commands/CreateCaseCommand.ts index ca91d272ae740..da6def5772578 100644 --- a/clients/client-support/src/commands/CreateCaseCommand.ts +++ b/clients/client-support/src/commands/CreateCaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCaseRequest, CreateCaseResponse } from "../models/models_0"; +import type { CreateCaseRequest, CreateCaseResponse } from "../models/models_0"; import { CreateCase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeAttachmentCommand.ts b/clients/client-support/src/commands/DescribeAttachmentCommand.ts index e45be9708a42e..721307bbcc694 100644 --- a/clients/client-support/src/commands/DescribeAttachmentCommand.ts +++ b/clients/client-support/src/commands/DescribeAttachmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAttachmentRequest, DescribeAttachmentResponse } from "../models/models_0"; +import type { DescribeAttachmentRequest, DescribeAttachmentResponse } from "../models/models_0"; import { DescribeAttachment } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeCasesCommand.ts b/clients/client-support/src/commands/DescribeCasesCommand.ts index a51e818156b1f..41fbdfa2c46d0 100644 --- a/clients/client-support/src/commands/DescribeCasesCommand.ts +++ b/clients/client-support/src/commands/DescribeCasesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCasesRequest, DescribeCasesResponse } from "../models/models_0"; +import type { DescribeCasesRequest, DescribeCasesResponse } from "../models/models_0"; import { DescribeCases } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeCommunicationsCommand.ts b/clients/client-support/src/commands/DescribeCommunicationsCommand.ts index 42c2dc99f9af3..037e09a39a7b9 100644 --- a/clients/client-support/src/commands/DescribeCommunicationsCommand.ts +++ b/clients/client-support/src/commands/DescribeCommunicationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCommunicationsRequest, DescribeCommunicationsResponse } from "../models/models_0"; +import type { DescribeCommunicationsRequest, DescribeCommunicationsResponse } from "../models/models_0"; import { DescribeCommunications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeCreateCaseOptionsCommand.ts b/clients/client-support/src/commands/DescribeCreateCaseOptionsCommand.ts index 0aa117fba0e3e..4167b8ad9723f 100644 --- a/clients/client-support/src/commands/DescribeCreateCaseOptionsCommand.ts +++ b/clients/client-support/src/commands/DescribeCreateCaseOptionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCreateCaseOptionsRequest, DescribeCreateCaseOptionsResponse } from "../models/models_0"; +import type { DescribeCreateCaseOptionsRequest, DescribeCreateCaseOptionsResponse } from "../models/models_0"; import { DescribeCreateCaseOptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeServicesCommand.ts b/clients/client-support/src/commands/DescribeServicesCommand.ts index 2ad0b14b3432b..fd4523a16b6eb 100644 --- a/clients/client-support/src/commands/DescribeServicesCommand.ts +++ b/clients/client-support/src/commands/DescribeServicesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0"; +import type { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0"; import { DescribeServices } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeSeverityLevelsCommand.ts b/clients/client-support/src/commands/DescribeSeverityLevelsCommand.ts index 59384b74c0341..3de8e35562e1a 100644 --- a/clients/client-support/src/commands/DescribeSeverityLevelsCommand.ts +++ b/clients/client-support/src/commands/DescribeSeverityLevelsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSeverityLevelsRequest, DescribeSeverityLevelsResponse } from "../models/models_0"; +import type { DescribeSeverityLevelsRequest, DescribeSeverityLevelsResponse } from "../models/models_0"; import { DescribeSeverityLevels } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeSupportedLanguagesCommand.ts b/clients/client-support/src/commands/DescribeSupportedLanguagesCommand.ts index a4e79e0c8c7e9..90a4bced01c86 100644 --- a/clients/client-support/src/commands/DescribeSupportedLanguagesCommand.ts +++ b/clients/client-support/src/commands/DescribeSupportedLanguagesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSupportedLanguagesRequest, DescribeSupportedLanguagesResponse } from "../models/models_0"; +import type { DescribeSupportedLanguagesRequest, DescribeSupportedLanguagesResponse } from "../models/models_0"; import { DescribeSupportedLanguages } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.ts b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.ts index 634c62715d7a2..b87c6e402bdc2 100644 --- a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.ts +++ b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTrustedAdvisorCheckRefreshStatusesRequest, DescribeTrustedAdvisorCheckRefreshStatusesResponse, } from "../models/models_0"; import { DescribeTrustedAdvisorCheckRefreshStatuses } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckResultCommand.ts b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckResultCommand.ts index ac35f836b0818..4b1faef5c52a8 100644 --- a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckResultCommand.ts +++ b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckResultCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTrustedAdvisorCheckResultRequest, DescribeTrustedAdvisorCheckResultResponse, } from "../models/models_0"; import { DescribeTrustedAdvisorCheckResult } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckSummariesCommand.ts b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckSummariesCommand.ts index bb08b064409d5..c8bb7977a270a 100644 --- a/clients/client-support/src/commands/DescribeTrustedAdvisorCheckSummariesCommand.ts +++ b/clients/client-support/src/commands/DescribeTrustedAdvisorCheckSummariesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeTrustedAdvisorCheckSummariesRequest, DescribeTrustedAdvisorCheckSummariesResponse, } from "../models/models_0"; import { DescribeTrustedAdvisorCheckSummaries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/DescribeTrustedAdvisorChecksCommand.ts b/clients/client-support/src/commands/DescribeTrustedAdvisorChecksCommand.ts index c027ec4bde967..e4f7ccfcc7ae3 100644 --- a/clients/client-support/src/commands/DescribeTrustedAdvisorChecksCommand.ts +++ b/clients/client-support/src/commands/DescribeTrustedAdvisorChecksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTrustedAdvisorChecksRequest, DescribeTrustedAdvisorChecksResponse } from "../models/models_0"; +import type { DescribeTrustedAdvisorChecksRequest, DescribeTrustedAdvisorChecksResponse } from "../models/models_0"; import { DescribeTrustedAdvisorChecks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/RefreshTrustedAdvisorCheckCommand.ts b/clients/client-support/src/commands/RefreshTrustedAdvisorCheckCommand.ts index d4b171b72d487..93086e6d42d98 100644 --- a/clients/client-support/src/commands/RefreshTrustedAdvisorCheckCommand.ts +++ b/clients/client-support/src/commands/RefreshTrustedAdvisorCheckCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RefreshTrustedAdvisorCheckRequest, RefreshTrustedAdvisorCheckResponse } from "../models/models_0"; +import type { RefreshTrustedAdvisorCheckRequest, RefreshTrustedAdvisorCheckResponse } from "../models/models_0"; import { RefreshTrustedAdvisorCheck } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/commands/ResolveCaseCommand.ts b/clients/client-support/src/commands/ResolveCaseCommand.ts index 773825be92443..63b665549ef74 100644 --- a/clients/client-support/src/commands/ResolveCaseCommand.ts +++ b/clients/client-support/src/commands/ResolveCaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResolveCaseRequest, ResolveCaseResponse } from "../models/models_0"; +import type { ResolveCaseRequest, ResolveCaseResponse } from "../models/models_0"; import { ResolveCase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SupportClientResolvedConfig } from "../SupportClient"; /** * @public diff --git a/clients/client-support/src/endpoint/EndpointParameters.ts b/clients/client-support/src/endpoint/EndpointParameters.ts index 158233274c7e5..5fec1489f5690 100644 --- a/clients/client-support/src/endpoint/EndpointParameters.ts +++ b/clients/client-support/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-support/src/endpoint/endpointResolver.ts b/clients/client-support/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-support/src/endpoint/endpointResolver.ts +++ b/clients/client-support/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-support/src/extensionConfiguration.ts b/clients/client-support/src/extensionConfiguration.ts index c413efa682b6e..7c9040b46a6ae 100644 --- a/clients/client-support/src/extensionConfiguration.ts +++ b/clients/client-support/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-support/src/models/SupportServiceException.ts b/clients/client-support/src/models/SupportServiceException.ts index 5381fa5878ac2..4a9884c0c20b9 100644 --- a/clients/client-support/src/models/SupportServiceException.ts +++ b/clients/client-support/src/models/SupportServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-support/src/models/errors.ts b/clients/client-support/src/models/errors.ts index 53164de316f3c..c1cafabd7d331 100644 --- a/clients/client-support/src/models/errors.ts +++ b/clients/client-support/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SupportServiceException as __BaseException } from "./SupportServiceException"; diff --git a/clients/client-support/src/pagination/DescribeCasesPaginator.ts b/clients/client-support/src/pagination/DescribeCasesPaginator.ts index a7c810970714b..6d2151d126ceb 100644 --- a/clients/client-support/src/pagination/DescribeCasesPaginator.ts +++ b/clients/client-support/src/pagination/DescribeCasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCasesCommand, diff --git a/clients/client-support/src/pagination/DescribeCommunicationsPaginator.ts b/clients/client-support/src/pagination/DescribeCommunicationsPaginator.ts index 27e01e44f2555..0912acd2a4d02 100644 --- a/clients/client-support/src/pagination/DescribeCommunicationsPaginator.ts +++ b/clients/client-support/src/pagination/DescribeCommunicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCommunicationsCommand, diff --git a/clients/client-support/src/pagination/Interfaces.ts b/clients/client-support/src/pagination/Interfaces.ts index 21d38c82f0766..acb222ef09486 100644 --- a/clients/client-support/src/pagination/Interfaces.ts +++ b/clients/client-support/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SupportClient } from "../SupportClient"; diff --git a/clients/client-support/src/runtimeConfig.browser.ts b/clients/client-support/src/runtimeConfig.browser.ts index a7e548ddc4ef6..62a0cd07ca500 100644 --- a/clients/client-support/src/runtimeConfig.browser.ts +++ b/clients/client-support/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SupportClientConfig } from "./SupportClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SupportClientConfig } from "./SupportClient"; /** * @internal diff --git a/clients/client-support/src/runtimeConfig.native.ts b/clients/client-support/src/runtimeConfig.native.ts index d0e8251a5c26a..0fb19707bfadd 100644 --- a/clients/client-support/src/runtimeConfig.native.ts +++ b/clients/client-support/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SupportClientConfig } from "./SupportClient"; +import type { SupportClientConfig } from "./SupportClient"; /** * @internal diff --git a/clients/client-support/src/runtimeConfig.shared.ts b/clients/client-support/src/runtimeConfig.shared.ts index f9ca857b5e192..f38d9f342087b 100644 --- a/clients/client-support/src/runtimeConfig.shared.ts +++ b/clients/client-support/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSupportHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SupportClientConfig } from "./SupportClient"; +import type { SupportClientConfig } from "./SupportClient"; /** * @internal diff --git a/clients/client-support/src/runtimeConfig.ts b/clients/client-support/src/runtimeConfig.ts index bf6b7d4271e26..858456f419028 100644 --- a/clients/client-support/src/runtimeConfig.ts +++ b/clients/client-support/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SupportClientConfig } from "./SupportClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SupportClientConfig } from "./SupportClient"; /** * @internal diff --git a/clients/client-support/src/runtimeExtensions.ts b/clients/client-support/src/runtimeExtensions.ts index b45df2e826ed3..b6ee5f223c702 100644 --- a/clients/client-support/src/runtimeExtensions.ts +++ b/clients/client-support/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SupportExtensionConfiguration } from "./extensionConfiguration"; +import type { SupportExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-support/src/schemas/schemas_0.ts b/clients/client-support/src/schemas/schemas_0.ts index 61547a5dd2dbc..72eee9ee2c1e2 100644 --- a/clients/client-support/src/schemas/schemas_0.ts +++ b/clients/client-support/src/schemas/schemas_0.ts @@ -181,7 +181,7 @@ const n0 = "com.amazonaws.support"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { AttachmentIdNotFound as __AttachmentIdNotFound, diff --git a/clients/client-swf/package.json b/clients/client-swf/package.json index 5ad626764ff66..235122581853c 100644 --- a/clients/client-swf/package.json +++ b/clients/client-swf/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-swf/src/SWF.ts b/clients/client-swf/src/SWF.ts index 023314c7b78f0..5f5c1bb7b4192 100644 --- a/clients/client-swf/src/SWF.ts +++ b/clients/client-swf/src/SWF.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CountClosedWorkflowExecutionsCommand, @@ -189,7 +189,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { SWFClient, SWFClientConfig } from "./SWFClient"; +import { SWFClient } from "./SWFClient"; const commands = { CountClosedWorkflowExecutionsCommand, diff --git a/clients/client-swf/src/SWFClient.ts b/clients/client-swf/src/SWFClient.ts index a118cb7c79d50..c7e0f44ff2a85 100644 --- a/clients/client-swf/src/SWFClient.ts +++ b/clients/client-swf/src/SWFClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSWFHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -187,7 +196,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-swf/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-swf/src/auth/httpAuthExtensionConfiguration.ts index d4b485c8836cb..0b4727cf13581 100644 --- a/clients/client-swf/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-swf/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SWFHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SWFHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-swf/src/auth/httpAuthSchemeProvider.ts b/clients/client-swf/src/auth/httpAuthSchemeProvider.ts index 6a0ccfcb917ea..0e14e252790d3 100644 --- a/clients/client-swf/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-swf/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SWFClientConfig, SWFClientResolvedConfig } from "../SWFClient"; +import { type SWFClientResolvedConfig, SWFClientConfig } from "../SWFClient"; /** * @internal diff --git a/clients/client-swf/src/commands/CountClosedWorkflowExecutionsCommand.ts b/clients/client-swf/src/commands/CountClosedWorkflowExecutionsCommand.ts index ccd0cd500cc15..a68dac1dfcefb 100644 --- a/clients/client-swf/src/commands/CountClosedWorkflowExecutionsCommand.ts +++ b/clients/client-swf/src/commands/CountClosedWorkflowExecutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CountClosedWorkflowExecutionsInput, WorkflowExecutionCount } from "../models/models_0"; +import type { CountClosedWorkflowExecutionsInput, WorkflowExecutionCount } from "../models/models_0"; import { CountClosedWorkflowExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/CountOpenWorkflowExecutionsCommand.ts b/clients/client-swf/src/commands/CountOpenWorkflowExecutionsCommand.ts index 86a56eaae6ca2..1470b4ee76db3 100644 --- a/clients/client-swf/src/commands/CountOpenWorkflowExecutionsCommand.ts +++ b/clients/client-swf/src/commands/CountOpenWorkflowExecutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CountOpenWorkflowExecutionsInput, WorkflowExecutionCount } from "../models/models_0"; +import type { CountOpenWorkflowExecutionsInput, WorkflowExecutionCount } from "../models/models_0"; import { CountOpenWorkflowExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/CountPendingActivityTasksCommand.ts b/clients/client-swf/src/commands/CountPendingActivityTasksCommand.ts index 10ba7f7c857b0..abe78a4750312 100644 --- a/clients/client-swf/src/commands/CountPendingActivityTasksCommand.ts +++ b/clients/client-swf/src/commands/CountPendingActivityTasksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CountPendingActivityTasksInput, PendingTaskCount } from "../models/models_0"; +import type { CountPendingActivityTasksInput, PendingTaskCount } from "../models/models_0"; import { CountPendingActivityTasks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/CountPendingDecisionTasksCommand.ts b/clients/client-swf/src/commands/CountPendingDecisionTasksCommand.ts index 884b21f8c4394..f11f9b1c0c56d 100644 --- a/clients/client-swf/src/commands/CountPendingDecisionTasksCommand.ts +++ b/clients/client-swf/src/commands/CountPendingDecisionTasksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CountPendingDecisionTasksInput, PendingTaskCount } from "../models/models_0"; +import type { CountPendingDecisionTasksInput, PendingTaskCount } from "../models/models_0"; import { CountPendingDecisionTasks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/DeleteActivityTypeCommand.ts b/clients/client-swf/src/commands/DeleteActivityTypeCommand.ts index ed7ccf295a6ae..236832f3c8cd7 100644 --- a/clients/client-swf/src/commands/DeleteActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/DeleteActivityTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteActivityTypeInput } from "../models/models_0"; +import type { DeleteActivityTypeInput } from "../models/models_0"; import { DeleteActivityType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/DeleteWorkflowTypeCommand.ts b/clients/client-swf/src/commands/DeleteWorkflowTypeCommand.ts index 87dee44af1f8c..2cd29fa89c7c4 100644 --- a/clients/client-swf/src/commands/DeleteWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/DeleteWorkflowTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkflowTypeInput } from "../models/models_0"; +import type { DeleteWorkflowTypeInput } from "../models/models_0"; import { DeleteWorkflowType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/DeprecateActivityTypeCommand.ts b/clients/client-swf/src/commands/DeprecateActivityTypeCommand.ts index a27fcfd25375c..ef6b0c613f7ca 100644 --- a/clients/client-swf/src/commands/DeprecateActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/DeprecateActivityTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeprecateActivityTypeInput } from "../models/models_0"; +import type { DeprecateActivityTypeInput } from "../models/models_0"; import { DeprecateActivityType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/DeprecateDomainCommand.ts b/clients/client-swf/src/commands/DeprecateDomainCommand.ts index e32f281abb6b6..a2b735bf662a9 100644 --- a/clients/client-swf/src/commands/DeprecateDomainCommand.ts +++ b/clients/client-swf/src/commands/DeprecateDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeprecateDomainInput } from "../models/models_0"; +import type { DeprecateDomainInput } from "../models/models_0"; import { DeprecateDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/DeprecateWorkflowTypeCommand.ts b/clients/client-swf/src/commands/DeprecateWorkflowTypeCommand.ts index 5b66e10e549ed..210d94086d3b1 100644 --- a/clients/client-swf/src/commands/DeprecateWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/DeprecateWorkflowTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeprecateWorkflowTypeInput } from "../models/models_0"; +import type { DeprecateWorkflowTypeInput } from "../models/models_0"; import { DeprecateWorkflowType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/DescribeActivityTypeCommand.ts b/clients/client-swf/src/commands/DescribeActivityTypeCommand.ts index a3899a9c54f2d..c5686a84821a1 100644 --- a/clients/client-swf/src/commands/DescribeActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/DescribeActivityTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivityTypeDetail, DescribeActivityTypeInput } from "../models/models_0"; +import type { ActivityTypeDetail, DescribeActivityTypeInput } from "../models/models_0"; import { DescribeActivityType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/DescribeDomainCommand.ts b/clients/client-swf/src/commands/DescribeDomainCommand.ts index 3b525a04feb03..0fc90d9659311 100644 --- a/clients/client-swf/src/commands/DescribeDomainCommand.ts +++ b/clients/client-swf/src/commands/DescribeDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainInput, DomainDetail } from "../models/models_0"; +import type { DescribeDomainInput, DomainDetail } from "../models/models_0"; import { DescribeDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/DescribeWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/DescribeWorkflowExecutionCommand.ts index a91c52f327633..4600bb03fafc9 100644 --- a/clients/client-swf/src/commands/DescribeWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/DescribeWorkflowExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkflowExecutionInput, WorkflowExecutionDetail } from "../models/models_0"; +import type { DescribeWorkflowExecutionInput, WorkflowExecutionDetail } from "../models/models_0"; import { DescribeWorkflowExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/DescribeWorkflowTypeCommand.ts b/clients/client-swf/src/commands/DescribeWorkflowTypeCommand.ts index c2d1c5e64c80c..08867951a492d 100644 --- a/clients/client-swf/src/commands/DescribeWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/DescribeWorkflowTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkflowTypeInput, WorkflowTypeDetail } from "../models/models_0"; +import type { DescribeWorkflowTypeInput, WorkflowTypeDetail } from "../models/models_0"; import { DescribeWorkflowType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/GetWorkflowExecutionHistoryCommand.ts b/clients/client-swf/src/commands/GetWorkflowExecutionHistoryCommand.ts index 337a7bae66be1..81c560c9a8774 100644 --- a/clients/client-swf/src/commands/GetWorkflowExecutionHistoryCommand.ts +++ b/clients/client-swf/src/commands/GetWorkflowExecutionHistoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkflowExecutionHistoryInput, History } from "../models/models_0"; +import type { GetWorkflowExecutionHistoryInput, History } from "../models/models_0"; import { GetWorkflowExecutionHistory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/ListActivityTypesCommand.ts b/clients/client-swf/src/commands/ListActivityTypesCommand.ts index 999212cab3be3..e9214d0d040c0 100644 --- a/clients/client-swf/src/commands/ListActivityTypesCommand.ts +++ b/clients/client-swf/src/commands/ListActivityTypesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivityTypeInfos, ListActivityTypesInput } from "../models/models_0"; +import type { ActivityTypeInfos, ListActivityTypesInput } from "../models/models_0"; import { ListActivityTypes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/ListClosedWorkflowExecutionsCommand.ts b/clients/client-swf/src/commands/ListClosedWorkflowExecutionsCommand.ts index a26ec66d830c4..d12b1d4b3ad81 100644 --- a/clients/client-swf/src/commands/ListClosedWorkflowExecutionsCommand.ts +++ b/clients/client-swf/src/commands/ListClosedWorkflowExecutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListClosedWorkflowExecutionsInput, WorkflowExecutionInfos } from "../models/models_0"; +import type { ListClosedWorkflowExecutionsInput, WorkflowExecutionInfos } from "../models/models_0"; import { ListClosedWorkflowExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/ListDomainsCommand.ts b/clients/client-swf/src/commands/ListDomainsCommand.ts index 317e1aad17933..0518996ff31f6 100644 --- a/clients/client-swf/src/commands/ListDomainsCommand.ts +++ b/clients/client-swf/src/commands/ListDomainsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DomainInfos, ListDomainsInput } from "../models/models_0"; +import type { DomainInfos, ListDomainsInput } from "../models/models_0"; import { ListDomains } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/ListOpenWorkflowExecutionsCommand.ts b/clients/client-swf/src/commands/ListOpenWorkflowExecutionsCommand.ts index e6cd22df97f36..2e7b7aa7a66b7 100644 --- a/clients/client-swf/src/commands/ListOpenWorkflowExecutionsCommand.ts +++ b/clients/client-swf/src/commands/ListOpenWorkflowExecutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOpenWorkflowExecutionsInput, WorkflowExecutionInfos } from "../models/models_0"; +import type { ListOpenWorkflowExecutionsInput, WorkflowExecutionInfos } from "../models/models_0"; import { ListOpenWorkflowExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/ListTagsForResourceCommand.ts b/clients/client-swf/src/commands/ListTagsForResourceCommand.ts index 2ecae57cfc0ef..8190431660aca 100644 --- a/clients/client-swf/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-swf/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/ListWorkflowTypesCommand.ts b/clients/client-swf/src/commands/ListWorkflowTypesCommand.ts index 325a658341ebe..b1464f2c9b7b0 100644 --- a/clients/client-swf/src/commands/ListWorkflowTypesCommand.ts +++ b/clients/client-swf/src/commands/ListWorkflowTypesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowTypesInput, WorkflowTypeInfos } from "../models/models_0"; +import type { ListWorkflowTypesInput, WorkflowTypeInfos } from "../models/models_0"; import { ListWorkflowTypes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/PollForActivityTaskCommand.ts b/clients/client-swf/src/commands/PollForActivityTaskCommand.ts index 9d81f4dabf580..e6648d8d47519 100644 --- a/clients/client-swf/src/commands/PollForActivityTaskCommand.ts +++ b/clients/client-swf/src/commands/PollForActivityTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivityTask, PollForActivityTaskInput } from "../models/models_0"; +import type { ActivityTask, PollForActivityTaskInput } from "../models/models_0"; import { PollForActivityTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/PollForDecisionTaskCommand.ts b/clients/client-swf/src/commands/PollForDecisionTaskCommand.ts index 9fd0aa7c9586d..108a992a275c4 100644 --- a/clients/client-swf/src/commands/PollForDecisionTaskCommand.ts +++ b/clients/client-swf/src/commands/PollForDecisionTaskCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DecisionTask, PollForDecisionTaskInput } from "../models/models_0"; +import type { DecisionTask, PollForDecisionTaskInput } from "../models/models_0"; import { PollForDecisionTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/RecordActivityTaskHeartbeatCommand.ts b/clients/client-swf/src/commands/RecordActivityTaskHeartbeatCommand.ts index 4d342b2da3e2e..b30188d9669c3 100644 --- a/clients/client-swf/src/commands/RecordActivityTaskHeartbeatCommand.ts +++ b/clients/client-swf/src/commands/RecordActivityTaskHeartbeatCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivityTaskStatus, RecordActivityTaskHeartbeatInput } from "../models/models_0"; +import type { ActivityTaskStatus, RecordActivityTaskHeartbeatInput } from "../models/models_0"; import { RecordActivityTaskHeartbeat } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/RegisterActivityTypeCommand.ts b/clients/client-swf/src/commands/RegisterActivityTypeCommand.ts index 22ea55c473428..61ea596d3a88c 100644 --- a/clients/client-swf/src/commands/RegisterActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/RegisterActivityTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterActivityTypeInput } from "../models/models_0"; +import type { RegisterActivityTypeInput } from "../models/models_0"; import { RegisterActivityType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/RegisterDomainCommand.ts b/clients/client-swf/src/commands/RegisterDomainCommand.ts index e793fe7f39cdf..c6919a787be78 100644 --- a/clients/client-swf/src/commands/RegisterDomainCommand.ts +++ b/clients/client-swf/src/commands/RegisterDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterDomainInput } from "../models/models_0"; +import type { RegisterDomainInput } from "../models/models_0"; import { RegisterDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/RegisterWorkflowTypeCommand.ts b/clients/client-swf/src/commands/RegisterWorkflowTypeCommand.ts index f5953df763591..697f4478fe52d 100644 --- a/clients/client-swf/src/commands/RegisterWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/RegisterWorkflowTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterWorkflowTypeInput } from "../models/models_0"; +import type { RegisterWorkflowTypeInput } from "../models/models_0"; import { RegisterWorkflowType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/RequestCancelWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/RequestCancelWorkflowExecutionCommand.ts index 8e7ead30eee33..1ea7c5d026c9a 100644 --- a/clients/client-swf/src/commands/RequestCancelWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/RequestCancelWorkflowExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RequestCancelWorkflowExecutionInput } from "../models/models_0"; +import type { RequestCancelWorkflowExecutionInput } from "../models/models_0"; import { RequestCancelWorkflowExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/RespondActivityTaskCanceledCommand.ts b/clients/client-swf/src/commands/RespondActivityTaskCanceledCommand.ts index 499136a40d1ad..19258d08078e9 100644 --- a/clients/client-swf/src/commands/RespondActivityTaskCanceledCommand.ts +++ b/clients/client-swf/src/commands/RespondActivityTaskCanceledCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RespondActivityTaskCanceledInput } from "../models/models_0"; +import type { RespondActivityTaskCanceledInput } from "../models/models_0"; import { RespondActivityTaskCanceled } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/RespondActivityTaskCompletedCommand.ts b/clients/client-swf/src/commands/RespondActivityTaskCompletedCommand.ts index 62189410a6327..68cd674bf055e 100644 --- a/clients/client-swf/src/commands/RespondActivityTaskCompletedCommand.ts +++ b/clients/client-swf/src/commands/RespondActivityTaskCompletedCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RespondActivityTaskCompletedInput } from "../models/models_0"; +import type { RespondActivityTaskCompletedInput } from "../models/models_0"; import { RespondActivityTaskCompleted } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/RespondActivityTaskFailedCommand.ts b/clients/client-swf/src/commands/RespondActivityTaskFailedCommand.ts index 57a471a4ecf12..22dd6503215f4 100644 --- a/clients/client-swf/src/commands/RespondActivityTaskFailedCommand.ts +++ b/clients/client-swf/src/commands/RespondActivityTaskFailedCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RespondActivityTaskFailedInput } from "../models/models_0"; +import type { RespondActivityTaskFailedInput } from "../models/models_0"; import { RespondActivityTaskFailed } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/RespondDecisionTaskCompletedCommand.ts b/clients/client-swf/src/commands/RespondDecisionTaskCompletedCommand.ts index cab9003dfda0c..1ad918d03b70e 100644 --- a/clients/client-swf/src/commands/RespondDecisionTaskCompletedCommand.ts +++ b/clients/client-swf/src/commands/RespondDecisionTaskCompletedCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RespondDecisionTaskCompletedInput } from "../models/models_0"; +import type { RespondDecisionTaskCompletedInput } from "../models/models_0"; import { RespondDecisionTaskCompleted } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/SignalWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/SignalWorkflowExecutionCommand.ts index f4520b5088b9c..5b1808102643a 100644 --- a/clients/client-swf/src/commands/SignalWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/SignalWorkflowExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SignalWorkflowExecutionInput } from "../models/models_0"; +import type { SignalWorkflowExecutionInput } from "../models/models_0"; import { SignalWorkflowExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/StartWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/StartWorkflowExecutionCommand.ts index 6816726e3334b..1e81798d3f2df 100644 --- a/clients/client-swf/src/commands/StartWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/StartWorkflowExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Run, StartWorkflowExecutionInput } from "../models/models_0"; +import type { Run, StartWorkflowExecutionInput } from "../models/models_0"; import { StartWorkflowExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/TagResourceCommand.ts b/clients/client-swf/src/commands/TagResourceCommand.ts index e9eba9ada36a8..5cca8fafdc7ad 100644 --- a/clients/client-swf/src/commands/TagResourceCommand.ts +++ b/clients/client-swf/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput } from "../models/models_0"; +import type { TagResourceInput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/TerminateWorkflowExecutionCommand.ts b/clients/client-swf/src/commands/TerminateWorkflowExecutionCommand.ts index 859f4f3ae8149..0966b53671342 100644 --- a/clients/client-swf/src/commands/TerminateWorkflowExecutionCommand.ts +++ b/clients/client-swf/src/commands/TerminateWorkflowExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateWorkflowExecutionInput } from "../models/models_0"; +import type { TerminateWorkflowExecutionInput } from "../models/models_0"; import { TerminateWorkflowExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/UndeprecateActivityTypeCommand.ts b/clients/client-swf/src/commands/UndeprecateActivityTypeCommand.ts index 01acf58c49b7a..1b1f33d43af3a 100644 --- a/clients/client-swf/src/commands/UndeprecateActivityTypeCommand.ts +++ b/clients/client-swf/src/commands/UndeprecateActivityTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UndeprecateActivityTypeInput } from "../models/models_0"; +import type { UndeprecateActivityTypeInput } from "../models/models_0"; import { UndeprecateActivityType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/UndeprecateDomainCommand.ts b/clients/client-swf/src/commands/UndeprecateDomainCommand.ts index 5500686cc35f3..6cd1972ae7337 100644 --- a/clients/client-swf/src/commands/UndeprecateDomainCommand.ts +++ b/clients/client-swf/src/commands/UndeprecateDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UndeprecateDomainInput } from "../models/models_0"; +import type { UndeprecateDomainInput } from "../models/models_0"; import { UndeprecateDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/UndeprecateWorkflowTypeCommand.ts b/clients/client-swf/src/commands/UndeprecateWorkflowTypeCommand.ts index 216e215b03081..c354b906240a5 100644 --- a/clients/client-swf/src/commands/UndeprecateWorkflowTypeCommand.ts +++ b/clients/client-swf/src/commands/UndeprecateWorkflowTypeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UndeprecateWorkflowTypeInput } from "../models/models_0"; +import type { UndeprecateWorkflowTypeInput } from "../models/models_0"; import { UndeprecateWorkflowType } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/commands/UntagResourceCommand.ts b/clients/client-swf/src/commands/UntagResourceCommand.ts index 22dac7ad5648c..059a67404b32c 100644 --- a/clients/client-swf/src/commands/UntagResourceCommand.ts +++ b/clients/client-swf/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput } from "../models/models_0"; +import type { UntagResourceInput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SWFClientResolvedConfig } from "../SWFClient"; /** * @public diff --git a/clients/client-swf/src/endpoint/EndpointParameters.ts b/clients/client-swf/src/endpoint/EndpointParameters.ts index 7471f28881669..02da90539643a 100644 --- a/clients/client-swf/src/endpoint/EndpointParameters.ts +++ b/clients/client-swf/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-swf/src/endpoint/endpointResolver.ts b/clients/client-swf/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-swf/src/endpoint/endpointResolver.ts +++ b/clients/client-swf/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-swf/src/extensionConfiguration.ts b/clients/client-swf/src/extensionConfiguration.ts index 322bb33258b48..4141eba7d40d8 100644 --- a/clients/client-swf/src/extensionConfiguration.ts +++ b/clients/client-swf/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-swf/src/models/SWFServiceException.ts b/clients/client-swf/src/models/SWFServiceException.ts index a9c5c1825a99c..538efe06d98ed 100644 --- a/clients/client-swf/src/models/SWFServiceException.ts +++ b/clients/client-swf/src/models/SWFServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-swf/src/models/errors.ts b/clients/client-swf/src/models/errors.ts index b298a9ab6bbc7..9f5cb5acbd33a 100644 --- a/clients/client-swf/src/models/errors.ts +++ b/clients/client-swf/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SWFServiceException as __BaseException } from "./SWFServiceException"; diff --git a/clients/client-swf/src/pagination/GetWorkflowExecutionHistoryPaginator.ts b/clients/client-swf/src/pagination/GetWorkflowExecutionHistoryPaginator.ts index 604e00a982b56..5667b2495ff24 100644 --- a/clients/client-swf/src/pagination/GetWorkflowExecutionHistoryPaginator.ts +++ b/clients/client-swf/src/pagination/GetWorkflowExecutionHistoryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetWorkflowExecutionHistoryCommand, diff --git a/clients/client-swf/src/pagination/Interfaces.ts b/clients/client-swf/src/pagination/Interfaces.ts index 3f80dae454fa3..1862e66cd9807 100644 --- a/clients/client-swf/src/pagination/Interfaces.ts +++ b/clients/client-swf/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SWFClient } from "../SWFClient"; diff --git a/clients/client-swf/src/pagination/ListActivityTypesPaginator.ts b/clients/client-swf/src/pagination/ListActivityTypesPaginator.ts index c472c89dcf3cb..5d6c22e4adc97 100644 --- a/clients/client-swf/src/pagination/ListActivityTypesPaginator.ts +++ b/clients/client-swf/src/pagination/ListActivityTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListActivityTypesCommand, diff --git a/clients/client-swf/src/pagination/ListClosedWorkflowExecutionsPaginator.ts b/clients/client-swf/src/pagination/ListClosedWorkflowExecutionsPaginator.ts index a05187d6d0db5..540f07d6f0e7f 100644 --- a/clients/client-swf/src/pagination/ListClosedWorkflowExecutionsPaginator.ts +++ b/clients/client-swf/src/pagination/ListClosedWorkflowExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListClosedWorkflowExecutionsCommand, diff --git a/clients/client-swf/src/pagination/ListDomainsPaginator.ts b/clients/client-swf/src/pagination/ListDomainsPaginator.ts index 4a86f5541ca68..56cf715dcb427 100644 --- a/clients/client-swf/src/pagination/ListDomainsPaginator.ts +++ b/clients/client-swf/src/pagination/ListDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainsCommand, ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand"; import { SWFClient } from "../SWFClient"; diff --git a/clients/client-swf/src/pagination/ListOpenWorkflowExecutionsPaginator.ts b/clients/client-swf/src/pagination/ListOpenWorkflowExecutionsPaginator.ts index 86f46a0400102..b14c8ae165134 100644 --- a/clients/client-swf/src/pagination/ListOpenWorkflowExecutionsPaginator.ts +++ b/clients/client-swf/src/pagination/ListOpenWorkflowExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOpenWorkflowExecutionsCommand, diff --git a/clients/client-swf/src/pagination/ListWorkflowTypesPaginator.ts b/clients/client-swf/src/pagination/ListWorkflowTypesPaginator.ts index e7cbc5d3462a3..e1554500d5931 100644 --- a/clients/client-swf/src/pagination/ListWorkflowTypesPaginator.ts +++ b/clients/client-swf/src/pagination/ListWorkflowTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowTypesCommand, diff --git a/clients/client-swf/src/pagination/PollForDecisionTaskPaginator.ts b/clients/client-swf/src/pagination/PollForDecisionTaskPaginator.ts index 7b08de1fcf043..e8e4939b69b54 100644 --- a/clients/client-swf/src/pagination/PollForDecisionTaskPaginator.ts +++ b/clients/client-swf/src/pagination/PollForDecisionTaskPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { PollForDecisionTaskCommand, diff --git a/clients/client-swf/src/runtimeConfig.browser.ts b/clients/client-swf/src/runtimeConfig.browser.ts index a630e98fd4dfc..3d46e784095cc 100644 --- a/clients/client-swf/src/runtimeConfig.browser.ts +++ b/clients/client-swf/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SWFClientConfig } from "./SWFClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SWFClientConfig } from "./SWFClient"; /** * @internal diff --git a/clients/client-swf/src/runtimeConfig.native.ts b/clients/client-swf/src/runtimeConfig.native.ts index 3cdf1adc54bee..d39c73f5d5f64 100644 --- a/clients/client-swf/src/runtimeConfig.native.ts +++ b/clients/client-swf/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SWFClientConfig } from "./SWFClient"; +import type { SWFClientConfig } from "./SWFClient"; /** * @internal diff --git a/clients/client-swf/src/runtimeConfig.shared.ts b/clients/client-swf/src/runtimeConfig.shared.ts index 1c373f5cf4892..3eb4ac3720709 100644 --- a/clients/client-swf/src/runtimeConfig.shared.ts +++ b/clients/client-swf/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSWFHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SWFClientConfig } from "./SWFClient"; +import type { SWFClientConfig } from "./SWFClient"; /** * @internal diff --git a/clients/client-swf/src/runtimeConfig.ts b/clients/client-swf/src/runtimeConfig.ts index 719ade9446545..faf7f7361e107 100644 --- a/clients/client-swf/src/runtimeConfig.ts +++ b/clients/client-swf/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SWFClientConfig } from "./SWFClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SWFClientConfig } from "./SWFClient"; /** * @internal diff --git a/clients/client-swf/src/runtimeExtensions.ts b/clients/client-swf/src/runtimeExtensions.ts index 0a414bfc5d311..9db0c5cbdee91 100644 --- a/clients/client-swf/src/runtimeExtensions.ts +++ b/clients/client-swf/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SWFExtensionConfiguration } from "./extensionConfiguration"; +import type { SWFExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-swf/src/schemas/schemas_0.ts b/clients/client-swf/src/schemas/schemas_0.ts index f56b3f75520fe..1781d93acec91 100644 --- a/clients/client-swf/src/schemas/schemas_0.ts +++ b/clients/client-swf/src/schemas/schemas_0.ts @@ -388,7 +388,7 @@ const n0 = "com.amazonaws.swf"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { DefaultUndefinedFault as __DefaultUndefinedFault, diff --git a/clients/client-synthetics/package.json b/clients/client-synthetics/package.json index 390de004832d6..21dd45b72b3b9 100644 --- a/clients/client-synthetics/package.json +++ b/clients/client-synthetics/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-synthetics/src/Synthetics.ts b/clients/client-synthetics/src/Synthetics.ts index ff21af319fd34..b64e1bf5d77dc 100644 --- a/clients/client-synthetics/src/Synthetics.ts +++ b/clients/client-synthetics/src/Synthetics.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateResourceCommand, @@ -80,7 +80,7 @@ import { UpdateCanaryCommandInput, UpdateCanaryCommandOutput, } from "./commands/UpdateCanaryCommand"; -import { SyntheticsClient, SyntheticsClientConfig } from "./SyntheticsClient"; +import { SyntheticsClient } from "./SyntheticsClient"; const commands = { AssociateResourceCommand, diff --git a/clients/client-synthetics/src/SyntheticsClient.ts b/clients/client-synthetics/src/SyntheticsClient.ts index cb9df1e50c2be..de3580b515436 100644 --- a/clients/client-synthetics/src/SyntheticsClient.ts +++ b/clients/client-synthetics/src/SyntheticsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSyntheticsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateResourceCommandInput, AssociateResourceCommandOutput } from "./commands/AssociateResourceCommand"; @@ -101,7 +110,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-synthetics/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-synthetics/src/auth/httpAuthExtensionConfiguration.ts index 48cd22fb3c003..9135a006d9942 100644 --- a/clients/client-synthetics/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-synthetics/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SyntheticsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SyntheticsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-synthetics/src/auth/httpAuthSchemeProvider.ts b/clients/client-synthetics/src/auth/httpAuthSchemeProvider.ts index 675b86225efc5..82b7ad2d318a1 100644 --- a/clients/client-synthetics/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-synthetics/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SyntheticsClientConfig, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import { type SyntheticsClientResolvedConfig, SyntheticsClientConfig } from "../SyntheticsClient"; /** * @internal diff --git a/clients/client-synthetics/src/commands/AssociateResourceCommand.ts b/clients/client-synthetics/src/commands/AssociateResourceCommand.ts index 604b81f3e39bb..d901ba9c9d26e 100644 --- a/clients/client-synthetics/src/commands/AssociateResourceCommand.ts +++ b/clients/client-synthetics/src/commands/AssociateResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateResourceRequest, AssociateResourceResponse } from "../models/models_0"; +import type { AssociateResourceRequest, AssociateResourceResponse } from "../models/models_0"; import { AssociateResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/CreateCanaryCommand.ts b/clients/client-synthetics/src/commands/CreateCanaryCommand.ts index f071511c4dd95..122989022a925 100644 --- a/clients/client-synthetics/src/commands/CreateCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/CreateCanaryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCanaryRequest, CreateCanaryResponse } from "../models/models_0"; +import type { CreateCanaryRequest, CreateCanaryResponse } from "../models/models_0"; import { CreateCanary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/CreateGroupCommand.ts b/clients/client-synthetics/src/commands/CreateGroupCommand.ts index ae50182d7171e..797d10c7b029f 100644 --- a/clients/client-synthetics/src/commands/CreateGroupCommand.ts +++ b/clients/client-synthetics/src/commands/CreateGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; +import type { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; import { CreateGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/DeleteCanaryCommand.ts b/clients/client-synthetics/src/commands/DeleteCanaryCommand.ts index be8493120b3e9..31d60aaf4c423 100644 --- a/clients/client-synthetics/src/commands/DeleteCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/DeleteCanaryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCanaryRequest, DeleteCanaryResponse } from "../models/models_0"; +import type { DeleteCanaryRequest, DeleteCanaryResponse } from "../models/models_0"; import { DeleteCanary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/DeleteGroupCommand.ts b/clients/client-synthetics/src/commands/DeleteGroupCommand.ts index 2ac95e7d3c75a..71189267d48cd 100644 --- a/clients/client-synthetics/src/commands/DeleteGroupCommand.ts +++ b/clients/client-synthetics/src/commands/DeleteGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; +import type { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; import { DeleteGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/DescribeCanariesCommand.ts b/clients/client-synthetics/src/commands/DescribeCanariesCommand.ts index c7249874be14f..5a11b91878987 100644 --- a/clients/client-synthetics/src/commands/DescribeCanariesCommand.ts +++ b/clients/client-synthetics/src/commands/DescribeCanariesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCanariesRequest, DescribeCanariesResponse } from "../models/models_0"; +import type { DescribeCanariesRequest, DescribeCanariesResponse } from "../models/models_0"; import { DescribeCanaries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/DescribeCanariesLastRunCommand.ts b/clients/client-synthetics/src/commands/DescribeCanariesLastRunCommand.ts index 09b107d9c8f6a..c578da54a8048 100644 --- a/clients/client-synthetics/src/commands/DescribeCanariesLastRunCommand.ts +++ b/clients/client-synthetics/src/commands/DescribeCanariesLastRunCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCanariesLastRunRequest, DescribeCanariesLastRunResponse } from "../models/models_0"; +import type { DescribeCanariesLastRunRequest, DescribeCanariesLastRunResponse } from "../models/models_0"; import { DescribeCanariesLastRun } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/DescribeRuntimeVersionsCommand.ts b/clients/client-synthetics/src/commands/DescribeRuntimeVersionsCommand.ts index f0f6a903651a1..7d56687a32816 100644 --- a/clients/client-synthetics/src/commands/DescribeRuntimeVersionsCommand.ts +++ b/clients/client-synthetics/src/commands/DescribeRuntimeVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRuntimeVersionsRequest, DescribeRuntimeVersionsResponse } from "../models/models_0"; +import type { DescribeRuntimeVersionsRequest, DescribeRuntimeVersionsResponse } from "../models/models_0"; import { DescribeRuntimeVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/DisassociateResourceCommand.ts b/clients/client-synthetics/src/commands/DisassociateResourceCommand.ts index d3f02480b580f..13f9bd75ee622 100644 --- a/clients/client-synthetics/src/commands/DisassociateResourceCommand.ts +++ b/clients/client-synthetics/src/commands/DisassociateResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateResourceRequest, DisassociateResourceResponse } from "../models/models_0"; +import type { DisassociateResourceRequest, DisassociateResourceResponse } from "../models/models_0"; import { DisassociateResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/GetCanaryCommand.ts b/clients/client-synthetics/src/commands/GetCanaryCommand.ts index f8cc11ff008f9..d690800a667c5 100644 --- a/clients/client-synthetics/src/commands/GetCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/GetCanaryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCanaryRequest, GetCanaryResponse } from "../models/models_0"; +import type { GetCanaryRequest, GetCanaryResponse } from "../models/models_0"; import { GetCanary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/GetCanaryRunsCommand.ts b/clients/client-synthetics/src/commands/GetCanaryRunsCommand.ts index db345b92e8afd..4423eaa6c6943 100644 --- a/clients/client-synthetics/src/commands/GetCanaryRunsCommand.ts +++ b/clients/client-synthetics/src/commands/GetCanaryRunsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCanaryRunsRequest, GetCanaryRunsResponse } from "../models/models_0"; +import type { GetCanaryRunsRequest, GetCanaryRunsResponse } from "../models/models_0"; import { GetCanaryRuns } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/GetGroupCommand.ts b/clients/client-synthetics/src/commands/GetGroupCommand.ts index 7ca563fefda1f..083fa431059ae 100644 --- a/clients/client-synthetics/src/commands/GetGroupCommand.ts +++ b/clients/client-synthetics/src/commands/GetGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupRequest, GetGroupResponse } from "../models/models_0"; +import type { GetGroupRequest, GetGroupResponse } from "../models/models_0"; import { GetGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/ListAssociatedGroupsCommand.ts b/clients/client-synthetics/src/commands/ListAssociatedGroupsCommand.ts index 1bba2b830d2d3..bedafc4c6b8c6 100644 --- a/clients/client-synthetics/src/commands/ListAssociatedGroupsCommand.ts +++ b/clients/client-synthetics/src/commands/ListAssociatedGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssociatedGroupsRequest, ListAssociatedGroupsResponse } from "../models/models_0"; +import type { ListAssociatedGroupsRequest, ListAssociatedGroupsResponse } from "../models/models_0"; import { ListAssociatedGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/ListGroupResourcesCommand.ts b/clients/client-synthetics/src/commands/ListGroupResourcesCommand.ts index 98d063395c439..4bbc97413d31a 100644 --- a/clients/client-synthetics/src/commands/ListGroupResourcesCommand.ts +++ b/clients/client-synthetics/src/commands/ListGroupResourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupResourcesRequest, ListGroupResourcesResponse } from "../models/models_0"; +import type { ListGroupResourcesRequest, ListGroupResourcesResponse } from "../models/models_0"; import { ListGroupResources } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/ListGroupsCommand.ts b/clients/client-synthetics/src/commands/ListGroupsCommand.ts index 1e0237d1b8bef..f412cc4e34a73 100644 --- a/clients/client-synthetics/src/commands/ListGroupsCommand.ts +++ b/clients/client-synthetics/src/commands/ListGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; +import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; import { ListGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/ListTagsForResourceCommand.ts b/clients/client-synthetics/src/commands/ListTagsForResourceCommand.ts index 4fd07d2a42308..c064fa91a855a 100644 --- a/clients/client-synthetics/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-synthetics/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/StartCanaryCommand.ts b/clients/client-synthetics/src/commands/StartCanaryCommand.ts index 765b9660688a5..2a8934a7cbb4f 100644 --- a/clients/client-synthetics/src/commands/StartCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/StartCanaryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCanaryRequest, StartCanaryResponse } from "../models/models_0"; +import type { StartCanaryRequest, StartCanaryResponse } from "../models/models_0"; import { StartCanary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/StartCanaryDryRunCommand.ts b/clients/client-synthetics/src/commands/StartCanaryDryRunCommand.ts index 66f3e49d0a91f..7736d5537b776 100644 --- a/clients/client-synthetics/src/commands/StartCanaryDryRunCommand.ts +++ b/clients/client-synthetics/src/commands/StartCanaryDryRunCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCanaryDryRunRequest, StartCanaryDryRunResponse } from "../models/models_0"; +import type { StartCanaryDryRunRequest, StartCanaryDryRunResponse } from "../models/models_0"; import { StartCanaryDryRun } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/StopCanaryCommand.ts b/clients/client-synthetics/src/commands/StopCanaryCommand.ts index 2d1b003d7d0ef..86c9ae86dc868 100644 --- a/clients/client-synthetics/src/commands/StopCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/StopCanaryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopCanaryRequest, StopCanaryResponse } from "../models/models_0"; +import type { StopCanaryRequest, StopCanaryResponse } from "../models/models_0"; import { StopCanary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/TagResourceCommand.ts b/clients/client-synthetics/src/commands/TagResourceCommand.ts index 158218be7a81e..47d6a8bccea15 100644 --- a/clients/client-synthetics/src/commands/TagResourceCommand.ts +++ b/clients/client-synthetics/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/UntagResourceCommand.ts b/clients/client-synthetics/src/commands/UntagResourceCommand.ts index 36009cb49b5e4..b1532796a1619 100644 --- a/clients/client-synthetics/src/commands/UntagResourceCommand.ts +++ b/clients/client-synthetics/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/commands/UpdateCanaryCommand.ts b/clients/client-synthetics/src/commands/UpdateCanaryCommand.ts index c711698d2cbc3..3a72a7999a46d 100644 --- a/clients/client-synthetics/src/commands/UpdateCanaryCommand.ts +++ b/clients/client-synthetics/src/commands/UpdateCanaryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCanaryRequest, UpdateCanaryResponse } from "../models/models_0"; +import type { UpdateCanaryRequest, UpdateCanaryResponse } from "../models/models_0"; import { UpdateCanary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SyntheticsClientResolvedConfig } from "../SyntheticsClient"; /** * @public diff --git a/clients/client-synthetics/src/endpoint/EndpointParameters.ts b/clients/client-synthetics/src/endpoint/EndpointParameters.ts index 7531a1b9e73cd..be624e8ac0e15 100644 --- a/clients/client-synthetics/src/endpoint/EndpointParameters.ts +++ b/clients/client-synthetics/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-synthetics/src/endpoint/endpointResolver.ts b/clients/client-synthetics/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-synthetics/src/endpoint/endpointResolver.ts +++ b/clients/client-synthetics/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-synthetics/src/extensionConfiguration.ts b/clients/client-synthetics/src/extensionConfiguration.ts index c2132da4af17a..cefc175e116bc 100644 --- a/clients/client-synthetics/src/extensionConfiguration.ts +++ b/clients/client-synthetics/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-synthetics/src/models/SyntheticsServiceException.ts b/clients/client-synthetics/src/models/SyntheticsServiceException.ts index ba2d940f70ac4..5f64fa7c3c249 100644 --- a/clients/client-synthetics/src/models/SyntheticsServiceException.ts +++ b/clients/client-synthetics/src/models/SyntheticsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-synthetics/src/models/errors.ts b/clients/client-synthetics/src/models/errors.ts index 7b9f54c8b5ac0..6c68cf9aa626f 100644 --- a/clients/client-synthetics/src/models/errors.ts +++ b/clients/client-synthetics/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { SyntheticsServiceException as __BaseException } from "./SyntheticsServiceException"; diff --git a/clients/client-synthetics/src/pagination/DescribeCanariesLastRunPaginator.ts b/clients/client-synthetics/src/pagination/DescribeCanariesLastRunPaginator.ts index 02f078f2f8841..3f04c108a9b83 100644 --- a/clients/client-synthetics/src/pagination/DescribeCanariesLastRunPaginator.ts +++ b/clients/client-synthetics/src/pagination/DescribeCanariesLastRunPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCanariesLastRunCommand, diff --git a/clients/client-synthetics/src/pagination/DescribeCanariesPaginator.ts b/clients/client-synthetics/src/pagination/DescribeCanariesPaginator.ts index eb64ad0f16690..3d7b23163fc1a 100644 --- a/clients/client-synthetics/src/pagination/DescribeCanariesPaginator.ts +++ b/clients/client-synthetics/src/pagination/DescribeCanariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCanariesCommand, diff --git a/clients/client-synthetics/src/pagination/DescribeRuntimeVersionsPaginator.ts b/clients/client-synthetics/src/pagination/DescribeRuntimeVersionsPaginator.ts index 791e73ee5ec45..fcdc470144ebd 100644 --- a/clients/client-synthetics/src/pagination/DescribeRuntimeVersionsPaginator.ts +++ b/clients/client-synthetics/src/pagination/DescribeRuntimeVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRuntimeVersionsCommand, diff --git a/clients/client-synthetics/src/pagination/GetCanaryRunsPaginator.ts b/clients/client-synthetics/src/pagination/GetCanaryRunsPaginator.ts index ea5bb7e9e770c..bb60056e98a70 100644 --- a/clients/client-synthetics/src/pagination/GetCanaryRunsPaginator.ts +++ b/clients/client-synthetics/src/pagination/GetCanaryRunsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetCanaryRunsCommand, diff --git a/clients/client-synthetics/src/pagination/Interfaces.ts b/clients/client-synthetics/src/pagination/Interfaces.ts index 785edbfdfa36d..85e49c254c408 100644 --- a/clients/client-synthetics/src/pagination/Interfaces.ts +++ b/clients/client-synthetics/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { SyntheticsClient } from "../SyntheticsClient"; diff --git a/clients/client-synthetics/src/pagination/ListAssociatedGroupsPaginator.ts b/clients/client-synthetics/src/pagination/ListAssociatedGroupsPaginator.ts index a010a68d833df..f3a09d16ec616 100644 --- a/clients/client-synthetics/src/pagination/ListAssociatedGroupsPaginator.ts +++ b/clients/client-synthetics/src/pagination/ListAssociatedGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssociatedGroupsCommand, diff --git a/clients/client-synthetics/src/pagination/ListGroupResourcesPaginator.ts b/clients/client-synthetics/src/pagination/ListGroupResourcesPaginator.ts index 277c33868c20a..2a2537d6451a6 100644 --- a/clients/client-synthetics/src/pagination/ListGroupResourcesPaginator.ts +++ b/clients/client-synthetics/src/pagination/ListGroupResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupResourcesCommand, diff --git a/clients/client-synthetics/src/pagination/ListGroupsPaginator.ts b/clients/client-synthetics/src/pagination/ListGroupsPaginator.ts index 3fa2476d3ef1a..7b502057b432a 100644 --- a/clients/client-synthetics/src/pagination/ListGroupsPaginator.ts +++ b/clients/client-synthetics/src/pagination/ListGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand"; import { SyntheticsClient } from "../SyntheticsClient"; diff --git a/clients/client-synthetics/src/runtimeConfig.browser.ts b/clients/client-synthetics/src/runtimeConfig.browser.ts index 9280eec0bff37..ee81e02b2ae5f 100644 --- a/clients/client-synthetics/src/runtimeConfig.browser.ts +++ b/clients/client-synthetics/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SyntheticsClientConfig } from "./SyntheticsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SyntheticsClientConfig } from "./SyntheticsClient"; /** * @internal diff --git a/clients/client-synthetics/src/runtimeConfig.native.ts b/clients/client-synthetics/src/runtimeConfig.native.ts index 65a0059632803..e7180a055f5b4 100644 --- a/clients/client-synthetics/src/runtimeConfig.native.ts +++ b/clients/client-synthetics/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SyntheticsClientConfig } from "./SyntheticsClient"; +import type { SyntheticsClientConfig } from "./SyntheticsClient"; /** * @internal diff --git a/clients/client-synthetics/src/runtimeConfig.shared.ts b/clients/client-synthetics/src/runtimeConfig.shared.ts index de885e913951b..aed584f03915f 100644 --- a/clients/client-synthetics/src/runtimeConfig.shared.ts +++ b/clients/client-synthetics/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSyntheticsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SyntheticsClientConfig } from "./SyntheticsClient"; +import type { SyntheticsClientConfig } from "./SyntheticsClient"; /** * @internal diff --git a/clients/client-synthetics/src/runtimeConfig.ts b/clients/client-synthetics/src/runtimeConfig.ts index 90cf8f6215231..5a96b4be22bb5 100644 --- a/clients/client-synthetics/src/runtimeConfig.ts +++ b/clients/client-synthetics/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SyntheticsClientConfig } from "./SyntheticsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SyntheticsClientConfig } from "./SyntheticsClient"; /** * @internal diff --git a/clients/client-synthetics/src/runtimeExtensions.ts b/clients/client-synthetics/src/runtimeExtensions.ts index 74eb33640c21c..20c845b527b8e 100644 --- a/clients/client-synthetics/src/runtimeExtensions.ts +++ b/clients/client-synthetics/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SyntheticsExtensionConfiguration } from "./extensionConfiguration"; +import type { SyntheticsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-synthetics/src/schemas/schemas_0.ts b/clients/client-synthetics/src/schemas/schemas_0.ts index a24cce39ee26b..a2e64a3b2708c 100644 --- a/clients/client-synthetics/src/schemas/schemas_0.ts +++ b/clients/client-synthetics/src/schemas/schemas_0.ts @@ -215,7 +215,7 @@ const n0 = "com.amazonaws.synthetics"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-taxsettings/package.json b/clients/client-taxsettings/package.json index da0d186500561..1b343ab3cfa8b 100644 --- a/clients/client-taxsettings/package.json +++ b/clients/client-taxsettings/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-taxsettings/src/TaxSettings.ts b/clients/client-taxsettings/src/TaxSettings.ts index 991c9fd7fffc5..874a687c0e99a 100644 --- a/clients/client-taxsettings/src/TaxSettings.ts +++ b/clients/client-taxsettings/src/TaxSettings.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchDeleteTaxRegistrationCommand, @@ -82,7 +82,7 @@ import { PutTaxRegistrationCommandInput, PutTaxRegistrationCommandOutput, } from "./commands/PutTaxRegistrationCommand"; -import { TaxSettingsClient, TaxSettingsClientConfig } from "./TaxSettingsClient"; +import { TaxSettingsClient } from "./TaxSettingsClient"; const commands = { BatchDeleteTaxRegistrationCommand, diff --git a/clients/client-taxsettings/src/TaxSettingsClient.ts b/clients/client-taxsettings/src/TaxSettingsClient.ts index 1b4c8b419b1db..33ee7227aff72 100644 --- a/clients/client-taxsettings/src/TaxSettingsClient.ts +++ b/clients/client-taxsettings/src/TaxSettingsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTaxSettingsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -110,7 +119,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-taxsettings/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-taxsettings/src/auth/httpAuthExtensionConfiguration.ts index 27f02ea36454b..f5fcc47a8f8fa 100644 --- a/clients/client-taxsettings/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-taxsettings/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TaxSettingsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TaxSettingsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-taxsettings/src/auth/httpAuthSchemeProvider.ts b/clients/client-taxsettings/src/auth/httpAuthSchemeProvider.ts index bcd500efd9e45..925b907cd012a 100644 --- a/clients/client-taxsettings/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-taxsettings/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TaxSettingsClientConfig, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import { type TaxSettingsClientResolvedConfig, TaxSettingsClientConfig } from "../TaxSettingsClient"; /** * @internal diff --git a/clients/client-taxsettings/src/commands/BatchDeleteTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/BatchDeleteTaxRegistrationCommand.ts index 842ca4c11aca5..1fbb00076da52 100644 --- a/clients/client-taxsettings/src/commands/BatchDeleteTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/BatchDeleteTaxRegistrationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchDeleteTaxRegistrationRequest, BatchDeleteTaxRegistrationResponse } from "../models/models_0"; +import type { BatchDeleteTaxRegistrationRequest, BatchDeleteTaxRegistrationResponse } from "../models/models_0"; import { BatchDeleteTaxRegistration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/BatchGetTaxExemptionsCommand.ts b/clients/client-taxsettings/src/commands/BatchGetTaxExemptionsCommand.ts index a48ee285dc16e..1fc4c02f13b5d 100644 --- a/clients/client-taxsettings/src/commands/BatchGetTaxExemptionsCommand.ts +++ b/clients/client-taxsettings/src/commands/BatchGetTaxExemptionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetTaxExemptionsRequest, BatchGetTaxExemptionsResponse } from "../models/models_0"; +import type { BatchGetTaxExemptionsRequest, BatchGetTaxExemptionsResponse } from "../models/models_0"; import { BatchGetTaxExemptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/BatchPutTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/BatchPutTaxRegistrationCommand.ts index 054ac11c66553..222944451fd7b 100644 --- a/clients/client-taxsettings/src/commands/BatchPutTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/BatchPutTaxRegistrationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchPutTaxRegistrationRequest, BatchPutTaxRegistrationResponse } from "../models/models_0"; +import type { BatchPutTaxRegistrationRequest, BatchPutTaxRegistrationResponse } from "../models/models_0"; import { BatchPutTaxRegistration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/DeleteSupplementalTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/DeleteSupplementalTaxRegistrationCommand.ts index 4c66752aaa9b1..1e63651814a4f 100644 --- a/clients/client-taxsettings/src/commands/DeleteSupplementalTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/DeleteSupplementalTaxRegistrationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteSupplementalTaxRegistrationRequest, DeleteSupplementalTaxRegistrationResponse, } from "../models/models_0"; import { DeleteSupplementalTaxRegistration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/DeleteTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/DeleteTaxRegistrationCommand.ts index 78bcefc88c680..250ab8254ee2b 100644 --- a/clients/client-taxsettings/src/commands/DeleteTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/DeleteTaxRegistrationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTaxRegistrationRequest, DeleteTaxRegistrationResponse } from "../models/models_0"; +import type { DeleteTaxRegistrationRequest, DeleteTaxRegistrationResponse } from "../models/models_0"; import { DeleteTaxRegistration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/GetTaxExemptionTypesCommand.ts b/clients/client-taxsettings/src/commands/GetTaxExemptionTypesCommand.ts index 95f3941a09037..fa4ffd04b0f9a 100644 --- a/clients/client-taxsettings/src/commands/GetTaxExemptionTypesCommand.ts +++ b/clients/client-taxsettings/src/commands/GetTaxExemptionTypesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTaxExemptionTypesRequest, GetTaxExemptionTypesResponse } from "../models/models_0"; +import type { GetTaxExemptionTypesRequest, GetTaxExemptionTypesResponse } from "../models/models_0"; import { GetTaxExemptionTypes } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/GetTaxInheritanceCommand.ts b/clients/client-taxsettings/src/commands/GetTaxInheritanceCommand.ts index 7dd925e17d584..2fd726939701c 100644 --- a/clients/client-taxsettings/src/commands/GetTaxInheritanceCommand.ts +++ b/clients/client-taxsettings/src/commands/GetTaxInheritanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTaxInheritanceRequest, GetTaxInheritanceResponse } from "../models/models_0"; +import type { GetTaxInheritanceRequest, GetTaxInheritanceResponse } from "../models/models_0"; import { GetTaxInheritance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/GetTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/GetTaxRegistrationCommand.ts index fa98fa6d363d5..e5e371ff31092 100644 --- a/clients/client-taxsettings/src/commands/GetTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/GetTaxRegistrationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTaxRegistrationRequest, GetTaxRegistrationResponse } from "../models/models_0"; +import type { GetTaxRegistrationRequest, GetTaxRegistrationResponse } from "../models/models_0"; import { GetTaxRegistration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/GetTaxRegistrationDocumentCommand.ts b/clients/client-taxsettings/src/commands/GetTaxRegistrationDocumentCommand.ts index 1f08282cb266a..3145ab0b55bfd 100644 --- a/clients/client-taxsettings/src/commands/GetTaxRegistrationDocumentCommand.ts +++ b/clients/client-taxsettings/src/commands/GetTaxRegistrationDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTaxRegistrationDocumentRequest, GetTaxRegistrationDocumentResponse } from "../models/models_0"; +import type { GetTaxRegistrationDocumentRequest, GetTaxRegistrationDocumentResponse } from "../models/models_0"; import { GetTaxRegistrationDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/ListSupplementalTaxRegistrationsCommand.ts b/clients/client-taxsettings/src/commands/ListSupplementalTaxRegistrationsCommand.ts index 5da6c3a225977..f0844cd8ba537 100644 --- a/clients/client-taxsettings/src/commands/ListSupplementalTaxRegistrationsCommand.ts +++ b/clients/client-taxsettings/src/commands/ListSupplementalTaxRegistrationsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSupplementalTaxRegistrationsRequest, ListSupplementalTaxRegistrationsResponse } from "../models/models_0"; +import type { + ListSupplementalTaxRegistrationsRequest, + ListSupplementalTaxRegistrationsResponse, +} from "../models/models_0"; import { ListSupplementalTaxRegistrations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/ListTaxExemptionsCommand.ts b/clients/client-taxsettings/src/commands/ListTaxExemptionsCommand.ts index b16f0583bf97d..7863822ee883f 100644 --- a/clients/client-taxsettings/src/commands/ListTaxExemptionsCommand.ts +++ b/clients/client-taxsettings/src/commands/ListTaxExemptionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTaxExemptionsRequest, ListTaxExemptionsResponse } from "../models/models_0"; +import type { ListTaxExemptionsRequest, ListTaxExemptionsResponse } from "../models/models_0"; import { ListTaxExemptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/ListTaxRegistrationsCommand.ts b/clients/client-taxsettings/src/commands/ListTaxRegistrationsCommand.ts index edf34d3cbf27e..7dd563130dc82 100644 --- a/clients/client-taxsettings/src/commands/ListTaxRegistrationsCommand.ts +++ b/clients/client-taxsettings/src/commands/ListTaxRegistrationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTaxRegistrationsRequest, ListTaxRegistrationsResponse } from "../models/models_0"; +import type { ListTaxRegistrationsRequest, ListTaxRegistrationsResponse } from "../models/models_0"; import { ListTaxRegistrations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/PutSupplementalTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/PutSupplementalTaxRegistrationCommand.ts index 697d245d80092..2ac0f058d9b7f 100644 --- a/clients/client-taxsettings/src/commands/PutSupplementalTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/PutSupplementalTaxRegistrationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSupplementalTaxRegistrationRequest, PutSupplementalTaxRegistrationResponse } from "../models/models_0"; +import type { PutSupplementalTaxRegistrationRequest, PutSupplementalTaxRegistrationResponse } from "../models/models_0"; import { PutSupplementalTaxRegistration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/PutTaxExemptionCommand.ts b/clients/client-taxsettings/src/commands/PutTaxExemptionCommand.ts index ff4dc830ba51a..42bd09f4b7658 100644 --- a/clients/client-taxsettings/src/commands/PutTaxExemptionCommand.ts +++ b/clients/client-taxsettings/src/commands/PutTaxExemptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTaxExemptionRequest, PutTaxExemptionResponse } from "../models/models_0"; +import type { PutTaxExemptionRequest, PutTaxExemptionResponse } from "../models/models_0"; import { PutTaxExemption } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/PutTaxInheritanceCommand.ts b/clients/client-taxsettings/src/commands/PutTaxInheritanceCommand.ts index 8d051ede7c46d..b4d6271b4fb6e 100644 --- a/clients/client-taxsettings/src/commands/PutTaxInheritanceCommand.ts +++ b/clients/client-taxsettings/src/commands/PutTaxInheritanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTaxInheritanceRequest, PutTaxInheritanceResponse } from "../models/models_0"; +import type { PutTaxInheritanceRequest, PutTaxInheritanceResponse } from "../models/models_0"; import { PutTaxInheritance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/commands/PutTaxRegistrationCommand.ts b/clients/client-taxsettings/src/commands/PutTaxRegistrationCommand.ts index 9109f2a28deb9..67088bd8505d2 100644 --- a/clients/client-taxsettings/src/commands/PutTaxRegistrationCommand.ts +++ b/clients/client-taxsettings/src/commands/PutTaxRegistrationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTaxRegistrationRequest, PutTaxRegistrationResponse } from "../models/models_0"; +import type { PutTaxRegistrationRequest, PutTaxRegistrationResponse } from "../models/models_0"; import { PutTaxRegistration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig } from "../TaxSettingsClient"; /** * @public diff --git a/clients/client-taxsettings/src/endpoint/EndpointParameters.ts b/clients/client-taxsettings/src/endpoint/EndpointParameters.ts index 867705089c7d3..7952127d53dfe 100644 --- a/clients/client-taxsettings/src/endpoint/EndpointParameters.ts +++ b/clients/client-taxsettings/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-taxsettings/src/endpoint/endpointResolver.ts b/clients/client-taxsettings/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-taxsettings/src/endpoint/endpointResolver.ts +++ b/clients/client-taxsettings/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-taxsettings/src/extensionConfiguration.ts b/clients/client-taxsettings/src/extensionConfiguration.ts index de0d5c41b62b5..96d390fb39b20 100644 --- a/clients/client-taxsettings/src/extensionConfiguration.ts +++ b/clients/client-taxsettings/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-taxsettings/src/models/TaxSettingsServiceException.ts b/clients/client-taxsettings/src/models/TaxSettingsServiceException.ts index 94d15d89cac2e..234662dab0420 100644 --- a/clients/client-taxsettings/src/models/TaxSettingsServiceException.ts +++ b/clients/client-taxsettings/src/models/TaxSettingsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-taxsettings/src/models/errors.ts b/clients/client-taxsettings/src/models/errors.ts index 6f94611fa6fac..874095ff7a5af 100644 --- a/clients/client-taxsettings/src/models/errors.ts +++ b/clients/client-taxsettings/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionErrorCode } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-taxsettings/src/pagination/Interfaces.ts b/clients/client-taxsettings/src/pagination/Interfaces.ts index ee589b64dc0a4..0b8659f95bb9e 100644 --- a/clients/client-taxsettings/src/pagination/Interfaces.ts +++ b/clients/client-taxsettings/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TaxSettingsClient } from "../TaxSettingsClient"; diff --git a/clients/client-taxsettings/src/pagination/ListSupplementalTaxRegistrationsPaginator.ts b/clients/client-taxsettings/src/pagination/ListSupplementalTaxRegistrationsPaginator.ts index 37c94196b9ae2..b2dd4115d8c9d 100644 --- a/clients/client-taxsettings/src/pagination/ListSupplementalTaxRegistrationsPaginator.ts +++ b/clients/client-taxsettings/src/pagination/ListSupplementalTaxRegistrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSupplementalTaxRegistrationsCommand, diff --git a/clients/client-taxsettings/src/pagination/ListTaxExemptionsPaginator.ts b/clients/client-taxsettings/src/pagination/ListTaxExemptionsPaginator.ts index 917b52f3584c0..6226ab5931549 100644 --- a/clients/client-taxsettings/src/pagination/ListTaxExemptionsPaginator.ts +++ b/clients/client-taxsettings/src/pagination/ListTaxExemptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTaxExemptionsCommand, diff --git a/clients/client-taxsettings/src/pagination/ListTaxRegistrationsPaginator.ts b/clients/client-taxsettings/src/pagination/ListTaxRegistrationsPaginator.ts index 2aedbb05b6e8c..f0f55bebfc77f 100644 --- a/clients/client-taxsettings/src/pagination/ListTaxRegistrationsPaginator.ts +++ b/clients/client-taxsettings/src/pagination/ListTaxRegistrationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTaxRegistrationsCommand, diff --git a/clients/client-taxsettings/src/runtimeConfig.browser.ts b/clients/client-taxsettings/src/runtimeConfig.browser.ts index e9c663c86b432..064b87a746ac6 100644 --- a/clients/client-taxsettings/src/runtimeConfig.browser.ts +++ b/clients/client-taxsettings/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TaxSettingsClientConfig } from "./TaxSettingsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TaxSettingsClientConfig } from "./TaxSettingsClient"; /** * @internal diff --git a/clients/client-taxsettings/src/runtimeConfig.native.ts b/clients/client-taxsettings/src/runtimeConfig.native.ts index aee0a9ca9ec0b..1787c6776eb52 100644 --- a/clients/client-taxsettings/src/runtimeConfig.native.ts +++ b/clients/client-taxsettings/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TaxSettingsClientConfig } from "./TaxSettingsClient"; +import type { TaxSettingsClientConfig } from "./TaxSettingsClient"; /** * @internal diff --git a/clients/client-taxsettings/src/runtimeConfig.shared.ts b/clients/client-taxsettings/src/runtimeConfig.shared.ts index 408b40c956170..6a983b713459c 100644 --- a/clients/client-taxsettings/src/runtimeConfig.shared.ts +++ b/clients/client-taxsettings/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTaxSettingsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TaxSettingsClientConfig } from "./TaxSettingsClient"; +import type { TaxSettingsClientConfig } from "./TaxSettingsClient"; /** * @internal diff --git a/clients/client-taxsettings/src/runtimeConfig.ts b/clients/client-taxsettings/src/runtimeConfig.ts index cf974fb95e941..641a275cfeb65 100644 --- a/clients/client-taxsettings/src/runtimeConfig.ts +++ b/clients/client-taxsettings/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TaxSettingsClientConfig } from "./TaxSettingsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TaxSettingsClientConfig } from "./TaxSettingsClient"; /** * @internal diff --git a/clients/client-taxsettings/src/runtimeExtensions.ts b/clients/client-taxsettings/src/runtimeExtensions.ts index 59626ce31ab53..2789e611d6184 100644 --- a/clients/client-taxsettings/src/runtimeExtensions.ts +++ b/clients/client-taxsettings/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TaxSettingsExtensionConfiguration } from "./extensionConfiguration"; +import type { TaxSettingsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-taxsettings/src/schemas/schemas_0.ts b/clients/client-taxsettings/src/schemas/schemas_0.ts index 18eed4ad16c52..9a4558bb82497 100644 --- a/clients/client-taxsettings/src/schemas/schemas_0.ts +++ b/clients/client-taxsettings/src/schemas/schemas_0.ts @@ -264,7 +264,7 @@ const n0 = "com.amazonaws.taxsettings"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-textract/package.json b/clients/client-textract/package.json index 4bef299c85ccf..7c2c39cbc538f 100644 --- a/clients/client-textract/package.json +++ b/clients/client-textract/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-textract/src/Textract.ts b/clients/client-textract/src/Textract.ts index 783562b3ccbd9..fe3cedd7a5268 100644 --- a/clients/client-textract/src/Textract.ts +++ b/clients/client-textract/src/Textract.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AnalyzeDocumentCommand, @@ -115,7 +115,7 @@ import { UpdateAdapterCommandInput, UpdateAdapterCommandOutput, } from "./commands/UpdateAdapterCommand"; -import { TextractClient, TextractClientConfig } from "./TextractClient"; +import { TextractClient } from "./TextractClient"; const commands = { AnalyzeDocumentCommand, diff --git a/clients/client-textract/src/TextractClient.ts b/clients/client-textract/src/TextractClient.ts index a56624a4b9312..e8f688c8d8c20 100644 --- a/clients/client-textract/src/TextractClient.ts +++ b/clients/client-textract/src/TextractClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTextractHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AnalyzeDocumentCommandInput, AnalyzeDocumentCommandOutput } from "./commands/AnalyzeDocumentCommand"; @@ -122,7 +131,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-textract/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-textract/src/auth/httpAuthExtensionConfiguration.ts index fa5482c031aef..0fef2d2f4dedc 100644 --- a/clients/client-textract/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-textract/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TextractHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TextractHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-textract/src/auth/httpAuthSchemeProvider.ts b/clients/client-textract/src/auth/httpAuthSchemeProvider.ts index 59b8a36213a0e..1ae013d126086 100644 --- a/clients/client-textract/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-textract/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TextractClientConfig, TextractClientResolvedConfig } from "../TextractClient"; +import { type TextractClientResolvedConfig, TextractClientConfig } from "../TextractClient"; /** * @internal diff --git a/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts b/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts index 53e60513bf173..3162ead7fde97 100644 --- a/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts +++ b/clients/client-textract/src/commands/AnalyzeDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AnalyzeDocumentRequest, AnalyzeDocumentResponse } from "../models/models_0"; +import type { AnalyzeDocumentRequest, AnalyzeDocumentResponse } from "../models/models_0"; import { AnalyzeDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/AnalyzeExpenseCommand.ts b/clients/client-textract/src/commands/AnalyzeExpenseCommand.ts index 4343e7d92aa6a..6e9b73c78b5d8 100644 --- a/clients/client-textract/src/commands/AnalyzeExpenseCommand.ts +++ b/clients/client-textract/src/commands/AnalyzeExpenseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AnalyzeExpenseRequest, AnalyzeExpenseResponse } from "../models/models_0"; +import type { AnalyzeExpenseRequest, AnalyzeExpenseResponse } from "../models/models_0"; import { AnalyzeExpense } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/AnalyzeIDCommand.ts b/clients/client-textract/src/commands/AnalyzeIDCommand.ts index b5542a016dfef..98d12540734f0 100644 --- a/clients/client-textract/src/commands/AnalyzeIDCommand.ts +++ b/clients/client-textract/src/commands/AnalyzeIDCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AnalyzeIDRequest, AnalyzeIDResponse } from "../models/models_0"; +import type { AnalyzeIDRequest, AnalyzeIDResponse } from "../models/models_0"; import { AnalyzeID } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/CreateAdapterCommand.ts b/clients/client-textract/src/commands/CreateAdapterCommand.ts index 7d6353e0a57b9..c81cc8c1c363c 100644 --- a/clients/client-textract/src/commands/CreateAdapterCommand.ts +++ b/clients/client-textract/src/commands/CreateAdapterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAdapterRequest, CreateAdapterResponse } from "../models/models_0"; +import type { CreateAdapterRequest, CreateAdapterResponse } from "../models/models_0"; import { CreateAdapter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts b/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts index a8bb0875eddc7..5b6d407f5e89f 100644 --- a/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts +++ b/clients/client-textract/src/commands/CreateAdapterVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAdapterVersionRequest, CreateAdapterVersionResponse } from "../models/models_0"; +import type { CreateAdapterVersionRequest, CreateAdapterVersionResponse } from "../models/models_0"; import { CreateAdapterVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/DeleteAdapterCommand.ts b/clients/client-textract/src/commands/DeleteAdapterCommand.ts index 5bda1f4b22fa8..999b7957ad49f 100644 --- a/clients/client-textract/src/commands/DeleteAdapterCommand.ts +++ b/clients/client-textract/src/commands/DeleteAdapterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAdapterRequest, DeleteAdapterResponse } from "../models/models_0"; +import type { DeleteAdapterRequest, DeleteAdapterResponse } from "../models/models_0"; import { DeleteAdapter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts b/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts index c1a6b4f2e9478..51e4901845d04 100644 --- a/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts +++ b/clients/client-textract/src/commands/DeleteAdapterVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAdapterVersionRequest, DeleteAdapterVersionResponse } from "../models/models_0"; +import type { DeleteAdapterVersionRequest, DeleteAdapterVersionResponse } from "../models/models_0"; import { DeleteAdapterVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/DetectDocumentTextCommand.ts b/clients/client-textract/src/commands/DetectDocumentTextCommand.ts index 6bbbd75307f08..6490d53cedb94 100644 --- a/clients/client-textract/src/commands/DetectDocumentTextCommand.ts +++ b/clients/client-textract/src/commands/DetectDocumentTextCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DetectDocumentTextRequest, DetectDocumentTextResponse } from "../models/models_0"; +import type { DetectDocumentTextRequest, DetectDocumentTextResponse } from "../models/models_0"; import { DetectDocumentText } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/GetAdapterCommand.ts b/clients/client-textract/src/commands/GetAdapterCommand.ts index 98a18ce1dc19f..eee8670678592 100644 --- a/clients/client-textract/src/commands/GetAdapterCommand.ts +++ b/clients/client-textract/src/commands/GetAdapterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAdapterRequest, GetAdapterResponse } from "../models/models_0"; +import type { GetAdapterRequest, GetAdapterResponse } from "../models/models_0"; import { GetAdapter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/GetAdapterVersionCommand.ts b/clients/client-textract/src/commands/GetAdapterVersionCommand.ts index 4a0b388852869..31c7292beadea 100644 --- a/clients/client-textract/src/commands/GetAdapterVersionCommand.ts +++ b/clients/client-textract/src/commands/GetAdapterVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAdapterVersionRequest, GetAdapterVersionResponse } from "../models/models_0"; +import type { GetAdapterVersionRequest, GetAdapterVersionResponse } from "../models/models_0"; import { GetAdapterVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/GetDocumentAnalysisCommand.ts b/clients/client-textract/src/commands/GetDocumentAnalysisCommand.ts index 4b741c525bf03..a98975f60bbce 100644 --- a/clients/client-textract/src/commands/GetDocumentAnalysisCommand.ts +++ b/clients/client-textract/src/commands/GetDocumentAnalysisCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDocumentAnalysisRequest, GetDocumentAnalysisResponse } from "../models/models_0"; +import type { GetDocumentAnalysisRequest, GetDocumentAnalysisResponse } from "../models/models_0"; import { GetDocumentAnalysis } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/GetDocumentTextDetectionCommand.ts b/clients/client-textract/src/commands/GetDocumentTextDetectionCommand.ts index 63e26f719f0a3..dcdcd1c55fd5b 100644 --- a/clients/client-textract/src/commands/GetDocumentTextDetectionCommand.ts +++ b/clients/client-textract/src/commands/GetDocumentTextDetectionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDocumentTextDetectionRequest, GetDocumentTextDetectionResponse } from "../models/models_0"; +import type { GetDocumentTextDetectionRequest, GetDocumentTextDetectionResponse } from "../models/models_0"; import { GetDocumentTextDetection } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/GetExpenseAnalysisCommand.ts b/clients/client-textract/src/commands/GetExpenseAnalysisCommand.ts index 70e5e8c5e2f6b..5d6d1c65bc215 100644 --- a/clients/client-textract/src/commands/GetExpenseAnalysisCommand.ts +++ b/clients/client-textract/src/commands/GetExpenseAnalysisCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetExpenseAnalysisRequest, GetExpenseAnalysisResponse } from "../models/models_0"; +import type { GetExpenseAnalysisRequest, GetExpenseAnalysisResponse } from "../models/models_0"; import { GetExpenseAnalysis } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/GetLendingAnalysisCommand.ts b/clients/client-textract/src/commands/GetLendingAnalysisCommand.ts index b0c18cfcdf2ef..d6e2067acf481 100644 --- a/clients/client-textract/src/commands/GetLendingAnalysisCommand.ts +++ b/clients/client-textract/src/commands/GetLendingAnalysisCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLendingAnalysisRequest, GetLendingAnalysisResponse } from "../models/models_0"; +import type { GetLendingAnalysisRequest, GetLendingAnalysisResponse } from "../models/models_0"; import { GetLendingAnalysis } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/GetLendingAnalysisSummaryCommand.ts b/clients/client-textract/src/commands/GetLendingAnalysisSummaryCommand.ts index 5f6417c8fd8c6..2ea50e1a10d9b 100644 --- a/clients/client-textract/src/commands/GetLendingAnalysisSummaryCommand.ts +++ b/clients/client-textract/src/commands/GetLendingAnalysisSummaryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLendingAnalysisSummaryRequest, GetLendingAnalysisSummaryResponse } from "../models/models_0"; +import type { GetLendingAnalysisSummaryRequest, GetLendingAnalysisSummaryResponse } from "../models/models_0"; import { GetLendingAnalysisSummary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts b/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts index 144627ae1ae9a..85c5f7398fb21 100644 --- a/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts +++ b/clients/client-textract/src/commands/ListAdapterVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAdapterVersionsRequest, ListAdapterVersionsResponse } from "../models/models_0"; +import type { ListAdapterVersionsRequest, ListAdapterVersionsResponse } from "../models/models_0"; import { ListAdapterVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/ListAdaptersCommand.ts b/clients/client-textract/src/commands/ListAdaptersCommand.ts index 9f5ec4f0ec3bb..0bcc70161a19f 100644 --- a/clients/client-textract/src/commands/ListAdaptersCommand.ts +++ b/clients/client-textract/src/commands/ListAdaptersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAdaptersRequest, ListAdaptersResponse } from "../models/models_0"; +import type { ListAdaptersRequest, ListAdaptersResponse } from "../models/models_0"; import { ListAdapters } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/ListTagsForResourceCommand.ts b/clients/client-textract/src/commands/ListTagsForResourceCommand.ts index 34b0c1c4b273f..63352ec5e4b9c 100644 --- a/clients/client-textract/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-textract/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts b/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts index 0ba8852344b80..20f84d6c06b2a 100644 --- a/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts +++ b/clients/client-textract/src/commands/StartDocumentAnalysisCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDocumentAnalysisRequest, StartDocumentAnalysisResponse } from "../models/models_0"; +import type { StartDocumentAnalysisRequest, StartDocumentAnalysisResponse } from "../models/models_0"; import { StartDocumentAnalysis } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/StartDocumentTextDetectionCommand.ts b/clients/client-textract/src/commands/StartDocumentTextDetectionCommand.ts index 44926adee9eee..6131a2fe9868c 100644 --- a/clients/client-textract/src/commands/StartDocumentTextDetectionCommand.ts +++ b/clients/client-textract/src/commands/StartDocumentTextDetectionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDocumentTextDetectionRequest, StartDocumentTextDetectionResponse } from "../models/models_0"; +import type { StartDocumentTextDetectionRequest, StartDocumentTextDetectionResponse } from "../models/models_0"; import { StartDocumentTextDetection } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/StartExpenseAnalysisCommand.ts b/clients/client-textract/src/commands/StartExpenseAnalysisCommand.ts index 0cc4ad6118e1c..4c8dd40eed6d9 100644 --- a/clients/client-textract/src/commands/StartExpenseAnalysisCommand.ts +++ b/clients/client-textract/src/commands/StartExpenseAnalysisCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartExpenseAnalysisRequest, StartExpenseAnalysisResponse } from "../models/models_0"; +import type { StartExpenseAnalysisRequest, StartExpenseAnalysisResponse } from "../models/models_0"; import { StartExpenseAnalysis } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/StartLendingAnalysisCommand.ts b/clients/client-textract/src/commands/StartLendingAnalysisCommand.ts index c763b829e2f99..6f90daf2fd19b 100644 --- a/clients/client-textract/src/commands/StartLendingAnalysisCommand.ts +++ b/clients/client-textract/src/commands/StartLendingAnalysisCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartLendingAnalysisRequest, StartLendingAnalysisResponse } from "../models/models_0"; +import type { StartLendingAnalysisRequest, StartLendingAnalysisResponse } from "../models/models_0"; import { StartLendingAnalysis } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/TagResourceCommand.ts b/clients/client-textract/src/commands/TagResourceCommand.ts index f77d50cdd6bdc..045e50860b3bd 100644 --- a/clients/client-textract/src/commands/TagResourceCommand.ts +++ b/clients/client-textract/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/UntagResourceCommand.ts b/clients/client-textract/src/commands/UntagResourceCommand.ts index f643383cee5e4..0596f13dbce1d 100644 --- a/clients/client-textract/src/commands/UntagResourceCommand.ts +++ b/clients/client-textract/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/commands/UpdateAdapterCommand.ts b/clients/client-textract/src/commands/UpdateAdapterCommand.ts index bdf17814aaa6a..a989bbe0b0e37 100644 --- a/clients/client-textract/src/commands/UpdateAdapterCommand.ts +++ b/clients/client-textract/src/commands/UpdateAdapterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAdapterRequest, UpdateAdapterResponse } from "../models/models_0"; +import type { UpdateAdapterRequest, UpdateAdapterResponse } from "../models/models_0"; import { UpdateAdapter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TextractClientResolvedConfig } from "../TextractClient"; /** * @public diff --git a/clients/client-textract/src/endpoint/EndpointParameters.ts b/clients/client-textract/src/endpoint/EndpointParameters.ts index c464f2153d5f9..2018094595ceb 100644 --- a/clients/client-textract/src/endpoint/EndpointParameters.ts +++ b/clients/client-textract/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-textract/src/endpoint/endpointResolver.ts b/clients/client-textract/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-textract/src/endpoint/endpointResolver.ts +++ b/clients/client-textract/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-textract/src/extensionConfiguration.ts b/clients/client-textract/src/extensionConfiguration.ts index 78be0afff10d6..0e602b91587a7 100644 --- a/clients/client-textract/src/extensionConfiguration.ts +++ b/clients/client-textract/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-textract/src/models/TextractServiceException.ts b/clients/client-textract/src/models/TextractServiceException.ts index b89039a8d4b5c..5d371f4bb15a9 100644 --- a/clients/client-textract/src/models/TextractServiceException.ts +++ b/clients/client-textract/src/models/TextractServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-textract/src/models/errors.ts b/clients/client-textract/src/models/errors.ts index 639136d63f2d7..877b133bb25a1 100644 --- a/clients/client-textract/src/models/errors.ts +++ b/clients/client-textract/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { TextractServiceException as __BaseException } from "./TextractServiceException"; diff --git a/clients/client-textract/src/pagination/Interfaces.ts b/clients/client-textract/src/pagination/Interfaces.ts index c3a8ef294166e..91e4170023c16 100644 --- a/clients/client-textract/src/pagination/Interfaces.ts +++ b/clients/client-textract/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TextractClient } from "../TextractClient"; diff --git a/clients/client-textract/src/pagination/ListAdapterVersionsPaginator.ts b/clients/client-textract/src/pagination/ListAdapterVersionsPaginator.ts index d81150b04c08d..d7b45183de2b7 100644 --- a/clients/client-textract/src/pagination/ListAdapterVersionsPaginator.ts +++ b/clients/client-textract/src/pagination/ListAdapterVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAdapterVersionsCommand, diff --git a/clients/client-textract/src/pagination/ListAdaptersPaginator.ts b/clients/client-textract/src/pagination/ListAdaptersPaginator.ts index 92fad6d4aac62..232170f3f123e 100644 --- a/clients/client-textract/src/pagination/ListAdaptersPaginator.ts +++ b/clients/client-textract/src/pagination/ListAdaptersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAdaptersCommand, diff --git a/clients/client-textract/src/runtimeConfig.browser.ts b/clients/client-textract/src/runtimeConfig.browser.ts index 5ad5adafd8b00..424e6e4d8db97 100644 --- a/clients/client-textract/src/runtimeConfig.browser.ts +++ b/clients/client-textract/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TextractClientConfig } from "./TextractClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TextractClientConfig } from "./TextractClient"; /** * @internal diff --git a/clients/client-textract/src/runtimeConfig.native.ts b/clients/client-textract/src/runtimeConfig.native.ts index 27a576172342c..fa4e4fa322313 100644 --- a/clients/client-textract/src/runtimeConfig.native.ts +++ b/clients/client-textract/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TextractClientConfig } from "./TextractClient"; +import type { TextractClientConfig } from "./TextractClient"; /** * @internal diff --git a/clients/client-textract/src/runtimeConfig.shared.ts b/clients/client-textract/src/runtimeConfig.shared.ts index 75d10b774cece..f5fbaa680accd 100644 --- a/clients/client-textract/src/runtimeConfig.shared.ts +++ b/clients/client-textract/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTextractHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TextractClientConfig } from "./TextractClient"; +import type { TextractClientConfig } from "./TextractClient"; /** * @internal diff --git a/clients/client-textract/src/runtimeConfig.ts b/clients/client-textract/src/runtimeConfig.ts index a0cd32489d665..f857192be2aa5 100644 --- a/clients/client-textract/src/runtimeConfig.ts +++ b/clients/client-textract/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TextractClientConfig } from "./TextractClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TextractClientConfig } from "./TextractClient"; /** * @internal diff --git a/clients/client-textract/src/runtimeExtensions.ts b/clients/client-textract/src/runtimeExtensions.ts index d8938ed8556d8..92b63c1599025 100644 --- a/clients/client-textract/src/runtimeExtensions.ts +++ b/clients/client-textract/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TextractExtensionConfiguration } from "./extensionConfiguration"; +import type { TextractExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-textract/src/schemas/schemas_0.ts b/clients/client-textract/src/schemas/schemas_0.ts index fad7b05904956..a0f10bb40de21 100644 --- a/clients/client-textract/src/schemas/schemas_0.ts +++ b/clients/client-textract/src/schemas/schemas_0.ts @@ -292,7 +292,7 @@ const n0 = "com.amazonaws.textract"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-timestream-influxdb/package.json b/clients/client-timestream-influxdb/package.json index d48d63a0890d0..365c1ddcc8836 100644 --- a/clients/client-timestream-influxdb/package.json +++ b/clients/client-timestream-influxdb/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-timestream-influxdb/src/TimestreamInfluxDB.ts b/clients/client-timestream-influxdb/src/TimestreamInfluxDB.ts index 01bd042dc6097..59ef1e890c5d5 100644 --- a/clients/client-timestream-influxdb/src/TimestreamInfluxDB.ts +++ b/clients/client-timestream-influxdb/src/TimestreamInfluxDB.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateDbClusterCommand, @@ -83,7 +83,7 @@ import { UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput, } from "./commands/UpdateDbInstanceCommand"; -import { TimestreamInfluxDBClient, TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient"; +import { TimestreamInfluxDBClient } from "./TimestreamInfluxDBClient"; const commands = { CreateDbClusterCommand, diff --git a/clients/client-timestream-influxdb/src/TimestreamInfluxDBClient.ts b/clients/client-timestream-influxdb/src/TimestreamInfluxDBClient.ts index e696c522b6c4f..073e093ac7d49 100644 --- a/clients/client-timestream-influxdb/src/TimestreamInfluxDBClient.ts +++ b/clients/client-timestream-influxdb/src/TimestreamInfluxDBClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTimestreamInfluxDBHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateDbClusterCommandInput, CreateDbClusterCommandOutput } from "./commands/CreateDbClusterCommand"; @@ -96,7 +105,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-timestream-influxdb/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-timestream-influxdb/src/auth/httpAuthExtensionConfiguration.ts index b9a2847a031c1..2f1bc127cc486 100644 --- a/clients/client-timestream-influxdb/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-timestream-influxdb/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TimestreamInfluxDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TimestreamInfluxDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-timestream-influxdb/src/auth/httpAuthSchemeProvider.ts b/clients/client-timestream-influxdb/src/auth/httpAuthSchemeProvider.ts index 6bcf6cf0468ac..ce4aaa05189f9 100644 --- a/clients/client-timestream-influxdb/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-timestream-influxdb/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TimestreamInfluxDBClientConfig, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient"; +import { + type TimestreamInfluxDBClientResolvedConfig, + TimestreamInfluxDBClientConfig, +} from "../TimestreamInfluxDBClient"; /** * @internal diff --git a/clients/client-timestream-influxdb/src/commands/CreateDbClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/CreateDbClusterCommand.ts index 10741574b9c7e..c057c708783e0 100644 --- a/clients/client-timestream-influxdb/src/commands/CreateDbClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/CreateDbClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDbClusterInput, CreateDbClusterOutput } from "../models/models_0"; +import type { CreateDbClusterInput, CreateDbClusterOutput } from "../models/models_0"; import { CreateDbCluster } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/CreateDbInstanceCommand.ts b/clients/client-timestream-influxdb/src/commands/CreateDbInstanceCommand.ts index 0a2bca5649ca7..088469e74d368 100644 --- a/clients/client-timestream-influxdb/src/commands/CreateDbInstanceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/CreateDbInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDbInstanceInput, CreateDbInstanceOutput } from "../models/models_0"; +import type { CreateDbInstanceInput, CreateDbInstanceOutput } from "../models/models_0"; import { CreateDbInstance } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/CreateDbParameterGroupCommand.ts b/clients/client-timestream-influxdb/src/commands/CreateDbParameterGroupCommand.ts index 90dd95c516c98..07b78bcfa9a00 100644 --- a/clients/client-timestream-influxdb/src/commands/CreateDbParameterGroupCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/CreateDbParameterGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDbParameterGroupInput, CreateDbParameterGroupOutput } from "../models/models_0"; +import type { CreateDbParameterGroupInput, CreateDbParameterGroupOutput } from "../models/models_0"; import { CreateDbParameterGroup } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/DeleteDbClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/DeleteDbClusterCommand.ts index 3d003232c34b5..154d97f880c59 100644 --- a/clients/client-timestream-influxdb/src/commands/DeleteDbClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/DeleteDbClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDbClusterInput, DeleteDbClusterOutput } from "../models/models_0"; +import type { DeleteDbClusterInput, DeleteDbClusterOutput } from "../models/models_0"; import { DeleteDbCluster } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/DeleteDbInstanceCommand.ts b/clients/client-timestream-influxdb/src/commands/DeleteDbInstanceCommand.ts index ed673681e0f0a..7c94652a11fc9 100644 --- a/clients/client-timestream-influxdb/src/commands/DeleteDbInstanceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/DeleteDbInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDbInstanceInput, DeleteDbInstanceOutput } from "../models/models_0"; +import type { DeleteDbInstanceInput, DeleteDbInstanceOutput } from "../models/models_0"; import { DeleteDbInstance } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/GetDbClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/GetDbClusterCommand.ts index 04e8273762eb8..6c85ed931f791 100644 --- a/clients/client-timestream-influxdb/src/commands/GetDbClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/GetDbClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDbClusterInput, GetDbClusterOutput } from "../models/models_0"; +import type { GetDbClusterInput, GetDbClusterOutput } from "../models/models_0"; import { GetDbCluster } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/GetDbInstanceCommand.ts b/clients/client-timestream-influxdb/src/commands/GetDbInstanceCommand.ts index d9254a01eb4c8..5490acd819ab9 100644 --- a/clients/client-timestream-influxdb/src/commands/GetDbInstanceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/GetDbInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDbInstanceInput, GetDbInstanceOutput } from "../models/models_0"; +import type { GetDbInstanceInput, GetDbInstanceOutput } from "../models/models_0"; import { GetDbInstance } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/GetDbParameterGroupCommand.ts b/clients/client-timestream-influxdb/src/commands/GetDbParameterGroupCommand.ts index 1e7b121d283fd..8723b0666f2e8 100644 --- a/clients/client-timestream-influxdb/src/commands/GetDbParameterGroupCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/GetDbParameterGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDbParameterGroupInput, GetDbParameterGroupOutput } from "../models/models_0"; +import type { GetDbParameterGroupInput, GetDbParameterGroupOutput } from "../models/models_0"; import { GetDbParameterGroup } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/ListDbClustersCommand.ts b/clients/client-timestream-influxdb/src/commands/ListDbClustersCommand.ts index 2e26a5eaf228a..a02840e109857 100644 --- a/clients/client-timestream-influxdb/src/commands/ListDbClustersCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListDbClustersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDbClustersInput, ListDbClustersOutput } from "../models/models_0"; +import type { ListDbClustersInput, ListDbClustersOutput } from "../models/models_0"; import { ListDbClusters } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/ListDbInstancesCommand.ts b/clients/client-timestream-influxdb/src/commands/ListDbInstancesCommand.ts index 08b939d020d82..7e2fdcafd35cc 100644 --- a/clients/client-timestream-influxdb/src/commands/ListDbInstancesCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListDbInstancesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDbInstancesInput, ListDbInstancesOutput } from "../models/models_0"; +import type { ListDbInstancesInput, ListDbInstancesOutput } from "../models/models_0"; import { ListDbInstances } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/ListDbInstancesForClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/ListDbInstancesForClusterCommand.ts index ff36bb560cd91..f36f6ee488eae 100644 --- a/clients/client-timestream-influxdb/src/commands/ListDbInstancesForClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListDbInstancesForClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDbInstancesForClusterInput, ListDbInstancesForClusterOutput } from "../models/models_0"; +import type { ListDbInstancesForClusterInput, ListDbInstancesForClusterOutput } from "../models/models_0"; import { ListDbInstancesForCluster } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/ListDbParameterGroupsCommand.ts b/clients/client-timestream-influxdb/src/commands/ListDbParameterGroupsCommand.ts index 87db7e640aa8d..95d7ef57e1cd4 100644 --- a/clients/client-timestream-influxdb/src/commands/ListDbParameterGroupsCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListDbParameterGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDbParameterGroupsInput, ListDbParameterGroupsOutput } from "../models/models_0"; +import type { ListDbParameterGroupsInput, ListDbParameterGroupsOutput } from "../models/models_0"; import { ListDbParameterGroups } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/ListTagsForResourceCommand.ts b/clients/client-timestream-influxdb/src/commands/ListTagsForResourceCommand.ts index d389b30bb8d3a..d69dc3cdd1b9e 100644 --- a/clients/client-timestream-influxdb/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/TagResourceCommand.ts b/clients/client-timestream-influxdb/src/commands/TagResourceCommand.ts index 0465b884445d5..511b89dc9e4fb 100644 --- a/clients/client-timestream-influxdb/src/commands/TagResourceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/UntagResourceCommand.ts b/clients/client-timestream-influxdb/src/commands/UntagResourceCommand.ts index c91ff144e7182..a2038c711c212 100644 --- a/clients/client-timestream-influxdb/src/commands/UntagResourceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/UpdateDbClusterCommand.ts b/clients/client-timestream-influxdb/src/commands/UpdateDbClusterCommand.ts index 742c816404d05..d6769bd75727d 100644 --- a/clients/client-timestream-influxdb/src/commands/UpdateDbClusterCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/UpdateDbClusterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDbClusterInput, UpdateDbClusterOutput } from "../models/models_0"; +import type { UpdateDbClusterInput, UpdateDbClusterOutput } from "../models/models_0"; import { UpdateDbCluster } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/commands/UpdateDbInstanceCommand.ts b/clients/client-timestream-influxdb/src/commands/UpdateDbInstanceCommand.ts index 7d47b342a5080..c09857449449a 100644 --- a/clients/client-timestream-influxdb/src/commands/UpdateDbInstanceCommand.ts +++ b/clients/client-timestream-influxdb/src/commands/UpdateDbInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDbInstanceInput, UpdateDbInstanceOutput } from "../models/models_0"; +import type { UpdateDbInstanceInput, UpdateDbInstanceOutput } from "../models/models_0"; import { UpdateDbInstance } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig, diff --git a/clients/client-timestream-influxdb/src/endpoint/EndpointParameters.ts b/clients/client-timestream-influxdb/src/endpoint/EndpointParameters.ts index b023b6d76c39a..593d48ad6bba0 100644 --- a/clients/client-timestream-influxdb/src/endpoint/EndpointParameters.ts +++ b/clients/client-timestream-influxdb/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-timestream-influxdb/src/endpoint/endpointResolver.ts b/clients/client-timestream-influxdb/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-timestream-influxdb/src/endpoint/endpointResolver.ts +++ b/clients/client-timestream-influxdb/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-timestream-influxdb/src/extensionConfiguration.ts b/clients/client-timestream-influxdb/src/extensionConfiguration.ts index 1c219fdf81397..34aa60da8ab91 100644 --- a/clients/client-timestream-influxdb/src/extensionConfiguration.ts +++ b/clients/client-timestream-influxdb/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-timestream-influxdb/src/models/TimestreamInfluxDBServiceException.ts b/clients/client-timestream-influxdb/src/models/TimestreamInfluxDBServiceException.ts index 77ac7b3ca9fbb..9a19588e5e705 100644 --- a/clients/client-timestream-influxdb/src/models/TimestreamInfluxDBServiceException.ts +++ b/clients/client-timestream-influxdb/src/models/TimestreamInfluxDBServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-timestream-influxdb/src/models/errors.ts b/clients/client-timestream-influxdb/src/models/errors.ts index 8a24fa85dbd04..de0c41a74eda7 100644 --- a/clients/client-timestream-influxdb/src/models/errors.ts +++ b/clients/client-timestream-influxdb/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { TimestreamInfluxDBServiceException as __BaseException } from "./TimestreamInfluxDBServiceException"; diff --git a/clients/client-timestream-influxdb/src/pagination/Interfaces.ts b/clients/client-timestream-influxdb/src/pagination/Interfaces.ts index 8d94aa09d4a34..9d3fb33b11caa 100644 --- a/clients/client-timestream-influxdb/src/pagination/Interfaces.ts +++ b/clients/client-timestream-influxdb/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TimestreamInfluxDBClient } from "../TimestreamInfluxDBClient"; diff --git a/clients/client-timestream-influxdb/src/pagination/ListDbClustersPaginator.ts b/clients/client-timestream-influxdb/src/pagination/ListDbClustersPaginator.ts index 817d04b60d33e..c2c67a929105b 100644 --- a/clients/client-timestream-influxdb/src/pagination/ListDbClustersPaginator.ts +++ b/clients/client-timestream-influxdb/src/pagination/ListDbClustersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDbClustersCommand, diff --git a/clients/client-timestream-influxdb/src/pagination/ListDbInstancesForClusterPaginator.ts b/clients/client-timestream-influxdb/src/pagination/ListDbInstancesForClusterPaginator.ts index cb72d5920189d..270efa37e3f86 100644 --- a/clients/client-timestream-influxdb/src/pagination/ListDbInstancesForClusterPaginator.ts +++ b/clients/client-timestream-influxdb/src/pagination/ListDbInstancesForClusterPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDbInstancesForClusterCommand, diff --git a/clients/client-timestream-influxdb/src/pagination/ListDbInstancesPaginator.ts b/clients/client-timestream-influxdb/src/pagination/ListDbInstancesPaginator.ts index 6f9235a27fdcf..c30d516751b4e 100644 --- a/clients/client-timestream-influxdb/src/pagination/ListDbInstancesPaginator.ts +++ b/clients/client-timestream-influxdb/src/pagination/ListDbInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDbInstancesCommand, diff --git a/clients/client-timestream-influxdb/src/pagination/ListDbParameterGroupsPaginator.ts b/clients/client-timestream-influxdb/src/pagination/ListDbParameterGroupsPaginator.ts index 092de1be124a4..730c23c3fb4d4 100644 --- a/clients/client-timestream-influxdb/src/pagination/ListDbParameterGroupsPaginator.ts +++ b/clients/client-timestream-influxdb/src/pagination/ListDbParameterGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDbParameterGroupsCommand, diff --git a/clients/client-timestream-influxdb/src/runtimeConfig.browser.ts b/clients/client-timestream-influxdb/src/runtimeConfig.browser.ts index d1aeef58390e3..6e05050cf646a 100644 --- a/clients/client-timestream-influxdb/src/runtimeConfig.browser.ts +++ b/clients/client-timestream-influxdb/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient"; /** * @internal diff --git a/clients/client-timestream-influxdb/src/runtimeConfig.native.ts b/clients/client-timestream-influxdb/src/runtimeConfig.native.ts index 62bc0c6ce6236..4e095addf0ed6 100644 --- a/clients/client-timestream-influxdb/src/runtimeConfig.native.ts +++ b/clients/client-timestream-influxdb/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient"; +import type { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient"; /** * @internal diff --git a/clients/client-timestream-influxdb/src/runtimeConfig.shared.ts b/clients/client-timestream-influxdb/src/runtimeConfig.shared.ts index 263a439b1e6f0..e3d43df97069c 100644 --- a/clients/client-timestream-influxdb/src/runtimeConfig.shared.ts +++ b/clients/client-timestream-influxdb/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTimestreamInfluxDBHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient"; +import type { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient"; /** * @internal diff --git a/clients/client-timestream-influxdb/src/runtimeConfig.ts b/clients/client-timestream-influxdb/src/runtimeConfig.ts index 8da73f0955099..07d1633b20a50 100644 --- a/clients/client-timestream-influxdb/src/runtimeConfig.ts +++ b/clients/client-timestream-influxdb/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient"; /** * @internal diff --git a/clients/client-timestream-influxdb/src/runtimeExtensions.ts b/clients/client-timestream-influxdb/src/runtimeExtensions.ts index c50334482a097..5f98dd3368ee7 100644 --- a/clients/client-timestream-influxdb/src/runtimeExtensions.ts +++ b/clients/client-timestream-influxdb/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TimestreamInfluxDBExtensionConfiguration } from "./extensionConfiguration"; +import type { TimestreamInfluxDBExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-timestream-influxdb/src/schemas/schemas_0.ts b/clients/client-timestream-influxdb/src/schemas/schemas_0.ts index 88abc4185b080..f376ac34d93a9 100644 --- a/clients/client-timestream-influxdb/src/schemas/schemas_0.ts +++ b/clients/client-timestream-influxdb/src/schemas/schemas_0.ts @@ -223,7 +223,7 @@ const n0 = "com.amazonaws.timestreaminfluxdb"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-timestream-query/package.json b/clients/client-timestream-query/package.json index 1305d7d953784..bc7feafc2aa62 100644 --- a/clients/client-timestream-query/package.json +++ b/clients/client-timestream-query/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-timestream-query/src/TimestreamQuery.ts b/clients/client-timestream-query/src/TimestreamQuery.ts index 8f5acbc99590b..40a8f2a90f037 100644 --- a/clients/client-timestream-query/src/TimestreamQuery.ts +++ b/clients/client-timestream-query/src/TimestreamQuery.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelQueryCommand, CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand"; import { @@ -65,7 +65,7 @@ import { UpdateScheduledQueryCommandInput, UpdateScheduledQueryCommandOutput, } from "./commands/UpdateScheduledQueryCommand"; -import { TimestreamQueryClient, TimestreamQueryClientConfig } from "./TimestreamQueryClient"; +import { TimestreamQueryClient } from "./TimestreamQueryClient"; const commands = { CancelQueryCommand, diff --git a/clients/client-timestream-query/src/TimestreamQueryClient.ts b/clients/client-timestream-query/src/TimestreamQueryClient.ts index 011cdb22fcb6e..d103b3e7672ee 100644 --- a/clients/client-timestream-query/src/TimestreamQueryClient.ts +++ b/clients/client-timestream-query/src/TimestreamQueryClient.ts @@ -1,24 +1,24 @@ // smithy-typescript generated code import { - EndpointDiscoveryInputConfig, - EndpointDiscoveryResolvedConfig, + type EndpointDiscoveryInputConfig, + type EndpointDiscoveryResolvedConfig, resolveEndpointDiscoveryConfig, } from "@aws-sdk/middleware-endpoint-discovery"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -26,40 +26,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTimestreamQueryHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand"; @@ -115,7 +124,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-timestream-query/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-timestream-query/src/auth/httpAuthExtensionConfiguration.ts index e8bff9a792128..dfc0027be6cb4 100644 --- a/clients/client-timestream-query/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-timestream-query/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TimestreamQueryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TimestreamQueryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-timestream-query/src/auth/httpAuthSchemeProvider.ts b/clients/client-timestream-query/src/auth/httpAuthSchemeProvider.ts index 5a2416b47337e..26fd526a659a2 100644 --- a/clients/client-timestream-query/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-timestream-query/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TimestreamQueryClientConfig, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import { type TimestreamQueryClientResolvedConfig, TimestreamQueryClientConfig } from "../TimestreamQueryClient"; /** * @internal diff --git a/clients/client-timestream-query/src/commands/CancelQueryCommand.ts b/clients/client-timestream-query/src/commands/CancelQueryCommand.ts index 022bd260a0b2d..99b4a46e406c8 100644 --- a/clients/client-timestream-query/src/commands/CancelQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/CancelQueryCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelQueryRequest, CancelQueryResponse } from "../models/models_0"; +import type { CancelQueryRequest, CancelQueryResponse } from "../models/models_0"; import { CancelQuery } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/CreateScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/CreateScheduledQueryCommand.ts index a935187eaf265..f9b17aa30840e 100644 --- a/clients/client-timestream-query/src/commands/CreateScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/CreateScheduledQueryCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateScheduledQueryRequest, CreateScheduledQueryResponse } from "../models/models_0"; +import type { CreateScheduledQueryRequest, CreateScheduledQueryResponse } from "../models/models_0"; import { CreateScheduledQuery } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/DeleteScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/DeleteScheduledQueryCommand.ts index 91220605a99fa..6b45f647f856b 100644 --- a/clients/client-timestream-query/src/commands/DeleteScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/DeleteScheduledQueryCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteScheduledQueryRequest } from "../models/models_0"; +import type { DeleteScheduledQueryRequest } from "../models/models_0"; import { DeleteScheduledQuery } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/DescribeAccountSettingsCommand.ts b/clients/client-timestream-query/src/commands/DescribeAccountSettingsCommand.ts index 2337a526d1782..6f35a3d17018c 100644 --- a/clients/client-timestream-query/src/commands/DescribeAccountSettingsCommand.ts +++ b/clients/client-timestream-query/src/commands/DescribeAccountSettingsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountSettingsRequest, DescribeAccountSettingsResponse } from "../models/models_0"; +import type { DescribeAccountSettingsRequest, DescribeAccountSettingsResponse } from "../models/models_0"; import { DescribeAccountSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/DescribeEndpointsCommand.ts b/clients/client-timestream-query/src/commands/DescribeEndpointsCommand.ts index 36c5767d35411..407d6b426526b 100644 --- a/clients/client-timestream-query/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-timestream-query/src/commands/DescribeEndpointsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0"; +import type { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0"; import { DescribeEndpoints } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/DescribeScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/DescribeScheduledQueryCommand.ts index 887dd2edd039f..68d0bb3f40c28 100644 --- a/clients/client-timestream-query/src/commands/DescribeScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/DescribeScheduledQueryCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeScheduledQueryRequest, DescribeScheduledQueryResponse } from "../models/models_0"; +import type { DescribeScheduledQueryRequest, DescribeScheduledQueryResponse } from "../models/models_0"; import { DescribeScheduledQuery } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/ExecuteScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/ExecuteScheduledQueryCommand.ts index 2bf5afc81cfba..39912f4063520 100644 --- a/clients/client-timestream-query/src/commands/ExecuteScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/ExecuteScheduledQueryCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExecuteScheduledQueryRequest } from "../models/models_0"; +import type { ExecuteScheduledQueryRequest } from "../models/models_0"; import { ExecuteScheduledQuery } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/ListScheduledQueriesCommand.ts b/clients/client-timestream-query/src/commands/ListScheduledQueriesCommand.ts index dd62566e60bf8..36e60d7da3842 100644 --- a/clients/client-timestream-query/src/commands/ListScheduledQueriesCommand.ts +++ b/clients/client-timestream-query/src/commands/ListScheduledQueriesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListScheduledQueriesRequest, ListScheduledQueriesResponse } from "../models/models_0"; +import type { ListScheduledQueriesRequest, ListScheduledQueriesResponse } from "../models/models_0"; import { ListScheduledQueries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/ListTagsForResourceCommand.ts b/clients/client-timestream-query/src/commands/ListTagsForResourceCommand.ts index 22a171275b826..b83c1125bbc9b 100644 --- a/clients/client-timestream-query/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-timestream-query/src/commands/ListTagsForResourceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/PrepareQueryCommand.ts b/clients/client-timestream-query/src/commands/PrepareQueryCommand.ts index 38ed9fc09c49f..252ba2eb07b47 100644 --- a/clients/client-timestream-query/src/commands/PrepareQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/PrepareQueryCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PrepareQueryRequest, PrepareQueryResponse } from "../models/models_0"; +import type { PrepareQueryRequest, PrepareQueryResponse } from "../models/models_0"; import { PrepareQuery } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/QueryCommand.ts b/clients/client-timestream-query/src/commands/QueryCommand.ts index 8496cb248cb39..6c478ebf64def 100644 --- a/clients/client-timestream-query/src/commands/QueryCommand.ts +++ b/clients/client-timestream-query/src/commands/QueryCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryRequest, QueryResponse } from "../models/models_0"; +import type { QueryRequest, QueryResponse } from "../models/models_0"; import { Query } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/TagResourceCommand.ts b/clients/client-timestream-query/src/commands/TagResourceCommand.ts index b359d4a9f40c4..12dbdea85a51f 100644 --- a/clients/client-timestream-query/src/commands/TagResourceCommand.ts +++ b/clients/client-timestream-query/src/commands/TagResourceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/UntagResourceCommand.ts b/clients/client-timestream-query/src/commands/UntagResourceCommand.ts index 3c69a9a2a4d69..e4733948dd0d9 100644 --- a/clients/client-timestream-query/src/commands/UntagResourceCommand.ts +++ b/clients/client-timestream-query/src/commands/UntagResourceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/UpdateAccountSettingsCommand.ts b/clients/client-timestream-query/src/commands/UpdateAccountSettingsCommand.ts index f11f5dabbbb29..8cb0b3639844d 100644 --- a/clients/client-timestream-query/src/commands/UpdateAccountSettingsCommand.ts +++ b/clients/client-timestream-query/src/commands/UpdateAccountSettingsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccountSettingsRequest, UpdateAccountSettingsResponse } from "../models/models_0"; +import type { UpdateAccountSettingsRequest, UpdateAccountSettingsResponse } from "../models/models_0"; import { UpdateAccountSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/commands/UpdateScheduledQueryCommand.ts b/clients/client-timestream-query/src/commands/UpdateScheduledQueryCommand.ts index 7343baacce2a1..c1865104974eb 100644 --- a/clients/client-timestream-query/src/commands/UpdateScheduledQueryCommand.ts +++ b/clients/client-timestream-query/src/commands/UpdateScheduledQueryCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateScheduledQueryRequest } from "../models/models_0"; +import type { UpdateScheduledQueryRequest } from "../models/models_0"; import { UpdateScheduledQuery } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamQueryClientResolvedConfig } from "../TimestreamQueryClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamQueryClientResolvedConfig, +} from "../TimestreamQueryClient"; /** * @public diff --git a/clients/client-timestream-query/src/endpoint/EndpointParameters.ts b/clients/client-timestream-query/src/endpoint/EndpointParameters.ts index d897ec780f1ef..a0540ea5b8185 100644 --- a/clients/client-timestream-query/src/endpoint/EndpointParameters.ts +++ b/clients/client-timestream-query/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-timestream-query/src/endpoint/endpointResolver.ts b/clients/client-timestream-query/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-timestream-query/src/endpoint/endpointResolver.ts +++ b/clients/client-timestream-query/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-timestream-query/src/extensionConfiguration.ts b/clients/client-timestream-query/src/extensionConfiguration.ts index 8c5bb16483866..2626bebb5b28f 100644 --- a/clients/client-timestream-query/src/extensionConfiguration.ts +++ b/clients/client-timestream-query/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-timestream-query/src/models/TimestreamQueryServiceException.ts b/clients/client-timestream-query/src/models/TimestreamQueryServiceException.ts index 5bc77cff0bf36..2afc37f769039 100644 --- a/clients/client-timestream-query/src/models/TimestreamQueryServiceException.ts +++ b/clients/client-timestream-query/src/models/TimestreamQueryServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-timestream-query/src/models/errors.ts b/clients/client-timestream-query/src/models/errors.ts index f9cb607a32217..3d80cece55407 100644 --- a/clients/client-timestream-query/src/models/errors.ts +++ b/clients/client-timestream-query/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { TimestreamQueryServiceException as __BaseException } from "./TimestreamQueryServiceException"; diff --git a/clients/client-timestream-query/src/pagination/Interfaces.ts b/clients/client-timestream-query/src/pagination/Interfaces.ts index 95e219b0e1d27..d3862902fce51 100644 --- a/clients/client-timestream-query/src/pagination/Interfaces.ts +++ b/clients/client-timestream-query/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TimestreamQueryClient } from "../TimestreamQueryClient"; diff --git a/clients/client-timestream-query/src/pagination/ListScheduledQueriesPaginator.ts b/clients/client-timestream-query/src/pagination/ListScheduledQueriesPaginator.ts index 2c3b91c4e255f..dee33223c3f0c 100644 --- a/clients/client-timestream-query/src/pagination/ListScheduledQueriesPaginator.ts +++ b/clients/client-timestream-query/src/pagination/ListScheduledQueriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListScheduledQueriesCommand, diff --git a/clients/client-timestream-query/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-timestream-query/src/pagination/ListTagsForResourcePaginator.ts index 984a425dd6567..4e28a97873e77 100644 --- a/clients/client-timestream-query/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-timestream-query/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-timestream-query/src/pagination/QueryPaginator.ts b/clients/client-timestream-query/src/pagination/QueryPaginator.ts index d105f11ad0600..f5f4976c3020d 100644 --- a/clients/client-timestream-query/src/pagination/QueryPaginator.ts +++ b/clients/client-timestream-query/src/pagination/QueryPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { QueryCommand, QueryCommandInput, QueryCommandOutput } from "../commands/QueryCommand"; import { TimestreamQueryClient } from "../TimestreamQueryClient"; diff --git a/clients/client-timestream-query/src/runtimeConfig.browser.ts b/clients/client-timestream-query/src/runtimeConfig.browser.ts index 0a0ee46eb2454..2505652ab1160 100644 --- a/clients/client-timestream-query/src/runtimeConfig.browser.ts +++ b/clients/client-timestream-query/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TimestreamQueryClientConfig } from "./TimestreamQueryClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TimestreamQueryClientConfig } from "./TimestreamQueryClient"; /** * @internal diff --git a/clients/client-timestream-query/src/runtimeConfig.native.ts b/clients/client-timestream-query/src/runtimeConfig.native.ts index 12d5454c7ec93..806fbe8a36931 100644 --- a/clients/client-timestream-query/src/runtimeConfig.native.ts +++ b/clients/client-timestream-query/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TimestreamQueryClientConfig } from "./TimestreamQueryClient"; +import type { TimestreamQueryClientConfig } from "./TimestreamQueryClient"; /** * @internal diff --git a/clients/client-timestream-query/src/runtimeConfig.shared.ts b/clients/client-timestream-query/src/runtimeConfig.shared.ts index dbb6a6ceddb17..cefb32a98f26b 100644 --- a/clients/client-timestream-query/src/runtimeConfig.shared.ts +++ b/clients/client-timestream-query/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTimestreamQueryHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TimestreamQueryClientConfig } from "./TimestreamQueryClient"; +import type { TimestreamQueryClientConfig } from "./TimestreamQueryClient"; /** * @internal diff --git a/clients/client-timestream-query/src/runtimeConfig.ts b/clients/client-timestream-query/src/runtimeConfig.ts index 6a3c18fb40c44..ac2f314c76554 100644 --- a/clients/client-timestream-query/src/runtimeConfig.ts +++ b/clients/client-timestream-query/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TimestreamQueryClientConfig } from "./TimestreamQueryClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TimestreamQueryClientConfig } from "./TimestreamQueryClient"; /** * @internal diff --git a/clients/client-timestream-query/src/runtimeExtensions.ts b/clients/client-timestream-query/src/runtimeExtensions.ts index 1b5b5e99bfe53..a8467979238f3 100644 --- a/clients/client-timestream-query/src/runtimeExtensions.ts +++ b/clients/client-timestream-query/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TimestreamQueryExtensionConfiguration } from "./extensionConfiguration"; +import type { TimestreamQueryExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-timestream-query/src/schemas/schemas_0.ts b/clients/client-timestream-query/src/schemas/schemas_0.ts index 08a508935da2f..97e088718161c 100644 --- a/clients/client-timestream-query/src/schemas/schemas_0.ts +++ b/clients/client-timestream-query/src/schemas/schemas_0.ts @@ -212,7 +212,7 @@ const n0 = "com.amazonaws.timestreamquery"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-timestream-write/package.json b/clients/client-timestream-write/package.json index de09b50f144d4..f1d4df857147f 100644 --- a/clients/client-timestream-write/package.json +++ b/clients/client-timestream-write/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-timestream-write/src/TimestreamWrite.ts b/clients/client-timestream-write/src/TimestreamWrite.ts index f3aa4ecfa91e5..e848abc1c9528 100644 --- a/clients/client-timestream-write/src/TimestreamWrite.ts +++ b/clients/client-timestream-write/src/TimestreamWrite.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateBatchLoadTaskCommand, @@ -77,7 +77,7 @@ import { WriteRecordsCommandInput, WriteRecordsCommandOutput, } from "./commands/WriteRecordsCommand"; -import { TimestreamWriteClient, TimestreamWriteClientConfig } from "./TimestreamWriteClient"; +import { TimestreamWriteClient } from "./TimestreamWriteClient"; const commands = { CreateBatchLoadTaskCommand, diff --git a/clients/client-timestream-write/src/TimestreamWriteClient.ts b/clients/client-timestream-write/src/TimestreamWriteClient.ts index ec4e5390558c5..3767ba641f00f 100644 --- a/clients/client-timestream-write/src/TimestreamWriteClient.ts +++ b/clients/client-timestream-write/src/TimestreamWriteClient.ts @@ -1,24 +1,24 @@ // smithy-typescript generated code import { - EndpointDiscoveryInputConfig, - EndpointDiscoveryResolvedConfig, + type EndpointDiscoveryInputConfig, + type EndpointDiscoveryResolvedConfig, resolveEndpointDiscoveryConfig, } from "@aws-sdk/middleware-endpoint-discovery"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -26,40 +26,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTimestreamWriteHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -104,7 +113,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-timestream-write/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-timestream-write/src/auth/httpAuthExtensionConfiguration.ts index 117459ffe1abc..d29f11f632274 100644 --- a/clients/client-timestream-write/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-timestream-write/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TimestreamWriteHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TimestreamWriteHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-timestream-write/src/auth/httpAuthSchemeProvider.ts b/clients/client-timestream-write/src/auth/httpAuthSchemeProvider.ts index f49f1bc8312bf..828a5ed1a852f 100644 --- a/clients/client-timestream-write/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-timestream-write/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TimestreamWriteClientConfig, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import { type TimestreamWriteClientResolvedConfig, TimestreamWriteClientConfig } from "../TimestreamWriteClient"; /** * @internal diff --git a/clients/client-timestream-write/src/commands/CreateBatchLoadTaskCommand.ts b/clients/client-timestream-write/src/commands/CreateBatchLoadTaskCommand.ts index c9901776b4ee2..115c7dcec1b9d 100644 --- a/clients/client-timestream-write/src/commands/CreateBatchLoadTaskCommand.ts +++ b/clients/client-timestream-write/src/commands/CreateBatchLoadTaskCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBatchLoadTaskRequest, CreateBatchLoadTaskResponse } from "../models/models_0"; +import type { CreateBatchLoadTaskRequest, CreateBatchLoadTaskResponse } from "../models/models_0"; import { CreateBatchLoadTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/CreateDatabaseCommand.ts b/clients/client-timestream-write/src/commands/CreateDatabaseCommand.ts index 35913910ba9f6..c42b18e7337a5 100644 --- a/clients/client-timestream-write/src/commands/CreateDatabaseCommand.ts +++ b/clients/client-timestream-write/src/commands/CreateDatabaseCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDatabaseRequest, CreateDatabaseResponse } from "../models/models_0"; +import type { CreateDatabaseRequest, CreateDatabaseResponse } from "../models/models_0"; import { CreateDatabase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/CreateTableCommand.ts b/clients/client-timestream-write/src/commands/CreateTableCommand.ts index 560501d7005fa..f974c3117dd56 100644 --- a/clients/client-timestream-write/src/commands/CreateTableCommand.ts +++ b/clients/client-timestream-write/src/commands/CreateTableCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTableRequest, CreateTableResponse } from "../models/models_0"; +import type { CreateTableRequest, CreateTableResponse } from "../models/models_0"; import { CreateTable } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/DeleteDatabaseCommand.ts b/clients/client-timestream-write/src/commands/DeleteDatabaseCommand.ts index 01c651b181511..21b4aff27fde0 100644 --- a/clients/client-timestream-write/src/commands/DeleteDatabaseCommand.ts +++ b/clients/client-timestream-write/src/commands/DeleteDatabaseCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDatabaseRequest } from "../models/models_0"; +import type { DeleteDatabaseRequest } from "../models/models_0"; import { DeleteDatabase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/DeleteTableCommand.ts b/clients/client-timestream-write/src/commands/DeleteTableCommand.ts index 5961351a7f37e..91e839f7aace7 100644 --- a/clients/client-timestream-write/src/commands/DeleteTableCommand.ts +++ b/clients/client-timestream-write/src/commands/DeleteTableCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTableRequest } from "../models/models_0"; +import type { DeleteTableRequest } from "../models/models_0"; import { DeleteTable } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/DescribeBatchLoadTaskCommand.ts b/clients/client-timestream-write/src/commands/DescribeBatchLoadTaskCommand.ts index 97fbf9824bf08..43b3e1b3c4162 100644 --- a/clients/client-timestream-write/src/commands/DescribeBatchLoadTaskCommand.ts +++ b/clients/client-timestream-write/src/commands/DescribeBatchLoadTaskCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBatchLoadTaskRequest, DescribeBatchLoadTaskResponse } from "../models/models_0"; +import type { DescribeBatchLoadTaskRequest, DescribeBatchLoadTaskResponse } from "../models/models_0"; import { DescribeBatchLoadTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/DescribeDatabaseCommand.ts b/clients/client-timestream-write/src/commands/DescribeDatabaseCommand.ts index cc9b02f016a36..8832a04911a21 100644 --- a/clients/client-timestream-write/src/commands/DescribeDatabaseCommand.ts +++ b/clients/client-timestream-write/src/commands/DescribeDatabaseCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDatabaseRequest, DescribeDatabaseResponse } from "../models/models_0"; +import type { DescribeDatabaseRequest, DescribeDatabaseResponse } from "../models/models_0"; import { DescribeDatabase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/DescribeEndpointsCommand.ts b/clients/client-timestream-write/src/commands/DescribeEndpointsCommand.ts index abee43268764c..70f0ebdab33b6 100644 --- a/clients/client-timestream-write/src/commands/DescribeEndpointsCommand.ts +++ b/clients/client-timestream-write/src/commands/DescribeEndpointsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0"; +import type { DescribeEndpointsRequest, DescribeEndpointsResponse } from "../models/models_0"; import { DescribeEndpoints } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/DescribeTableCommand.ts b/clients/client-timestream-write/src/commands/DescribeTableCommand.ts index aba798f1eea3d..eda0b34bbcbc4 100644 --- a/clients/client-timestream-write/src/commands/DescribeTableCommand.ts +++ b/clients/client-timestream-write/src/commands/DescribeTableCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTableRequest, DescribeTableResponse } from "../models/models_0"; +import type { DescribeTableRequest, DescribeTableResponse } from "../models/models_0"; import { DescribeTable } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/ListBatchLoadTasksCommand.ts b/clients/client-timestream-write/src/commands/ListBatchLoadTasksCommand.ts index e3dcfdb8ff253..f801a26cb40f2 100644 --- a/clients/client-timestream-write/src/commands/ListBatchLoadTasksCommand.ts +++ b/clients/client-timestream-write/src/commands/ListBatchLoadTasksCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBatchLoadTasksRequest, ListBatchLoadTasksResponse } from "../models/models_0"; +import type { ListBatchLoadTasksRequest, ListBatchLoadTasksResponse } from "../models/models_0"; import { ListBatchLoadTasks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/ListDatabasesCommand.ts b/clients/client-timestream-write/src/commands/ListDatabasesCommand.ts index c154866f54aa1..ddc9518a61ab7 100644 --- a/clients/client-timestream-write/src/commands/ListDatabasesCommand.ts +++ b/clients/client-timestream-write/src/commands/ListDatabasesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDatabasesRequest, ListDatabasesResponse } from "../models/models_0"; +import type { ListDatabasesRequest, ListDatabasesResponse } from "../models/models_0"; import { ListDatabases } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/ListTablesCommand.ts b/clients/client-timestream-write/src/commands/ListTablesCommand.ts index e616d81b4313d..7bafa4c596e4b 100644 --- a/clients/client-timestream-write/src/commands/ListTablesCommand.ts +++ b/clients/client-timestream-write/src/commands/ListTablesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTablesRequest, ListTablesResponse } from "../models/models_0"; +import type { ListTablesRequest, ListTablesResponse } from "../models/models_0"; import { ListTables } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/ListTagsForResourceCommand.ts b/clients/client-timestream-write/src/commands/ListTagsForResourceCommand.ts index d3895ce32ddca..d5eee9816e66d 100644 --- a/clients/client-timestream-write/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-timestream-write/src/commands/ListTagsForResourceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/ResumeBatchLoadTaskCommand.ts b/clients/client-timestream-write/src/commands/ResumeBatchLoadTaskCommand.ts index b9948ce66a415..f70f014fdae23 100644 --- a/clients/client-timestream-write/src/commands/ResumeBatchLoadTaskCommand.ts +++ b/clients/client-timestream-write/src/commands/ResumeBatchLoadTaskCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResumeBatchLoadTaskRequest, ResumeBatchLoadTaskResponse } from "../models/models_0"; +import type { ResumeBatchLoadTaskRequest, ResumeBatchLoadTaskResponse } from "../models/models_0"; import { ResumeBatchLoadTask } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/TagResourceCommand.ts b/clients/client-timestream-write/src/commands/TagResourceCommand.ts index 413fd235dc7e2..3e6f92ee79e4c 100644 --- a/clients/client-timestream-write/src/commands/TagResourceCommand.ts +++ b/clients/client-timestream-write/src/commands/TagResourceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/UntagResourceCommand.ts b/clients/client-timestream-write/src/commands/UntagResourceCommand.ts index 431ae7580a481..adea27213eb26 100644 --- a/clients/client-timestream-write/src/commands/UntagResourceCommand.ts +++ b/clients/client-timestream-write/src/commands/UntagResourceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/UpdateDatabaseCommand.ts b/clients/client-timestream-write/src/commands/UpdateDatabaseCommand.ts index 848b86230aa10..8c04233ca9c18 100644 --- a/clients/client-timestream-write/src/commands/UpdateDatabaseCommand.ts +++ b/clients/client-timestream-write/src/commands/UpdateDatabaseCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDatabaseRequest, UpdateDatabaseResponse } from "../models/models_0"; +import type { UpdateDatabaseRequest, UpdateDatabaseResponse } from "../models/models_0"; import { UpdateDatabase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/UpdateTableCommand.ts b/clients/client-timestream-write/src/commands/UpdateTableCommand.ts index 4e041c8f27f10..ebf762a9d64e9 100644 --- a/clients/client-timestream-write/src/commands/UpdateTableCommand.ts +++ b/clients/client-timestream-write/src/commands/UpdateTableCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTableRequest, UpdateTableResponse } from "../models/models_0"; +import type { UpdateTableRequest, UpdateTableResponse } from "../models/models_0"; import { UpdateTable } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/commands/WriteRecordsCommand.ts b/clients/client-timestream-write/src/commands/WriteRecordsCommand.ts index 9bb72d0529d34..d11fac5f5f0bb 100644 --- a/clients/client-timestream-write/src/commands/WriteRecordsCommand.ts +++ b/clients/client-timestream-write/src/commands/WriteRecordsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointDiscoveryPlugin } from "@aws-sdk/middleware-endpoint-discovery"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { WriteRecordsRequest, WriteRecordsResponse } from "../models/models_0"; +import type { WriteRecordsRequest, WriteRecordsResponse } from "../models/models_0"; import { WriteRecords } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TimestreamWriteClientResolvedConfig } from "../TimestreamWriteClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TimestreamWriteClientResolvedConfig, +} from "../TimestreamWriteClient"; /** * @public diff --git a/clients/client-timestream-write/src/endpoint/EndpointParameters.ts b/clients/client-timestream-write/src/endpoint/EndpointParameters.ts index d897ec780f1ef..a0540ea5b8185 100644 --- a/clients/client-timestream-write/src/endpoint/EndpointParameters.ts +++ b/clients/client-timestream-write/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-timestream-write/src/endpoint/endpointResolver.ts b/clients/client-timestream-write/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-timestream-write/src/endpoint/endpointResolver.ts +++ b/clients/client-timestream-write/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-timestream-write/src/extensionConfiguration.ts b/clients/client-timestream-write/src/extensionConfiguration.ts index 70575bed89990..85ef6e22e3e8d 100644 --- a/clients/client-timestream-write/src/extensionConfiguration.ts +++ b/clients/client-timestream-write/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-timestream-write/src/models/TimestreamWriteServiceException.ts b/clients/client-timestream-write/src/models/TimestreamWriteServiceException.ts index 5e4c19ed33070..139792b8b68c8 100644 --- a/clients/client-timestream-write/src/models/TimestreamWriteServiceException.ts +++ b/clients/client-timestream-write/src/models/TimestreamWriteServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-timestream-write/src/models/errors.ts b/clients/client-timestream-write/src/models/errors.ts index 4d8620175b165..871d766869bf5 100644 --- a/clients/client-timestream-write/src/models/errors.ts +++ b/clients/client-timestream-write/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { RejectedRecord } from "./models_0"; import { TimestreamWriteServiceException as __BaseException } from "./TimestreamWriteServiceException"; diff --git a/clients/client-timestream-write/src/pagination/Interfaces.ts b/clients/client-timestream-write/src/pagination/Interfaces.ts index 3cf005db6ca69..cd8c1ff08b300 100644 --- a/clients/client-timestream-write/src/pagination/Interfaces.ts +++ b/clients/client-timestream-write/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TimestreamWriteClient } from "../TimestreamWriteClient"; diff --git a/clients/client-timestream-write/src/pagination/ListBatchLoadTasksPaginator.ts b/clients/client-timestream-write/src/pagination/ListBatchLoadTasksPaginator.ts index fc0b16a477a24..ab982e36ec02c 100644 --- a/clients/client-timestream-write/src/pagination/ListBatchLoadTasksPaginator.ts +++ b/clients/client-timestream-write/src/pagination/ListBatchLoadTasksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBatchLoadTasksCommand, diff --git a/clients/client-timestream-write/src/pagination/ListDatabasesPaginator.ts b/clients/client-timestream-write/src/pagination/ListDatabasesPaginator.ts index 02c647cff88d9..765efd1bfa938 100644 --- a/clients/client-timestream-write/src/pagination/ListDatabasesPaginator.ts +++ b/clients/client-timestream-write/src/pagination/ListDatabasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDatabasesCommand, diff --git a/clients/client-timestream-write/src/pagination/ListTablesPaginator.ts b/clients/client-timestream-write/src/pagination/ListTablesPaginator.ts index 4c85a03436f4b..11bab4e3fcaff 100644 --- a/clients/client-timestream-write/src/pagination/ListTablesPaginator.ts +++ b/clients/client-timestream-write/src/pagination/ListTablesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTablesCommand, ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand"; import { TimestreamWriteClient } from "../TimestreamWriteClient"; diff --git a/clients/client-timestream-write/src/runtimeConfig.browser.ts b/clients/client-timestream-write/src/runtimeConfig.browser.ts index 357d5aef26a86..6132e5c4d8455 100644 --- a/clients/client-timestream-write/src/runtimeConfig.browser.ts +++ b/clients/client-timestream-write/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TimestreamWriteClientConfig } from "./TimestreamWriteClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TimestreamWriteClientConfig } from "./TimestreamWriteClient"; /** * @internal diff --git a/clients/client-timestream-write/src/runtimeConfig.native.ts b/clients/client-timestream-write/src/runtimeConfig.native.ts index 26e3451894d78..02c36b643be79 100644 --- a/clients/client-timestream-write/src/runtimeConfig.native.ts +++ b/clients/client-timestream-write/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TimestreamWriteClientConfig } from "./TimestreamWriteClient"; +import type { TimestreamWriteClientConfig } from "./TimestreamWriteClient"; /** * @internal diff --git a/clients/client-timestream-write/src/runtimeConfig.shared.ts b/clients/client-timestream-write/src/runtimeConfig.shared.ts index 57ea2f1c6eb7f..f4cca20b8b745 100644 --- a/clients/client-timestream-write/src/runtimeConfig.shared.ts +++ b/clients/client-timestream-write/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTimestreamWriteHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TimestreamWriteClientConfig } from "./TimestreamWriteClient"; +import type { TimestreamWriteClientConfig } from "./TimestreamWriteClient"; /** * @internal diff --git a/clients/client-timestream-write/src/runtimeConfig.ts b/clients/client-timestream-write/src/runtimeConfig.ts index c61b30c63742a..91f5e2efb0944 100644 --- a/clients/client-timestream-write/src/runtimeConfig.ts +++ b/clients/client-timestream-write/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TimestreamWriteClientConfig } from "./TimestreamWriteClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TimestreamWriteClientConfig } from "./TimestreamWriteClient"; /** * @internal diff --git a/clients/client-timestream-write/src/runtimeExtensions.ts b/clients/client-timestream-write/src/runtimeExtensions.ts index cef7f8cd7a3c4..720128fc173eb 100644 --- a/clients/client-timestream-write/src/runtimeExtensions.ts +++ b/clients/client-timestream-write/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TimestreamWriteExtensionConfiguration } from "./extensionConfiguration"; +import type { TimestreamWriteExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-timestream-write/src/schemas/schemas_0.ts b/clients/client-timestream-write/src/schemas/schemas_0.ts index 5dcbf88fcc472..16e02d29b58d6 100644 --- a/clients/client-timestream-write/src/schemas/schemas_0.ts +++ b/clients/client-timestream-write/src/schemas/schemas_0.ts @@ -189,7 +189,7 @@ const n0 = "com.amazonaws.timestreamwrite"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-tnb/package.json b/clients/client-tnb/package.json index 4fcbe820e624f..78ab13d4ba64d 100644 --- a/clients/client-tnb/package.json +++ b/clients/client-tnb/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-tnb/src/Tnb.ts b/clients/client-tnb/src/Tnb.ts index f930d51b03c99..734d3c61c6f95 100644 --- a/clients/client-tnb/src/Tnb.ts +++ b/clients/client-tnb/src/Tnb.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CancelSolNetworkOperationCommand, @@ -163,7 +163,7 @@ import { ValidateSolNetworkPackageContentCommandInput, ValidateSolNetworkPackageContentCommandOutput, } from "./commands/ValidateSolNetworkPackageContentCommand"; -import { TnbClient, TnbClientConfig } from "./TnbClient"; +import { TnbClient } from "./TnbClient"; const commands = { CancelSolNetworkOperationCommand, diff --git a/clients/client-tnb/src/TnbClient.ts b/clients/client-tnb/src/TnbClient.ts index 1d33e8aa87492..c6bfae139a281 100644 --- a/clients/client-tnb/src/TnbClient.ts +++ b/clients/client-tnb/src/TnbClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTnbHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -190,7 +199,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-tnb/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-tnb/src/auth/httpAuthExtensionConfiguration.ts index 82fa862275a96..202b698749368 100644 --- a/clients/client-tnb/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-tnb/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TnbHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TnbHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-tnb/src/auth/httpAuthSchemeProvider.ts b/clients/client-tnb/src/auth/httpAuthSchemeProvider.ts index 661bad77def42..43c74f9de7812 100644 --- a/clients/client-tnb/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-tnb/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TnbClientConfig, TnbClientResolvedConfig } from "../TnbClient"; +import { type TnbClientResolvedConfig, TnbClientConfig } from "../TnbClient"; /** * @internal diff --git a/clients/client-tnb/src/commands/CancelSolNetworkOperationCommand.ts b/clients/client-tnb/src/commands/CancelSolNetworkOperationCommand.ts index 4e8afd13b7961..690dbf7852e06 100644 --- a/clients/client-tnb/src/commands/CancelSolNetworkOperationCommand.ts +++ b/clients/client-tnb/src/commands/CancelSolNetworkOperationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelSolNetworkOperationInput } from "../models/models_0"; +import type { CancelSolNetworkOperationInput } from "../models/models_0"; import { CancelSolNetworkOperation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/CreateSolFunctionPackageCommand.ts b/clients/client-tnb/src/commands/CreateSolFunctionPackageCommand.ts index ceaeb6cf82be4..be2fc029fab9b 100644 --- a/clients/client-tnb/src/commands/CreateSolFunctionPackageCommand.ts +++ b/clients/client-tnb/src/commands/CreateSolFunctionPackageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSolFunctionPackageInput, CreateSolFunctionPackageOutput } from "../models/models_0"; +import type { CreateSolFunctionPackageInput, CreateSolFunctionPackageOutput } from "../models/models_0"; import { CreateSolFunctionPackage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/CreateSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/CreateSolNetworkInstanceCommand.ts index ef4e8a9e2d661..d3b4e88eb772a 100644 --- a/clients/client-tnb/src/commands/CreateSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/CreateSolNetworkInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSolNetworkInstanceInput, CreateSolNetworkInstanceOutput } from "../models/models_0"; +import type { CreateSolNetworkInstanceInput, CreateSolNetworkInstanceOutput } from "../models/models_0"; import { CreateSolNetworkInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/CreateSolNetworkPackageCommand.ts b/clients/client-tnb/src/commands/CreateSolNetworkPackageCommand.ts index de910950e867b..1996734e4eb00 100644 --- a/clients/client-tnb/src/commands/CreateSolNetworkPackageCommand.ts +++ b/clients/client-tnb/src/commands/CreateSolNetworkPackageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSolNetworkPackageInput, CreateSolNetworkPackageOutput } from "../models/models_0"; +import type { CreateSolNetworkPackageInput, CreateSolNetworkPackageOutput } from "../models/models_0"; import { CreateSolNetworkPackage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/DeleteSolFunctionPackageCommand.ts b/clients/client-tnb/src/commands/DeleteSolFunctionPackageCommand.ts index 4f8056d451bc9..899ad3b013602 100644 --- a/clients/client-tnb/src/commands/DeleteSolFunctionPackageCommand.ts +++ b/clients/client-tnb/src/commands/DeleteSolFunctionPackageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSolFunctionPackageInput } from "../models/models_0"; +import type { DeleteSolFunctionPackageInput } from "../models/models_0"; import { DeleteSolFunctionPackage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/DeleteSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/DeleteSolNetworkInstanceCommand.ts index 1971fc4de53a4..2413e15fb53fe 100644 --- a/clients/client-tnb/src/commands/DeleteSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/DeleteSolNetworkInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSolNetworkInstanceInput } from "../models/models_0"; +import type { DeleteSolNetworkInstanceInput } from "../models/models_0"; import { DeleteSolNetworkInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/DeleteSolNetworkPackageCommand.ts b/clients/client-tnb/src/commands/DeleteSolNetworkPackageCommand.ts index cce1faa8fd530..b6fb9a1412913 100644 --- a/clients/client-tnb/src/commands/DeleteSolNetworkPackageCommand.ts +++ b/clients/client-tnb/src/commands/DeleteSolNetworkPackageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSolNetworkPackageInput } from "../models/models_0"; +import type { DeleteSolNetworkPackageInput } from "../models/models_0"; import { DeleteSolNetworkPackage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/GetSolFunctionInstanceCommand.ts b/clients/client-tnb/src/commands/GetSolFunctionInstanceCommand.ts index b06ab6a204934..54321093ff6af 100644 --- a/clients/client-tnb/src/commands/GetSolFunctionInstanceCommand.ts +++ b/clients/client-tnb/src/commands/GetSolFunctionInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolFunctionInstanceInput, GetSolFunctionInstanceOutput } from "../models/models_0"; +import type { GetSolFunctionInstanceInput, GetSolFunctionInstanceOutput } from "../models/models_0"; import { GetSolFunctionInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/GetSolFunctionPackageCommand.ts b/clients/client-tnb/src/commands/GetSolFunctionPackageCommand.ts index b114324d0fe35..ed61da59b82be 100644 --- a/clients/client-tnb/src/commands/GetSolFunctionPackageCommand.ts +++ b/clients/client-tnb/src/commands/GetSolFunctionPackageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolFunctionPackageInput, GetSolFunctionPackageOutput } from "../models/models_0"; +import type { GetSolFunctionPackageInput, GetSolFunctionPackageOutput } from "../models/models_0"; import { GetSolFunctionPackage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/GetSolFunctionPackageContentCommand.ts b/clients/client-tnb/src/commands/GetSolFunctionPackageContentCommand.ts index 479c6dd849713..9d96126562562 100644 --- a/clients/client-tnb/src/commands/GetSolFunctionPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/GetSolFunctionPackageContentCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolFunctionPackageContentInput, GetSolFunctionPackageContentOutput } from "../models/models_0"; +import { type GetSolFunctionPackageContentInput, GetSolFunctionPackageContentOutput } from "../models/models_0"; import { GetSolFunctionPackageContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/GetSolFunctionPackageDescriptorCommand.ts b/clients/client-tnb/src/commands/GetSolFunctionPackageDescriptorCommand.ts index a4a1bac629e1b..eaa2874d51e9e 100644 --- a/clients/client-tnb/src/commands/GetSolFunctionPackageDescriptorCommand.ts +++ b/clients/client-tnb/src/commands/GetSolFunctionPackageDescriptorCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolFunctionPackageDescriptorInput, GetSolFunctionPackageDescriptorOutput } from "../models/models_0"; +import { type GetSolFunctionPackageDescriptorInput, GetSolFunctionPackageDescriptorOutput } from "../models/models_0"; import { GetSolFunctionPackageDescriptor } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/GetSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkInstanceCommand.ts index 0ac061b50f54c..f2fa9907bb368 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolNetworkInstanceInput, GetSolNetworkInstanceOutput } from "../models/models_0"; +import type { GetSolNetworkInstanceInput, GetSolNetworkInstanceOutput } from "../models/models_0"; import { GetSolNetworkInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/GetSolNetworkOperationCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkOperationCommand.ts index 90e56c80d3c1e..a646e7af3d0f7 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkOperationCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkOperationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolNetworkOperationInput, GetSolNetworkOperationOutput } from "../models/models_0"; +import type { GetSolNetworkOperationInput, GetSolNetworkOperationOutput } from "../models/models_0"; import { GetSolNetworkOperation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/GetSolNetworkPackageCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkPackageCommand.ts index 63b825bd966ee..facad53263ddc 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkPackageCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkPackageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolNetworkPackageInput, GetSolNetworkPackageOutput } from "../models/models_0"; +import type { GetSolNetworkPackageInput, GetSolNetworkPackageOutput } from "../models/models_0"; import { GetSolNetworkPackage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/GetSolNetworkPackageContentCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkPackageContentCommand.ts index 89ab143a6ad20..b2fe3c5634e94 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkPackageContentCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolNetworkPackageContentInput, GetSolNetworkPackageContentOutput } from "../models/models_0"; +import { type GetSolNetworkPackageContentInput, GetSolNetworkPackageContentOutput } from "../models/models_0"; import { GetSolNetworkPackageContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/GetSolNetworkPackageDescriptorCommand.ts b/clients/client-tnb/src/commands/GetSolNetworkPackageDescriptorCommand.ts index 1e7a794fcab35..1cbc3dd9c2af5 100644 --- a/clients/client-tnb/src/commands/GetSolNetworkPackageDescriptorCommand.ts +++ b/clients/client-tnb/src/commands/GetSolNetworkPackageDescriptorCommand.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSolNetworkPackageDescriptorInput, GetSolNetworkPackageDescriptorOutput } from "../models/models_0"; +import { type GetSolNetworkPackageDescriptorInput, GetSolNetworkPackageDescriptorOutput } from "../models/models_0"; import { GetSolNetworkPackageDescriptor } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/InstantiateSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/InstantiateSolNetworkInstanceCommand.ts index 6209e2e482481..26cd9b1e6eca6 100644 --- a/clients/client-tnb/src/commands/InstantiateSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/InstantiateSolNetworkInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InstantiateSolNetworkInstanceInput, InstantiateSolNetworkInstanceOutput } from "../models/models_0"; +import type { InstantiateSolNetworkInstanceInput, InstantiateSolNetworkInstanceOutput } from "../models/models_0"; import { InstantiateSolNetworkInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/ListSolFunctionInstancesCommand.ts b/clients/client-tnb/src/commands/ListSolFunctionInstancesCommand.ts index 8fc7dfcb53b27..0d8a24e083961 100644 --- a/clients/client-tnb/src/commands/ListSolFunctionInstancesCommand.ts +++ b/clients/client-tnb/src/commands/ListSolFunctionInstancesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSolFunctionInstancesInput, ListSolFunctionInstancesOutput } from "../models/models_0"; +import type { ListSolFunctionInstancesInput, ListSolFunctionInstancesOutput } from "../models/models_0"; import { ListSolFunctionInstances } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/ListSolFunctionPackagesCommand.ts b/clients/client-tnb/src/commands/ListSolFunctionPackagesCommand.ts index 2a43d1dffc1eb..ab18b7b4f75f9 100644 --- a/clients/client-tnb/src/commands/ListSolFunctionPackagesCommand.ts +++ b/clients/client-tnb/src/commands/ListSolFunctionPackagesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSolFunctionPackagesInput, ListSolFunctionPackagesOutput } from "../models/models_0"; +import type { ListSolFunctionPackagesInput, ListSolFunctionPackagesOutput } from "../models/models_0"; import { ListSolFunctionPackages } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/ListSolNetworkInstancesCommand.ts b/clients/client-tnb/src/commands/ListSolNetworkInstancesCommand.ts index 98b159365f4ba..30c9d74eceb8a 100644 --- a/clients/client-tnb/src/commands/ListSolNetworkInstancesCommand.ts +++ b/clients/client-tnb/src/commands/ListSolNetworkInstancesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSolNetworkInstancesInput, ListSolNetworkInstancesOutput } from "../models/models_0"; +import type { ListSolNetworkInstancesInput, ListSolNetworkInstancesOutput } from "../models/models_0"; import { ListSolNetworkInstances } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/ListSolNetworkOperationsCommand.ts b/clients/client-tnb/src/commands/ListSolNetworkOperationsCommand.ts index 1864079c313d8..86fb04342a6ba 100644 --- a/clients/client-tnb/src/commands/ListSolNetworkOperationsCommand.ts +++ b/clients/client-tnb/src/commands/ListSolNetworkOperationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSolNetworkOperationsInput, ListSolNetworkOperationsOutput } from "../models/models_0"; +import type { ListSolNetworkOperationsInput, ListSolNetworkOperationsOutput } from "../models/models_0"; import { ListSolNetworkOperations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/ListSolNetworkPackagesCommand.ts b/clients/client-tnb/src/commands/ListSolNetworkPackagesCommand.ts index 81d89ee49947d..32393d4dad304 100644 --- a/clients/client-tnb/src/commands/ListSolNetworkPackagesCommand.ts +++ b/clients/client-tnb/src/commands/ListSolNetworkPackagesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSolNetworkPackagesInput, ListSolNetworkPackagesOutput } from "../models/models_0"; +import type { ListSolNetworkPackagesInput, ListSolNetworkPackagesOutput } from "../models/models_0"; import { ListSolNetworkPackages } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/ListTagsForResourceCommand.ts b/clients/client-tnb/src/commands/ListTagsForResourceCommand.ts index 9f29c32e757fd..9baecf29dd8a0 100644 --- a/clients/client-tnb/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-tnb/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/PutSolFunctionPackageContentCommand.ts b/clients/client-tnb/src/commands/PutSolFunctionPackageContentCommand.ts index dde269b096b3f..9f9581e4eba9b 100644 --- a/clients/client-tnb/src/commands/PutSolFunctionPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/PutSolFunctionPackageContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSolFunctionPackageContentInput, PutSolFunctionPackageContentOutput } from "../models/models_0"; +import { type PutSolFunctionPackageContentOutput, PutSolFunctionPackageContentInput } from "../models/models_0"; import { PutSolFunctionPackageContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/PutSolNetworkPackageContentCommand.ts b/clients/client-tnb/src/commands/PutSolNetworkPackageContentCommand.ts index a102332c923fa..64bb9555bf515 100644 --- a/clients/client-tnb/src/commands/PutSolNetworkPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/PutSolNetworkPackageContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSolNetworkPackageContentInput, PutSolNetworkPackageContentOutput } from "../models/models_0"; +import { type PutSolNetworkPackageContentOutput, PutSolNetworkPackageContentInput } from "../models/models_0"; import { PutSolNetworkPackageContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/TagResourceCommand.ts b/clients/client-tnb/src/commands/TagResourceCommand.ts index 0aad48eaf9339..555ee45162dff 100644 --- a/clients/client-tnb/src/commands/TagResourceCommand.ts +++ b/clients/client-tnb/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/TerminateSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/TerminateSolNetworkInstanceCommand.ts index 344d1759c3f03..a13e7614bd2ac 100644 --- a/clients/client-tnb/src/commands/TerminateSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/TerminateSolNetworkInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateSolNetworkInstanceInput, TerminateSolNetworkInstanceOutput } from "../models/models_0"; +import type { TerminateSolNetworkInstanceInput, TerminateSolNetworkInstanceOutput } from "../models/models_0"; import { TerminateSolNetworkInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/UntagResourceCommand.ts b/clients/client-tnb/src/commands/UntagResourceCommand.ts index 99a9307455e0f..03156680ede13 100644 --- a/clients/client-tnb/src/commands/UntagResourceCommand.ts +++ b/clients/client-tnb/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/UpdateSolFunctionPackageCommand.ts b/clients/client-tnb/src/commands/UpdateSolFunctionPackageCommand.ts index 0c80935065007..6a8bb69d8ac15 100644 --- a/clients/client-tnb/src/commands/UpdateSolFunctionPackageCommand.ts +++ b/clients/client-tnb/src/commands/UpdateSolFunctionPackageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSolFunctionPackageInput, UpdateSolFunctionPackageOutput } from "../models/models_0"; +import type { UpdateSolFunctionPackageInput, UpdateSolFunctionPackageOutput } from "../models/models_0"; import { UpdateSolFunctionPackage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/UpdateSolNetworkInstanceCommand.ts b/clients/client-tnb/src/commands/UpdateSolNetworkInstanceCommand.ts index 1795ac7889f5d..342982b33efcd 100644 --- a/clients/client-tnb/src/commands/UpdateSolNetworkInstanceCommand.ts +++ b/clients/client-tnb/src/commands/UpdateSolNetworkInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSolNetworkInstanceInput, UpdateSolNetworkInstanceOutput } from "../models/models_0"; +import type { UpdateSolNetworkInstanceInput, UpdateSolNetworkInstanceOutput } from "../models/models_0"; import { UpdateSolNetworkInstance } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/UpdateSolNetworkPackageCommand.ts b/clients/client-tnb/src/commands/UpdateSolNetworkPackageCommand.ts index 3777012eb44ce..cf536ec669090 100644 --- a/clients/client-tnb/src/commands/UpdateSolNetworkPackageCommand.ts +++ b/clients/client-tnb/src/commands/UpdateSolNetworkPackageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSolNetworkPackageInput, UpdateSolNetworkPackageOutput } from "../models/models_0"; +import type { UpdateSolNetworkPackageInput, UpdateSolNetworkPackageOutput } from "../models/models_0"; import { UpdateSolNetworkPackage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/ValidateSolFunctionPackageContentCommand.ts b/clients/client-tnb/src/commands/ValidateSolFunctionPackageContentCommand.ts index e2fe3b21b026b..4777b53c6dd82 100644 --- a/clients/client-tnb/src/commands/ValidateSolFunctionPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/ValidateSolFunctionPackageContentCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidateSolFunctionPackageContentInput, ValidateSolFunctionPackageContentOutput } from "../models/models_0"; +import { + type ValidateSolFunctionPackageContentOutput, + ValidateSolFunctionPackageContentInput, +} from "../models/models_0"; import { ValidateSolFunctionPackageContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/commands/ValidateSolNetworkPackageContentCommand.ts b/clients/client-tnb/src/commands/ValidateSolNetworkPackageContentCommand.ts index 5bae0c6f32a10..136fec659c979 100644 --- a/clients/client-tnb/src/commands/ValidateSolNetworkPackageContentCommand.ts +++ b/clients/client-tnb/src/commands/ValidateSolNetworkPackageContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ValidateSolNetworkPackageContentInput, ValidateSolNetworkPackageContentOutput } from "../models/models_0"; +import { type ValidateSolNetworkPackageContentOutput, ValidateSolNetworkPackageContentInput } from "../models/models_0"; import { ValidateSolNetworkPackageContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TnbClientResolvedConfig } from "../TnbClient"; /** * @public diff --git a/clients/client-tnb/src/endpoint/EndpointParameters.ts b/clients/client-tnb/src/endpoint/EndpointParameters.ts index c605b85cd14b1..545932432c657 100644 --- a/clients/client-tnb/src/endpoint/EndpointParameters.ts +++ b/clients/client-tnb/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-tnb/src/endpoint/endpointResolver.ts b/clients/client-tnb/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-tnb/src/endpoint/endpointResolver.ts +++ b/clients/client-tnb/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-tnb/src/extensionConfiguration.ts b/clients/client-tnb/src/extensionConfiguration.ts index dbc8af0a79c11..880da45bd116f 100644 --- a/clients/client-tnb/src/extensionConfiguration.ts +++ b/clients/client-tnb/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-tnb/src/models/TnbServiceException.ts b/clients/client-tnb/src/models/TnbServiceException.ts index 6544a22bb21a1..c29d44173fcbf 100644 --- a/clients/client-tnb/src/models/TnbServiceException.ts +++ b/clients/client-tnb/src/models/TnbServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-tnb/src/models/errors.ts b/clients/client-tnb/src/models/errors.ts index 0a4c8a5bb0e43..fe4a1bba45c2f 100644 --- a/clients/client-tnb/src/models/errors.ts +++ b/clients/client-tnb/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { TnbServiceException as __BaseException } from "./TnbServiceException"; diff --git a/clients/client-tnb/src/pagination/Interfaces.ts b/clients/client-tnb/src/pagination/Interfaces.ts index eb5fc29e78856..950be358d9f4c 100644 --- a/clients/client-tnb/src/pagination/Interfaces.ts +++ b/clients/client-tnb/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TnbClient } from "../TnbClient"; diff --git a/clients/client-tnb/src/pagination/ListSolFunctionInstancesPaginator.ts b/clients/client-tnb/src/pagination/ListSolFunctionInstancesPaginator.ts index ea6a38173731a..8ccd97fc50312 100644 --- a/clients/client-tnb/src/pagination/ListSolFunctionInstancesPaginator.ts +++ b/clients/client-tnb/src/pagination/ListSolFunctionInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSolFunctionInstancesCommand, diff --git a/clients/client-tnb/src/pagination/ListSolFunctionPackagesPaginator.ts b/clients/client-tnb/src/pagination/ListSolFunctionPackagesPaginator.ts index 8b3d06cf85bc7..fe93d58eba6e8 100644 --- a/clients/client-tnb/src/pagination/ListSolFunctionPackagesPaginator.ts +++ b/clients/client-tnb/src/pagination/ListSolFunctionPackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSolFunctionPackagesCommand, diff --git a/clients/client-tnb/src/pagination/ListSolNetworkInstancesPaginator.ts b/clients/client-tnb/src/pagination/ListSolNetworkInstancesPaginator.ts index 555d897162f49..a9e2243571881 100644 --- a/clients/client-tnb/src/pagination/ListSolNetworkInstancesPaginator.ts +++ b/clients/client-tnb/src/pagination/ListSolNetworkInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSolNetworkInstancesCommand, diff --git a/clients/client-tnb/src/pagination/ListSolNetworkOperationsPaginator.ts b/clients/client-tnb/src/pagination/ListSolNetworkOperationsPaginator.ts index 14e967628ef77..e6710f81c2b4a 100644 --- a/clients/client-tnb/src/pagination/ListSolNetworkOperationsPaginator.ts +++ b/clients/client-tnb/src/pagination/ListSolNetworkOperationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSolNetworkOperationsCommand, diff --git a/clients/client-tnb/src/pagination/ListSolNetworkPackagesPaginator.ts b/clients/client-tnb/src/pagination/ListSolNetworkPackagesPaginator.ts index 50bb0d99019dd..78771888a6014 100644 --- a/clients/client-tnb/src/pagination/ListSolNetworkPackagesPaginator.ts +++ b/clients/client-tnb/src/pagination/ListSolNetworkPackagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSolNetworkPackagesCommand, diff --git a/clients/client-tnb/src/runtimeConfig.browser.ts b/clients/client-tnb/src/runtimeConfig.browser.ts index 2cd5ab4c5efd2..f61d875a2fc65 100644 --- a/clients/client-tnb/src/runtimeConfig.browser.ts +++ b/clients/client-tnb/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TnbClientConfig } from "./TnbClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TnbClientConfig } from "./TnbClient"; /** * @internal diff --git a/clients/client-tnb/src/runtimeConfig.native.ts b/clients/client-tnb/src/runtimeConfig.native.ts index d641c2eb76290..beea396ba7feb 100644 --- a/clients/client-tnb/src/runtimeConfig.native.ts +++ b/clients/client-tnb/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TnbClientConfig } from "./TnbClient"; +import type { TnbClientConfig } from "./TnbClient"; /** * @internal diff --git a/clients/client-tnb/src/runtimeConfig.shared.ts b/clients/client-tnb/src/runtimeConfig.shared.ts index 089d75dd8f877..f8e47d3fcc9cb 100644 --- a/clients/client-tnb/src/runtimeConfig.shared.ts +++ b/clients/client-tnb/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTnbHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TnbClientConfig } from "./TnbClient"; +import type { TnbClientConfig } from "./TnbClient"; /** * @internal diff --git a/clients/client-tnb/src/runtimeConfig.ts b/clients/client-tnb/src/runtimeConfig.ts index 556cc3634398c..cb7e4924e5a21 100644 --- a/clients/client-tnb/src/runtimeConfig.ts +++ b/clients/client-tnb/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TnbClientConfig } from "./TnbClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TnbClientConfig } from "./TnbClient"; /** * @internal diff --git a/clients/client-tnb/src/runtimeExtensions.ts b/clients/client-tnb/src/runtimeExtensions.ts index 7f6f39db7e4bb..1c9cad6af7ce8 100644 --- a/clients/client-tnb/src/runtimeExtensions.ts +++ b/clients/client-tnb/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TnbExtensionConfiguration } from "./extensionConfiguration"; +import type { TnbExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-tnb/src/schemas/schemas_0.ts b/clients/client-tnb/src/schemas/schemas_0.ts index 251a976fbb315..ba07b23c132d9 100644 --- a/clients/client-tnb/src/schemas/schemas_0.ts +++ b/clients/client-tnb/src/schemas/schemas_0.ts @@ -244,7 +244,7 @@ const n0 = "com.amazonaws.tnb"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-transcribe-streaming/package.json b/clients/client-transcribe-streaming/package.json index 7c07c678eaf14..6e9405c766338 100644 --- a/clients/client-transcribe-streaming/package.json +++ b/clients/client-transcribe-streaming/package.json @@ -38,7 +38,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -46,21 +46,21 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-transcribe-streaming/src/TranscribeStreaming.ts b/clients/client-transcribe-streaming/src/TranscribeStreaming.ts index 1ee0095e991d6..47879b3b85293 100644 --- a/clients/client-transcribe-streaming/src/TranscribeStreaming.ts +++ b/clients/client-transcribe-streaming/src/TranscribeStreaming.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetMedicalScribeStreamCommand, @@ -27,7 +27,7 @@ import { StartStreamTranscriptionCommandInput, StartStreamTranscriptionCommandOutput, } from "./commands/StartStreamTranscriptionCommand"; -import { TranscribeStreamingClient, TranscribeStreamingClientConfig } from "./TranscribeStreamingClient"; +import { TranscribeStreamingClient } from "./TranscribeStreamingClient"; const commands = { GetMedicalScribeStreamCommand, diff --git a/clients/client-transcribe-streaming/src/TranscribeStreamingClient.ts b/clients/client-transcribe-streaming/src/TranscribeStreamingClient.ts index 34043935d388c..969d9d3f5cafd 100644 --- a/clients/client-transcribe-streaming/src/TranscribeStreamingClient.ts +++ b/clients/client-transcribe-streaming/src/TranscribeStreamingClient.ts @@ -1,26 +1,30 @@ // smithy-typescript generated code import { - EventStreamInputConfig, - EventStreamResolvedConfig, + type EventStreamInputConfig, + type EventStreamResolvedConfig, resolveEventStreamConfig, } from "@aws-sdk/middleware-eventstream"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { resolveWebSocketConfig, WebSocketInputConfig, WebSocketResolvedConfig } from "@aws-sdk/middleware-websocket"; +import { + type WebSocketInputConfig, + type WebSocketResolvedConfig, + resolveWebSocketConfig, +} from "@aws-sdk/middleware-websocket"; import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -28,46 +32,55 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTranscribeStreamingHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -97,7 +110,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-transcribe-streaming/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-transcribe-streaming/src/auth/httpAuthExtensionConfiguration.ts index 0804f922448d2..bc96b5d639141 100644 --- a/clients/client-transcribe-streaming/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-transcribe-streaming/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TranscribeStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TranscribeStreamingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-transcribe-streaming/src/auth/httpAuthSchemeProvider.ts b/clients/client-transcribe-streaming/src/auth/httpAuthSchemeProvider.ts index efd957027eb9e..83b424b11e224 100644 --- a/clients/client-transcribe-streaming/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-transcribe-streaming/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TranscribeStreamingClientConfig, TranscribeStreamingClientResolvedConfig } from "../TranscribeStreamingClient"; +import { + type TranscribeStreamingClientResolvedConfig, + TranscribeStreamingClientConfig, +} from "../TranscribeStreamingClient"; /** * @internal diff --git a/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts b/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts index 9a594bd408b61..fd34dfb67fe7d 100644 --- a/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/GetMedicalScribeStreamCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMedicalScribeStreamRequest, GetMedicalScribeStreamResponse } from "../models/models_0"; +import type { GetMedicalScribeStreamRequest, GetMedicalScribeStreamResponse } from "../models/models_0"; import { GetMedicalScribeStream } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeStreamingClientResolvedConfig, diff --git a/clients/client-transcribe-streaming/src/commands/StartCallAnalyticsStreamTranscriptionCommand.ts b/clients/client-transcribe-streaming/src/commands/StartCallAnalyticsStreamTranscriptionCommand.ts index 228058b0983e0..a0ad994040040 100644 --- a/clients/client-transcribe-streaming/src/commands/StartCallAnalyticsStreamTranscriptionCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/StartCallAnalyticsStreamTranscriptionCommand.ts @@ -4,15 +4,15 @@ import { getTranscribeStreamingPlugin } from "@aws-sdk/middleware-sdk-transcribe import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { StartCallAnalyticsStreamTranscriptionRequest, StartCallAnalyticsStreamTranscriptionResponse, } from "../models/models_0"; import { StartCallAnalyticsStreamTranscription } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeStreamingClientResolvedConfig, diff --git a/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts b/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts index ed3bbb975d34a..f2fed79f14fdf 100644 --- a/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/StartMedicalScribeStreamCommand.ts @@ -4,12 +4,12 @@ import { getTranscribeStreamingPlugin } from "@aws-sdk/middleware-sdk-transcribe import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMedicalScribeStreamRequest, StartMedicalScribeStreamResponse } from "../models/models_0"; +import type { StartMedicalScribeStreamRequest, StartMedicalScribeStreamResponse } from "../models/models_0"; import { StartMedicalScribeStream } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeStreamingClientResolvedConfig, diff --git a/clients/client-transcribe-streaming/src/commands/StartMedicalStreamTranscriptionCommand.ts b/clients/client-transcribe-streaming/src/commands/StartMedicalStreamTranscriptionCommand.ts index f4d86b0e0880a..f55e695dca839 100644 --- a/clients/client-transcribe-streaming/src/commands/StartMedicalStreamTranscriptionCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/StartMedicalStreamTranscriptionCommand.ts @@ -4,12 +4,15 @@ import { getTranscribeStreamingPlugin } from "@aws-sdk/middleware-sdk-transcribe import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMedicalStreamTranscriptionRequest, StartMedicalStreamTranscriptionResponse } from "../models/models_0"; +import type { + StartMedicalStreamTranscriptionRequest, + StartMedicalStreamTranscriptionResponse, +} from "../models/models_0"; import { StartMedicalStreamTranscription } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeStreamingClientResolvedConfig, diff --git a/clients/client-transcribe-streaming/src/commands/StartStreamTranscriptionCommand.ts b/clients/client-transcribe-streaming/src/commands/StartStreamTranscriptionCommand.ts index 01101225c1725..d1e0033c69460 100644 --- a/clients/client-transcribe-streaming/src/commands/StartStreamTranscriptionCommand.ts +++ b/clients/client-transcribe-streaming/src/commands/StartStreamTranscriptionCommand.ts @@ -4,12 +4,12 @@ import { getTranscribeStreamingPlugin } from "@aws-sdk/middleware-sdk-transcribe import { getWebSocketPlugin } from "@aws-sdk/middleware-websocket"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartStreamTranscriptionRequest, StartStreamTranscriptionResponse } from "../models/models_0"; +import type { StartStreamTranscriptionRequest, StartStreamTranscriptionResponse } from "../models/models_0"; import { StartStreamTranscription } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeStreamingClientResolvedConfig, diff --git a/clients/client-transcribe-streaming/src/endpoint/EndpointParameters.ts b/clients/client-transcribe-streaming/src/endpoint/EndpointParameters.ts index 1473b29d91795..a42858a588f4f 100644 --- a/clients/client-transcribe-streaming/src/endpoint/EndpointParameters.ts +++ b/clients/client-transcribe-streaming/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-transcribe-streaming/src/endpoint/endpointResolver.ts b/clients/client-transcribe-streaming/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-transcribe-streaming/src/endpoint/endpointResolver.ts +++ b/clients/client-transcribe-streaming/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-transcribe-streaming/src/extensionConfiguration.ts b/clients/client-transcribe-streaming/src/extensionConfiguration.ts index 76a86b118d3c1..be6fb5fef99e3 100644 --- a/clients/client-transcribe-streaming/src/extensionConfiguration.ts +++ b/clients/client-transcribe-streaming/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-transcribe-streaming/src/models/TranscribeStreamingServiceException.ts b/clients/client-transcribe-streaming/src/models/TranscribeStreamingServiceException.ts index cd80f654a42c6..69cd3f5ec3255 100644 --- a/clients/client-transcribe-streaming/src/models/TranscribeStreamingServiceException.ts +++ b/clients/client-transcribe-streaming/src/models/TranscribeStreamingServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-transcribe-streaming/src/models/errors.ts b/clients/client-transcribe-streaming/src/models/errors.ts index c4688f5c00699..3619d7f598a1d 100644 --- a/clients/client-transcribe-streaming/src/models/errors.ts +++ b/clients/client-transcribe-streaming/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { TranscribeStreamingServiceException as __BaseException } from "./TranscribeStreamingServiceException"; diff --git a/clients/client-transcribe-streaming/src/runtimeConfig.browser.ts b/clients/client-transcribe-streaming/src/runtimeConfig.browser.ts index ec8252ba198a2..9683c9481f546 100644 --- a/clients/client-transcribe-streaming/src/runtimeConfig.browser.ts +++ b/clients/client-transcribe-streaming/src/runtimeConfig.browser.ts @@ -13,12 +13,13 @@ import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smit import { eventStreamSerdeProvider } from "@smithy/eventstream-serde-browser"; import { FetchHttpHandler as HttpRequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TranscribeStreamingClientConfig } from "./TranscribeStreamingClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TranscribeStreamingClientConfig } from "./TranscribeStreamingClient"; /** * @internal diff --git a/clients/client-transcribe-streaming/src/runtimeConfig.native.ts b/clients/client-transcribe-streaming/src/runtimeConfig.native.ts index 2e896b0999573..409acc910d319 100644 --- a/clients/client-transcribe-streaming/src/runtimeConfig.native.ts +++ b/clients/client-transcribe-streaming/src/runtimeConfig.native.ts @@ -3,7 +3,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { eventStreamPayloadHandler } from "@aws-sdk/middleware-sdk-transcribe-streaming"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TranscribeStreamingClientConfig } from "./TranscribeStreamingClient"; +import type { TranscribeStreamingClientConfig } from "./TranscribeStreamingClient"; /** * @internal diff --git a/clients/client-transcribe-streaming/src/runtimeConfig.shared.ts b/clients/client-transcribe-streaming/src/runtimeConfig.shared.ts index f2116063e4036..2dc03724aa078 100644 --- a/clients/client-transcribe-streaming/src/runtimeConfig.shared.ts +++ b/clients/client-transcribe-streaming/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTranscribeStreamingHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TranscribeStreamingClientConfig } from "./TranscribeStreamingClient"; +import type { TranscribeStreamingClientConfig } from "./TranscribeStreamingClient"; /** * @internal diff --git a/clients/client-transcribe-streaming/src/runtimeConfig.ts b/clients/client-transcribe-streaming/src/runtimeConfig.ts index 272fe004c13e0..485386973e735 100644 --- a/clients/client-transcribe-streaming/src/runtimeConfig.ts +++ b/clients/client-transcribe-streaming/src/runtimeConfig.ts @@ -17,13 +17,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttp2Handler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TranscribeStreamingClientConfig } from "./TranscribeStreamingClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TranscribeStreamingClientConfig } from "./TranscribeStreamingClient"; /** * @internal diff --git a/clients/client-transcribe-streaming/src/runtimeExtensions.ts b/clients/client-transcribe-streaming/src/runtimeExtensions.ts index befa3dcf8cd09..e6a79225da758 100644 --- a/clients/client-transcribe-streaming/src/runtimeExtensions.ts +++ b/clients/client-transcribe-streaming/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TranscribeStreamingExtensionConfiguration } from "./extensionConfiguration"; +import type { TranscribeStreamingExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-transcribe-streaming/src/schemas/schemas_0.ts b/clients/client-transcribe-streaming/src/schemas/schemas_0.ts index cb4213d238f54..09f0f7bd533f1 100644 --- a/clients/client-transcribe-streaming/src/schemas/schemas_0.ts +++ b/clients/client-transcribe-streaming/src/schemas/schemas_0.ts @@ -203,7 +203,7 @@ const n0 = "com.amazonaws.transcribestreaming"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-transcribe/package.json b/clients/client-transcribe/package.json index 9a2bfb0b0cd7b..1cb7c7b69a02e 100644 --- a/clients/client-transcribe/package.json +++ b/clients/client-transcribe/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-transcribe/src/Transcribe.ts b/clients/client-transcribe/src/Transcribe.ts index 22081f8681d58..ced64b70de64c 100644 --- a/clients/client-transcribe/src/Transcribe.ts +++ b/clients/client-transcribe/src/Transcribe.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateCallAnalyticsCategoryCommand, @@ -213,7 +213,7 @@ import { UpdateVocabularyFilterCommandInput, UpdateVocabularyFilterCommandOutput, } from "./commands/UpdateVocabularyFilterCommand"; -import { TranscribeClient, TranscribeClientConfig } from "./TranscribeClient"; +import { TranscribeClient } from "./TranscribeClient"; const commands = { CreateCallAnalyticsCategoryCommand, diff --git a/clients/client-transcribe/src/TranscribeClient.ts b/clients/client-transcribe/src/TranscribeClient.ts index 4ab75086ee0a4..7f92ee5f38106 100644 --- a/clients/client-transcribe/src/TranscribeClient.ts +++ b/clients/client-transcribe/src/TranscribeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTranscribeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -212,7 +221,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-transcribe/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-transcribe/src/auth/httpAuthExtensionConfiguration.ts index 4028a2da3422c..d949c5fbbf1a8 100644 --- a/clients/client-transcribe/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-transcribe/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TranscribeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TranscribeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-transcribe/src/auth/httpAuthSchemeProvider.ts b/clients/client-transcribe/src/auth/httpAuthSchemeProvider.ts index 967649c5098fa..435db4a7400d7 100644 --- a/clients/client-transcribe/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-transcribe/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TranscribeClientConfig, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import { type TranscribeClientResolvedConfig, TranscribeClientConfig } from "../TranscribeClient"; /** * @internal diff --git a/clients/client-transcribe/src/commands/CreateCallAnalyticsCategoryCommand.ts b/clients/client-transcribe/src/commands/CreateCallAnalyticsCategoryCommand.ts index 5b877e6b97a92..eb0db3faffef2 100644 --- a/clients/client-transcribe/src/commands/CreateCallAnalyticsCategoryCommand.ts +++ b/clients/client-transcribe/src/commands/CreateCallAnalyticsCategoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCallAnalyticsCategoryRequest, CreateCallAnalyticsCategoryResponse } from "../models/models_0"; +import type { CreateCallAnalyticsCategoryRequest, CreateCallAnalyticsCategoryResponse } from "../models/models_0"; import { CreateCallAnalyticsCategory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/CreateLanguageModelCommand.ts b/clients/client-transcribe/src/commands/CreateLanguageModelCommand.ts index 7a7d17b6a0033..c100f96e4edf7 100644 --- a/clients/client-transcribe/src/commands/CreateLanguageModelCommand.ts +++ b/clients/client-transcribe/src/commands/CreateLanguageModelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLanguageModelRequest, CreateLanguageModelResponse } from "../models/models_0"; +import type { CreateLanguageModelRequest, CreateLanguageModelResponse } from "../models/models_0"; import { CreateLanguageModel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/CreateMedicalVocabularyCommand.ts b/clients/client-transcribe/src/commands/CreateMedicalVocabularyCommand.ts index 1ef1126a28d11..d9591dfe829b2 100644 --- a/clients/client-transcribe/src/commands/CreateMedicalVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/CreateMedicalVocabularyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMedicalVocabularyRequest, CreateMedicalVocabularyResponse } from "../models/models_0"; +import type { CreateMedicalVocabularyRequest, CreateMedicalVocabularyResponse } from "../models/models_0"; import { CreateMedicalVocabulary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/CreateVocabularyCommand.ts b/clients/client-transcribe/src/commands/CreateVocabularyCommand.ts index a86cd2f6613a0..a3ebca76a33a0 100644 --- a/clients/client-transcribe/src/commands/CreateVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/CreateVocabularyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVocabularyRequest, CreateVocabularyResponse } from "../models/models_0"; +import type { CreateVocabularyRequest, CreateVocabularyResponse } from "../models/models_0"; import { CreateVocabulary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/CreateVocabularyFilterCommand.ts b/clients/client-transcribe/src/commands/CreateVocabularyFilterCommand.ts index b515a8d15fff5..4c80c2f62bf97 100644 --- a/clients/client-transcribe/src/commands/CreateVocabularyFilterCommand.ts +++ b/clients/client-transcribe/src/commands/CreateVocabularyFilterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVocabularyFilterRequest, CreateVocabularyFilterResponse } from "../models/models_0"; +import type { CreateVocabularyFilterRequest, CreateVocabularyFilterResponse } from "../models/models_0"; import { CreateVocabularyFilter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DeleteCallAnalyticsCategoryCommand.ts b/clients/client-transcribe/src/commands/DeleteCallAnalyticsCategoryCommand.ts index 4538cf7c1a34b..a644a8818ae4f 100644 --- a/clients/client-transcribe/src/commands/DeleteCallAnalyticsCategoryCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteCallAnalyticsCategoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCallAnalyticsCategoryRequest, DeleteCallAnalyticsCategoryResponse } from "../models/models_0"; +import type { DeleteCallAnalyticsCategoryRequest, DeleteCallAnalyticsCategoryResponse } from "../models/models_0"; import { DeleteCallAnalyticsCategory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DeleteCallAnalyticsJobCommand.ts b/clients/client-transcribe/src/commands/DeleteCallAnalyticsJobCommand.ts index c8d28d93310b3..361ca3b58c318 100644 --- a/clients/client-transcribe/src/commands/DeleteCallAnalyticsJobCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteCallAnalyticsJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCallAnalyticsJobRequest, DeleteCallAnalyticsJobResponse } from "../models/models_0"; +import type { DeleteCallAnalyticsJobRequest, DeleteCallAnalyticsJobResponse } from "../models/models_0"; import { DeleteCallAnalyticsJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DeleteLanguageModelCommand.ts b/clients/client-transcribe/src/commands/DeleteLanguageModelCommand.ts index a9aa656f8c076..76e0b0d7115ee 100644 --- a/clients/client-transcribe/src/commands/DeleteLanguageModelCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteLanguageModelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLanguageModelRequest } from "../models/models_0"; +import type { DeleteLanguageModelRequest } from "../models/models_0"; import { DeleteLanguageModel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DeleteMedicalScribeJobCommand.ts b/clients/client-transcribe/src/commands/DeleteMedicalScribeJobCommand.ts index f51c9ee170019..0c28f9e469219 100644 --- a/clients/client-transcribe/src/commands/DeleteMedicalScribeJobCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteMedicalScribeJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMedicalScribeJobRequest } from "../models/models_0"; +import type { DeleteMedicalScribeJobRequest } from "../models/models_0"; import { DeleteMedicalScribeJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DeleteMedicalTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/DeleteMedicalTranscriptionJobCommand.ts index e95c1a5571f29..d642f811828bb 100644 --- a/clients/client-transcribe/src/commands/DeleteMedicalTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteMedicalTranscriptionJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMedicalTranscriptionJobRequest } from "../models/models_0"; +import type { DeleteMedicalTranscriptionJobRequest } from "../models/models_0"; import { DeleteMedicalTranscriptionJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DeleteMedicalVocabularyCommand.ts b/clients/client-transcribe/src/commands/DeleteMedicalVocabularyCommand.ts index 838048cf04553..e994b9729754a 100644 --- a/clients/client-transcribe/src/commands/DeleteMedicalVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteMedicalVocabularyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMedicalVocabularyRequest } from "../models/models_0"; +import type { DeleteMedicalVocabularyRequest } from "../models/models_0"; import { DeleteMedicalVocabulary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DeleteTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/DeleteTranscriptionJobCommand.ts index 2357cf74185e1..273c899638446 100644 --- a/clients/client-transcribe/src/commands/DeleteTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteTranscriptionJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTranscriptionJobRequest } from "../models/models_0"; +import type { DeleteTranscriptionJobRequest } from "../models/models_0"; import { DeleteTranscriptionJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DeleteVocabularyCommand.ts b/clients/client-transcribe/src/commands/DeleteVocabularyCommand.ts index 40c1414411a84..d87b5a6902a81 100644 --- a/clients/client-transcribe/src/commands/DeleteVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteVocabularyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVocabularyRequest } from "../models/models_0"; +import type { DeleteVocabularyRequest } from "../models/models_0"; import { DeleteVocabulary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DeleteVocabularyFilterCommand.ts b/clients/client-transcribe/src/commands/DeleteVocabularyFilterCommand.ts index 10dafaf661c92..1d68341a4f5dc 100644 --- a/clients/client-transcribe/src/commands/DeleteVocabularyFilterCommand.ts +++ b/clients/client-transcribe/src/commands/DeleteVocabularyFilterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVocabularyFilterRequest } from "../models/models_0"; +import type { DeleteVocabularyFilterRequest } from "../models/models_0"; import { DeleteVocabularyFilter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/DescribeLanguageModelCommand.ts b/clients/client-transcribe/src/commands/DescribeLanguageModelCommand.ts index 8f27e37ca80f8..e857690de8929 100644 --- a/clients/client-transcribe/src/commands/DescribeLanguageModelCommand.ts +++ b/clients/client-transcribe/src/commands/DescribeLanguageModelCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeLanguageModelRequest, DescribeLanguageModelResponse } from "../models/models_0"; +import type { DescribeLanguageModelRequest, DescribeLanguageModelResponse } from "../models/models_0"; import { DescribeLanguageModel } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/GetCallAnalyticsCategoryCommand.ts b/clients/client-transcribe/src/commands/GetCallAnalyticsCategoryCommand.ts index 16d1ebf037ef4..391570b522a14 100644 --- a/clients/client-transcribe/src/commands/GetCallAnalyticsCategoryCommand.ts +++ b/clients/client-transcribe/src/commands/GetCallAnalyticsCategoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCallAnalyticsCategoryRequest, GetCallAnalyticsCategoryResponse } from "../models/models_0"; +import type { GetCallAnalyticsCategoryRequest, GetCallAnalyticsCategoryResponse } from "../models/models_0"; import { GetCallAnalyticsCategory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts b/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts index d0fdb947163ae..b150ad1f2da77 100644 --- a/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts +++ b/clients/client-transcribe/src/commands/GetCallAnalyticsJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCallAnalyticsJobRequest, GetCallAnalyticsJobResponse } from "../models/models_0"; +import type { GetCallAnalyticsJobRequest, GetCallAnalyticsJobResponse } from "../models/models_0"; import { GetCallAnalyticsJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/GetMedicalScribeJobCommand.ts b/clients/client-transcribe/src/commands/GetMedicalScribeJobCommand.ts index ee3f0f4cf1126..23b20558c5153 100644 --- a/clients/client-transcribe/src/commands/GetMedicalScribeJobCommand.ts +++ b/clients/client-transcribe/src/commands/GetMedicalScribeJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMedicalScribeJobRequest, GetMedicalScribeJobResponse } from "../models/models_0"; +import type { GetMedicalScribeJobRequest, GetMedicalScribeJobResponse } from "../models/models_0"; import { GetMedicalScribeJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts index 4a8b4ca0704dd..58db215e37f83 100644 --- a/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/GetMedicalTranscriptionJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMedicalTranscriptionJobRequest, GetMedicalTranscriptionJobResponse } from "../models/models_0"; +import type { GetMedicalTranscriptionJobRequest, GetMedicalTranscriptionJobResponse } from "../models/models_0"; import { GetMedicalTranscriptionJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/GetMedicalVocabularyCommand.ts b/clients/client-transcribe/src/commands/GetMedicalVocabularyCommand.ts index 6caa4c294b444..1784fe80325df 100644 --- a/clients/client-transcribe/src/commands/GetMedicalVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/GetMedicalVocabularyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMedicalVocabularyRequest, GetMedicalVocabularyResponse } from "../models/models_0"; +import type { GetMedicalVocabularyRequest, GetMedicalVocabularyResponse } from "../models/models_0"; import { GetMedicalVocabulary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts index e14c0d5543c20..153ba7c750343 100644 --- a/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/GetTranscriptionJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTranscriptionJobRequest, GetTranscriptionJobResponse } from "../models/models_0"; +import type { GetTranscriptionJobRequest, GetTranscriptionJobResponse } from "../models/models_0"; import { GetTranscriptionJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/GetVocabularyCommand.ts b/clients/client-transcribe/src/commands/GetVocabularyCommand.ts index 86729913925fe..ca47ac0ba8a49 100644 --- a/clients/client-transcribe/src/commands/GetVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/GetVocabularyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVocabularyRequest, GetVocabularyResponse } from "../models/models_0"; +import type { GetVocabularyRequest, GetVocabularyResponse } from "../models/models_0"; import { GetVocabulary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/GetVocabularyFilterCommand.ts b/clients/client-transcribe/src/commands/GetVocabularyFilterCommand.ts index 0c56641bc1237..d105aa04faf6b 100644 --- a/clients/client-transcribe/src/commands/GetVocabularyFilterCommand.ts +++ b/clients/client-transcribe/src/commands/GetVocabularyFilterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetVocabularyFilterRequest, GetVocabularyFilterResponse } from "../models/models_0"; +import type { GetVocabularyFilterRequest, GetVocabularyFilterResponse } from "../models/models_0"; import { GetVocabularyFilter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListCallAnalyticsCategoriesCommand.ts b/clients/client-transcribe/src/commands/ListCallAnalyticsCategoriesCommand.ts index aed92a82d803f..69e4809328339 100644 --- a/clients/client-transcribe/src/commands/ListCallAnalyticsCategoriesCommand.ts +++ b/clients/client-transcribe/src/commands/ListCallAnalyticsCategoriesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCallAnalyticsCategoriesRequest, ListCallAnalyticsCategoriesResponse } from "../models/models_0"; +import type { ListCallAnalyticsCategoriesRequest, ListCallAnalyticsCategoriesResponse } from "../models/models_0"; import { ListCallAnalyticsCategories } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListCallAnalyticsJobsCommand.ts b/clients/client-transcribe/src/commands/ListCallAnalyticsJobsCommand.ts index e4717950fd260..b587a5bd9f41a 100644 --- a/clients/client-transcribe/src/commands/ListCallAnalyticsJobsCommand.ts +++ b/clients/client-transcribe/src/commands/ListCallAnalyticsJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCallAnalyticsJobsRequest, ListCallAnalyticsJobsResponse } from "../models/models_0"; +import type { ListCallAnalyticsJobsRequest, ListCallAnalyticsJobsResponse } from "../models/models_0"; import { ListCallAnalyticsJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListLanguageModelsCommand.ts b/clients/client-transcribe/src/commands/ListLanguageModelsCommand.ts index 53eda2160c8c2..b86405814968c 100644 --- a/clients/client-transcribe/src/commands/ListLanguageModelsCommand.ts +++ b/clients/client-transcribe/src/commands/ListLanguageModelsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLanguageModelsRequest, ListLanguageModelsResponse } from "../models/models_0"; +import type { ListLanguageModelsRequest, ListLanguageModelsResponse } from "../models/models_0"; import { ListLanguageModels } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListMedicalScribeJobsCommand.ts b/clients/client-transcribe/src/commands/ListMedicalScribeJobsCommand.ts index 55d551b4e8b30..044d7e301c25b 100644 --- a/clients/client-transcribe/src/commands/ListMedicalScribeJobsCommand.ts +++ b/clients/client-transcribe/src/commands/ListMedicalScribeJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMedicalScribeJobsRequest, ListMedicalScribeJobsResponse } from "../models/models_0"; +import type { ListMedicalScribeJobsRequest, ListMedicalScribeJobsResponse } from "../models/models_0"; import { ListMedicalScribeJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListMedicalTranscriptionJobsCommand.ts b/clients/client-transcribe/src/commands/ListMedicalTranscriptionJobsCommand.ts index 0d2036d99f1b7..68364a9f38930 100644 --- a/clients/client-transcribe/src/commands/ListMedicalTranscriptionJobsCommand.ts +++ b/clients/client-transcribe/src/commands/ListMedicalTranscriptionJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMedicalTranscriptionJobsRequest, ListMedicalTranscriptionJobsResponse } from "../models/models_0"; +import type { ListMedicalTranscriptionJobsRequest, ListMedicalTranscriptionJobsResponse } from "../models/models_0"; import { ListMedicalTranscriptionJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListMedicalVocabulariesCommand.ts b/clients/client-transcribe/src/commands/ListMedicalVocabulariesCommand.ts index e4546764f5bbc..0cdb4c3b0bd17 100644 --- a/clients/client-transcribe/src/commands/ListMedicalVocabulariesCommand.ts +++ b/clients/client-transcribe/src/commands/ListMedicalVocabulariesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMedicalVocabulariesRequest, ListMedicalVocabulariesResponse } from "../models/models_0"; +import type { ListMedicalVocabulariesRequest, ListMedicalVocabulariesResponse } from "../models/models_0"; import { ListMedicalVocabularies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListTagsForResourceCommand.ts b/clients/client-transcribe/src/commands/ListTagsForResourceCommand.ts index 13374ec6ed397..2c6ed69fe128e 100644 --- a/clients/client-transcribe/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-transcribe/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListTranscriptionJobsCommand.ts b/clients/client-transcribe/src/commands/ListTranscriptionJobsCommand.ts index 922baff88d881..a454750ff3c87 100644 --- a/clients/client-transcribe/src/commands/ListTranscriptionJobsCommand.ts +++ b/clients/client-transcribe/src/commands/ListTranscriptionJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTranscriptionJobsRequest, ListTranscriptionJobsResponse } from "../models/models_0"; +import type { ListTranscriptionJobsRequest, ListTranscriptionJobsResponse } from "../models/models_0"; import { ListTranscriptionJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListVocabulariesCommand.ts b/clients/client-transcribe/src/commands/ListVocabulariesCommand.ts index 937f6a5fffeed..6a1e7da9e3408 100644 --- a/clients/client-transcribe/src/commands/ListVocabulariesCommand.ts +++ b/clients/client-transcribe/src/commands/ListVocabulariesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVocabulariesRequest, ListVocabulariesResponse } from "../models/models_0"; +import type { ListVocabulariesRequest, ListVocabulariesResponse } from "../models/models_0"; import { ListVocabularies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/ListVocabularyFiltersCommand.ts b/clients/client-transcribe/src/commands/ListVocabularyFiltersCommand.ts index 60cfeff594695..fbf9bc17f5554 100644 --- a/clients/client-transcribe/src/commands/ListVocabularyFiltersCommand.ts +++ b/clients/client-transcribe/src/commands/ListVocabularyFiltersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListVocabularyFiltersRequest, ListVocabularyFiltersResponse } from "../models/models_0"; +import type { ListVocabularyFiltersRequest, ListVocabularyFiltersResponse } from "../models/models_0"; import { ListVocabularyFilters } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts b/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts index d08adf2fae6e4..6e97db9ba2e55 100644 --- a/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts +++ b/clients/client-transcribe/src/commands/StartCallAnalyticsJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartCallAnalyticsJobRequest, StartCallAnalyticsJobResponse } from "../models/models_0"; +import type { StartCallAnalyticsJobRequest, StartCallAnalyticsJobResponse } from "../models/models_0"; import { StartCallAnalyticsJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/StartMedicalScribeJobCommand.ts b/clients/client-transcribe/src/commands/StartMedicalScribeJobCommand.ts index f023dc9a2c1f5..fe07138ac1eb7 100644 --- a/clients/client-transcribe/src/commands/StartMedicalScribeJobCommand.ts +++ b/clients/client-transcribe/src/commands/StartMedicalScribeJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMedicalScribeJobRequest, StartMedicalScribeJobResponse } from "../models/models_0"; +import type { StartMedicalScribeJobRequest, StartMedicalScribeJobResponse } from "../models/models_0"; import { StartMedicalScribeJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts index a07fa593db458..ac644a20452fc 100644 --- a/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/StartMedicalTranscriptionJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMedicalTranscriptionJobRequest, StartMedicalTranscriptionJobResponse } from "../models/models_0"; +import type { StartMedicalTranscriptionJobRequest, StartMedicalTranscriptionJobResponse } from "../models/models_0"; import { StartMedicalTranscriptionJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts b/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts index 293b201354672..8fed254ab45bb 100644 --- a/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts +++ b/clients/client-transcribe/src/commands/StartTranscriptionJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTranscriptionJobRequest, StartTranscriptionJobResponse } from "../models/models_0"; +import type { StartTranscriptionJobRequest, StartTranscriptionJobResponse } from "../models/models_0"; import { StartTranscriptionJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/TagResourceCommand.ts b/clients/client-transcribe/src/commands/TagResourceCommand.ts index 8df6bd5e04225..54ea28cc55a51 100644 --- a/clients/client-transcribe/src/commands/TagResourceCommand.ts +++ b/clients/client-transcribe/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/UntagResourceCommand.ts b/clients/client-transcribe/src/commands/UntagResourceCommand.ts index bf7928bd1c7d7..f198efc7790b7 100644 --- a/clients/client-transcribe/src/commands/UntagResourceCommand.ts +++ b/clients/client-transcribe/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/UpdateCallAnalyticsCategoryCommand.ts b/clients/client-transcribe/src/commands/UpdateCallAnalyticsCategoryCommand.ts index 99988e89d4dce..4deeac89563f6 100644 --- a/clients/client-transcribe/src/commands/UpdateCallAnalyticsCategoryCommand.ts +++ b/clients/client-transcribe/src/commands/UpdateCallAnalyticsCategoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCallAnalyticsCategoryRequest, UpdateCallAnalyticsCategoryResponse } from "../models/models_0"; +import type { UpdateCallAnalyticsCategoryRequest, UpdateCallAnalyticsCategoryResponse } from "../models/models_0"; import { UpdateCallAnalyticsCategory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/UpdateMedicalVocabularyCommand.ts b/clients/client-transcribe/src/commands/UpdateMedicalVocabularyCommand.ts index e2511c0207ad4..575aecbc122f5 100644 --- a/clients/client-transcribe/src/commands/UpdateMedicalVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/UpdateMedicalVocabularyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMedicalVocabularyRequest, UpdateMedicalVocabularyResponse } from "../models/models_0"; +import type { UpdateMedicalVocabularyRequest, UpdateMedicalVocabularyResponse } from "../models/models_0"; import { UpdateMedicalVocabulary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/UpdateVocabularyCommand.ts b/clients/client-transcribe/src/commands/UpdateVocabularyCommand.ts index fc75971eeab6f..9c7390b928a75 100644 --- a/clients/client-transcribe/src/commands/UpdateVocabularyCommand.ts +++ b/clients/client-transcribe/src/commands/UpdateVocabularyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVocabularyRequest, UpdateVocabularyResponse } from "../models/models_0"; +import type { UpdateVocabularyRequest, UpdateVocabularyResponse } from "../models/models_0"; import { UpdateVocabulary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/commands/UpdateVocabularyFilterCommand.ts b/clients/client-transcribe/src/commands/UpdateVocabularyFilterCommand.ts index 7123914623298..d78268ee25ff8 100644 --- a/clients/client-transcribe/src/commands/UpdateVocabularyFilterCommand.ts +++ b/clients/client-transcribe/src/commands/UpdateVocabularyFilterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateVocabularyFilterRequest, UpdateVocabularyFilterResponse } from "../models/models_0"; +import type { UpdateVocabularyFilterRequest, UpdateVocabularyFilterResponse } from "../models/models_0"; import { UpdateVocabularyFilter } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient"; /** * @public diff --git a/clients/client-transcribe/src/endpoint/EndpointParameters.ts b/clients/client-transcribe/src/endpoint/EndpointParameters.ts index 1473b29d91795..a42858a588f4f 100644 --- a/clients/client-transcribe/src/endpoint/EndpointParameters.ts +++ b/clients/client-transcribe/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-transcribe/src/endpoint/endpointResolver.ts b/clients/client-transcribe/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-transcribe/src/endpoint/endpointResolver.ts +++ b/clients/client-transcribe/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-transcribe/src/extensionConfiguration.ts b/clients/client-transcribe/src/extensionConfiguration.ts index 18b97c32d5d2c..538d0380efe15 100644 --- a/clients/client-transcribe/src/extensionConfiguration.ts +++ b/clients/client-transcribe/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-transcribe/src/models/TranscribeServiceException.ts b/clients/client-transcribe/src/models/TranscribeServiceException.ts index e8264766f8b25..63c3935097b2a 100644 --- a/clients/client-transcribe/src/models/TranscribeServiceException.ts +++ b/clients/client-transcribe/src/models/TranscribeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-transcribe/src/models/errors.ts b/clients/client-transcribe/src/models/errors.ts index e12edccc7d70c..4b035a9018ca9 100644 --- a/clients/client-transcribe/src/models/errors.ts +++ b/clients/client-transcribe/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { TranscribeServiceException as __BaseException } from "./TranscribeServiceException"; diff --git a/clients/client-transcribe/src/pagination/Interfaces.ts b/clients/client-transcribe/src/pagination/Interfaces.ts index 71b3d4cabadea..e96ec3c6d99d6 100644 --- a/clients/client-transcribe/src/pagination/Interfaces.ts +++ b/clients/client-transcribe/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TranscribeClient } from "../TranscribeClient"; diff --git a/clients/client-transcribe/src/pagination/ListCallAnalyticsCategoriesPaginator.ts b/clients/client-transcribe/src/pagination/ListCallAnalyticsCategoriesPaginator.ts index ef63d9bc65d73..83e7f556e8321 100644 --- a/clients/client-transcribe/src/pagination/ListCallAnalyticsCategoriesPaginator.ts +++ b/clients/client-transcribe/src/pagination/ListCallAnalyticsCategoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCallAnalyticsCategoriesCommand, diff --git a/clients/client-transcribe/src/pagination/ListCallAnalyticsJobsPaginator.ts b/clients/client-transcribe/src/pagination/ListCallAnalyticsJobsPaginator.ts index 4bd855068083f..d82166e60cc8f 100644 --- a/clients/client-transcribe/src/pagination/ListCallAnalyticsJobsPaginator.ts +++ b/clients/client-transcribe/src/pagination/ListCallAnalyticsJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCallAnalyticsJobsCommand, diff --git a/clients/client-transcribe/src/pagination/ListLanguageModelsPaginator.ts b/clients/client-transcribe/src/pagination/ListLanguageModelsPaginator.ts index 42346df382479..993abba67bd0d 100644 --- a/clients/client-transcribe/src/pagination/ListLanguageModelsPaginator.ts +++ b/clients/client-transcribe/src/pagination/ListLanguageModelsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLanguageModelsCommand, diff --git a/clients/client-transcribe/src/pagination/ListMedicalScribeJobsPaginator.ts b/clients/client-transcribe/src/pagination/ListMedicalScribeJobsPaginator.ts index 77b1b094364f7..3b16331869025 100644 --- a/clients/client-transcribe/src/pagination/ListMedicalScribeJobsPaginator.ts +++ b/clients/client-transcribe/src/pagination/ListMedicalScribeJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMedicalScribeJobsCommand, diff --git a/clients/client-transcribe/src/pagination/ListMedicalTranscriptionJobsPaginator.ts b/clients/client-transcribe/src/pagination/ListMedicalTranscriptionJobsPaginator.ts index 6ffebf538145a..8bc3e5012d9fa 100644 --- a/clients/client-transcribe/src/pagination/ListMedicalTranscriptionJobsPaginator.ts +++ b/clients/client-transcribe/src/pagination/ListMedicalTranscriptionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMedicalTranscriptionJobsCommand, diff --git a/clients/client-transcribe/src/pagination/ListMedicalVocabulariesPaginator.ts b/clients/client-transcribe/src/pagination/ListMedicalVocabulariesPaginator.ts index 534299ab7961b..c88a687fcb9cb 100644 --- a/clients/client-transcribe/src/pagination/ListMedicalVocabulariesPaginator.ts +++ b/clients/client-transcribe/src/pagination/ListMedicalVocabulariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMedicalVocabulariesCommand, diff --git a/clients/client-transcribe/src/pagination/ListTranscriptionJobsPaginator.ts b/clients/client-transcribe/src/pagination/ListTranscriptionJobsPaginator.ts index c8936ac111484..21573bb71fd26 100644 --- a/clients/client-transcribe/src/pagination/ListTranscriptionJobsPaginator.ts +++ b/clients/client-transcribe/src/pagination/ListTranscriptionJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTranscriptionJobsCommand, diff --git a/clients/client-transcribe/src/pagination/ListVocabulariesPaginator.ts b/clients/client-transcribe/src/pagination/ListVocabulariesPaginator.ts index 32c4d7355fbce..f0dca20e8cc9f 100644 --- a/clients/client-transcribe/src/pagination/ListVocabulariesPaginator.ts +++ b/clients/client-transcribe/src/pagination/ListVocabulariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVocabulariesCommand, diff --git a/clients/client-transcribe/src/pagination/ListVocabularyFiltersPaginator.ts b/clients/client-transcribe/src/pagination/ListVocabularyFiltersPaginator.ts index 322256783b05f..02bef9862d8bf 100644 --- a/clients/client-transcribe/src/pagination/ListVocabularyFiltersPaginator.ts +++ b/clients/client-transcribe/src/pagination/ListVocabularyFiltersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListVocabularyFiltersCommand, diff --git a/clients/client-transcribe/src/runtimeConfig.browser.ts b/clients/client-transcribe/src/runtimeConfig.browser.ts index 5b295f10bc094..20d975daba77a 100644 --- a/clients/client-transcribe/src/runtimeConfig.browser.ts +++ b/clients/client-transcribe/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TranscribeClientConfig } from "./TranscribeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TranscribeClientConfig } from "./TranscribeClient"; /** * @internal diff --git a/clients/client-transcribe/src/runtimeConfig.native.ts b/clients/client-transcribe/src/runtimeConfig.native.ts index 02e4a3896d8c1..6021d3ccd7a3e 100644 --- a/clients/client-transcribe/src/runtimeConfig.native.ts +++ b/clients/client-transcribe/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TranscribeClientConfig } from "./TranscribeClient"; +import type { TranscribeClientConfig } from "./TranscribeClient"; /** * @internal diff --git a/clients/client-transcribe/src/runtimeConfig.shared.ts b/clients/client-transcribe/src/runtimeConfig.shared.ts index 717bd8ed59d81..7829b08ac1091 100644 --- a/clients/client-transcribe/src/runtimeConfig.shared.ts +++ b/clients/client-transcribe/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTranscribeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TranscribeClientConfig } from "./TranscribeClient"; +import type { TranscribeClientConfig } from "./TranscribeClient"; /** * @internal diff --git a/clients/client-transcribe/src/runtimeConfig.ts b/clients/client-transcribe/src/runtimeConfig.ts index bb56c6dd18efe..8b586a9103dbd 100644 --- a/clients/client-transcribe/src/runtimeConfig.ts +++ b/clients/client-transcribe/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TranscribeClientConfig } from "./TranscribeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TranscribeClientConfig } from "./TranscribeClient"; /** * @internal diff --git a/clients/client-transcribe/src/runtimeExtensions.ts b/clients/client-transcribe/src/runtimeExtensions.ts index 04a17a752942a..5b2908409c520 100644 --- a/clients/client-transcribe/src/runtimeExtensions.ts +++ b/clients/client-transcribe/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TranscribeExtensionConfiguration } from "./extensionConfiguration"; +import type { TranscribeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-transcribe/src/schemas/schemas_0.ts b/clients/client-transcribe/src/schemas/schemas_0.ts index 23aa7001ab24c..4096589dfc268 100644 --- a/clients/client-transcribe/src/schemas/schemas_0.ts +++ b/clients/client-transcribe/src/schemas/schemas_0.ts @@ -303,7 +303,7 @@ const n0 = "com.amazonaws.transcribe"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-transfer/package.json b/clients/client-transfer/package.json index a68d485b5c96b..251c0d472e8f5 100644 --- a/clients/client-transfer/package.json +++ b/clients/client-transfer/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-transfer/src/Transfer.ts b/clients/client-transfer/src/Transfer.ts index 5b14d607ca543..d65424f15757a 100644 --- a/clients/client-transfer/src/Transfer.ts +++ b/clients/client-transfer/src/Transfer.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAccessCommand, @@ -321,7 +321,7 @@ import { UpdateWebAppCustomizationCommandInput, UpdateWebAppCustomizationCommandOutput, } from "./commands/UpdateWebAppCustomizationCommand"; -import { TransferClient, TransferClientConfig } from "./TransferClient"; +import { TransferClient } from "./TransferClient"; const commands = { CreateAccessCommand, diff --git a/clients/client-transfer/src/TransferClient.ts b/clients/client-transfer/src/TransferClient.ts index 938144b480373..d29d7e9a9fbff 100644 --- a/clients/client-transfer/src/TransferClient.ts +++ b/clients/client-transfer/src/TransferClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTransferHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateAccessCommandInput, CreateAccessCommandOutput } from "./commands/CreateAccessCommand"; @@ -168,7 +177,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-transfer/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-transfer/src/auth/httpAuthExtensionConfiguration.ts index 3cba952ef5c8e..4e36e014fd9a4 100644 --- a/clients/client-transfer/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-transfer/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TransferHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TransferHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-transfer/src/auth/httpAuthSchemeProvider.ts b/clients/client-transfer/src/auth/httpAuthSchemeProvider.ts index 82df88fad89e4..7ad7606751cd5 100644 --- a/clients/client-transfer/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-transfer/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TransferClientConfig, TransferClientResolvedConfig } from "../TransferClient"; +import { type TransferClientResolvedConfig, TransferClientConfig } from "../TransferClient"; /** * @internal diff --git a/clients/client-transfer/src/commands/CreateAccessCommand.ts b/clients/client-transfer/src/commands/CreateAccessCommand.ts index 82e14331cd5c7..98e9b40f41d21 100644 --- a/clients/client-transfer/src/commands/CreateAccessCommand.ts +++ b/clients/client-transfer/src/commands/CreateAccessCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessRequest, CreateAccessResponse } from "../models/models_0"; +import type { CreateAccessRequest, CreateAccessResponse } from "../models/models_0"; import { CreateAccess } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/CreateAgreementCommand.ts b/clients/client-transfer/src/commands/CreateAgreementCommand.ts index 7931de90b1ef3..b75632b5480bb 100644 --- a/clients/client-transfer/src/commands/CreateAgreementCommand.ts +++ b/clients/client-transfer/src/commands/CreateAgreementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAgreementRequest, CreateAgreementResponse } from "../models/models_0"; +import type { CreateAgreementRequest, CreateAgreementResponse } from "../models/models_0"; import { CreateAgreement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/CreateConnectorCommand.ts b/clients/client-transfer/src/commands/CreateConnectorCommand.ts index 6dad8f6970803..d0a1310692ed3 100644 --- a/clients/client-transfer/src/commands/CreateConnectorCommand.ts +++ b/clients/client-transfer/src/commands/CreateConnectorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0"; +import type { CreateConnectorRequest, CreateConnectorResponse } from "../models/models_0"; import { CreateConnector } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/CreateProfileCommand.ts b/clients/client-transfer/src/commands/CreateProfileCommand.ts index d15c025a9a646..971d99884570d 100644 --- a/clients/client-transfer/src/commands/CreateProfileCommand.ts +++ b/clients/client-transfer/src/commands/CreateProfileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProfileRequest, CreateProfileResponse } from "../models/models_0"; +import type { CreateProfileRequest, CreateProfileResponse } from "../models/models_0"; import { CreateProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/CreateServerCommand.ts b/clients/client-transfer/src/commands/CreateServerCommand.ts index a0db4090acafc..727a502a1e2d7 100644 --- a/clients/client-transfer/src/commands/CreateServerCommand.ts +++ b/clients/client-transfer/src/commands/CreateServerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServerRequest, CreateServerResponse } from "../models/models_0"; +import type { CreateServerRequest, CreateServerResponse } from "../models/models_0"; import { CreateServer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/CreateUserCommand.ts b/clients/client-transfer/src/commands/CreateUserCommand.ts index a57f73dd15392..004f710956087 100644 --- a/clients/client-transfer/src/commands/CreateUserCommand.ts +++ b/clients/client-transfer/src/commands/CreateUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/CreateWebAppCommand.ts b/clients/client-transfer/src/commands/CreateWebAppCommand.ts index b74bd4fd879b1..55e23e91307ae 100644 --- a/clients/client-transfer/src/commands/CreateWebAppCommand.ts +++ b/clients/client-transfer/src/commands/CreateWebAppCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebAppRequest, CreateWebAppResponse } from "../models/models_0"; +import type { CreateWebAppRequest, CreateWebAppResponse } from "../models/models_0"; import { CreateWebApp } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/CreateWorkflowCommand.ts b/clients/client-transfer/src/commands/CreateWorkflowCommand.ts index d4d7ea8706ea9..1117c3c0a6e93 100644 --- a/clients/client-transfer/src/commands/CreateWorkflowCommand.ts +++ b/clients/client-transfer/src/commands/CreateWorkflowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_0"; +import type { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_0"; import { CreateWorkflow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteAccessCommand.ts b/clients/client-transfer/src/commands/DeleteAccessCommand.ts index 03e10fba842a4..13b80badb1d85 100644 --- a/clients/client-transfer/src/commands/DeleteAccessCommand.ts +++ b/clients/client-transfer/src/commands/DeleteAccessCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessRequest } from "../models/models_0"; +import type { DeleteAccessRequest } from "../models/models_0"; import { DeleteAccess } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteAgreementCommand.ts b/clients/client-transfer/src/commands/DeleteAgreementCommand.ts index a7d8de4de3af3..abf849539b174 100644 --- a/clients/client-transfer/src/commands/DeleteAgreementCommand.ts +++ b/clients/client-transfer/src/commands/DeleteAgreementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAgreementRequest } from "../models/models_0"; +import type { DeleteAgreementRequest } from "../models/models_0"; import { DeleteAgreement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteCertificateCommand.ts b/clients/client-transfer/src/commands/DeleteCertificateCommand.ts index dc1038c90ab61..a9739647d1fd1 100644 --- a/clients/client-transfer/src/commands/DeleteCertificateCommand.ts +++ b/clients/client-transfer/src/commands/DeleteCertificateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCertificateRequest } from "../models/models_0"; +import type { DeleteCertificateRequest } from "../models/models_0"; import { DeleteCertificate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteConnectorCommand.ts b/clients/client-transfer/src/commands/DeleteConnectorCommand.ts index a0937f79434b7..b2134ee0a4537 100644 --- a/clients/client-transfer/src/commands/DeleteConnectorCommand.ts +++ b/clients/client-transfer/src/commands/DeleteConnectorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectorRequest } from "../models/models_0"; +import type { DeleteConnectorRequest } from "../models/models_0"; import { DeleteConnector } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteHostKeyCommand.ts b/clients/client-transfer/src/commands/DeleteHostKeyCommand.ts index d3be7910e6120..7e159360671e7 100644 --- a/clients/client-transfer/src/commands/DeleteHostKeyCommand.ts +++ b/clients/client-transfer/src/commands/DeleteHostKeyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteHostKeyRequest } from "../models/models_0"; +import type { DeleteHostKeyRequest } from "../models/models_0"; import { DeleteHostKey } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteProfileCommand.ts b/clients/client-transfer/src/commands/DeleteProfileCommand.ts index 8d180033a4e43..8e4b6cafe33dd 100644 --- a/clients/client-transfer/src/commands/DeleteProfileCommand.ts +++ b/clients/client-transfer/src/commands/DeleteProfileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfileRequest } from "../models/models_0"; +import type { DeleteProfileRequest } from "../models/models_0"; import { DeleteProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteServerCommand.ts b/clients/client-transfer/src/commands/DeleteServerCommand.ts index 3b4ec4b14d5f8..a15ff91238c03 100644 --- a/clients/client-transfer/src/commands/DeleteServerCommand.ts +++ b/clients/client-transfer/src/commands/DeleteServerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServerRequest } from "../models/models_0"; +import type { DeleteServerRequest } from "../models/models_0"; import { DeleteServer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteSshPublicKeyCommand.ts b/clients/client-transfer/src/commands/DeleteSshPublicKeyCommand.ts index 03bbe9978dbf7..f08a0f702c405 100644 --- a/clients/client-transfer/src/commands/DeleteSshPublicKeyCommand.ts +++ b/clients/client-transfer/src/commands/DeleteSshPublicKeyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSshPublicKeyRequest } from "../models/models_0"; +import type { DeleteSshPublicKeyRequest } from "../models/models_0"; import { DeleteSshPublicKey } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteUserCommand.ts b/clients/client-transfer/src/commands/DeleteUserCommand.ts index 27b0cd5f8e7ad..dbcb02ef40ace 100644 --- a/clients/client-transfer/src/commands/DeleteUserCommand.ts +++ b/clients/client-transfer/src/commands/DeleteUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest } from "../models/models_0"; +import type { DeleteUserRequest } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteWebAppCommand.ts b/clients/client-transfer/src/commands/DeleteWebAppCommand.ts index d1a3c8119c421..7acc4de9dae7e 100644 --- a/clients/client-transfer/src/commands/DeleteWebAppCommand.ts +++ b/clients/client-transfer/src/commands/DeleteWebAppCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebAppRequest } from "../models/models_0"; +import type { DeleteWebAppRequest } from "../models/models_0"; import { DeleteWebApp } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteWebAppCustomizationCommand.ts b/clients/client-transfer/src/commands/DeleteWebAppCustomizationCommand.ts index ded55c68bd021..bba6f12f2d890 100644 --- a/clients/client-transfer/src/commands/DeleteWebAppCustomizationCommand.ts +++ b/clients/client-transfer/src/commands/DeleteWebAppCustomizationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebAppCustomizationRequest } from "../models/models_0"; +import type { DeleteWebAppCustomizationRequest } from "../models/models_0"; import { DeleteWebAppCustomization } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DeleteWorkflowCommand.ts b/clients/client-transfer/src/commands/DeleteWorkflowCommand.ts index 80666d1cc0f4c..efd1504a32d97 100644 --- a/clients/client-transfer/src/commands/DeleteWorkflowCommand.ts +++ b/clients/client-transfer/src/commands/DeleteWorkflowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkflowRequest } from "../models/models_0"; +import type { DeleteWorkflowRequest } from "../models/models_0"; import { DeleteWorkflow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeAccessCommand.ts b/clients/client-transfer/src/commands/DescribeAccessCommand.ts index f798eab8ed6b3..d0f3454780416 100644 --- a/clients/client-transfer/src/commands/DescribeAccessCommand.ts +++ b/clients/client-transfer/src/commands/DescribeAccessCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccessRequest, DescribeAccessResponse } from "../models/models_0"; +import type { DescribeAccessRequest, DescribeAccessResponse } from "../models/models_0"; import { DescribeAccess } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeAgreementCommand.ts b/clients/client-transfer/src/commands/DescribeAgreementCommand.ts index 8a8a20df95bc0..eda6f7de94c0b 100644 --- a/clients/client-transfer/src/commands/DescribeAgreementCommand.ts +++ b/clients/client-transfer/src/commands/DescribeAgreementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAgreementRequest, DescribeAgreementResponse } from "../models/models_0"; +import type { DescribeAgreementRequest, DescribeAgreementResponse } from "../models/models_0"; import { DescribeAgreement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeCertificateCommand.ts b/clients/client-transfer/src/commands/DescribeCertificateCommand.ts index 7df6337048f65..abde23d9b8301 100644 --- a/clients/client-transfer/src/commands/DescribeCertificateCommand.ts +++ b/clients/client-transfer/src/commands/DescribeCertificateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCertificateRequest, DescribeCertificateResponse } from "../models/models_0"; +import type { DescribeCertificateRequest, DescribeCertificateResponse } from "../models/models_0"; import { DescribeCertificate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeConnectorCommand.ts b/clients/client-transfer/src/commands/DescribeConnectorCommand.ts index 3e04dc2eb3cf1..3c45aebae4546 100644 --- a/clients/client-transfer/src/commands/DescribeConnectorCommand.ts +++ b/clients/client-transfer/src/commands/DescribeConnectorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0"; +import type { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0"; import { DescribeConnector } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeExecutionCommand.ts b/clients/client-transfer/src/commands/DescribeExecutionCommand.ts index 2f18f5c9178e4..0394c4e6c22c6 100644 --- a/clients/client-transfer/src/commands/DescribeExecutionCommand.ts +++ b/clients/client-transfer/src/commands/DescribeExecutionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeExecutionRequest, DescribeExecutionResponse } from "../models/models_0"; +import type { DescribeExecutionRequest, DescribeExecutionResponse } from "../models/models_0"; import { DescribeExecution } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeHostKeyCommand.ts b/clients/client-transfer/src/commands/DescribeHostKeyCommand.ts index 6547e33100ba8..289eb364edd82 100644 --- a/clients/client-transfer/src/commands/DescribeHostKeyCommand.ts +++ b/clients/client-transfer/src/commands/DescribeHostKeyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeHostKeyRequest, DescribeHostKeyResponse } from "../models/models_0"; +import type { DescribeHostKeyRequest, DescribeHostKeyResponse } from "../models/models_0"; import { DescribeHostKey } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeProfileCommand.ts b/clients/client-transfer/src/commands/DescribeProfileCommand.ts index 57c57e15205b2..d29cd46ef0489 100644 --- a/clients/client-transfer/src/commands/DescribeProfileCommand.ts +++ b/clients/client-transfer/src/commands/DescribeProfileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeProfileRequest, DescribeProfileResponse } from "../models/models_0"; +import type { DescribeProfileRequest, DescribeProfileResponse } from "../models/models_0"; import { DescribeProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeSecurityPolicyCommand.ts b/clients/client-transfer/src/commands/DescribeSecurityPolicyCommand.ts index e9baa71a421be..1a422ec8538ab 100644 --- a/clients/client-transfer/src/commands/DescribeSecurityPolicyCommand.ts +++ b/clients/client-transfer/src/commands/DescribeSecurityPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSecurityPolicyRequest, DescribeSecurityPolicyResponse } from "../models/models_0"; +import type { DescribeSecurityPolicyRequest, DescribeSecurityPolicyResponse } from "../models/models_0"; import { DescribeSecurityPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeServerCommand.ts b/clients/client-transfer/src/commands/DescribeServerCommand.ts index 4c837b7bb9c7f..941c1317b22cd 100644 --- a/clients/client-transfer/src/commands/DescribeServerCommand.ts +++ b/clients/client-transfer/src/commands/DescribeServerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeServerRequest, DescribeServerResponse } from "../models/models_0"; +import type { DescribeServerRequest, DescribeServerResponse } from "../models/models_0"; import { DescribeServer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeUserCommand.ts b/clients/client-transfer/src/commands/DescribeUserCommand.ts index 7f24906e79124..c747dcfbd4032 100644 --- a/clients/client-transfer/src/commands/DescribeUserCommand.ts +++ b/clients/client-transfer/src/commands/DescribeUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserRequest, DescribeUserResponse } from "../models/models_0"; +import type { DescribeUserRequest, DescribeUserResponse } from "../models/models_0"; import { DescribeUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeWebAppCommand.ts b/clients/client-transfer/src/commands/DescribeWebAppCommand.ts index 6e428c8ec9c83..7b18433fbf25c 100644 --- a/clients/client-transfer/src/commands/DescribeWebAppCommand.ts +++ b/clients/client-transfer/src/commands/DescribeWebAppCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWebAppRequest, DescribeWebAppResponse } from "../models/models_0"; +import type { DescribeWebAppRequest, DescribeWebAppResponse } from "../models/models_0"; import { DescribeWebApp } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeWebAppCustomizationCommand.ts b/clients/client-transfer/src/commands/DescribeWebAppCustomizationCommand.ts index 159a924da4bf9..eb680f8fabe25 100644 --- a/clients/client-transfer/src/commands/DescribeWebAppCustomizationCommand.ts +++ b/clients/client-transfer/src/commands/DescribeWebAppCustomizationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWebAppCustomizationRequest, DescribeWebAppCustomizationResponse } from "../models/models_0"; +import type { DescribeWebAppCustomizationRequest, DescribeWebAppCustomizationResponse } from "../models/models_0"; import { DescribeWebAppCustomization } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/DescribeWorkflowCommand.ts b/clients/client-transfer/src/commands/DescribeWorkflowCommand.ts index 31afc8b4d54f7..f4bec97d4d08b 100644 --- a/clients/client-transfer/src/commands/DescribeWorkflowCommand.ts +++ b/clients/client-transfer/src/commands/DescribeWorkflowCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkflowRequest, DescribeWorkflowResponse } from "../models/models_0"; +import type { DescribeWorkflowRequest, DescribeWorkflowResponse } from "../models/models_0"; import { DescribeWorkflow } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ImportCertificateCommand.ts b/clients/client-transfer/src/commands/ImportCertificateCommand.ts index bab4fd55d7931..95b1fc1360da4 100644 --- a/clients/client-transfer/src/commands/ImportCertificateCommand.ts +++ b/clients/client-transfer/src/commands/ImportCertificateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportCertificateRequest, ImportCertificateResponse } from "../models/models_0"; +import type { ImportCertificateRequest, ImportCertificateResponse } from "../models/models_0"; import { ImportCertificate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ImportHostKeyCommand.ts b/clients/client-transfer/src/commands/ImportHostKeyCommand.ts index 20ee160c57c2c..a93085468a03e 100644 --- a/clients/client-transfer/src/commands/ImportHostKeyCommand.ts +++ b/clients/client-transfer/src/commands/ImportHostKeyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportHostKeyRequest, ImportHostKeyResponse } from "../models/models_0"; +import type { ImportHostKeyRequest, ImportHostKeyResponse } from "../models/models_0"; import { ImportHostKey } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ImportSshPublicKeyCommand.ts b/clients/client-transfer/src/commands/ImportSshPublicKeyCommand.ts index f74c4f96994b7..e1896b37acd50 100644 --- a/clients/client-transfer/src/commands/ImportSshPublicKeyCommand.ts +++ b/clients/client-transfer/src/commands/ImportSshPublicKeyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportSshPublicKeyRequest, ImportSshPublicKeyResponse } from "../models/models_0"; +import type { ImportSshPublicKeyRequest, ImportSshPublicKeyResponse } from "../models/models_0"; import { ImportSshPublicKey } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListAccessesCommand.ts b/clients/client-transfer/src/commands/ListAccessesCommand.ts index 9e71f8278cbbb..75f50a43e21a2 100644 --- a/clients/client-transfer/src/commands/ListAccessesCommand.ts +++ b/clients/client-transfer/src/commands/ListAccessesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessesRequest, ListAccessesResponse } from "../models/models_0"; +import type { ListAccessesRequest, ListAccessesResponse } from "../models/models_0"; import { ListAccesses } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListAgreementsCommand.ts b/clients/client-transfer/src/commands/ListAgreementsCommand.ts index e09359f0e927b..26ee299a7fe3b 100644 --- a/clients/client-transfer/src/commands/ListAgreementsCommand.ts +++ b/clients/client-transfer/src/commands/ListAgreementsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAgreementsRequest, ListAgreementsResponse } from "../models/models_0"; +import type { ListAgreementsRequest, ListAgreementsResponse } from "../models/models_0"; import { ListAgreements } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListCertificatesCommand.ts b/clients/client-transfer/src/commands/ListCertificatesCommand.ts index 8ba8dae5f59f6..6c1fceaf8c2a2 100644 --- a/clients/client-transfer/src/commands/ListCertificatesCommand.ts +++ b/clients/client-transfer/src/commands/ListCertificatesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_0"; +import type { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_0"; import { ListCertificates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListConnectorsCommand.ts b/clients/client-transfer/src/commands/ListConnectorsCommand.ts index fbe54d1be9815..9a45f6c042db9 100644 --- a/clients/client-transfer/src/commands/ListConnectorsCommand.ts +++ b/clients/client-transfer/src/commands/ListConnectorsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; +import type { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0"; import { ListConnectors } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListExecutionsCommand.ts b/clients/client-transfer/src/commands/ListExecutionsCommand.ts index 563741970c02d..394dd04ee5a6a 100644 --- a/clients/client-transfer/src/commands/ListExecutionsCommand.ts +++ b/clients/client-transfer/src/commands/ListExecutionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0"; +import type { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0"; import { ListExecutions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListFileTransferResultsCommand.ts b/clients/client-transfer/src/commands/ListFileTransferResultsCommand.ts index a8cafd3503564..bbe5c52ff63bb 100644 --- a/clients/client-transfer/src/commands/ListFileTransferResultsCommand.ts +++ b/clients/client-transfer/src/commands/ListFileTransferResultsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFileTransferResultsRequest, ListFileTransferResultsResponse } from "../models/models_0"; +import type { ListFileTransferResultsRequest, ListFileTransferResultsResponse } from "../models/models_0"; import { ListFileTransferResults } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListHostKeysCommand.ts b/clients/client-transfer/src/commands/ListHostKeysCommand.ts index c6214e7362774..3bd5a3ec4f8cb 100644 --- a/clients/client-transfer/src/commands/ListHostKeysCommand.ts +++ b/clients/client-transfer/src/commands/ListHostKeysCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListHostKeysRequest, ListHostKeysResponse } from "../models/models_0"; +import type { ListHostKeysRequest, ListHostKeysResponse } from "../models/models_0"; import { ListHostKeys } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListProfilesCommand.ts b/clients/client-transfer/src/commands/ListProfilesCommand.ts index d5298e641af08..a77181550e6b2 100644 --- a/clients/client-transfer/src/commands/ListProfilesCommand.ts +++ b/clients/client-transfer/src/commands/ListProfilesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfilesRequest, ListProfilesResponse } from "../models/models_0"; +import type { ListProfilesRequest, ListProfilesResponse } from "../models/models_0"; import { ListProfiles } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListSecurityPoliciesCommand.ts b/clients/client-transfer/src/commands/ListSecurityPoliciesCommand.ts index 99f6473c923d1..d0b33e995852e 100644 --- a/clients/client-transfer/src/commands/ListSecurityPoliciesCommand.ts +++ b/clients/client-transfer/src/commands/ListSecurityPoliciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSecurityPoliciesRequest, ListSecurityPoliciesResponse } from "../models/models_0"; +import type { ListSecurityPoliciesRequest, ListSecurityPoliciesResponse } from "../models/models_0"; import { ListSecurityPolicies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListServersCommand.ts b/clients/client-transfer/src/commands/ListServersCommand.ts index e066b812ac141..261e9096a29e7 100644 --- a/clients/client-transfer/src/commands/ListServersCommand.ts +++ b/clients/client-transfer/src/commands/ListServersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServersRequest, ListServersResponse } from "../models/models_0"; +import type { ListServersRequest, ListServersResponse } from "../models/models_0"; import { ListServers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListTagsForResourceCommand.ts b/clients/client-transfer/src/commands/ListTagsForResourceCommand.ts index ddf316e2db488..76ac8bec8ce39 100644 --- a/clients/client-transfer/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-transfer/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListUsersCommand.ts b/clients/client-transfer/src/commands/ListUsersCommand.ts index 23817772fce66..c34331b1435fb 100644 --- a/clients/client-transfer/src/commands/ListUsersCommand.ts +++ b/clients/client-transfer/src/commands/ListUsersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_0"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_0"; import { ListUsers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListWebAppsCommand.ts b/clients/client-transfer/src/commands/ListWebAppsCommand.ts index 8fe1aa353c37f..29a6e0c71fcac 100644 --- a/clients/client-transfer/src/commands/ListWebAppsCommand.ts +++ b/clients/client-transfer/src/commands/ListWebAppsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWebAppsRequest, ListWebAppsResponse } from "../models/models_0"; +import type { ListWebAppsRequest, ListWebAppsResponse } from "../models/models_0"; import { ListWebApps } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/ListWorkflowsCommand.ts b/clients/client-transfer/src/commands/ListWorkflowsCommand.ts index 3255b06bad603..8e6fa337a254a 100644 --- a/clients/client-transfer/src/commands/ListWorkflowsCommand.ts +++ b/clients/client-transfer/src/commands/ListWorkflowsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; +import type { ListWorkflowsRequest, ListWorkflowsResponse } from "../models/models_0"; import { ListWorkflows } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/SendWorkflowStepStateCommand.ts b/clients/client-transfer/src/commands/SendWorkflowStepStateCommand.ts index a8ae0f614cc10..9cc2dfb6d38f9 100644 --- a/clients/client-transfer/src/commands/SendWorkflowStepStateCommand.ts +++ b/clients/client-transfer/src/commands/SendWorkflowStepStateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SendWorkflowStepStateRequest, SendWorkflowStepStateResponse } from "../models/models_0"; +import type { SendWorkflowStepStateRequest, SendWorkflowStepStateResponse } from "../models/models_0"; import { SendWorkflowStepState } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/StartDirectoryListingCommand.ts b/clients/client-transfer/src/commands/StartDirectoryListingCommand.ts index 9ca32430d788d..e9939918604d1 100644 --- a/clients/client-transfer/src/commands/StartDirectoryListingCommand.ts +++ b/clients/client-transfer/src/commands/StartDirectoryListingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDirectoryListingRequest, StartDirectoryListingResponse } from "../models/models_0"; +import type { StartDirectoryListingRequest, StartDirectoryListingResponse } from "../models/models_0"; import { StartDirectoryListing } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/StartFileTransferCommand.ts b/clients/client-transfer/src/commands/StartFileTransferCommand.ts index 37541f9850fd5..9016340450071 100644 --- a/clients/client-transfer/src/commands/StartFileTransferCommand.ts +++ b/clients/client-transfer/src/commands/StartFileTransferCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFileTransferRequest, StartFileTransferResponse } from "../models/models_0"; +import type { StartFileTransferRequest, StartFileTransferResponse } from "../models/models_0"; import { StartFileTransfer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/StartRemoteDeleteCommand.ts b/clients/client-transfer/src/commands/StartRemoteDeleteCommand.ts index 02d1ce17d6418..a334607429205 100644 --- a/clients/client-transfer/src/commands/StartRemoteDeleteCommand.ts +++ b/clients/client-transfer/src/commands/StartRemoteDeleteCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRemoteDeleteRequest, StartRemoteDeleteResponse } from "../models/models_0"; +import type { StartRemoteDeleteRequest, StartRemoteDeleteResponse } from "../models/models_0"; import { StartRemoteDelete } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/StartRemoteMoveCommand.ts b/clients/client-transfer/src/commands/StartRemoteMoveCommand.ts index 9d257bbc513be..07a841c8d2857 100644 --- a/clients/client-transfer/src/commands/StartRemoteMoveCommand.ts +++ b/clients/client-transfer/src/commands/StartRemoteMoveCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartRemoteMoveRequest, StartRemoteMoveResponse } from "../models/models_0"; +import type { StartRemoteMoveRequest, StartRemoteMoveResponse } from "../models/models_0"; import { StartRemoteMove } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/StartServerCommand.ts b/clients/client-transfer/src/commands/StartServerCommand.ts index 1f4cf579b806e..e3fa175b605d1 100644 --- a/clients/client-transfer/src/commands/StartServerCommand.ts +++ b/clients/client-transfer/src/commands/StartServerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartServerRequest } from "../models/models_0"; +import type { StartServerRequest } from "../models/models_0"; import { StartServer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/StopServerCommand.ts b/clients/client-transfer/src/commands/StopServerCommand.ts index ed010e46cdd41..679211e6f9a0a 100644 --- a/clients/client-transfer/src/commands/StopServerCommand.ts +++ b/clients/client-transfer/src/commands/StopServerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopServerRequest } from "../models/models_0"; +import type { StopServerRequest } from "../models/models_0"; import { StopServer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/TagResourceCommand.ts b/clients/client-transfer/src/commands/TagResourceCommand.ts index e0d9dd197e120..ac9915fc42dae 100644 --- a/clients/client-transfer/src/commands/TagResourceCommand.ts +++ b/clients/client-transfer/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest } from "../models/models_0"; +import type { TagResourceRequest } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/TestConnectionCommand.ts b/clients/client-transfer/src/commands/TestConnectionCommand.ts index 99e704ba50e50..a59d968ee21d3 100644 --- a/clients/client-transfer/src/commands/TestConnectionCommand.ts +++ b/clients/client-transfer/src/commands/TestConnectionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestConnectionRequest, TestConnectionResponse } from "../models/models_0"; +import type { TestConnectionRequest, TestConnectionResponse } from "../models/models_0"; import { TestConnection } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/TestIdentityProviderCommand.ts b/clients/client-transfer/src/commands/TestIdentityProviderCommand.ts index 84ee68b1bb6c1..adeb1b946e903 100644 --- a/clients/client-transfer/src/commands/TestIdentityProviderCommand.ts +++ b/clients/client-transfer/src/commands/TestIdentityProviderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestIdentityProviderRequest, TestIdentityProviderResponse } from "../models/models_0"; +import type { TestIdentityProviderRequest, TestIdentityProviderResponse } from "../models/models_0"; import { TestIdentityProvider } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UntagResourceCommand.ts b/clients/client-transfer/src/commands/UntagResourceCommand.ts index 613a6b0520746..cbfedfb02f886 100644 --- a/clients/client-transfer/src/commands/UntagResourceCommand.ts +++ b/clients/client-transfer/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest } from "../models/models_0"; +import type { UntagResourceRequest } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateAccessCommand.ts b/clients/client-transfer/src/commands/UpdateAccessCommand.ts index 7965d3f0d8e61..1dcbc3177f888 100644 --- a/clients/client-transfer/src/commands/UpdateAccessCommand.ts +++ b/clients/client-transfer/src/commands/UpdateAccessCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccessRequest, UpdateAccessResponse } from "../models/models_0"; +import type { UpdateAccessRequest, UpdateAccessResponse } from "../models/models_0"; import { UpdateAccess } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateAgreementCommand.ts b/clients/client-transfer/src/commands/UpdateAgreementCommand.ts index bc27eaf838d1b..720953d4688b8 100644 --- a/clients/client-transfer/src/commands/UpdateAgreementCommand.ts +++ b/clients/client-transfer/src/commands/UpdateAgreementCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAgreementRequest, UpdateAgreementResponse } from "../models/models_0"; +import type { UpdateAgreementRequest, UpdateAgreementResponse } from "../models/models_0"; import { UpdateAgreement } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateCertificateCommand.ts b/clients/client-transfer/src/commands/UpdateCertificateCommand.ts index 4142fe975b220..490216210b03a 100644 --- a/clients/client-transfer/src/commands/UpdateCertificateCommand.ts +++ b/clients/client-transfer/src/commands/UpdateCertificateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateCertificateRequest, UpdateCertificateResponse } from "../models/models_0"; +import type { UpdateCertificateRequest, UpdateCertificateResponse } from "../models/models_0"; import { UpdateCertificate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateConnectorCommand.ts b/clients/client-transfer/src/commands/UpdateConnectorCommand.ts index c85c89567b6d7..ba371554066fa 100644 --- a/clients/client-transfer/src/commands/UpdateConnectorCommand.ts +++ b/clients/client-transfer/src/commands/UpdateConnectorCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectorRequest, UpdateConnectorResponse } from "../models/models_0"; +import type { UpdateConnectorRequest, UpdateConnectorResponse } from "../models/models_0"; import { UpdateConnector } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateHostKeyCommand.ts b/clients/client-transfer/src/commands/UpdateHostKeyCommand.ts index 6005ffa6741ea..75c1b91b148a4 100644 --- a/clients/client-transfer/src/commands/UpdateHostKeyCommand.ts +++ b/clients/client-transfer/src/commands/UpdateHostKeyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateHostKeyRequest, UpdateHostKeyResponse } from "../models/models_0"; +import type { UpdateHostKeyRequest, UpdateHostKeyResponse } from "../models/models_0"; import { UpdateHostKey } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateProfileCommand.ts b/clients/client-transfer/src/commands/UpdateProfileCommand.ts index d06b2fdde53bc..f9d4c8480bc27 100644 --- a/clients/client-transfer/src/commands/UpdateProfileCommand.ts +++ b/clients/client-transfer/src/commands/UpdateProfileCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProfileRequest, UpdateProfileResponse } from "../models/models_0"; +import type { UpdateProfileRequest, UpdateProfileResponse } from "../models/models_0"; import { UpdateProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateServerCommand.ts b/clients/client-transfer/src/commands/UpdateServerCommand.ts index b9468a224811a..d58dea846a015 100644 --- a/clients/client-transfer/src/commands/UpdateServerCommand.ts +++ b/clients/client-transfer/src/commands/UpdateServerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServerRequest, UpdateServerResponse } from "../models/models_0"; +import type { UpdateServerRequest, UpdateServerResponse } from "../models/models_0"; import { UpdateServer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateUserCommand.ts b/clients/client-transfer/src/commands/UpdateUserCommand.ts index d37b62a71172e..4a1819d910ae9 100644 --- a/clients/client-transfer/src/commands/UpdateUserCommand.ts +++ b/clients/client-transfer/src/commands/UpdateUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; import { UpdateUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateWebAppCommand.ts b/clients/client-transfer/src/commands/UpdateWebAppCommand.ts index 20a1f877bbd85..d84b80642c0f9 100644 --- a/clients/client-transfer/src/commands/UpdateWebAppCommand.ts +++ b/clients/client-transfer/src/commands/UpdateWebAppCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWebAppRequest, UpdateWebAppResponse } from "../models/models_0"; +import type { UpdateWebAppRequest, UpdateWebAppResponse } from "../models/models_0"; import { UpdateWebApp } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/commands/UpdateWebAppCustomizationCommand.ts b/clients/client-transfer/src/commands/UpdateWebAppCustomizationCommand.ts index 7c4bf79d07e0e..bac2239d3c6c5 100644 --- a/clients/client-transfer/src/commands/UpdateWebAppCustomizationCommand.ts +++ b/clients/client-transfer/src/commands/UpdateWebAppCustomizationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWebAppCustomizationRequest, UpdateWebAppCustomizationResponse } from "../models/models_0"; +import type { UpdateWebAppCustomizationRequest, UpdateWebAppCustomizationResponse } from "../models/models_0"; import { UpdateWebAppCustomization } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public diff --git a/clients/client-transfer/src/endpoint/EndpointParameters.ts b/clients/client-transfer/src/endpoint/EndpointParameters.ts index 48209670ac59e..6ed2290c4c016 100644 --- a/clients/client-transfer/src/endpoint/EndpointParameters.ts +++ b/clients/client-transfer/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-transfer/src/endpoint/endpointResolver.ts b/clients/client-transfer/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-transfer/src/endpoint/endpointResolver.ts +++ b/clients/client-transfer/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-transfer/src/extensionConfiguration.ts b/clients/client-transfer/src/extensionConfiguration.ts index 51d5638e7d69c..6aae572f73488 100644 --- a/clients/client-transfer/src/extensionConfiguration.ts +++ b/clients/client-transfer/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-transfer/src/models/TransferServiceException.ts b/clients/client-transfer/src/models/TransferServiceException.ts index 46bc5408a6425..f88715dc0a7ae 100644 --- a/clients/client-transfer/src/models/TransferServiceException.ts +++ b/clients/client-transfer/src/models/TransferServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-transfer/src/models/errors.ts b/clients/client-transfer/src/models/errors.ts index 70dd0957ccc0c..209bdc2bb7760 100644 --- a/clients/client-transfer/src/models/errors.ts +++ b/clients/client-transfer/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { TransferServiceException as __BaseException } from "./TransferServiceException"; diff --git a/clients/client-transfer/src/pagination/Interfaces.ts b/clients/client-transfer/src/pagination/Interfaces.ts index 7c1b8365bbe63..6abdb39775e17 100644 --- a/clients/client-transfer/src/pagination/Interfaces.ts +++ b/clients/client-transfer/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TransferClient } from "../TransferClient"; diff --git a/clients/client-transfer/src/pagination/ListAccessesPaginator.ts b/clients/client-transfer/src/pagination/ListAccessesPaginator.ts index f5a6a1d9231f9..15c9f629dd3dd 100644 --- a/clients/client-transfer/src/pagination/ListAccessesPaginator.ts +++ b/clients/client-transfer/src/pagination/ListAccessesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessesCommand, diff --git a/clients/client-transfer/src/pagination/ListAgreementsPaginator.ts b/clients/client-transfer/src/pagination/ListAgreementsPaginator.ts index e140a38ed7ebc..b7e756c059046 100644 --- a/clients/client-transfer/src/pagination/ListAgreementsPaginator.ts +++ b/clients/client-transfer/src/pagination/ListAgreementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAgreementsCommand, diff --git a/clients/client-transfer/src/pagination/ListCertificatesPaginator.ts b/clients/client-transfer/src/pagination/ListCertificatesPaginator.ts index 12de840e679a7..2daa30e2f365a 100644 --- a/clients/client-transfer/src/pagination/ListCertificatesPaginator.ts +++ b/clients/client-transfer/src/pagination/ListCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCertificatesCommand, diff --git a/clients/client-transfer/src/pagination/ListConnectorsPaginator.ts b/clients/client-transfer/src/pagination/ListConnectorsPaginator.ts index 2850eaf0e229f..b4b061c484140 100644 --- a/clients/client-transfer/src/pagination/ListConnectorsPaginator.ts +++ b/clients/client-transfer/src/pagination/ListConnectorsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListConnectorsCommand, diff --git a/clients/client-transfer/src/pagination/ListExecutionsPaginator.ts b/clients/client-transfer/src/pagination/ListExecutionsPaginator.ts index 85bbbfde6c848..15646138a01e9 100644 --- a/clients/client-transfer/src/pagination/ListExecutionsPaginator.ts +++ b/clients/client-transfer/src/pagination/ListExecutionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListExecutionsCommand, diff --git a/clients/client-transfer/src/pagination/ListFileTransferResultsPaginator.ts b/clients/client-transfer/src/pagination/ListFileTransferResultsPaginator.ts index dd28f558cb1ce..c0e90ffd83670 100644 --- a/clients/client-transfer/src/pagination/ListFileTransferResultsPaginator.ts +++ b/clients/client-transfer/src/pagination/ListFileTransferResultsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFileTransferResultsCommand, diff --git a/clients/client-transfer/src/pagination/ListProfilesPaginator.ts b/clients/client-transfer/src/pagination/ListProfilesPaginator.ts index bcfeedcec5b2e..8a7bfbb514de4 100644 --- a/clients/client-transfer/src/pagination/ListProfilesPaginator.ts +++ b/clients/client-transfer/src/pagination/ListProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProfilesCommand, diff --git a/clients/client-transfer/src/pagination/ListSecurityPoliciesPaginator.ts b/clients/client-transfer/src/pagination/ListSecurityPoliciesPaginator.ts index ad424ab1ec7a8..f34496bb069fc 100644 --- a/clients/client-transfer/src/pagination/ListSecurityPoliciesPaginator.ts +++ b/clients/client-transfer/src/pagination/ListSecurityPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSecurityPoliciesCommand, diff --git a/clients/client-transfer/src/pagination/ListServersPaginator.ts b/clients/client-transfer/src/pagination/ListServersPaginator.ts index f2b41a14ddfd4..85eb3092a3c40 100644 --- a/clients/client-transfer/src/pagination/ListServersPaginator.ts +++ b/clients/client-transfer/src/pagination/ListServersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServersCommand, ListServersCommandInput, ListServersCommandOutput } from "../commands/ListServersCommand"; import { TransferClient } from "../TransferClient"; diff --git a/clients/client-transfer/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-transfer/src/pagination/ListTagsForResourcePaginator.ts index dcadaf22c9390..87edd511c9654 100644 --- a/clients/client-transfer/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-transfer/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-transfer/src/pagination/ListUsersPaginator.ts b/clients/client-transfer/src/pagination/ListUsersPaginator.ts index fa6febfab45b5..991798e5aaa5d 100644 --- a/clients/client-transfer/src/pagination/ListUsersPaginator.ts +++ b/clients/client-transfer/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; import { TransferClient } from "../TransferClient"; diff --git a/clients/client-transfer/src/pagination/ListWebAppsPaginator.ts b/clients/client-transfer/src/pagination/ListWebAppsPaginator.ts index 44c9c9d028312..e92c5ea679b49 100644 --- a/clients/client-transfer/src/pagination/ListWebAppsPaginator.ts +++ b/clients/client-transfer/src/pagination/ListWebAppsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWebAppsCommand, ListWebAppsCommandInput, ListWebAppsCommandOutput } from "../commands/ListWebAppsCommand"; import { TransferClient } from "../TransferClient"; diff --git a/clients/client-transfer/src/pagination/ListWorkflowsPaginator.ts b/clients/client-transfer/src/pagination/ListWorkflowsPaginator.ts index 5d0860f8fcc9c..4188914228453 100644 --- a/clients/client-transfer/src/pagination/ListWorkflowsPaginator.ts +++ b/clients/client-transfer/src/pagination/ListWorkflowsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkflowsCommand, diff --git a/clients/client-transfer/src/runtimeConfig.browser.ts b/clients/client-transfer/src/runtimeConfig.browser.ts index d3d6103353339..2eec09f526f5c 100644 --- a/clients/client-transfer/src/runtimeConfig.browser.ts +++ b/clients/client-transfer/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TransferClientConfig } from "./TransferClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TransferClientConfig } from "./TransferClient"; /** * @internal diff --git a/clients/client-transfer/src/runtimeConfig.native.ts b/clients/client-transfer/src/runtimeConfig.native.ts index df272ed5f0b14..cca04065c2371 100644 --- a/clients/client-transfer/src/runtimeConfig.native.ts +++ b/clients/client-transfer/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TransferClientConfig } from "./TransferClient"; +import type { TransferClientConfig } from "./TransferClient"; /** * @internal diff --git a/clients/client-transfer/src/runtimeConfig.shared.ts b/clients/client-transfer/src/runtimeConfig.shared.ts index 2c32d815af0a5..34966b90eb257 100644 --- a/clients/client-transfer/src/runtimeConfig.shared.ts +++ b/clients/client-transfer/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTransferHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TransferClientConfig } from "./TransferClient"; +import type { TransferClientConfig } from "./TransferClient"; /** * @internal diff --git a/clients/client-transfer/src/runtimeConfig.ts b/clients/client-transfer/src/runtimeConfig.ts index fbacd2ff38c74..2a00dabe058a1 100644 --- a/clients/client-transfer/src/runtimeConfig.ts +++ b/clients/client-transfer/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TransferClientConfig } from "./TransferClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TransferClientConfig } from "./TransferClient"; /** * @internal diff --git a/clients/client-transfer/src/runtimeExtensions.ts b/clients/client-transfer/src/runtimeExtensions.ts index 1fa3bb6f136a6..50128a99ad96d 100644 --- a/clients/client-transfer/src/runtimeExtensions.ts +++ b/clients/client-transfer/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TransferExtensionConfiguration } from "./extensionConfiguration"; +import type { TransferExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-transfer/src/schemas/schemas_0.ts b/clients/client-transfer/src/schemas/schemas_0.ts index 06d290daf3541..64e2738060f4f 100644 --- a/clients/client-transfer/src/schemas/schemas_0.ts +++ b/clients/client-transfer/src/schemas/schemas_0.ts @@ -520,7 +520,7 @@ const n0 = "com.amazonaws.transfer"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-translate/package.json b/clients/client-translate/package.json index 6f04c63751a6b..25e7a0bc93e15 100644 --- a/clients/client-translate/package.json +++ b/clients/client-translate/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-translate/src/Translate.ts b/clients/client-translate/src/Translate.ts index 792ebc53b26b8..43dcf77f8bf8a 100644 --- a/clients/client-translate/src/Translate.ts +++ b/clients/client-translate/src/Translate.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateParallelDataCommand, @@ -93,7 +93,7 @@ import { UpdateParallelDataCommandInput, UpdateParallelDataCommandOutput, } from "./commands/UpdateParallelDataCommand"; -import { TranslateClient, TranslateClientConfig } from "./TranslateClient"; +import { TranslateClient } from "./TranslateClient"; const commands = { CreateParallelDataCommand, diff --git a/clients/client-translate/src/TranslateClient.ts b/clients/client-translate/src/TranslateClient.ts index 7d898f485dbf3..03ea958a1d4be 100644 --- a/clients/client-translate/src/TranslateClient.ts +++ b/clients/client-translate/src/TranslateClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTranslateHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateParallelDataCommandInput, CreateParallelDataCommandOutput } from "./commands/CreateParallelDataCommand"; @@ -98,7 +107,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-translate/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-translate/src/auth/httpAuthExtensionConfiguration.ts index 63a9250be9151..45f094f2a8ae2 100644 --- a/clients/client-translate/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-translate/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TranslateHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TranslateHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-translate/src/auth/httpAuthSchemeProvider.ts b/clients/client-translate/src/auth/httpAuthSchemeProvider.ts index 1354a49f8af34..62672eb4b1dbb 100644 --- a/clients/client-translate/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-translate/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TranslateClientConfig, TranslateClientResolvedConfig } from "../TranslateClient"; +import { type TranslateClientResolvedConfig, TranslateClientConfig } from "../TranslateClient"; /** * @internal diff --git a/clients/client-translate/src/commands/CreateParallelDataCommand.ts b/clients/client-translate/src/commands/CreateParallelDataCommand.ts index bf48fa439e15f..57b884a86d6ed 100644 --- a/clients/client-translate/src/commands/CreateParallelDataCommand.ts +++ b/clients/client-translate/src/commands/CreateParallelDataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateParallelDataRequest, CreateParallelDataResponse } from "../models/models_0"; +import type { CreateParallelDataRequest, CreateParallelDataResponse } from "../models/models_0"; import { CreateParallelData } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/DeleteParallelDataCommand.ts b/clients/client-translate/src/commands/DeleteParallelDataCommand.ts index af3c8f1d84ad3..77630d616282d 100644 --- a/clients/client-translate/src/commands/DeleteParallelDataCommand.ts +++ b/clients/client-translate/src/commands/DeleteParallelDataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteParallelDataRequest, DeleteParallelDataResponse } from "../models/models_0"; +import type { DeleteParallelDataRequest, DeleteParallelDataResponse } from "../models/models_0"; import { DeleteParallelData } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/DeleteTerminologyCommand.ts b/clients/client-translate/src/commands/DeleteTerminologyCommand.ts index cc5496ff34b5d..711557881b034 100644 --- a/clients/client-translate/src/commands/DeleteTerminologyCommand.ts +++ b/clients/client-translate/src/commands/DeleteTerminologyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTerminologyRequest } from "../models/models_0"; +import type { DeleteTerminologyRequest } from "../models/models_0"; import { DeleteTerminology } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/DescribeTextTranslationJobCommand.ts b/clients/client-translate/src/commands/DescribeTextTranslationJobCommand.ts index 26bb4bf30cf41..25fda03d82d63 100644 --- a/clients/client-translate/src/commands/DescribeTextTranslationJobCommand.ts +++ b/clients/client-translate/src/commands/DescribeTextTranslationJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTextTranslationJobRequest, DescribeTextTranslationJobResponse } from "../models/models_0"; +import type { DescribeTextTranslationJobRequest, DescribeTextTranslationJobResponse } from "../models/models_0"; import { DescribeTextTranslationJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/GetParallelDataCommand.ts b/clients/client-translate/src/commands/GetParallelDataCommand.ts index 8f46bff7f87bf..c4282676d9356 100644 --- a/clients/client-translate/src/commands/GetParallelDataCommand.ts +++ b/clients/client-translate/src/commands/GetParallelDataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetParallelDataRequest, GetParallelDataResponse } from "../models/models_0"; +import type { GetParallelDataRequest, GetParallelDataResponse } from "../models/models_0"; import { GetParallelData } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/GetTerminologyCommand.ts b/clients/client-translate/src/commands/GetTerminologyCommand.ts index 7a6cd1d5490d2..0f585bc6a69bc 100644 --- a/clients/client-translate/src/commands/GetTerminologyCommand.ts +++ b/clients/client-translate/src/commands/GetTerminologyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTerminologyRequest, GetTerminologyResponse } from "../models/models_0"; +import type { GetTerminologyRequest, GetTerminologyResponse } from "../models/models_0"; import { GetTerminology } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/ImportTerminologyCommand.ts b/clients/client-translate/src/commands/ImportTerminologyCommand.ts index 95b4c9adc60ce..03019abb91d26 100644 --- a/clients/client-translate/src/commands/ImportTerminologyCommand.ts +++ b/clients/client-translate/src/commands/ImportTerminologyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportTerminologyRequest, ImportTerminologyResponse } from "../models/models_0"; +import type { ImportTerminologyRequest, ImportTerminologyResponse } from "../models/models_0"; import { ImportTerminology } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/ListLanguagesCommand.ts b/clients/client-translate/src/commands/ListLanguagesCommand.ts index 7b5cb3858f909..8ec4680d818b1 100644 --- a/clients/client-translate/src/commands/ListLanguagesCommand.ts +++ b/clients/client-translate/src/commands/ListLanguagesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLanguagesRequest, ListLanguagesResponse } from "../models/models_0"; +import type { ListLanguagesRequest, ListLanguagesResponse } from "../models/models_0"; import { ListLanguages } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/ListParallelDataCommand.ts b/clients/client-translate/src/commands/ListParallelDataCommand.ts index 96ac7c1c7c57f..85964140f1be4 100644 --- a/clients/client-translate/src/commands/ListParallelDataCommand.ts +++ b/clients/client-translate/src/commands/ListParallelDataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListParallelDataRequest, ListParallelDataResponse } from "../models/models_0"; +import type { ListParallelDataRequest, ListParallelDataResponse } from "../models/models_0"; import { ListParallelData } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/ListTagsForResourceCommand.ts b/clients/client-translate/src/commands/ListTagsForResourceCommand.ts index 2b0a2ea3c54e9..a7b5a9394d2b8 100644 --- a/clients/client-translate/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-translate/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/ListTerminologiesCommand.ts b/clients/client-translate/src/commands/ListTerminologiesCommand.ts index 3edc5c654ed9c..7a25ebcb65b5d 100644 --- a/clients/client-translate/src/commands/ListTerminologiesCommand.ts +++ b/clients/client-translate/src/commands/ListTerminologiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTerminologiesRequest, ListTerminologiesResponse } from "../models/models_0"; +import type { ListTerminologiesRequest, ListTerminologiesResponse } from "../models/models_0"; import { ListTerminologies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/ListTextTranslationJobsCommand.ts b/clients/client-translate/src/commands/ListTextTranslationJobsCommand.ts index 5993c50b58ff8..875255734bada 100644 --- a/clients/client-translate/src/commands/ListTextTranslationJobsCommand.ts +++ b/clients/client-translate/src/commands/ListTextTranslationJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTextTranslationJobsRequest, ListTextTranslationJobsResponse } from "../models/models_0"; +import type { ListTextTranslationJobsRequest, ListTextTranslationJobsResponse } from "../models/models_0"; import { ListTextTranslationJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/StartTextTranslationJobCommand.ts b/clients/client-translate/src/commands/StartTextTranslationJobCommand.ts index 6b7055f289bc4..6aa5b1c806bc5 100644 --- a/clients/client-translate/src/commands/StartTextTranslationJobCommand.ts +++ b/clients/client-translate/src/commands/StartTextTranslationJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTextTranslationJobRequest, StartTextTranslationJobResponse } from "../models/models_0"; +import type { StartTextTranslationJobRequest, StartTextTranslationJobResponse } from "../models/models_0"; import { StartTextTranslationJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/StopTextTranslationJobCommand.ts b/clients/client-translate/src/commands/StopTextTranslationJobCommand.ts index 915c85e81c9f1..33be8912fb0ad 100644 --- a/clients/client-translate/src/commands/StopTextTranslationJobCommand.ts +++ b/clients/client-translate/src/commands/StopTextTranslationJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopTextTranslationJobRequest, StopTextTranslationJobResponse } from "../models/models_0"; +import type { StopTextTranslationJobRequest, StopTextTranslationJobResponse } from "../models/models_0"; import { StopTextTranslationJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/TagResourceCommand.ts b/clients/client-translate/src/commands/TagResourceCommand.ts index 6a4611a0379d9..af2b2eb7dae9e 100644 --- a/clients/client-translate/src/commands/TagResourceCommand.ts +++ b/clients/client-translate/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/TranslateDocumentCommand.ts b/clients/client-translate/src/commands/TranslateDocumentCommand.ts index 3213a6440e6a4..d1efe0bde2882 100644 --- a/clients/client-translate/src/commands/TranslateDocumentCommand.ts +++ b/clients/client-translate/src/commands/TranslateDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TranslateDocumentRequest, TranslateDocumentResponse } from "../models/models_0"; +import type { TranslateDocumentRequest, TranslateDocumentResponse } from "../models/models_0"; import { TranslateDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/TranslateTextCommand.ts b/clients/client-translate/src/commands/TranslateTextCommand.ts index d810e3718a0b2..7a1a22768d7ad 100644 --- a/clients/client-translate/src/commands/TranslateTextCommand.ts +++ b/clients/client-translate/src/commands/TranslateTextCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TranslateTextRequest, TranslateTextResponse } from "../models/models_0"; +import type { TranslateTextRequest, TranslateTextResponse } from "../models/models_0"; import { TranslateText } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/UntagResourceCommand.ts b/clients/client-translate/src/commands/UntagResourceCommand.ts index 02762eb272ba5..26673e658e401 100644 --- a/clients/client-translate/src/commands/UntagResourceCommand.ts +++ b/clients/client-translate/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/commands/UpdateParallelDataCommand.ts b/clients/client-translate/src/commands/UpdateParallelDataCommand.ts index f86e87840f972..09c4cd8539ca7 100644 --- a/clients/client-translate/src/commands/UpdateParallelDataCommand.ts +++ b/clients/client-translate/src/commands/UpdateParallelDataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateParallelDataRequest, UpdateParallelDataResponse } from "../models/models_0"; +import type { UpdateParallelDataRequest, UpdateParallelDataResponse } from "../models/models_0"; import { UpdateParallelData } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; +import type { ServiceInputTypes, ServiceOutputTypes, TranslateClientResolvedConfig } from "../TranslateClient"; /** * @public diff --git a/clients/client-translate/src/endpoint/EndpointParameters.ts b/clients/client-translate/src/endpoint/EndpointParameters.ts index 9f8011790c07b..83e249bb66e60 100644 --- a/clients/client-translate/src/endpoint/EndpointParameters.ts +++ b/clients/client-translate/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-translate/src/endpoint/endpointResolver.ts b/clients/client-translate/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-translate/src/endpoint/endpointResolver.ts +++ b/clients/client-translate/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-translate/src/extensionConfiguration.ts b/clients/client-translate/src/extensionConfiguration.ts index 1a4456df41b2a..e5f76c8efab8d 100644 --- a/clients/client-translate/src/extensionConfiguration.ts +++ b/clients/client-translate/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-translate/src/models/TranslateServiceException.ts b/clients/client-translate/src/models/TranslateServiceException.ts index 34ac68f8db406..a12fa940088b4 100644 --- a/clients/client-translate/src/models/TranslateServiceException.ts +++ b/clients/client-translate/src/models/TranslateServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-translate/src/models/errors.ts b/clients/client-translate/src/models/errors.ts index 52a3e9c6140bb..439756077e13e 100644 --- a/clients/client-translate/src/models/errors.ts +++ b/clients/client-translate/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { TranslateServiceException as __BaseException } from "./TranslateServiceException"; diff --git a/clients/client-translate/src/pagination/Interfaces.ts b/clients/client-translate/src/pagination/Interfaces.ts index d38a825bb9623..9e601c768777b 100644 --- a/clients/client-translate/src/pagination/Interfaces.ts +++ b/clients/client-translate/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TranslateClient } from "../TranslateClient"; diff --git a/clients/client-translate/src/pagination/ListLanguagesPaginator.ts b/clients/client-translate/src/pagination/ListLanguagesPaginator.ts index b6acebc04e9f6..136e9e99dc165 100644 --- a/clients/client-translate/src/pagination/ListLanguagesPaginator.ts +++ b/clients/client-translate/src/pagination/ListLanguagesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLanguagesCommand, diff --git a/clients/client-translate/src/pagination/ListParallelDataPaginator.ts b/clients/client-translate/src/pagination/ListParallelDataPaginator.ts index c1826efdd1d46..0fd25a31ca308 100644 --- a/clients/client-translate/src/pagination/ListParallelDataPaginator.ts +++ b/clients/client-translate/src/pagination/ListParallelDataPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListParallelDataCommand, diff --git a/clients/client-translate/src/pagination/ListTerminologiesPaginator.ts b/clients/client-translate/src/pagination/ListTerminologiesPaginator.ts index 60a0bbfc3b673..4f1a288715906 100644 --- a/clients/client-translate/src/pagination/ListTerminologiesPaginator.ts +++ b/clients/client-translate/src/pagination/ListTerminologiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTerminologiesCommand, diff --git a/clients/client-translate/src/pagination/ListTextTranslationJobsPaginator.ts b/clients/client-translate/src/pagination/ListTextTranslationJobsPaginator.ts index a7d89d1b4426f..ffbe8da51f749 100644 --- a/clients/client-translate/src/pagination/ListTextTranslationJobsPaginator.ts +++ b/clients/client-translate/src/pagination/ListTextTranslationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTextTranslationJobsCommand, diff --git a/clients/client-translate/src/runtimeConfig.browser.ts b/clients/client-translate/src/runtimeConfig.browser.ts index 4c92f0772d6e2..cb103abf32b47 100644 --- a/clients/client-translate/src/runtimeConfig.browser.ts +++ b/clients/client-translate/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TranslateClientConfig } from "./TranslateClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TranslateClientConfig } from "./TranslateClient"; /** * @internal diff --git a/clients/client-translate/src/runtimeConfig.native.ts b/clients/client-translate/src/runtimeConfig.native.ts index 3a83da5a28fee..a13c6e0989162 100644 --- a/clients/client-translate/src/runtimeConfig.native.ts +++ b/clients/client-translate/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TranslateClientConfig } from "./TranslateClient"; +import type { TranslateClientConfig } from "./TranslateClient"; /** * @internal diff --git a/clients/client-translate/src/runtimeConfig.shared.ts b/clients/client-translate/src/runtimeConfig.shared.ts index 9e98bd869c09c..e2c1bfab1e186 100644 --- a/clients/client-translate/src/runtimeConfig.shared.ts +++ b/clients/client-translate/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTranslateHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TranslateClientConfig } from "./TranslateClient"; +import type { TranslateClientConfig } from "./TranslateClient"; /** * @internal diff --git a/clients/client-translate/src/runtimeConfig.ts b/clients/client-translate/src/runtimeConfig.ts index f929b4b5bf767..96fba3a2c72df 100644 --- a/clients/client-translate/src/runtimeConfig.ts +++ b/clients/client-translate/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TranslateClientConfig } from "./TranslateClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TranslateClientConfig } from "./TranslateClient"; /** * @internal diff --git a/clients/client-translate/src/runtimeExtensions.ts b/clients/client-translate/src/runtimeExtensions.ts index 4961dc4dc7df9..5a1d5f703222a 100644 --- a/clients/client-translate/src/runtimeExtensions.ts +++ b/clients/client-translate/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TranslateExtensionConfiguration } from "./extensionConfiguration"; +import type { TranslateExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-translate/src/schemas/schemas_0.ts b/clients/client-translate/src/schemas/schemas_0.ts index 38ae965668ae3..4b345c0ad88be 100644 --- a/clients/client-translate/src/schemas/schemas_0.ts +++ b/clients/client-translate/src/schemas/schemas_0.ts @@ -180,7 +180,7 @@ const n0 = "com.amazonaws.translate"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-trustedadvisor/package.json b/clients/client-trustedadvisor/package.json index afd6662482803..fe80613d6edbf 100644 --- a/clients/client-trustedadvisor/package.json +++ b/clients/client-trustedadvisor/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-trustedadvisor/src/TrustedAdvisor.ts b/clients/client-trustedadvisor/src/TrustedAdvisor.ts index e5aab9b3c1ae4..c2c0d8de1f37a 100644 --- a/clients/client-trustedadvisor/src/TrustedAdvisor.ts +++ b/clients/client-trustedadvisor/src/TrustedAdvisor.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchUpdateRecommendationResourceExclusionCommand, @@ -53,7 +53,7 @@ import { UpdateRecommendationLifecycleCommandInput, UpdateRecommendationLifecycleCommandOutput, } from "./commands/UpdateRecommendationLifecycleCommand"; -import { TrustedAdvisorClient, TrustedAdvisorClientConfig } from "./TrustedAdvisorClient"; +import { TrustedAdvisorClient } from "./TrustedAdvisorClient"; const commands = { BatchUpdateRecommendationResourceExclusionCommand, diff --git a/clients/client-trustedadvisor/src/TrustedAdvisorClient.ts b/clients/client-trustedadvisor/src/TrustedAdvisorClient.ts index ee7cc16b8db5e..27ba88fc621ae 100644 --- a/clients/client-trustedadvisor/src/TrustedAdvisorClient.ts +++ b/clients/client-trustedadvisor/src/TrustedAdvisorClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultTrustedAdvisorHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -102,7 +111,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-trustedadvisor/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-trustedadvisor/src/auth/httpAuthExtensionConfiguration.ts index c55cdfe4ec8f6..c9c6a783b0ea4 100644 --- a/clients/client-trustedadvisor/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-trustedadvisor/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { TrustedAdvisorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { TrustedAdvisorHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-trustedadvisor/src/auth/httpAuthSchemeProvider.ts b/clients/client-trustedadvisor/src/auth/httpAuthSchemeProvider.ts index 209658b52ebdb..e8bf83b8952c3 100644 --- a/clients/client-trustedadvisor/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-trustedadvisor/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { TrustedAdvisorClientConfig, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import { type TrustedAdvisorClientResolvedConfig, TrustedAdvisorClientConfig } from "../TrustedAdvisorClient"; /** * @internal diff --git a/clients/client-trustedadvisor/src/commands/BatchUpdateRecommendationResourceExclusionCommand.ts b/clients/client-trustedadvisor/src/commands/BatchUpdateRecommendationResourceExclusionCommand.ts index 8b0efef0ba1fc..c9fc2517da47c 100644 --- a/clients/client-trustedadvisor/src/commands/BatchUpdateRecommendationResourceExclusionCommand.ts +++ b/clients/client-trustedadvisor/src/commands/BatchUpdateRecommendationResourceExclusionCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { BatchUpdateRecommendationResourceExclusionRequest, BatchUpdateRecommendationResourceExclusionResponse, } from "../models/models_0"; import { BatchUpdateRecommendationResourceExclusion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/GetOrganizationRecommendationCommand.ts b/clients/client-trustedadvisor/src/commands/GetOrganizationRecommendationCommand.ts index 8074a3fe333dc..63b1250e64a12 100644 --- a/clients/client-trustedadvisor/src/commands/GetOrganizationRecommendationCommand.ts +++ b/clients/client-trustedadvisor/src/commands/GetOrganizationRecommendationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetOrganizationRecommendationRequest, GetOrganizationRecommendationResponse } from "../models/models_0"; +import type { GetOrganizationRecommendationRequest, GetOrganizationRecommendationResponse } from "../models/models_0"; import { GetOrganizationRecommendation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/GetRecommendationCommand.ts b/clients/client-trustedadvisor/src/commands/GetRecommendationCommand.ts index 1a268bf8cb88a..c350eb78d141e 100644 --- a/clients/client-trustedadvisor/src/commands/GetRecommendationCommand.ts +++ b/clients/client-trustedadvisor/src/commands/GetRecommendationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommendationRequest, GetRecommendationResponse } from "../models/models_0"; +import type { GetRecommendationRequest, GetRecommendationResponse } from "../models/models_0"; import { GetRecommendation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/ListChecksCommand.ts b/clients/client-trustedadvisor/src/commands/ListChecksCommand.ts index a27c72c071721..9efc7725ed25a 100644 --- a/clients/client-trustedadvisor/src/commands/ListChecksCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListChecksCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListChecksRequest, ListChecksResponse } from "../models/models_0"; +import type { ListChecksRequest, ListChecksResponse } from "../models/models_0"; import { ListChecks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationAccountsCommand.ts b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationAccountsCommand.ts index 5f3defaeb42ae..74991f1e86015 100644 --- a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationAccountsCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationAccountsCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListOrganizationRecommendationAccountsRequest, ListOrganizationRecommendationAccountsResponse, } from "../models/models_0"; import { ListOrganizationRecommendationAccounts } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationResourcesCommand.ts b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationResourcesCommand.ts index 0f05cdb1e3d2a..fd0a6cee86f84 100644 --- a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationResourcesCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationResourcesCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListOrganizationRecommendationResourcesRequest, ListOrganizationRecommendationResourcesResponse, } from "../models/models_0"; import { ListOrganizationRecommendationResources } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationsCommand.ts b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationsCommand.ts index b0632693e9052..7f3d219d4ae76 100644 --- a/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationsCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListOrganizationRecommendationsCommand.ts @@ -1,12 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOrganizationRecommendationsRequest, ListOrganizationRecommendationsResponse } from "../models/models_0"; +import type { + ListOrganizationRecommendationsRequest, + ListOrganizationRecommendationsResponse, +} from "../models/models_0"; import { ListOrganizationRecommendations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/ListRecommendationResourcesCommand.ts b/clients/client-trustedadvisor/src/commands/ListRecommendationResourcesCommand.ts index 25fe8bcf489a7..26318773f84c4 100644 --- a/clients/client-trustedadvisor/src/commands/ListRecommendationResourcesCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListRecommendationResourcesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationResourcesRequest, ListRecommendationResourcesResponse } from "../models/models_0"; +import type { ListRecommendationResourcesRequest, ListRecommendationResourcesResponse } from "../models/models_0"; import { ListRecommendationResources } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/ListRecommendationsCommand.ts b/clients/client-trustedadvisor/src/commands/ListRecommendationsCommand.ts index 74ad0a8041e07..43a7eea3deff0 100644 --- a/clients/client-trustedadvisor/src/commands/ListRecommendationsCommand.ts +++ b/clients/client-trustedadvisor/src/commands/ListRecommendationsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; +import type { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0"; import { ListRecommendations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/UpdateOrganizationRecommendationLifecycleCommand.ts b/clients/client-trustedadvisor/src/commands/UpdateOrganizationRecommendationLifecycleCommand.ts index 76b2c28dbc66d..bef6960c3d2f8 100644 --- a/clients/client-trustedadvisor/src/commands/UpdateOrganizationRecommendationLifecycleCommand.ts +++ b/clients/client-trustedadvisor/src/commands/UpdateOrganizationRecommendationLifecycleCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateOrganizationRecommendationLifecycleRequest } from "../models/models_0"; +import type { UpdateOrganizationRecommendationLifecycleRequest } from "../models/models_0"; import { UpdateOrganizationRecommendationLifecycle } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/commands/UpdateRecommendationLifecycleCommand.ts b/clients/client-trustedadvisor/src/commands/UpdateRecommendationLifecycleCommand.ts index f1efdd536637e..629eb77b7c88b 100644 --- a/clients/client-trustedadvisor/src/commands/UpdateRecommendationLifecycleCommand.ts +++ b/clients/client-trustedadvisor/src/commands/UpdateRecommendationLifecycleCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRecommendationLifecycleRequest } from "../models/models_0"; +import type { UpdateRecommendationLifecycleRequest } from "../models/models_0"; import { UpdateRecommendationLifecycle } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, TrustedAdvisorClientResolvedConfig } from "../TrustedAdvisorClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + TrustedAdvisorClientResolvedConfig, +} from "../TrustedAdvisorClient"; /** * @public diff --git a/clients/client-trustedadvisor/src/endpoint/EndpointParameters.ts b/clients/client-trustedadvisor/src/endpoint/EndpointParameters.ts index 72d596bef1cfc..8fea8bdab5130 100644 --- a/clients/client-trustedadvisor/src/endpoint/EndpointParameters.ts +++ b/clients/client-trustedadvisor/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-trustedadvisor/src/endpoint/endpointResolver.ts b/clients/client-trustedadvisor/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-trustedadvisor/src/endpoint/endpointResolver.ts +++ b/clients/client-trustedadvisor/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-trustedadvisor/src/extensionConfiguration.ts b/clients/client-trustedadvisor/src/extensionConfiguration.ts index e55269e41e37d..444afd6304672 100644 --- a/clients/client-trustedadvisor/src/extensionConfiguration.ts +++ b/clients/client-trustedadvisor/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-trustedadvisor/src/models/TrustedAdvisorServiceException.ts b/clients/client-trustedadvisor/src/models/TrustedAdvisorServiceException.ts index 224d4711aa0b7..f9cfb0314d54d 100644 --- a/clients/client-trustedadvisor/src/models/TrustedAdvisorServiceException.ts +++ b/clients/client-trustedadvisor/src/models/TrustedAdvisorServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-trustedadvisor/src/models/errors.ts b/clients/client-trustedadvisor/src/models/errors.ts index 390b269bd56f2..194ecd46d95d0 100644 --- a/clients/client-trustedadvisor/src/models/errors.ts +++ b/clients/client-trustedadvisor/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { TrustedAdvisorServiceException as __BaseException } from "./TrustedAdvisorServiceException"; diff --git a/clients/client-trustedadvisor/src/pagination/Interfaces.ts b/clients/client-trustedadvisor/src/pagination/Interfaces.ts index 2f86a227ead94..ef4799591dc41 100644 --- a/clients/client-trustedadvisor/src/pagination/Interfaces.ts +++ b/clients/client-trustedadvisor/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { TrustedAdvisorClient } from "../TrustedAdvisorClient"; diff --git a/clients/client-trustedadvisor/src/pagination/ListChecksPaginator.ts b/clients/client-trustedadvisor/src/pagination/ListChecksPaginator.ts index 35a44a741286d..eea3999907af8 100644 --- a/clients/client-trustedadvisor/src/pagination/ListChecksPaginator.ts +++ b/clients/client-trustedadvisor/src/pagination/ListChecksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListChecksCommand, ListChecksCommandInput, ListChecksCommandOutput } from "../commands/ListChecksCommand"; import { TrustedAdvisorClient } from "../TrustedAdvisorClient"; diff --git a/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationAccountsPaginator.ts b/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationAccountsPaginator.ts index 3968c16056f9d..60057846f9124 100644 --- a/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationAccountsPaginator.ts +++ b/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationAccountsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationRecommendationAccountsCommand, diff --git a/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationResourcesPaginator.ts b/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationResourcesPaginator.ts index ab63196f68e7b..1c5b43060661b 100644 --- a/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationResourcesPaginator.ts +++ b/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationRecommendationResourcesCommand, diff --git a/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationsPaginator.ts b/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationsPaginator.ts index 7356599c708d2..54a62cfb3bbb7 100644 --- a/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationsPaginator.ts +++ b/clients/client-trustedadvisor/src/pagination/ListOrganizationRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationRecommendationsCommand, diff --git a/clients/client-trustedadvisor/src/pagination/ListRecommendationResourcesPaginator.ts b/clients/client-trustedadvisor/src/pagination/ListRecommendationResourcesPaginator.ts index f60671bea9e20..5585bc5bd625c 100644 --- a/clients/client-trustedadvisor/src/pagination/ListRecommendationResourcesPaginator.ts +++ b/clients/client-trustedadvisor/src/pagination/ListRecommendationResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendationResourcesCommand, diff --git a/clients/client-trustedadvisor/src/pagination/ListRecommendationsPaginator.ts b/clients/client-trustedadvisor/src/pagination/ListRecommendationsPaginator.ts index 908b698c1564c..0057521cada5a 100644 --- a/clients/client-trustedadvisor/src/pagination/ListRecommendationsPaginator.ts +++ b/clients/client-trustedadvisor/src/pagination/ListRecommendationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRecommendationsCommand, diff --git a/clients/client-trustedadvisor/src/runtimeConfig.browser.ts b/clients/client-trustedadvisor/src/runtimeConfig.browser.ts index 537eca511dfa3..c57820840b556 100644 --- a/clients/client-trustedadvisor/src/runtimeConfig.browser.ts +++ b/clients/client-trustedadvisor/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient"; /** * @internal diff --git a/clients/client-trustedadvisor/src/runtimeConfig.native.ts b/clients/client-trustedadvisor/src/runtimeConfig.native.ts index 68ef24f6b601e..2fe5a535ce109 100644 --- a/clients/client-trustedadvisor/src/runtimeConfig.native.ts +++ b/clients/client-trustedadvisor/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient"; +import type { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient"; /** * @internal diff --git a/clients/client-trustedadvisor/src/runtimeConfig.shared.ts b/clients/client-trustedadvisor/src/runtimeConfig.shared.ts index 15ffaa442888c..a5dc7444cac25 100644 --- a/clients/client-trustedadvisor/src/runtimeConfig.shared.ts +++ b/clients/client-trustedadvisor/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultTrustedAdvisorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient"; +import type { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient"; /** * @internal diff --git a/clients/client-trustedadvisor/src/runtimeConfig.ts b/clients/client-trustedadvisor/src/runtimeConfig.ts index 77cc307c13087..0195e20d589e7 100644 --- a/clients/client-trustedadvisor/src/runtimeConfig.ts +++ b/clients/client-trustedadvisor/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { TrustedAdvisorClientConfig } from "./TrustedAdvisorClient"; /** * @internal diff --git a/clients/client-trustedadvisor/src/runtimeExtensions.ts b/clients/client-trustedadvisor/src/runtimeExtensions.ts index 5a4609081795c..c630f71ee24ff 100644 --- a/clients/client-trustedadvisor/src/runtimeExtensions.ts +++ b/clients/client-trustedadvisor/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { TrustedAdvisorExtensionConfiguration } from "./extensionConfiguration"; +import type { TrustedAdvisorExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-trustedadvisor/src/schemas/schemas_0.ts b/clients/client-trustedadvisor/src/schemas/schemas_0.ts index 1bd84217bf5b1..6cf844283c7de 100644 --- a/clients/client-trustedadvisor/src/schemas/schemas_0.ts +++ b/clients/client-trustedadvisor/src/schemas/schemas_0.ts @@ -127,7 +127,7 @@ const n0 = "com.amazonaws.trustedadvisor"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-verifiedpermissions/package.json b/clients/client-verifiedpermissions/package.json index b0a97e0f26220..7bad96c2e16a9 100644 --- a/clients/client-verifiedpermissions/package.json +++ b/clients/client-verifiedpermissions/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-verifiedpermissions/src/VerifiedPermissions.ts b/clients/client-verifiedpermissions/src/VerifiedPermissions.ts index c731d9ce32eec..bef611185349a 100644 --- a/clients/client-verifiedpermissions/src/VerifiedPermissions.ts +++ b/clients/client-verifiedpermissions/src/VerifiedPermissions.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetPolicyCommand, @@ -136,7 +136,7 @@ import { UpdatePolicyTemplateCommandInput, UpdatePolicyTemplateCommandOutput, } from "./commands/UpdatePolicyTemplateCommand"; -import { VerifiedPermissionsClient, VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient"; +import { VerifiedPermissionsClient } from "./VerifiedPermissionsClient"; const commands = { BatchGetPolicyCommand, diff --git a/clients/client-verifiedpermissions/src/VerifiedPermissionsClient.ts b/clients/client-verifiedpermissions/src/VerifiedPermissionsClient.ts index eec031901ce57..b8f3f47af53bb 100644 --- a/clients/client-verifiedpermissions/src/VerifiedPermissionsClient.ts +++ b/clients/client-verifiedpermissions/src/VerifiedPermissionsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultVerifiedPermissionsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetPolicyCommandInput, BatchGetPolicyCommandOutput } from "./commands/BatchGetPolicyCommand"; @@ -127,7 +136,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-verifiedpermissions/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-verifiedpermissions/src/auth/httpAuthExtensionConfiguration.ts index 59a2f8fc91dae..33d73d154966f 100644 --- a/clients/client-verifiedpermissions/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-verifiedpermissions/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { VerifiedPermissionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { VerifiedPermissionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-verifiedpermissions/src/auth/httpAuthSchemeProvider.ts b/clients/client-verifiedpermissions/src/auth/httpAuthSchemeProvider.ts index ffc5009ef85a6..e6d6d9c41241c 100644 --- a/clients/client-verifiedpermissions/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-verifiedpermissions/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { VerifiedPermissionsClientConfig, VerifiedPermissionsClientResolvedConfig } from "../VerifiedPermissionsClient"; +import { + type VerifiedPermissionsClientResolvedConfig, + VerifiedPermissionsClientConfig, +} from "../VerifiedPermissionsClient"; /** * @internal diff --git a/clients/client-verifiedpermissions/src/commands/BatchGetPolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/BatchGetPolicyCommand.ts index bf5e40a5bcf26..c0cdc4902d9d9 100644 --- a/clients/client-verifiedpermissions/src/commands/BatchGetPolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/BatchGetPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetPolicyInput, BatchGetPolicyOutput } from "../models/models_0"; +import type { BatchGetPolicyInput, BatchGetPolicyOutput } from "../models/models_0"; import { BatchGetPolicy } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedCommand.ts b/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedCommand.ts index d324084246766..a036115df5d9d 100644 --- a/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchIsAuthorizedInput, BatchIsAuthorizedOutput } from "../models/models_0"; +import type { BatchIsAuthorizedInput, BatchIsAuthorizedOutput } from "../models/models_0"; import { BatchIsAuthorized } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedWithTokenCommand.ts b/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedWithTokenCommand.ts index 2f3c13d7ca6fb..bab2ec1d01b5f 100644 --- a/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedWithTokenCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/BatchIsAuthorizedWithTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchIsAuthorizedWithTokenInput, BatchIsAuthorizedWithTokenOutput } from "../models/models_0"; +import type { BatchIsAuthorizedWithTokenInput, BatchIsAuthorizedWithTokenOutput } from "../models/models_0"; import { BatchIsAuthorizedWithToken } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/CreateIdentitySourceCommand.ts b/clients/client-verifiedpermissions/src/commands/CreateIdentitySourceCommand.ts index 32d0e220310b9..e7712186255a2 100644 --- a/clients/client-verifiedpermissions/src/commands/CreateIdentitySourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/CreateIdentitySourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIdentitySourceInput, CreateIdentitySourceOutput } from "../models/models_0"; +import type { CreateIdentitySourceInput, CreateIdentitySourceOutput } from "../models/models_0"; import { CreateIdentitySource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/CreatePolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/CreatePolicyCommand.ts index 43196c28b5af9..0f147adae6570 100644 --- a/clients/client-verifiedpermissions/src/commands/CreatePolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/CreatePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePolicyInput, CreatePolicyOutput } from "../models/models_0"; +import type { CreatePolicyInput, CreatePolicyOutput } from "../models/models_0"; import { CreatePolicy } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/CreatePolicyStoreCommand.ts b/clients/client-verifiedpermissions/src/commands/CreatePolicyStoreCommand.ts index a0415a8b40f34..263d113b69226 100644 --- a/clients/client-verifiedpermissions/src/commands/CreatePolicyStoreCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/CreatePolicyStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePolicyStoreInput, CreatePolicyStoreOutput } from "../models/models_0"; +import type { CreatePolicyStoreInput, CreatePolicyStoreOutput } from "../models/models_0"; import { CreatePolicyStore } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/CreatePolicyTemplateCommand.ts b/clients/client-verifiedpermissions/src/commands/CreatePolicyTemplateCommand.ts index 7c45caf0cec94..c33cafebb4e67 100644 --- a/clients/client-verifiedpermissions/src/commands/CreatePolicyTemplateCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/CreatePolicyTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePolicyTemplateInput, CreatePolicyTemplateOutput } from "../models/models_0"; +import type { CreatePolicyTemplateInput, CreatePolicyTemplateOutput } from "../models/models_0"; import { CreatePolicyTemplate } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/DeleteIdentitySourceCommand.ts b/clients/client-verifiedpermissions/src/commands/DeleteIdentitySourceCommand.ts index 3eec471c1366e..06fba2350ba56 100644 --- a/clients/client-verifiedpermissions/src/commands/DeleteIdentitySourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/DeleteIdentitySourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentitySourceInput, DeleteIdentitySourceOutput } from "../models/models_0"; +import type { DeleteIdentitySourceInput, DeleteIdentitySourceOutput } from "../models/models_0"; import { DeleteIdentitySource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/DeletePolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/DeletePolicyCommand.ts index 8d1fdd430392c..8d0b673648e3f 100644 --- a/clients/client-verifiedpermissions/src/commands/DeletePolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/DeletePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePolicyInput, DeletePolicyOutput } from "../models/models_0"; +import type { DeletePolicyInput, DeletePolicyOutput } from "../models/models_0"; import { DeletePolicy } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/DeletePolicyStoreCommand.ts b/clients/client-verifiedpermissions/src/commands/DeletePolicyStoreCommand.ts index ea5c1d98d0197..1c8ba7f752690 100644 --- a/clients/client-verifiedpermissions/src/commands/DeletePolicyStoreCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/DeletePolicyStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePolicyStoreInput, DeletePolicyStoreOutput } from "../models/models_0"; +import type { DeletePolicyStoreInput, DeletePolicyStoreOutput } from "../models/models_0"; import { DeletePolicyStore } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/DeletePolicyTemplateCommand.ts b/clients/client-verifiedpermissions/src/commands/DeletePolicyTemplateCommand.ts index 8b7eb59c21a7f..63ac2998b7031 100644 --- a/clients/client-verifiedpermissions/src/commands/DeletePolicyTemplateCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/DeletePolicyTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePolicyTemplateInput, DeletePolicyTemplateOutput } from "../models/models_0"; +import type { DeletePolicyTemplateInput, DeletePolicyTemplateOutput } from "../models/models_0"; import { DeletePolicyTemplate } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/GetIdentitySourceCommand.ts b/clients/client-verifiedpermissions/src/commands/GetIdentitySourceCommand.ts index 359833d5738f4..24cb8c5d445ff 100644 --- a/clients/client-verifiedpermissions/src/commands/GetIdentitySourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetIdentitySourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentitySourceInput, GetIdentitySourceOutput } from "../models/models_0"; +import type { GetIdentitySourceInput, GetIdentitySourceOutput } from "../models/models_0"; import { GetIdentitySource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/GetPolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/GetPolicyCommand.ts index 352c05ee8f20b..e42466e5ae822 100644 --- a/clients/client-verifiedpermissions/src/commands/GetPolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPolicyInput, GetPolicyOutput } from "../models/models_0"; +import type { GetPolicyInput, GetPolicyOutput } from "../models/models_0"; import { GetPolicy } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/GetPolicyStoreCommand.ts b/clients/client-verifiedpermissions/src/commands/GetPolicyStoreCommand.ts index e3300922543a4..f1080470e6836 100644 --- a/clients/client-verifiedpermissions/src/commands/GetPolicyStoreCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetPolicyStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPolicyStoreInput, GetPolicyStoreOutput } from "../models/models_0"; +import type { GetPolicyStoreInput, GetPolicyStoreOutput } from "../models/models_0"; import { GetPolicyStore } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/GetPolicyTemplateCommand.ts b/clients/client-verifiedpermissions/src/commands/GetPolicyTemplateCommand.ts index 2e9778428014c..fdb9f1b8be81a 100644 --- a/clients/client-verifiedpermissions/src/commands/GetPolicyTemplateCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetPolicyTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPolicyTemplateInput, GetPolicyTemplateOutput } from "../models/models_0"; +import type { GetPolicyTemplateInput, GetPolicyTemplateOutput } from "../models/models_0"; import { GetPolicyTemplate } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/GetSchemaCommand.ts b/clients/client-verifiedpermissions/src/commands/GetSchemaCommand.ts index cf391a9b836cc..5bc080ee74aa1 100644 --- a/clients/client-verifiedpermissions/src/commands/GetSchemaCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/GetSchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSchemaInput, GetSchemaOutput } from "../models/models_0"; +import type { GetSchemaInput, GetSchemaOutput } from "../models/models_0"; import { GetSchema } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/IsAuthorizedCommand.ts b/clients/client-verifiedpermissions/src/commands/IsAuthorizedCommand.ts index ebad405c7ea8b..772b521162e3a 100644 --- a/clients/client-verifiedpermissions/src/commands/IsAuthorizedCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/IsAuthorizedCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IsAuthorizedInput, IsAuthorizedOutput } from "../models/models_0"; +import type { IsAuthorizedInput, IsAuthorizedOutput } from "../models/models_0"; import { IsAuthorized } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/IsAuthorizedWithTokenCommand.ts b/clients/client-verifiedpermissions/src/commands/IsAuthorizedWithTokenCommand.ts index 1741ffb6fd31c..210af56386edd 100644 --- a/clients/client-verifiedpermissions/src/commands/IsAuthorizedWithTokenCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/IsAuthorizedWithTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IsAuthorizedWithTokenInput, IsAuthorizedWithTokenOutput } from "../models/models_0"; +import type { IsAuthorizedWithTokenInput, IsAuthorizedWithTokenOutput } from "../models/models_0"; import { IsAuthorizedWithToken } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/ListIdentitySourcesCommand.ts b/clients/client-verifiedpermissions/src/commands/ListIdentitySourcesCommand.ts index 2f55046cc9f46..26e696537f160 100644 --- a/clients/client-verifiedpermissions/src/commands/ListIdentitySourcesCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/ListIdentitySourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentitySourcesInput, ListIdentitySourcesOutput } from "../models/models_0"; +import type { ListIdentitySourcesInput, ListIdentitySourcesOutput } from "../models/models_0"; import { ListIdentitySources } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/ListPoliciesCommand.ts b/clients/client-verifiedpermissions/src/commands/ListPoliciesCommand.ts index b673759db5e11..de79bcbb4b6d5 100644 --- a/clients/client-verifiedpermissions/src/commands/ListPoliciesCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/ListPoliciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPoliciesInput, ListPoliciesOutput } from "../models/models_0"; +import type { ListPoliciesInput, ListPoliciesOutput } from "../models/models_0"; import { ListPolicies } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/ListPolicyStoresCommand.ts b/clients/client-verifiedpermissions/src/commands/ListPolicyStoresCommand.ts index efa71da7abe7e..191006bf268d8 100644 --- a/clients/client-verifiedpermissions/src/commands/ListPolicyStoresCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/ListPolicyStoresCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPolicyStoresInput, ListPolicyStoresOutput } from "../models/models_0"; +import type { ListPolicyStoresInput, ListPolicyStoresOutput } from "../models/models_0"; import { ListPolicyStores } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/ListPolicyTemplatesCommand.ts b/clients/client-verifiedpermissions/src/commands/ListPolicyTemplatesCommand.ts index 72f4d2a3a3bb9..59e15b7d8d21c 100644 --- a/clients/client-verifiedpermissions/src/commands/ListPolicyTemplatesCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/ListPolicyTemplatesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPolicyTemplatesInput, ListPolicyTemplatesOutput } from "../models/models_0"; +import type { ListPolicyTemplatesInput, ListPolicyTemplatesOutput } from "../models/models_0"; import { ListPolicyTemplates } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/ListTagsForResourceCommand.ts b/clients/client-verifiedpermissions/src/commands/ListTagsForResourceCommand.ts index 8582ff0b4d463..929f7f518b085 100644 --- a/clients/client-verifiedpermissions/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/PutSchemaCommand.ts b/clients/client-verifiedpermissions/src/commands/PutSchemaCommand.ts index e2840b5b52f0b..49ed120da572d 100644 --- a/clients/client-verifiedpermissions/src/commands/PutSchemaCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/PutSchemaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutSchemaInput, PutSchemaOutput } from "../models/models_0"; +import type { PutSchemaInput, PutSchemaOutput } from "../models/models_0"; import { PutSchema } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/TagResourceCommand.ts b/clients/client-verifiedpermissions/src/commands/TagResourceCommand.ts index b658c56e72516..4a2af1faf7599 100644 --- a/clients/client-verifiedpermissions/src/commands/TagResourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/UntagResourceCommand.ts b/clients/client-verifiedpermissions/src/commands/UntagResourceCommand.ts index 498d8767df48b..f9261fec0321a 100644 --- a/clients/client-verifiedpermissions/src/commands/UntagResourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/UpdateIdentitySourceCommand.ts b/clients/client-verifiedpermissions/src/commands/UpdateIdentitySourceCommand.ts index e4c08a75f0cd0..fef76256c0b17 100644 --- a/clients/client-verifiedpermissions/src/commands/UpdateIdentitySourceCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/UpdateIdentitySourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIdentitySourceInput, UpdateIdentitySourceOutput } from "../models/models_0"; +import type { UpdateIdentitySourceInput, UpdateIdentitySourceOutput } from "../models/models_0"; import { UpdateIdentitySource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/UpdatePolicyCommand.ts b/clients/client-verifiedpermissions/src/commands/UpdatePolicyCommand.ts index 7cbf4e2a2cdad..ac1024f9df91b 100644 --- a/clients/client-verifiedpermissions/src/commands/UpdatePolicyCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/UpdatePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePolicyInput, UpdatePolicyOutput } from "../models/models_0"; +import type { UpdatePolicyInput, UpdatePolicyOutput } from "../models/models_0"; import { UpdatePolicy } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/UpdatePolicyStoreCommand.ts b/clients/client-verifiedpermissions/src/commands/UpdatePolicyStoreCommand.ts index 263a8f2f2f893..ff8fe12188c3b 100644 --- a/clients/client-verifiedpermissions/src/commands/UpdatePolicyStoreCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/UpdatePolicyStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePolicyStoreInput, UpdatePolicyStoreOutput } from "../models/models_0"; +import type { UpdatePolicyStoreInput, UpdatePolicyStoreOutput } from "../models/models_0"; import { UpdatePolicyStore } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/commands/UpdatePolicyTemplateCommand.ts b/clients/client-verifiedpermissions/src/commands/UpdatePolicyTemplateCommand.ts index c840f881f35eb..50a56002e24cd 100644 --- a/clients/client-verifiedpermissions/src/commands/UpdatePolicyTemplateCommand.ts +++ b/clients/client-verifiedpermissions/src/commands/UpdatePolicyTemplateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePolicyTemplateInput, UpdatePolicyTemplateOutput } from "../models/models_0"; +import type { UpdatePolicyTemplateInput, UpdatePolicyTemplateOutput } from "../models/models_0"; import { UpdatePolicyTemplate } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, VerifiedPermissionsClientResolvedConfig, diff --git a/clients/client-verifiedpermissions/src/endpoint/EndpointParameters.ts b/clients/client-verifiedpermissions/src/endpoint/EndpointParameters.ts index eb4dfff938a64..38f6826b250d7 100644 --- a/clients/client-verifiedpermissions/src/endpoint/EndpointParameters.ts +++ b/clients/client-verifiedpermissions/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-verifiedpermissions/src/endpoint/endpointResolver.ts b/clients/client-verifiedpermissions/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-verifiedpermissions/src/endpoint/endpointResolver.ts +++ b/clients/client-verifiedpermissions/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-verifiedpermissions/src/extensionConfiguration.ts b/clients/client-verifiedpermissions/src/extensionConfiguration.ts index a009c595b1258..5f2ee2845d5ed 100644 --- a/clients/client-verifiedpermissions/src/extensionConfiguration.ts +++ b/clients/client-verifiedpermissions/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-verifiedpermissions/src/models/VerifiedPermissionsServiceException.ts b/clients/client-verifiedpermissions/src/models/VerifiedPermissionsServiceException.ts index aa79da6b39d11..e660902735cf6 100644 --- a/clients/client-verifiedpermissions/src/models/VerifiedPermissionsServiceException.ts +++ b/clients/client-verifiedpermissions/src/models/VerifiedPermissionsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-verifiedpermissions/src/models/errors.ts b/clients/client-verifiedpermissions/src/models/errors.ts index 271331e5540c8..0f123c76b4e69 100644 --- a/clients/client-verifiedpermissions/src/models/errors.ts +++ b/clients/client-verifiedpermissions/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ResourceType } from "./enums"; import { ResourceConflict, ValidationExceptionField } from "./models_0"; diff --git a/clients/client-verifiedpermissions/src/pagination/Interfaces.ts b/clients/client-verifiedpermissions/src/pagination/Interfaces.ts index 95fec957164fa..7b9cfe87ab784 100644 --- a/clients/client-verifiedpermissions/src/pagination/Interfaces.ts +++ b/clients/client-verifiedpermissions/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { VerifiedPermissionsClient } from "../VerifiedPermissionsClient"; diff --git a/clients/client-verifiedpermissions/src/pagination/ListIdentitySourcesPaginator.ts b/clients/client-verifiedpermissions/src/pagination/ListIdentitySourcesPaginator.ts index 741c96ec9018f..b57b37d051656 100644 --- a/clients/client-verifiedpermissions/src/pagination/ListIdentitySourcesPaginator.ts +++ b/clients/client-verifiedpermissions/src/pagination/ListIdentitySourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIdentitySourcesCommand, diff --git a/clients/client-verifiedpermissions/src/pagination/ListPoliciesPaginator.ts b/clients/client-verifiedpermissions/src/pagination/ListPoliciesPaginator.ts index 4ff7aae45567d..21a172009abf2 100644 --- a/clients/client-verifiedpermissions/src/pagination/ListPoliciesPaginator.ts +++ b/clients/client-verifiedpermissions/src/pagination/ListPoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPoliciesCommand, diff --git a/clients/client-verifiedpermissions/src/pagination/ListPolicyStoresPaginator.ts b/clients/client-verifiedpermissions/src/pagination/ListPolicyStoresPaginator.ts index 04c472a254ff1..c18278e5c8b37 100644 --- a/clients/client-verifiedpermissions/src/pagination/ListPolicyStoresPaginator.ts +++ b/clients/client-verifiedpermissions/src/pagination/ListPolicyStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPolicyStoresCommand, diff --git a/clients/client-verifiedpermissions/src/pagination/ListPolicyTemplatesPaginator.ts b/clients/client-verifiedpermissions/src/pagination/ListPolicyTemplatesPaginator.ts index a2f2456d033c0..25aa512f701bc 100644 --- a/clients/client-verifiedpermissions/src/pagination/ListPolicyTemplatesPaginator.ts +++ b/clients/client-verifiedpermissions/src/pagination/ListPolicyTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPolicyTemplatesCommand, diff --git a/clients/client-verifiedpermissions/src/runtimeConfig.browser.ts b/clients/client-verifiedpermissions/src/runtimeConfig.browser.ts index 0e97105cdde10..c8577becfc0a6 100644 --- a/clients/client-verifiedpermissions/src/runtimeConfig.browser.ts +++ b/clients/client-verifiedpermissions/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient"; /** * @internal diff --git a/clients/client-verifiedpermissions/src/runtimeConfig.native.ts b/clients/client-verifiedpermissions/src/runtimeConfig.native.ts index 57cbb11a9d9e9..296efd5d44edb 100644 --- a/clients/client-verifiedpermissions/src/runtimeConfig.native.ts +++ b/clients/client-verifiedpermissions/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient"; +import type { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient"; /** * @internal diff --git a/clients/client-verifiedpermissions/src/runtimeConfig.shared.ts b/clients/client-verifiedpermissions/src/runtimeConfig.shared.ts index 44675278d92c2..67376fca75a26 100644 --- a/clients/client-verifiedpermissions/src/runtimeConfig.shared.ts +++ b/clients/client-verifiedpermissions/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultVerifiedPermissionsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient"; +import type { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient"; /** * @internal diff --git a/clients/client-verifiedpermissions/src/runtimeConfig.ts b/clients/client-verifiedpermissions/src/runtimeConfig.ts index e8a038d114551..b6628496f9ca1 100644 --- a/clients/client-verifiedpermissions/src/runtimeConfig.ts +++ b/clients/client-verifiedpermissions/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { VerifiedPermissionsClientConfig } from "./VerifiedPermissionsClient"; /** * @internal diff --git a/clients/client-verifiedpermissions/src/runtimeExtensions.ts b/clients/client-verifiedpermissions/src/runtimeExtensions.ts index e722a895e5d19..9df196c240fbc 100644 --- a/clients/client-verifiedpermissions/src/runtimeExtensions.ts +++ b/clients/client-verifiedpermissions/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { VerifiedPermissionsExtensionConfiguration } from "./extensionConfiguration"; +import type { VerifiedPermissionsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-verifiedpermissions/src/schemas/schemas_0.ts b/clients/client-verifiedpermissions/src/schemas/schemas_0.ts index 92d3296209bca..11b9575d86d1d 100644 --- a/clients/client-verifiedpermissions/src/schemas/schemas_0.ts +++ b/clients/client-verifiedpermissions/src/schemas/schemas_0.ts @@ -328,7 +328,7 @@ const n0 = "com.amazonaws.verifiedpermissions"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-voice-id/package.json b/clients/client-voice-id/package.json index 94bd6800831ba..26d82f480d4b0 100644 --- a/clients/client-voice-id/package.json +++ b/clients/client-voice-id/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-voice-id/src/VoiceID.ts b/clients/client-voice-id/src/VoiceID.ts index 4d6f1cd35009f..778a2407e3c95 100644 --- a/clients/client-voice-id/src/VoiceID.ts +++ b/clients/client-voice-id/src/VoiceID.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateFraudsterCommand, @@ -139,7 +139,7 @@ import { UpdateWatchlistCommandInput, UpdateWatchlistCommandOutput, } from "./commands/UpdateWatchlistCommand"; -import { VoiceIDClient, VoiceIDClientConfig } from "./VoiceIDClient"; +import { VoiceIDClient } from "./VoiceIDClient"; const commands = { AssociateFraudsterCommand, diff --git a/clients/client-voice-id/src/VoiceIDClient.ts b/clients/client-voice-id/src/VoiceIDClient.ts index abf847d3a6199..981c96ad03864 100644 --- a/clients/client-voice-id/src/VoiceIDClient.ts +++ b/clients/client-voice-id/src/VoiceIDClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultVoiceIDHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateFraudsterCommandInput, AssociateFraudsterCommandOutput } from "./commands/AssociateFraudsterCommand"; @@ -117,7 +126,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-voice-id/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-voice-id/src/auth/httpAuthExtensionConfiguration.ts index 24547286270ea..5d914260a0f52 100644 --- a/clients/client-voice-id/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-voice-id/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { VoiceIDHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { VoiceIDHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-voice-id/src/auth/httpAuthSchemeProvider.ts b/clients/client-voice-id/src/auth/httpAuthSchemeProvider.ts index f5ab0d8e24d0b..62dd12fc6c389 100644 --- a/clients/client-voice-id/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-voice-id/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { VoiceIDClientConfig, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import { type VoiceIDClientResolvedConfig, VoiceIDClientConfig } from "../VoiceIDClient"; /** * @internal diff --git a/clients/client-voice-id/src/commands/AssociateFraudsterCommand.ts b/clients/client-voice-id/src/commands/AssociateFraudsterCommand.ts index 85d0de4e15b44..523626d6bb2c4 100644 --- a/clients/client-voice-id/src/commands/AssociateFraudsterCommand.ts +++ b/clients/client-voice-id/src/commands/AssociateFraudsterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateFraudsterRequest, AssociateFraudsterResponse } from "../models/models_0"; +import type { AssociateFraudsterRequest, AssociateFraudsterResponse } from "../models/models_0"; import { AssociateFraudster } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/CreateDomainCommand.ts b/clients/client-voice-id/src/commands/CreateDomainCommand.ts index 3d7f373ca25b4..2202d48b77ee7 100644 --- a/clients/client-voice-id/src/commands/CreateDomainCommand.ts +++ b/clients/client-voice-id/src/commands/CreateDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; +import type { CreateDomainRequest, CreateDomainResponse } from "../models/models_0"; import { CreateDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/CreateWatchlistCommand.ts b/clients/client-voice-id/src/commands/CreateWatchlistCommand.ts index 8fdf18803117f..053ee8a0dc0b6 100644 --- a/clients/client-voice-id/src/commands/CreateWatchlistCommand.ts +++ b/clients/client-voice-id/src/commands/CreateWatchlistCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWatchlistRequest, CreateWatchlistResponse } from "../models/models_0"; +import type { CreateWatchlistRequest, CreateWatchlistResponse } from "../models/models_0"; import { CreateWatchlist } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DeleteDomainCommand.ts b/clients/client-voice-id/src/commands/DeleteDomainCommand.ts index 93098cb39462f..23fd9029361c9 100644 --- a/clients/client-voice-id/src/commands/DeleteDomainCommand.ts +++ b/clients/client-voice-id/src/commands/DeleteDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainRequest } from "../models/models_0"; +import type { DeleteDomainRequest } from "../models/models_0"; import { DeleteDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DeleteFraudsterCommand.ts b/clients/client-voice-id/src/commands/DeleteFraudsterCommand.ts index e2c2180be383d..9bb313d6c8c95 100644 --- a/clients/client-voice-id/src/commands/DeleteFraudsterCommand.ts +++ b/clients/client-voice-id/src/commands/DeleteFraudsterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFraudsterRequest } from "../models/models_0"; +import type { DeleteFraudsterRequest } from "../models/models_0"; import { DeleteFraudster } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DeleteSpeakerCommand.ts b/clients/client-voice-id/src/commands/DeleteSpeakerCommand.ts index d51bfe4e9adb5..1318382e14ab6 100644 --- a/clients/client-voice-id/src/commands/DeleteSpeakerCommand.ts +++ b/clients/client-voice-id/src/commands/DeleteSpeakerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSpeakerRequest } from "../models/models_0"; +import type { DeleteSpeakerRequest } from "../models/models_0"; import { DeleteSpeaker } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DeleteWatchlistCommand.ts b/clients/client-voice-id/src/commands/DeleteWatchlistCommand.ts index 2e5529955e421..8a809338228af 100644 --- a/clients/client-voice-id/src/commands/DeleteWatchlistCommand.ts +++ b/clients/client-voice-id/src/commands/DeleteWatchlistCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWatchlistRequest } from "../models/models_0"; +import type { DeleteWatchlistRequest } from "../models/models_0"; import { DeleteWatchlist } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DescribeDomainCommand.ts b/clients/client-voice-id/src/commands/DescribeDomainCommand.ts index 1ab8cd9d1714e..7f2db4ab63c35 100644 --- a/clients/client-voice-id/src/commands/DescribeDomainCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDomainRequest, DescribeDomainResponse } from "../models/models_0"; +import type { DescribeDomainRequest, DescribeDomainResponse } from "../models/models_0"; import { DescribeDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DescribeFraudsterCommand.ts b/clients/client-voice-id/src/commands/DescribeFraudsterCommand.ts index e07bb87616b84..c716ea63bb88e 100644 --- a/clients/client-voice-id/src/commands/DescribeFraudsterCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeFraudsterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFraudsterRequest, DescribeFraudsterResponse } from "../models/models_0"; +import type { DescribeFraudsterRequest, DescribeFraudsterResponse } from "../models/models_0"; import { DescribeFraudster } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DescribeFraudsterRegistrationJobCommand.ts b/clients/client-voice-id/src/commands/DescribeFraudsterRegistrationJobCommand.ts index 34968a13aa571..0180e3ddfe935 100644 --- a/clients/client-voice-id/src/commands/DescribeFraudsterRegistrationJobCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeFraudsterRegistrationJobCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFraudsterRegistrationJobRequest, DescribeFraudsterRegistrationJobResponse } from "../models/models_0"; +import type { + DescribeFraudsterRegistrationJobRequest, + DescribeFraudsterRegistrationJobResponse, +} from "../models/models_0"; import { DescribeFraudsterRegistrationJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DescribeSpeakerCommand.ts b/clients/client-voice-id/src/commands/DescribeSpeakerCommand.ts index e0c590b5bac2a..570f33395f6c2 100644 --- a/clients/client-voice-id/src/commands/DescribeSpeakerCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeSpeakerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpeakerRequest, DescribeSpeakerResponse } from "../models/models_0"; +import type { DescribeSpeakerRequest, DescribeSpeakerResponse } from "../models/models_0"; import { DescribeSpeaker } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DescribeSpeakerEnrollmentJobCommand.ts b/clients/client-voice-id/src/commands/DescribeSpeakerEnrollmentJobCommand.ts index 61fdc55305ba3..5bcb57b0b892d 100644 --- a/clients/client-voice-id/src/commands/DescribeSpeakerEnrollmentJobCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeSpeakerEnrollmentJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeSpeakerEnrollmentJobRequest, DescribeSpeakerEnrollmentJobResponse } from "../models/models_0"; +import type { DescribeSpeakerEnrollmentJobRequest, DescribeSpeakerEnrollmentJobResponse } from "../models/models_0"; import { DescribeSpeakerEnrollmentJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DescribeWatchlistCommand.ts b/clients/client-voice-id/src/commands/DescribeWatchlistCommand.ts index dbe314db0e57b..c4750dd91c331 100644 --- a/clients/client-voice-id/src/commands/DescribeWatchlistCommand.ts +++ b/clients/client-voice-id/src/commands/DescribeWatchlistCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWatchlistRequest, DescribeWatchlistResponse } from "../models/models_0"; +import type { DescribeWatchlistRequest, DescribeWatchlistResponse } from "../models/models_0"; import { DescribeWatchlist } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/DisassociateFraudsterCommand.ts b/clients/client-voice-id/src/commands/DisassociateFraudsterCommand.ts index 6eb2e882bd626..0189e2aa718dd 100644 --- a/clients/client-voice-id/src/commands/DisassociateFraudsterCommand.ts +++ b/clients/client-voice-id/src/commands/DisassociateFraudsterCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateFraudsterRequest, DisassociateFraudsterResponse } from "../models/models_0"; +import type { DisassociateFraudsterRequest, DisassociateFraudsterResponse } from "../models/models_0"; import { DisassociateFraudster } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/EvaluateSessionCommand.ts b/clients/client-voice-id/src/commands/EvaluateSessionCommand.ts index 779737529f7a0..21b52bbd0655a 100644 --- a/clients/client-voice-id/src/commands/EvaluateSessionCommand.ts +++ b/clients/client-voice-id/src/commands/EvaluateSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EvaluateSessionRequest, EvaluateSessionResponse } from "../models/models_0"; +import type { EvaluateSessionRequest, EvaluateSessionResponse } from "../models/models_0"; import { EvaluateSession } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/ListDomainsCommand.ts b/clients/client-voice-id/src/commands/ListDomainsCommand.ts index 7c5c25789351a..abbbbc591bd21 100644 --- a/clients/client-voice-id/src/commands/ListDomainsCommand.ts +++ b/clients/client-voice-id/src/commands/ListDomainsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; +import type { ListDomainsRequest, ListDomainsResponse } from "../models/models_0"; import { ListDomains } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/ListFraudsterRegistrationJobsCommand.ts b/clients/client-voice-id/src/commands/ListFraudsterRegistrationJobsCommand.ts index 0dc35412fdc4a..4325a3c50a8b3 100644 --- a/clients/client-voice-id/src/commands/ListFraudsterRegistrationJobsCommand.ts +++ b/clients/client-voice-id/src/commands/ListFraudsterRegistrationJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFraudsterRegistrationJobsRequest, ListFraudsterRegistrationJobsResponse } from "../models/models_0"; +import type { ListFraudsterRegistrationJobsRequest, ListFraudsterRegistrationJobsResponse } from "../models/models_0"; import { ListFraudsterRegistrationJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/ListFraudstersCommand.ts b/clients/client-voice-id/src/commands/ListFraudstersCommand.ts index 9b24a84fb7e22..c95a87ddc2170 100644 --- a/clients/client-voice-id/src/commands/ListFraudstersCommand.ts +++ b/clients/client-voice-id/src/commands/ListFraudstersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListFraudstersRequest, ListFraudstersResponse } from "../models/models_0"; +import type { ListFraudstersRequest, ListFraudstersResponse } from "../models/models_0"; import { ListFraudsters } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/ListSpeakerEnrollmentJobsCommand.ts b/clients/client-voice-id/src/commands/ListSpeakerEnrollmentJobsCommand.ts index be8cf82a1524a..749e4f371fb6b 100644 --- a/clients/client-voice-id/src/commands/ListSpeakerEnrollmentJobsCommand.ts +++ b/clients/client-voice-id/src/commands/ListSpeakerEnrollmentJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSpeakerEnrollmentJobsRequest, ListSpeakerEnrollmentJobsResponse } from "../models/models_0"; +import type { ListSpeakerEnrollmentJobsRequest, ListSpeakerEnrollmentJobsResponse } from "../models/models_0"; import { ListSpeakerEnrollmentJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/ListSpeakersCommand.ts b/clients/client-voice-id/src/commands/ListSpeakersCommand.ts index e8bf2111584bb..56bbbedd6ce40 100644 --- a/clients/client-voice-id/src/commands/ListSpeakersCommand.ts +++ b/clients/client-voice-id/src/commands/ListSpeakersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSpeakersRequest, ListSpeakersResponse } from "../models/models_0"; +import type { ListSpeakersRequest, ListSpeakersResponse } from "../models/models_0"; import { ListSpeakers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/ListTagsForResourceCommand.ts b/clients/client-voice-id/src/commands/ListTagsForResourceCommand.ts index d8cb602d91a32..8dc0381e4a5e1 100644 --- a/clients/client-voice-id/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-voice-id/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/ListWatchlistsCommand.ts b/clients/client-voice-id/src/commands/ListWatchlistsCommand.ts index e6fa58a0f1cbd..8ea1523048959 100644 --- a/clients/client-voice-id/src/commands/ListWatchlistsCommand.ts +++ b/clients/client-voice-id/src/commands/ListWatchlistsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWatchlistsRequest, ListWatchlistsResponse } from "../models/models_0"; +import type { ListWatchlistsRequest, ListWatchlistsResponse } from "../models/models_0"; import { ListWatchlists } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/OptOutSpeakerCommand.ts b/clients/client-voice-id/src/commands/OptOutSpeakerCommand.ts index 3d96967df4cd3..bf8b31304bccc 100644 --- a/clients/client-voice-id/src/commands/OptOutSpeakerCommand.ts +++ b/clients/client-voice-id/src/commands/OptOutSpeakerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OptOutSpeakerRequest, OptOutSpeakerResponse } from "../models/models_0"; +import type { OptOutSpeakerRequest, OptOutSpeakerResponse } from "../models/models_0"; import { OptOutSpeaker } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/StartFraudsterRegistrationJobCommand.ts b/clients/client-voice-id/src/commands/StartFraudsterRegistrationJobCommand.ts index 56ba452aa387d..fac0e7f0328fa 100644 --- a/clients/client-voice-id/src/commands/StartFraudsterRegistrationJobCommand.ts +++ b/clients/client-voice-id/src/commands/StartFraudsterRegistrationJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartFraudsterRegistrationJobRequest, StartFraudsterRegistrationJobResponse } from "../models/models_0"; +import type { StartFraudsterRegistrationJobRequest, StartFraudsterRegistrationJobResponse } from "../models/models_0"; import { StartFraudsterRegistrationJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/StartSpeakerEnrollmentJobCommand.ts b/clients/client-voice-id/src/commands/StartSpeakerEnrollmentJobCommand.ts index 9f487ac4c51f4..804c3ef5b3114 100644 --- a/clients/client-voice-id/src/commands/StartSpeakerEnrollmentJobCommand.ts +++ b/clients/client-voice-id/src/commands/StartSpeakerEnrollmentJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartSpeakerEnrollmentJobRequest, StartSpeakerEnrollmentJobResponse } from "../models/models_0"; +import type { StartSpeakerEnrollmentJobRequest, StartSpeakerEnrollmentJobResponse } from "../models/models_0"; import { StartSpeakerEnrollmentJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/TagResourceCommand.ts b/clients/client-voice-id/src/commands/TagResourceCommand.ts index 46de52582cabc..a5e4576de2cd4 100644 --- a/clients/client-voice-id/src/commands/TagResourceCommand.ts +++ b/clients/client-voice-id/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/UntagResourceCommand.ts b/clients/client-voice-id/src/commands/UntagResourceCommand.ts index 6bcc71652430d..856baab2f4658 100644 --- a/clients/client-voice-id/src/commands/UntagResourceCommand.ts +++ b/clients/client-voice-id/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/UpdateDomainCommand.ts b/clients/client-voice-id/src/commands/UpdateDomainCommand.ts index cba3987a8bf7d..64e3eb0ecd28e 100644 --- a/clients/client-voice-id/src/commands/UpdateDomainCommand.ts +++ b/clients/client-voice-id/src/commands/UpdateDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_0"; +import type { UpdateDomainRequest, UpdateDomainResponse } from "../models/models_0"; import { UpdateDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/commands/UpdateWatchlistCommand.ts b/clients/client-voice-id/src/commands/UpdateWatchlistCommand.ts index 24455d0b3745f..73ad49556a1c2 100644 --- a/clients/client-voice-id/src/commands/UpdateWatchlistCommand.ts +++ b/clients/client-voice-id/src/commands/UpdateWatchlistCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWatchlistRequest, UpdateWatchlistResponse } from "../models/models_0"; +import type { UpdateWatchlistRequest, UpdateWatchlistResponse } from "../models/models_0"; import { UpdateWatchlist } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VoiceIDClientResolvedConfig } from "../VoiceIDClient"; /** * @public diff --git a/clients/client-voice-id/src/endpoint/EndpointParameters.ts b/clients/client-voice-id/src/endpoint/EndpointParameters.ts index aec4ccdbef61a..12db6b62fdf59 100644 --- a/clients/client-voice-id/src/endpoint/EndpointParameters.ts +++ b/clients/client-voice-id/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-voice-id/src/endpoint/endpointResolver.ts b/clients/client-voice-id/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-voice-id/src/endpoint/endpointResolver.ts +++ b/clients/client-voice-id/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-voice-id/src/extensionConfiguration.ts b/clients/client-voice-id/src/extensionConfiguration.ts index c3b3f61e2cc8b..41494761ef9c5 100644 --- a/clients/client-voice-id/src/extensionConfiguration.ts +++ b/clients/client-voice-id/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-voice-id/src/models/VoiceIDServiceException.ts b/clients/client-voice-id/src/models/VoiceIDServiceException.ts index 75b14105142d2..8a93c96aa4c6e 100644 --- a/clients/client-voice-id/src/models/VoiceIDServiceException.ts +++ b/clients/client-voice-id/src/models/VoiceIDServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-voice-id/src/models/errors.ts b/clients/client-voice-id/src/models/errors.ts index ea1c19f517a63..0231a91ec8480 100644 --- a/clients/client-voice-id/src/models/errors.ts +++ b/clients/client-voice-id/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ConflictType, ResourceType } from "./enums"; import { VoiceIDServiceException as __BaseException } from "./VoiceIDServiceException"; diff --git a/clients/client-voice-id/src/pagination/Interfaces.ts b/clients/client-voice-id/src/pagination/Interfaces.ts index 2c4adfaa34439..de14e3afc2366 100644 --- a/clients/client-voice-id/src/pagination/Interfaces.ts +++ b/clients/client-voice-id/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { VoiceIDClient } from "../VoiceIDClient"; diff --git a/clients/client-voice-id/src/pagination/ListDomainsPaginator.ts b/clients/client-voice-id/src/pagination/ListDomainsPaginator.ts index e3823f760d382..cc146ec9ec6ae 100644 --- a/clients/client-voice-id/src/pagination/ListDomainsPaginator.ts +++ b/clients/client-voice-id/src/pagination/ListDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainsCommand, ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand"; import { VoiceIDClient } from "../VoiceIDClient"; diff --git a/clients/client-voice-id/src/pagination/ListFraudsterRegistrationJobsPaginator.ts b/clients/client-voice-id/src/pagination/ListFraudsterRegistrationJobsPaginator.ts index 7082220f04bae..7606e1aa685ff 100644 --- a/clients/client-voice-id/src/pagination/ListFraudsterRegistrationJobsPaginator.ts +++ b/clients/client-voice-id/src/pagination/ListFraudsterRegistrationJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFraudsterRegistrationJobsCommand, diff --git a/clients/client-voice-id/src/pagination/ListFraudstersPaginator.ts b/clients/client-voice-id/src/pagination/ListFraudstersPaginator.ts index 4133830e00988..0a5f7834c7012 100644 --- a/clients/client-voice-id/src/pagination/ListFraudstersPaginator.ts +++ b/clients/client-voice-id/src/pagination/ListFraudstersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListFraudstersCommand, diff --git a/clients/client-voice-id/src/pagination/ListSpeakerEnrollmentJobsPaginator.ts b/clients/client-voice-id/src/pagination/ListSpeakerEnrollmentJobsPaginator.ts index 1df08b063349b..c630088dc7c79 100644 --- a/clients/client-voice-id/src/pagination/ListSpeakerEnrollmentJobsPaginator.ts +++ b/clients/client-voice-id/src/pagination/ListSpeakerEnrollmentJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSpeakerEnrollmentJobsCommand, diff --git a/clients/client-voice-id/src/pagination/ListSpeakersPaginator.ts b/clients/client-voice-id/src/pagination/ListSpeakersPaginator.ts index a23bc61fc6c35..48d7c72ec4b94 100644 --- a/clients/client-voice-id/src/pagination/ListSpeakersPaginator.ts +++ b/clients/client-voice-id/src/pagination/ListSpeakersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSpeakersCommand, diff --git a/clients/client-voice-id/src/pagination/ListWatchlistsPaginator.ts b/clients/client-voice-id/src/pagination/ListWatchlistsPaginator.ts index 526f9e64ed3b3..d7011b04890fd 100644 --- a/clients/client-voice-id/src/pagination/ListWatchlistsPaginator.ts +++ b/clients/client-voice-id/src/pagination/ListWatchlistsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWatchlistsCommand, diff --git a/clients/client-voice-id/src/runtimeConfig.browser.ts b/clients/client-voice-id/src/runtimeConfig.browser.ts index 810dd1f4bc692..28f34be8a3fb9 100644 --- a/clients/client-voice-id/src/runtimeConfig.browser.ts +++ b/clients/client-voice-id/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { VoiceIDClientConfig } from "./VoiceIDClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { VoiceIDClientConfig } from "./VoiceIDClient"; /** * @internal diff --git a/clients/client-voice-id/src/runtimeConfig.native.ts b/clients/client-voice-id/src/runtimeConfig.native.ts index b752dc51df81e..27738ac8e53e4 100644 --- a/clients/client-voice-id/src/runtimeConfig.native.ts +++ b/clients/client-voice-id/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { VoiceIDClientConfig } from "./VoiceIDClient"; +import type { VoiceIDClientConfig } from "./VoiceIDClient"; /** * @internal diff --git a/clients/client-voice-id/src/runtimeConfig.shared.ts b/clients/client-voice-id/src/runtimeConfig.shared.ts index 4fada6961fca5..b049e5ac9b77f 100644 --- a/clients/client-voice-id/src/runtimeConfig.shared.ts +++ b/clients/client-voice-id/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultVoiceIDHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { VoiceIDClientConfig } from "./VoiceIDClient"; +import type { VoiceIDClientConfig } from "./VoiceIDClient"; /** * @internal diff --git a/clients/client-voice-id/src/runtimeConfig.ts b/clients/client-voice-id/src/runtimeConfig.ts index b77feeaf51797..37a6cb64aff94 100644 --- a/clients/client-voice-id/src/runtimeConfig.ts +++ b/clients/client-voice-id/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { VoiceIDClientConfig } from "./VoiceIDClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { VoiceIDClientConfig } from "./VoiceIDClient"; /** * @internal diff --git a/clients/client-voice-id/src/runtimeExtensions.ts b/clients/client-voice-id/src/runtimeExtensions.ts index a052336d57458..1d11a75600610 100644 --- a/clients/client-voice-id/src/runtimeExtensions.ts +++ b/clients/client-voice-id/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { VoiceIDExtensionConfiguration } from "./extensionConfiguration"; +import type { VoiceIDExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-voice-id/src/schemas/schemas_0.ts b/clients/client-voice-id/src/schemas/schemas_0.ts index 49c1cd219987b..a6b98935db3ea 100644 --- a/clients/client-voice-id/src/schemas/schemas_0.ts +++ b/clients/client-voice-id/src/schemas/schemas_0.ts @@ -203,7 +203,7 @@ const n0 = "com.amazonaws.voiceid"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-vpc-lattice/package.json b/clients/client-vpc-lattice/package.json index 6728ec6a91b44..ec76236de7bfd 100644 --- a/clients/client-vpc-lattice/package.json +++ b/clients/client-vpc-lattice/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-vpc-lattice/src/VPCLattice.ts b/clients/client-vpc-lattice/src/VPCLattice.ts index 4cf60873f832a..fe7f81ec392e3 100644 --- a/clients/client-vpc-lattice/src/VPCLattice.ts +++ b/clients/client-vpc-lattice/src/VPCLattice.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchUpdateRuleCommand, @@ -331,7 +331,7 @@ import { UpdateTargetGroupCommandInput, UpdateTargetGroupCommandOutput, } from "./commands/UpdateTargetGroupCommand"; -import { VPCLatticeClient, VPCLatticeClientConfig } from "./VPCLatticeClient"; +import { VPCLatticeClient } from "./VPCLatticeClient"; const commands = { BatchUpdateRuleCommand, diff --git a/clients/client-vpc-lattice/src/VPCLatticeClient.ts b/clients/client-vpc-lattice/src/VPCLatticeClient.ts index 519c6bf0a33fa..4069da73cb744 100644 --- a/clients/client-vpc-lattice/src/VPCLatticeClient.ts +++ b/clients/client-vpc-lattice/src/VPCLatticeClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultVPCLatticeHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchUpdateRuleCommandInput, BatchUpdateRuleCommandOutput } from "./commands/BatchUpdateRuleCommand"; @@ -257,7 +266,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-vpc-lattice/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-vpc-lattice/src/auth/httpAuthExtensionConfiguration.ts index 41750e07b5ea0..c022c0e6ab0ba 100644 --- a/clients/client-vpc-lattice/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-vpc-lattice/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { VPCLatticeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { VPCLatticeHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-vpc-lattice/src/auth/httpAuthSchemeProvider.ts b/clients/client-vpc-lattice/src/auth/httpAuthSchemeProvider.ts index 8ed5813bacb5a..e4fa202eb133b 100644 --- a/clients/client-vpc-lattice/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-vpc-lattice/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { VPCLatticeClientConfig, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import { type VPCLatticeClientResolvedConfig, VPCLatticeClientConfig } from "../VPCLatticeClient"; /** * @internal diff --git a/clients/client-vpc-lattice/src/commands/BatchUpdateRuleCommand.ts b/clients/client-vpc-lattice/src/commands/BatchUpdateRuleCommand.ts index dbd242a870a7e..aac02bf1c5bc7 100644 --- a/clients/client-vpc-lattice/src/commands/BatchUpdateRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/BatchUpdateRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchUpdateRuleRequest, BatchUpdateRuleResponse } from "../models/models_0"; +import type { BatchUpdateRuleRequest, BatchUpdateRuleResponse } from "../models/models_0"; import { BatchUpdateRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateAccessLogSubscriptionCommand.ts b/clients/client-vpc-lattice/src/commands/CreateAccessLogSubscriptionCommand.ts index f5f53a2982bd8..c7b1679dd3826 100644 --- a/clients/client-vpc-lattice/src/commands/CreateAccessLogSubscriptionCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateAccessLogSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccessLogSubscriptionRequest, CreateAccessLogSubscriptionResponse } from "../models/models_0"; +import type { CreateAccessLogSubscriptionRequest, CreateAccessLogSubscriptionResponse } from "../models/models_0"; import { CreateAccessLogSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateListenerCommand.ts b/clients/client-vpc-lattice/src/commands/CreateListenerCommand.ts index 4e76822d3c032..9cf8a605779ab 100644 --- a/clients/client-vpc-lattice/src/commands/CreateListenerCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateListenerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateListenerRequest, CreateListenerResponse } from "../models/models_0"; +import type { CreateListenerRequest, CreateListenerResponse } from "../models/models_0"; import { CreateListener } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateResourceConfigurationCommand.ts b/clients/client-vpc-lattice/src/commands/CreateResourceConfigurationCommand.ts index 8af874f9045fc..de6c83d26608a 100644 --- a/clients/client-vpc-lattice/src/commands/CreateResourceConfigurationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateResourceConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceConfigurationRequest, CreateResourceConfigurationResponse } from "../models/models_0"; +import type { CreateResourceConfigurationRequest, CreateResourceConfigurationResponse } from "../models/models_0"; import { CreateResourceConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateResourceGatewayCommand.ts b/clients/client-vpc-lattice/src/commands/CreateResourceGatewayCommand.ts index f49c711acf873..b4e38ff58fd56 100644 --- a/clients/client-vpc-lattice/src/commands/CreateResourceGatewayCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateResourceGatewayCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceGatewayRequest, CreateResourceGatewayResponse } from "../models/models_0"; +import type { CreateResourceGatewayRequest, CreateResourceGatewayResponse } from "../models/models_0"; import { CreateResourceGateway } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateRuleCommand.ts b/clients/client-vpc-lattice/src/commands/CreateRuleCommand.ts index 37a758f8214a2..b55cdfcdb03d0 100644 --- a/clients/client-vpc-lattice/src/commands/CreateRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; +import type { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; import { CreateRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceCommand.ts index b4d8647c2309a..47db30e5d1b38 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; +import type { CreateServiceRequest, CreateServiceResponse } from "../models/models_0"; import { CreateService } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkCommand.ts index 10eee19beb11c..0fbcd763bfd7e 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateServiceNetworkRequest, CreateServiceNetworkResponse } from "../models/models_0"; +import type { CreateServiceNetworkRequest, CreateServiceNetworkResponse } from "../models/models_0"; import { CreateServiceNetwork } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkResourceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkResourceAssociationCommand.ts index 4d70c0fb35328..378ad03f5e3b4 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkResourceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkResourceAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateServiceNetworkResourceAssociationRequest, CreateServiceNetworkResourceAssociationResponse, } from "../models/models_0"; import { CreateServiceNetworkResourceAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkServiceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkServiceAssociationCommand.ts index b1a624009d2af..fea41c4146685 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkServiceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkServiceAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateServiceNetworkServiceAssociationRequest, CreateServiceNetworkServiceAssociationResponse, } from "../models/models_0"; import { CreateServiceNetworkServiceAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkVpcAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkVpcAssociationCommand.ts index dfa1b10a24d8f..c8bc696ed0ed2 100644 --- a/clients/client-vpc-lattice/src/commands/CreateServiceNetworkVpcAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateServiceNetworkVpcAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { CreateServiceNetworkVpcAssociationRequest, CreateServiceNetworkVpcAssociationResponse, } from "../models/models_0"; import { CreateServiceNetworkVpcAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/CreateTargetGroupCommand.ts b/clients/client-vpc-lattice/src/commands/CreateTargetGroupCommand.ts index bff72d265f7ca..78a4790da3f9a 100644 --- a/clients/client-vpc-lattice/src/commands/CreateTargetGroupCommand.ts +++ b/clients/client-vpc-lattice/src/commands/CreateTargetGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTargetGroupRequest, CreateTargetGroupResponse } from "../models/models_0"; +import type { CreateTargetGroupRequest, CreateTargetGroupResponse } from "../models/models_0"; import { CreateTargetGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteAccessLogSubscriptionCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteAccessLogSubscriptionCommand.ts index bdfbae6a769fa..c4f4812ab5246 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteAccessLogSubscriptionCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteAccessLogSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessLogSubscriptionRequest, DeleteAccessLogSubscriptionResponse } from "../models/models_0"; +import type { DeleteAccessLogSubscriptionRequest, DeleteAccessLogSubscriptionResponse } from "../models/models_0"; import { DeleteAccessLogSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteAuthPolicyCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteAuthPolicyCommand.ts index b9875d2759a8f..97c4aa68cee56 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteAuthPolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteAuthPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAuthPolicyRequest, DeleteAuthPolicyResponse } from "../models/models_0"; +import type { DeleteAuthPolicyRequest, DeleteAuthPolicyResponse } from "../models/models_0"; import { DeleteAuthPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteDomainVerificationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteDomainVerificationCommand.ts index 5ba0292c5d0fe..7f7bb48f91d9f 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteDomainVerificationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteDomainVerificationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDomainVerificationRequest, DeleteDomainVerificationResponse } from "../models/models_0"; +import type { DeleteDomainVerificationRequest, DeleteDomainVerificationResponse } from "../models/models_0"; import { DeleteDomainVerification } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteListenerCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteListenerCommand.ts index 03c04699986a6..b060c0b44ae25 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteListenerCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteListenerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteListenerRequest, DeleteListenerResponse } from "../models/models_0"; +import type { DeleteListenerRequest, DeleteListenerResponse } from "../models/models_0"; import { DeleteListener } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteResourceConfigurationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteResourceConfigurationCommand.ts index 6eea7ba54c050..69fa1ed6d3533 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteResourceConfigurationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteResourceConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceConfigurationRequest, DeleteResourceConfigurationResponse } from "../models/models_0"; +import type { DeleteResourceConfigurationRequest, DeleteResourceConfigurationResponse } from "../models/models_0"; import { DeleteResourceConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteResourceEndpointAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteResourceEndpointAssociationCommand.ts index af6660d914038..f9261b3c8d5d9 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteResourceEndpointAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteResourceEndpointAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteResourceEndpointAssociationRequest, DeleteResourceEndpointAssociationResponse, } from "../models/models_0"; import { DeleteResourceEndpointAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteResourceGatewayCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteResourceGatewayCommand.ts index 44db7b772de91..c3c836cfef147 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteResourceGatewayCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteResourceGatewayCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceGatewayRequest, DeleteResourceGatewayResponse } from "../models/models_0"; +import type { DeleteResourceGatewayRequest, DeleteResourceGatewayResponse } from "../models/models_0"; import { DeleteResourceGateway } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteResourcePolicyCommand.ts index c0949cfce4b99..285fe881cd849 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResponse } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteRuleCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteRuleCommand.ts index 98f7f0ece83c3..4545c2afe6040 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0"; +import type { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0"; import { DeleteRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceCommand.ts index b9e785e5c6980..3dc1e30dafa7a 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; +import type { DeleteServiceRequest, DeleteServiceResponse } from "../models/models_0"; import { DeleteService } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkCommand.ts index c8c7bc31a3004..b48192a8afb16 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteServiceNetworkRequest, DeleteServiceNetworkResponse } from "../models/models_0"; +import type { DeleteServiceNetworkRequest, DeleteServiceNetworkResponse } from "../models/models_0"; import { DeleteServiceNetwork } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkResourceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkResourceAssociationCommand.ts index ff5e6e4129135..0182a0120bf28 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkResourceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkResourceAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteServiceNetworkResourceAssociationRequest, DeleteServiceNetworkResourceAssociationResponse, } from "../models/models_0"; import { DeleteServiceNetworkResourceAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkServiceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkServiceAssociationCommand.ts index c1093b8effa5a..9d9266104d3ba 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkServiceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkServiceAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteServiceNetworkServiceAssociationRequest, DeleteServiceNetworkServiceAssociationResponse, } from "../models/models_0"; import { DeleteServiceNetworkServiceAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkVpcAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkVpcAssociationCommand.ts index 73e5ed614947c..d9e56a2ed4e61 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkVpcAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteServiceNetworkVpcAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteServiceNetworkVpcAssociationRequest, DeleteServiceNetworkVpcAssociationResponse, } from "../models/models_0"; import { DeleteServiceNetworkVpcAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeleteTargetGroupCommand.ts b/clients/client-vpc-lattice/src/commands/DeleteTargetGroupCommand.ts index aa3016c5e12ae..d119e51eb4c9c 100644 --- a/clients/client-vpc-lattice/src/commands/DeleteTargetGroupCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeleteTargetGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTargetGroupRequest, DeleteTargetGroupResponse } from "../models/models_0"; +import type { DeleteTargetGroupRequest, DeleteTargetGroupResponse } from "../models/models_0"; import { DeleteTargetGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/DeregisterTargetsCommand.ts b/clients/client-vpc-lattice/src/commands/DeregisterTargetsCommand.ts index 125608286dabe..48fefea89c110 100644 --- a/clients/client-vpc-lattice/src/commands/DeregisterTargetsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/DeregisterTargetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterTargetsRequest, DeregisterTargetsResponse } from "../models/models_0"; +import type { DeregisterTargetsRequest, DeregisterTargetsResponse } from "../models/models_0"; import { DeregisterTargets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetAccessLogSubscriptionCommand.ts b/clients/client-vpc-lattice/src/commands/GetAccessLogSubscriptionCommand.ts index 9f59575454d0f..7686318bb5141 100644 --- a/clients/client-vpc-lattice/src/commands/GetAccessLogSubscriptionCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetAccessLogSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessLogSubscriptionRequest, GetAccessLogSubscriptionResponse } from "../models/models_0"; +import type { GetAccessLogSubscriptionRequest, GetAccessLogSubscriptionResponse } from "../models/models_0"; import { GetAccessLogSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetAuthPolicyCommand.ts b/clients/client-vpc-lattice/src/commands/GetAuthPolicyCommand.ts index a6f5911f39927..a780b15a34dd9 100644 --- a/clients/client-vpc-lattice/src/commands/GetAuthPolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetAuthPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAuthPolicyRequest, GetAuthPolicyResponse } from "../models/models_0"; +import type { GetAuthPolicyRequest, GetAuthPolicyResponse } from "../models/models_0"; import { GetAuthPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetDomainVerificationCommand.ts b/clients/client-vpc-lattice/src/commands/GetDomainVerificationCommand.ts index a8445bd4799e7..acdebc04d111e 100644 --- a/clients/client-vpc-lattice/src/commands/GetDomainVerificationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetDomainVerificationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDomainVerificationRequest, GetDomainVerificationResponse } from "../models/models_0"; +import type { GetDomainVerificationRequest, GetDomainVerificationResponse } from "../models/models_0"; import { GetDomainVerification } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetListenerCommand.ts b/clients/client-vpc-lattice/src/commands/GetListenerCommand.ts index 2b9d98863365b..284017783d157 100644 --- a/clients/client-vpc-lattice/src/commands/GetListenerCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetListenerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetListenerRequest, GetListenerResponse } from "../models/models_0"; +import type { GetListenerRequest, GetListenerResponse } from "../models/models_0"; import { GetListener } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetResourceConfigurationCommand.ts b/clients/client-vpc-lattice/src/commands/GetResourceConfigurationCommand.ts index b39c1692b18c0..7a14e2d9df98f 100644 --- a/clients/client-vpc-lattice/src/commands/GetResourceConfigurationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetResourceConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceConfigurationRequest, GetResourceConfigurationResponse } from "../models/models_0"; +import type { GetResourceConfigurationRequest, GetResourceConfigurationResponse } from "../models/models_0"; import { GetResourceConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetResourceGatewayCommand.ts b/clients/client-vpc-lattice/src/commands/GetResourceGatewayCommand.ts index c9f32593a3197..c245f0cf40226 100644 --- a/clients/client-vpc-lattice/src/commands/GetResourceGatewayCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetResourceGatewayCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourceGatewayRequest, GetResourceGatewayResponse } from "../models/models_0"; +import type { GetResourceGatewayRequest, GetResourceGatewayResponse } from "../models/models_0"; import { GetResourceGateway } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetResourcePolicyCommand.ts b/clients/client-vpc-lattice/src/commands/GetResourcePolicyCommand.ts index fc976c7e9d8dc..c96a4c4c42d90 100644 --- a/clients/client-vpc-lattice/src/commands/GetResourcePolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; +import type { GetResourcePolicyRequest, GetResourcePolicyResponse } from "../models/models_0"; import { GetResourcePolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetRuleCommand.ts b/clients/client-vpc-lattice/src/commands/GetRuleCommand.ts index ec0893a0cb2aa..e2bf2fef50414 100644 --- a/clients/client-vpc-lattice/src/commands/GetRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRuleRequest, GetRuleResponse } from "../models/models_0"; +import type { GetRuleRequest, GetRuleResponse } from "../models/models_0"; import { GetRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetServiceCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceCommand.ts index 1768189fc1519..e963b2afe0310 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceRequest, GetServiceResponse } from "../models/models_0"; +import type { GetServiceRequest, GetServiceResponse } from "../models/models_0"; import { GetService } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetServiceNetworkCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceNetworkCommand.ts index 404c7064069a6..e75f74946046c 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceNetworkCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceNetworkCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceNetworkRequest, GetServiceNetworkResponse } from "../models/models_0"; +import type { GetServiceNetworkRequest, GetServiceNetworkResponse } from "../models/models_0"; import { GetServiceNetwork } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetServiceNetworkResourceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceNetworkResourceAssociationCommand.ts index b7dfa7c908856..b057e60f8cb3e 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceNetworkResourceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceNetworkResourceAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetServiceNetworkResourceAssociationRequest, GetServiceNetworkResourceAssociationResponse, } from "../models/models_0"; import { GetServiceNetworkResourceAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetServiceNetworkServiceAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceNetworkServiceAssociationCommand.ts index f4973856212d5..b4b1b3513a642 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceNetworkServiceAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceNetworkServiceAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { GetServiceNetworkServiceAssociationRequest, GetServiceNetworkServiceAssociationResponse, } from "../models/models_0"; import { GetServiceNetworkServiceAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetServiceNetworkVpcAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/GetServiceNetworkVpcAssociationCommand.ts index bd92cf047c5e2..a83e1e03340ca 100644 --- a/clients/client-vpc-lattice/src/commands/GetServiceNetworkVpcAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetServiceNetworkVpcAssociationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceNetworkVpcAssociationRequest, GetServiceNetworkVpcAssociationResponse } from "../models/models_0"; +import type { + GetServiceNetworkVpcAssociationRequest, + GetServiceNetworkVpcAssociationResponse, +} from "../models/models_0"; import { GetServiceNetworkVpcAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/GetTargetGroupCommand.ts b/clients/client-vpc-lattice/src/commands/GetTargetGroupCommand.ts index 10bf8abcbe9a8..2e8b0cedf6657 100644 --- a/clients/client-vpc-lattice/src/commands/GetTargetGroupCommand.ts +++ b/clients/client-vpc-lattice/src/commands/GetTargetGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTargetGroupRequest, GetTargetGroupResponse } from "../models/models_0"; +import type { GetTargetGroupRequest, GetTargetGroupResponse } from "../models/models_0"; import { GetTargetGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListAccessLogSubscriptionsCommand.ts b/clients/client-vpc-lattice/src/commands/ListAccessLogSubscriptionsCommand.ts index 174d6f245acf6..50d41aacb52cd 100644 --- a/clients/client-vpc-lattice/src/commands/ListAccessLogSubscriptionsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListAccessLogSubscriptionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessLogSubscriptionsRequest, ListAccessLogSubscriptionsResponse } from "../models/models_0"; +import type { ListAccessLogSubscriptionsRequest, ListAccessLogSubscriptionsResponse } from "../models/models_0"; import { ListAccessLogSubscriptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListDomainVerificationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListDomainVerificationsCommand.ts index aee53866bf03b..484340e8c5bb3 100644 --- a/clients/client-vpc-lattice/src/commands/ListDomainVerificationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListDomainVerificationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDomainVerificationsRequest, ListDomainVerificationsResponse } from "../models/models_0"; +import type { ListDomainVerificationsRequest, ListDomainVerificationsResponse } from "../models/models_0"; import { ListDomainVerifications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListListenersCommand.ts b/clients/client-vpc-lattice/src/commands/ListListenersCommand.ts index ebd77a2ca279c..01a29be30caaf 100644 --- a/clients/client-vpc-lattice/src/commands/ListListenersCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListListenersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListListenersRequest, ListListenersResponse } from "../models/models_0"; +import type { ListListenersRequest, ListListenersResponse } from "../models/models_0"; import { ListListeners } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListResourceConfigurationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListResourceConfigurationsCommand.ts index 47d29c178de5a..aa8fe853ea9b3 100644 --- a/clients/client-vpc-lattice/src/commands/ListResourceConfigurationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListResourceConfigurationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceConfigurationsRequest, ListResourceConfigurationsResponse } from "../models/models_0"; +import type { ListResourceConfigurationsRequest, ListResourceConfigurationsResponse } from "../models/models_0"; import { ListResourceConfigurations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListResourceEndpointAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListResourceEndpointAssociationsCommand.ts index 9ed72207c963d..2c0ff838063a1 100644 --- a/clients/client-vpc-lattice/src/commands/ListResourceEndpointAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListResourceEndpointAssociationsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceEndpointAssociationsRequest, ListResourceEndpointAssociationsResponse } from "../models/models_0"; +import type { + ListResourceEndpointAssociationsRequest, + ListResourceEndpointAssociationsResponse, +} from "../models/models_0"; import { ListResourceEndpointAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListResourceGatewaysCommand.ts b/clients/client-vpc-lattice/src/commands/ListResourceGatewaysCommand.ts index 72a8685472c81..d30cfa037a752 100644 --- a/clients/client-vpc-lattice/src/commands/ListResourceGatewaysCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListResourceGatewaysCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceGatewaysRequest, ListResourceGatewaysResponse } from "../models/models_0"; +import type { ListResourceGatewaysRequest, ListResourceGatewaysResponse } from "../models/models_0"; import { ListResourceGateways } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListRulesCommand.ts b/clients/client-vpc-lattice/src/commands/ListRulesCommand.ts index 66a9fc6db70a9..c3abe622e1cd4 100644 --- a/clients/client-vpc-lattice/src/commands/ListRulesCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRulesRequest, ListRulesResponse } from "../models/models_0"; +import type { ListRulesRequest, ListRulesResponse } from "../models/models_0"; import { ListRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworkResourceAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworkResourceAssociationsCommand.ts index 971fa0e078fa8..c802dcdfd26cf 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworkResourceAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworkResourceAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServiceNetworkResourceAssociationsRequest, ListServiceNetworkResourceAssociationsResponse, } from "../models/models_0"; import { ListServiceNetworkResourceAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworkServiceAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworkServiceAssociationsCommand.ts index b45e77cec4e4f..3d90f6f4b5b6a 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworkServiceAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworkServiceAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServiceNetworkServiceAssociationsRequest, ListServiceNetworkServiceAssociationsResponse, } from "../models/models_0"; import { ListServiceNetworkServiceAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcAssociationsCommand.ts index ec61cba278ff2..1da14b55d56ae 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServiceNetworkVpcAssociationsRequest, ListServiceNetworkVpcAssociationsResponse, } from "../models/models_0"; import { ListServiceNetworkVpcAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcEndpointAssociationsCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcEndpointAssociationsCommand.ts index ad4dc49befb90..ecdb498ec97e7 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcEndpointAssociationsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworkVpcEndpointAssociationsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListServiceNetworkVpcEndpointAssociationsRequest, ListServiceNetworkVpcEndpointAssociationsResponse, } from "../models/models_0"; import { ListServiceNetworkVpcEndpointAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListServiceNetworksCommand.ts b/clients/client-vpc-lattice/src/commands/ListServiceNetworksCommand.ts index 49287ae969c66..84d687db44489 100644 --- a/clients/client-vpc-lattice/src/commands/ListServiceNetworksCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServiceNetworksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServiceNetworksRequest, ListServiceNetworksResponse } from "../models/models_0"; +import type { ListServiceNetworksRequest, ListServiceNetworksResponse } from "../models/models_0"; import { ListServiceNetworks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListServicesCommand.ts b/clients/client-vpc-lattice/src/commands/ListServicesCommand.ts index e08da10f16811..64f15646b9e71 100644 --- a/clients/client-vpc-lattice/src/commands/ListServicesCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListServicesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListServicesRequest, ListServicesResponse } from "../models/models_0"; +import type { ListServicesRequest, ListServicesResponse } from "../models/models_0"; import { ListServices } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListTagsForResourceCommand.ts b/clients/client-vpc-lattice/src/commands/ListTagsForResourceCommand.ts index 37669c96a7701..0e6b5b712480e 100644 --- a/clients/client-vpc-lattice/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListTargetGroupsCommand.ts b/clients/client-vpc-lattice/src/commands/ListTargetGroupsCommand.ts index 4e1c273261f1b..fa23dd8c27ee5 100644 --- a/clients/client-vpc-lattice/src/commands/ListTargetGroupsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListTargetGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTargetGroupsRequest, ListTargetGroupsResponse } from "../models/models_0"; +import type { ListTargetGroupsRequest, ListTargetGroupsResponse } from "../models/models_0"; import { ListTargetGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/ListTargetsCommand.ts b/clients/client-vpc-lattice/src/commands/ListTargetsCommand.ts index 13aec6461999d..d9b56f175a2af 100644 --- a/clients/client-vpc-lattice/src/commands/ListTargetsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/ListTargetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTargetsRequest, ListTargetsResponse } from "../models/models_0"; +import type { ListTargetsRequest, ListTargetsResponse } from "../models/models_0"; import { ListTargets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/PutAuthPolicyCommand.ts b/clients/client-vpc-lattice/src/commands/PutAuthPolicyCommand.ts index fb45a6842a021..85825898e3782 100644 --- a/clients/client-vpc-lattice/src/commands/PutAuthPolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/PutAuthPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAuthPolicyRequest, PutAuthPolicyResponse } from "../models/models_0"; +import type { PutAuthPolicyRequest, PutAuthPolicyResponse } from "../models/models_0"; import { PutAuthPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/PutResourcePolicyCommand.ts b/clients/client-vpc-lattice/src/commands/PutResourcePolicyCommand.ts index 3225bb67c9eda..254dd4c450753 100644 --- a/clients/client-vpc-lattice/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-vpc-lattice/src/commands/PutResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/RegisterTargetsCommand.ts b/clients/client-vpc-lattice/src/commands/RegisterTargetsCommand.ts index 09737389bc31f..151d701bcb2fd 100644 --- a/clients/client-vpc-lattice/src/commands/RegisterTargetsCommand.ts +++ b/clients/client-vpc-lattice/src/commands/RegisterTargetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterTargetsRequest, RegisterTargetsResponse } from "../models/models_0"; +import type { RegisterTargetsRequest, RegisterTargetsResponse } from "../models/models_0"; import { RegisterTargets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/StartDomainVerificationCommand.ts b/clients/client-vpc-lattice/src/commands/StartDomainVerificationCommand.ts index bb7844d240e1e..f64f25995dc5f 100644 --- a/clients/client-vpc-lattice/src/commands/StartDomainVerificationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/StartDomainVerificationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartDomainVerificationRequest, StartDomainVerificationResponse } from "../models/models_0"; +import type { StartDomainVerificationRequest, StartDomainVerificationResponse } from "../models/models_0"; import { StartDomainVerification } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/TagResourceCommand.ts b/clients/client-vpc-lattice/src/commands/TagResourceCommand.ts index bb1ddc315dfe3..19583e9a64d2c 100644 --- a/clients/client-vpc-lattice/src/commands/TagResourceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UntagResourceCommand.ts b/clients/client-vpc-lattice/src/commands/UntagResourceCommand.ts index e69d786561baa..6dff8494093d0 100644 --- a/clients/client-vpc-lattice/src/commands/UntagResourceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UpdateAccessLogSubscriptionCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateAccessLogSubscriptionCommand.ts index 5bc0e97e78a23..119396d99d8fb 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateAccessLogSubscriptionCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateAccessLogSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAccessLogSubscriptionRequest, UpdateAccessLogSubscriptionResponse } from "../models/models_0"; +import type { UpdateAccessLogSubscriptionRequest, UpdateAccessLogSubscriptionResponse } from "../models/models_0"; import { UpdateAccessLogSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UpdateListenerCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateListenerCommand.ts index 00089493107e6..fd5ae0f569e26 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateListenerCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateListenerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateListenerRequest, UpdateListenerResponse } from "../models/models_0"; +import type { UpdateListenerRequest, UpdateListenerResponse } from "../models/models_0"; import { UpdateListener } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UpdateResourceConfigurationCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateResourceConfigurationCommand.ts index 98a2f75a58974..4073934c7c50a 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateResourceConfigurationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateResourceConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResourceConfigurationRequest, UpdateResourceConfigurationResponse } from "../models/models_0"; +import type { UpdateResourceConfigurationRequest, UpdateResourceConfigurationResponse } from "../models/models_0"; import { UpdateResourceConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UpdateResourceGatewayCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateResourceGatewayCommand.ts index d5e2e76242f89..1610376a1ad6b 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateResourceGatewayCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateResourceGatewayCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResourceGatewayRequest, UpdateResourceGatewayResponse } from "../models/models_0"; +import type { UpdateResourceGatewayRequest, UpdateResourceGatewayResponse } from "../models/models_0"; import { UpdateResourceGateway } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UpdateRuleCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateRuleCommand.ts index a9b3da12f4c01..48eac2f3eb13b 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateRuleCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0"; +import type { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0"; import { UpdateRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UpdateServiceCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateServiceCommand.ts index ac269d568e57a..36d5a9170ce71 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateServiceCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateServiceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0"; +import type { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0"; import { UpdateService } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkCommand.ts index 12c3cfc35e22b..fd5353e045ff0 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateServiceNetworkRequest, UpdateServiceNetworkResponse } from "../models/models_0"; +import type { UpdateServiceNetworkRequest, UpdateServiceNetworkResponse } from "../models/models_0"; import { UpdateServiceNetwork } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkVpcAssociationCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkVpcAssociationCommand.ts index deec8ee1f65e9..1d61b7d321d3d 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkVpcAssociationCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateServiceNetworkVpcAssociationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateServiceNetworkVpcAssociationRequest, UpdateServiceNetworkVpcAssociationResponse, } from "../models/models_0"; import { UpdateServiceNetworkVpcAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/commands/UpdateTargetGroupCommand.ts b/clients/client-vpc-lattice/src/commands/UpdateTargetGroupCommand.ts index 56e77e78aa381..57e525965d19c 100644 --- a/clients/client-vpc-lattice/src/commands/UpdateTargetGroupCommand.ts +++ b/clients/client-vpc-lattice/src/commands/UpdateTargetGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTargetGroupRequest, UpdateTargetGroupResponse } from "../models/models_0"; +import type { UpdateTargetGroupRequest, UpdateTargetGroupResponse } from "../models/models_0"; import { UpdateTargetGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; +import type { ServiceInputTypes, ServiceOutputTypes, VPCLatticeClientResolvedConfig } from "../VPCLatticeClient"; /** * @public diff --git a/clients/client-vpc-lattice/src/endpoint/EndpointParameters.ts b/clients/client-vpc-lattice/src/endpoint/EndpointParameters.ts index 5d96802f55876..d5e17624b60ef 100644 --- a/clients/client-vpc-lattice/src/endpoint/EndpointParameters.ts +++ b/clients/client-vpc-lattice/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-vpc-lattice/src/endpoint/endpointResolver.ts b/clients/client-vpc-lattice/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-vpc-lattice/src/endpoint/endpointResolver.ts +++ b/clients/client-vpc-lattice/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-vpc-lattice/src/extensionConfiguration.ts b/clients/client-vpc-lattice/src/extensionConfiguration.ts index de88466329427..87bf6461a86de 100644 --- a/clients/client-vpc-lattice/src/extensionConfiguration.ts +++ b/clients/client-vpc-lattice/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-vpc-lattice/src/models/VPCLatticeServiceException.ts b/clients/client-vpc-lattice/src/models/VPCLatticeServiceException.ts index 279e71d66d24b..3d5b45761d624 100644 --- a/clients/client-vpc-lattice/src/models/VPCLatticeServiceException.ts +++ b/clients/client-vpc-lattice/src/models/VPCLatticeServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-vpc-lattice/src/models/errors.ts b/clients/client-vpc-lattice/src/models/errors.ts index 568cc899f35a0..d61996f41e33d 100644 --- a/clients/client-vpc-lattice/src/models/errors.ts +++ b/clients/client-vpc-lattice/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-vpc-lattice/src/pagination/Interfaces.ts b/clients/client-vpc-lattice/src/pagination/Interfaces.ts index 8b56e939cc28c..759fdb775cec3 100644 --- a/clients/client-vpc-lattice/src/pagination/Interfaces.ts +++ b/clients/client-vpc-lattice/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { VPCLatticeClient } from "../VPCLatticeClient"; diff --git a/clients/client-vpc-lattice/src/pagination/ListAccessLogSubscriptionsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListAccessLogSubscriptionsPaginator.ts index 6cecb36280ba6..87a32a4ff0e81 100644 --- a/clients/client-vpc-lattice/src/pagination/ListAccessLogSubscriptionsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListAccessLogSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccessLogSubscriptionsCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListDomainVerificationsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListDomainVerificationsPaginator.ts index bcbebde104399..5f2a26d27ed66 100644 --- a/clients/client-vpc-lattice/src/pagination/ListDomainVerificationsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListDomainVerificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDomainVerificationsCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListListenersPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListListenersPaginator.ts index 491f7cf691e04..64e394a6229bf 100644 --- a/clients/client-vpc-lattice/src/pagination/ListListenersPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListListenersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListListenersCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListResourceConfigurationsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListResourceConfigurationsPaginator.ts index 4031e89ad1eda..20856663a26b1 100644 --- a/clients/client-vpc-lattice/src/pagination/ListResourceConfigurationsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListResourceConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceConfigurationsCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListResourceEndpointAssociationsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListResourceEndpointAssociationsPaginator.ts index 177887c578583..8fb7cb489bcdc 100644 --- a/clients/client-vpc-lattice/src/pagination/ListResourceEndpointAssociationsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListResourceEndpointAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceEndpointAssociationsCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListResourceGatewaysPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListResourceGatewaysPaginator.ts index 6dae655bb29d2..89d7f5888baf1 100644 --- a/clients/client-vpc-lattice/src/pagination/ListResourceGatewaysPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListResourceGatewaysPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceGatewaysCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListRulesPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListRulesPaginator.ts index 309821a692009..1883ba668b4d6 100644 --- a/clients/client-vpc-lattice/src/pagination/ListRulesPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRulesCommand, ListRulesCommandInput, ListRulesCommandOutput } from "../commands/ListRulesCommand"; import { VPCLatticeClient } from "../VPCLatticeClient"; diff --git a/clients/client-vpc-lattice/src/pagination/ListServiceNetworkResourceAssociationsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListServiceNetworkResourceAssociationsPaginator.ts index ee7a03019a5b0..b0346fa3da379 100644 --- a/clients/client-vpc-lattice/src/pagination/ListServiceNetworkResourceAssociationsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListServiceNetworkResourceAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceNetworkResourceAssociationsCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListServiceNetworkServiceAssociationsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListServiceNetworkServiceAssociationsPaginator.ts index f114767c7986d..39e478648d7ad 100644 --- a/clients/client-vpc-lattice/src/pagination/ListServiceNetworkServiceAssociationsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListServiceNetworkServiceAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceNetworkServiceAssociationsCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListServiceNetworkVpcAssociationsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListServiceNetworkVpcAssociationsPaginator.ts index 98ac5caba08f6..c0d8ca7b19619 100644 --- a/clients/client-vpc-lattice/src/pagination/ListServiceNetworkVpcAssociationsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListServiceNetworkVpcAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceNetworkVpcAssociationsCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListServiceNetworkVpcEndpointAssociationsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListServiceNetworkVpcEndpointAssociationsPaginator.ts index f4c7537d37bcc..324e65d35e709 100644 --- a/clients/client-vpc-lattice/src/pagination/ListServiceNetworkVpcEndpointAssociationsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListServiceNetworkVpcEndpointAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceNetworkVpcEndpointAssociationsCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListServiceNetworksPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListServiceNetworksPaginator.ts index 7847a87f87875..5df67e2f9a77a 100644 --- a/clients/client-vpc-lattice/src/pagination/ListServiceNetworksPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListServiceNetworksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServiceNetworksCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListServicesPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListServicesPaginator.ts index 35504994907d4..679689c2305da 100644 --- a/clients/client-vpc-lattice/src/pagination/ListServicesPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListServicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListServicesCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListTargetGroupsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListTargetGroupsPaginator.ts index 02a6ad865dd9b..815e044c41e44 100644 --- a/clients/client-vpc-lattice/src/pagination/ListTargetGroupsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListTargetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTargetGroupsCommand, diff --git a/clients/client-vpc-lattice/src/pagination/ListTargetsPaginator.ts b/clients/client-vpc-lattice/src/pagination/ListTargetsPaginator.ts index 4a79a46d390ac..90f17fc480807 100644 --- a/clients/client-vpc-lattice/src/pagination/ListTargetsPaginator.ts +++ b/clients/client-vpc-lattice/src/pagination/ListTargetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTargetsCommand, ListTargetsCommandInput, ListTargetsCommandOutput } from "../commands/ListTargetsCommand"; import { VPCLatticeClient } from "../VPCLatticeClient"; diff --git a/clients/client-vpc-lattice/src/runtimeConfig.browser.ts b/clients/client-vpc-lattice/src/runtimeConfig.browser.ts index f5847b5d02d19..55ffda28dc908 100644 --- a/clients/client-vpc-lattice/src/runtimeConfig.browser.ts +++ b/clients/client-vpc-lattice/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { VPCLatticeClientConfig } from "./VPCLatticeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { VPCLatticeClientConfig } from "./VPCLatticeClient"; /** * @internal diff --git a/clients/client-vpc-lattice/src/runtimeConfig.native.ts b/clients/client-vpc-lattice/src/runtimeConfig.native.ts index 8f99c6056b361..d882450f7eaf6 100644 --- a/clients/client-vpc-lattice/src/runtimeConfig.native.ts +++ b/clients/client-vpc-lattice/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { VPCLatticeClientConfig } from "./VPCLatticeClient"; +import type { VPCLatticeClientConfig } from "./VPCLatticeClient"; /** * @internal diff --git a/clients/client-vpc-lattice/src/runtimeConfig.shared.ts b/clients/client-vpc-lattice/src/runtimeConfig.shared.ts index b6421464129ae..8cbe444335cb5 100644 --- a/clients/client-vpc-lattice/src/runtimeConfig.shared.ts +++ b/clients/client-vpc-lattice/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultVPCLatticeHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { VPCLatticeClientConfig } from "./VPCLatticeClient"; +import type { VPCLatticeClientConfig } from "./VPCLatticeClient"; /** * @internal diff --git a/clients/client-vpc-lattice/src/runtimeConfig.ts b/clients/client-vpc-lattice/src/runtimeConfig.ts index 380b734f1d49f..6d5011f18c244 100644 --- a/clients/client-vpc-lattice/src/runtimeConfig.ts +++ b/clients/client-vpc-lattice/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { VPCLatticeClientConfig } from "./VPCLatticeClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { VPCLatticeClientConfig } from "./VPCLatticeClient"; /** * @internal diff --git a/clients/client-vpc-lattice/src/runtimeExtensions.ts b/clients/client-vpc-lattice/src/runtimeExtensions.ts index 66f7df9202935..a9543a826942c 100644 --- a/clients/client-vpc-lattice/src/runtimeExtensions.ts +++ b/clients/client-vpc-lattice/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { VPCLatticeExtensionConfiguration } from "./extensionConfiguration"; +import type { VPCLatticeExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-vpc-lattice/src/schemas/schemas_0.ts b/clients/client-vpc-lattice/src/schemas/schemas_0.ts index b18bbd6a74390..6d2d0a6a2f332 100644 --- a/clients/client-vpc-lattice/src/schemas/schemas_0.ts +++ b/clients/client-vpc-lattice/src/schemas/schemas_0.ts @@ -438,7 +438,7 @@ const n0 = "com.amazonaws.vpclattice"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-waf-regional/package.json b/clients/client-waf-regional/package.json index ff76c12804a96..f9f8baea49c17 100644 --- a/clients/client-waf-regional/package.json +++ b/clients/client-waf-regional/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-waf-regional/src/WAFRegional.ts b/clients/client-waf-regional/src/WAFRegional.ts index 4653531273a65..0e2a095571b6e 100644 --- a/clients/client-waf-regional/src/WAFRegional.ts +++ b/clients/client-waf-regional/src/WAFRegional.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateWebACLCommand, @@ -355,7 +355,7 @@ import { UpdateXssMatchSetCommandInput, UpdateXssMatchSetCommandOutput, } from "./commands/UpdateXssMatchSetCommand"; -import { WAFRegionalClient, WAFRegionalClientConfig } from "./WAFRegionalClient"; +import { WAFRegionalClient } from "./WAFRegionalClient"; const commands = { AssociateWebACLCommand, diff --git a/clients/client-waf-regional/src/WAFRegionalClient.ts b/clients/client-waf-regional/src/WAFRegionalClient.ts index da15acfc14983..68cef883017b3 100644 --- a/clients/client-waf-regional/src/WAFRegionalClient.ts +++ b/clients/client-waf-regional/src/WAFRegionalClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWAFRegionalHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateWebACLCommandInput, AssociateWebACLCommandOutput } from "./commands/AssociateWebACLCommand"; @@ -250,7 +259,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-waf-regional/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-waf-regional/src/auth/httpAuthExtensionConfiguration.ts index 4e8d6f94c623a..6dca5282b0a46 100644 --- a/clients/client-waf-regional/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-waf-regional/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WAFRegionalHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WAFRegionalHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-waf-regional/src/auth/httpAuthSchemeProvider.ts b/clients/client-waf-regional/src/auth/httpAuthSchemeProvider.ts index 590d7d6397284..db8b80c785927 100644 --- a/clients/client-waf-regional/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-waf-regional/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WAFRegionalClientConfig, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import { type WAFRegionalClientResolvedConfig, WAFRegionalClientConfig } from "../WAFRegionalClient"; /** * @internal diff --git a/clients/client-waf-regional/src/commands/AssociateWebACLCommand.ts b/clients/client-waf-regional/src/commands/AssociateWebACLCommand.ts index 41c5a20e86d35..ffe8180c751a6 100644 --- a/clients/client-waf-regional/src/commands/AssociateWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/AssociateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateWebACLRequest, AssociateWebACLResponse } from "../models/models_0"; +import type { AssociateWebACLRequest, AssociateWebACLResponse } from "../models/models_0"; import { AssociateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateByteMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateByteMatchSetCommand.ts index 7fc42d22c47b7..486587f09e1e7 100644 --- a/clients/client-waf-regional/src/commands/CreateByteMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateByteMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateByteMatchSetRequest, CreateByteMatchSetResponse } from "../models/models_0"; +import type { CreateByteMatchSetRequest, CreateByteMatchSetResponse } from "../models/models_0"; import { CreateByteMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateGeoMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateGeoMatchSetCommand.ts index df490aff3db9f..15401bde5936c 100644 --- a/clients/client-waf-regional/src/commands/CreateGeoMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateGeoMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGeoMatchSetRequest, CreateGeoMatchSetResponse } from "../models/models_0"; +import type { CreateGeoMatchSetRequest, CreateGeoMatchSetResponse } from "../models/models_0"; import { CreateGeoMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateIPSetCommand.ts b/clients/client-waf-regional/src/commands/CreateIPSetCommand.ts index 5ee46500c217d..59d16ed766e55 100644 --- a/clients/client-waf-regional/src/commands/CreateIPSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIPSetRequest, CreateIPSetResponse } from "../models/models_0"; +import type { CreateIPSetRequest, CreateIPSetResponse } from "../models/models_0"; import { CreateIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateRateBasedRuleCommand.ts b/clients/client-waf-regional/src/commands/CreateRateBasedRuleCommand.ts index 7afdea0b36124..de9609ff96486 100644 --- a/clients/client-waf-regional/src/commands/CreateRateBasedRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRateBasedRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRateBasedRuleRequest, CreateRateBasedRuleResponse } from "../models/models_0"; +import type { CreateRateBasedRuleRequest, CreateRateBasedRuleResponse } from "../models/models_0"; import { CreateRateBasedRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateRegexMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateRegexMatchSetCommand.ts index 4d6767fe33944..a7cd5e6743462 100644 --- a/clients/client-waf-regional/src/commands/CreateRegexMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRegexMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegexMatchSetRequest, CreateRegexMatchSetResponse } from "../models/models_0"; +import type { CreateRegexMatchSetRequest, CreateRegexMatchSetResponse } from "../models/models_0"; import { CreateRegexMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateRegexPatternSetCommand.ts b/clients/client-waf-regional/src/commands/CreateRegexPatternSetCommand.ts index df100d70149a7..3188497c45959 100644 --- a/clients/client-waf-regional/src/commands/CreateRegexPatternSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegexPatternSetRequest, CreateRegexPatternSetResponse } from "../models/models_0"; +import type { CreateRegexPatternSetRequest, CreateRegexPatternSetResponse } from "../models/models_0"; import { CreateRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateRuleCommand.ts b/clients/client-waf-regional/src/commands/CreateRuleCommand.ts index 7df646423ab70..d3f6a7bf61028 100644 --- a/clients/client-waf-regional/src/commands/CreateRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; +import type { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; import { CreateRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/CreateRuleGroupCommand.ts index 4a6fe7420f9c3..e7d8b99ce6b64 100644 --- a/clients/client-waf-regional/src/commands/CreateRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleGroupRequest, CreateRuleGroupResponse } from "../models/models_0"; +import type { CreateRuleGroupRequest, CreateRuleGroupResponse } from "../models/models_0"; import { CreateRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateSizeConstraintSetCommand.ts b/clients/client-waf-regional/src/commands/CreateSizeConstraintSetCommand.ts index d843478b07de0..85cfdb90b97b9 100644 --- a/clients/client-waf-regional/src/commands/CreateSizeConstraintSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateSizeConstraintSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSizeConstraintSetRequest, CreateSizeConstraintSetResponse } from "../models/models_0"; +import type { CreateSizeConstraintSetRequest, CreateSizeConstraintSetResponse } from "../models/models_0"; import { CreateSizeConstraintSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateSqlInjectionMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateSqlInjectionMatchSetCommand.ts index 3701707eab898..22bcea55ad0ea 100644 --- a/clients/client-waf-regional/src/commands/CreateSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateSqlInjectionMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSqlInjectionMatchSetRequest, CreateSqlInjectionMatchSetResponse } from "../models/models_0"; +import type { CreateSqlInjectionMatchSetRequest, CreateSqlInjectionMatchSetResponse } from "../models/models_0"; import { CreateSqlInjectionMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateWebACLCommand.ts b/clients/client-waf-regional/src/commands/CreateWebACLCommand.ts index 0e9c1fe60c5a2..ab777e671d1ca 100644 --- a/clients/client-waf-regional/src/commands/CreateWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebACLRequest, CreateWebACLResponse } from "../models/models_0"; +import type { CreateWebACLRequest, CreateWebACLResponse } from "../models/models_0"; import { CreateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateWebACLMigrationStackCommand.ts b/clients/client-waf-regional/src/commands/CreateWebACLMigrationStackCommand.ts index aa5696e5f71a9..8f139cc791c95 100644 --- a/clients/client-waf-regional/src/commands/CreateWebACLMigrationStackCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateWebACLMigrationStackCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebACLMigrationStackRequest, CreateWebACLMigrationStackResponse } from "../models/models_0"; +import type { CreateWebACLMigrationStackRequest, CreateWebACLMigrationStackResponse } from "../models/models_0"; import { CreateWebACLMigrationStack } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/CreateXssMatchSetCommand.ts b/clients/client-waf-regional/src/commands/CreateXssMatchSetCommand.ts index 0afde85c630a8..ec406aac30307 100644 --- a/clients/client-waf-regional/src/commands/CreateXssMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/CreateXssMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateXssMatchSetRequest, CreateXssMatchSetResponse } from "../models/models_0"; +import type { CreateXssMatchSetRequest, CreateXssMatchSetResponse } from "../models/models_0"; import { CreateXssMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteByteMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteByteMatchSetCommand.ts index 825732c44b936..3d4c9282ae829 100644 --- a/clients/client-waf-regional/src/commands/DeleteByteMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteByteMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteByteMatchSetRequest, DeleteByteMatchSetResponse } from "../models/models_0"; +import type { DeleteByteMatchSetRequest, DeleteByteMatchSetResponse } from "../models/models_0"; import { DeleteByteMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteGeoMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteGeoMatchSetCommand.ts index b8f98ffa0dc2e..81ccd013de442 100644 --- a/clients/client-waf-regional/src/commands/DeleteGeoMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteGeoMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGeoMatchSetRequest, DeleteGeoMatchSetResponse } from "../models/models_0"; +import type { DeleteGeoMatchSetRequest, DeleteGeoMatchSetResponse } from "../models/models_0"; import { DeleteGeoMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteIPSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteIPSetCommand.ts index 4a9277e110a12..2148b1aceef82 100644 --- a/clients/client-waf-regional/src/commands/DeleteIPSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIPSetRequest, DeleteIPSetResponse } from "../models/models_0"; +import type { DeleteIPSetRequest, DeleteIPSetResponse } from "../models/models_0"; import { DeleteIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-waf-regional/src/commands/DeleteLoggingConfigurationCommand.ts index 71e15495178c1..7d7a75f75c7cb 100644 --- a/clients/client-waf-regional/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteLoggingConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLoggingConfigurationRequest, DeleteLoggingConfigurationResponse } from "../models/models_0"; +import type { DeleteLoggingConfigurationRequest, DeleteLoggingConfigurationResponse } from "../models/models_0"; import { DeleteLoggingConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeletePermissionPolicyCommand.ts b/clients/client-waf-regional/src/commands/DeletePermissionPolicyCommand.ts index 3198cf3543b88..0d07a5036d4fd 100644 --- a/clients/client-waf-regional/src/commands/DeletePermissionPolicyCommand.ts +++ b/clients/client-waf-regional/src/commands/DeletePermissionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePermissionPolicyRequest, DeletePermissionPolicyResponse } from "../models/models_0"; +import type { DeletePermissionPolicyRequest, DeletePermissionPolicyResponse } from "../models/models_0"; import { DeletePermissionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteRateBasedRuleCommand.ts b/clients/client-waf-regional/src/commands/DeleteRateBasedRuleCommand.ts index 74cddb35b4b86..ad70f96959425 100644 --- a/clients/client-waf-regional/src/commands/DeleteRateBasedRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRateBasedRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRateBasedRuleRequest, DeleteRateBasedRuleResponse } from "../models/models_0"; +import type { DeleteRateBasedRuleRequest, DeleteRateBasedRuleResponse } from "../models/models_0"; import { DeleteRateBasedRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteRegexMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteRegexMatchSetCommand.ts index b7040aa32b00b..2e6188512a3af 100644 --- a/clients/client-waf-regional/src/commands/DeleteRegexMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRegexMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegexMatchSetRequest, DeleteRegexMatchSetResponse } from "../models/models_0"; +import type { DeleteRegexMatchSetRequest, DeleteRegexMatchSetResponse } from "../models/models_0"; import { DeleteRegexMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteRegexPatternSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteRegexPatternSetCommand.ts index 7dc15f4763c63..7ff7b75a66d9f 100644 --- a/clients/client-waf-regional/src/commands/DeleteRegexPatternSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegexPatternSetRequest, DeleteRegexPatternSetResponse } from "../models/models_0"; +import type { DeleteRegexPatternSetRequest, DeleteRegexPatternSetResponse } from "../models/models_0"; import { DeleteRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteRuleCommand.ts b/clients/client-waf-regional/src/commands/DeleteRuleCommand.ts index 7f75fbabed9f5..6c0c96eadc276 100644 --- a/clients/client-waf-regional/src/commands/DeleteRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0"; +import type { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0"; import { DeleteRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/DeleteRuleGroupCommand.ts index e23556968eb94..4ba026d275c44 100644 --- a/clients/client-waf-regional/src/commands/DeleteRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleGroupRequest, DeleteRuleGroupResponse } from "../models/models_0"; +import type { DeleteRuleGroupRequest, DeleteRuleGroupResponse } from "../models/models_0"; import { DeleteRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteSizeConstraintSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteSizeConstraintSetCommand.ts index 4179653dce2c7..4ff8e4e6c6901 100644 --- a/clients/client-waf-regional/src/commands/DeleteSizeConstraintSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteSizeConstraintSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSizeConstraintSetRequest, DeleteSizeConstraintSetResponse } from "../models/models_0"; +import type { DeleteSizeConstraintSetRequest, DeleteSizeConstraintSetResponse } from "../models/models_0"; import { DeleteSizeConstraintSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteSqlInjectionMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteSqlInjectionMatchSetCommand.ts index 231353ebaf5fa..00694aee98ebc 100644 --- a/clients/client-waf-regional/src/commands/DeleteSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteSqlInjectionMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSqlInjectionMatchSetRequest, DeleteSqlInjectionMatchSetResponse } from "../models/models_0"; +import type { DeleteSqlInjectionMatchSetRequest, DeleteSqlInjectionMatchSetResponse } from "../models/models_0"; import { DeleteSqlInjectionMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteWebACLCommand.ts b/clients/client-waf-regional/src/commands/DeleteWebACLCommand.ts index 25b7068f67f79..55c6aeac51a7d 100644 --- a/clients/client-waf-regional/src/commands/DeleteWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebACLRequest, DeleteWebACLResponse } from "../models/models_0"; +import type { DeleteWebACLRequest, DeleteWebACLResponse } from "../models/models_0"; import { DeleteWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DeleteXssMatchSetCommand.ts b/clients/client-waf-regional/src/commands/DeleteXssMatchSetCommand.ts index 24d02c49df0c1..a9af663e8efd9 100644 --- a/clients/client-waf-regional/src/commands/DeleteXssMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/DeleteXssMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteXssMatchSetRequest, DeleteXssMatchSetResponse } from "../models/models_0"; +import type { DeleteXssMatchSetRequest, DeleteXssMatchSetResponse } from "../models/models_0"; import { DeleteXssMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/DisassociateWebACLCommand.ts b/clients/client-waf-regional/src/commands/DisassociateWebACLCommand.ts index 3f55ff2bf04a9..2069b3efc5ed4 100644 --- a/clients/client-waf-regional/src/commands/DisassociateWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/DisassociateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateWebACLRequest, DisassociateWebACLResponse } from "../models/models_0"; +import type { DisassociateWebACLRequest, DisassociateWebACLResponse } from "../models/models_0"; import { DisassociateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetByteMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetByteMatchSetCommand.ts index 6632390ceee53..79c3d75de05a8 100644 --- a/clients/client-waf-regional/src/commands/GetByteMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetByteMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetByteMatchSetRequest, GetByteMatchSetResponse } from "../models/models_0"; +import type { GetByteMatchSetRequest, GetByteMatchSetResponse } from "../models/models_0"; import { GetByteMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetChangeTokenCommand.ts b/clients/client-waf-regional/src/commands/GetChangeTokenCommand.ts index d5e55d219c8cb..1783965ba64a7 100644 --- a/clients/client-waf-regional/src/commands/GetChangeTokenCommand.ts +++ b/clients/client-waf-regional/src/commands/GetChangeTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChangeTokenRequest, GetChangeTokenResponse } from "../models/models_0"; +import type { GetChangeTokenRequest, GetChangeTokenResponse } from "../models/models_0"; import { GetChangeToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetChangeTokenStatusCommand.ts b/clients/client-waf-regional/src/commands/GetChangeTokenStatusCommand.ts index 54ce1909bdcbd..9aff00d2150ff 100644 --- a/clients/client-waf-regional/src/commands/GetChangeTokenStatusCommand.ts +++ b/clients/client-waf-regional/src/commands/GetChangeTokenStatusCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChangeTokenStatusRequest, GetChangeTokenStatusResponse } from "../models/models_0"; +import type { GetChangeTokenStatusRequest, GetChangeTokenStatusResponse } from "../models/models_0"; import { GetChangeTokenStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetGeoMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetGeoMatchSetCommand.ts index 8abb98bcf1556..35133b5d0bb9d 100644 --- a/clients/client-waf-regional/src/commands/GetGeoMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetGeoMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGeoMatchSetRequest, GetGeoMatchSetResponse } from "../models/models_0"; +import type { GetGeoMatchSetRequest, GetGeoMatchSetResponse } from "../models/models_0"; import { GetGeoMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetIPSetCommand.ts b/clients/client-waf-regional/src/commands/GetIPSetCommand.ts index 207ef397bab65..e1fbf217e3976 100644 --- a/clients/client-waf-regional/src/commands/GetIPSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIPSetRequest, GetIPSetResponse } from "../models/models_0"; +import type { GetIPSetRequest, GetIPSetResponse } from "../models/models_0"; import { GetIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetLoggingConfigurationCommand.ts b/clients/client-waf-regional/src/commands/GetLoggingConfigurationCommand.ts index e53a92bd362d5..dc266486d4b24 100644 --- a/clients/client-waf-regional/src/commands/GetLoggingConfigurationCommand.ts +++ b/clients/client-waf-regional/src/commands/GetLoggingConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0"; +import type { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0"; import { GetLoggingConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetPermissionPolicyCommand.ts b/clients/client-waf-regional/src/commands/GetPermissionPolicyCommand.ts index dd604d5f5fad6..b2db07df03e79 100644 --- a/clients/client-waf-regional/src/commands/GetPermissionPolicyCommand.ts +++ b/clients/client-waf-regional/src/commands/GetPermissionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPermissionPolicyRequest, GetPermissionPolicyResponse } from "../models/models_0"; +import type { GetPermissionPolicyRequest, GetPermissionPolicyResponse } from "../models/models_0"; import { GetPermissionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetRateBasedRuleCommand.ts b/clients/client-waf-regional/src/commands/GetRateBasedRuleCommand.ts index 2bd15408c2128..f163930e18d3a 100644 --- a/clients/client-waf-regional/src/commands/GetRateBasedRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRateBasedRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRateBasedRuleRequest, GetRateBasedRuleResponse } from "../models/models_0"; +import type { GetRateBasedRuleRequest, GetRateBasedRuleResponse } from "../models/models_0"; import { GetRateBasedRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetRateBasedRuleManagedKeysCommand.ts b/clients/client-waf-regional/src/commands/GetRateBasedRuleManagedKeysCommand.ts index 4b57990cd9b65..7e8869cd3fae0 100644 --- a/clients/client-waf-regional/src/commands/GetRateBasedRuleManagedKeysCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRateBasedRuleManagedKeysCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRateBasedRuleManagedKeysRequest, GetRateBasedRuleManagedKeysResponse } from "../models/models_0"; +import type { GetRateBasedRuleManagedKeysRequest, GetRateBasedRuleManagedKeysResponse } from "../models/models_0"; import { GetRateBasedRuleManagedKeys } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetRegexMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetRegexMatchSetCommand.ts index 675a645fd8f00..8df793baa4552 100644 --- a/clients/client-waf-regional/src/commands/GetRegexMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRegexMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRegexMatchSetRequest, GetRegexMatchSetResponse } from "../models/models_0"; +import type { GetRegexMatchSetRequest, GetRegexMatchSetResponse } from "../models/models_0"; import { GetRegexMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetRegexPatternSetCommand.ts b/clients/client-waf-regional/src/commands/GetRegexPatternSetCommand.ts index 16f43e07e2ccf..d8c101252c1a8 100644 --- a/clients/client-waf-regional/src/commands/GetRegexPatternSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRegexPatternSetRequest, GetRegexPatternSetResponse } from "../models/models_0"; +import type { GetRegexPatternSetRequest, GetRegexPatternSetResponse } from "../models/models_0"; import { GetRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetRuleCommand.ts b/clients/client-waf-regional/src/commands/GetRuleCommand.ts index e841e6d189305..c5a5cae515a85 100644 --- a/clients/client-waf-regional/src/commands/GetRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRuleRequest, GetRuleResponse } from "../models/models_0"; +import type { GetRuleRequest, GetRuleResponse } from "../models/models_0"; import { GetRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/GetRuleGroupCommand.ts index 2b8979262891d..5cef5d6d4c9e4 100644 --- a/clients/client-waf-regional/src/commands/GetRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/GetRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRuleGroupRequest, GetRuleGroupResponse } from "../models/models_0"; +import type { GetRuleGroupRequest, GetRuleGroupResponse } from "../models/models_0"; import { GetRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetSampledRequestsCommand.ts b/clients/client-waf-regional/src/commands/GetSampledRequestsCommand.ts index 0e29105c20603..e76e630c01548 100644 --- a/clients/client-waf-regional/src/commands/GetSampledRequestsCommand.ts +++ b/clients/client-waf-regional/src/commands/GetSampledRequestsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSampledRequestsRequest, GetSampledRequestsResponse } from "../models/models_0"; +import type { GetSampledRequestsRequest, GetSampledRequestsResponse } from "../models/models_0"; import { GetSampledRequests } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetSizeConstraintSetCommand.ts b/clients/client-waf-regional/src/commands/GetSizeConstraintSetCommand.ts index ffcf07bfec01d..77e70e98c9248 100644 --- a/clients/client-waf-regional/src/commands/GetSizeConstraintSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetSizeConstraintSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSizeConstraintSetRequest, GetSizeConstraintSetResponse } from "../models/models_0"; +import type { GetSizeConstraintSetRequest, GetSizeConstraintSetResponse } from "../models/models_0"; import { GetSizeConstraintSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetSqlInjectionMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetSqlInjectionMatchSetCommand.ts index f882e25323111..9e2a1cccdaea9 100644 --- a/clients/client-waf-regional/src/commands/GetSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetSqlInjectionMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSqlInjectionMatchSetRequest, GetSqlInjectionMatchSetResponse } from "../models/models_0"; +import type { GetSqlInjectionMatchSetRequest, GetSqlInjectionMatchSetResponse } from "../models/models_0"; import { GetSqlInjectionMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetWebACLCommand.ts b/clients/client-waf-regional/src/commands/GetWebACLCommand.ts index 77ed409265b65..1bf1fc495a4f8 100644 --- a/clients/client-waf-regional/src/commands/GetWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/GetWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWebACLRequest, GetWebACLResponse } from "../models/models_0"; +import type { GetWebACLRequest, GetWebACLResponse } from "../models/models_0"; import { GetWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetWebACLForResourceCommand.ts b/clients/client-waf-regional/src/commands/GetWebACLForResourceCommand.ts index 6067ae499dd32..ccd420b8851b7 100644 --- a/clients/client-waf-regional/src/commands/GetWebACLForResourceCommand.ts +++ b/clients/client-waf-regional/src/commands/GetWebACLForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWebACLForResourceRequest, GetWebACLForResourceResponse } from "../models/models_0"; +import type { GetWebACLForResourceRequest, GetWebACLForResourceResponse } from "../models/models_0"; import { GetWebACLForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/GetXssMatchSetCommand.ts b/clients/client-waf-regional/src/commands/GetXssMatchSetCommand.ts index c0c7de82ffa14..cc5e351d667ba 100644 --- a/clients/client-waf-regional/src/commands/GetXssMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/GetXssMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetXssMatchSetRequest, GetXssMatchSetResponse } from "../models/models_0"; +import type { GetXssMatchSetRequest, GetXssMatchSetResponse } from "../models/models_0"; import { GetXssMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListActivatedRulesInRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/ListActivatedRulesInRuleGroupCommand.ts index afa634af0a2a3..c3d2575cbbf43 100644 --- a/clients/client-waf-regional/src/commands/ListActivatedRulesInRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/ListActivatedRulesInRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListActivatedRulesInRuleGroupRequest, ListActivatedRulesInRuleGroupResponse } from "../models/models_0"; +import type { ListActivatedRulesInRuleGroupRequest, ListActivatedRulesInRuleGroupResponse } from "../models/models_0"; import { ListActivatedRulesInRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListByteMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListByteMatchSetsCommand.ts index 045ed52cca55c..ff8f7d6e2cfd4 100644 --- a/clients/client-waf-regional/src/commands/ListByteMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListByteMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListByteMatchSetsRequest, ListByteMatchSetsResponse } from "../models/models_0"; +import type { ListByteMatchSetsRequest, ListByteMatchSetsResponse } from "../models/models_0"; import { ListByteMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListGeoMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListGeoMatchSetsCommand.ts index 8c4f73798b761..bd40ddb1a72c7 100644 --- a/clients/client-waf-regional/src/commands/ListGeoMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListGeoMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGeoMatchSetsRequest, ListGeoMatchSetsResponse } from "../models/models_0"; +import type { ListGeoMatchSetsRequest, ListGeoMatchSetsResponse } from "../models/models_0"; import { ListGeoMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListIPSetsCommand.ts b/clients/client-waf-regional/src/commands/ListIPSetsCommand.ts index e8548f7b9b83b..6175a47b011d7 100644 --- a/clients/client-waf-regional/src/commands/ListIPSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListIPSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_0"; +import type { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_0"; import { ListIPSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListLoggingConfigurationsCommand.ts b/clients/client-waf-regional/src/commands/ListLoggingConfigurationsCommand.ts index 188a252e33402..a295324e75270 100644 --- a/clients/client-waf-regional/src/commands/ListLoggingConfigurationsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListLoggingConfigurationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0"; +import type { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0"; import { ListLoggingConfigurations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListRateBasedRulesCommand.ts b/clients/client-waf-regional/src/commands/ListRateBasedRulesCommand.ts index 41062a7e73247..7547a5e1be673 100644 --- a/clients/client-waf-regional/src/commands/ListRateBasedRulesCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRateBasedRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRateBasedRulesRequest, ListRateBasedRulesResponse } from "../models/models_0"; +import type { ListRateBasedRulesRequest, ListRateBasedRulesResponse } from "../models/models_0"; import { ListRateBasedRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListRegexMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListRegexMatchSetsCommand.ts index 19862f31a6dab..1a571c614e69f 100644 --- a/clients/client-waf-regional/src/commands/ListRegexMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRegexMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegexMatchSetsRequest, ListRegexMatchSetsResponse } from "../models/models_0"; +import type { ListRegexMatchSetsRequest, ListRegexMatchSetsResponse } from "../models/models_0"; import { ListRegexMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListRegexPatternSetsCommand.ts b/clients/client-waf-regional/src/commands/ListRegexPatternSetsCommand.ts index 13a6407f04057..9c8402acf3856 100644 --- a/clients/client-waf-regional/src/commands/ListRegexPatternSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRegexPatternSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegexPatternSetsRequest, ListRegexPatternSetsResponse } from "../models/models_0"; +import type { ListRegexPatternSetsRequest, ListRegexPatternSetsResponse } from "../models/models_0"; import { ListRegexPatternSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListResourcesForWebACLCommand.ts b/clients/client-waf-regional/src/commands/ListResourcesForWebACLCommand.ts index b1c949ef08e5a..ab98b674c4b34 100644 --- a/clients/client-waf-regional/src/commands/ListResourcesForWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/ListResourcesForWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcesForWebACLRequest, ListResourcesForWebACLResponse } from "../models/models_0"; +import type { ListResourcesForWebACLRequest, ListResourcesForWebACLResponse } from "../models/models_0"; import { ListResourcesForWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListRuleGroupsCommand.ts b/clients/client-waf-regional/src/commands/ListRuleGroupsCommand.ts index 51f66791e59a4..e8461152a4c80 100644 --- a/clients/client-waf-regional/src/commands/ListRuleGroupsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRuleGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRuleGroupsRequest, ListRuleGroupsResponse } from "../models/models_0"; +import type { ListRuleGroupsRequest, ListRuleGroupsResponse } from "../models/models_0"; import { ListRuleGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListRulesCommand.ts b/clients/client-waf-regional/src/commands/ListRulesCommand.ts index e0783a57bb520..75df24520f69e 100644 --- a/clients/client-waf-regional/src/commands/ListRulesCommand.ts +++ b/clients/client-waf-regional/src/commands/ListRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRulesRequest, ListRulesResponse } from "../models/models_0"; +import type { ListRulesRequest, ListRulesResponse } from "../models/models_0"; import { ListRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListSizeConstraintSetsCommand.ts b/clients/client-waf-regional/src/commands/ListSizeConstraintSetsCommand.ts index c074bfd25a7da..0ca1ee1d51732 100644 --- a/clients/client-waf-regional/src/commands/ListSizeConstraintSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListSizeConstraintSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSizeConstraintSetsRequest, ListSizeConstraintSetsResponse } from "../models/models_0"; +import type { ListSizeConstraintSetsRequest, ListSizeConstraintSetsResponse } from "../models/models_0"; import { ListSizeConstraintSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListSqlInjectionMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListSqlInjectionMatchSetsCommand.ts index 45a12fb5916ba..0cb6143ef0d4a 100644 --- a/clients/client-waf-regional/src/commands/ListSqlInjectionMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListSqlInjectionMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSqlInjectionMatchSetsRequest, ListSqlInjectionMatchSetsResponse } from "../models/models_0"; +import type { ListSqlInjectionMatchSetsRequest, ListSqlInjectionMatchSetsResponse } from "../models/models_0"; import { ListSqlInjectionMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListSubscribedRuleGroupsCommand.ts b/clients/client-waf-regional/src/commands/ListSubscribedRuleGroupsCommand.ts index 104edb1b030a2..055be562828f2 100644 --- a/clients/client-waf-regional/src/commands/ListSubscribedRuleGroupsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListSubscribedRuleGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscribedRuleGroupsRequest, ListSubscribedRuleGroupsResponse } from "../models/models_0"; +import type { ListSubscribedRuleGroupsRequest, ListSubscribedRuleGroupsResponse } from "../models/models_0"; import { ListSubscribedRuleGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListTagsForResourceCommand.ts b/clients/client-waf-regional/src/commands/ListTagsForResourceCommand.ts index f7a6d862e4d25..99a628867d0a0 100644 --- a/clients/client-waf-regional/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-waf-regional/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListWebACLsCommand.ts b/clients/client-waf-regional/src/commands/ListWebACLsCommand.ts index de6b56708b86e..c32d10aa9c7fd 100644 --- a/clients/client-waf-regional/src/commands/ListWebACLsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListWebACLsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWebACLsRequest, ListWebACLsResponse } from "../models/models_0"; +import type { ListWebACLsRequest, ListWebACLsResponse } from "../models/models_0"; import { ListWebACLs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/ListXssMatchSetsCommand.ts b/clients/client-waf-regional/src/commands/ListXssMatchSetsCommand.ts index 8d5082a7ca66d..33f79c9c357e6 100644 --- a/clients/client-waf-regional/src/commands/ListXssMatchSetsCommand.ts +++ b/clients/client-waf-regional/src/commands/ListXssMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListXssMatchSetsRequest, ListXssMatchSetsResponse } from "../models/models_0"; +import type { ListXssMatchSetsRequest, ListXssMatchSetsResponse } from "../models/models_0"; import { ListXssMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/PutLoggingConfigurationCommand.ts b/clients/client-waf-regional/src/commands/PutLoggingConfigurationCommand.ts index a7fc0e3972fba..59ca15b8e9e6e 100644 --- a/clients/client-waf-regional/src/commands/PutLoggingConfigurationCommand.ts +++ b/clients/client-waf-regional/src/commands/PutLoggingConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutLoggingConfigurationRequest, PutLoggingConfigurationResponse } from "../models/models_0"; +import type { PutLoggingConfigurationRequest, PutLoggingConfigurationResponse } from "../models/models_0"; import { PutLoggingConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/PutPermissionPolicyCommand.ts b/clients/client-waf-regional/src/commands/PutPermissionPolicyCommand.ts index bed47a39c6dbe..4a5b06ebbcd8e 100644 --- a/clients/client-waf-regional/src/commands/PutPermissionPolicyCommand.ts +++ b/clients/client-waf-regional/src/commands/PutPermissionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPermissionPolicyRequest, PutPermissionPolicyResponse } from "../models/models_0"; +import type { PutPermissionPolicyRequest, PutPermissionPolicyResponse } from "../models/models_0"; import { PutPermissionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/TagResourceCommand.ts b/clients/client-waf-regional/src/commands/TagResourceCommand.ts index c476a5fea7c40..71e18b01d5d4d 100644 --- a/clients/client-waf-regional/src/commands/TagResourceCommand.ts +++ b/clients/client-waf-regional/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UntagResourceCommand.ts b/clients/client-waf-regional/src/commands/UntagResourceCommand.ts index bf880daa2c5a1..802dc2dcb8b07 100644 --- a/clients/client-waf-regional/src/commands/UntagResourceCommand.ts +++ b/clients/client-waf-regional/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateByteMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateByteMatchSetCommand.ts index ed4241c28e33e..dcdb5c41fa2aa 100644 --- a/clients/client-waf-regional/src/commands/UpdateByteMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateByteMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateByteMatchSetRequest, UpdateByteMatchSetResponse } from "../models/models_0"; +import type { UpdateByteMatchSetRequest, UpdateByteMatchSetResponse } from "../models/models_0"; import { UpdateByteMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateGeoMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateGeoMatchSetCommand.ts index 45015ae09c12e..ad337226e6f9e 100644 --- a/clients/client-waf-regional/src/commands/UpdateGeoMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateGeoMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGeoMatchSetRequest, UpdateGeoMatchSetResponse } from "../models/models_0"; +import type { UpdateGeoMatchSetRequest, UpdateGeoMatchSetResponse } from "../models/models_0"; import { UpdateGeoMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateIPSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateIPSetCommand.ts index 3642d4aecc0de..01c1d2bf04e68 100644 --- a/clients/client-waf-regional/src/commands/UpdateIPSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_0"; +import type { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_0"; import { UpdateIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateRateBasedRuleCommand.ts b/clients/client-waf-regional/src/commands/UpdateRateBasedRuleCommand.ts index e6200c4f68794..72d0097b8c039 100644 --- a/clients/client-waf-regional/src/commands/UpdateRateBasedRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRateBasedRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRateBasedRuleRequest, UpdateRateBasedRuleResponse } from "../models/models_0"; +import type { UpdateRateBasedRuleRequest, UpdateRateBasedRuleResponse } from "../models/models_0"; import { UpdateRateBasedRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateRegexMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateRegexMatchSetCommand.ts index 5d1f95830e08c..3da70a5ee861d 100644 --- a/clients/client-waf-regional/src/commands/UpdateRegexMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRegexMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRegexMatchSetRequest, UpdateRegexMatchSetResponse } from "../models/models_0"; +import type { UpdateRegexMatchSetRequest, UpdateRegexMatchSetResponse } from "../models/models_0"; import { UpdateRegexMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateRegexPatternSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateRegexPatternSetCommand.ts index 5c631d5542df6..6f2617b80e8e2 100644 --- a/clients/client-waf-regional/src/commands/UpdateRegexPatternSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRegexPatternSetRequest, UpdateRegexPatternSetResponse } from "../models/models_0"; +import type { UpdateRegexPatternSetRequest, UpdateRegexPatternSetResponse } from "../models/models_0"; import { UpdateRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateRuleCommand.ts b/clients/client-waf-regional/src/commands/UpdateRuleCommand.ts index 576bad7c1018c..f57c29ff4b3e2 100644 --- a/clients/client-waf-regional/src/commands/UpdateRuleCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0"; +import type { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0"; import { UpdateRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateRuleGroupCommand.ts b/clients/client-waf-regional/src/commands/UpdateRuleGroupCommand.ts index 19f29e4288650..c0a0745d3ed17 100644 --- a/clients/client-waf-regional/src/commands/UpdateRuleGroupCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleGroupRequest, UpdateRuleGroupResponse } from "../models/models_0"; +import type { UpdateRuleGroupRequest, UpdateRuleGroupResponse } from "../models/models_0"; import { UpdateRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateSizeConstraintSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateSizeConstraintSetCommand.ts index 499e70170b662..3404bd147ef5d 100644 --- a/clients/client-waf-regional/src/commands/UpdateSizeConstraintSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateSizeConstraintSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSizeConstraintSetRequest, UpdateSizeConstraintSetResponse } from "../models/models_0"; +import type { UpdateSizeConstraintSetRequest, UpdateSizeConstraintSetResponse } from "../models/models_0"; import { UpdateSizeConstraintSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateSqlInjectionMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateSqlInjectionMatchSetCommand.ts index d4ecd744774fb..59eb24ff5fe29 100644 --- a/clients/client-waf-regional/src/commands/UpdateSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateSqlInjectionMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSqlInjectionMatchSetRequest, UpdateSqlInjectionMatchSetResponse } from "../models/models_0"; +import type { UpdateSqlInjectionMatchSetRequest, UpdateSqlInjectionMatchSetResponse } from "../models/models_0"; import { UpdateSqlInjectionMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateWebACLCommand.ts b/clients/client-waf-regional/src/commands/UpdateWebACLCommand.ts index cdc25370668c2..017b5d912ad99 100644 --- a/clients/client-waf-regional/src/commands/UpdateWebACLCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWebACLRequest, UpdateWebACLResponse } from "../models/models_0"; +import type { UpdateWebACLRequest, UpdateWebACLResponse } from "../models/models_0"; import { UpdateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/commands/UpdateXssMatchSetCommand.ts b/clients/client-waf-regional/src/commands/UpdateXssMatchSetCommand.ts index fd8f1454001fc..09e1784a15467 100644 --- a/clients/client-waf-regional/src/commands/UpdateXssMatchSetCommand.ts +++ b/clients/client-waf-regional/src/commands/UpdateXssMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateXssMatchSetRequest, UpdateXssMatchSetResponse } from "../models/models_0"; +import type { UpdateXssMatchSetRequest, UpdateXssMatchSetResponse } from "../models/models_0"; import { UpdateXssMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFRegionalClientResolvedConfig } from "../WAFRegionalClient"; /** * @public diff --git a/clients/client-waf-regional/src/endpoint/EndpointParameters.ts b/clients/client-waf-regional/src/endpoint/EndpointParameters.ts index cd73497e67443..fd934472c7f8a 100644 --- a/clients/client-waf-regional/src/endpoint/EndpointParameters.ts +++ b/clients/client-waf-regional/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-waf-regional/src/endpoint/endpointResolver.ts b/clients/client-waf-regional/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-waf-regional/src/endpoint/endpointResolver.ts +++ b/clients/client-waf-regional/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-waf-regional/src/extensionConfiguration.ts b/clients/client-waf-regional/src/extensionConfiguration.ts index 209fd18a985de..ed10e1c46b70c 100644 --- a/clients/client-waf-regional/src/extensionConfiguration.ts +++ b/clients/client-waf-regional/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-waf-regional/src/models/WAFRegionalServiceException.ts b/clients/client-waf-regional/src/models/WAFRegionalServiceException.ts index ae49b9324b486..ca12dba5cdf5f 100644 --- a/clients/client-waf-regional/src/models/WAFRegionalServiceException.ts +++ b/clients/client-waf-regional/src/models/WAFRegionalServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-waf-regional/src/models/errors.ts b/clients/client-waf-regional/src/models/errors.ts index da34bcb254537..3118d7668a15e 100644 --- a/clients/client-waf-regional/src/models/errors.ts +++ b/clients/client-waf-regional/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MigrationErrorType, ParameterExceptionField, ParameterExceptionReason } from "./enums"; import { WAFRegionalServiceException as __BaseException } from "./WAFRegionalServiceException"; diff --git a/clients/client-waf-regional/src/runtimeConfig.browser.ts b/clients/client-waf-regional/src/runtimeConfig.browser.ts index d0a3a38192157..9016c495d2779 100644 --- a/clients/client-waf-regional/src/runtimeConfig.browser.ts +++ b/clients/client-waf-regional/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WAFRegionalClientConfig } from "./WAFRegionalClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WAFRegionalClientConfig } from "./WAFRegionalClient"; /** * @internal diff --git a/clients/client-waf-regional/src/runtimeConfig.native.ts b/clients/client-waf-regional/src/runtimeConfig.native.ts index a7f8133117953..dab4a003bf5a9 100644 --- a/clients/client-waf-regional/src/runtimeConfig.native.ts +++ b/clients/client-waf-regional/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WAFRegionalClientConfig } from "./WAFRegionalClient"; +import type { WAFRegionalClientConfig } from "./WAFRegionalClient"; /** * @internal diff --git a/clients/client-waf-regional/src/runtimeConfig.shared.ts b/clients/client-waf-regional/src/runtimeConfig.shared.ts index 730720ee21001..167b44cfc42ea 100644 --- a/clients/client-waf-regional/src/runtimeConfig.shared.ts +++ b/clients/client-waf-regional/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWAFRegionalHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WAFRegionalClientConfig } from "./WAFRegionalClient"; +import type { WAFRegionalClientConfig } from "./WAFRegionalClient"; /** * @internal diff --git a/clients/client-waf-regional/src/runtimeConfig.ts b/clients/client-waf-regional/src/runtimeConfig.ts index fd0575138c962..1e5e0fc7a9266 100644 --- a/clients/client-waf-regional/src/runtimeConfig.ts +++ b/clients/client-waf-regional/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WAFRegionalClientConfig } from "./WAFRegionalClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WAFRegionalClientConfig } from "./WAFRegionalClient"; /** * @internal diff --git a/clients/client-waf-regional/src/runtimeExtensions.ts b/clients/client-waf-regional/src/runtimeExtensions.ts index 6b4d12eff75a7..2344fa68d7e08 100644 --- a/clients/client-waf-regional/src/runtimeExtensions.ts +++ b/clients/client-waf-regional/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WAFRegionalExtensionConfiguration } from "./extensionConfiguration"; +import type { WAFRegionalExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-waf-regional/src/schemas/schemas_0.ts b/clients/client-waf-regional/src/schemas/schemas_0.ts index c28c6415be892..10d54a5b3039e 100644 --- a/clients/client-waf-regional/src/schemas/schemas_0.ts +++ b/clients/client-waf-regional/src/schemas/schemas_0.ts @@ -446,7 +446,7 @@ const n0 = "com.amazonaws.wafregional"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { WAFBadRequestException as __WAFBadRequestException, diff --git a/clients/client-waf/package.json b/clients/client-waf/package.json index d083db69761fc..aa42b9bfc9ec9 100644 --- a/clients/client-waf/package.json +++ b/clients/client-waf/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-waf/src/WAF.ts b/clients/client-waf/src/WAF.ts index 392bae7718726..6d46b956e564c 100644 --- a/clients/client-waf/src/WAF.ts +++ b/clients/client-waf/src/WAF.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateByteMatchSetCommand, @@ -335,7 +335,7 @@ import { UpdateXssMatchSetCommandInput, UpdateXssMatchSetCommandOutput, } from "./commands/UpdateXssMatchSetCommand"; -import { WAFClient, WAFClientConfig } from "./WAFClient"; +import { WAFClient } from "./WAFClient"; const commands = { CreateByteMatchSetCommand, diff --git a/clients/client-waf/src/WAFClient.ts b/clients/client-waf/src/WAFClient.ts index b6b7d1872fdc6..09d7c8a9731cf 100644 --- a/clients/client-waf/src/WAFClient.ts +++ b/clients/client-waf/src/WAFClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWAFHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateByteMatchSetCommandInput, CreateByteMatchSetCommandOutput } from "./commands/CreateByteMatchSetCommand"; @@ -240,7 +249,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-waf/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-waf/src/auth/httpAuthExtensionConfiguration.ts index ad6f3a5352a45..58a1ffa32b41d 100644 --- a/clients/client-waf/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-waf/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WAFHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WAFHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-waf/src/auth/httpAuthSchemeProvider.ts b/clients/client-waf/src/auth/httpAuthSchemeProvider.ts index d369ac1473d95..6c561f4056537 100644 --- a/clients/client-waf/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-waf/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WAFClientConfig, WAFClientResolvedConfig } from "../WAFClient"; +import { type WAFClientResolvedConfig, WAFClientConfig } from "../WAFClient"; /** * @internal diff --git a/clients/client-waf/src/commands/CreateByteMatchSetCommand.ts b/clients/client-waf/src/commands/CreateByteMatchSetCommand.ts index 814ae43c3f1f7..4a9de3e474dd8 100644 --- a/clients/client-waf/src/commands/CreateByteMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateByteMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateByteMatchSetRequest, CreateByteMatchSetResponse } from "../models/models_0"; +import type { CreateByteMatchSetRequest, CreateByteMatchSetResponse } from "../models/models_0"; import { CreateByteMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateGeoMatchSetCommand.ts b/clients/client-waf/src/commands/CreateGeoMatchSetCommand.ts index ae0bb22e9d66f..e156ab8a13963 100644 --- a/clients/client-waf/src/commands/CreateGeoMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateGeoMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGeoMatchSetRequest, CreateGeoMatchSetResponse } from "../models/models_0"; +import type { CreateGeoMatchSetRequest, CreateGeoMatchSetResponse } from "../models/models_0"; import { CreateGeoMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateIPSetCommand.ts b/clients/client-waf/src/commands/CreateIPSetCommand.ts index db378f8d692f8..6fb1675ba010f 100644 --- a/clients/client-waf/src/commands/CreateIPSetCommand.ts +++ b/clients/client-waf/src/commands/CreateIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIPSetRequest, CreateIPSetResponse } from "../models/models_0"; +import type { CreateIPSetRequest, CreateIPSetResponse } from "../models/models_0"; import { CreateIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateRateBasedRuleCommand.ts b/clients/client-waf/src/commands/CreateRateBasedRuleCommand.ts index 7a98f994953f0..e61691dafc2a6 100644 --- a/clients/client-waf/src/commands/CreateRateBasedRuleCommand.ts +++ b/clients/client-waf/src/commands/CreateRateBasedRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRateBasedRuleRequest, CreateRateBasedRuleResponse } from "../models/models_0"; +import type { CreateRateBasedRuleRequest, CreateRateBasedRuleResponse } from "../models/models_0"; import { CreateRateBasedRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateRegexMatchSetCommand.ts b/clients/client-waf/src/commands/CreateRegexMatchSetCommand.ts index 4fe3b1530d8bc..c4f7499b3cfb5 100644 --- a/clients/client-waf/src/commands/CreateRegexMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateRegexMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegexMatchSetRequest, CreateRegexMatchSetResponse } from "../models/models_0"; +import type { CreateRegexMatchSetRequest, CreateRegexMatchSetResponse } from "../models/models_0"; import { CreateRegexMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateRegexPatternSetCommand.ts b/clients/client-waf/src/commands/CreateRegexPatternSetCommand.ts index b3ded25817137..2a1f213ba0cf4 100644 --- a/clients/client-waf/src/commands/CreateRegexPatternSetCommand.ts +++ b/clients/client-waf/src/commands/CreateRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegexPatternSetRequest, CreateRegexPatternSetResponse } from "../models/models_0"; +import type { CreateRegexPatternSetRequest, CreateRegexPatternSetResponse } from "../models/models_0"; import { CreateRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateRuleCommand.ts b/clients/client-waf/src/commands/CreateRuleCommand.ts index 32fcbb9b61cc0..8d6447a9368d1 100644 --- a/clients/client-waf/src/commands/CreateRuleCommand.ts +++ b/clients/client-waf/src/commands/CreateRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; +import type { CreateRuleRequest, CreateRuleResponse } from "../models/models_0"; import { CreateRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateRuleGroupCommand.ts b/clients/client-waf/src/commands/CreateRuleGroupCommand.ts index 056054112856d..50502781fbc28 100644 --- a/clients/client-waf/src/commands/CreateRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/CreateRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleGroupRequest, CreateRuleGroupResponse } from "../models/models_0"; +import type { CreateRuleGroupRequest, CreateRuleGroupResponse } from "../models/models_0"; import { CreateRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateSizeConstraintSetCommand.ts b/clients/client-waf/src/commands/CreateSizeConstraintSetCommand.ts index 038242b87124a..69f779ed53c28 100644 --- a/clients/client-waf/src/commands/CreateSizeConstraintSetCommand.ts +++ b/clients/client-waf/src/commands/CreateSizeConstraintSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSizeConstraintSetRequest, CreateSizeConstraintSetResponse } from "../models/models_0"; +import type { CreateSizeConstraintSetRequest, CreateSizeConstraintSetResponse } from "../models/models_0"; import { CreateSizeConstraintSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateSqlInjectionMatchSetCommand.ts b/clients/client-waf/src/commands/CreateSqlInjectionMatchSetCommand.ts index 99a5687662350..6224fadf9e057 100644 --- a/clients/client-waf/src/commands/CreateSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateSqlInjectionMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSqlInjectionMatchSetRequest, CreateSqlInjectionMatchSetResponse } from "../models/models_0"; +import type { CreateSqlInjectionMatchSetRequest, CreateSqlInjectionMatchSetResponse } from "../models/models_0"; import { CreateSqlInjectionMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateWebACLCommand.ts b/clients/client-waf/src/commands/CreateWebACLCommand.ts index 6ab0813b907c9..754d00b688f29 100644 --- a/clients/client-waf/src/commands/CreateWebACLCommand.ts +++ b/clients/client-waf/src/commands/CreateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebACLRequest, CreateWebACLResponse } from "../models/models_0"; +import type { CreateWebACLRequest, CreateWebACLResponse } from "../models/models_0"; import { CreateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateWebACLMigrationStackCommand.ts b/clients/client-waf/src/commands/CreateWebACLMigrationStackCommand.ts index 7212a900232f3..e681699353f09 100644 --- a/clients/client-waf/src/commands/CreateWebACLMigrationStackCommand.ts +++ b/clients/client-waf/src/commands/CreateWebACLMigrationStackCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebACLMigrationStackRequest, CreateWebACLMigrationStackResponse } from "../models/models_0"; +import type { CreateWebACLMigrationStackRequest, CreateWebACLMigrationStackResponse } from "../models/models_0"; import { CreateWebACLMigrationStack } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/CreateXssMatchSetCommand.ts b/clients/client-waf/src/commands/CreateXssMatchSetCommand.ts index 36839c1d15a01..bde63bdead26a 100644 --- a/clients/client-waf/src/commands/CreateXssMatchSetCommand.ts +++ b/clients/client-waf/src/commands/CreateXssMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateXssMatchSetRequest, CreateXssMatchSetResponse } from "../models/models_0"; +import type { CreateXssMatchSetRequest, CreateXssMatchSetResponse } from "../models/models_0"; import { CreateXssMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteByteMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteByteMatchSetCommand.ts index 2af994b49c260..fd57b83173447 100644 --- a/clients/client-waf/src/commands/DeleteByteMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteByteMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteByteMatchSetRequest, DeleteByteMatchSetResponse } from "../models/models_0"; +import type { DeleteByteMatchSetRequest, DeleteByteMatchSetResponse } from "../models/models_0"; import { DeleteByteMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteGeoMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteGeoMatchSetCommand.ts index de5da79d66655..6ba734f14c373 100644 --- a/clients/client-waf/src/commands/DeleteGeoMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteGeoMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGeoMatchSetRequest, DeleteGeoMatchSetResponse } from "../models/models_0"; +import type { DeleteGeoMatchSetRequest, DeleteGeoMatchSetResponse } from "../models/models_0"; import { DeleteGeoMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteIPSetCommand.ts b/clients/client-waf/src/commands/DeleteIPSetCommand.ts index b8941032dfc72..d2a8bda0423ee 100644 --- a/clients/client-waf/src/commands/DeleteIPSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIPSetRequest, DeleteIPSetResponse } from "../models/models_0"; +import type { DeleteIPSetRequest, DeleteIPSetResponse } from "../models/models_0"; import { DeleteIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-waf/src/commands/DeleteLoggingConfigurationCommand.ts index ca192203b31db..1ef66774bb5e9 100644 --- a/clients/client-waf/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-waf/src/commands/DeleteLoggingConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLoggingConfigurationRequest, DeleteLoggingConfigurationResponse } from "../models/models_0"; +import type { DeleteLoggingConfigurationRequest, DeleteLoggingConfigurationResponse } from "../models/models_0"; import { DeleteLoggingConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeletePermissionPolicyCommand.ts b/clients/client-waf/src/commands/DeletePermissionPolicyCommand.ts index df5ea0b8500c1..e2c12ac94aa85 100644 --- a/clients/client-waf/src/commands/DeletePermissionPolicyCommand.ts +++ b/clients/client-waf/src/commands/DeletePermissionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePermissionPolicyRequest, DeletePermissionPolicyResponse } from "../models/models_0"; +import type { DeletePermissionPolicyRequest, DeletePermissionPolicyResponse } from "../models/models_0"; import { DeletePermissionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteRateBasedRuleCommand.ts b/clients/client-waf/src/commands/DeleteRateBasedRuleCommand.ts index d7f033791f684..93b6176038179 100644 --- a/clients/client-waf/src/commands/DeleteRateBasedRuleCommand.ts +++ b/clients/client-waf/src/commands/DeleteRateBasedRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRateBasedRuleRequest, DeleteRateBasedRuleResponse } from "../models/models_0"; +import type { DeleteRateBasedRuleRequest, DeleteRateBasedRuleResponse } from "../models/models_0"; import { DeleteRateBasedRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteRegexMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteRegexMatchSetCommand.ts index d52b3e4084c33..8591eb7349a1c 100644 --- a/clients/client-waf/src/commands/DeleteRegexMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteRegexMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegexMatchSetRequest, DeleteRegexMatchSetResponse } from "../models/models_0"; +import type { DeleteRegexMatchSetRequest, DeleteRegexMatchSetResponse } from "../models/models_0"; import { DeleteRegexMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteRegexPatternSetCommand.ts b/clients/client-waf/src/commands/DeleteRegexPatternSetCommand.ts index 21fbd3c0e35b5..adf4dbb1b8487 100644 --- a/clients/client-waf/src/commands/DeleteRegexPatternSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegexPatternSetRequest, DeleteRegexPatternSetResponse } from "../models/models_0"; +import type { DeleteRegexPatternSetRequest, DeleteRegexPatternSetResponse } from "../models/models_0"; import { DeleteRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteRuleCommand.ts b/clients/client-waf/src/commands/DeleteRuleCommand.ts index 9809f952c16a8..aa2f622e57f77 100644 --- a/clients/client-waf/src/commands/DeleteRuleCommand.ts +++ b/clients/client-waf/src/commands/DeleteRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0"; +import type { DeleteRuleRequest, DeleteRuleResponse } from "../models/models_0"; import { DeleteRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteRuleGroupCommand.ts b/clients/client-waf/src/commands/DeleteRuleGroupCommand.ts index 14a7ff9552626..ac6ed6199d0ae 100644 --- a/clients/client-waf/src/commands/DeleteRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/DeleteRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleGroupRequest, DeleteRuleGroupResponse } from "../models/models_0"; +import type { DeleteRuleGroupRequest, DeleteRuleGroupResponse } from "../models/models_0"; import { DeleteRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteSizeConstraintSetCommand.ts b/clients/client-waf/src/commands/DeleteSizeConstraintSetCommand.ts index 8d19f55fab766..bbea4d10dd67d 100644 --- a/clients/client-waf/src/commands/DeleteSizeConstraintSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteSizeConstraintSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSizeConstraintSetRequest, DeleteSizeConstraintSetResponse } from "../models/models_0"; +import type { DeleteSizeConstraintSetRequest, DeleteSizeConstraintSetResponse } from "../models/models_0"; import { DeleteSizeConstraintSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteSqlInjectionMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteSqlInjectionMatchSetCommand.ts index aff1f03aad426..8153d89deac33 100644 --- a/clients/client-waf/src/commands/DeleteSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteSqlInjectionMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSqlInjectionMatchSetRequest, DeleteSqlInjectionMatchSetResponse } from "../models/models_0"; +import type { DeleteSqlInjectionMatchSetRequest, DeleteSqlInjectionMatchSetResponse } from "../models/models_0"; import { DeleteSqlInjectionMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteWebACLCommand.ts b/clients/client-waf/src/commands/DeleteWebACLCommand.ts index 292fbd82f31a3..ae5296a656e1d 100644 --- a/clients/client-waf/src/commands/DeleteWebACLCommand.ts +++ b/clients/client-waf/src/commands/DeleteWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebACLRequest, DeleteWebACLResponse } from "../models/models_0"; +import type { DeleteWebACLRequest, DeleteWebACLResponse } from "../models/models_0"; import { DeleteWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/DeleteXssMatchSetCommand.ts b/clients/client-waf/src/commands/DeleteXssMatchSetCommand.ts index 9def38d568dec..7c200f890ac2e 100644 --- a/clients/client-waf/src/commands/DeleteXssMatchSetCommand.ts +++ b/clients/client-waf/src/commands/DeleteXssMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteXssMatchSetRequest, DeleteXssMatchSetResponse } from "../models/models_0"; +import type { DeleteXssMatchSetRequest, DeleteXssMatchSetResponse } from "../models/models_0"; import { DeleteXssMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetByteMatchSetCommand.ts b/clients/client-waf/src/commands/GetByteMatchSetCommand.ts index 8a72dc1e3335e..4f89200903def 100644 --- a/clients/client-waf/src/commands/GetByteMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetByteMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetByteMatchSetRequest, GetByteMatchSetResponse } from "../models/models_0"; +import type { GetByteMatchSetRequest, GetByteMatchSetResponse } from "../models/models_0"; import { GetByteMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetChangeTokenCommand.ts b/clients/client-waf/src/commands/GetChangeTokenCommand.ts index 152bb45565f0e..760bb30e85570 100644 --- a/clients/client-waf/src/commands/GetChangeTokenCommand.ts +++ b/clients/client-waf/src/commands/GetChangeTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChangeTokenRequest, GetChangeTokenResponse } from "../models/models_0"; +import type { GetChangeTokenRequest, GetChangeTokenResponse } from "../models/models_0"; import { GetChangeToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetChangeTokenStatusCommand.ts b/clients/client-waf/src/commands/GetChangeTokenStatusCommand.ts index 60dba625b1121..de89ca6da8af8 100644 --- a/clients/client-waf/src/commands/GetChangeTokenStatusCommand.ts +++ b/clients/client-waf/src/commands/GetChangeTokenStatusCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetChangeTokenStatusRequest, GetChangeTokenStatusResponse } from "../models/models_0"; +import type { GetChangeTokenStatusRequest, GetChangeTokenStatusResponse } from "../models/models_0"; import { GetChangeTokenStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetGeoMatchSetCommand.ts b/clients/client-waf/src/commands/GetGeoMatchSetCommand.ts index ee3be2e4a939f..fd0edd8f91403 100644 --- a/clients/client-waf/src/commands/GetGeoMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetGeoMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGeoMatchSetRequest, GetGeoMatchSetResponse } from "../models/models_0"; +import type { GetGeoMatchSetRequest, GetGeoMatchSetResponse } from "../models/models_0"; import { GetGeoMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetIPSetCommand.ts b/clients/client-waf/src/commands/GetIPSetCommand.ts index ae82330cdcc7a..b128179008d62 100644 --- a/clients/client-waf/src/commands/GetIPSetCommand.ts +++ b/clients/client-waf/src/commands/GetIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIPSetRequest, GetIPSetResponse } from "../models/models_0"; +import type { GetIPSetRequest, GetIPSetResponse } from "../models/models_0"; import { GetIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetLoggingConfigurationCommand.ts b/clients/client-waf/src/commands/GetLoggingConfigurationCommand.ts index 7e77c11b9257b..5c24779564238 100644 --- a/clients/client-waf/src/commands/GetLoggingConfigurationCommand.ts +++ b/clients/client-waf/src/commands/GetLoggingConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0"; +import type { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0"; import { GetLoggingConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetPermissionPolicyCommand.ts b/clients/client-waf/src/commands/GetPermissionPolicyCommand.ts index da6a0fabab637..bd7cd94efa83d 100644 --- a/clients/client-waf/src/commands/GetPermissionPolicyCommand.ts +++ b/clients/client-waf/src/commands/GetPermissionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPermissionPolicyRequest, GetPermissionPolicyResponse } from "../models/models_0"; +import type { GetPermissionPolicyRequest, GetPermissionPolicyResponse } from "../models/models_0"; import { GetPermissionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetRateBasedRuleCommand.ts b/clients/client-waf/src/commands/GetRateBasedRuleCommand.ts index 4f649a7f62315..20f1d0718a082 100644 --- a/clients/client-waf/src/commands/GetRateBasedRuleCommand.ts +++ b/clients/client-waf/src/commands/GetRateBasedRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRateBasedRuleRequest, GetRateBasedRuleResponse } from "../models/models_0"; +import type { GetRateBasedRuleRequest, GetRateBasedRuleResponse } from "../models/models_0"; import { GetRateBasedRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetRateBasedRuleManagedKeysCommand.ts b/clients/client-waf/src/commands/GetRateBasedRuleManagedKeysCommand.ts index 8e16a4fb905dd..54dd9249b062b 100644 --- a/clients/client-waf/src/commands/GetRateBasedRuleManagedKeysCommand.ts +++ b/clients/client-waf/src/commands/GetRateBasedRuleManagedKeysCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRateBasedRuleManagedKeysRequest, GetRateBasedRuleManagedKeysResponse } from "../models/models_0"; +import type { GetRateBasedRuleManagedKeysRequest, GetRateBasedRuleManagedKeysResponse } from "../models/models_0"; import { GetRateBasedRuleManagedKeys } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetRegexMatchSetCommand.ts b/clients/client-waf/src/commands/GetRegexMatchSetCommand.ts index 1a17f2bec13c8..fe34fe71c0ecf 100644 --- a/clients/client-waf/src/commands/GetRegexMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetRegexMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRegexMatchSetRequest, GetRegexMatchSetResponse } from "../models/models_0"; +import type { GetRegexMatchSetRequest, GetRegexMatchSetResponse } from "../models/models_0"; import { GetRegexMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetRegexPatternSetCommand.ts b/clients/client-waf/src/commands/GetRegexPatternSetCommand.ts index 8d5eecf460d68..15110a7247496 100644 --- a/clients/client-waf/src/commands/GetRegexPatternSetCommand.ts +++ b/clients/client-waf/src/commands/GetRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRegexPatternSetRequest, GetRegexPatternSetResponse } from "../models/models_0"; +import type { GetRegexPatternSetRequest, GetRegexPatternSetResponse } from "../models/models_0"; import { GetRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetRuleCommand.ts b/clients/client-waf/src/commands/GetRuleCommand.ts index efff0cf2c44f2..6ccb9231dd454 100644 --- a/clients/client-waf/src/commands/GetRuleCommand.ts +++ b/clients/client-waf/src/commands/GetRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRuleRequest, GetRuleResponse } from "../models/models_0"; +import type { GetRuleRequest, GetRuleResponse } from "../models/models_0"; import { GetRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetRuleGroupCommand.ts b/clients/client-waf/src/commands/GetRuleGroupCommand.ts index 95192f4cc60ab..e8d130f441f36 100644 --- a/clients/client-waf/src/commands/GetRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/GetRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRuleGroupRequest, GetRuleGroupResponse } from "../models/models_0"; +import type { GetRuleGroupRequest, GetRuleGroupResponse } from "../models/models_0"; import { GetRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetSampledRequestsCommand.ts b/clients/client-waf/src/commands/GetSampledRequestsCommand.ts index 1c055f2ac6d66..130fbf713fdcf 100644 --- a/clients/client-waf/src/commands/GetSampledRequestsCommand.ts +++ b/clients/client-waf/src/commands/GetSampledRequestsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSampledRequestsRequest, GetSampledRequestsResponse } from "../models/models_0"; +import type { GetSampledRequestsRequest, GetSampledRequestsResponse } from "../models/models_0"; import { GetSampledRequests } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetSizeConstraintSetCommand.ts b/clients/client-waf/src/commands/GetSizeConstraintSetCommand.ts index 977459610de85..de8431bfc2bbe 100644 --- a/clients/client-waf/src/commands/GetSizeConstraintSetCommand.ts +++ b/clients/client-waf/src/commands/GetSizeConstraintSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSizeConstraintSetRequest, GetSizeConstraintSetResponse } from "../models/models_0"; +import type { GetSizeConstraintSetRequest, GetSizeConstraintSetResponse } from "../models/models_0"; import { GetSizeConstraintSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetSqlInjectionMatchSetCommand.ts b/clients/client-waf/src/commands/GetSqlInjectionMatchSetCommand.ts index 7918e66675e06..c106b3005d8e5 100644 --- a/clients/client-waf/src/commands/GetSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetSqlInjectionMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSqlInjectionMatchSetRequest, GetSqlInjectionMatchSetResponse } from "../models/models_0"; +import type { GetSqlInjectionMatchSetRequest, GetSqlInjectionMatchSetResponse } from "../models/models_0"; import { GetSqlInjectionMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetWebACLCommand.ts b/clients/client-waf/src/commands/GetWebACLCommand.ts index 4dcabadc74444..138cbd8836b20 100644 --- a/clients/client-waf/src/commands/GetWebACLCommand.ts +++ b/clients/client-waf/src/commands/GetWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWebACLRequest, GetWebACLResponse } from "../models/models_0"; +import type { GetWebACLRequest, GetWebACLResponse } from "../models/models_0"; import { GetWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/GetXssMatchSetCommand.ts b/clients/client-waf/src/commands/GetXssMatchSetCommand.ts index c6027f09bfbe0..8f39b465aa861 100644 --- a/clients/client-waf/src/commands/GetXssMatchSetCommand.ts +++ b/clients/client-waf/src/commands/GetXssMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetXssMatchSetRequest, GetXssMatchSetResponse } from "../models/models_0"; +import type { GetXssMatchSetRequest, GetXssMatchSetResponse } from "../models/models_0"; import { GetXssMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListActivatedRulesInRuleGroupCommand.ts b/clients/client-waf/src/commands/ListActivatedRulesInRuleGroupCommand.ts index d09ea0e7b68d9..b6dee9e2d6b5a 100644 --- a/clients/client-waf/src/commands/ListActivatedRulesInRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/ListActivatedRulesInRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListActivatedRulesInRuleGroupRequest, ListActivatedRulesInRuleGroupResponse } from "../models/models_0"; +import type { ListActivatedRulesInRuleGroupRequest, ListActivatedRulesInRuleGroupResponse } from "../models/models_0"; import { ListActivatedRulesInRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListByteMatchSetsCommand.ts b/clients/client-waf/src/commands/ListByteMatchSetsCommand.ts index c768909122c10..aae9bb9dbb7e0 100644 --- a/clients/client-waf/src/commands/ListByteMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListByteMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListByteMatchSetsRequest, ListByteMatchSetsResponse } from "../models/models_0"; +import type { ListByteMatchSetsRequest, ListByteMatchSetsResponse } from "../models/models_0"; import { ListByteMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListGeoMatchSetsCommand.ts b/clients/client-waf/src/commands/ListGeoMatchSetsCommand.ts index 5d74a8d301519..d4290f5e74cba 100644 --- a/clients/client-waf/src/commands/ListGeoMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListGeoMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGeoMatchSetsRequest, ListGeoMatchSetsResponse } from "../models/models_0"; +import type { ListGeoMatchSetsRequest, ListGeoMatchSetsResponse } from "../models/models_0"; import { ListGeoMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListIPSetsCommand.ts b/clients/client-waf/src/commands/ListIPSetsCommand.ts index 42d8468e02346..f2111405a893c 100644 --- a/clients/client-waf/src/commands/ListIPSetsCommand.ts +++ b/clients/client-waf/src/commands/ListIPSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_0"; +import type { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_0"; import { ListIPSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListLoggingConfigurationsCommand.ts b/clients/client-waf/src/commands/ListLoggingConfigurationsCommand.ts index c86a198cf5798..01f5b13a88691 100644 --- a/clients/client-waf/src/commands/ListLoggingConfigurationsCommand.ts +++ b/clients/client-waf/src/commands/ListLoggingConfigurationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0"; +import type { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0"; import { ListLoggingConfigurations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListRateBasedRulesCommand.ts b/clients/client-waf/src/commands/ListRateBasedRulesCommand.ts index 758a2c481dafa..475ce91765089 100644 --- a/clients/client-waf/src/commands/ListRateBasedRulesCommand.ts +++ b/clients/client-waf/src/commands/ListRateBasedRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRateBasedRulesRequest, ListRateBasedRulesResponse } from "../models/models_0"; +import type { ListRateBasedRulesRequest, ListRateBasedRulesResponse } from "../models/models_0"; import { ListRateBasedRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListRegexMatchSetsCommand.ts b/clients/client-waf/src/commands/ListRegexMatchSetsCommand.ts index 27a7abf984d9c..5e5eb59a7fb35 100644 --- a/clients/client-waf/src/commands/ListRegexMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListRegexMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegexMatchSetsRequest, ListRegexMatchSetsResponse } from "../models/models_0"; +import type { ListRegexMatchSetsRequest, ListRegexMatchSetsResponse } from "../models/models_0"; import { ListRegexMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListRegexPatternSetsCommand.ts b/clients/client-waf/src/commands/ListRegexPatternSetsCommand.ts index 7fd645cfb900e..7396209bf1076 100644 --- a/clients/client-waf/src/commands/ListRegexPatternSetsCommand.ts +++ b/clients/client-waf/src/commands/ListRegexPatternSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegexPatternSetsRequest, ListRegexPatternSetsResponse } from "../models/models_0"; +import type { ListRegexPatternSetsRequest, ListRegexPatternSetsResponse } from "../models/models_0"; import { ListRegexPatternSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListRuleGroupsCommand.ts b/clients/client-waf/src/commands/ListRuleGroupsCommand.ts index b3f499167a64e..b1d827266e71a 100644 --- a/clients/client-waf/src/commands/ListRuleGroupsCommand.ts +++ b/clients/client-waf/src/commands/ListRuleGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRuleGroupsRequest, ListRuleGroupsResponse } from "../models/models_0"; +import type { ListRuleGroupsRequest, ListRuleGroupsResponse } from "../models/models_0"; import { ListRuleGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListRulesCommand.ts b/clients/client-waf/src/commands/ListRulesCommand.ts index 09ab83fd2bd9e..edf97e9309d06 100644 --- a/clients/client-waf/src/commands/ListRulesCommand.ts +++ b/clients/client-waf/src/commands/ListRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRulesRequest, ListRulesResponse } from "../models/models_0"; +import type { ListRulesRequest, ListRulesResponse } from "../models/models_0"; import { ListRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListSizeConstraintSetsCommand.ts b/clients/client-waf/src/commands/ListSizeConstraintSetsCommand.ts index 1850f4810ac33..5024ba7fe99c6 100644 --- a/clients/client-waf/src/commands/ListSizeConstraintSetsCommand.ts +++ b/clients/client-waf/src/commands/ListSizeConstraintSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSizeConstraintSetsRequest, ListSizeConstraintSetsResponse } from "../models/models_0"; +import type { ListSizeConstraintSetsRequest, ListSizeConstraintSetsResponse } from "../models/models_0"; import { ListSizeConstraintSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListSqlInjectionMatchSetsCommand.ts b/clients/client-waf/src/commands/ListSqlInjectionMatchSetsCommand.ts index d66860a260355..7e35eacb3557e 100644 --- a/clients/client-waf/src/commands/ListSqlInjectionMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListSqlInjectionMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSqlInjectionMatchSetsRequest, ListSqlInjectionMatchSetsResponse } from "../models/models_0"; +import type { ListSqlInjectionMatchSetsRequest, ListSqlInjectionMatchSetsResponse } from "../models/models_0"; import { ListSqlInjectionMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListSubscribedRuleGroupsCommand.ts b/clients/client-waf/src/commands/ListSubscribedRuleGroupsCommand.ts index 0aca09f371068..f6cda5afb65eb 100644 --- a/clients/client-waf/src/commands/ListSubscribedRuleGroupsCommand.ts +++ b/clients/client-waf/src/commands/ListSubscribedRuleGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSubscribedRuleGroupsRequest, ListSubscribedRuleGroupsResponse } from "../models/models_0"; +import type { ListSubscribedRuleGroupsRequest, ListSubscribedRuleGroupsResponse } from "../models/models_0"; import { ListSubscribedRuleGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListTagsForResourceCommand.ts b/clients/client-waf/src/commands/ListTagsForResourceCommand.ts index d0c8f3c164c6d..0791eb5969e81 100644 --- a/clients/client-waf/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-waf/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListWebACLsCommand.ts b/clients/client-waf/src/commands/ListWebACLsCommand.ts index 20cf174698780..df19d0ddfe364 100644 --- a/clients/client-waf/src/commands/ListWebACLsCommand.ts +++ b/clients/client-waf/src/commands/ListWebACLsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWebACLsRequest, ListWebACLsResponse } from "../models/models_0"; +import type { ListWebACLsRequest, ListWebACLsResponse } from "../models/models_0"; import { ListWebACLs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/ListXssMatchSetsCommand.ts b/clients/client-waf/src/commands/ListXssMatchSetsCommand.ts index fa66560b1c0e0..647bdfe19c724 100644 --- a/clients/client-waf/src/commands/ListXssMatchSetsCommand.ts +++ b/clients/client-waf/src/commands/ListXssMatchSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListXssMatchSetsRequest, ListXssMatchSetsResponse } from "../models/models_0"; +import type { ListXssMatchSetsRequest, ListXssMatchSetsResponse } from "../models/models_0"; import { ListXssMatchSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/PutLoggingConfigurationCommand.ts b/clients/client-waf/src/commands/PutLoggingConfigurationCommand.ts index d8cc73f7bf30f..99e5459b2944e 100644 --- a/clients/client-waf/src/commands/PutLoggingConfigurationCommand.ts +++ b/clients/client-waf/src/commands/PutLoggingConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutLoggingConfigurationRequest, PutLoggingConfigurationResponse } from "../models/models_0"; +import type { PutLoggingConfigurationRequest, PutLoggingConfigurationResponse } from "../models/models_0"; import { PutLoggingConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/PutPermissionPolicyCommand.ts b/clients/client-waf/src/commands/PutPermissionPolicyCommand.ts index 8c4869112d8ce..6313f96ddbeb1 100644 --- a/clients/client-waf/src/commands/PutPermissionPolicyCommand.ts +++ b/clients/client-waf/src/commands/PutPermissionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPermissionPolicyRequest, PutPermissionPolicyResponse } from "../models/models_0"; +import type { PutPermissionPolicyRequest, PutPermissionPolicyResponse } from "../models/models_0"; import { PutPermissionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/TagResourceCommand.ts b/clients/client-waf/src/commands/TagResourceCommand.ts index 86a93a30066ae..ff59718333b32 100644 --- a/clients/client-waf/src/commands/TagResourceCommand.ts +++ b/clients/client-waf/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UntagResourceCommand.ts b/clients/client-waf/src/commands/UntagResourceCommand.ts index 7720f2667542c..7d323593f5cc1 100644 --- a/clients/client-waf/src/commands/UntagResourceCommand.ts +++ b/clients/client-waf/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateByteMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateByteMatchSetCommand.ts index 6c3b517608ee6..a552f527d39c3 100644 --- a/clients/client-waf/src/commands/UpdateByteMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateByteMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateByteMatchSetRequest, UpdateByteMatchSetResponse } from "../models/models_0"; +import type { UpdateByteMatchSetRequest, UpdateByteMatchSetResponse } from "../models/models_0"; import { UpdateByteMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateGeoMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateGeoMatchSetCommand.ts index eb06e43ffac5f..731431e7d4b00 100644 --- a/clients/client-waf/src/commands/UpdateGeoMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateGeoMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGeoMatchSetRequest, UpdateGeoMatchSetResponse } from "../models/models_0"; +import type { UpdateGeoMatchSetRequest, UpdateGeoMatchSetResponse } from "../models/models_0"; import { UpdateGeoMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateIPSetCommand.ts b/clients/client-waf/src/commands/UpdateIPSetCommand.ts index 03a7eb6eaa840..49322ac282f41 100644 --- a/clients/client-waf/src/commands/UpdateIPSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_0"; +import type { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_0"; import { UpdateIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateRateBasedRuleCommand.ts b/clients/client-waf/src/commands/UpdateRateBasedRuleCommand.ts index d4c82211ef8fc..fd2b6e59a5391 100644 --- a/clients/client-waf/src/commands/UpdateRateBasedRuleCommand.ts +++ b/clients/client-waf/src/commands/UpdateRateBasedRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRateBasedRuleRequest, UpdateRateBasedRuleResponse } from "../models/models_0"; +import type { UpdateRateBasedRuleRequest, UpdateRateBasedRuleResponse } from "../models/models_0"; import { UpdateRateBasedRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateRegexMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateRegexMatchSetCommand.ts index 127504fb88598..5983d434c22e5 100644 --- a/clients/client-waf/src/commands/UpdateRegexMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateRegexMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRegexMatchSetRequest, UpdateRegexMatchSetResponse } from "../models/models_0"; +import type { UpdateRegexMatchSetRequest, UpdateRegexMatchSetResponse } from "../models/models_0"; import { UpdateRegexMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateRegexPatternSetCommand.ts b/clients/client-waf/src/commands/UpdateRegexPatternSetCommand.ts index f8e0635f2cdfe..c766a78667b1d 100644 --- a/clients/client-waf/src/commands/UpdateRegexPatternSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRegexPatternSetRequest, UpdateRegexPatternSetResponse } from "../models/models_0"; +import type { UpdateRegexPatternSetRequest, UpdateRegexPatternSetResponse } from "../models/models_0"; import { UpdateRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateRuleCommand.ts b/clients/client-waf/src/commands/UpdateRuleCommand.ts index 6e805646b9958..bdf08b0a00348 100644 --- a/clients/client-waf/src/commands/UpdateRuleCommand.ts +++ b/clients/client-waf/src/commands/UpdateRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0"; +import type { UpdateRuleRequest, UpdateRuleResponse } from "../models/models_0"; import { UpdateRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateRuleGroupCommand.ts b/clients/client-waf/src/commands/UpdateRuleGroupCommand.ts index 1c0c7e18a518f..82df4a599f490 100644 --- a/clients/client-waf/src/commands/UpdateRuleGroupCommand.ts +++ b/clients/client-waf/src/commands/UpdateRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleGroupRequest, UpdateRuleGroupResponse } from "../models/models_0"; +import type { UpdateRuleGroupRequest, UpdateRuleGroupResponse } from "../models/models_0"; import { UpdateRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateSizeConstraintSetCommand.ts b/clients/client-waf/src/commands/UpdateSizeConstraintSetCommand.ts index 3c58be2750180..92e93eba13ab4 100644 --- a/clients/client-waf/src/commands/UpdateSizeConstraintSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateSizeConstraintSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSizeConstraintSetRequest, UpdateSizeConstraintSetResponse } from "../models/models_0"; +import type { UpdateSizeConstraintSetRequest, UpdateSizeConstraintSetResponse } from "../models/models_0"; import { UpdateSizeConstraintSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateSqlInjectionMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateSqlInjectionMatchSetCommand.ts index fa8ec0f578f9e..ce7e1e15b6fad 100644 --- a/clients/client-waf/src/commands/UpdateSqlInjectionMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateSqlInjectionMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSqlInjectionMatchSetRequest, UpdateSqlInjectionMatchSetResponse } from "../models/models_0"; +import type { UpdateSqlInjectionMatchSetRequest, UpdateSqlInjectionMatchSetResponse } from "../models/models_0"; import { UpdateSqlInjectionMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateWebACLCommand.ts b/clients/client-waf/src/commands/UpdateWebACLCommand.ts index 1bbd89075270e..f8a54f6ec91bd 100644 --- a/clients/client-waf/src/commands/UpdateWebACLCommand.ts +++ b/clients/client-waf/src/commands/UpdateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWebACLRequest, UpdateWebACLResponse } from "../models/models_0"; +import type { UpdateWebACLRequest, UpdateWebACLResponse } from "../models/models_0"; import { UpdateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/commands/UpdateXssMatchSetCommand.ts b/clients/client-waf/src/commands/UpdateXssMatchSetCommand.ts index 576a0d19bcea1..912a96711f231 100644 --- a/clients/client-waf/src/commands/UpdateXssMatchSetCommand.ts +++ b/clients/client-waf/src/commands/UpdateXssMatchSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateXssMatchSetRequest, UpdateXssMatchSetResponse } from "../models/models_0"; +import type { UpdateXssMatchSetRequest, UpdateXssMatchSetResponse } from "../models/models_0"; import { UpdateXssMatchSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFClientResolvedConfig } from "../WAFClient"; /** * @public diff --git a/clients/client-waf/src/endpoint/EndpointParameters.ts b/clients/client-waf/src/endpoint/EndpointParameters.ts index fccf0def78246..dd9076b0c49fd 100644 --- a/clients/client-waf/src/endpoint/EndpointParameters.ts +++ b/clients/client-waf/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-waf/src/endpoint/endpointResolver.ts b/clients/client-waf/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-waf/src/endpoint/endpointResolver.ts +++ b/clients/client-waf/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-waf/src/extensionConfiguration.ts b/clients/client-waf/src/extensionConfiguration.ts index 289ad4771b276..a20e9314b1c8a 100644 --- a/clients/client-waf/src/extensionConfiguration.ts +++ b/clients/client-waf/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-waf/src/models/WAFServiceException.ts b/clients/client-waf/src/models/WAFServiceException.ts index f5a1b32964924..e2ebbb5d96114 100644 --- a/clients/client-waf/src/models/WAFServiceException.ts +++ b/clients/client-waf/src/models/WAFServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-waf/src/models/errors.ts b/clients/client-waf/src/models/errors.ts index d51a9f156b910..034e238118879 100644 --- a/clients/client-waf/src/models/errors.ts +++ b/clients/client-waf/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MigrationErrorType, ParameterExceptionField, ParameterExceptionReason } from "./enums"; import { WAFServiceException as __BaseException } from "./WAFServiceException"; diff --git a/clients/client-waf/src/runtimeConfig.browser.ts b/clients/client-waf/src/runtimeConfig.browser.ts index 7cf8158ebe164..a009d1bd053d8 100644 --- a/clients/client-waf/src/runtimeConfig.browser.ts +++ b/clients/client-waf/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WAFClientConfig } from "./WAFClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WAFClientConfig } from "./WAFClient"; /** * @internal diff --git a/clients/client-waf/src/runtimeConfig.native.ts b/clients/client-waf/src/runtimeConfig.native.ts index 8728ca0288813..26525089d6e7d 100644 --- a/clients/client-waf/src/runtimeConfig.native.ts +++ b/clients/client-waf/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WAFClientConfig } from "./WAFClient"; +import type { WAFClientConfig } from "./WAFClient"; /** * @internal diff --git a/clients/client-waf/src/runtimeConfig.shared.ts b/clients/client-waf/src/runtimeConfig.shared.ts index 4189a655ff21f..8b4e1edd835c6 100644 --- a/clients/client-waf/src/runtimeConfig.shared.ts +++ b/clients/client-waf/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWAFHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WAFClientConfig } from "./WAFClient"; +import type { WAFClientConfig } from "./WAFClient"; /** * @internal diff --git a/clients/client-waf/src/runtimeConfig.ts b/clients/client-waf/src/runtimeConfig.ts index 1e2ef244851a0..b1157c6d4606e 100644 --- a/clients/client-waf/src/runtimeConfig.ts +++ b/clients/client-waf/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WAFClientConfig } from "./WAFClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WAFClientConfig } from "./WAFClient"; /** * @internal diff --git a/clients/client-waf/src/runtimeExtensions.ts b/clients/client-waf/src/runtimeExtensions.ts index 7eaa4de91af8b..5abe941fce57d 100644 --- a/clients/client-waf/src/runtimeExtensions.ts +++ b/clients/client-waf/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WAFExtensionConfiguration } from "./extensionConfiguration"; +import type { WAFExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-waf/src/schemas/schemas_0.ts b/clients/client-waf/src/schemas/schemas_0.ts index 248515aef76e9..798205a5367b1 100644 --- a/clients/client-waf/src/schemas/schemas_0.ts +++ b/clients/client-waf/src/schemas/schemas_0.ts @@ -431,7 +431,7 @@ const n0 = "com.amazonaws.waf"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { WAFBadRequestException as __WAFBadRequestException, diff --git a/clients/client-wafv2/package.json b/clients/client-wafv2/package.json index 1b36f0cf316fd..5f4c237e466f0 100644 --- a/clients/client-wafv2/package.json +++ b/clients/client-wafv2/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-wafv2/src/WAFV2.ts b/clients/client-wafv2/src/WAFV2.ts index b25c896ed3ab4..050b98294e7b2 100644 --- a/clients/client-wafv2/src/WAFV2.ts +++ b/clients/client-wafv2/src/WAFV2.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateWebACLCommand, @@ -236,7 +236,7 @@ import { UpdateWebACLCommandInput, UpdateWebACLCommandOutput, } from "./commands/UpdateWebACLCommand"; -import { WAFV2Client, WAFV2ClientConfig } from "./WAFV2Client"; +import { WAFV2Client } from "./WAFV2Client"; const commands = { AssociateWebACLCommand, diff --git a/clients/client-wafv2/src/WAFV2Client.ts b/clients/client-wafv2/src/WAFV2Client.ts index 600637f28bfd7..4441d1cd1f2af 100644 --- a/clients/client-wafv2/src/WAFV2Client.ts +++ b/clients/client-wafv2/src/WAFV2Client.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWAFV2HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateWebACLCommandInput, AssociateWebACLCommandOutput } from "./commands/AssociateWebACLCommand"; @@ -199,7 +208,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-wafv2/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-wafv2/src/auth/httpAuthExtensionConfiguration.ts index eea232e2d142f..27081dcd42887 100644 --- a/clients/client-wafv2/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-wafv2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WAFV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WAFV2HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-wafv2/src/auth/httpAuthSchemeProvider.ts b/clients/client-wafv2/src/auth/httpAuthSchemeProvider.ts index 385c7ceda2270..c8114385b5678 100644 --- a/clients/client-wafv2/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-wafv2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WAFV2ClientConfig, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import { type WAFV2ClientResolvedConfig, WAFV2ClientConfig } from "../WAFV2Client"; /** * @internal diff --git a/clients/client-wafv2/src/commands/AssociateWebACLCommand.ts b/clients/client-wafv2/src/commands/AssociateWebACLCommand.ts index ae7d354b1182d..43ccbfe0153fe 100644 --- a/clients/client-wafv2/src/commands/AssociateWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/AssociateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateWebACLRequest, AssociateWebACLResponse } from "../models/models_0"; +import type { AssociateWebACLRequest, AssociateWebACLResponse } from "../models/models_0"; import { AssociateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/CheckCapacityCommand.ts b/clients/client-wafv2/src/commands/CheckCapacityCommand.ts index 9602f34222962..db0be16098fcf 100644 --- a/clients/client-wafv2/src/commands/CheckCapacityCommand.ts +++ b/clients/client-wafv2/src/commands/CheckCapacityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CheckCapacityRequest, CheckCapacityResponse } from "../models/models_0"; +import type { CheckCapacityRequest, CheckCapacityResponse } from "../models/models_0"; import { CheckCapacity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/CreateAPIKeyCommand.ts b/clients/client-wafv2/src/commands/CreateAPIKeyCommand.ts index a0efa6dad89e2..7b8fbc85c94e7 100644 --- a/clients/client-wafv2/src/commands/CreateAPIKeyCommand.ts +++ b/clients/client-wafv2/src/commands/CreateAPIKeyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAPIKeyRequest, CreateAPIKeyResponse } from "../models/models_0"; +import type { CreateAPIKeyRequest, CreateAPIKeyResponse } from "../models/models_0"; import { CreateAPIKey } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/CreateIPSetCommand.ts b/clients/client-wafv2/src/commands/CreateIPSetCommand.ts index 87fe62cfd9b4b..1d0edd53193ef 100644 --- a/clients/client-wafv2/src/commands/CreateIPSetCommand.ts +++ b/clients/client-wafv2/src/commands/CreateIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIPSetRequest, CreateIPSetResponse } from "../models/models_0"; +import type { CreateIPSetRequest, CreateIPSetResponse } from "../models/models_0"; import { CreateIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/CreateRegexPatternSetCommand.ts b/clients/client-wafv2/src/commands/CreateRegexPatternSetCommand.ts index 99aacbaa56faf..d549a09943c2d 100644 --- a/clients/client-wafv2/src/commands/CreateRegexPatternSetCommand.ts +++ b/clients/client-wafv2/src/commands/CreateRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRegexPatternSetRequest, CreateRegexPatternSetResponse } from "../models/models_0"; +import type { CreateRegexPatternSetRequest, CreateRegexPatternSetResponse } from "../models/models_0"; import { CreateRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/CreateRuleGroupCommand.ts b/clients/client-wafv2/src/commands/CreateRuleGroupCommand.ts index 6aa87515f5da7..52cb38def2e43 100644 --- a/clients/client-wafv2/src/commands/CreateRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/CreateRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateRuleGroupRequest, CreateRuleGroupResponse } from "../models/models_0"; +import type { CreateRuleGroupRequest, CreateRuleGroupResponse } from "../models/models_0"; import { CreateRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/CreateWebACLCommand.ts b/clients/client-wafv2/src/commands/CreateWebACLCommand.ts index 678978ef7e295..f32aea597a930 100644 --- a/clients/client-wafv2/src/commands/CreateWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/CreateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWebACLRequest, CreateWebACLResponse } from "../models/models_0"; +import type { CreateWebACLRequest, CreateWebACLResponse } from "../models/models_0"; import { CreateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DeleteAPIKeyCommand.ts b/clients/client-wafv2/src/commands/DeleteAPIKeyCommand.ts index adc7b8402d0c1..65d43f627d2a3 100644 --- a/clients/client-wafv2/src/commands/DeleteAPIKeyCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteAPIKeyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAPIKeyRequest, DeleteAPIKeyResponse } from "../models/models_0"; +import type { DeleteAPIKeyRequest, DeleteAPIKeyResponse } from "../models/models_0"; import { DeleteAPIKey } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DeleteFirewallManagerRuleGroupsCommand.ts b/clients/client-wafv2/src/commands/DeleteFirewallManagerRuleGroupsCommand.ts index e028453b71107..c2b2f2890282b 100644 --- a/clients/client-wafv2/src/commands/DeleteFirewallManagerRuleGroupsCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteFirewallManagerRuleGroupsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFirewallManagerRuleGroupsRequest, DeleteFirewallManagerRuleGroupsResponse } from "../models/models_0"; +import type { + DeleteFirewallManagerRuleGroupsRequest, + DeleteFirewallManagerRuleGroupsResponse, +} from "../models/models_0"; import { DeleteFirewallManagerRuleGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DeleteIPSetCommand.ts b/clients/client-wafv2/src/commands/DeleteIPSetCommand.ts index 00d8609a22ac1..229465f134714 100644 --- a/clients/client-wafv2/src/commands/DeleteIPSetCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIPSetRequest, DeleteIPSetResponse } from "../models/models_0"; +import type { DeleteIPSetRequest, DeleteIPSetResponse } from "../models/models_0"; import { DeleteIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DeleteLoggingConfigurationCommand.ts b/clients/client-wafv2/src/commands/DeleteLoggingConfigurationCommand.ts index 4a18be3de2e90..f3acf46b1dd69 100644 --- a/clients/client-wafv2/src/commands/DeleteLoggingConfigurationCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteLoggingConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLoggingConfigurationRequest, DeleteLoggingConfigurationResponse } from "../models/models_0"; +import type { DeleteLoggingConfigurationRequest, DeleteLoggingConfigurationResponse } from "../models/models_0"; import { DeleteLoggingConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DeletePermissionPolicyCommand.ts b/clients/client-wafv2/src/commands/DeletePermissionPolicyCommand.ts index 8f2fc25511c02..33dcd499cbc1f 100644 --- a/clients/client-wafv2/src/commands/DeletePermissionPolicyCommand.ts +++ b/clients/client-wafv2/src/commands/DeletePermissionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePermissionPolicyRequest, DeletePermissionPolicyResponse } from "../models/models_0"; +import type { DeletePermissionPolicyRequest, DeletePermissionPolicyResponse } from "../models/models_0"; import { DeletePermissionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DeleteRegexPatternSetCommand.ts b/clients/client-wafv2/src/commands/DeleteRegexPatternSetCommand.ts index ee177f5b3104b..cc25b15a9e890 100644 --- a/clients/client-wafv2/src/commands/DeleteRegexPatternSetCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRegexPatternSetRequest, DeleteRegexPatternSetResponse } from "../models/models_0"; +import type { DeleteRegexPatternSetRequest, DeleteRegexPatternSetResponse } from "../models/models_0"; import { DeleteRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DeleteRuleGroupCommand.ts b/clients/client-wafv2/src/commands/DeleteRuleGroupCommand.ts index 7be5634b94cde..bc666688cb797 100644 --- a/clients/client-wafv2/src/commands/DeleteRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRuleGroupRequest, DeleteRuleGroupResponse } from "../models/models_0"; +import type { DeleteRuleGroupRequest, DeleteRuleGroupResponse } from "../models/models_0"; import { DeleteRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DeleteWebACLCommand.ts b/clients/client-wafv2/src/commands/DeleteWebACLCommand.ts index 064f61f1f241c..948078ec41ab1 100644 --- a/clients/client-wafv2/src/commands/DeleteWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/DeleteWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWebACLRequest, DeleteWebACLResponse } from "../models/models_0"; +import type { DeleteWebACLRequest, DeleteWebACLResponse } from "../models/models_0"; import { DeleteWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DescribeAllManagedProductsCommand.ts b/clients/client-wafv2/src/commands/DescribeAllManagedProductsCommand.ts index 743764a435988..b8bcd1f1b3f02 100644 --- a/clients/client-wafv2/src/commands/DescribeAllManagedProductsCommand.ts +++ b/clients/client-wafv2/src/commands/DescribeAllManagedProductsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAllManagedProductsRequest, DescribeAllManagedProductsResponse } from "../models/models_0"; +import type { DescribeAllManagedProductsRequest, DescribeAllManagedProductsResponse } from "../models/models_0"; import { DescribeAllManagedProducts } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DescribeManagedProductsByVendorCommand.ts b/clients/client-wafv2/src/commands/DescribeManagedProductsByVendorCommand.ts index 4b0b20b9b99cf..dc640f2df3e45 100644 --- a/clients/client-wafv2/src/commands/DescribeManagedProductsByVendorCommand.ts +++ b/clients/client-wafv2/src/commands/DescribeManagedProductsByVendorCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeManagedProductsByVendorRequest, DescribeManagedProductsByVendorResponse } from "../models/models_0"; +import type { + DescribeManagedProductsByVendorRequest, + DescribeManagedProductsByVendorResponse, +} from "../models/models_0"; import { DescribeManagedProductsByVendor } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DescribeManagedRuleGroupCommand.ts b/clients/client-wafv2/src/commands/DescribeManagedRuleGroupCommand.ts index 41b95c9a58779..d968c1a0d8ba9 100644 --- a/clients/client-wafv2/src/commands/DescribeManagedRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/DescribeManagedRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeManagedRuleGroupRequest, DescribeManagedRuleGroupResponse } from "../models/models_0"; +import type { DescribeManagedRuleGroupRequest, DescribeManagedRuleGroupResponse } from "../models/models_0"; import { DescribeManagedRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/DisassociateWebACLCommand.ts b/clients/client-wafv2/src/commands/DisassociateWebACLCommand.ts index aebd23bea34e0..77d1e4efa3dd1 100644 --- a/clients/client-wafv2/src/commands/DisassociateWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/DisassociateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateWebACLRequest, DisassociateWebACLResponse } from "../models/models_0"; +import type { DisassociateWebACLRequest, DisassociateWebACLResponse } from "../models/models_0"; import { DisassociateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GenerateMobileSdkReleaseUrlCommand.ts b/clients/client-wafv2/src/commands/GenerateMobileSdkReleaseUrlCommand.ts index c68dd42eedbfb..f68c0f42a7747 100644 --- a/clients/client-wafv2/src/commands/GenerateMobileSdkReleaseUrlCommand.ts +++ b/clients/client-wafv2/src/commands/GenerateMobileSdkReleaseUrlCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GenerateMobileSdkReleaseUrlRequest, GenerateMobileSdkReleaseUrlResponse } from "../models/models_0"; +import type { GenerateMobileSdkReleaseUrlRequest, GenerateMobileSdkReleaseUrlResponse } from "../models/models_0"; import { GenerateMobileSdkReleaseUrl } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetDecryptedAPIKeyCommand.ts b/clients/client-wafv2/src/commands/GetDecryptedAPIKeyCommand.ts index 5ad581fe840f7..0f240f41aff65 100644 --- a/clients/client-wafv2/src/commands/GetDecryptedAPIKeyCommand.ts +++ b/clients/client-wafv2/src/commands/GetDecryptedAPIKeyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDecryptedAPIKeyRequest, GetDecryptedAPIKeyResponse } from "../models/models_0"; +import type { GetDecryptedAPIKeyRequest, GetDecryptedAPIKeyResponse } from "../models/models_0"; import { GetDecryptedAPIKey } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetIPSetCommand.ts b/clients/client-wafv2/src/commands/GetIPSetCommand.ts index a2252367ff891..098c006dcfc3a 100644 --- a/clients/client-wafv2/src/commands/GetIPSetCommand.ts +++ b/clients/client-wafv2/src/commands/GetIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIPSetRequest, GetIPSetResponse } from "../models/models_0"; +import type { GetIPSetRequest, GetIPSetResponse } from "../models/models_0"; import { GetIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetLoggingConfigurationCommand.ts b/clients/client-wafv2/src/commands/GetLoggingConfigurationCommand.ts index 62436baa4c9a0..e236a3bb2457b 100644 --- a/clients/client-wafv2/src/commands/GetLoggingConfigurationCommand.ts +++ b/clients/client-wafv2/src/commands/GetLoggingConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0"; +import type { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0"; import { GetLoggingConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetManagedRuleSetCommand.ts b/clients/client-wafv2/src/commands/GetManagedRuleSetCommand.ts index b6a171ddb0014..5405efe6e21a7 100644 --- a/clients/client-wafv2/src/commands/GetManagedRuleSetCommand.ts +++ b/clients/client-wafv2/src/commands/GetManagedRuleSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetManagedRuleSetRequest, GetManagedRuleSetResponse } from "../models/models_0"; +import type { GetManagedRuleSetRequest, GetManagedRuleSetResponse } from "../models/models_0"; import { GetManagedRuleSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetMobileSdkReleaseCommand.ts b/clients/client-wafv2/src/commands/GetMobileSdkReleaseCommand.ts index f13d117070a84..58197ae628b72 100644 --- a/clients/client-wafv2/src/commands/GetMobileSdkReleaseCommand.ts +++ b/clients/client-wafv2/src/commands/GetMobileSdkReleaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMobileSdkReleaseRequest, GetMobileSdkReleaseResponse } from "../models/models_0"; +import type { GetMobileSdkReleaseRequest, GetMobileSdkReleaseResponse } from "../models/models_0"; import { GetMobileSdkRelease } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetPermissionPolicyCommand.ts b/clients/client-wafv2/src/commands/GetPermissionPolicyCommand.ts index fa6d78efa2be3..63b0dc2bb3301 100644 --- a/clients/client-wafv2/src/commands/GetPermissionPolicyCommand.ts +++ b/clients/client-wafv2/src/commands/GetPermissionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPermissionPolicyRequest, GetPermissionPolicyResponse } from "../models/models_0"; +import type { GetPermissionPolicyRequest, GetPermissionPolicyResponse } from "../models/models_0"; import { GetPermissionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetRateBasedStatementManagedKeysCommand.ts b/clients/client-wafv2/src/commands/GetRateBasedStatementManagedKeysCommand.ts index a61ed853daa46..3d4886ef67151 100644 --- a/clients/client-wafv2/src/commands/GetRateBasedStatementManagedKeysCommand.ts +++ b/clients/client-wafv2/src/commands/GetRateBasedStatementManagedKeysCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRateBasedStatementManagedKeysRequest, GetRateBasedStatementManagedKeysResponse } from "../models/models_0"; +import type { + GetRateBasedStatementManagedKeysRequest, + GetRateBasedStatementManagedKeysResponse, +} from "../models/models_0"; import { GetRateBasedStatementManagedKeys } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetRegexPatternSetCommand.ts b/clients/client-wafv2/src/commands/GetRegexPatternSetCommand.ts index 085b03175dc9f..4b694803275fa 100644 --- a/clients/client-wafv2/src/commands/GetRegexPatternSetCommand.ts +++ b/clients/client-wafv2/src/commands/GetRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRegexPatternSetRequest, GetRegexPatternSetResponse } from "../models/models_0"; +import type { GetRegexPatternSetRequest, GetRegexPatternSetResponse } from "../models/models_0"; import { GetRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetRuleGroupCommand.ts b/clients/client-wafv2/src/commands/GetRuleGroupCommand.ts index 2e69fc5dc5d0c..1fc6f61ce73e5 100644 --- a/clients/client-wafv2/src/commands/GetRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/GetRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRuleGroupRequest, GetRuleGroupResponse } from "../models/models_0"; +import type { GetRuleGroupRequest, GetRuleGroupResponse } from "../models/models_0"; import { GetRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetSampledRequestsCommand.ts b/clients/client-wafv2/src/commands/GetSampledRequestsCommand.ts index 5cdea4c8399e2..0b7e3080bdb0a 100644 --- a/clients/client-wafv2/src/commands/GetSampledRequestsCommand.ts +++ b/clients/client-wafv2/src/commands/GetSampledRequestsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSampledRequestsRequest, GetSampledRequestsResponse } from "../models/models_0"; +import type { GetSampledRequestsRequest, GetSampledRequestsResponse } from "../models/models_0"; import { GetSampledRequests } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetWebACLCommand.ts b/clients/client-wafv2/src/commands/GetWebACLCommand.ts index 38610f11dd6e9..77fbc247aca8e 100644 --- a/clients/client-wafv2/src/commands/GetWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/GetWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWebACLRequest, GetWebACLResponse } from "../models/models_0"; +import type { GetWebACLRequest, GetWebACLResponse } from "../models/models_0"; import { GetWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/GetWebACLForResourceCommand.ts b/clients/client-wafv2/src/commands/GetWebACLForResourceCommand.ts index 792d23b07f025..7590f5d14b794 100644 --- a/clients/client-wafv2/src/commands/GetWebACLForResourceCommand.ts +++ b/clients/client-wafv2/src/commands/GetWebACLForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWebACLForResourceRequest, GetWebACLForResourceResponse } from "../models/models_0"; +import type { GetWebACLForResourceRequest, GetWebACLForResourceResponse } from "../models/models_0"; import { GetWebACLForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListAPIKeysCommand.ts b/clients/client-wafv2/src/commands/ListAPIKeysCommand.ts index e38d8950cf31b..7f0febb53d1ec 100644 --- a/clients/client-wafv2/src/commands/ListAPIKeysCommand.ts +++ b/clients/client-wafv2/src/commands/ListAPIKeysCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAPIKeysRequest, ListAPIKeysResponse } from "../models/models_0"; +import type { ListAPIKeysRequest, ListAPIKeysResponse } from "../models/models_0"; import { ListAPIKeys } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupVersionsCommand.ts b/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupVersionsCommand.ts index 35169d612bda9..2c8936fce6c47 100644 --- a/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupVersionsCommand.ts +++ b/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupVersionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ListAvailableManagedRuleGroupVersionsRequest, ListAvailableManagedRuleGroupVersionsResponse, } from "../models/models_0"; import { ListAvailableManagedRuleGroupVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupsCommand.ts b/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupsCommand.ts index 6bcc63653c120..d3d6c7502426b 100644 --- a/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupsCommand.ts +++ b/clients/client-wafv2/src/commands/ListAvailableManagedRuleGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAvailableManagedRuleGroupsRequest, ListAvailableManagedRuleGroupsResponse } from "../models/models_0"; +import type { ListAvailableManagedRuleGroupsRequest, ListAvailableManagedRuleGroupsResponse } from "../models/models_0"; import { ListAvailableManagedRuleGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListIPSetsCommand.ts b/clients/client-wafv2/src/commands/ListIPSetsCommand.ts index 4c0a66b2545a4..ec50e7e36cf69 100644 --- a/clients/client-wafv2/src/commands/ListIPSetsCommand.ts +++ b/clients/client-wafv2/src/commands/ListIPSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_0"; +import type { ListIPSetsRequest, ListIPSetsResponse } from "../models/models_0"; import { ListIPSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListLoggingConfigurationsCommand.ts b/clients/client-wafv2/src/commands/ListLoggingConfigurationsCommand.ts index 765d409cbc1c8..2bb8ef32a2226 100644 --- a/clients/client-wafv2/src/commands/ListLoggingConfigurationsCommand.ts +++ b/clients/client-wafv2/src/commands/ListLoggingConfigurationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0"; +import type { ListLoggingConfigurationsRequest, ListLoggingConfigurationsResponse } from "../models/models_0"; import { ListLoggingConfigurations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListManagedRuleSetsCommand.ts b/clients/client-wafv2/src/commands/ListManagedRuleSetsCommand.ts index 225373756e901..6aefe13daa739 100644 --- a/clients/client-wafv2/src/commands/ListManagedRuleSetsCommand.ts +++ b/clients/client-wafv2/src/commands/ListManagedRuleSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListManagedRuleSetsRequest, ListManagedRuleSetsResponse } from "../models/models_0"; +import type { ListManagedRuleSetsRequest, ListManagedRuleSetsResponse } from "../models/models_0"; import { ListManagedRuleSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListMobileSdkReleasesCommand.ts b/clients/client-wafv2/src/commands/ListMobileSdkReleasesCommand.ts index 47ba7165c17e6..db36c65666eaa 100644 --- a/clients/client-wafv2/src/commands/ListMobileSdkReleasesCommand.ts +++ b/clients/client-wafv2/src/commands/ListMobileSdkReleasesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMobileSdkReleasesRequest, ListMobileSdkReleasesResponse } from "../models/models_0"; +import type { ListMobileSdkReleasesRequest, ListMobileSdkReleasesResponse } from "../models/models_0"; import { ListMobileSdkReleases } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListRegexPatternSetsCommand.ts b/clients/client-wafv2/src/commands/ListRegexPatternSetsCommand.ts index 46422984f6904..137ad1691f3dd 100644 --- a/clients/client-wafv2/src/commands/ListRegexPatternSetsCommand.ts +++ b/clients/client-wafv2/src/commands/ListRegexPatternSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegexPatternSetsRequest, ListRegexPatternSetsResponse } from "../models/models_0"; +import type { ListRegexPatternSetsRequest, ListRegexPatternSetsResponse } from "../models/models_0"; import { ListRegexPatternSets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListResourcesForWebACLCommand.ts b/clients/client-wafv2/src/commands/ListResourcesForWebACLCommand.ts index 359ad110ab420..d3a7bd7d91ed9 100644 --- a/clients/client-wafv2/src/commands/ListResourcesForWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/ListResourcesForWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcesForWebACLRequest, ListResourcesForWebACLResponse } from "../models/models_0"; +import type { ListResourcesForWebACLRequest, ListResourcesForWebACLResponse } from "../models/models_0"; import { ListResourcesForWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListRuleGroupsCommand.ts b/clients/client-wafv2/src/commands/ListRuleGroupsCommand.ts index 5824e96854508..18f9ab340fdef 100644 --- a/clients/client-wafv2/src/commands/ListRuleGroupsCommand.ts +++ b/clients/client-wafv2/src/commands/ListRuleGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRuleGroupsRequest, ListRuleGroupsResponse } from "../models/models_0"; +import type { ListRuleGroupsRequest, ListRuleGroupsResponse } from "../models/models_0"; import { ListRuleGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListTagsForResourceCommand.ts b/clients/client-wafv2/src/commands/ListTagsForResourceCommand.ts index c308aea60e317..e083a4b9efb6d 100644 --- a/clients/client-wafv2/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-wafv2/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/ListWebACLsCommand.ts b/clients/client-wafv2/src/commands/ListWebACLsCommand.ts index 69215ad4059b2..56a5cb764277b 100644 --- a/clients/client-wafv2/src/commands/ListWebACLsCommand.ts +++ b/clients/client-wafv2/src/commands/ListWebACLsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWebACLsRequest, ListWebACLsResponse } from "../models/models_0"; +import type { ListWebACLsRequest, ListWebACLsResponse } from "../models/models_0"; import { ListWebACLs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/PutLoggingConfigurationCommand.ts b/clients/client-wafv2/src/commands/PutLoggingConfigurationCommand.ts index ec83b36ea90f6..2bd72c1c25828 100644 --- a/clients/client-wafv2/src/commands/PutLoggingConfigurationCommand.ts +++ b/clients/client-wafv2/src/commands/PutLoggingConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutLoggingConfigurationRequest, PutLoggingConfigurationResponse } from "../models/models_0"; +import type { PutLoggingConfigurationRequest, PutLoggingConfigurationResponse } from "../models/models_0"; import { PutLoggingConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/PutManagedRuleSetVersionsCommand.ts b/clients/client-wafv2/src/commands/PutManagedRuleSetVersionsCommand.ts index 6fecd59dac12a..138c2f3a9d2cd 100644 --- a/clients/client-wafv2/src/commands/PutManagedRuleSetVersionsCommand.ts +++ b/clients/client-wafv2/src/commands/PutManagedRuleSetVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutManagedRuleSetVersionsRequest, PutManagedRuleSetVersionsResponse } from "../models/models_0"; +import type { PutManagedRuleSetVersionsRequest, PutManagedRuleSetVersionsResponse } from "../models/models_0"; import { PutManagedRuleSetVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/PutPermissionPolicyCommand.ts b/clients/client-wafv2/src/commands/PutPermissionPolicyCommand.ts index 1965e6c6f4e94..57cadc8fa6baf 100644 --- a/clients/client-wafv2/src/commands/PutPermissionPolicyCommand.ts +++ b/clients/client-wafv2/src/commands/PutPermissionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutPermissionPolicyRequest, PutPermissionPolicyResponse } from "../models/models_0"; +import type { PutPermissionPolicyRequest, PutPermissionPolicyResponse } from "../models/models_0"; import { PutPermissionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/TagResourceCommand.ts b/clients/client-wafv2/src/commands/TagResourceCommand.ts index bf45c403a9529..1d465fe9e3e7b 100644 --- a/clients/client-wafv2/src/commands/TagResourceCommand.ts +++ b/clients/client-wafv2/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/UntagResourceCommand.ts b/clients/client-wafv2/src/commands/UntagResourceCommand.ts index 96b69f0497553..1efca5eb3d7b6 100644 --- a/clients/client-wafv2/src/commands/UntagResourceCommand.ts +++ b/clients/client-wafv2/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/UpdateIPSetCommand.ts b/clients/client-wafv2/src/commands/UpdateIPSetCommand.ts index b5560e550e12b..cadf414379aa9 100644 --- a/clients/client-wafv2/src/commands/UpdateIPSetCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateIPSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_0"; +import type { UpdateIPSetRequest, UpdateIPSetResponse } from "../models/models_0"; import { UpdateIPSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/UpdateManagedRuleSetVersionExpiryDateCommand.ts b/clients/client-wafv2/src/commands/UpdateManagedRuleSetVersionExpiryDateCommand.ts index bf20684dade0b..a113b0d96d79a 100644 --- a/clients/client-wafv2/src/commands/UpdateManagedRuleSetVersionExpiryDateCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateManagedRuleSetVersionExpiryDateCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { UpdateManagedRuleSetVersionExpiryDateRequest, UpdateManagedRuleSetVersionExpiryDateResponse, } from "../models/models_0"; import { UpdateManagedRuleSetVersionExpiryDate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/UpdateRegexPatternSetCommand.ts b/clients/client-wafv2/src/commands/UpdateRegexPatternSetCommand.ts index e14a135658a92..e1c8b01051369 100644 --- a/clients/client-wafv2/src/commands/UpdateRegexPatternSetCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateRegexPatternSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRegexPatternSetRequest, UpdateRegexPatternSetResponse } from "../models/models_0"; +import type { UpdateRegexPatternSetRequest, UpdateRegexPatternSetResponse } from "../models/models_0"; import { UpdateRegexPatternSet } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/UpdateRuleGroupCommand.ts b/clients/client-wafv2/src/commands/UpdateRuleGroupCommand.ts index 6bf4c403fee85..7980e95ca38ae 100644 --- a/clients/client-wafv2/src/commands/UpdateRuleGroupCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateRuleGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRuleGroupRequest, UpdateRuleGroupResponse } from "../models/models_0"; +import type { UpdateRuleGroupRequest, UpdateRuleGroupResponse } from "../models/models_0"; import { UpdateRuleGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/commands/UpdateWebACLCommand.ts b/clients/client-wafv2/src/commands/UpdateWebACLCommand.ts index fddab10c1a931..cf87682998f32 100644 --- a/clients/client-wafv2/src/commands/UpdateWebACLCommand.ts +++ b/clients/client-wafv2/src/commands/UpdateWebACLCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWebACLRequest, UpdateWebACLResponse } from "../models/models_0"; +import type { UpdateWebACLRequest, UpdateWebACLResponse } from "../models/models_0"; import { UpdateWebACL } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; +import type { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client"; /** * @public diff --git a/clients/client-wafv2/src/endpoint/EndpointParameters.ts b/clients/client-wafv2/src/endpoint/EndpointParameters.ts index d444edc1facd4..f3f340cb594b1 100644 --- a/clients/client-wafv2/src/endpoint/EndpointParameters.ts +++ b/clients/client-wafv2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-wafv2/src/endpoint/endpointResolver.ts b/clients/client-wafv2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-wafv2/src/endpoint/endpointResolver.ts +++ b/clients/client-wafv2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-wafv2/src/extensionConfiguration.ts b/clients/client-wafv2/src/extensionConfiguration.ts index 5ed3971376701..e3e9d8038d720 100644 --- a/clients/client-wafv2/src/extensionConfiguration.ts +++ b/clients/client-wafv2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-wafv2/src/models/WAFV2ServiceException.ts b/clients/client-wafv2/src/models/WAFV2ServiceException.ts index 5131305607022..1b8e0b5205625 100644 --- a/clients/client-wafv2/src/models/WAFV2ServiceException.ts +++ b/clients/client-wafv2/src/models/WAFV2ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-wafv2/src/models/errors.ts b/clients/client-wafv2/src/models/errors.ts index dc862b377031a..d4bf0c90a560a 100644 --- a/clients/client-wafv2/src/models/errors.ts +++ b/clients/client-wafv2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ParameterExceptionField } from "./enums"; import { DisallowedFeature } from "./models_0"; diff --git a/clients/client-wafv2/src/runtimeConfig.browser.ts b/clients/client-wafv2/src/runtimeConfig.browser.ts index 01744d4f0434d..1a1cb91f8ff18 100644 --- a/clients/client-wafv2/src/runtimeConfig.browser.ts +++ b/clients/client-wafv2/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WAFV2ClientConfig } from "./WAFV2Client"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WAFV2ClientConfig } from "./WAFV2Client"; /** * @internal diff --git a/clients/client-wafv2/src/runtimeConfig.native.ts b/clients/client-wafv2/src/runtimeConfig.native.ts index 4f394a940c617..81f80ba0eab11 100644 --- a/clients/client-wafv2/src/runtimeConfig.native.ts +++ b/clients/client-wafv2/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WAFV2ClientConfig } from "./WAFV2Client"; +import type { WAFV2ClientConfig } from "./WAFV2Client"; /** * @internal diff --git a/clients/client-wafv2/src/runtimeConfig.shared.ts b/clients/client-wafv2/src/runtimeConfig.shared.ts index 0cb89f35a7966..1cbeb072c6c7f 100644 --- a/clients/client-wafv2/src/runtimeConfig.shared.ts +++ b/clients/client-wafv2/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWAFV2HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WAFV2ClientConfig } from "./WAFV2Client"; +import type { WAFV2ClientConfig } from "./WAFV2Client"; /** * @internal diff --git a/clients/client-wafv2/src/runtimeConfig.ts b/clients/client-wafv2/src/runtimeConfig.ts index 42931bc1e42db..ae05029809b74 100644 --- a/clients/client-wafv2/src/runtimeConfig.ts +++ b/clients/client-wafv2/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WAFV2ClientConfig } from "./WAFV2Client"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WAFV2ClientConfig } from "./WAFV2Client"; /** * @internal diff --git a/clients/client-wafv2/src/runtimeExtensions.ts b/clients/client-wafv2/src/runtimeExtensions.ts index 9523b28294959..32db3a9dc187e 100644 --- a/clients/client-wafv2/src/runtimeExtensions.ts +++ b/clients/client-wafv2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WAFV2ExtensionConfiguration } from "./extensionConfiguration"; +import type { WAFV2ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-wafv2/src/schemas/schemas_0.ts b/clients/client-wafv2/src/schemas/schemas_0.ts index 0fd633b8bc4dd..8efd825265f70 100644 --- a/clients/client-wafv2/src/schemas/schemas_0.ts +++ b/clients/client-wafv2/src/schemas/schemas_0.ts @@ -558,7 +558,7 @@ const n0 = "com.amazonaws.wafv2"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-wellarchitected/package.json b/clients/client-wellarchitected/package.json index 10b3048460a9c..7a3d627f926a5 100644 --- a/clients/client-wellarchitected/package.json +++ b/clients/client-wellarchitected/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-wellarchitected/src/WellArchitected.ts b/clients/client-wellarchitected/src/WellArchitected.ts index 4d86d98703156..1c8e435031852 100644 --- a/clients/client-wellarchitected/src/WellArchitected.ts +++ b/clients/client-wellarchitected/src/WellArchitected.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateLensesCommand, @@ -322,7 +322,7 @@ import { UpgradeReviewTemplateLensReviewCommandInput, UpgradeReviewTemplateLensReviewCommandOutput, } from "./commands/UpgradeReviewTemplateLensReviewCommand"; -import { WellArchitectedClient, WellArchitectedClientConfig } from "./WellArchitectedClient"; +import { WellArchitectedClient } from "./WellArchitectedClient"; const commands = { AssociateLensesCommand, diff --git a/clients/client-wellarchitected/src/WellArchitectedClient.ts b/clients/client-wellarchitected/src/WellArchitectedClient.ts index eb498ca2a9832..0635d65cee286 100644 --- a/clients/client-wellarchitected/src/WellArchitectedClient.ts +++ b/clients/client-wellarchitected/src/WellArchitectedClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWellArchitectedHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateLensesCommandInput, AssociateLensesCommandOutput } from "./commands/AssociateLensesCommand"; @@ -214,7 +223,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-wellarchitected/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-wellarchitected/src/auth/httpAuthExtensionConfiguration.ts index f1bbfa1c35f75..bfc532c990a70 100644 --- a/clients/client-wellarchitected/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-wellarchitected/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WellArchitectedHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WellArchitectedHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-wellarchitected/src/auth/httpAuthSchemeProvider.ts b/clients/client-wellarchitected/src/auth/httpAuthSchemeProvider.ts index 6efe9e21f5041..2fa3f84fe84db 100644 --- a/clients/client-wellarchitected/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-wellarchitected/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WellArchitectedClientConfig, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import { type WellArchitectedClientResolvedConfig, WellArchitectedClientConfig } from "../WellArchitectedClient"; /** * @internal diff --git a/clients/client-wellarchitected/src/commands/AssociateLensesCommand.ts b/clients/client-wellarchitected/src/commands/AssociateLensesCommand.ts index 3de0d383954e7..592759bc8cdff 100644 --- a/clients/client-wellarchitected/src/commands/AssociateLensesCommand.ts +++ b/clients/client-wellarchitected/src/commands/AssociateLensesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateLensesInput } from "../models/models_0"; +import type { AssociateLensesInput } from "../models/models_0"; import { AssociateLenses } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/AssociateProfilesCommand.ts b/clients/client-wellarchitected/src/commands/AssociateProfilesCommand.ts index 927719373aeb3..3dc5940610e67 100644 --- a/clients/client-wellarchitected/src/commands/AssociateProfilesCommand.ts +++ b/clients/client-wellarchitected/src/commands/AssociateProfilesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateProfilesInput } from "../models/models_0"; +import type { AssociateProfilesInput } from "../models/models_0"; import { AssociateProfiles } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/CreateLensShareCommand.ts b/clients/client-wellarchitected/src/commands/CreateLensShareCommand.ts index 531b1be56ffd3..0ee8f5f7d9ad3 100644 --- a/clients/client-wellarchitected/src/commands/CreateLensShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateLensShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLensShareInput, CreateLensShareOutput } from "../models/models_0"; +import type { CreateLensShareInput, CreateLensShareOutput } from "../models/models_0"; import { CreateLensShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/CreateLensVersionCommand.ts b/clients/client-wellarchitected/src/commands/CreateLensVersionCommand.ts index b88f0c1aa11dd..b41557fa03bf1 100644 --- a/clients/client-wellarchitected/src/commands/CreateLensVersionCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateLensVersionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLensVersionInput, CreateLensVersionOutput } from "../models/models_0"; +import type { CreateLensVersionInput, CreateLensVersionOutput } from "../models/models_0"; import { CreateLensVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/CreateMilestoneCommand.ts b/clients/client-wellarchitected/src/commands/CreateMilestoneCommand.ts index 78afc94b00cb1..1c0489f1d2d54 100644 --- a/clients/client-wellarchitected/src/commands/CreateMilestoneCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateMilestoneCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMilestoneInput, CreateMilestoneOutput } from "../models/models_0"; +import type { CreateMilestoneInput, CreateMilestoneOutput } from "../models/models_0"; import { CreateMilestone } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/CreateProfileCommand.ts b/clients/client-wellarchitected/src/commands/CreateProfileCommand.ts index 44460bb03c1ad..7574d6151d263 100644 --- a/clients/client-wellarchitected/src/commands/CreateProfileCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateProfileCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProfileInput, CreateProfileOutput } from "../models/models_0"; +import type { CreateProfileInput, CreateProfileOutput } from "../models/models_0"; import { CreateProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/CreateProfileShareCommand.ts b/clients/client-wellarchitected/src/commands/CreateProfileShareCommand.ts index fabe4b7b73a6b..47aa80ff4a50a 100644 --- a/clients/client-wellarchitected/src/commands/CreateProfileShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateProfileShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateProfileShareInput, CreateProfileShareOutput } from "../models/models_0"; +import type { CreateProfileShareInput, CreateProfileShareOutput } from "../models/models_0"; import { CreateProfileShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/CreateReviewTemplateCommand.ts b/clients/client-wellarchitected/src/commands/CreateReviewTemplateCommand.ts index ea335e2b8ce53..6923e77b68a39 100644 --- a/clients/client-wellarchitected/src/commands/CreateReviewTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateReviewTemplateCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateReviewTemplateInput, CreateReviewTemplateOutput } from "../models/models_0"; +import type { CreateReviewTemplateInput, CreateReviewTemplateOutput } from "../models/models_0"; import { CreateReviewTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/CreateTemplateShareCommand.ts b/clients/client-wellarchitected/src/commands/CreateTemplateShareCommand.ts index 2484d0a6abf71..45c5954d29b19 100644 --- a/clients/client-wellarchitected/src/commands/CreateTemplateShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateTemplateShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTemplateShareInput, CreateTemplateShareOutput } from "../models/models_0"; +import type { CreateTemplateShareInput, CreateTemplateShareOutput } from "../models/models_0"; import { CreateTemplateShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/CreateWorkloadCommand.ts b/clients/client-wellarchitected/src/commands/CreateWorkloadCommand.ts index 38d1cf964e0fe..d45cab9a4b434 100644 --- a/clients/client-wellarchitected/src/commands/CreateWorkloadCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateWorkloadCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkloadInput, CreateWorkloadOutput } from "../models/models_0"; +import type { CreateWorkloadInput, CreateWorkloadOutput } from "../models/models_0"; import { CreateWorkload } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/CreateWorkloadShareCommand.ts b/clients/client-wellarchitected/src/commands/CreateWorkloadShareCommand.ts index 7eeea1fb198a1..d34ea3096e9ac 100644 --- a/clients/client-wellarchitected/src/commands/CreateWorkloadShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/CreateWorkloadShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkloadShareInput, CreateWorkloadShareOutput } from "../models/models_0"; +import type { CreateWorkloadShareInput, CreateWorkloadShareOutput } from "../models/models_0"; import { CreateWorkloadShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DeleteLensCommand.ts b/clients/client-wellarchitected/src/commands/DeleteLensCommand.ts index 414ab87a7216d..c93be95b7f21b 100644 --- a/clients/client-wellarchitected/src/commands/DeleteLensCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteLensCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLensInput } from "../models/models_0"; +import type { DeleteLensInput } from "../models/models_0"; import { DeleteLens } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DeleteLensShareCommand.ts b/clients/client-wellarchitected/src/commands/DeleteLensShareCommand.ts index f607debbd969a..aecd8f1c546ce 100644 --- a/clients/client-wellarchitected/src/commands/DeleteLensShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteLensShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLensShareInput } from "../models/models_0"; +import type { DeleteLensShareInput } from "../models/models_0"; import { DeleteLensShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DeleteProfileCommand.ts b/clients/client-wellarchitected/src/commands/DeleteProfileCommand.ts index a282285b8acf8..0fe9e0e14ec0c 100644 --- a/clients/client-wellarchitected/src/commands/DeleteProfileCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteProfileCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfileInput } from "../models/models_0"; +import type { DeleteProfileInput } from "../models/models_0"; import { DeleteProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DeleteProfileShareCommand.ts b/clients/client-wellarchitected/src/commands/DeleteProfileShareCommand.ts index efef34060653a..6c36b7c260125 100644 --- a/clients/client-wellarchitected/src/commands/DeleteProfileShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteProfileShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteProfileShareInput } from "../models/models_0"; +import type { DeleteProfileShareInput } from "../models/models_0"; import { DeleteProfileShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DeleteReviewTemplateCommand.ts b/clients/client-wellarchitected/src/commands/DeleteReviewTemplateCommand.ts index e66b83db69a3e..d901617596614 100644 --- a/clients/client-wellarchitected/src/commands/DeleteReviewTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteReviewTemplateCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteReviewTemplateInput } from "../models/models_0"; +import type { DeleteReviewTemplateInput } from "../models/models_0"; import { DeleteReviewTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DeleteTemplateShareCommand.ts b/clients/client-wellarchitected/src/commands/DeleteTemplateShareCommand.ts index 626d6d9a906f3..4ae195542f305 100644 --- a/clients/client-wellarchitected/src/commands/DeleteTemplateShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteTemplateShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTemplateShareInput } from "../models/models_0"; +import type { DeleteTemplateShareInput } from "../models/models_0"; import { DeleteTemplateShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DeleteWorkloadCommand.ts b/clients/client-wellarchitected/src/commands/DeleteWorkloadCommand.ts index d6dbb83922f34..9f9376e6332b2 100644 --- a/clients/client-wellarchitected/src/commands/DeleteWorkloadCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteWorkloadCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkloadInput } from "../models/models_0"; +import type { DeleteWorkloadInput } from "../models/models_0"; import { DeleteWorkload } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DeleteWorkloadShareCommand.ts b/clients/client-wellarchitected/src/commands/DeleteWorkloadShareCommand.ts index 9a57dc925e707..985f334866b11 100644 --- a/clients/client-wellarchitected/src/commands/DeleteWorkloadShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/DeleteWorkloadShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkloadShareInput } from "../models/models_0"; +import type { DeleteWorkloadShareInput } from "../models/models_0"; import { DeleteWorkloadShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DisassociateLensesCommand.ts b/clients/client-wellarchitected/src/commands/DisassociateLensesCommand.ts index dcfd0b187a579..53703e676c79b 100644 --- a/clients/client-wellarchitected/src/commands/DisassociateLensesCommand.ts +++ b/clients/client-wellarchitected/src/commands/DisassociateLensesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateLensesInput } from "../models/models_0"; +import type { DisassociateLensesInput } from "../models/models_0"; import { DisassociateLenses } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/DisassociateProfilesCommand.ts b/clients/client-wellarchitected/src/commands/DisassociateProfilesCommand.ts index 233d131b4242b..3414f47d29fc1 100644 --- a/clients/client-wellarchitected/src/commands/DisassociateProfilesCommand.ts +++ b/clients/client-wellarchitected/src/commands/DisassociateProfilesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateProfilesInput } from "../models/models_0"; +import type { DisassociateProfilesInput } from "../models/models_0"; import { DisassociateProfiles } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ExportLensCommand.ts b/clients/client-wellarchitected/src/commands/ExportLensCommand.ts index 9b32b7a1e2c81..f29369537164b 100644 --- a/clients/client-wellarchitected/src/commands/ExportLensCommand.ts +++ b/clients/client-wellarchitected/src/commands/ExportLensCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExportLensInput, ExportLensOutput } from "../models/models_0"; +import type { ExportLensInput, ExportLensOutput } from "../models/models_0"; import { ExportLens } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetAnswerCommand.ts b/clients/client-wellarchitected/src/commands/GetAnswerCommand.ts index f5495a7efcfce..9b6cc4d8ee2b6 100644 --- a/clients/client-wellarchitected/src/commands/GetAnswerCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetAnswerCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAnswerInput, GetAnswerOutput } from "../models/models_0"; +import type { GetAnswerInput, GetAnswerOutput } from "../models/models_0"; import { GetAnswer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetConsolidatedReportCommand.ts b/clients/client-wellarchitected/src/commands/GetConsolidatedReportCommand.ts index 8a7033cdcf3e6..ae21cf0467307 100644 --- a/clients/client-wellarchitected/src/commands/GetConsolidatedReportCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetConsolidatedReportCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetConsolidatedReportInput, GetConsolidatedReportOutput } from "../models/models_0"; +import type { GetConsolidatedReportInput, GetConsolidatedReportOutput } from "../models/models_0"; import { GetConsolidatedReport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetGlobalSettingsCommand.ts b/clients/client-wellarchitected/src/commands/GetGlobalSettingsCommand.ts index abf5db7bece56..88aad44ba8e0d 100644 --- a/clients/client-wellarchitected/src/commands/GetGlobalSettingsCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetGlobalSettingsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGlobalSettingsOutput } from "../models/models_0"; +import type { GetGlobalSettingsOutput } from "../models/models_0"; import { GetGlobalSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetLensCommand.ts b/clients/client-wellarchitected/src/commands/GetLensCommand.ts index b521ae9c8096f..7028567ab82b7 100644 --- a/clients/client-wellarchitected/src/commands/GetLensCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetLensCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLensInput, GetLensOutput } from "../models/models_0"; +import type { GetLensInput, GetLensOutput } from "../models/models_0"; import { GetLens } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/GetLensReviewCommand.ts index db03faf6081ea..a3a9057d5e3d9 100644 --- a/clients/client-wellarchitected/src/commands/GetLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetLensReviewCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLensReviewInput, GetLensReviewOutput } from "../models/models_0"; +import type { GetLensReviewInput, GetLensReviewOutput } from "../models/models_0"; import { GetLensReview } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetLensReviewReportCommand.ts b/clients/client-wellarchitected/src/commands/GetLensReviewReportCommand.ts index 2530db77aa1cf..b15ee02a02091 100644 --- a/clients/client-wellarchitected/src/commands/GetLensReviewReportCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetLensReviewReportCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLensReviewReportInput, GetLensReviewReportOutput } from "../models/models_0"; +import type { GetLensReviewReportInput, GetLensReviewReportOutput } from "../models/models_0"; import { GetLensReviewReport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetLensVersionDifferenceCommand.ts b/clients/client-wellarchitected/src/commands/GetLensVersionDifferenceCommand.ts index 234254273f0f1..43f30cfb06653 100644 --- a/clients/client-wellarchitected/src/commands/GetLensVersionDifferenceCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetLensVersionDifferenceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetLensVersionDifferenceInput, GetLensVersionDifferenceOutput } from "../models/models_0"; +import type { GetLensVersionDifferenceInput, GetLensVersionDifferenceOutput } from "../models/models_0"; import { GetLensVersionDifference } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetMilestoneCommand.ts b/clients/client-wellarchitected/src/commands/GetMilestoneCommand.ts index af1f507a11a1a..8dc8971def251 100644 --- a/clients/client-wellarchitected/src/commands/GetMilestoneCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetMilestoneCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMilestoneInput, GetMilestoneOutput } from "../models/models_0"; +import type { GetMilestoneInput, GetMilestoneOutput } from "../models/models_0"; import { GetMilestone } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetProfileCommand.ts b/clients/client-wellarchitected/src/commands/GetProfileCommand.ts index 7988aa39b9548..59586707766eb 100644 --- a/clients/client-wellarchitected/src/commands/GetProfileCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetProfileCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileInput, GetProfileOutput } from "../models/models_0"; +import type { GetProfileInput, GetProfileOutput } from "../models/models_0"; import { GetProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetProfileTemplateCommand.ts b/clients/client-wellarchitected/src/commands/GetProfileTemplateCommand.ts index 23c9c2737770e..67cc5663c7b47 100644 --- a/clients/client-wellarchitected/src/commands/GetProfileTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetProfileTemplateCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetProfileTemplateInput, GetProfileTemplateOutput } from "../models/models_0"; +import type { GetProfileTemplateInput, GetProfileTemplateOutput } from "../models/models_0"; import { GetProfileTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetReviewTemplateAnswerCommand.ts b/clients/client-wellarchitected/src/commands/GetReviewTemplateAnswerCommand.ts index 20ccaf39041f8..469b219b2569e 100644 --- a/clients/client-wellarchitected/src/commands/GetReviewTemplateAnswerCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetReviewTemplateAnswerCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReviewTemplateAnswerInput, GetReviewTemplateAnswerOutput } from "../models/models_0"; +import type { GetReviewTemplateAnswerInput, GetReviewTemplateAnswerOutput } from "../models/models_0"; import { GetReviewTemplateAnswer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetReviewTemplateCommand.ts b/clients/client-wellarchitected/src/commands/GetReviewTemplateCommand.ts index d205fe5f1312d..b9b1aa7cc8f42 100644 --- a/clients/client-wellarchitected/src/commands/GetReviewTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetReviewTemplateCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReviewTemplateInput, GetReviewTemplateOutput } from "../models/models_0"; +import type { GetReviewTemplateInput, GetReviewTemplateOutput } from "../models/models_0"; import { GetReviewTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetReviewTemplateLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/GetReviewTemplateLensReviewCommand.ts index d204d1dca60d9..66793b55fa3f8 100644 --- a/clients/client-wellarchitected/src/commands/GetReviewTemplateLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetReviewTemplateLensReviewCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetReviewTemplateLensReviewInput, GetReviewTemplateLensReviewOutput } from "../models/models_0"; +import type { GetReviewTemplateLensReviewInput, GetReviewTemplateLensReviewOutput } from "../models/models_0"; import { GetReviewTemplateLensReview } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/GetWorkloadCommand.ts b/clients/client-wellarchitected/src/commands/GetWorkloadCommand.ts index cbfb6dd8d9f35..58ab2d6d5249a 100644 --- a/clients/client-wellarchitected/src/commands/GetWorkloadCommand.ts +++ b/clients/client-wellarchitected/src/commands/GetWorkloadCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkloadInput, GetWorkloadOutput } from "../models/models_0"; +import type { GetWorkloadInput, GetWorkloadOutput } from "../models/models_0"; import { GetWorkload } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ImportLensCommand.ts b/clients/client-wellarchitected/src/commands/ImportLensCommand.ts index 28c7a8eadf456..810006871fbeb 100644 --- a/clients/client-wellarchitected/src/commands/ImportLensCommand.ts +++ b/clients/client-wellarchitected/src/commands/ImportLensCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportLensInput, ImportLensOutput } from "../models/models_0"; +import type { ImportLensInput, ImportLensOutput } from "../models/models_0"; import { ImportLens } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListAnswersCommand.ts b/clients/client-wellarchitected/src/commands/ListAnswersCommand.ts index 6212820ab46d2..dad0420e322ff 100644 --- a/clients/client-wellarchitected/src/commands/ListAnswersCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListAnswersCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAnswersInput, ListAnswersOutput } from "../models/models_0"; +import type { ListAnswersInput, ListAnswersOutput } from "../models/models_0"; import { ListAnswers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListCheckDetailsCommand.ts b/clients/client-wellarchitected/src/commands/ListCheckDetailsCommand.ts index 43a7cd08d15f9..cece11fba3412 100644 --- a/clients/client-wellarchitected/src/commands/ListCheckDetailsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListCheckDetailsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCheckDetailsInput, ListCheckDetailsOutput } from "../models/models_0"; +import type { ListCheckDetailsInput, ListCheckDetailsOutput } from "../models/models_0"; import { ListCheckDetails } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListCheckSummariesCommand.ts b/clients/client-wellarchitected/src/commands/ListCheckSummariesCommand.ts index 36921b84b2a48..1d40a21713067 100644 --- a/clients/client-wellarchitected/src/commands/ListCheckSummariesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListCheckSummariesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListCheckSummariesInput, ListCheckSummariesOutput } from "../models/models_0"; +import type { ListCheckSummariesInput, ListCheckSummariesOutput } from "../models/models_0"; import { ListCheckSummaries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListLensReviewImprovementsCommand.ts b/clients/client-wellarchitected/src/commands/ListLensReviewImprovementsCommand.ts index aad4fe6a03fd4..c689abcc12198 100644 --- a/clients/client-wellarchitected/src/commands/ListLensReviewImprovementsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListLensReviewImprovementsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLensReviewImprovementsInput, ListLensReviewImprovementsOutput } from "../models/models_0"; +import type { ListLensReviewImprovementsInput, ListLensReviewImprovementsOutput } from "../models/models_0"; import { ListLensReviewImprovements } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListLensReviewsCommand.ts b/clients/client-wellarchitected/src/commands/ListLensReviewsCommand.ts index 5217361956c7e..cbb5d97045613 100644 --- a/clients/client-wellarchitected/src/commands/ListLensReviewsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListLensReviewsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLensReviewsInput, ListLensReviewsOutput } from "../models/models_0"; +import type { ListLensReviewsInput, ListLensReviewsOutput } from "../models/models_0"; import { ListLensReviews } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListLensSharesCommand.ts b/clients/client-wellarchitected/src/commands/ListLensSharesCommand.ts index 1870413ac13fd..604d19c27e4d0 100644 --- a/clients/client-wellarchitected/src/commands/ListLensSharesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListLensSharesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLensSharesInput, ListLensSharesOutput } from "../models/models_0"; +import type { ListLensSharesInput, ListLensSharesOutput } from "../models/models_0"; import { ListLensShares } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListLensesCommand.ts b/clients/client-wellarchitected/src/commands/ListLensesCommand.ts index 23b4931a40b67..a76f77746c793 100644 --- a/clients/client-wellarchitected/src/commands/ListLensesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListLensesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListLensesInput, ListLensesOutput } from "../models/models_0"; +import type { ListLensesInput, ListLensesOutput } from "../models/models_0"; import { ListLenses } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListMilestonesCommand.ts b/clients/client-wellarchitected/src/commands/ListMilestonesCommand.ts index 2d04f0235a2d9..c1afd620f093e 100644 --- a/clients/client-wellarchitected/src/commands/ListMilestonesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListMilestonesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMilestonesInput, ListMilestonesOutput } from "../models/models_0"; +import type { ListMilestonesInput, ListMilestonesOutput } from "../models/models_0"; import { ListMilestones } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListNotificationsCommand.ts b/clients/client-wellarchitected/src/commands/ListNotificationsCommand.ts index 47a21474c88f3..e66ab3b698f73 100644 --- a/clients/client-wellarchitected/src/commands/ListNotificationsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListNotificationsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNotificationsInput, ListNotificationsOutput } from "../models/models_0"; +import type { ListNotificationsInput, ListNotificationsOutput } from "../models/models_0"; import { ListNotifications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListProfileNotificationsCommand.ts b/clients/client-wellarchitected/src/commands/ListProfileNotificationsCommand.ts index a9e0d97746087..f0e51df77865e 100644 --- a/clients/client-wellarchitected/src/commands/ListProfileNotificationsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListProfileNotificationsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfileNotificationsInput, ListProfileNotificationsOutput } from "../models/models_0"; +import type { ListProfileNotificationsInput, ListProfileNotificationsOutput } from "../models/models_0"; import { ListProfileNotifications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListProfileSharesCommand.ts b/clients/client-wellarchitected/src/commands/ListProfileSharesCommand.ts index 348e01c7f15ab..9cdbb0798fd1a 100644 --- a/clients/client-wellarchitected/src/commands/ListProfileSharesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListProfileSharesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfileSharesInput, ListProfileSharesOutput } from "../models/models_0"; +import type { ListProfileSharesInput, ListProfileSharesOutput } from "../models/models_0"; import { ListProfileShares } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListProfilesCommand.ts b/clients/client-wellarchitected/src/commands/ListProfilesCommand.ts index 386dd2350d10c..a32978d652d88 100644 --- a/clients/client-wellarchitected/src/commands/ListProfilesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListProfilesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListProfilesInput, ListProfilesOutput } from "../models/models_0"; +import type { ListProfilesInput, ListProfilesOutput } from "../models/models_0"; import { ListProfiles } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListReviewTemplateAnswersCommand.ts b/clients/client-wellarchitected/src/commands/ListReviewTemplateAnswersCommand.ts index 8f2045a602b67..859620745aa6c 100644 --- a/clients/client-wellarchitected/src/commands/ListReviewTemplateAnswersCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListReviewTemplateAnswersCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReviewTemplateAnswersInput, ListReviewTemplateAnswersOutput } from "../models/models_0"; +import type { ListReviewTemplateAnswersInput, ListReviewTemplateAnswersOutput } from "../models/models_0"; import { ListReviewTemplateAnswers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListReviewTemplatesCommand.ts b/clients/client-wellarchitected/src/commands/ListReviewTemplatesCommand.ts index 21c44b5e6d805..56a5d58acd603 100644 --- a/clients/client-wellarchitected/src/commands/ListReviewTemplatesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListReviewTemplatesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListReviewTemplatesInput, ListReviewTemplatesOutput } from "../models/models_0"; +import type { ListReviewTemplatesInput, ListReviewTemplatesOutput } from "../models/models_0"; import { ListReviewTemplates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListShareInvitationsCommand.ts b/clients/client-wellarchitected/src/commands/ListShareInvitationsCommand.ts index 1077b46789782..2d6f778a7fe39 100644 --- a/clients/client-wellarchitected/src/commands/ListShareInvitationsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListShareInvitationsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListShareInvitationsInput, ListShareInvitationsOutput } from "../models/models_0"; +import type { ListShareInvitationsInput, ListShareInvitationsOutput } from "../models/models_0"; import { ListShareInvitations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListTagsForResourceCommand.ts b/clients/client-wellarchitected/src/commands/ListTagsForResourceCommand.ts index a8dff4acf66c1..cd9a71938fc1a 100644 --- a/clients/client-wellarchitected/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; +import type { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListTemplateSharesCommand.ts b/clients/client-wellarchitected/src/commands/ListTemplateSharesCommand.ts index 5ff9c26ef1943..8fa38681a3687 100644 --- a/clients/client-wellarchitected/src/commands/ListTemplateSharesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListTemplateSharesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTemplateSharesInput, ListTemplateSharesOutput } from "../models/models_0"; +import type { ListTemplateSharesInput, ListTemplateSharesOutput } from "../models/models_0"; import { ListTemplateShares } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListWorkloadSharesCommand.ts b/clients/client-wellarchitected/src/commands/ListWorkloadSharesCommand.ts index 7dd36cf5a498b..304a97efa2eff 100644 --- a/clients/client-wellarchitected/src/commands/ListWorkloadSharesCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListWorkloadSharesCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkloadSharesInput, ListWorkloadSharesOutput } from "../models/models_0"; +import type { ListWorkloadSharesInput, ListWorkloadSharesOutput } from "../models/models_0"; import { ListWorkloadShares } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/ListWorkloadsCommand.ts b/clients/client-wellarchitected/src/commands/ListWorkloadsCommand.ts index 225227e289914..3c24409eac1b8 100644 --- a/clients/client-wellarchitected/src/commands/ListWorkloadsCommand.ts +++ b/clients/client-wellarchitected/src/commands/ListWorkloadsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkloadsInput, ListWorkloadsOutput } from "../models/models_0"; +import type { ListWorkloadsInput, ListWorkloadsOutput } from "../models/models_0"; import { ListWorkloads } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/TagResourceCommand.ts b/clients/client-wellarchitected/src/commands/TagResourceCommand.ts index 53516db823e8f..a091cdfb6d6df 100644 --- a/clients/client-wellarchitected/src/commands/TagResourceCommand.ts +++ b/clients/client-wellarchitected/src/commands/TagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceInput, TagResourceOutput } from "../models/models_0"; +import type { TagResourceInput, TagResourceOutput } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UntagResourceCommand.ts b/clients/client-wellarchitected/src/commands/UntagResourceCommand.ts index 18eb0566e4b9c..1f684d2df1b2f 100644 --- a/clients/client-wellarchitected/src/commands/UntagResourceCommand.ts +++ b/clients/client-wellarchitected/src/commands/UntagResourceCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; +import type { UntagResourceInput, UntagResourceOutput } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateAnswerCommand.ts b/clients/client-wellarchitected/src/commands/UpdateAnswerCommand.ts index eda82214b4710..268a523f0e982 100644 --- a/clients/client-wellarchitected/src/commands/UpdateAnswerCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateAnswerCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAnswerInput, UpdateAnswerOutput } from "../models/models_0"; +import type { UpdateAnswerInput, UpdateAnswerOutput } from "../models/models_0"; import { UpdateAnswer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateGlobalSettingsCommand.ts b/clients/client-wellarchitected/src/commands/UpdateGlobalSettingsCommand.ts index 92d5fd9972580..0027cec5e6b8f 100644 --- a/clients/client-wellarchitected/src/commands/UpdateGlobalSettingsCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateGlobalSettingsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGlobalSettingsInput } from "../models/models_0"; +import type { UpdateGlobalSettingsInput } from "../models/models_0"; import { UpdateGlobalSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateIntegrationCommand.ts b/clients/client-wellarchitected/src/commands/UpdateIntegrationCommand.ts index c197b1cb44e41..0293559b6aba2 100644 --- a/clients/client-wellarchitected/src/commands/UpdateIntegrationCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateIntegrationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIntegrationInput } from "../models/models_0"; +import type { UpdateIntegrationInput } from "../models/models_0"; import { UpdateIntegration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/UpdateLensReviewCommand.ts index ca440c4ac1184..452a9e8f8343b 100644 --- a/clients/client-wellarchitected/src/commands/UpdateLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateLensReviewCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateLensReviewInput, UpdateLensReviewOutput } from "../models/models_0"; +import type { UpdateLensReviewInput, UpdateLensReviewOutput } from "../models/models_0"; import { UpdateLensReview } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateProfileCommand.ts b/clients/client-wellarchitected/src/commands/UpdateProfileCommand.ts index 0c3b43477c4eb..63fa7b1f18b71 100644 --- a/clients/client-wellarchitected/src/commands/UpdateProfileCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateProfileCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateProfileInput, UpdateProfileOutput } from "../models/models_0"; +import type { UpdateProfileInput, UpdateProfileOutput } from "../models/models_0"; import { UpdateProfile } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateAnswerCommand.ts b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateAnswerCommand.ts index 9c7e415d0112f..468090fb3af21 100644 --- a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateAnswerCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateAnswerCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReviewTemplateAnswerInput, UpdateReviewTemplateAnswerOutput } from "../models/models_0"; +import type { UpdateReviewTemplateAnswerInput, UpdateReviewTemplateAnswerOutput } from "../models/models_0"; import { UpdateReviewTemplateAnswer } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateCommand.ts b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateCommand.ts index 6195949315b55..99acc4e02bf6f 100644 --- a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReviewTemplateInput, UpdateReviewTemplateOutput } from "../models/models_0"; +import type { UpdateReviewTemplateInput, UpdateReviewTemplateOutput } from "../models/models_0"; import { UpdateReviewTemplate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateLensReviewCommand.ts index 87b756e3e98d9..f1c8c58932c8a 100644 --- a/clients/client-wellarchitected/src/commands/UpdateReviewTemplateLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateReviewTemplateLensReviewCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateReviewTemplateLensReviewInput, UpdateReviewTemplateLensReviewOutput } from "../models/models_0"; +import type { UpdateReviewTemplateLensReviewInput, UpdateReviewTemplateLensReviewOutput } from "../models/models_0"; import { UpdateReviewTemplateLensReview } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateShareInvitationCommand.ts b/clients/client-wellarchitected/src/commands/UpdateShareInvitationCommand.ts index e24e078787473..8e64dda454c63 100644 --- a/clients/client-wellarchitected/src/commands/UpdateShareInvitationCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateShareInvitationCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateShareInvitationInput, UpdateShareInvitationOutput } from "../models/models_0"; +import type { UpdateShareInvitationInput, UpdateShareInvitationOutput } from "../models/models_0"; import { UpdateShareInvitation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateWorkloadCommand.ts b/clients/client-wellarchitected/src/commands/UpdateWorkloadCommand.ts index cb7b480487189..6bcb9e076a2fb 100644 --- a/clients/client-wellarchitected/src/commands/UpdateWorkloadCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateWorkloadCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkloadInput, UpdateWorkloadOutput } from "../models/models_0"; +import type { UpdateWorkloadInput, UpdateWorkloadOutput } from "../models/models_0"; import { UpdateWorkload } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpdateWorkloadShareCommand.ts b/clients/client-wellarchitected/src/commands/UpdateWorkloadShareCommand.ts index 6beb5eb53a107..17940c5482114 100644 --- a/clients/client-wellarchitected/src/commands/UpdateWorkloadShareCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpdateWorkloadShareCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkloadShareInput, UpdateWorkloadShareOutput } from "../models/models_0"; +import type { UpdateWorkloadShareInput, UpdateWorkloadShareOutput } from "../models/models_0"; import { UpdateWorkloadShare } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpgradeLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/UpgradeLensReviewCommand.ts index d22e52b0d2bab..03c82e37ae33d 100644 --- a/clients/client-wellarchitected/src/commands/UpgradeLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpgradeLensReviewCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpgradeLensReviewInput } from "../models/models_0"; +import type { UpgradeLensReviewInput } from "../models/models_0"; import { UpgradeLensReview } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpgradeProfileVersionCommand.ts b/clients/client-wellarchitected/src/commands/UpgradeProfileVersionCommand.ts index 50b2bc8fc763d..cd4f212ef7dab 100644 --- a/clients/client-wellarchitected/src/commands/UpgradeProfileVersionCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpgradeProfileVersionCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpgradeProfileVersionInput } from "../models/models_0"; +import type { UpgradeProfileVersionInput } from "../models/models_0"; import { UpgradeProfileVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/commands/UpgradeReviewTemplateLensReviewCommand.ts b/clients/client-wellarchitected/src/commands/UpgradeReviewTemplateLensReviewCommand.ts index 3b10b336eea61..6c369e2254460 100644 --- a/clients/client-wellarchitected/src/commands/UpgradeReviewTemplateLensReviewCommand.ts +++ b/clients/client-wellarchitected/src/commands/UpgradeReviewTemplateLensReviewCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpgradeReviewTemplateLensReviewInput } from "../models/models_0"; +import type { UpgradeReviewTemplateLensReviewInput } from "../models/models_0"; import { UpgradeReviewTemplateLensReview } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient"; +import type { + ServiceInputTypes, + ServiceOutputTypes, + WellArchitectedClientResolvedConfig, +} from "../WellArchitectedClient"; /** * @public diff --git a/clients/client-wellarchitected/src/endpoint/EndpointParameters.ts b/clients/client-wellarchitected/src/endpoint/EndpointParameters.ts index 0e2a778a33441..de57ed6af99df 100644 --- a/clients/client-wellarchitected/src/endpoint/EndpointParameters.ts +++ b/clients/client-wellarchitected/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-wellarchitected/src/endpoint/endpointResolver.ts b/clients/client-wellarchitected/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-wellarchitected/src/endpoint/endpointResolver.ts +++ b/clients/client-wellarchitected/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-wellarchitected/src/extensionConfiguration.ts b/clients/client-wellarchitected/src/extensionConfiguration.ts index f472dfd31e075..b615096377d26 100644 --- a/clients/client-wellarchitected/src/extensionConfiguration.ts +++ b/clients/client-wellarchitected/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-wellarchitected/src/models/WellArchitectedServiceException.ts b/clients/client-wellarchitected/src/models/WellArchitectedServiceException.ts index 43eba74d3466f..0cef9893f5508 100644 --- a/clients/client-wellarchitected/src/models/WellArchitectedServiceException.ts +++ b/clients/client-wellarchitected/src/models/WellArchitectedServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-wellarchitected/src/models/errors.ts b/clients/client-wellarchitected/src/models/errors.ts index b61edbee8e6ea..fa77afd185b37 100644 --- a/clients/client-wellarchitected/src/models/errors.ts +++ b/clients/client-wellarchitected/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-wellarchitected/src/pagination/GetConsolidatedReportPaginator.ts b/clients/client-wellarchitected/src/pagination/GetConsolidatedReportPaginator.ts index c3ae16b224001..30ce09e3e05e3 100644 --- a/clients/client-wellarchitected/src/pagination/GetConsolidatedReportPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/GetConsolidatedReportPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetConsolidatedReportCommand, diff --git a/clients/client-wellarchitected/src/pagination/Interfaces.ts b/clients/client-wellarchitected/src/pagination/Interfaces.ts index 9b4476d042d90..f3e223fcec74d 100644 --- a/clients/client-wellarchitected/src/pagination/Interfaces.ts +++ b/clients/client-wellarchitected/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { WellArchitectedClient } from "../WellArchitectedClient"; diff --git a/clients/client-wellarchitected/src/pagination/ListAnswersPaginator.ts b/clients/client-wellarchitected/src/pagination/ListAnswersPaginator.ts index 3cac73ad9c8fe..3244644a85eaf 100644 --- a/clients/client-wellarchitected/src/pagination/ListAnswersPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListAnswersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAnswersCommand, ListAnswersCommandInput, ListAnswersCommandOutput } from "../commands/ListAnswersCommand"; import { WellArchitectedClient } from "../WellArchitectedClient"; diff --git a/clients/client-wellarchitected/src/pagination/ListCheckDetailsPaginator.ts b/clients/client-wellarchitected/src/pagination/ListCheckDetailsPaginator.ts index e0535ab5c74bb..fd73bafb2090c 100644 --- a/clients/client-wellarchitected/src/pagination/ListCheckDetailsPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListCheckDetailsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCheckDetailsCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListCheckSummariesPaginator.ts b/clients/client-wellarchitected/src/pagination/ListCheckSummariesPaginator.ts index 65ff484296cea..98d28ff4fcf07 100644 --- a/clients/client-wellarchitected/src/pagination/ListCheckSummariesPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListCheckSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListCheckSummariesCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListLensReviewImprovementsPaginator.ts b/clients/client-wellarchitected/src/pagination/ListLensReviewImprovementsPaginator.ts index ed130a0b92804..08a28f0da428d 100644 --- a/clients/client-wellarchitected/src/pagination/ListLensReviewImprovementsPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListLensReviewImprovementsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLensReviewImprovementsCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListLensReviewsPaginator.ts b/clients/client-wellarchitected/src/pagination/ListLensReviewsPaginator.ts index 6a0efd63b8e48..2077875b24442 100644 --- a/clients/client-wellarchitected/src/pagination/ListLensReviewsPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListLensReviewsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLensReviewsCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListLensSharesPaginator.ts b/clients/client-wellarchitected/src/pagination/ListLensSharesPaginator.ts index fdfc1766552bd..0c1df3fe8a527 100644 --- a/clients/client-wellarchitected/src/pagination/ListLensSharesPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListLensSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLensSharesCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListLensesPaginator.ts b/clients/client-wellarchitected/src/pagination/ListLensesPaginator.ts index 24d0d09510261..f2b84674351c5 100644 --- a/clients/client-wellarchitected/src/pagination/ListLensesPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListLensesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListLensesCommand, ListLensesCommandInput, ListLensesCommandOutput } from "../commands/ListLensesCommand"; import { WellArchitectedClient } from "../WellArchitectedClient"; diff --git a/clients/client-wellarchitected/src/pagination/ListMilestonesPaginator.ts b/clients/client-wellarchitected/src/pagination/ListMilestonesPaginator.ts index 52b5832d84d4f..396f0d298b5bf 100644 --- a/clients/client-wellarchitected/src/pagination/ListMilestonesPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListMilestonesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMilestonesCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListNotificationsPaginator.ts b/clients/client-wellarchitected/src/pagination/ListNotificationsPaginator.ts index c54c99a640d67..2c3f859298109 100644 --- a/clients/client-wellarchitected/src/pagination/ListNotificationsPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListNotificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNotificationsCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListProfileNotificationsPaginator.ts b/clients/client-wellarchitected/src/pagination/ListProfileNotificationsPaginator.ts index 2423a173c81ae..2d8c262652275 100644 --- a/clients/client-wellarchitected/src/pagination/ListProfileNotificationsPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListProfileNotificationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProfileNotificationsCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListProfileSharesPaginator.ts b/clients/client-wellarchitected/src/pagination/ListProfileSharesPaginator.ts index 1eaae5a315dc2..87810570d6d3c 100644 --- a/clients/client-wellarchitected/src/pagination/ListProfileSharesPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListProfileSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProfileSharesCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListProfilesPaginator.ts b/clients/client-wellarchitected/src/pagination/ListProfilesPaginator.ts index ac4405998dc59..8d91538b0a8ff 100644 --- a/clients/client-wellarchitected/src/pagination/ListProfilesPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListProfilesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListProfilesCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListReviewTemplateAnswersPaginator.ts b/clients/client-wellarchitected/src/pagination/ListReviewTemplateAnswersPaginator.ts index 9c56d1eb48c84..5549fdaa5c464 100644 --- a/clients/client-wellarchitected/src/pagination/ListReviewTemplateAnswersPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListReviewTemplateAnswersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReviewTemplateAnswersCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListReviewTemplatesPaginator.ts b/clients/client-wellarchitected/src/pagination/ListReviewTemplatesPaginator.ts index 1dd324c46d6d7..20c892237ae52 100644 --- a/clients/client-wellarchitected/src/pagination/ListReviewTemplatesPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListReviewTemplatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListReviewTemplatesCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListShareInvitationsPaginator.ts b/clients/client-wellarchitected/src/pagination/ListShareInvitationsPaginator.ts index 72de9a67d5a22..b2dd6966ff27b 100644 --- a/clients/client-wellarchitected/src/pagination/ListShareInvitationsPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListShareInvitationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListShareInvitationsCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListTemplateSharesPaginator.ts b/clients/client-wellarchitected/src/pagination/ListTemplateSharesPaginator.ts index 2132bd0351a7e..a40c06d7346de 100644 --- a/clients/client-wellarchitected/src/pagination/ListTemplateSharesPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListTemplateSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTemplateSharesCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListWorkloadSharesPaginator.ts b/clients/client-wellarchitected/src/pagination/ListWorkloadSharesPaginator.ts index e1e49cb5542d6..6068fd7378e6f 100644 --- a/clients/client-wellarchitected/src/pagination/ListWorkloadSharesPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListWorkloadSharesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkloadSharesCommand, diff --git a/clients/client-wellarchitected/src/pagination/ListWorkloadsPaginator.ts b/clients/client-wellarchitected/src/pagination/ListWorkloadsPaginator.ts index 7580c40bddaec..59ad819153b16 100644 --- a/clients/client-wellarchitected/src/pagination/ListWorkloadsPaginator.ts +++ b/clients/client-wellarchitected/src/pagination/ListWorkloadsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkloadsCommand, diff --git a/clients/client-wellarchitected/src/runtimeConfig.browser.ts b/clients/client-wellarchitected/src/runtimeConfig.browser.ts index 9595396e36f3d..d313e3d213199 100644 --- a/clients/client-wellarchitected/src/runtimeConfig.browser.ts +++ b/clients/client-wellarchitected/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WellArchitectedClientConfig } from "./WellArchitectedClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WellArchitectedClientConfig } from "./WellArchitectedClient"; /** * @internal diff --git a/clients/client-wellarchitected/src/runtimeConfig.native.ts b/clients/client-wellarchitected/src/runtimeConfig.native.ts index ff3d4befcbd51..d8a353aa40a78 100644 --- a/clients/client-wellarchitected/src/runtimeConfig.native.ts +++ b/clients/client-wellarchitected/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WellArchitectedClientConfig } from "./WellArchitectedClient"; +import type { WellArchitectedClientConfig } from "./WellArchitectedClient"; /** * @internal diff --git a/clients/client-wellarchitected/src/runtimeConfig.shared.ts b/clients/client-wellarchitected/src/runtimeConfig.shared.ts index c19379b25826d..6cee43f75ee1f 100644 --- a/clients/client-wellarchitected/src/runtimeConfig.shared.ts +++ b/clients/client-wellarchitected/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWellArchitectedHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WellArchitectedClientConfig } from "./WellArchitectedClient"; +import type { WellArchitectedClientConfig } from "./WellArchitectedClient"; /** * @internal diff --git a/clients/client-wellarchitected/src/runtimeConfig.ts b/clients/client-wellarchitected/src/runtimeConfig.ts index 20fd452cf06c8..c34c5bb88a8e2 100644 --- a/clients/client-wellarchitected/src/runtimeConfig.ts +++ b/clients/client-wellarchitected/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WellArchitectedClientConfig } from "./WellArchitectedClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WellArchitectedClientConfig } from "./WellArchitectedClient"; /** * @internal diff --git a/clients/client-wellarchitected/src/runtimeExtensions.ts b/clients/client-wellarchitected/src/runtimeExtensions.ts index 8bb8ff870f894..391a0d625b1d0 100644 --- a/clients/client-wellarchitected/src/runtimeExtensions.ts +++ b/clients/client-wellarchitected/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WellArchitectedExtensionConfiguration } from "./extensionConfiguration"; +import type { WellArchitectedExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-wellarchitected/src/schemas/schemas_0.ts b/clients/client-wellarchitected/src/schemas/schemas_0.ts index 24419a78185be..71e740d4aee88 100644 --- a/clients/client-wellarchitected/src/schemas/schemas_0.ts +++ b/clients/client-wellarchitected/src/schemas/schemas_0.ts @@ -467,7 +467,7 @@ const n0 = "com.amazonaws.wellarchitected"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-wisdom/package.json b/clients/client-wisdom/package.json index 85f2c7b29810c..2298f9d5cf321 100644 --- a/clients/client-wisdom/package.json +++ b/clients/client-wisdom/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-wisdom/src/Wisdom.ts b/clients/client-wisdom/src/Wisdom.ts index 64b7ca402316e..e3c7c7b63fbea 100644 --- a/clients/client-wisdom/src/Wisdom.ts +++ b/clients/client-wisdom/src/Wisdom.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateAssistantAssociationCommand, @@ -195,7 +195,7 @@ import { UpdateQuickResponseCommandInput, UpdateQuickResponseCommandOutput, } from "./commands/UpdateQuickResponseCommand"; -import { WisdomClient, WisdomClientConfig } from "./WisdomClient"; +import { WisdomClient } from "./WisdomClient"; const commands = { CreateAssistantCommand, diff --git a/clients/client-wisdom/src/WisdomClient.ts b/clients/client-wisdom/src/WisdomClient.ts index b79fd98084ce2..56c49e93c1891 100644 --- a/clients/client-wisdom/src/WisdomClient.ts +++ b/clients/client-wisdom/src/WisdomClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWisdomHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -147,7 +156,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-wisdom/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-wisdom/src/auth/httpAuthExtensionConfiguration.ts index d6b71fa91cef3..f42002f8b8cdd 100644 --- a/clients/client-wisdom/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-wisdom/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WisdomHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WisdomHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-wisdom/src/auth/httpAuthSchemeProvider.ts b/clients/client-wisdom/src/auth/httpAuthSchemeProvider.ts index e41b1b6c5a1d9..c3b3809a07f82 100644 --- a/clients/client-wisdom/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-wisdom/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WisdomClientConfig, WisdomClientResolvedConfig } from "../WisdomClient"; +import { type WisdomClientResolvedConfig, WisdomClientConfig } from "../WisdomClient"; /** * @internal diff --git a/clients/client-wisdom/src/commands/CreateAssistantAssociationCommand.ts b/clients/client-wisdom/src/commands/CreateAssistantAssociationCommand.ts index 333ff03d178ae..283de02dc11d5 100644 --- a/clients/client-wisdom/src/commands/CreateAssistantAssociationCommand.ts +++ b/clients/client-wisdom/src/commands/CreateAssistantAssociationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssistantAssociationRequest, CreateAssistantAssociationResponse } from "../models/models_0"; +import type { CreateAssistantAssociationRequest, CreateAssistantAssociationResponse } from "../models/models_0"; import { CreateAssistantAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/CreateAssistantCommand.ts b/clients/client-wisdom/src/commands/CreateAssistantCommand.ts index 927c273dbc507..2958204e956d8 100644 --- a/clients/client-wisdom/src/commands/CreateAssistantCommand.ts +++ b/clients/client-wisdom/src/commands/CreateAssistantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAssistantRequest, CreateAssistantResponse } from "../models/models_0"; +import type { CreateAssistantRequest, CreateAssistantResponse } from "../models/models_0"; import { CreateAssistant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/CreateContentCommand.ts b/clients/client-wisdom/src/commands/CreateContentCommand.ts index 9c350d90a2aa2..6e7d90d2233dc 100644 --- a/clients/client-wisdom/src/commands/CreateContentCommand.ts +++ b/clients/client-wisdom/src/commands/CreateContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateContentRequest, CreateContentResponse } from "../models/models_0"; +import type { CreateContentRequest, CreateContentResponse } from "../models/models_0"; import { CreateContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/CreateKnowledgeBaseCommand.ts b/clients/client-wisdom/src/commands/CreateKnowledgeBaseCommand.ts index d43719b3181f9..ffda1998b6aaf 100644 --- a/clients/client-wisdom/src/commands/CreateKnowledgeBaseCommand.ts +++ b/clients/client-wisdom/src/commands/CreateKnowledgeBaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateKnowledgeBaseRequest, CreateKnowledgeBaseResponse } from "../models/models_0"; +import type { CreateKnowledgeBaseRequest, CreateKnowledgeBaseResponse } from "../models/models_0"; import { CreateKnowledgeBase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/CreateQuickResponseCommand.ts b/clients/client-wisdom/src/commands/CreateQuickResponseCommand.ts index fafbad1588601..d198c0c800e1b 100644 --- a/clients/client-wisdom/src/commands/CreateQuickResponseCommand.ts +++ b/clients/client-wisdom/src/commands/CreateQuickResponseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateQuickResponseRequest, CreateQuickResponseResponse } from "../models/models_0"; +import type { CreateQuickResponseRequest, CreateQuickResponseResponse } from "../models/models_0"; import { CreateQuickResponse } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/CreateSessionCommand.ts b/clients/client-wisdom/src/commands/CreateSessionCommand.ts index ec5504ccf643c..158a8eac28eae 100644 --- a/clients/client-wisdom/src/commands/CreateSessionCommand.ts +++ b/clients/client-wisdom/src/commands/CreateSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSessionRequest, CreateSessionResponse } from "../models/models_0"; +import type { CreateSessionRequest, CreateSessionResponse } from "../models/models_0"; import { CreateSession } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/DeleteAssistantAssociationCommand.ts b/clients/client-wisdom/src/commands/DeleteAssistantAssociationCommand.ts index 540f084f41293..ca1559b94953c 100644 --- a/clients/client-wisdom/src/commands/DeleteAssistantAssociationCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteAssistantAssociationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssistantAssociationRequest, DeleteAssistantAssociationResponse } from "../models/models_0"; +import type { DeleteAssistantAssociationRequest, DeleteAssistantAssociationResponse } from "../models/models_0"; import { DeleteAssistantAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/DeleteAssistantCommand.ts b/clients/client-wisdom/src/commands/DeleteAssistantCommand.ts index 5dbb969f369d2..62aa6160d45ed 100644 --- a/clients/client-wisdom/src/commands/DeleteAssistantCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteAssistantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAssistantRequest, DeleteAssistantResponse } from "../models/models_0"; +import type { DeleteAssistantRequest, DeleteAssistantResponse } from "../models/models_0"; import { DeleteAssistant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/DeleteContentCommand.ts b/clients/client-wisdom/src/commands/DeleteContentCommand.ts index 09a5b2ca6d1ab..2e8dd529b1bbe 100644 --- a/clients/client-wisdom/src/commands/DeleteContentCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteContentRequest, DeleteContentResponse } from "../models/models_0"; +import type { DeleteContentRequest, DeleteContentResponse } from "../models/models_0"; import { DeleteContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/DeleteImportJobCommand.ts b/clients/client-wisdom/src/commands/DeleteImportJobCommand.ts index 845fa2019a557..d5209e97fb3bc 100644 --- a/clients/client-wisdom/src/commands/DeleteImportJobCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteImportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImportJobRequest, DeleteImportJobResponse } from "../models/models_0"; +import type { DeleteImportJobRequest, DeleteImportJobResponse } from "../models/models_0"; import { DeleteImportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/DeleteKnowledgeBaseCommand.ts b/clients/client-wisdom/src/commands/DeleteKnowledgeBaseCommand.ts index 1622f140ebe0e..b6139ec2aa5b5 100644 --- a/clients/client-wisdom/src/commands/DeleteKnowledgeBaseCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteKnowledgeBaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteKnowledgeBaseRequest, DeleteKnowledgeBaseResponse } from "../models/models_0"; +import type { DeleteKnowledgeBaseRequest, DeleteKnowledgeBaseResponse } from "../models/models_0"; import { DeleteKnowledgeBase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/DeleteQuickResponseCommand.ts b/clients/client-wisdom/src/commands/DeleteQuickResponseCommand.ts index 5d0a048330512..808d242c4ca34 100644 --- a/clients/client-wisdom/src/commands/DeleteQuickResponseCommand.ts +++ b/clients/client-wisdom/src/commands/DeleteQuickResponseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteQuickResponseRequest, DeleteQuickResponseResponse } from "../models/models_0"; +import type { DeleteQuickResponseRequest, DeleteQuickResponseResponse } from "../models/models_0"; import { DeleteQuickResponse } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/GetAssistantAssociationCommand.ts b/clients/client-wisdom/src/commands/GetAssistantAssociationCommand.ts index e339da403d547..e06c3fcbef6d2 100644 --- a/clients/client-wisdom/src/commands/GetAssistantAssociationCommand.ts +++ b/clients/client-wisdom/src/commands/GetAssistantAssociationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssistantAssociationRequest, GetAssistantAssociationResponse } from "../models/models_0"; +import type { GetAssistantAssociationRequest, GetAssistantAssociationResponse } from "../models/models_0"; import { GetAssistantAssociation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/GetAssistantCommand.ts b/clients/client-wisdom/src/commands/GetAssistantCommand.ts index 5a908a1e0007d..1d7d1a9800eb3 100644 --- a/clients/client-wisdom/src/commands/GetAssistantCommand.ts +++ b/clients/client-wisdom/src/commands/GetAssistantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAssistantRequest, GetAssistantResponse } from "../models/models_0"; +import type { GetAssistantRequest, GetAssistantResponse } from "../models/models_0"; import { GetAssistant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/GetContentCommand.ts b/clients/client-wisdom/src/commands/GetContentCommand.ts index 3982eb9d4a036..37cfd153faf98 100644 --- a/clients/client-wisdom/src/commands/GetContentCommand.ts +++ b/clients/client-wisdom/src/commands/GetContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContentRequest, GetContentResponse } from "../models/models_0"; +import type { GetContentRequest, GetContentResponse } from "../models/models_0"; import { GetContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/GetContentSummaryCommand.ts b/clients/client-wisdom/src/commands/GetContentSummaryCommand.ts index 9b5b32f7df5bf..bde3dc53935b1 100644 --- a/clients/client-wisdom/src/commands/GetContentSummaryCommand.ts +++ b/clients/client-wisdom/src/commands/GetContentSummaryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetContentSummaryRequest, GetContentSummaryResponse } from "../models/models_0"; +import type { GetContentSummaryRequest, GetContentSummaryResponse } from "../models/models_0"; import { GetContentSummary } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/GetImportJobCommand.ts b/clients/client-wisdom/src/commands/GetImportJobCommand.ts index 19bf02640f45a..6af9b9279dc03 100644 --- a/clients/client-wisdom/src/commands/GetImportJobCommand.ts +++ b/clients/client-wisdom/src/commands/GetImportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImportJobRequest, GetImportJobResponse } from "../models/models_0"; +import type { GetImportJobRequest, GetImportJobResponse } from "../models/models_0"; import { GetImportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/GetKnowledgeBaseCommand.ts b/clients/client-wisdom/src/commands/GetKnowledgeBaseCommand.ts index 0e3ee2232af7b..9994efde8147c 100644 --- a/clients/client-wisdom/src/commands/GetKnowledgeBaseCommand.ts +++ b/clients/client-wisdom/src/commands/GetKnowledgeBaseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetKnowledgeBaseRequest, GetKnowledgeBaseResponse } from "../models/models_0"; +import type { GetKnowledgeBaseRequest, GetKnowledgeBaseResponse } from "../models/models_0"; import { GetKnowledgeBase } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/GetQuickResponseCommand.ts b/clients/client-wisdom/src/commands/GetQuickResponseCommand.ts index e2f8b03cb9ae3..8d7256fa60c1e 100644 --- a/clients/client-wisdom/src/commands/GetQuickResponseCommand.ts +++ b/clients/client-wisdom/src/commands/GetQuickResponseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetQuickResponseRequest, GetQuickResponseResponse } from "../models/models_0"; +import type { GetQuickResponseRequest, GetQuickResponseResponse } from "../models/models_0"; import { GetQuickResponse } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/GetRecommendationsCommand.ts b/clients/client-wisdom/src/commands/GetRecommendationsCommand.ts index 7686624d8052c..0fb8993fc79fa 100644 --- a/clients/client-wisdom/src/commands/GetRecommendationsCommand.ts +++ b/clients/client-wisdom/src/commands/GetRecommendationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0"; +import type { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0"; import { GetRecommendations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/GetSessionCommand.ts b/clients/client-wisdom/src/commands/GetSessionCommand.ts index 9b20d4cb6a062..a979cc6b2ad59 100644 --- a/clients/client-wisdom/src/commands/GetSessionCommand.ts +++ b/clients/client-wisdom/src/commands/GetSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_0"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_0"; import { GetSession } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/ListAssistantAssociationsCommand.ts b/clients/client-wisdom/src/commands/ListAssistantAssociationsCommand.ts index e608dbc4422fd..9446e757ec032 100644 --- a/clients/client-wisdom/src/commands/ListAssistantAssociationsCommand.ts +++ b/clients/client-wisdom/src/commands/ListAssistantAssociationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssistantAssociationsRequest, ListAssistantAssociationsResponse } from "../models/models_0"; +import type { ListAssistantAssociationsRequest, ListAssistantAssociationsResponse } from "../models/models_0"; import { ListAssistantAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/ListAssistantsCommand.ts b/clients/client-wisdom/src/commands/ListAssistantsCommand.ts index 122ab6c21cbd7..bb49431ee7471 100644 --- a/clients/client-wisdom/src/commands/ListAssistantsCommand.ts +++ b/clients/client-wisdom/src/commands/ListAssistantsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAssistantsRequest, ListAssistantsResponse } from "../models/models_0"; +import type { ListAssistantsRequest, ListAssistantsResponse } from "../models/models_0"; import { ListAssistants } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/ListContentsCommand.ts b/clients/client-wisdom/src/commands/ListContentsCommand.ts index 1b2f3f4a3a003..b1c79ad6e2bce 100644 --- a/clients/client-wisdom/src/commands/ListContentsCommand.ts +++ b/clients/client-wisdom/src/commands/ListContentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListContentsRequest, ListContentsResponse } from "../models/models_0"; +import type { ListContentsRequest, ListContentsResponse } from "../models/models_0"; import { ListContents } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/ListImportJobsCommand.ts b/clients/client-wisdom/src/commands/ListImportJobsCommand.ts index fd4aea24fb8cb..e3cc13aa402de 100644 --- a/clients/client-wisdom/src/commands/ListImportJobsCommand.ts +++ b/clients/client-wisdom/src/commands/ListImportJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImportJobsRequest, ListImportJobsResponse } from "../models/models_0"; +import type { ListImportJobsRequest, ListImportJobsResponse } from "../models/models_0"; import { ListImportJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/ListKnowledgeBasesCommand.ts b/clients/client-wisdom/src/commands/ListKnowledgeBasesCommand.ts index 8c2b1e970a1d4..84f8df56cfcae 100644 --- a/clients/client-wisdom/src/commands/ListKnowledgeBasesCommand.ts +++ b/clients/client-wisdom/src/commands/ListKnowledgeBasesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListKnowledgeBasesRequest, ListKnowledgeBasesResponse } from "../models/models_0"; +import type { ListKnowledgeBasesRequest, ListKnowledgeBasesResponse } from "../models/models_0"; import { ListKnowledgeBases } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/ListQuickResponsesCommand.ts b/clients/client-wisdom/src/commands/ListQuickResponsesCommand.ts index 3d39ad9801163..298898c5c3201 100644 --- a/clients/client-wisdom/src/commands/ListQuickResponsesCommand.ts +++ b/clients/client-wisdom/src/commands/ListQuickResponsesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListQuickResponsesRequest, ListQuickResponsesResponse } from "../models/models_0"; +import type { ListQuickResponsesRequest, ListQuickResponsesResponse } from "../models/models_0"; import { ListQuickResponses } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/ListTagsForResourceCommand.ts b/clients/client-wisdom/src/commands/ListTagsForResourceCommand.ts index 684d6a9056a20..24ff8193ff69e 100644 --- a/clients/client-wisdom/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-wisdom/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/NotifyRecommendationsReceivedCommand.ts b/clients/client-wisdom/src/commands/NotifyRecommendationsReceivedCommand.ts index 5a68db30a557d..325e6ba91ad9b 100644 --- a/clients/client-wisdom/src/commands/NotifyRecommendationsReceivedCommand.ts +++ b/clients/client-wisdom/src/commands/NotifyRecommendationsReceivedCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NotifyRecommendationsReceivedRequest, NotifyRecommendationsReceivedResponse } from "../models/models_0"; +import type { NotifyRecommendationsReceivedRequest, NotifyRecommendationsReceivedResponse } from "../models/models_0"; import { NotifyRecommendationsReceived } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/QueryAssistantCommand.ts b/clients/client-wisdom/src/commands/QueryAssistantCommand.ts index 02249cf828622..90f8a7b0088ed 100644 --- a/clients/client-wisdom/src/commands/QueryAssistantCommand.ts +++ b/clients/client-wisdom/src/commands/QueryAssistantCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryAssistantRequest, QueryAssistantResponse } from "../models/models_0"; +import type { QueryAssistantRequest, QueryAssistantResponse } from "../models/models_0"; import { QueryAssistant } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts b/clients/client-wisdom/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts index bc8f6e4f95e4d..b52aecdbec212 100644 --- a/clients/client-wisdom/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts +++ b/clients/client-wisdom/src/commands/RemoveKnowledgeBaseTemplateUriCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveKnowledgeBaseTemplateUriRequest, RemoveKnowledgeBaseTemplateUriResponse } from "../models/models_0"; +import type { RemoveKnowledgeBaseTemplateUriRequest, RemoveKnowledgeBaseTemplateUriResponse } from "../models/models_0"; import { RemoveKnowledgeBaseTemplateUri } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/SearchContentCommand.ts b/clients/client-wisdom/src/commands/SearchContentCommand.ts index 5d546eec8ad89..784272a1b8016 100644 --- a/clients/client-wisdom/src/commands/SearchContentCommand.ts +++ b/clients/client-wisdom/src/commands/SearchContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchContentRequest, SearchContentResponse } from "../models/models_0"; +import type { SearchContentRequest, SearchContentResponse } from "../models/models_0"; import { SearchContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/SearchQuickResponsesCommand.ts b/clients/client-wisdom/src/commands/SearchQuickResponsesCommand.ts index c6687c1119ef9..a4e89b48d17e6 100644 --- a/clients/client-wisdom/src/commands/SearchQuickResponsesCommand.ts +++ b/clients/client-wisdom/src/commands/SearchQuickResponsesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchQuickResponsesRequest, SearchQuickResponsesResponse } from "../models/models_0"; +import type { SearchQuickResponsesRequest, SearchQuickResponsesResponse } from "../models/models_0"; import { SearchQuickResponses } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/SearchSessionsCommand.ts b/clients/client-wisdom/src/commands/SearchSessionsCommand.ts index 480976177692c..0103ffedcaa82 100644 --- a/clients/client-wisdom/src/commands/SearchSessionsCommand.ts +++ b/clients/client-wisdom/src/commands/SearchSessionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchSessionsRequest, SearchSessionsResponse } from "../models/models_0"; +import type { SearchSessionsRequest, SearchSessionsResponse } from "../models/models_0"; import { SearchSessions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/StartContentUploadCommand.ts b/clients/client-wisdom/src/commands/StartContentUploadCommand.ts index 223cdf618e84a..49b35c6a84e11 100644 --- a/clients/client-wisdom/src/commands/StartContentUploadCommand.ts +++ b/clients/client-wisdom/src/commands/StartContentUploadCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartContentUploadRequest, StartContentUploadResponse } from "../models/models_0"; +import type { StartContentUploadRequest, StartContentUploadResponse } from "../models/models_0"; import { StartContentUpload } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/StartImportJobCommand.ts b/clients/client-wisdom/src/commands/StartImportJobCommand.ts index 65c3473172857..f0594d2e219d2 100644 --- a/clients/client-wisdom/src/commands/StartImportJobCommand.ts +++ b/clients/client-wisdom/src/commands/StartImportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartImportJobRequest, StartImportJobResponse } from "../models/models_0"; +import type { StartImportJobRequest, StartImportJobResponse } from "../models/models_0"; import { StartImportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/TagResourceCommand.ts b/clients/client-wisdom/src/commands/TagResourceCommand.ts index fcadc97783687..f753aed69154e 100644 --- a/clients/client-wisdom/src/commands/TagResourceCommand.ts +++ b/clients/client-wisdom/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/UntagResourceCommand.ts b/clients/client-wisdom/src/commands/UntagResourceCommand.ts index 50f509d1000f7..2963083d19d98 100644 --- a/clients/client-wisdom/src/commands/UntagResourceCommand.ts +++ b/clients/client-wisdom/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/UpdateContentCommand.ts b/clients/client-wisdom/src/commands/UpdateContentCommand.ts index 3f0e0bdbca60a..12976fc689d23 100644 --- a/clients/client-wisdom/src/commands/UpdateContentCommand.ts +++ b/clients/client-wisdom/src/commands/UpdateContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateContentRequest, UpdateContentResponse } from "../models/models_0"; +import type { UpdateContentRequest, UpdateContentResponse } from "../models/models_0"; import { UpdateContent } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts b/clients/client-wisdom/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts index 49c7aa75d45c2..1c60cf1711c54 100644 --- a/clients/client-wisdom/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts +++ b/clients/client-wisdom/src/commands/UpdateKnowledgeBaseTemplateUriCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateKnowledgeBaseTemplateUriRequest, UpdateKnowledgeBaseTemplateUriResponse } from "../models/models_0"; +import type { UpdateKnowledgeBaseTemplateUriRequest, UpdateKnowledgeBaseTemplateUriResponse } from "../models/models_0"; import { UpdateKnowledgeBaseTemplateUri } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/commands/UpdateQuickResponseCommand.ts b/clients/client-wisdom/src/commands/UpdateQuickResponseCommand.ts index 599e942f2d4fb..b3c02c28f1a87 100644 --- a/clients/client-wisdom/src/commands/UpdateQuickResponseCommand.ts +++ b/clients/client-wisdom/src/commands/UpdateQuickResponseCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateQuickResponseRequest, UpdateQuickResponseResponse } from "../models/models_0"; +import type { UpdateQuickResponseRequest, UpdateQuickResponseResponse } from "../models/models_0"; import { UpdateQuickResponse } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WisdomClientResolvedConfig } from "../WisdomClient"; /** * @public diff --git a/clients/client-wisdom/src/endpoint/EndpointParameters.ts b/clients/client-wisdom/src/endpoint/EndpointParameters.ts index 621407becaa88..bc3cc9aeedf14 100644 --- a/clients/client-wisdom/src/endpoint/EndpointParameters.ts +++ b/clients/client-wisdom/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-wisdom/src/endpoint/endpointResolver.ts b/clients/client-wisdom/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-wisdom/src/endpoint/endpointResolver.ts +++ b/clients/client-wisdom/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-wisdom/src/extensionConfiguration.ts b/clients/client-wisdom/src/extensionConfiguration.ts index eec6d57b4ed59..898ad9bfbf978 100644 --- a/clients/client-wisdom/src/extensionConfiguration.ts +++ b/clients/client-wisdom/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-wisdom/src/models/WisdomServiceException.ts b/clients/client-wisdom/src/models/WisdomServiceException.ts index dd08e126e4741..a0f029a35cf84 100644 --- a/clients/client-wisdom/src/models/WisdomServiceException.ts +++ b/clients/client-wisdom/src/models/WisdomServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-wisdom/src/models/errors.ts b/clients/client-wisdom/src/models/errors.ts index ed41dcd2eee15..c3afabfd9cb5a 100644 --- a/clients/client-wisdom/src/models/errors.ts +++ b/clients/client-wisdom/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { WisdomServiceException as __BaseException } from "./WisdomServiceException"; diff --git a/clients/client-wisdom/src/pagination/Interfaces.ts b/clients/client-wisdom/src/pagination/Interfaces.ts index c16029da36396..69b2145051554 100644 --- a/clients/client-wisdom/src/pagination/Interfaces.ts +++ b/clients/client-wisdom/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { WisdomClient } from "../WisdomClient"; diff --git a/clients/client-wisdom/src/pagination/ListAssistantAssociationsPaginator.ts b/clients/client-wisdom/src/pagination/ListAssistantAssociationsPaginator.ts index 1f5d5e0c622a7..5444d1d478d60 100644 --- a/clients/client-wisdom/src/pagination/ListAssistantAssociationsPaginator.ts +++ b/clients/client-wisdom/src/pagination/ListAssistantAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssistantAssociationsCommand, diff --git a/clients/client-wisdom/src/pagination/ListAssistantsPaginator.ts b/clients/client-wisdom/src/pagination/ListAssistantsPaginator.ts index 50bf8737c8573..2ab12db3f8208 100644 --- a/clients/client-wisdom/src/pagination/ListAssistantsPaginator.ts +++ b/clients/client-wisdom/src/pagination/ListAssistantsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAssistantsCommand, diff --git a/clients/client-wisdom/src/pagination/ListContentsPaginator.ts b/clients/client-wisdom/src/pagination/ListContentsPaginator.ts index 5dac69d9b8eab..e66c689c7779d 100644 --- a/clients/client-wisdom/src/pagination/ListContentsPaginator.ts +++ b/clients/client-wisdom/src/pagination/ListContentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListContentsCommand, diff --git a/clients/client-wisdom/src/pagination/ListImportJobsPaginator.ts b/clients/client-wisdom/src/pagination/ListImportJobsPaginator.ts index c30c3e84211be..562d6c44a9907 100644 --- a/clients/client-wisdom/src/pagination/ListImportJobsPaginator.ts +++ b/clients/client-wisdom/src/pagination/ListImportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImportJobsCommand, diff --git a/clients/client-wisdom/src/pagination/ListKnowledgeBasesPaginator.ts b/clients/client-wisdom/src/pagination/ListKnowledgeBasesPaginator.ts index 6537a18ad5b68..c0926e721adee 100644 --- a/clients/client-wisdom/src/pagination/ListKnowledgeBasesPaginator.ts +++ b/clients/client-wisdom/src/pagination/ListKnowledgeBasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListKnowledgeBasesCommand, diff --git a/clients/client-wisdom/src/pagination/ListQuickResponsesPaginator.ts b/clients/client-wisdom/src/pagination/ListQuickResponsesPaginator.ts index dc31a7009cd5c..c6f66d9c176c3 100644 --- a/clients/client-wisdom/src/pagination/ListQuickResponsesPaginator.ts +++ b/clients/client-wisdom/src/pagination/ListQuickResponsesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListQuickResponsesCommand, diff --git a/clients/client-wisdom/src/pagination/QueryAssistantPaginator.ts b/clients/client-wisdom/src/pagination/QueryAssistantPaginator.ts index 0fa6157b9c5ce..95ce9a61edbc1 100644 --- a/clients/client-wisdom/src/pagination/QueryAssistantPaginator.ts +++ b/clients/client-wisdom/src/pagination/QueryAssistantPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { QueryAssistantCommand, diff --git a/clients/client-wisdom/src/pagination/SearchContentPaginator.ts b/clients/client-wisdom/src/pagination/SearchContentPaginator.ts index df3b6761277b3..e1eda103ae39f 100644 --- a/clients/client-wisdom/src/pagination/SearchContentPaginator.ts +++ b/clients/client-wisdom/src/pagination/SearchContentPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchContentCommand, diff --git a/clients/client-wisdom/src/pagination/SearchQuickResponsesPaginator.ts b/clients/client-wisdom/src/pagination/SearchQuickResponsesPaginator.ts index e8b059616270f..6efa474e7a45b 100644 --- a/clients/client-wisdom/src/pagination/SearchQuickResponsesPaginator.ts +++ b/clients/client-wisdom/src/pagination/SearchQuickResponsesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchQuickResponsesCommand, diff --git a/clients/client-wisdom/src/pagination/SearchSessionsPaginator.ts b/clients/client-wisdom/src/pagination/SearchSessionsPaginator.ts index 027ffd54a315f..322c589871894 100644 --- a/clients/client-wisdom/src/pagination/SearchSessionsPaginator.ts +++ b/clients/client-wisdom/src/pagination/SearchSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchSessionsCommand, diff --git a/clients/client-wisdom/src/runtimeConfig.browser.ts b/clients/client-wisdom/src/runtimeConfig.browser.ts index 2b77406aa08b9..383bf909e6f23 100644 --- a/clients/client-wisdom/src/runtimeConfig.browser.ts +++ b/clients/client-wisdom/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WisdomClientConfig } from "./WisdomClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WisdomClientConfig } from "./WisdomClient"; /** * @internal diff --git a/clients/client-wisdom/src/runtimeConfig.native.ts b/clients/client-wisdom/src/runtimeConfig.native.ts index 49f098534dde9..8d7591e35981e 100644 --- a/clients/client-wisdom/src/runtimeConfig.native.ts +++ b/clients/client-wisdom/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WisdomClientConfig } from "./WisdomClient"; +import type { WisdomClientConfig } from "./WisdomClient"; /** * @internal diff --git a/clients/client-wisdom/src/runtimeConfig.shared.ts b/clients/client-wisdom/src/runtimeConfig.shared.ts index f6867932cdf62..40aa121bbd1ab 100644 --- a/clients/client-wisdom/src/runtimeConfig.shared.ts +++ b/clients/client-wisdom/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWisdomHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WisdomClientConfig } from "./WisdomClient"; +import type { WisdomClientConfig } from "./WisdomClient"; /** * @internal diff --git a/clients/client-wisdom/src/runtimeConfig.ts b/clients/client-wisdom/src/runtimeConfig.ts index 361e6d4d710d8..230bcea9e60b5 100644 --- a/clients/client-wisdom/src/runtimeConfig.ts +++ b/clients/client-wisdom/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WisdomClientConfig } from "./WisdomClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WisdomClientConfig } from "./WisdomClient"; /** * @internal diff --git a/clients/client-wisdom/src/runtimeExtensions.ts b/clients/client-wisdom/src/runtimeExtensions.ts index 68aabbe604a5a..0cb01c1aa647c 100644 --- a/clients/client-wisdom/src/runtimeExtensions.ts +++ b/clients/client-wisdom/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WisdomExtensionConfiguration } from "./extensionConfiguration"; +import type { WisdomExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-wisdom/src/schemas/schemas_0.ts b/clients/client-wisdom/src/schemas/schemas_0.ts index c1b5884735540..caca16ce1f031 100644 --- a/clients/client-wisdom/src/schemas/schemas_0.ts +++ b/clients/client-wisdom/src/schemas/schemas_0.ts @@ -339,7 +339,7 @@ const n0 = "com.amazonaws.wisdom"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-workdocs/package.json b/clients/client-workdocs/package.json index 13534773d2edb..0c11e7eb378fe 100644 --- a/clients/client-workdocs/package.json +++ b/clients/client-workdocs/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-workdocs/src/WorkDocs.ts b/clients/client-workdocs/src/WorkDocs.ts index 45302248767e2..af330da889a03 100644 --- a/clients/client-workdocs/src/WorkDocs.ts +++ b/clients/client-workdocs/src/WorkDocs.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AbortDocumentVersionUploadCommand, @@ -202,7 +202,7 @@ import { UpdateFolderCommandOutput, } from "./commands/UpdateFolderCommand"; import { UpdateUserCommand, UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand"; -import { WorkDocsClient, WorkDocsClientConfig } from "./WorkDocsClient"; +import { WorkDocsClient } from "./WorkDocsClient"; const commands = { AbortDocumentVersionUploadCommand, diff --git a/clients/client-workdocs/src/WorkDocsClient.ts b/clients/client-workdocs/src/WorkDocsClient.ts index bbae9363ef8f1..dee0f87d9e1ab 100644 --- a/clients/client-workdocs/src/WorkDocsClient.ts +++ b/clients/client-workdocs/src/WorkDocsClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWorkDocsHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -162,7 +171,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-workdocs/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-workdocs/src/auth/httpAuthExtensionConfiguration.ts index e25ddd7bb99c8..db60629d6eeed 100644 --- a/clients/client-workdocs/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-workdocs/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WorkDocsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WorkDocsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-workdocs/src/auth/httpAuthSchemeProvider.ts b/clients/client-workdocs/src/auth/httpAuthSchemeProvider.ts index fa5a52a2f065a..49bb06119dd40 100644 --- a/clients/client-workdocs/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-workdocs/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WorkDocsClientConfig, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import { type WorkDocsClientResolvedConfig, WorkDocsClientConfig } from "../WorkDocsClient"; /** * @internal diff --git a/clients/client-workdocs/src/commands/AbortDocumentVersionUploadCommand.ts b/clients/client-workdocs/src/commands/AbortDocumentVersionUploadCommand.ts index 743517752fc84..b1db9a160bcf9 100644 --- a/clients/client-workdocs/src/commands/AbortDocumentVersionUploadCommand.ts +++ b/clients/client-workdocs/src/commands/AbortDocumentVersionUploadCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AbortDocumentVersionUploadRequest } from "../models/models_0"; +import type { AbortDocumentVersionUploadRequest } from "../models/models_0"; import { AbortDocumentVersionUpload } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/ActivateUserCommand.ts b/clients/client-workdocs/src/commands/ActivateUserCommand.ts index deb4573b8f5be..43355dde36809 100644 --- a/clients/client-workdocs/src/commands/ActivateUserCommand.ts +++ b/clients/client-workdocs/src/commands/ActivateUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ActivateUserRequest, ActivateUserResponse } from "../models/models_0"; +import type { ActivateUserRequest, ActivateUserResponse } from "../models/models_0"; import { ActivateUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/AddResourcePermissionsCommand.ts b/clients/client-workdocs/src/commands/AddResourcePermissionsCommand.ts index fa3d330728d18..89b7a3aaedf79 100644 --- a/clients/client-workdocs/src/commands/AddResourcePermissionsCommand.ts +++ b/clients/client-workdocs/src/commands/AddResourcePermissionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AddResourcePermissionsRequest, AddResourcePermissionsResponse } from "../models/models_0"; +import type { AddResourcePermissionsRequest, AddResourcePermissionsResponse } from "../models/models_0"; import { AddResourcePermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/CreateCommentCommand.ts b/clients/client-workdocs/src/commands/CreateCommentCommand.ts index 432729d402856..8b446e756a1ff 100644 --- a/clients/client-workdocs/src/commands/CreateCommentCommand.ts +++ b/clients/client-workdocs/src/commands/CreateCommentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCommentRequest, CreateCommentResponse } from "../models/models_0"; +import type { CreateCommentRequest, CreateCommentResponse } from "../models/models_0"; import { CreateComment } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/CreateCustomMetadataCommand.ts b/clients/client-workdocs/src/commands/CreateCustomMetadataCommand.ts index 5c085ca10869f..852d3ef0c47b1 100644 --- a/clients/client-workdocs/src/commands/CreateCustomMetadataCommand.ts +++ b/clients/client-workdocs/src/commands/CreateCustomMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateCustomMetadataRequest, CreateCustomMetadataResponse } from "../models/models_0"; +import type { CreateCustomMetadataRequest, CreateCustomMetadataResponse } from "../models/models_0"; import { CreateCustomMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/CreateFolderCommand.ts b/clients/client-workdocs/src/commands/CreateFolderCommand.ts index 0c4947424ed18..45b996c41aceb 100644 --- a/clients/client-workdocs/src/commands/CreateFolderCommand.ts +++ b/clients/client-workdocs/src/commands/CreateFolderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateFolderRequest, CreateFolderResponse } from "../models/models_0"; +import type { CreateFolderRequest, CreateFolderResponse } from "../models/models_0"; import { CreateFolder } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/CreateLabelsCommand.ts b/clients/client-workdocs/src/commands/CreateLabelsCommand.ts index 9af0039176ca3..b8ee1e4a067a3 100644 --- a/clients/client-workdocs/src/commands/CreateLabelsCommand.ts +++ b/clients/client-workdocs/src/commands/CreateLabelsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateLabelsRequest, CreateLabelsResponse } from "../models/models_0"; +import type { CreateLabelsRequest, CreateLabelsResponse } from "../models/models_0"; import { CreateLabels } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/CreateNotificationSubscriptionCommand.ts b/clients/client-workdocs/src/commands/CreateNotificationSubscriptionCommand.ts index 73dd5e853dacb..927077785f10b 100644 --- a/clients/client-workdocs/src/commands/CreateNotificationSubscriptionCommand.ts +++ b/clients/client-workdocs/src/commands/CreateNotificationSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNotificationSubscriptionRequest, CreateNotificationSubscriptionResponse } from "../models/models_0"; +import type { CreateNotificationSubscriptionRequest, CreateNotificationSubscriptionResponse } from "../models/models_0"; import { CreateNotificationSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/CreateUserCommand.ts b/clients/client-workdocs/src/commands/CreateUserCommand.ts index 29f0ab2fdc43a..511c18002c1d3 100644 --- a/clients/client-workdocs/src/commands/CreateUserCommand.ts +++ b/clients/client-workdocs/src/commands/CreateUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeactivateUserCommand.ts b/clients/client-workdocs/src/commands/DeactivateUserCommand.ts index 04e7128da7aed..cda52a1e06df7 100644 --- a/clients/client-workdocs/src/commands/DeactivateUserCommand.ts +++ b/clients/client-workdocs/src/commands/DeactivateUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeactivateUserRequest } from "../models/models_0"; +import type { DeactivateUserRequest } from "../models/models_0"; import { DeactivateUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeleteCommentCommand.ts b/clients/client-workdocs/src/commands/DeleteCommentCommand.ts index 8708bf889f61e..af46a63aec1f7 100644 --- a/clients/client-workdocs/src/commands/DeleteCommentCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteCommentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCommentRequest } from "../models/models_0"; +import type { DeleteCommentRequest } from "../models/models_0"; import { DeleteComment } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeleteCustomMetadataCommand.ts b/clients/client-workdocs/src/commands/DeleteCustomMetadataCommand.ts index e68addf90ed46..e2c87757d904e 100644 --- a/clients/client-workdocs/src/commands/DeleteCustomMetadataCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteCustomMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteCustomMetadataRequest, DeleteCustomMetadataResponse } from "../models/models_0"; +import type { DeleteCustomMetadataRequest, DeleteCustomMetadataResponse } from "../models/models_0"; import { DeleteCustomMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeleteDocumentCommand.ts b/clients/client-workdocs/src/commands/DeleteDocumentCommand.ts index 4656c70f2dd9b..02a7f1c27e6a3 100644 --- a/clients/client-workdocs/src/commands/DeleteDocumentCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDocumentRequest } from "../models/models_0"; +import type { DeleteDocumentRequest } from "../models/models_0"; import { DeleteDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeleteDocumentVersionCommand.ts b/clients/client-workdocs/src/commands/DeleteDocumentVersionCommand.ts index 03b2f5136e0d8..621ba50e5c51e 100644 --- a/clients/client-workdocs/src/commands/DeleteDocumentVersionCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteDocumentVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDocumentVersionRequest } from "../models/models_0"; +import type { DeleteDocumentVersionRequest } from "../models/models_0"; import { DeleteDocumentVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeleteFolderCommand.ts b/clients/client-workdocs/src/commands/DeleteFolderCommand.ts index 1e33e29fa2661..d3d704648a305 100644 --- a/clients/client-workdocs/src/commands/DeleteFolderCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteFolderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFolderRequest } from "../models/models_0"; +import type { DeleteFolderRequest } from "../models/models_0"; import { DeleteFolder } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeleteFolderContentsCommand.ts b/clients/client-workdocs/src/commands/DeleteFolderContentsCommand.ts index 7bfc6c5e7da3c..d28b98121c794 100644 --- a/clients/client-workdocs/src/commands/DeleteFolderContentsCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteFolderContentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteFolderContentsRequest } from "../models/models_0"; +import type { DeleteFolderContentsRequest } from "../models/models_0"; import { DeleteFolderContents } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeleteLabelsCommand.ts b/clients/client-workdocs/src/commands/DeleteLabelsCommand.ts index 88ca129d788ea..96fea75eb2817 100644 --- a/clients/client-workdocs/src/commands/DeleteLabelsCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteLabelsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteLabelsRequest, DeleteLabelsResponse } from "../models/models_0"; +import type { DeleteLabelsRequest, DeleteLabelsResponse } from "../models/models_0"; import { DeleteLabels } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeleteNotificationSubscriptionCommand.ts b/clients/client-workdocs/src/commands/DeleteNotificationSubscriptionCommand.ts index d3c3e5e89d1b4..27dae69af5d01 100644 --- a/clients/client-workdocs/src/commands/DeleteNotificationSubscriptionCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteNotificationSubscriptionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNotificationSubscriptionRequest } from "../models/models_0"; +import type { DeleteNotificationSubscriptionRequest } from "../models/models_0"; import { DeleteNotificationSubscription } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DeleteUserCommand.ts b/clients/client-workdocs/src/commands/DeleteUserCommand.ts index 8fa6cf630ee81..6f9de3c12c0b6 100644 --- a/clients/client-workdocs/src/commands/DeleteUserCommand.ts +++ b/clients/client-workdocs/src/commands/DeleteUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest } from "../models/models_0"; +import type { DeleteUserRequest } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DescribeActivitiesCommand.ts b/clients/client-workdocs/src/commands/DescribeActivitiesCommand.ts index b1ed0515b6354..f0b139378bca8 100644 --- a/clients/client-workdocs/src/commands/DescribeActivitiesCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeActivitiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeActivitiesRequest, DescribeActivitiesResponse } from "../models/models_0"; +import type { DescribeActivitiesRequest, DescribeActivitiesResponse } from "../models/models_0"; import { DescribeActivities } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DescribeCommentsCommand.ts b/clients/client-workdocs/src/commands/DescribeCommentsCommand.ts index 16e3d36a00b84..53cadaa9f92ed 100644 --- a/clients/client-workdocs/src/commands/DescribeCommentsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeCommentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeCommentsRequest, DescribeCommentsResponse } from "../models/models_0"; +import type { DescribeCommentsRequest, DescribeCommentsResponse } from "../models/models_0"; import { DescribeComments } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DescribeDocumentVersionsCommand.ts b/clients/client-workdocs/src/commands/DescribeDocumentVersionsCommand.ts index 75fa914ab8673..e367f481c9d41 100644 --- a/clients/client-workdocs/src/commands/DescribeDocumentVersionsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeDocumentVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeDocumentVersionsRequest, DescribeDocumentVersionsResponse } from "../models/models_0"; +import type { DescribeDocumentVersionsRequest, DescribeDocumentVersionsResponse } from "../models/models_0"; import { DescribeDocumentVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DescribeFolderContentsCommand.ts b/clients/client-workdocs/src/commands/DescribeFolderContentsCommand.ts index 64bd3031f7536..b8765cb6af4d2 100644 --- a/clients/client-workdocs/src/commands/DescribeFolderContentsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeFolderContentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeFolderContentsRequest, DescribeFolderContentsResponse } from "../models/models_0"; +import type { DescribeFolderContentsRequest, DescribeFolderContentsResponse } from "../models/models_0"; import { DescribeFolderContents } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DescribeGroupsCommand.ts b/clients/client-workdocs/src/commands/DescribeGroupsCommand.ts index 51381b915f88a..91b5bfa69dedd 100644 --- a/clients/client-workdocs/src/commands/DescribeGroupsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGroupsRequest, DescribeGroupsResponse } from "../models/models_0"; +import type { DescribeGroupsRequest, DescribeGroupsResponse } from "../models/models_0"; import { DescribeGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DescribeNotificationSubscriptionsCommand.ts b/clients/client-workdocs/src/commands/DescribeNotificationSubscriptionsCommand.ts index b6bd31fe712c5..56971d1a186f0 100644 --- a/clients/client-workdocs/src/commands/DescribeNotificationSubscriptionsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeNotificationSubscriptionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeNotificationSubscriptionsRequest, DescribeNotificationSubscriptionsResponse, } from "../models/models_0"; import { DescribeNotificationSubscriptions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DescribeResourcePermissionsCommand.ts b/clients/client-workdocs/src/commands/DescribeResourcePermissionsCommand.ts index b1ffa3210459d..30460db0138ce 100644 --- a/clients/client-workdocs/src/commands/DescribeResourcePermissionsCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeResourcePermissionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourcePermissionsRequest, DescribeResourcePermissionsResponse } from "../models/models_0"; +import type { DescribeResourcePermissionsRequest, DescribeResourcePermissionsResponse } from "../models/models_0"; import { DescribeResourcePermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DescribeRootFoldersCommand.ts b/clients/client-workdocs/src/commands/DescribeRootFoldersCommand.ts index 0f02bf8c94d1d..549f560a29c82 100644 --- a/clients/client-workdocs/src/commands/DescribeRootFoldersCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeRootFoldersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeRootFoldersRequest, DescribeRootFoldersResponse } from "../models/models_0"; +import type { DescribeRootFoldersRequest, DescribeRootFoldersResponse } from "../models/models_0"; import { DescribeRootFolders } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/DescribeUsersCommand.ts b/clients/client-workdocs/src/commands/DescribeUsersCommand.ts index a5c48da737b02..fcdaf9f05d80a 100644 --- a/clients/client-workdocs/src/commands/DescribeUsersCommand.ts +++ b/clients/client-workdocs/src/commands/DescribeUsersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUsersRequest, DescribeUsersResponse } from "../models/models_0"; +import type { DescribeUsersRequest, DescribeUsersResponse } from "../models/models_0"; import { DescribeUsers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/GetCurrentUserCommand.ts b/clients/client-workdocs/src/commands/GetCurrentUserCommand.ts index 4c85dee359087..e45c28dd2596a 100644 --- a/clients/client-workdocs/src/commands/GetCurrentUserCommand.ts +++ b/clients/client-workdocs/src/commands/GetCurrentUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetCurrentUserRequest, GetCurrentUserResponse } from "../models/models_0"; +import type { GetCurrentUserRequest, GetCurrentUserResponse } from "../models/models_0"; import { GetCurrentUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/GetDocumentCommand.ts b/clients/client-workdocs/src/commands/GetDocumentCommand.ts index e07adfc66f17a..0e1d238a1ad9d 100644 --- a/clients/client-workdocs/src/commands/GetDocumentCommand.ts +++ b/clients/client-workdocs/src/commands/GetDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDocumentRequest, GetDocumentResponse } from "../models/models_0"; +import type { GetDocumentRequest, GetDocumentResponse } from "../models/models_0"; import { GetDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/GetDocumentPathCommand.ts b/clients/client-workdocs/src/commands/GetDocumentPathCommand.ts index e28f956f73515..afcaf16dec74b 100644 --- a/clients/client-workdocs/src/commands/GetDocumentPathCommand.ts +++ b/clients/client-workdocs/src/commands/GetDocumentPathCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDocumentPathRequest, GetDocumentPathResponse } from "../models/models_0"; +import type { GetDocumentPathRequest, GetDocumentPathResponse } from "../models/models_0"; import { GetDocumentPath } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/GetDocumentVersionCommand.ts b/clients/client-workdocs/src/commands/GetDocumentVersionCommand.ts index 4fc033fc4cd7a..84496adeaf436 100644 --- a/clients/client-workdocs/src/commands/GetDocumentVersionCommand.ts +++ b/clients/client-workdocs/src/commands/GetDocumentVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDocumentVersionRequest, GetDocumentVersionResponse } from "../models/models_0"; +import type { GetDocumentVersionRequest, GetDocumentVersionResponse } from "../models/models_0"; import { GetDocumentVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/GetFolderCommand.ts b/clients/client-workdocs/src/commands/GetFolderCommand.ts index 92651f337e749..54aee692762cd 100644 --- a/clients/client-workdocs/src/commands/GetFolderCommand.ts +++ b/clients/client-workdocs/src/commands/GetFolderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFolderRequest, GetFolderResponse } from "../models/models_0"; +import type { GetFolderRequest, GetFolderResponse } from "../models/models_0"; import { GetFolder } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/GetFolderPathCommand.ts b/clients/client-workdocs/src/commands/GetFolderPathCommand.ts index 02870dcc8808b..05fb803722669 100644 --- a/clients/client-workdocs/src/commands/GetFolderPathCommand.ts +++ b/clients/client-workdocs/src/commands/GetFolderPathCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetFolderPathRequest, GetFolderPathResponse } from "../models/models_0"; +import type { GetFolderPathRequest, GetFolderPathResponse } from "../models/models_0"; import { GetFolderPath } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/GetResourcesCommand.ts b/clients/client-workdocs/src/commands/GetResourcesCommand.ts index cc348e9fa839e..a51dfe712b3c6 100644 --- a/clients/client-workdocs/src/commands/GetResourcesCommand.ts +++ b/clients/client-workdocs/src/commands/GetResourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetResourcesRequest, GetResourcesResponse } from "../models/models_0"; +import type { GetResourcesRequest, GetResourcesResponse } from "../models/models_0"; import { GetResources } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/InitiateDocumentVersionUploadCommand.ts b/clients/client-workdocs/src/commands/InitiateDocumentVersionUploadCommand.ts index f5781edf8fdac..0806371d98dbf 100644 --- a/clients/client-workdocs/src/commands/InitiateDocumentVersionUploadCommand.ts +++ b/clients/client-workdocs/src/commands/InitiateDocumentVersionUploadCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InitiateDocumentVersionUploadRequest, InitiateDocumentVersionUploadResponse } from "../models/models_0"; +import type { InitiateDocumentVersionUploadRequest, InitiateDocumentVersionUploadResponse } from "../models/models_0"; import { InitiateDocumentVersionUpload } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/RemoveAllResourcePermissionsCommand.ts b/clients/client-workdocs/src/commands/RemoveAllResourcePermissionsCommand.ts index ecc689dcc9b91..3168a7e13997f 100644 --- a/clients/client-workdocs/src/commands/RemoveAllResourcePermissionsCommand.ts +++ b/clients/client-workdocs/src/commands/RemoveAllResourcePermissionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveAllResourcePermissionsRequest } from "../models/models_0"; +import type { RemoveAllResourcePermissionsRequest } from "../models/models_0"; import { RemoveAllResourcePermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/RemoveResourcePermissionCommand.ts b/clients/client-workdocs/src/commands/RemoveResourcePermissionCommand.ts index b898a6215a488..c56ccf24fe36b 100644 --- a/clients/client-workdocs/src/commands/RemoveResourcePermissionCommand.ts +++ b/clients/client-workdocs/src/commands/RemoveResourcePermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RemoveResourcePermissionRequest } from "../models/models_0"; +import type { RemoveResourcePermissionRequest } from "../models/models_0"; import { RemoveResourcePermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/RestoreDocumentVersionsCommand.ts b/clients/client-workdocs/src/commands/RestoreDocumentVersionsCommand.ts index b6e82510bed84..de5f9e19d3636 100644 --- a/clients/client-workdocs/src/commands/RestoreDocumentVersionsCommand.ts +++ b/clients/client-workdocs/src/commands/RestoreDocumentVersionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreDocumentVersionsRequest } from "../models/models_0"; +import type { RestoreDocumentVersionsRequest } from "../models/models_0"; import { RestoreDocumentVersions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/SearchResourcesCommand.ts b/clients/client-workdocs/src/commands/SearchResourcesCommand.ts index b91708aa58039..ae9632cd7b704 100644 --- a/clients/client-workdocs/src/commands/SearchResourcesCommand.ts +++ b/clients/client-workdocs/src/commands/SearchResourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SearchResourcesRequest, SearchResourcesResponse } from "../models/models_0"; +import type { SearchResourcesRequest, SearchResourcesResponse } from "../models/models_0"; import { SearchResources } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/UpdateDocumentCommand.ts b/clients/client-workdocs/src/commands/UpdateDocumentCommand.ts index 2dd4fc2c454ac..e0acc282fd698 100644 --- a/clients/client-workdocs/src/commands/UpdateDocumentCommand.ts +++ b/clients/client-workdocs/src/commands/UpdateDocumentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDocumentRequest } from "../models/models_0"; +import type { UpdateDocumentRequest } from "../models/models_0"; import { UpdateDocument } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/UpdateDocumentVersionCommand.ts b/clients/client-workdocs/src/commands/UpdateDocumentVersionCommand.ts index fb254ec46dbbe..d80c199dc5157 100644 --- a/clients/client-workdocs/src/commands/UpdateDocumentVersionCommand.ts +++ b/clients/client-workdocs/src/commands/UpdateDocumentVersionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDocumentVersionRequest } from "../models/models_0"; +import type { UpdateDocumentVersionRequest } from "../models/models_0"; import { UpdateDocumentVersion } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/UpdateFolderCommand.ts b/clients/client-workdocs/src/commands/UpdateFolderCommand.ts index e7ca853bff4bb..966eefbf0ac09 100644 --- a/clients/client-workdocs/src/commands/UpdateFolderCommand.ts +++ b/clients/client-workdocs/src/commands/UpdateFolderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateFolderRequest } from "../models/models_0"; +import type { UpdateFolderRequest } from "../models/models_0"; import { UpdateFolder } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/commands/UpdateUserCommand.ts b/clients/client-workdocs/src/commands/UpdateUserCommand.ts index 6fd950e0df388..1b84211de260f 100644 --- a/clients/client-workdocs/src/commands/UpdateUserCommand.ts +++ b/clients/client-workdocs/src/commands/UpdateUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; import { UpdateUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkDocsClientResolvedConfig } from "../WorkDocsClient"; /** * @public diff --git a/clients/client-workdocs/src/endpoint/EndpointParameters.ts b/clients/client-workdocs/src/endpoint/EndpointParameters.ts index ad83748d91f2f..c3ba6d3249aee 100644 --- a/clients/client-workdocs/src/endpoint/EndpointParameters.ts +++ b/clients/client-workdocs/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-workdocs/src/endpoint/endpointResolver.ts b/clients/client-workdocs/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-workdocs/src/endpoint/endpointResolver.ts +++ b/clients/client-workdocs/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-workdocs/src/extensionConfiguration.ts b/clients/client-workdocs/src/extensionConfiguration.ts index 26b6c739f7a69..5444509ab9b30 100644 --- a/clients/client-workdocs/src/extensionConfiguration.ts +++ b/clients/client-workdocs/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-workdocs/src/models/WorkDocsServiceException.ts b/clients/client-workdocs/src/models/WorkDocsServiceException.ts index a0b95cf033815..dbe9ad5b0f8ec 100644 --- a/clients/client-workdocs/src/models/WorkDocsServiceException.ts +++ b/clients/client-workdocs/src/models/WorkDocsServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-workdocs/src/models/errors.ts b/clients/client-workdocs/src/models/errors.ts index 005bf67c7b193..47a7105d0451e 100644 --- a/clients/client-workdocs/src/models/errors.ts +++ b/clients/client-workdocs/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { WorkDocsServiceException as __BaseException } from "./WorkDocsServiceException"; diff --git a/clients/client-workdocs/src/pagination/DescribeActivitiesPaginator.ts b/clients/client-workdocs/src/pagination/DescribeActivitiesPaginator.ts index 5aaf0261f047b..36f1c45fcaf32 100644 --- a/clients/client-workdocs/src/pagination/DescribeActivitiesPaginator.ts +++ b/clients/client-workdocs/src/pagination/DescribeActivitiesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeActivitiesCommand, diff --git a/clients/client-workdocs/src/pagination/DescribeCommentsPaginator.ts b/clients/client-workdocs/src/pagination/DescribeCommentsPaginator.ts index d6398463d3d3c..0035e3b69f9c1 100644 --- a/clients/client-workdocs/src/pagination/DescribeCommentsPaginator.ts +++ b/clients/client-workdocs/src/pagination/DescribeCommentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeCommentsCommand, diff --git a/clients/client-workdocs/src/pagination/DescribeDocumentVersionsPaginator.ts b/clients/client-workdocs/src/pagination/DescribeDocumentVersionsPaginator.ts index 065f7bec45b66..0dd12f79e2214 100644 --- a/clients/client-workdocs/src/pagination/DescribeDocumentVersionsPaginator.ts +++ b/clients/client-workdocs/src/pagination/DescribeDocumentVersionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeDocumentVersionsCommand, diff --git a/clients/client-workdocs/src/pagination/DescribeFolderContentsPaginator.ts b/clients/client-workdocs/src/pagination/DescribeFolderContentsPaginator.ts index e11da94b31af3..d3dff25f376e7 100644 --- a/clients/client-workdocs/src/pagination/DescribeFolderContentsPaginator.ts +++ b/clients/client-workdocs/src/pagination/DescribeFolderContentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeFolderContentsCommand, diff --git a/clients/client-workdocs/src/pagination/DescribeGroupsPaginator.ts b/clients/client-workdocs/src/pagination/DescribeGroupsPaginator.ts index 25b67abe5423c..f3d70805163db 100644 --- a/clients/client-workdocs/src/pagination/DescribeGroupsPaginator.ts +++ b/clients/client-workdocs/src/pagination/DescribeGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeGroupsCommand, diff --git a/clients/client-workdocs/src/pagination/DescribeNotificationSubscriptionsPaginator.ts b/clients/client-workdocs/src/pagination/DescribeNotificationSubscriptionsPaginator.ts index 8442c9ef9c5ae..722513b395820 100644 --- a/clients/client-workdocs/src/pagination/DescribeNotificationSubscriptionsPaginator.ts +++ b/clients/client-workdocs/src/pagination/DescribeNotificationSubscriptionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeNotificationSubscriptionsCommand, diff --git a/clients/client-workdocs/src/pagination/DescribeResourcePermissionsPaginator.ts b/clients/client-workdocs/src/pagination/DescribeResourcePermissionsPaginator.ts index e4b74736b9155..e305911908e10 100644 --- a/clients/client-workdocs/src/pagination/DescribeResourcePermissionsPaginator.ts +++ b/clients/client-workdocs/src/pagination/DescribeResourcePermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeResourcePermissionsCommand, diff --git a/clients/client-workdocs/src/pagination/DescribeRootFoldersPaginator.ts b/clients/client-workdocs/src/pagination/DescribeRootFoldersPaginator.ts index 88ce97f3b0e2d..311004ae911ab 100644 --- a/clients/client-workdocs/src/pagination/DescribeRootFoldersPaginator.ts +++ b/clients/client-workdocs/src/pagination/DescribeRootFoldersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeRootFoldersCommand, diff --git a/clients/client-workdocs/src/pagination/DescribeUsersPaginator.ts b/clients/client-workdocs/src/pagination/DescribeUsersPaginator.ts index 45afe11a5d51f..b1a5ae2a5c25f 100644 --- a/clients/client-workdocs/src/pagination/DescribeUsersPaginator.ts +++ b/clients/client-workdocs/src/pagination/DescribeUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeUsersCommand, diff --git a/clients/client-workdocs/src/pagination/Interfaces.ts b/clients/client-workdocs/src/pagination/Interfaces.ts index 34c49e077900d..b9a04f7e9bef9 100644 --- a/clients/client-workdocs/src/pagination/Interfaces.ts +++ b/clients/client-workdocs/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { WorkDocsClient } from "../WorkDocsClient"; diff --git a/clients/client-workdocs/src/pagination/SearchResourcesPaginator.ts b/clients/client-workdocs/src/pagination/SearchResourcesPaginator.ts index ceb8156a208b3..91fc2ca515376 100644 --- a/clients/client-workdocs/src/pagination/SearchResourcesPaginator.ts +++ b/clients/client-workdocs/src/pagination/SearchResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { SearchResourcesCommand, diff --git a/clients/client-workdocs/src/runtimeConfig.browser.ts b/clients/client-workdocs/src/runtimeConfig.browser.ts index 80132b73e99a9..018b245372a06 100644 --- a/clients/client-workdocs/src/runtimeConfig.browser.ts +++ b/clients/client-workdocs/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkDocsClientConfig } from "./WorkDocsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WorkDocsClientConfig } from "./WorkDocsClient"; /** * @internal diff --git a/clients/client-workdocs/src/runtimeConfig.native.ts b/clients/client-workdocs/src/runtimeConfig.native.ts index 60a8e4d8f1adc..77856121afc59 100644 --- a/clients/client-workdocs/src/runtimeConfig.native.ts +++ b/clients/client-workdocs/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WorkDocsClientConfig } from "./WorkDocsClient"; +import type { WorkDocsClientConfig } from "./WorkDocsClient"; /** * @internal diff --git a/clients/client-workdocs/src/runtimeConfig.shared.ts b/clients/client-workdocs/src/runtimeConfig.shared.ts index 5d0471d61f55c..5b6bac2186dc4 100644 --- a/clients/client-workdocs/src/runtimeConfig.shared.ts +++ b/clients/client-workdocs/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWorkDocsHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WorkDocsClientConfig } from "./WorkDocsClient"; +import type { WorkDocsClientConfig } from "./WorkDocsClient"; /** * @internal diff --git a/clients/client-workdocs/src/runtimeConfig.ts b/clients/client-workdocs/src/runtimeConfig.ts index cac3d8852506f..32b929c60e390 100644 --- a/clients/client-workdocs/src/runtimeConfig.ts +++ b/clients/client-workdocs/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkDocsClientConfig } from "./WorkDocsClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WorkDocsClientConfig } from "./WorkDocsClient"; /** * @internal diff --git a/clients/client-workdocs/src/runtimeExtensions.ts b/clients/client-workdocs/src/runtimeExtensions.ts index 7680f7a5743eb..fc3a0cfe29c81 100644 --- a/clients/client-workdocs/src/runtimeExtensions.ts +++ b/clients/client-workdocs/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WorkDocsExtensionConfiguration } from "./extensionConfiguration"; +import type { WorkDocsExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-workdocs/src/schemas/schemas_0.ts b/clients/client-workdocs/src/schemas/schemas_0.ts index d686463959e1f..49c5bd188a916 100644 --- a/clients/client-workdocs/src/schemas/schemas_0.ts +++ b/clients/client-workdocs/src/schemas/schemas_0.ts @@ -365,7 +365,7 @@ const n0 = "com.amazonaws.workdocs"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-workmail/package.json b/clients/client-workmail/package.json index 87e9238ba872c..7c5c63eb0619d 100644 --- a/clients/client-workmail/package.json +++ b/clients/client-workmail/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-workmail/src/WorkMail.ts b/clients/client-workmail/src/WorkMail.ts index 17a3d4aad8739..ebef86deb885c 100644 --- a/clients/client-workmail/src/WorkMail.ts +++ b/clients/client-workmail/src/WorkMail.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateDelegateToResourceCommand, @@ -414,7 +414,7 @@ import { UpdateResourceCommandOutput, } from "./commands/UpdateResourceCommand"; import { UpdateUserCommand, UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand"; -import { WorkMailClient, WorkMailClientConfig } from "./WorkMailClient"; +import { WorkMailClient } from "./WorkMailClient"; const commands = { AssociateDelegateToResourceCommand, diff --git a/clients/client-workmail/src/WorkMailClient.ts b/clients/client-workmail/src/WorkMailClient.ts index c8bbb388d58ce..dce20b7409c13 100644 --- a/clients/client-workmail/src/WorkMailClient.ts +++ b/clients/client-workmail/src/WorkMailClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWorkMailHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -333,7 +342,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-workmail/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-workmail/src/auth/httpAuthExtensionConfiguration.ts index c23508cba35b0..4f2ed0b31bc70 100644 --- a/clients/client-workmail/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-workmail/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WorkMailHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WorkMailHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-workmail/src/auth/httpAuthSchemeProvider.ts b/clients/client-workmail/src/auth/httpAuthSchemeProvider.ts index ee865aa6297d5..dc68186b42a4a 100644 --- a/clients/client-workmail/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-workmail/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WorkMailClientConfig, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import { type WorkMailClientResolvedConfig, WorkMailClientConfig } from "../WorkMailClient"; /** * @internal diff --git a/clients/client-workmail/src/commands/AssociateDelegateToResourceCommand.ts b/clients/client-workmail/src/commands/AssociateDelegateToResourceCommand.ts index 869106c924607..6f13581e91b5e 100644 --- a/clients/client-workmail/src/commands/AssociateDelegateToResourceCommand.ts +++ b/clients/client-workmail/src/commands/AssociateDelegateToResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDelegateToResourceRequest, AssociateDelegateToResourceResponse } from "../models/models_0"; +import type { AssociateDelegateToResourceRequest, AssociateDelegateToResourceResponse } from "../models/models_0"; import { AssociateDelegateToResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/AssociateMemberToGroupCommand.ts b/clients/client-workmail/src/commands/AssociateMemberToGroupCommand.ts index 16b49ab0cbff5..28f2060d8183e 100644 --- a/clients/client-workmail/src/commands/AssociateMemberToGroupCommand.ts +++ b/clients/client-workmail/src/commands/AssociateMemberToGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateMemberToGroupRequest, AssociateMemberToGroupResponse } from "../models/models_0"; +import type { AssociateMemberToGroupRequest, AssociateMemberToGroupResponse } from "../models/models_0"; import { AssociateMemberToGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/AssumeImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/AssumeImpersonationRoleCommand.ts index 48f8af0d2906e..d3c7c5a71eda9 100644 --- a/clients/client-workmail/src/commands/AssumeImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/AssumeImpersonationRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeImpersonationRoleRequest, AssumeImpersonationRoleResponse } from "../models/models_0"; +import type { AssumeImpersonationRoleRequest, AssumeImpersonationRoleResponse } from "../models/models_0"; import { AssumeImpersonationRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CancelMailboxExportJobCommand.ts b/clients/client-workmail/src/commands/CancelMailboxExportJobCommand.ts index 9bf99ef4d8e0f..b4b9121e279ce 100644 --- a/clients/client-workmail/src/commands/CancelMailboxExportJobCommand.ts +++ b/clients/client-workmail/src/commands/CancelMailboxExportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelMailboxExportJobRequest, CancelMailboxExportJobResponse } from "../models/models_0"; +import type { CancelMailboxExportJobRequest, CancelMailboxExportJobResponse } from "../models/models_0"; import { CancelMailboxExportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CreateAliasCommand.ts b/clients/client-workmail/src/commands/CreateAliasCommand.ts index b917ae87d44dc..eaa2232eef785 100644 --- a/clients/client-workmail/src/commands/CreateAliasCommand.ts +++ b/clients/client-workmail/src/commands/CreateAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAliasRequest, CreateAliasResponse } from "../models/models_0"; +import type { CreateAliasRequest, CreateAliasResponse } from "../models/models_0"; import { CreateAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CreateAvailabilityConfigurationCommand.ts b/clients/client-workmail/src/commands/CreateAvailabilityConfigurationCommand.ts index 73f2f832723fb..07726b8793098 100644 --- a/clients/client-workmail/src/commands/CreateAvailabilityConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/CreateAvailabilityConfigurationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAvailabilityConfigurationRequest, CreateAvailabilityConfigurationResponse } from "../models/models_0"; +import type { + CreateAvailabilityConfigurationRequest, + CreateAvailabilityConfigurationResponse, +} from "../models/models_0"; import { CreateAvailabilityConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CreateGroupCommand.ts b/clients/client-workmail/src/commands/CreateGroupCommand.ts index 58a52d38695a6..e5e6a5b0257dc 100644 --- a/clients/client-workmail/src/commands/CreateGroupCommand.ts +++ b/clients/client-workmail/src/commands/CreateGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; +import type { CreateGroupRequest, CreateGroupResponse } from "../models/models_0"; import { CreateGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CreateIdentityCenterApplicationCommand.ts b/clients/client-workmail/src/commands/CreateIdentityCenterApplicationCommand.ts index e1e415454c861..d1eb659a07e20 100644 --- a/clients/client-workmail/src/commands/CreateIdentityCenterApplicationCommand.ts +++ b/clients/client-workmail/src/commands/CreateIdentityCenterApplicationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIdentityCenterApplicationRequest, CreateIdentityCenterApplicationResponse } from "../models/models_0"; +import type { + CreateIdentityCenterApplicationRequest, + CreateIdentityCenterApplicationResponse, +} from "../models/models_0"; import { CreateIdentityCenterApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CreateImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/CreateImpersonationRoleCommand.ts index 199ab46239d58..2d35da1fc0d0a 100644 --- a/clients/client-workmail/src/commands/CreateImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/CreateImpersonationRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateImpersonationRoleRequest, CreateImpersonationRoleResponse } from "../models/models_0"; +import type { CreateImpersonationRoleRequest, CreateImpersonationRoleResponse } from "../models/models_0"; import { CreateImpersonationRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CreateMobileDeviceAccessRuleCommand.ts b/clients/client-workmail/src/commands/CreateMobileDeviceAccessRuleCommand.ts index 24500892e5358..27711ffe433ab 100644 --- a/clients/client-workmail/src/commands/CreateMobileDeviceAccessRuleCommand.ts +++ b/clients/client-workmail/src/commands/CreateMobileDeviceAccessRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateMobileDeviceAccessRuleRequest, CreateMobileDeviceAccessRuleResponse } from "../models/models_0"; +import type { CreateMobileDeviceAccessRuleRequest, CreateMobileDeviceAccessRuleResponse } from "../models/models_0"; import { CreateMobileDeviceAccessRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CreateOrganizationCommand.ts b/clients/client-workmail/src/commands/CreateOrganizationCommand.ts index 2e3eba261ff15..428f062e3264e 100644 --- a/clients/client-workmail/src/commands/CreateOrganizationCommand.ts +++ b/clients/client-workmail/src/commands/CreateOrganizationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOrganizationRequest, CreateOrganizationResponse } from "../models/models_0"; +import type { CreateOrganizationRequest, CreateOrganizationResponse } from "../models/models_0"; import { CreateOrganization } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CreateResourceCommand.ts b/clients/client-workmail/src/commands/CreateResourceCommand.ts index 9d7298c6865b1..3203c2bfccbe4 100644 --- a/clients/client-workmail/src/commands/CreateResourceCommand.ts +++ b/clients/client-workmail/src/commands/CreateResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateResourceRequest, CreateResourceResponse } from "../models/models_0"; +import type { CreateResourceRequest, CreateResourceResponse } from "../models/models_0"; import { CreateResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/CreateUserCommand.ts b/clients/client-workmail/src/commands/CreateUserCommand.ts index 5de070a615d3f..68b36ce504168 100644 --- a/clients/client-workmail/src/commands/CreateUserCommand.ts +++ b/clients/client-workmail/src/commands/CreateUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserRequest, CreateUserResponse } from "../models/models_0"; +import type { CreateUserRequest, CreateUserResponse } from "../models/models_0"; import { CreateUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteAccessControlRuleCommand.ts b/clients/client-workmail/src/commands/DeleteAccessControlRuleCommand.ts index 6b3316474b34f..34429cbaa6bcb 100644 --- a/clients/client-workmail/src/commands/DeleteAccessControlRuleCommand.ts +++ b/clients/client-workmail/src/commands/DeleteAccessControlRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccessControlRuleRequest, DeleteAccessControlRuleResponse } from "../models/models_0"; +import type { DeleteAccessControlRuleRequest, DeleteAccessControlRuleResponse } from "../models/models_0"; import { DeleteAccessControlRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteAliasCommand.ts b/clients/client-workmail/src/commands/DeleteAliasCommand.ts index c73d4b30c6cf3..c85e4a3a4102b 100644 --- a/clients/client-workmail/src/commands/DeleteAliasCommand.ts +++ b/clients/client-workmail/src/commands/DeleteAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAliasRequest, DeleteAliasResponse } from "../models/models_0"; +import type { DeleteAliasRequest, DeleteAliasResponse } from "../models/models_0"; import { DeleteAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteAvailabilityConfigurationCommand.ts b/clients/client-workmail/src/commands/DeleteAvailabilityConfigurationCommand.ts index 2b97022ebfa8f..5900339eca72e 100644 --- a/clients/client-workmail/src/commands/DeleteAvailabilityConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteAvailabilityConfigurationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAvailabilityConfigurationRequest, DeleteAvailabilityConfigurationResponse } from "../models/models_0"; +import type { + DeleteAvailabilityConfigurationRequest, + DeleteAvailabilityConfigurationResponse, +} from "../models/models_0"; import { DeleteAvailabilityConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteEmailMonitoringConfigurationCommand.ts b/clients/client-workmail/src/commands/DeleteEmailMonitoringConfigurationCommand.ts index cc704acfc5254..f20b15c53569a 100644 --- a/clients/client-workmail/src/commands/DeleteEmailMonitoringConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteEmailMonitoringConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteEmailMonitoringConfigurationRequest, DeleteEmailMonitoringConfigurationResponse, } from "../models/models_0"; import { DeleteEmailMonitoringConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteGroupCommand.ts b/clients/client-workmail/src/commands/DeleteGroupCommand.ts index 8b4d60cc40cee..b926bf46698de 100644 --- a/clients/client-workmail/src/commands/DeleteGroupCommand.ts +++ b/clients/client-workmail/src/commands/DeleteGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; +import type { DeleteGroupRequest, DeleteGroupResponse } from "../models/models_0"; import { DeleteGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteIdentityCenterApplicationCommand.ts b/clients/client-workmail/src/commands/DeleteIdentityCenterApplicationCommand.ts index a28812c72eca9..60ca54210ab39 100644 --- a/clients/client-workmail/src/commands/DeleteIdentityCenterApplicationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteIdentityCenterApplicationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentityCenterApplicationRequest, DeleteIdentityCenterApplicationResponse } from "../models/models_0"; +import type { + DeleteIdentityCenterApplicationRequest, + DeleteIdentityCenterApplicationResponse, +} from "../models/models_0"; import { DeleteIdentityCenterApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteIdentityProviderConfigurationCommand.ts b/clients/client-workmail/src/commands/DeleteIdentityProviderConfigurationCommand.ts index 10cb8a52dd1e6..7a78ee3018c0c 100644 --- a/clients/client-workmail/src/commands/DeleteIdentityProviderConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteIdentityProviderConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DeleteIdentityProviderConfigurationRequest, DeleteIdentityProviderConfigurationResponse, } from "../models/models_0"; import { DeleteIdentityProviderConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/DeleteImpersonationRoleCommand.ts index d6cd1f5588c06..524f822501c39 100644 --- a/clients/client-workmail/src/commands/DeleteImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/DeleteImpersonationRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteImpersonationRoleRequest, DeleteImpersonationRoleResponse } from "../models/models_0"; +import type { DeleteImpersonationRoleRequest, DeleteImpersonationRoleResponse } from "../models/models_0"; import { DeleteImpersonationRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteMailboxPermissionsCommand.ts b/clients/client-workmail/src/commands/DeleteMailboxPermissionsCommand.ts index 684fdc0ab8dea..af314ab097f9d 100644 --- a/clients/client-workmail/src/commands/DeleteMailboxPermissionsCommand.ts +++ b/clients/client-workmail/src/commands/DeleteMailboxPermissionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMailboxPermissionsRequest, DeleteMailboxPermissionsResponse } from "../models/models_0"; +import type { DeleteMailboxPermissionsRequest, DeleteMailboxPermissionsResponse } from "../models/models_0"; import { DeleteMailboxPermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteMobileDeviceAccessOverrideCommand.ts b/clients/client-workmail/src/commands/DeleteMobileDeviceAccessOverrideCommand.ts index eb962a176a9d2..167afa233d3af 100644 --- a/clients/client-workmail/src/commands/DeleteMobileDeviceAccessOverrideCommand.ts +++ b/clients/client-workmail/src/commands/DeleteMobileDeviceAccessOverrideCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMobileDeviceAccessOverrideRequest, DeleteMobileDeviceAccessOverrideResponse } from "../models/models_0"; +import type { + DeleteMobileDeviceAccessOverrideRequest, + DeleteMobileDeviceAccessOverrideResponse, +} from "../models/models_0"; import { DeleteMobileDeviceAccessOverride } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteMobileDeviceAccessRuleCommand.ts b/clients/client-workmail/src/commands/DeleteMobileDeviceAccessRuleCommand.ts index 366e2435b637c..c38d2088174e0 100644 --- a/clients/client-workmail/src/commands/DeleteMobileDeviceAccessRuleCommand.ts +++ b/clients/client-workmail/src/commands/DeleteMobileDeviceAccessRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteMobileDeviceAccessRuleRequest, DeleteMobileDeviceAccessRuleResponse } from "../models/models_0"; +import type { DeleteMobileDeviceAccessRuleRequest, DeleteMobileDeviceAccessRuleResponse } from "../models/models_0"; import { DeleteMobileDeviceAccessRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteOrganizationCommand.ts b/clients/client-workmail/src/commands/DeleteOrganizationCommand.ts index 5e8ec370aee24..4162805cf2000 100644 --- a/clients/client-workmail/src/commands/DeleteOrganizationCommand.ts +++ b/clients/client-workmail/src/commands/DeleteOrganizationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteOrganizationRequest, DeleteOrganizationResponse } from "../models/models_0"; +import type { DeleteOrganizationRequest, DeleteOrganizationResponse } from "../models/models_0"; import { DeleteOrganization } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeletePersonalAccessTokenCommand.ts b/clients/client-workmail/src/commands/DeletePersonalAccessTokenCommand.ts index b91cf72b45069..5972f689e32ba 100644 --- a/clients/client-workmail/src/commands/DeletePersonalAccessTokenCommand.ts +++ b/clients/client-workmail/src/commands/DeletePersonalAccessTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePersonalAccessTokenRequest, DeletePersonalAccessTokenResponse } from "../models/models_0"; +import type { DeletePersonalAccessTokenRequest, DeletePersonalAccessTokenResponse } from "../models/models_0"; import { DeletePersonalAccessToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteResourceCommand.ts b/clients/client-workmail/src/commands/DeleteResourceCommand.ts index 47a24f627d1c0..bd440f4ba2f28 100644 --- a/clients/client-workmail/src/commands/DeleteResourceCommand.ts +++ b/clients/client-workmail/src/commands/DeleteResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourceRequest, DeleteResourceResponse } from "../models/models_0"; +import type { DeleteResourceRequest, DeleteResourceResponse } from "../models/models_0"; import { DeleteResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteRetentionPolicyCommand.ts b/clients/client-workmail/src/commands/DeleteRetentionPolicyCommand.ts index 823ebe6dbfe36..c87386ff116fe 100644 --- a/clients/client-workmail/src/commands/DeleteRetentionPolicyCommand.ts +++ b/clients/client-workmail/src/commands/DeleteRetentionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteRetentionPolicyRequest, DeleteRetentionPolicyResponse } from "../models/models_0"; +import type { DeleteRetentionPolicyRequest, DeleteRetentionPolicyResponse } from "../models/models_0"; import { DeleteRetentionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeleteUserCommand.ts b/clients/client-workmail/src/commands/DeleteUserCommand.ts index 4707ead57c9b8..9146bbf30b4c4 100644 --- a/clients/client-workmail/src/commands/DeleteUserCommand.ts +++ b/clients/client-workmail/src/commands/DeleteUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; +import type { DeleteUserRequest, DeleteUserResponse } from "../models/models_0"; import { DeleteUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeregisterFromWorkMailCommand.ts b/clients/client-workmail/src/commands/DeregisterFromWorkMailCommand.ts index b04840a44fcf7..9112b44bdfe30 100644 --- a/clients/client-workmail/src/commands/DeregisterFromWorkMailCommand.ts +++ b/clients/client-workmail/src/commands/DeregisterFromWorkMailCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterFromWorkMailRequest, DeregisterFromWorkMailResponse } from "../models/models_0"; +import type { DeregisterFromWorkMailRequest, DeregisterFromWorkMailResponse } from "../models/models_0"; import { DeregisterFromWorkMail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DeregisterMailDomainCommand.ts b/clients/client-workmail/src/commands/DeregisterMailDomainCommand.ts index 7eefc0b16142d..a118bb55273c3 100644 --- a/clients/client-workmail/src/commands/DeregisterMailDomainCommand.ts +++ b/clients/client-workmail/src/commands/DeregisterMailDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterMailDomainRequest, DeregisterMailDomainResponse } from "../models/models_0"; +import type { DeregisterMailDomainRequest, DeregisterMailDomainResponse } from "../models/models_0"; import { DeregisterMailDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DescribeEmailMonitoringConfigurationCommand.ts b/clients/client-workmail/src/commands/DescribeEmailMonitoringConfigurationCommand.ts index 5b761cfd89201..bae43aacb6153 100644 --- a/clients/client-workmail/src/commands/DescribeEmailMonitoringConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DescribeEmailMonitoringConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeEmailMonitoringConfigurationRequest, DescribeEmailMonitoringConfigurationResponse, } from "../models/models_0"; import { DescribeEmailMonitoringConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DescribeEntityCommand.ts b/clients/client-workmail/src/commands/DescribeEntityCommand.ts index 116fa299b7a47..eb3db680c6fdb 100644 --- a/clients/client-workmail/src/commands/DescribeEntityCommand.ts +++ b/clients/client-workmail/src/commands/DescribeEntityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeEntityRequest, DescribeEntityResponse } from "../models/models_0"; +import type { DescribeEntityRequest, DescribeEntityResponse } from "../models/models_0"; import { DescribeEntity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DescribeGroupCommand.ts b/clients/client-workmail/src/commands/DescribeGroupCommand.ts index a181541599131..d25c9c4b9caee 100644 --- a/clients/client-workmail/src/commands/DescribeGroupCommand.ts +++ b/clients/client-workmail/src/commands/DescribeGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeGroupRequest, DescribeGroupResponse } from "../models/models_0"; +import type { DescribeGroupRequest, DescribeGroupResponse } from "../models/models_0"; import { DescribeGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DescribeIdentityProviderConfigurationCommand.ts b/clients/client-workmail/src/commands/DescribeIdentityProviderConfigurationCommand.ts index f6aa9ae61fc53..f02d1707ceac5 100644 --- a/clients/client-workmail/src/commands/DescribeIdentityProviderConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/DescribeIdentityProviderConfigurationCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeIdentityProviderConfigurationRequest, DescribeIdentityProviderConfigurationResponse, } from "../models/models_0"; import { DescribeIdentityProviderConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DescribeInboundDmarcSettingsCommand.ts b/clients/client-workmail/src/commands/DescribeInboundDmarcSettingsCommand.ts index 3cd9af0ec6762..c6c5f02b69a5e 100644 --- a/clients/client-workmail/src/commands/DescribeInboundDmarcSettingsCommand.ts +++ b/clients/client-workmail/src/commands/DescribeInboundDmarcSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeInboundDmarcSettingsRequest, DescribeInboundDmarcSettingsResponse } from "../models/models_0"; +import type { DescribeInboundDmarcSettingsRequest, DescribeInboundDmarcSettingsResponse } from "../models/models_0"; import { DescribeInboundDmarcSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DescribeMailboxExportJobCommand.ts b/clients/client-workmail/src/commands/DescribeMailboxExportJobCommand.ts index d96213eab1d28..02a46d9917e66 100644 --- a/clients/client-workmail/src/commands/DescribeMailboxExportJobCommand.ts +++ b/clients/client-workmail/src/commands/DescribeMailboxExportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeMailboxExportJobRequest, DescribeMailboxExportJobResponse } from "../models/models_0"; +import type { DescribeMailboxExportJobRequest, DescribeMailboxExportJobResponse } from "../models/models_0"; import { DescribeMailboxExportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DescribeOrganizationCommand.ts b/clients/client-workmail/src/commands/DescribeOrganizationCommand.ts index aa94926e13ec7..b2ef085c0bbe0 100644 --- a/clients/client-workmail/src/commands/DescribeOrganizationCommand.ts +++ b/clients/client-workmail/src/commands/DescribeOrganizationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeOrganizationRequest, DescribeOrganizationResponse } from "../models/models_0"; +import type { DescribeOrganizationRequest, DescribeOrganizationResponse } from "../models/models_0"; import { DescribeOrganization } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DescribeResourceCommand.ts b/clients/client-workmail/src/commands/DescribeResourceCommand.ts index 5d0fa9f3d9db8..7ed595f1ece2a 100644 --- a/clients/client-workmail/src/commands/DescribeResourceCommand.ts +++ b/clients/client-workmail/src/commands/DescribeResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeResourceRequest, DescribeResourceResponse } from "../models/models_0"; +import type { DescribeResourceRequest, DescribeResourceResponse } from "../models/models_0"; import { DescribeResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DescribeUserCommand.ts b/clients/client-workmail/src/commands/DescribeUserCommand.ts index 0803bfb656222..5a6d33984281f 100644 --- a/clients/client-workmail/src/commands/DescribeUserCommand.ts +++ b/clients/client-workmail/src/commands/DescribeUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeUserRequest, DescribeUserResponse } from "../models/models_0"; +import type { DescribeUserRequest, DescribeUserResponse } from "../models/models_0"; import { DescribeUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DisassociateDelegateFromResourceCommand.ts b/clients/client-workmail/src/commands/DisassociateDelegateFromResourceCommand.ts index 960aa14b2fcd5..4d27f3e6e3be3 100644 --- a/clients/client-workmail/src/commands/DisassociateDelegateFromResourceCommand.ts +++ b/clients/client-workmail/src/commands/DisassociateDelegateFromResourceCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateDelegateFromResourceRequest, DisassociateDelegateFromResourceResponse } from "../models/models_0"; +import type { + DisassociateDelegateFromResourceRequest, + DisassociateDelegateFromResourceResponse, +} from "../models/models_0"; import { DisassociateDelegateFromResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/DisassociateMemberFromGroupCommand.ts b/clients/client-workmail/src/commands/DisassociateMemberFromGroupCommand.ts index fff781bfbf966..dd1bea7b9b055 100644 --- a/clients/client-workmail/src/commands/DisassociateMemberFromGroupCommand.ts +++ b/clients/client-workmail/src/commands/DisassociateMemberFromGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateMemberFromGroupRequest, DisassociateMemberFromGroupResponse } from "../models/models_0"; +import type { DisassociateMemberFromGroupRequest, DisassociateMemberFromGroupResponse } from "../models/models_0"; import { DisassociateMemberFromGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/GetAccessControlEffectCommand.ts b/clients/client-workmail/src/commands/GetAccessControlEffectCommand.ts index b7d62c1327650..73c19d06612bd 100644 --- a/clients/client-workmail/src/commands/GetAccessControlEffectCommand.ts +++ b/clients/client-workmail/src/commands/GetAccessControlEffectCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccessControlEffectRequest, GetAccessControlEffectResponse } from "../models/models_0"; +import type { GetAccessControlEffectRequest, GetAccessControlEffectResponse } from "../models/models_0"; import { GetAccessControlEffect } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/GetDefaultRetentionPolicyCommand.ts b/clients/client-workmail/src/commands/GetDefaultRetentionPolicyCommand.ts index 10782a8b3bcde..ae60753e57dc3 100644 --- a/clients/client-workmail/src/commands/GetDefaultRetentionPolicyCommand.ts +++ b/clients/client-workmail/src/commands/GetDefaultRetentionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDefaultRetentionPolicyRequest, GetDefaultRetentionPolicyResponse } from "../models/models_0"; +import type { GetDefaultRetentionPolicyRequest, GetDefaultRetentionPolicyResponse } from "../models/models_0"; import { GetDefaultRetentionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/GetImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/GetImpersonationRoleCommand.ts index 25f86cc1b3193..60be71d9e64ea 100644 --- a/clients/client-workmail/src/commands/GetImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/GetImpersonationRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImpersonationRoleRequest, GetImpersonationRoleResponse } from "../models/models_0"; +import type { GetImpersonationRoleRequest, GetImpersonationRoleResponse } from "../models/models_0"; import { GetImpersonationRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/GetImpersonationRoleEffectCommand.ts b/clients/client-workmail/src/commands/GetImpersonationRoleEffectCommand.ts index d567b7032ebfb..27625aa406658 100644 --- a/clients/client-workmail/src/commands/GetImpersonationRoleEffectCommand.ts +++ b/clients/client-workmail/src/commands/GetImpersonationRoleEffectCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetImpersonationRoleEffectRequest, GetImpersonationRoleEffectResponse } from "../models/models_0"; +import type { GetImpersonationRoleEffectRequest, GetImpersonationRoleEffectResponse } from "../models/models_0"; import { GetImpersonationRoleEffect } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/GetMailDomainCommand.ts b/clients/client-workmail/src/commands/GetMailDomainCommand.ts index b797f58c2bf6c..d4a8a2938bf0a 100644 --- a/clients/client-workmail/src/commands/GetMailDomainCommand.ts +++ b/clients/client-workmail/src/commands/GetMailDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMailDomainRequest, GetMailDomainResponse } from "../models/models_0"; +import type { GetMailDomainRequest, GetMailDomainResponse } from "../models/models_0"; import { GetMailDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/GetMailboxDetailsCommand.ts b/clients/client-workmail/src/commands/GetMailboxDetailsCommand.ts index e9c79ebda05bb..4a31543eca44a 100644 --- a/clients/client-workmail/src/commands/GetMailboxDetailsCommand.ts +++ b/clients/client-workmail/src/commands/GetMailboxDetailsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMailboxDetailsRequest, GetMailboxDetailsResponse } from "../models/models_0"; +import type { GetMailboxDetailsRequest, GetMailboxDetailsResponse } from "../models/models_0"; import { GetMailboxDetails } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/GetMobileDeviceAccessEffectCommand.ts b/clients/client-workmail/src/commands/GetMobileDeviceAccessEffectCommand.ts index bf9c4800603ed..315d48ec9256e 100644 --- a/clients/client-workmail/src/commands/GetMobileDeviceAccessEffectCommand.ts +++ b/clients/client-workmail/src/commands/GetMobileDeviceAccessEffectCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMobileDeviceAccessEffectRequest, GetMobileDeviceAccessEffectResponse } from "../models/models_0"; +import type { GetMobileDeviceAccessEffectRequest, GetMobileDeviceAccessEffectResponse } from "../models/models_0"; import { GetMobileDeviceAccessEffect } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/GetMobileDeviceAccessOverrideCommand.ts b/clients/client-workmail/src/commands/GetMobileDeviceAccessOverrideCommand.ts index 728b6be004eba..72e26ad8501a7 100644 --- a/clients/client-workmail/src/commands/GetMobileDeviceAccessOverrideCommand.ts +++ b/clients/client-workmail/src/commands/GetMobileDeviceAccessOverrideCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetMobileDeviceAccessOverrideRequest, GetMobileDeviceAccessOverrideResponse } from "../models/models_0"; +import type { GetMobileDeviceAccessOverrideRequest, GetMobileDeviceAccessOverrideResponse } from "../models/models_0"; import { GetMobileDeviceAccessOverride } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/GetPersonalAccessTokenMetadataCommand.ts b/clients/client-workmail/src/commands/GetPersonalAccessTokenMetadataCommand.ts index 894d7ba367383..1aba9b616870a 100644 --- a/clients/client-workmail/src/commands/GetPersonalAccessTokenMetadataCommand.ts +++ b/clients/client-workmail/src/commands/GetPersonalAccessTokenMetadataCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPersonalAccessTokenMetadataRequest, GetPersonalAccessTokenMetadataResponse } from "../models/models_0"; +import type { GetPersonalAccessTokenMetadataRequest, GetPersonalAccessTokenMetadataResponse } from "../models/models_0"; import { GetPersonalAccessTokenMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListAccessControlRulesCommand.ts b/clients/client-workmail/src/commands/ListAccessControlRulesCommand.ts index a775a8dae261c..5e7a60efb7142 100644 --- a/clients/client-workmail/src/commands/ListAccessControlRulesCommand.ts +++ b/clients/client-workmail/src/commands/ListAccessControlRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccessControlRulesRequest, ListAccessControlRulesResponse } from "../models/models_0"; +import type { ListAccessControlRulesRequest, ListAccessControlRulesResponse } from "../models/models_0"; import { ListAccessControlRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListAliasesCommand.ts b/clients/client-workmail/src/commands/ListAliasesCommand.ts index ae22cf1ba7ad0..2c2bbb949948e 100644 --- a/clients/client-workmail/src/commands/ListAliasesCommand.ts +++ b/clients/client-workmail/src/commands/ListAliasesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAliasesRequest, ListAliasesResponse } from "../models/models_0"; +import type { ListAliasesRequest, ListAliasesResponse } from "../models/models_0"; import { ListAliases } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListAvailabilityConfigurationsCommand.ts b/clients/client-workmail/src/commands/ListAvailabilityConfigurationsCommand.ts index 0d7a869560102..a7cb9df0ed88a 100644 --- a/clients/client-workmail/src/commands/ListAvailabilityConfigurationsCommand.ts +++ b/clients/client-workmail/src/commands/ListAvailabilityConfigurationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAvailabilityConfigurationsRequest, ListAvailabilityConfigurationsResponse } from "../models/models_0"; +import type { ListAvailabilityConfigurationsRequest, ListAvailabilityConfigurationsResponse } from "../models/models_0"; import { ListAvailabilityConfigurations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListGroupMembersCommand.ts b/clients/client-workmail/src/commands/ListGroupMembersCommand.ts index ce7392b3da98d..b1ea9236786be 100644 --- a/clients/client-workmail/src/commands/ListGroupMembersCommand.ts +++ b/clients/client-workmail/src/commands/ListGroupMembersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupMembersRequest, ListGroupMembersResponse } from "../models/models_0"; +import type { ListGroupMembersRequest, ListGroupMembersResponse } from "../models/models_0"; import { ListGroupMembers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListGroupsCommand.ts b/clients/client-workmail/src/commands/ListGroupsCommand.ts index fde5e0cf4cdf9..5387acca53b21 100644 --- a/clients/client-workmail/src/commands/ListGroupsCommand.ts +++ b/clients/client-workmail/src/commands/ListGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; +import type { ListGroupsRequest, ListGroupsResponse } from "../models/models_0"; import { ListGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListGroupsForEntityCommand.ts b/clients/client-workmail/src/commands/ListGroupsForEntityCommand.ts index bdded0809484a..cf7e8a7e0bb68 100644 --- a/clients/client-workmail/src/commands/ListGroupsForEntityCommand.ts +++ b/clients/client-workmail/src/commands/ListGroupsForEntityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListGroupsForEntityRequest, ListGroupsForEntityResponse } from "../models/models_0"; +import type { ListGroupsForEntityRequest, ListGroupsForEntityResponse } from "../models/models_0"; import { ListGroupsForEntity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListImpersonationRolesCommand.ts b/clients/client-workmail/src/commands/ListImpersonationRolesCommand.ts index ee81cd02cf09b..528075fffdebe 100644 --- a/clients/client-workmail/src/commands/ListImpersonationRolesCommand.ts +++ b/clients/client-workmail/src/commands/ListImpersonationRolesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListImpersonationRolesRequest, ListImpersonationRolesResponse } from "../models/models_0"; +import type { ListImpersonationRolesRequest, ListImpersonationRolesResponse } from "../models/models_0"; import { ListImpersonationRoles } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListMailDomainsCommand.ts b/clients/client-workmail/src/commands/ListMailDomainsCommand.ts index 44ab96eedbeb6..c737944af87b0 100644 --- a/clients/client-workmail/src/commands/ListMailDomainsCommand.ts +++ b/clients/client-workmail/src/commands/ListMailDomainsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMailDomainsRequest, ListMailDomainsResponse } from "../models/models_0"; +import type { ListMailDomainsRequest, ListMailDomainsResponse } from "../models/models_0"; import { ListMailDomains } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListMailboxExportJobsCommand.ts b/clients/client-workmail/src/commands/ListMailboxExportJobsCommand.ts index 865693d5d8bd4..0db6aed5d3693 100644 --- a/clients/client-workmail/src/commands/ListMailboxExportJobsCommand.ts +++ b/clients/client-workmail/src/commands/ListMailboxExportJobsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMailboxExportJobsRequest, ListMailboxExportJobsResponse } from "../models/models_0"; +import type { ListMailboxExportJobsRequest, ListMailboxExportJobsResponse } from "../models/models_0"; import { ListMailboxExportJobs } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListMailboxPermissionsCommand.ts b/clients/client-workmail/src/commands/ListMailboxPermissionsCommand.ts index fe9d1af1e47ba..ea1db21fc567e 100644 --- a/clients/client-workmail/src/commands/ListMailboxPermissionsCommand.ts +++ b/clients/client-workmail/src/commands/ListMailboxPermissionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMailboxPermissionsRequest, ListMailboxPermissionsResponse } from "../models/models_0"; +import type { ListMailboxPermissionsRequest, ListMailboxPermissionsResponse } from "../models/models_0"; import { ListMailboxPermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListMobileDeviceAccessOverridesCommand.ts b/clients/client-workmail/src/commands/ListMobileDeviceAccessOverridesCommand.ts index 5540c8704e8b0..8def8ebff92b5 100644 --- a/clients/client-workmail/src/commands/ListMobileDeviceAccessOverridesCommand.ts +++ b/clients/client-workmail/src/commands/ListMobileDeviceAccessOverridesCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMobileDeviceAccessOverridesRequest, ListMobileDeviceAccessOverridesResponse } from "../models/models_0"; +import type { + ListMobileDeviceAccessOverridesRequest, + ListMobileDeviceAccessOverridesResponse, +} from "../models/models_0"; import { ListMobileDeviceAccessOverrides } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListMobileDeviceAccessRulesCommand.ts b/clients/client-workmail/src/commands/ListMobileDeviceAccessRulesCommand.ts index c18b4e1fb15c0..4459f3cb062a8 100644 --- a/clients/client-workmail/src/commands/ListMobileDeviceAccessRulesCommand.ts +++ b/clients/client-workmail/src/commands/ListMobileDeviceAccessRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListMobileDeviceAccessRulesRequest, ListMobileDeviceAccessRulesResponse } from "../models/models_0"; +import type { ListMobileDeviceAccessRulesRequest, ListMobileDeviceAccessRulesResponse } from "../models/models_0"; import { ListMobileDeviceAccessRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListOrganizationsCommand.ts b/clients/client-workmail/src/commands/ListOrganizationsCommand.ts index ce6ce5f9a6513..30252e7fc68c1 100644 --- a/clients/client-workmail/src/commands/ListOrganizationsCommand.ts +++ b/clients/client-workmail/src/commands/ListOrganizationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListOrganizationsRequest, ListOrganizationsResponse } from "../models/models_0"; +import type { ListOrganizationsRequest, ListOrganizationsResponse } from "../models/models_0"; import { ListOrganizations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListPersonalAccessTokensCommand.ts b/clients/client-workmail/src/commands/ListPersonalAccessTokensCommand.ts index b3cac63f9a634..2bcea34705352 100644 --- a/clients/client-workmail/src/commands/ListPersonalAccessTokensCommand.ts +++ b/clients/client-workmail/src/commands/ListPersonalAccessTokensCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPersonalAccessTokensRequest, ListPersonalAccessTokensResponse } from "../models/models_0"; +import type { ListPersonalAccessTokensRequest, ListPersonalAccessTokensResponse } from "../models/models_0"; import { ListPersonalAccessTokens } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListResourceDelegatesCommand.ts b/clients/client-workmail/src/commands/ListResourceDelegatesCommand.ts index 97fb38245569e..567e4cb133951 100644 --- a/clients/client-workmail/src/commands/ListResourceDelegatesCommand.ts +++ b/clients/client-workmail/src/commands/ListResourceDelegatesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourceDelegatesRequest, ListResourceDelegatesResponse } from "../models/models_0"; +import type { ListResourceDelegatesRequest, ListResourceDelegatesResponse } from "../models/models_0"; import { ListResourceDelegates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListResourcesCommand.ts b/clients/client-workmail/src/commands/ListResourcesCommand.ts index 1bffd2999bf64..20f1a60225d5f 100644 --- a/clients/client-workmail/src/commands/ListResourcesCommand.ts +++ b/clients/client-workmail/src/commands/ListResourcesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcesRequest, ListResourcesResponse } from "../models/models_0"; +import type { ListResourcesRequest, ListResourcesResponse } from "../models/models_0"; import { ListResources } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListTagsForResourceCommand.ts b/clients/client-workmail/src/commands/ListTagsForResourceCommand.ts index 39d6ac6b6d721..98cdc1bb4651b 100644 --- a/clients/client-workmail/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-workmail/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ListUsersCommand.ts b/clients/client-workmail/src/commands/ListUsersCommand.ts index 50009e6965ade..144b569006be2 100644 --- a/clients/client-workmail/src/commands/ListUsersCommand.ts +++ b/clients/client-workmail/src/commands/ListUsersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUsersRequest, ListUsersResponse } from "../models/models_0"; +import type { ListUsersRequest, ListUsersResponse } from "../models/models_0"; import { ListUsers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/PutAccessControlRuleCommand.ts b/clients/client-workmail/src/commands/PutAccessControlRuleCommand.ts index decdceaeab554..c108d681bfcae 100644 --- a/clients/client-workmail/src/commands/PutAccessControlRuleCommand.ts +++ b/clients/client-workmail/src/commands/PutAccessControlRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutAccessControlRuleRequest, PutAccessControlRuleResponse } from "../models/models_0"; +import type { PutAccessControlRuleRequest, PutAccessControlRuleResponse } from "../models/models_0"; import { PutAccessControlRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/PutEmailMonitoringConfigurationCommand.ts b/clients/client-workmail/src/commands/PutEmailMonitoringConfigurationCommand.ts index ba6fdb889dc91..550301e301403 100644 --- a/clients/client-workmail/src/commands/PutEmailMonitoringConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/PutEmailMonitoringConfigurationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEmailMonitoringConfigurationRequest, PutEmailMonitoringConfigurationResponse } from "../models/models_0"; +import type { + PutEmailMonitoringConfigurationRequest, + PutEmailMonitoringConfigurationResponse, +} from "../models/models_0"; import { PutEmailMonitoringConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/PutIdentityProviderConfigurationCommand.ts b/clients/client-workmail/src/commands/PutIdentityProviderConfigurationCommand.ts index 5ba8d4cb2ff4e..6db80884a9cdb 100644 --- a/clients/client-workmail/src/commands/PutIdentityProviderConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/PutIdentityProviderConfigurationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutIdentityProviderConfigurationRequest, PutIdentityProviderConfigurationResponse } from "../models/models_0"; +import type { + PutIdentityProviderConfigurationRequest, + PutIdentityProviderConfigurationResponse, +} from "../models/models_0"; import { PutIdentityProviderConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/PutInboundDmarcSettingsCommand.ts b/clients/client-workmail/src/commands/PutInboundDmarcSettingsCommand.ts index 8cb39f08a8a52..8d4f427120c03 100644 --- a/clients/client-workmail/src/commands/PutInboundDmarcSettingsCommand.ts +++ b/clients/client-workmail/src/commands/PutInboundDmarcSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutInboundDmarcSettingsRequest, PutInboundDmarcSettingsResponse } from "../models/models_0"; +import type { PutInboundDmarcSettingsRequest, PutInboundDmarcSettingsResponse } from "../models/models_0"; import { PutInboundDmarcSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/PutMailboxPermissionsCommand.ts b/clients/client-workmail/src/commands/PutMailboxPermissionsCommand.ts index 14b481c100056..37320eef58ac5 100644 --- a/clients/client-workmail/src/commands/PutMailboxPermissionsCommand.ts +++ b/clients/client-workmail/src/commands/PutMailboxPermissionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMailboxPermissionsRequest, PutMailboxPermissionsResponse } from "../models/models_0"; +import type { PutMailboxPermissionsRequest, PutMailboxPermissionsResponse } from "../models/models_0"; import { PutMailboxPermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/PutMobileDeviceAccessOverrideCommand.ts b/clients/client-workmail/src/commands/PutMobileDeviceAccessOverrideCommand.ts index 654766db83e2f..e6b6ae35eaaca 100644 --- a/clients/client-workmail/src/commands/PutMobileDeviceAccessOverrideCommand.ts +++ b/clients/client-workmail/src/commands/PutMobileDeviceAccessOverrideCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutMobileDeviceAccessOverrideRequest, PutMobileDeviceAccessOverrideResponse } from "../models/models_0"; +import type { PutMobileDeviceAccessOverrideRequest, PutMobileDeviceAccessOverrideResponse } from "../models/models_0"; import { PutMobileDeviceAccessOverride } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/PutRetentionPolicyCommand.ts b/clients/client-workmail/src/commands/PutRetentionPolicyCommand.ts index a9533036edf87..a42ceff5baaff 100644 --- a/clients/client-workmail/src/commands/PutRetentionPolicyCommand.ts +++ b/clients/client-workmail/src/commands/PutRetentionPolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRetentionPolicyRequest, PutRetentionPolicyResponse } from "../models/models_0"; +import type { PutRetentionPolicyRequest, PutRetentionPolicyResponse } from "../models/models_0"; import { PutRetentionPolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/RegisterMailDomainCommand.ts b/clients/client-workmail/src/commands/RegisterMailDomainCommand.ts index 1661a80057e28..45d31b8946090 100644 --- a/clients/client-workmail/src/commands/RegisterMailDomainCommand.ts +++ b/clients/client-workmail/src/commands/RegisterMailDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterMailDomainRequest, RegisterMailDomainResponse } from "../models/models_0"; +import type { RegisterMailDomainRequest, RegisterMailDomainResponse } from "../models/models_0"; import { RegisterMailDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/RegisterToWorkMailCommand.ts b/clients/client-workmail/src/commands/RegisterToWorkMailCommand.ts index e188e3e004668..483d350b152b4 100644 --- a/clients/client-workmail/src/commands/RegisterToWorkMailCommand.ts +++ b/clients/client-workmail/src/commands/RegisterToWorkMailCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterToWorkMailRequest, RegisterToWorkMailResponse } from "../models/models_0"; +import type { RegisterToWorkMailRequest, RegisterToWorkMailResponse } from "../models/models_0"; import { RegisterToWorkMail } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/ResetPasswordCommand.ts b/clients/client-workmail/src/commands/ResetPasswordCommand.ts index 75956b6ff13c9..add8124226522 100644 --- a/clients/client-workmail/src/commands/ResetPasswordCommand.ts +++ b/clients/client-workmail/src/commands/ResetPasswordCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResetPasswordRequest, ResetPasswordResponse } from "../models/models_0"; +import type { ResetPasswordRequest, ResetPasswordResponse } from "../models/models_0"; import { ResetPassword } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/StartMailboxExportJobCommand.ts b/clients/client-workmail/src/commands/StartMailboxExportJobCommand.ts index d21f64bb6dde8..441891a0cb623 100644 --- a/clients/client-workmail/src/commands/StartMailboxExportJobCommand.ts +++ b/clients/client-workmail/src/commands/StartMailboxExportJobCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartMailboxExportJobRequest, StartMailboxExportJobResponse } from "../models/models_0"; +import type { StartMailboxExportJobRequest, StartMailboxExportJobResponse } from "../models/models_0"; import { StartMailboxExportJob } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/TagResourceCommand.ts b/clients/client-workmail/src/commands/TagResourceCommand.ts index 4aae80a92fc22..7a230b85e9979 100644 --- a/clients/client-workmail/src/commands/TagResourceCommand.ts +++ b/clients/client-workmail/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/TestAvailabilityConfigurationCommand.ts b/clients/client-workmail/src/commands/TestAvailabilityConfigurationCommand.ts index ce9b2abd74d2e..104e91ff87679 100644 --- a/clients/client-workmail/src/commands/TestAvailabilityConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/TestAvailabilityConfigurationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestAvailabilityConfigurationRequest, TestAvailabilityConfigurationResponse } from "../models/models_0"; +import type { TestAvailabilityConfigurationRequest, TestAvailabilityConfigurationResponse } from "../models/models_0"; import { TestAvailabilityConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UntagResourceCommand.ts b/clients/client-workmail/src/commands/UntagResourceCommand.ts index 33c6fb3ffa6ea..a2bf8fea0ce4c 100644 --- a/clients/client-workmail/src/commands/UntagResourceCommand.ts +++ b/clients/client-workmail/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UpdateAvailabilityConfigurationCommand.ts b/clients/client-workmail/src/commands/UpdateAvailabilityConfigurationCommand.ts index 7eb68d008aad2..258e4f5d81ab4 100644 --- a/clients/client-workmail/src/commands/UpdateAvailabilityConfigurationCommand.ts +++ b/clients/client-workmail/src/commands/UpdateAvailabilityConfigurationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateAvailabilityConfigurationRequest, UpdateAvailabilityConfigurationResponse } from "../models/models_0"; +import type { + UpdateAvailabilityConfigurationRequest, + UpdateAvailabilityConfigurationResponse, +} from "../models/models_0"; import { UpdateAvailabilityConfiguration } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UpdateDefaultMailDomainCommand.ts b/clients/client-workmail/src/commands/UpdateDefaultMailDomainCommand.ts index cf69b71281d45..d1aa45906d915 100644 --- a/clients/client-workmail/src/commands/UpdateDefaultMailDomainCommand.ts +++ b/clients/client-workmail/src/commands/UpdateDefaultMailDomainCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDefaultMailDomainRequest, UpdateDefaultMailDomainResponse } from "../models/models_0"; +import type { UpdateDefaultMailDomainRequest, UpdateDefaultMailDomainResponse } from "../models/models_0"; import { UpdateDefaultMailDomain } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UpdateGroupCommand.ts b/clients/client-workmail/src/commands/UpdateGroupCommand.ts index 9f59e897770f2..1ef4ac76184b1 100644 --- a/clients/client-workmail/src/commands/UpdateGroupCommand.ts +++ b/clients/client-workmail/src/commands/UpdateGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0"; +import type { UpdateGroupRequest, UpdateGroupResponse } from "../models/models_0"; import { UpdateGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UpdateImpersonationRoleCommand.ts b/clients/client-workmail/src/commands/UpdateImpersonationRoleCommand.ts index 3c7babdeeafa0..f11cdf28e44dc 100644 --- a/clients/client-workmail/src/commands/UpdateImpersonationRoleCommand.ts +++ b/clients/client-workmail/src/commands/UpdateImpersonationRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateImpersonationRoleRequest, UpdateImpersonationRoleResponse } from "../models/models_0"; +import type { UpdateImpersonationRoleRequest, UpdateImpersonationRoleResponse } from "../models/models_0"; import { UpdateImpersonationRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UpdateMailboxQuotaCommand.ts b/clients/client-workmail/src/commands/UpdateMailboxQuotaCommand.ts index 669953707157f..9dcaa27b77c02 100644 --- a/clients/client-workmail/src/commands/UpdateMailboxQuotaCommand.ts +++ b/clients/client-workmail/src/commands/UpdateMailboxQuotaCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMailboxQuotaRequest, UpdateMailboxQuotaResponse } from "../models/models_0"; +import type { UpdateMailboxQuotaRequest, UpdateMailboxQuotaResponse } from "../models/models_0"; import { UpdateMailboxQuota } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UpdateMobileDeviceAccessRuleCommand.ts b/clients/client-workmail/src/commands/UpdateMobileDeviceAccessRuleCommand.ts index 6da1f4fa854f1..bfe5ff26f8e45 100644 --- a/clients/client-workmail/src/commands/UpdateMobileDeviceAccessRuleCommand.ts +++ b/clients/client-workmail/src/commands/UpdateMobileDeviceAccessRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateMobileDeviceAccessRuleRequest, UpdateMobileDeviceAccessRuleResponse } from "../models/models_0"; +import type { UpdateMobileDeviceAccessRuleRequest, UpdateMobileDeviceAccessRuleResponse } from "../models/models_0"; import { UpdateMobileDeviceAccessRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UpdatePrimaryEmailAddressCommand.ts b/clients/client-workmail/src/commands/UpdatePrimaryEmailAddressCommand.ts index 022eb28f5836f..beb1cd5f6bc94 100644 --- a/clients/client-workmail/src/commands/UpdatePrimaryEmailAddressCommand.ts +++ b/clients/client-workmail/src/commands/UpdatePrimaryEmailAddressCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePrimaryEmailAddressRequest, UpdatePrimaryEmailAddressResponse } from "../models/models_0"; +import type { UpdatePrimaryEmailAddressRequest, UpdatePrimaryEmailAddressResponse } from "../models/models_0"; import { UpdatePrimaryEmailAddress } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UpdateResourceCommand.ts b/clients/client-workmail/src/commands/UpdateResourceCommand.ts index 590004e2c8a57..bf388f6cbedab 100644 --- a/clients/client-workmail/src/commands/UpdateResourceCommand.ts +++ b/clients/client-workmail/src/commands/UpdateResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateResourceRequest, UpdateResourceResponse } from "../models/models_0"; +import type { UpdateResourceRequest, UpdateResourceResponse } from "../models/models_0"; import { UpdateResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/commands/UpdateUserCommand.ts b/clients/client-workmail/src/commands/UpdateUserCommand.ts index afeb72a33005b..1709ec1a5778b 100644 --- a/clients/client-workmail/src/commands/UpdateUserCommand.ts +++ b/clients/client-workmail/src/commands/UpdateUserCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; +import type { UpdateUserRequest, UpdateUserResponse } from "../models/models_0"; import { UpdateUser } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailClientResolvedConfig } from "../WorkMailClient"; /** * @public diff --git a/clients/client-workmail/src/endpoint/EndpointParameters.ts b/clients/client-workmail/src/endpoint/EndpointParameters.ts index 9fc300e0853ab..7c52b291ece11 100644 --- a/clients/client-workmail/src/endpoint/EndpointParameters.ts +++ b/clients/client-workmail/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-workmail/src/endpoint/endpointResolver.ts b/clients/client-workmail/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-workmail/src/endpoint/endpointResolver.ts +++ b/clients/client-workmail/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-workmail/src/extensionConfiguration.ts b/clients/client-workmail/src/extensionConfiguration.ts index 7ccf392dcad0e..9fbf7c65672eb 100644 --- a/clients/client-workmail/src/extensionConfiguration.ts +++ b/clients/client-workmail/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-workmail/src/models/WorkMailServiceException.ts b/clients/client-workmail/src/models/WorkMailServiceException.ts index 9bc9370ac934d..c60edf4ba67ae 100644 --- a/clients/client-workmail/src/models/WorkMailServiceException.ts +++ b/clients/client-workmail/src/models/WorkMailServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-workmail/src/models/errors.ts b/clients/client-workmail/src/models/errors.ts index dab9368c513fd..20a5e323c895a 100644 --- a/clients/client-workmail/src/models/errors.ts +++ b/clients/client-workmail/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { WorkMailServiceException as __BaseException } from "./WorkMailServiceException"; diff --git a/clients/client-workmail/src/pagination/Interfaces.ts b/clients/client-workmail/src/pagination/Interfaces.ts index 4bd8f0d5ff565..41c03c0677274 100644 --- a/clients/client-workmail/src/pagination/Interfaces.ts +++ b/clients/client-workmail/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { WorkMailClient } from "../WorkMailClient"; diff --git a/clients/client-workmail/src/pagination/ListAliasesPaginator.ts b/clients/client-workmail/src/pagination/ListAliasesPaginator.ts index 00f2738842866..073cf3bedcfba 100644 --- a/clients/client-workmail/src/pagination/ListAliasesPaginator.ts +++ b/clients/client-workmail/src/pagination/ListAliasesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAliasesCommand, ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand"; import { WorkMailClient } from "../WorkMailClient"; diff --git a/clients/client-workmail/src/pagination/ListAvailabilityConfigurationsPaginator.ts b/clients/client-workmail/src/pagination/ListAvailabilityConfigurationsPaginator.ts index e5fea88f7ae3e..f9f2cca5097d4 100644 --- a/clients/client-workmail/src/pagination/ListAvailabilityConfigurationsPaginator.ts +++ b/clients/client-workmail/src/pagination/ListAvailabilityConfigurationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAvailabilityConfigurationsCommand, diff --git a/clients/client-workmail/src/pagination/ListGroupMembersPaginator.ts b/clients/client-workmail/src/pagination/ListGroupMembersPaginator.ts index d282ac4a4e4f7..336a7c18088d4 100644 --- a/clients/client-workmail/src/pagination/ListGroupMembersPaginator.ts +++ b/clients/client-workmail/src/pagination/ListGroupMembersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupMembersCommand, diff --git a/clients/client-workmail/src/pagination/ListGroupsForEntityPaginator.ts b/clients/client-workmail/src/pagination/ListGroupsForEntityPaginator.ts index b385684cc71c6..14c36788c53a4 100644 --- a/clients/client-workmail/src/pagination/ListGroupsForEntityPaginator.ts +++ b/clients/client-workmail/src/pagination/ListGroupsForEntityPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsForEntityCommand, diff --git a/clients/client-workmail/src/pagination/ListGroupsPaginator.ts b/clients/client-workmail/src/pagination/ListGroupsPaginator.ts index d7570a65daf51..8698e75fb97f1 100644 --- a/clients/client-workmail/src/pagination/ListGroupsPaginator.ts +++ b/clients/client-workmail/src/pagination/ListGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListGroupsCommand, ListGroupsCommandInput, ListGroupsCommandOutput } from "../commands/ListGroupsCommand"; import { WorkMailClient } from "../WorkMailClient"; diff --git a/clients/client-workmail/src/pagination/ListImpersonationRolesPaginator.ts b/clients/client-workmail/src/pagination/ListImpersonationRolesPaginator.ts index b733b91036647..4d117e7730491 100644 --- a/clients/client-workmail/src/pagination/ListImpersonationRolesPaginator.ts +++ b/clients/client-workmail/src/pagination/ListImpersonationRolesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListImpersonationRolesCommand, diff --git a/clients/client-workmail/src/pagination/ListMailDomainsPaginator.ts b/clients/client-workmail/src/pagination/ListMailDomainsPaginator.ts index 4d97c2ffb9de0..9cb623a9887f7 100644 --- a/clients/client-workmail/src/pagination/ListMailDomainsPaginator.ts +++ b/clients/client-workmail/src/pagination/ListMailDomainsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMailDomainsCommand, diff --git a/clients/client-workmail/src/pagination/ListMailboxExportJobsPaginator.ts b/clients/client-workmail/src/pagination/ListMailboxExportJobsPaginator.ts index 43748cb99a19b..f3f873b6e15de 100644 --- a/clients/client-workmail/src/pagination/ListMailboxExportJobsPaginator.ts +++ b/clients/client-workmail/src/pagination/ListMailboxExportJobsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMailboxExportJobsCommand, diff --git a/clients/client-workmail/src/pagination/ListMailboxPermissionsPaginator.ts b/clients/client-workmail/src/pagination/ListMailboxPermissionsPaginator.ts index 6c60a21827655..7a5840d02809f 100644 --- a/clients/client-workmail/src/pagination/ListMailboxPermissionsPaginator.ts +++ b/clients/client-workmail/src/pagination/ListMailboxPermissionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMailboxPermissionsCommand, diff --git a/clients/client-workmail/src/pagination/ListMobileDeviceAccessOverridesPaginator.ts b/clients/client-workmail/src/pagination/ListMobileDeviceAccessOverridesPaginator.ts index 4453fdb559ca1..6eebcb6f2386d 100644 --- a/clients/client-workmail/src/pagination/ListMobileDeviceAccessOverridesPaginator.ts +++ b/clients/client-workmail/src/pagination/ListMobileDeviceAccessOverridesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListMobileDeviceAccessOverridesCommand, diff --git a/clients/client-workmail/src/pagination/ListOrganizationsPaginator.ts b/clients/client-workmail/src/pagination/ListOrganizationsPaginator.ts index e20120cdac698..76866f67b950f 100644 --- a/clients/client-workmail/src/pagination/ListOrganizationsPaginator.ts +++ b/clients/client-workmail/src/pagination/ListOrganizationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListOrganizationsCommand, diff --git a/clients/client-workmail/src/pagination/ListPersonalAccessTokensPaginator.ts b/clients/client-workmail/src/pagination/ListPersonalAccessTokensPaginator.ts index 2f81a0d3b7302..539a052b99152 100644 --- a/clients/client-workmail/src/pagination/ListPersonalAccessTokensPaginator.ts +++ b/clients/client-workmail/src/pagination/ListPersonalAccessTokensPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPersonalAccessTokensCommand, diff --git a/clients/client-workmail/src/pagination/ListResourceDelegatesPaginator.ts b/clients/client-workmail/src/pagination/ListResourceDelegatesPaginator.ts index 75a2ae367684d..d2708009ccb74 100644 --- a/clients/client-workmail/src/pagination/ListResourceDelegatesPaginator.ts +++ b/clients/client-workmail/src/pagination/ListResourceDelegatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourceDelegatesCommand, diff --git a/clients/client-workmail/src/pagination/ListResourcesPaginator.ts b/clients/client-workmail/src/pagination/ListResourcesPaginator.ts index 9bd0fa7fcbfe4..2590a09670253 100644 --- a/clients/client-workmail/src/pagination/ListResourcesPaginator.ts +++ b/clients/client-workmail/src/pagination/ListResourcesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourcesCommand, diff --git a/clients/client-workmail/src/pagination/ListUsersPaginator.ts b/clients/client-workmail/src/pagination/ListUsersPaginator.ts index 89e0e6d9fb01c..22fbd0fe60cd9 100644 --- a/clients/client-workmail/src/pagination/ListUsersPaginator.ts +++ b/clients/client-workmail/src/pagination/ListUsersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUsersCommand, ListUsersCommandInput, ListUsersCommandOutput } from "../commands/ListUsersCommand"; import { WorkMailClient } from "../WorkMailClient"; diff --git a/clients/client-workmail/src/runtimeConfig.browser.ts b/clients/client-workmail/src/runtimeConfig.browser.ts index 06e8a6a35724f..1edd2665eb849 100644 --- a/clients/client-workmail/src/runtimeConfig.browser.ts +++ b/clients/client-workmail/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkMailClientConfig } from "./WorkMailClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WorkMailClientConfig } from "./WorkMailClient"; /** * @internal diff --git a/clients/client-workmail/src/runtimeConfig.native.ts b/clients/client-workmail/src/runtimeConfig.native.ts index e98b86caf09b6..f70a048911137 100644 --- a/clients/client-workmail/src/runtimeConfig.native.ts +++ b/clients/client-workmail/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WorkMailClientConfig } from "./WorkMailClient"; +import type { WorkMailClientConfig } from "./WorkMailClient"; /** * @internal diff --git a/clients/client-workmail/src/runtimeConfig.shared.ts b/clients/client-workmail/src/runtimeConfig.shared.ts index cdc9a4c21dfe9..f9fd2fda02c8f 100644 --- a/clients/client-workmail/src/runtimeConfig.shared.ts +++ b/clients/client-workmail/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWorkMailHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WorkMailClientConfig } from "./WorkMailClient"; +import type { WorkMailClientConfig } from "./WorkMailClient"; /** * @internal diff --git a/clients/client-workmail/src/runtimeConfig.ts b/clients/client-workmail/src/runtimeConfig.ts index 318aa441624fc..283205491459f 100644 --- a/clients/client-workmail/src/runtimeConfig.ts +++ b/clients/client-workmail/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkMailClientConfig } from "./WorkMailClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WorkMailClientConfig } from "./WorkMailClient"; /** * @internal diff --git a/clients/client-workmail/src/runtimeExtensions.ts b/clients/client-workmail/src/runtimeExtensions.ts index 933d5b8f6a349..4b0d50638492c 100644 --- a/clients/client-workmail/src/runtimeExtensions.ts +++ b/clients/client-workmail/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WorkMailExtensionConfiguration } from "./extensionConfiguration"; +import type { WorkMailExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-workmail/src/schemas/schemas_0.ts b/clients/client-workmail/src/schemas/schemas_0.ts index 33ac456dbe865..d221f604d655c 100644 --- a/clients/client-workmail/src/schemas/schemas_0.ts +++ b/clients/client-workmail/src/schemas/schemas_0.ts @@ -518,7 +518,7 @@ const n0 = "com.amazonaws.workmail"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-workmailmessageflow/package.json b/clients/client-workmailmessageflow/package.json index f1bdd51f4c9db..9e6c9c617c3b0 100644 --- a/clients/client-workmailmessageflow/package.json +++ b/clients/client-workmailmessageflow/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-workmailmessageflow/src/WorkMailMessageFlow.ts b/clients/client-workmailmessageflow/src/WorkMailMessageFlow.ts index b23c6d524ff0d..b6f3be3b4b9f5 100644 --- a/clients/client-workmailmessageflow/src/WorkMailMessageFlow.ts +++ b/clients/client-workmailmessageflow/src/WorkMailMessageFlow.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { GetRawMessageContentCommand, @@ -12,7 +12,7 @@ import { PutRawMessageContentCommandInput, PutRawMessageContentCommandOutput, } from "./commands/PutRawMessageContentCommand"; -import { WorkMailMessageFlowClient, WorkMailMessageFlowClientConfig } from "./WorkMailMessageFlowClient"; +import { WorkMailMessageFlowClient } from "./WorkMailMessageFlowClient"; const commands = { GetRawMessageContentCommand, diff --git a/clients/client-workmailmessageflow/src/WorkMailMessageFlowClient.ts b/clients/client-workmailmessageflow/src/WorkMailMessageFlowClient.ts index 9d5686703fd62..d2eeff6f0e1af 100644 --- a/clients/client-workmailmessageflow/src/WorkMailMessageFlowClient.ts +++ b/clients/client-workmailmessageflow/src/WorkMailMessageFlowClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,41 +21,50 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWorkMailMessageFlowHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -73,7 +82,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-workmailmessageflow/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-workmailmessageflow/src/auth/httpAuthExtensionConfiguration.ts index abf2032b19e7e..ce171890851f7 100644 --- a/clients/client-workmailmessageflow/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-workmailmessageflow/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WorkMailMessageFlowHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WorkMailMessageFlowHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-workmailmessageflow/src/auth/httpAuthSchemeProvider.ts b/clients/client-workmailmessageflow/src/auth/httpAuthSchemeProvider.ts index abc6f23989b60..e357c52f82539 100644 --- a/clients/client-workmailmessageflow/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-workmailmessageflow/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WorkMailMessageFlowClientConfig, WorkMailMessageFlowClientResolvedConfig } from "../WorkMailMessageFlowClient"; +import { + type WorkMailMessageFlowClientResolvedConfig, + WorkMailMessageFlowClientConfig, +} from "../WorkMailMessageFlowClient"; /** * @internal diff --git a/clients/client-workmailmessageflow/src/commands/GetRawMessageContentCommand.ts b/clients/client-workmailmessageflow/src/commands/GetRawMessageContentCommand.ts index 4908a68697439..76110cf37ed13 100644 --- a/clients/client-workmailmessageflow/src/commands/GetRawMessageContentCommand.ts +++ b/clients/client-workmailmessageflow/src/commands/GetRawMessageContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRawMessageContentRequest, GetRawMessageContentResponse } from "../models/models_0"; +import { type GetRawMessageContentRequest, GetRawMessageContentResponse } from "../models/models_0"; import { GetRawMessageContent } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailMessageFlowClientResolvedConfig, diff --git a/clients/client-workmailmessageflow/src/commands/PutRawMessageContentCommand.ts b/clients/client-workmailmessageflow/src/commands/PutRawMessageContentCommand.ts index f8582a488f8df..935459baae355 100644 --- a/clients/client-workmailmessageflow/src/commands/PutRawMessageContentCommand.ts +++ b/clients/client-workmailmessageflow/src/commands/PutRawMessageContentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutRawMessageContentRequest, PutRawMessageContentResponse } from "../models/models_0"; +import type { PutRawMessageContentRequest, PutRawMessageContentResponse } from "../models/models_0"; import { PutRawMessageContent } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkMailMessageFlowClientResolvedConfig, diff --git a/clients/client-workmailmessageflow/src/endpoint/EndpointParameters.ts b/clients/client-workmailmessageflow/src/endpoint/EndpointParameters.ts index b147eb4cd7f62..5db60b64d5dd6 100644 --- a/clients/client-workmailmessageflow/src/endpoint/EndpointParameters.ts +++ b/clients/client-workmailmessageflow/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-workmailmessageflow/src/endpoint/endpointResolver.ts b/clients/client-workmailmessageflow/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-workmailmessageflow/src/endpoint/endpointResolver.ts +++ b/clients/client-workmailmessageflow/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-workmailmessageflow/src/extensionConfiguration.ts b/clients/client-workmailmessageflow/src/extensionConfiguration.ts index a586b404d96bd..5279cb1d55dba 100644 --- a/clients/client-workmailmessageflow/src/extensionConfiguration.ts +++ b/clients/client-workmailmessageflow/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-workmailmessageflow/src/models/WorkMailMessageFlowServiceException.ts b/clients/client-workmailmessageflow/src/models/WorkMailMessageFlowServiceException.ts index 7bbe8384f98ca..c16644a5cf7ff 100644 --- a/clients/client-workmailmessageflow/src/models/WorkMailMessageFlowServiceException.ts +++ b/clients/client-workmailmessageflow/src/models/WorkMailMessageFlowServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-workmailmessageflow/src/models/errors.ts b/clients/client-workmailmessageflow/src/models/errors.ts index d25b36bc6a52f..dfe7c4a1a4210 100644 --- a/clients/client-workmailmessageflow/src/models/errors.ts +++ b/clients/client-workmailmessageflow/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { WorkMailMessageFlowServiceException as __BaseException } from "./WorkMailMessageFlowServiceException"; diff --git a/clients/client-workmailmessageflow/src/runtimeConfig.browser.ts b/clients/client-workmailmessageflow/src/runtimeConfig.browser.ts index a6d389e781383..7a208ea4b4e56 100644 --- a/clients/client-workmailmessageflow/src/runtimeConfig.browser.ts +++ b/clients/client-workmailmessageflow/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkMailMessageFlowClientConfig } from "./WorkMailMessageFlowClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WorkMailMessageFlowClientConfig } from "./WorkMailMessageFlowClient"; /** * @internal diff --git a/clients/client-workmailmessageflow/src/runtimeConfig.native.ts b/clients/client-workmailmessageflow/src/runtimeConfig.native.ts index 6693d074cd628..27308f94c2c93 100644 --- a/clients/client-workmailmessageflow/src/runtimeConfig.native.ts +++ b/clients/client-workmailmessageflow/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WorkMailMessageFlowClientConfig } from "./WorkMailMessageFlowClient"; +import type { WorkMailMessageFlowClientConfig } from "./WorkMailMessageFlowClient"; /** * @internal diff --git a/clients/client-workmailmessageflow/src/runtimeConfig.shared.ts b/clients/client-workmailmessageflow/src/runtimeConfig.shared.ts index 89df2a33778d4..9fb6c406217d2 100644 --- a/clients/client-workmailmessageflow/src/runtimeConfig.shared.ts +++ b/clients/client-workmailmessageflow/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWorkMailMessageFlowHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WorkMailMessageFlowClientConfig } from "./WorkMailMessageFlowClient"; +import type { WorkMailMessageFlowClientConfig } from "./WorkMailMessageFlowClient"; /** * @internal diff --git a/clients/client-workmailmessageflow/src/runtimeConfig.ts b/clients/client-workmailmessageflow/src/runtimeConfig.ts index 48a6e6f785869..c595211cfca8f 100644 --- a/clients/client-workmailmessageflow/src/runtimeConfig.ts +++ b/clients/client-workmailmessageflow/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkMailMessageFlowClientConfig } from "./WorkMailMessageFlowClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WorkMailMessageFlowClientConfig } from "./WorkMailMessageFlowClient"; /** * @internal diff --git a/clients/client-workmailmessageflow/src/runtimeExtensions.ts b/clients/client-workmailmessageflow/src/runtimeExtensions.ts index f02bf7c03d571..6beba7c177c96 100644 --- a/clients/client-workmailmessageflow/src/runtimeExtensions.ts +++ b/clients/client-workmailmessageflow/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WorkMailMessageFlowExtensionConfiguration } from "./extensionConfiguration"; +import type { WorkMailMessageFlowExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-workmailmessageflow/src/schemas/schemas_0.ts b/clients/client-workmailmessageflow/src/schemas/schemas_0.ts index 041462844ce9d..03084e7f8705f 100644 --- a/clients/client-workmailmessageflow/src/schemas/schemas_0.ts +++ b/clients/client-workmailmessageflow/src/schemas/schemas_0.ts @@ -29,7 +29,12 @@ const n0 = "com.amazonaws.workmailmessageflow"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types"; +import type { + StaticErrorSchema, + StaticOperationSchema, + StaticSimpleSchema, + StaticStructureSchema, +} from "@smithy/types"; import { InvalidContentLocation as __InvalidContentLocation, diff --git a/clients/client-workspaces-instances/package.json b/clients/client-workspaces-instances/package.json index c44a453a8fe35..81482f6e59613 100644 --- a/clients/client-workspaces-instances/package.json +++ b/clients/client-workspaces-instances/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-workspaces-instances/src/WorkspacesInstances.ts b/clients/client-workspaces-instances/src/WorkspacesInstances.ts index 648119ab6a9dc..41c3ab253d6db 100644 --- a/clients/client-workspaces-instances/src/WorkspacesInstances.ts +++ b/clients/client-workspaces-instances/src/WorkspacesInstances.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateVolumeCommand, @@ -59,7 +59,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; -import { WorkspacesInstancesClient, WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient"; +import { WorkspacesInstancesClient } from "./WorkspacesInstancesClient"; const commands = { AssociateVolumeCommand, diff --git a/clients/client-workspaces-instances/src/WorkspacesInstancesClient.ts b/clients/client-workspaces-instances/src/WorkspacesInstancesClient.ts index 5bf1fc0f40423..e874764b307d8 100644 --- a/clients/client-workspaces-instances/src/WorkspacesInstancesClient.ts +++ b/clients/client-workspaces-instances/src/WorkspacesInstancesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWorkspacesInstancesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssociateVolumeCommandInput, AssociateVolumeCommandOutput } from "./commands/AssociateVolumeCommand"; @@ -92,7 +101,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-workspaces-instances/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-workspaces-instances/src/auth/httpAuthExtensionConfiguration.ts index 5a619aa2db221..ef6b847a3727e 100644 --- a/clients/client-workspaces-instances/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-workspaces-instances/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WorkspacesInstancesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WorkspacesInstancesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-workspaces-instances/src/auth/httpAuthSchemeProvider.ts b/clients/client-workspaces-instances/src/auth/httpAuthSchemeProvider.ts index 46f103394213c..b0bc97c4bf819 100644 --- a/clients/client-workspaces-instances/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-workspaces-instances/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,10 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WorkspacesInstancesClientConfig, WorkspacesInstancesClientResolvedConfig } from "../WorkspacesInstancesClient"; +import { + type WorkspacesInstancesClientResolvedConfig, + WorkspacesInstancesClientConfig, +} from "../WorkspacesInstancesClient"; /** * @internal diff --git a/clients/client-workspaces-instances/src/commands/AssociateVolumeCommand.ts b/clients/client-workspaces-instances/src/commands/AssociateVolumeCommand.ts index e164d976be3c3..ce429a71999ba 100644 --- a/clients/client-workspaces-instances/src/commands/AssociateVolumeCommand.ts +++ b/clients/client-workspaces-instances/src/commands/AssociateVolumeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateVolumeRequest, AssociateVolumeResponse } from "../models/models_0"; +import type { AssociateVolumeRequest, AssociateVolumeResponse } from "../models/models_0"; import { AssociateVolume } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/CreateVolumeCommand.ts b/clients/client-workspaces-instances/src/commands/CreateVolumeCommand.ts index 68cb5f4e14dd0..d77f52800da37 100644 --- a/clients/client-workspaces-instances/src/commands/CreateVolumeCommand.ts +++ b/clients/client-workspaces-instances/src/commands/CreateVolumeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateVolumeRequest, CreateVolumeResponse } from "../models/models_0"; +import type { CreateVolumeRequest, CreateVolumeResponse } from "../models/models_0"; import { CreateVolume } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/CreateWorkspaceInstanceCommand.ts b/clients/client-workspaces-instances/src/commands/CreateWorkspaceInstanceCommand.ts index 4a9cfb40fc524..f11def65e81a8 100644 --- a/clients/client-workspaces-instances/src/commands/CreateWorkspaceInstanceCommand.ts +++ b/clients/client-workspaces-instances/src/commands/CreateWorkspaceInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkspaceInstanceRequest, CreateWorkspaceInstanceResponse } from "../models/models_0"; +import type { CreateWorkspaceInstanceRequest, CreateWorkspaceInstanceResponse } from "../models/models_0"; import { CreateWorkspaceInstance } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/DeleteVolumeCommand.ts b/clients/client-workspaces-instances/src/commands/DeleteVolumeCommand.ts index f1808b0918474..d3afc38aaa9f4 100644 --- a/clients/client-workspaces-instances/src/commands/DeleteVolumeCommand.ts +++ b/clients/client-workspaces-instances/src/commands/DeleteVolumeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteVolumeRequest, DeleteVolumeResponse } from "../models/models_0"; +import type { DeleteVolumeRequest, DeleteVolumeResponse } from "../models/models_0"; import { DeleteVolume } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/DeleteWorkspaceInstanceCommand.ts b/clients/client-workspaces-instances/src/commands/DeleteWorkspaceInstanceCommand.ts index 8f8f6fe8d5ac8..de79d9e9bf366 100644 --- a/clients/client-workspaces-instances/src/commands/DeleteWorkspaceInstanceCommand.ts +++ b/clients/client-workspaces-instances/src/commands/DeleteWorkspaceInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkspaceInstanceRequest, DeleteWorkspaceInstanceResponse } from "../models/models_0"; +import type { DeleteWorkspaceInstanceRequest, DeleteWorkspaceInstanceResponse } from "../models/models_0"; import { DeleteWorkspaceInstance } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/DisassociateVolumeCommand.ts b/clients/client-workspaces-instances/src/commands/DisassociateVolumeCommand.ts index 30d622f77cc88..49d20c780431f 100644 --- a/clients/client-workspaces-instances/src/commands/DisassociateVolumeCommand.ts +++ b/clients/client-workspaces-instances/src/commands/DisassociateVolumeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateVolumeRequest, DisassociateVolumeResponse } from "../models/models_0"; +import type { DisassociateVolumeRequest, DisassociateVolumeResponse } from "../models/models_0"; import { DisassociateVolume } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/GetWorkspaceInstanceCommand.ts b/clients/client-workspaces-instances/src/commands/GetWorkspaceInstanceCommand.ts index 730f49fd8c7e5..52755a66de814 100644 --- a/clients/client-workspaces-instances/src/commands/GetWorkspaceInstanceCommand.ts +++ b/clients/client-workspaces-instances/src/commands/GetWorkspaceInstanceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetWorkspaceInstanceRequest, GetWorkspaceInstanceResponse } from "../models/models_0"; +import type { GetWorkspaceInstanceRequest, GetWorkspaceInstanceResponse } from "../models/models_0"; import { GetWorkspaceInstance } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/ListInstanceTypesCommand.ts b/clients/client-workspaces-instances/src/commands/ListInstanceTypesCommand.ts index 263c7a91676a3..a3cbd64f7e196 100644 --- a/clients/client-workspaces-instances/src/commands/ListInstanceTypesCommand.ts +++ b/clients/client-workspaces-instances/src/commands/ListInstanceTypesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListInstanceTypesRequest, ListInstanceTypesResponse } from "../models/models_0"; +import type { ListInstanceTypesRequest, ListInstanceTypesResponse } from "../models/models_0"; import { ListInstanceTypes } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/ListRegionsCommand.ts b/clients/client-workspaces-instances/src/commands/ListRegionsCommand.ts index 74fb40a089475..2d84ff29136f6 100644 --- a/clients/client-workspaces-instances/src/commands/ListRegionsCommand.ts +++ b/clients/client-workspaces-instances/src/commands/ListRegionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRegionsRequest, ListRegionsResponse } from "../models/models_0"; +import type { ListRegionsRequest, ListRegionsResponse } from "../models/models_0"; import { ListRegions } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/ListTagsForResourceCommand.ts b/clients/client-workspaces-instances/src/commands/ListTagsForResourceCommand.ts index 2e7eb4dca5bae..8d83efcf74b4e 100644 --- a/clients/client-workspaces-instances/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-workspaces-instances/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/ListWorkspaceInstancesCommand.ts b/clients/client-workspaces-instances/src/commands/ListWorkspaceInstancesCommand.ts index 59056122d4616..eef8cdf511c78 100644 --- a/clients/client-workspaces-instances/src/commands/ListWorkspaceInstancesCommand.ts +++ b/clients/client-workspaces-instances/src/commands/ListWorkspaceInstancesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListWorkspaceInstancesRequest, ListWorkspaceInstancesResponse } from "../models/models_0"; +import type { ListWorkspaceInstancesRequest, ListWorkspaceInstancesResponse } from "../models/models_0"; import { ListWorkspaceInstances } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/TagResourceCommand.ts b/clients/client-workspaces-instances/src/commands/TagResourceCommand.ts index 99be0729bb036..fd65bec695d01 100644 --- a/clients/client-workspaces-instances/src/commands/TagResourceCommand.ts +++ b/clients/client-workspaces-instances/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/commands/UntagResourceCommand.ts b/clients/client-workspaces-instances/src/commands/UntagResourceCommand.ts index 368afa3973d08..57a075be6bc9d 100644 --- a/clients/client-workspaces-instances/src/commands/UntagResourceCommand.ts +++ b/clients/client-workspaces-instances/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkspacesInstancesClientResolvedConfig, diff --git a/clients/client-workspaces-instances/src/endpoint/EndpointParameters.ts b/clients/client-workspaces-instances/src/endpoint/EndpointParameters.ts index aa58d7b136e0d..977ad9ae29823 100644 --- a/clients/client-workspaces-instances/src/endpoint/EndpointParameters.ts +++ b/clients/client-workspaces-instances/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-workspaces-instances/src/endpoint/endpointResolver.ts b/clients/client-workspaces-instances/src/endpoint/endpointResolver.ts index b08a72482ca0e..99aa501ef05e1 100644 --- a/clients/client-workspaces-instances/src/endpoint/endpointResolver.ts +++ b/clients/client-workspaces-instances/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-workspaces-instances/src/extensionConfiguration.ts b/clients/client-workspaces-instances/src/extensionConfiguration.ts index 17d63a59510b2..3c2425cd29a5f 100644 --- a/clients/client-workspaces-instances/src/extensionConfiguration.ts +++ b/clients/client-workspaces-instances/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-workspaces-instances/src/models/WorkspacesInstancesServiceException.ts b/clients/client-workspaces-instances/src/models/WorkspacesInstancesServiceException.ts index fb1c0ff37c089..4ac4dc75b685c 100644 --- a/clients/client-workspaces-instances/src/models/WorkspacesInstancesServiceException.ts +++ b/clients/client-workspaces-instances/src/models/WorkspacesInstancesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-workspaces-instances/src/models/errors.ts b/clients/client-workspaces-instances/src/models/errors.ts index be2ea3a796a15..b0320be1a1b81 100644 --- a/clients/client-workspaces-instances/src/models/errors.ts +++ b/clients/client-workspaces-instances/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-workspaces-instances/src/pagination/Interfaces.ts b/clients/client-workspaces-instances/src/pagination/Interfaces.ts index 319160d0ec3c7..5615b1104849f 100644 --- a/clients/client-workspaces-instances/src/pagination/Interfaces.ts +++ b/clients/client-workspaces-instances/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { WorkspacesInstancesClient } from "../WorkspacesInstancesClient"; diff --git a/clients/client-workspaces-instances/src/pagination/ListInstanceTypesPaginator.ts b/clients/client-workspaces-instances/src/pagination/ListInstanceTypesPaginator.ts index 2a440e3db1b69..154c846d96ea9 100644 --- a/clients/client-workspaces-instances/src/pagination/ListInstanceTypesPaginator.ts +++ b/clients/client-workspaces-instances/src/pagination/ListInstanceTypesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListInstanceTypesCommand, diff --git a/clients/client-workspaces-instances/src/pagination/ListRegionsPaginator.ts b/clients/client-workspaces-instances/src/pagination/ListRegionsPaginator.ts index 893acefc6b2a3..9f3d5a303a7ea 100644 --- a/clients/client-workspaces-instances/src/pagination/ListRegionsPaginator.ts +++ b/clients/client-workspaces-instances/src/pagination/ListRegionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListRegionsCommand, ListRegionsCommandInput, ListRegionsCommandOutput } from "../commands/ListRegionsCommand"; import { WorkspacesInstancesClient } from "../WorkspacesInstancesClient"; diff --git a/clients/client-workspaces-instances/src/pagination/ListWorkspaceInstancesPaginator.ts b/clients/client-workspaces-instances/src/pagination/ListWorkspaceInstancesPaginator.ts index 69d46fd11acec..1a696b707ba41 100644 --- a/clients/client-workspaces-instances/src/pagination/ListWorkspaceInstancesPaginator.ts +++ b/clients/client-workspaces-instances/src/pagination/ListWorkspaceInstancesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListWorkspaceInstancesCommand, diff --git a/clients/client-workspaces-instances/src/runtimeConfig.browser.ts b/clients/client-workspaces-instances/src/runtimeConfig.browser.ts index d8ec2cc933435..b2cfd3bbedcff 100644 --- a/clients/client-workspaces-instances/src/runtimeConfig.browser.ts +++ b/clients/client-workspaces-instances/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient"; /** * @internal diff --git a/clients/client-workspaces-instances/src/runtimeConfig.native.ts b/clients/client-workspaces-instances/src/runtimeConfig.native.ts index 3f48e611fe376..69ab09ad63cd1 100644 --- a/clients/client-workspaces-instances/src/runtimeConfig.native.ts +++ b/clients/client-workspaces-instances/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient"; +import type { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient"; /** * @internal diff --git a/clients/client-workspaces-instances/src/runtimeConfig.shared.ts b/clients/client-workspaces-instances/src/runtimeConfig.shared.ts index 6b16da508c19a..543e6b0abc898 100644 --- a/clients/client-workspaces-instances/src/runtimeConfig.shared.ts +++ b/clients/client-workspaces-instances/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWorkspacesInstancesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient"; +import type { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient"; /** * @internal diff --git a/clients/client-workspaces-instances/src/runtimeConfig.ts b/clients/client-workspaces-instances/src/runtimeConfig.ts index 6856b15ee24ab..85241dd6ac09e 100644 --- a/clients/client-workspaces-instances/src/runtimeConfig.ts +++ b/clients/client-workspaces-instances/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WorkspacesInstancesClientConfig } from "./WorkspacesInstancesClient"; /** * @internal diff --git a/clients/client-workspaces-instances/src/runtimeExtensions.ts b/clients/client-workspaces-instances/src/runtimeExtensions.ts index 0bd935668aa89..044fdbdb779e1 100644 --- a/clients/client-workspaces-instances/src/runtimeExtensions.ts +++ b/clients/client-workspaces-instances/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WorkspacesInstancesExtensionConfiguration } from "./extensionConfiguration"; +import type { WorkspacesInstancesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-workspaces-instances/src/schemas/schemas_0.ts b/clients/client-workspaces-instances/src/schemas/schemas_0.ts index c7a761826accc..ce1601839747e 100644 --- a/clients/client-workspaces-instances/src/schemas/schemas_0.ts +++ b/clients/client-workspaces-instances/src/schemas/schemas_0.ts @@ -236,7 +236,7 @@ const n0 = "com.amazonaws.workspacesinstances"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/clients/client-workspaces-thin-client/package.json b/clients/client-workspaces-thin-client/package.json index 35619d6f20353..e32b77d6e1da5 100644 --- a/clients/client-workspaces-thin-client/package.json +++ b/clients/client-workspaces-thin-client/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-workspaces-thin-client/src/WorkSpacesThinClient.ts b/clients/client-workspaces-thin-client/src/WorkSpacesThinClient.ts index d98d012046d95..2466141f02d6a 100644 --- a/clients/client-workspaces-thin-client/src/WorkSpacesThinClient.ts +++ b/clients/client-workspaces-thin-client/src/WorkSpacesThinClient.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateEnvironmentCommand, @@ -70,7 +70,7 @@ import { UpdateSoftwareSetCommandInput, UpdateSoftwareSetCommandOutput, } from "./commands/UpdateSoftwareSetCommand"; -import { WorkSpacesThinClientClient, WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient"; +import { WorkSpacesThinClientClient } from "./WorkSpacesThinClientClient"; const commands = { CreateEnvironmentCommand, diff --git a/clients/client-workspaces-thin-client/src/WorkSpacesThinClientClient.ts b/clients/client-workspaces-thin-client/src/WorkSpacesThinClientClient.ts index 627cf5a01d925..26171a698f7f2 100644 --- a/clients/client-workspaces-thin-client/src/WorkSpacesThinClientClient.ts +++ b/clients/client-workspaces-thin-client/src/WorkSpacesThinClientClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWorkSpacesThinClientHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand"; @@ -83,7 +92,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-workspaces-thin-client/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-workspaces-thin-client/src/auth/httpAuthExtensionConfiguration.ts index 302a6f63edac0..0b03300ee05ee 100644 --- a/clients/client-workspaces-thin-client/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-workspaces-thin-client/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WorkSpacesThinClientHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WorkSpacesThinClientHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-workspaces-thin-client/src/auth/httpAuthSchemeProvider.ts b/clients/client-workspaces-thin-client/src/auth/httpAuthSchemeProvider.ts index 558be32af986a..6ed89192208ef 100644 --- a/clients/client-workspaces-thin-client/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-workspaces-thin-client/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -17,8 +17,8 @@ import { import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; import { + type WorkSpacesThinClientClientResolvedConfig, WorkSpacesThinClientClientConfig, - WorkSpacesThinClientClientResolvedConfig, } from "../WorkSpacesThinClientClient"; /** diff --git a/clients/client-workspaces-thin-client/src/commands/CreateEnvironmentCommand.ts b/clients/client-workspaces-thin-client/src/commands/CreateEnvironmentCommand.ts index 488a440b69066..4c0d191d19e29 100644 --- a/clients/client-workspaces-thin-client/src/commands/CreateEnvironmentCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/CreateEnvironmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; +import type { CreateEnvironmentRequest, CreateEnvironmentResponse } from "../models/models_0"; import { CreateEnvironment } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/DeleteDeviceCommand.ts b/clients/client-workspaces-thin-client/src/commands/DeleteDeviceCommand.ts index 67374764b4004..fc366a75b0721 100644 --- a/clients/client-workspaces-thin-client/src/commands/DeleteDeviceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/DeleteDeviceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0"; +import type { DeleteDeviceRequest, DeleteDeviceResponse } from "../models/models_0"; import { DeleteDevice } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/DeleteEnvironmentCommand.ts b/clients/client-workspaces-thin-client/src/commands/DeleteEnvironmentCommand.ts index c4f53583f4a1f..a0b17648cdaf4 100644 --- a/clients/client-workspaces-thin-client/src/commands/DeleteEnvironmentCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/DeleteEnvironmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; +import type { DeleteEnvironmentRequest, DeleteEnvironmentResponse } from "../models/models_0"; import { DeleteEnvironment } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/DeregisterDeviceCommand.ts b/clients/client-workspaces-thin-client/src/commands/DeregisterDeviceCommand.ts index 1bff17738aa20..3c9fad8a15656 100644 --- a/clients/client-workspaces-thin-client/src/commands/DeregisterDeviceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/DeregisterDeviceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterDeviceRequest, DeregisterDeviceResponse } from "../models/models_0"; +import type { DeregisterDeviceRequest, DeregisterDeviceResponse } from "../models/models_0"; import { DeregisterDevice } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/GetDeviceCommand.ts b/clients/client-workspaces-thin-client/src/commands/GetDeviceCommand.ts index c2d4b0848d303..f11d13b210559 100644 --- a/clients/client-workspaces-thin-client/src/commands/GetDeviceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/GetDeviceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDeviceRequest, GetDeviceResponse } from "../models/models_0"; +import type { GetDeviceRequest, GetDeviceResponse } from "../models/models_0"; import { GetDevice } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/GetEnvironmentCommand.ts b/clients/client-workspaces-thin-client/src/commands/GetEnvironmentCommand.ts index 4cf4a385ee0e4..5c5c87e79b460 100644 --- a/clients/client-workspaces-thin-client/src/commands/GetEnvironmentCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/GetEnvironmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; +import type { GetEnvironmentRequest, GetEnvironmentResponse } from "../models/models_0"; import { GetEnvironment } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/GetSoftwareSetCommand.ts b/clients/client-workspaces-thin-client/src/commands/GetSoftwareSetCommand.ts index cb97f6dae8c4f..30d8d7adeeb1e 100644 --- a/clients/client-workspaces-thin-client/src/commands/GetSoftwareSetCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/GetSoftwareSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSoftwareSetRequest, GetSoftwareSetResponse } from "../models/models_0"; +import type { GetSoftwareSetRequest, GetSoftwareSetResponse } from "../models/models_0"; import { GetSoftwareSet } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/ListDevicesCommand.ts b/clients/client-workspaces-thin-client/src/commands/ListDevicesCommand.ts index 247a57bbc6b37..63d3764136426 100644 --- a/clients/client-workspaces-thin-client/src/commands/ListDevicesCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/ListDevicesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDevicesRequest, ListDevicesResponse } from "../models/models_0"; +import type { ListDevicesRequest, ListDevicesResponse } from "../models/models_0"; import { ListDevices } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/ListEnvironmentsCommand.ts b/clients/client-workspaces-thin-client/src/commands/ListEnvironmentsCommand.ts index 4fc2f2e6069d6..e3ef2af258a0b 100644 --- a/clients/client-workspaces-thin-client/src/commands/ListEnvironmentsCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/ListEnvironmentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; +import type { ListEnvironmentsRequest, ListEnvironmentsResponse } from "../models/models_0"; import { ListEnvironments } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/ListSoftwareSetsCommand.ts b/clients/client-workspaces-thin-client/src/commands/ListSoftwareSetsCommand.ts index 5d52777469932..bb0627d064ef4 100644 --- a/clients/client-workspaces-thin-client/src/commands/ListSoftwareSetsCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/ListSoftwareSetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSoftwareSetsRequest, ListSoftwareSetsResponse } from "../models/models_0"; +import type { ListSoftwareSetsRequest, ListSoftwareSetsResponse } from "../models/models_0"; import { ListSoftwareSets } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/ListTagsForResourceCommand.ts b/clients/client-workspaces-thin-client/src/commands/ListTagsForResourceCommand.ts index 8b59114506436..9aa5551e9a9e1 100644 --- a/clients/client-workspaces-thin-client/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/TagResourceCommand.ts b/clients/client-workspaces-thin-client/src/commands/TagResourceCommand.ts index 81e62f94fd3b4..660673bebeb08 100644 --- a/clients/client-workspaces-thin-client/src/commands/TagResourceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/UntagResourceCommand.ts b/clients/client-workspaces-thin-client/src/commands/UntagResourceCommand.ts index 4fbd27795dfc0..b387bc0cda4ba 100644 --- a/clients/client-workspaces-thin-client/src/commands/UntagResourceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/UpdateDeviceCommand.ts b/clients/client-workspaces-thin-client/src/commands/UpdateDeviceCommand.ts index 739b18dc164b2..5a9b2f9a096a0 100644 --- a/clients/client-workspaces-thin-client/src/commands/UpdateDeviceCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/UpdateDeviceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDeviceRequest, UpdateDeviceResponse } from "../models/models_0"; +import type { UpdateDeviceRequest, UpdateDeviceResponse } from "../models/models_0"; import { UpdateDevice } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/UpdateEnvironmentCommand.ts b/clients/client-workspaces-thin-client/src/commands/UpdateEnvironmentCommand.ts index bd06b249819e7..b85c54a452b65 100644 --- a/clients/client-workspaces-thin-client/src/commands/UpdateEnvironmentCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/UpdateEnvironmentCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateEnvironmentRequest, UpdateEnvironmentResponse } from "../models/models_0"; +import type { UpdateEnvironmentRequest, UpdateEnvironmentResponse } from "../models/models_0"; import { UpdateEnvironment } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/commands/UpdateSoftwareSetCommand.ts b/clients/client-workspaces-thin-client/src/commands/UpdateSoftwareSetCommand.ts index 084f3633a5456..5fe7c559b2e8f 100644 --- a/clients/client-workspaces-thin-client/src/commands/UpdateSoftwareSetCommand.ts +++ b/clients/client-workspaces-thin-client/src/commands/UpdateSoftwareSetCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSoftwareSetRequest, UpdateSoftwareSetResponse } from "../models/models_0"; +import type { UpdateSoftwareSetRequest, UpdateSoftwareSetResponse } from "../models/models_0"; import { UpdateSoftwareSet } from "../schemas/schemas_0"; -import { +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesThinClientClientResolvedConfig, diff --git a/clients/client-workspaces-thin-client/src/endpoint/EndpointParameters.ts b/clients/client-workspaces-thin-client/src/endpoint/EndpointParameters.ts index 7fde3f6a0671c..1ef029c2b6ef3 100644 --- a/clients/client-workspaces-thin-client/src/endpoint/EndpointParameters.ts +++ b/clients/client-workspaces-thin-client/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-workspaces-thin-client/src/endpoint/endpointResolver.ts b/clients/client-workspaces-thin-client/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-workspaces-thin-client/src/endpoint/endpointResolver.ts +++ b/clients/client-workspaces-thin-client/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-workspaces-thin-client/src/extensionConfiguration.ts b/clients/client-workspaces-thin-client/src/extensionConfiguration.ts index 72c2942f9bf7c..c60f6f8154615 100644 --- a/clients/client-workspaces-thin-client/src/extensionConfiguration.ts +++ b/clients/client-workspaces-thin-client/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-workspaces-thin-client/src/models/WorkSpacesThinClientServiceException.ts b/clients/client-workspaces-thin-client/src/models/WorkSpacesThinClientServiceException.ts index 1cd50c07cf93e..298c5d8f807c2 100644 --- a/clients/client-workspaces-thin-client/src/models/WorkSpacesThinClientServiceException.ts +++ b/clients/client-workspaces-thin-client/src/models/WorkSpacesThinClientServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-workspaces-thin-client/src/models/errors.ts b/clients/client-workspaces-thin-client/src/models/errors.ts index 4154a853cd256..1d054a415cb55 100644 --- a/clients/client-workspaces-thin-client/src/models/errors.ts +++ b/clients/client-workspaces-thin-client/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-workspaces-thin-client/src/pagination/Interfaces.ts b/clients/client-workspaces-thin-client/src/pagination/Interfaces.ts index a81948f0778a5..80a2cc4ba1ab9 100644 --- a/clients/client-workspaces-thin-client/src/pagination/Interfaces.ts +++ b/clients/client-workspaces-thin-client/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { WorkSpacesThinClientClient } from "../WorkSpacesThinClientClient"; diff --git a/clients/client-workspaces-thin-client/src/pagination/ListDevicesPaginator.ts b/clients/client-workspaces-thin-client/src/pagination/ListDevicesPaginator.ts index c107ee85e7630..4e782cdc69c9a 100644 --- a/clients/client-workspaces-thin-client/src/pagination/ListDevicesPaginator.ts +++ b/clients/client-workspaces-thin-client/src/pagination/ListDevicesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDevicesCommand, ListDevicesCommandInput, ListDevicesCommandOutput } from "../commands/ListDevicesCommand"; import { WorkSpacesThinClientClient } from "../WorkSpacesThinClientClient"; diff --git a/clients/client-workspaces-thin-client/src/pagination/ListEnvironmentsPaginator.ts b/clients/client-workspaces-thin-client/src/pagination/ListEnvironmentsPaginator.ts index b44d10427a69c..6bb5fbe323c38 100644 --- a/clients/client-workspaces-thin-client/src/pagination/ListEnvironmentsPaginator.ts +++ b/clients/client-workspaces-thin-client/src/pagination/ListEnvironmentsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListEnvironmentsCommand, diff --git a/clients/client-workspaces-thin-client/src/pagination/ListSoftwareSetsPaginator.ts b/clients/client-workspaces-thin-client/src/pagination/ListSoftwareSetsPaginator.ts index 4e83b5aefda06..dd02a85fa820e 100644 --- a/clients/client-workspaces-thin-client/src/pagination/ListSoftwareSetsPaginator.ts +++ b/clients/client-workspaces-thin-client/src/pagination/ListSoftwareSetsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSoftwareSetsCommand, diff --git a/clients/client-workspaces-thin-client/src/runtimeConfig.browser.ts b/clients/client-workspaces-thin-client/src/runtimeConfig.browser.ts index 1241d77f3b8a7..a265f63516a7b 100644 --- a/clients/client-workspaces-thin-client/src/runtimeConfig.browser.ts +++ b/clients/client-workspaces-thin-client/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient"; /** * @internal diff --git a/clients/client-workspaces-thin-client/src/runtimeConfig.native.ts b/clients/client-workspaces-thin-client/src/runtimeConfig.native.ts index 2a2253b04aaa4..c4a4cae062159 100644 --- a/clients/client-workspaces-thin-client/src/runtimeConfig.native.ts +++ b/clients/client-workspaces-thin-client/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient"; +import type { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient"; /** * @internal diff --git a/clients/client-workspaces-thin-client/src/runtimeConfig.shared.ts b/clients/client-workspaces-thin-client/src/runtimeConfig.shared.ts index 6f0305d0c4315..35a7f6b491237 100644 --- a/clients/client-workspaces-thin-client/src/runtimeConfig.shared.ts +++ b/clients/client-workspaces-thin-client/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWorkSpacesThinClientHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient"; +import type { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient"; /** * @internal diff --git a/clients/client-workspaces-thin-client/src/runtimeConfig.ts b/clients/client-workspaces-thin-client/src/runtimeConfig.ts index 644a0e07b03ea..581ddb7ff2a82 100644 --- a/clients/client-workspaces-thin-client/src/runtimeConfig.ts +++ b/clients/client-workspaces-thin-client/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient"; /** * @internal diff --git a/clients/client-workspaces-thin-client/src/runtimeExtensions.ts b/clients/client-workspaces-thin-client/src/runtimeExtensions.ts index 72708b18f7bcc..a11f9a1fc5ee9 100644 --- a/clients/client-workspaces-thin-client/src/runtimeExtensions.ts +++ b/clients/client-workspaces-thin-client/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WorkSpacesThinClientExtensionConfiguration } from "./extensionConfiguration"; +import type { WorkSpacesThinClientExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-workspaces-thin-client/src/schemas/schemas_0.ts b/clients/client-workspaces-thin-client/src/schemas/schemas_0.ts index f166178d07e68..2b76c8faae3a4 100644 --- a/clients/client-workspaces-thin-client/src/schemas/schemas_0.ts +++ b/clients/client-workspaces-thin-client/src/schemas/schemas_0.ts @@ -152,7 +152,7 @@ const n0 = "com.amazonaws.workspacesthinclient"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-workspaces-web/package.json b/clients/client-workspaces-web/package.json index 091689cd7b2ca..05ed6ac271608 100644 --- a/clients/client-workspaces-web/package.json +++ b/clients/client-workspaces-web/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-workspaces-web/src/WorkSpacesWeb.ts b/clients/client-workspaces-web/src/WorkSpacesWeb.ts index 15ead7d38f2b4..1afdc6897f06d 100644 --- a/clients/client-workspaces-web/src/WorkSpacesWeb.ts +++ b/clients/client-workspaces-web/src/WorkSpacesWeb.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssociateBrowserSettingsCommand, @@ -361,7 +361,7 @@ import { UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput, } from "./commands/UpdateUserSettingsCommand"; -import { WorkSpacesWebClient, WorkSpacesWebClientConfig } from "./WorkSpacesWebClient"; +import { WorkSpacesWebClient } from "./WorkSpacesWebClient"; const commands = { AssociateBrowserSettingsCommand, diff --git a/clients/client-workspaces-web/src/WorkSpacesWebClient.ts b/clients/client-workspaces-web/src/WorkSpacesWebClient.ts index b9af6dd83657e..33630242c2b95 100644 --- a/clients/client-workspaces-web/src/WorkSpacesWebClient.ts +++ b/clients/client-workspaces-web/src/WorkSpacesWebClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWorkSpacesWebHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -292,7 +301,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-workspaces-web/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-workspaces-web/src/auth/httpAuthExtensionConfiguration.ts index 4722db8a14893..1431bdf2d53b4 100644 --- a/clients/client-workspaces-web/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-workspaces-web/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WorkSpacesWebHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WorkSpacesWebHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-workspaces-web/src/auth/httpAuthSchemeProvider.ts b/clients/client-workspaces-web/src/auth/httpAuthSchemeProvider.ts index e2227997ff175..00e7bf8663cac 100644 --- a/clients/client-workspaces-web/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-workspaces-web/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WorkSpacesWebClientConfig, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import { type WorkSpacesWebClientResolvedConfig, WorkSpacesWebClientConfig } from "../WorkSpacesWebClient"; /** * @internal diff --git a/clients/client-workspaces-web/src/commands/AssociateBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateBrowserSettingsCommand.ts index 620c765a82307..c2e9bac1b7575 100644 --- a/clients/client-workspaces-web/src/commands/AssociateBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateBrowserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateBrowserSettingsRequest, AssociateBrowserSettingsResponse } from "../models/models_0"; +import type { AssociateBrowserSettingsRequest, AssociateBrowserSettingsResponse } from "../models/models_0"; import { AssociateBrowserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/AssociateDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateDataProtectionSettingsCommand.ts index 58ad69f2d06fc..6ed4ceea20806 100644 --- a/clients/client-workspaces-web/src/commands/AssociateDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateDataProtectionSettingsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateDataProtectionSettingsRequest, AssociateDataProtectionSettingsResponse } from "../models/models_0"; +import type { + AssociateDataProtectionSettingsRequest, + AssociateDataProtectionSettingsResponse, +} from "../models/models_0"; import { AssociateDataProtectionSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/AssociateIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateIpAccessSettingsCommand.ts index 91b72084e8326..c1c2053dec35d 100644 --- a/clients/client-workspaces-web/src/commands/AssociateIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateIpAccessSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateIpAccessSettingsRequest, AssociateIpAccessSettingsResponse } from "../models/models_0"; +import type { AssociateIpAccessSettingsRequest, AssociateIpAccessSettingsResponse } from "../models/models_0"; import { AssociateIpAccessSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/AssociateNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateNetworkSettingsCommand.ts index 90a718db626bf..088cbeb35b475 100644 --- a/clients/client-workspaces-web/src/commands/AssociateNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateNetworkSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateNetworkSettingsRequest, AssociateNetworkSettingsResponse } from "../models/models_0"; +import type { AssociateNetworkSettingsRequest, AssociateNetworkSettingsResponse } from "../models/models_0"; import { AssociateNetworkSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/AssociateSessionLoggerCommand.ts b/clients/client-workspaces-web/src/commands/AssociateSessionLoggerCommand.ts index faa651109fe04..75c62f1eadcd0 100644 --- a/clients/client-workspaces-web/src/commands/AssociateSessionLoggerCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateSessionLoggerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateSessionLoggerRequest, AssociateSessionLoggerResponse } from "../models/models_0"; +import type { AssociateSessionLoggerRequest, AssociateSessionLoggerResponse } from "../models/models_0"; import { AssociateSessionLogger } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/AssociateTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/AssociateTrustStoreCommand.ts index 59d230e9c4eb7..16ca4be591225 100644 --- a/clients/client-workspaces-web/src/commands/AssociateTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateTrustStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateTrustStoreRequest, AssociateTrustStoreResponse } from "../models/models_0"; +import type { AssociateTrustStoreRequest, AssociateTrustStoreResponse } from "../models/models_0"; import { AssociateTrustStore } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/AssociateUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateUserAccessLoggingSettingsCommand.ts index 9585d997ccba2..33e7325a79b05 100644 --- a/clients/client-workspaces-web/src/commands/AssociateUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateUserAccessLoggingSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { AssociateUserAccessLoggingSettingsRequest, AssociateUserAccessLoggingSettingsResponse, } from "../models/models_0"; import { AssociateUserAccessLoggingSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/AssociateUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/AssociateUserSettingsCommand.ts index 115ddbaa3263e..12f91d9c90d03 100644 --- a/clients/client-workspaces-web/src/commands/AssociateUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/AssociateUserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateUserSettingsRequest, AssociateUserSettingsResponse } from "../models/models_0"; +import type { AssociateUserSettingsRequest, AssociateUserSettingsResponse } from "../models/models_0"; import { AssociateUserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreateBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateBrowserSettingsCommand.ts index f9ec46ecdba9e..ac86ced99ef1e 100644 --- a/clients/client-workspaces-web/src/commands/CreateBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateBrowserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateBrowserSettingsRequest, CreateBrowserSettingsResponse } from "../models/models_0"; +import type { CreateBrowserSettingsRequest, CreateBrowserSettingsResponse } from "../models/models_0"; import { CreateBrowserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreateDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateDataProtectionSettingsCommand.ts index cae88849a938a..b13314e186cde 100644 --- a/clients/client-workspaces-web/src/commands/CreateDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateDataProtectionSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateDataProtectionSettingsRequest, CreateDataProtectionSettingsResponse } from "../models/models_0"; +import type { CreateDataProtectionSettingsRequest, CreateDataProtectionSettingsResponse } from "../models/models_0"; import { CreateDataProtectionSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreateIdentityProviderCommand.ts b/clients/client-workspaces-web/src/commands/CreateIdentityProviderCommand.ts index ca06b1479002d..0f72fa2601664 100644 --- a/clients/client-workspaces-web/src/commands/CreateIdentityProviderCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateIdentityProviderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIdentityProviderRequest, CreateIdentityProviderResponse } from "../models/models_0"; +import type { CreateIdentityProviderRequest, CreateIdentityProviderResponse } from "../models/models_0"; import { CreateIdentityProvider } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreateIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateIpAccessSettingsCommand.ts index 4e2ff37660ece..b96538b1a2e14 100644 --- a/clients/client-workspaces-web/src/commands/CreateIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateIpAccessSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIpAccessSettingsRequest, CreateIpAccessSettingsResponse } from "../models/models_0"; +import type { CreateIpAccessSettingsRequest, CreateIpAccessSettingsResponse } from "../models/models_0"; import { CreateIpAccessSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreateNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateNetworkSettingsCommand.ts index 86d51e08020f6..42cf503f5ddd6 100644 --- a/clients/client-workspaces-web/src/commands/CreateNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateNetworkSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateNetworkSettingsRequest, CreateNetworkSettingsResponse } from "../models/models_0"; +import type { CreateNetworkSettingsRequest, CreateNetworkSettingsResponse } from "../models/models_0"; import { CreateNetworkSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreatePortalCommand.ts b/clients/client-workspaces-web/src/commands/CreatePortalCommand.ts index c17d06e75f27c..f28e493290525 100644 --- a/clients/client-workspaces-web/src/commands/CreatePortalCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreatePortalCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreatePortalRequest, CreatePortalResponse } from "../models/models_0"; +import type { CreatePortalRequest, CreatePortalResponse } from "../models/models_0"; import { CreatePortal } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreateSessionLoggerCommand.ts b/clients/client-workspaces-web/src/commands/CreateSessionLoggerCommand.ts index b09cc9f479c5d..8c22a957ae3e6 100644 --- a/clients/client-workspaces-web/src/commands/CreateSessionLoggerCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateSessionLoggerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSessionLoggerRequest, CreateSessionLoggerResponse } from "../models/models_0"; +import type { CreateSessionLoggerRequest, CreateSessionLoggerResponse } from "../models/models_0"; import { CreateSessionLogger } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreateTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/CreateTrustStoreCommand.ts index 455e9b01aa5f7..8f105b5c7b73a 100644 --- a/clients/client-workspaces-web/src/commands/CreateTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateTrustStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTrustStoreRequest, CreateTrustStoreResponse } from "../models/models_0"; +import type { CreateTrustStoreRequest, CreateTrustStoreResponse } from "../models/models_0"; import { CreateTrustStore } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreateUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateUserAccessLoggingSettingsCommand.ts index f3e2e485fae60..56b608cda7033 100644 --- a/clients/client-workspaces-web/src/commands/CreateUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateUserAccessLoggingSettingsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserAccessLoggingSettingsRequest, CreateUserAccessLoggingSettingsResponse } from "../models/models_0"; +import type { + CreateUserAccessLoggingSettingsRequest, + CreateUserAccessLoggingSettingsResponse, +} from "../models/models_0"; import { CreateUserAccessLoggingSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/CreateUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/CreateUserSettingsCommand.ts index b25e235c502d5..e5c41eab74ddc 100644 --- a/clients/client-workspaces-web/src/commands/CreateUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/CreateUserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUserSettingsRequest, CreateUserSettingsResponse } from "../models/models_0"; +import type { CreateUserSettingsRequest, CreateUserSettingsResponse } from "../models/models_0"; import { CreateUserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeleteBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteBrowserSettingsCommand.ts index 11d86fa3532e0..a6a5228a008ff 100644 --- a/clients/client-workspaces-web/src/commands/DeleteBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteBrowserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteBrowserSettingsRequest, DeleteBrowserSettingsResponse } from "../models/models_0"; +import type { DeleteBrowserSettingsRequest, DeleteBrowserSettingsResponse } from "../models/models_0"; import { DeleteBrowserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeleteDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteDataProtectionSettingsCommand.ts index 6f26691aa49bc..6b6607662124b 100644 --- a/clients/client-workspaces-web/src/commands/DeleteDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteDataProtectionSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteDataProtectionSettingsRequest, DeleteDataProtectionSettingsResponse } from "../models/models_0"; +import type { DeleteDataProtectionSettingsRequest, DeleteDataProtectionSettingsResponse } from "../models/models_0"; import { DeleteDataProtectionSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeleteIdentityProviderCommand.ts b/clients/client-workspaces-web/src/commands/DeleteIdentityProviderCommand.ts index 74703067d261c..8f1de7d21105c 100644 --- a/clients/client-workspaces-web/src/commands/DeleteIdentityProviderCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteIdentityProviderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIdentityProviderRequest, DeleteIdentityProviderResponse } from "../models/models_0"; +import type { DeleteIdentityProviderRequest, DeleteIdentityProviderResponse } from "../models/models_0"; import { DeleteIdentityProvider } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeleteIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteIpAccessSettingsCommand.ts index d42ec2e6344e6..72632e1973c5e 100644 --- a/clients/client-workspaces-web/src/commands/DeleteIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteIpAccessSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIpAccessSettingsRequest, DeleteIpAccessSettingsResponse } from "../models/models_0"; +import type { DeleteIpAccessSettingsRequest, DeleteIpAccessSettingsResponse } from "../models/models_0"; import { DeleteIpAccessSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeleteNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteNetworkSettingsCommand.ts index 862f1bcbe98bb..f8314a56872c3 100644 --- a/clients/client-workspaces-web/src/commands/DeleteNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteNetworkSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteNetworkSettingsRequest, DeleteNetworkSettingsResponse } from "../models/models_0"; +import type { DeleteNetworkSettingsRequest, DeleteNetworkSettingsResponse } from "../models/models_0"; import { DeleteNetworkSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeletePortalCommand.ts b/clients/client-workspaces-web/src/commands/DeletePortalCommand.ts index 71ae45eacec24..0408e490286fc 100644 --- a/clients/client-workspaces-web/src/commands/DeletePortalCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeletePortalCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeletePortalRequest, DeletePortalResponse } from "../models/models_0"; +import type { DeletePortalRequest, DeletePortalResponse } from "../models/models_0"; import { DeletePortal } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeleteSessionLoggerCommand.ts b/clients/client-workspaces-web/src/commands/DeleteSessionLoggerCommand.ts index 87e108b93e305..d1fecdccea214 100644 --- a/clients/client-workspaces-web/src/commands/DeleteSessionLoggerCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteSessionLoggerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSessionLoggerRequest, DeleteSessionLoggerResponse } from "../models/models_0"; +import type { DeleteSessionLoggerRequest, DeleteSessionLoggerResponse } from "../models/models_0"; import { DeleteSessionLogger } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeleteTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/DeleteTrustStoreCommand.ts index 22de2d18afa38..f9499f8cd4aa2 100644 --- a/clients/client-workspaces-web/src/commands/DeleteTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteTrustStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTrustStoreRequest, DeleteTrustStoreResponse } from "../models/models_0"; +import type { DeleteTrustStoreRequest, DeleteTrustStoreResponse } from "../models/models_0"; import { DeleteTrustStore } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeleteUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteUserAccessLoggingSettingsCommand.ts index e9775d5c81005..8eb7847ea9612 100644 --- a/clients/client-workspaces-web/src/commands/DeleteUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteUserAccessLoggingSettingsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserAccessLoggingSettingsRequest, DeleteUserAccessLoggingSettingsResponse } from "../models/models_0"; +import type { + DeleteUserAccessLoggingSettingsRequest, + DeleteUserAccessLoggingSettingsResponse, +} from "../models/models_0"; import { DeleteUserAccessLoggingSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DeleteUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DeleteUserSettingsCommand.ts index 564a4b39020f1..ea01ba7a9b7d0 100644 --- a/clients/client-workspaces-web/src/commands/DeleteUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DeleteUserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteUserSettingsRequest, DeleteUserSettingsResponse } from "../models/models_0"; +import type { DeleteUserSettingsRequest, DeleteUserSettingsResponse } from "../models/models_0"; import { DeleteUserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DisassociateBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateBrowserSettingsCommand.ts index e1b985adb0e31..e98fc468a14dd 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateBrowserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateBrowserSettingsRequest, DisassociateBrowserSettingsResponse } from "../models/models_0"; +import type { DisassociateBrowserSettingsRequest, DisassociateBrowserSettingsResponse } from "../models/models_0"; import { DisassociateBrowserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DisassociateDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateDataProtectionSettingsCommand.ts index 3158bda41351b..2a2ad31bd95a3 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateDataProtectionSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateDataProtectionSettingsRequest, DisassociateDataProtectionSettingsResponse, } from "../models/models_0"; import { DisassociateDataProtectionSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DisassociateIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateIpAccessSettingsCommand.ts index a4aae7da2c8f7..7cbaa9f33432f 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateIpAccessSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateIpAccessSettingsRequest, DisassociateIpAccessSettingsResponse } from "../models/models_0"; +import type { DisassociateIpAccessSettingsRequest, DisassociateIpAccessSettingsResponse } from "../models/models_0"; import { DisassociateIpAccessSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DisassociateNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateNetworkSettingsCommand.ts index ee77c77732b1a..3dc3e5023ba8f 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateNetworkSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateNetworkSettingsRequest, DisassociateNetworkSettingsResponse } from "../models/models_0"; +import type { DisassociateNetworkSettingsRequest, DisassociateNetworkSettingsResponse } from "../models/models_0"; import { DisassociateNetworkSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DisassociateSessionLoggerCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateSessionLoggerCommand.ts index aa14e79fdf8c8..b8b36903047de 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateSessionLoggerCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateSessionLoggerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateSessionLoggerRequest, DisassociateSessionLoggerResponse } from "../models/models_0"; +import type { DisassociateSessionLoggerRequest, DisassociateSessionLoggerResponse } from "../models/models_0"; import { DisassociateSessionLogger } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DisassociateTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateTrustStoreCommand.ts index 0d4603d58679b..bea8cf79e484d 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateTrustStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateTrustStoreRequest, DisassociateTrustStoreResponse } from "../models/models_0"; +import type { DisassociateTrustStoreRequest, DisassociateTrustStoreResponse } from "../models/models_0"; import { DisassociateTrustStore } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DisassociateUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateUserAccessLoggingSettingsCommand.ts index 49b991d87d603..92b315549f652 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateUserAccessLoggingSettingsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DisassociateUserAccessLoggingSettingsRequest, DisassociateUserAccessLoggingSettingsResponse, } from "../models/models_0"; import { DisassociateUserAccessLoggingSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/DisassociateUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/DisassociateUserSettingsCommand.ts index 1af1c236f259f..ac172eafbd3ff 100644 --- a/clients/client-workspaces-web/src/commands/DisassociateUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/DisassociateUserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateUserSettingsRequest, DisassociateUserSettingsResponse } from "../models/models_0"; +import type { DisassociateUserSettingsRequest, DisassociateUserSettingsResponse } from "../models/models_0"; import { DisassociateUserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ExpireSessionCommand.ts b/clients/client-workspaces-web/src/commands/ExpireSessionCommand.ts index 51450192c83a9..852d84792d68a 100644 --- a/clients/client-workspaces-web/src/commands/ExpireSessionCommand.ts +++ b/clients/client-workspaces-web/src/commands/ExpireSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ExpireSessionRequest, ExpireSessionResponse } from "../models/models_0"; +import type { ExpireSessionRequest, ExpireSessionResponse } from "../models/models_0"; import { ExpireSession } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetBrowserSettingsCommand.ts index a26c558abf46b..56dcd60001543 100644 --- a/clients/client-workspaces-web/src/commands/GetBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetBrowserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetBrowserSettingsRequest, GetBrowserSettingsResponse } from "../models/models_0"; +import type { GetBrowserSettingsRequest, GetBrowserSettingsResponse } from "../models/models_0"; import { GetBrowserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetDataProtectionSettingsCommand.ts index 12d1af37fa102..971df53b19add 100644 --- a/clients/client-workspaces-web/src/commands/GetDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetDataProtectionSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetDataProtectionSettingsRequest, GetDataProtectionSettingsResponse } from "../models/models_0"; +import type { GetDataProtectionSettingsRequest, GetDataProtectionSettingsResponse } from "../models/models_0"; import { GetDataProtectionSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetIdentityProviderCommand.ts b/clients/client-workspaces-web/src/commands/GetIdentityProviderCommand.ts index 21d95aa6e8a2a..4671c594b99d2 100644 --- a/clients/client-workspaces-web/src/commands/GetIdentityProviderCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetIdentityProviderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIdentityProviderRequest, GetIdentityProviderResponse } from "../models/models_0"; +import type { GetIdentityProviderRequest, GetIdentityProviderResponse } from "../models/models_0"; import { GetIdentityProvider } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetIpAccessSettingsCommand.ts index 7ec5a1cb92f5e..cd144b3be8629 100644 --- a/clients/client-workspaces-web/src/commands/GetIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetIpAccessSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIpAccessSettingsRequest, GetIpAccessSettingsResponse } from "../models/models_0"; +import type { GetIpAccessSettingsRequest, GetIpAccessSettingsResponse } from "../models/models_0"; import { GetIpAccessSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetNetworkSettingsCommand.ts index 39c040c252775..242e0afa94d8e 100644 --- a/clients/client-workspaces-web/src/commands/GetNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetNetworkSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetNetworkSettingsRequest, GetNetworkSettingsResponse } from "../models/models_0"; +import type { GetNetworkSettingsRequest, GetNetworkSettingsResponse } from "../models/models_0"; import { GetNetworkSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetPortalCommand.ts b/clients/client-workspaces-web/src/commands/GetPortalCommand.ts index 07736c4ce3f6c..efc1288df3dbc 100644 --- a/clients/client-workspaces-web/src/commands/GetPortalCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetPortalCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPortalRequest, GetPortalResponse } from "../models/models_0"; +import type { GetPortalRequest, GetPortalResponse } from "../models/models_0"; import { GetPortal } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetPortalServiceProviderMetadataCommand.ts b/clients/client-workspaces-web/src/commands/GetPortalServiceProviderMetadataCommand.ts index 2853e7c11cf73..13dac08217d7e 100644 --- a/clients/client-workspaces-web/src/commands/GetPortalServiceProviderMetadataCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetPortalServiceProviderMetadataCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetPortalServiceProviderMetadataRequest, GetPortalServiceProviderMetadataResponse } from "../models/models_0"; +import type { + GetPortalServiceProviderMetadataRequest, + GetPortalServiceProviderMetadataResponse, +} from "../models/models_0"; import { GetPortalServiceProviderMetadata } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetSessionCommand.ts b/clients/client-workspaces-web/src/commands/GetSessionCommand.ts index 98ef12721fed5..cb88caceac91d 100644 --- a/clients/client-workspaces-web/src/commands/GetSessionCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionRequest, GetSessionResponse } from "../models/models_0"; +import type { GetSessionRequest, GetSessionResponse } from "../models/models_0"; import { GetSession } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetSessionLoggerCommand.ts b/clients/client-workspaces-web/src/commands/GetSessionLoggerCommand.ts index 9c19afcedfd4c..3ad287618e196 100644 --- a/clients/client-workspaces-web/src/commands/GetSessionLoggerCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetSessionLoggerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSessionLoggerRequest, GetSessionLoggerResponse } from "../models/models_0"; +import type { GetSessionLoggerRequest, GetSessionLoggerResponse } from "../models/models_0"; import { GetSessionLogger } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetTrustStoreCertificateCommand.ts b/clients/client-workspaces-web/src/commands/GetTrustStoreCertificateCommand.ts index b4ad23530808c..fef5490679ea3 100644 --- a/clients/client-workspaces-web/src/commands/GetTrustStoreCertificateCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetTrustStoreCertificateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrustStoreCertificateRequest, GetTrustStoreCertificateResponse } from "../models/models_0"; +import type { GetTrustStoreCertificateRequest, GetTrustStoreCertificateResponse } from "../models/models_0"; import { GetTrustStoreCertificate } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/GetTrustStoreCommand.ts index 29e430fb39338..200fa204f0260 100644 --- a/clients/client-workspaces-web/src/commands/GetTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetTrustStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTrustStoreRequest, GetTrustStoreResponse } from "../models/models_0"; +import type { GetTrustStoreRequest, GetTrustStoreResponse } from "../models/models_0"; import { GetTrustStore } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetUserAccessLoggingSettingsCommand.ts index 8221a34681f69..692d98650aaf1 100644 --- a/clients/client-workspaces-web/src/commands/GetUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetUserAccessLoggingSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserAccessLoggingSettingsRequest, GetUserAccessLoggingSettingsResponse } from "../models/models_0"; +import type { GetUserAccessLoggingSettingsRequest, GetUserAccessLoggingSettingsResponse } from "../models/models_0"; import { GetUserAccessLoggingSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/GetUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/GetUserSettingsCommand.ts index 9515a5cd59ba6..6cde75570da44 100644 --- a/clients/client-workspaces-web/src/commands/GetUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/GetUserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetUserSettingsRequest, GetUserSettingsResponse } from "../models/models_0"; +import type { GetUserSettingsRequest, GetUserSettingsResponse } from "../models/models_0"; import { GetUserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListBrowserSettingsCommand.ts index 8e72a72783bb6..ca9d9b15b64ad 100644 --- a/clients/client-workspaces-web/src/commands/ListBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListBrowserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListBrowserSettingsRequest, ListBrowserSettingsResponse } from "../models/models_0"; +import type { ListBrowserSettingsRequest, ListBrowserSettingsResponse } from "../models/models_0"; import { ListBrowserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListDataProtectionSettingsCommand.ts index ecbe388f5994d..7043892f06c35 100644 --- a/clients/client-workspaces-web/src/commands/ListDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListDataProtectionSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListDataProtectionSettingsRequest, ListDataProtectionSettingsResponse } from "../models/models_0"; +import type { ListDataProtectionSettingsRequest, ListDataProtectionSettingsResponse } from "../models/models_0"; import { ListDataProtectionSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListIdentityProvidersCommand.ts b/clients/client-workspaces-web/src/commands/ListIdentityProvidersCommand.ts index cb35482931a7e..8495c97f2b13c 100644 --- a/clients/client-workspaces-web/src/commands/ListIdentityProvidersCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListIdentityProvidersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0"; +import type { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0"; import { ListIdentityProviders } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListIpAccessSettingsCommand.ts index 71c7f9d34219b..9a644a1abdb15 100644 --- a/clients/client-workspaces-web/src/commands/ListIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListIpAccessSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListIpAccessSettingsRequest, ListIpAccessSettingsResponse } from "../models/models_0"; +import type { ListIpAccessSettingsRequest, ListIpAccessSettingsResponse } from "../models/models_0"; import { ListIpAccessSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListNetworkSettingsCommand.ts index 646660c74c08a..e008975e83212 100644 --- a/clients/client-workspaces-web/src/commands/ListNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListNetworkSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListNetworkSettingsRequest, ListNetworkSettingsResponse } from "../models/models_0"; +import type { ListNetworkSettingsRequest, ListNetworkSettingsResponse } from "../models/models_0"; import { ListNetworkSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListPortalsCommand.ts b/clients/client-workspaces-web/src/commands/ListPortalsCommand.ts index cee1cc1638d72..acbb8f69ba080 100644 --- a/clients/client-workspaces-web/src/commands/ListPortalsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListPortalsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListPortalsRequest, ListPortalsResponse } from "../models/models_0"; +import type { ListPortalsRequest, ListPortalsResponse } from "../models/models_0"; import { ListPortals } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListSessionLoggersCommand.ts b/clients/client-workspaces-web/src/commands/ListSessionLoggersCommand.ts index 2312b9ccc00b0..15409802116c1 100644 --- a/clients/client-workspaces-web/src/commands/ListSessionLoggersCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListSessionLoggersCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSessionLoggersRequest, ListSessionLoggersResponse } from "../models/models_0"; +import type { ListSessionLoggersRequest, ListSessionLoggersResponse } from "../models/models_0"; import { ListSessionLoggers } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListSessionsCommand.ts b/clients/client-workspaces-web/src/commands/ListSessionsCommand.ts index d3364e8f36f84..0f4c6da65b177 100644 --- a/clients/client-workspaces-web/src/commands/ListSessionsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListSessionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; +import type { ListSessionsRequest, ListSessionsResponse } from "../models/models_0"; import { ListSessions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListTagsForResourceCommand.ts b/clients/client-workspaces-web/src/commands/ListTagsForResourceCommand.ts index f001d72d26368..67447fa91ec3e 100644 --- a/clients/client-workspaces-web/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListTrustStoreCertificatesCommand.ts b/clients/client-workspaces-web/src/commands/ListTrustStoreCertificatesCommand.ts index 2a5fe32e9ecad..d89c744fb691b 100644 --- a/clients/client-workspaces-web/src/commands/ListTrustStoreCertificatesCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListTrustStoreCertificatesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrustStoreCertificatesRequest, ListTrustStoreCertificatesResponse } from "../models/models_0"; +import type { ListTrustStoreCertificatesRequest, ListTrustStoreCertificatesResponse } from "../models/models_0"; import { ListTrustStoreCertificates } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListTrustStoresCommand.ts b/clients/client-workspaces-web/src/commands/ListTrustStoresCommand.ts index 2d9f2079c06d6..fff7c31beb164 100644 --- a/clients/client-workspaces-web/src/commands/ListTrustStoresCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListTrustStoresCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTrustStoresRequest, ListTrustStoresResponse } from "../models/models_0"; +import type { ListTrustStoresRequest, ListTrustStoresResponse } from "../models/models_0"; import { ListTrustStores } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListUserAccessLoggingSettingsCommand.ts index 67eb6966f3671..ed6a0dccd7529 100644 --- a/clients/client-workspaces-web/src/commands/ListUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListUserAccessLoggingSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUserAccessLoggingSettingsRequest, ListUserAccessLoggingSettingsResponse } from "../models/models_0"; +import type { ListUserAccessLoggingSettingsRequest, ListUserAccessLoggingSettingsResponse } from "../models/models_0"; import { ListUserAccessLoggingSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/ListUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/ListUserSettingsCommand.ts index ac363b97f9786..cda54a8bbe155 100644 --- a/clients/client-workspaces-web/src/commands/ListUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/ListUserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListUserSettingsRequest, ListUserSettingsResponse } from "../models/models_0"; +import type { ListUserSettingsRequest, ListUserSettingsResponse } from "../models/models_0"; import { ListUserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/TagResourceCommand.ts b/clients/client-workspaces-web/src/commands/TagResourceCommand.ts index 97e0f52035a07..bb27250c37854 100644 --- a/clients/client-workspaces-web/src/commands/TagResourceCommand.ts +++ b/clients/client-workspaces-web/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UntagResourceCommand.ts b/clients/client-workspaces-web/src/commands/UntagResourceCommand.ts index ecd9b62ed14fc..33dc1515862f3 100644 --- a/clients/client-workspaces-web/src/commands/UntagResourceCommand.ts +++ b/clients/client-workspaces-web/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdateBrowserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateBrowserSettingsCommand.ts index 2ddf02d6891ee..360afb4367dec 100644 --- a/clients/client-workspaces-web/src/commands/UpdateBrowserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateBrowserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateBrowserSettingsRequest, UpdateBrowserSettingsResponse } from "../models/models_0"; +import type { UpdateBrowserSettingsRequest, UpdateBrowserSettingsResponse } from "../models/models_0"; import { UpdateBrowserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdateDataProtectionSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateDataProtectionSettingsCommand.ts index e813775cb99e1..d9f94ce8f656d 100644 --- a/clients/client-workspaces-web/src/commands/UpdateDataProtectionSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateDataProtectionSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateDataProtectionSettingsRequest, UpdateDataProtectionSettingsResponse } from "../models/models_0"; +import type { UpdateDataProtectionSettingsRequest, UpdateDataProtectionSettingsResponse } from "../models/models_0"; import { UpdateDataProtectionSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdateIdentityProviderCommand.ts b/clients/client-workspaces-web/src/commands/UpdateIdentityProviderCommand.ts index a421f5635ac17..c7ea86a28f49f 100644 --- a/clients/client-workspaces-web/src/commands/UpdateIdentityProviderCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateIdentityProviderCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIdentityProviderRequest, UpdateIdentityProviderResponse } from "../models/models_0"; +import type { UpdateIdentityProviderRequest, UpdateIdentityProviderResponse } from "../models/models_0"; import { UpdateIdentityProvider } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdateIpAccessSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateIpAccessSettingsCommand.ts index 4b5ed62b96f20..4862da7980197 100644 --- a/clients/client-workspaces-web/src/commands/UpdateIpAccessSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateIpAccessSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIpAccessSettingsRequest, UpdateIpAccessSettingsResponse } from "../models/models_0"; +import type { UpdateIpAccessSettingsRequest, UpdateIpAccessSettingsResponse } from "../models/models_0"; import { UpdateIpAccessSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdateNetworkSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateNetworkSettingsCommand.ts index 065298a07f795..bf622550045a4 100644 --- a/clients/client-workspaces-web/src/commands/UpdateNetworkSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateNetworkSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateNetworkSettingsRequest, UpdateNetworkSettingsResponse } from "../models/models_0"; +import type { UpdateNetworkSettingsRequest, UpdateNetworkSettingsResponse } from "../models/models_0"; import { UpdateNetworkSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdatePortalCommand.ts b/clients/client-workspaces-web/src/commands/UpdatePortalCommand.ts index 8a1f5caa9fcd4..e02ec506940e6 100644 --- a/clients/client-workspaces-web/src/commands/UpdatePortalCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdatePortalCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_0"; +import type { UpdatePortalRequest, UpdatePortalResponse } from "../models/models_0"; import { UpdatePortal } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdateSessionLoggerCommand.ts b/clients/client-workspaces-web/src/commands/UpdateSessionLoggerCommand.ts index 1f11635ab81b7..e454a01159d87 100644 --- a/clients/client-workspaces-web/src/commands/UpdateSessionLoggerCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateSessionLoggerCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSessionLoggerRequest, UpdateSessionLoggerResponse } from "../models/models_0"; +import type { UpdateSessionLoggerRequest, UpdateSessionLoggerResponse } from "../models/models_0"; import { UpdateSessionLogger } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdateTrustStoreCommand.ts b/clients/client-workspaces-web/src/commands/UpdateTrustStoreCommand.ts index b5910133c436e..97465a524f0a6 100644 --- a/clients/client-workspaces-web/src/commands/UpdateTrustStoreCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateTrustStoreCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTrustStoreRequest, UpdateTrustStoreResponse } from "../models/models_0"; +import type { UpdateTrustStoreRequest, UpdateTrustStoreResponse } from "../models/models_0"; import { UpdateTrustStore } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdateUserAccessLoggingSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateUserAccessLoggingSettingsCommand.ts index 4191e26ca4c05..b7ce39ad481f2 100644 --- a/clients/client-workspaces-web/src/commands/UpdateUserAccessLoggingSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateUserAccessLoggingSettingsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserAccessLoggingSettingsRequest, UpdateUserAccessLoggingSettingsResponse } from "../models/models_0"; +import type { + UpdateUserAccessLoggingSettingsRequest, + UpdateUserAccessLoggingSettingsResponse, +} from "../models/models_0"; import { UpdateUserAccessLoggingSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/commands/UpdateUserSettingsCommand.ts b/clients/client-workspaces-web/src/commands/UpdateUserSettingsCommand.ts index 1d97805a085ed..c218ec76fded7 100644 --- a/clients/client-workspaces-web/src/commands/UpdateUserSettingsCommand.ts +++ b/clients/client-workspaces-web/src/commands/UpdateUserSettingsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateUserSettingsRequest, UpdateUserSettingsResponse } from "../models/models_0"; +import type { UpdateUserSettingsRequest, UpdateUserSettingsResponse } from "../models/models_0"; import { UpdateUserSettings } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient"; /** * @public diff --git a/clients/client-workspaces-web/src/endpoint/EndpointParameters.ts b/clients/client-workspaces-web/src/endpoint/EndpointParameters.ts index 6dc29832efa6f..34d360249f864 100644 --- a/clients/client-workspaces-web/src/endpoint/EndpointParameters.ts +++ b/clients/client-workspaces-web/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-workspaces-web/src/endpoint/endpointResolver.ts b/clients/client-workspaces-web/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-workspaces-web/src/endpoint/endpointResolver.ts +++ b/clients/client-workspaces-web/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-workspaces-web/src/extensionConfiguration.ts b/clients/client-workspaces-web/src/extensionConfiguration.ts index 1ac615f76ad37..0bd02498cbbe4 100644 --- a/clients/client-workspaces-web/src/extensionConfiguration.ts +++ b/clients/client-workspaces-web/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-workspaces-web/src/models/WorkSpacesWebServiceException.ts b/clients/client-workspaces-web/src/models/WorkSpacesWebServiceException.ts index 1a6169053a3ba..0f569db69dc92 100644 --- a/clients/client-workspaces-web/src/models/WorkSpacesWebServiceException.ts +++ b/clients/client-workspaces-web/src/models/WorkSpacesWebServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-workspaces-web/src/models/errors.ts b/clients/client-workspaces-web/src/models/errors.ts index 6c05f6b4bd5ba..5119bceeaa475 100644 --- a/clients/client-workspaces-web/src/models/errors.ts +++ b/clients/client-workspaces-web/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionReason } from "./enums"; import { ValidationExceptionField } from "./models_0"; diff --git a/clients/client-workspaces-web/src/pagination/Interfaces.ts b/clients/client-workspaces-web/src/pagination/Interfaces.ts index 7899b1aec1c33..b326339c47fef 100644 --- a/clients/client-workspaces-web/src/pagination/Interfaces.ts +++ b/clients/client-workspaces-web/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { WorkSpacesWebClient } from "../WorkSpacesWebClient"; diff --git a/clients/client-workspaces-web/src/pagination/ListBrowserSettingsPaginator.ts b/clients/client-workspaces-web/src/pagination/ListBrowserSettingsPaginator.ts index 01fc9dfc1cbfd..aadec06a8a5bb 100644 --- a/clients/client-workspaces-web/src/pagination/ListBrowserSettingsPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListBrowserSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListBrowserSettingsCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListDataProtectionSettingsPaginator.ts b/clients/client-workspaces-web/src/pagination/ListDataProtectionSettingsPaginator.ts index 1e804d4ed6808..0908a07a5003a 100644 --- a/clients/client-workspaces-web/src/pagination/ListDataProtectionSettingsPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListDataProtectionSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListDataProtectionSettingsCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListIdentityProvidersPaginator.ts b/clients/client-workspaces-web/src/pagination/ListIdentityProvidersPaginator.ts index a35a495e849fb..ec8e4139b1b20 100644 --- a/clients/client-workspaces-web/src/pagination/ListIdentityProvidersPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListIdentityProvidersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIdentityProvidersCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListIpAccessSettingsPaginator.ts b/clients/client-workspaces-web/src/pagination/ListIpAccessSettingsPaginator.ts index 36f79475dae1a..6e5019792c247 100644 --- a/clients/client-workspaces-web/src/pagination/ListIpAccessSettingsPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListIpAccessSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListIpAccessSettingsCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListNetworkSettingsPaginator.ts b/clients/client-workspaces-web/src/pagination/ListNetworkSettingsPaginator.ts index df8d3afc230a7..14bd165f9d84d 100644 --- a/clients/client-workspaces-web/src/pagination/ListNetworkSettingsPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListNetworkSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListNetworkSettingsCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListPortalsPaginator.ts b/clients/client-workspaces-web/src/pagination/ListPortalsPaginator.ts index 5d53d3e174351..7e6a173f1a8ce 100644 --- a/clients/client-workspaces-web/src/pagination/ListPortalsPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListPortalsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListPortalsCommand, ListPortalsCommandInput, ListPortalsCommandOutput } from "../commands/ListPortalsCommand"; import { WorkSpacesWebClient } from "../WorkSpacesWebClient"; diff --git a/clients/client-workspaces-web/src/pagination/ListSessionLoggersPaginator.ts b/clients/client-workspaces-web/src/pagination/ListSessionLoggersPaginator.ts index ee37418e6d124..4c4cad089655f 100644 --- a/clients/client-workspaces-web/src/pagination/ListSessionLoggersPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListSessionLoggersPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSessionLoggersCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListSessionsPaginator.ts b/clients/client-workspaces-web/src/pagination/ListSessionsPaginator.ts index 45b2a24c72c23..3205e6e8a4280 100644 --- a/clients/client-workspaces-web/src/pagination/ListSessionsPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListSessionsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListSessionsCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListTrustStoreCertificatesPaginator.ts b/clients/client-workspaces-web/src/pagination/ListTrustStoreCertificatesPaginator.ts index 61f9bd7df4e41..ede84ddf9eab1 100644 --- a/clients/client-workspaces-web/src/pagination/ListTrustStoreCertificatesPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListTrustStoreCertificatesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrustStoreCertificatesCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListTrustStoresPaginator.ts b/clients/client-workspaces-web/src/pagination/ListTrustStoresPaginator.ts index b3ba9f0db94c4..1585ce0ab5c51 100644 --- a/clients/client-workspaces-web/src/pagination/ListTrustStoresPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListTrustStoresPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTrustStoresCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListUserAccessLoggingSettingsPaginator.ts b/clients/client-workspaces-web/src/pagination/ListUserAccessLoggingSettingsPaginator.ts index ddd433da04b57..a2f0b4d6de963 100644 --- a/clients/client-workspaces-web/src/pagination/ListUserAccessLoggingSettingsPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListUserAccessLoggingSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUserAccessLoggingSettingsCommand, diff --git a/clients/client-workspaces-web/src/pagination/ListUserSettingsPaginator.ts b/clients/client-workspaces-web/src/pagination/ListUserSettingsPaginator.ts index dae82c62020d8..13c9d8309a092 100644 --- a/clients/client-workspaces-web/src/pagination/ListUserSettingsPaginator.ts +++ b/clients/client-workspaces-web/src/pagination/ListUserSettingsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListUserSettingsCommand, diff --git a/clients/client-workspaces-web/src/runtimeConfig.browser.ts b/clients/client-workspaces-web/src/runtimeConfig.browser.ts index 059367c2ab409..ac2c4f27da32c 100644 --- a/clients/client-workspaces-web/src/runtimeConfig.browser.ts +++ b/clients/client-workspaces-web/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient"; /** * @internal diff --git a/clients/client-workspaces-web/src/runtimeConfig.native.ts b/clients/client-workspaces-web/src/runtimeConfig.native.ts index 7eccbab51fbd3..aa2dd1dab8def 100644 --- a/clients/client-workspaces-web/src/runtimeConfig.native.ts +++ b/clients/client-workspaces-web/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient"; +import type { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient"; /** * @internal diff --git a/clients/client-workspaces-web/src/runtimeConfig.shared.ts b/clients/client-workspaces-web/src/runtimeConfig.shared.ts index 3f5c4be5788af..71918ee338b7d 100644 --- a/clients/client-workspaces-web/src/runtimeConfig.shared.ts +++ b/clients/client-workspaces-web/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWorkSpacesWebHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient"; +import type { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient"; /** * @internal diff --git a/clients/client-workspaces-web/src/runtimeConfig.ts b/clients/client-workspaces-web/src/runtimeConfig.ts index 6d49dabf8683b..02728436804e6 100644 --- a/clients/client-workspaces-web/src/runtimeConfig.ts +++ b/clients/client-workspaces-web/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WorkSpacesWebClientConfig } from "./WorkSpacesWebClient"; /** * @internal diff --git a/clients/client-workspaces-web/src/runtimeExtensions.ts b/clients/client-workspaces-web/src/runtimeExtensions.ts index ca8f95c9218b3..70544bc3821e9 100644 --- a/clients/client-workspaces-web/src/runtimeExtensions.ts +++ b/clients/client-workspaces-web/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WorkSpacesWebExtensionConfiguration } from "./extensionConfiguration"; +import type { WorkSpacesWebExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-workspaces-web/src/schemas/schemas_0.ts b/clients/client-workspaces-web/src/schemas/schemas_0.ts index e058aa7cf6f01..aede7151415fd 100644 --- a/clients/client-workspaces-web/src/schemas/schemas_0.ts +++ b/clients/client-workspaces-web/src/schemas/schemas_0.ts @@ -463,7 +463,7 @@ const n0 = "com.amazonaws.workspacesweb"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-workspaces/package.json b/clients/client-workspaces/package.json index a93a359e79354..dd30b9b4a0bb2 100644 --- a/clients/client-workspaces/package.json +++ b/clients/client-workspaces/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-workspaces/src/WorkSpaces.ts b/clients/client-workspaces/src/WorkSpaces.ts index 1be3b393e2ec3..a808eeb262b99 100644 --- a/clients/client-workspaces/src/WorkSpaces.ts +++ b/clients/client-workspaces/src/WorkSpaces.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AcceptAccountLinkInvitationCommand, @@ -449,7 +449,7 @@ import { UpdateWorkspacesPoolCommandInput, UpdateWorkspacesPoolCommandOutput, } from "./commands/UpdateWorkspacesPoolCommand"; -import { WorkSpacesClient, WorkSpacesClientConfig } from "./WorkSpacesClient"; +import { WorkSpacesClient } from "./WorkSpacesClient"; const commands = { AcceptAccountLinkInvitationCommand, diff --git a/clients/client-workspaces/src/WorkSpacesClient.ts b/clients/client-workspaces/src/WorkSpacesClient.ts index e7dda4fd6dd9f..cb34a49f57f45 100644 --- a/clients/client-workspaces/src/WorkSpacesClient.ts +++ b/clients/client-workspaces/src/WorkSpacesClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWorkSpacesHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -359,7 +368,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-workspaces/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-workspaces/src/auth/httpAuthExtensionConfiguration.ts index 1ac07e620afb9..7eb5475421ff0 100644 --- a/clients/client-workspaces/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-workspaces/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { WorkSpacesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { WorkSpacesHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-workspaces/src/auth/httpAuthSchemeProvider.ts b/clients/client-workspaces/src/auth/httpAuthSchemeProvider.ts index 1b85094111ef4..eb72fd2e73444 100644 --- a/clients/client-workspaces/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-workspaces/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { WorkSpacesClientConfig, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import { type WorkSpacesClientResolvedConfig, WorkSpacesClientConfig } from "../WorkSpacesClient"; /** * @internal diff --git a/clients/client-workspaces/src/commands/AcceptAccountLinkInvitationCommand.ts b/clients/client-workspaces/src/commands/AcceptAccountLinkInvitationCommand.ts index 93bd652a18431..751dabcf9feba 100644 --- a/clients/client-workspaces/src/commands/AcceptAccountLinkInvitationCommand.ts +++ b/clients/client-workspaces/src/commands/AcceptAccountLinkInvitationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AcceptAccountLinkInvitationRequest, AcceptAccountLinkInvitationResult } from "../models/models_0"; +import type { AcceptAccountLinkInvitationRequest, AcceptAccountLinkInvitationResult } from "../models/models_0"; import { AcceptAccountLinkInvitation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/AssociateConnectionAliasCommand.ts b/clients/client-workspaces/src/commands/AssociateConnectionAliasCommand.ts index f09805f00c9a9..4bebae302d603 100644 --- a/clients/client-workspaces/src/commands/AssociateConnectionAliasCommand.ts +++ b/clients/client-workspaces/src/commands/AssociateConnectionAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateConnectionAliasRequest, AssociateConnectionAliasResult } from "../models/models_0"; +import type { AssociateConnectionAliasRequest, AssociateConnectionAliasResult } from "../models/models_0"; import { AssociateConnectionAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/AssociateIpGroupsCommand.ts b/clients/client-workspaces/src/commands/AssociateIpGroupsCommand.ts index 3808486cd4ba9..00034ac85810c 100644 --- a/clients/client-workspaces/src/commands/AssociateIpGroupsCommand.ts +++ b/clients/client-workspaces/src/commands/AssociateIpGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateIpGroupsRequest, AssociateIpGroupsResult } from "../models/models_0"; +import type { AssociateIpGroupsRequest, AssociateIpGroupsResult } from "../models/models_0"; import { AssociateIpGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/AssociateWorkspaceApplicationCommand.ts b/clients/client-workspaces/src/commands/AssociateWorkspaceApplicationCommand.ts index 5b36aee1d8ef0..305f7224ef3bb 100644 --- a/clients/client-workspaces/src/commands/AssociateWorkspaceApplicationCommand.ts +++ b/clients/client-workspaces/src/commands/AssociateWorkspaceApplicationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssociateWorkspaceApplicationRequest, AssociateWorkspaceApplicationResult } from "../models/models_0"; +import type { AssociateWorkspaceApplicationRequest, AssociateWorkspaceApplicationResult } from "../models/models_0"; import { AssociateWorkspaceApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/AuthorizeIpRulesCommand.ts b/clients/client-workspaces/src/commands/AuthorizeIpRulesCommand.ts index 4b5733f42bfe1..054ab9f270f6b 100644 --- a/clients/client-workspaces/src/commands/AuthorizeIpRulesCommand.ts +++ b/clients/client-workspaces/src/commands/AuthorizeIpRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AuthorizeIpRulesRequest, AuthorizeIpRulesResult } from "../models/models_0"; +import type { AuthorizeIpRulesRequest, AuthorizeIpRulesResult } from "../models/models_0"; import { AuthorizeIpRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CopyWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/CopyWorkspaceImageCommand.ts index 7b5ca50558b0f..5796692db7625 100644 --- a/clients/client-workspaces/src/commands/CopyWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/CopyWorkspaceImageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CopyWorkspaceImageRequest, CopyWorkspaceImageResult } from "../models/models_0"; +import type { CopyWorkspaceImageRequest, CopyWorkspaceImageResult } from "../models/models_0"; import { CopyWorkspaceImage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateAccountLinkInvitationCommand.ts b/clients/client-workspaces/src/commands/CreateAccountLinkInvitationCommand.ts index 246a16325a834..f407667248d08 100644 --- a/clients/client-workspaces/src/commands/CreateAccountLinkInvitationCommand.ts +++ b/clients/client-workspaces/src/commands/CreateAccountLinkInvitationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateAccountLinkInvitationRequest, CreateAccountLinkInvitationResult } from "../models/models_0"; +import type { CreateAccountLinkInvitationRequest, CreateAccountLinkInvitationResult } from "../models/models_0"; import { CreateAccountLinkInvitation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateConnectClientAddInCommand.ts b/clients/client-workspaces/src/commands/CreateConnectClientAddInCommand.ts index dfbc99e176339..61bf3bb78c065 100644 --- a/clients/client-workspaces/src/commands/CreateConnectClientAddInCommand.ts +++ b/clients/client-workspaces/src/commands/CreateConnectClientAddInCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectClientAddInRequest, CreateConnectClientAddInResult } from "../models/models_0"; +import type { CreateConnectClientAddInRequest, CreateConnectClientAddInResult } from "../models/models_0"; import { CreateConnectClientAddIn } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateConnectionAliasCommand.ts b/clients/client-workspaces/src/commands/CreateConnectionAliasCommand.ts index 9605a93258981..849d3102cce0b 100644 --- a/clients/client-workspaces/src/commands/CreateConnectionAliasCommand.ts +++ b/clients/client-workspaces/src/commands/CreateConnectionAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateConnectionAliasRequest, CreateConnectionAliasResult } from "../models/models_0"; +import type { CreateConnectionAliasRequest, CreateConnectionAliasResult } from "../models/models_0"; import { CreateConnectionAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateIpGroupCommand.ts b/clients/client-workspaces/src/commands/CreateIpGroupCommand.ts index c1c81041746a0..9c8706ed5f1fa 100644 --- a/clients/client-workspaces/src/commands/CreateIpGroupCommand.ts +++ b/clients/client-workspaces/src/commands/CreateIpGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateIpGroupRequest, CreateIpGroupResult } from "../models/models_0"; +import type { CreateIpGroupRequest, CreateIpGroupResult } from "../models/models_0"; import { CreateIpGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateStandbyWorkspacesCommand.ts b/clients/client-workspaces/src/commands/CreateStandbyWorkspacesCommand.ts index 0e7280ffe9d03..543bae10279f6 100644 --- a/clients/client-workspaces/src/commands/CreateStandbyWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/CreateStandbyWorkspacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateStandbyWorkspacesRequest, CreateStandbyWorkspacesResult } from "../models/models_0"; +import type { CreateStandbyWorkspacesRequest, CreateStandbyWorkspacesResult } from "../models/models_0"; import { CreateStandbyWorkspaces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateTagsCommand.ts b/clients/client-workspaces/src/commands/CreateTagsCommand.ts index c96f96235a9a4..3f637f1afb93e 100644 --- a/clients/client-workspaces/src/commands/CreateTagsCommand.ts +++ b/clients/client-workspaces/src/commands/CreateTagsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTagsRequest, CreateTagsResult } from "../models/models_0"; +import type { CreateTagsRequest, CreateTagsResult } from "../models/models_0"; import { CreateTags } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateUpdatedWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/CreateUpdatedWorkspaceImageCommand.ts index b3c7445cf10ba..a3e23b8b4dbcc 100644 --- a/clients/client-workspaces/src/commands/CreateUpdatedWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/CreateUpdatedWorkspaceImageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateUpdatedWorkspaceImageRequest, CreateUpdatedWorkspaceImageResult } from "../models/models_0"; +import type { CreateUpdatedWorkspaceImageRequest, CreateUpdatedWorkspaceImageResult } from "../models/models_0"; import { CreateUpdatedWorkspaceImage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateWorkspaceBundleCommand.ts b/clients/client-workspaces/src/commands/CreateWorkspaceBundleCommand.ts index f98b231daec0c..ec655a5a5ad8f 100644 --- a/clients/client-workspaces/src/commands/CreateWorkspaceBundleCommand.ts +++ b/clients/client-workspaces/src/commands/CreateWorkspaceBundleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkspaceBundleRequest, CreateWorkspaceBundleResult } from "../models/models_0"; +import type { CreateWorkspaceBundleRequest, CreateWorkspaceBundleResult } from "../models/models_0"; import { CreateWorkspaceBundle } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/CreateWorkspaceImageCommand.ts index f13368afdc889..dff60a2ae0215 100644 --- a/clients/client-workspaces/src/commands/CreateWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/CreateWorkspaceImageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkspaceImageRequest, CreateWorkspaceImageResult } from "../models/models_0"; +import type { CreateWorkspaceImageRequest, CreateWorkspaceImageResult } from "../models/models_0"; import { CreateWorkspaceImage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts b/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts index d3aa0c9a0f8b6..8ac237e44baf2 100644 --- a/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/CreateWorkspacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkspacesRequest, CreateWorkspacesResult } from "../models/models_0"; +import type { CreateWorkspacesRequest, CreateWorkspacesResult } from "../models/models_0"; import { CreateWorkspaces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/CreateWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/CreateWorkspacesPoolCommand.ts index 688c91ec6f73e..25799d6201818 100644 --- a/clients/client-workspaces/src/commands/CreateWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/CreateWorkspacesPoolCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateWorkspacesPoolRequest, CreateWorkspacesPoolResult } from "../models/models_0"; +import type { CreateWorkspacesPoolRequest, CreateWorkspacesPoolResult } from "../models/models_0"; import { CreateWorkspacesPool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeleteAccountLinkInvitationCommand.ts b/clients/client-workspaces/src/commands/DeleteAccountLinkInvitationCommand.ts index 33c485845629e..ee6674430c1fb 100644 --- a/clients/client-workspaces/src/commands/DeleteAccountLinkInvitationCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteAccountLinkInvitationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteAccountLinkInvitationRequest, DeleteAccountLinkInvitationResult } from "../models/models_0"; +import type { DeleteAccountLinkInvitationRequest, DeleteAccountLinkInvitationResult } from "../models/models_0"; import { DeleteAccountLinkInvitation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeleteClientBrandingCommand.ts b/clients/client-workspaces/src/commands/DeleteClientBrandingCommand.ts index d428ba9baf39b..9023b60346262 100644 --- a/clients/client-workspaces/src/commands/DeleteClientBrandingCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteClientBrandingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteClientBrandingRequest, DeleteClientBrandingResult } from "../models/models_0"; +import type { DeleteClientBrandingRequest, DeleteClientBrandingResult } from "../models/models_0"; import { DeleteClientBranding } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeleteConnectClientAddInCommand.ts b/clients/client-workspaces/src/commands/DeleteConnectClientAddInCommand.ts index 1c7b159f5f764..423d41fc6d390 100644 --- a/clients/client-workspaces/src/commands/DeleteConnectClientAddInCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteConnectClientAddInCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectClientAddInRequest, DeleteConnectClientAddInResult } from "../models/models_0"; +import type { DeleteConnectClientAddInRequest, DeleteConnectClientAddInResult } from "../models/models_0"; import { DeleteConnectClientAddIn } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeleteConnectionAliasCommand.ts b/clients/client-workspaces/src/commands/DeleteConnectionAliasCommand.ts index 6b53ecc9f00a5..6c5b6b58d6d20 100644 --- a/clients/client-workspaces/src/commands/DeleteConnectionAliasCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteConnectionAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteConnectionAliasRequest, DeleteConnectionAliasResult } from "../models/models_0"; +import type { DeleteConnectionAliasRequest, DeleteConnectionAliasResult } from "../models/models_0"; import { DeleteConnectionAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeleteIpGroupCommand.ts b/clients/client-workspaces/src/commands/DeleteIpGroupCommand.ts index 8186af48f8588..a1f6d48c24f4e 100644 --- a/clients/client-workspaces/src/commands/DeleteIpGroupCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteIpGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteIpGroupRequest, DeleteIpGroupResult } from "../models/models_0"; +import type { DeleteIpGroupRequest, DeleteIpGroupResult } from "../models/models_0"; import { DeleteIpGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeleteTagsCommand.ts b/clients/client-workspaces/src/commands/DeleteTagsCommand.ts index 955b56941a6eb..2f90cd3b8288b 100644 --- a/clients/client-workspaces/src/commands/DeleteTagsCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteTagsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteTagsRequest, DeleteTagsResult } from "../models/models_0"; +import type { DeleteTagsRequest, DeleteTagsResult } from "../models/models_0"; import { DeleteTags } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeleteWorkspaceBundleCommand.ts b/clients/client-workspaces/src/commands/DeleteWorkspaceBundleCommand.ts index c7377e6aa3ed8..2496414c3afb9 100644 --- a/clients/client-workspaces/src/commands/DeleteWorkspaceBundleCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteWorkspaceBundleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkspaceBundleRequest, DeleteWorkspaceBundleResult } from "../models/models_0"; +import type { DeleteWorkspaceBundleRequest, DeleteWorkspaceBundleResult } from "../models/models_0"; import { DeleteWorkspaceBundle } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeleteWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/DeleteWorkspaceImageCommand.ts index 35c044af36a1e..035e222f6b5ea 100644 --- a/clients/client-workspaces/src/commands/DeleteWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/DeleteWorkspaceImageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteWorkspaceImageRequest, DeleteWorkspaceImageResult } from "../models/models_0"; +import type { DeleteWorkspaceImageRequest, DeleteWorkspaceImageResult } from "../models/models_0"; import { DeleteWorkspaceImage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeployWorkspaceApplicationsCommand.ts b/clients/client-workspaces/src/commands/DeployWorkspaceApplicationsCommand.ts index dd32e69c5bc3a..fbd9547920647 100644 --- a/clients/client-workspaces/src/commands/DeployWorkspaceApplicationsCommand.ts +++ b/clients/client-workspaces/src/commands/DeployWorkspaceApplicationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeployWorkspaceApplicationsRequest, DeployWorkspaceApplicationsResult } from "../models/models_0"; +import type { DeployWorkspaceApplicationsRequest, DeployWorkspaceApplicationsResult } from "../models/models_0"; import { DeployWorkspaceApplications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DeregisterWorkspaceDirectoryCommand.ts b/clients/client-workspaces/src/commands/DeregisterWorkspaceDirectoryCommand.ts index 86c0e1b927330..c5d0d6dff6505 100644 --- a/clients/client-workspaces/src/commands/DeregisterWorkspaceDirectoryCommand.ts +++ b/clients/client-workspaces/src/commands/DeregisterWorkspaceDirectoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeregisterWorkspaceDirectoryRequest, DeregisterWorkspaceDirectoryResult } from "../models/models_0"; +import type { DeregisterWorkspaceDirectoryRequest, DeregisterWorkspaceDirectoryResult } from "../models/models_0"; import { DeregisterWorkspaceDirectory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeAccountCommand.ts b/clients/client-workspaces/src/commands/DescribeAccountCommand.ts index aa0d46eee2534..1c169669bd1e7 100644 --- a/clients/client-workspaces/src/commands/DescribeAccountCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeAccountCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountRequest, DescribeAccountResult } from "../models/models_0"; +import type { DescribeAccountRequest, DescribeAccountResult } from "../models/models_0"; import { DescribeAccount } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeAccountModificationsCommand.ts b/clients/client-workspaces/src/commands/DescribeAccountModificationsCommand.ts index 82573ff1ce5ce..c8f6163b32db8 100644 --- a/clients/client-workspaces/src/commands/DescribeAccountModificationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeAccountModificationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeAccountModificationsRequest, DescribeAccountModificationsResult } from "../models/models_0"; +import type { DescribeAccountModificationsRequest, DescribeAccountModificationsResult } from "../models/models_0"; import { DescribeAccountModifications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeApplicationAssociationsCommand.ts b/clients/client-workspaces/src/commands/DescribeApplicationAssociationsCommand.ts index 4b6145d486a8b..649ec562c5da5 100644 --- a/clients/client-workspaces/src/commands/DescribeApplicationAssociationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeApplicationAssociationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeApplicationAssociationsRequest, DescribeApplicationAssociationsResult } from "../models/models_0"; +import type { DescribeApplicationAssociationsRequest, DescribeApplicationAssociationsResult } from "../models/models_0"; import { DescribeApplicationAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeApplicationsCommand.ts b/clients/client-workspaces/src/commands/DescribeApplicationsCommand.ts index 4327aeb0675e7..227d5709dd567 100644 --- a/clients/client-workspaces/src/commands/DescribeApplicationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeApplicationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeApplicationsRequest, DescribeApplicationsResult } from "../models/models_0"; +import type { DescribeApplicationsRequest, DescribeApplicationsResult } from "../models/models_0"; import { DescribeApplications } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeBundleAssociationsCommand.ts b/clients/client-workspaces/src/commands/DescribeBundleAssociationsCommand.ts index 216db6053e62a..1cd3ff6737361 100644 --- a/clients/client-workspaces/src/commands/DescribeBundleAssociationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeBundleAssociationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeBundleAssociationsRequest, DescribeBundleAssociationsResult } from "../models/models_0"; +import type { DescribeBundleAssociationsRequest, DescribeBundleAssociationsResult } from "../models/models_0"; import { DescribeBundleAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeClientBrandingCommand.ts b/clients/client-workspaces/src/commands/DescribeClientBrandingCommand.ts index fe00d0c69102e..ba8d9de2de53f 100644 --- a/clients/client-workspaces/src/commands/DescribeClientBrandingCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeClientBrandingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClientBrandingRequest, DescribeClientBrandingResult } from "../models/models_0"; +import type { DescribeClientBrandingRequest, DescribeClientBrandingResult } from "../models/models_0"; import { DescribeClientBranding } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeClientPropertiesCommand.ts b/clients/client-workspaces/src/commands/DescribeClientPropertiesCommand.ts index 5835afe11c276..cff3496c0269c 100644 --- a/clients/client-workspaces/src/commands/DescribeClientPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeClientPropertiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeClientPropertiesRequest, DescribeClientPropertiesResult } from "../models/models_0"; +import type { DescribeClientPropertiesRequest, DescribeClientPropertiesResult } from "../models/models_0"; import { DescribeClientProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeConnectClientAddInsCommand.ts b/clients/client-workspaces/src/commands/DescribeConnectClientAddInsCommand.ts index 947243010fc03..3bc3a1782db89 100644 --- a/clients/client-workspaces/src/commands/DescribeConnectClientAddInsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeConnectClientAddInsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectClientAddInsRequest, DescribeConnectClientAddInsResult } from "../models/models_0"; +import type { DescribeConnectClientAddInsRequest, DescribeConnectClientAddInsResult } from "../models/models_0"; import { DescribeConnectClientAddIns } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeConnectionAliasPermissionsCommand.ts b/clients/client-workspaces/src/commands/DescribeConnectionAliasPermissionsCommand.ts index f7013df566526..cf3d96f542a49 100644 --- a/clients/client-workspaces/src/commands/DescribeConnectionAliasPermissionsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeConnectionAliasPermissionsCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeConnectionAliasPermissionsRequest, DescribeConnectionAliasPermissionsResult, } from "../models/models_0"; import { DescribeConnectionAliasPermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeConnectionAliasesCommand.ts b/clients/client-workspaces/src/commands/DescribeConnectionAliasesCommand.ts index 625bea88a81f8..8999ced3f61d2 100644 --- a/clients/client-workspaces/src/commands/DescribeConnectionAliasesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeConnectionAliasesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeConnectionAliasesRequest, DescribeConnectionAliasesResult } from "../models/models_0"; +import type { DescribeConnectionAliasesRequest, DescribeConnectionAliasesResult } from "../models/models_0"; import { DescribeConnectionAliases } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeCustomWorkspaceImageImportCommand.ts b/clients/client-workspaces/src/commands/DescribeCustomWorkspaceImageImportCommand.ts index e6619a74419de..47d4a35fd2082 100644 --- a/clients/client-workspaces/src/commands/DescribeCustomWorkspaceImageImportCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeCustomWorkspaceImageImportCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeCustomWorkspaceImageImportRequest, DescribeCustomWorkspaceImageImportResult, } from "../models/models_0"; import { DescribeCustomWorkspaceImageImport } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeImageAssociationsCommand.ts b/clients/client-workspaces/src/commands/DescribeImageAssociationsCommand.ts index 6a5a34d0bcdc6..db2ca400cc149 100644 --- a/clients/client-workspaces/src/commands/DescribeImageAssociationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeImageAssociationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeImageAssociationsRequest, DescribeImageAssociationsResult } from "../models/models_0"; +import type { DescribeImageAssociationsRequest, DescribeImageAssociationsResult } from "../models/models_0"; import { DescribeImageAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeIpGroupsCommand.ts b/clients/client-workspaces/src/commands/DescribeIpGroupsCommand.ts index a1994e86d7847..23ce0c404a036 100644 --- a/clients/client-workspaces/src/commands/DescribeIpGroupsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeIpGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeIpGroupsRequest, DescribeIpGroupsResult } from "../models/models_0"; +import type { DescribeIpGroupsRequest, DescribeIpGroupsResult } from "../models/models_0"; import { DescribeIpGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeTagsCommand.ts b/clients/client-workspaces/src/commands/DescribeTagsCommand.ts index 95313bdcc582b..12aecaf596514 100644 --- a/clients/client-workspaces/src/commands/DescribeTagsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeTagsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeTagsRequest, DescribeTagsResult } from "../models/models_0"; +import type { DescribeTagsRequest, DescribeTagsResult } from "../models/models_0"; import { DescribeTags } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceAssociationsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceAssociationsCommand.ts index aaec322252dd9..40579f7807f5e 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceAssociationsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceAssociationsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspaceAssociationsRequest, DescribeWorkspaceAssociationsResult } from "../models/models_0"; +import type { DescribeWorkspaceAssociationsRequest, DescribeWorkspaceAssociationsResult } from "../models/models_0"; import { DescribeWorkspaceAssociations } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceBundlesCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceBundlesCommand.ts index 83201a9ad7c9a..f002c43125d82 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceBundlesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceBundlesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspaceBundlesRequest, DescribeWorkspaceBundlesResult } from "../models/models_0"; +import type { DescribeWorkspaceBundlesRequest, DescribeWorkspaceBundlesResult } from "../models/models_0"; import { DescribeWorkspaceBundles } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts index 1ee3429167ac0..6cd56029a1fa8 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceDirectoriesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspaceDirectoriesRequest, DescribeWorkspaceDirectoriesResult } from "../models/models_0"; +import type { DescribeWorkspaceDirectoriesRequest, DescribeWorkspaceDirectoriesResult } from "../models/models_0"; import { DescribeWorkspaceDirectories } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceImagePermissionsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceImagePermissionsCommand.ts index 12aa8c60336e3..cfdc701139bca 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceImagePermissionsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceImagePermissionsCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspaceImagePermissionsRequest, DescribeWorkspaceImagePermissionsResult } from "../models/models_0"; +import type { + DescribeWorkspaceImagePermissionsRequest, + DescribeWorkspaceImagePermissionsResult, +} from "../models/models_0"; import { DescribeWorkspaceImagePermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceImagesCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceImagesCommand.ts index 3370213c023c5..8779263a2377f 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceImagesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceImagesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspaceImagesRequest, DescribeWorkspaceImagesResult } from "../models/models_0"; +import type { DescribeWorkspaceImagesRequest, DescribeWorkspaceImagesResult } from "../models/models_0"; import { DescribeWorkspaceImages } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspaceSnapshotsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspaceSnapshotsCommand.ts index ffb2b44f131e8..e95809d164674 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspaceSnapshotsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspaceSnapshotsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspaceSnapshotsRequest, DescribeWorkspaceSnapshotsResult } from "../models/models_0"; +import type { DescribeWorkspaceSnapshotsRequest, DescribeWorkspaceSnapshotsResult } from "../models/models_0"; import { DescribeWorkspaceSnapshots } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspacesCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspacesCommand.ts index f2dfc96a5c67c..a3416a2b2c66d 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspacesRequest, DescribeWorkspacesResult } from "../models/models_0"; +import type { DescribeWorkspacesRequest, DescribeWorkspacesResult } from "../models/models_0"; import { DescribeWorkspaces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspacesConnectionStatusCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspacesConnectionStatusCommand.ts index 667b0a2631c2c..48b7786aead6c 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspacesConnectionStatusCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspacesConnectionStatusCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { DescribeWorkspacesConnectionStatusRequest, DescribeWorkspacesConnectionStatusResult, } from "../models/models_0"; import { DescribeWorkspacesConnectionStatus } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspacesPoolSessionsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspacesPoolSessionsCommand.ts index 0f6699af5abe8..392e4eb71ce89 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspacesPoolSessionsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspacesPoolSessionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspacesPoolSessionsRequest, DescribeWorkspacesPoolSessionsResult } from "../models/models_0"; +import type { DescribeWorkspacesPoolSessionsRequest, DescribeWorkspacesPoolSessionsResult } from "../models/models_0"; import { DescribeWorkspacesPoolSessions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DescribeWorkspacesPoolsCommand.ts b/clients/client-workspaces/src/commands/DescribeWorkspacesPoolsCommand.ts index 626d0f01100b6..2d2a10e560d56 100644 --- a/clients/client-workspaces/src/commands/DescribeWorkspacesPoolsCommand.ts +++ b/clients/client-workspaces/src/commands/DescribeWorkspacesPoolsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DescribeWorkspacesPoolsRequest, DescribeWorkspacesPoolsResult } from "../models/models_0"; +import type { DescribeWorkspacesPoolsRequest, DescribeWorkspacesPoolsResult } from "../models/models_0"; import { DescribeWorkspacesPools } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DisassociateConnectionAliasCommand.ts b/clients/client-workspaces/src/commands/DisassociateConnectionAliasCommand.ts index c891c692bdd48..cc623ed9d5983 100644 --- a/clients/client-workspaces/src/commands/DisassociateConnectionAliasCommand.ts +++ b/clients/client-workspaces/src/commands/DisassociateConnectionAliasCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateConnectionAliasRequest, DisassociateConnectionAliasResult } from "../models/models_0"; +import type { DisassociateConnectionAliasRequest, DisassociateConnectionAliasResult } from "../models/models_0"; import { DisassociateConnectionAlias } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DisassociateIpGroupsCommand.ts b/clients/client-workspaces/src/commands/DisassociateIpGroupsCommand.ts index bac39be8e14d6..adb4369b185a9 100644 --- a/clients/client-workspaces/src/commands/DisassociateIpGroupsCommand.ts +++ b/clients/client-workspaces/src/commands/DisassociateIpGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateIpGroupsRequest, DisassociateIpGroupsResult } from "../models/models_0"; +import type { DisassociateIpGroupsRequest, DisassociateIpGroupsResult } from "../models/models_0"; import { DisassociateIpGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/DisassociateWorkspaceApplicationCommand.ts b/clients/client-workspaces/src/commands/DisassociateWorkspaceApplicationCommand.ts index 213eff2c4d52f..60f5d2899d387 100644 --- a/clients/client-workspaces/src/commands/DisassociateWorkspaceApplicationCommand.ts +++ b/clients/client-workspaces/src/commands/DisassociateWorkspaceApplicationCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DisassociateWorkspaceApplicationRequest, DisassociateWorkspaceApplicationResult } from "../models/models_0"; +import type { + DisassociateWorkspaceApplicationRequest, + DisassociateWorkspaceApplicationResult, +} from "../models/models_0"; import { DisassociateWorkspaceApplication } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/GetAccountLinkCommand.ts b/clients/client-workspaces/src/commands/GetAccountLinkCommand.ts index 87a997055db41..53a6634f739ca 100644 --- a/clients/client-workspaces/src/commands/GetAccountLinkCommand.ts +++ b/clients/client-workspaces/src/commands/GetAccountLinkCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetAccountLinkRequest, GetAccountLinkResult } from "../models/models_0"; +import type { GetAccountLinkRequest, GetAccountLinkResult } from "../models/models_0"; import { GetAccountLink } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ImportClientBrandingCommand.ts b/clients/client-workspaces/src/commands/ImportClientBrandingCommand.ts index 4d25628b15f55..2f00e68f4e4e4 100644 --- a/clients/client-workspaces/src/commands/ImportClientBrandingCommand.ts +++ b/clients/client-workspaces/src/commands/ImportClientBrandingCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportClientBrandingRequest, ImportClientBrandingResult } from "../models/models_0"; +import type { ImportClientBrandingRequest, ImportClientBrandingResult } from "../models/models_0"; import { ImportClientBranding } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ImportCustomWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/ImportCustomWorkspaceImageCommand.ts index 68912dd6b66b9..dee42f046b761 100644 --- a/clients/client-workspaces/src/commands/ImportCustomWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/ImportCustomWorkspaceImageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportCustomWorkspaceImageRequest, ImportCustomWorkspaceImageResult } from "../models/models_0"; +import type { ImportCustomWorkspaceImageRequest, ImportCustomWorkspaceImageResult } from "../models/models_0"; import { ImportCustomWorkspaceImage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ImportWorkspaceImageCommand.ts b/clients/client-workspaces/src/commands/ImportWorkspaceImageCommand.ts index de57e2649247f..09cf9a9e12f81 100644 --- a/clients/client-workspaces/src/commands/ImportWorkspaceImageCommand.ts +++ b/clients/client-workspaces/src/commands/ImportWorkspaceImageCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ImportWorkspaceImageRequest, ImportWorkspaceImageResult } from "../models/models_0"; +import type { ImportWorkspaceImageRequest, ImportWorkspaceImageResult } from "../models/models_0"; import { ImportWorkspaceImage } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ListAccountLinksCommand.ts b/clients/client-workspaces/src/commands/ListAccountLinksCommand.ts index a850dffeb8353..00603f033f898 100644 --- a/clients/client-workspaces/src/commands/ListAccountLinksCommand.ts +++ b/clients/client-workspaces/src/commands/ListAccountLinksCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAccountLinksRequest, ListAccountLinksResult } from "../models/models_0"; +import type { ListAccountLinksRequest, ListAccountLinksResult } from "../models/models_0"; import { ListAccountLinks } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ListAvailableManagementCidrRangesCommand.ts b/clients/client-workspaces/src/commands/ListAvailableManagementCidrRangesCommand.ts index 3246e48330131..47ea3d906f749 100644 --- a/clients/client-workspaces/src/commands/ListAvailableManagementCidrRangesCommand.ts +++ b/clients/client-workspaces/src/commands/ListAvailableManagementCidrRangesCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListAvailableManagementCidrRangesRequest, ListAvailableManagementCidrRangesResult } from "../models/models_0"; +import type { + ListAvailableManagementCidrRangesRequest, + ListAvailableManagementCidrRangesResult, +} from "../models/models_0"; import { ListAvailableManagementCidrRanges } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/MigrateWorkspaceCommand.ts b/clients/client-workspaces/src/commands/MigrateWorkspaceCommand.ts index bee3dcc0da3fc..f03e4ca1bd3f0 100644 --- a/clients/client-workspaces/src/commands/MigrateWorkspaceCommand.ts +++ b/clients/client-workspaces/src/commands/MigrateWorkspaceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MigrateWorkspaceRequest, MigrateWorkspaceResult } from "../models/models_0"; +import type { MigrateWorkspaceRequest, MigrateWorkspaceResult } from "../models/models_0"; import { MigrateWorkspace } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifyAccountCommand.ts b/clients/client-workspaces/src/commands/ModifyAccountCommand.ts index 6c502f4d55dee..69373fe539df1 100644 --- a/clients/client-workspaces/src/commands/ModifyAccountCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyAccountCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyAccountRequest, ModifyAccountResult } from "../models/models_0"; +import type { ModifyAccountRequest, ModifyAccountResult } from "../models/models_0"; import { ModifyAccount } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifyCertificateBasedAuthPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyCertificateBasedAuthPropertiesCommand.ts index dc12847ae30ac..32a44c51ebf3c 100644 --- a/clients/client-workspaces/src/commands/ModifyCertificateBasedAuthPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyCertificateBasedAuthPropertiesCommand.ts @@ -1,15 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { +import type { ModifyCertificateBasedAuthPropertiesRequest, ModifyCertificateBasedAuthPropertiesResult, } from "../models/models_0"; import { ModifyCertificateBasedAuthProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifyClientPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyClientPropertiesCommand.ts index d45b38de2c77c..916b20239a4a7 100644 --- a/clients/client-workspaces/src/commands/ModifyClientPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyClientPropertiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyClientPropertiesRequest, ModifyClientPropertiesResult } from "../models/models_0"; +import type { ModifyClientPropertiesRequest, ModifyClientPropertiesResult } from "../models/models_0"; import { ModifyClientProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifyEndpointEncryptionModeCommand.ts b/clients/client-workspaces/src/commands/ModifyEndpointEncryptionModeCommand.ts index f67b0ccd862b9..c5bc9fc8b8c97 100644 --- a/clients/client-workspaces/src/commands/ModifyEndpointEncryptionModeCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyEndpointEncryptionModeCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyEndpointEncryptionModeRequest, ModifyEndpointEncryptionModeResponse } from "../models/models_0"; +import type { ModifyEndpointEncryptionModeRequest, ModifyEndpointEncryptionModeResponse } from "../models/models_0"; import { ModifyEndpointEncryptionMode } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifySamlPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifySamlPropertiesCommand.ts index 512e2971acab7..4b0c839e90362 100644 --- a/clients/client-workspaces/src/commands/ModifySamlPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifySamlPropertiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifySamlPropertiesRequest, ModifySamlPropertiesResult } from "../models/models_0"; +import type { ModifySamlPropertiesRequest, ModifySamlPropertiesResult } from "../models/models_0"; import { ModifySamlProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifySelfservicePermissionsCommand.ts b/clients/client-workspaces/src/commands/ModifySelfservicePermissionsCommand.ts index 88d48dc790a3f..5e6695fe22f78 100644 --- a/clients/client-workspaces/src/commands/ModifySelfservicePermissionsCommand.ts +++ b/clients/client-workspaces/src/commands/ModifySelfservicePermissionsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifySelfservicePermissionsRequest, ModifySelfservicePermissionsResult } from "../models/models_0"; +import type { ModifySelfservicePermissionsRequest, ModifySelfservicePermissionsResult } from "../models/models_0"; import { ModifySelfservicePermissions } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifyStreamingPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyStreamingPropertiesCommand.ts index 55f15690f8144..1ced634e776a0 100644 --- a/clients/client-workspaces/src/commands/ModifyStreamingPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyStreamingPropertiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyStreamingPropertiesRequest, ModifyStreamingPropertiesResult } from "../models/models_0"; +import type { ModifyStreamingPropertiesRequest, ModifyStreamingPropertiesResult } from "../models/models_0"; import { ModifyStreamingProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifyWorkspaceAccessPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyWorkspaceAccessPropertiesCommand.ts index f3ee3d57eda2b..fb06fc1b0e01b 100644 --- a/clients/client-workspaces/src/commands/ModifyWorkspaceAccessPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyWorkspaceAccessPropertiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyWorkspaceAccessPropertiesRequest, ModifyWorkspaceAccessPropertiesResult } from "../models/models_0"; +import type { ModifyWorkspaceAccessPropertiesRequest, ModifyWorkspaceAccessPropertiesResult } from "../models/models_0"; import { ModifyWorkspaceAccessProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifyWorkspaceCreationPropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyWorkspaceCreationPropertiesCommand.ts index f14f84a7e6c1f..60a9507977496 100644 --- a/clients/client-workspaces/src/commands/ModifyWorkspaceCreationPropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyWorkspaceCreationPropertiesCommand.ts @@ -1,12 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyWorkspaceCreationPropertiesRequest, ModifyWorkspaceCreationPropertiesResult } from "../models/models_0"; +import type { + ModifyWorkspaceCreationPropertiesRequest, + ModifyWorkspaceCreationPropertiesResult, +} from "../models/models_0"; import { ModifyWorkspaceCreationProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifyWorkspacePropertiesCommand.ts b/clients/client-workspaces/src/commands/ModifyWorkspacePropertiesCommand.ts index 732674b02bb1e..72f8a4c85a94a 100644 --- a/clients/client-workspaces/src/commands/ModifyWorkspacePropertiesCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyWorkspacePropertiesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyWorkspacePropertiesRequest, ModifyWorkspacePropertiesResult } from "../models/models_0"; +import type { ModifyWorkspacePropertiesRequest, ModifyWorkspacePropertiesResult } from "../models/models_0"; import { ModifyWorkspaceProperties } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/ModifyWorkspaceStateCommand.ts b/clients/client-workspaces/src/commands/ModifyWorkspaceStateCommand.ts index 659d542677b7f..9ae1a2ab70429 100644 --- a/clients/client-workspaces/src/commands/ModifyWorkspaceStateCommand.ts +++ b/clients/client-workspaces/src/commands/ModifyWorkspaceStateCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ModifyWorkspaceStateRequest, ModifyWorkspaceStateResult } from "../models/models_0"; +import type { ModifyWorkspaceStateRequest, ModifyWorkspaceStateResult } from "../models/models_0"; import { ModifyWorkspaceState } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/RebootWorkspacesCommand.ts b/clients/client-workspaces/src/commands/RebootWorkspacesCommand.ts index 9592f479f923e..c363640e0c56e 100644 --- a/clients/client-workspaces/src/commands/RebootWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/RebootWorkspacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebootWorkspacesRequest, RebootWorkspacesResult } from "../models/models_0"; +import type { RebootWorkspacesRequest, RebootWorkspacesResult } from "../models/models_0"; import { RebootWorkspaces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/RebuildWorkspacesCommand.ts b/clients/client-workspaces/src/commands/RebuildWorkspacesCommand.ts index 125235dcadb02..75b1efc1794ee 100644 --- a/clients/client-workspaces/src/commands/RebuildWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/RebuildWorkspacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RebuildWorkspacesRequest, RebuildWorkspacesResult } from "../models/models_0"; +import type { RebuildWorkspacesRequest, RebuildWorkspacesResult } from "../models/models_0"; import { RebuildWorkspaces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/RegisterWorkspaceDirectoryCommand.ts b/clients/client-workspaces/src/commands/RegisterWorkspaceDirectoryCommand.ts index 4d1a8c65e7801..01d6d3a1993ec 100644 --- a/clients/client-workspaces/src/commands/RegisterWorkspaceDirectoryCommand.ts +++ b/clients/client-workspaces/src/commands/RegisterWorkspaceDirectoryCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RegisterWorkspaceDirectoryRequest, RegisterWorkspaceDirectoryResult } from "../models/models_0"; +import type { RegisterWorkspaceDirectoryRequest, RegisterWorkspaceDirectoryResult } from "../models/models_0"; import { RegisterWorkspaceDirectory } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/RejectAccountLinkInvitationCommand.ts b/clients/client-workspaces/src/commands/RejectAccountLinkInvitationCommand.ts index 6376dcb948a9c..130c855af15a2 100644 --- a/clients/client-workspaces/src/commands/RejectAccountLinkInvitationCommand.ts +++ b/clients/client-workspaces/src/commands/RejectAccountLinkInvitationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RejectAccountLinkInvitationRequest, RejectAccountLinkInvitationResult } from "../models/models_0"; +import type { RejectAccountLinkInvitationRequest, RejectAccountLinkInvitationResult } from "../models/models_0"; import { RejectAccountLinkInvitation } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/RestoreWorkspaceCommand.ts b/clients/client-workspaces/src/commands/RestoreWorkspaceCommand.ts index bbe5c4fd5842e..f8169fd2d437f 100644 --- a/clients/client-workspaces/src/commands/RestoreWorkspaceCommand.ts +++ b/clients/client-workspaces/src/commands/RestoreWorkspaceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestoreWorkspaceRequest, RestoreWorkspaceResult } from "../models/models_0"; +import type { RestoreWorkspaceRequest, RestoreWorkspaceResult } from "../models/models_0"; import { RestoreWorkspace } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/RevokeIpRulesCommand.ts b/clients/client-workspaces/src/commands/RevokeIpRulesCommand.ts index a054049078137..b7c25535dd808 100644 --- a/clients/client-workspaces/src/commands/RevokeIpRulesCommand.ts +++ b/clients/client-workspaces/src/commands/RevokeIpRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RevokeIpRulesRequest, RevokeIpRulesResult } from "../models/models_0"; +import type { RevokeIpRulesRequest, RevokeIpRulesResult } from "../models/models_0"; import { RevokeIpRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/StartWorkspacesCommand.ts b/clients/client-workspaces/src/commands/StartWorkspacesCommand.ts index 3f667d9e83832..fae888221953a 100644 --- a/clients/client-workspaces/src/commands/StartWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/StartWorkspacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartWorkspacesRequest, StartWorkspacesResult } from "../models/models_0"; +import type { StartWorkspacesRequest, StartWorkspacesResult } from "../models/models_0"; import { StartWorkspaces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/StartWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/StartWorkspacesPoolCommand.ts index 33f1475f1081b..833f543b70725 100644 --- a/clients/client-workspaces/src/commands/StartWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/StartWorkspacesPoolCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartWorkspacesPoolRequest, StartWorkspacesPoolResult } from "../models/models_0"; +import type { StartWorkspacesPoolRequest, StartWorkspacesPoolResult } from "../models/models_0"; import { StartWorkspacesPool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/StopWorkspacesCommand.ts b/clients/client-workspaces/src/commands/StopWorkspacesCommand.ts index cdffac938ecb9..cfb221f8c47fd 100644 --- a/clients/client-workspaces/src/commands/StopWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/StopWorkspacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopWorkspacesRequest, StopWorkspacesResult } from "../models/models_0"; +import type { StopWorkspacesRequest, StopWorkspacesResult } from "../models/models_0"; import { StopWorkspaces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/StopWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/StopWorkspacesPoolCommand.ts index f099cfdce2648..3de69dde1daf6 100644 --- a/clients/client-workspaces/src/commands/StopWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/StopWorkspacesPoolCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StopWorkspacesPoolRequest, StopWorkspacesPoolResult } from "../models/models_0"; +import type { StopWorkspacesPoolRequest, StopWorkspacesPoolResult } from "../models/models_0"; import { StopWorkspacesPool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/TerminateWorkspacesCommand.ts b/clients/client-workspaces/src/commands/TerminateWorkspacesCommand.ts index bb9e8f459acef..9ca6d951a444a 100644 --- a/clients/client-workspaces/src/commands/TerminateWorkspacesCommand.ts +++ b/clients/client-workspaces/src/commands/TerminateWorkspacesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateWorkspacesRequest, TerminateWorkspacesResult } from "../models/models_0"; +import type { TerminateWorkspacesRequest, TerminateWorkspacesResult } from "../models/models_0"; import { TerminateWorkspaces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/TerminateWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/TerminateWorkspacesPoolCommand.ts index 4320864d75e3d..2382ea5574954 100644 --- a/clients/client-workspaces/src/commands/TerminateWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/TerminateWorkspacesPoolCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateWorkspacesPoolRequest, TerminateWorkspacesPoolResult } from "../models/models_0"; +import type { TerminateWorkspacesPoolRequest, TerminateWorkspacesPoolResult } from "../models/models_0"; import { TerminateWorkspacesPool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/TerminateWorkspacesPoolSessionCommand.ts b/clients/client-workspaces/src/commands/TerminateWorkspacesPoolSessionCommand.ts index 416ba4455d8fa..0a3bd1fc025db 100644 --- a/clients/client-workspaces/src/commands/TerminateWorkspacesPoolSessionCommand.ts +++ b/clients/client-workspaces/src/commands/TerminateWorkspacesPoolSessionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TerminateWorkspacesPoolSessionRequest, TerminateWorkspacesPoolSessionResult } from "../models/models_0"; +import type { TerminateWorkspacesPoolSessionRequest, TerminateWorkspacesPoolSessionResult } from "../models/models_0"; import { TerminateWorkspacesPoolSession } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/UpdateConnectClientAddInCommand.ts b/clients/client-workspaces/src/commands/UpdateConnectClientAddInCommand.ts index 248f560774a37..2f8277ad18621 100644 --- a/clients/client-workspaces/src/commands/UpdateConnectClientAddInCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateConnectClientAddInCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectClientAddInRequest, UpdateConnectClientAddInResult } from "../models/models_0"; +import type { UpdateConnectClientAddInRequest, UpdateConnectClientAddInResult } from "../models/models_0"; import { UpdateConnectClientAddIn } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/UpdateConnectionAliasPermissionCommand.ts b/clients/client-workspaces/src/commands/UpdateConnectionAliasPermissionCommand.ts index 5febfb4ab9037..79b26ef6b80d0 100644 --- a/clients/client-workspaces/src/commands/UpdateConnectionAliasPermissionCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateConnectionAliasPermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateConnectionAliasPermissionRequest, UpdateConnectionAliasPermissionResult } from "../models/models_0"; +import type { UpdateConnectionAliasPermissionRequest, UpdateConnectionAliasPermissionResult } from "../models/models_0"; import { UpdateConnectionAliasPermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/UpdateRulesOfIpGroupCommand.ts b/clients/client-workspaces/src/commands/UpdateRulesOfIpGroupCommand.ts index be593825428f4..f5379d3a9369a 100644 --- a/clients/client-workspaces/src/commands/UpdateRulesOfIpGroupCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateRulesOfIpGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateRulesOfIpGroupRequest, UpdateRulesOfIpGroupResult } from "../models/models_0"; +import type { UpdateRulesOfIpGroupRequest, UpdateRulesOfIpGroupResult } from "../models/models_0"; import { UpdateRulesOfIpGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/UpdateWorkspaceBundleCommand.ts b/clients/client-workspaces/src/commands/UpdateWorkspaceBundleCommand.ts index a476b370ed7ff..a941806b93047 100644 --- a/clients/client-workspaces/src/commands/UpdateWorkspaceBundleCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateWorkspaceBundleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkspaceBundleRequest, UpdateWorkspaceBundleResult } from "../models/models_0"; +import type { UpdateWorkspaceBundleRequest, UpdateWorkspaceBundleResult } from "../models/models_0"; import { UpdateWorkspaceBundle } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/UpdateWorkspaceImagePermissionCommand.ts b/clients/client-workspaces/src/commands/UpdateWorkspaceImagePermissionCommand.ts index 937efca0cbe44..c00b81c5f32d9 100644 --- a/clients/client-workspaces/src/commands/UpdateWorkspaceImagePermissionCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateWorkspaceImagePermissionCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkspaceImagePermissionRequest, UpdateWorkspaceImagePermissionResult } from "../models/models_0"; +import type { UpdateWorkspaceImagePermissionRequest, UpdateWorkspaceImagePermissionResult } from "../models/models_0"; import { UpdateWorkspaceImagePermission } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/commands/UpdateWorkspacesPoolCommand.ts b/clients/client-workspaces/src/commands/UpdateWorkspacesPoolCommand.ts index f39b515ed059b..5955f20345b0c 100644 --- a/clients/client-workspaces/src/commands/UpdateWorkspacesPoolCommand.ts +++ b/clients/client-workspaces/src/commands/UpdateWorkspacesPoolCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateWorkspacesPoolRequest, UpdateWorkspacesPoolResult } from "../models/models_0"; +import type { UpdateWorkspacesPoolRequest, UpdateWorkspacesPoolResult } from "../models/models_0"; import { UpdateWorkspacesPool } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; +import type { ServiceInputTypes, ServiceOutputTypes, WorkSpacesClientResolvedConfig } from "../WorkSpacesClient"; /** * @public diff --git a/clients/client-workspaces/src/endpoint/EndpointParameters.ts b/clients/client-workspaces/src/endpoint/EndpointParameters.ts index d7ee849d9ae76..b75eedef04355 100644 --- a/clients/client-workspaces/src/endpoint/EndpointParameters.ts +++ b/clients/client-workspaces/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-workspaces/src/endpoint/endpointResolver.ts b/clients/client-workspaces/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-workspaces/src/endpoint/endpointResolver.ts +++ b/clients/client-workspaces/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-workspaces/src/extensionConfiguration.ts b/clients/client-workspaces/src/extensionConfiguration.ts index fd648ade449ad..39191acc36bad 100644 --- a/clients/client-workspaces/src/extensionConfiguration.ts +++ b/clients/client-workspaces/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-workspaces/src/models/WorkSpacesServiceException.ts b/clients/client-workspaces/src/models/WorkSpacesServiceException.ts index 64341cb0f8d7b..357cb530b9e96 100644 --- a/clients/client-workspaces/src/models/WorkSpacesServiceException.ts +++ b/clients/client-workspaces/src/models/WorkSpacesServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-workspaces/src/models/errors.ts b/clients/client-workspaces/src/models/errors.ts index 37e171c455c73..9977200dafbea 100644 --- a/clients/client-workspaces/src/models/errors.ts +++ b/clients/client-workspaces/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { WorkSpacesServiceException as __BaseException } from "./WorkSpacesServiceException"; diff --git a/clients/client-workspaces/src/pagination/DescribeApplicationAssociationsPaginator.ts b/clients/client-workspaces/src/pagination/DescribeApplicationAssociationsPaginator.ts index b6549ae05f63f..9f6e6d3cef94e 100644 --- a/clients/client-workspaces/src/pagination/DescribeApplicationAssociationsPaginator.ts +++ b/clients/client-workspaces/src/pagination/DescribeApplicationAssociationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeApplicationAssociationsCommand, diff --git a/clients/client-workspaces/src/pagination/DescribeApplicationsPaginator.ts b/clients/client-workspaces/src/pagination/DescribeApplicationsPaginator.ts index 4a5debee1621f..e3621d13995b1 100644 --- a/clients/client-workspaces/src/pagination/DescribeApplicationsPaginator.ts +++ b/clients/client-workspaces/src/pagination/DescribeApplicationsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeApplicationsCommand, diff --git a/clients/client-workspaces/src/pagination/DescribeWorkspaceBundlesPaginator.ts b/clients/client-workspaces/src/pagination/DescribeWorkspaceBundlesPaginator.ts index 226b1f2f5b902..f213bdfa8c3f9 100644 --- a/clients/client-workspaces/src/pagination/DescribeWorkspaceBundlesPaginator.ts +++ b/clients/client-workspaces/src/pagination/DescribeWorkspaceBundlesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeWorkspaceBundlesCommand, diff --git a/clients/client-workspaces/src/pagination/DescribeWorkspaceDirectoriesPaginator.ts b/clients/client-workspaces/src/pagination/DescribeWorkspaceDirectoriesPaginator.ts index 867ac1d840114..e9ce04569755b 100644 --- a/clients/client-workspaces/src/pagination/DescribeWorkspaceDirectoriesPaginator.ts +++ b/clients/client-workspaces/src/pagination/DescribeWorkspaceDirectoriesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeWorkspaceDirectoriesCommand, diff --git a/clients/client-workspaces/src/pagination/DescribeWorkspacesPaginator.ts b/clients/client-workspaces/src/pagination/DescribeWorkspacesPaginator.ts index a58cc5e3d2177..9739c63fcbc64 100644 --- a/clients/client-workspaces/src/pagination/DescribeWorkspacesPaginator.ts +++ b/clients/client-workspaces/src/pagination/DescribeWorkspacesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { DescribeWorkspacesCommand, diff --git a/clients/client-workspaces/src/pagination/Interfaces.ts b/clients/client-workspaces/src/pagination/Interfaces.ts index 1717184fd280d..503b9665f490a 100644 --- a/clients/client-workspaces/src/pagination/Interfaces.ts +++ b/clients/client-workspaces/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { WorkSpacesClient } from "../WorkSpacesClient"; diff --git a/clients/client-workspaces/src/pagination/ListAccountLinksPaginator.ts b/clients/client-workspaces/src/pagination/ListAccountLinksPaginator.ts index 28ac3ce5e8038..487818e954c89 100644 --- a/clients/client-workspaces/src/pagination/ListAccountLinksPaginator.ts +++ b/clients/client-workspaces/src/pagination/ListAccountLinksPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListAccountLinksCommand, diff --git a/clients/client-workspaces/src/runtimeConfig.browser.ts b/clients/client-workspaces/src/runtimeConfig.browser.ts index 9cc78a83af975..fa2c03bcbdc23 100644 --- a/clients/client-workspaces/src/runtimeConfig.browser.ts +++ b/clients/client-workspaces/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkSpacesClientConfig } from "./WorkSpacesClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WorkSpacesClientConfig } from "./WorkSpacesClient"; /** * @internal diff --git a/clients/client-workspaces/src/runtimeConfig.native.ts b/clients/client-workspaces/src/runtimeConfig.native.ts index 0b7bcaa6d7902..7f342dc2fdb2a 100644 --- a/clients/client-workspaces/src/runtimeConfig.native.ts +++ b/clients/client-workspaces/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { WorkSpacesClientConfig } from "./WorkSpacesClient"; +import type { WorkSpacesClientConfig } from "./WorkSpacesClient"; /** * @internal diff --git a/clients/client-workspaces/src/runtimeConfig.shared.ts b/clients/client-workspaces/src/runtimeConfig.shared.ts index 34b7f0bea5113..7d77db04ffce4 100644 --- a/clients/client-workspaces/src/runtimeConfig.shared.ts +++ b/clients/client-workspaces/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultWorkSpacesHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { WorkSpacesClientConfig } from "./WorkSpacesClient"; +import type { WorkSpacesClientConfig } from "./WorkSpacesClient"; /** * @internal diff --git a/clients/client-workspaces/src/runtimeConfig.ts b/clients/client-workspaces/src/runtimeConfig.ts index 6bf19cdfa8497..cdb29059d7dab 100644 --- a/clients/client-workspaces/src/runtimeConfig.ts +++ b/clients/client-workspaces/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WorkSpacesClientConfig } from "./WorkSpacesClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WorkSpacesClientConfig } from "./WorkSpacesClient"; /** * @internal diff --git a/clients/client-workspaces/src/runtimeExtensions.ts b/clients/client-workspaces/src/runtimeExtensions.ts index 6f5928cf25e6b..1df972ed3c5ec 100644 --- a/clients/client-workspaces/src/runtimeExtensions.ts +++ b/clients/client-workspaces/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { WorkSpacesExtensionConfiguration } from "./extensionConfiguration"; +import type { WorkSpacesExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-workspaces/src/schemas/schemas_0.ts b/clients/client-workspaces/src/schemas/schemas_0.ts index a85b5ad99f283..d45df06be10b7 100644 --- a/clients/client-workspaces/src/schemas/schemas_0.ts +++ b/clients/client-workspaces/src/schemas/schemas_0.ts @@ -687,7 +687,7 @@ const n0 = "com.amazonaws.workspaces"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/clients/client-xray/package.json b/clients/client-xray/package.json index 4c0c0d2059e24..65955d37e51bd 100644 --- a/clients/client-xray/package.json +++ b/clients/client-xray/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/clients/client-xray/src/XRay.ts b/clients/client-xray/src/XRay.ts index 85d01a08d14ea..5eb3f3bbd43d5 100644 --- a/clients/client-xray/src/XRay.ts +++ b/clients/client-xray/src/XRay.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchGetTracesCommand, @@ -164,7 +164,7 @@ import { UpdateTraceSegmentDestinationCommandInput, UpdateTraceSegmentDestinationCommandOutput, } from "./commands/UpdateTraceSegmentDestinationCommand"; -import { XRayClient, XRayClientConfig } from "./XRayClient"; +import { XRayClient } from "./XRayClient"; const commands = { BatchGetTracesCommand, diff --git a/clients/client-xray/src/XRayClient.ts b/clients/client-xray/src/XRayClient.ts index 5927973064fb5..20e46b1dcdd52 100644 --- a/clients/client-xray/src/XRayClient.ts +++ b/clients/client-xray/src/XRayClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultXRayHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { BatchGetTracesCommandInput, BatchGetTracesCommandOutput } from "./commands/BatchGetTracesCommand"; @@ -150,7 +159,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/clients/client-xray/src/auth/httpAuthExtensionConfiguration.ts b/clients/client-xray/src/auth/httpAuthExtensionConfiguration.ts index 50629cf4d1c97..d8f49ec0e0ec1 100644 --- a/clients/client-xray/src/auth/httpAuthExtensionConfiguration.ts +++ b/clients/client-xray/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { XRayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { XRayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/clients/client-xray/src/auth/httpAuthSchemeProvider.ts b/clients/client-xray/src/auth/httpAuthSchemeProvider.ts index bafb3e670f114..48396944feca5 100644 --- a/clients/client-xray/src/auth/httpAuthSchemeProvider.ts +++ b/clients/client-xray/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { XRayClientConfig, XRayClientResolvedConfig } from "../XRayClient"; +import { type XRayClientResolvedConfig, XRayClientConfig } from "../XRayClient"; /** * @internal diff --git a/clients/client-xray/src/commands/BatchGetTracesCommand.ts b/clients/client-xray/src/commands/BatchGetTracesCommand.ts index 01d3f8a7cd7dd..169c8a036b877 100644 --- a/clients/client-xray/src/commands/BatchGetTracesCommand.ts +++ b/clients/client-xray/src/commands/BatchGetTracesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BatchGetTracesRequest, BatchGetTracesResult } from "../models/models_0"; +import type { BatchGetTracesRequest, BatchGetTracesResult } from "../models/models_0"; import { BatchGetTraces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/CancelTraceRetrievalCommand.ts b/clients/client-xray/src/commands/CancelTraceRetrievalCommand.ts index ab888b29623b2..1d6a0829d84b9 100644 --- a/clients/client-xray/src/commands/CancelTraceRetrievalCommand.ts +++ b/clients/client-xray/src/commands/CancelTraceRetrievalCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CancelTraceRetrievalRequest, CancelTraceRetrievalResult } from "../models/models_0"; +import type { CancelTraceRetrievalRequest, CancelTraceRetrievalResult } from "../models/models_0"; import { CancelTraceRetrieval } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/CreateGroupCommand.ts b/clients/client-xray/src/commands/CreateGroupCommand.ts index dcd6b73876a3f..e5a8c235ffdb6 100644 --- a/clients/client-xray/src/commands/CreateGroupCommand.ts +++ b/clients/client-xray/src/commands/CreateGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateGroupRequest, CreateGroupResult } from "../models/models_0"; +import type { CreateGroupRequest, CreateGroupResult } from "../models/models_0"; import { CreateGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/CreateSamplingRuleCommand.ts b/clients/client-xray/src/commands/CreateSamplingRuleCommand.ts index ff8acaef6f872..5ce88d1d563e5 100644 --- a/clients/client-xray/src/commands/CreateSamplingRuleCommand.ts +++ b/clients/client-xray/src/commands/CreateSamplingRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateSamplingRuleRequest, CreateSamplingRuleResult } from "../models/models_0"; +import type { CreateSamplingRuleRequest, CreateSamplingRuleResult } from "../models/models_0"; import { CreateSamplingRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/DeleteGroupCommand.ts b/clients/client-xray/src/commands/DeleteGroupCommand.ts index fb7c10199d952..e45d5a8d7ebd9 100644 --- a/clients/client-xray/src/commands/DeleteGroupCommand.ts +++ b/clients/client-xray/src/commands/DeleteGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteGroupRequest, DeleteGroupResult } from "../models/models_0"; +import type { DeleteGroupRequest, DeleteGroupResult } from "../models/models_0"; import { DeleteGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/DeleteResourcePolicyCommand.ts b/clients/client-xray/src/commands/DeleteResourcePolicyCommand.ts index 19fe57edcc78e..dc0b8f2c9a5ad 100644 --- a/clients/client-xray/src/commands/DeleteResourcePolicyCommand.ts +++ b/clients/client-xray/src/commands/DeleteResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteResourcePolicyRequest, DeleteResourcePolicyResult } from "../models/models_0"; +import type { DeleteResourcePolicyRequest, DeleteResourcePolicyResult } from "../models/models_0"; import { DeleteResourcePolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/DeleteSamplingRuleCommand.ts b/clients/client-xray/src/commands/DeleteSamplingRuleCommand.ts index 788d31fda03ac..0b5ec90757472 100644 --- a/clients/client-xray/src/commands/DeleteSamplingRuleCommand.ts +++ b/clients/client-xray/src/commands/DeleteSamplingRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DeleteSamplingRuleRequest, DeleteSamplingRuleResult } from "../models/models_0"; +import type { DeleteSamplingRuleRequest, DeleteSamplingRuleResult } from "../models/models_0"; import { DeleteSamplingRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetEncryptionConfigCommand.ts b/clients/client-xray/src/commands/GetEncryptionConfigCommand.ts index 71f97c88e3c9b..7ae99cbaa4810 100644 --- a/clients/client-xray/src/commands/GetEncryptionConfigCommand.ts +++ b/clients/client-xray/src/commands/GetEncryptionConfigCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetEncryptionConfigRequest, GetEncryptionConfigResult } from "../models/models_0"; +import type { GetEncryptionConfigRequest, GetEncryptionConfigResult } from "../models/models_0"; import { GetEncryptionConfig } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetGroupCommand.ts b/clients/client-xray/src/commands/GetGroupCommand.ts index c613ce121be70..5495b75d5027c 100644 --- a/clients/client-xray/src/commands/GetGroupCommand.ts +++ b/clients/client-xray/src/commands/GetGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupRequest, GetGroupResult } from "../models/models_0"; +import type { GetGroupRequest, GetGroupResult } from "../models/models_0"; import { GetGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetGroupsCommand.ts b/clients/client-xray/src/commands/GetGroupsCommand.ts index 82262bd144679..b6ea4dc7a4e70 100644 --- a/clients/client-xray/src/commands/GetGroupsCommand.ts +++ b/clients/client-xray/src/commands/GetGroupsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetGroupsRequest, GetGroupsResult } from "../models/models_0"; +import type { GetGroupsRequest, GetGroupsResult } from "../models/models_0"; import { GetGroups } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetIndexingRulesCommand.ts b/clients/client-xray/src/commands/GetIndexingRulesCommand.ts index f48fa88f4cd8d..a3e28d8664a71 100644 --- a/clients/client-xray/src/commands/GetIndexingRulesCommand.ts +++ b/clients/client-xray/src/commands/GetIndexingRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetIndexingRulesRequest, GetIndexingRulesResult } from "../models/models_0"; +import type { GetIndexingRulesRequest, GetIndexingRulesResult } from "../models/models_0"; import { GetIndexingRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetInsightCommand.ts b/clients/client-xray/src/commands/GetInsightCommand.ts index dafad18f6edc9..5bf202f8e3270 100644 --- a/clients/client-xray/src/commands/GetInsightCommand.ts +++ b/clients/client-xray/src/commands/GetInsightCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightRequest, GetInsightResult } from "../models/models_0"; +import type { GetInsightRequest, GetInsightResult } from "../models/models_0"; import { GetInsight } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetInsightEventsCommand.ts b/clients/client-xray/src/commands/GetInsightEventsCommand.ts index 3285263ce120a..8f55d8bad184f 100644 --- a/clients/client-xray/src/commands/GetInsightEventsCommand.ts +++ b/clients/client-xray/src/commands/GetInsightEventsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightEventsRequest, GetInsightEventsResult } from "../models/models_0"; +import type { GetInsightEventsRequest, GetInsightEventsResult } from "../models/models_0"; import { GetInsightEvents } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetInsightImpactGraphCommand.ts b/clients/client-xray/src/commands/GetInsightImpactGraphCommand.ts index 5e8627adbd0ee..6540f9ee5ccd7 100644 --- a/clients/client-xray/src/commands/GetInsightImpactGraphCommand.ts +++ b/clients/client-xray/src/commands/GetInsightImpactGraphCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightImpactGraphRequest, GetInsightImpactGraphResult } from "../models/models_0"; +import type { GetInsightImpactGraphRequest, GetInsightImpactGraphResult } from "../models/models_0"; import { GetInsightImpactGraph } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetInsightSummariesCommand.ts b/clients/client-xray/src/commands/GetInsightSummariesCommand.ts index 1958d3803a0b1..1c7f1bd3aa0cf 100644 --- a/clients/client-xray/src/commands/GetInsightSummariesCommand.ts +++ b/clients/client-xray/src/commands/GetInsightSummariesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetInsightSummariesRequest, GetInsightSummariesResult } from "../models/models_0"; +import type { GetInsightSummariesRequest, GetInsightSummariesResult } from "../models/models_0"; import { GetInsightSummaries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetRetrievedTracesGraphCommand.ts b/clients/client-xray/src/commands/GetRetrievedTracesGraphCommand.ts index 7b58f20dd09fe..4ee5b174b4721 100644 --- a/clients/client-xray/src/commands/GetRetrievedTracesGraphCommand.ts +++ b/clients/client-xray/src/commands/GetRetrievedTracesGraphCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRetrievedTracesGraphRequest, GetRetrievedTracesGraphResult } from "../models/models_0"; +import type { GetRetrievedTracesGraphRequest, GetRetrievedTracesGraphResult } from "../models/models_0"; import { GetRetrievedTracesGraph } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetSamplingRulesCommand.ts b/clients/client-xray/src/commands/GetSamplingRulesCommand.ts index a444485c4aa8d..7120bc7bbc8a2 100644 --- a/clients/client-xray/src/commands/GetSamplingRulesCommand.ts +++ b/clients/client-xray/src/commands/GetSamplingRulesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSamplingRulesRequest, GetSamplingRulesResult } from "../models/models_0"; +import type { GetSamplingRulesRequest, GetSamplingRulesResult } from "../models/models_0"; import { GetSamplingRules } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetSamplingStatisticSummariesCommand.ts b/clients/client-xray/src/commands/GetSamplingStatisticSummariesCommand.ts index afdbcb44cc09a..d1549fc6b0d5b 100644 --- a/clients/client-xray/src/commands/GetSamplingStatisticSummariesCommand.ts +++ b/clients/client-xray/src/commands/GetSamplingStatisticSummariesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSamplingStatisticSummariesRequest, GetSamplingStatisticSummariesResult } from "../models/models_0"; +import type { GetSamplingStatisticSummariesRequest, GetSamplingStatisticSummariesResult } from "../models/models_0"; import { GetSamplingStatisticSummaries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetSamplingTargetsCommand.ts b/clients/client-xray/src/commands/GetSamplingTargetsCommand.ts index 2942a26c6a13b..66f3ded8dc008 100644 --- a/clients/client-xray/src/commands/GetSamplingTargetsCommand.ts +++ b/clients/client-xray/src/commands/GetSamplingTargetsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetSamplingTargetsRequest, GetSamplingTargetsResult } from "../models/models_0"; +import type { GetSamplingTargetsRequest, GetSamplingTargetsResult } from "../models/models_0"; import { GetSamplingTargets } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetServiceGraphCommand.ts b/clients/client-xray/src/commands/GetServiceGraphCommand.ts index 074685e06179b..bcc122fba646a 100644 --- a/clients/client-xray/src/commands/GetServiceGraphCommand.ts +++ b/clients/client-xray/src/commands/GetServiceGraphCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetServiceGraphRequest, GetServiceGraphResult } from "../models/models_0"; +import type { GetServiceGraphRequest, GetServiceGraphResult } from "../models/models_0"; import { GetServiceGraph } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetTimeSeriesServiceStatisticsCommand.ts b/clients/client-xray/src/commands/GetTimeSeriesServiceStatisticsCommand.ts index e71116496cde0..1de9dffea1ca7 100644 --- a/clients/client-xray/src/commands/GetTimeSeriesServiceStatisticsCommand.ts +++ b/clients/client-xray/src/commands/GetTimeSeriesServiceStatisticsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTimeSeriesServiceStatisticsRequest, GetTimeSeriesServiceStatisticsResult } from "../models/models_0"; +import type { GetTimeSeriesServiceStatisticsRequest, GetTimeSeriesServiceStatisticsResult } from "../models/models_0"; import { GetTimeSeriesServiceStatistics } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetTraceGraphCommand.ts b/clients/client-xray/src/commands/GetTraceGraphCommand.ts index e1bfae1820d15..400d5341bb47e 100644 --- a/clients/client-xray/src/commands/GetTraceGraphCommand.ts +++ b/clients/client-xray/src/commands/GetTraceGraphCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTraceGraphRequest, GetTraceGraphResult } from "../models/models_0"; +import type { GetTraceGraphRequest, GetTraceGraphResult } from "../models/models_0"; import { GetTraceGraph } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetTraceSegmentDestinationCommand.ts b/clients/client-xray/src/commands/GetTraceSegmentDestinationCommand.ts index 1e3cf0ad984eb..591941655b838 100644 --- a/clients/client-xray/src/commands/GetTraceSegmentDestinationCommand.ts +++ b/clients/client-xray/src/commands/GetTraceSegmentDestinationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTraceSegmentDestinationRequest, GetTraceSegmentDestinationResult } from "../models/models_0"; +import type { GetTraceSegmentDestinationRequest, GetTraceSegmentDestinationResult } from "../models/models_0"; import { GetTraceSegmentDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/GetTraceSummariesCommand.ts b/clients/client-xray/src/commands/GetTraceSummariesCommand.ts index 5f977938f3d05..134dc723cf19b 100644 --- a/clients/client-xray/src/commands/GetTraceSummariesCommand.ts +++ b/clients/client-xray/src/commands/GetTraceSummariesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetTraceSummariesRequest, GetTraceSummariesResult } from "../models/models_0"; +import type { GetTraceSummariesRequest, GetTraceSummariesResult } from "../models/models_0"; import { GetTraceSummaries } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/ListResourcePoliciesCommand.ts b/clients/client-xray/src/commands/ListResourcePoliciesCommand.ts index 45d6e35de138f..4bf603165f2a3 100644 --- a/clients/client-xray/src/commands/ListResourcePoliciesCommand.ts +++ b/clients/client-xray/src/commands/ListResourcePoliciesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListResourcePoliciesRequest, ListResourcePoliciesResult } from "../models/models_0"; +import type { ListResourcePoliciesRequest, ListResourcePoliciesResult } from "../models/models_0"; import { ListResourcePolicies } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/ListRetrievedTracesCommand.ts b/clients/client-xray/src/commands/ListRetrievedTracesCommand.ts index ebc93ecb44090..d926cbddb7c6c 100644 --- a/clients/client-xray/src/commands/ListRetrievedTracesCommand.ts +++ b/clients/client-xray/src/commands/ListRetrievedTracesCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListRetrievedTracesRequest, ListRetrievedTracesResult } from "../models/models_0"; +import type { ListRetrievedTracesRequest, ListRetrievedTracesResult } from "../models/models_0"; import { ListRetrievedTraces } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/ListTagsForResourceCommand.ts b/clients/client-xray/src/commands/ListTagsForResourceCommand.ts index 1874229c95073..53283d84ae486 100644 --- a/clients/client-xray/src/commands/ListTagsForResourceCommand.ts +++ b/clients/client-xray/src/commands/ListTagsForResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; +import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0"; import { ListTagsForResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/PutEncryptionConfigCommand.ts b/clients/client-xray/src/commands/PutEncryptionConfigCommand.ts index 2dd0225d0be4e..eed51c4a7deb6 100644 --- a/clients/client-xray/src/commands/PutEncryptionConfigCommand.ts +++ b/clients/client-xray/src/commands/PutEncryptionConfigCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutEncryptionConfigRequest, PutEncryptionConfigResult } from "../models/models_0"; +import type { PutEncryptionConfigRequest, PutEncryptionConfigResult } from "../models/models_0"; import { PutEncryptionConfig } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/PutResourcePolicyCommand.ts b/clients/client-xray/src/commands/PutResourcePolicyCommand.ts index a50a0d4f327e6..e3c6cf86ed541 100644 --- a/clients/client-xray/src/commands/PutResourcePolicyCommand.ts +++ b/clients/client-xray/src/commands/PutResourcePolicyCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutResourcePolicyRequest, PutResourcePolicyResult } from "../models/models_0"; +import type { PutResourcePolicyRequest, PutResourcePolicyResult } from "../models/models_0"; import { PutResourcePolicy } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/PutTelemetryRecordsCommand.ts b/clients/client-xray/src/commands/PutTelemetryRecordsCommand.ts index a8f43324ea8a4..70a108e66f90b 100644 --- a/clients/client-xray/src/commands/PutTelemetryRecordsCommand.ts +++ b/clients/client-xray/src/commands/PutTelemetryRecordsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTelemetryRecordsRequest, PutTelemetryRecordsResult } from "../models/models_0"; +import type { PutTelemetryRecordsRequest, PutTelemetryRecordsResult } from "../models/models_0"; import { PutTelemetryRecords } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/PutTraceSegmentsCommand.ts b/clients/client-xray/src/commands/PutTraceSegmentsCommand.ts index a72a1669a8ee7..5c41a6aa6d5fd 100644 --- a/clients/client-xray/src/commands/PutTraceSegmentsCommand.ts +++ b/clients/client-xray/src/commands/PutTraceSegmentsCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutTraceSegmentsRequest, PutTraceSegmentsResult } from "../models/models_0"; +import type { PutTraceSegmentsRequest, PutTraceSegmentsResult } from "../models/models_0"; import { PutTraceSegments } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/StartTraceRetrievalCommand.ts b/clients/client-xray/src/commands/StartTraceRetrievalCommand.ts index 6243ca0e777eb..e99a379117587 100644 --- a/clients/client-xray/src/commands/StartTraceRetrievalCommand.ts +++ b/clients/client-xray/src/commands/StartTraceRetrievalCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StartTraceRetrievalRequest, StartTraceRetrievalResult } from "../models/models_0"; +import type { StartTraceRetrievalRequest, StartTraceRetrievalResult } from "../models/models_0"; import { StartTraceRetrieval } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/TagResourceCommand.ts b/clients/client-xray/src/commands/TagResourceCommand.ts index ae94efe39be00..d75628b1c11ff 100644 --- a/clients/client-xray/src/commands/TagResourceCommand.ts +++ b/clients/client-xray/src/commands/TagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TagResourceRequest, TagResourceResponse } from "../models/models_0"; +import type { TagResourceRequest, TagResourceResponse } from "../models/models_0"; import { TagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/UntagResourceCommand.ts b/clients/client-xray/src/commands/UntagResourceCommand.ts index fc7dab894f7e9..7b9478d6602ac 100644 --- a/clients/client-xray/src/commands/UntagResourceCommand.ts +++ b/clients/client-xray/src/commands/UntagResourceCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; +import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0"; import { UntagResource } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/UpdateGroupCommand.ts b/clients/client-xray/src/commands/UpdateGroupCommand.ts index d354c803f616e..30e6b0f83bdfe 100644 --- a/clients/client-xray/src/commands/UpdateGroupCommand.ts +++ b/clients/client-xray/src/commands/UpdateGroupCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateGroupRequest, UpdateGroupResult } from "../models/models_0"; +import type { UpdateGroupRequest, UpdateGroupResult } from "../models/models_0"; import { UpdateGroup } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/UpdateIndexingRuleCommand.ts b/clients/client-xray/src/commands/UpdateIndexingRuleCommand.ts index 060de57c2bf76..f2bbac8a7441b 100644 --- a/clients/client-xray/src/commands/UpdateIndexingRuleCommand.ts +++ b/clients/client-xray/src/commands/UpdateIndexingRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateIndexingRuleRequest, UpdateIndexingRuleResult } from "../models/models_0"; +import type { UpdateIndexingRuleRequest, UpdateIndexingRuleResult } from "../models/models_0"; import { UpdateIndexingRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/UpdateSamplingRuleCommand.ts b/clients/client-xray/src/commands/UpdateSamplingRuleCommand.ts index cd837c54ab2a8..f1849fb9c2880 100644 --- a/clients/client-xray/src/commands/UpdateSamplingRuleCommand.ts +++ b/clients/client-xray/src/commands/UpdateSamplingRuleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateSamplingRuleRequest, UpdateSamplingRuleResult } from "../models/models_0"; +import type { UpdateSamplingRuleRequest, UpdateSamplingRuleResult } from "../models/models_0"; import { UpdateSamplingRule } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/commands/UpdateTraceSegmentDestinationCommand.ts b/clients/client-xray/src/commands/UpdateTraceSegmentDestinationCommand.ts index 085ed87b27f43..e866ff7e6de36 100644 --- a/clients/client-xray/src/commands/UpdateTraceSegmentDestinationCommand.ts +++ b/clients/client-xray/src/commands/UpdateTraceSegmentDestinationCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UpdateTraceSegmentDestinationRequest, UpdateTraceSegmentDestinationResult } from "../models/models_0"; +import type { UpdateTraceSegmentDestinationRequest, UpdateTraceSegmentDestinationResult } from "../models/models_0"; import { UpdateTraceSegmentDestination } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; +import type { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient"; /** * @public diff --git a/clients/client-xray/src/endpoint/EndpointParameters.ts b/clients/client-xray/src/endpoint/EndpointParameters.ts index 368533e6d3d5e..3118fcf44dcd0 100644 --- a/clients/client-xray/src/endpoint/EndpointParameters.ts +++ b/clients/client-xray/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/clients/client-xray/src/endpoint/endpointResolver.ts b/clients/client-xray/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/clients/client-xray/src/endpoint/endpointResolver.ts +++ b/clients/client-xray/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/clients/client-xray/src/extensionConfiguration.ts b/clients/client-xray/src/extensionConfiguration.ts index 25b3f682a4949..54e54ff63e3ef 100644 --- a/clients/client-xray/src/extensionConfiguration.ts +++ b/clients/client-xray/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/clients/client-xray/src/models/XRayServiceException.ts b/clients/client-xray/src/models/XRayServiceException.ts index 52b106aef8560..971db6d5b3f0d 100644 --- a/clients/client-xray/src/models/XRayServiceException.ts +++ b/clients/client-xray/src/models/XRayServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/clients/client-xray/src/models/errors.ts b/clients/client-xray/src/models/errors.ts index 25ad90b9dd79e..de2d8dea2f733 100644 --- a/clients/client-xray/src/models/errors.ts +++ b/clients/client-xray/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { XRayServiceException as __BaseException } from "./XRayServiceException"; diff --git a/clients/client-xray/src/pagination/BatchGetTracesPaginator.ts b/clients/client-xray/src/pagination/BatchGetTracesPaginator.ts index 52d9ca7402af6..9027fc4404be7 100644 --- a/clients/client-xray/src/pagination/BatchGetTracesPaginator.ts +++ b/clients/client-xray/src/pagination/BatchGetTracesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { BatchGetTracesCommand, diff --git a/clients/client-xray/src/pagination/GetGroupsPaginator.ts b/clients/client-xray/src/pagination/GetGroupsPaginator.ts index 4c01aa82c4bee..890664e50b5c6 100644 --- a/clients/client-xray/src/pagination/GetGroupsPaginator.ts +++ b/clients/client-xray/src/pagination/GetGroupsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetGroupsCommand, GetGroupsCommandInput, GetGroupsCommandOutput } from "../commands/GetGroupsCommand"; import { XRayClient } from "../XRayClient"; diff --git a/clients/client-xray/src/pagination/GetInsightEventsPaginator.ts b/clients/client-xray/src/pagination/GetInsightEventsPaginator.ts index 0168875599160..3602ac74854d6 100644 --- a/clients/client-xray/src/pagination/GetInsightEventsPaginator.ts +++ b/clients/client-xray/src/pagination/GetInsightEventsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetInsightEventsCommand, diff --git a/clients/client-xray/src/pagination/GetInsightSummariesPaginator.ts b/clients/client-xray/src/pagination/GetInsightSummariesPaginator.ts index 6fe8f98af50f0..1fb7d7a5218f0 100644 --- a/clients/client-xray/src/pagination/GetInsightSummariesPaginator.ts +++ b/clients/client-xray/src/pagination/GetInsightSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetInsightSummariesCommand, diff --git a/clients/client-xray/src/pagination/GetSamplingRulesPaginator.ts b/clients/client-xray/src/pagination/GetSamplingRulesPaginator.ts index 1100f1a1e603d..f9b106036de0c 100644 --- a/clients/client-xray/src/pagination/GetSamplingRulesPaginator.ts +++ b/clients/client-xray/src/pagination/GetSamplingRulesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSamplingRulesCommand, diff --git a/clients/client-xray/src/pagination/GetSamplingStatisticSummariesPaginator.ts b/clients/client-xray/src/pagination/GetSamplingStatisticSummariesPaginator.ts index 66836d65ac4fd..d68e1f11aa13d 100644 --- a/clients/client-xray/src/pagination/GetSamplingStatisticSummariesPaginator.ts +++ b/clients/client-xray/src/pagination/GetSamplingStatisticSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetSamplingStatisticSummariesCommand, diff --git a/clients/client-xray/src/pagination/GetServiceGraphPaginator.ts b/clients/client-xray/src/pagination/GetServiceGraphPaginator.ts index cb91ecfeba025..54848d20537c9 100644 --- a/clients/client-xray/src/pagination/GetServiceGraphPaginator.ts +++ b/clients/client-xray/src/pagination/GetServiceGraphPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetServiceGraphCommand, diff --git a/clients/client-xray/src/pagination/GetTimeSeriesServiceStatisticsPaginator.ts b/clients/client-xray/src/pagination/GetTimeSeriesServiceStatisticsPaginator.ts index 83b83a3bcc61e..d044ea44ab4ca 100644 --- a/clients/client-xray/src/pagination/GetTimeSeriesServiceStatisticsPaginator.ts +++ b/clients/client-xray/src/pagination/GetTimeSeriesServiceStatisticsPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTimeSeriesServiceStatisticsCommand, diff --git a/clients/client-xray/src/pagination/GetTraceGraphPaginator.ts b/clients/client-xray/src/pagination/GetTraceGraphPaginator.ts index bbbde5fdda211..7fe173305a536 100644 --- a/clients/client-xray/src/pagination/GetTraceGraphPaginator.ts +++ b/clients/client-xray/src/pagination/GetTraceGraphPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTraceGraphCommand, diff --git a/clients/client-xray/src/pagination/GetTraceSummariesPaginator.ts b/clients/client-xray/src/pagination/GetTraceSummariesPaginator.ts index 1cca996999f68..0ae574cfa16cb 100644 --- a/clients/client-xray/src/pagination/GetTraceSummariesPaginator.ts +++ b/clients/client-xray/src/pagination/GetTraceSummariesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { GetTraceSummariesCommand, diff --git a/clients/client-xray/src/pagination/Interfaces.ts b/clients/client-xray/src/pagination/Interfaces.ts index 233ae85808412..ae1d80da67a7c 100644 --- a/clients/client-xray/src/pagination/Interfaces.ts +++ b/clients/client-xray/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { XRayClient } from "../XRayClient"; diff --git a/clients/client-xray/src/pagination/ListResourcePoliciesPaginator.ts b/clients/client-xray/src/pagination/ListResourcePoliciesPaginator.ts index c04c9409debc6..8d8521e56720d 100644 --- a/clients/client-xray/src/pagination/ListResourcePoliciesPaginator.ts +++ b/clients/client-xray/src/pagination/ListResourcePoliciesPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListResourcePoliciesCommand, diff --git a/clients/client-xray/src/pagination/ListTagsForResourcePaginator.ts b/clients/client-xray/src/pagination/ListTagsForResourcePaginator.ts index 8a97aee5c5664..5d42fcd364d21 100644 --- a/clients/client-xray/src/pagination/ListTagsForResourcePaginator.ts +++ b/clients/client-xray/src/pagination/ListTagsForResourcePaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { ListTagsForResourceCommand, diff --git a/clients/client-xray/src/runtimeConfig.browser.ts b/clients/client-xray/src/runtimeConfig.browser.ts index 4eca198d746fe..90bcd1e1df613 100644 --- a/clients/client-xray/src/runtimeConfig.browser.ts +++ b/clients/client-xray/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { XRayClientConfig } from "./XRayClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { XRayClientConfig } from "./XRayClient"; /** * @internal diff --git a/clients/client-xray/src/runtimeConfig.native.ts b/clients/client-xray/src/runtimeConfig.native.ts index 060dc388c3f40..5b1bbab557502 100644 --- a/clients/client-xray/src/runtimeConfig.native.ts +++ b/clients/client-xray/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { XRayClientConfig } from "./XRayClient"; +import type { XRayClientConfig } from "./XRayClient"; /** * @internal diff --git a/clients/client-xray/src/runtimeConfig.shared.ts b/clients/client-xray/src/runtimeConfig.shared.ts index 1baf910867a25..d423df0032e88 100644 --- a/clients/client-xray/src/runtimeConfig.shared.ts +++ b/clients/client-xray/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultXRayHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { XRayClientConfig } from "./XRayClient"; +import type { XRayClientConfig } from "./XRayClient"; /** * @internal diff --git a/clients/client-xray/src/runtimeConfig.ts b/clients/client-xray/src/runtimeConfig.ts index 7f72a4de2003c..381fedeb4a961 100644 --- a/clients/client-xray/src/runtimeConfig.ts +++ b/clients/client-xray/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { XRayClientConfig } from "./XRayClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { XRayClientConfig } from "./XRayClient"; /** * @internal diff --git a/clients/client-xray/src/runtimeExtensions.ts b/clients/client-xray/src/runtimeExtensions.ts index 025884069fef0..4d6039d49314e 100644 --- a/clients/client-xray/src/runtimeExtensions.ts +++ b/clients/client-xray/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { XRayExtensionConfiguration } from "./extensionConfiguration"; +import type { XRayExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/clients/client-xray/src/schemas/schemas_0.ts b/clients/client-xray/src/schemas/schemas_0.ts index bfd5f6a09de48..ca2dec518dee6 100644 --- a/clients/client-xray/src/schemas/schemas_0.ts +++ b/clients/client-xray/src/schemas/schemas_0.ts @@ -418,7 +418,7 @@ const n0 = "com.amazonaws.xray"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/lib/lib-dynamodb/package.json b/lib/lib-dynamodb/package.json index c6acddf2a2358..e44b7192d07f9 100644 --- a/lib/lib-dynamodb/package.json +++ b/lib/lib-dynamodb/package.json @@ -32,8 +32,8 @@ "dependencies": { "@aws-sdk/core": "*", "@aws-sdk/util-dynamodb": "*", - "@smithy/core": "^3.18.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/core": "^3.18.6", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, diff --git a/lib/lib-dynamodb/src/DynamoDBDocument.ts b/lib/lib-dynamodb/src/DynamoDBDocument.ts index 7e3143875fbba..a47e15d3fd164 100644 --- a/lib/lib-dynamodb/src/DynamoDBDocument.ts +++ b/lib/lib-dynamodb/src/DynamoDBDocument.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { DynamoDBClient } from "@aws-sdk/client-dynamodb"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchExecuteStatementCommand, diff --git a/lib/lib-dynamodb/src/DynamoDBDocumentClient.ts b/lib/lib-dynamodb/src/DynamoDBDocumentClient.ts index 2073fdfa10ac3..e544f12fbe5e1 100644 --- a/lib/lib-dynamodb/src/DynamoDBDocumentClient.ts +++ b/lib/lib-dynamodb/src/DynamoDBDocumentClient.ts @@ -7,7 +7,7 @@ import { } from "@aws-sdk/client-dynamodb"; import { marshallOptions, unmarshallOptions } from "@aws-sdk/util-dynamodb"; import { Client as __Client } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { BatchExecuteStatementCommandInput, diff --git a/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts b/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts index 2f542799d9617..fb1fa3a4aaa4c 100644 --- a/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts +++ b/lib/lib-dynamodb/src/commands/BatchExecuteStatementCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { BatchExecuteStatementCommand as __BatchExecuteStatementCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/BatchGetCommand.ts b/lib/lib-dynamodb/src/commands/BatchGetCommand.ts index b4a371ff9f438..5bd85f7948614 100644 --- a/lib/lib-dynamodb/src/commands/BatchGetCommand.ts +++ b/lib/lib-dynamodb/src/commands/BatchGetCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { BatchGetItemCommand as __BatchGetItemCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts b/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts index c82b5fbcc600a..12ee95ee20e47 100644 --- a/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts +++ b/lib/lib-dynamodb/src/commands/BatchWriteCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { BatchWriteItemCommand as __BatchWriteItemCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/DeleteCommand.ts b/lib/lib-dynamodb/src/commands/DeleteCommand.ts index 5b7e0161b1a6e..58cf162b40c0f 100644 --- a/lib/lib-dynamodb/src/commands/DeleteCommand.ts +++ b/lib/lib-dynamodb/src/commands/DeleteCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { DeleteItemCommand as __DeleteItemCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_MEMBERS, ALL_VALUES, SELF } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts b/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts index 3c06c973948cd..e89b612624a4f 100644 --- a/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts +++ b/lib/lib-dynamodb/src/commands/ExecuteStatementCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { ExecuteStatementCommand as __ExecuteStatementCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts b/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts index 4f8831742b2a3..e798e2d1d09ca 100644 --- a/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts +++ b/lib/lib-dynamodb/src/commands/ExecuteTransactionCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { ExecuteTransactionCommand as __ExecuteTransactionCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/GetCommand.ts b/lib/lib-dynamodb/src/commands/GetCommand.ts index b3edd17328e6d..f00beb22f464e 100644 --- a/lib/lib-dynamodb/src/commands/GetCommand.ts +++ b/lib/lib-dynamodb/src/commands/GetCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { GetItemCommand as __GetItemCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/PutCommand.ts b/lib/lib-dynamodb/src/commands/PutCommand.ts index 1099c1a935857..152af1478c513 100644 --- a/lib/lib-dynamodb/src/commands/PutCommand.ts +++ b/lib/lib-dynamodb/src/commands/PutCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { PutItemCommand as __PutItemCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_MEMBERS, ALL_VALUES, SELF } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/QueryCommand.ts b/lib/lib-dynamodb/src/commands/QueryCommand.ts index c917d55763ebc..b6022710332bf 100644 --- a/lib/lib-dynamodb/src/commands/QueryCommand.ts +++ b/lib/lib-dynamodb/src/commands/QueryCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { QueryCommand as __QueryCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/ScanCommand.ts b/lib/lib-dynamodb/src/commands/ScanCommand.ts index d407bc8b9891b..878ee6b0a2cb7 100644 --- a/lib/lib-dynamodb/src/commands/ScanCommand.ts +++ b/lib/lib-dynamodb/src/commands/ScanCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { ScanCommand as __ScanCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_MEMBERS, ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/TransactGetCommand.ts b/lib/lib-dynamodb/src/commands/TransactGetCommand.ts index ef14b69d9ad86..a7c898bb4ee07 100644 --- a/lib/lib-dynamodb/src/commands/TransactGetCommand.ts +++ b/lib/lib-dynamodb/src/commands/TransactGetCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { TransactGetItemsCommand as __TransactGetItemsCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts b/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts index 651b8858d93b0..20cf92530a39f 100644 --- a/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts +++ b/lib/lib-dynamodb/src/commands/TransactWriteCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { TransactWriteItemsCommand as __TransactWriteItemsCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_VALUES } from "../commands/utils"; diff --git a/lib/lib-dynamodb/src/commands/UpdateCommand.ts b/lib/lib-dynamodb/src/commands/UpdateCommand.ts index 99a13664364a8..0f7fecdb0b14d 100644 --- a/lib/lib-dynamodb/src/commands/UpdateCommand.ts +++ b/lib/lib-dynamodb/src/commands/UpdateCommand.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { UpdateItemCommand as __UpdateItemCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/smithy-client"; -import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MiddlewareStack } from "@smithy/types"; +import { type HttpHandlerOptions as __HttpHandlerOptions, Handler, MiddlewareStack } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import { ALL_MEMBERS, ALL_VALUES, SELF } from "../commands/utils"; diff --git a/lib/lib-storage/package.json b/lib/lib-storage/package.json index eb3253b7c4a0c..692c89350d40f 100644 --- a/lib/lib-storage/package.json +++ b/lib/lib-storage/package.json @@ -31,8 +31,8 @@ "license": "Apache-2.0", "dependencies": { "@smithy/abort-controller": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/smithy-client": "^4.9.8", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/smithy-client": "^4.9.9", "buffer": "5.6.0", "events": "3.3.0", "stream-browserify": "3.0.0", diff --git a/packages/cloudfront-signer/package.json b/packages/cloudfront-signer/package.json index 71831715f6c78..7c60acfeb88c1 100644 --- a/packages/cloudfront-signer/package.json +++ b/packages/cloudfront-signer/package.json @@ -23,7 +23,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/url-parser": "^4.2.5", "tslib": "^2.6.2" }, diff --git a/packages/core/package.json b/packages/core/package.json index 223c2225764f9..7e1396e7efe51 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -83,12 +83,12 @@ "dependencies": { "@aws-sdk/types": "*", "@aws-sdk/xml-builder": "*", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/node-config-provider": "^4.3.5", "@smithy/property-provider": "^4.2.5", "@smithy/protocol-http": "^5.3.5", "@smithy/signature-v4": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/util-base64": "^4.3.0", "@smithy/util-middleware": "^4.2.5", diff --git a/packages/credential-provider-http/package.json b/packages/credential-provider-http/package.json index 0972708b730e9..e4a6058a5801f 100644 --- a/packages/credential-provider-http/package.json +++ b/packages/credential-provider-http/package.json @@ -34,7 +34,7 @@ "@smithy/node-http-handler": "^4.4.5", "@smithy/property-provider": "^4.2.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/util-stream": "^4.5.6", "tslib": "^2.6.2" diff --git a/packages/credential-providers/package.json b/packages/credential-providers/package.json index 853518c0109a5..77d93af0740e7 100644 --- a/packages/credential-providers/package.json +++ b/packages/credential-providers/package.json @@ -45,7 +45,7 @@ "@aws-sdk/nested-clients": "*", "@aws-sdk/types": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/credential-provider-imds": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/property-provider": "^4.2.5", diff --git a/packages/middleware-sdk-ec2/package.json b/packages/middleware-sdk-ec2/package.json index f1c714e37679e..4b94866a32ba7 100644 --- a/packages/middleware-sdk-ec2/package.json +++ b/packages/middleware-sdk-ec2/package.json @@ -28,10 +28,10 @@ "dependencies": { "@aws-sdk/types": "*", "@aws-sdk/util-format-url": "*", - "@smithy/middleware-endpoint": "^4.3.12", + "@smithy/middleware-endpoint": "^4.3.13", "@smithy/protocol-http": "^5.3.5", "@smithy/signature-v4": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, diff --git a/packages/middleware-sdk-rds/package.json b/packages/middleware-sdk-rds/package.json index 7a5cdc4b7719f..4e937ecd1e666 100644 --- a/packages/middleware-sdk-rds/package.json +++ b/packages/middleware-sdk-rds/package.json @@ -26,7 +26,7 @@ "dependencies": { "@aws-sdk/types": "*", "@aws-sdk/util-format-url": "*", - "@smithy/middleware-endpoint": "^4.3.12", + "@smithy/middleware-endpoint": "^4.3.13", "@smithy/protocol-http": "^5.3.5", "@smithy/signature-v4": "^5.3.5", "@smithy/types": "^4.9.0", diff --git a/packages/middleware-sdk-s3/package.json b/packages/middleware-sdk-s3/package.json index 01c80a2ae619d..27b53f544d29c 100644 --- a/packages/middleware-sdk-s3/package.json +++ b/packages/middleware-sdk-s3/package.json @@ -31,11 +31,11 @@ "@aws-sdk/core": "*", "@aws-sdk/types": "*", "@aws-sdk/util-arn-parser": "*", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/node-config-provider": "^4.3.5", "@smithy/protocol-http": "^5.3.5", "@smithy/signature-v4": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/util-config-provider": "^4.2.0", "@smithy/util-middleware": "^4.2.5", diff --git a/packages/middleware-sdk-sqs/package.json b/packages/middleware-sdk-sqs/package.json index 391ae06ce892e..909661f54b682 100644 --- a/packages/middleware-sdk-sqs/package.json +++ b/packages/middleware-sdk-sqs/package.json @@ -25,7 +25,7 @@ "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "*", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/util-hex-encoding": "^4.2.0", "@smithy/util-utf8": "^4.2.0", diff --git a/packages/middleware-user-agent/package.json b/packages/middleware-user-agent/package.json index ec078f9a6ba8d..39898db8e6564 100644 --- a/packages/middleware-user-agent/package.json +++ b/packages/middleware-user-agent/package.json @@ -28,7 +28,7 @@ "@aws-sdk/core": "*", "@aws-sdk/types": "*", "@aws-sdk/util-endpoints": "*", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/protocol-http": "^5.3.5", "@smithy/types": "^4.9.0", "tslib": "^2.6.2" diff --git a/packages/nested-clients/package.json b/packages/nested-clients/package.json index 0df2061d14803..16496eaa40d6a 100644 --- a/packages/nested-clients/package.json +++ b/packages/nested-clients/package.json @@ -40,26 +40,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/packages/nested-clients/src/submodules/signin/Signin.ts b/packages/nested-clients/src/submodules/signin/Signin.ts index 831fe1142aaab..577f44b708a72 100644 --- a/packages/nested-clients/src/submodules/signin/Signin.ts +++ b/packages/nested-clients/src/submodules/signin/Signin.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateOAuth2TokenCommand, CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput, } from "./commands/CreateOAuth2TokenCommand"; -import { SigninClient, SigninClientConfig } from "./SigninClient"; +import { SigninClient } from "./SigninClient"; const commands = { CreateOAuth2TokenCommand, diff --git a/packages/nested-clients/src/submodules/signin/SigninClient.ts b/packages/nested-clients/src/submodules/signin/SigninClient.ts index e5af0f66241d8..15431759e577d 100644 --- a/packages/nested-clients/src/submodules/signin/SigninClient.ts +++ b/packages/nested-clients/src/submodules/signin/SigninClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSigninHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateOAuth2TokenCommandInput, CreateOAuth2TokenCommandOutput } from "./commands/CreateOAuth2TokenCommand"; @@ -65,7 +74,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/packages/nested-clients/src/submodules/signin/auth/httpAuthExtensionConfiguration.ts b/packages/nested-clients/src/submodules/signin/auth/httpAuthExtensionConfiguration.ts index b62c43708b678..60084202f0150 100644 --- a/packages/nested-clients/src/submodules/signin/auth/httpAuthExtensionConfiguration.ts +++ b/packages/nested-clients/src/submodules/signin/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SigninHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SigninHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/packages/nested-clients/src/submodules/signin/auth/httpAuthSchemeProvider.ts b/packages/nested-clients/src/submodules/signin/auth/httpAuthSchemeProvider.ts index 7d5ca3de36a10..b9d3a6a3da6f9 100644 --- a/packages/nested-clients/src/submodules/signin/auth/httpAuthSchemeProvider.ts +++ b/packages/nested-clients/src/submodules/signin/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SigninClientConfig, SigninClientResolvedConfig } from "../SigninClient"; +import { type SigninClientResolvedConfig, SigninClientConfig } from "../SigninClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/signin/commands/CreateOAuth2TokenCommand.ts b/packages/nested-clients/src/submodules/signin/commands/CreateOAuth2TokenCommand.ts index 42db762d7e40e..b244ea1b4eabb 100644 --- a/packages/nested-clients/src/submodules/signin/commands/CreateOAuth2TokenCommand.ts +++ b/packages/nested-clients/src/submodules/signin/commands/CreateOAuth2TokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateOAuth2TokenRequest, CreateOAuth2TokenResponse } from "../models/models_0"; +import type { CreateOAuth2TokenRequest, CreateOAuth2TokenResponse } from "../models/models_0"; import { CreateOAuth2Token } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SigninClientResolvedConfig } from "../SigninClient"; /** * @public diff --git a/packages/nested-clients/src/submodules/signin/endpoint/EndpointParameters.ts b/packages/nested-clients/src/submodules/signin/endpoint/EndpointParameters.ts index c1b7328597662..1296373256942 100644 --- a/packages/nested-clients/src/submodules/signin/endpoint/EndpointParameters.ts +++ b/packages/nested-clients/src/submodules/signin/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/packages/nested-clients/src/submodules/signin/endpoint/endpointResolver.ts b/packages/nested-clients/src/submodules/signin/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/packages/nested-clients/src/submodules/signin/endpoint/endpointResolver.ts +++ b/packages/nested-clients/src/submodules/signin/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/packages/nested-clients/src/submodules/signin/extensionConfiguration.ts b/packages/nested-clients/src/submodules/signin/extensionConfiguration.ts index e33b06b907bdc..76401264e2af9 100644 --- a/packages/nested-clients/src/submodules/signin/extensionConfiguration.ts +++ b/packages/nested-clients/src/submodules/signin/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/packages/nested-clients/src/submodules/signin/models/SigninServiceException.ts b/packages/nested-clients/src/submodules/signin/models/SigninServiceException.ts index fc893f835a0ba..cdd5f3af4c10d 100644 --- a/packages/nested-clients/src/submodules/signin/models/SigninServiceException.ts +++ b/packages/nested-clients/src/submodules/signin/models/SigninServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/packages/nested-clients/src/submodules/signin/models/errors.ts b/packages/nested-clients/src/submodules/signin/models/errors.ts index 0fed14cad4077..c4e22d7ff934a 100644 --- a/packages/nested-clients/src/submodules/signin/models/errors.ts +++ b/packages/nested-clients/src/submodules/signin/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { OAuth2ErrorCode } from "./enums"; import { SigninServiceException as __BaseException } from "./SigninServiceException"; diff --git a/packages/nested-clients/src/submodules/signin/runtimeConfig.browser.ts b/packages/nested-clients/src/submodules/signin/runtimeConfig.browser.ts index 88187ede9173a..44360f0366918 100644 --- a/packages/nested-clients/src/submodules/signin/runtimeConfig.browser.ts +++ b/packages/nested-clients/src/submodules/signin/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SigninClientConfig } from "./SigninClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SigninClientConfig } from "./SigninClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/signin/runtimeConfig.native.ts b/packages/nested-clients/src/submodules/signin/runtimeConfig.native.ts index bd3be451e46f9..e18f211673466 100644 --- a/packages/nested-clients/src/submodules/signin/runtimeConfig.native.ts +++ b/packages/nested-clients/src/submodules/signin/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SigninClientConfig } from "./SigninClient"; +import type { SigninClientConfig } from "./SigninClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/signin/runtimeConfig.shared.ts b/packages/nested-clients/src/submodules/signin/runtimeConfig.shared.ts index d4a465a9bef78..df472fa0012b0 100644 --- a/packages/nested-clients/src/submodules/signin/runtimeConfig.shared.ts +++ b/packages/nested-clients/src/submodules/signin/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSigninHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SigninClientConfig } from "./SigninClient"; +import type { SigninClientConfig } from "./SigninClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/signin/runtimeConfig.ts b/packages/nested-clients/src/submodules/signin/runtimeConfig.ts index a1b8d545a04ea..6ff8c4fa9b2c8 100644 --- a/packages/nested-clients/src/submodules/signin/runtimeConfig.ts +++ b/packages/nested-clients/src/submodules/signin/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SigninClientConfig } from "./SigninClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SigninClientConfig } from "./SigninClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/signin/runtimeExtensions.ts b/packages/nested-clients/src/submodules/signin/runtimeExtensions.ts index bc1b6e3b145af..fd0d4561f915f 100644 --- a/packages/nested-clients/src/submodules/signin/runtimeExtensions.ts +++ b/packages/nested-clients/src/submodules/signin/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SigninExtensionConfiguration } from "./extensionConfiguration"; +import type { SigninExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/packages/nested-clients/src/submodules/signin/schemas/schemas_0.ts b/packages/nested-clients/src/submodules/signin/schemas/schemas_0.ts index 924325dd776cd..817367fa978ec 100644 --- a/packages/nested-clients/src/submodules/signin/schemas/schemas_0.ts +++ b/packages/nested-clients/src/submodules/signin/schemas/schemas_0.ts @@ -36,7 +36,12 @@ const n0 = "com.amazonaws.signin"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types"; +import type { + StaticErrorSchema, + StaticOperationSchema, + StaticSimpleSchema, + StaticStructureSchema, +} from "@smithy/types"; import { AccessDeniedException as __AccessDeniedException, diff --git a/packages/nested-clients/src/submodules/sso-oidc/SSOOIDC.ts b/packages/nested-clients/src/submodules/sso-oidc/SSOOIDC.ts index dabcbd1dc7d13..17bc888b9797f 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/SSOOIDC.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/SSOOIDC.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { CreateTokenCommand, CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand"; -import { SSOOIDCClient, SSOOIDCClientConfig } from "./SSOOIDCClient"; +import { SSOOIDCClient } from "./SSOOIDCClient"; const commands = { CreateTokenCommand, diff --git a/packages/nested-clients/src/submodules/sso-oidc/SSOOIDCClient.ts b/packages/nested-clients/src/submodules/sso-oidc/SSOOIDCClient.ts index 6cfff4753e0d7..746acc1c3df70 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/SSOOIDCClient.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/SSOOIDCClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,39 +21,48 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSSOOIDCHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { CreateTokenCommandInput, CreateTokenCommandOutput } from "./commands/CreateTokenCommand"; @@ -64,7 +73,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/packages/nested-clients/src/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.ts b/packages/nested-clients/src/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.ts index 3c506f609e2df..267c408d7dcb6 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { SSOOIDCHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { SSOOIDCHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sso-oidc/auth/httpAuthSchemeProvider.ts b/packages/nested-clients/src/submodules/sso-oidc/auth/httpAuthSchemeProvider.ts index 24ad0ef748ce8..94df74d2b181e 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/auth/httpAuthSchemeProvider.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { SSOOIDCClientConfig, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; +import { type SSOOIDCClientResolvedConfig, SSOOIDCClientConfig } from "../SSOOIDCClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sso-oidc/commands/CreateTokenCommand.ts b/packages/nested-clients/src/submodules/sso-oidc/commands/CreateTokenCommand.ts index 9147173ca4e1f..21429ff8f1566 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/commands/CreateTokenCommand.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/commands/CreateTokenCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0"; +import type { CreateTokenRequest, CreateTokenResponse } from "../models/models_0"; import { CreateToken } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; +import type { ServiceInputTypes, ServiceOutputTypes, SSOOIDCClientResolvedConfig } from "../SSOOIDCClient"; /** * @public diff --git a/packages/nested-clients/src/submodules/sso-oidc/endpoint/EndpointParameters.ts b/packages/nested-clients/src/submodules/sso-oidc/endpoint/EndpointParameters.ts index b03c5191cacb7..e15287b4d1388 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/endpoint/EndpointParameters.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/packages/nested-clients/src/submodules/sso-oidc/endpoint/endpointResolver.ts b/packages/nested-clients/src/submodules/sso-oidc/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/endpoint/endpointResolver.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/packages/nested-clients/src/submodules/sso-oidc/extensionConfiguration.ts b/packages/nested-clients/src/submodules/sso-oidc/extensionConfiguration.ts index 0907f5df89a75..4610a4fa99eba 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/extensionConfiguration.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sso-oidc/models/SSOOIDCServiceException.ts b/packages/nested-clients/src/submodules/sso-oidc/models/SSOOIDCServiceException.ts index 12a2c75b94afc..4dcea56352cb0 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/models/SSOOIDCServiceException.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/models/SSOOIDCServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/packages/nested-clients/src/submodules/sso-oidc/models/errors.ts b/packages/nested-clients/src/submodules/sso-oidc/models/errors.ts index 753868a766e78..63dd2267699fe 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/models/errors.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { AccessDeniedExceptionReason, InvalidRequestExceptionReason } from "./enums"; import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException"; diff --git a/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.browser.ts b/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.browser.ts index 6d1616fb8ee93..a316ae868bc8c 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.browser.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSOOIDCClientConfig } from "./SSOOIDCClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { SSOOIDCClientConfig } from "./SSOOIDCClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.native.ts b/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.native.ts index 8cf992aa5fe00..e1b8947c966f3 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.native.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { SSOOIDCClientConfig } from "./SSOOIDCClient"; +import type { SSOOIDCClientConfig } from "./SSOOIDCClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.shared.ts b/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.shared.ts index 686061d70b635..ee3bcb1449b51 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.shared.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSSOOIDCHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { SSOOIDCClientConfig } from "./SSOOIDCClient"; +import type { SSOOIDCClientConfig } from "./SSOOIDCClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.ts b/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.ts index 71d546613cab6..e733f1acc2c83 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/runtimeConfig.ts @@ -14,13 +14,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { SSOOIDCClientConfig } from "./SSOOIDCClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { SSOOIDCClientConfig } from "./SSOOIDCClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sso-oidc/runtimeExtensions.ts b/packages/nested-clients/src/submodules/sso-oidc/runtimeExtensions.ts index 5c5850c895631..f2b1ed8017f70 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/runtimeExtensions.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { SSOOIDCExtensionConfiguration } from "./extensionConfiguration"; +import type { SSOOIDCExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/packages/nested-clients/src/submodules/sso-oidc/schemas/schemas_0.ts b/packages/nested-clients/src/submodules/sso-oidc/schemas/schemas_0.ts index 52861ba97ab2a..95e5236c41606 100644 --- a/packages/nested-clients/src/submodules/sso-oidc/schemas/schemas_0.ts +++ b/packages/nested-clients/src/submodules/sso-oidc/schemas/schemas_0.ts @@ -42,7 +42,7 @@ const n0 = "com.amazonaws.ssooidc"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/packages/nested-clients/src/submodules/sts/STS.ts b/packages/nested-clients/src/submodules/sts/STS.ts index fefd86b4d9c6a..5ed6b9d4bf940 100644 --- a/packages/nested-clients/src/submodules/sts/STS.ts +++ b/packages/nested-clients/src/submodules/sts/STS.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AssumeRoleCommand, AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand"; import { @@ -8,7 +8,7 @@ import { AssumeRoleWithWebIdentityCommandInput, AssumeRoleWithWebIdentityCommandOutput, } from "./commands/AssumeRoleWithWebIdentityCommand"; -import { STSClient, STSClientConfig } from "./STSClient"; +import { STSClient } from "./STSClient"; const commands = { AssumeRoleCommand, diff --git a/packages/nested-clients/src/submodules/sts/STSClient.ts b/packages/nested-clients/src/submodules/sts/STSClient.ts index c7638856b783f..1c1ce07c548ea 100644 --- a/packages/nested-clients/src/submodules/sts/STSClient.ts +++ b/packages/nested-clients/src/submodules/sts/STSClient.ts @@ -1,19 +1,19 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -21,40 +21,49 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultSTSHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { AssumeRoleCommandInput, AssumeRoleCommandOutput } from "./commands/AssumeRoleCommand"; @@ -69,7 +78,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/packages/nested-clients/src/submodules/sts/auth/httpAuthExtensionConfiguration.ts b/packages/nested-clients/src/submodules/sts/auth/httpAuthExtensionConfiguration.ts index 2c37e6db7081c..7b476d0d3d724 100644 --- a/packages/nested-clients/src/submodules/sts/auth/httpAuthExtensionConfiguration.ts +++ b/packages/nested-clients/src/submodules/sts/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { STSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { STSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sts/auth/httpAuthSchemeProvider.ts b/packages/nested-clients/src/submodules/sts/auth/httpAuthSchemeProvider.ts index df0d09a216d16..8b7f1b4f8203c 100644 --- a/packages/nested-clients/src/submodules/sts/auth/httpAuthSchemeProvider.ts +++ b/packages/nested-clients/src/submodules/sts/auth/httpAuthSchemeProvider.ts @@ -6,18 +6,18 @@ import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; import { + type HandlerExecutionContext, + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParameters, + type HttpAuthSchemeParametersProvider, + type HttpAuthSchemeProvider, + type Provider, Client, - HandlerExecutionContext, - HttpAuthOption, - HttpAuthScheme, - HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, - HttpAuthSchemeProvider, - Provider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { STSClient, STSClientConfig, STSClientResolvedConfig } from "../STSClient"; +import { type STSClientResolvedConfig, STSClient, STSClientConfig } from "../STSClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sts/commands/AssumeRoleCommand.ts b/packages/nested-clients/src/submodules/sts/commands/AssumeRoleCommand.ts index 0fcadd48c64ac..b0e0e7b2e0a21 100644 --- a/packages/nested-clients/src/submodules/sts/commands/AssumeRoleCommand.ts +++ b/packages/nested-clients/src/submodules/sts/commands/AssumeRoleCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeRoleRequest, AssumeRoleResponse } from "../models/models_0"; +import type { AssumeRoleRequest, AssumeRoleResponse } from "../models/models_0"; import { AssumeRole } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/packages/nested-clients/src/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.ts b/packages/nested-clients/src/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.ts index 99dd2018c54b0..a078029699e44 100644 --- a/packages/nested-clients/src/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.ts +++ b/packages/nested-clients/src/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AssumeRoleWithWebIdentityRequest, AssumeRoleWithWebIdentityResponse } from "../models/models_0"; +import type { AssumeRoleWithWebIdentityRequest, AssumeRoleWithWebIdentityResponse } from "../models/models_0"; import { AssumeRoleWithWebIdentity } from "../schemas/schemas_0"; -import { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; +import type { ServiceInputTypes, ServiceOutputTypes, STSClientResolvedConfig } from "../STSClient"; /** * @public diff --git a/packages/nested-clients/src/submodules/sts/endpoint/EndpointParameters.ts b/packages/nested-clients/src/submodules/sts/endpoint/EndpointParameters.ts index 866c98351399a..1130112c5f327 100644 --- a/packages/nested-clients/src/submodules/sts/endpoint/EndpointParameters.ts +++ b/packages/nested-clients/src/submodules/sts/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/packages/nested-clients/src/submodules/sts/endpoint/endpointResolver.ts b/packages/nested-clients/src/submodules/sts/endpoint/endpointResolver.ts index b1d10295e0b31..94754f3ce5a4a 100644 --- a/packages/nested-clients/src/submodules/sts/endpoint/endpointResolver.ts +++ b/packages/nested-clients/src/submodules/sts/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/packages/nested-clients/src/submodules/sts/extensionConfiguration.ts b/packages/nested-clients/src/submodules/sts/extensionConfiguration.ts index 160bb3e13bcd2..568ccaf5e4c47 100644 --- a/packages/nested-clients/src/submodules/sts/extensionConfiguration.ts +++ b/packages/nested-clients/src/submodules/sts/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sts/models/STSServiceException.ts b/packages/nested-clients/src/submodules/sts/models/STSServiceException.ts index 39bb3621516bd..b16a999c17d96 100644 --- a/packages/nested-clients/src/submodules/sts/models/STSServiceException.ts +++ b/packages/nested-clients/src/submodules/sts/models/STSServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/packages/nested-clients/src/submodules/sts/models/errors.ts b/packages/nested-clients/src/submodules/sts/models/errors.ts index 846c31116c67e..d005e20018cfb 100644 --- a/packages/nested-clients/src/submodules/sts/models/errors.ts +++ b/packages/nested-clients/src/submodules/sts/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { STSServiceException as __BaseException } from "./STSServiceException"; diff --git a/packages/nested-clients/src/submodules/sts/runtimeConfig.browser.ts b/packages/nested-clients/src/submodules/sts/runtimeConfig.browser.ts index 8bcc136573893..67880b046921b 100644 --- a/packages/nested-clients/src/submodules/sts/runtimeConfig.browser.ts +++ b/packages/nested-clients/src/submodules/sts/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { STSClientConfig } from "./STSClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { STSClientConfig } from "./STSClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sts/runtimeConfig.native.ts b/packages/nested-clients/src/submodules/sts/runtimeConfig.native.ts index 8be1a44031c2e..2fe00d9799d03 100644 --- a/packages/nested-clients/src/submodules/sts/runtimeConfig.native.ts +++ b/packages/nested-clients/src/submodules/sts/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; -import { STSClientConfig } from "./STSClient"; +import type { STSClientConfig } from "./STSClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sts/runtimeConfig.shared.ts b/packages/nested-clients/src/submodules/sts/runtimeConfig.shared.ts index 726c1f8dfbc56..e037d59b9e296 100644 --- a/packages/nested-clients/src/submodules/sts/runtimeConfig.shared.ts +++ b/packages/nested-clients/src/submodules/sts/runtimeConfig.shared.ts @@ -3,14 +3,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultSTSHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { STSClientConfig } from "./STSClient"; +import type { STSClientConfig } from "./STSClient"; /** * @internal diff --git a/packages/nested-clients/src/submodules/sts/runtimeConfig.ts b/packages/nested-clients/src/submodules/sts/runtimeConfig.ts index 5707c3828ac17..7e2fb2e10469f 100644 --- a/packages/nested-clients/src/submodules/sts/runtimeConfig.ts +++ b/packages/nested-clients/src/submodules/sts/runtimeConfig.ts @@ -20,14 +20,14 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; -import { IdentityProviderConfig } from "@smithy/types"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; +import type { IdentityProviderConfig } from "@smithy/types"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { STSClientConfig } from "./STSClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { STSClientConfig } from "./STSClient"; /** * @internal @@ -50,7 +50,7 @@ export const getRuntimeConfig = (config: STSClientConfig) => { authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig), bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength, - + defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), diff --git a/packages/nested-clients/src/submodules/sts/runtimeExtensions.ts b/packages/nested-clients/src/submodules/sts/runtimeExtensions.ts index 9b1345195f705..d1b869e1ed655 100644 --- a/packages/nested-clients/src/submodules/sts/runtimeExtensions.ts +++ b/packages/nested-clients/src/submodules/sts/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { STSExtensionConfiguration } from "./extensionConfiguration"; +import type { STSExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/packages/nested-clients/src/submodules/sts/schemas/schemas_0.ts b/packages/nested-clients/src/submodules/sts/schemas/schemas_0.ts index 762f290849028..10dfb12354295 100644 --- a/packages/nested-clients/src/submodules/sts/schemas/schemas_0.ts +++ b/packages/nested-clients/src/submodules/sts/schemas/schemas_0.ts @@ -60,7 +60,7 @@ const n0 = "com.amazonaws.sts"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticOperationSchema, diff --git a/packages/s3-presigned-post/package.json b/packages/s3-presigned-post/package.json index e1a6a00eed859..d265073ca14b6 100644 --- a/packages/s3-presigned-post/package.json +++ b/packages/s3-presigned-post/package.json @@ -28,7 +28,7 @@ "@aws-sdk/client-s3": "*", "@aws-sdk/types": "*", "@aws-sdk/util-format-url": "*", - "@smithy/middleware-endpoint": "^4.3.12", + "@smithy/middleware-endpoint": "^4.3.13", "@smithy/signature-v4": "^5.3.5", "@smithy/types": "^4.9.0", "@smithy/util-hex-encoding": "^4.2.0", diff --git a/packages/s3-request-presigner/package.json b/packages/s3-request-presigner/package.json index 8397046310f64..90078cada5c2d 100644 --- a/packages/s3-request-presigner/package.json +++ b/packages/s3-request-presigner/package.json @@ -26,9 +26,9 @@ "@aws-sdk/signature-v4-multi-region": "*", "@aws-sdk/types": "*", "@aws-sdk/util-format-url": "*", - "@smithy/middleware-endpoint": "^4.3.12", + "@smithy/middleware-endpoint": "^4.3.13", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, diff --git a/packages/smithy-client/package.json b/packages/smithy-client/package.json index b24d7420b5070..cd93d5f14d434 100644 --- a/packages/smithy-client/package.json +++ b/packages/smithy-client/package.json @@ -23,7 +23,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "tslib": "^2.6.2" }, "engines": { diff --git a/packages/util-create-request/package.json b/packages/util-create-request/package.json index c0080402676f5..05a57bc86f45c 100644 --- a/packages/util-create-request/package.json +++ b/packages/util-create-request/package.json @@ -25,7 +25,7 @@ "dependencies": { "@aws-sdk/types": "*", "@smithy/middleware-stack": "^4.2.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "tslib": "^2.6.2" }, diff --git a/private/aws-client-api-test/package.json b/private/aws-client-api-test/package.json index 229684b6e0338..98b2ed4b3b1a6 100644 --- a/private/aws-client-api-test/package.json +++ b/private/aws-client-api-test/package.json @@ -39,15 +39,15 @@ "@smithy/eventstream-serde-node": "^4.2.5", "@smithy/hash-node": "^4.2.5", "@smithy/hash-stream-node": "^4.2.5", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-retry": "^4.4.13", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-retry": "^4.2.5", "@smithy/util-stream": "^4.5.6", "@smithy/util-utf8": "^4.2.0", diff --git a/private/aws-client-api-test/src/client-interface-tests/client-s3/impl/initializeWithMaximalConfiguration.ts b/private/aws-client-api-test/src/client-interface-tests/client-s3/impl/initializeWithMaximalConfiguration.ts index 48915588f4c43..99d773323aa5e 100644 --- a/private/aws-client-api-test/src/client-interface-tests/client-s3/impl/initializeWithMaximalConfiguration.ts +++ b/private/aws-client-api-test/src/client-interface-tests/client-s3/impl/initializeWithMaximalConfiguration.ts @@ -138,6 +138,9 @@ export const initializeWithMaximalConfiguration = () => { responseChecksumValidation: DEFAULT_RESPONSE_CHECKSUM_VALIDATION, requestStreamBufferSize: 8 * 1024, expectContinueHeader: 8 * 1024 * 1024, + clientContextParams: { + disableS3ExpressSessionAuth: false, + }, }; const s3 = new S3Client(config); diff --git a/private/aws-echo-service/package.json b/private/aws-echo-service/package.json index 1a8f115684737..ce916c5ad4bfc 100644 --- a/private/aws-echo-service/package.json +++ b/private/aws-echo-service/package.json @@ -27,26 +27,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-echo-service/src/EchoService.ts b/private/aws-echo-service/src/EchoService.ts index cb751cbe56c06..9632f2c85d757 100644 --- a/private/aws-echo-service/src/EchoService.ts +++ b/private/aws-echo-service/src/EchoService.ts @@ -1,9 +1,10 @@ // smithy-typescript generated code -import { EchoServiceClient, EchoServiceClientConfig } from "./EchoServiceClient"; +import { createAggregatedClient } from "@smithy/smithy-client"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; + import { EchoCommand, EchoCommandInput, EchoCommandOutput } from "./commands/EchoCommand"; import { LengthCommand, LengthCommandInput, LengthCommandOutput } from "./commands/LengthCommand"; -import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import { EchoServiceClient } from "./EchoServiceClient"; const commands = { EchoCommand, diff --git a/private/aws-echo-service/src/EchoServiceClient.ts b/private/aws-echo-service/src/EchoServiceClient.ts index 31c8de6a2b97a..ffb3860a72287 100644 --- a/private/aws-echo-service/src/EchoServiceClient.ts +++ b/private/aws-echo-service/src/EchoServiceClient.ts @@ -1,31 +1,15 @@ // smithy-typescript generated code import { - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, - defaultEchoServiceHttpAuthSchemeParametersProvider, - resolveHttpAuthSchemeConfig, -} from "./auth/httpAuthSchemeProvider"; -import { EchoCommandInput, EchoCommandOutput } from "./commands/EchoCommand"; -import { LengthCommandInput, LengthCommandOutput } from "./commands/LengthCommand"; -import { - ClientInputEndpointParameters, - ClientResolvedEndpointParameters, - EndpointParameters, - resolveClientEndpointParameters, -} from "./endpoint/EndpointParameters"; -import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { RuntimeExtension, RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; -import { - HostHeaderInputConfig, - HostHeaderResolvedConfig, + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { - UserAgentInputConfig, - UserAgentResolvedConfig, + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent"; @@ -36,37 +20,59 @@ import { } from "@smithy/core"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; import { - EndpointInputConfig, - EndpointRequiredInputConfig, - EndpointRequiredResolvedConfig, - EndpointResolvedConfig, + type EndpointInputConfig, + type EndpointRequiredInputConfig, + type EndpointRequiredResolvedConfig, + type EndpointResolvedConfig, resolveEndpointConfig, resolveEndpointRequiredConfig, } from "@smithy/middleware-endpoint"; -import { RetryInputConfig, RetryResolvedConfig, getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, Provider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; +import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, + defaultEchoServiceHttpAuthSchemeParametersProvider, + resolveHttpAuthSchemeConfig, +} from "./auth/httpAuthSchemeProvider"; +import { EchoCommandInput, EchoCommandOutput } from "./commands/EchoCommand"; +import { LengthCommandInput, LengthCommandOutput } from "./commands/LengthCommand"; +import { + type ClientInputEndpointParameters, + type ClientResolvedEndpointParameters, + type EndpointParameters, + resolveClientEndpointParameters, +} from "./endpoint/EndpointParameters"; +import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; + export { __Client }; /** diff --git a/private/aws-echo-service/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-echo-service/src/auth/httpAuthExtensionConfiguration.ts index 316c723969c25..0a50458bd0abc 100644 --- a/private/aws-echo-service/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-echo-service/src/auth/httpAuthExtensionConfiguration.ts @@ -1,6 +1,7 @@ // smithy-typescript generated code -import { EchoServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; -import { HttpAuthScheme } from "@smithy/types"; +import type { HttpAuthScheme } from "@smithy/types"; + +import type { EchoServiceHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-echo-service/src/auth/httpAuthSchemeProvider.ts b/private/aws-echo-service/src/auth/httpAuthSchemeProvider.ts index 9db73f4667345..558a692ae9ae5 100644 --- a/private/aws-echo-service/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-echo-service/src/auth/httpAuthSchemeProvider.ts @@ -1,6 +1,5 @@ // smithy-typescript generated code -import { EchoServiceClientResolvedConfig } from "../EchoServiceClient"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -11,6 +10,8 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; +import type { EchoServiceClientResolvedConfig } from "../EchoServiceClient"; + /** * @internal */ diff --git a/private/aws-echo-service/src/commands/EchoCommand.ts b/private/aws-echo-service/src/commands/EchoCommand.ts index 28c08481593a1..c6bff6337c9a4 100644 --- a/private/aws-echo-service/src/commands/EchoCommand.ts +++ b/private/aws-echo-service/src/commands/EchoCommand.ts @@ -1,12 +1,13 @@ // smithy-typescript generated code -import { EchoServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EchoServiceClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { EchoInput, EchoOutput } from "../models/models_0"; -import { de_EchoCommand, se_EchoCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import type { EchoServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EchoServiceClient"; +import { commonParams } from "../endpoint/EndpointParameters"; +import type { EchoInput, EchoOutput } from "../models/models_0"; +import { de_EchoCommand, se_EchoCommand } from "../protocols/Aws_restJson1"; /** * @public diff --git a/private/aws-echo-service/src/commands/LengthCommand.ts b/private/aws-echo-service/src/commands/LengthCommand.ts index a22332bc82bd8..8b6c5b9c9fe18 100644 --- a/private/aws-echo-service/src/commands/LengthCommand.ts +++ b/private/aws-echo-service/src/commands/LengthCommand.ts @@ -1,12 +1,13 @@ // smithy-typescript generated code -import { EchoServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EchoServiceClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { LengthInput, LengthOutput } from "../models/models_0"; -import { de_LengthCommand, se_LengthCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import type { EchoServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EchoServiceClient"; +import { commonParams } from "../endpoint/EndpointParameters"; +import type { LengthInput, LengthOutput } from "../models/models_0"; +import { de_LengthCommand, se_LengthCommand } from "../protocols/Aws_restJson1"; /** * @public diff --git a/private/aws-echo-service/src/endpoint/EndpointParameters.ts b/private/aws-echo-service/src/endpoint/EndpointParameters.ts index 9eb4c922345b9..ed18778e1fdb3 100644 --- a/private/aws-echo-service/src/endpoint/EndpointParameters.ts +++ b/private/aws-echo-service/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointV2, Provider, EndpointParameters as __EndpointParameters } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-echo-service/src/endpoint/endpointResolver.ts b/private/aws-echo-service/src/endpoint/endpointResolver.ts index c7fbb6d7f36d2..b706521d0529d 100644 --- a/private/aws-echo-service/src/endpoint/endpointResolver.ts +++ b/private/aws-echo-service/src/endpoint/endpointResolver.ts @@ -1,8 +1,9 @@ // smithy-typescript generated code -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; + +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; -import { EndpointV2, Logger } from "@smithy/types"; -import { EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; const cache = new EndpointCache({ size: 50, diff --git a/private/aws-echo-service/src/endpoint/ruleset.ts b/private/aws-echo-service/src/endpoint/ruleset.ts index 14416a50b2697..d8b2ce3d9083e 100644 --- a/private/aws-echo-service/src/endpoint/ruleset.ts +++ b/private/aws-echo-service/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-echo-service/src/extensionConfiguration.ts b/private/aws-echo-service/src/extensionConfiguration.ts index f10a13f2430fc..01a52e32d8e6f 100644 --- a/private/aws-echo-service/src/extensionConfiguration.ts +++ b/private/aws-echo-service/src/extensionConfiguration.ts @@ -1,7 +1,8 @@ // smithy-typescript generated code -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; + +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-echo-service/src/models/EchoServiceServiceException.ts b/private/aws-echo-service/src/models/EchoServiceServiceException.ts index 27bf3835b85d7..a1a17aa63f08d 100644 --- a/private/aws-echo-service/src/models/EchoServiceServiceException.ts +++ b/private/aws-echo-service/src/models/EchoServiceServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-echo-service/src/models/errors.ts b/private/aws-echo-service/src/models/errors.ts index 763cefcf93eac..c4b3a018e2a4a 100644 --- a/private/aws-echo-service/src/models/errors.ts +++ b/private/aws-echo-service/src/models/errors.ts @@ -1,6 +1,7 @@ // smithy-typescript generated code +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; + import { EchoServiceServiceException as __BaseException } from "./EchoServiceServiceException"; -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; /** * For some reason, this service does not like palindromes! diff --git a/private/aws-echo-service/src/protocols/Aws_restJson1.ts b/private/aws-echo-service/src/protocols/Aws_restJson1.ts index ef08a6c0156f4..f4e8c58a016f6 100644 --- a/private/aws-echo-service/src/protocols/Aws_restJson1.ts +++ b/private/aws-echo-service/src/protocols/Aws_restJson1.ts @@ -1,30 +1,31 @@ // smithy-typescript generated code -import { EchoCommandInput, EchoCommandOutput } from "../commands/EchoCommand"; -import { LengthCommandInput, LengthCommandOutput } from "../commands/LengthCommand"; -import { EchoServiceServiceException as __BaseException } from "../models/EchoServiceServiceException"; -import { PalindromeException } from "../models/errors"; import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core"; import { requestBuilder as rb } from "@smithy/core"; import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; import { + _json, + collectBody, decorateServiceException as __decorateServiceException, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, - resolvedPath as __resolvedPath, - _json, - collectBody, map, + resolvedPath as __resolvedPath, take, withBaseException, } from "@smithy/smithy-client"; -import { +import type { Endpoint as __Endpoint, ResponseMetadata as __ResponseMetadata, SerdeContext as __SerdeContext, } from "@smithy/types"; +import { EchoCommandInput, EchoCommandOutput } from "../commands/EchoCommand"; +import { LengthCommandInput, LengthCommandOutput } from "../commands/LengthCommand"; +import { EchoServiceServiceException as __BaseException } from "../models/EchoServiceServiceException"; +import { PalindromeException } from "../models/errors"; + /** * serializeAws_restJson1EchoCommand */ diff --git a/private/aws-echo-service/src/runtimeConfig.browser.ts b/private/aws-echo-service/src/runtimeConfig.browser.ts index 0915fbcb50876..84f98af57f784 100644 --- a/private/aws-echo-service/src/runtimeConfig.browser.ts +++ b/private/aws-echo-service/src/runtimeConfig.browser.ts @@ -5,12 +5,13 @@ import packageInfo from "../package.json"; // eslint-disable-line import { Sha256 } from "@aws-crypto/sha256-browser"; import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EchoServiceClientConfig } from "./EchoServiceClient"; + +import type { EchoServiceClientConfig } from "./EchoServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-echo-service/src/runtimeConfig.native.ts b/private/aws-echo-service/src/runtimeConfig.native.ts index e19d73186acff..4c05b6cd6efd1 100644 --- a/private/aws-echo-service/src/runtimeConfig.native.ts +++ b/private/aws-echo-service/src/runtimeConfig.native.ts @@ -1,6 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EchoServiceClientConfig } from "./EchoServiceClient"; + +import type { EchoServiceClientConfig } from "./EchoServiceClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-echo-service/src/runtimeConfig.shared.ts b/private/aws-echo-service/src/runtimeConfig.shared.ts index 8b325d8cf69a3..2345799ba78ab 100644 --- a/private/aws-echo-service/src/runtimeConfig.shared.ts +++ b/private/aws-echo-service/src/runtimeConfig.shared.ts @@ -1,13 +1,14 @@ // smithy-typescript generated code -import { defaultEchoServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { defaultEndpointResolver } from "./endpoint/endpointResolver"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { EchoServiceClientConfig } from "./EchoServiceClient"; + +import { defaultEchoServiceHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; +import type { EchoServiceClientConfig } from "./EchoServiceClient"; +import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** * @internal diff --git a/private/aws-echo-service/src/runtimeConfig.ts b/private/aws-echo-service/src/runtimeConfig.ts index 424d4c3b2fd88..4aa9d0bbae29c 100644 --- a/private/aws-echo-service/src/runtimeConfig.ts +++ b/private/aws-echo-service/src/runtimeConfig.ts @@ -7,13 +7,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EchoServiceClientConfig } from "./EchoServiceClient"; + +import type { EchoServiceClientConfig } from "./EchoServiceClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-echo-service/src/runtimeExtensions.ts b/private/aws-echo-service/src/runtimeExtensions.ts index da19567f777cd..8a8ce10db8dfb 100644 --- a/private/aws-echo-service/src/runtimeExtensions.ts +++ b/private/aws-echo-service/src/runtimeExtensions.ts @@ -1,8 +1,9 @@ // smithy-typescript generated code -import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http"; import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; -import { EchoServiceExtensionConfiguration } from "./extensionConfiguration"; + +import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; +import type { EchoServiceExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-ec2-schema/package.json b/private/aws-protocoltests-ec2-schema/package.json index 8d672b12a30d7..eefdbaf2d748c 100644 --- a/private/aws-protocoltests-ec2-schema/package.json +++ b/private/aws-protocoltests-ec2-schema/package.json @@ -32,27 +32,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-ec2-schema/src/EC2Protocol.ts b/private/aws-protocoltests-ec2-schema/src/EC2Protocol.ts index 399f075a350da..ca60b7700a346 100644 --- a/private/aws-protocoltests-ec2-schema/src/EC2Protocol.ts +++ b/private/aws-protocoltests-ec2-schema/src/EC2Protocol.ts @@ -1,113 +1,121 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { + type DatetimeOffsetsCommandInput, + type DatetimeOffsetsCommandOutput, DatetimeOffsetsCommand, - DatetimeOffsetsCommandInput, - DatetimeOffsetsCommandOutput, } from "./commands/DatetimeOffsetsCommand"; import { + type EmptyInputAndEmptyOutputCommandInput, + type EmptyInputAndEmptyOutputCommandOutput, EmptyInputAndEmptyOutputCommand, - EmptyInputAndEmptyOutputCommandInput, - EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; import { + type EndpointOperationCommandInput, + type EndpointOperationCommandOutput, EndpointOperationCommand, - EndpointOperationCommandInput, - EndpointOperationCommandOutput, } from "./commands/EndpointOperationCommand"; import { + type EndpointWithHostLabelOperationCommandInput, + type EndpointWithHostLabelOperationCommandOutput, EndpointWithHostLabelOperationCommand, - EndpointWithHostLabelOperationCommandInput, - EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; import { + type FractionalSecondsCommandInput, + type FractionalSecondsCommandOutput, FractionalSecondsCommand, - FractionalSecondsCommandInput, - FractionalSecondsCommandOutput, } from "./commands/FractionalSecondsCommand"; import { + type GreetingWithErrorsCommandInput, + type GreetingWithErrorsCommandOutput, GreetingWithErrorsCommand, - GreetingWithErrorsCommandInput, - GreetingWithErrorsCommandOutput, } from "./commands/GreetingWithErrorsCommand"; import { + type HostWithPathOperationCommandInput, + type HostWithPathOperationCommandOutput, HostWithPathOperationCommand, - HostWithPathOperationCommandInput, - HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; import { + type IgnoresWrappingXmlNameCommandInput, + type IgnoresWrappingXmlNameCommandOutput, IgnoresWrappingXmlNameCommand, - IgnoresWrappingXmlNameCommandInput, - IgnoresWrappingXmlNameCommandOutput, } from "./commands/IgnoresWrappingXmlNameCommand"; import { + type NestedStructuresCommandInput, + type NestedStructuresCommandOutput, NestedStructuresCommand, - NestedStructuresCommandInput, - NestedStructuresCommandOutput, } from "./commands/NestedStructuresCommand"; import { + type NoInputAndOutputCommandInput, + type NoInputAndOutputCommandOutput, NoInputAndOutputCommand, - NoInputAndOutputCommandInput, - NoInputAndOutputCommandOutput, } from "./commands/NoInputAndOutputCommand"; import { + type PutWithContentEncodingCommandInput, + type PutWithContentEncodingCommandOutput, PutWithContentEncodingCommand, - PutWithContentEncodingCommandInput, - PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; import { + type QueryIdempotencyTokenAutoFillCommandInput, + type QueryIdempotencyTokenAutoFillCommandOutput, QueryIdempotencyTokenAutoFillCommand, - QueryIdempotencyTokenAutoFillCommandInput, - QueryIdempotencyTokenAutoFillCommandOutput, } from "./commands/QueryIdempotencyTokenAutoFillCommand"; -import { QueryListsCommand, QueryListsCommandInput, QueryListsCommandOutput } from "./commands/QueryListsCommand"; import { + type QueryListsCommandInput, + type QueryListsCommandOutput, + QueryListsCommand, +} from "./commands/QueryListsCommand"; +import { + type QueryTimestampsCommandInput, + type QueryTimestampsCommandOutput, QueryTimestampsCommand, - QueryTimestampsCommandInput, - QueryTimestampsCommandOutput, } from "./commands/QueryTimestampsCommand"; import { + type RecursiveXmlShapesCommandInput, + type RecursiveXmlShapesCommandOutput, RecursiveXmlShapesCommand, - RecursiveXmlShapesCommandInput, - RecursiveXmlShapesCommandOutput, } from "./commands/RecursiveXmlShapesCommand"; import { + type SimpleInputParamsCommandInput, + type SimpleInputParamsCommandOutput, SimpleInputParamsCommand, - SimpleInputParamsCommandInput, - SimpleInputParamsCommandOutput, } from "./commands/SimpleInputParamsCommand"; import { + type SimpleScalarXmlPropertiesCommandInput, + type SimpleScalarXmlPropertiesCommandOutput, SimpleScalarXmlPropertiesCommand, - SimpleScalarXmlPropertiesCommandInput, - SimpleScalarXmlPropertiesCommandOutput, } from "./commands/SimpleScalarXmlPropertiesCommand"; -import { XmlBlobsCommand, XmlBlobsCommandInput, XmlBlobsCommandOutput } from "./commands/XmlBlobsCommand"; +import { type XmlBlobsCommandInput, type XmlBlobsCommandOutput, XmlBlobsCommand } from "./commands/XmlBlobsCommand"; import { + type XmlEmptyBlobsCommandInput, + type XmlEmptyBlobsCommandOutput, XmlEmptyBlobsCommand, - XmlEmptyBlobsCommandInput, - XmlEmptyBlobsCommandOutput, } from "./commands/XmlEmptyBlobsCommand"; import { + type XmlEmptyListsCommandInput, + type XmlEmptyListsCommandOutput, XmlEmptyListsCommand, - XmlEmptyListsCommandInput, - XmlEmptyListsCommandOutput, } from "./commands/XmlEmptyListsCommand"; -import { XmlEnumsCommand, XmlEnumsCommandInput, XmlEnumsCommandOutput } from "./commands/XmlEnumsCommand"; -import { XmlIntEnumsCommand, XmlIntEnumsCommandInput, XmlIntEnumsCommandOutput } from "./commands/XmlIntEnumsCommand"; -import { XmlListsCommand, XmlListsCommandInput, XmlListsCommandOutput } from "./commands/XmlListsCommand"; +import { type XmlEnumsCommandInput, type XmlEnumsCommandOutput, XmlEnumsCommand } from "./commands/XmlEnumsCommand"; +import { + type XmlIntEnumsCommandInput, + type XmlIntEnumsCommandOutput, + XmlIntEnumsCommand, +} from "./commands/XmlIntEnumsCommand"; +import { type XmlListsCommandInput, type XmlListsCommandOutput, XmlListsCommand } from "./commands/XmlListsCommand"; import { + type XmlNamespacesCommandInput, + type XmlNamespacesCommandOutput, XmlNamespacesCommand, - XmlNamespacesCommandInput, - XmlNamespacesCommandOutput, } from "./commands/XmlNamespacesCommand"; import { + type XmlTimestampsCommandInput, + type XmlTimestampsCommandOutput, XmlTimestampsCommand, - XmlTimestampsCommandInput, - XmlTimestampsCommandOutput, } from "./commands/XmlTimestampsCommand"; -import { EC2ProtocolClient, EC2ProtocolClientConfig } from "./EC2ProtocolClient"; +import { EC2ProtocolClient } from "./EC2ProtocolClient"; const commands = { DatetimeOffsetsCommand, diff --git a/private/aws-protocoltests-ec2-schema/src/EC2ProtocolClient.ts b/private/aws-protocoltests-ec2-schema/src/EC2ProtocolClient.ts index 131c90fe7ad13..72f0b07ff2bde 100644 --- a/private/aws-protocoltests-ec2-schema/src/EC2ProtocolClient.ts +++ b/private/aws-protocoltests-ec2-schema/src/EC2ProtocolClient.ts @@ -1,24 +1,24 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -26,93 +26,117 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEC2ProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; -import { +import type { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; +import type { EmptyInputAndEmptyOutputCommandInput, EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; -import { EndpointOperationCommandInput, EndpointOperationCommandOutput } from "./commands/EndpointOperationCommand"; -import { +import type { + EndpointOperationCommandInput, + EndpointOperationCommandOutput, +} from "./commands/EndpointOperationCommand"; +import type { EndpointWithHostLabelOperationCommandInput, EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; -import { FractionalSecondsCommandInput, FractionalSecondsCommandOutput } from "./commands/FractionalSecondsCommand"; -import { GreetingWithErrorsCommandInput, GreetingWithErrorsCommandOutput } from "./commands/GreetingWithErrorsCommand"; -import { +import type { + FractionalSecondsCommandInput, + FractionalSecondsCommandOutput, +} from "./commands/FractionalSecondsCommand"; +import type { + GreetingWithErrorsCommandInput, + GreetingWithErrorsCommandOutput, +} from "./commands/GreetingWithErrorsCommand"; +import type { HostWithPathOperationCommandInput, HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; -import { +import type { IgnoresWrappingXmlNameCommandInput, IgnoresWrappingXmlNameCommandOutput, } from "./commands/IgnoresWrappingXmlNameCommand"; -import { NestedStructuresCommandInput, NestedStructuresCommandOutput } from "./commands/NestedStructuresCommand"; -import { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; -import { +import type { NestedStructuresCommandInput, NestedStructuresCommandOutput } from "./commands/NestedStructuresCommand"; +import type { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; +import type { PutWithContentEncodingCommandInput, PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; -import { +import type { QueryIdempotencyTokenAutoFillCommandInput, QueryIdempotencyTokenAutoFillCommandOutput, } from "./commands/QueryIdempotencyTokenAutoFillCommand"; -import { QueryListsCommandInput, QueryListsCommandOutput } from "./commands/QueryListsCommand"; -import { QueryTimestampsCommandInput, QueryTimestampsCommandOutput } from "./commands/QueryTimestampsCommand"; -import { RecursiveXmlShapesCommandInput, RecursiveXmlShapesCommandOutput } from "./commands/RecursiveXmlShapesCommand"; -import { SimpleInputParamsCommandInput, SimpleInputParamsCommandOutput } from "./commands/SimpleInputParamsCommand"; -import { +import type { QueryListsCommandInput, QueryListsCommandOutput } from "./commands/QueryListsCommand"; +import type { QueryTimestampsCommandInput, QueryTimestampsCommandOutput } from "./commands/QueryTimestampsCommand"; +import type { + RecursiveXmlShapesCommandInput, + RecursiveXmlShapesCommandOutput, +} from "./commands/RecursiveXmlShapesCommand"; +import type { + SimpleInputParamsCommandInput, + SimpleInputParamsCommandOutput, +} from "./commands/SimpleInputParamsCommand"; +import type { SimpleScalarXmlPropertiesCommandInput, SimpleScalarXmlPropertiesCommandOutput, } from "./commands/SimpleScalarXmlPropertiesCommand"; -import { XmlBlobsCommandInput, XmlBlobsCommandOutput } from "./commands/XmlBlobsCommand"; -import { XmlEmptyBlobsCommandInput, XmlEmptyBlobsCommandOutput } from "./commands/XmlEmptyBlobsCommand"; -import { XmlEmptyListsCommandInput, XmlEmptyListsCommandOutput } from "./commands/XmlEmptyListsCommand"; -import { XmlEnumsCommandInput, XmlEnumsCommandOutput } from "./commands/XmlEnumsCommand"; -import { XmlIntEnumsCommandInput, XmlIntEnumsCommandOutput } from "./commands/XmlIntEnumsCommand"; -import { XmlListsCommandInput, XmlListsCommandOutput } from "./commands/XmlListsCommand"; -import { XmlNamespacesCommandInput, XmlNamespacesCommandOutput } from "./commands/XmlNamespacesCommand"; -import { XmlTimestampsCommandInput, XmlTimestampsCommandOutput } from "./commands/XmlTimestampsCommand"; +import type { XmlBlobsCommandInput, XmlBlobsCommandOutput } from "./commands/XmlBlobsCommand"; +import type { XmlEmptyBlobsCommandInput, XmlEmptyBlobsCommandOutput } from "./commands/XmlEmptyBlobsCommand"; +import type { XmlEmptyListsCommandInput, XmlEmptyListsCommandOutput } from "./commands/XmlEmptyListsCommand"; +import type { XmlEnumsCommandInput, XmlEnumsCommandOutput } from "./commands/XmlEnumsCommand"; +import type { XmlIntEnumsCommandInput, XmlIntEnumsCommandOutput } from "./commands/XmlIntEnumsCommand"; +import type { XmlListsCommandInput, XmlListsCommandOutput } from "./commands/XmlListsCommand"; +import type { XmlNamespacesCommandInput, XmlNamespacesCommandOutput } from "./commands/XmlNamespacesCommand"; +import type { XmlTimestampsCommandInput, XmlTimestampsCommandOutput } from "./commands/XmlTimestampsCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, @@ -120,7 +144,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-ec2-schema/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-ec2-schema/src/auth/httpAuthExtensionConfiguration.ts index 4fcd9b8aa1383..e8deb53df32fa 100644 --- a/private/aws-protocoltests-ec2-schema/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-ec2-schema/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EC2ProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EC2ProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-ec2-schema/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-ec2-schema/src/auth/httpAuthSchemeProvider.ts index f67b497a3b2c8..607e667083444 100644 --- a/private/aws-protocoltests-ec2-schema/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-ec2-schema/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EC2ProtocolClientConfig, EC2ProtocolClientResolvedConfig } from "../EC2ProtocolClient"; +import { type EC2ProtocolClientResolvedConfig, EC2ProtocolClientConfig } from "../EC2ProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-ec2-schema/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/DatetimeOffsetsCommand.ts index 4fc912393695f..052d4511a4a23 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/DatetimeOffsetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DatetimeOffsetsOutput } from "../models/models_0"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; import { DatetimeOffsets } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts index e0299aba287fd..80b026ab31a25 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; import { EmptyInputAndEmptyOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/EndpointOperationCommand.ts index cf616c98d7f38..82e0ed0045e84 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/EndpointOperationCommand.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; import { EndpointOperation } from "../schemas/schemas_0"; diff --git a/private/aws-protocoltests-ec2-schema/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/EndpointWithHostLabelOperationCommand.ts index f4cac19f98437..5445690c09e0e 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HostLabelInput } from "../models/models_0"; +import type { HostLabelInput } from "../models/models_0"; import { EndpointWithHostLabelOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/FractionalSecondsCommand.ts index 79b2b7839cac0..a04dfdd597b2e 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/FractionalSecondsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; +import type { FractionalSecondsOutput } from "../models/models_0"; import { FractionalSeconds } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/GreetingWithErrorsCommand.ts index c8fd6ce47d2d6..ccff14ef50ad2 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/GreetingWithErrorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; import { GreetingWithErrors } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/HostWithPathOperationCommand.ts index 318929de755f3..efde5bcee358f 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/HostWithPathOperationCommand.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; import { HostWithPathOperation } from "../schemas/schemas_0"; diff --git a/private/aws-protocoltests-ec2-schema/src/commands/IgnoresWrappingXmlNameCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/IgnoresWrappingXmlNameCommand.ts index b2761747b00bb..bba0ea596bdb9 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/IgnoresWrappingXmlNameCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/IgnoresWrappingXmlNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IgnoresWrappingXmlNameOutput } from "../models/models_0"; +import type { IgnoresWrappingXmlNameOutput } from "../models/models_0"; import { IgnoresWrappingXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/NestedStructuresCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/NestedStructuresCommand.ts index 534b069e4fb86..b9539228cc8a6 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/NestedStructuresCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/NestedStructuresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NestedStructuresInput } from "../models/models_0"; +import type { NestedStructuresInput } from "../models/models_0"; import { NestedStructures } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/NoInputAndOutputCommand.ts index 10172417cba74..b96ad0864c2ad 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/NoInputAndOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NoInputAndOutputOutput } from "../models/models_0"; +import type { NoInputAndOutputOutput } from "../models/models_0"; import { NoInputAndOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/PutWithContentEncodingCommand.ts index dc0da2232b781..4d2565e9803b3 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/PutWithContentEncodingCommand.ts @@ -2,11 +2,11 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWithContentEncodingInput } from "../models/models_0"; +import type { PutWithContentEncodingInput } from "../models/models_0"; import { PutWithContentEncoding } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index a48c04db2e35b..229c0a7ae7434 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; +import type { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; import { QueryIdempotencyTokenAutoFill } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/QueryListsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/QueryListsCommand.ts index 77fc1a1430fa1..ca7dba212457b 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/QueryListsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/QueryListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryListsInput } from "../models/models_0"; +import type { QueryListsInput } from "../models/models_0"; import { QueryLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/QueryTimestampsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/QueryTimestampsCommand.ts index 9bd264fc43b73..68609fe4cf6e1 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/QueryTimestampsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/QueryTimestampsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryTimestampsInput } from "../models/models_0"; +import type { QueryTimestampsInput } from "../models/models_0"; import { QueryTimestamps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/RecursiveXmlShapesCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/RecursiveXmlShapesCommand.ts index e0808eeae3344..1dc83bf598f95 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/RecursiveXmlShapesCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/RecursiveXmlShapesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveXmlShapesOutput } from "../models/models_0"; +import type { RecursiveXmlShapesOutput } from "../models/models_0"; import { RecursiveXmlShapes } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/SimpleInputParamsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/SimpleInputParamsCommand.ts index c8ca72baf2b55..9f302d5b7a66b 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/SimpleInputParamsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/SimpleInputParamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleInputParamsInput } from "../models/models_0"; +import type { SimpleInputParamsInput } from "../models/models_0"; import { SimpleInputParams } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/SimpleScalarXmlPropertiesCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/SimpleScalarXmlPropertiesCommand.ts index 4a799358a76ca..743c093e70e33 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/SimpleScalarXmlPropertiesCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/SimpleScalarXmlPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarXmlPropertiesOutput } from "../models/models_0"; +import type { SimpleScalarXmlPropertiesOutput } from "../models/models_0"; import { SimpleScalarXmlProperties } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/XmlBlobsCommand.ts index 0861bfcc8afd9..eb29a547e10a8 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/XmlBlobsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/XmlBlobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsOutput } from "../models/models_0"; +import type { XmlBlobsOutput } from "../models/models_0"; import { XmlBlobs } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/XmlEmptyBlobsCommand.ts index 292b186cf14d9..0312c516e9d28 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/XmlEmptyBlobsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/XmlEmptyBlobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsOutput } from "../models/models_0"; +import type { XmlBlobsOutput } from "../models/models_0"; import { XmlEmptyBlobs } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/XmlEmptyListsCommand.ts index f8d11f1fda9be..a7a5b4d752f09 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/XmlEmptyListsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/XmlEmptyListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsOutput } from "../models/models_0"; +import type { XmlListsOutput } from "../models/models_0"; import { XmlEmptyLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/XmlEnumsCommand.ts index 8ee726096859b..24c59812d5350 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/XmlEnumsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/XmlEnumsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEnumsOutput } from "../models/models_0"; +import type { XmlEnumsOutput } from "../models/models_0"; import { XmlEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/XmlIntEnumsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/XmlIntEnumsCommand.ts index d194c5be39df5..d5c23dbc5d79c 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/XmlIntEnumsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/XmlIntEnumsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlIntEnumsOutput } from "../models/models_0"; +import type { XmlIntEnumsOutput } from "../models/models_0"; import { XmlIntEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/XmlListsCommand.ts index 68be5c8813fba..d1f7240498533 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/XmlListsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/XmlListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsOutput } from "../models/models_0"; +import type { XmlListsOutput } from "../models/models_0"; import { XmlLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/XmlNamespacesCommand.ts index a6f8c6d0847c6..a61d1b293f3c6 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/XmlNamespacesCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/XmlNamespacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlNamespacesOutput } from "../models/models_0"; +import type { XmlNamespacesOutput } from "../models/models_0"; import { XmlNamespaces } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-ec2-schema/src/commands/XmlTimestampsCommand.ts index 360fc583ebe0d..8b402e3273af8 100644 --- a/private/aws-protocoltests-ec2-schema/src/commands/XmlTimestampsCommand.ts +++ b/private/aws-protocoltests-ec2-schema/src/commands/XmlTimestampsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlTimestampsOutput } from "../models/models_0"; +import type { XmlTimestampsOutput } from "../models/models_0"; import { XmlTimestamps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-ec2-schema/src/endpoint/EndpointParameters.ts index 2d1acfe92c2cb..a3050cef989ae 100644 --- a/private/aws-protocoltests-ec2-schema/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-ec2-schema/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-ec2-schema/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-ec2-schema/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-ec2-schema/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-ec2-schema/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-ec2-schema/src/endpoint/ruleset.ts b/private/aws-protocoltests-ec2-schema/src/endpoint/ruleset.ts index 6195aa19a36fd..09f0194441c2d 100644 --- a/private/aws-protocoltests-ec2-schema/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-ec2-schema/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-ec2-schema/src/extensionConfiguration.ts b/private/aws-protocoltests-ec2-schema/src/extensionConfiguration.ts index 89162f1fe3c0b..d3d7f5f71bb87 100644 --- a/private/aws-protocoltests-ec2-schema/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-ec2-schema/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-ec2-schema/src/models/EC2ProtocolServiceException.ts b/private/aws-protocoltests-ec2-schema/src/models/EC2ProtocolServiceException.ts index 7ca494829e992..4e7a969014d65 100644 --- a/private/aws-protocoltests-ec2-schema/src/models/EC2ProtocolServiceException.ts +++ b/private/aws-protocoltests-ec2-schema/src/models/EC2ProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-ec2-schema/src/models/errors.ts b/private/aws-protocoltests-ec2-schema/src/models/errors.ts index 25368f935afcb..eadc1c6a5d395 100644 --- a/private/aws-protocoltests-ec2-schema/src/models/errors.ts +++ b/private/aws-protocoltests-ec2-schema/src/models/errors.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EC2ProtocolServiceException as __BaseException } from "./EC2ProtocolServiceException"; -import { ComplexNestedErrorData } from "./models_0"; +import type { ComplexNestedErrorData } from "./models_0"; /** * This error is thrown when a request is invalid. diff --git a/private/aws-protocoltests-ec2-schema/src/models/models_0.ts b/private/aws-protocoltests-ec2-schema/src/models/models_0.ts index affa9f51c513b..f1fec26b86b9e 100644 --- a/private/aws-protocoltests-ec2-schema/src/models/models_0.ts +++ b/private/aws-protocoltests-ec2-schema/src/models/models_0.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { FooEnum, IntegerEnum } from "./enums"; +import type { FooEnum, IntegerEnum } from "./enums"; /** * @public diff --git a/private/aws-protocoltests-ec2-schema/src/runtimeConfig.browser.ts b/private/aws-protocoltests-ec2-schema/src/runtimeConfig.browser.ts index 3bacfb1ed8a0b..f76ff7f3b8926 100644 --- a/private/aws-protocoltests-ec2-schema/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-ec2-schema/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; + +import type { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-ec2-schema/src/runtimeConfig.native.ts b/private/aws-protocoltests-ec2-schema/src/runtimeConfig.native.ts index 0656194a84669..14501a9f4bc90 100644 --- a/private/aws-protocoltests-ec2-schema/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-ec2-schema/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; +import type { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/runtimeConfig.shared.ts b/private/aws-protocoltests-ec2-schema/src/runtimeConfig.shared.ts index b99ff6857d335..c074f74c35d5f 100644 --- a/private/aws-protocoltests-ec2-schema/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-ec2-schema/src/runtimeConfig.shared.ts @@ -2,13 +2,13 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsEc2QueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEC2ProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; +import type { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/private/aws-protocoltests-ec2-schema/src/runtimeConfig.ts b/private/aws-protocoltests-ec2-schema/src/runtimeConfig.ts index a59baf1e991fe..482d75db20fa5 100644 --- a/private/aws-protocoltests-ec2-schema/src/runtimeConfig.ts +++ b/private/aws-protocoltests-ec2-schema/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; + +import type { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-ec2-schema/src/runtimeExtensions.ts b/private/aws-protocoltests-ec2-schema/src/runtimeExtensions.ts index 43f57c1b52952..5bc50bfd90745 100644 --- a/private/aws-protocoltests-ec2-schema/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-ec2-schema/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EC2ProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { EC2ProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-ec2-schema/src/schemas/schemas_0.ts b/private/aws-protocoltests-ec2-schema/src/schemas/schemas_0.ts index 6d55aa59d15ec..7fc6f68506831 100644 --- a/private/aws-protocoltests-ec2-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-ec2-schema/src/schemas/schemas_0.ts @@ -179,7 +179,7 @@ const n1 = "aws.protocoltests.shared"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/private/aws-protocoltests-ec2-schema/test/functional/ec2query.spec.ts b/private/aws-protocoltests-ec2-schema/test/functional/ec2query.spec.ts index 6ac7f55b1e221..cbc86b338d07d 100644 --- a/private/aws-protocoltests-ec2-schema/test/functional/ec2query.spec.ts +++ b/private/aws-protocoltests-ec2-schema/test/functional/ec2query.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { DatetimeOffsetsCommand } from "../../src/commands/DatetimeOffsetsCommand"; diff --git a/private/aws-protocoltests-ec2/package.json b/private/aws-protocoltests-ec2/package.json index 928f04411de2f..de354ca09ca25 100644 --- a/private/aws-protocoltests-ec2/package.json +++ b/private/aws-protocoltests-ec2/package.json @@ -32,27 +32,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-ec2/src/EC2Protocol.ts b/private/aws-protocoltests-ec2/src/EC2Protocol.ts index 399f075a350da..006a104b42495 100644 --- a/private/aws-protocoltests-ec2/src/EC2Protocol.ts +++ b/private/aws-protocoltests-ec2/src/EC2Protocol.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DatetimeOffsetsCommand, @@ -107,7 +107,7 @@ import { XmlTimestampsCommandInput, XmlTimestampsCommandOutput, } from "./commands/XmlTimestampsCommand"; -import { EC2ProtocolClient, EC2ProtocolClientConfig } from "./EC2ProtocolClient"; +import { EC2ProtocolClient } from "./EC2ProtocolClient"; const commands = { DatetimeOffsetsCommand, diff --git a/private/aws-protocoltests-ec2/src/EC2ProtocolClient.ts b/private/aws-protocoltests-ec2/src/EC2ProtocolClient.ts index 62a38e32c10a4..255456f1e8ec7 100644 --- a/private/aws-protocoltests-ec2/src/EC2ProtocolClient.ts +++ b/private/aws-protocoltests-ec2/src/EC2ProtocolClient.ts @@ -1,66 +1,75 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultEC2ProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; @@ -116,7 +125,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-ec2/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-ec2/src/auth/httpAuthExtensionConfiguration.ts index 4fcd9b8aa1383..e8deb53df32fa 100644 --- a/private/aws-protocoltests-ec2/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-ec2/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { EC2ProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { EC2ProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-ec2/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-ec2/src/auth/httpAuthSchemeProvider.ts index f67b497a3b2c8..607e667083444 100644 --- a/private/aws-protocoltests-ec2/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-ec2/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { EC2ProtocolClientConfig, EC2ProtocolClientResolvedConfig } from "../EC2ProtocolClient"; +import { type EC2ProtocolClientResolvedConfig, EC2ProtocolClientConfig } from "../EC2ProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-ec2/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-ec2/src/commands/DatetimeOffsetsCommand.ts index f64245107424d..c3f05dc7df7e1 100644 --- a/private/aws-protocoltests-ec2/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/DatetimeOffsetsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DatetimeOffsetsOutput } from "../models/models_0"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; import { de_DatetimeOffsetsCommand, se_DatetimeOffsetsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts index 3bc61feb5ac8f..51f362c9574b1 100644 --- a/private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; import { de_EmptyInputAndEmptyOutputCommand, se_EmptyInputAndEmptyOutputCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts index 2ed1e16dd4c90..1f3546d0d0348 100644 --- a/private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/EndpointOperationCommand.ts @@ -2,9 +2,9 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_EndpointOperationCommand, se_EndpointOperationCommand } from "../protocols/Aws_ec2"; diff --git a/private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts index 9a3eed3b69eca..def4500d52d94 100644 --- a/private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HostLabelInput } from "../models/models_0"; +import type { HostLabelInput } from "../models/models_0"; import { de_EndpointWithHostLabelOperationCommand, se_EndpointWithHostLabelOperationCommand, diff --git a/private/aws-protocoltests-ec2/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-ec2/src/commands/FractionalSecondsCommand.ts index b59743688ed64..812966bdd62f2 100644 --- a/private/aws-protocoltests-ec2/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/FractionalSecondsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; +import type { FractionalSecondsOutput } from "../models/models_0"; import { de_FractionalSecondsCommand, se_FractionalSecondsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts index b9f2bdaeaa069..be7c35a038cdc 100644 --- a/private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/GreetingWithErrorsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; import { de_GreetingWithErrorsCommand, se_GreetingWithErrorsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts index b63801ab16a2f..d12bc04754746 100644 --- a/private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/HostWithPathOperationCommand.ts @@ -2,9 +2,9 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_HostWithPathOperationCommand, se_HostWithPathOperationCommand } from "../protocols/Aws_ec2"; diff --git a/private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts b/private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts index 919399050e03a..b5ad5ebce45c4 100644 --- a/private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/IgnoresWrappingXmlNameCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IgnoresWrappingXmlNameOutput } from "../models/models_0"; +import type { IgnoresWrappingXmlNameOutput } from "../models/models_0"; import { de_IgnoresWrappingXmlNameCommand, se_IgnoresWrappingXmlNameCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts b/private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts index 4d38797afa309..f868f410dabf3 100644 --- a/private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/NestedStructuresCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NestedStructuresInput } from "../models/models_0"; +import type { NestedStructuresInput } from "../models/models_0"; import { de_NestedStructuresCommand, se_NestedStructuresCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts index 57b36835baacd..ea2a32aa63601 100644 --- a/private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/NoInputAndOutputCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NoInputAndOutputOutput } from "../models/models_0"; +import type { NoInputAndOutputOutput } from "../models/models_0"; import { de_NoInputAndOutputCommand, se_NoInputAndOutputCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-ec2/src/commands/PutWithContentEncodingCommand.ts index 4e4e1d7a70092..eb6613e87be13 100644 --- a/private/aws-protocoltests-ec2/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/PutWithContentEncodingCommand.ts @@ -3,11 +3,11 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWithContentEncodingInput } from "../models/models_0"; +import type { PutWithContentEncodingInput } from "../models/models_0"; import { de_PutWithContentEncodingCommand, se_PutWithContentEncodingCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index a7686a3200b9f..8362860f32430 100644 --- a/private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; +import type { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; import { de_QueryIdempotencyTokenAutoFillCommand, se_QueryIdempotencyTokenAutoFillCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts b/private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts index 20486f7ace612..1adc510a13915 100644 --- a/private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/QueryListsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryListsInput } from "../models/models_0"; +import type { QueryListsInput } from "../models/models_0"; import { de_QueryListsCommand, se_QueryListsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts b/private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts index 9e491eca3cb10..7c1fdf2bc4ff0 100644 --- a/private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/QueryTimestampsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryTimestampsInput } from "../models/models_0"; +import type { QueryTimestampsInput } from "../models/models_0"; import { de_QueryTimestampsCommand, se_QueryTimestampsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts b/private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts index dfca1090e4af5..62f7a70b65b10 100644 --- a/private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/RecursiveXmlShapesCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveXmlShapesOutput } from "../models/models_0"; +import type { RecursiveXmlShapesOutput } from "../models/models_0"; import { de_RecursiveXmlShapesCommand, se_RecursiveXmlShapesCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts b/private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts index bf36b996dbe13..88f59a70a4838 100644 --- a/private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/SimpleInputParamsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleInputParamsInput } from "../models/models_0"; +import type { SimpleInputParamsInput } from "../models/models_0"; import { de_SimpleInputParamsCommand, se_SimpleInputParamsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts b/private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts index 4c4c531170ddd..4f8f0ce02db7a 100644 --- a/private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/SimpleScalarXmlPropertiesCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarXmlPropertiesOutput } from "../models/models_0"; +import type { SimpleScalarXmlPropertiesOutput } from "../models/models_0"; import { de_SimpleScalarXmlPropertiesCommand, se_SimpleScalarXmlPropertiesCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts index cea0e2958b99b..7142b1482adbe 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlBlobsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsOutput } from "../models/models_0"; +import type { XmlBlobsOutput } from "../models/models_0"; import { de_XmlBlobsCommand, se_XmlBlobsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts index b34d53a024ca3..874cfa035c45e 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlEmptyBlobsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsOutput } from "../models/models_0"; +import type { XmlBlobsOutput } from "../models/models_0"; import { de_XmlEmptyBlobsCommand, se_XmlEmptyBlobsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts index 3a881cb7bda04..a10fb8aa66fff 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlEmptyListsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsOutput } from "../models/models_0"; +import type { XmlListsOutput } from "../models/models_0"; import { de_XmlEmptyListsCommand, se_XmlEmptyListsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts index 9ef9abc9d04bf..b621c701527d8 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlEnumsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEnumsOutput } from "../models/models_0"; +import type { XmlEnumsOutput } from "../models/models_0"; import { de_XmlEnumsCommand, se_XmlEnumsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/XmlIntEnumsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlIntEnumsCommand.ts index 31ed23146cbd2..b70dac9040d6a 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlIntEnumsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlIntEnumsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlIntEnumsOutput } from "../models/models_0"; +import type { XmlIntEnumsOutput } from "../models/models_0"; import { de_XmlIntEnumsCommand, se_XmlIntEnumsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts index 7efd67176ef7e..df99d8ac6f3f3 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlListsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsOutput } from "../models/models_0"; +import type { XmlListsOutput } from "../models/models_0"; import { de_XmlListsCommand, se_XmlListsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts index d9a2f17c0a55d..c95ac65b8527b 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlNamespacesCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlNamespacesOutput } from "../models/models_0"; +import type { XmlNamespacesOutput } from "../models/models_0"; import { de_XmlNamespacesCommand, se_XmlNamespacesCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts index bdf2b30e94497..b2d8293ea8391 100644 --- a/private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts +++ b/private/aws-protocoltests-ec2/src/commands/XmlTimestampsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; +import type { EC2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2ProtocolClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlTimestampsOutput } from "../models/models_0"; +import type { XmlTimestampsOutput } from "../models/models_0"; import { de_XmlTimestampsCommand, se_XmlTimestampsCommand } from "../protocols/Aws_ec2"; /** diff --git a/private/aws-protocoltests-ec2/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-ec2/src/endpoint/EndpointParameters.ts index 2d1acfe92c2cb..a3050cef989ae 100644 --- a/private/aws-protocoltests-ec2/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-ec2/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-ec2/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-ec2/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-ec2/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-ec2/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-ec2/src/endpoint/ruleset.ts b/private/aws-protocoltests-ec2/src/endpoint/ruleset.ts index 6195aa19a36fd..09f0194441c2d 100644 --- a/private/aws-protocoltests-ec2/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-ec2/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-ec2/src/extensionConfiguration.ts b/private/aws-protocoltests-ec2/src/extensionConfiguration.ts index 89162f1fe3c0b..d3d7f5f71bb87 100644 --- a/private/aws-protocoltests-ec2/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-ec2/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-ec2/src/models/EC2ProtocolServiceException.ts b/private/aws-protocoltests-ec2/src/models/EC2ProtocolServiceException.ts index 7ca494829e992..4e7a969014d65 100644 --- a/private/aws-protocoltests-ec2/src/models/EC2ProtocolServiceException.ts +++ b/private/aws-protocoltests-ec2/src/models/EC2ProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-ec2/src/models/errors.ts b/private/aws-protocoltests-ec2/src/models/errors.ts index 25368f935afcb..d5ad5ef0a88ed 100644 --- a/private/aws-protocoltests-ec2/src/models/errors.ts +++ b/private/aws-protocoltests-ec2/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { EC2ProtocolServiceException as __BaseException } from "./EC2ProtocolServiceException"; import { ComplexNestedErrorData } from "./models_0"; diff --git a/private/aws-protocoltests-ec2/src/protocols/Aws_ec2.ts b/private/aws-protocoltests-ec2/src/protocols/Aws_ec2.ts index 2ff02038f5290..368f2cbfc70eb 100644 --- a/private/aws-protocoltests-ec2/src/protocols/Aws_ec2.ts +++ b/private/aws-protocoltests-ec2/src/protocols/Aws_ec2.ts @@ -2,6 +2,7 @@ import { parseXmlBody as parseBody, parseXmlErrorBody as parseErrorBody } from "@aws-sdk/core"; import { HttpRequest as __HttpRequest, + HttpRequest, HttpResponse as __HttpResponse, isValidHostname as __isValidHostname, } from "@smithy/protocol-http"; @@ -25,7 +26,7 @@ import { strictParseShort as __strictParseShort, withBaseException, } from "@smithy/smithy-client"; -import { +import type { Endpoint as __Endpoint, HeaderBag as __HeaderBag, ResponseMetadata as __ResponseMetadata, @@ -1935,7 +1936,7 @@ const buildHttpRpcRequest = async ( if (body !== undefined) { contents.body = body; } - return new __HttpRequest(contents); + return new HttpRequest(contents); }; const SHARED_HEADERS: __HeaderBag = { "content-type": "application/x-www-form-urlencoded", diff --git a/private/aws-protocoltests-ec2/src/runtimeConfig.browser.ts b/private/aws-protocoltests-ec2/src/runtimeConfig.browser.ts index 3bacfb1ed8a0b..f76ff7f3b8926 100644 --- a/private/aws-protocoltests-ec2/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-ec2/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; + +import type { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-ec2/src/runtimeConfig.native.ts b/private/aws-protocoltests-ec2/src/runtimeConfig.native.ts index 0656194a84669..14501a9f4bc90 100644 --- a/private/aws-protocoltests-ec2/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-ec2/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; +import type { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-ec2/src/runtimeConfig.shared.ts b/private/aws-protocoltests-ec2/src/runtimeConfig.shared.ts index 755ebff883503..b96affc275f76 100644 --- a/private/aws-protocoltests-ec2/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-ec2/src/runtimeConfig.shared.ts @@ -1,13 +1,13 @@ // smithy-typescript generated code import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultEC2ProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; +import type { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; /** diff --git a/private/aws-protocoltests-ec2/src/runtimeConfig.ts b/private/aws-protocoltests-ec2/src/runtimeConfig.ts index a59baf1e991fe..482d75db20fa5 100644 --- a/private/aws-protocoltests-ec2/src/runtimeConfig.ts +++ b/private/aws-protocoltests-ec2/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; + +import type { EC2ProtocolClientConfig } from "./EC2ProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-ec2/src/runtimeExtensions.ts b/private/aws-protocoltests-ec2/src/runtimeExtensions.ts index 43f57c1b52952..5bc50bfd90745 100644 --- a/private/aws-protocoltests-ec2/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-ec2/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { EC2ProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { EC2ProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-ec2/test/functional/ec2query.spec.ts b/private/aws-protocoltests-ec2/test/functional/ec2query.spec.ts index 6ac7f55b1e221..cbc86b338d07d 100644 --- a/private/aws-protocoltests-ec2/test/functional/ec2query.spec.ts +++ b/private/aws-protocoltests-ec2/test/functional/ec2query.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { DatetimeOffsetsCommand } from "../../src/commands/DatetimeOffsetsCommand"; diff --git a/private/aws-protocoltests-json-10-schema/package.json b/private/aws-protocoltests-json-10-schema/package.json index 425b7030d55e8..cd1fa8dcad5c0 100644 --- a/private/aws-protocoltests-json-10-schema/package.json +++ b/private/aws-protocoltests-json-10-schema/package.json @@ -32,27 +32,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-json-10-schema/src/JSONRPC10.ts b/private/aws-protocoltests-json-10-schema/src/JSONRPC10.ts index a8a6593aad9db..ce48b7d11831d 100644 --- a/private/aws-protocoltests-json-10-schema/src/JSONRPC10.ts +++ b/private/aws-protocoltests-json-10-schema/src/JSONRPC10.ts @@ -1,84 +1,88 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { + type ContentTypeParametersCommandInput, + type ContentTypeParametersCommandOutput, ContentTypeParametersCommand, - ContentTypeParametersCommandInput, - ContentTypeParametersCommandOutput, } from "./commands/ContentTypeParametersCommand"; import { + type EmptyInputAndEmptyOutputCommandInput, + type EmptyInputAndEmptyOutputCommandOutput, EmptyInputAndEmptyOutputCommand, - EmptyInputAndEmptyOutputCommandInput, - EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; import { + type EndpointOperationCommandInput, + type EndpointOperationCommandOutput, EndpointOperationCommand, - EndpointOperationCommandInput, - EndpointOperationCommandOutput, } from "./commands/EndpointOperationCommand"; import { + type EndpointWithHostLabelOperationCommandInput, + type EndpointWithHostLabelOperationCommandOutput, EndpointWithHostLabelOperationCommand, - EndpointWithHostLabelOperationCommandInput, - EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; import { + type GreetingWithErrorsCommandInput, + type GreetingWithErrorsCommandOutput, GreetingWithErrorsCommand, - GreetingWithErrorsCommandInput, - GreetingWithErrorsCommandOutput, } from "./commands/GreetingWithErrorsCommand"; import { + type HostWithPathOperationCommandInput, + type HostWithPathOperationCommandOutput, HostWithPathOperationCommand, - HostWithPathOperationCommandInput, - HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; -import { JsonUnionsCommand, JsonUnionsCommandInput, JsonUnionsCommandOutput } from "./commands/JsonUnionsCommand"; import { + type JsonUnionsCommandInput, + type JsonUnionsCommandOutput, + JsonUnionsCommand, +} from "./commands/JsonUnionsCommand"; +import { + type NoInputAndNoOutputCommandInput, + type NoInputAndNoOutputCommandOutput, NoInputAndNoOutputCommand, - NoInputAndNoOutputCommandInput, - NoInputAndNoOutputCommandOutput, } from "./commands/NoInputAndNoOutputCommand"; import { + type NoInputAndOutputCommandInput, + type NoInputAndOutputCommandOutput, NoInputAndOutputCommand, - NoInputAndOutputCommandInput, - NoInputAndOutputCommandOutput, } from "./commands/NoInputAndOutputCommand"; import { + type OperationWithDefaultsCommandInput, + type OperationWithDefaultsCommandOutput, OperationWithDefaultsCommand, - OperationWithDefaultsCommandInput, - OperationWithDefaultsCommandOutput, } from "./commands/OperationWithDefaultsCommand"; import { + type OperationWithNestedStructureCommandInput, + type OperationWithNestedStructureCommandOutput, OperationWithNestedStructureCommand, - OperationWithNestedStructureCommandInput, - OperationWithNestedStructureCommandOutput, } from "./commands/OperationWithNestedStructureCommand"; import { + type OperationWithRequiredMembersCommandInput, + type OperationWithRequiredMembersCommandOutput, OperationWithRequiredMembersCommand, - OperationWithRequiredMembersCommandInput, - OperationWithRequiredMembersCommandOutput, } from "./commands/OperationWithRequiredMembersCommand"; import { + type OperationWithRequiredMembersWithDefaultsCommandInput, + type OperationWithRequiredMembersWithDefaultsCommandOutput, OperationWithRequiredMembersWithDefaultsCommand, - OperationWithRequiredMembersWithDefaultsCommandInput, - OperationWithRequiredMembersWithDefaultsCommandOutput, } from "./commands/OperationWithRequiredMembersWithDefaultsCommand"; import { + type PutWithContentEncodingCommandInput, + type PutWithContentEncodingCommandOutput, PutWithContentEncodingCommand, - PutWithContentEncodingCommandInput, - PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; import { + type QueryIncompatibleOperationCommandInput, + type QueryIncompatibleOperationCommandOutput, QueryIncompatibleOperationCommand, - QueryIncompatibleOperationCommandInput, - QueryIncompatibleOperationCommandOutput, } from "./commands/QueryIncompatibleOperationCommand"; import { + type SimpleScalarPropertiesCommandInput, + type SimpleScalarPropertiesCommandOutput, SimpleScalarPropertiesCommand, - SimpleScalarPropertiesCommandInput, - SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; -import { JSONRPC10Client, JSONRPC10ClientConfig } from "./JSONRPC10Client"; +import { JSONRPC10Client } from "./JSONRPC10Client"; const commands = { ContentTypeParametersCommand, diff --git a/private/aws-protocoltests-json-10-schema/src/JSONRPC10Client.ts b/private/aws-protocoltests-json-10-schema/src/JSONRPC10Client.ts index 660b916c44bef..2c45870374586 100644 --- a/private/aws-protocoltests-json-10-schema/src/JSONRPC10Client.ts +++ b/private/aws-protocoltests-json-10-schema/src/JSONRPC10Client.ts @@ -1,24 +1,24 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -26,93 +26,111 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultJSONRPC10HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { +import type { ContentTypeParametersCommandInput, ContentTypeParametersCommandOutput, } from "./commands/ContentTypeParametersCommand"; -import { +import type { EmptyInputAndEmptyOutputCommandInput, EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; -import { EndpointOperationCommandInput, EndpointOperationCommandOutput } from "./commands/EndpointOperationCommand"; -import { +import type { + EndpointOperationCommandInput, + EndpointOperationCommandOutput, +} from "./commands/EndpointOperationCommand"; +import type { EndpointWithHostLabelOperationCommandInput, EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; -import { GreetingWithErrorsCommandInput, GreetingWithErrorsCommandOutput } from "./commands/GreetingWithErrorsCommand"; -import { +import type { + GreetingWithErrorsCommandInput, + GreetingWithErrorsCommandOutput, +} from "./commands/GreetingWithErrorsCommand"; +import type { HostWithPathOperationCommandInput, HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; -import { JsonUnionsCommandInput, JsonUnionsCommandOutput } from "./commands/JsonUnionsCommand"; -import { NoInputAndNoOutputCommandInput, NoInputAndNoOutputCommandOutput } from "./commands/NoInputAndNoOutputCommand"; -import { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; -import { +import type { JsonUnionsCommandInput, JsonUnionsCommandOutput } from "./commands/JsonUnionsCommand"; +import type { + NoInputAndNoOutputCommandInput, + NoInputAndNoOutputCommandOutput, +} from "./commands/NoInputAndNoOutputCommand"; +import type { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; +import type { OperationWithDefaultsCommandInput, OperationWithDefaultsCommandOutput, } from "./commands/OperationWithDefaultsCommand"; -import { +import type { OperationWithNestedStructureCommandInput, OperationWithNestedStructureCommandOutput, } from "./commands/OperationWithNestedStructureCommand"; -import { +import type { OperationWithRequiredMembersCommandInput, OperationWithRequiredMembersCommandOutput, } from "./commands/OperationWithRequiredMembersCommand"; -import { +import type { OperationWithRequiredMembersWithDefaultsCommandInput, OperationWithRequiredMembersWithDefaultsCommandOutput, } from "./commands/OperationWithRequiredMembersWithDefaultsCommand"; -import { +import type { PutWithContentEncodingCommandInput, PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; -import { +import type { QueryIncompatibleOperationCommandInput, QueryIncompatibleOperationCommandOutput, } from "./commands/QueryIncompatibleOperationCommand"; -import { +import type { SimpleScalarPropertiesCommandInput, SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; @@ -123,7 +141,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-json-10-schema/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-json-10-schema/src/auth/httpAuthExtensionConfiguration.ts index eb2efa9f9c9a8..bb9918aea0d8b 100644 --- a/private/aws-protocoltests-json-10-schema/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-json-10-schema/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { JSONRPC10HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { JSONRPC10HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-json-10-schema/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-json-10-schema/src/auth/httpAuthSchemeProvider.ts index 89eff92edf0a5..d3d5289133b1b 100644 --- a/private/aws-protocoltests-json-10-schema/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-json-10-schema/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { JSONRPC10ClientConfig, JSONRPC10ClientResolvedConfig } from "../JSONRPC10Client"; +import { type JSONRPC10ClientResolvedConfig, JSONRPC10ClientConfig } from "../JSONRPC10Client"; /** * @internal diff --git a/private/aws-protocoltests-json-10-schema/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/ContentTypeParametersCommand.ts index 19ddc5c429b7c..c65e6f82bfa77 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/ContentTypeParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; import { ContentTypeParameters } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts index 2072598b8552e..10fa146d14c85 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; import { EmptyInputAndEmptyOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/EndpointOperationCommand.ts index e1f0a382270db..a4ce70e296ccb 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/EndpointOperationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; import { EndpointOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/EndpointWithHostLabelOperationCommand.ts index 1ecca4aee76a2..69c7a86196e25 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { EndpointWithHostLabelOperationInput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { EndpointWithHostLabelOperationInput } from "../models/models_0"; import { EndpointWithHostLabelOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/GreetingWithErrorsCommand.ts index 29224fbb989d9..521e314ba1e9c 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/GreetingWithErrorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { GreetingWithErrorsInput, GreetingWithErrorsOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { GreetingWithErrorsInput, GreetingWithErrorsOutput } from "../models/models_0"; import { GreetingWithErrors } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/HostWithPathOperationCommand.ts index 04d8fed79bae2..714d6d6375cbf 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/HostWithPathOperationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; import { HostWithPathOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/JsonUnionsCommand.ts index 65668ce906307..5180ed87ba875 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/JsonUnionsCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/JsonUnionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { JsonUnionsInput, JsonUnionsOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JsonUnionsInput, JsonUnionsOutput } from "../models/models_0"; import { JsonUnions } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/NoInputAndNoOutputCommand.ts index f281ccea12d5c..71f91d8301a53 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/NoInputAndNoOutputCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; import { NoInputAndNoOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/NoInputAndOutputCommand.ts index e39d9b94d9999..e5beb6d4c6dca 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/NoInputAndOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { NoInputAndOutputOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { NoInputAndOutputOutput } from "../models/models_0"; import { NoInputAndOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/OperationWithDefaultsCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/OperationWithDefaultsCommand.ts index b99b327b4bdc7..615374c3dfdcc 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/OperationWithDefaultsCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/OperationWithDefaultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; import { OperationWithDefaults } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/OperationWithNestedStructureCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/OperationWithNestedStructureCommand.ts index b9d2f3531449e..f2fd2697d95ed 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/OperationWithNestedStructureCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/OperationWithNestedStructureCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { OperationWithNestedStructureInput, OperationWithNestedStructureOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { OperationWithNestedStructureInput, OperationWithNestedStructureOutput } from "../models/models_0"; import { OperationWithNestedStructure } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/OperationWithRequiredMembersCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/OperationWithRequiredMembersCommand.ts index 8c877d9f64ba7..a18af73d59798 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/OperationWithRequiredMembersCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/OperationWithRequiredMembersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { OperationWithRequiredMembersOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { OperationWithRequiredMembersOutput } from "../models/models_0"; import { OperationWithRequiredMembers } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts index 51f18ee1f9e81..955b2d5e43fdf 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { OperationWithRequiredMembersWithDefaultsOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { OperationWithRequiredMembersWithDefaultsOutput } from "../models/models_0"; import { OperationWithRequiredMembersWithDefaults } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/PutWithContentEncodingCommand.ts index 9924b639a8625..24883391ffe24 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/PutWithContentEncodingCommand.ts @@ -2,11 +2,11 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { PutWithContentEncodingInput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { PutWithContentEncodingInput } from "../models/models_0"; import { PutWithContentEncoding } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/QueryIncompatibleOperationCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/QueryIncompatibleOperationCommand.ts index 26b02efabd453..df0ec9a8f7236 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/QueryIncompatibleOperationCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/QueryIncompatibleOperationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; import { QueryIncompatibleOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-json-10-schema/src/commands/SimpleScalarPropertiesCommand.ts index 7514a9cc1f63d..b94308c75770e 100644 --- a/private/aws-protocoltests-json-10-schema/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-json-10-schema/src/commands/SimpleScalarPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { SimpleScalarPropertiesInput, SimpleScalarPropertiesOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { SimpleScalarPropertiesInput, SimpleScalarPropertiesOutput } from "../models/models_0"; import { SimpleScalarProperties } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-json-10-schema/src/endpoint/EndpointParameters.ts index d091032ef4f6f..133dfec49ef39 100644 --- a/private/aws-protocoltests-json-10-schema/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-json-10-schema/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-json-10-schema/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-json-10-schema/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-json-10-schema/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-json-10-schema/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-json-10-schema/src/endpoint/ruleset.ts b/private/aws-protocoltests-json-10-schema/src/endpoint/ruleset.ts index f7069d02c93b9..c0cd140bac8d8 100644 --- a/private/aws-protocoltests-json-10-schema/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-json-10-schema/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-json-10-schema/src/extensionConfiguration.ts b/private/aws-protocoltests-json-10-schema/src/extensionConfiguration.ts index 3c838f213f87f..347692ceacd1b 100644 --- a/private/aws-protocoltests-json-10-schema/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-json-10-schema/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-json-10-schema/src/models/JSONRPC10ServiceException.ts b/private/aws-protocoltests-json-10-schema/src/models/JSONRPC10ServiceException.ts index 9d4aa1fdb3ff6..284976f3072d2 100644 --- a/private/aws-protocoltests-json-10-schema/src/models/JSONRPC10ServiceException.ts +++ b/private/aws-protocoltests-json-10-schema/src/models/JSONRPC10ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-json-10-schema/src/models/errors.ts b/private/aws-protocoltests-json-10-schema/src/models/errors.ts index 0acab4904e496..9e3742f250d81 100644 --- a/private/aws-protocoltests-json-10-schema/src/models/errors.ts +++ b/private/aws-protocoltests-json-10-schema/src/models/errors.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { JSONRPC10ServiceException as __BaseException } from "./JSONRPC10ServiceException"; -import { ComplexNestedErrorData } from "./models_0"; +import type { ComplexNestedErrorData } from "./models_0"; /** * This error is thrown when a request is invalid. diff --git a/private/aws-protocoltests-json-10-schema/src/models/models_0.ts b/private/aws-protocoltests-json-10-schema/src/models/models_0.ts index cc3f52c39000a..3ecb5c91ffde5 100644 --- a/private/aws-protocoltests-json-10-schema/src/models/models_0.ts +++ b/private/aws-protocoltests-json-10-schema/src/models/models_0.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { DocumentType as __DocumentType } from "@smithy/types"; +import type { DocumentType as __DocumentType } from "@smithy/types"; -import { FooEnum, IntegerEnum, RequiredEnum, RequiredIntEnum, TestEnum, TestIntEnum } from "./enums"; +import type { FooEnum, IntegerEnum, RequiredEnum, RequiredIntEnum, TestEnum, TestIntEnum } from "./enums"; /** * @public diff --git a/private/aws-protocoltests-json-10-schema/src/runtimeConfig.browser.ts b/private/aws-protocoltests-json-10-schema/src/runtimeConfig.browser.ts index 62f518266c807..d1b429726a4d5 100644 --- a/private/aws-protocoltests-json-10-schema/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-json-10-schema/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { JSONRPC10ClientConfig } from "./JSONRPC10Client"; + +import type { JSONRPC10ClientConfig } from "./JSONRPC10Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-json-10-schema/src/runtimeConfig.native.ts b/private/aws-protocoltests-json-10-schema/src/runtimeConfig.native.ts index 581e9b26f4d2a..514c1de028f6f 100644 --- a/private/aws-protocoltests-json-10-schema/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-json-10-schema/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { JSONRPC10ClientConfig } from "./JSONRPC10Client"; +import type { JSONRPC10ClientConfig } from "./JSONRPC10Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-json-10-schema/src/runtimeConfig.shared.ts b/private/aws-protocoltests-json-10-schema/src/runtimeConfig.shared.ts index 18ef77410e6ce..5ca5566310479 100644 --- a/private/aws-protocoltests-json-10-schema/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-json-10-schema/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultJSONRPC10HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { JSONRPC10ClientConfig } from "./JSONRPC10Client"; +import type { JSONRPC10ClientConfig } from "./JSONRPC10Client"; /** * @internal diff --git a/private/aws-protocoltests-json-10-schema/src/runtimeConfig.ts b/private/aws-protocoltests-json-10-schema/src/runtimeConfig.ts index 6ebfe35f935b9..7ae44ac6c649a 100644 --- a/private/aws-protocoltests-json-10-schema/src/runtimeConfig.ts +++ b/private/aws-protocoltests-json-10-schema/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { JSONRPC10ClientConfig } from "./JSONRPC10Client"; + +import type { JSONRPC10ClientConfig } from "./JSONRPC10Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-json-10-schema/src/runtimeExtensions.ts b/private/aws-protocoltests-json-10-schema/src/runtimeExtensions.ts index b33c4d0a6d766..a40dbb962f4ab 100644 --- a/private/aws-protocoltests-json-10-schema/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-json-10-schema/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { JSONRPC10ExtensionConfiguration } from "./extensionConfiguration"; +import type { JSONRPC10ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-json-10-schema/src/schemas/schemas_0.ts b/private/aws-protocoltests-json-10-schema/src/schemas/schemas_0.ts index e4fedd5b51b9e..ac8953ccf1ad6 100644 --- a/private/aws-protocoltests-json-10-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-json-10-schema/src/schemas/schemas_0.ts @@ -137,7 +137,7 @@ const n1 = "aws.protocoltests.shared"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/private/aws-protocoltests-json-10-schema/test/functional/awsjson1_0.spec.ts b/private/aws-protocoltests-json-10-schema/test/functional/awsjson1_0.spec.ts index 4ac709f758958..a62643142bdef 100644 --- a/private/aws-protocoltests-json-10-schema/test/functional/awsjson1_0.spec.ts +++ b/private/aws-protocoltests-json-10-schema/test/functional/awsjson1_0.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { EmptyInputAndEmptyOutputCommand } from "../../src/commands/EmptyInputAndEmptyOutputCommand"; diff --git a/private/aws-protocoltests-json-10/package.json b/private/aws-protocoltests-json-10/package.json index 1eeed95842ee4..7f27776547ab7 100644 --- a/private/aws-protocoltests-json-10/package.json +++ b/private/aws-protocoltests-json-10/package.json @@ -32,27 +32,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-json-10/src/JSONRPC10.ts b/private/aws-protocoltests-json-10/src/JSONRPC10.ts index a8a6593aad9db..3ca7483b804d7 100644 --- a/private/aws-protocoltests-json-10/src/JSONRPC10.ts +++ b/private/aws-protocoltests-json-10/src/JSONRPC10.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ContentTypeParametersCommand, @@ -78,7 +78,7 @@ import { SimpleScalarPropertiesCommandInput, SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; -import { JSONRPC10Client, JSONRPC10ClientConfig } from "./JSONRPC10Client"; +import { JSONRPC10Client } from "./JSONRPC10Client"; const commands = { ContentTypeParametersCommand, diff --git a/private/aws-protocoltests-json-10/src/JSONRPC10Client.ts b/private/aws-protocoltests-json-10/src/JSONRPC10Client.ts index fac08dfe690ec..8a31cbd0ed179 100644 --- a/private/aws-protocoltests-json-10/src/JSONRPC10Client.ts +++ b/private/aws-protocoltests-json-10/src/JSONRPC10Client.ts @@ -1,66 +1,75 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultJSONRPC10HttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -119,7 +128,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-json-10/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-json-10/src/auth/httpAuthExtensionConfiguration.ts index eb2efa9f9c9a8..bb9918aea0d8b 100644 --- a/private/aws-protocoltests-json-10/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-json-10/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { JSONRPC10HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { JSONRPC10HttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-json-10/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-json-10/src/auth/httpAuthSchemeProvider.ts index 89eff92edf0a5..d3d5289133b1b 100644 --- a/private/aws-protocoltests-json-10/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-json-10/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { JSONRPC10ClientConfig, JSONRPC10ClientResolvedConfig } from "../JSONRPC10Client"; +import { type JSONRPC10ClientResolvedConfig, JSONRPC10ClientConfig } from "../JSONRPC10Client"; /** * @internal diff --git a/private/aws-protocoltests-json-10/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-json-10/src/commands/ContentTypeParametersCommand.ts index cb6a1cbee9a08..a997b0b954b17 100644 --- a/private/aws-protocoltests-json-10/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/ContentTypeParametersCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; import { de_ContentTypeParametersCommand, se_ContentTypeParametersCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts index 69418c9223ae3..bded670a4243e 100644 --- a/private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; import { de_EmptyInputAndEmptyOutputCommand, se_EmptyInputAndEmptyOutputCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts index 1ee3bdecccdb7..669825ef0b289 100644 --- a/private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/EndpointOperationCommand.ts @@ -2,10 +2,10 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; import { de_EndpointOperationCommand, se_EndpointOperationCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts index 695e7066e0398..4c191a89edc7c 100644 --- a/private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { EndpointWithHostLabelOperationInput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { EndpointWithHostLabelOperationInput } from "../models/models_0"; import { de_EndpointWithHostLabelOperationCommand, se_EndpointWithHostLabelOperationCommand, diff --git a/private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts index 8f288959bc04a..175fae3c79cad 100644 --- a/private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/GreetingWithErrorsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { GreetingWithErrorsInput, GreetingWithErrorsOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { GreetingWithErrorsInput, GreetingWithErrorsOutput } from "../models/models_0"; import { de_GreetingWithErrorsCommand, se_GreetingWithErrorsCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts index 7a88a1dd7d751..64315150acfe8 100644 --- a/private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/HostWithPathOperationCommand.ts @@ -2,10 +2,10 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; import { de_HostWithPathOperationCommand, se_HostWithPathOperationCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts index 8ba83ed601587..32333945648f3 100644 --- a/private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/JsonUnionsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { JsonUnionsInput, JsonUnionsOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JsonUnionsInput, JsonUnionsOutput } from "../models/models_0"; import { de_JsonUnionsCommand, se_JsonUnionsCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts index 938d4bfa0b009..08c2f7ab10247 100644 --- a/private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/NoInputAndNoOutputCommand.ts @@ -2,10 +2,10 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; import { de_NoInputAndNoOutputCommand, se_NoInputAndNoOutputCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts index 3a2445f3656b4..7e59fbbc98de1 100644 --- a/private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/NoInputAndOutputCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { NoInputAndOutputOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { NoInputAndOutputOutput } from "../models/models_0"; import { de_NoInputAndOutputCommand, se_NoInputAndOutputCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/OperationWithDefaultsCommand.ts b/private/aws-protocoltests-json-10/src/commands/OperationWithDefaultsCommand.ts index 4ccfa4af328bf..35cd3043884c4 100644 --- a/private/aws-protocoltests-json-10/src/commands/OperationWithDefaultsCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/OperationWithDefaultsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; import { de_OperationWithDefaultsCommand, se_OperationWithDefaultsCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/OperationWithNestedStructureCommand.ts b/private/aws-protocoltests-json-10/src/commands/OperationWithNestedStructureCommand.ts index 0d419b3faf375..d9e7b2c02b396 100644 --- a/private/aws-protocoltests-json-10/src/commands/OperationWithNestedStructureCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/OperationWithNestedStructureCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { OperationWithNestedStructureInput, OperationWithNestedStructureOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { OperationWithNestedStructureInput, OperationWithNestedStructureOutput } from "../models/models_0"; import { de_OperationWithNestedStructureCommand, se_OperationWithNestedStructureCommand, diff --git a/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersCommand.ts b/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersCommand.ts index af4be980d91b4..1da2ab2ae2f3d 100644 --- a/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { OperationWithRequiredMembersOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { OperationWithRequiredMembersOutput } from "../models/models_0"; import { de_OperationWithRequiredMembersCommand, se_OperationWithRequiredMembersCommand, diff --git a/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts b/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts index a89aea7ed8723..46fd7686d41bc 100644 --- a/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/OperationWithRequiredMembersWithDefaultsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { OperationWithRequiredMembersWithDefaultsOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { OperationWithRequiredMembersWithDefaultsOutput } from "../models/models_0"; import { de_OperationWithRequiredMembersWithDefaultsCommand, se_OperationWithRequiredMembersWithDefaultsCommand, diff --git a/private/aws-protocoltests-json-10/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-json-10/src/commands/PutWithContentEncodingCommand.ts index 406ce7defdbe0..45f99ac68f95d 100644 --- a/private/aws-protocoltests-json-10/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/PutWithContentEncodingCommand.ts @@ -3,11 +3,11 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { PutWithContentEncodingInput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { PutWithContentEncodingInput } from "../models/models_0"; import { de_PutWithContentEncodingCommand, se_PutWithContentEncodingCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/QueryIncompatibleOperationCommand.ts b/private/aws-protocoltests-json-10/src/commands/QueryIncompatibleOperationCommand.ts index 92fd035938f58..92575b5c4bf58 100644 --- a/private/aws-protocoltests-json-10/src/commands/QueryIncompatibleOperationCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/QueryIncompatibleOperationCommand.ts @@ -2,10 +2,10 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; import { de_QueryIncompatibleOperationCommand, se_QueryIncompatibleOperationCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts index 3ef8f3169a7ae..65c44499c2ed1 100644 --- a/private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-json-10/src/commands/SimpleScalarPropertiesCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; -import { SimpleScalarPropertiesInput, SimpleScalarPropertiesOutput } from "../models/models_0"; +import type { JSONRPC10ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JSONRPC10Client"; +import type { SimpleScalarPropertiesInput, SimpleScalarPropertiesOutput } from "../models/models_0"; import { de_SimpleScalarPropertiesCommand, se_SimpleScalarPropertiesCommand } from "../protocols/Aws_json1_0"; /** diff --git a/private/aws-protocoltests-json-10/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-json-10/src/endpoint/EndpointParameters.ts index d091032ef4f6f..133dfec49ef39 100644 --- a/private/aws-protocoltests-json-10/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-json-10/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-json-10/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-json-10/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-json-10/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-json-10/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-json-10/src/endpoint/ruleset.ts b/private/aws-protocoltests-json-10/src/endpoint/ruleset.ts index f7069d02c93b9..c0cd140bac8d8 100644 --- a/private/aws-protocoltests-json-10/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-json-10/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-json-10/src/extensionConfiguration.ts b/private/aws-protocoltests-json-10/src/extensionConfiguration.ts index 3c838f213f87f..347692ceacd1b 100644 --- a/private/aws-protocoltests-json-10/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-json-10/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-json-10/src/models/JSONRPC10ServiceException.ts b/private/aws-protocoltests-json-10/src/models/JSONRPC10ServiceException.ts index 9d4aa1fdb3ff6..284976f3072d2 100644 --- a/private/aws-protocoltests-json-10/src/models/JSONRPC10ServiceException.ts +++ b/private/aws-protocoltests-json-10/src/models/JSONRPC10ServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-json-10/src/models/errors.ts b/private/aws-protocoltests-json-10/src/models/errors.ts index 0acab4904e496..3cadb24758d42 100644 --- a/private/aws-protocoltests-json-10/src/models/errors.ts +++ b/private/aws-protocoltests-json-10/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { JSONRPC10ServiceException as __BaseException } from "./JSONRPC10ServiceException"; import { ComplexNestedErrorData } from "./models_0"; diff --git a/private/aws-protocoltests-json-10/src/protocols/Aws_json1_0.ts b/private/aws-protocoltests-json-10/src/protocols/Aws_json1_0.ts index 7ce411519260c..41fe940c2c5d8 100644 --- a/private/aws-protocoltests-json-10/src/protocols/Aws_json1_0.ts +++ b/private/aws-protocoltests-json-10/src/protocols/Aws_json1_0.ts @@ -7,6 +7,7 @@ import { } from "@aws-sdk/core"; import { HttpRequest as __HttpRequest, + HttpRequest, HttpResponse as __HttpResponse, isValidHostname as __isValidHostname, } from "@smithy/protocol-http"; @@ -30,11 +31,11 @@ import { withBaseException, } from "@smithy/smithy-client"; import { + type Endpoint as __Endpoint, + type ResponseMetadata as __ResponseMetadata, + type SerdeContext as __SerdeContext, DocumentType as __DocumentType, - Endpoint as __Endpoint, HeaderBag as __HeaderBag, - ResponseMetadata as __ResponseMetadata, - SerdeContext as __SerdeContext, } from "@smithy/types"; import { @@ -1076,7 +1077,7 @@ const buildHttpRpcRequest = async ( if (body !== undefined) { contents.body = body; } - return new __HttpRequest(contents); + return new HttpRequest(contents); }; function sharedHeaders(operation: string): __HeaderBag { return { diff --git a/private/aws-protocoltests-json-10/src/runtimeConfig.browser.ts b/private/aws-protocoltests-json-10/src/runtimeConfig.browser.ts index 62f518266c807..d1b429726a4d5 100644 --- a/private/aws-protocoltests-json-10/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-json-10/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { JSONRPC10ClientConfig } from "./JSONRPC10Client"; + +import type { JSONRPC10ClientConfig } from "./JSONRPC10Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-json-10/src/runtimeConfig.native.ts b/private/aws-protocoltests-json-10/src/runtimeConfig.native.ts index 581e9b26f4d2a..514c1de028f6f 100644 --- a/private/aws-protocoltests-json-10/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-json-10/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { JSONRPC10ClientConfig } from "./JSONRPC10Client"; +import type { JSONRPC10ClientConfig } from "./JSONRPC10Client"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-json-10/src/runtimeConfig.shared.ts b/private/aws-protocoltests-json-10/src/runtimeConfig.shared.ts index e80b03aa95383..1041759157ff0 100644 --- a/private/aws-protocoltests-json-10/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-json-10/src/runtimeConfig.shared.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultJSONRPC10HttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { JSONRPC10ClientConfig } from "./JSONRPC10Client"; +import type { JSONRPC10ClientConfig } from "./JSONRPC10Client"; /** * @internal diff --git a/private/aws-protocoltests-json-10/src/runtimeConfig.ts b/private/aws-protocoltests-json-10/src/runtimeConfig.ts index 6ebfe35f935b9..7ae44ac6c649a 100644 --- a/private/aws-protocoltests-json-10/src/runtimeConfig.ts +++ b/private/aws-protocoltests-json-10/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { JSONRPC10ClientConfig } from "./JSONRPC10Client"; + +import type { JSONRPC10ClientConfig } from "./JSONRPC10Client"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-json-10/src/runtimeExtensions.ts b/private/aws-protocoltests-json-10/src/runtimeExtensions.ts index b33c4d0a6d766..a40dbb962f4ab 100644 --- a/private/aws-protocoltests-json-10/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-json-10/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { JSONRPC10ExtensionConfiguration } from "./extensionConfiguration"; +import type { JSONRPC10ExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-json-10/test/functional/awsjson1_0.spec.ts b/private/aws-protocoltests-json-10/test/functional/awsjson1_0.spec.ts index 4ac709f758958..a62643142bdef 100644 --- a/private/aws-protocoltests-json-10/test/functional/awsjson1_0.spec.ts +++ b/private/aws-protocoltests-json-10/test/functional/awsjson1_0.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { EmptyInputAndEmptyOutputCommand } from "../../src/commands/EmptyInputAndEmptyOutputCommand"; diff --git a/private/aws-protocoltests-json-machinelearning/package.json b/private/aws-protocoltests-json-machinelearning/package.json index 83f7503ec1032..ee14578f44f02 100644 --- a/private/aws-protocoltests-json-machinelearning/package.json +++ b/private/aws-protocoltests-json-machinelearning/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-json-machinelearning/src/MachineLearning.ts b/private/aws-protocoltests-json-machinelearning/src/MachineLearning.ts index c1f7bbc6fc1b0..84f71d50e1ce4 100644 --- a/private/aws-protocoltests-json-machinelearning/src/MachineLearning.ts +++ b/private/aws-protocoltests-json-machinelearning/src/MachineLearning.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { PredictCommand, PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand"; -import { MachineLearningClient, MachineLearningClientConfig } from "./MachineLearningClient"; +import { MachineLearningClient } from "./MachineLearningClient"; const commands = { PredictCommand, diff --git a/private/aws-protocoltests-json-machinelearning/src/MachineLearningClient.ts b/private/aws-protocoltests-json-machinelearning/src/MachineLearningClient.ts index 01bf7b223bac2..63faa87edc019 100644 --- a/private/aws-protocoltests-json-machinelearning/src/MachineLearningClient.ts +++ b/private/aws-protocoltests-json-machinelearning/src/MachineLearningClient.ts @@ -1,61 +1,70 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMachineLearningHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand"; @@ -66,7 +75,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-json-machinelearning/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-json-machinelearning/src/auth/httpAuthExtensionConfiguration.ts index 6ab5665f542ab..d684d76ea66bd 100644 --- a/private/aws-protocoltests-json-machinelearning/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-json-machinelearning/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MachineLearningHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MachineLearningHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-json-machinelearning/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-json-machinelearning/src/auth/httpAuthSchemeProvider.ts index 427c147ab9ba8..e2df18058c165 100644 --- a/private/aws-protocoltests-json-machinelearning/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-json-machinelearning/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MachineLearningClientConfig, MachineLearningClientResolvedConfig } from "../MachineLearningClient"; +import { type MachineLearningClientResolvedConfig, MachineLearningClientConfig } from "../MachineLearningClient"; /** * @internal diff --git a/private/aws-protocoltests-json-machinelearning/src/commands/PredictCommand.ts b/private/aws-protocoltests-json-machinelearning/src/commands/PredictCommand.ts index fb94d40df291b..e6527a295145d 100644 --- a/private/aws-protocoltests-json-machinelearning/src/commands/PredictCommand.ts +++ b/private/aws-protocoltests-json-machinelearning/src/commands/PredictCommand.ts @@ -3,11 +3,15 @@ import { getPredictEndpointPlugin } from "@aws-sdk/middleware-sdk-machinelearnin import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { PredictInput, PredictOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { PredictInput, PredictOutput } from "../models/models_0"; import { de_PredictCommand, se_PredictCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json-machinelearning/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-json-machinelearning/src/endpoint/EndpointParameters.ts index 554c886e81390..c4e43b1a6eca9 100644 --- a/private/aws-protocoltests-json-machinelearning/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-json-machinelearning/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-json-machinelearning/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-json-machinelearning/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-json-machinelearning/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-json-machinelearning/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-json-machinelearning/src/endpoint/ruleset.ts b/private/aws-protocoltests-json-machinelearning/src/endpoint/ruleset.ts index 3ec18a2b59484..63028ae5c4872 100644 --- a/private/aws-protocoltests-json-machinelearning/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-json-machinelearning/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-json-machinelearning/src/extensionConfiguration.ts b/private/aws-protocoltests-json-machinelearning/src/extensionConfiguration.ts index e6e5d1d59f749..5eafb2050c396 100644 --- a/private/aws-protocoltests-json-machinelearning/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-json-machinelearning/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-json-machinelearning/src/models/MachineLearningServiceException.ts b/private/aws-protocoltests-json-machinelearning/src/models/MachineLearningServiceException.ts index b64ec53f74f2d..0e6f9c6c55128 100644 --- a/private/aws-protocoltests-json-machinelearning/src/models/MachineLearningServiceException.ts +++ b/private/aws-protocoltests-json-machinelearning/src/models/MachineLearningServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-json-machinelearning/src/models/errors.ts b/private/aws-protocoltests-json-machinelearning/src/models/errors.ts index 06cf9e8ff85f4..484bd10129aff 100644 --- a/private/aws-protocoltests-json-machinelearning/src/models/errors.ts +++ b/private/aws-protocoltests-json-machinelearning/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException"; diff --git a/private/aws-protocoltests-json-machinelearning/src/protocols/Aws_json1_1.ts b/private/aws-protocoltests-json-machinelearning/src/protocols/Aws_json1_1.ts index 698f2f1622c90..dc3378260bdfd 100644 --- a/private/aws-protocoltests-json-machinelearning/src/protocols/Aws_json1_1.ts +++ b/private/aws-protocoltests-json-machinelearning/src/protocols/Aws_json1_1.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core"; -import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; +import { HttpRequest as __HttpRequest, HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; import { _json, collectBody, @@ -11,10 +11,10 @@ import { withBaseException, } from "@smithy/smithy-client"; import { - Endpoint as __Endpoint, + type Endpoint as __Endpoint, + type ResponseMetadata as __ResponseMetadata, + type SerdeContext as __SerdeContext, HeaderBag as __HeaderBag, - ResponseMetadata as __ResponseMetadata, - SerdeContext as __SerdeContext, } from "@smithy/types"; import { PredictCommandInput, PredictCommandOutput } from "../commands/PredictCommand"; @@ -261,7 +261,7 @@ const buildHttpRpcRequest = async ( if (body !== undefined) { contents.body = body; } - return new __HttpRequest(contents); + return new HttpRequest(contents); }; function sharedHeaders(operation: string): __HeaderBag { return { diff --git a/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.browser.ts b/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.browser.ts index 866e6ef2c3c7e..420281cfcf7f3 100644 --- a/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; + +import type { MachineLearningClientConfig } from "./MachineLearningClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.native.ts b/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.native.ts index 413a354f50743..5503ffedfeae3 100644 --- a/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; +import type { MachineLearningClientConfig } from "./MachineLearningClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.shared.ts b/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.shared.ts index eecd9ea147ed2..8a1f3007514e5 100644 --- a/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.shared.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMachineLearningHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; +import type { MachineLearningClientConfig } from "./MachineLearningClient"; /** * @internal diff --git a/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.ts b/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.ts index 25020c755248a..6711c3a059d52 100644 --- a/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.ts +++ b/private/aws-protocoltests-json-machinelearning/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; + +import type { MachineLearningClientConfig } from "./MachineLearningClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-json-machinelearning/src/runtimeExtensions.ts b/private/aws-protocoltests-json-machinelearning/src/runtimeExtensions.ts index 79ed7a46cefdb..93c7b24f965d2 100644 --- a/private/aws-protocoltests-json-machinelearning/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-json-machinelearning/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MachineLearningExtensionConfiguration } from "./extensionConfiguration"; +import type { MachineLearningExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-json-machinelearning/test/functional/awsjson1_1.spec.ts b/private/aws-protocoltests-json-machinelearning/test/functional/awsjson1_1.spec.ts index 7a41e7f5544f6..e9b3b3d0c73e4 100644 --- a/private/aws-protocoltests-json-machinelearning/test/functional/awsjson1_1.spec.ts +++ b/private/aws-protocoltests-json-machinelearning/test/functional/awsjson1_1.spec.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { PredictCommand } from "../../src/commands/PredictCommand"; diff --git a/private/aws-protocoltests-json-schema-machinelearning/package.json b/private/aws-protocoltests-json-schema-machinelearning/package.json index 441df8b987100..891dc7f6f65dd 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/package.json +++ b/private/aws-protocoltests-json-schema-machinelearning/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/MachineLearning.ts b/private/aws-protocoltests-json-schema-machinelearning/src/MachineLearning.ts index c1f7bbc6fc1b0..4cca6fc0ae120 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/MachineLearning.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/MachineLearning.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { PredictCommand, PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand"; -import { MachineLearningClient, MachineLearningClientConfig } from "./MachineLearningClient"; +import { type PredictCommandInput, type PredictCommandOutput, PredictCommand } from "./commands/PredictCommand"; +import { MachineLearningClient } from "./MachineLearningClient"; const commands = { PredictCommand, diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/MachineLearningClient.ts b/private/aws-protocoltests-json-schema-machinelearning/src/MachineLearningClient.ts index 39e13545515d6..dc076f3059c10 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/MachineLearningClient.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/MachineLearningClient.ts @@ -1,24 +1,24 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -26,43 +26,52 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultMachineLearningHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand"; +import type { PredictCommandInput, PredictCommandOutput } from "./commands/PredictCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, @@ -70,7 +79,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-json-schema-machinelearning/src/auth/httpAuthExtensionConfiguration.ts index 6ab5665f542ab..d684d76ea66bd 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { MachineLearningHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { MachineLearningHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-json-schema-machinelearning/src/auth/httpAuthSchemeProvider.ts index 427c147ab9ba8..e2df18058c165 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { MachineLearningClientConfig, MachineLearningClientResolvedConfig } from "../MachineLearningClient"; +import { type MachineLearningClientResolvedConfig, MachineLearningClientConfig } from "../MachineLearningClient"; /** * @internal diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/commands/PredictCommand.ts b/private/aws-protocoltests-json-schema-machinelearning/src/commands/PredictCommand.ts index 21ae8f0d57fb6..1744e77db907d 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/commands/PredictCommand.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/commands/PredictCommand.ts @@ -2,11 +2,15 @@ import { getPredictEndpointPlugin } from "@aws-sdk/middleware-sdk-machinelearning"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient"; -import { PredictInput, PredictOutput } from "../models/models_0"; +import type { + MachineLearningClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../MachineLearningClient"; +import type { PredictInput, PredictOutput } from "../models/models_0"; import { Predict } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/EndpointParameters.ts index 554c886e81390..c4e43b1a6eca9 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/ruleset.ts b/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/ruleset.ts index 3ec18a2b59484..63028ae5c4872 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/extensionConfiguration.ts b/private/aws-protocoltests-json-schema-machinelearning/src/extensionConfiguration.ts index e6e5d1d59f749..5eafb2050c396 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/models/MachineLearningServiceException.ts b/private/aws-protocoltests-json-schema-machinelearning/src/models/MachineLearningServiceException.ts index b64ec53f74f2d..0e6f9c6c55128 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/models/MachineLearningServiceException.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/models/MachineLearningServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/models/errors.ts b/private/aws-protocoltests-json-schema-machinelearning/src/models/errors.ts index 06cf9e8ff85f4..484bd10129aff 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/models/errors.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException"; diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/models/models_0.ts b/private/aws-protocoltests-json-schema-machinelearning/src/models/models_0.ts index 51dd849358636..dc11ef4691db9 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/models/models_0.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/models/models_0.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { DetailsAttributes } from "./enums"; +import type { DetailsAttributes } from "./enums"; /** * @public diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.browser.ts b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.browser.ts index 866e6ef2c3c7e..420281cfcf7f3 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; + +import type { MachineLearningClientConfig } from "./MachineLearningClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.native.ts b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.native.ts index 413a354f50743..5503ffedfeae3 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; +import type { MachineLearningClientConfig } from "./MachineLearningClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.shared.ts b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.shared.ts index 1d76e8bbde668..63d504026c67d 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultMachineLearningHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; +import type { MachineLearningClientConfig } from "./MachineLearningClient"; /** * @internal diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.ts b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.ts index 25020c755248a..6711c3a059d52 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { MachineLearningClientConfig } from "./MachineLearningClient"; + +import type { MachineLearningClientConfig } from "./MachineLearningClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeExtensions.ts b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeExtensions.ts index 79ed7a46cefdb..93c7b24f965d2 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { MachineLearningExtensionConfiguration } from "./extensionConfiguration"; +import type { MachineLearningExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-json-schema-machinelearning/src/schemas/schemas_0.ts b/private/aws-protocoltests-json-schema-machinelearning/src/schemas/schemas_0.ts index d078a26f33ab6..025e8a8d39e30 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/src/schemas/schemas_0.ts @@ -25,7 +25,7 @@ const n0 = "com.amazonaws.machinelearning"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; +import type { StaticErrorSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types"; import { InternalServerException as __InternalServerException, diff --git a/private/aws-protocoltests-json-schema-machinelearning/test/functional/awsjson1_1.spec.ts b/private/aws-protocoltests-json-schema-machinelearning/test/functional/awsjson1_1.spec.ts index 7a41e7f5544f6..e9b3b3d0c73e4 100644 --- a/private/aws-protocoltests-json-schema-machinelearning/test/functional/awsjson1_1.spec.ts +++ b/private/aws-protocoltests-json-schema-machinelearning/test/functional/awsjson1_1.spec.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { PredictCommand } from "../../src/commands/PredictCommand"; diff --git a/private/aws-protocoltests-json-schema/package.json b/private/aws-protocoltests-json-schema/package.json index 44a3b29466c2e..67853d23baab4 100644 --- a/private/aws-protocoltests-json-schema/package.json +++ b/private/aws-protocoltests-json-schema/package.json @@ -32,27 +32,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-json-schema/src/JsonProtocol.ts b/private/aws-protocoltests-json-schema/src/JsonProtocol.ts index bc2257cef4f96..9acda47863cdf 100644 --- a/private/aws-protocoltests-json-schema/src/JsonProtocol.ts +++ b/private/aws-protocoltests-json-schema/src/JsonProtocol.ts @@ -1,90 +1,94 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { + type ContentTypeParametersCommandInput, + type ContentTypeParametersCommandOutput, ContentTypeParametersCommand, - ContentTypeParametersCommandInput, - ContentTypeParametersCommandOutput, } from "./commands/ContentTypeParametersCommand"; import { + type DatetimeOffsetsCommandInput, + type DatetimeOffsetsCommandOutput, DatetimeOffsetsCommand, - DatetimeOffsetsCommandInput, - DatetimeOffsetsCommandOutput, } from "./commands/DatetimeOffsetsCommand"; import { + type EmptyOperationCommandInput, + type EmptyOperationCommandOutput, EmptyOperationCommand, - EmptyOperationCommandInput, - EmptyOperationCommandOutput, } from "./commands/EmptyOperationCommand"; import { + type EndpointOperationCommandInput, + type EndpointOperationCommandOutput, EndpointOperationCommand, - EndpointOperationCommandInput, - EndpointOperationCommandOutput, } from "./commands/EndpointOperationCommand"; import { + type EndpointWithHostLabelOperationCommandInput, + type EndpointWithHostLabelOperationCommandOutput, EndpointWithHostLabelOperationCommand, - EndpointWithHostLabelOperationCommandInput, - EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; import { + type FractionalSecondsCommandInput, + type FractionalSecondsCommandOutput, FractionalSecondsCommand, - FractionalSecondsCommandInput, - FractionalSecondsCommandOutput, } from "./commands/FractionalSecondsCommand"; import { + type GreetingWithErrorsCommandInput, + type GreetingWithErrorsCommandOutput, GreetingWithErrorsCommand, - GreetingWithErrorsCommandInput, - GreetingWithErrorsCommandOutput, } from "./commands/GreetingWithErrorsCommand"; import { + type HostWithPathOperationCommandInput, + type HostWithPathOperationCommandOutput, HostWithPathOperationCommand, - HostWithPathOperationCommandInput, - HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; -import { JsonEnumsCommand, JsonEnumsCommandInput, JsonEnumsCommandOutput } from "./commands/JsonEnumsCommand"; +import { type JsonEnumsCommandInput, type JsonEnumsCommandOutput, JsonEnumsCommand } from "./commands/JsonEnumsCommand"; import { + type JsonIntEnumsCommandInput, + type JsonIntEnumsCommandOutput, JsonIntEnumsCommand, - JsonIntEnumsCommandInput, - JsonIntEnumsCommandOutput, } from "./commands/JsonIntEnumsCommand"; -import { JsonUnionsCommand, JsonUnionsCommandInput, JsonUnionsCommandOutput } from "./commands/JsonUnionsCommand"; import { + type JsonUnionsCommandInput, + type JsonUnionsCommandOutput, + JsonUnionsCommand, +} from "./commands/JsonUnionsCommand"; +import { + type KitchenSinkOperationCommandInput, + type KitchenSinkOperationCommandOutput, KitchenSinkOperationCommand, - KitchenSinkOperationCommandInput, - KitchenSinkOperationCommandOutput, } from "./commands/KitchenSinkOperationCommand"; import { + type NullOperationCommandInput, + type NullOperationCommandOutput, NullOperationCommand, - NullOperationCommandInput, - NullOperationCommandOutput, } from "./commands/NullOperationCommand"; import { + type OperationWithOptionalInputOutputCommandInput, + type OperationWithOptionalInputOutputCommandOutput, OperationWithOptionalInputOutputCommand, - OperationWithOptionalInputOutputCommandInput, - OperationWithOptionalInputOutputCommandOutput, } from "./commands/OperationWithOptionalInputOutputCommand"; import { + type PutAndGetInlineDocumentsCommandInput, + type PutAndGetInlineDocumentsCommandOutput, PutAndGetInlineDocumentsCommand, - PutAndGetInlineDocumentsCommandInput, - PutAndGetInlineDocumentsCommandOutput, } from "./commands/PutAndGetInlineDocumentsCommand"; import { + type PutWithContentEncodingCommandInput, + type PutWithContentEncodingCommandOutput, PutWithContentEncodingCommand, - PutWithContentEncodingCommandInput, - PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; import { + type SimpleScalarPropertiesCommandInput, + type SimpleScalarPropertiesCommandOutput, SimpleScalarPropertiesCommand, - SimpleScalarPropertiesCommandInput, - SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; import { + type SparseNullsOperationCommandInput, + type SparseNullsOperationCommandOutput, SparseNullsOperationCommand, - SparseNullsOperationCommandInput, - SparseNullsOperationCommandOutput, } from "./commands/SparseNullsOperationCommand"; -import { JsonProtocolClient, JsonProtocolClientConfig } from "./JsonProtocolClient"; +import { JsonProtocolClient } from "./JsonProtocolClient"; const commands = { ContentTypeParametersCommand, diff --git a/private/aws-protocoltests-json-schema/src/JsonProtocolClient.ts b/private/aws-protocoltests-json-schema/src/JsonProtocolClient.ts index 902103681ee84..c88df9169c28e 100644 --- a/private/aws-protocoltests-json-schema/src/JsonProtocolClient.ts +++ b/private/aws-protocoltests-json-schema/src/JsonProtocolClient.ts @@ -1,24 +1,24 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -26,89 +26,107 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultJsonProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { +import type { ContentTypeParametersCommandInput, ContentTypeParametersCommandOutput, } from "./commands/ContentTypeParametersCommand"; -import { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; -import { EmptyOperationCommandInput, EmptyOperationCommandOutput } from "./commands/EmptyOperationCommand"; -import { EndpointOperationCommandInput, EndpointOperationCommandOutput } from "./commands/EndpointOperationCommand"; -import { +import type { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; +import type { EmptyOperationCommandInput, EmptyOperationCommandOutput } from "./commands/EmptyOperationCommand"; +import type { + EndpointOperationCommandInput, + EndpointOperationCommandOutput, +} from "./commands/EndpointOperationCommand"; +import type { EndpointWithHostLabelOperationCommandInput, EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; -import { FractionalSecondsCommandInput, FractionalSecondsCommandOutput } from "./commands/FractionalSecondsCommand"; -import { GreetingWithErrorsCommandInput, GreetingWithErrorsCommandOutput } from "./commands/GreetingWithErrorsCommand"; -import { +import type { + FractionalSecondsCommandInput, + FractionalSecondsCommandOutput, +} from "./commands/FractionalSecondsCommand"; +import type { + GreetingWithErrorsCommandInput, + GreetingWithErrorsCommandOutput, +} from "./commands/GreetingWithErrorsCommand"; +import type { HostWithPathOperationCommandInput, HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; -import { JsonEnumsCommandInput, JsonEnumsCommandOutput } from "./commands/JsonEnumsCommand"; -import { JsonIntEnumsCommandInput, JsonIntEnumsCommandOutput } from "./commands/JsonIntEnumsCommand"; -import { JsonUnionsCommandInput, JsonUnionsCommandOutput } from "./commands/JsonUnionsCommand"; -import { +import type { JsonEnumsCommandInput, JsonEnumsCommandOutput } from "./commands/JsonEnumsCommand"; +import type { JsonIntEnumsCommandInput, JsonIntEnumsCommandOutput } from "./commands/JsonIntEnumsCommand"; +import type { JsonUnionsCommandInput, JsonUnionsCommandOutput } from "./commands/JsonUnionsCommand"; +import type { KitchenSinkOperationCommandInput, KitchenSinkOperationCommandOutput, } from "./commands/KitchenSinkOperationCommand"; -import { NullOperationCommandInput, NullOperationCommandOutput } from "./commands/NullOperationCommand"; -import { +import type { NullOperationCommandInput, NullOperationCommandOutput } from "./commands/NullOperationCommand"; +import type { OperationWithOptionalInputOutputCommandInput, OperationWithOptionalInputOutputCommandOutput, } from "./commands/OperationWithOptionalInputOutputCommand"; -import { +import type { PutAndGetInlineDocumentsCommandInput, PutAndGetInlineDocumentsCommandOutput, } from "./commands/PutAndGetInlineDocumentsCommand"; -import { +import type { PutWithContentEncodingCommandInput, PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; -import { +import type { SimpleScalarPropertiesCommandInput, SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; -import { +import type { SparseNullsOperationCommandInput, SparseNullsOperationCommandOutput, } from "./commands/SparseNullsOperationCommand"; @@ -119,7 +137,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-json-schema/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-json-schema/src/auth/httpAuthExtensionConfiguration.ts index 8646f4b7092dc..4636fca2ef6ec 100644 --- a/private/aws-protocoltests-json-schema/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-json-schema/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { JsonProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { JsonProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-json-schema/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-json-schema/src/auth/httpAuthSchemeProvider.ts index 4aa1255cd7085..abc48c2c8978c 100644 --- a/private/aws-protocoltests-json-schema/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-json-schema/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { JsonProtocolClientConfig, JsonProtocolClientResolvedConfig } from "../JsonProtocolClient"; +import { type JsonProtocolClientResolvedConfig, JsonProtocolClientConfig } from "../JsonProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-json-schema/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-json-schema/src/commands/ContentTypeParametersCommand.ts index 6276293bfc3a5..311ecbe296240 100644 --- a/private/aws-protocoltests-json-schema/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/ContentTypeParametersCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; import { ContentTypeParameters } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-json-schema/src/commands/DatetimeOffsetsCommand.ts index 8d8221783d98d..7737bb7c3e72b 100644 --- a/private/aws-protocoltests-json-schema/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/DatetimeOffsetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { DatetimeOffsetsOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; import { DatetimeOffsets } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/EmptyOperationCommand.ts b/private/aws-protocoltests-json-schema/src/commands/EmptyOperationCommand.ts index b07ead92ffe76..b96fbb66b1dce 100644 --- a/private/aws-protocoltests-json-schema/src/commands/EmptyOperationCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/EmptyOperationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; import { EmptyOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-json-schema/src/commands/EndpointOperationCommand.ts index 88ac219441710..564cdbae68d9b 100644 --- a/private/aws-protocoltests-json-schema/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/EndpointOperationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; import { EndpointOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-json-schema/src/commands/EndpointWithHostLabelOperationCommand.ts index 163ce150debd2..8cbfbcdb4768e 100644 --- a/private/aws-protocoltests-json-schema/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { HostLabelInput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { HostLabelInput } from "../models/models_0"; import { EndpointWithHostLabelOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-json-schema/src/commands/FractionalSecondsCommand.ts index 69cb4ac7201ab..8aa5f185a3dcf 100644 --- a/private/aws-protocoltests-json-schema/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/FractionalSecondsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { FractionalSecondsOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { FractionalSecondsOutput } from "../models/models_0"; import { FractionalSeconds } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-json-schema/src/commands/GreetingWithErrorsCommand.ts index 34e4614767882..74c91a28c29eb 100644 --- a/private/aws-protocoltests-json-schema/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/GreetingWithErrorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { GreetingWithErrorsOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; import { GreetingWithErrors } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-json-schema/src/commands/HostWithPathOperationCommand.ts index 811519bd0383e..3833163623d5f 100644 --- a/private/aws-protocoltests-json-schema/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/HostWithPathOperationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; import { HostWithPathOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/JsonEnumsCommand.ts b/private/aws-protocoltests-json-schema/src/commands/JsonEnumsCommand.ts index a683040e05874..bb05df8a00264 100644 --- a/private/aws-protocoltests-json-schema/src/commands/JsonEnumsCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/JsonEnumsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { JsonEnumsInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonEnumsInputOutput } from "../models/models_0"; import { JsonEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/JsonIntEnumsCommand.ts b/private/aws-protocoltests-json-schema/src/commands/JsonIntEnumsCommand.ts index 7206055125261..3a46ce82b3d14 100644 --- a/private/aws-protocoltests-json-schema/src/commands/JsonIntEnumsCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/JsonIntEnumsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { JsonIntEnumsInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonIntEnumsInputOutput } from "../models/models_0"; import { JsonIntEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-json-schema/src/commands/JsonUnionsCommand.ts index e29d24aebd9da..c10f3d6339ad7 100644 --- a/private/aws-protocoltests-json-schema/src/commands/JsonUnionsCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/JsonUnionsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { UnionInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { UnionInputOutput } from "../models/models_0"; import { JsonUnions } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/KitchenSinkOperationCommand.ts b/private/aws-protocoltests-json-schema/src/commands/KitchenSinkOperationCommand.ts index 6b728c00b0afa..84ef078a00e60 100644 --- a/private/aws-protocoltests-json-schema/src/commands/KitchenSinkOperationCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/KitchenSinkOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { KitchenSink } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { KitchenSink } from "../models/models_0"; import { KitchenSinkOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/NullOperationCommand.ts b/private/aws-protocoltests-json-schema/src/commands/NullOperationCommand.ts index c6421d8d5d750..cc388b54294a0 100644 --- a/private/aws-protocoltests-json-schema/src/commands/NullOperationCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/NullOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { NullOperationInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { NullOperationInputOutput } from "../models/models_0"; import { NullOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/OperationWithOptionalInputOutputCommand.ts b/private/aws-protocoltests-json-schema/src/commands/OperationWithOptionalInputOutputCommand.ts index 2bea8deda5d15..5efdd3c1ddb4f 100644 --- a/private/aws-protocoltests-json-schema/src/commands/OperationWithOptionalInputOutputCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/OperationWithOptionalInputOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { OperationWithOptionalInputOutputInput, OperationWithOptionalInputOutputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { OperationWithOptionalInputOutputInput, OperationWithOptionalInputOutputOutput } from "../models/models_0"; import { OperationWithOptionalInputOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/PutAndGetInlineDocumentsCommand.ts b/private/aws-protocoltests-json-schema/src/commands/PutAndGetInlineDocumentsCommand.ts index 7fc9234a8f541..197b63c010f2e 100644 --- a/private/aws-protocoltests-json-schema/src/commands/PutAndGetInlineDocumentsCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/PutAndGetInlineDocumentsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { PutAndGetInlineDocumentsInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { PutAndGetInlineDocumentsInputOutput } from "../models/models_0"; import { PutAndGetInlineDocuments } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-json-schema/src/commands/PutWithContentEncodingCommand.ts index 4e8833b5e305d..1d539e1c9db37 100644 --- a/private/aws-protocoltests-json-schema/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/PutWithContentEncodingCommand.ts @@ -2,11 +2,11 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { PutWithContentEncodingInput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { PutWithContentEncodingInput } from "../models/models_0"; import { PutWithContentEncoding } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-json-schema/src/commands/SimpleScalarPropertiesCommand.ts index 6c994a79ead57..fbaeec5d2201a 100644 --- a/private/aws-protocoltests-json-schema/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/SimpleScalarPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { SimpleScalarPropertiesInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { SimpleScalarPropertiesInputOutput } from "../models/models_0"; import { SimpleScalarProperties } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/commands/SparseNullsOperationCommand.ts b/private/aws-protocoltests-json-schema/src/commands/SparseNullsOperationCommand.ts index 7850cefd92e0b..12930141057ce 100644 --- a/private/aws-protocoltests-json-schema/src/commands/SparseNullsOperationCommand.ts +++ b/private/aws-protocoltests-json-schema/src/commands/SparseNullsOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { SparseNullsOperationInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { SparseNullsOperationInputOutput } from "../models/models_0"; import { SparseNullsOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-json-schema/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-json-schema/src/endpoint/EndpointParameters.ts index e715b3090f24a..fcf6b9ff82cd3 100644 --- a/private/aws-protocoltests-json-schema/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-json-schema/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-json-schema/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-json-schema/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-json-schema/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-json-schema/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-json-schema/src/endpoint/ruleset.ts b/private/aws-protocoltests-json-schema/src/endpoint/ruleset.ts index ef66cb0fe2056..4239e58874324 100644 --- a/private/aws-protocoltests-json-schema/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-json-schema/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-json-schema/src/extensionConfiguration.ts b/private/aws-protocoltests-json-schema/src/extensionConfiguration.ts index a96412e43b1d0..af6edc2ae3828 100644 --- a/private/aws-protocoltests-json-schema/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-json-schema/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-json-schema/src/models/JsonProtocolServiceException.ts b/private/aws-protocoltests-json-schema/src/models/JsonProtocolServiceException.ts index da46d9fc65ea3..dea3ce032717b 100644 --- a/private/aws-protocoltests-json-schema/src/models/JsonProtocolServiceException.ts +++ b/private/aws-protocoltests-json-schema/src/models/JsonProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-json-schema/src/models/errors.ts b/private/aws-protocoltests-json-schema/src/models/errors.ts index 584fc3dc6e63d..032ebe7c00b9c 100644 --- a/private/aws-protocoltests-json-schema/src/models/errors.ts +++ b/private/aws-protocoltests-json-schema/src/models/errors.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { JsonProtocolServiceException as __BaseException } from "./JsonProtocolServiceException"; -import { ComplexNestedErrorData, KitchenSink } from "./models_0"; +import type { ComplexNestedErrorData, KitchenSink } from "./models_0"; /** * This error is thrown when a request is invalid. diff --git a/private/aws-protocoltests-json-schema/src/models/models_0.ts b/private/aws-protocoltests-json-schema/src/models/models_0.ts index 740c94f474fcc..0826eae65e60d 100644 --- a/private/aws-protocoltests-json-schema/src/models/models_0.ts +++ b/private/aws-protocoltests-json-schema/src/models/models_0.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client"; -import { DocumentType as __DocumentType } from "@smithy/types"; +import type { DocumentType as __DocumentType } from "@smithy/types"; -import { FooEnum, IntegerEnum } from "./enums"; +import type { FooEnum, IntegerEnum } from "./enums"; /** * @public diff --git a/private/aws-protocoltests-json-schema/src/runtimeConfig.browser.ts b/private/aws-protocoltests-json-schema/src/runtimeConfig.browser.ts index 941fd6d793027..7249ebbee5506 100644 --- a/private/aws-protocoltests-json-schema/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-json-schema/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { JsonProtocolClientConfig } from "./JsonProtocolClient"; + +import type { JsonProtocolClientConfig } from "./JsonProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-json-schema/src/runtimeConfig.native.ts b/private/aws-protocoltests-json-schema/src/runtimeConfig.native.ts index d0afa6531faf1..36b4ad10b4b74 100644 --- a/private/aws-protocoltests-json-schema/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-json-schema/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { JsonProtocolClientConfig } from "./JsonProtocolClient"; +import type { JsonProtocolClientConfig } from "./JsonProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-json-schema/src/runtimeConfig.shared.ts b/private/aws-protocoltests-json-schema/src/runtimeConfig.shared.ts index ff36005a76f85..dd693267e6335 100644 --- a/private/aws-protocoltests-json-schema/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-json-schema/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultJsonProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { JsonProtocolClientConfig } from "./JsonProtocolClient"; +import type { JsonProtocolClientConfig } from "./JsonProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-json-schema/src/runtimeConfig.ts b/private/aws-protocoltests-json-schema/src/runtimeConfig.ts index 89195e5203049..764aa1aa62fee 100644 --- a/private/aws-protocoltests-json-schema/src/runtimeConfig.ts +++ b/private/aws-protocoltests-json-schema/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { JsonProtocolClientConfig } from "./JsonProtocolClient"; + +import type { JsonProtocolClientConfig } from "./JsonProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-json-schema/src/runtimeExtensions.ts b/private/aws-protocoltests-json-schema/src/runtimeExtensions.ts index 8a29ded30626f..245fb52a5b880 100644 --- a/private/aws-protocoltests-json-schema/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-json-schema/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { JsonProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { JsonProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-json-schema/src/schemas/schemas_0.ts b/private/aws-protocoltests-json-schema/src/schemas/schemas_0.ts index e6157059ed46b..5d70ffff544f0 100644 --- a/private/aws-protocoltests-json-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-json-schema/src/schemas/schemas_0.ts @@ -138,7 +138,7 @@ const n1 = "aws.protocoltests.shared"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/private/aws-protocoltests-json-schema/test/functional/awsjson1_1.spec.ts b/private/aws-protocoltests-json-schema/test/functional/awsjson1_1.spec.ts index 84f0ff6f99e4a..8a5ed8d32d562 100644 --- a/private/aws-protocoltests-json-schema/test/functional/awsjson1_1.spec.ts +++ b/private/aws-protocoltests-json-schema/test/functional/awsjson1_1.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { DatetimeOffsetsCommand } from "../../src/commands/DatetimeOffsetsCommand"; diff --git a/private/aws-protocoltests-json/package.json b/private/aws-protocoltests-json/package.json index 1b31dced24ad4..3edd6bbc53f78 100644 --- a/private/aws-protocoltests-json/package.json +++ b/private/aws-protocoltests-json/package.json @@ -32,27 +32,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-json/src/JsonProtocol.ts b/private/aws-protocoltests-json/src/JsonProtocol.ts index bc2257cef4f96..12d9a9a41d86f 100644 --- a/private/aws-protocoltests-json/src/JsonProtocol.ts +++ b/private/aws-protocoltests-json/src/JsonProtocol.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { ContentTypeParametersCommand, @@ -84,7 +84,7 @@ import { SparseNullsOperationCommandInput, SparseNullsOperationCommandOutput, } from "./commands/SparseNullsOperationCommand"; -import { JsonProtocolClient, JsonProtocolClientConfig } from "./JsonProtocolClient"; +import { JsonProtocolClient } from "./JsonProtocolClient"; const commands = { ContentTypeParametersCommand, diff --git a/private/aws-protocoltests-json/src/JsonProtocolClient.ts b/private/aws-protocoltests-json/src/JsonProtocolClient.ts index eefbe39da55e5..23eb7ad9066bd 100644 --- a/private/aws-protocoltests-json/src/JsonProtocolClient.ts +++ b/private/aws-protocoltests-json/src/JsonProtocolClient.ts @@ -1,66 +1,75 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultJsonProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -115,7 +124,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-json/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-json/src/auth/httpAuthExtensionConfiguration.ts index 8646f4b7092dc..4636fca2ef6ec 100644 --- a/private/aws-protocoltests-json/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-json/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { JsonProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { JsonProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-json/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-json/src/auth/httpAuthSchemeProvider.ts index 4aa1255cd7085..abc48c2c8978c 100644 --- a/private/aws-protocoltests-json/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-json/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { JsonProtocolClientConfig, JsonProtocolClientResolvedConfig } from "../JsonProtocolClient"; +import { type JsonProtocolClientResolvedConfig, JsonProtocolClientConfig } from "../JsonProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-json/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-json/src/commands/ContentTypeParametersCommand.ts index 996119f016ea3..4a6113d9206d0 100644 --- a/private/aws-protocoltests-json/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-json/src/commands/ContentTypeParametersCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; import { de_ContentTypeParametersCommand, se_ContentTypeParametersCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-json/src/commands/DatetimeOffsetsCommand.ts index ff39cee6ed249..1d3bf5b565615 100644 --- a/private/aws-protocoltests-json/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/DatetimeOffsetsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { DatetimeOffsetsOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; import { de_DatetimeOffsetsCommand, se_DatetimeOffsetsCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts b/private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts index ad36a1b3193b0..93e049dcade02 100644 --- a/private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/EmptyOperationCommand.ts @@ -2,10 +2,10 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; import { de_EmptyOperationCommand, se_EmptyOperationCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts index ba4d51da372cc..3b910a932a71e 100644 --- a/private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/EndpointOperationCommand.ts @@ -2,10 +2,10 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; import { de_EndpointOperationCommand, se_EndpointOperationCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts index 7b398b895b813..08a3e21b86786 100644 --- a/private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { HostLabelInput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { HostLabelInput } from "../models/models_0"; import { de_EndpointWithHostLabelOperationCommand, se_EndpointWithHostLabelOperationCommand, diff --git a/private/aws-protocoltests-json/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-json/src/commands/FractionalSecondsCommand.ts index e1732594e54e8..8659e5a5d2624 100644 --- a/private/aws-protocoltests-json/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/FractionalSecondsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { FractionalSecondsOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { FractionalSecondsOutput } from "../models/models_0"; import { de_FractionalSecondsCommand, se_FractionalSecondsCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts index 120797be48d2f..7c2642b3067bf 100644 --- a/private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/GreetingWithErrorsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { GreetingWithErrorsOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; import { de_GreetingWithErrorsCommand, se_GreetingWithErrorsCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts index 84f747d0f1bbb..5845cdd3e449c 100644 --- a/private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/HostWithPathOperationCommand.ts @@ -2,10 +2,10 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; import { de_HostWithPathOperationCommand, se_HostWithPathOperationCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts b/private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts index a8638a8d9f9b2..bc4eee7d21b04 100644 --- a/private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/JsonEnumsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { JsonEnumsInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonEnumsInputOutput } from "../models/models_0"; import { de_JsonEnumsCommand, se_JsonEnumsCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/JsonIntEnumsCommand.ts b/private/aws-protocoltests-json/src/commands/JsonIntEnumsCommand.ts index c87bea1849b3c..24da3947da96d 100644 --- a/private/aws-protocoltests-json/src/commands/JsonIntEnumsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/JsonIntEnumsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { JsonIntEnumsInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { JsonIntEnumsInputOutput } from "../models/models_0"; import { de_JsonIntEnumsCommand, se_JsonIntEnumsCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts index 6a296e38eb463..a5eeee99f27a4 100644 --- a/private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/JsonUnionsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { UnionInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { UnionInputOutput } from "../models/models_0"; import { de_JsonUnionsCommand, se_JsonUnionsCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts b/private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts index 84e868fb5d6a7..e023f3b409666 100644 --- a/private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/KitchenSinkOperationCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { KitchenSink } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { KitchenSink } from "../models/models_0"; import { de_KitchenSinkOperationCommand, se_KitchenSinkOperationCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/NullOperationCommand.ts b/private/aws-protocoltests-json/src/commands/NullOperationCommand.ts index e3c1c08e1d16d..93c4468135dad 100644 --- a/private/aws-protocoltests-json/src/commands/NullOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/NullOperationCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { NullOperationInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { NullOperationInputOutput } from "../models/models_0"; import { de_NullOperationCommand, se_NullOperationCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts b/private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts index 421a2df26319b..0aa9226adcb45 100644 --- a/private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts +++ b/private/aws-protocoltests-json/src/commands/OperationWithOptionalInputOutputCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { OperationWithOptionalInputOutputInput, OperationWithOptionalInputOutputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { OperationWithOptionalInputOutputInput, OperationWithOptionalInputOutputOutput } from "../models/models_0"; import { de_OperationWithOptionalInputOutputCommand, se_OperationWithOptionalInputOutputCommand, diff --git a/private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts b/private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts index 25ff624f9b2c6..42f835ca03393 100644 --- a/private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts +++ b/private/aws-protocoltests-json/src/commands/PutAndGetInlineDocumentsCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { PutAndGetInlineDocumentsInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { PutAndGetInlineDocumentsInputOutput } from "../models/models_0"; import { de_PutAndGetInlineDocumentsCommand, se_PutAndGetInlineDocumentsCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-json/src/commands/PutWithContentEncodingCommand.ts index c5cf87c22d58e..0a47de7dbe83e 100644 --- a/private/aws-protocoltests-json/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-json/src/commands/PutWithContentEncodingCommand.ts @@ -3,11 +3,11 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { PutWithContentEncodingInput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { PutWithContentEncodingInput } from "../models/models_0"; import { de_PutWithContentEncodingCommand, se_PutWithContentEncodingCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts index c36b14a7d5460..107da5d50d255 100644 --- a/private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-json/src/commands/SimpleScalarPropertiesCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { SimpleScalarPropertiesInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { SimpleScalarPropertiesInputOutput } from "../models/models_0"; import { de_SimpleScalarPropertiesCommand, se_SimpleScalarPropertiesCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/commands/SparseNullsOperationCommand.ts b/private/aws-protocoltests-json/src/commands/SparseNullsOperationCommand.ts index 3be68892f54a1..998df9a7465a1 100644 --- a/private/aws-protocoltests-json/src/commands/SparseNullsOperationCommand.ts +++ b/private/aws-protocoltests-json/src/commands/SparseNullsOperationCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; -import { SparseNullsOperationInputOutput } from "../models/models_0"; +import type { JsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../JsonProtocolClient"; +import type { SparseNullsOperationInputOutput } from "../models/models_0"; import { de_SparseNullsOperationCommand, se_SparseNullsOperationCommand } from "../protocols/Aws_json1_1"; /** diff --git a/private/aws-protocoltests-json/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-json/src/endpoint/EndpointParameters.ts index e715b3090f24a..fcf6b9ff82cd3 100644 --- a/private/aws-protocoltests-json/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-json/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-json/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-json/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-json/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-json/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-json/src/endpoint/ruleset.ts b/private/aws-protocoltests-json/src/endpoint/ruleset.ts index ef66cb0fe2056..4239e58874324 100644 --- a/private/aws-protocoltests-json/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-json/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-json/src/extensionConfiguration.ts b/private/aws-protocoltests-json/src/extensionConfiguration.ts index a96412e43b1d0..af6edc2ae3828 100644 --- a/private/aws-protocoltests-json/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-json/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-json/src/models/JsonProtocolServiceException.ts b/private/aws-protocoltests-json/src/models/JsonProtocolServiceException.ts index da46d9fc65ea3..dea3ce032717b 100644 --- a/private/aws-protocoltests-json/src/models/JsonProtocolServiceException.ts +++ b/private/aws-protocoltests-json/src/models/JsonProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-json/src/models/errors.ts b/private/aws-protocoltests-json/src/models/errors.ts index 584fc3dc6e63d..a7583f2fd7eeb 100644 --- a/private/aws-protocoltests-json/src/models/errors.ts +++ b/private/aws-protocoltests-json/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { JsonProtocolServiceException as __BaseException } from "./JsonProtocolServiceException"; import { ComplexNestedErrorData, KitchenSink } from "./models_0"; diff --git a/private/aws-protocoltests-json/src/protocols/Aws_json1_1.ts b/private/aws-protocoltests-json/src/protocols/Aws_json1_1.ts index d666b586219cf..342d363346e9c 100644 --- a/private/aws-protocoltests-json/src/protocols/Aws_json1_1.ts +++ b/private/aws-protocoltests-json/src/protocols/Aws_json1_1.ts @@ -7,6 +7,7 @@ import { } from "@aws-sdk/core"; import { HttpRequest as __HttpRequest, + HttpRequest, HttpResponse as __HttpResponse, isValidHostname as __isValidHostname, } from "@smithy/protocol-http"; @@ -33,11 +34,11 @@ import { withBaseException, } from "@smithy/smithy-client"; import { + type Endpoint as __Endpoint, + type ResponseMetadata as __ResponseMetadata, + type SerdeContext as __SerdeContext, DocumentType as __DocumentType, - Endpoint as __Endpoint, HeaderBag as __HeaderBag, - ResponseMetadata as __ResponseMetadata, - SerdeContext as __SerdeContext, } from "@smithy/types"; import { @@ -1344,7 +1345,7 @@ const buildHttpRpcRequest = async ( if (body !== undefined) { contents.body = body; } - return new __HttpRequest(contents); + return new HttpRequest(contents); }; function sharedHeaders(operation: string): __HeaderBag { return { diff --git a/private/aws-protocoltests-json/src/runtimeConfig.browser.ts b/private/aws-protocoltests-json/src/runtimeConfig.browser.ts index 941fd6d793027..7249ebbee5506 100644 --- a/private/aws-protocoltests-json/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-json/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { JsonProtocolClientConfig } from "./JsonProtocolClient"; + +import type { JsonProtocolClientConfig } from "./JsonProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-json/src/runtimeConfig.native.ts b/private/aws-protocoltests-json/src/runtimeConfig.native.ts index d0afa6531faf1..36b4ad10b4b74 100644 --- a/private/aws-protocoltests-json/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-json/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { JsonProtocolClientConfig } from "./JsonProtocolClient"; +import type { JsonProtocolClientConfig } from "./JsonProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-json/src/runtimeConfig.shared.ts b/private/aws-protocoltests-json/src/runtimeConfig.shared.ts index b2e813da27c2b..b9b7815f78bd9 100644 --- a/private/aws-protocoltests-json/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-json/src/runtimeConfig.shared.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultJsonProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { JsonProtocolClientConfig } from "./JsonProtocolClient"; +import type { JsonProtocolClientConfig } from "./JsonProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-json/src/runtimeConfig.ts b/private/aws-protocoltests-json/src/runtimeConfig.ts index 89195e5203049..764aa1aa62fee 100644 --- a/private/aws-protocoltests-json/src/runtimeConfig.ts +++ b/private/aws-protocoltests-json/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { JsonProtocolClientConfig } from "./JsonProtocolClient"; + +import type { JsonProtocolClientConfig } from "./JsonProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-json/src/runtimeExtensions.ts b/private/aws-protocoltests-json/src/runtimeExtensions.ts index 8a29ded30626f..245fb52a5b880 100644 --- a/private/aws-protocoltests-json/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-json/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { JsonProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { JsonProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-json/test/functional/awsjson1_1.spec.ts b/private/aws-protocoltests-json/test/functional/awsjson1_1.spec.ts index 84f0ff6f99e4a..8a5ed8d32d562 100644 --- a/private/aws-protocoltests-json/test/functional/awsjson1_1.spec.ts +++ b/private/aws-protocoltests-json/test/functional/awsjson1_1.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { DatetimeOffsetsCommand } from "../../src/commands/DatetimeOffsetsCommand"; diff --git a/private/aws-protocoltests-query-schema/package.json b/private/aws-protocoltests-query-schema/package.json index ca3736bd9599e..c074d1575fb84 100644 --- a/private/aws-protocoltests-query-schema/package.json +++ b/private/aws-protocoltests-query-schema/package.json @@ -32,27 +32,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-query-schema/src/QueryProtocol.ts b/private/aws-protocoltests-query-schema/src/QueryProtocol.ts index 579fb3dc63a5a..8053211999233 100644 --- a/private/aws-protocoltests-query-schema/src/QueryProtocol.ts +++ b/private/aws-protocoltests-query-schema/src/QueryProtocol.ts @@ -1,145 +1,153 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { + type DatetimeOffsetsCommandInput, + type DatetimeOffsetsCommandOutput, DatetimeOffsetsCommand, - DatetimeOffsetsCommandInput, - DatetimeOffsetsCommandOutput, } from "./commands/DatetimeOffsetsCommand"; import { + type EmptyInputAndEmptyOutputCommandInput, + type EmptyInputAndEmptyOutputCommandOutput, EmptyInputAndEmptyOutputCommand, - EmptyInputAndEmptyOutputCommandInput, - EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; import { + type EndpointOperationCommandInput, + type EndpointOperationCommandOutput, EndpointOperationCommand, - EndpointOperationCommandInput, - EndpointOperationCommandOutput, } from "./commands/EndpointOperationCommand"; import { + type EndpointWithHostLabelOperationCommandInput, + type EndpointWithHostLabelOperationCommandOutput, EndpointWithHostLabelOperationCommand, - EndpointWithHostLabelOperationCommandInput, - EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; import { + type FlattenedXmlMapCommandInput, + type FlattenedXmlMapCommandOutput, FlattenedXmlMapCommand, - FlattenedXmlMapCommandInput, - FlattenedXmlMapCommandOutput, } from "./commands/FlattenedXmlMapCommand"; import { + type FlattenedXmlMapWithXmlNameCommandInput, + type FlattenedXmlMapWithXmlNameCommandOutput, FlattenedXmlMapWithXmlNameCommand, - FlattenedXmlMapWithXmlNameCommandInput, - FlattenedXmlMapWithXmlNameCommandOutput, } from "./commands/FlattenedXmlMapWithXmlNameCommand"; import { + type FlattenedXmlMapWithXmlNamespaceCommandInput, + type FlattenedXmlMapWithXmlNamespaceCommandOutput, FlattenedXmlMapWithXmlNamespaceCommand, - FlattenedXmlMapWithXmlNamespaceCommandInput, - FlattenedXmlMapWithXmlNamespaceCommandOutput, } from "./commands/FlattenedXmlMapWithXmlNamespaceCommand"; import { + type FractionalSecondsCommandInput, + type FractionalSecondsCommandOutput, FractionalSecondsCommand, - FractionalSecondsCommandInput, - FractionalSecondsCommandOutput, } from "./commands/FractionalSecondsCommand"; import { + type GreetingWithErrorsCommandInput, + type GreetingWithErrorsCommandOutput, GreetingWithErrorsCommand, - GreetingWithErrorsCommandInput, - GreetingWithErrorsCommandOutput, } from "./commands/GreetingWithErrorsCommand"; import { + type HostWithPathOperationCommandInput, + type HostWithPathOperationCommandOutput, HostWithPathOperationCommand, - HostWithPathOperationCommandInput, - HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; import { + type IgnoresWrappingXmlNameCommandInput, + type IgnoresWrappingXmlNameCommandOutput, IgnoresWrappingXmlNameCommand, - IgnoresWrappingXmlNameCommandInput, - IgnoresWrappingXmlNameCommandOutput, } from "./commands/IgnoresWrappingXmlNameCommand"; import { + type NestedStructuresCommandInput, + type NestedStructuresCommandOutput, NestedStructuresCommand, - NestedStructuresCommandInput, - NestedStructuresCommandOutput, } from "./commands/NestedStructuresCommand"; import { + type NoInputAndNoOutputCommandInput, + type NoInputAndNoOutputCommandOutput, NoInputAndNoOutputCommand, - NoInputAndNoOutputCommandInput, - NoInputAndNoOutputCommandOutput, } from "./commands/NoInputAndNoOutputCommand"; import { + type NoInputAndOutputCommandInput, + type NoInputAndOutputCommandOutput, NoInputAndOutputCommand, - NoInputAndOutputCommandInput, - NoInputAndOutputCommandOutput, } from "./commands/NoInputAndOutputCommand"; import { + type PutWithContentEncodingCommandInput, + type PutWithContentEncodingCommandOutput, PutWithContentEncodingCommand, - PutWithContentEncodingCommandInput, - PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; import { + type QueryIdempotencyTokenAutoFillCommandInput, + type QueryIdempotencyTokenAutoFillCommandOutput, QueryIdempotencyTokenAutoFillCommand, - QueryIdempotencyTokenAutoFillCommandInput, - QueryIdempotencyTokenAutoFillCommandOutput, } from "./commands/QueryIdempotencyTokenAutoFillCommand"; -import { QueryListsCommand, QueryListsCommandInput, QueryListsCommandOutput } from "./commands/QueryListsCommand"; -import { QueryMapsCommand, QueryMapsCommandInput, QueryMapsCommandOutput } from "./commands/QueryMapsCommand"; import { + type QueryListsCommandInput, + type QueryListsCommandOutput, + QueryListsCommand, +} from "./commands/QueryListsCommand"; +import { type QueryMapsCommandInput, type QueryMapsCommandOutput, QueryMapsCommand } from "./commands/QueryMapsCommand"; +import { + type QueryTimestampsCommandInput, + type QueryTimestampsCommandOutput, QueryTimestampsCommand, - QueryTimestampsCommandInput, - QueryTimestampsCommandOutput, } from "./commands/QueryTimestampsCommand"; import { + type RecursiveXmlShapesCommandInput, + type RecursiveXmlShapesCommandOutput, RecursiveXmlShapesCommand, - RecursiveXmlShapesCommandInput, - RecursiveXmlShapesCommandOutput, } from "./commands/RecursiveXmlShapesCommand"; import { + type SimpleInputParamsCommandInput, + type SimpleInputParamsCommandOutput, SimpleInputParamsCommand, - SimpleInputParamsCommandInput, - SimpleInputParamsCommandOutput, } from "./commands/SimpleInputParamsCommand"; import { + type SimpleScalarXmlPropertiesCommandInput, + type SimpleScalarXmlPropertiesCommandOutput, SimpleScalarXmlPropertiesCommand, - SimpleScalarXmlPropertiesCommandInput, - SimpleScalarXmlPropertiesCommandOutput, } from "./commands/SimpleScalarXmlPropertiesCommand"; -import { XmlBlobsCommand, XmlBlobsCommandInput, XmlBlobsCommandOutput } from "./commands/XmlBlobsCommand"; +import { type XmlBlobsCommandInput, type XmlBlobsCommandOutput, XmlBlobsCommand } from "./commands/XmlBlobsCommand"; import { + type XmlEmptyBlobsCommandInput, + type XmlEmptyBlobsCommandOutput, XmlEmptyBlobsCommand, - XmlEmptyBlobsCommandInput, - XmlEmptyBlobsCommandOutput, } from "./commands/XmlEmptyBlobsCommand"; import { + type XmlEmptyListsCommandInput, + type XmlEmptyListsCommandOutput, XmlEmptyListsCommand, - XmlEmptyListsCommandInput, - XmlEmptyListsCommandOutput, } from "./commands/XmlEmptyListsCommand"; import { + type XmlEmptyMapsCommandInput, + type XmlEmptyMapsCommandOutput, XmlEmptyMapsCommand, - XmlEmptyMapsCommandInput, - XmlEmptyMapsCommandOutput, } from "./commands/XmlEmptyMapsCommand"; -import { XmlEnumsCommand, XmlEnumsCommandInput, XmlEnumsCommandOutput } from "./commands/XmlEnumsCommand"; -import { XmlIntEnumsCommand, XmlIntEnumsCommandInput, XmlIntEnumsCommandOutput } from "./commands/XmlIntEnumsCommand"; -import { XmlListsCommand, XmlListsCommandInput, XmlListsCommandOutput } from "./commands/XmlListsCommand"; -import { XmlMapsCommand, XmlMapsCommandInput, XmlMapsCommandOutput } from "./commands/XmlMapsCommand"; +import { type XmlEnumsCommandInput, type XmlEnumsCommandOutput, XmlEnumsCommand } from "./commands/XmlEnumsCommand"; +import { + type XmlIntEnumsCommandInput, + type XmlIntEnumsCommandOutput, + XmlIntEnumsCommand, +} from "./commands/XmlIntEnumsCommand"; +import { type XmlListsCommandInput, type XmlListsCommandOutput, XmlListsCommand } from "./commands/XmlListsCommand"; +import { type XmlMapsCommandInput, type XmlMapsCommandOutput, XmlMapsCommand } from "./commands/XmlMapsCommand"; import { + type XmlMapsXmlNameCommandInput, + type XmlMapsXmlNameCommandOutput, XmlMapsXmlNameCommand, - XmlMapsXmlNameCommandInput, - XmlMapsXmlNameCommandOutput, } from "./commands/XmlMapsXmlNameCommand"; import { + type XmlNamespacesCommandInput, + type XmlNamespacesCommandOutput, XmlNamespacesCommand, - XmlNamespacesCommandInput, - XmlNamespacesCommandOutput, } from "./commands/XmlNamespacesCommand"; import { + type XmlTimestampsCommandInput, + type XmlTimestampsCommandOutput, XmlTimestampsCommand, - XmlTimestampsCommandInput, - XmlTimestampsCommandOutput, } from "./commands/XmlTimestampsCommand"; -import { QueryProtocolClient, QueryProtocolClientConfig } from "./QueryProtocolClient"; +import { QueryProtocolClient } from "./QueryProtocolClient"; const commands = { DatetimeOffsetsCommand, diff --git a/private/aws-protocoltests-query-schema/src/QueryProtocolClient.ts b/private/aws-protocoltests-query-schema/src/QueryProtocolClient.ts index 1640f69b7830e..78b8bc71cef3f 100644 --- a/private/aws-protocoltests-query-schema/src/QueryProtocolClient.ts +++ b/private/aws-protocoltests-query-schema/src/QueryProtocolClient.ts @@ -1,24 +1,24 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -26,107 +26,134 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultQueryProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; -import { +import type { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; +import type { EmptyInputAndEmptyOutputCommandInput, EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; -import { EndpointOperationCommandInput, EndpointOperationCommandOutput } from "./commands/EndpointOperationCommand"; -import { +import type { + EndpointOperationCommandInput, + EndpointOperationCommandOutput, +} from "./commands/EndpointOperationCommand"; +import type { EndpointWithHostLabelOperationCommandInput, EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; -import { FlattenedXmlMapCommandInput, FlattenedXmlMapCommandOutput } from "./commands/FlattenedXmlMapCommand"; -import { +import type { FlattenedXmlMapCommandInput, FlattenedXmlMapCommandOutput } from "./commands/FlattenedXmlMapCommand"; +import type { FlattenedXmlMapWithXmlNameCommandInput, FlattenedXmlMapWithXmlNameCommandOutput, } from "./commands/FlattenedXmlMapWithXmlNameCommand"; -import { +import type { FlattenedXmlMapWithXmlNamespaceCommandInput, FlattenedXmlMapWithXmlNamespaceCommandOutput, } from "./commands/FlattenedXmlMapWithXmlNamespaceCommand"; -import { FractionalSecondsCommandInput, FractionalSecondsCommandOutput } from "./commands/FractionalSecondsCommand"; -import { GreetingWithErrorsCommandInput, GreetingWithErrorsCommandOutput } from "./commands/GreetingWithErrorsCommand"; -import { +import type { + FractionalSecondsCommandInput, + FractionalSecondsCommandOutput, +} from "./commands/FractionalSecondsCommand"; +import type { + GreetingWithErrorsCommandInput, + GreetingWithErrorsCommandOutput, +} from "./commands/GreetingWithErrorsCommand"; +import type { HostWithPathOperationCommandInput, HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; -import { +import type { IgnoresWrappingXmlNameCommandInput, IgnoresWrappingXmlNameCommandOutput, } from "./commands/IgnoresWrappingXmlNameCommand"; -import { NestedStructuresCommandInput, NestedStructuresCommandOutput } from "./commands/NestedStructuresCommand"; -import { NoInputAndNoOutputCommandInput, NoInputAndNoOutputCommandOutput } from "./commands/NoInputAndNoOutputCommand"; -import { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; -import { +import type { NestedStructuresCommandInput, NestedStructuresCommandOutput } from "./commands/NestedStructuresCommand"; +import type { + NoInputAndNoOutputCommandInput, + NoInputAndNoOutputCommandOutput, +} from "./commands/NoInputAndNoOutputCommand"; +import type { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; +import type { PutWithContentEncodingCommandInput, PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; -import { +import type { QueryIdempotencyTokenAutoFillCommandInput, QueryIdempotencyTokenAutoFillCommandOutput, } from "./commands/QueryIdempotencyTokenAutoFillCommand"; -import { QueryListsCommandInput, QueryListsCommandOutput } from "./commands/QueryListsCommand"; -import { QueryMapsCommandInput, QueryMapsCommandOutput } from "./commands/QueryMapsCommand"; -import { QueryTimestampsCommandInput, QueryTimestampsCommandOutput } from "./commands/QueryTimestampsCommand"; -import { RecursiveXmlShapesCommandInput, RecursiveXmlShapesCommandOutput } from "./commands/RecursiveXmlShapesCommand"; -import { SimpleInputParamsCommandInput, SimpleInputParamsCommandOutput } from "./commands/SimpleInputParamsCommand"; -import { +import type { QueryListsCommandInput, QueryListsCommandOutput } from "./commands/QueryListsCommand"; +import type { QueryMapsCommandInput, QueryMapsCommandOutput } from "./commands/QueryMapsCommand"; +import type { QueryTimestampsCommandInput, QueryTimestampsCommandOutput } from "./commands/QueryTimestampsCommand"; +import type { + RecursiveXmlShapesCommandInput, + RecursiveXmlShapesCommandOutput, +} from "./commands/RecursiveXmlShapesCommand"; +import type { + SimpleInputParamsCommandInput, + SimpleInputParamsCommandOutput, +} from "./commands/SimpleInputParamsCommand"; +import type { SimpleScalarXmlPropertiesCommandInput, SimpleScalarXmlPropertiesCommandOutput, } from "./commands/SimpleScalarXmlPropertiesCommand"; -import { XmlBlobsCommandInput, XmlBlobsCommandOutput } from "./commands/XmlBlobsCommand"; -import { XmlEmptyBlobsCommandInput, XmlEmptyBlobsCommandOutput } from "./commands/XmlEmptyBlobsCommand"; -import { XmlEmptyListsCommandInput, XmlEmptyListsCommandOutput } from "./commands/XmlEmptyListsCommand"; -import { XmlEmptyMapsCommandInput, XmlEmptyMapsCommandOutput } from "./commands/XmlEmptyMapsCommand"; -import { XmlEnumsCommandInput, XmlEnumsCommandOutput } from "./commands/XmlEnumsCommand"; -import { XmlIntEnumsCommandInput, XmlIntEnumsCommandOutput } from "./commands/XmlIntEnumsCommand"; -import { XmlListsCommandInput, XmlListsCommandOutput } from "./commands/XmlListsCommand"; -import { XmlMapsCommandInput, XmlMapsCommandOutput } from "./commands/XmlMapsCommand"; -import { XmlMapsXmlNameCommandInput, XmlMapsXmlNameCommandOutput } from "./commands/XmlMapsXmlNameCommand"; -import { XmlNamespacesCommandInput, XmlNamespacesCommandOutput } from "./commands/XmlNamespacesCommand"; -import { XmlTimestampsCommandInput, XmlTimestampsCommandOutput } from "./commands/XmlTimestampsCommand"; +import type { XmlBlobsCommandInput, XmlBlobsCommandOutput } from "./commands/XmlBlobsCommand"; +import type { XmlEmptyBlobsCommandInput, XmlEmptyBlobsCommandOutput } from "./commands/XmlEmptyBlobsCommand"; +import type { XmlEmptyListsCommandInput, XmlEmptyListsCommandOutput } from "./commands/XmlEmptyListsCommand"; +import type { XmlEmptyMapsCommandInput, XmlEmptyMapsCommandOutput } from "./commands/XmlEmptyMapsCommand"; +import type { XmlEnumsCommandInput, XmlEnumsCommandOutput } from "./commands/XmlEnumsCommand"; +import type { XmlIntEnumsCommandInput, XmlIntEnumsCommandOutput } from "./commands/XmlIntEnumsCommand"; +import type { XmlListsCommandInput, XmlListsCommandOutput } from "./commands/XmlListsCommand"; +import type { XmlMapsCommandInput, XmlMapsCommandOutput } from "./commands/XmlMapsCommand"; +import type { XmlMapsXmlNameCommandInput, XmlMapsXmlNameCommandOutput } from "./commands/XmlMapsXmlNameCommand"; +import type { XmlNamespacesCommandInput, XmlNamespacesCommandOutput } from "./commands/XmlNamespacesCommand"; +import type { XmlTimestampsCommandInput, XmlTimestampsCommandOutput } from "./commands/XmlTimestampsCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, @@ -134,7 +161,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-query-schema/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-query-schema/src/auth/httpAuthExtensionConfiguration.ts index adf0277643422..53f4dbffc2919 100644 --- a/private/aws-protocoltests-query-schema/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-query-schema/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { QueryProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { QueryProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-query-schema/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-query-schema/src/auth/httpAuthSchemeProvider.ts index b60f5a4cc4287..6237d6442f857 100644 --- a/private/aws-protocoltests-query-schema/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-query-schema/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { QueryProtocolClientConfig, QueryProtocolClientResolvedConfig } from "../QueryProtocolClient"; +import { type QueryProtocolClientResolvedConfig, QueryProtocolClientConfig } from "../QueryProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-query-schema/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/DatetimeOffsetsCommand.ts index c327858b9b2f5..b168d75d692b0 100644 --- a/private/aws-protocoltests-query-schema/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/DatetimeOffsetsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DatetimeOffsetsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { DatetimeOffsets } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-query-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts index 01b94ea76430d..54af355f633d4 100644 --- a/private/aws-protocoltests-query-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { EmptyInputAndEmptyOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-query-schema/src/commands/EndpointOperationCommand.ts index ebf27c60ad653..8ef2c1fdcc589 100644 --- a/private/aws-protocoltests-query-schema/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/EndpointOperationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { EndpointOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-query-schema/src/commands/EndpointWithHostLabelOperationCommand.ts index 480a03097f05d..e1e99eb1a630b 100644 --- a/private/aws-protocoltests-query-schema/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HostLabelInput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { HostLabelInput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { EndpointWithHostLabelOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapCommand.ts b/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapCommand.ts index 1388a0477c086..961cab8de329c 100644 --- a/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { FlattenedXmlMapOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { FlattenedXmlMap } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapWithXmlNameCommand.ts index 2db43003a5663..0a1aa2985d177 100644 --- a/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapWithXmlNameCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapWithXmlNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapWithXmlNameOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { FlattenedXmlMapWithXmlNameOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { FlattenedXmlMapWithXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts index 82708b76bd0b1..3e513f8cea3f6 100644 --- a/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapWithXmlNamespaceOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { FlattenedXmlMapWithXmlNamespaceOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { FlattenedXmlMapWithXmlNamespace } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/FractionalSecondsCommand.ts index c7d8e4710f16f..9f4326c24319a 100644 --- a/private/aws-protocoltests-query-schema/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/FractionalSecondsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { FractionalSecondsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { FractionalSeconds } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/GreetingWithErrorsCommand.ts index feb15b46b528c..f0f868ebbbf3f 100644 --- a/private/aws-protocoltests-query-schema/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/GreetingWithErrorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { GreetingWithErrors } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-query-schema/src/commands/HostWithPathOperationCommand.ts index 3dc89227a205a..da8214cb65570 100644 --- a/private/aws-protocoltests-query-schema/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/HostWithPathOperationCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { HostWithPathOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/IgnoresWrappingXmlNameCommand.ts b/private/aws-protocoltests-query-schema/src/commands/IgnoresWrappingXmlNameCommand.ts index 8dcdef90ab981..d101157ae1d1c 100644 --- a/private/aws-protocoltests-query-schema/src/commands/IgnoresWrappingXmlNameCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/IgnoresWrappingXmlNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IgnoresWrappingXmlNameOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { IgnoresWrappingXmlNameOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { IgnoresWrappingXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/NestedStructuresCommand.ts b/private/aws-protocoltests-query-schema/src/commands/NestedStructuresCommand.ts index 1987e3adf209a..e9ca36b4b85a1 100644 --- a/private/aws-protocoltests-query-schema/src/commands/NestedStructuresCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/NestedStructuresCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NestedStructuresInput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { NestedStructuresInput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { NestedStructures } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-query-schema/src/commands/NoInputAndNoOutputCommand.ts index 02053aee4c4d7..11ad36c06b732 100644 --- a/private/aws-protocoltests-query-schema/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/NoInputAndNoOutputCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { NoInputAndNoOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-query-schema/src/commands/NoInputAndOutputCommand.ts index 332031c7831af..eb1af4767eb16 100644 --- a/private/aws-protocoltests-query-schema/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/NoInputAndOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NoInputAndOutputInput, NoInputAndOutputOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { NoInputAndOutputInput, NoInputAndOutputOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { NoInputAndOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-query-schema/src/commands/PutWithContentEncodingCommand.ts index 6266c5055ff76..e8d234f0779fe 100644 --- a/private/aws-protocoltests-query-schema/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/PutWithContentEncodingCommand.ts @@ -2,11 +2,11 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWithContentEncodingInput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { PutWithContentEncodingInput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { PutWithContentEncoding } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-query-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index af1a0829d6f90..5ba7f17359462 100644 --- a/private/aws-protocoltests-query-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { QueryIdempotencyTokenAutoFill } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/QueryListsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/QueryListsCommand.ts index 5f6debb91964a..79a9c872dbab1 100644 --- a/private/aws-protocoltests-query-schema/src/commands/QueryListsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/QueryListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryListsInput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryListsInput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { QueryLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/QueryMapsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/QueryMapsCommand.ts index 48c709c4fb6d6..0939a3a804ad6 100644 --- a/private/aws-protocoltests-query-schema/src/commands/QueryMapsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/QueryMapsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryMapsInput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryMapsInput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { QueryMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/QueryTimestampsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/QueryTimestampsCommand.ts index 04188165ac23e..bf56b8206515a 100644 --- a/private/aws-protocoltests-query-schema/src/commands/QueryTimestampsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/QueryTimestampsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryTimestampsInput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryTimestampsInput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { QueryTimestamps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/RecursiveXmlShapesCommand.ts b/private/aws-protocoltests-query-schema/src/commands/RecursiveXmlShapesCommand.ts index 42d874e7cc0de..fa2dc3d0fb39e 100644 --- a/private/aws-protocoltests-query-schema/src/commands/RecursiveXmlShapesCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/RecursiveXmlShapesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveXmlShapesOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { RecursiveXmlShapesOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { RecursiveXmlShapes } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/SimpleInputParamsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/SimpleInputParamsCommand.ts index cf4cca221446d..6e7b3c25b245f 100644 --- a/private/aws-protocoltests-query-schema/src/commands/SimpleInputParamsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/SimpleInputParamsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleInputParamsInput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { SimpleInputParamsInput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { SimpleInputParams } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/SimpleScalarXmlPropertiesCommand.ts b/private/aws-protocoltests-query-schema/src/commands/SimpleScalarXmlPropertiesCommand.ts index 9b5d6dbe9a130..0aebb894ce2a4 100644 --- a/private/aws-protocoltests-query-schema/src/commands/SimpleScalarXmlPropertiesCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/SimpleScalarXmlPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarXmlPropertiesOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { SimpleScalarXmlPropertiesOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { SimpleScalarXmlProperties } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlBlobsCommand.ts index 1fa021c1ec5c2..1d7810fd70541 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlBlobsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlBlobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlBlobsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlBlobs } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlEmptyBlobsCommand.ts index c03e22fe0ecc2..8d1935ebd9d3e 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlEmptyBlobsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlEmptyBlobsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlBlobsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlEmptyBlobs } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlEmptyListsCommand.ts index 5fdb43a568d57..ffba2f24fb24b 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlEmptyListsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlEmptyListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlListsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlEmptyLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlEmptyMapsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlEmptyMapsCommand.ts index b130a0016a90e..e500db574cf0b 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlEmptyMapsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlEmptyMapsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlMapsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlEmptyMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlEnumsCommand.ts index bcf556006f3c6..cd6ab096f4fc1 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlEnumsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlEnumsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEnumsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlEnumsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlIntEnumsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlIntEnumsCommand.ts index f249527a6cfa5..3af5d06904dca 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlIntEnumsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlIntEnumsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlIntEnumsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlIntEnumsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlIntEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlListsCommand.ts index c08166a2fe67d..b994179ba50c5 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlListsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlListsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlMapsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlMapsCommand.ts index 82dfebbe53f2c..7c79aad440792 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlMapsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlMapsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlMapsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlMapsXmlNameCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlMapsXmlNameCommand.ts index 2be01e0cc759b..1eb6cc11e2b78 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlMapsXmlNameCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlMapsXmlNameCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsXmlNameOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlMapsXmlNameOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlMapsXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlNamespacesCommand.ts index 1cd7f75c590dc..81c84d2431bae 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlNamespacesCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlNamespacesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlNamespacesOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlNamespacesOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlNamespaces } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-query-schema/src/commands/XmlTimestampsCommand.ts index 850c7f98cb2bc..343613351bfb2 100644 --- a/private/aws-protocoltests-query-schema/src/commands/XmlTimestampsCommand.ts +++ b/private/aws-protocoltests-query-schema/src/commands/XmlTimestampsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlTimestampsOutput } from "../models/models_0"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { XmlTimestampsOutput } from "../models/models_0"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; import { XmlTimestamps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-query-schema/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-query-schema/src/endpoint/EndpointParameters.ts index 725e5e21eeaf0..f31c7ae610737 100644 --- a/private/aws-protocoltests-query-schema/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-query-schema/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-query-schema/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-query-schema/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-query-schema/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-query-schema/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-query-schema/src/endpoint/ruleset.ts b/private/aws-protocoltests-query-schema/src/endpoint/ruleset.ts index 5b164c083e95e..a5ffe8bfe3c0c 100644 --- a/private/aws-protocoltests-query-schema/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-query-schema/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-query-schema/src/extensionConfiguration.ts b/private/aws-protocoltests-query-schema/src/extensionConfiguration.ts index fc039352e069e..fa01402bcdd73 100644 --- a/private/aws-protocoltests-query-schema/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-query-schema/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-query-schema/src/models/QueryProtocolServiceException.ts b/private/aws-protocoltests-query-schema/src/models/QueryProtocolServiceException.ts index c2135c1eb4ac4..0b33ce6a00176 100644 --- a/private/aws-protocoltests-query-schema/src/models/QueryProtocolServiceException.ts +++ b/private/aws-protocoltests-query-schema/src/models/QueryProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-query-schema/src/models/errors.ts b/private/aws-protocoltests-query-schema/src/models/errors.ts index 91453a5d0d40c..3224f35d08b2b 100644 --- a/private/aws-protocoltests-query-schema/src/models/errors.ts +++ b/private/aws-protocoltests-query-schema/src/models/errors.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; -import { ComplexNestedErrorData } from "./models_0"; +import type { ComplexNestedErrorData } from "./models_0"; import { QueryProtocolServiceException as __BaseException } from "./QueryProtocolServiceException"; /** diff --git a/private/aws-protocoltests-query-schema/src/models/models_0.ts b/private/aws-protocoltests-query-schema/src/models/models_0.ts index 0774910775857..61092e90ddc85 100644 --- a/private/aws-protocoltests-query-schema/src/models/models_0.ts +++ b/private/aws-protocoltests-query-schema/src/models/models_0.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { FooEnum, IntegerEnum } from "./enums"; +import type { FooEnum, IntegerEnum } from "./enums"; /** * @public diff --git a/private/aws-protocoltests-query-schema/src/runtimeConfig.browser.ts b/private/aws-protocoltests-query-schema/src/runtimeConfig.browser.ts index dbab3039f25ee..73d71754dd775 100644 --- a/private/aws-protocoltests-query-schema/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-query-schema/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QueryProtocolClientConfig } from "./QueryProtocolClient"; + +import type { QueryProtocolClientConfig } from "./QueryProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-query-schema/src/runtimeConfig.native.ts b/private/aws-protocoltests-query-schema/src/runtimeConfig.native.ts index fa1b611375720..7da42d4aa76e7 100644 --- a/private/aws-protocoltests-query-schema/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-query-schema/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { QueryProtocolClientConfig } from "./QueryProtocolClient"; +import type { QueryProtocolClientConfig } from "./QueryProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-query-schema/src/runtimeConfig.shared.ts b/private/aws-protocoltests-query-schema/src/runtimeConfig.shared.ts index 53270b1ffe1a6..bbd6ef61c0f2c 100644 --- a/private/aws-protocoltests-query-schema/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-query-schema/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsQueryProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultQueryProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { QueryProtocolClientConfig } from "./QueryProtocolClient"; +import type { QueryProtocolClientConfig } from "./QueryProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-query-schema/src/runtimeConfig.ts b/private/aws-protocoltests-query-schema/src/runtimeConfig.ts index f7910d170797c..3f9d1b1e990dd 100644 --- a/private/aws-protocoltests-query-schema/src/runtimeConfig.ts +++ b/private/aws-protocoltests-query-schema/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QueryProtocolClientConfig } from "./QueryProtocolClient"; + +import type { QueryProtocolClientConfig } from "./QueryProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-query-schema/src/runtimeExtensions.ts b/private/aws-protocoltests-query-schema/src/runtimeExtensions.ts index 1f2a7f7e98bf6..6a1fb18fb4b56 100644 --- a/private/aws-protocoltests-query-schema/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-query-schema/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { QueryProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { QueryProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-query-schema/src/schemas/schemas_0.ts b/private/aws-protocoltests-query-schema/src/schemas/schemas_0.ts index 10cf2219d5037..e9dc92b270233 100644 --- a/private/aws-protocoltests-query-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-query-schema/src/schemas/schemas_0.ts @@ -216,7 +216,7 @@ const n1 = "aws.protocoltests.shared"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/private/aws-protocoltests-query-schema/test/functional/awsquery.spec.ts b/private/aws-protocoltests-query-schema/test/functional/awsquery.spec.ts index c2be014abe9ea..005282c283084 100644 --- a/private/aws-protocoltests-query-schema/test/functional/awsquery.spec.ts +++ b/private/aws-protocoltests-query-schema/test/functional/awsquery.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { DatetimeOffsetsCommand } from "../../src/commands/DatetimeOffsetsCommand"; diff --git a/private/aws-protocoltests-query/package.json b/private/aws-protocoltests-query/package.json index 3456ecbe32e3f..a3c6e06e888e9 100644 --- a/private/aws-protocoltests-query/package.json +++ b/private/aws-protocoltests-query/package.json @@ -32,27 +32,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-query/src/QueryProtocol.ts b/private/aws-protocoltests-query/src/QueryProtocol.ts index 579fb3dc63a5a..6c0578f139638 100644 --- a/private/aws-protocoltests-query/src/QueryProtocol.ts +++ b/private/aws-protocoltests-query/src/QueryProtocol.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DatetimeOffsetsCommand, @@ -139,7 +139,7 @@ import { XmlTimestampsCommandInput, XmlTimestampsCommandOutput, } from "./commands/XmlTimestampsCommand"; -import { QueryProtocolClient, QueryProtocolClientConfig } from "./QueryProtocolClient"; +import { QueryProtocolClient } from "./QueryProtocolClient"; const commands = { DatetimeOffsetsCommand, diff --git a/private/aws-protocoltests-query/src/QueryProtocolClient.ts b/private/aws-protocoltests-query/src/QueryProtocolClient.ts index c868ace02a6d4..c355da4fa95b7 100644 --- a/private/aws-protocoltests-query/src/QueryProtocolClient.ts +++ b/private/aws-protocoltests-query/src/QueryProtocolClient.ts @@ -1,66 +1,75 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultQueryProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; @@ -130,7 +139,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-query/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-query/src/auth/httpAuthExtensionConfiguration.ts index adf0277643422..53f4dbffc2919 100644 --- a/private/aws-protocoltests-query/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-query/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { QueryProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { QueryProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-query/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-query/src/auth/httpAuthSchemeProvider.ts index b60f5a4cc4287..6237d6442f857 100644 --- a/private/aws-protocoltests-query/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-query/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { QueryProtocolClientConfig, QueryProtocolClientResolvedConfig } from "../QueryProtocolClient"; +import { type QueryProtocolClientResolvedConfig, QueryProtocolClientConfig } from "../QueryProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-query/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-query/src/commands/DatetimeOffsetsCommand.ts index 1bcf23dceab97..b2a4a09b4208c 100644 --- a/private/aws-protocoltests-query/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/DatetimeOffsetsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DatetimeOffsetsOutput } from "../models/models_0"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; import { de_DatetimeOffsetsCommand, se_DatetimeOffsetsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts index 93681b46346ed..22f2d98012ac0 100644 --- a/private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-query/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; import { de_EmptyInputAndEmptyOutputCommand, se_EmptyInputAndEmptyOutputCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts index 8ca93cea2ce4a..c756c9e658059 100644 --- a/private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-query/src/commands/EndpointOperationCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_EndpointOperationCommand, se_EndpointOperationCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts index c9d607f4ba4ba..25e66b306d1aa 100644 --- a/private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-query/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -2,15 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HostLabelInput } from "../models/models_0"; +import type { HostLabelInput } from "../models/models_0"; import { de_EndpointWithHostLabelOperationCommand, se_EndpointWithHostLabelOperationCommand, } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts index fe37eb688ba35..0d9387c8044c1 100644 --- a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts +++ b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapOutput } from "../models/models_0"; +import type { FlattenedXmlMapOutput } from "../models/models_0"; import { de_FlattenedXmlMapCommand, se_FlattenedXmlMapCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts index 39779bd16c1db..8133c3754d6f1 100644 --- a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts +++ b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNameCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapWithXmlNameOutput } from "../models/models_0"; +import type { FlattenedXmlMapWithXmlNameOutput } from "../models/models_0"; import { de_FlattenedXmlMapWithXmlNameCommand, se_FlattenedXmlMapWithXmlNameCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts index 0ea57479fe904..fab893adb0012 100644 --- a/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-query/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts @@ -2,15 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapWithXmlNamespaceOutput } from "../models/models_0"; +import type { FlattenedXmlMapWithXmlNamespaceOutput } from "../models/models_0"; import { de_FlattenedXmlMapWithXmlNamespaceCommand, se_FlattenedXmlMapWithXmlNamespaceCommand, } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-query/src/commands/FractionalSecondsCommand.ts index 07f5cb1fcf346..f976de317e2b2 100644 --- a/private/aws-protocoltests-query/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/FractionalSecondsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; +import type { FractionalSecondsOutput } from "../models/models_0"; import { de_FractionalSecondsCommand, se_FractionalSecondsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts index 536f3bfef8ba4..c2fc9062f6786 100644 --- a/private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/GreetingWithErrorsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; import { de_GreetingWithErrorsCommand, se_GreetingWithErrorsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts index a04708aa27884..8812e88d35ac7 100644 --- a/private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-query/src/commands/HostWithPathOperationCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_HostWithPathOperationCommand, se_HostWithPathOperationCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts b/private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts index d40c4ef74275f..42e3e47ca17c7 100644 --- a/private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts +++ b/private/aws-protocoltests-query/src/commands/IgnoresWrappingXmlNameCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IgnoresWrappingXmlNameOutput } from "../models/models_0"; +import type { IgnoresWrappingXmlNameOutput } from "../models/models_0"; import { de_IgnoresWrappingXmlNameCommand, se_IgnoresWrappingXmlNameCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts b/private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts index ff42810674db6..0ac9b6b2aaf59 100644 --- a/private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts +++ b/private/aws-protocoltests-query/src/commands/NestedStructuresCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NestedStructuresInput } from "../models/models_0"; +import type { NestedStructuresInput } from "../models/models_0"; import { de_NestedStructuresCommand, se_NestedStructuresCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts index 30b97aed29084..30935219407c7 100644 --- a/private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-query/src/commands/NoInputAndNoOutputCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_NoInputAndNoOutputCommand, se_NoInputAndNoOutputCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts index 409022d2db152..a9631579c113d 100644 --- a/private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-query/src/commands/NoInputAndOutputCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NoInputAndOutputInput, NoInputAndOutputOutput } from "../models/models_0"; +import type { NoInputAndOutputInput, NoInputAndOutputOutput } from "../models/models_0"; import { de_NoInputAndOutputCommand, se_NoInputAndOutputCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-query/src/commands/PutWithContentEncodingCommand.ts index 0f5704a5ee767..1cca18712ca4c 100644 --- a/private/aws-protocoltests-query/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-query/src/commands/PutWithContentEncodingCommand.ts @@ -3,12 +3,12 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWithContentEncodingInput } from "../models/models_0"; +import type { PutWithContentEncodingInput } from "../models/models_0"; import { de_PutWithContentEncodingCommand, se_PutWithContentEncodingCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index 44f5214788f74..9631f9ac6faf6 100644 --- a/private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-query/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -2,15 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; +import type { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; import { de_QueryIdempotencyTokenAutoFillCommand, se_QueryIdempotencyTokenAutoFillCommand, } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/QueryListsCommand.ts b/private/aws-protocoltests-query/src/commands/QueryListsCommand.ts index 9960c302fa2fc..879e77b219244 100644 --- a/private/aws-protocoltests-query/src/commands/QueryListsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/QueryListsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryListsInput } from "../models/models_0"; +import type { QueryListsInput } from "../models/models_0"; import { de_QueryListsCommand, se_QueryListsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts b/private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts index 510ac2b798bb1..ec6512d43daf3 100644 --- a/private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/QueryMapsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryMapsInput } from "../models/models_0"; +import type { QueryMapsInput } from "../models/models_0"; import { de_QueryMapsCommand, se_QueryMapsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts b/private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts index 2cb829f8ac2d0..d2401eb243d21 100644 --- a/private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/QueryTimestampsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryTimestampsInput } from "../models/models_0"; +import type { QueryTimestampsInput } from "../models/models_0"; import { de_QueryTimestampsCommand, se_QueryTimestampsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts b/private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts index e06abf628f231..3122263bc8dad 100644 --- a/private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts +++ b/private/aws-protocoltests-query/src/commands/RecursiveXmlShapesCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveXmlShapesOutput } from "../models/models_0"; +import type { RecursiveXmlShapesOutput } from "../models/models_0"; import { de_RecursiveXmlShapesCommand, se_RecursiveXmlShapesCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts b/private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts index 8bd98572236d7..a320d65a3ad0c 100644 --- a/private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/SimpleInputParamsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleInputParamsInput } from "../models/models_0"; +import type { SimpleInputParamsInput } from "../models/models_0"; import { de_SimpleInputParamsCommand, se_SimpleInputParamsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts b/private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts index 58e211a7a01d0..294ecdfa1e16a 100644 --- a/private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts +++ b/private/aws-protocoltests-query/src/commands/SimpleScalarXmlPropertiesCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarXmlPropertiesOutput } from "../models/models_0"; +import type { SimpleScalarXmlPropertiesOutput } from "../models/models_0"; import { de_SimpleScalarXmlPropertiesCommand, se_SimpleScalarXmlPropertiesCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts index ab47fb9738ec4..26c8fed61d201 100644 --- a/private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlBlobsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsOutput } from "../models/models_0"; +import type { XmlBlobsOutput } from "../models/models_0"; import { de_XmlBlobsCommand, se_XmlBlobsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts index ebaf0d0842455..1015d78ecaaff 100644 --- a/private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlEmptyBlobsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsOutput } from "../models/models_0"; +import type { XmlBlobsOutput } from "../models/models_0"; import { de_XmlEmptyBlobsCommand, se_XmlEmptyBlobsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts index 066f45ed530b8..71ab3e237bf38 100644 --- a/private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlEmptyListsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsOutput } from "../models/models_0"; +import type { XmlListsOutput } from "../models/models_0"; import { de_XmlEmptyListsCommand, se_XmlEmptyListsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts index 110b61f79f9c8..8b546f7b7d42a 100644 --- a/private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlEmptyMapsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsOutput } from "../models/models_0"; +import type { XmlMapsOutput } from "../models/models_0"; import { de_XmlEmptyMapsCommand, se_XmlEmptyMapsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts index 05a3d5c94cdf6..caf556fb2b80c 100644 --- a/private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlEnumsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEnumsOutput } from "../models/models_0"; +import type { XmlEnumsOutput } from "../models/models_0"; import { de_XmlEnumsCommand, se_XmlEnumsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlIntEnumsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlIntEnumsCommand.ts index 7b59172633b2c..0cfe9aa0ff91f 100644 --- a/private/aws-protocoltests-query/src/commands/XmlIntEnumsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlIntEnumsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlIntEnumsOutput } from "../models/models_0"; +import type { XmlIntEnumsOutput } from "../models/models_0"; import { de_XmlIntEnumsCommand, se_XmlIntEnumsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlListsCommand.ts index b6e2e16965754..c42959f84a271 100644 --- a/private/aws-protocoltests-query/src/commands/XmlListsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlListsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsOutput } from "../models/models_0"; +import type { XmlListsOutput } from "../models/models_0"; import { de_XmlListsCommand, se_XmlListsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts index 5b70947858c97..a29ad65ef0b84 100644 --- a/private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlMapsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsOutput } from "../models/models_0"; +import type { XmlMapsOutput } from "../models/models_0"; import { de_XmlMapsCommand, se_XmlMapsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts b/private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts index a5d8f01bcc2b4..a66c1a0f4c161 100644 --- a/private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlMapsXmlNameCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsXmlNameOutput } from "../models/models_0"; +import type { XmlMapsXmlNameOutput } from "../models/models_0"; import { de_XmlMapsXmlNameCommand, se_XmlMapsXmlNameCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts index 653059e36979c..697cf8481ae25 100644 --- a/private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlNamespacesCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlNamespacesOutput } from "../models/models_0"; +import type { XmlNamespacesOutput } from "../models/models_0"; import { de_XmlNamespacesCommand, se_XmlNamespacesCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts index a36252bb0f270..4eb18cb70d1d6 100644 --- a/private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts +++ b/private/aws-protocoltests-query/src/commands/XmlTimestampsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlTimestampsOutput } from "../models/models_0"; +import type { XmlTimestampsOutput } from "../models/models_0"; import { de_XmlTimestampsCommand, se_XmlTimestampsCommand } from "../protocols/Aws_query"; -import { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; +import type { QueryProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../QueryProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-query/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-query/src/endpoint/EndpointParameters.ts index 725e5e21eeaf0..f31c7ae610737 100644 --- a/private/aws-protocoltests-query/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-query/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-query/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-query/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-query/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-query/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-query/src/endpoint/ruleset.ts b/private/aws-protocoltests-query/src/endpoint/ruleset.ts index 5b164c083e95e..a5ffe8bfe3c0c 100644 --- a/private/aws-protocoltests-query/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-query/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-query/src/extensionConfiguration.ts b/private/aws-protocoltests-query/src/extensionConfiguration.ts index fc039352e069e..fa01402bcdd73 100644 --- a/private/aws-protocoltests-query/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-query/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-query/src/models/QueryProtocolServiceException.ts b/private/aws-protocoltests-query/src/models/QueryProtocolServiceException.ts index c2135c1eb4ac4..0b33ce6a00176 100644 --- a/private/aws-protocoltests-query/src/models/QueryProtocolServiceException.ts +++ b/private/aws-protocoltests-query/src/models/QueryProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-query/src/models/errors.ts b/private/aws-protocoltests-query/src/models/errors.ts index 91453a5d0d40c..1f4df54cd27c2 100644 --- a/private/aws-protocoltests-query/src/models/errors.ts +++ b/private/aws-protocoltests-query/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ComplexNestedErrorData } from "./models_0"; import { QueryProtocolServiceException as __BaseException } from "./QueryProtocolServiceException"; diff --git a/private/aws-protocoltests-query/src/protocols/Aws_query.ts b/private/aws-protocoltests-query/src/protocols/Aws_query.ts index 9e895dbf818f0..464add218b99c 100644 --- a/private/aws-protocoltests-query/src/protocols/Aws_query.ts +++ b/private/aws-protocoltests-query/src/protocols/Aws_query.ts @@ -2,6 +2,7 @@ import { parseXmlBody as parseBody, parseXmlErrorBody as parseErrorBody } from "@aws-sdk/core"; import { HttpRequest as __HttpRequest, + HttpRequest, HttpResponse as __HttpResponse, isValidHostname as __isValidHostname, } from "@smithy/protocol-http"; @@ -25,7 +26,7 @@ import { strictParseShort as __strictParseShort, withBaseException, } from "@smithy/smithy-client"; -import { +import type { Endpoint as __Endpoint, HeaderBag as __HeaderBag, ResponseMetadata as __ResponseMetadata, @@ -2572,7 +2573,7 @@ const buildHttpRpcRequest = async ( if (body !== undefined) { contents.body = body; } - return new __HttpRequest(contents); + return new HttpRequest(contents); }; const SHARED_HEADERS: __HeaderBag = { "content-type": "application/x-www-form-urlencoded", diff --git a/private/aws-protocoltests-query/src/runtimeConfig.browser.ts b/private/aws-protocoltests-query/src/runtimeConfig.browser.ts index dbab3039f25ee..73d71754dd775 100644 --- a/private/aws-protocoltests-query/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-query/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QueryProtocolClientConfig } from "./QueryProtocolClient"; + +import type { QueryProtocolClientConfig } from "./QueryProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-query/src/runtimeConfig.native.ts b/private/aws-protocoltests-query/src/runtimeConfig.native.ts index fa1b611375720..7da42d4aa76e7 100644 --- a/private/aws-protocoltests-query/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-query/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { QueryProtocolClientConfig } from "./QueryProtocolClient"; +import type { QueryProtocolClientConfig } from "./QueryProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-query/src/runtimeConfig.shared.ts b/private/aws-protocoltests-query/src/runtimeConfig.shared.ts index 7d7b70069cdc1..035e3e15416f5 100644 --- a/private/aws-protocoltests-query/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-query/src/runtimeConfig.shared.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultQueryProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { QueryProtocolClientConfig } from "./QueryProtocolClient"; +import type { QueryProtocolClientConfig } from "./QueryProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-query/src/runtimeConfig.ts b/private/aws-protocoltests-query/src/runtimeConfig.ts index f7910d170797c..3f9d1b1e990dd 100644 --- a/private/aws-protocoltests-query/src/runtimeConfig.ts +++ b/private/aws-protocoltests-query/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { QueryProtocolClientConfig } from "./QueryProtocolClient"; + +import type { QueryProtocolClientConfig } from "./QueryProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-query/src/runtimeExtensions.ts b/private/aws-protocoltests-query/src/runtimeExtensions.ts index 1f2a7f7e98bf6..6a1fb18fb4b56 100644 --- a/private/aws-protocoltests-query/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-query/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { QueryProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { QueryProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-query/test/functional/awsquery.spec.ts b/private/aws-protocoltests-query/test/functional/awsquery.spec.ts index c2be014abe9ea..005282c283084 100644 --- a/private/aws-protocoltests-query/test/functional/awsquery.spec.ts +++ b/private/aws-protocoltests-query/test/functional/awsquery.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { DatetimeOffsetsCommand } from "../../src/commands/DatetimeOffsetsCommand"; diff --git a/private/aws-protocoltests-restjson-apigateway/package.json b/private/aws-protocoltests-restjson-apigateway/package.json index ab9dda3c11224..941f9370b8981 100644 --- a/private/aws-protocoltests-restjson-apigateway/package.json +++ b/private/aws-protocoltests-restjson-apigateway/package.json @@ -33,26 +33,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-restjson-apigateway/src/APIGateway.ts b/private/aws-protocoltests-restjson-apigateway/src/APIGateway.ts index e8d012e2bf6be..7557e860c946f 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/APIGateway.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/APIGateway.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { APIGatewayClient, APIGatewayClientConfig } from "./APIGatewayClient"; +import { APIGatewayClient } from "./APIGatewayClient"; import { GetRestApisCommand, GetRestApisCommandInput, GetRestApisCommandOutput } from "./commands/GetRestApisCommand"; const commands = { diff --git a/private/aws-protocoltests-restjson-apigateway/src/APIGatewayClient.ts b/private/aws-protocoltests-restjson-apigateway/src/APIGatewayClient.ts index aee2fc1958a73..3eca69836ffa5 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/APIGatewayClient.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/APIGatewayClient.ts @@ -1,62 +1,71 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { getAcceptHeaderPlugin } from "@aws-sdk/middleware-sdk-api-gateway"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAPIGatewayHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { GetRestApisCommandInput, GetRestApisCommandOutput } from "./commands/GetRestApisCommand"; @@ -67,7 +76,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-restjson-apigateway/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-restjson-apigateway/src/auth/httpAuthExtensionConfiguration.ts index f7ad2ed02317e..07396db7c7bd8 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { APIGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { APIGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-restjson-apigateway/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-restjson-apigateway/src/auth/httpAuthSchemeProvider.ts index 16e4ebf03e9bb..84d2ff5f2a7b1 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { APIGatewayClientConfig, APIGatewayClientResolvedConfig } from "../APIGatewayClient"; +import { type APIGatewayClientResolvedConfig, APIGatewayClientConfig } from "../APIGatewayClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson-apigateway/src/commands/GetRestApisCommand.ts b/private/aws-protocoltests-restjson-apigateway/src/commands/GetRestApisCommand.ts index 4001ce7f09e3e..e2222854e4418 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/commands/GetRestApisCommand.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/commands/GetRestApisCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRestApisRequest, RestApis } from "../models/models_0"; +import type { GetRestApisRequest, RestApis } from "../models/models_0"; import { de_GetRestApisCommand, se_GetRestApisCommand } from "../protocols/Aws_restJson1"; /** diff --git a/private/aws-protocoltests-restjson-apigateway/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-restjson-apigateway/src/endpoint/EndpointParameters.ts index 4e94fa0b616aa..df5347309902b 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-restjson-apigateway/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-restjson-apigateway/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-restjson-apigateway/src/endpoint/ruleset.ts b/private/aws-protocoltests-restjson-apigateway/src/endpoint/ruleset.ts index 9a60adc93d076..2dafbee7d9295 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-restjson-apigateway/src/extensionConfiguration.ts b/private/aws-protocoltests-restjson-apigateway/src/extensionConfiguration.ts index 1de67c9f305c0..e0568c3ee5c60 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-restjson-apigateway/src/models/APIGatewayServiceException.ts b/private/aws-protocoltests-restjson-apigateway/src/models/APIGatewayServiceException.ts index c2e9d57e13336..da98e455751a2 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/models/APIGatewayServiceException.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/models/APIGatewayServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-restjson-apigateway/src/models/errors.ts b/private/aws-protocoltests-restjson-apigateway/src/models/errors.ts index b546e389c1310..2db081f1e97f2 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/models/errors.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { APIGatewayServiceException as __BaseException } from "./APIGatewayServiceException"; diff --git a/private/aws-protocoltests-restjson-apigateway/src/pagination/GetRestApisPaginator.ts b/private/aws-protocoltests-restjson-apigateway/src/pagination/GetRestApisPaginator.ts index 5369ba51803d1..9b56e22624a79 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/pagination/GetRestApisPaginator.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/pagination/GetRestApisPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { GetRestApisCommand, GetRestApisCommandInput, GetRestApisCommandOutput } from "../commands/GetRestApisCommand"; diff --git a/private/aws-protocoltests-restjson-apigateway/src/pagination/Interfaces.ts b/private/aws-protocoltests-restjson-apigateway/src/pagination/Interfaces.ts index cd84c3cb1fbdf..bac88c64d02cc 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/pagination/Interfaces.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; diff --git a/private/aws-protocoltests-restjson-apigateway/src/protocols/Aws_restJson1.ts b/private/aws-protocoltests-restjson-apigateway/src/protocols/Aws_restJson1.ts index 5042965bca617..e1c728b766e1c 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/protocols/Aws_restJson1.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/protocols/Aws_restJson1.ts @@ -18,7 +18,7 @@ import { take, withBaseException, } from "@smithy/smithy-client"; -import { +import type { Endpoint as __Endpoint, ResponseMetadata as __ResponseMetadata, SerdeContext as __SerdeContext, diff --git a/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.browser.ts index 3277f02e13288..05d78ee53d086 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; + +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.native.ts b/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.native.ts index 65f2d81b0a6f8..16a9f844d3599 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.shared.ts index 94da1ccbbb7b5..267fad2b634fd 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.shared.ts @@ -1,12 +1,12 @@ // smithy-typescript generated code import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { defaultAPIGatewayHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.ts b/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.ts index ebdad70299074..c120e32b813c9 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; + +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-restjson-apigateway/src/runtimeExtensions.ts b/private/aws-protocoltests-restjson-apigateway/src/runtimeExtensions.ts index 6e6e9c3b176a7..10b568c647c33 100644 --- a/private/aws-protocoltests-restjson-apigateway/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-restjson-apigateway/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { APIGatewayExtensionConfiguration } from "./extensionConfiguration"; +import type { APIGatewayExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-restjson-apigateway/test/functional/restjson1.spec.ts b/private/aws-protocoltests-restjson-apigateway/test/functional/restjson1.spec.ts index 085cd8b770212..fb8f95a995c40 100644 --- a/private/aws-protocoltests-restjson-apigateway/test/functional/restjson1.spec.ts +++ b/private/aws-protocoltests-restjson-apigateway/test/functional/restjson1.spec.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { APIGatewayClient } from "../../src/APIGatewayClient"; diff --git a/private/aws-protocoltests-restjson-glacier/package.json b/private/aws-protocoltests-restjson-glacier/package.json index 52635a6281292..57719eff5386d 100644 --- a/private/aws-protocoltests-restjson-glacier/package.json +++ b/private/aws-protocoltests-restjson-glacier/package.json @@ -35,26 +35,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-restjson-glacier/src/Glacier.ts b/private/aws-protocoltests-restjson-glacier/src/Glacier.ts index e02036ea8b07a..4bbe8cc4502e8 100644 --- a/private/aws-protocoltests-restjson-glacier/src/Glacier.ts +++ b/private/aws-protocoltests-restjson-glacier/src/Glacier.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { UploadArchiveCommand, @@ -12,7 +12,7 @@ import { UploadMultipartPartCommandInput, UploadMultipartPartCommandOutput, } from "./commands/UploadMultipartPartCommand"; -import { GlacierClient, GlacierClientConfig } from "./GlacierClient"; +import { GlacierClient } from "./GlacierClient"; const commands = { UploadArchiveCommand, diff --git a/private/aws-protocoltests-restjson-glacier/src/GlacierClient.ts b/private/aws-protocoltests-restjson-glacier/src/GlacierClient.ts index 81a5b20aaf0d2..44318dc3566ff 100644 --- a/private/aws-protocoltests-restjson-glacier/src/GlacierClient.ts +++ b/private/aws-protocoltests-restjson-glacier/src/GlacierClient.ts @@ -1,63 +1,72 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { getGlacierPlugin } from "@aws-sdk/middleware-sdk-glacier"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, HttpRequest as __HttpRequest, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGlacierHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { UploadArchiveCommandInput, UploadArchiveCommandOutput } from "./commands/UploadArchiveCommand"; @@ -72,7 +81,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-restjson-glacier/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-restjson-glacier/src/auth/httpAuthExtensionConfiguration.ts index 290227efece59..57b410f856e69 100644 --- a/private/aws-protocoltests-restjson-glacier/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-glacier/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GlacierHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GlacierHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-restjson-glacier/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-restjson-glacier/src/auth/httpAuthSchemeProvider.ts index 71d694abe435a..5e174f7126926 100644 --- a/private/aws-protocoltests-restjson-glacier/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-restjson-glacier/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GlacierClientConfig, GlacierClientResolvedConfig } from "../GlacierClient"; +import { type GlacierClientResolvedConfig, GlacierClientConfig } from "../GlacierClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson-glacier/src/commands/UploadArchiveCommand.ts b/private/aws-protocoltests-restjson-glacier/src/commands/UploadArchiveCommand.ts index f9e26a8630a70..ce1fe81440677 100644 --- a/private/aws-protocoltests-restjson-glacier/src/commands/UploadArchiveCommand.ts +++ b/private/aws-protocoltests-restjson-glacier/src/commands/UploadArchiveCommand.ts @@ -2,11 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ArchiveCreationOutput, UploadArchiveInput, UploadArchiveInputFilterSensitiveLog } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import { + type ArchiveCreationOutput, + UploadArchiveInput, + UploadArchiveInputFilterSensitiveLog, +} from "../models/models_0"; import { de_UploadArchiveCommand, se_UploadArchiveCommand } from "../protocols/Aws_restJson1"; /** diff --git a/private/aws-protocoltests-restjson-glacier/src/commands/UploadMultipartPartCommand.ts b/private/aws-protocoltests-restjson-glacier/src/commands/UploadMultipartPartCommand.ts index c449dd428da54..62c4d6e9eb790 100644 --- a/private/aws-protocoltests-restjson-glacier/src/commands/UploadMultipartPartCommand.ts +++ b/private/aws-protocoltests-restjson-glacier/src/commands/UploadMultipartPartCommand.ts @@ -2,14 +2,14 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; import { + type UploadMultipartPartOutput, UploadMultipartPartInput, UploadMultipartPartInputFilterSensitiveLog, - UploadMultipartPartOutput, } from "../models/models_0"; import { de_UploadMultipartPartCommand, se_UploadMultipartPartCommand } from "../protocols/Aws_restJson1"; diff --git a/private/aws-protocoltests-restjson-glacier/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-restjson-glacier/src/endpoint/EndpointParameters.ts index 461c6bf68ed21..026d9fd8a304d 100644 --- a/private/aws-protocoltests-restjson-glacier/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-restjson-glacier/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-restjson-glacier/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-restjson-glacier/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-restjson-glacier/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-restjson-glacier/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-restjson-glacier/src/endpoint/ruleset.ts b/private/aws-protocoltests-restjson-glacier/src/endpoint/ruleset.ts index b75737825c9b8..a776af5d57ef7 100644 --- a/private/aws-protocoltests-restjson-glacier/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-restjson-glacier/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-restjson-glacier/src/extensionConfiguration.ts b/private/aws-protocoltests-restjson-glacier/src/extensionConfiguration.ts index 172e2be4ce113..6ae04d6123000 100644 --- a/private/aws-protocoltests-restjson-glacier/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-glacier/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-restjson-glacier/src/models/GlacierServiceException.ts b/private/aws-protocoltests-restjson-glacier/src/models/GlacierServiceException.ts index 06563bd1e2675..1eaacf890dec6 100644 --- a/private/aws-protocoltests-restjson-glacier/src/models/GlacierServiceException.ts +++ b/private/aws-protocoltests-restjson-glacier/src/models/GlacierServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-restjson-glacier/src/models/errors.ts b/private/aws-protocoltests-restjson-glacier/src/models/errors.ts index a64d0d496e7f4..ee80eec250431 100644 --- a/private/aws-protocoltests-restjson-glacier/src/models/errors.ts +++ b/private/aws-protocoltests-restjson-glacier/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { GlacierServiceException as __BaseException } from "./GlacierServiceException"; diff --git a/private/aws-protocoltests-restjson-glacier/src/protocols/Aws_restJson1.ts b/private/aws-protocoltests-restjson-glacier/src/protocols/Aws_restJson1.ts index eec69b54047a1..e754ce81b3a11 100644 --- a/private/aws-protocoltests-restjson-glacier/src/protocols/Aws_restJson1.ts +++ b/private/aws-protocoltests-restjson-glacier/src/protocols/Aws_restJson1.ts @@ -13,7 +13,7 @@ import { take, withBaseException, } from "@smithy/smithy-client"; -import { +import type { Endpoint as __Endpoint, ResponseMetadata as __ResponseMetadata, SerdeContext as __SerdeContext, diff --git a/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.browser.ts index c7ecc0a432e2f..78d52b1bd73b3 100644 --- a/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlacierClientConfig } from "./GlacierClient"; + +import type { GlacierClientConfig } from "./GlacierClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.native.ts b/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.native.ts index e290858d9b73e..bc7c832873429 100644 --- a/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GlacierClientConfig } from "./GlacierClient"; +import type { GlacierClientConfig } from "./GlacierClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.shared.ts index bcc35b5b08958..3c3443c5d147a 100644 --- a/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.shared.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGlacierHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GlacierClientConfig } from "./GlacierClient"; +import type { GlacierClientConfig } from "./GlacierClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.ts b/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.ts index c3cc46911e233..f544bfcf20218 100644 --- a/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.ts +++ b/private/aws-protocoltests-restjson-glacier/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlacierClientConfig } from "./GlacierClient"; + +import type { GlacierClientConfig } from "./GlacierClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-restjson-glacier/src/runtimeExtensions.ts b/private/aws-protocoltests-restjson-glacier/src/runtimeExtensions.ts index 6e69df2ccbc55..5b0c83d0fe00b 100644 --- a/private/aws-protocoltests-restjson-glacier/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-restjson-glacier/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GlacierExtensionConfiguration } from "./extensionConfiguration"; +import type { GlacierExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-restjson-glacier/test/functional/restjson1.spec.ts b/private/aws-protocoltests-restjson-glacier/test/functional/restjson1.spec.ts index dc2efde60d024..ec7b93a58c318 100644 --- a/private/aws-protocoltests-restjson-glacier/test/functional/restjson1.spec.ts +++ b/private/aws-protocoltests-restjson-glacier/test/functional/restjson1.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { UploadArchiveCommand } from "../../src/commands/UploadArchiveCommand"; diff --git a/private/aws-protocoltests-restjson-schema-apigateway/package.json b/private/aws-protocoltests-restjson-schema-apigateway/package.json index e68f9c9890f26..30e4a8f009c77 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/package.json +++ b/private/aws-protocoltests-restjson-schema-apigateway/package.json @@ -32,26 +32,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/APIGateway.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/APIGateway.ts index e8d012e2bf6be..73b8491a632c8 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/APIGateway.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/APIGateway.ts @@ -1,9 +1,13 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; -import { APIGatewayClient, APIGatewayClientConfig } from "./APIGatewayClient"; -import { GetRestApisCommand, GetRestApisCommandInput, GetRestApisCommandOutput } from "./commands/GetRestApisCommand"; +import { APIGatewayClient } from "./APIGatewayClient"; +import { + type GetRestApisCommandInput, + type GetRestApisCommandOutput, + GetRestApisCommand, +} from "./commands/GetRestApisCommand"; const commands = { GetRestApisCommand, diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/APIGatewayClient.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/APIGatewayClient.ts index 036b0fc505a3a..aaebafe5ada14 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/APIGatewayClient.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/APIGatewayClient.ts @@ -1,25 +1,25 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { getAcceptHeaderPlugin } from "@aws-sdk/middleware-sdk-api-gateway"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -27,43 +27,52 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultAPIGatewayHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { GetRestApisCommandInput, GetRestApisCommandOutput } from "./commands/GetRestApisCommand"; +import type { GetRestApisCommandInput, GetRestApisCommandOutput } from "./commands/GetRestApisCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, @@ -71,7 +80,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/auth/httpAuthExtensionConfiguration.ts index f7ad2ed02317e..07396db7c7bd8 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { APIGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { APIGatewayHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/auth/httpAuthSchemeProvider.ts index 16e4ebf03e9bb..84d2ff5f2a7b1 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { APIGatewayClientConfig, APIGatewayClientResolvedConfig } from "../APIGatewayClient"; +import { type APIGatewayClientResolvedConfig, APIGatewayClientConfig } from "../APIGatewayClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/commands/GetRestApisCommand.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/commands/GetRestApisCommand.ts index 0bea4cd24d6d6..8d338a2f142a8 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/commands/GetRestApisCommand.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/commands/GetRestApisCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; -import { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; +import type { APIGatewayClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../APIGatewayClient"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GetRestApisRequest, RestApis } from "../models/models_0"; +import type { GetRestApisRequest, RestApis } from "../models/models_0"; import { GetRestApis } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/EndpointParameters.ts index 4e94fa0b616aa..df5347309902b 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/ruleset.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/ruleset.ts index 9a60adc93d076..2dafbee7d9295 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/extensionConfiguration.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/extensionConfiguration.ts index 1de67c9f305c0..e0568c3ee5c60 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/models/APIGatewayServiceException.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/models/APIGatewayServiceException.ts index c2e9d57e13336..da98e455751a2 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/models/APIGatewayServiceException.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/models/APIGatewayServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/models/errors.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/models/errors.ts index b546e389c1310..2db081f1e97f2 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/models/errors.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { APIGatewayServiceException as __BaseException } from "./APIGatewayServiceException"; diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/models/models_0.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/models/models_0.ts index 4bf2c662da434..e9b59ae6969c6 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/models/models_0.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/models/models_0.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ApiKeySourceType, EndpointType } from "./enums"; +import type { ApiKeySourceType, EndpointType } from "./enums"; /** * @public diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/pagination/GetRestApisPaginator.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/pagination/GetRestApisPaginator.ts index 5369ba51803d1..9b56e22624a79 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/pagination/GetRestApisPaginator.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/pagination/GetRestApisPaginator.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createPaginator } from "@smithy/core"; -import { Paginator } from "@smithy/types"; +import type { Paginator } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; import { GetRestApisCommand, GetRestApisCommandInput, GetRestApisCommandOutput } from "../commands/GetRestApisCommand"; diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/pagination/Interfaces.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/pagination/Interfaces.ts index cd84c3cb1fbdf..bac88c64d02cc 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/pagination/Interfaces.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/pagination/Interfaces.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { PaginationConfiguration } from "@smithy/types"; +import type { PaginationConfiguration } from "@smithy/types"; import { APIGatewayClient } from "../APIGatewayClient"; diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.browser.ts index 3277f02e13288..05d78ee53d086 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.browser.ts @@ -7,12 +7,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; + +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.native.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.native.ts index 65f2d81b0a6f8..16a9f844d3599 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.shared.ts index 9afd43aed87fc..ce5a8f4fac0f8 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.shared.ts @@ -2,12 +2,12 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { defaultAPIGatewayHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.ts index ebdad70299074..c120e32b813c9 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeConfig.ts @@ -15,13 +15,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { APIGatewayClientConfig } from "./APIGatewayClient"; + +import type { APIGatewayClientConfig } from "./APIGatewayClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeExtensions.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeExtensions.ts index 6e6e9c3b176a7..10b568c647c33 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { APIGatewayExtensionConfiguration } from "./extensionConfiguration"; +import type { APIGatewayExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-restjson-schema-apigateway/src/schemas/schemas_0.ts b/private/aws-protocoltests-restjson-schema-apigateway/src/schemas/schemas_0.ts index 9dbc2b65ba742..c2c538e1c64b5 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/src/schemas/schemas_0.ts @@ -41,7 +41,7 @@ const n0 = "com.amazonaws.apigateway"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/private/aws-protocoltests-restjson-schema-apigateway/test/functional/restjson1.spec.ts b/private/aws-protocoltests-restjson-schema-apigateway/test/functional/restjson1.spec.ts index 085cd8b770212..fb8f95a995c40 100644 --- a/private/aws-protocoltests-restjson-schema-apigateway/test/functional/restjson1.spec.ts +++ b/private/aws-protocoltests-restjson-schema-apigateway/test/functional/restjson1.spec.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { APIGatewayClient } from "../../src/APIGatewayClient"; diff --git a/private/aws-protocoltests-restjson-schema-glacier/package.json b/private/aws-protocoltests-restjson-schema-glacier/package.json index 7c995667b2b1d..b9de45a54ed67 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/package.json +++ b/private/aws-protocoltests-restjson-schema-glacier/package.json @@ -34,26 +34,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/Glacier.ts b/private/aws-protocoltests-restjson-schema-glacier/src/Glacier.ts index e02036ea8b07a..62e688984f346 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/Glacier.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/Glacier.ts @@ -1,18 +1,18 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { + type UploadArchiveCommandInput, + type UploadArchiveCommandOutput, UploadArchiveCommand, - UploadArchiveCommandInput, - UploadArchiveCommandOutput, } from "./commands/UploadArchiveCommand"; import { + type UploadMultipartPartCommandInput, + type UploadMultipartPartCommandOutput, UploadMultipartPartCommand, - UploadMultipartPartCommandInput, - UploadMultipartPartCommandOutput, } from "./commands/UploadMultipartPartCommand"; -import { GlacierClient, GlacierClientConfig } from "./GlacierClient"; +import { GlacierClient } from "./GlacierClient"; const commands = { UploadArchiveCommand, diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/GlacierClient.ts b/private/aws-protocoltests-restjson-schema-glacier/src/GlacierClient.ts index 22855500503aa..1db22b8dd064f 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/GlacierClient.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/GlacierClient.ts @@ -1,25 +1,25 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { getGlacierPlugin } from "@aws-sdk/middleware-sdk-glacier"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -27,45 +27,54 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, HttpRequest as __HttpRequest, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultGlacierHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { UploadArchiveCommandInput, UploadArchiveCommandOutput } from "./commands/UploadArchiveCommand"; -import { +import type { UploadArchiveCommandInput, UploadArchiveCommandOutput } from "./commands/UploadArchiveCommand"; +import type { UploadMultipartPartCommandInput, UploadMultipartPartCommandOutput, } from "./commands/UploadMultipartPartCommand"; @@ -76,7 +85,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-restjson-schema-glacier/src/auth/httpAuthExtensionConfiguration.ts index 290227efece59..57b410f856e69 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { GlacierHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { GlacierHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-restjson-schema-glacier/src/auth/httpAuthSchemeProvider.ts index 71d694abe435a..5e174f7126926 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { GlacierClientConfig, GlacierClientResolvedConfig } from "../GlacierClient"; +import { type GlacierClientResolvedConfig, GlacierClientConfig } from "../GlacierClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/commands/UploadArchiveCommand.ts b/private/aws-protocoltests-restjson-schema-glacier/src/commands/UploadArchiveCommand.ts index 0f74cc9cf5570..d92ba1247e3ff 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/commands/UploadArchiveCommand.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/commands/UploadArchiveCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { ArchiveCreationOutput, UploadArchiveInput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { ArchiveCreationOutput, UploadArchiveInput } from "../models/models_0"; import { UploadArchive } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/commands/UploadMultipartPartCommand.ts b/private/aws-protocoltests-restjson-schema-glacier/src/commands/UploadMultipartPartCommand.ts index 38753c6df3ebb..95ff2d90b6373 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/commands/UploadMultipartPartCommand.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/commands/UploadMultipartPartCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; -import { UploadMultipartPartInput, UploadMultipartPartOutput } from "../models/models_0"; +import type { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient"; +import type { UploadMultipartPartInput, UploadMultipartPartOutput } from "../models/models_0"; import { UploadMultipartPart } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/EndpointParameters.ts index 461c6bf68ed21..026d9fd8a304d 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/ruleset.ts b/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/ruleset.ts index b75737825c9b8..a776af5d57ef7 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/extensionConfiguration.ts b/private/aws-protocoltests-restjson-schema-glacier/src/extensionConfiguration.ts index 172e2be4ce113..6ae04d6123000 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/models/GlacierServiceException.ts b/private/aws-protocoltests-restjson-schema-glacier/src/models/GlacierServiceException.ts index 06563bd1e2675..1eaacf890dec6 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/models/GlacierServiceException.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/models/GlacierServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/models/errors.ts b/private/aws-protocoltests-restjson-schema-glacier/src/models/errors.ts index a64d0d496e7f4..ee80eec250431 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/models/errors.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { GlacierServiceException as __BaseException } from "./GlacierServiceException"; diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/models/models_0.ts b/private/aws-protocoltests-restjson-schema-glacier/src/models/models_0.ts index bdead508c0897..1f95c4a6d765c 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/models/models_0.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/models/models_0.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { StreamingBlobTypes } from "@smithy/types"; +import type { StreamingBlobTypes } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.browser.ts index c7ecc0a432e2f..78d52b1bd73b3 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.browser.ts @@ -8,12 +8,13 @@ import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@smithy/config-resolver"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlacierClientConfig } from "./GlacierClient"; + +import type { GlacierClientConfig } from "./GlacierClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.native.ts b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.native.ts index e290858d9b73e..bc7c832873429 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { GlacierClientConfig } from "./GlacierClient"; +import type { GlacierClientConfig } from "./GlacierClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.shared.ts index 3c747f3828d6a..13d2f4a877b66 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultGlacierHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { GlacierClientConfig } from "./GlacierClient"; +import type { GlacierClientConfig } from "./GlacierClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.ts b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.ts index c3cc46911e233..f544bfcf20218 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeConfig.ts @@ -16,13 +16,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { GlacierClientConfig } from "./GlacierClient"; + +import type { GlacierClientConfig } from "./GlacierClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeExtensions.ts b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeExtensions.ts index 6e69df2ccbc55..5b0c83d0fe00b 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { GlacierExtensionConfiguration } from "./extensionConfiguration"; +import type { GlacierExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-restjson-schema-glacier/src/schemas/schemas_0.ts b/private/aws-protocoltests-restjson-schema-glacier/src/schemas/schemas_0.ts index ab4d268eadb08..83de0ac477657 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/src/schemas/schemas_0.ts @@ -39,7 +39,12 @@ const n0 = "com.amazonaws.glacier"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { StaticErrorSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types"; +import type { + StaticErrorSchema, + StaticOperationSchema, + StaticSimpleSchema, + StaticStructureSchema, +} from "@smithy/types"; import { InvalidParameterValueException as __InvalidParameterValueException, diff --git a/private/aws-protocoltests-restjson-schema-glacier/test/functional/restjson1.spec.ts b/private/aws-protocoltests-restjson-schema-glacier/test/functional/restjson1.spec.ts index dc2efde60d024..ec7b93a58c318 100644 --- a/private/aws-protocoltests-restjson-schema-glacier/test/functional/restjson1.spec.ts +++ b/private/aws-protocoltests-restjson-schema-glacier/test/functional/restjson1.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { UploadArchiveCommand } from "../../src/commands/UploadArchiveCommand"; diff --git a/private/aws-protocoltests-restjson-schema/package.json b/private/aws-protocoltests-restjson-schema/package.json index a15344709ba7d..29427241dfe7d 100644 --- a/private/aws-protocoltests-restjson-schema/package.json +++ b/private/aws-protocoltests-restjson-schema/package.json @@ -34,7 +34,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", "@smithy/eventstream-serde-node": "^4.2.5", @@ -45,24 +45,24 @@ "@smithy/invalid-dependency": "^4.2.5", "@smithy/md5-js": "^4.2.5", "@smithy/middleware-apply-body-checksum": "^4.3.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", "@smithy/querystring-builder": "^4.2.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-restjson-schema/src/RestJsonProtocol.ts b/private/aws-protocoltests-restjson-schema/src/RestJsonProtocol.ts index 0f27ea4c5ea3c..a71c30a205e54 100644 --- a/private/aws-protocoltests-restjson-schema/src/RestJsonProtocol.ts +++ b/private/aws-protocoltests-restjson-schema/src/RestJsonProtocol.ts @@ -1,549 +1,557 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { + type AllQueryStringTypesCommandInput, + type AllQueryStringTypesCommandOutput, AllQueryStringTypesCommand, - AllQueryStringTypesCommandInput, - AllQueryStringTypesCommandOutput, } from "./commands/AllQueryStringTypesCommand"; import { + type ConstantAndVariableQueryStringCommandInput, + type ConstantAndVariableQueryStringCommandOutput, ConstantAndVariableQueryStringCommand, - ConstantAndVariableQueryStringCommandInput, - ConstantAndVariableQueryStringCommandOutput, } from "./commands/ConstantAndVariableQueryStringCommand"; import { + type ConstantQueryStringCommandInput, + type ConstantQueryStringCommandOutput, ConstantQueryStringCommand, - ConstantQueryStringCommandInput, - ConstantQueryStringCommandOutput, } from "./commands/ConstantQueryStringCommand"; import { + type ContentTypeParametersCommandInput, + type ContentTypeParametersCommandOutput, ContentTypeParametersCommand, - ContentTypeParametersCommandInput, - ContentTypeParametersCommandOutput, } from "./commands/ContentTypeParametersCommand"; import { + type DatetimeOffsetsCommandInput, + type DatetimeOffsetsCommandOutput, DatetimeOffsetsCommand, - DatetimeOffsetsCommandInput, - DatetimeOffsetsCommandOutput, } from "./commands/DatetimeOffsetsCommand"; import { + type DocumentTypeAsMapValueCommandInput, + type DocumentTypeAsMapValueCommandOutput, DocumentTypeAsMapValueCommand, - DocumentTypeAsMapValueCommandInput, - DocumentTypeAsMapValueCommandOutput, } from "./commands/DocumentTypeAsMapValueCommand"; import { + type DocumentTypeAsPayloadCommandInput, + type DocumentTypeAsPayloadCommandOutput, DocumentTypeAsPayloadCommand, - DocumentTypeAsPayloadCommandInput, - DocumentTypeAsPayloadCommandOutput, } from "./commands/DocumentTypeAsPayloadCommand"; import { + type DocumentTypeCommandInput, + type DocumentTypeCommandOutput, DocumentTypeCommand, - DocumentTypeCommandInput, - DocumentTypeCommandOutput, } from "./commands/DocumentTypeCommand"; import { + type DuplexStreamCommandInput, + type DuplexStreamCommandOutput, DuplexStreamCommand, - DuplexStreamCommandInput, - DuplexStreamCommandOutput, } from "./commands/DuplexStreamCommand"; import { + type DuplexStreamWithDistinctStreamsCommandInput, + type DuplexStreamWithDistinctStreamsCommandOutput, DuplexStreamWithDistinctStreamsCommand, - DuplexStreamWithDistinctStreamsCommandInput, - DuplexStreamWithDistinctStreamsCommandOutput, } from "./commands/DuplexStreamWithDistinctStreamsCommand"; import { + type DuplexStreamWithInitialMessagesCommandInput, + type DuplexStreamWithInitialMessagesCommandOutput, DuplexStreamWithInitialMessagesCommand, - DuplexStreamWithInitialMessagesCommandInput, - DuplexStreamWithInitialMessagesCommandOutput, } from "./commands/DuplexStreamWithInitialMessagesCommand"; import { + type EmptyInputAndEmptyOutputCommandInput, + type EmptyInputAndEmptyOutputCommandOutput, EmptyInputAndEmptyOutputCommand, - EmptyInputAndEmptyOutputCommandInput, - EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; import { + type EndpointOperationCommandInput, + type EndpointOperationCommandOutput, EndpointOperationCommand, - EndpointOperationCommandInput, - EndpointOperationCommandOutput, } from "./commands/EndpointOperationCommand"; import { + type EndpointWithHostLabelOperationCommandInput, + type EndpointWithHostLabelOperationCommandOutput, EndpointWithHostLabelOperationCommand, - EndpointWithHostLabelOperationCommandInput, - EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; import { + type FractionalSecondsCommandInput, + type FractionalSecondsCommandOutput, FractionalSecondsCommand, - FractionalSecondsCommandInput, - FractionalSecondsCommandOutput, } from "./commands/FractionalSecondsCommand"; import { + type GreetingWithErrorsCommandInput, + type GreetingWithErrorsCommandOutput, GreetingWithErrorsCommand, - GreetingWithErrorsCommandInput, - GreetingWithErrorsCommandOutput, } from "./commands/GreetingWithErrorsCommand"; import { + type HostWithPathOperationCommandInput, + type HostWithPathOperationCommandOutput, HostWithPathOperationCommand, - HostWithPathOperationCommandInput, - HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; import { + type HttpChecksumRequiredCommandInput, + type HttpChecksumRequiredCommandOutput, HttpChecksumRequiredCommand, - HttpChecksumRequiredCommandInput, - HttpChecksumRequiredCommandOutput, } from "./commands/HttpChecksumRequiredCommand"; import { + type HttpEmptyPrefixHeadersCommandInput, + type HttpEmptyPrefixHeadersCommandOutput, HttpEmptyPrefixHeadersCommand, - HttpEmptyPrefixHeadersCommandInput, - HttpEmptyPrefixHeadersCommandOutput, } from "./commands/HttpEmptyPrefixHeadersCommand"; import { + type HttpEnumPayloadCommandInput, + type HttpEnumPayloadCommandOutput, HttpEnumPayloadCommand, - HttpEnumPayloadCommandInput, - HttpEnumPayloadCommandOutput, } from "./commands/HttpEnumPayloadCommand"; import { + type HttpPayloadTraitsCommandInput, + type HttpPayloadTraitsCommandOutput, HttpPayloadTraitsCommand, - HttpPayloadTraitsCommandInput, - HttpPayloadTraitsCommandOutput, } from "./commands/HttpPayloadTraitsCommand"; import { + type HttpPayloadTraitsWithMediaTypeCommandInput, + type HttpPayloadTraitsWithMediaTypeCommandOutput, HttpPayloadTraitsWithMediaTypeCommand, - HttpPayloadTraitsWithMediaTypeCommandInput, - HttpPayloadTraitsWithMediaTypeCommandOutput, } from "./commands/HttpPayloadTraitsWithMediaTypeCommand"; import { + type HttpPayloadWithStructureCommandInput, + type HttpPayloadWithStructureCommandOutput, HttpPayloadWithStructureCommand, - HttpPayloadWithStructureCommandInput, - HttpPayloadWithStructureCommandOutput, } from "./commands/HttpPayloadWithStructureCommand"; import { + type HttpPayloadWithUnionCommandInput, + type HttpPayloadWithUnionCommandOutput, HttpPayloadWithUnionCommand, - HttpPayloadWithUnionCommandInput, - HttpPayloadWithUnionCommandOutput, } from "./commands/HttpPayloadWithUnionCommand"; import { + type HttpPrefixHeadersCommandInput, + type HttpPrefixHeadersCommandOutput, HttpPrefixHeadersCommand, - HttpPrefixHeadersCommandInput, - HttpPrefixHeadersCommandOutput, } from "./commands/HttpPrefixHeadersCommand"; import { + type HttpPrefixHeadersInResponseCommandInput, + type HttpPrefixHeadersInResponseCommandOutput, HttpPrefixHeadersInResponseCommand, - HttpPrefixHeadersInResponseCommandInput, - HttpPrefixHeadersInResponseCommandOutput, } from "./commands/HttpPrefixHeadersInResponseCommand"; import { + type HttpQueryParamsOnlyOperationCommandInput, + type HttpQueryParamsOnlyOperationCommandOutput, HttpQueryParamsOnlyOperationCommand, - HttpQueryParamsOnlyOperationCommandInput, - HttpQueryParamsOnlyOperationCommandOutput, } from "./commands/HttpQueryParamsOnlyOperationCommand"; import { + type HttpRequestWithFloatLabelsCommandInput, + type HttpRequestWithFloatLabelsCommandOutput, HttpRequestWithFloatLabelsCommand, - HttpRequestWithFloatLabelsCommandInput, - HttpRequestWithFloatLabelsCommandOutput, } from "./commands/HttpRequestWithFloatLabelsCommand"; import { + type HttpRequestWithGreedyLabelInPathCommandInput, + type HttpRequestWithGreedyLabelInPathCommandOutput, HttpRequestWithGreedyLabelInPathCommand, - HttpRequestWithGreedyLabelInPathCommandInput, - HttpRequestWithGreedyLabelInPathCommandOutput, } from "./commands/HttpRequestWithGreedyLabelInPathCommand"; import { + type HttpRequestWithLabelsAndTimestampFormatCommandInput, + type HttpRequestWithLabelsAndTimestampFormatCommandOutput, HttpRequestWithLabelsAndTimestampFormatCommand, - HttpRequestWithLabelsAndTimestampFormatCommandInput, - HttpRequestWithLabelsAndTimestampFormatCommandOutput, } from "./commands/HttpRequestWithLabelsAndTimestampFormatCommand"; import { + type HttpRequestWithLabelsCommandInput, + type HttpRequestWithLabelsCommandOutput, HttpRequestWithLabelsCommand, - HttpRequestWithLabelsCommandInput, - HttpRequestWithLabelsCommandOutput, } from "./commands/HttpRequestWithLabelsCommand"; import { + type HttpRequestWithRegexLiteralCommandInput, + type HttpRequestWithRegexLiteralCommandOutput, HttpRequestWithRegexLiteralCommand, - HttpRequestWithRegexLiteralCommandInput, - HttpRequestWithRegexLiteralCommandOutput, } from "./commands/HttpRequestWithRegexLiteralCommand"; import { + type HttpResponseCodeCommandInput, + type HttpResponseCodeCommandOutput, HttpResponseCodeCommand, - HttpResponseCodeCommandInput, - HttpResponseCodeCommandOutput, } from "./commands/HttpResponseCodeCommand"; import { + type HttpStringPayloadCommandInput, + type HttpStringPayloadCommandOutput, HttpStringPayloadCommand, - HttpStringPayloadCommandInput, - HttpStringPayloadCommandOutput, } from "./commands/HttpStringPayloadCommand"; import { + type IgnoreQueryParamsInResponseCommandInput, + type IgnoreQueryParamsInResponseCommandOutput, IgnoreQueryParamsInResponseCommand, - IgnoreQueryParamsInResponseCommandInput, - IgnoreQueryParamsInResponseCommandOutput, } from "./commands/IgnoreQueryParamsInResponseCommand"; import { + type InputAndOutputWithHeadersCommandInput, + type InputAndOutputWithHeadersCommandOutput, InputAndOutputWithHeadersCommand, - InputAndOutputWithHeadersCommandInput, - InputAndOutputWithHeadersCommandOutput, } from "./commands/InputAndOutputWithHeadersCommand"; -import { InputStreamCommand, InputStreamCommandInput, InputStreamCommandOutput } from "./commands/InputStreamCommand"; import { + type InputStreamCommandInput, + type InputStreamCommandOutput, + InputStreamCommand, +} from "./commands/InputStreamCommand"; +import { + type InputStreamWithInitialRequestCommandInput, + type InputStreamWithInitialRequestCommandOutput, InputStreamWithInitialRequestCommand, - InputStreamWithInitialRequestCommandInput, - InputStreamWithInitialRequestCommandOutput, } from "./commands/InputStreamWithInitialRequestCommand"; -import { JsonBlobsCommand, JsonBlobsCommandInput, JsonBlobsCommandOutput } from "./commands/JsonBlobsCommand"; -import { JsonEnumsCommand, JsonEnumsCommandInput, JsonEnumsCommandOutput } from "./commands/JsonEnumsCommand"; +import { type JsonBlobsCommandInput, type JsonBlobsCommandOutput, JsonBlobsCommand } from "./commands/JsonBlobsCommand"; +import { type JsonEnumsCommandInput, type JsonEnumsCommandOutput, JsonEnumsCommand } from "./commands/JsonEnumsCommand"; import { + type JsonIntEnumsCommandInput, + type JsonIntEnumsCommandOutput, JsonIntEnumsCommand, - JsonIntEnumsCommandInput, - JsonIntEnumsCommandOutput, } from "./commands/JsonIntEnumsCommand"; -import { JsonListsCommand, JsonListsCommandInput, JsonListsCommandOutput } from "./commands/JsonListsCommand"; -import { JsonMapsCommand, JsonMapsCommandInput, JsonMapsCommandOutput } from "./commands/JsonMapsCommand"; +import { type JsonListsCommandInput, type JsonListsCommandOutput, JsonListsCommand } from "./commands/JsonListsCommand"; +import { type JsonMapsCommandInput, type JsonMapsCommandOutput, JsonMapsCommand } from "./commands/JsonMapsCommand"; import { + type JsonTimestampsCommandInput, + type JsonTimestampsCommandOutput, JsonTimestampsCommand, - JsonTimestampsCommandInput, - JsonTimestampsCommandOutput, } from "./commands/JsonTimestampsCommand"; -import { JsonUnionsCommand, JsonUnionsCommandInput, JsonUnionsCommandOutput } from "./commands/JsonUnionsCommand"; import { + type JsonUnionsCommandInput, + type JsonUnionsCommandOutput, + JsonUnionsCommand, +} from "./commands/JsonUnionsCommand"; +import { + type MalformedAcceptWithBodyCommandInput, + type MalformedAcceptWithBodyCommandOutput, MalformedAcceptWithBodyCommand, - MalformedAcceptWithBodyCommandInput, - MalformedAcceptWithBodyCommandOutput, } from "./commands/MalformedAcceptWithBodyCommand"; import { + type MalformedAcceptWithGenericStringCommandInput, + type MalformedAcceptWithGenericStringCommandOutput, MalformedAcceptWithGenericStringCommand, - MalformedAcceptWithGenericStringCommandInput, - MalformedAcceptWithGenericStringCommandOutput, } from "./commands/MalformedAcceptWithGenericStringCommand"; import { + type MalformedAcceptWithPayloadCommandInput, + type MalformedAcceptWithPayloadCommandOutput, MalformedAcceptWithPayloadCommand, - MalformedAcceptWithPayloadCommandInput, - MalformedAcceptWithPayloadCommandOutput, } from "./commands/MalformedAcceptWithPayloadCommand"; import { + type MalformedBlobCommandInput, + type MalformedBlobCommandOutput, MalformedBlobCommand, - MalformedBlobCommandInput, - MalformedBlobCommandOutput, } from "./commands/MalformedBlobCommand"; import { + type MalformedBooleanCommandInput, + type MalformedBooleanCommandOutput, MalformedBooleanCommand, - MalformedBooleanCommandInput, - MalformedBooleanCommandOutput, } from "./commands/MalformedBooleanCommand"; import { + type MalformedByteCommandInput, + type MalformedByteCommandOutput, MalformedByteCommand, - MalformedByteCommandInput, - MalformedByteCommandOutput, } from "./commands/MalformedByteCommand"; import { + type MalformedContentTypeWithBodyCommandInput, + type MalformedContentTypeWithBodyCommandOutput, MalformedContentTypeWithBodyCommand, - MalformedContentTypeWithBodyCommandInput, - MalformedContentTypeWithBodyCommandOutput, } from "./commands/MalformedContentTypeWithBodyCommand"; import { + type MalformedContentTypeWithGenericStringCommandInput, + type MalformedContentTypeWithGenericStringCommandOutput, MalformedContentTypeWithGenericStringCommand, - MalformedContentTypeWithGenericStringCommandInput, - MalformedContentTypeWithGenericStringCommandOutput, } from "./commands/MalformedContentTypeWithGenericStringCommand"; import { + type MalformedContentTypeWithoutBodyCommandInput, + type MalformedContentTypeWithoutBodyCommandOutput, MalformedContentTypeWithoutBodyCommand, - MalformedContentTypeWithoutBodyCommandInput, - MalformedContentTypeWithoutBodyCommandOutput, } from "./commands/MalformedContentTypeWithoutBodyCommand"; import { + type MalformedContentTypeWithoutBodyEmptyInputCommandInput, + type MalformedContentTypeWithoutBodyEmptyInputCommandOutput, MalformedContentTypeWithoutBodyEmptyInputCommand, - MalformedContentTypeWithoutBodyEmptyInputCommandInput, - MalformedContentTypeWithoutBodyEmptyInputCommandOutput, } from "./commands/MalformedContentTypeWithoutBodyEmptyInputCommand"; import { + type MalformedContentTypeWithPayloadCommandInput, + type MalformedContentTypeWithPayloadCommandOutput, MalformedContentTypeWithPayloadCommand, - MalformedContentTypeWithPayloadCommandInput, - MalformedContentTypeWithPayloadCommandOutput, } from "./commands/MalformedContentTypeWithPayloadCommand"; import { + type MalformedDoubleCommandInput, + type MalformedDoubleCommandOutput, MalformedDoubleCommand, - MalformedDoubleCommandInput, - MalformedDoubleCommandOutput, } from "./commands/MalformedDoubleCommand"; import { + type MalformedFloatCommandInput, + type MalformedFloatCommandOutput, MalformedFloatCommand, - MalformedFloatCommandInput, - MalformedFloatCommandOutput, } from "./commands/MalformedFloatCommand"; import { + type MalformedIntegerCommandInput, + type MalformedIntegerCommandOutput, MalformedIntegerCommand, - MalformedIntegerCommandInput, - MalformedIntegerCommandOutput, } from "./commands/MalformedIntegerCommand"; import { + type MalformedListCommandInput, + type MalformedListCommandOutput, MalformedListCommand, - MalformedListCommandInput, - MalformedListCommandOutput, } from "./commands/MalformedListCommand"; import { + type MalformedLongCommandInput, + type MalformedLongCommandOutput, MalformedLongCommand, - MalformedLongCommandInput, - MalformedLongCommandOutput, } from "./commands/MalformedLongCommand"; import { + type MalformedMapCommandInput, + type MalformedMapCommandOutput, MalformedMapCommand, - MalformedMapCommandInput, - MalformedMapCommandOutput, } from "./commands/MalformedMapCommand"; import { + type MalformedRequestBodyCommandInput, + type MalformedRequestBodyCommandOutput, MalformedRequestBodyCommand, - MalformedRequestBodyCommandInput, - MalformedRequestBodyCommandOutput, } from "./commands/MalformedRequestBodyCommand"; import { + type MalformedShortCommandInput, + type MalformedShortCommandOutput, MalformedShortCommand, - MalformedShortCommandInput, - MalformedShortCommandOutput, } from "./commands/MalformedShortCommand"; import { + type MalformedStringCommandInput, + type MalformedStringCommandOutput, MalformedStringCommand, - MalformedStringCommandInput, - MalformedStringCommandOutput, } from "./commands/MalformedStringCommand"; import { + type MalformedTimestampBodyDateTimeCommandInput, + type MalformedTimestampBodyDateTimeCommandOutput, MalformedTimestampBodyDateTimeCommand, - MalformedTimestampBodyDateTimeCommandInput, - MalformedTimestampBodyDateTimeCommandOutput, } from "./commands/MalformedTimestampBodyDateTimeCommand"; import { + type MalformedTimestampBodyDefaultCommandInput, + type MalformedTimestampBodyDefaultCommandOutput, MalformedTimestampBodyDefaultCommand, - MalformedTimestampBodyDefaultCommandInput, - MalformedTimestampBodyDefaultCommandOutput, } from "./commands/MalformedTimestampBodyDefaultCommand"; import { + type MalformedTimestampBodyHttpDateCommandInput, + type MalformedTimestampBodyHttpDateCommandOutput, MalformedTimestampBodyHttpDateCommand, - MalformedTimestampBodyHttpDateCommandInput, - MalformedTimestampBodyHttpDateCommandOutput, } from "./commands/MalformedTimestampBodyHttpDateCommand"; import { + type MalformedTimestampHeaderDateTimeCommandInput, + type MalformedTimestampHeaderDateTimeCommandOutput, MalformedTimestampHeaderDateTimeCommand, - MalformedTimestampHeaderDateTimeCommandInput, - MalformedTimestampHeaderDateTimeCommandOutput, } from "./commands/MalformedTimestampHeaderDateTimeCommand"; import { + type MalformedTimestampHeaderDefaultCommandInput, + type MalformedTimestampHeaderDefaultCommandOutput, MalformedTimestampHeaderDefaultCommand, - MalformedTimestampHeaderDefaultCommandInput, - MalformedTimestampHeaderDefaultCommandOutput, } from "./commands/MalformedTimestampHeaderDefaultCommand"; import { + type MalformedTimestampHeaderEpochCommandInput, + type MalformedTimestampHeaderEpochCommandOutput, MalformedTimestampHeaderEpochCommand, - MalformedTimestampHeaderEpochCommandInput, - MalformedTimestampHeaderEpochCommandOutput, } from "./commands/MalformedTimestampHeaderEpochCommand"; import { + type MalformedTimestampPathDefaultCommandInput, + type MalformedTimestampPathDefaultCommandOutput, MalformedTimestampPathDefaultCommand, - MalformedTimestampPathDefaultCommandInput, - MalformedTimestampPathDefaultCommandOutput, } from "./commands/MalformedTimestampPathDefaultCommand"; import { + type MalformedTimestampPathEpochCommandInput, + type MalformedTimestampPathEpochCommandOutput, MalformedTimestampPathEpochCommand, - MalformedTimestampPathEpochCommandInput, - MalformedTimestampPathEpochCommandOutput, } from "./commands/MalformedTimestampPathEpochCommand"; import { + type MalformedTimestampPathHttpDateCommandInput, + type MalformedTimestampPathHttpDateCommandOutput, MalformedTimestampPathHttpDateCommand, - MalformedTimestampPathHttpDateCommandInput, - MalformedTimestampPathHttpDateCommandOutput, } from "./commands/MalformedTimestampPathHttpDateCommand"; import { + type MalformedTimestampQueryDefaultCommandInput, + type MalformedTimestampQueryDefaultCommandOutput, MalformedTimestampQueryDefaultCommand, - MalformedTimestampQueryDefaultCommandInput, - MalformedTimestampQueryDefaultCommandOutput, } from "./commands/MalformedTimestampQueryDefaultCommand"; import { + type MalformedTimestampQueryEpochCommandInput, + type MalformedTimestampQueryEpochCommandOutput, MalformedTimestampQueryEpochCommand, - MalformedTimestampQueryEpochCommandInput, - MalformedTimestampQueryEpochCommandOutput, } from "./commands/MalformedTimestampQueryEpochCommand"; import { + type MalformedTimestampQueryHttpDateCommandInput, + type MalformedTimestampQueryHttpDateCommandOutput, MalformedTimestampQueryHttpDateCommand, - MalformedTimestampQueryHttpDateCommandInput, - MalformedTimestampQueryHttpDateCommandOutput, } from "./commands/MalformedTimestampQueryHttpDateCommand"; import { + type MalformedUnionCommandInput, + type MalformedUnionCommandOutput, MalformedUnionCommand, - MalformedUnionCommandInput, - MalformedUnionCommandOutput, } from "./commands/MalformedUnionCommand"; import { + type MediaTypeHeaderCommandInput, + type MediaTypeHeaderCommandOutput, MediaTypeHeaderCommand, - MediaTypeHeaderCommandInput, - MediaTypeHeaderCommandOutput, } from "./commands/MediaTypeHeaderCommand"; import { + type NoInputAndNoOutputCommandInput, + type NoInputAndNoOutputCommandOutput, NoInputAndNoOutputCommand, - NoInputAndNoOutputCommandInput, - NoInputAndNoOutputCommandOutput, } from "./commands/NoInputAndNoOutputCommand"; import { + type NoInputAndOutputCommandInput, + type NoInputAndOutputCommandOutput, NoInputAndOutputCommand, - NoInputAndOutputCommandInput, - NoInputAndOutputCommandOutput, } from "./commands/NoInputAndOutputCommand"; import { + type NullAndEmptyHeadersClientCommandInput, + type NullAndEmptyHeadersClientCommandOutput, NullAndEmptyHeadersClientCommand, - NullAndEmptyHeadersClientCommandInput, - NullAndEmptyHeadersClientCommandOutput, } from "./commands/NullAndEmptyHeadersClientCommand"; import { + type NullAndEmptyHeadersServerCommandInput, + type NullAndEmptyHeadersServerCommandOutput, NullAndEmptyHeadersServerCommand, - NullAndEmptyHeadersServerCommandInput, - NullAndEmptyHeadersServerCommandOutput, } from "./commands/NullAndEmptyHeadersServerCommand"; import { + type OmitsNullSerializesEmptyStringCommandInput, + type OmitsNullSerializesEmptyStringCommandOutput, OmitsNullSerializesEmptyStringCommand, - OmitsNullSerializesEmptyStringCommandInput, - OmitsNullSerializesEmptyStringCommandOutput, } from "./commands/OmitsNullSerializesEmptyStringCommand"; import { + type OmitsSerializingEmptyListsCommandInput, + type OmitsSerializingEmptyListsCommandOutput, OmitsSerializingEmptyListsCommand, - OmitsSerializingEmptyListsCommandInput, - OmitsSerializingEmptyListsCommandOutput, } from "./commands/OmitsSerializingEmptyListsCommand"; import { + type OperationWithDefaultsCommandInput, + type OperationWithDefaultsCommandOutput, OperationWithDefaultsCommand, - OperationWithDefaultsCommandInput, - OperationWithDefaultsCommandOutput, } from "./commands/OperationWithDefaultsCommand"; import { + type OperationWithNestedStructureCommandInput, + type OperationWithNestedStructureCommandOutput, OperationWithNestedStructureCommand, - OperationWithNestedStructureCommandInput, - OperationWithNestedStructureCommandOutput, } from "./commands/OperationWithNestedStructureCommand"; import { + type OutputStreamCommandInput, + type OutputStreamCommandOutput, OutputStreamCommand, - OutputStreamCommandInput, - OutputStreamCommandOutput, } from "./commands/OutputStreamCommand"; import { + type OutputStreamWithInitialResponseCommandInput, + type OutputStreamWithInitialResponseCommandOutput, OutputStreamWithInitialResponseCommand, - OutputStreamWithInitialResponseCommandInput, - OutputStreamWithInitialResponseCommandOutput, } from "./commands/OutputStreamWithInitialResponseCommand"; import { + type PostPlayerActionCommandInput, + type PostPlayerActionCommandOutput, PostPlayerActionCommand, - PostPlayerActionCommandInput, - PostPlayerActionCommandOutput, } from "./commands/PostPlayerActionCommand"; import { + type PostUnionWithJsonNameCommandInput, + type PostUnionWithJsonNameCommandOutput, PostUnionWithJsonNameCommand, - PostUnionWithJsonNameCommandInput, - PostUnionWithJsonNameCommandOutput, } from "./commands/PostUnionWithJsonNameCommand"; import { + type PutWithContentEncodingCommandInput, + type PutWithContentEncodingCommandOutput, PutWithContentEncodingCommand, - PutWithContentEncodingCommandInput, - PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; import { + type QueryIdempotencyTokenAutoFillCommandInput, + type QueryIdempotencyTokenAutoFillCommandOutput, QueryIdempotencyTokenAutoFillCommand, - QueryIdempotencyTokenAutoFillCommandInput, - QueryIdempotencyTokenAutoFillCommandOutput, } from "./commands/QueryIdempotencyTokenAutoFillCommand"; import { + type QueryParamsAsStringListMapCommandInput, + type QueryParamsAsStringListMapCommandOutput, QueryParamsAsStringListMapCommand, - QueryParamsAsStringListMapCommandInput, - QueryParamsAsStringListMapCommandOutput, } from "./commands/QueryParamsAsStringListMapCommand"; import { + type QueryPrecedenceCommandInput, + type QueryPrecedenceCommandOutput, QueryPrecedenceCommand, - QueryPrecedenceCommandInput, - QueryPrecedenceCommandOutput, } from "./commands/QueryPrecedenceCommand"; import { + type RecursiveShapesCommandInput, + type RecursiveShapesCommandOutput, RecursiveShapesCommand, - RecursiveShapesCommandInput, - RecursiveShapesCommandOutput, } from "./commands/RecursiveShapesCommand"; import { + type ResponseCodeHttpFallbackCommandInput, + type ResponseCodeHttpFallbackCommandOutput, ResponseCodeHttpFallbackCommand, - ResponseCodeHttpFallbackCommandInput, - ResponseCodeHttpFallbackCommandOutput, } from "./commands/ResponseCodeHttpFallbackCommand"; import { + type ResponseCodeRequiredCommandInput, + type ResponseCodeRequiredCommandOutput, ResponseCodeRequiredCommand, - ResponseCodeRequiredCommandInput, - ResponseCodeRequiredCommandOutput, } from "./commands/ResponseCodeRequiredCommand"; import { + type SimpleScalarPropertiesCommandInput, + type SimpleScalarPropertiesCommandOutput, SimpleScalarPropertiesCommand, - SimpleScalarPropertiesCommandInput, - SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; import { + type SparseJsonListsCommandInput, + type SparseJsonListsCommandOutput, SparseJsonListsCommand, - SparseJsonListsCommandInput, - SparseJsonListsCommandOutput, } from "./commands/SparseJsonListsCommand"; import { + type SparseJsonMapsCommandInput, + type SparseJsonMapsCommandOutput, SparseJsonMapsCommand, - SparseJsonMapsCommandInput, - SparseJsonMapsCommandOutput, } from "./commands/SparseJsonMapsCommand"; import { + type StreamingTraitsCommandInput, + type StreamingTraitsCommandOutput, StreamingTraitsCommand, - StreamingTraitsCommandInput, - StreamingTraitsCommandOutput, } from "./commands/StreamingTraitsCommand"; import { + type StreamingTraitsRequireLengthCommandInput, + type StreamingTraitsRequireLengthCommandOutput, StreamingTraitsRequireLengthCommand, - StreamingTraitsRequireLengthCommandInput, - StreamingTraitsRequireLengthCommandOutput, } from "./commands/StreamingTraitsRequireLengthCommand"; import { + type StreamingTraitsWithMediaTypeCommandInput, + type StreamingTraitsWithMediaTypeCommandOutput, StreamingTraitsWithMediaTypeCommand, - StreamingTraitsWithMediaTypeCommandInput, - StreamingTraitsWithMediaTypeCommandOutput, } from "./commands/StreamingTraitsWithMediaTypeCommand"; import { + type TestBodyStructureCommandInput, + type TestBodyStructureCommandOutput, TestBodyStructureCommand, - TestBodyStructureCommandInput, - TestBodyStructureCommandOutput, } from "./commands/TestBodyStructureCommand"; import { + type TestGetNoInputNoPayloadCommandInput, + type TestGetNoInputNoPayloadCommandOutput, TestGetNoInputNoPayloadCommand, - TestGetNoInputNoPayloadCommandInput, - TestGetNoInputNoPayloadCommandOutput, } from "./commands/TestGetNoInputNoPayloadCommand"; import { + type TestGetNoPayloadCommandInput, + type TestGetNoPayloadCommandOutput, TestGetNoPayloadCommand, - TestGetNoPayloadCommandInput, - TestGetNoPayloadCommandOutput, } from "./commands/TestGetNoPayloadCommand"; import { + type TestPayloadBlobCommandInput, + type TestPayloadBlobCommandOutput, TestPayloadBlobCommand, - TestPayloadBlobCommandInput, - TestPayloadBlobCommandOutput, } from "./commands/TestPayloadBlobCommand"; import { + type TestPayloadStructureCommandInput, + type TestPayloadStructureCommandOutput, TestPayloadStructureCommand, - TestPayloadStructureCommandInput, - TestPayloadStructureCommandOutput, } from "./commands/TestPayloadStructureCommand"; import { + type TestPostNoInputNoPayloadCommandInput, + type TestPostNoInputNoPayloadCommandOutput, TestPostNoInputNoPayloadCommand, - TestPostNoInputNoPayloadCommandInput, - TestPostNoInputNoPayloadCommandOutput, } from "./commands/TestPostNoInputNoPayloadCommand"; import { + type TestPostNoPayloadCommandInput, + type TestPostNoPayloadCommandOutput, TestPostNoPayloadCommand, - TestPostNoPayloadCommandInput, - TestPostNoPayloadCommandOutput, } from "./commands/TestPostNoPayloadCommand"; import { + type TimestampFormatHeadersCommandInput, + type TimestampFormatHeadersCommandOutput, TimestampFormatHeadersCommand, - TimestampFormatHeadersCommandInput, - TimestampFormatHeadersCommandOutput, } from "./commands/TimestampFormatHeadersCommand"; import { + type UnitInputAndOutputCommandInput, + type UnitInputAndOutputCommandOutput, UnitInputAndOutputCommand, - UnitInputAndOutputCommandInput, - UnitInputAndOutputCommandOutput, } from "./commands/UnitInputAndOutputCommand"; -import { RestJsonProtocolClient, RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; +import { RestJsonProtocolClient } from "./RestJsonProtocolClient"; const commands = { AllQueryStringTypesCommand, diff --git a/private/aws-protocoltests-restjson-schema/src/RestJsonProtocolClient.ts b/private/aws-protocoltests-restjson-schema/src/RestJsonProtocolClient.ts index 6df4bda298cde..01310729fc87e 100644 --- a/private/aws-protocoltests-restjson-schema/src/RestJsonProtocolClient.ts +++ b/private/aws-protocoltests-restjson-schema/src/RestJsonProtocolClient.ts @@ -1,30 +1,30 @@ // smithy-typescript generated code import { - EventStreamInputConfig, - EventStreamResolvedConfig, + type EventStreamInputConfig, + type EventStreamResolvedConfig, resolveEventStreamConfig, } from "@aws-sdk/middleware-eventstream"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -32,371 +32,410 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type Checksum as __Checksum, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type StreamHasher as __StreamHasher, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - Checksum as __Checksum, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - StreamHasher as __StreamHasher, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { Readable } from "stream"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRestJsonProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { +import type { AllQueryStringTypesCommandInput, AllQueryStringTypesCommandOutput, } from "./commands/AllQueryStringTypesCommand"; -import { +import type { ConstantAndVariableQueryStringCommandInput, ConstantAndVariableQueryStringCommandOutput, } from "./commands/ConstantAndVariableQueryStringCommand"; -import { +import type { ConstantQueryStringCommandInput, ConstantQueryStringCommandOutput, } from "./commands/ConstantQueryStringCommand"; -import { +import type { ContentTypeParametersCommandInput, ContentTypeParametersCommandOutput, } from "./commands/ContentTypeParametersCommand"; -import { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; -import { +import type { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; +import type { DocumentTypeAsMapValueCommandInput, DocumentTypeAsMapValueCommandOutput, } from "./commands/DocumentTypeAsMapValueCommand"; -import { +import type { DocumentTypeAsPayloadCommandInput, DocumentTypeAsPayloadCommandOutput, } from "./commands/DocumentTypeAsPayloadCommand"; -import { DocumentTypeCommandInput, DocumentTypeCommandOutput } from "./commands/DocumentTypeCommand"; -import { DuplexStreamCommandInput, DuplexStreamCommandOutput } from "./commands/DuplexStreamCommand"; -import { +import type { DocumentTypeCommandInput, DocumentTypeCommandOutput } from "./commands/DocumentTypeCommand"; +import type { DuplexStreamCommandInput, DuplexStreamCommandOutput } from "./commands/DuplexStreamCommand"; +import type { DuplexStreamWithDistinctStreamsCommandInput, DuplexStreamWithDistinctStreamsCommandOutput, } from "./commands/DuplexStreamWithDistinctStreamsCommand"; -import { +import type { DuplexStreamWithInitialMessagesCommandInput, DuplexStreamWithInitialMessagesCommandOutput, } from "./commands/DuplexStreamWithInitialMessagesCommand"; -import { +import type { EmptyInputAndEmptyOutputCommandInput, EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; -import { EndpointOperationCommandInput, EndpointOperationCommandOutput } from "./commands/EndpointOperationCommand"; -import { +import type { + EndpointOperationCommandInput, + EndpointOperationCommandOutput, +} from "./commands/EndpointOperationCommand"; +import type { EndpointWithHostLabelOperationCommandInput, EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; -import { FractionalSecondsCommandInput, FractionalSecondsCommandOutput } from "./commands/FractionalSecondsCommand"; -import { GreetingWithErrorsCommandInput, GreetingWithErrorsCommandOutput } from "./commands/GreetingWithErrorsCommand"; -import { +import type { + FractionalSecondsCommandInput, + FractionalSecondsCommandOutput, +} from "./commands/FractionalSecondsCommand"; +import type { + GreetingWithErrorsCommandInput, + GreetingWithErrorsCommandOutput, +} from "./commands/GreetingWithErrorsCommand"; +import type { HostWithPathOperationCommandInput, HostWithPathOperationCommandOutput, } from "./commands/HostWithPathOperationCommand"; -import { +import type { HttpChecksumRequiredCommandInput, HttpChecksumRequiredCommandOutput, } from "./commands/HttpChecksumRequiredCommand"; -import { +import type { HttpEmptyPrefixHeadersCommandInput, HttpEmptyPrefixHeadersCommandOutput, } from "./commands/HttpEmptyPrefixHeadersCommand"; -import { HttpEnumPayloadCommandInput, HttpEnumPayloadCommandOutput } from "./commands/HttpEnumPayloadCommand"; -import { HttpPayloadTraitsCommandInput, HttpPayloadTraitsCommandOutput } from "./commands/HttpPayloadTraitsCommand"; -import { +import type { HttpEnumPayloadCommandInput, HttpEnumPayloadCommandOutput } from "./commands/HttpEnumPayloadCommand"; +import type { + HttpPayloadTraitsCommandInput, + HttpPayloadTraitsCommandOutput, +} from "./commands/HttpPayloadTraitsCommand"; +import type { HttpPayloadTraitsWithMediaTypeCommandInput, HttpPayloadTraitsWithMediaTypeCommandOutput, } from "./commands/HttpPayloadTraitsWithMediaTypeCommand"; -import { +import type { HttpPayloadWithStructureCommandInput, HttpPayloadWithStructureCommandOutput, } from "./commands/HttpPayloadWithStructureCommand"; -import { +import type { HttpPayloadWithUnionCommandInput, HttpPayloadWithUnionCommandOutput, } from "./commands/HttpPayloadWithUnionCommand"; -import { HttpPrefixHeadersCommandInput, HttpPrefixHeadersCommandOutput } from "./commands/HttpPrefixHeadersCommand"; -import { +import type { + HttpPrefixHeadersCommandInput, + HttpPrefixHeadersCommandOutput, +} from "./commands/HttpPrefixHeadersCommand"; +import type { HttpPrefixHeadersInResponseCommandInput, HttpPrefixHeadersInResponseCommandOutput, } from "./commands/HttpPrefixHeadersInResponseCommand"; -import { +import type { HttpQueryParamsOnlyOperationCommandInput, HttpQueryParamsOnlyOperationCommandOutput, } from "./commands/HttpQueryParamsOnlyOperationCommand"; -import { +import type { HttpRequestWithFloatLabelsCommandInput, HttpRequestWithFloatLabelsCommandOutput, } from "./commands/HttpRequestWithFloatLabelsCommand"; -import { +import type { HttpRequestWithGreedyLabelInPathCommandInput, HttpRequestWithGreedyLabelInPathCommandOutput, } from "./commands/HttpRequestWithGreedyLabelInPathCommand"; -import { +import type { HttpRequestWithLabelsAndTimestampFormatCommandInput, HttpRequestWithLabelsAndTimestampFormatCommandOutput, } from "./commands/HttpRequestWithLabelsAndTimestampFormatCommand"; -import { +import type { HttpRequestWithLabelsCommandInput, HttpRequestWithLabelsCommandOutput, } from "./commands/HttpRequestWithLabelsCommand"; -import { +import type { HttpRequestWithRegexLiteralCommandInput, HttpRequestWithRegexLiteralCommandOutput, } from "./commands/HttpRequestWithRegexLiteralCommand"; -import { HttpResponseCodeCommandInput, HttpResponseCodeCommandOutput } from "./commands/HttpResponseCodeCommand"; -import { HttpStringPayloadCommandInput, HttpStringPayloadCommandOutput } from "./commands/HttpStringPayloadCommand"; -import { +import type { HttpResponseCodeCommandInput, HttpResponseCodeCommandOutput } from "./commands/HttpResponseCodeCommand"; +import type { + HttpStringPayloadCommandInput, + HttpStringPayloadCommandOutput, +} from "./commands/HttpStringPayloadCommand"; +import type { IgnoreQueryParamsInResponseCommandInput, IgnoreQueryParamsInResponseCommandOutput, } from "./commands/IgnoreQueryParamsInResponseCommand"; -import { +import type { InputAndOutputWithHeadersCommandInput, InputAndOutputWithHeadersCommandOutput, } from "./commands/InputAndOutputWithHeadersCommand"; -import { InputStreamCommandInput, InputStreamCommandOutput } from "./commands/InputStreamCommand"; -import { +import type { InputStreamCommandInput, InputStreamCommandOutput } from "./commands/InputStreamCommand"; +import type { InputStreamWithInitialRequestCommandInput, InputStreamWithInitialRequestCommandOutput, } from "./commands/InputStreamWithInitialRequestCommand"; -import { JsonBlobsCommandInput, JsonBlobsCommandOutput } from "./commands/JsonBlobsCommand"; -import { JsonEnumsCommandInput, JsonEnumsCommandOutput } from "./commands/JsonEnumsCommand"; -import { JsonIntEnumsCommandInput, JsonIntEnumsCommandOutput } from "./commands/JsonIntEnumsCommand"; -import { JsonListsCommandInput, JsonListsCommandOutput } from "./commands/JsonListsCommand"; -import { JsonMapsCommandInput, JsonMapsCommandOutput } from "./commands/JsonMapsCommand"; -import { JsonTimestampsCommandInput, JsonTimestampsCommandOutput } from "./commands/JsonTimestampsCommand"; -import { JsonUnionsCommandInput, JsonUnionsCommandOutput } from "./commands/JsonUnionsCommand"; -import { +import type { JsonBlobsCommandInput, JsonBlobsCommandOutput } from "./commands/JsonBlobsCommand"; +import type { JsonEnumsCommandInput, JsonEnumsCommandOutput } from "./commands/JsonEnumsCommand"; +import type { JsonIntEnumsCommandInput, JsonIntEnumsCommandOutput } from "./commands/JsonIntEnumsCommand"; +import type { JsonListsCommandInput, JsonListsCommandOutput } from "./commands/JsonListsCommand"; +import type { JsonMapsCommandInput, JsonMapsCommandOutput } from "./commands/JsonMapsCommand"; +import type { JsonTimestampsCommandInput, JsonTimestampsCommandOutput } from "./commands/JsonTimestampsCommand"; +import type { JsonUnionsCommandInput, JsonUnionsCommandOutput } from "./commands/JsonUnionsCommand"; +import type { MalformedAcceptWithBodyCommandInput, MalformedAcceptWithBodyCommandOutput, } from "./commands/MalformedAcceptWithBodyCommand"; -import { +import type { MalformedAcceptWithGenericStringCommandInput, MalformedAcceptWithGenericStringCommandOutput, } from "./commands/MalformedAcceptWithGenericStringCommand"; -import { +import type { MalformedAcceptWithPayloadCommandInput, MalformedAcceptWithPayloadCommandOutput, } from "./commands/MalformedAcceptWithPayloadCommand"; -import { MalformedBlobCommandInput, MalformedBlobCommandOutput } from "./commands/MalformedBlobCommand"; -import { MalformedBooleanCommandInput, MalformedBooleanCommandOutput } from "./commands/MalformedBooleanCommand"; -import { MalformedByteCommandInput, MalformedByteCommandOutput } from "./commands/MalformedByteCommand"; -import { +import type { MalformedBlobCommandInput, MalformedBlobCommandOutput } from "./commands/MalformedBlobCommand"; +import type { MalformedBooleanCommandInput, MalformedBooleanCommandOutput } from "./commands/MalformedBooleanCommand"; +import type { MalformedByteCommandInput, MalformedByteCommandOutput } from "./commands/MalformedByteCommand"; +import type { MalformedContentTypeWithBodyCommandInput, MalformedContentTypeWithBodyCommandOutput, } from "./commands/MalformedContentTypeWithBodyCommand"; -import { +import type { MalformedContentTypeWithGenericStringCommandInput, MalformedContentTypeWithGenericStringCommandOutput, } from "./commands/MalformedContentTypeWithGenericStringCommand"; -import { +import type { MalformedContentTypeWithoutBodyCommandInput, MalformedContentTypeWithoutBodyCommandOutput, } from "./commands/MalformedContentTypeWithoutBodyCommand"; -import { +import type { MalformedContentTypeWithoutBodyEmptyInputCommandInput, MalformedContentTypeWithoutBodyEmptyInputCommandOutput, } from "./commands/MalformedContentTypeWithoutBodyEmptyInputCommand"; -import { +import type { MalformedContentTypeWithPayloadCommandInput, MalformedContentTypeWithPayloadCommandOutput, } from "./commands/MalformedContentTypeWithPayloadCommand"; -import { MalformedDoubleCommandInput, MalformedDoubleCommandOutput } from "./commands/MalformedDoubleCommand"; -import { MalformedFloatCommandInput, MalformedFloatCommandOutput } from "./commands/MalformedFloatCommand"; -import { MalformedIntegerCommandInput, MalformedIntegerCommandOutput } from "./commands/MalformedIntegerCommand"; -import { MalformedListCommandInput, MalformedListCommandOutput } from "./commands/MalformedListCommand"; -import { MalformedLongCommandInput, MalformedLongCommandOutput } from "./commands/MalformedLongCommand"; -import { MalformedMapCommandInput, MalformedMapCommandOutput } from "./commands/MalformedMapCommand"; -import { +import type { MalformedDoubleCommandInput, MalformedDoubleCommandOutput } from "./commands/MalformedDoubleCommand"; +import type { MalformedFloatCommandInput, MalformedFloatCommandOutput } from "./commands/MalformedFloatCommand"; +import type { MalformedIntegerCommandInput, MalformedIntegerCommandOutput } from "./commands/MalformedIntegerCommand"; +import type { MalformedListCommandInput, MalformedListCommandOutput } from "./commands/MalformedListCommand"; +import type { MalformedLongCommandInput, MalformedLongCommandOutput } from "./commands/MalformedLongCommand"; +import type { MalformedMapCommandInput, MalformedMapCommandOutput } from "./commands/MalformedMapCommand"; +import type { MalformedRequestBodyCommandInput, MalformedRequestBodyCommandOutput, } from "./commands/MalformedRequestBodyCommand"; -import { MalformedShortCommandInput, MalformedShortCommandOutput } from "./commands/MalformedShortCommand"; -import { MalformedStringCommandInput, MalformedStringCommandOutput } from "./commands/MalformedStringCommand"; -import { +import type { MalformedShortCommandInput, MalformedShortCommandOutput } from "./commands/MalformedShortCommand"; +import type { MalformedStringCommandInput, MalformedStringCommandOutput } from "./commands/MalformedStringCommand"; +import type { MalformedTimestampBodyDateTimeCommandInput, MalformedTimestampBodyDateTimeCommandOutput, } from "./commands/MalformedTimestampBodyDateTimeCommand"; -import { +import type { MalformedTimestampBodyDefaultCommandInput, MalformedTimestampBodyDefaultCommandOutput, } from "./commands/MalformedTimestampBodyDefaultCommand"; -import { +import type { MalformedTimestampBodyHttpDateCommandInput, MalformedTimestampBodyHttpDateCommandOutput, } from "./commands/MalformedTimestampBodyHttpDateCommand"; -import { +import type { MalformedTimestampHeaderDateTimeCommandInput, MalformedTimestampHeaderDateTimeCommandOutput, } from "./commands/MalformedTimestampHeaderDateTimeCommand"; -import { +import type { MalformedTimestampHeaderDefaultCommandInput, MalformedTimestampHeaderDefaultCommandOutput, } from "./commands/MalformedTimestampHeaderDefaultCommand"; -import { +import type { MalformedTimestampHeaderEpochCommandInput, MalformedTimestampHeaderEpochCommandOutput, } from "./commands/MalformedTimestampHeaderEpochCommand"; -import { +import type { MalformedTimestampPathDefaultCommandInput, MalformedTimestampPathDefaultCommandOutput, } from "./commands/MalformedTimestampPathDefaultCommand"; -import { +import type { MalformedTimestampPathEpochCommandInput, MalformedTimestampPathEpochCommandOutput, } from "./commands/MalformedTimestampPathEpochCommand"; -import { +import type { MalformedTimestampPathHttpDateCommandInput, MalformedTimestampPathHttpDateCommandOutput, } from "./commands/MalformedTimestampPathHttpDateCommand"; -import { +import type { MalformedTimestampQueryDefaultCommandInput, MalformedTimestampQueryDefaultCommandOutput, } from "./commands/MalformedTimestampQueryDefaultCommand"; -import { +import type { MalformedTimestampQueryEpochCommandInput, MalformedTimestampQueryEpochCommandOutput, } from "./commands/MalformedTimestampQueryEpochCommand"; -import { +import type { MalformedTimestampQueryHttpDateCommandInput, MalformedTimestampQueryHttpDateCommandOutput, } from "./commands/MalformedTimestampQueryHttpDateCommand"; -import { MalformedUnionCommandInput, MalformedUnionCommandOutput } from "./commands/MalformedUnionCommand"; -import { MediaTypeHeaderCommandInput, MediaTypeHeaderCommandOutput } from "./commands/MediaTypeHeaderCommand"; -import { NoInputAndNoOutputCommandInput, NoInputAndNoOutputCommandOutput } from "./commands/NoInputAndNoOutputCommand"; -import { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; -import { +import type { MalformedUnionCommandInput, MalformedUnionCommandOutput } from "./commands/MalformedUnionCommand"; +import type { MediaTypeHeaderCommandInput, MediaTypeHeaderCommandOutput } from "./commands/MediaTypeHeaderCommand"; +import type { + NoInputAndNoOutputCommandInput, + NoInputAndNoOutputCommandOutput, +} from "./commands/NoInputAndNoOutputCommand"; +import type { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; +import type { NullAndEmptyHeadersClientCommandInput, NullAndEmptyHeadersClientCommandOutput, } from "./commands/NullAndEmptyHeadersClientCommand"; -import { +import type { NullAndEmptyHeadersServerCommandInput, NullAndEmptyHeadersServerCommandOutput, } from "./commands/NullAndEmptyHeadersServerCommand"; -import { +import type { OmitsNullSerializesEmptyStringCommandInput, OmitsNullSerializesEmptyStringCommandOutput, } from "./commands/OmitsNullSerializesEmptyStringCommand"; -import { +import type { OmitsSerializingEmptyListsCommandInput, OmitsSerializingEmptyListsCommandOutput, } from "./commands/OmitsSerializingEmptyListsCommand"; -import { +import type { OperationWithDefaultsCommandInput, OperationWithDefaultsCommandOutput, } from "./commands/OperationWithDefaultsCommand"; -import { +import type { OperationWithNestedStructureCommandInput, OperationWithNestedStructureCommandOutput, } from "./commands/OperationWithNestedStructureCommand"; -import { OutputStreamCommandInput, OutputStreamCommandOutput } from "./commands/OutputStreamCommand"; -import { +import type { OutputStreamCommandInput, OutputStreamCommandOutput } from "./commands/OutputStreamCommand"; +import type { OutputStreamWithInitialResponseCommandInput, OutputStreamWithInitialResponseCommandOutput, } from "./commands/OutputStreamWithInitialResponseCommand"; -import { PostPlayerActionCommandInput, PostPlayerActionCommandOutput } from "./commands/PostPlayerActionCommand"; -import { +import type { PostPlayerActionCommandInput, PostPlayerActionCommandOutput } from "./commands/PostPlayerActionCommand"; +import type { PostUnionWithJsonNameCommandInput, PostUnionWithJsonNameCommandOutput, } from "./commands/PostUnionWithJsonNameCommand"; -import { +import type { PutWithContentEncodingCommandInput, PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; -import { +import type { QueryIdempotencyTokenAutoFillCommandInput, QueryIdempotencyTokenAutoFillCommandOutput, } from "./commands/QueryIdempotencyTokenAutoFillCommand"; -import { +import type { QueryParamsAsStringListMapCommandInput, QueryParamsAsStringListMapCommandOutput, } from "./commands/QueryParamsAsStringListMapCommand"; -import { QueryPrecedenceCommandInput, QueryPrecedenceCommandOutput } from "./commands/QueryPrecedenceCommand"; -import { RecursiveShapesCommandInput, RecursiveShapesCommandOutput } from "./commands/RecursiveShapesCommand"; -import { +import type { QueryPrecedenceCommandInput, QueryPrecedenceCommandOutput } from "./commands/QueryPrecedenceCommand"; +import type { RecursiveShapesCommandInput, RecursiveShapesCommandOutput } from "./commands/RecursiveShapesCommand"; +import type { ResponseCodeHttpFallbackCommandInput, ResponseCodeHttpFallbackCommandOutput, } from "./commands/ResponseCodeHttpFallbackCommand"; -import { +import type { ResponseCodeRequiredCommandInput, ResponseCodeRequiredCommandOutput, } from "./commands/ResponseCodeRequiredCommand"; -import { +import type { SimpleScalarPropertiesCommandInput, SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; -import { SparseJsonListsCommandInput, SparseJsonListsCommandOutput } from "./commands/SparseJsonListsCommand"; -import { SparseJsonMapsCommandInput, SparseJsonMapsCommandOutput } from "./commands/SparseJsonMapsCommand"; -import { StreamingTraitsCommandInput, StreamingTraitsCommandOutput } from "./commands/StreamingTraitsCommand"; -import { +import type { SparseJsonListsCommandInput, SparseJsonListsCommandOutput } from "./commands/SparseJsonListsCommand"; +import type { SparseJsonMapsCommandInput, SparseJsonMapsCommandOutput } from "./commands/SparseJsonMapsCommand"; +import type { StreamingTraitsCommandInput, StreamingTraitsCommandOutput } from "./commands/StreamingTraitsCommand"; +import type { StreamingTraitsRequireLengthCommandInput, StreamingTraitsRequireLengthCommandOutput, } from "./commands/StreamingTraitsRequireLengthCommand"; -import { +import type { StreamingTraitsWithMediaTypeCommandInput, StreamingTraitsWithMediaTypeCommandOutput, } from "./commands/StreamingTraitsWithMediaTypeCommand"; -import { TestBodyStructureCommandInput, TestBodyStructureCommandOutput } from "./commands/TestBodyStructureCommand"; -import { +import type { + TestBodyStructureCommandInput, + TestBodyStructureCommandOutput, +} from "./commands/TestBodyStructureCommand"; +import type { TestGetNoInputNoPayloadCommandInput, TestGetNoInputNoPayloadCommandOutput, } from "./commands/TestGetNoInputNoPayloadCommand"; -import { TestGetNoPayloadCommandInput, TestGetNoPayloadCommandOutput } from "./commands/TestGetNoPayloadCommand"; -import { TestPayloadBlobCommandInput, TestPayloadBlobCommandOutput } from "./commands/TestPayloadBlobCommand"; -import { +import type { TestGetNoPayloadCommandInput, TestGetNoPayloadCommandOutput } from "./commands/TestGetNoPayloadCommand"; +import type { TestPayloadBlobCommandInput, TestPayloadBlobCommandOutput } from "./commands/TestPayloadBlobCommand"; +import type { TestPayloadStructureCommandInput, TestPayloadStructureCommandOutput, } from "./commands/TestPayloadStructureCommand"; -import { +import type { TestPostNoInputNoPayloadCommandInput, TestPostNoInputNoPayloadCommandOutput, } from "./commands/TestPostNoInputNoPayloadCommand"; -import { TestPostNoPayloadCommandInput, TestPostNoPayloadCommandOutput } from "./commands/TestPostNoPayloadCommand"; -import { +import type { + TestPostNoPayloadCommandInput, + TestPostNoPayloadCommandOutput, +} from "./commands/TestPostNoPayloadCommand"; +import type { TimestampFormatHeadersCommandInput, TimestampFormatHeadersCommandOutput, } from "./commands/TimestampFormatHeadersCommand"; -import { UnitInputAndOutputCommandInput, UnitInputAndOutputCommandOutput } from "./commands/UnitInputAndOutputCommand"; +import type { + UnitInputAndOutputCommandInput, + UnitInputAndOutputCommandOutput, +} from "./commands/UnitInputAndOutputCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, @@ -404,7 +443,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-restjson-schema/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-restjson-schema/src/auth/httpAuthExtensionConfiguration.ts index 62fd1e214aa35..22a1ee4676343 100644 --- a/private/aws-protocoltests-restjson-schema/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-schema/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RestJsonProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RestJsonProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-restjson-schema/src/auth/httpAuthSchemeProvider.ts index c6e3e213949fb..0faeadc95fda6 100644 --- a/private/aws-protocoltests-restjson-schema/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-restjson-schema/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RestJsonProtocolClientConfig, RestJsonProtocolClientResolvedConfig } from "../RestJsonProtocolClient"; +import { type RestJsonProtocolClientResolvedConfig, RestJsonProtocolClientConfig } from "../RestJsonProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema/src/commands/AllQueryStringTypesCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/AllQueryStringTypesCommand.ts index 1f3cad76cbd6f..46d1ae1c48b3f 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/AllQueryStringTypesCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/AllQueryStringTypesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllQueryStringTypesInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { AllQueryStringTypesInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { AllQueryStringTypes } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/ConstantAndVariableQueryStringCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/ConstantAndVariableQueryStringCommand.ts index 877a5f4862bf8..6087118bbf5aa 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/ConstantAndVariableQueryStringCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/ConstantAndVariableQueryStringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConstantAndVariableQueryStringInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { ConstantAndVariableQueryStringInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { ConstantAndVariableQueryString } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/ConstantQueryStringCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/ConstantQueryStringCommand.ts index 735f2f9d246c7..347134a9cccef 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/ConstantQueryStringCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/ConstantQueryStringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConstantQueryStringInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { ConstantQueryStringInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { ConstantQueryString } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/ContentTypeParametersCommand.ts index 3f6648b3474e7..ac4f3cfed2710 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/ContentTypeParametersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { ContentTypeParameters } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/DatetimeOffsetsCommand.ts index 43432e5a71bc8..6cc944c9faf32 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/DatetimeOffsetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DatetimeOffsetsOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { DatetimeOffsets } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeAsMapValueCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeAsMapValueCommand.ts index 271634b311bd2..f12eddc01989f 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeAsMapValueCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeAsMapValueCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentTypeAsMapValueInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { DocumentTypeAsMapValueInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { DocumentTypeAsMapValue } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeAsPayloadCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeAsPayloadCommand.ts index 2ed73bdc6790c..9bcf0daa26ff9 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeAsPayloadCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeAsPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentTypeAsPayloadInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { DocumentTypeAsPayloadInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { DocumentTypeAsPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeCommand.ts index a8d429fb6d20c..1c8f8fda319c2 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/DocumentTypeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentTypeInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { DocumentTypeInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { DocumentType } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamCommand.ts index 83c93f284ae2a..a1e25347d1803 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamCommand.ts @@ -2,11 +2,15 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DuplexStreamInput, DuplexStreamOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { DuplexStreamInput, DuplexStreamOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { DuplexStream } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamWithDistinctStreamsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamWithDistinctStreamsCommand.ts index 2e4cba2feadb0..b5a7cfb3e653f 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamWithDistinctStreamsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamWithDistinctStreamsCommand.ts @@ -2,11 +2,15 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DuplexStreamWithDistinctStreamsInput, DuplexStreamWithDistinctStreamsOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { DuplexStreamWithDistinctStreamsInput, DuplexStreamWithDistinctStreamsOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { DuplexStreamWithDistinctStreams } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamWithInitialMessagesCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamWithInitialMessagesCommand.ts index 81fa16a02f840..420f02124a680 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamWithInitialMessagesCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/DuplexStreamWithInitialMessagesCommand.ts @@ -2,11 +2,15 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DuplexStreamWithInitialMessagesInput, DuplexStreamWithInitialMessagesOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { DuplexStreamWithInitialMessagesInput, DuplexStreamWithInitialMessagesOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { DuplexStreamWithInitialMessages } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts index f89218bf614a5..5192e7c3d6309 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { EmptyInputAndEmptyOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/EndpointOperationCommand.ts index 98db346c332f1..cd9513ec9d62d 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/EndpointOperationCommand.ts @@ -1,10 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { EndpointOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/EndpointWithHostLabelOperationCommand.ts index 371f6affeff53..48a1f0dc79160 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HostLabelInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HostLabelInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { EndpointWithHostLabelOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/FractionalSecondsCommand.ts index 66453e9e91185..e374d6d5bd71a 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/FractionalSecondsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { FractionalSecondsOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { FractionalSeconds } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/GreetingWithErrorsCommand.ts index ea00fcc1a8ea0..a43dc94464a92 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/GreetingWithErrorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { GreetingWithErrors } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HostWithPathOperationCommand.ts index 4f4089f022795..8924779b5b754 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HostWithPathOperationCommand.ts @@ -1,10 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HostWithPathOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpChecksumRequiredCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpChecksumRequiredCommand.ts index 4245b02d76315..e55cc4e952002 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpChecksumRequiredCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpChecksumRequiredCommand.ts @@ -2,11 +2,15 @@ import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-checksum"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpChecksumRequiredInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpChecksumRequiredInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpChecksumRequired } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpEmptyPrefixHeadersCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpEmptyPrefixHeadersCommand.ts index c35d2a55166d8..972b7255f48ba 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpEmptyPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpEmptyPrefixHeadersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpEmptyPrefixHeadersInput, HttpEmptyPrefixHeadersOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpEmptyPrefixHeadersInput, HttpEmptyPrefixHeadersOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpEmptyPrefixHeaders } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpEnumPayloadCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpEnumPayloadCommand.ts index deb4f0c99f4ed..5e57bdbe7e6e4 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpEnumPayloadCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpEnumPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnumPayloadInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { EnumPayloadInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpEnumPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadTraitsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadTraitsCommand.ts index fe14072931b93..591f153385e41 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadTraitsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadTraitsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadTraitsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpPayloadTraitsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpPayloadTraits } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts index aeb14287a6747..cf077bf2a175e 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadTraitsWithMediaTypeInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpPayloadTraitsWithMediaTypeInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpPayloadTraitsWithMediaType } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadWithStructureCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadWithStructureCommand.ts index 594bd5bf1f1ee..7136f1d0eb218 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadWithStructureCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadWithStructureCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithStructureInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpPayloadWithStructureInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpPayloadWithStructure } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadWithUnionCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadWithUnionCommand.ts index 4fba9ccbe3a2c..c69c459248cae 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadWithUnionCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpPayloadWithUnionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithUnionInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpPayloadWithUnionInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpPayloadWithUnion } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpPrefixHeadersCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpPrefixHeadersCommand.ts index 32608038447c2..8a75dedbbfa97 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpPrefixHeadersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPrefixHeadersInput, HttpPrefixHeadersOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpPrefixHeadersInput, HttpPrefixHeadersOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpPrefixHeaders } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpPrefixHeadersInResponseCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpPrefixHeadersInResponseCommand.ts index 3ec3e16b40ab9..2a1d3f58572e2 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpPrefixHeadersInResponseCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpPrefixHeadersInResponseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPrefixHeadersInResponseInput, HttpPrefixHeadersInResponseOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpPrefixHeadersInResponseInput, HttpPrefixHeadersInResponseOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpPrefixHeadersInResponse } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpQueryParamsOnlyOperationCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpQueryParamsOnlyOperationCommand.ts index c10128543f67d..05d7570b632d8 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpQueryParamsOnlyOperationCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpQueryParamsOnlyOperationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpQueryParamsOnlyInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpQueryParamsOnlyInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpQueryParamsOnlyOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithFloatLabelsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithFloatLabelsCommand.ts index e331a605a03ff..7805171919a4f 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithFloatLabelsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithFloatLabelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithFloatLabelsInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpRequestWithFloatLabelsInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpRequestWithFloatLabels } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts index 305f2c8004aef..2085d906e0083 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithGreedyLabelInPathInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpRequestWithGreedyLabelInPathInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpRequestWithGreedyLabelInPath } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts index 41ecd21dc698c..0cea805cf0e2a 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithLabelsAndTimestampFormatInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpRequestWithLabelsAndTimestampFormatInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpRequestWithLabelsAndTimestampFormat } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithLabelsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithLabelsCommand.ts index eadaeddc8b2cb..56f6b174c79ff 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithLabelsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithLabelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithLabelsInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpRequestWithLabelsInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpRequestWithLabels } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithRegexLiteralCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithRegexLiteralCommand.ts index ad9d665ab2f40..f23eb77b54ce6 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithRegexLiteralCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpRequestWithRegexLiteralCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithRegexLiteralInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpRequestWithRegexLiteralInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpRequestWithRegexLiteral } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpResponseCodeCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpResponseCodeCommand.ts index c711cb07ae0e3..f1e9de8e6e5e6 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpResponseCodeCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpResponseCodeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpResponseCodeOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { HttpResponseCodeOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpResponseCode } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/HttpStringPayloadCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/HttpStringPayloadCommand.ts index 61497daabcd83..d90bdedbc43a6 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/HttpStringPayloadCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/HttpStringPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StringPayloadInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { StringPayloadInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { HttpStringPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/IgnoreQueryParamsInResponseCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/IgnoreQueryParamsInResponseCommand.ts index c0b121403c79e..58c40110326f1 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/IgnoreQueryParamsInResponseCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/IgnoreQueryParamsInResponseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IgnoreQueryParamsInResponseOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { IgnoreQueryParamsInResponseOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { IgnoreQueryParamsInResponse } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/InputAndOutputWithHeadersCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/InputAndOutputWithHeadersCommand.ts index ebafc17671554..0e61285a8321a 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/InputAndOutputWithHeadersCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/InputAndOutputWithHeadersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InputAndOutputWithHeadersIO } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { InputAndOutputWithHeadersIO } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { InputAndOutputWithHeaders } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/InputStreamCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/InputStreamCommand.ts index 2151adefcddb8..d9421bca6bce9 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/InputStreamCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/InputStreamCommand.ts @@ -2,11 +2,15 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InputStreamInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { InputStreamInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { InputStream } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/InputStreamWithInitialRequestCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/InputStreamWithInitialRequestCommand.ts index 873ec8acc8575..b76f208c25390 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/InputStreamWithInitialRequestCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/InputStreamWithInitialRequestCommand.ts @@ -2,11 +2,15 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InputStreamWithInitialRequestInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { InputStreamWithInitialRequestInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { InputStreamWithInitialRequest } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/JsonBlobsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/JsonBlobsCommand.ts index dd7fe0490a792..28de55b459434 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/JsonBlobsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/JsonBlobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonBlobsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { JsonBlobsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { JsonBlobs } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/JsonEnumsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/JsonEnumsCommand.ts index 9fdc39f037a9a..714ab84d9383e 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/JsonEnumsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/JsonEnumsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonEnumsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { JsonEnumsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { JsonEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/JsonIntEnumsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/JsonIntEnumsCommand.ts index 4fa184d38552c..c80d60696cbcf 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/JsonIntEnumsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/JsonIntEnumsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonIntEnumsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { JsonIntEnumsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { JsonIntEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/JsonListsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/JsonListsCommand.ts index 47fdb7bfe9681..7903730124387 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/JsonListsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/JsonListsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonListsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { JsonListsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { JsonLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/JsonMapsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/JsonMapsCommand.ts index b697fa6a30cc0..b6a12fd6525a1 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/JsonMapsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/JsonMapsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonMapsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { JsonMapsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { JsonMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/JsonTimestampsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/JsonTimestampsCommand.ts index 45c43323eb9a7..ed18004589a23 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/JsonTimestampsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/JsonTimestampsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonTimestampsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { JsonTimestampsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { JsonTimestamps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/JsonUnionsCommand.ts index 4d43b4419a705..3b973c10c9b46 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/JsonUnionsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/JsonUnionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnionInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { UnionInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { JsonUnions } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithBodyCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithBodyCommand.ts index 08ae0ec7ca78f..1ec3049d29912 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithBodyCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithBodyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingStruct } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { GreetingStruct } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedAcceptWithBody } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithGenericStringCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithGenericStringCommand.ts index d30a4451779e7..3f6e7616d109a 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithGenericStringCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithGenericStringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedAcceptWithGenericStringOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedAcceptWithGenericStringOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedAcceptWithGenericString } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithPayloadCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithPayloadCommand.ts index e7dc72da4ce44..2e3c3cc0564b8 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithPayloadCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedAcceptWithPayloadCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedAcceptWithPayloadOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedAcceptWithPayloadOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedAcceptWithPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedBlobCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedBlobCommand.ts index 13330caea11d4..6fa315ec26087 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedBlobCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedBlobCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedBlobInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedBlobInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedBlob } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedBooleanCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedBooleanCommand.ts index 7e374a3e7ec4a..15c8d8949b0a0 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedBooleanCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedBooleanCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedBooleanInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedBooleanInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedBoolean } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedByteCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedByteCommand.ts index 82f038939af66..118f2bc380cc5 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedByteCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedByteCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedByteInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedByteInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedByte } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithBodyCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithBodyCommand.ts index 89ccef17ab7a4..cd7d285125ab2 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithBodyCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithBodyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingStruct } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { GreetingStruct } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedContentTypeWithBody } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithGenericStringCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithGenericStringCommand.ts index 1e95e8ed20ded..9e38c35c29e24 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithGenericStringCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithGenericStringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedContentTypeWithGenericStringInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedContentTypeWithGenericStringInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedContentTypeWithGenericString } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithPayloadCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithPayloadCommand.ts index 842af342f31f2..c6b5771e29fe3 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithPayloadCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedContentTypeWithPayloadInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedContentTypeWithPayloadInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedContentTypeWithPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithoutBodyCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithoutBodyCommand.ts index 74363557c2be3..acac8b8133cce 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithoutBodyCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithoutBodyCommand.ts @@ -1,10 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedContentTypeWithoutBody } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts index f4230c6b74328..5df873aed5e63 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedContentTypeWithoutBodyEmptyInputInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedContentTypeWithoutBodyEmptyInputInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedContentTypeWithoutBodyEmptyInput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedDoubleCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedDoubleCommand.ts index 7d11aea5b5557..f49113dda2b90 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedDoubleCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedDoubleCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedDoubleInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedDoubleInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedDouble } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedFloatCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedFloatCommand.ts index 68083d90a2638..1b917f14c4bdd 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedFloatCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedFloatCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedFloatInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedFloatInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedFloat } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedIntegerCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedIntegerCommand.ts index 006019fbd4825..0347e8ec9cebb 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedIntegerCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedIntegerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedIntegerInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedIntegerInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedInteger } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedListCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedListCommand.ts index 89ff997cf25df..2831df908c1f3 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedListCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedListCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedListInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedListInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedList } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedLongCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedLongCommand.ts index 67d4055dead11..0c9c47c8ceec3 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedLongCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedLongCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedLongInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedLongInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedLong } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedMapCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedMapCommand.ts index 2bfdd99a6a5e8..4c8c4a748eb62 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedMapCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedMapCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedMapInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedMapInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedMap } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedRequestBodyCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedRequestBodyCommand.ts index 1eb5f048e9c50..0196dbe5e0da2 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedRequestBodyCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedRequestBodyCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedRequestBodyInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedRequestBodyInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedRequestBody } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedShortCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedShortCommand.ts index 32a5b3d26de73..94377777e42c4 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedShortCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedShortCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedShortInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedShortInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedShort } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedStringCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedStringCommand.ts index a9e42ab50088c..4aebcc6ff4e99 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedStringCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedStringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedStringInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedStringInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedString } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyDateTimeCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyDateTimeCommand.ts index 80e9f18fa32c4..0b66a0b5ab5c9 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyDateTimeCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyDateTimeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampBodyDateTimeInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampBodyDateTimeInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampBodyDateTime } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyDefaultCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyDefaultCommand.ts index ff4eab06feb66..f9f787f96f6c5 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyDefaultCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyDefaultCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampBodyDefaultInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampBodyDefaultInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampBodyDefault } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyHttpDateCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyHttpDateCommand.ts index 4710b0b759081..924932647565e 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyHttpDateCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampBodyHttpDateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampBodyHttpDateInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampBodyHttpDateInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampBodyHttpDate } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderDateTimeCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderDateTimeCommand.ts index d12571794f066..e363463e34694 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderDateTimeCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderDateTimeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampHeaderDateTimeInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampHeaderDateTimeInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampHeaderDateTime } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderDefaultCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderDefaultCommand.ts index e9e836ca7cdc9..b94120a5c90b0 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderDefaultCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderDefaultCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampHeaderDefaultInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampHeaderDefaultInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampHeaderDefault } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderEpochCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderEpochCommand.ts index e0263eb3b51b1..ad58dd86508ca 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderEpochCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampHeaderEpochCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampHeaderEpochInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampHeaderEpochInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampHeaderEpoch } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathDefaultCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathDefaultCommand.ts index 20e9369679d53..a8e32814856e7 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathDefaultCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathDefaultCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampPathDefaultInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampPathDefaultInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampPathDefault } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathEpochCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathEpochCommand.ts index 614f2adf6b4a7..8c797bab10f7b 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathEpochCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathEpochCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampPathEpochInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampPathEpochInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampPathEpoch } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathHttpDateCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathHttpDateCommand.ts index 602ee464d2b17..192f6a3f7fc2f 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathHttpDateCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampPathHttpDateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampPathHttpDateInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampPathHttpDateInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampPathHttpDate } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryDefaultCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryDefaultCommand.ts index f662fff6ec7a8..e5f8a8a7ba93c 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryDefaultCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryDefaultCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampQueryDefaultInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampQueryDefaultInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampQueryDefault } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryEpochCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryEpochCommand.ts index ceeb60b3d3dfd..54f172d94c70e 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryEpochCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryEpochCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampQueryEpochInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampQueryEpochInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampQueryEpoch } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryHttpDateCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryHttpDateCommand.ts index 52d7aa2b105b7..ff7e513030e36 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryHttpDateCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedTimestampQueryHttpDateCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampQueryHttpDateInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedTimestampQueryHttpDateInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedTimestampQueryHttpDate } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MalformedUnionCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MalformedUnionCommand.ts index 799d3135024eb..b15535dfdbc64 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MalformedUnionCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MalformedUnionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedUnionInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MalformedUnionInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MalformedUnion } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/MediaTypeHeaderCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/MediaTypeHeaderCommand.ts index 11ae3f826e06d..9e3b55a0a2a8d 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/MediaTypeHeaderCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/MediaTypeHeaderCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTypeHeaderInput, MediaTypeHeaderOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { MediaTypeHeaderInput, MediaTypeHeaderOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { MediaTypeHeader } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/NoInputAndNoOutputCommand.ts index ece777b0b088e..44aa4987fc6d5 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/NoInputAndNoOutputCommand.ts @@ -1,10 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { NoInputAndNoOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/NoInputAndOutputCommand.ts index 0320cc9376044..7dfe74355e7fe 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/NoInputAndOutputCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NoInputAndOutputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { NoInputAndOutputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { NoInputAndOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/NullAndEmptyHeadersClientCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/NullAndEmptyHeadersClientCommand.ts index 8449416dce46d..a63abb6d36f6c 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/NullAndEmptyHeadersClientCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/NullAndEmptyHeadersClientCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NullAndEmptyHeadersIO } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { NullAndEmptyHeadersIO } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { NullAndEmptyHeadersClient } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/NullAndEmptyHeadersServerCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/NullAndEmptyHeadersServerCommand.ts index 1578bb30f193a..b33cb3ee66c59 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/NullAndEmptyHeadersServerCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/NullAndEmptyHeadersServerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NullAndEmptyHeadersIO } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { NullAndEmptyHeadersIO } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { NullAndEmptyHeadersServer } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/OmitsNullSerializesEmptyStringCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/OmitsNullSerializesEmptyStringCommand.ts index 35d4c02afb6e1..20b6c13dd653d 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/OmitsNullSerializesEmptyStringCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/OmitsNullSerializesEmptyStringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OmitsNullSerializesEmptyStringInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { OmitsNullSerializesEmptyStringInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { OmitsNullSerializesEmptyString } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/OmitsSerializingEmptyListsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/OmitsSerializingEmptyListsCommand.ts index db88e827f364d..6a00d27081558 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/OmitsSerializingEmptyListsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/OmitsSerializingEmptyListsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OmitsSerializingEmptyListsInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { OmitsSerializingEmptyListsInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { OmitsSerializingEmptyLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/OperationWithDefaultsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/OperationWithDefaultsCommand.ts index fe5585259c40a..ab64ef7de5336 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/OperationWithDefaultsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/OperationWithDefaultsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { OperationWithDefaults } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/OperationWithNestedStructureCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/OperationWithNestedStructureCommand.ts index ecd842b88fc9a..8ab6df7a9fe9e 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/OperationWithNestedStructureCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/OperationWithNestedStructureCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OperationWithNestedStructureInput, OperationWithNestedStructureOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { OperationWithNestedStructureInput, OperationWithNestedStructureOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { OperationWithNestedStructure } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/OutputStreamCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/OutputStreamCommand.ts index cdf5c3e067e8f..3cfc34a5fffe7 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/OutputStreamCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/OutputStreamCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OutputStreamOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { OutputStreamOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { OutputStream } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/OutputStreamWithInitialResponseCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/OutputStreamWithInitialResponseCommand.ts index 0db1d13328e18..b824f86f2c786 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/OutputStreamWithInitialResponseCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/OutputStreamWithInitialResponseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OutputStreamWithInitialResponseOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { OutputStreamWithInitialResponseOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { OutputStreamWithInitialResponse } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/PostPlayerActionCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/PostPlayerActionCommand.ts index da94cd9f01769..ebc4d8ceadb77 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/PostPlayerActionCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/PostPlayerActionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostPlayerActionInput, PostPlayerActionOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { PostPlayerActionInput, PostPlayerActionOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { PostPlayerAction } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/PostUnionWithJsonNameCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/PostUnionWithJsonNameCommand.ts index 1581f1ee29bf2..38d287b09662b 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/PostUnionWithJsonNameCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/PostUnionWithJsonNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostUnionWithJsonNameInput, PostUnionWithJsonNameOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { PostUnionWithJsonNameInput, PostUnionWithJsonNameOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { PostUnionWithJsonName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/PutWithContentEncodingCommand.ts index f4632b9c78b23..cf71d40cc9f68 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/PutWithContentEncodingCommand.ts @@ -2,11 +2,15 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWithContentEncodingInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { PutWithContentEncodingInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { PutWithContentEncoding } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index 53ef749e0272e..9c008f370059d 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { QueryIdempotencyTokenAutoFill } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/QueryParamsAsStringListMapCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/QueryParamsAsStringListMapCommand.ts index 90b99a1f28dc9..2e6da63f22f73 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/QueryParamsAsStringListMapCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/QueryParamsAsStringListMapCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryParamsAsStringListMapInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { QueryParamsAsStringListMapInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { QueryParamsAsStringListMap } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/QueryPrecedenceCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/QueryPrecedenceCommand.ts index e9de8d6acb2f8..a57b69918a873 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/QueryPrecedenceCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/QueryPrecedenceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryPrecedenceInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { QueryPrecedenceInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { QueryPrecedence } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/RecursiveShapesCommand.ts index 76c942962140e..12930cf72496d 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/RecursiveShapesCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/RecursiveShapesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveShapesInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { RecursiveShapesInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { RecursiveShapes } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/ResponseCodeHttpFallbackCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/ResponseCodeHttpFallbackCommand.ts index cc4661259a6b6..74279d8b56d56 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/ResponseCodeHttpFallbackCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/ResponseCodeHttpFallbackCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResponseCodeHttpFallbackInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { ResponseCodeHttpFallbackInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { ResponseCodeHttpFallback } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/ResponseCodeRequiredCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/ResponseCodeRequiredCommand.ts index a1020bde2937c..fbbed8c2cdf1e 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/ResponseCodeRequiredCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/ResponseCodeRequiredCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResponseCodeRequiredOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { ResponseCodeRequiredOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { ResponseCodeRequired } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/SimpleScalarPropertiesCommand.ts index a52638bcc7528..918bb25be638c 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/SimpleScalarPropertiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarPropertiesInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { SimpleScalarPropertiesInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { SimpleScalarProperties } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/SparseJsonListsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/SparseJsonListsCommand.ts index cba493f9348db..eebad728ca94d 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/SparseJsonListsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/SparseJsonListsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SparseJsonListsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { SparseJsonListsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { SparseJsonLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/SparseJsonMapsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/SparseJsonMapsCommand.ts index 6dfb8e394e4bb..7497f079b1fa6 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/SparseJsonMapsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/SparseJsonMapsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SparseJsonMapsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { SparseJsonMapsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { SparseJsonMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsCommand.ts index ff32f54f853d2..0622cfb7cfb80 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes, StreamingBlobPayloadOutputTypes, } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StreamingTraitsInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { StreamingTraitsInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { StreamingTraits } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsRequireLengthCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsRequireLengthCommand.ts index 9319066a65182..38c36ab12e562 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsRequireLengthCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsRequireLengthCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StreamingTraitsRequireLengthInput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { StreamingTraitsRequireLengthInput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { StreamingTraitsRequireLength } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsWithMediaTypeCommand.ts index 1862cd2af91d7..49e272a8eaff8 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsWithMediaTypeCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/StreamingTraitsWithMediaTypeCommand.ts @@ -1,15 +1,19 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes, StreamingBlobPayloadOutputTypes, } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StreamingTraitsWithMediaTypeInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { StreamingTraitsWithMediaTypeInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { StreamingTraitsWithMediaType } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/TestBodyStructureCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/TestBodyStructureCommand.ts index 3f56ac0bb50e2..4f466cefb0c36 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/TestBodyStructureCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/TestBodyStructureCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestBodyStructureInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { TestBodyStructureInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { TestBodyStructure } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/TestGetNoInputNoPayloadCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/TestGetNoInputNoPayloadCommand.ts index 61c7260ade41b..e7bfe923f825b 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/TestGetNoInputNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/TestGetNoInputNoPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestNoPayloadInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { TestNoPayloadInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { TestGetNoInputNoPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/TestGetNoPayloadCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/TestGetNoPayloadCommand.ts index ca6adb36fd79d..e9b24b6f4a920 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/TestGetNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/TestGetNoPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestNoPayloadInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { TestNoPayloadInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { TestGetNoPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/TestPayloadBlobCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/TestPayloadBlobCommand.ts index fe35dda795e0f..165fd47628ccd 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/TestPayloadBlobCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/TestPayloadBlobCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestPayloadBlobInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { TestPayloadBlobInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { TestPayloadBlob } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/TestPayloadStructureCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/TestPayloadStructureCommand.ts index 958375038916e..c5f84668dd804 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/TestPayloadStructureCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/TestPayloadStructureCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestPayloadStructureInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { TestPayloadStructureInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { TestPayloadStructure } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/TestPostNoInputNoPayloadCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/TestPostNoInputNoPayloadCommand.ts index 2e53550c13760..bcacb9e8760ef 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/TestPostNoInputNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/TestPostNoInputNoPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestNoPayloadInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { TestNoPayloadInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { TestPostNoInputNoPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/TestPostNoPayloadCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/TestPostNoPayloadCommand.ts index 3934b11ecbee5..4725356c19472 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/TestPostNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/TestPostNoPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestNoPayloadInputOutput } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { TestNoPayloadInputOutput } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { TestPostNoPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/TimestampFormatHeadersCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/TimestampFormatHeadersCommand.ts index 55985c4941896..ecb784739a970 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/TimestampFormatHeadersCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/TimestampFormatHeadersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TimestampFormatHeadersIO } from "../models/models_0"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { TimestampFormatHeadersIO } from "../models/models_0"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { TimestampFormatHeaders } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/commands/UnitInputAndOutputCommand.ts b/private/aws-protocoltests-restjson-schema/src/commands/UnitInputAndOutputCommand.ts index 963efe3144e2f..0486509332d2e 100644 --- a/private/aws-protocoltests-restjson-schema/src/commands/UnitInputAndOutputCommand.ts +++ b/private/aws-protocoltests-restjson-schema/src/commands/UnitInputAndOutputCommand.ts @@ -1,10 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; import { UnitInputAndOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-restjson-schema/src/endpoint/EndpointParameters.ts index 4cd8f2aa562a3..7f8c4865a61ee 100644 --- a/private/aws-protocoltests-restjson-schema/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-restjson-schema/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-restjson-schema/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-restjson-schema/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-restjson-schema/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-restjson-schema/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-restjson-schema/src/endpoint/ruleset.ts b/private/aws-protocoltests-restjson-schema/src/endpoint/ruleset.ts index 6eaa2aeabbdbb..e3b156d2b7c81 100644 --- a/private/aws-protocoltests-restjson-schema/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-restjson-schema/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-restjson-schema/src/extensionConfiguration.ts b/private/aws-protocoltests-restjson-schema/src/extensionConfiguration.ts index c6f06b73c692a..aff4190ff4131 100644 --- a/private/aws-protocoltests-restjson-schema/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-restjson-schema/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema/src/models/RestJsonProtocolServiceException.ts b/private/aws-protocoltests-restjson-schema/src/models/RestJsonProtocolServiceException.ts index b107bd85b4928..862fa46fb1d6e 100644 --- a/private/aws-protocoltests-restjson-schema/src/models/RestJsonProtocolServiceException.ts +++ b/private/aws-protocoltests-restjson-schema/src/models/RestJsonProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-restjson-schema/src/models/errors.ts b/private/aws-protocoltests-restjson-schema/src/models/errors.ts index bd41d2117bd95..9d3e92bb07a3c 100644 --- a/private/aws-protocoltests-restjson-schema/src/models/errors.ts +++ b/private/aws-protocoltests-restjson-schema/src/models/errors.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; -import { ComplexNestedErrorData } from "./models_0"; +import type { ComplexNestedErrorData } from "./models_0"; import { RestJsonProtocolServiceException as __BaseException } from "./RestJsonProtocolServiceException"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/models/models_0.ts b/private/aws-protocoltests-restjson-schema/src/models/models_0.ts index bf0822ea96dfd..f0abd78b41cb5 100644 --- a/private/aws-protocoltests-restjson-schema/src/models/models_0.ts +++ b/private/aws-protocoltests-restjson-schema/src/models/models_0.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client"; -import { DocumentType as __DocumentType, StreamingBlobTypes } from "@smithy/types"; +import type { DocumentType as __DocumentType, StreamingBlobTypes } from "@smithy/types"; -import { FooEnum, IntegerEnum, StringEnum, TestEnum, TestIntEnum } from "./enums"; -import { ErrorEvent } from "./errors"; +import type { FooEnum, IntegerEnum, StringEnum, TestEnum, TestIntEnum } from "./enums"; +import type { ErrorEvent } from "./errors"; /** * @public diff --git a/private/aws-protocoltests-restjson-schema/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restjson-schema/src/runtimeConfig.browser.ts index 2b16c22f9d875..9313f3411ac9c 100644 --- a/private/aws-protocoltests-restjson-schema/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-restjson-schema/src/runtimeConfig.browser.ts @@ -14,12 +14,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; + +import type { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema/src/runtimeConfig.native.ts b/private/aws-protocoltests-restjson-schema/src/runtimeConfig.native.ts index 413dc1c065160..dea689001b4bb 100644 --- a/private/aws-protocoltests-restjson-schema/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-restjson-schema/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { invalidFunction } from "@smithy/invalid-dependency"; -import { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; +import type { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-restjson-schema/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restjson-schema/src/runtimeConfig.shared.ts index 515ae49bb8cb6..f3cb2c60a1f6e 100644 --- a/private/aws-protocoltests-restjson-schema/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-restjson-schema/src/runtimeConfig.shared.ts @@ -2,7 +2,7 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -10,7 +10,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRestJsonProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; +import type { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema/src/runtimeConfig.ts b/private/aws-protocoltests-restjson-schema/src/runtimeConfig.ts index bdc0958ab8a38..ffd0b20ddccfe 100644 --- a/private/aws-protocoltests-restjson-schema/src/runtimeConfig.ts +++ b/private/aws-protocoltests-restjson-schema/src/runtimeConfig.ts @@ -22,13 +22,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; + +import type { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-restjson-schema/src/runtimeExtensions.ts b/private/aws-protocoltests-restjson-schema/src/runtimeExtensions.ts index 3f59e35d6fb62..75ed718784605 100644 --- a/private/aws-protocoltests-restjson-schema/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-restjson-schema/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RestJsonProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { RestJsonProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-restjson-schema/src/schemas/schemas_0.ts b/private/aws-protocoltests-restjson-schema/src/schemas/schemas_0.ts index e3e75158e7f11..eb2f2a3cc07db 100644 --- a/private/aws-protocoltests-restjson-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-restjson-schema/src/schemas/schemas_0.ts @@ -635,7 +635,7 @@ const n2 = "aws.protocoltests.restjson.nested"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, @@ -2542,8 +2542,8 @@ export var UnionPayloadEvent: StaticStructureSchema = [ ], ], ]; -export var GreetingStruct_n2: StaticStructureSchema = [3, n2, _GS, 0, [_sa], [0]]; -export var GreetingStruct: StaticStructureSchema = [3, n1, _GS, 0, [_hi], [0]]; +export var GreetingStruct: StaticStructureSchema = [3, n2, _GS, 0, [_sa], [0]]; +export var GreetingStruct_n1: StaticStructureSchema = [3, n1, _GS, 0, [_hi], [0]]; export var __Unit = "unit" as const; export var RestJsonProtocolServiceException: StaticErrorSchema = [ @@ -2610,7 +2610,7 @@ export var DenseNumberMap = 128 | 1; export var DenseSetMap: StaticMapSchema = [2, n0, _DSM, 0, 0, 64 | 0]; export var DenseStringMap = 128 | 0; -export var DenseStructMap: StaticMapSchema = [2, n0, _DSMe, 0, 0, () => GreetingStruct]; +export var DenseStructMap: StaticMapSchema = [2, n0, _DSMe, 0, 0, () => GreetingStruct_n1]; export var DialogMap: StaticMapSchema = [2, n0, _DM, 0, 0, () => Dialog]; export var DocumentValuedMap = 128 | 15; @@ -2656,7 +2656,7 @@ export var SparseStructMap: StaticMapSchema = [ [_sp]: 1, }, 0, - () => GreetingStruct, + () => GreetingStruct_n1, ]; export var TestStringMap = 128 | 0; @@ -2702,7 +2702,7 @@ export var MyUnion: StaticStructureSchema = [ _MU, 0, [_sV, _bVo, _nVu, _bVl, _tV, _eV, _lVi, _mV, _sVt, _rSV], - [0, 2, 1, 21, 4, 0, 64 | 0, 128 | 0, () => GreetingStruct, () => GreetingStruct_n2], + [0, 2, 1, 21, 4, 0, 64 | 0, 128 | 0, () => GreetingStruct_n1, () => GreetingStruct], ]; export var PayloadUnion: StaticStructureSchema = [3, n0, _PU, 0, [_uM], [0]]; export var PlayerAction: StaticStructureSchema = [3, n0, _PA, 0, [_qu], [() => __Unit]]; @@ -3200,7 +3200,7 @@ export var MalformedAcceptWithBody: StaticOperationSchema = [ [_ht]: ["POST", "/MalformedAcceptWithBody", 200], }, () => __Unit, - () => GreetingStruct, + () => GreetingStruct_n1, ]; export var MalformedAcceptWithGenericString: StaticOperationSchema = [ 9, @@ -3259,7 +3259,7 @@ export var MalformedContentTypeWithBody: StaticOperationSchema = [ { [_ht]: ["POST", "/MalformedContentTypeWithBody", 200], }, - () => GreetingStruct, + () => GreetingStruct_n1, () => __Unit, ]; export var MalformedContentTypeWithGenericString: StaticOperationSchema = [ diff --git a/private/aws-protocoltests-restjson-schema/test/functional/restjson1.spec.ts b/private/aws-protocoltests-restjson-schema/test/functional/restjson1.spec.ts index 1cd35f81ce592..23335712ca698 100644 --- a/private/aws-protocoltests-restjson-schema/test/functional/restjson1.spec.ts +++ b/private/aws-protocoltests-restjson-schema/test/functional/restjson1.spec.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; import { buildQueryString } from "@smithy/querystring-builder"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { AllQueryStringTypesCommand } from "../../src/commands/AllQueryStringTypesCommand"; diff --git a/private/aws-protocoltests-restjson/package.json b/private/aws-protocoltests-restjson/package.json index 454147773093d..52aee1311fe87 100644 --- a/private/aws-protocoltests-restjson/package.json +++ b/private/aws-protocoltests-restjson/package.json @@ -34,7 +34,7 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/eventstream-codec": "^4.2.5", "@smithy/eventstream-serde-browser": "^4.2.5", "@smithy/eventstream-serde-config-resolver": "^4.3.5", @@ -46,24 +46,24 @@ "@smithy/invalid-dependency": "^4.2.5", "@smithy/md5-js": "^4.2.5", "@smithy/middleware-apply-body-checksum": "^4.3.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", "@smithy/querystring-builder": "^4.2.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-restjson/src/RestJsonProtocol.ts b/private/aws-protocoltests-restjson/src/RestJsonProtocol.ts index 0f27ea4c5ea3c..fdca8b72e9caf 100644 --- a/private/aws-protocoltests-restjson/src/RestJsonProtocol.ts +++ b/private/aws-protocoltests-restjson/src/RestJsonProtocol.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AllQueryStringTypesCommand, @@ -543,7 +543,7 @@ import { UnitInputAndOutputCommandInput, UnitInputAndOutputCommandOutput, } from "./commands/UnitInputAndOutputCommand"; -import { RestJsonProtocolClient, RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; +import { RestJsonProtocolClient } from "./RestJsonProtocolClient"; const commands = { AllQueryStringTypesCommand, diff --git a/private/aws-protocoltests-restjson/src/RestJsonProtocolClient.ts b/private/aws-protocoltests-restjson/src/RestJsonProtocolClient.ts index 77dfb6a39592d..5800d908ee4dd 100644 --- a/private/aws-protocoltests-restjson/src/RestJsonProtocolClient.ts +++ b/private/aws-protocoltests-restjson/src/RestJsonProtocolClient.ts @@ -1,82 +1,91 @@ // smithy-typescript generated code import { - EventStreamInputConfig, - EventStreamResolvedConfig, + type EventStreamInputConfig, + type EventStreamResolvedConfig, resolveEventStreamConfig, } from "@aws-sdk/middleware-eventstream"; import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { EventStreamPayloadHandlerProvider as __EventStreamPayloadHandlerProvider } from "@aws-sdk/types"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core"; import { - EventStreamSerdeInputConfig, - EventStreamSerdeResolvedConfig, + type EventStreamSerdeInputConfig, + type EventStreamSerdeResolvedConfig, resolveEventStreamSerdeConfig, } from "@smithy/eventstream-serde-config-resolver"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type Checksum as __Checksum, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type EventStreamSerdeProvider as __EventStreamSerdeProvider, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type SdkStreamMixinInjector as __SdkStreamMixinInjector, + type StreamCollector as __StreamCollector, + type StreamHasher as __StreamHasher, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - Checksum as __Checksum, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - EventStreamSerdeProvider as __EventStreamSerdeProvider, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, Provider, - SdkStreamMixinInjector as __SdkStreamMixinInjector, - StreamCollector as __StreamCollector, - StreamHasher as __StreamHasher, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { Readable } from "stream"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRestJsonProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -400,7 +409,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-restjson/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-restjson/src/auth/httpAuthExtensionConfiguration.ts index 62fd1e214aa35..22a1ee4676343 100644 --- a/private/aws-protocoltests-restjson/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-restjson/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RestJsonProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RestJsonProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-restjson/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-restjson/src/auth/httpAuthSchemeProvider.ts index c6e3e213949fb..0faeadc95fda6 100644 --- a/private/aws-protocoltests-restjson/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-restjson/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RestJsonProtocolClientConfig, RestJsonProtocolClientResolvedConfig } from "../RestJsonProtocolClient"; +import { type RestJsonProtocolClientResolvedConfig, RestJsonProtocolClientConfig } from "../RestJsonProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts b/private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts index f948d5a80a6bd..63e68c9de5cbc 100644 --- a/private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/AllQueryStringTypesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllQueryStringTypesInput } from "../models/models_0"; +import type { AllQueryStringTypesInput } from "../models/models_0"; import { de_AllQueryStringTypesCommand, se_AllQueryStringTypesCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts index 2a9f8d3bb1f94..7373577e9e127 100644 --- a/private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ConstantAndVariableQueryStringCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConstantAndVariableQueryStringInput } from "../models/models_0"; +import type { ConstantAndVariableQueryStringInput } from "../models/models_0"; import { de_ConstantAndVariableQueryStringCommand, se_ConstantAndVariableQueryStringCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts index cf60215558e07..6e0e965b28625 100644 --- a/private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ConstantQueryStringCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConstantQueryStringInput } from "../models/models_0"; +import type { ConstantQueryStringInput } from "../models/models_0"; import { de_ConstantQueryStringCommand, se_ConstantQueryStringCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-restjson/src/commands/ContentTypeParametersCommand.ts index b6009630722ae..18336892686f6 100644 --- a/private/aws-protocoltests-restjson/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ContentTypeParametersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; +import type { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; import { de_ContentTypeParametersCommand, se_ContentTypeParametersCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-restjson/src/commands/DatetimeOffsetsCommand.ts index 6f8ed8db14213..3a976eae66c20 100644 --- a/private/aws-protocoltests-restjson/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DatetimeOffsetsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DatetimeOffsetsOutput } from "../models/models_0"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; import { de_DatetimeOffsetsCommand, se_DatetimeOffsetsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsMapValueCommand.ts b/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsMapValueCommand.ts index 97871ca7f8e58..6107b7ed53d97 100644 --- a/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsMapValueCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsMapValueCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentTypeAsMapValueInputOutput } from "../models/models_0"; +import type { DocumentTypeAsMapValueInputOutput } from "../models/models_0"; import { de_DocumentTypeAsMapValueCommand, se_DocumentTypeAsMapValueCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts index cea79c911ffb5..ab4208f86e8ea 100644 --- a/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DocumentTypeAsPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentTypeAsPayloadInputOutput } from "../models/models_0"; +import type { DocumentTypeAsPayloadInputOutput } from "../models/models_0"; import { de_DocumentTypeAsPayloadCommand, se_DocumentTypeAsPayloadCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts b/private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts index 0011ac7c89b32..7d2e8460b050b 100644 --- a/private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DocumentTypeCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DocumentTypeInputOutput } from "../models/models_0"; +import type { DocumentTypeInputOutput } from "../models/models_0"; import { de_DocumentTypeCommand, se_DocumentTypeCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/DuplexStreamCommand.ts b/private/aws-protocoltests-restjson/src/commands/DuplexStreamCommand.ts index 37597c7b5bfb6..747f3985ac88c 100644 --- a/private/aws-protocoltests-restjson/src/commands/DuplexStreamCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DuplexStreamCommand.ts @@ -3,17 +3,21 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { - DuplexStreamInput, + type DuplexStreamInput, + type DuplexStreamOutput, DuplexStreamInputFilterSensitiveLog, - DuplexStreamOutput, DuplexStreamOutputFilterSensitiveLog, } from "../models/models_0"; import { de_DuplexStreamCommand, se_DuplexStreamCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/DuplexStreamWithDistinctStreamsCommand.ts b/private/aws-protocoltests-restjson/src/commands/DuplexStreamWithDistinctStreamsCommand.ts index b7d8ea6005ce7..1897707141d73 100644 --- a/private/aws-protocoltests-restjson/src/commands/DuplexStreamWithDistinctStreamsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DuplexStreamWithDistinctStreamsCommand.ts @@ -3,19 +3,23 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { - DuplexStreamWithDistinctStreamsInput, + type DuplexStreamWithDistinctStreamsInput, + type DuplexStreamWithDistinctStreamsOutput, DuplexStreamWithDistinctStreamsInputFilterSensitiveLog, - DuplexStreamWithDistinctStreamsOutput, } from "../models/models_0"; import { de_DuplexStreamWithDistinctStreamsCommand, se_DuplexStreamWithDistinctStreamsCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/DuplexStreamWithInitialMessagesCommand.ts b/private/aws-protocoltests-restjson/src/commands/DuplexStreamWithInitialMessagesCommand.ts index 222c43d19777e..f2f9d48633469 100644 --- a/private/aws-protocoltests-restjson/src/commands/DuplexStreamWithInitialMessagesCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/DuplexStreamWithInitialMessagesCommand.ts @@ -3,20 +3,24 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { - DuplexStreamWithInitialMessagesInput, + type DuplexStreamWithInitialMessagesInput, + type DuplexStreamWithInitialMessagesOutput, DuplexStreamWithInitialMessagesInputFilterSensitiveLog, - DuplexStreamWithInitialMessagesOutput, DuplexStreamWithInitialMessagesOutputFilterSensitiveLog, } from "../models/models_0"; import { de_DuplexStreamWithInitialMessagesCommand, se_DuplexStreamWithInitialMessagesCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts index 0fd422bdd55e8..2487a38550c2e 100644 --- a/private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; import { de_EmptyInputAndEmptyOutputCommand, se_EmptyInputAndEmptyOutputCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts index b32248a4f6d6f..2b6fabea85c2e 100644 --- a/private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/EndpointOperationCommand.ts @@ -2,11 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_EndpointOperationCommand, se_EndpointOperationCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts index b46369e67578c..c60adbb59ca9a 100644 --- a/private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HostLabelInput } from "../models/models_0"; +import type { HostLabelInput } from "../models/models_0"; import { de_EndpointWithHostLabelOperationCommand, se_EndpointWithHostLabelOperationCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-restjson/src/commands/FractionalSecondsCommand.ts index 72a63ffee3406..62981c709fda5 100644 --- a/private/aws-protocoltests-restjson/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/FractionalSecondsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; +import type { FractionalSecondsOutput } from "../models/models_0"; import { de_FractionalSecondsCommand, se_FractionalSecondsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts index fbc3bf8ffbf73..4636d3f0536bc 100644 --- a/private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/GreetingWithErrorsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; import { de_GreetingWithErrorsCommand, se_GreetingWithErrorsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts index 31e478e077795..f7af0aa88d1fd 100644 --- a/private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HostWithPathOperationCommand.ts @@ -2,11 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_HostWithPathOperationCommand, se_HostWithPathOperationCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts index 1c8a561d4baa8..a0b9814aaf601 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpChecksumRequiredCommand.ts @@ -3,12 +3,16 @@ import { getApplyMd5BodyChecksumPlugin } from "@smithy/middleware-apply-body-che import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpChecksumRequiredInputOutput } from "../models/models_0"; +import type { HttpChecksumRequiredInputOutput } from "../models/models_0"; import { de_HttpChecksumRequiredCommand, se_HttpChecksumRequiredCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpEmptyPrefixHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpEmptyPrefixHeadersCommand.ts index fbeaff58ccfaa..8c67f6b029fcd 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpEmptyPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpEmptyPrefixHeadersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpEmptyPrefixHeadersInput, HttpEmptyPrefixHeadersOutput } from "../models/models_0"; +import type { HttpEmptyPrefixHeadersInput, HttpEmptyPrefixHeadersOutput } from "../models/models_0"; import { de_HttpEmptyPrefixHeadersCommand, se_HttpEmptyPrefixHeadersCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts index 8efeed98ad621..8861671acf215 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpEnumPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnumPayloadInput } from "../models/models_0"; +import type { EnumPayloadInput } from "../models/models_0"; import { de_HttpEnumPayloadCommand, se_HttpEnumPayloadCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts index 7e78e74ef75f9..43a218b74ef79 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsCommand.ts @@ -2,13 +2,17 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; import { HttpPayloadTraitsInputOutput } from "../models/models_0"; import { de_HttpPayloadTraitsCommand, se_HttpPayloadTraitsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts index 8c1e85e665538..433662eab4421 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts @@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; @@ -11,7 +11,11 @@ import { de_HttpPayloadTraitsWithMediaTypeCommand, se_HttpPayloadTraitsWithMediaTypeCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts index 97c318a61b0d5..79f43c639edc7 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithStructureCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithStructureInputOutput } from "../models/models_0"; +import type { HttpPayloadWithStructureInputOutput } from "../models/models_0"; import { de_HttpPayloadWithStructureCommand, se_HttpPayloadWithStructureCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithUnionCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithUnionCommand.ts index 75351c5308cd6..eeaef69227f49 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithUnionCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPayloadWithUnionCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithUnionInputOutput } from "../models/models_0"; +import type { HttpPayloadWithUnionInputOutput } from "../models/models_0"; import { de_HttpPayloadWithUnionCommand, se_HttpPayloadWithUnionCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts index c506bad8566c2..21f74ef7c0c5e 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPrefixHeadersInput, HttpPrefixHeadersOutput } from "../models/models_0"; +import type { HttpPrefixHeadersInput, HttpPrefixHeadersOutput } from "../models/models_0"; import { de_HttpPrefixHeadersCommand, se_HttpPrefixHeadersCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersInResponseCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersInResponseCommand.ts index 8c8f0729367fc..5eabaf7b420f9 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersInResponseCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpPrefixHeadersInResponseCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPrefixHeadersInResponseInput, HttpPrefixHeadersInResponseOutput } from "../models/models_0"; +import type { HttpPrefixHeadersInResponseInput, HttpPrefixHeadersInResponseOutput } from "../models/models_0"; import { de_HttpPrefixHeadersInResponseCommand, se_HttpPrefixHeadersInResponseCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpQueryParamsOnlyOperationCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpQueryParamsOnlyOperationCommand.ts index 998b010c4a9b9..bac961c9f1e26 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpQueryParamsOnlyOperationCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpQueryParamsOnlyOperationCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpQueryParamsOnlyInput } from "../models/models_0"; +import type { HttpQueryParamsOnlyInput } from "../models/models_0"; import { de_HttpQueryParamsOnlyOperationCommand, se_HttpQueryParamsOnlyOperationCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts index ac587960736d5..b10717ee32faa 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithFloatLabelsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithFloatLabelsInput } from "../models/models_0"; +import type { HttpRequestWithFloatLabelsInput } from "../models/models_0"; import { de_HttpRequestWithFloatLabelsCommand, se_HttpRequestWithFloatLabelsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts index 9eb60bb44e7fa..02f64a8c36811 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithGreedyLabelInPathInput } from "../models/models_0"; +import type { HttpRequestWithGreedyLabelInPathInput } from "../models/models_0"; import { de_HttpRequestWithGreedyLabelInPathCommand, se_HttpRequestWithGreedyLabelInPathCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts index a27700f656a36..58ad767a1d452 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithLabelsAndTimestampFormatInput } from "../models/models_0"; +import type { HttpRequestWithLabelsAndTimestampFormatInput } from "../models/models_0"; import { de_HttpRequestWithLabelsAndTimestampFormatCommand, se_HttpRequestWithLabelsAndTimestampFormatCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts index 5a9d64bf4da0a..2448172b15e83 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithLabelsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithLabelsInput } from "../models/models_0"; +import type { HttpRequestWithLabelsInput } from "../models/models_0"; import { de_HttpRequestWithLabelsCommand, se_HttpRequestWithLabelsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithRegexLiteralCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithRegexLiteralCommand.ts index 82cab1d218fb6..fe45b94e33ac4 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpRequestWithRegexLiteralCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpRequestWithRegexLiteralCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithRegexLiteralInput } from "../models/models_0"; +import type { HttpRequestWithRegexLiteralInput } from "../models/models_0"; import { de_HttpRequestWithRegexLiteralCommand, se_HttpRequestWithRegexLiteralCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts index 4560979d2c80f..92c32ab6a3c18 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpResponseCodeCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpResponseCodeOutput } from "../models/models_0"; +import type { HttpResponseCodeOutput } from "../models/models_0"; import { de_HttpResponseCodeCommand, se_HttpResponseCodeCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts index 1158d0c36b8d7..29e4512cefbcc 100644 --- a/private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/HttpStringPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StringPayloadInput } from "../models/models_0"; +import type { StringPayloadInput } from "../models/models_0"; import { de_HttpStringPayloadCommand, se_HttpStringPayloadCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts b/private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts index 0f7811d5d0182..9b5ec30aeb1f0 100644 --- a/private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/IgnoreQueryParamsInResponseCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IgnoreQueryParamsInResponseOutput } from "../models/models_0"; +import type { IgnoreQueryParamsInResponseOutput } from "../models/models_0"; import { de_IgnoreQueryParamsInResponseCommand, se_IgnoreQueryParamsInResponseCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts index 19685375b1619..1ba1aa83c7ee7 100644 --- a/private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/InputAndOutputWithHeadersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InputAndOutputWithHeadersIO } from "../models/models_0"; +import type { InputAndOutputWithHeadersIO } from "../models/models_0"; import { de_InputAndOutputWithHeadersCommand, se_InputAndOutputWithHeadersCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/InputStreamCommand.ts b/private/aws-protocoltests-restjson/src/commands/InputStreamCommand.ts index 9f9b10ca4ce18..6bc324b8cc194 100644 --- a/private/aws-protocoltests-restjson/src/commands/InputStreamCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/InputStreamCommand.ts @@ -3,12 +3,16 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InputStreamInput, InputStreamInputFilterSensitiveLog } from "../models/models_0"; +import { type InputStreamInput, InputStreamInputFilterSensitiveLog } from "../models/models_0"; import { de_InputStreamCommand, se_InputStreamCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/InputStreamWithInitialRequestCommand.ts b/private/aws-protocoltests-restjson/src/commands/InputStreamWithInitialRequestCommand.ts index 68b51e6925b89..001bc70a253d8 100644 --- a/private/aws-protocoltests-restjson/src/commands/InputStreamWithInitialRequestCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/InputStreamWithInitialRequestCommand.ts @@ -3,18 +3,22 @@ import { getEventStreamPlugin } from "@aws-sdk/middleware-eventstream"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { - InputStreamWithInitialRequestInput, + type InputStreamWithInitialRequestInput, InputStreamWithInitialRequestInputFilterSensitiveLog, } from "../models/models_0"; import { de_InputStreamWithInitialRequestCommand, se_InputStreamWithInitialRequestCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts index f0b78231e91c4..4dffdf7d61644 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonBlobsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonBlobsInputOutput } from "../models/models_0"; +import type { JsonBlobsInputOutput } from "../models/models_0"; import { de_JsonBlobsCommand, se_JsonBlobsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts index ec94793f990c3..1325e910af625 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonEnumsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonEnumsInputOutput } from "../models/models_0"; +import type { JsonEnumsInputOutput } from "../models/models_0"; import { de_JsonEnumsCommand, se_JsonEnumsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/JsonIntEnumsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonIntEnumsCommand.ts index 64bb699679867..3a8c122990c31 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonIntEnumsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonIntEnumsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonIntEnumsInputOutput } from "../models/models_0"; +import type { JsonIntEnumsInputOutput } from "../models/models_0"; import { de_JsonIntEnumsCommand, se_JsonIntEnumsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts index 5a6c6a2e12e41..1ff2ec147e923 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonListsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonListsInputOutput } from "../models/models_0"; +import type { JsonListsInputOutput } from "../models/models_0"; import { de_JsonListsCommand, se_JsonListsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts index 662ad53d7a8ee..2b5fbf78496c8 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonMapsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonMapsInputOutput } from "../models/models_0"; +import type { JsonMapsInputOutput } from "../models/models_0"; import { de_JsonMapsCommand, se_JsonMapsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts index 52e03f2d8c7c8..cf5fb8ba1979a 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonTimestampsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { JsonTimestampsInputOutput } from "../models/models_0"; +import type { JsonTimestampsInputOutput } from "../models/models_0"; import { de_JsonTimestampsCommand, se_JsonTimestampsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts b/private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts index 29c2886027fb3..00d3daa5ce911 100644 --- a/private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/JsonUnionsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { UnionInputOutput } from "../models/models_0"; +import type { UnionInputOutput } from "../models/models_0"; import { de_JsonUnionsCommand, se_JsonUnionsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts index 5f28e4dc10b22..5df4d0d212bd7 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithBodyCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingStruct } from "../models/models_0"; +import type { GreetingStruct } from "../models/models_0"; import { de_MalformedAcceptWithBodyCommand, se_MalformedAcceptWithBodyCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts index 0a521e8c3a10e..c4a04f951bff5 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithGenericStringCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedAcceptWithGenericStringOutput } from "../models/models_0"; +import type { MalformedAcceptWithGenericStringOutput } from "../models/models_0"; import { de_MalformedAcceptWithGenericStringCommand, se_MalformedAcceptWithGenericStringCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts index e68c72627161a..888ace92fdab7 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedAcceptWithPayloadCommand.ts @@ -2,13 +2,17 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; import { MalformedAcceptWithPayloadOutput } from "../models/models_0"; import { de_MalformedAcceptWithPayloadCommand, se_MalformedAcceptWithPayloadCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts index 9eec603bc62c5..ac7d3d3083018 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedBlobCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedBlobInput } from "../models/models_0"; +import type { MalformedBlobInput } from "../models/models_0"; import { de_MalformedBlobCommand, se_MalformedBlobCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts index 51ec32b9176cf..78d08a62a36af 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedBooleanCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedBooleanInput } from "../models/models_0"; +import type { MalformedBooleanInput } from "../models/models_0"; import { de_MalformedBooleanCommand, se_MalformedBooleanCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts index 05da04333ead8..2a6d60d06c153 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedByteCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedByteInput } from "../models/models_0"; +import type { MalformedByteInput } from "../models/models_0"; import { de_MalformedByteCommand, se_MalformedByteCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts index 53f3994c71c9e..d8775d0998202 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithBodyCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingStruct } from "../models/models_0"; +import type { GreetingStruct } from "../models/models_0"; import { de_MalformedContentTypeWithBodyCommand, se_MalformedContentTypeWithBodyCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts index acd37dd6c4c9d..f1a8511b2f050 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithGenericStringCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedContentTypeWithGenericStringInput } from "../models/models_0"; +import type { MalformedContentTypeWithGenericStringInput } from "../models/models_0"; import { de_MalformedContentTypeWithGenericStringCommand, se_MalformedContentTypeWithGenericStringCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts index 4d0ee1f8ed7ba..46cd7bba7a05a 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithPayloadCommand.ts @@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { MalformedContentTypeWithPayloadInput } from "../models/models_0"; @@ -10,7 +10,11 @@ import { de_MalformedContentTypeWithPayloadCommand, se_MalformedContentTypeWithPayloadCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts index 4c5627c34dbdb..ee7e29e8d8dc3 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyCommand.ts @@ -2,14 +2,18 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_MalformedContentTypeWithoutBodyCommand, se_MalformedContentTypeWithoutBodyCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts index 99a203be3beff..7c232918c2d48 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedContentTypeWithoutBodyEmptyInputCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedContentTypeWithoutBodyEmptyInputInput } from "../models/models_0"; +import type { MalformedContentTypeWithoutBodyEmptyInputInput } from "../models/models_0"; import { de_MalformedContentTypeWithoutBodyEmptyInputCommand, se_MalformedContentTypeWithoutBodyEmptyInputCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts index 79e2a4034f19e..70a08788fc711 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedDoubleCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedDoubleInput } from "../models/models_0"; +import type { MalformedDoubleInput } from "../models/models_0"; import { de_MalformedDoubleCommand, se_MalformedDoubleCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts index 37be31d3bc029..52fdf932c38f8 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedFloatCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedFloatInput } from "../models/models_0"; +import type { MalformedFloatInput } from "../models/models_0"; import { de_MalformedFloatCommand, se_MalformedFloatCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts index 76a30c6785a13..706b208df16bd 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedIntegerCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedIntegerInput } from "../models/models_0"; +import type { MalformedIntegerInput } from "../models/models_0"; import { de_MalformedIntegerCommand, se_MalformedIntegerCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts index e2037b7d895b0..c1daf1150f1e8 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedListCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedListInput } from "../models/models_0"; +import type { MalformedListInput } from "../models/models_0"; import { de_MalformedListCommand, se_MalformedListCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts index 71b5d5d6d60ab..6b32ee0e65688 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedLongCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedLongInput } from "../models/models_0"; +import type { MalformedLongInput } from "../models/models_0"; import { de_MalformedLongCommand, se_MalformedLongCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts index 0e155c5c91efa..46c50682d7b41 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedMapCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedMapInput } from "../models/models_0"; +import type { MalformedMapInput } from "../models/models_0"; import { de_MalformedMapCommand, se_MalformedMapCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts index 5dd961d48f3ba..357ca1b34f033 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedRequestBodyCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedRequestBodyInput } from "../models/models_0"; +import type { MalformedRequestBodyInput } from "../models/models_0"; import { de_MalformedRequestBodyCommand, se_MalformedRequestBodyCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts index a3911457f7026..d712869a4bef7 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedShortCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedShortInput } from "../models/models_0"; +import type { MalformedShortInput } from "../models/models_0"; import { de_MalformedShortCommand, se_MalformedShortCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts index 6b99be734d71d..031ee965f7096 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedStringCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedStringInput } from "../models/models_0"; +import type { MalformedStringInput } from "../models/models_0"; import { de_MalformedStringCommand, se_MalformedStringCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts index adcd674ab8e9f..043f315ea38e6 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDateTimeCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampBodyDateTimeInput } from "../models/models_0"; +import type { MalformedTimestampBodyDateTimeInput } from "../models/models_0"; import { de_MalformedTimestampBodyDateTimeCommand, se_MalformedTimestampBodyDateTimeCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts index 5458c6dea5992..028093bf5febe 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyDefaultCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampBodyDefaultInput } from "../models/models_0"; +import type { MalformedTimestampBodyDefaultInput } from "../models/models_0"; import { de_MalformedTimestampBodyDefaultCommand, se_MalformedTimestampBodyDefaultCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts index 5e74a6f018f9e..73d6dd6681c81 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampBodyHttpDateCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampBodyHttpDateInput } from "../models/models_0"; +import type { MalformedTimestampBodyHttpDateInput } from "../models/models_0"; import { de_MalformedTimestampBodyHttpDateCommand, se_MalformedTimestampBodyHttpDateCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts index 2f169e61767b9..228e2fc1906de 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDateTimeCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampHeaderDateTimeInput } from "../models/models_0"; +import type { MalformedTimestampHeaderDateTimeInput } from "../models/models_0"; import { de_MalformedTimestampHeaderDateTimeCommand, se_MalformedTimestampHeaderDateTimeCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts index f86c878f52532..86083ca713195 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderDefaultCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampHeaderDefaultInput } from "../models/models_0"; +import type { MalformedTimestampHeaderDefaultInput } from "../models/models_0"; import { de_MalformedTimestampHeaderDefaultCommand, se_MalformedTimestampHeaderDefaultCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts index ae1d9e462d35e..b444ec017aef8 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampHeaderEpochCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampHeaderEpochInput } from "../models/models_0"; +import type { MalformedTimestampHeaderEpochInput } from "../models/models_0"; import { de_MalformedTimestampHeaderEpochCommand, se_MalformedTimestampHeaderEpochCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts index 49ff51814da93..aa136996ec9fc 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathDefaultCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampPathDefaultInput } from "../models/models_0"; +import type { MalformedTimestampPathDefaultInput } from "../models/models_0"; import { de_MalformedTimestampPathDefaultCommand, se_MalformedTimestampPathDefaultCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts index 799db76830516..7ed91a06a74ae 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathEpochCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampPathEpochInput } from "../models/models_0"; +import type { MalformedTimestampPathEpochInput } from "../models/models_0"; import { de_MalformedTimestampPathEpochCommand, se_MalformedTimestampPathEpochCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts index 7ffca05315629..e2659db13b58f 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampPathHttpDateCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampPathHttpDateInput } from "../models/models_0"; +import type { MalformedTimestampPathHttpDateInput } from "../models/models_0"; import { de_MalformedTimestampPathHttpDateCommand, se_MalformedTimestampPathHttpDateCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts index 612d2497ad281..4c0b8d6e591de 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryDefaultCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampQueryDefaultInput } from "../models/models_0"; +import type { MalformedTimestampQueryDefaultInput } from "../models/models_0"; import { de_MalformedTimestampQueryDefaultCommand, se_MalformedTimestampQueryDefaultCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts index 4709897cf1db6..009e17622e5cf 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryEpochCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampQueryEpochInput } from "../models/models_0"; +import type { MalformedTimestampQueryEpochInput } from "../models/models_0"; import { de_MalformedTimestampQueryEpochCommand, se_MalformedTimestampQueryEpochCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts index 86282ac1855cb..e99f7d34d9ea5 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedTimestampQueryHttpDateCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedTimestampQueryHttpDateInput } from "../models/models_0"; +import type { MalformedTimestampQueryHttpDateInput } from "../models/models_0"; import { de_MalformedTimestampQueryHttpDateCommand, se_MalformedTimestampQueryHttpDateCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts b/private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts index bc49bec48c267..dd8f65d4ed9a7 100644 --- a/private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MalformedUnionCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MalformedUnionInput } from "../models/models_0"; +import type { MalformedUnionInput } from "../models/models_0"; import { de_MalformedUnionCommand, se_MalformedUnionCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts b/private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts index c78d5d832a90e..3db2c79ca8017 100644 --- a/private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/MediaTypeHeaderCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { MediaTypeHeaderInput, MediaTypeHeaderOutput } from "../models/models_0"; +import type { MediaTypeHeaderInput, MediaTypeHeaderOutput } from "../models/models_0"; import { de_MediaTypeHeaderCommand, se_MediaTypeHeaderCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts index c2d3eab675250..d9634eb762b68 100644 --- a/private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/NoInputAndNoOutputCommand.ts @@ -2,11 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_NoInputAndNoOutputCommand, se_NoInputAndNoOutputCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts index c0105c8cb5112..647c0040cee7e 100644 --- a/private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/NoInputAndOutputCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NoInputAndOutputOutput } from "../models/models_0"; +import type { NoInputAndOutputOutput } from "../models/models_0"; import { de_NoInputAndOutputCommand, se_NoInputAndOutputCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts index 6c9a27e1072fb..bf72dc6a5fe89 100644 --- a/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersClientCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NullAndEmptyHeadersIO } from "../models/models_0"; +import type { NullAndEmptyHeadersIO } from "../models/models_0"; import { de_NullAndEmptyHeadersClientCommand, se_NullAndEmptyHeadersClientCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts index 3f7d26a7bd991..fd52c7300926b 100644 --- a/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/NullAndEmptyHeadersServerCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NullAndEmptyHeadersIO } from "../models/models_0"; +import type { NullAndEmptyHeadersIO } from "../models/models_0"; import { de_NullAndEmptyHeadersServerCommand, se_NullAndEmptyHeadersServerCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts b/private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts index 29549291c9bd7..ee416ae03f4e6 100644 --- a/private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OmitsNullSerializesEmptyStringCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OmitsNullSerializesEmptyStringInput } from "../models/models_0"; +import type { OmitsNullSerializesEmptyStringInput } from "../models/models_0"; import { de_OmitsNullSerializesEmptyStringCommand, se_OmitsNullSerializesEmptyStringCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/OmitsSerializingEmptyListsCommand.ts b/private/aws-protocoltests-restjson/src/commands/OmitsSerializingEmptyListsCommand.ts index f65f688c949e4..7f0e4856a39a7 100644 --- a/private/aws-protocoltests-restjson/src/commands/OmitsSerializingEmptyListsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OmitsSerializingEmptyListsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OmitsSerializingEmptyListsInput } from "../models/models_0"; +import type { OmitsSerializingEmptyListsInput } from "../models/models_0"; import { de_OmitsSerializingEmptyListsCommand, se_OmitsSerializingEmptyListsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/OperationWithDefaultsCommand.ts b/private/aws-protocoltests-restjson/src/commands/OperationWithDefaultsCommand.ts index 2408fc30b9ab0..ef57b30d7a0a4 100644 --- a/private/aws-protocoltests-restjson/src/commands/OperationWithDefaultsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OperationWithDefaultsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; +import type { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; import { de_OperationWithDefaultsCommand, se_OperationWithDefaultsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/OperationWithNestedStructureCommand.ts b/private/aws-protocoltests-restjson/src/commands/OperationWithNestedStructureCommand.ts index 52f18f92dbdbb..e388d513462d4 100644 --- a/private/aws-protocoltests-restjson/src/commands/OperationWithNestedStructureCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OperationWithNestedStructureCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OperationWithNestedStructureInput, OperationWithNestedStructureOutput } from "../models/models_0"; +import type { OperationWithNestedStructureInput, OperationWithNestedStructureOutput } from "../models/models_0"; import { de_OperationWithNestedStructureCommand, se_OperationWithNestedStructureCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/OutputStreamCommand.ts b/private/aws-protocoltests-restjson/src/commands/OutputStreamCommand.ts index b8f63ea0431f5..132ad64d453dd 100644 --- a/private/aws-protocoltests-restjson/src/commands/OutputStreamCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OutputStreamCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OutputStreamOutput, OutputStreamOutputFilterSensitiveLog } from "../models/models_0"; +import { type OutputStreamOutput, OutputStreamOutputFilterSensitiveLog } from "../models/models_0"; import { de_OutputStreamCommand, se_OutputStreamCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/OutputStreamWithInitialResponseCommand.ts b/private/aws-protocoltests-restjson/src/commands/OutputStreamWithInitialResponseCommand.ts index 5ee9ac9fdabe4..bcdac28943b51 100644 --- a/private/aws-protocoltests-restjson/src/commands/OutputStreamWithInitialResponseCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/OutputStreamWithInitialResponseCommand.ts @@ -2,18 +2,22 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { - OutputStreamWithInitialResponseOutput, + type OutputStreamWithInitialResponseOutput, OutputStreamWithInitialResponseOutputFilterSensitiveLog, } from "../models/models_0"; import { de_OutputStreamWithInitialResponseCommand, se_OutputStreamWithInitialResponseCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/PostPlayerActionCommand.ts b/private/aws-protocoltests-restjson/src/commands/PostPlayerActionCommand.ts index 57b38601b29fe..c2f1335a51d5a 100644 --- a/private/aws-protocoltests-restjson/src/commands/PostPlayerActionCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/PostPlayerActionCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostPlayerActionInput, PostPlayerActionOutput } from "../models/models_0"; +import type { PostPlayerActionInput, PostPlayerActionOutput } from "../models/models_0"; import { de_PostPlayerActionCommand, se_PostPlayerActionCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/PostUnionWithJsonNameCommand.ts b/private/aws-protocoltests-restjson/src/commands/PostUnionWithJsonNameCommand.ts index 41e3f759ba0bd..91132556f5608 100644 --- a/private/aws-protocoltests-restjson/src/commands/PostUnionWithJsonNameCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/PostUnionWithJsonNameCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PostUnionWithJsonNameInput, PostUnionWithJsonNameOutput } from "../models/models_0"; +import type { PostUnionWithJsonNameInput, PostUnionWithJsonNameOutput } from "../models/models_0"; import { de_PostUnionWithJsonNameCommand, se_PostUnionWithJsonNameCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-restjson/src/commands/PutWithContentEncodingCommand.ts index df70abdd9bd95..a2a6f0ddee984 100644 --- a/private/aws-protocoltests-restjson/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/PutWithContentEncodingCommand.ts @@ -3,12 +3,16 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWithContentEncodingInput } from "../models/models_0"; +import type { PutWithContentEncodingInput } from "../models/models_0"; import { de_PutWithContentEncodingCommand, se_PutWithContentEncodingCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index 99910ff410e44..9411af896b4ca 100644 --- a/private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; +import type { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; import { de_QueryIdempotencyTokenAutoFillCommand, se_QueryIdempotencyTokenAutoFillCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts b/private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts index f62b7a8418387..8ce530e848607 100644 --- a/private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/QueryParamsAsStringListMapCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryParamsAsStringListMapInput } from "../models/models_0"; +import type { QueryParamsAsStringListMapInput } from "../models/models_0"; import { de_QueryParamsAsStringListMapCommand, se_QueryParamsAsStringListMapCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts b/private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts index 7fb3521089be1..eb6e6f22712c9 100644 --- a/private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/QueryPrecedenceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryPrecedenceInput } from "../models/models_0"; +import type { QueryPrecedenceInput } from "../models/models_0"; import { de_QueryPrecedenceCommand, se_QueryPrecedenceCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts index 38e352216c090..2df87d8c46a18 100644 --- a/private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/RecursiveShapesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveShapesInputOutput } from "../models/models_0"; +import type { RecursiveShapesInputOutput } from "../models/models_0"; import { de_RecursiveShapesCommand, se_RecursiveShapesCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/ResponseCodeHttpFallbackCommand.ts b/private/aws-protocoltests-restjson/src/commands/ResponseCodeHttpFallbackCommand.ts index aa752a5bb496b..ad4957d348c08 100644 --- a/private/aws-protocoltests-restjson/src/commands/ResponseCodeHttpFallbackCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ResponseCodeHttpFallbackCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResponseCodeHttpFallbackInputOutput } from "../models/models_0"; +import type { ResponseCodeHttpFallbackInputOutput } from "../models/models_0"; import { de_ResponseCodeHttpFallbackCommand, se_ResponseCodeHttpFallbackCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/ResponseCodeRequiredCommand.ts b/private/aws-protocoltests-restjson/src/commands/ResponseCodeRequiredCommand.ts index 4568e093c6dec..3e70c7c2f5039 100644 --- a/private/aws-protocoltests-restjson/src/commands/ResponseCodeRequiredCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/ResponseCodeRequiredCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ResponseCodeRequiredOutput } from "../models/models_0"; +import type { ResponseCodeRequiredOutput } from "../models/models_0"; import { de_ResponseCodeRequiredCommand, se_ResponseCodeRequiredCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts index 2a031b67e67df..cb8886b5c045c 100644 --- a/private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/SimpleScalarPropertiesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarPropertiesInputOutput } from "../models/models_0"; +import type { SimpleScalarPropertiesInputOutput } from "../models/models_0"; import { de_SimpleScalarPropertiesCommand, se_SimpleScalarPropertiesCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/SparseJsonListsCommand.ts b/private/aws-protocoltests-restjson/src/commands/SparseJsonListsCommand.ts index 5ac6a1847034e..bd2c4e7b71d07 100644 --- a/private/aws-protocoltests-restjson/src/commands/SparseJsonListsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/SparseJsonListsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SparseJsonListsInputOutput } from "../models/models_0"; +import type { SparseJsonListsInputOutput } from "../models/models_0"; import { de_SparseJsonListsCommand, se_SparseJsonListsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/SparseJsonMapsCommand.ts b/private/aws-protocoltests-restjson/src/commands/SparseJsonMapsCommand.ts index b5913abbc1c1a..938478510ed05 100644 --- a/private/aws-protocoltests-restjson/src/commands/SparseJsonMapsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/SparseJsonMapsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SparseJsonMapsInputOutput } from "../models/models_0"; +import type { SparseJsonMapsInputOutput } from "../models/models_0"; import { de_SparseJsonMapsCommand, se_SparseJsonMapsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts index 95906fafa1372..a9e4725bc287f 100644 --- a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsCommand.ts @@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes, StreamingBlobPayloadOutputTypes, @@ -11,7 +11,11 @@ import { import { commonParams } from "../endpoint/EndpointParameters"; import { StreamingTraitsInputOutput, StreamingTraitsInputOutputFilterSensitiveLog } from "../models/models_0"; import { de_StreamingTraitsCommand, se_StreamingTraitsCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts index 83b8d0ddb1921..4e21f6ef47d3a 100644 --- a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsRequireLengthCommand.ts @@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { @@ -13,7 +13,11 @@ import { de_StreamingTraitsRequireLengthCommand, se_StreamingTraitsRequireLengthCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts index 2de74f0550233..4fe6f4ffce7e9 100644 --- a/private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/StreamingTraitsWithMediaTypeCommand.ts @@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { +import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes, StreamingBlobPayloadOutputTypes, @@ -17,7 +17,11 @@ import { de_StreamingTraitsWithMediaTypeCommand, se_StreamingTraitsWithMediaTypeCommand, } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/TestBodyStructureCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestBodyStructureCommand.ts index 131cf64f59e0b..d08623c02d877 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestBodyStructureCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestBodyStructureCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestBodyStructureInputOutput } from "../models/models_0"; +import type { TestBodyStructureInputOutput } from "../models/models_0"; import { de_TestBodyStructureCommand, se_TestBodyStructureCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/TestGetNoInputNoPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestGetNoInputNoPayloadCommand.ts index 501c1e7359f3c..9a1d6ec4e8b14 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestGetNoInputNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestGetNoInputNoPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestNoPayloadInputOutput } from "../models/models_0"; +import type { TestNoPayloadInputOutput } from "../models/models_0"; import { de_TestGetNoInputNoPayloadCommand, se_TestGetNoInputNoPayloadCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/TestGetNoPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestGetNoPayloadCommand.ts index a830226f724c1..86697bfb3125b 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestGetNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestGetNoPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestNoPayloadInputOutput } from "../models/models_0"; +import type { TestNoPayloadInputOutput } from "../models/models_0"; import { de_TestGetNoPayloadCommand, se_TestGetNoPayloadCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/TestPayloadBlobCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestPayloadBlobCommand.ts index 356c1fa737b12..8a3741b7380b3 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestPayloadBlobCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestPayloadBlobCommand.ts @@ -2,13 +2,17 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; import { TestPayloadBlobInputOutput } from "../models/models_0"; import { de_TestPayloadBlobCommand, se_TestPayloadBlobCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/TestPayloadStructureCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestPayloadStructureCommand.ts index 80c7b6f8fca6a..2349e38fa42d3 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestPayloadStructureCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestPayloadStructureCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestPayloadStructureInputOutput } from "../models/models_0"; +import type { TestPayloadStructureInputOutput } from "../models/models_0"; import { de_TestPayloadStructureCommand, se_TestPayloadStructureCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/TestPostNoInputNoPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestPostNoInputNoPayloadCommand.ts index 65d506997153e..0d4e2427d232a 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestPostNoInputNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestPostNoInputNoPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestNoPayloadInputOutput } from "../models/models_0"; +import type { TestNoPayloadInputOutput } from "../models/models_0"; import { de_TestPostNoInputNoPayloadCommand, se_TestPostNoInputNoPayloadCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/TestPostNoPayloadCommand.ts b/private/aws-protocoltests-restjson/src/commands/TestPostNoPayloadCommand.ts index 4d9edebfc329b..c626120512e9d 100644 --- a/private/aws-protocoltests-restjson/src/commands/TestPostNoPayloadCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TestPostNoPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TestNoPayloadInputOutput } from "../models/models_0"; +import type { TestNoPayloadInputOutput } from "../models/models_0"; import { de_TestPostNoPayloadCommand, se_TestPostNoPayloadCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts b/private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts index a7910d0fe84f5..95c670eef1b9d 100644 --- a/private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/TimestampFormatHeadersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TimestampFormatHeadersIO } from "../models/models_0"; +import type { TimestampFormatHeadersIO } from "../models/models_0"; import { de_TimestampFormatHeadersCommand, se_TimestampFormatHeadersCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/commands/UnitInputAndOutputCommand.ts b/private/aws-protocoltests-restjson/src/commands/UnitInputAndOutputCommand.ts index 41303b53e19e9..0920d10cc3dd7 100644 --- a/private/aws-protocoltests-restjson/src/commands/UnitInputAndOutputCommand.ts +++ b/private/aws-protocoltests-restjson/src/commands/UnitInputAndOutputCommand.ts @@ -2,11 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_UnitInputAndOutputCommand, se_UnitInputAndOutputCommand } from "../protocols/Aws_restJson1"; -import { RestJsonProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestJsonProtocolClient"; +import type { + RestJsonProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestJsonProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-restjson/src/endpoint/EndpointParameters.ts index 4cd8f2aa562a3..7f8c4865a61ee 100644 --- a/private/aws-protocoltests-restjson/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-restjson/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-restjson/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-restjson/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-restjson/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-restjson/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-restjson/src/endpoint/ruleset.ts b/private/aws-protocoltests-restjson/src/endpoint/ruleset.ts index 6eaa2aeabbdbb..e3b156d2b7c81 100644 --- a/private/aws-protocoltests-restjson/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-restjson/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-restjson/src/extensionConfiguration.ts b/private/aws-protocoltests-restjson/src/extensionConfiguration.ts index c6f06b73c692a..aff4190ff4131 100644 --- a/private/aws-protocoltests-restjson/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-restjson/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-restjson/src/models/RestJsonProtocolServiceException.ts b/private/aws-protocoltests-restjson/src/models/RestJsonProtocolServiceException.ts index b107bd85b4928..862fa46fb1d6e 100644 --- a/private/aws-protocoltests-restjson/src/models/RestJsonProtocolServiceException.ts +++ b/private/aws-protocoltests-restjson/src/models/RestJsonProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-restjson/src/models/errors.ts b/private/aws-protocoltests-restjson/src/models/errors.ts index bd41d2117bd95..f1a7888acc06a 100644 --- a/private/aws-protocoltests-restjson/src/models/errors.ts +++ b/private/aws-protocoltests-restjson/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ComplexNestedErrorData } from "./models_0"; import { RestJsonProtocolServiceException as __BaseException } from "./RestJsonProtocolServiceException"; diff --git a/private/aws-protocoltests-restjson/src/protocols/Aws_restJson1.ts b/private/aws-protocoltests-restjson/src/protocols/Aws_restJson1.ts index 51ce07fa49d4d..a5108d3dbdc09 100644 --- a/private/aws-protocoltests-restjson/src/protocols/Aws_restJson1.ts +++ b/private/aws-protocoltests-restjson/src/protocols/Aws_restJson1.ts @@ -53,14 +53,14 @@ import { withBaseException, } from "@smithy/smithy-client"; import { + type Endpoint as __Endpoint, + type EventStreamSerdeContext as __EventStreamSerdeContext, + type Message as __Message, + type MessageHeaders as __MessageHeaders, + type ResponseMetadata as __ResponseMetadata, + type SdkStreamSerdeContext as __SdkStreamSerdeContext, + type SerdeContext as __SerdeContext, DocumentType as __DocumentType, - Endpoint as __Endpoint, - EventStreamSerdeContext as __EventStreamSerdeContext, - Message as __Message, - MessageHeaders as __MessageHeaders, - ResponseMetadata as __ResponseMetadata, - SdkStreamSerdeContext as __SdkStreamSerdeContext, - SerdeContext as __SerdeContext, } from "@smithy/types"; import { v4 as generateIdempotencyToken } from "@smithy/uuid"; diff --git a/private/aws-protocoltests-restjson/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restjson/src/runtimeConfig.browser.ts index 2b16c22f9d875..9313f3411ac9c 100644 --- a/private/aws-protocoltests-restjson/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-restjson/src/runtimeConfig.browser.ts @@ -14,12 +14,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; + +import type { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-restjson/src/runtimeConfig.native.ts b/private/aws-protocoltests-restjson/src/runtimeConfig.native.ts index 413dc1c065160..dea689001b4bb 100644 --- a/private/aws-protocoltests-restjson/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-restjson/src/runtimeConfig.native.ts @@ -2,7 +2,7 @@ import { Sha256 } from "@aws-crypto/sha256-js"; import { invalidFunction } from "@smithy/invalid-dependency"; -import { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; +import type { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-restjson/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restjson/src/runtimeConfig.shared.ts index 9847938e46f57..3dfb19d8dad61 100644 --- a/private/aws-protocoltests-restjson/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-restjson/src/runtimeConfig.shared.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { sdkStreamMixin } from "@smithy/util-stream"; @@ -9,7 +9,7 @@ import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRestJsonProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; +import type { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-restjson/src/runtimeConfig.ts b/private/aws-protocoltests-restjson/src/runtimeConfig.ts index bdc0958ab8a38..ffd0b20ddccfe 100644 --- a/private/aws-protocoltests-restjson/src/runtimeConfig.ts +++ b/private/aws-protocoltests-restjson/src/runtimeConfig.ts @@ -22,13 +22,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; + +import type { RestJsonProtocolClientConfig } from "./RestJsonProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-restjson/src/runtimeExtensions.ts b/private/aws-protocoltests-restjson/src/runtimeExtensions.ts index 3f59e35d6fb62..75ed718784605 100644 --- a/private/aws-protocoltests-restjson/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-restjson/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RestJsonProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { RestJsonProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-restjson/test/functional/restjson1.spec.ts b/private/aws-protocoltests-restjson/test/functional/restjson1.spec.ts index 1cd35f81ce592..23335712ca698 100644 --- a/private/aws-protocoltests-restjson/test/functional/restjson1.spec.ts +++ b/private/aws-protocoltests-restjson/test/functional/restjson1.spec.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; import { buildQueryString } from "@smithy/querystring-builder"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { AllQueryStringTypesCommand } from "../../src/commands/AllQueryStringTypesCommand"; diff --git a/private/aws-protocoltests-restxml-schema/package.json b/private/aws-protocoltests-restxml-schema/package.json index 993ca1c521160..9169cd8cc6eb6 100644 --- a/private/aws-protocoltests-restxml-schema/package.json +++ b/private/aws-protocoltests-restxml-schema/package.json @@ -32,28 +32,28 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", "@smithy/querystring-builder": "^4.2.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-restxml-schema/src/RestXmlProtocol.ts b/private/aws-protocoltests-restxml-schema/src/RestXmlProtocol.ts index 50615e113b4cd..0a5ffb798fb28 100644 --- a/private/aws-protocoltests-restxml-schema/src/RestXmlProtocol.ts +++ b/private/aws-protocoltests-restxml-schema/src/RestXmlProtocol.ts @@ -1,304 +1,308 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { + type AllQueryStringTypesCommandInput, + type AllQueryStringTypesCommandOutput, AllQueryStringTypesCommand, - AllQueryStringTypesCommandInput, - AllQueryStringTypesCommandOutput, } from "./commands/AllQueryStringTypesCommand"; import { + type BodyWithXmlNameCommandInput, + type BodyWithXmlNameCommandOutput, BodyWithXmlNameCommand, - BodyWithXmlNameCommandInput, - BodyWithXmlNameCommandOutput, } from "./commands/BodyWithXmlNameCommand"; import { + type ConstantAndVariableQueryStringCommandInput, + type ConstantAndVariableQueryStringCommandOutput, ConstantAndVariableQueryStringCommand, - ConstantAndVariableQueryStringCommandInput, - ConstantAndVariableQueryStringCommandOutput, } from "./commands/ConstantAndVariableQueryStringCommand"; import { + type ConstantQueryStringCommandInput, + type ConstantQueryStringCommandOutput, ConstantQueryStringCommand, - ConstantQueryStringCommandInput, - ConstantQueryStringCommandOutput, } from "./commands/ConstantQueryStringCommand"; import { + type ContentTypeParametersCommandInput, + type ContentTypeParametersCommandOutput, ContentTypeParametersCommand, - ContentTypeParametersCommandInput, - ContentTypeParametersCommandOutput, } from "./commands/ContentTypeParametersCommand"; import { + type DatetimeOffsetsCommandInput, + type DatetimeOffsetsCommandOutput, DatetimeOffsetsCommand, - DatetimeOffsetsCommandInput, - DatetimeOffsetsCommandOutput, } from "./commands/DatetimeOffsetsCommand"; import { + type EmptyInputAndEmptyOutputCommandInput, + type EmptyInputAndEmptyOutputCommandOutput, EmptyInputAndEmptyOutputCommand, - EmptyInputAndEmptyOutputCommandInput, - EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; import { + type EndpointOperationCommandInput, + type EndpointOperationCommandOutput, EndpointOperationCommand, - EndpointOperationCommandInput, - EndpointOperationCommandOutput, } from "./commands/EndpointOperationCommand"; import { + type EndpointWithHostLabelHeaderOperationCommandInput, + type EndpointWithHostLabelHeaderOperationCommandOutput, EndpointWithHostLabelHeaderOperationCommand, - EndpointWithHostLabelHeaderOperationCommandInput, - EndpointWithHostLabelHeaderOperationCommandOutput, } from "./commands/EndpointWithHostLabelHeaderOperationCommand"; import { + type EndpointWithHostLabelOperationCommandInput, + type EndpointWithHostLabelOperationCommandOutput, EndpointWithHostLabelOperationCommand, - EndpointWithHostLabelOperationCommandInput, - EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; import { + type FlattenedXmlMapCommandInput, + type FlattenedXmlMapCommandOutput, FlattenedXmlMapCommand, - FlattenedXmlMapCommandInput, - FlattenedXmlMapCommandOutput, } from "./commands/FlattenedXmlMapCommand"; import { + type FlattenedXmlMapWithXmlNameCommandInput, + type FlattenedXmlMapWithXmlNameCommandOutput, FlattenedXmlMapWithXmlNameCommand, - FlattenedXmlMapWithXmlNameCommandInput, - FlattenedXmlMapWithXmlNameCommandOutput, } from "./commands/FlattenedXmlMapWithXmlNameCommand"; import { + type FlattenedXmlMapWithXmlNamespaceCommandInput, + type FlattenedXmlMapWithXmlNamespaceCommandOutput, FlattenedXmlMapWithXmlNamespaceCommand, - FlattenedXmlMapWithXmlNamespaceCommandInput, - FlattenedXmlMapWithXmlNamespaceCommandOutput, } from "./commands/FlattenedXmlMapWithXmlNamespaceCommand"; import { + type FractionalSecondsCommandInput, + type FractionalSecondsCommandOutput, FractionalSecondsCommand, - FractionalSecondsCommandInput, - FractionalSecondsCommandOutput, } from "./commands/FractionalSecondsCommand"; import { + type GreetingWithErrorsCommandInput, + type GreetingWithErrorsCommandOutput, GreetingWithErrorsCommand, - GreetingWithErrorsCommandInput, - GreetingWithErrorsCommandOutput, } from "./commands/GreetingWithErrorsCommand"; import { + type HttpEmptyPrefixHeadersCommandInput, + type HttpEmptyPrefixHeadersCommandOutput, HttpEmptyPrefixHeadersCommand, - HttpEmptyPrefixHeadersCommandInput, - HttpEmptyPrefixHeadersCommandOutput, } from "./commands/HttpEmptyPrefixHeadersCommand"; import { + type HttpEnumPayloadCommandInput, + type HttpEnumPayloadCommandOutput, HttpEnumPayloadCommand, - HttpEnumPayloadCommandInput, - HttpEnumPayloadCommandOutput, } from "./commands/HttpEnumPayloadCommand"; import { + type HttpPayloadTraitsCommandInput, + type HttpPayloadTraitsCommandOutput, HttpPayloadTraitsCommand, - HttpPayloadTraitsCommandInput, - HttpPayloadTraitsCommandOutput, } from "./commands/HttpPayloadTraitsCommand"; import { + type HttpPayloadTraitsWithMediaTypeCommandInput, + type HttpPayloadTraitsWithMediaTypeCommandOutput, HttpPayloadTraitsWithMediaTypeCommand, - HttpPayloadTraitsWithMediaTypeCommandInput, - HttpPayloadTraitsWithMediaTypeCommandOutput, } from "./commands/HttpPayloadTraitsWithMediaTypeCommand"; import { + type HttpPayloadWithMemberXmlNameCommandInput, + type HttpPayloadWithMemberXmlNameCommandOutput, HttpPayloadWithMemberXmlNameCommand, - HttpPayloadWithMemberXmlNameCommandInput, - HttpPayloadWithMemberXmlNameCommandOutput, } from "./commands/HttpPayloadWithMemberXmlNameCommand"; import { + type HttpPayloadWithStructureCommandInput, + type HttpPayloadWithStructureCommandOutput, HttpPayloadWithStructureCommand, - HttpPayloadWithStructureCommandInput, - HttpPayloadWithStructureCommandOutput, } from "./commands/HttpPayloadWithStructureCommand"; import { + type HttpPayloadWithUnionCommandInput, + type HttpPayloadWithUnionCommandOutput, HttpPayloadWithUnionCommand, - HttpPayloadWithUnionCommandInput, - HttpPayloadWithUnionCommandOutput, } from "./commands/HttpPayloadWithUnionCommand"; import { + type HttpPayloadWithXmlNameCommandInput, + type HttpPayloadWithXmlNameCommandOutput, HttpPayloadWithXmlNameCommand, - HttpPayloadWithXmlNameCommandInput, - HttpPayloadWithXmlNameCommandOutput, } from "./commands/HttpPayloadWithXmlNameCommand"; import { + type HttpPayloadWithXmlNamespaceAndPrefixCommandInput, + type HttpPayloadWithXmlNamespaceAndPrefixCommandOutput, HttpPayloadWithXmlNamespaceAndPrefixCommand, - HttpPayloadWithXmlNamespaceAndPrefixCommandInput, - HttpPayloadWithXmlNamespaceAndPrefixCommandOutput, } from "./commands/HttpPayloadWithXmlNamespaceAndPrefixCommand"; import { + type HttpPayloadWithXmlNamespaceCommandInput, + type HttpPayloadWithXmlNamespaceCommandOutput, HttpPayloadWithXmlNamespaceCommand, - HttpPayloadWithXmlNamespaceCommandInput, - HttpPayloadWithXmlNamespaceCommandOutput, } from "./commands/HttpPayloadWithXmlNamespaceCommand"; import { + type HttpPrefixHeadersCommandInput, + type HttpPrefixHeadersCommandOutput, HttpPrefixHeadersCommand, - HttpPrefixHeadersCommandInput, - HttpPrefixHeadersCommandOutput, } from "./commands/HttpPrefixHeadersCommand"; import { + type HttpRequestWithFloatLabelsCommandInput, + type HttpRequestWithFloatLabelsCommandOutput, HttpRequestWithFloatLabelsCommand, - HttpRequestWithFloatLabelsCommandInput, - HttpRequestWithFloatLabelsCommandOutput, } from "./commands/HttpRequestWithFloatLabelsCommand"; import { + type HttpRequestWithGreedyLabelInPathCommandInput, + type HttpRequestWithGreedyLabelInPathCommandOutput, HttpRequestWithGreedyLabelInPathCommand, - HttpRequestWithGreedyLabelInPathCommandInput, - HttpRequestWithGreedyLabelInPathCommandOutput, } from "./commands/HttpRequestWithGreedyLabelInPathCommand"; import { + type HttpRequestWithLabelsAndTimestampFormatCommandInput, + type HttpRequestWithLabelsAndTimestampFormatCommandOutput, HttpRequestWithLabelsAndTimestampFormatCommand, - HttpRequestWithLabelsAndTimestampFormatCommandInput, - HttpRequestWithLabelsAndTimestampFormatCommandOutput, } from "./commands/HttpRequestWithLabelsAndTimestampFormatCommand"; import { + type HttpRequestWithLabelsCommandInput, + type HttpRequestWithLabelsCommandOutput, HttpRequestWithLabelsCommand, - HttpRequestWithLabelsCommandInput, - HttpRequestWithLabelsCommandOutput, } from "./commands/HttpRequestWithLabelsCommand"; import { + type HttpResponseCodeCommandInput, + type HttpResponseCodeCommandOutput, HttpResponseCodeCommand, - HttpResponseCodeCommandInput, - HttpResponseCodeCommandOutput, } from "./commands/HttpResponseCodeCommand"; import { + type HttpStringPayloadCommandInput, + type HttpStringPayloadCommandOutput, HttpStringPayloadCommand, - HttpStringPayloadCommandInput, - HttpStringPayloadCommandOutput, } from "./commands/HttpStringPayloadCommand"; import { + type IgnoreQueryParamsInResponseCommandInput, + type IgnoreQueryParamsInResponseCommandOutput, IgnoreQueryParamsInResponseCommand, - IgnoreQueryParamsInResponseCommandInput, - IgnoreQueryParamsInResponseCommandOutput, } from "./commands/IgnoreQueryParamsInResponseCommand"; import { + type InputAndOutputWithHeadersCommandInput, + type InputAndOutputWithHeadersCommandOutput, InputAndOutputWithHeadersCommand, - InputAndOutputWithHeadersCommandInput, - InputAndOutputWithHeadersCommandOutput, } from "./commands/InputAndOutputWithHeadersCommand"; import { + type NestedXmlMapsCommandInput, + type NestedXmlMapsCommandOutput, NestedXmlMapsCommand, - NestedXmlMapsCommandInput, - NestedXmlMapsCommandOutput, } from "./commands/NestedXmlMapsCommand"; import { + type NestedXmlMapWithXmlNameCommandInput, + type NestedXmlMapWithXmlNameCommandOutput, NestedXmlMapWithXmlNameCommand, - NestedXmlMapWithXmlNameCommandInput, - NestedXmlMapWithXmlNameCommandOutput, } from "./commands/NestedXmlMapWithXmlNameCommand"; import { + type NoInputAndNoOutputCommandInput, + type NoInputAndNoOutputCommandOutput, NoInputAndNoOutputCommand, - NoInputAndNoOutputCommandInput, - NoInputAndNoOutputCommandOutput, } from "./commands/NoInputAndNoOutputCommand"; import { + type NoInputAndOutputCommandInput, + type NoInputAndOutputCommandOutput, NoInputAndOutputCommand, - NoInputAndOutputCommandInput, - NoInputAndOutputCommandOutput, } from "./commands/NoInputAndOutputCommand"; import { + type NullAndEmptyHeadersClientCommandInput, + type NullAndEmptyHeadersClientCommandOutput, NullAndEmptyHeadersClientCommand, - NullAndEmptyHeadersClientCommandInput, - NullAndEmptyHeadersClientCommandOutput, } from "./commands/NullAndEmptyHeadersClientCommand"; import { + type NullAndEmptyHeadersServerCommandInput, + type NullAndEmptyHeadersServerCommandOutput, NullAndEmptyHeadersServerCommand, - NullAndEmptyHeadersServerCommandInput, - NullAndEmptyHeadersServerCommandOutput, } from "./commands/NullAndEmptyHeadersServerCommand"; import { + type OmitsNullSerializesEmptyStringCommandInput, + type OmitsNullSerializesEmptyStringCommandOutput, OmitsNullSerializesEmptyStringCommand, - OmitsNullSerializesEmptyStringCommandInput, - OmitsNullSerializesEmptyStringCommandOutput, } from "./commands/OmitsNullSerializesEmptyStringCommand"; import { + type PutWithContentEncodingCommandInput, + type PutWithContentEncodingCommandOutput, PutWithContentEncodingCommand, - PutWithContentEncodingCommandInput, - PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; import { + type QueryIdempotencyTokenAutoFillCommandInput, + type QueryIdempotencyTokenAutoFillCommandOutput, QueryIdempotencyTokenAutoFillCommand, - QueryIdempotencyTokenAutoFillCommandInput, - QueryIdempotencyTokenAutoFillCommandOutput, } from "./commands/QueryIdempotencyTokenAutoFillCommand"; import { + type QueryParamsAsStringListMapCommandInput, + type QueryParamsAsStringListMapCommandOutput, QueryParamsAsStringListMapCommand, - QueryParamsAsStringListMapCommandInput, - QueryParamsAsStringListMapCommandOutput, } from "./commands/QueryParamsAsStringListMapCommand"; import { + type QueryPrecedenceCommandInput, + type QueryPrecedenceCommandOutput, QueryPrecedenceCommand, - QueryPrecedenceCommandInput, - QueryPrecedenceCommandOutput, } from "./commands/QueryPrecedenceCommand"; import { + type RecursiveShapesCommandInput, + type RecursiveShapesCommandOutput, RecursiveShapesCommand, - RecursiveShapesCommandInput, - RecursiveShapesCommandOutput, } from "./commands/RecursiveShapesCommand"; import { + type SimpleScalarPropertiesCommandInput, + type SimpleScalarPropertiesCommandOutput, SimpleScalarPropertiesCommand, - SimpleScalarPropertiesCommandInput, - SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; import { + type TimestampFormatHeadersCommandInput, + type TimestampFormatHeadersCommandOutput, TimestampFormatHeadersCommand, - TimestampFormatHeadersCommandInput, - TimestampFormatHeadersCommandOutput, } from "./commands/TimestampFormatHeadersCommand"; import { + type XmlAttributesCommandInput, + type XmlAttributesCommandOutput, XmlAttributesCommand, - XmlAttributesCommandInput, - XmlAttributesCommandOutput, } from "./commands/XmlAttributesCommand"; import { + type XmlAttributesOnPayloadCommandInput, + type XmlAttributesOnPayloadCommandOutput, XmlAttributesOnPayloadCommand, - XmlAttributesOnPayloadCommandInput, - XmlAttributesOnPayloadCommandOutput, } from "./commands/XmlAttributesOnPayloadCommand"; -import { XmlBlobsCommand, XmlBlobsCommandInput, XmlBlobsCommandOutput } from "./commands/XmlBlobsCommand"; +import { type XmlBlobsCommandInput, type XmlBlobsCommandOutput, XmlBlobsCommand } from "./commands/XmlBlobsCommand"; import { + type XmlEmptyBlobsCommandInput, + type XmlEmptyBlobsCommandOutput, XmlEmptyBlobsCommand, - XmlEmptyBlobsCommandInput, - XmlEmptyBlobsCommandOutput, } from "./commands/XmlEmptyBlobsCommand"; import { + type XmlEmptyListsCommandInput, + type XmlEmptyListsCommandOutput, XmlEmptyListsCommand, - XmlEmptyListsCommandInput, - XmlEmptyListsCommandOutput, } from "./commands/XmlEmptyListsCommand"; import { + type XmlEmptyMapsCommandInput, + type XmlEmptyMapsCommandOutput, XmlEmptyMapsCommand, - XmlEmptyMapsCommandInput, - XmlEmptyMapsCommandOutput, } from "./commands/XmlEmptyMapsCommand"; import { + type XmlEmptyStringsCommandInput, + type XmlEmptyStringsCommandOutput, XmlEmptyStringsCommand, - XmlEmptyStringsCommandInput, - XmlEmptyStringsCommandOutput, } from "./commands/XmlEmptyStringsCommand"; -import { XmlEnumsCommand, XmlEnumsCommandInput, XmlEnumsCommandOutput } from "./commands/XmlEnumsCommand"; -import { XmlIntEnumsCommand, XmlIntEnumsCommandInput, XmlIntEnumsCommandOutput } from "./commands/XmlIntEnumsCommand"; -import { XmlListsCommand, XmlListsCommandInput, XmlListsCommandOutput } from "./commands/XmlListsCommand"; -import { XmlMapsCommand, XmlMapsCommandInput, XmlMapsCommandOutput } from "./commands/XmlMapsCommand"; +import { type XmlEnumsCommandInput, type XmlEnumsCommandOutput, XmlEnumsCommand } from "./commands/XmlEnumsCommand"; import { + type XmlIntEnumsCommandInput, + type XmlIntEnumsCommandOutput, + XmlIntEnumsCommand, +} from "./commands/XmlIntEnumsCommand"; +import { type XmlListsCommandInput, type XmlListsCommandOutput, XmlListsCommand } from "./commands/XmlListsCommand"; +import { type XmlMapsCommandInput, type XmlMapsCommandOutput, XmlMapsCommand } from "./commands/XmlMapsCommand"; +import { + type XmlMapsXmlNameCommandInput, + type XmlMapsXmlNameCommandOutput, XmlMapsXmlNameCommand, - XmlMapsXmlNameCommandInput, - XmlMapsXmlNameCommandOutput, } from "./commands/XmlMapsXmlNameCommand"; import { + type XmlMapWithXmlNamespaceCommandInput, + type XmlMapWithXmlNamespaceCommandOutput, XmlMapWithXmlNamespaceCommand, - XmlMapWithXmlNamespaceCommandInput, - XmlMapWithXmlNamespaceCommandOutput, } from "./commands/XmlMapWithXmlNamespaceCommand"; import { + type XmlNamespacesCommandInput, + type XmlNamespacesCommandOutput, XmlNamespacesCommand, - XmlNamespacesCommandInput, - XmlNamespacesCommandOutput, } from "./commands/XmlNamespacesCommand"; import { + type XmlTimestampsCommandInput, + type XmlTimestampsCommandOutput, XmlTimestampsCommand, - XmlTimestampsCommandInput, - XmlTimestampsCommandOutput, } from "./commands/XmlTimestampsCommand"; -import { XmlUnionsCommand, XmlUnionsCommandInput, XmlUnionsCommandOutput } from "./commands/XmlUnionsCommand"; -import { RestXmlProtocolClient, RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; +import { type XmlUnionsCommandInput, type XmlUnionsCommandOutput, XmlUnionsCommand } from "./commands/XmlUnionsCommand"; +import { RestXmlProtocolClient } from "./RestXmlProtocolClient"; const commands = { AllQueryStringTypesCommand, diff --git a/private/aws-protocoltests-restxml-schema/src/RestXmlProtocolClient.ts b/private/aws-protocoltests-restxml-schema/src/RestXmlProtocolClient.ts index 0997b8692a82e..5ef335af1170e 100644 --- a/private/aws-protocoltests-restxml-schema/src/RestXmlProtocolClient.ts +++ b/private/aws-protocoltests-restxml-schema/src/RestXmlProtocolClient.ts @@ -1,24 +1,24 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, @@ -26,213 +26,243 @@ import { } from "@smithy/core"; import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRestXmlProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { +import type { AllQueryStringTypesCommandInput, AllQueryStringTypesCommandOutput, } from "./commands/AllQueryStringTypesCommand"; -import { BodyWithXmlNameCommandInput, BodyWithXmlNameCommandOutput } from "./commands/BodyWithXmlNameCommand"; -import { +import type { BodyWithXmlNameCommandInput, BodyWithXmlNameCommandOutput } from "./commands/BodyWithXmlNameCommand"; +import type { ConstantAndVariableQueryStringCommandInput, ConstantAndVariableQueryStringCommandOutput, } from "./commands/ConstantAndVariableQueryStringCommand"; -import { +import type { ConstantQueryStringCommandInput, ConstantQueryStringCommandOutput, } from "./commands/ConstantQueryStringCommand"; -import { +import type { ContentTypeParametersCommandInput, ContentTypeParametersCommandOutput, } from "./commands/ContentTypeParametersCommand"; -import { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; -import { +import type { DatetimeOffsetsCommandInput, DatetimeOffsetsCommandOutput } from "./commands/DatetimeOffsetsCommand"; +import type { EmptyInputAndEmptyOutputCommandInput, EmptyInputAndEmptyOutputCommandOutput, } from "./commands/EmptyInputAndEmptyOutputCommand"; -import { EndpointOperationCommandInput, EndpointOperationCommandOutput } from "./commands/EndpointOperationCommand"; -import { +import type { + EndpointOperationCommandInput, + EndpointOperationCommandOutput, +} from "./commands/EndpointOperationCommand"; +import type { EndpointWithHostLabelHeaderOperationCommandInput, EndpointWithHostLabelHeaderOperationCommandOutput, } from "./commands/EndpointWithHostLabelHeaderOperationCommand"; -import { +import type { EndpointWithHostLabelOperationCommandInput, EndpointWithHostLabelOperationCommandOutput, } from "./commands/EndpointWithHostLabelOperationCommand"; -import { FlattenedXmlMapCommandInput, FlattenedXmlMapCommandOutput } from "./commands/FlattenedXmlMapCommand"; -import { +import type { FlattenedXmlMapCommandInput, FlattenedXmlMapCommandOutput } from "./commands/FlattenedXmlMapCommand"; +import type { FlattenedXmlMapWithXmlNameCommandInput, FlattenedXmlMapWithXmlNameCommandOutput, } from "./commands/FlattenedXmlMapWithXmlNameCommand"; -import { +import type { FlattenedXmlMapWithXmlNamespaceCommandInput, FlattenedXmlMapWithXmlNamespaceCommandOutput, } from "./commands/FlattenedXmlMapWithXmlNamespaceCommand"; -import { FractionalSecondsCommandInput, FractionalSecondsCommandOutput } from "./commands/FractionalSecondsCommand"; -import { GreetingWithErrorsCommandInput, GreetingWithErrorsCommandOutput } from "./commands/GreetingWithErrorsCommand"; -import { +import type { + FractionalSecondsCommandInput, + FractionalSecondsCommandOutput, +} from "./commands/FractionalSecondsCommand"; +import type { + GreetingWithErrorsCommandInput, + GreetingWithErrorsCommandOutput, +} from "./commands/GreetingWithErrorsCommand"; +import type { HttpEmptyPrefixHeadersCommandInput, HttpEmptyPrefixHeadersCommandOutput, } from "./commands/HttpEmptyPrefixHeadersCommand"; -import { HttpEnumPayloadCommandInput, HttpEnumPayloadCommandOutput } from "./commands/HttpEnumPayloadCommand"; -import { HttpPayloadTraitsCommandInput, HttpPayloadTraitsCommandOutput } from "./commands/HttpPayloadTraitsCommand"; -import { +import type { HttpEnumPayloadCommandInput, HttpEnumPayloadCommandOutput } from "./commands/HttpEnumPayloadCommand"; +import type { + HttpPayloadTraitsCommandInput, + HttpPayloadTraitsCommandOutput, +} from "./commands/HttpPayloadTraitsCommand"; +import type { HttpPayloadTraitsWithMediaTypeCommandInput, HttpPayloadTraitsWithMediaTypeCommandOutput, } from "./commands/HttpPayloadTraitsWithMediaTypeCommand"; -import { +import type { HttpPayloadWithMemberXmlNameCommandInput, HttpPayloadWithMemberXmlNameCommandOutput, } from "./commands/HttpPayloadWithMemberXmlNameCommand"; -import { +import type { HttpPayloadWithStructureCommandInput, HttpPayloadWithStructureCommandOutput, } from "./commands/HttpPayloadWithStructureCommand"; -import { +import type { HttpPayloadWithUnionCommandInput, HttpPayloadWithUnionCommandOutput, } from "./commands/HttpPayloadWithUnionCommand"; -import { +import type { HttpPayloadWithXmlNameCommandInput, HttpPayloadWithXmlNameCommandOutput, } from "./commands/HttpPayloadWithXmlNameCommand"; -import { +import type { HttpPayloadWithXmlNamespaceAndPrefixCommandInput, HttpPayloadWithXmlNamespaceAndPrefixCommandOutput, } from "./commands/HttpPayloadWithXmlNamespaceAndPrefixCommand"; -import { +import type { HttpPayloadWithXmlNamespaceCommandInput, HttpPayloadWithXmlNamespaceCommandOutput, } from "./commands/HttpPayloadWithXmlNamespaceCommand"; -import { HttpPrefixHeadersCommandInput, HttpPrefixHeadersCommandOutput } from "./commands/HttpPrefixHeadersCommand"; -import { +import type { + HttpPrefixHeadersCommandInput, + HttpPrefixHeadersCommandOutput, +} from "./commands/HttpPrefixHeadersCommand"; +import type { HttpRequestWithFloatLabelsCommandInput, HttpRequestWithFloatLabelsCommandOutput, } from "./commands/HttpRequestWithFloatLabelsCommand"; -import { +import type { HttpRequestWithGreedyLabelInPathCommandInput, HttpRequestWithGreedyLabelInPathCommandOutput, } from "./commands/HttpRequestWithGreedyLabelInPathCommand"; -import { +import type { HttpRequestWithLabelsAndTimestampFormatCommandInput, HttpRequestWithLabelsAndTimestampFormatCommandOutput, } from "./commands/HttpRequestWithLabelsAndTimestampFormatCommand"; -import { +import type { HttpRequestWithLabelsCommandInput, HttpRequestWithLabelsCommandOutput, } from "./commands/HttpRequestWithLabelsCommand"; -import { HttpResponseCodeCommandInput, HttpResponseCodeCommandOutput } from "./commands/HttpResponseCodeCommand"; -import { HttpStringPayloadCommandInput, HttpStringPayloadCommandOutput } from "./commands/HttpStringPayloadCommand"; -import { +import type { HttpResponseCodeCommandInput, HttpResponseCodeCommandOutput } from "./commands/HttpResponseCodeCommand"; +import type { + HttpStringPayloadCommandInput, + HttpStringPayloadCommandOutput, +} from "./commands/HttpStringPayloadCommand"; +import type { IgnoreQueryParamsInResponseCommandInput, IgnoreQueryParamsInResponseCommandOutput, } from "./commands/IgnoreQueryParamsInResponseCommand"; -import { +import type { InputAndOutputWithHeadersCommandInput, InputAndOutputWithHeadersCommandOutput, } from "./commands/InputAndOutputWithHeadersCommand"; -import { NestedXmlMapsCommandInput, NestedXmlMapsCommandOutput } from "./commands/NestedXmlMapsCommand"; -import { +import type { NestedXmlMapsCommandInput, NestedXmlMapsCommandOutput } from "./commands/NestedXmlMapsCommand"; +import type { NestedXmlMapWithXmlNameCommandInput, NestedXmlMapWithXmlNameCommandOutput, } from "./commands/NestedXmlMapWithXmlNameCommand"; -import { NoInputAndNoOutputCommandInput, NoInputAndNoOutputCommandOutput } from "./commands/NoInputAndNoOutputCommand"; -import { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; -import { +import type { + NoInputAndNoOutputCommandInput, + NoInputAndNoOutputCommandOutput, +} from "./commands/NoInputAndNoOutputCommand"; +import type { NoInputAndOutputCommandInput, NoInputAndOutputCommandOutput } from "./commands/NoInputAndOutputCommand"; +import type { NullAndEmptyHeadersClientCommandInput, NullAndEmptyHeadersClientCommandOutput, } from "./commands/NullAndEmptyHeadersClientCommand"; -import { +import type { NullAndEmptyHeadersServerCommandInput, NullAndEmptyHeadersServerCommandOutput, } from "./commands/NullAndEmptyHeadersServerCommand"; -import { +import type { OmitsNullSerializesEmptyStringCommandInput, OmitsNullSerializesEmptyStringCommandOutput, } from "./commands/OmitsNullSerializesEmptyStringCommand"; -import { +import type { PutWithContentEncodingCommandInput, PutWithContentEncodingCommandOutput, } from "./commands/PutWithContentEncodingCommand"; -import { +import type { QueryIdempotencyTokenAutoFillCommandInput, QueryIdempotencyTokenAutoFillCommandOutput, } from "./commands/QueryIdempotencyTokenAutoFillCommand"; -import { +import type { QueryParamsAsStringListMapCommandInput, QueryParamsAsStringListMapCommandOutput, } from "./commands/QueryParamsAsStringListMapCommand"; -import { QueryPrecedenceCommandInput, QueryPrecedenceCommandOutput } from "./commands/QueryPrecedenceCommand"; -import { RecursiveShapesCommandInput, RecursiveShapesCommandOutput } from "./commands/RecursiveShapesCommand"; -import { +import type { QueryPrecedenceCommandInput, QueryPrecedenceCommandOutput } from "./commands/QueryPrecedenceCommand"; +import type { RecursiveShapesCommandInput, RecursiveShapesCommandOutput } from "./commands/RecursiveShapesCommand"; +import type { SimpleScalarPropertiesCommandInput, SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; -import { +import type { TimestampFormatHeadersCommandInput, TimestampFormatHeadersCommandOutput, } from "./commands/TimestampFormatHeadersCommand"; -import { XmlAttributesCommandInput, XmlAttributesCommandOutput } from "./commands/XmlAttributesCommand"; -import { +import type { XmlAttributesCommandInput, XmlAttributesCommandOutput } from "./commands/XmlAttributesCommand"; +import type { XmlAttributesOnPayloadCommandInput, XmlAttributesOnPayloadCommandOutput, } from "./commands/XmlAttributesOnPayloadCommand"; -import { XmlBlobsCommandInput, XmlBlobsCommandOutput } from "./commands/XmlBlobsCommand"; -import { XmlEmptyBlobsCommandInput, XmlEmptyBlobsCommandOutput } from "./commands/XmlEmptyBlobsCommand"; -import { XmlEmptyListsCommandInput, XmlEmptyListsCommandOutput } from "./commands/XmlEmptyListsCommand"; -import { XmlEmptyMapsCommandInput, XmlEmptyMapsCommandOutput } from "./commands/XmlEmptyMapsCommand"; -import { XmlEmptyStringsCommandInput, XmlEmptyStringsCommandOutput } from "./commands/XmlEmptyStringsCommand"; -import { XmlEnumsCommandInput, XmlEnumsCommandOutput } from "./commands/XmlEnumsCommand"; -import { XmlIntEnumsCommandInput, XmlIntEnumsCommandOutput } from "./commands/XmlIntEnumsCommand"; -import { XmlListsCommandInput, XmlListsCommandOutput } from "./commands/XmlListsCommand"; -import { XmlMapsCommandInput, XmlMapsCommandOutput } from "./commands/XmlMapsCommand"; -import { XmlMapsXmlNameCommandInput, XmlMapsXmlNameCommandOutput } from "./commands/XmlMapsXmlNameCommand"; -import { +import type { XmlBlobsCommandInput, XmlBlobsCommandOutput } from "./commands/XmlBlobsCommand"; +import type { XmlEmptyBlobsCommandInput, XmlEmptyBlobsCommandOutput } from "./commands/XmlEmptyBlobsCommand"; +import type { XmlEmptyListsCommandInput, XmlEmptyListsCommandOutput } from "./commands/XmlEmptyListsCommand"; +import type { XmlEmptyMapsCommandInput, XmlEmptyMapsCommandOutput } from "./commands/XmlEmptyMapsCommand"; +import type { XmlEmptyStringsCommandInput, XmlEmptyStringsCommandOutput } from "./commands/XmlEmptyStringsCommand"; +import type { XmlEnumsCommandInput, XmlEnumsCommandOutput } from "./commands/XmlEnumsCommand"; +import type { XmlIntEnumsCommandInput, XmlIntEnumsCommandOutput } from "./commands/XmlIntEnumsCommand"; +import type { XmlListsCommandInput, XmlListsCommandOutput } from "./commands/XmlListsCommand"; +import type { XmlMapsCommandInput, XmlMapsCommandOutput } from "./commands/XmlMapsCommand"; +import type { XmlMapsXmlNameCommandInput, XmlMapsXmlNameCommandOutput } from "./commands/XmlMapsXmlNameCommand"; +import type { XmlMapWithXmlNamespaceCommandInput, XmlMapWithXmlNamespaceCommandOutput, } from "./commands/XmlMapWithXmlNamespaceCommand"; -import { XmlNamespacesCommandInput, XmlNamespacesCommandOutput } from "./commands/XmlNamespacesCommand"; -import { XmlTimestampsCommandInput, XmlTimestampsCommandOutput } from "./commands/XmlTimestampsCommand"; -import { XmlUnionsCommandInput, XmlUnionsCommandOutput } from "./commands/XmlUnionsCommand"; +import type { XmlNamespacesCommandInput, XmlNamespacesCommandOutput } from "./commands/XmlNamespacesCommand"; +import type { XmlTimestampsCommandInput, XmlTimestampsCommandOutput } from "./commands/XmlTimestampsCommand"; +import type { XmlUnionsCommandInput, XmlUnionsCommandOutput } from "./commands/XmlUnionsCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, @@ -240,7 +270,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-restxml-schema/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-restxml-schema/src/auth/httpAuthExtensionConfiguration.ts index 4a16a62791bef..64d3e288d0fc9 100644 --- a/private/aws-protocoltests-restxml-schema/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-restxml-schema/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RestXmlProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RestXmlProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-restxml-schema/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-restxml-schema/src/auth/httpAuthSchemeProvider.ts index 97062b9474141..27785e277144e 100644 --- a/private/aws-protocoltests-restxml-schema/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-restxml-schema/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RestXmlProtocolClientConfig, RestXmlProtocolClientResolvedConfig } from "../RestXmlProtocolClient"; +import { type RestXmlProtocolClientResolvedConfig, RestXmlProtocolClientConfig } from "../RestXmlProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-restxml-schema/src/commands/AllQueryStringTypesCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/AllQueryStringTypesCommand.ts index 1ee61b84b34aa..6ed75bd3b7df4 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/AllQueryStringTypesCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/AllQueryStringTypesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllQueryStringTypesInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { AllQueryStringTypesInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { AllQueryStringTypes } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/BodyWithXmlNameCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/BodyWithXmlNameCommand.ts index feca7370e6a07..b6da651dfce42 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/BodyWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/BodyWithXmlNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BodyWithXmlNameInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { BodyWithXmlNameInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { BodyWithXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/ConstantAndVariableQueryStringCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/ConstantAndVariableQueryStringCommand.ts index 210bbb5f96f05..89cb4362a77db 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/ConstantAndVariableQueryStringCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/ConstantAndVariableQueryStringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConstantAndVariableQueryStringInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { ConstantAndVariableQueryStringInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { ConstantAndVariableQueryString } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/ConstantQueryStringCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/ConstantQueryStringCommand.ts index 9d28335fd104a..5b2e385998ce1 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/ConstantQueryStringCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/ConstantQueryStringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConstantQueryStringInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { ConstantQueryStringInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { ConstantQueryString } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/ContentTypeParametersCommand.ts index 3493b77e1bffc..c15329ef4a222 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/ContentTypeParametersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { ContentTypeParameters } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/DatetimeOffsetsCommand.ts index 97bdf75420ab4..0230fa41f8bba 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/DatetimeOffsetsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DatetimeOffsetsOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { DatetimeOffsets } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts index f0b945fe8598c..7008b66d01ab5 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { EmptyInputAndEmptyOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/EndpointOperationCommand.ts index 64d790efbc7e2..4af2b4b759c1f 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/EndpointOperationCommand.ts @@ -1,10 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { EndpointOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts index 1e1f47715dc2e..128bf7b5577b2 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HostLabelHeaderInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HostLabelHeaderInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { EndpointWithHostLabelHeaderOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/EndpointWithHostLabelOperationCommand.ts index 6d5b30c06e668..29c6851cfb7a5 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EndpointWithHostLabelOperationRequest } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { EndpointWithHostLabelOperationRequest } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { EndpointWithHostLabelOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapCommand.ts index 503b645b85847..36788aab2faf5 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapRequest, FlattenedXmlMapResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { FlattenedXmlMapRequest, FlattenedXmlMapResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { FlattenedXmlMap } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapWithXmlNameCommand.ts index c2f835c6160c7..c09167c567c97 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapWithXmlNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapWithXmlNameRequest, FlattenedXmlMapWithXmlNameResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { FlattenedXmlMapWithXmlNameRequest, FlattenedXmlMapWithXmlNameResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { FlattenedXmlMapWithXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts index b735121071e9e..8de43e5701689 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapWithXmlNamespaceOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { FlattenedXmlMapWithXmlNamespaceOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { FlattenedXmlMapWithXmlNamespace } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/FractionalSecondsCommand.ts index 8b1d795f31c61..221abe82a1735 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/FractionalSecondsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { FractionalSecondsOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { FractionalSeconds } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/GreetingWithErrorsCommand.ts index 612d0715468d0..014537c961ff6 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/GreetingWithErrorsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { GreetingWithErrors } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpEmptyPrefixHeadersCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpEmptyPrefixHeadersCommand.ts index aefc6e28959a2..99334dbedbf73 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpEmptyPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpEmptyPrefixHeadersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpEmptyPrefixHeadersInput, HttpEmptyPrefixHeadersOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpEmptyPrefixHeadersInput, HttpEmptyPrefixHeadersOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpEmptyPrefixHeaders } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpEnumPayloadCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpEnumPayloadCommand.ts index cdf9ad2dd87f8..838aa41e9c573 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpEnumPayloadCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpEnumPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnumPayloadInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { EnumPayloadInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpEnumPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadTraitsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadTraitsCommand.ts index 774b5747d4232..41b709e78a57e 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadTraitsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadTraitsCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadTraitsInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpPayloadTraitsInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpPayloadTraits } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts index bf08847c404da..eac87f28d8284 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts @@ -1,12 +1,16 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadTraitsWithMediaTypeInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpPayloadTraitsWithMediaTypeInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpPayloadTraitsWithMediaType } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithMemberXmlNameCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithMemberXmlNameCommand.ts index ea637c7a8bae8..7181362849da3 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithMemberXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithMemberXmlNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithMemberXmlNameInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpPayloadWithMemberXmlNameInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpPayloadWithMemberXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithStructureCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithStructureCommand.ts index 381d32de19927..c89e164fa29e6 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithStructureCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithStructureCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithStructureInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpPayloadWithStructureInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpPayloadWithStructure } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithUnionCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithUnionCommand.ts index c418ca5bf46d0..2e888b49d2ed1 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithUnionCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithUnionCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithUnionInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpPayloadWithUnionInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpPayloadWithUnion } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNameCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNameCommand.ts index 49c74c3edc5ff..9ad7b9ff83005 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithXmlNameInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpPayloadWithXmlNameInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpPayloadWithXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts index 10c55a1078b84..25d7f64c8cfd8 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithXmlNamespaceAndPrefixInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpPayloadWithXmlNamespaceAndPrefixInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpPayloadWithXmlNamespaceAndPrefix } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNamespaceCommand.ts index 3a2f3b9988eac..0a6c2239a9558 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpPayloadWithXmlNamespaceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithXmlNamespaceInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpPayloadWithXmlNamespaceInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpPayloadWithXmlNamespace } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpPrefixHeadersCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpPrefixHeadersCommand.ts index ef85d37e73a29..6ef4800cb7302 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpPrefixHeadersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPrefixHeadersInputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpPrefixHeadersInputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpPrefixHeaders } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithFloatLabelsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithFloatLabelsCommand.ts index 0bac86d0e0ece..1ced1e95c5767 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithFloatLabelsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithFloatLabelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithFloatLabelsInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpRequestWithFloatLabelsInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpRequestWithFloatLabels } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts index 1acf602d10ec7..d9b4939586831 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithGreedyLabelInPathInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpRequestWithGreedyLabelInPathInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpRequestWithGreedyLabelInPath } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts index ca231544ebacd..3429873f2614f 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithLabelsAndTimestampFormatInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpRequestWithLabelsAndTimestampFormatInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpRequestWithLabelsAndTimestampFormat } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithLabelsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithLabelsCommand.ts index 3347a1d40048b..d74aff2d87b9d 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithLabelsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpRequestWithLabelsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithLabelsInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpRequestWithLabelsInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpRequestWithLabels } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpResponseCodeCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpResponseCodeCommand.ts index 3a4289eec1aee..eae5d0e25cd35 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpResponseCodeCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpResponseCodeCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpResponseCodeOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { HttpResponseCodeOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpResponseCode } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/HttpStringPayloadCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/HttpStringPayloadCommand.ts index a6ae99b475619..98aebf84c0942 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/HttpStringPayloadCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/HttpStringPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StringPayloadInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { StringPayloadInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { HttpStringPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/IgnoreQueryParamsInResponseCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/IgnoreQueryParamsInResponseCommand.ts index 3cac17d13ef44..2dbb9a6d750ee 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/IgnoreQueryParamsInResponseCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/IgnoreQueryParamsInResponseCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IgnoreQueryParamsInResponseOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { IgnoreQueryParamsInResponseOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { IgnoreQueryParamsInResponse } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/InputAndOutputWithHeadersCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/InputAndOutputWithHeadersCommand.ts index 2c6001a71d977..1dd15c1aa8d91 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/InputAndOutputWithHeadersCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/InputAndOutputWithHeadersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InputAndOutputWithHeadersIO } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { InputAndOutputWithHeadersIO } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { InputAndOutputWithHeaders } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/NestedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/NestedXmlMapWithXmlNameCommand.ts index fb2f86959ee15..f3fa541af595c 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/NestedXmlMapWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/NestedXmlMapWithXmlNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NestedXmlMapWithXmlNameRequest, NestedXmlMapWithXmlNameResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { NestedXmlMapWithXmlNameRequest, NestedXmlMapWithXmlNameResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { NestedXmlMapWithXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/NestedXmlMapsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/NestedXmlMapsCommand.ts index 7ed4bb099d1b0..dad39304333b3 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/NestedXmlMapsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/NestedXmlMapsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NestedXmlMapsRequest, NestedXmlMapsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { NestedXmlMapsRequest, NestedXmlMapsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { NestedXmlMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/NoInputAndNoOutputCommand.ts index 400890bbb9bb5..051525911064d 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/NoInputAndNoOutputCommand.ts @@ -1,10 +1,14 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { NoInputAndNoOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/NoInputAndOutputCommand.ts index da3f24ecac964..2e1d2fbaccc35 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/NoInputAndOutputCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NoInputAndOutputOutput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { NoInputAndOutputOutput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { NoInputAndOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/NullAndEmptyHeadersClientCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/NullAndEmptyHeadersClientCommand.ts index aa6693488e342..70c0801ed296c 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/NullAndEmptyHeadersClientCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/NullAndEmptyHeadersClientCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NullAndEmptyHeadersIO } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { NullAndEmptyHeadersIO } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { NullAndEmptyHeadersClient } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/NullAndEmptyHeadersServerCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/NullAndEmptyHeadersServerCommand.ts index c903089763c62..eb3c3a3a273d1 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/NullAndEmptyHeadersServerCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/NullAndEmptyHeadersServerCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NullAndEmptyHeadersIO } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { NullAndEmptyHeadersIO } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { NullAndEmptyHeadersServer } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/OmitsNullSerializesEmptyStringCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/OmitsNullSerializesEmptyStringCommand.ts index a60aad07d81cd..6a4f64102c341 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/OmitsNullSerializesEmptyStringCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/OmitsNullSerializesEmptyStringCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OmitsNullSerializesEmptyStringInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { OmitsNullSerializesEmptyStringInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { OmitsNullSerializesEmptyString } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/PutWithContentEncodingCommand.ts index bd135de8b212b..cde000fe6d9d2 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/PutWithContentEncodingCommand.ts @@ -2,11 +2,15 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWithContentEncodingInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { PutWithContentEncodingInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { PutWithContentEncoding } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index 5ef0f92d06804..e4dc13cf2e9f6 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { QueryIdempotencyTokenAutoFill } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/QueryParamsAsStringListMapCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/QueryParamsAsStringListMapCommand.ts index 7b0f9d5652261..3aed56e46bccc 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/QueryParamsAsStringListMapCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/QueryParamsAsStringListMapCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryParamsAsStringListMapInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { QueryParamsAsStringListMapInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { QueryParamsAsStringListMap } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/QueryPrecedenceCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/QueryPrecedenceCommand.ts index d13c3d552f611..af413782591d5 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/QueryPrecedenceCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/QueryPrecedenceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryPrecedenceInput } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { QueryPrecedenceInput } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { QueryPrecedence } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/RecursiveShapesCommand.ts index 21ba9fc454810..b4eb8f36ac054 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/RecursiveShapesCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/RecursiveShapesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveShapesRequest, RecursiveShapesResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { RecursiveShapesRequest, RecursiveShapesResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { RecursiveShapes } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/SimpleScalarPropertiesCommand.ts index 4d9596a420677..12421d787ce7f 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/SimpleScalarPropertiesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarPropertiesRequest, SimpleScalarPropertiesResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { SimpleScalarPropertiesRequest, SimpleScalarPropertiesResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { SimpleScalarProperties } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/TimestampFormatHeadersCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/TimestampFormatHeadersCommand.ts index 6026b19f9606b..1c1f096a2d08c 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/TimestampFormatHeadersCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/TimestampFormatHeadersCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TimestampFormatHeadersIO } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { TimestampFormatHeadersIO } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { TimestampFormatHeaders } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlAttributesCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlAttributesCommand.ts index f6baa3e5488c0..21b44bed2e18b 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlAttributesCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlAttributesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlAttributesRequest, XmlAttributesResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlAttributesRequest, XmlAttributesResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlAttributes } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlAttributesOnPayloadCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlAttributesOnPayloadCommand.ts index bcef89b10620a..daa1e410a70fb 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlAttributesOnPayloadCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlAttributesOnPayloadCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlAttributesOnPayloadRequest, XmlAttributesOnPayloadResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlAttributesOnPayloadRequest, XmlAttributesOnPayloadResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlAttributesOnPayload } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlBlobsCommand.ts index 169d941986490..4a04978ac6c8f 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlBlobsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlBlobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsRequest, XmlBlobsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlBlobsRequest, XmlBlobsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlBlobs } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyBlobsCommand.ts index a296fdc77a625..10e6d537afcdf 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyBlobsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyBlobsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEmptyBlobsRequest, XmlEmptyBlobsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlEmptyBlobsRequest, XmlEmptyBlobsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlEmptyBlobs } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyListsCommand.ts index 5d205b7a900a3..305d6a5fa8f17 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyListsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyListsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEmptyListsRequest, XmlEmptyListsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlEmptyListsRequest, XmlEmptyListsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlEmptyLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyMapsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyMapsCommand.ts index 6ad0afe73117c..af9c867a2b9f0 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyMapsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyMapsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEmptyMapsRequest, XmlEmptyMapsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlEmptyMapsRequest, XmlEmptyMapsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlEmptyMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyStringsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyStringsCommand.ts index bfd6f2e65ab28..7b473c5132803 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyStringsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlEmptyStringsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEmptyStringsRequest, XmlEmptyStringsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlEmptyStringsRequest, XmlEmptyStringsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlEmptyStrings } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlEnumsCommand.ts index 1f46dfe1a0726..85a4068bfae38 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlEnumsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlEnumsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEnumsRequest, XmlEnumsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlEnumsRequest, XmlEnumsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlIntEnumsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlIntEnumsCommand.ts index f3c4c8c397eb9..6d9fc3efd6be4 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlIntEnumsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlIntEnumsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlIntEnumsRequest, XmlIntEnumsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlIntEnumsRequest, XmlIntEnumsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlIntEnums } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlListsCommand.ts index 2f2e93aba9900..9c9af9bde6e27 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlListsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlListsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsRequest, XmlListsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlListsRequest, XmlListsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlMapWithXmlNamespaceCommand.ts index 3d63d4a19739f..898a81e2a20a8 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlMapWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlMapWithXmlNamespaceCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapWithXmlNamespaceRequest, XmlMapWithXmlNamespaceResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlMapWithXmlNamespaceRequest, XmlMapWithXmlNamespaceResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlMapWithXmlNamespace } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlMapsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlMapsCommand.ts index 6ce6d1dd4506f..a8f7b5808d0bb 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlMapsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlMapsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsRequest, XmlMapsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlMapsRequest, XmlMapsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlMapsXmlNameCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlMapsXmlNameCommand.ts index cbb69004e15f4..550b14b3264b5 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlMapsXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlMapsXmlNameCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsXmlNameRequest, XmlMapsXmlNameResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlMapsXmlNameRequest, XmlMapsXmlNameResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlMapsXmlName } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlNamespacesCommand.ts index 296076bf2b61e..b558184326672 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlNamespacesCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlNamespacesCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlNamespacesRequest, XmlNamespacesResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlNamespacesRequest, XmlNamespacesResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlNamespaces } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlTimestampsCommand.ts index e933021f68257..02f349a2dee1a 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlTimestampsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlTimestampsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlTimestampsRequest, XmlTimestampsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlTimestampsRequest, XmlTimestampsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlTimestamps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/commands/XmlUnionsCommand.ts b/private/aws-protocoltests-restxml-schema/src/commands/XmlUnionsCommand.ts index 550d4afe0b09b..8826f228a1bd3 100644 --- a/private/aws-protocoltests-restxml-schema/src/commands/XmlUnionsCommand.ts +++ b/private/aws-protocoltests-restxml-schema/src/commands/XmlUnionsCommand.ts @@ -1,11 +1,15 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlUnionsRequest, XmlUnionsResponse } from "../models/models_0"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { XmlUnionsRequest, XmlUnionsResponse } from "../models/models_0"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; import { XmlUnions } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-restxml-schema/src/endpoint/EndpointParameters.ts index c67d03508b7c9..7c350cee97cda 100644 --- a/private/aws-protocoltests-restxml-schema/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-restxml-schema/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-restxml-schema/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-restxml-schema/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-restxml-schema/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-restxml-schema/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-restxml-schema/src/endpoint/ruleset.ts b/private/aws-protocoltests-restxml-schema/src/endpoint/ruleset.ts index ee363a0be8df5..ac96ee9d9ee4c 100644 --- a/private/aws-protocoltests-restxml-schema/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-restxml-schema/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-restxml-schema/src/extensionConfiguration.ts b/private/aws-protocoltests-restxml-schema/src/extensionConfiguration.ts index 7fe618ee55c1a..b1a5c21530fcb 100644 --- a/private/aws-protocoltests-restxml-schema/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-restxml-schema/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-restxml-schema/src/models/RestXmlProtocolServiceException.ts b/private/aws-protocoltests-restxml-schema/src/models/RestXmlProtocolServiceException.ts index 75765a3d0eea5..2d31f7ad6bdd6 100644 --- a/private/aws-protocoltests-restxml-schema/src/models/RestXmlProtocolServiceException.ts +++ b/private/aws-protocoltests-restxml-schema/src/models/RestXmlProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-restxml-schema/src/models/errors.ts b/private/aws-protocoltests-restxml-schema/src/models/errors.ts index c480d2d89e619..76b65db96787c 100644 --- a/private/aws-protocoltests-restxml-schema/src/models/errors.ts +++ b/private/aws-protocoltests-restxml-schema/src/models/errors.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; -import { ComplexNestedErrorData } from "./models_0"; +import type { ComplexNestedErrorData } from "./models_0"; import { RestXmlProtocolServiceException as __BaseException } from "./RestXmlProtocolServiceException"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/models/models_0.ts b/private/aws-protocoltests-restxml-schema/src/models/models_0.ts index 573d5869b8c80..3ccb44cf1efa1 100644 --- a/private/aws-protocoltests-restxml-schema/src/models/models_0.ts +++ b/private/aws-protocoltests-restxml-schema/src/models/models_0.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { FooEnum, IntegerEnum, StringEnum } from "./enums"; +import type { FooEnum, IntegerEnum, StringEnum } from "./enums"; /** * @public diff --git a/private/aws-protocoltests-restxml-schema/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restxml-schema/src/runtimeConfig.browser.ts index 9a54730b16866..bcf8e517e29a7 100644 --- a/private/aws-protocoltests-restxml-schema/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-restxml-schema/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; + +import type { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-restxml-schema/src/runtimeConfig.native.ts b/private/aws-protocoltests-restxml-schema/src/runtimeConfig.native.ts index 4402a7671aa1f..ee59217fd0d5a 100644 --- a/private/aws-protocoltests-restxml-schema/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-restxml-schema/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; +import type { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-restxml-schema/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restxml-schema/src/runtimeConfig.shared.ts index dae3c4a8b4fdd..52a89b997accc 100644 --- a/private/aws-protocoltests-restxml-schema/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-restxml-schema/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { AwsRestXmlProtocol } from "@aws-sdk/core/protocols"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRestXmlProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; +import type { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-restxml-schema/src/runtimeConfig.ts b/private/aws-protocoltests-restxml-schema/src/runtimeConfig.ts index 9a249fa3055ea..911b3b6f75312 100644 --- a/private/aws-protocoltests-restxml-schema/src/runtimeConfig.ts +++ b/private/aws-protocoltests-restxml-schema/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; + +import type { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-restxml-schema/src/runtimeExtensions.ts b/private/aws-protocoltests-restxml-schema/src/runtimeExtensions.ts index d79bf9dbd8bb9..0169ae67f2170 100644 --- a/private/aws-protocoltests-restxml-schema/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-restxml-schema/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RestXmlProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { RestXmlProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-restxml-schema/src/schemas/schemas_0.ts b/private/aws-protocoltests-restxml-schema/src/schemas/schemas_0.ts index 94e2ac107fd10..6933ad019b1aa 100644 --- a/private/aws-protocoltests-restxml-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-restxml-schema/src/schemas/schemas_0.ts @@ -425,7 +425,7 @@ const n1 = "aws.protocoltests.restxml"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/private/aws-protocoltests-restxml-schema/test/functional/restxml.spec.ts b/private/aws-protocoltests-restxml-schema/test/functional/restxml.spec.ts index 4b54b01b481d1..1ef095eeb4cd4 100644 --- a/private/aws-protocoltests-restxml-schema/test/functional/restxml.spec.ts +++ b/private/aws-protocoltests-restxml-schema/test/functional/restxml.spec.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; import { buildQueryString } from "@smithy/querystring-builder"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; import { decodeHTML } from "entities"; import { XMLParser } from "fast-xml-parser"; -import { Readable } from "stream"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { AllQueryStringTypesCommand } from "../../src/commands/AllQueryStringTypesCommand"; diff --git a/private/aws-protocoltests-restxml/package.json b/private/aws-protocoltests-restxml/package.json index c84970d6f50b7..36feba337f005 100644 --- a/private/aws-protocoltests-restxml/package.json +++ b/private/aws-protocoltests-restxml/package.json @@ -33,28 +33,28 @@ "@aws-sdk/util-user-agent-node": "*", "@aws-sdk/xml-builder": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", - "@smithy/middleware-compression": "^4.3.12", + "@smithy/middleware-compression": "^4.3.13", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", "@smithy/querystring-builder": "^4.2.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-restxml/src/RestXmlProtocol.ts b/private/aws-protocoltests-restxml/src/RestXmlProtocol.ts index 50615e113b4cd..31fc293498867 100644 --- a/private/aws-protocoltests-restxml/src/RestXmlProtocol.ts +++ b/private/aws-protocoltests-restxml/src/RestXmlProtocol.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { AllQueryStringTypesCommand, @@ -298,7 +298,7 @@ import { XmlTimestampsCommandOutput, } from "./commands/XmlTimestampsCommand"; import { XmlUnionsCommand, XmlUnionsCommandInput, XmlUnionsCommandOutput } from "./commands/XmlUnionsCommand"; -import { RestXmlProtocolClient, RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; +import { RestXmlProtocolClient } from "./RestXmlProtocolClient"; const commands = { AllQueryStringTypesCommand, diff --git a/private/aws-protocoltests-restxml/src/RestXmlProtocolClient.ts b/private/aws-protocoltests-restxml/src/RestXmlProtocolClient.ts index 6d6b5a5117ea6..49c11bfb54879 100644 --- a/private/aws-protocoltests-restxml/src/RestXmlProtocolClient.ts +++ b/private/aws-protocoltests-restxml/src/RestXmlProtocolClient.ts @@ -1,66 +1,75 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { - DefaultAwsRegionalEndpointsInputConfig, - DefaultAwsRegionalEndpointsResolvedConfig, + type DefaultAwsRegionalEndpointsInputConfig, + type DefaultAwsRegionalEndpointsResolvedConfig, resolveDefaultAwsRegionalEndpointsConfig, } from "@aws-sdk/util-endpoints"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core"; import { - CompressionInputConfig, - CompressionResolvedConfig, + type CompressionInputConfig, + type CompressionResolvedConfig, resolveCompressionConfig, } from "@smithy/middleware-compression"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { EndpointInputConfig, EndpointResolvedConfig, resolveEndpointConfig } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type EndpointInputConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, AwsCredentialIdentityProvider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, EndpointV2 as __EndpointV2, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRestXmlProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { @@ -236,7 +245,7 @@ import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-restxml/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-restxml/src/auth/httpAuthExtensionConfiguration.ts index 4a16a62791bef..64d3e288d0fc9 100644 --- a/private/aws-protocoltests-restxml/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-restxml/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types"; +import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types"; -import { RestXmlProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RestXmlProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-restxml/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-restxml/src/auth/httpAuthSchemeProvider.ts index 97062b9474141..27785e277144e 100644 --- a/private/aws-protocoltests-restxml/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-restxml/src/auth/httpAuthSchemeProvider.ts @@ -5,7 +5,7 @@ import { AwsSdkSigV4PreviouslyResolved, resolveAwsSdkSigV4Config, } from "@aws-sdk/core"; -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -16,7 +16,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RestXmlProtocolClientConfig, RestXmlProtocolClientResolvedConfig } from "../RestXmlProtocolClient"; +import { type RestXmlProtocolClientResolvedConfig, RestXmlProtocolClientConfig } from "../RestXmlProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts b/private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts index bad54f2c55e46..b7118fb4844ef 100644 --- a/private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/AllQueryStringTypesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { AllQueryStringTypesInput } from "../models/models_0"; +import type { AllQueryStringTypesInput } from "../models/models_0"; import { de_AllQueryStringTypesCommand, se_AllQueryStringTypesCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts index 092af22bfeab1..2904c0e15830c 100644 --- a/private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/BodyWithXmlNameCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { BodyWithXmlNameInputOutput } from "../models/models_0"; +import type { BodyWithXmlNameInputOutput } from "../models/models_0"; import { de_BodyWithXmlNameCommand, se_BodyWithXmlNameCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts b/private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts index c594bcfaa2677..97c086ac930b6 100644 --- a/private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/ConstantAndVariableQueryStringCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConstantAndVariableQueryStringInput } from "../models/models_0"; +import type { ConstantAndVariableQueryStringInput } from "../models/models_0"; import { de_ConstantAndVariableQueryStringCommand, se_ConstantAndVariableQueryStringCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts b/private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts index 9c1d9464c926d..e0f242377d228 100644 --- a/private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/ConstantQueryStringCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ConstantQueryStringInput } from "../models/models_0"; +import type { ConstantQueryStringInput } from "../models/models_0"; import { de_ConstantQueryStringCommand, se_ConstantQueryStringCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/ContentTypeParametersCommand.ts b/private/aws-protocoltests-restxml/src/commands/ContentTypeParametersCommand.ts index 39772241b0900..42b9aa93bdfe9 100644 --- a/private/aws-protocoltests-restxml/src/commands/ContentTypeParametersCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/ContentTypeParametersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; +import type { ContentTypeParametersInput, ContentTypeParametersOutput } from "../models/models_0"; import { de_ContentTypeParametersCommand, se_ContentTypeParametersCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/DatetimeOffsetsCommand.ts b/private/aws-protocoltests-restxml/src/commands/DatetimeOffsetsCommand.ts index 2fe3a29ad3d1d..51fce637ed09b 100644 --- a/private/aws-protocoltests-restxml/src/commands/DatetimeOffsetsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/DatetimeOffsetsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { DatetimeOffsetsOutput } from "../models/models_0"; +import type { DatetimeOffsetsOutput } from "../models/models_0"; import { de_DatetimeOffsetsCommand, se_DatetimeOffsetsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts b/private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts index a41b1b0a0b3cc..369e2e280b7a9 100644 --- a/private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/EmptyInputAndEmptyOutputCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; +import type { EmptyInputAndEmptyOutputInput, EmptyInputAndEmptyOutputOutput } from "../models/models_0"; import { de_EmptyInputAndEmptyOutputCommand, se_EmptyInputAndEmptyOutputCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts b/private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts index e67d26f1c6baf..eb635e196d5f3 100644 --- a/private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/EndpointOperationCommand.ts @@ -2,11 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_EndpointOperationCommand, se_EndpointOperationCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts index a72268c8c71a4..1b0d8f1d5fcfc 100644 --- a/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelHeaderOperationCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HostLabelHeaderInput } from "../models/models_0"; +import type { HostLabelHeaderInput } from "../models/models_0"; import { de_EndpointWithHostLabelHeaderOperationCommand, se_EndpointWithHostLabelHeaderOperationCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts index bcf1781786b3e..44be3f506b88a 100644 --- a/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/EndpointWithHostLabelOperationCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EndpointWithHostLabelOperationRequest } from "../models/models_0"; +import type { EndpointWithHostLabelOperationRequest } from "../models/models_0"; import { de_EndpointWithHostLabelOperationCommand, se_EndpointWithHostLabelOperationCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts index 16573812976ff..3ed493d81c77f 100644 --- a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapRequest, FlattenedXmlMapResponse } from "../models/models_0"; +import type { FlattenedXmlMapRequest, FlattenedXmlMapResponse } from "../models/models_0"; import { de_FlattenedXmlMapCommand, se_FlattenedXmlMapCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts index 5033422dde81a..58bfb8e4d2e29 100644 --- a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNameCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapWithXmlNameRequest, FlattenedXmlMapWithXmlNameResponse } from "../models/models_0"; +import type { FlattenedXmlMapWithXmlNameRequest, FlattenedXmlMapWithXmlNameResponse } from "../models/models_0"; import { de_FlattenedXmlMapWithXmlNameCommand, se_FlattenedXmlMapWithXmlNameCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts index 3eb97ba92ebc5..af00c0ae823d1 100644 --- a/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/FlattenedXmlMapWithXmlNamespaceCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FlattenedXmlMapWithXmlNamespaceOutput } from "../models/models_0"; +import type { FlattenedXmlMapWithXmlNamespaceOutput } from "../models/models_0"; import { de_FlattenedXmlMapWithXmlNamespaceCommand, se_FlattenedXmlMapWithXmlNamespaceCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-restxml/src/commands/FractionalSecondsCommand.ts index 49194d35cf892..a7374e38bde35 100644 --- a/private/aws-protocoltests-restxml/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/FractionalSecondsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; +import type { FractionalSecondsOutput } from "../models/models_0"; import { de_FractionalSecondsCommand, se_FractionalSecondsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts index 51f13565e6eec..df881f5a32e21 100644 --- a/private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/GreetingWithErrorsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; import { de_GreetingWithErrorsCommand, se_GreetingWithErrorsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpEmptyPrefixHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpEmptyPrefixHeadersCommand.ts index b972a02341681..a1810f522a0e3 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpEmptyPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpEmptyPrefixHeadersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpEmptyPrefixHeadersInput, HttpEmptyPrefixHeadersOutput } from "../models/models_0"; +import type { HttpEmptyPrefixHeadersInput, HttpEmptyPrefixHeadersOutput } from "../models/models_0"; import { de_HttpEmptyPrefixHeadersCommand, se_HttpEmptyPrefixHeadersCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpEnumPayloadCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpEnumPayloadCommand.ts index c1d4038de0cbf..82224d6bf5526 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpEnumPayloadCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpEnumPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EnumPayloadInput } from "../models/models_0"; +import type { EnumPayloadInput } from "../models/models_0"; import { de_HttpEnumPayloadCommand, se_HttpEnumPayloadCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts index 7644e50d40bd2..ba77aea7f61dc 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsCommand.ts @@ -2,13 +2,17 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; import { HttpPayloadTraitsInputOutput } from "../models/models_0"; import { de_HttpPayloadTraitsCommand, se_HttpPayloadTraitsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts index 8bb97c5e8d256..3bf2a652db2c4 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadTraitsWithMediaTypeCommand.ts @@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types"; import { Uint8ArrayBlobAdapter } from "@smithy/util-stream"; import { commonParams } from "../endpoint/EndpointParameters"; @@ -11,7 +11,11 @@ import { de_HttpPayloadTraitsWithMediaTypeCommand, se_HttpPayloadTraitsWithMediaTypeCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts index 7d6737c813469..8063c9415176f 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithMemberXmlNameCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithMemberXmlNameInputOutput } from "../models/models_0"; +import type { HttpPayloadWithMemberXmlNameInputOutput } from "../models/models_0"; import { de_HttpPayloadWithMemberXmlNameCommand, se_HttpPayloadWithMemberXmlNameCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts index 7e80568e15130..e7cbebed5c30d 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithStructureCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithStructureInputOutput } from "../models/models_0"; +import type { HttpPayloadWithStructureInputOutput } from "../models/models_0"; import { de_HttpPayloadWithStructureCommand, se_HttpPayloadWithStructureCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithUnionCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithUnionCommand.ts index 94d431cb2ebbb..c8b63e42af3bf 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithUnionCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithUnionCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithUnionInputOutput } from "../models/models_0"; +import type { HttpPayloadWithUnionInputOutput } from "../models/models_0"; import { de_HttpPayloadWithUnionCommand, se_HttpPayloadWithUnionCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts index 865b406f0b047..ef8a276c74960 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNameCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithXmlNameInputOutput } from "../models/models_0"; +import type { HttpPayloadWithXmlNameInputOutput } from "../models/models_0"; import { de_HttpPayloadWithXmlNameCommand, se_HttpPayloadWithXmlNameCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts index 9d0a2b8cecc38..81a9bcb1c31d0 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceAndPrefixCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithXmlNamespaceAndPrefixInputOutput } from "../models/models_0"; +import type { HttpPayloadWithXmlNamespaceAndPrefixInputOutput } from "../models/models_0"; import { de_HttpPayloadWithXmlNamespaceAndPrefixCommand, se_HttpPayloadWithXmlNamespaceAndPrefixCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts index 52203ccc00a3d..ec5f2caefe2d9 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPayloadWithXmlNamespaceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPayloadWithXmlNamespaceInputOutput } from "../models/models_0"; +import type { HttpPayloadWithXmlNamespaceInputOutput } from "../models/models_0"; import { de_HttpPayloadWithXmlNamespaceCommand, se_HttpPayloadWithXmlNamespaceCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts index f0690333b9bac..a286659f36f6f 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpPrefixHeadersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpPrefixHeadersInputOutput } from "../models/models_0"; +import type { HttpPrefixHeadersInputOutput } from "../models/models_0"; import { de_HttpPrefixHeadersCommand, se_HttpPrefixHeadersCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts index 703e83cc3cc42..7930fc35a2700 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithFloatLabelsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithFloatLabelsInput } from "../models/models_0"; +import type { HttpRequestWithFloatLabelsInput } from "../models/models_0"; import { de_HttpRequestWithFloatLabelsCommand, se_HttpRequestWithFloatLabelsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts index 940ef1597aa7d..09d7f6532f56d 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithGreedyLabelInPathCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithGreedyLabelInPathInput } from "../models/models_0"; +import type { HttpRequestWithGreedyLabelInPathInput } from "../models/models_0"; import { de_HttpRequestWithGreedyLabelInPathCommand, se_HttpRequestWithGreedyLabelInPathCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts index 5d2b6898f6edd..1e9633c3a8242 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsAndTimestampFormatCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithLabelsAndTimestampFormatInput } from "../models/models_0"; +import type { HttpRequestWithLabelsAndTimestampFormatInput } from "../models/models_0"; import { de_HttpRequestWithLabelsAndTimestampFormatCommand, se_HttpRequestWithLabelsAndTimestampFormatCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts index 7e67d0010e8ba..dc071a44a96dc 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpRequestWithLabelsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpRequestWithLabelsInput } from "../models/models_0"; +import type { HttpRequestWithLabelsInput } from "../models/models_0"; import { de_HttpRequestWithLabelsCommand, se_HttpRequestWithLabelsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts index 3225b3c92920a..4386a3e2373db 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpResponseCodeCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { HttpResponseCodeOutput } from "../models/models_0"; +import type { HttpResponseCodeOutput } from "../models/models_0"; import { de_HttpResponseCodeCommand, se_HttpResponseCodeCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/HttpStringPayloadCommand.ts b/private/aws-protocoltests-restxml/src/commands/HttpStringPayloadCommand.ts index e89550d989f51..af9504206aa5d 100644 --- a/private/aws-protocoltests-restxml/src/commands/HttpStringPayloadCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/HttpStringPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { StringPayloadInput } from "../models/models_0"; +import type { StringPayloadInput } from "../models/models_0"; import { de_HttpStringPayloadCommand, se_HttpStringPayloadCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts b/private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts index b81c31e0c19e3..0bd31a937acde 100644 --- a/private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/IgnoreQueryParamsInResponseCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { IgnoreQueryParamsInResponseOutput } from "../models/models_0"; +import type { IgnoreQueryParamsInResponseOutput } from "../models/models_0"; import { de_IgnoreQueryParamsInResponseCommand, se_IgnoreQueryParamsInResponseCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts index 81520f972b91d..906692b0e68d6 100644 --- a/private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/InputAndOutputWithHeadersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { InputAndOutputWithHeadersIO } from "../models/models_0"; +import type { InputAndOutputWithHeadersIO } from "../models/models_0"; import { de_InputAndOutputWithHeadersCommand, se_InputAndOutputWithHeadersCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/NestedXmlMapWithXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/NestedXmlMapWithXmlNameCommand.ts index 2558f5f019743..f42f1cce76ae8 100644 --- a/private/aws-protocoltests-restxml/src/commands/NestedXmlMapWithXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NestedXmlMapWithXmlNameCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NestedXmlMapWithXmlNameRequest, NestedXmlMapWithXmlNameResponse } from "../models/models_0"; +import type { NestedXmlMapWithXmlNameRequest, NestedXmlMapWithXmlNameResponse } from "../models/models_0"; import { de_NestedXmlMapWithXmlNameCommand, se_NestedXmlMapWithXmlNameCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts b/private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts index 5c891036071ba..be6208abf4a4c 100644 --- a/private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NestedXmlMapsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NestedXmlMapsRequest, NestedXmlMapsResponse } from "../models/models_0"; +import type { NestedXmlMapsRequest, NestedXmlMapsResponse } from "../models/models_0"; import { de_NestedXmlMapsCommand, se_NestedXmlMapsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts b/private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts index 28c340371b5d7..eb6d15824e0e1 100644 --- a/private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NoInputAndNoOutputCommand.ts @@ -2,11 +2,15 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_NoInputAndNoOutputCommand, se_NoInputAndNoOutputCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts b/private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts index 3034b51d36027..8798e05e64681 100644 --- a/private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NoInputAndOutputCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NoInputAndOutputOutput } from "../models/models_0"; +import type { NoInputAndOutputOutput } from "../models/models_0"; import { de_NoInputAndOutputCommand, se_NoInputAndOutputCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts index f53dd2b4d3f0c..1f9f6e4cd3f5e 100644 --- a/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersClientCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NullAndEmptyHeadersIO } from "../models/models_0"; +import type { NullAndEmptyHeadersIO } from "../models/models_0"; import { de_NullAndEmptyHeadersClientCommand, se_NullAndEmptyHeadersClientCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts index de88faf0d9510..2039b845a152e 100644 --- a/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/NullAndEmptyHeadersServerCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { NullAndEmptyHeadersIO } from "../models/models_0"; +import type { NullAndEmptyHeadersIO } from "../models/models_0"; import { de_NullAndEmptyHeadersServerCommand, se_NullAndEmptyHeadersServerCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts b/private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts index f45e9048ec737..39f703c30f905 100644 --- a/private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/OmitsNullSerializesEmptyStringCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OmitsNullSerializesEmptyStringInput } from "../models/models_0"; +import type { OmitsNullSerializesEmptyStringInput } from "../models/models_0"; import { de_OmitsNullSerializesEmptyStringCommand, se_OmitsNullSerializesEmptyStringCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/PutWithContentEncodingCommand.ts b/private/aws-protocoltests-restxml/src/commands/PutWithContentEncodingCommand.ts index 6372827026605..b941025ef37ec 100644 --- a/private/aws-protocoltests-restxml/src/commands/PutWithContentEncodingCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/PutWithContentEncodingCommand.ts @@ -3,12 +3,16 @@ import { getCompressionPlugin } from "@smithy/middleware-compression"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { PutWithContentEncodingInput } from "../models/models_0"; +import type { PutWithContentEncodingInput } from "../models/models_0"; import { de_PutWithContentEncodingCommand, se_PutWithContentEncodingCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts b/private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts index c888c9dd292cc..5d2dc884a534c 100644 --- a/private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/QueryIdempotencyTokenAutoFillCommand.ts @@ -2,15 +2,19 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; +import type { QueryIdempotencyTokenAutoFillInput } from "../models/models_0"; import { de_QueryIdempotencyTokenAutoFillCommand, se_QueryIdempotencyTokenAutoFillCommand, } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts b/private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts index e13f2fdf7c9cc..523b0f8f3ff9c 100644 --- a/private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/QueryParamsAsStringListMapCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryParamsAsStringListMapInput } from "../models/models_0"; +import type { QueryParamsAsStringListMapInput } from "../models/models_0"; import { de_QueryParamsAsStringListMapCommand, se_QueryParamsAsStringListMapCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts b/private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts index 1e3fcdfdcec40..51011d16c5185 100644 --- a/private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/QueryPrecedenceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { QueryPrecedenceInput } from "../models/models_0"; +import type { QueryPrecedenceInput } from "../models/models_0"; import { de_QueryPrecedenceCommand, se_QueryPrecedenceCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts index a04c73f843b6d..5e6ae733cf69c 100644 --- a/private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/RecursiveShapesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveShapesRequest, RecursiveShapesResponse } from "../models/models_0"; +import type { RecursiveShapesRequest, RecursiveShapesResponse } from "../models/models_0"; import { de_RecursiveShapesCommand, se_RecursiveShapesCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts index 0bd937e52f6d6..e48d12e20e430 100644 --- a/private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/SimpleScalarPropertiesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarPropertiesRequest, SimpleScalarPropertiesResponse } from "../models/models_0"; +import type { SimpleScalarPropertiesRequest, SimpleScalarPropertiesResponse } from "../models/models_0"; import { de_SimpleScalarPropertiesCommand, se_SimpleScalarPropertiesCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts b/private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts index 616d4819a4d84..1fadd7dc701b7 100644 --- a/private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/TimestampFormatHeadersCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { TimestampFormatHeadersIO } from "../models/models_0"; +import type { TimestampFormatHeadersIO } from "../models/models_0"; import { de_TimestampFormatHeadersCommand, se_TimestampFormatHeadersCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts index 6db17ff5b9179..2ee4c9ed2e02c 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlAttributesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlAttributesRequest, XmlAttributesResponse } from "../models/models_0"; +import type { XmlAttributesRequest, XmlAttributesResponse } from "../models/models_0"; import { de_XmlAttributesCommand, se_XmlAttributesCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts index fdda7586aa8a7..0072404be9c5a 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlAttributesOnPayloadCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlAttributesOnPayloadRequest, XmlAttributesOnPayloadResponse } from "../models/models_0"; +import type { XmlAttributesOnPayloadRequest, XmlAttributesOnPayloadResponse } from "../models/models_0"; import { de_XmlAttributesOnPayloadCommand, se_XmlAttributesOnPayloadCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts index 3d1d232fc3fd3..f07d55244e11a 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlBlobsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlBlobsRequest, XmlBlobsResponse } from "../models/models_0"; +import type { XmlBlobsRequest, XmlBlobsResponse } from "../models/models_0"; import { de_XmlBlobsCommand, se_XmlBlobsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts index 3a324ec920d3c..a9934b3262889 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEmptyBlobsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEmptyBlobsRequest, XmlEmptyBlobsResponse } from "../models/models_0"; +import type { XmlEmptyBlobsRequest, XmlEmptyBlobsResponse } from "../models/models_0"; import { de_XmlEmptyBlobsCommand, se_XmlEmptyBlobsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts index 8347c5d18d5b4..f7463f10d313e 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEmptyListsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEmptyListsRequest, XmlEmptyListsResponse } from "../models/models_0"; +import type { XmlEmptyListsRequest, XmlEmptyListsResponse } from "../models/models_0"; import { de_XmlEmptyListsCommand, se_XmlEmptyListsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts index 09a4158cc5da7..9fa26b6914707 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEmptyMapsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEmptyMapsRequest, XmlEmptyMapsResponse } from "../models/models_0"; +import type { XmlEmptyMapsRequest, XmlEmptyMapsResponse } from "../models/models_0"; import { de_XmlEmptyMapsCommand, se_XmlEmptyMapsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts index ad62cb21baf1c..787ecd9ad6b87 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEmptyStringsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEmptyStringsRequest, XmlEmptyStringsResponse } from "../models/models_0"; +import type { XmlEmptyStringsRequest, XmlEmptyStringsResponse } from "../models/models_0"; import { de_XmlEmptyStringsCommand, se_XmlEmptyStringsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts index 1297e732cc912..66fcca26bc184 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlEnumsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlEnumsRequest, XmlEnumsResponse } from "../models/models_0"; +import type { XmlEnumsRequest, XmlEnumsResponse } from "../models/models_0"; import { de_XmlEnumsCommand, se_XmlEnumsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlIntEnumsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlIntEnumsCommand.ts index 31a622c50743f..ccfde2250f9fe 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlIntEnumsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlIntEnumsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlIntEnumsRequest, XmlIntEnumsResponse } from "../models/models_0"; +import type { XmlIntEnumsRequest, XmlIntEnumsResponse } from "../models/models_0"; import { de_XmlIntEnumsCommand, se_XmlIntEnumsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts index 92bf5c80270bd..c549b71e9f526 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlListsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlListsRequest, XmlListsResponse } from "../models/models_0"; +import type { XmlListsRequest, XmlListsResponse } from "../models/models_0"; import { de_XmlListsCommand, se_XmlListsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlMapWithXmlNamespaceCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlMapWithXmlNamespaceCommand.ts index bda3dcc7df4b2..2ebac634c494e 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlMapWithXmlNamespaceCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlMapWithXmlNamespaceCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapWithXmlNamespaceRequest, XmlMapWithXmlNamespaceResponse } from "../models/models_0"; +import type { XmlMapWithXmlNamespaceRequest, XmlMapWithXmlNamespaceResponse } from "../models/models_0"; import { de_XmlMapWithXmlNamespaceCommand, se_XmlMapWithXmlNamespaceCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts index 708e55eb6c3ab..39fcb8ac530ab 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlMapsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsRequest, XmlMapsResponse } from "../models/models_0"; +import type { XmlMapsRequest, XmlMapsResponse } from "../models/models_0"; import { de_XmlMapsCommand, se_XmlMapsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts index 0de111e9ce019..84e74e0f83c80 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlMapsXmlNameCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlMapsXmlNameRequest, XmlMapsXmlNameResponse } from "../models/models_0"; +import type { XmlMapsXmlNameRequest, XmlMapsXmlNameResponse } from "../models/models_0"; import { de_XmlMapsXmlNameCommand, se_XmlMapsXmlNameCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts index 269b93440c715..58e7799b7e305 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlNamespacesCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlNamespacesRequest, XmlNamespacesResponse } from "../models/models_0"; +import type { XmlNamespacesRequest, XmlNamespacesResponse } from "../models/models_0"; import { de_XmlNamespacesCommand, se_XmlNamespacesCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts index 2be6624c6850a..7df76befd928e 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlTimestampsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlTimestampsRequest, XmlTimestampsResponse } from "../models/models_0"; +import type { XmlTimestampsRequest, XmlTimestampsResponse } from "../models/models_0"; import { de_XmlTimestampsCommand, se_XmlTimestampsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts b/private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts index c744a6cc800c1..0405568458a22 100644 --- a/private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts +++ b/private/aws-protocoltests-restxml/src/commands/XmlUnionsCommand.ts @@ -2,12 +2,16 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { XmlUnionsRequest, XmlUnionsResponse } from "../models/models_0"; +import type { XmlUnionsRequest, XmlUnionsResponse } from "../models/models_0"; import { de_XmlUnionsCommand, se_XmlUnionsCommand } from "../protocols/Aws_restXml"; -import { RestXmlProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RestXmlProtocolClient"; +import type { + RestXmlProtocolClientResolvedConfig, + ServiceInputTypes, + ServiceOutputTypes, +} from "../RestXmlProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-restxml/src/endpoint/EndpointParameters.ts index c67d03508b7c9..7c350cee97cda 100644 --- a/private/aws-protocoltests-restxml/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-restxml/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-restxml/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-restxml/src/endpoint/endpointResolver.ts index ccee107f30d6d..c3190f9f8490a 100644 --- a/private/aws-protocoltests-restxml/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-restxml/src/endpoint/endpointResolver.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code import { awsEndpointFunctions } from "@aws-sdk/util-endpoints"; -import { EndpointV2, Logger } from "@smithy/types"; -import { customEndpointFunctions, EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-restxml/src/endpoint/ruleset.ts b/private/aws-protocoltests-restxml/src/endpoint/ruleset.ts index ee363a0be8df5..ac96ee9d9ee4c 100644 --- a/private/aws-protocoltests-restxml/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-restxml/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-restxml/src/extensionConfiguration.ts b/private/aws-protocoltests-restxml/src/extensionConfiguration.ts index 7fe618ee55c1a..b1a5c21530fcb 100644 --- a/private/aws-protocoltests-restxml/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-restxml/src/extensionConfiguration.ts @@ -1,9 +1,9 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-restxml/src/models/RestXmlProtocolServiceException.ts b/private/aws-protocoltests-restxml/src/models/RestXmlProtocolServiceException.ts index 75765a3d0eea5..2d31f7ad6bdd6 100644 --- a/private/aws-protocoltests-restxml/src/models/RestXmlProtocolServiceException.ts +++ b/private/aws-protocoltests-restxml/src/models/RestXmlProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-restxml/src/models/errors.ts b/private/aws-protocoltests-restxml/src/models/errors.ts index c480d2d89e619..67fe7595bd130 100644 --- a/private/aws-protocoltests-restxml/src/models/errors.ts +++ b/private/aws-protocoltests-restxml/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ComplexNestedErrorData } from "./models_0"; import { RestXmlProtocolServiceException as __BaseException } from "./RestXmlProtocolServiceException"; diff --git a/private/aws-protocoltests-restxml/src/protocols/Aws_restXml.ts b/private/aws-protocoltests-restxml/src/protocols/Aws_restXml.ts index e5f079b6d9b1e..685934be6e298 100644 --- a/private/aws-protocoltests-restxml/src/protocols/Aws_restXml.ts +++ b/private/aws-protocoltests-restxml/src/protocols/Aws_restXml.ts @@ -37,7 +37,7 @@ import { strictParseShort as __strictParseShort, withBaseException, } from "@smithy/smithy-client"; -import { +import type { Endpoint as __Endpoint, ResponseMetadata as __ResponseMetadata, SerdeContext as __SerdeContext, diff --git a/private/aws-protocoltests-restxml/src/runtimeConfig.browser.ts b/private/aws-protocoltests-restxml/src/runtimeConfig.browser.ts index 9a54730b16866..bcf8e517e29a7 100644 --- a/private/aws-protocoltests-restxml/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-restxml/src/runtimeConfig.browser.ts @@ -11,12 +11,13 @@ import { DEFAULT_DISABLE_REQUEST_COMPRESSION, DEFAULT_NODE_REQUEST_MIN_COMPRESSION_SIZE_BYTES, } from "@smithy/middleware-compression"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; + +import type { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-restxml/src/runtimeConfig.native.ts b/private/aws-protocoltests-restxml/src/runtimeConfig.native.ts index 4402a7671aa1f..ee59217fd0d5a 100644 --- a/private/aws-protocoltests-restxml/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-restxml/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; +import type { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-restxml/src/runtimeConfig.shared.ts b/private/aws-protocoltests-restxml/src/runtimeConfig.shared.ts index 482505863d31d..e3dee56530a39 100644 --- a/private/aws-protocoltests-restxml/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-restxml/src/runtimeConfig.shared.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { AwsSdkSigV4Signer } from "@aws-sdk/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRestXmlProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; +import type { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-restxml/src/runtimeConfig.ts b/private/aws-protocoltests-restxml/src/runtimeConfig.ts index 9a249fa3055ea..911b3b6f75312 100644 --- a/private/aws-protocoltests-restxml/src/runtimeConfig.ts +++ b/private/aws-protocoltests-restxml/src/runtimeConfig.ts @@ -19,13 +19,13 @@ import { import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; + +import type { RestXmlProtocolClientConfig } from "./RestXmlProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-restxml/src/runtimeExtensions.ts b/private/aws-protocoltests-restxml/src/runtimeExtensions.ts index d79bf9dbd8bb9..0169ae67f2170 100644 --- a/private/aws-protocoltests-restxml/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-restxml/src/runtimeExtensions.ts @@ -7,7 +7,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RestXmlProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { RestXmlProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-restxml/test/functional/restxml.spec.ts b/private/aws-protocoltests-restxml/test/functional/restxml.spec.ts index 4b54b01b481d1..1ef095eeb4cd4 100644 --- a/private/aws-protocoltests-restxml/test/functional/restxml.spec.ts +++ b/private/aws-protocoltests-restxml/test/functional/restxml.spec.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; import { buildQueryString } from "@smithy/querystring-builder"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; import { decodeHTML } from "entities"; import { XMLParser } from "fast-xml-parser"; -import { Readable } from "stream"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { AllQueryStringTypesCommand } from "../../src/commands/AllQueryStringTypesCommand"; diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/package.json b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/package.json index c9cdf81e7d6b7..c229eaf5572f5 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/package.json +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/package.json @@ -29,26 +29,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/RpcV2Protocol.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/RpcV2Protocol.ts index f4d54e91ccf7e..a5cb9e46d0ba8 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/RpcV2Protocol.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/RpcV2Protocol.ts @@ -1,69 +1,69 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { + type EmptyInputOutputCommandInput, + type EmptyInputOutputCommandOutput, EmptyInputOutputCommand, - EmptyInputOutputCommandInput, - EmptyInputOutputCommandOutput, } from "./commands/EmptyInputOutputCommand"; -import { Float16Command, Float16CommandInput, Float16CommandOutput } from "./commands/Float16Command"; +import { type Float16CommandInput, type Float16CommandOutput, Float16Command } from "./commands/Float16Command"; import { + type FractionalSecondsCommandInput, + type FractionalSecondsCommandOutput, FractionalSecondsCommand, - FractionalSecondsCommandInput, - FractionalSecondsCommandOutput, } from "./commands/FractionalSecondsCommand"; import { + type GreetingWithErrorsCommandInput, + type GreetingWithErrorsCommandOutput, GreetingWithErrorsCommand, - GreetingWithErrorsCommandInput, - GreetingWithErrorsCommandOutput, } from "./commands/GreetingWithErrorsCommand"; import { + type NoInputOutputCommandInput, + type NoInputOutputCommandOutput, NoInputOutputCommand, - NoInputOutputCommandInput, - NoInputOutputCommandOutput, } from "./commands/NoInputOutputCommand"; import { + type OperationWithDefaultsCommandInput, + type OperationWithDefaultsCommandOutput, OperationWithDefaultsCommand, - OperationWithDefaultsCommandInput, - OperationWithDefaultsCommandOutput, } from "./commands/OperationWithDefaultsCommand"; import { + type OptionalInputOutputCommandInput, + type OptionalInputOutputCommandOutput, OptionalInputOutputCommand, - OptionalInputOutputCommandInput, - OptionalInputOutputCommandOutput, } from "./commands/OptionalInputOutputCommand"; import { + type RecursiveShapesCommandInput, + type RecursiveShapesCommandOutput, RecursiveShapesCommand, - RecursiveShapesCommandInput, - RecursiveShapesCommandOutput, } from "./commands/RecursiveShapesCommand"; import { + type RpcV2CborDenseMapsCommandInput, + type RpcV2CborDenseMapsCommandOutput, RpcV2CborDenseMapsCommand, - RpcV2CborDenseMapsCommandInput, - RpcV2CborDenseMapsCommandOutput, } from "./commands/RpcV2CborDenseMapsCommand"; import { + type RpcV2CborListsCommandInput, + type RpcV2CborListsCommandOutput, RpcV2CborListsCommand, - RpcV2CborListsCommandInput, - RpcV2CborListsCommandOutput, } from "./commands/RpcV2CborListsCommand"; import { + type RpcV2CborSparseMapsCommandInput, + type RpcV2CborSparseMapsCommandOutput, RpcV2CborSparseMapsCommand, - RpcV2CborSparseMapsCommandInput, - RpcV2CborSparseMapsCommandOutput, } from "./commands/RpcV2CborSparseMapsCommand"; import { + type SimpleScalarPropertiesCommandInput, + type SimpleScalarPropertiesCommandOutput, SimpleScalarPropertiesCommand, - SimpleScalarPropertiesCommandInput, - SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; import { + type SparseNullsOperationCommandInput, + type SparseNullsOperationCommandOutput, SparseNullsOperationCommand, - SparseNullsOperationCommandInput, - SparseNullsOperationCommandOutput, } from "./commands/SparseNullsOperationCommand"; -import { RpcV2ProtocolClient, RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; +import { RpcV2ProtocolClient } from "./RpcV2ProtocolClient"; const commands = { EmptyInputOutputCommand, diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/RpcV2ProtocolClient.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/RpcV2ProtocolClient.ts index 6175e6b89fe38..288d679189897 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/RpcV2ProtocolClient.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/RpcV2ProtocolClient.ts @@ -1,17 +1,17 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { DefaultIdentityProviderConfig, @@ -21,82 +21,96 @@ import { import { getSchemaSerdePlugin } from "@smithy/core/schema"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; import { - EndpointInputConfig, - EndpointRequiredInputConfig, - EndpointRequiredResolvedConfig, - EndpointResolvedConfig, + type EndpointInputConfig, + type EndpointRequiredInputConfig, + type EndpointRequiredResolvedConfig, + type EndpointResolvedConfig, resolveEndpointConfig, resolveEndpointRequiredConfig, } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - ClientProtocol, - Decoder as __Decoder, - Encoder as __Encoder, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - HttpRequest, - HttpResponse, - Logger as __Logger, - Provider as __Provider, + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type ClientProtocol, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type HttpRequest, + type HttpResponse, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRpcV2ProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; -import { EmptyInputOutputCommandInput, EmptyInputOutputCommandOutput } from "./commands/EmptyInputOutputCommand"; -import { Float16CommandInput, Float16CommandOutput } from "./commands/Float16Command"; -import { FractionalSecondsCommandInput, FractionalSecondsCommandOutput } from "./commands/FractionalSecondsCommand"; -import { GreetingWithErrorsCommandInput, GreetingWithErrorsCommandOutput } from "./commands/GreetingWithErrorsCommand"; -import { NoInputOutputCommandInput, NoInputOutputCommandOutput } from "./commands/NoInputOutputCommand"; -import { +import type { EmptyInputOutputCommandInput, EmptyInputOutputCommandOutput } from "./commands/EmptyInputOutputCommand"; +import type { Float16CommandInput, Float16CommandOutput } from "./commands/Float16Command"; +import type { + FractionalSecondsCommandInput, + FractionalSecondsCommandOutput, +} from "./commands/FractionalSecondsCommand"; +import type { + GreetingWithErrorsCommandInput, + GreetingWithErrorsCommandOutput, +} from "./commands/GreetingWithErrorsCommand"; +import type { NoInputOutputCommandInput, NoInputOutputCommandOutput } from "./commands/NoInputOutputCommand"; +import type { OperationWithDefaultsCommandInput, OperationWithDefaultsCommandOutput, } from "./commands/OperationWithDefaultsCommand"; -import { +import type { OptionalInputOutputCommandInput, OptionalInputOutputCommandOutput, } from "./commands/OptionalInputOutputCommand"; -import { RecursiveShapesCommandInput, RecursiveShapesCommandOutput } from "./commands/RecursiveShapesCommand"; -import { RpcV2CborDenseMapsCommandInput, RpcV2CborDenseMapsCommandOutput } from "./commands/RpcV2CborDenseMapsCommand"; -import { RpcV2CborListsCommandInput, RpcV2CborListsCommandOutput } from "./commands/RpcV2CborListsCommand"; -import { +import type { RecursiveShapesCommandInput, RecursiveShapesCommandOutput } from "./commands/RecursiveShapesCommand"; +import type { + RpcV2CborDenseMapsCommandInput, + RpcV2CborDenseMapsCommandOutput, +} from "./commands/RpcV2CborDenseMapsCommand"; +import type { RpcV2CborListsCommandInput, RpcV2CborListsCommandOutput } from "./commands/RpcV2CborListsCommand"; +import type { RpcV2CborSparseMapsCommandInput, RpcV2CborSparseMapsCommandOutput, } from "./commands/RpcV2CborSparseMapsCommand"; -import { +import type { SimpleScalarPropertiesCommandInput, SimpleScalarPropertiesCommandOutput, } from "./commands/SimpleScalarPropertiesCommand"; -import { +import type { SparseNullsOperationCommandInput, SparseNullsOperationCommandOutput, } from "./commands/SparseNullsOperationCommand"; import { - ClientInputEndpointParameters, - ClientResolvedEndpointParameters, - EndpointParameters, + type ClientInputEndpointParameters, + type ClientResolvedEndpointParameters, + type EndpointParameters, resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/auth/httpAuthExtensionConfiguration.ts index 12b4fd7b6b194..2965b7d674254 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { HttpAuthScheme } from "@smithy/types"; +import type { HttpAuthScheme } from "@smithy/types"; -import { RpcV2ProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RpcV2ProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/auth/httpAuthSchemeProvider.ts index c6ef18ce9dbb7..6f4572bd04d7f 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/auth/httpAuthSchemeProvider.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -10,7 +10,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RpcV2ProtocolClientResolvedConfig } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig } from "../RpcV2ProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/EmptyInputOutputCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/EmptyInputOutputCommand.ts index fb4bd02ae38f6..fbf2e48a74df2 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/EmptyInputOutputCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/EmptyInputOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyStructure } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { EmptyStructure } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { EmptyInputOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/Float16Command.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/Float16Command.ts index a500ff71b8f07..9fe3c5c6cbe0f 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/Float16Command.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/Float16Command.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Float16Output } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { Float16Output } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { Float16 } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/FractionalSecondsCommand.ts index 7066d3c2126f4..a6004eb4e6fe4 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/FractionalSecondsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { FractionalSecondsOutput } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { FractionalSeconds } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/GreetingWithErrorsCommand.ts index 9c14c7ac1d9d2..40d960af7e560 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/GreetingWithErrorsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { GreetingWithErrors } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/NoInputOutputCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/NoInputOutputCommand.ts index 4b3081546d933..91a4962a22d06 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/NoInputOutputCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/NoInputOutputCommand.ts @@ -1,10 +1,10 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { NoInputOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/OperationWithDefaultsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/OperationWithDefaultsCommand.ts index dda2730ec7573..59672c423f078 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/OperationWithDefaultsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/OperationWithDefaultsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { OperationWithDefaults } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/OptionalInputOutputCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/OptionalInputOutputCommand.ts index 52388670dd004..0b92331bbeeb6 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/OptionalInputOutputCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/OptionalInputOutputCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleStructure } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { SimpleStructure } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { OptionalInputOutput } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RecursiveShapesCommand.ts index c01e9261ac8d5..ae89ecd73c6b7 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RecursiveShapesCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RecursiveShapesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveShapesInputOutput } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RecursiveShapesInputOutput } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { RecursiveShapes } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborDenseMapsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborDenseMapsCommand.ts index 23eb9262f197c..93cad97b401dd 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborDenseMapsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborDenseMapsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RpcV2CborDenseMapsInputOutput } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2CborDenseMapsInputOutput } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { RpcV2CborDenseMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborListsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborListsCommand.ts index 0e548e851b53e..5cb672ccb7d15 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborListsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborListsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RpcV2CborListInputOutput } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2CborListInputOutput } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { RpcV2CborLists } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborSparseMapsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborSparseMapsCommand.ts index 684775b24e641..6b0594ecc0ac1 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborSparseMapsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/RpcV2CborSparseMapsCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RpcV2CborSparseMapsInputOutput } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2CborSparseMapsInputOutput } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { RpcV2CborSparseMaps } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/SimpleScalarPropertiesCommand.ts index a79ffd132e8bb..00ec135920868 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/SimpleScalarPropertiesCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarStructure } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { SimpleScalarStructure } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { SimpleScalarProperties } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/SparseNullsOperationCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/SparseNullsOperationCommand.ts index de38eda10bece..f6e6fa25a3adf 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/SparseNullsOperationCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/commands/SparseNullsOperationCommand.ts @@ -1,11 +1,11 @@ // smithy-typescript generated code import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SparseNullsOperationInputOutput } from "../models/models_0"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { SparseNullsOperationInputOutput } from "../models/models_0"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; import { SparseNullsOperation } from "../schemas/schemas_0"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/EndpointParameters.ts index 65d71c47f97fa..ed18778e1fdb3 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/endpointResolver.ts index 92254ad194deb..b706521d0529d 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/endpointResolver.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { EndpointV2, Logger } from "@smithy/types"; -import { EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/ruleset.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/ruleset.ts index 14416a50b2697..d8b2ce3d9083e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/extensionConfiguration.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/extensionConfiguration.ts index 6a42e6afa8418..00ca28a55cc1e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/extensionConfiguration.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/RpcV2ProtocolServiceException.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/RpcV2ProtocolServiceException.ts index 792f7ba0caf44..995041583c1b0 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/RpcV2ProtocolServiceException.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/RpcV2ProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/errors.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/errors.ts index 8d1b8e80607ea..8c1df69d67a87 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/errors.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/errors.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; -import { ComplexNestedErrorData, ValidationExceptionField } from "./models_0"; +import type { ComplexNestedErrorData, ValidationExceptionField } from "./models_0"; import { RpcV2ProtocolServiceException as __BaseException } from "./RpcV2ProtocolServiceException"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/models_0.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/models_0.ts index 334dbcef5f779..1a8118714d923 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/models_0.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/models/models_0.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { FooEnum, IntegerEnum, TestEnum, TestIntEnum } from "./enums"; +import type { FooEnum, IntegerEnum, TestEnum, TestIntEnum } from "./enums"; /** * Describes one specific validation failure for an input member. diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.browser.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.browser.ts index cd010cea5807e..21f95ee7f3b7b 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.browser.ts @@ -5,12 +5,13 @@ import packageInfo from "../package.json"; // eslint-disable-line import { Sha256 } from "@aws-crypto/sha256-browser"; import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; + +import type { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.native.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.native.ts index 4d13602e29ac0..68bd5a12da80e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.shared.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.shared.ts index 51a15879b9703..59ab43f83eaad 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.shared.ts @@ -2,14 +2,14 @@ import { AwsSmithyRpcV2CborProtocol } from "@aws-sdk/core/protocols"; import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRpcV2ProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.ts index 63dc0dab37a54..4f87e0ae5942e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeConfig.ts @@ -7,13 +7,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; + +import type { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeExtensions.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeExtensions.ts index 56bb8c70d8021..cbba00a4458f6 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/runtimeExtensions.ts @@ -3,7 +3,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RpcV2ProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { RpcV2ProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/schemas/schemas_0.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/schemas/schemas_0.ts index 7134c2ebf9908..483f91b9fe54e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/schemas/schemas_0.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/src/schemas/schemas_0.ts @@ -132,7 +132,7 @@ const n2 = "smithy.protocoltests.shared"; // smithy-typescript generated code import { TypeRegistry } from "@smithy/core/schema"; -import { +import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/test/functional/rpcv2cbor.spec.ts b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/test/functional/rpcv2cbor.spec.ts index 5af93f318b89b..b5dc3fbc7f878 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor-schema/test/functional/rpcv2cbor.spec.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor-schema/test/functional/rpcv2cbor.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { cbor } from "@smithy/core/cbor"; -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { EmptyInputOutputCommand } from "../../src/commands/EmptyInputOutputCommand"; diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/package.json b/private/aws-protocoltests-smithy-rpcv2-cbor/package.json index 26e6fb13e9781..0a53743ecb836 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/package.json +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/package.json @@ -28,26 +28,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/RpcV2Protocol.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/RpcV2Protocol.ts index f4d54e91ccf7e..f75c14289a942 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/RpcV2Protocol.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/RpcV2Protocol.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { EmptyInputOutputCommand, @@ -63,7 +63,7 @@ import { SparseNullsOperationCommandInput, SparseNullsOperationCommandOutput, } from "./commands/SparseNullsOperationCommand"; -import { RpcV2ProtocolClient, RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; +import { RpcV2ProtocolClient } from "./RpcV2ProtocolClient"; const commands = { EmptyInputOutputCommand, diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/RpcV2ProtocolClient.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/RpcV2ProtocolClient.ts index 0566a661b09ad..e7f0f3e49d92c 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/RpcV2ProtocolClient.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/RpcV2ProtocolClient.ts @@ -1,17 +1,17 @@ // smithy-typescript generated code import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, getHostHeaderPlugin, - HostHeaderInputConfig, - HostHeaderResolvedConfig, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header"; import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, getUserAgentPlugin, resolveUserAgentConfig, - UserAgentInputConfig, - UserAgentResolvedConfig, } from "@aws-sdk/middleware-user-agent"; import { DefaultIdentityProviderConfig, @@ -20,41 +20,46 @@ import { } from "@smithy/core"; import { getContentLengthPlugin } from "@smithy/middleware-content-length"; import { - EndpointInputConfig, - EndpointRequiredInputConfig, - EndpointRequiredResolvedConfig, - EndpointResolvedConfig, + type EndpointInputConfig, + type EndpointRequiredInputConfig, + type EndpointRequiredResolvedConfig, + type EndpointResolvedConfig, resolveEndpointConfig, resolveEndpointRequiredConfig, } from "@smithy/middleware-endpoint"; -import { getRetryPlugin, resolveRetryConfig, RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, } from "@smithy/smithy-client"; import { - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultRpcV2ProtocolHttpAuthSchemeParametersProvider, - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; import { EmptyInputOutputCommandInput, EmptyInputOutputCommandOutput } from "./commands/EmptyInputOutputCommand"; @@ -86,13 +91,13 @@ import { SparseNullsOperationCommandOutput, } from "./commands/SparseNullsOperationCommand"; import { - ClientInputEndpointParameters, - ClientResolvedEndpointParameters, - EndpointParameters, + type ClientInputEndpointParameters, + type ClientResolvedEndpointParameters, + type EndpointParameters, resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { resolveRuntimeExtensions, RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/auth/httpAuthExtensionConfiguration.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/auth/httpAuthExtensionConfiguration.ts index 12b4fd7b6b194..2965b7d674254 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/auth/httpAuthExtensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { HttpAuthScheme } from "@smithy/types"; +import type { HttpAuthScheme } from "@smithy/types"; -import { RpcV2ProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; +import type { RpcV2ProtocolHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/auth/httpAuthSchemeProvider.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/auth/httpAuthSchemeProvider.ts index c6ef18ce9dbb7..6f4572bd04d7f 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/auth/httpAuthSchemeProvider.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/auth/httpAuthSchemeProvider.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { +import type { HandlerExecutionContext, HttpAuthOption, HttpAuthScheme, @@ -10,7 +10,7 @@ import { } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; -import { RpcV2ProtocolClientResolvedConfig } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig } from "../RpcV2ProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/EmptyInputOutputCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/EmptyInputOutputCommand.ts index 0e3296342d615..c403443169622 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/EmptyInputOutputCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/EmptyInputOutputCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { EmptyStructure } from "../models/models_0"; +import type { EmptyStructure } from "../models/models_0"; import { de_EmptyInputOutputCommand, se_EmptyInputOutputCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/Float16Command.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/Float16Command.ts index 9c2da9d6d54ef..d65afb5f791d6 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/Float16Command.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/Float16Command.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { Float16Output } from "../models/models_0"; +import type { Float16Output } from "../models/models_0"; import { de_Float16Command, se_Float16Command } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/FractionalSecondsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/FractionalSecondsCommand.ts index 828b5d05588ec..43661aafb062a 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/FractionalSecondsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/FractionalSecondsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { FractionalSecondsOutput } from "../models/models_0"; +import type { FractionalSecondsOutput } from "../models/models_0"; import { de_FractionalSecondsCommand, se_FractionalSecondsCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/GreetingWithErrorsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/GreetingWithErrorsCommand.ts index 7ef20ed69ea95..bca0e2bf43b0c 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/GreetingWithErrorsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/GreetingWithErrorsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { GreetingWithErrorsOutput } from "../models/models_0"; +import type { GreetingWithErrorsOutput } from "../models/models_0"; import { de_GreetingWithErrorsCommand, se_GreetingWithErrorsCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/NoInputOutputCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/NoInputOutputCommand.ts index cde9c03ccd715..7ab144ac3f1a7 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/NoInputOutputCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/NoInputOutputCommand.ts @@ -2,11 +2,11 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; import { de_NoInputOutputCommand, se_NoInputOutputCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OperationWithDefaultsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OperationWithDefaultsCommand.ts index e05e98e88dc19..435a35da8a592 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OperationWithDefaultsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OperationWithDefaultsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; +import type { OperationWithDefaultsInput, OperationWithDefaultsOutput } from "../models/models_0"; import { de_OperationWithDefaultsCommand, se_OperationWithDefaultsCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OptionalInputOutputCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OptionalInputOutputCommand.ts index 2b33c071ccb29..0fe4343e7228e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OptionalInputOutputCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/OptionalInputOutputCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleStructure } from "../models/models_0"; +import type { SimpleStructure } from "../models/models_0"; import { de_OptionalInputOutputCommand, se_OptionalInputOutputCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RecursiveShapesCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RecursiveShapesCommand.ts index 23903f95be215..81689865e5785 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RecursiveShapesCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RecursiveShapesCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RecursiveShapesInputOutput } from "../models/models_0"; +import type { RecursiveShapesInputOutput } from "../models/models_0"; import { de_RecursiveShapesCommand, se_RecursiveShapesCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborDenseMapsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborDenseMapsCommand.ts index 8aaf551666e99..179547ca1895c 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborDenseMapsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborDenseMapsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RpcV2CborDenseMapsInputOutput } from "../models/models_0"; +import type { RpcV2CborDenseMapsInputOutput } from "../models/models_0"; import { de_RpcV2CborDenseMapsCommand, se_RpcV2CborDenseMapsCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborListsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborListsCommand.ts index e174fa5c89cbb..be666dc5f97a0 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborListsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborListsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RpcV2CborListInputOutput } from "../models/models_0"; +import type { RpcV2CborListInputOutput } from "../models/models_0"; import { de_RpcV2CborListsCommand, se_RpcV2CborListsCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborSparseMapsCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborSparseMapsCommand.ts index 7e6ec05ab69f9..715e1c0b661f5 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborSparseMapsCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/RpcV2CborSparseMapsCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { RpcV2CborSparseMapsInputOutput } from "../models/models_0"; +import type { RpcV2CborSparseMapsInputOutput } from "../models/models_0"; import { de_RpcV2CborSparseMapsCommand, se_RpcV2CborSparseMapsCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SimpleScalarPropertiesCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SimpleScalarPropertiesCommand.ts index 42ecf96ddf25f..1e1dc5ad9e90f 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SimpleScalarPropertiesCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SimpleScalarPropertiesCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SimpleScalarStructure } from "../models/models_0"; +import type { SimpleScalarStructure } from "../models/models_0"; import { de_SimpleScalarPropertiesCommand, se_SimpleScalarPropertiesCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SparseNullsOperationCommand.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SparseNullsOperationCommand.ts index d45a559d75408..7c415f9aae147 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SparseNullsOperationCommand.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/commands/SparseNullsOperationCommand.ts @@ -2,12 +2,12 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { commonParams } from "../endpoint/EndpointParameters"; -import { SparseNullsOperationInputOutput } from "../models/models_0"; +import type { SparseNullsOperationInputOutput } from "../models/models_0"; import { de_SparseNullsOperationCommand, se_SparseNullsOperationCommand } from "../protocols/Rpcv2cbor"; -import { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RpcV2ProtocolClient"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/EndpointParameters.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/EndpointParameters.ts index 65d71c47f97fa..ed18778e1fdb3 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/EndpointParameters.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/endpointResolver.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/endpointResolver.ts index 92254ad194deb..b706521d0529d 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/endpointResolver.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/endpointResolver.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { EndpointV2, Logger } from "@smithy/types"; -import { EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/ruleset.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/ruleset.ts index 14416a50b2697..d8b2ce3d9083e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/ruleset.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/extensionConfiguration.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/extensionConfiguration.ts index 6a42e6afa8418..00ca28a55cc1e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/extensionConfiguration.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/extensionConfiguration.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/models/RpcV2ProtocolServiceException.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/models/RpcV2ProtocolServiceException.ts index 792f7ba0caf44..995041583c1b0 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/models/RpcV2ProtocolServiceException.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/models/RpcV2ProtocolServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/models/errors.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/models/errors.ts index 8d1b8e80607ea..e0602e01c0aa7 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/models/errors.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/models/errors.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ComplexNestedErrorData, ValidationExceptionField } from "./models_0"; import { RpcV2ProtocolServiceException as __BaseException } from "./RpcV2ProtocolServiceException"; diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/protocols/Rpcv2cbor.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/protocols/Rpcv2cbor.ts index 679ffea795287..f7dfa8a77abb6 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/protocols/Rpcv2cbor.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/protocols/Rpcv2cbor.ts @@ -8,7 +8,7 @@ import { parseCborBody as parseBody, parseCborErrorBody as parseErrorBody, } from "@smithy/core/cbor"; -import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; +import type { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; import { _json, collectBody, @@ -27,10 +27,10 @@ import { withBaseException, } from "@smithy/smithy-client"; import { - Endpoint as __Endpoint, + type Endpoint as __Endpoint, + type ResponseMetadata as __ResponseMetadata, + type SerdeContext as __SerdeContext, HeaderBag as __HeaderBag, - ResponseMetadata as __ResponseMetadata, - SerdeContext as __SerdeContext, } from "@smithy/types"; import { EmptyInputOutputCommandInput, EmptyInputOutputCommandOutput } from "../commands/EmptyInputOutputCommand"; diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.browser.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.browser.ts index cd010cea5807e..21f95ee7f3b7b 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.browser.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.browser.ts @@ -5,12 +5,13 @@ import packageInfo from "../package.json"; // eslint-disable-line import { Sha256 } from "@aws-crypto/sha256-browser"; import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; + +import type { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.native.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.native.ts index 4d13602e29ac0..68bd5a12da80e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.native.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.native.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; /** diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.shared.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.shared.ts index 12db82371dc9b..9a8dcb0c145df 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.shared.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.shared.ts @@ -1,14 +1,14 @@ // smithy-typescript generated code import { NoAuthSigner } from "@smithy/core"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; import { defaultRpcV2ProtocolHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; import { defaultEndpointResolver } from "./endpoint/endpointResolver"; -import { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; +import type { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.ts index 63dc0dab37a54..4f87e0ae5942e 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeConfig.ts @@ -7,13 +7,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; + +import type { RpcV2ProtocolClientConfig } from "./RpcV2ProtocolClient"; import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; /** * @internal diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeExtensions.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeExtensions.ts index 56bb8c70d8021..cbba00a4458f6 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeExtensions.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/src/runtimeExtensions.ts @@ -3,7 +3,7 @@ import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; -import { RpcV2ProtocolExtensionConfiguration } from "./extensionConfiguration"; +import type { RpcV2ProtocolExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/aws-protocoltests-smithy-rpcv2-cbor/test/functional/rpcv2cbor.spec.ts b/private/aws-protocoltests-smithy-rpcv2-cbor/test/functional/rpcv2cbor.spec.ts index 619081d669791..5f091462c1d81 100644 --- a/private/aws-protocoltests-smithy-rpcv2-cbor/test/functional/rpcv2cbor.spec.ts +++ b/private/aws-protocoltests-smithy-rpcv2-cbor/test/functional/rpcv2cbor.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code import { cbor } from "@smithy/core/cbor"; -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; -import { Readable } from "stream"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { EmptyInputOutputCommand } from "../../src/commands/EmptyInputOutputCommand"; diff --git a/private/aws-restjson-server/package.json b/private/aws-restjson-server/package.json index 2ebe73e7fb0f7..71fa9f6bd275a 100644 --- a/private/aws-restjson-server/package.json +++ b/private/aws-restjson-server/package.json @@ -29,19 +29,19 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" diff --git a/private/aws-restjson-server/src/endpoint/EndpointParameters.ts b/private/aws-restjson-server/src/endpoint/EndpointParameters.ts index 9491031e5dc75..454edb32f9e49 100644 --- a/private/aws-restjson-server/src/endpoint/EndpointParameters.ts +++ b/private/aws-restjson-server/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-restjson-server/src/endpoint/endpointResolver.ts b/private/aws-restjson-server/src/endpoint/endpointResolver.ts index 9b10bf5d6e7d1..5f50e511ece23 100644 --- a/private/aws-restjson-server/src/endpoint/endpointResolver.ts +++ b/private/aws-restjson-server/src/endpoint/endpointResolver.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { EndpointV2, Logger } from "@smithy/types"; -import { EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-restjson-server/src/endpoint/ruleset.ts b/private/aws-restjson-server/src/endpoint/ruleset.ts index 6eaa2aeabbdbb..e3b156d2b7c81 100644 --- a/private/aws-restjson-server/src/endpoint/ruleset.ts +++ b/private/aws-restjson-server/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-restjson-server/src/models/errors.ts b/private/aws-restjson-server/src/models/errors.ts index 4eb3b21dcefa1..5fb21affdb0a0 100644 --- a/private/aws-restjson-server/src/models/errors.ts +++ b/private/aws-restjson-server/src/models/errors.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { ServiceException as __BaseException } from "@aws-smithy/server-common"; -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ComplexNestedErrorData } from "./models_0"; diff --git a/private/aws-restjson-server/src/protocols/Aws_restJson1.ts b/private/aws-restjson-server/src/protocols/Aws_restJson1.ts index 0887ac0c690c3..a4f5cc5484390 100644 --- a/private/aws-restjson-server/src/protocols/Aws_restJson1.ts +++ b/private/aws-restjson-server/src/protocols/Aws_restJson1.ts @@ -53,13 +53,13 @@ import { take, } from "@smithy/smithy-client"; import { + type Endpoint as __Endpoint, + type EventStreamSerdeContext as __EventStreamSerdeContext, + type Message as __Message, + type MessageHeaders as __MessageHeaders, + type ResponseMetadata as __ResponseMetadata, + type SerdeContext as __SerdeContext, DocumentType as __DocumentType, - Endpoint as __Endpoint, - EventStreamSerdeContext as __EventStreamSerdeContext, - Message as __Message, - MessageHeaders as __MessageHeaders, - ResponseMetadata as __ResponseMetadata, - SerdeContext as __SerdeContext, } from "@smithy/types"; import { calculateBodyLength } from "@smithy/util-body-length-node"; diff --git a/private/aws-restjson-server/test/functional/restjson1.spec.ts b/private/aws-restjson-server/test/functional/restjson1.spec.ts index da861173827eb..8930873a57f90 100644 --- a/private/aws-restjson-server/test/functional/restjson1.spec.ts +++ b/private/aws-restjson-server/test/functional/restjson1.spec.ts @@ -7,11 +7,11 @@ import { ValidationFailure as __ValidationFailure, } from "@aws-smithy/server-common"; import { streamCollector as __streamCollector } from "@smithy/node-http-handler"; -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Encoder as __Encoder } from "@smithy/types"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Encoder as __Encoder } from "@smithy/types"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; import { toUtf8 as __utf8Encoder } from "@smithy/util-utf8"; -import { Readable } from "stream"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { ComplexError, InvalidGreeting } from "../../src/models/errors"; diff --git a/private/aws-restjson-validation-server/package.json b/private/aws-restjson-validation-server/package.json index 8910014231872..8c96a738ce843 100644 --- a/private/aws-restjson-validation-server/package.json +++ b/private/aws-restjson-validation-server/package.json @@ -28,19 +28,19 @@ "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-utf8": "^4.2.0", "tslib": "^2.6.2" diff --git a/private/aws-restjson-validation-server/src/endpoint/EndpointParameters.ts b/private/aws-restjson-validation-server/src/endpoint/EndpointParameters.ts index 9491031e5dc75..454edb32f9e49 100644 --- a/private/aws-restjson-validation-server/src/endpoint/EndpointParameters.ts +++ b/private/aws-restjson-validation-server/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/aws-restjson-validation-server/src/endpoint/endpointResolver.ts b/private/aws-restjson-validation-server/src/endpoint/endpointResolver.ts index 9b10bf5d6e7d1..5f50e511ece23 100644 --- a/private/aws-restjson-validation-server/src/endpoint/endpointResolver.ts +++ b/private/aws-restjson-validation-server/src/endpoint/endpointResolver.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { EndpointV2, Logger } from "@smithy/types"; -import { EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; const cache = new EndpointCache({ diff --git a/private/aws-restjson-validation-server/src/endpoint/ruleset.ts b/private/aws-restjson-validation-server/src/endpoint/ruleset.ts index fff4dffbfff5e..3568fed0dc17d 100644 --- a/private/aws-restjson-validation-server/src/endpoint/ruleset.ts +++ b/private/aws-restjson-validation-server/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/aws-restjson-validation-server/src/models/errors.ts b/private/aws-restjson-validation-server/src/models/errors.ts index 26e34bc4fccce..9c50689bae21a 100644 --- a/private/aws-restjson-validation-server/src/models/errors.ts +++ b/private/aws-restjson-validation-server/src/models/errors.ts @@ -1,6 +1,6 @@ // smithy-typescript generated code import { ServiceException as __BaseException } from "@aws-smithy/server-common"; -import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; +import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; import { ValidationExceptionField } from "./models_0"; diff --git a/private/aws-restjson-validation-server/src/protocols/Aws_restJson1.ts b/private/aws-restjson-validation-server/src/protocols/Aws_restJson1.ts index fb6a22f53480f..29569b8a7e226 100644 --- a/private/aws-restjson-validation-server/src/protocols/Aws_restJson1.ts +++ b/private/aws-restjson-validation-server/src/protocols/Aws_restJson1.ts @@ -35,7 +35,7 @@ import { parseRfc7231DateTime as __parseRfc7231DateTime, take, } from "@smithy/smithy-client"; -import { +import type { Endpoint as __Endpoint, ResponseMetadata as __ResponseMetadata, SerdeContext as __SerdeContext, diff --git a/private/aws-restjson-validation-server/test/functional/restjson1.spec.ts b/private/aws-restjson-validation-server/test/functional/restjson1.spec.ts index 3139c7114de46..5c2e8c50f3978 100644 --- a/private/aws-restjson-validation-server/test/functional/restjson1.spec.ts +++ b/private/aws-restjson-validation-server/test/functional/restjson1.spec.ts @@ -1,8 +1,8 @@ // smithy-typescript generated code -import { HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; -import { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; +import { type HttpHandler, HttpRequest, HttpResponse } from "@smithy/protocol-http"; +import type { Endpoint, HeaderBag, HttpHandlerOptions } from "@smithy/types"; import { toUtf8 as __utf8Encoder } from "@smithy/util-utf8"; -import { Readable } from "stream"; +import { Readable } from "node:stream"; import { expect, test as it } from "vitest"; import { getRestJsonValidationServiceHandler } from "../../src/server"; diff --git a/private/weather-legacy-auth/package.json b/private/weather-legacy-auth/package.json index 1b8229edf0915..65bbd6d4c2cac 100644 --- a/private/weather-legacy-auth/package.json +++ b/private/weather-legacy-auth/package.json @@ -31,26 +31,26 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", + "@smithy/core": "^3.18.6", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/weather-legacy-auth/src/Weather.ts b/private/weather-legacy-auth/src/Weather.ts index c21f4bc1acc9d..d922a21a79019 100644 --- a/private/weather-legacy-auth/src/Weather.ts +++ b/private/weather-legacy-auth/src/Weather.ts @@ -1,5 +1,7 @@ // smithy-typescript generated code -import { WeatherClient, WeatherClientConfig } from "./WeatherClient"; +import { createAggregatedClient } from "@smithy/smithy-client"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; + import { OnlyCustomAuthCommand, OnlyCustomAuthCommandInput, @@ -55,8 +57,7 @@ import { SameAsServiceCommandInput, SameAsServiceCommandOutput, } from "./commands/SameAsServiceCommand"; -import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import { WeatherClient } from "./WeatherClient"; const commands = { OnlyCustomAuthCommand, diff --git a/private/weather-legacy-auth/src/WeatherClient.ts b/private/weather-legacy-auth/src/WeatherClient.ts index a37a62aff0a4c..1064fcd5b8ab2 100644 --- a/private/weather-legacy-auth/src/WeatherClient.ts +++ b/private/weather-legacy-auth/src/WeatherClient.ts @@ -1,4 +1,69 @@ // smithy-typescript generated code +import { + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, + getHostHeaderPlugin, + resolveHostHeaderConfig, +} from "@aws-sdk/middleware-host-header"; +import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; +import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; +import { + type SigV4AuthInputConfig, + type SigV4AuthResolvedConfig, + resolveSigV4AuthConfig, +} from "@aws-sdk/middleware-signing"; +import { + type TokenInputConfig, + type TokenResolvedConfig, + getTokenPlugin, + resolveTokenConfig, +} from "@aws-sdk/middleware-token"; +import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, + getUserAgentPlugin, + resolveUserAgentConfig, +} from "@aws-sdk/middleware-user-agent"; +import { Credentials as __Credentials } from "@aws-sdk/types"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { getContentLengthPlugin } from "@smithy/middleware-content-length"; +import { + type EndpointInputConfig, + type EndpointRequiredInputConfig, + type EndpointRequiredResolvedConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, + resolveEndpointRequiredConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, + Client as __Client, +} from "@smithy/smithy-client"; +import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, + Provider, + UserAgent as __UserAgent, +} from "@smithy/types"; + import { OnlyCustomAuthCommandInput, OnlyCustomAuthCommandOutput } from "./commands/OnlyCustomAuthCommand"; import { OnlyCustomAuthOptionalCommandInput, @@ -29,9 +94,9 @@ import { } from "./commands/OnlySigv4AuthOptionalCommand"; import { SameAsServiceCommandInput, SameAsServiceCommandOutput } from "./commands/SameAsServiceCommand"; import { - ClientInputEndpointParameters, - ClientResolvedEndpointParameters, - EndpointParameters, + type ClientInputEndpointParameters, + type ClientResolvedEndpointParameters, + type EndpointParameters, resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { @@ -40,57 +105,7 @@ import { resolveHttpApiKeyAuthConfig, } from "./middleware/HttpApiKeyAuth"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { RuntimeExtension, RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; -import { - HostHeaderInputConfig, - HostHeaderResolvedConfig, - getHostHeaderPlugin, - resolveHostHeaderConfig, -} from "@aws-sdk/middleware-host-header"; -import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; -import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; -import { SigV4AuthInputConfig, SigV4AuthResolvedConfig, resolveSigV4AuthConfig } from "@aws-sdk/middleware-signing"; -import { TokenInputConfig, TokenResolvedConfig, getTokenPlugin, resolveTokenConfig } from "@aws-sdk/middleware-token"; -import { - UserAgentInputConfig, - UserAgentResolvedConfig, - getUserAgentPlugin, - resolveUserAgentConfig, -} from "@aws-sdk/middleware-user-agent"; -import { Credentials as __Credentials } from "@aws-sdk/types"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; -import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { - EndpointInputConfig, - EndpointRequiredInputConfig, - EndpointRequiredResolvedConfig, - EndpointResolvedConfig, - resolveEndpointConfig, - resolveEndpointRequiredConfig, -} from "@smithy/middleware-endpoint"; -import { RetryInputConfig, RetryResolvedConfig, getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; -import { - Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, -} from "@smithy/smithy-client"; -import { - Provider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, - UserAgent as __UserAgent, -} from "@smithy/types"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/weather-legacy-auth/src/commands/OnlyCustomAuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlyCustomAuthCommand.ts index e4a968f9e4bf7..589a97fd8286b 100644 --- a/private/weather-legacy-auth/src/commands/OnlyCustomAuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyCustomAuthCommand.ts @@ -1,12 +1,13 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyCustomAuthCommand, se_OnlyCustomAuthCommand } from "../protocols/Aws_restJson1"; import { getSigV4AuthPlugin } from "@aws-sdk/middleware-signing"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyCustomAuthCommand, se_OnlyCustomAuthCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/OnlyCustomAuthOptionalCommand.ts b/private/weather-legacy-auth/src/commands/OnlyCustomAuthOptionalCommand.ts index c3e3af575a528..95a663137cf9a 100644 --- a/private/weather-legacy-auth/src/commands/OnlyCustomAuthOptionalCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyCustomAuthOptionalCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyCustomAuthOptionalCommand, se_OnlyCustomAuthOptionalCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyCustomAuthOptionalCommand, se_OnlyCustomAuthOptionalCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts index 4683baa58a3b3..857333b75f87e 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts @@ -1,16 +1,17 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; +import { getSigV4AuthPlugin } from "@aws-sdk/middleware-signing"; +import { getEndpointPlugin } from "@smithy/middleware-endpoint"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + import { commonParams } from "../endpoint/EndpointParameters"; import { getHttpApiKeyAuthPlugin } from "../middleware/HttpApiKeyAuth"; import { de_OnlyHttpApiKeyAndBearerAuthCommand, se_OnlyHttpApiKeyAndBearerAuthCommand, } from "../protocols/Aws_restJson1"; -import { getSigV4AuthPlugin } from "@aws-sdk/middleware-signing"; -import { getEndpointPlugin } from "@smithy/middleware-endpoint"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts index 81aac8948b9b9..d513a52ca51bc 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts @@ -1,16 +1,17 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; +import { getSigV4AuthPlugin } from "@aws-sdk/middleware-signing"; +import { getEndpointPlugin } from "@smithy/middleware-endpoint"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + import { commonParams } from "../endpoint/EndpointParameters"; import { getHttpApiKeyAuthPlugin } from "../middleware/HttpApiKeyAuth"; import { de_OnlyHttpApiKeyAndBearerAuthReversedCommand, se_OnlyHttpApiKeyAndBearerAuthReversedCommand, } from "../protocols/Aws_restJson1"; -import { getSigV4AuthPlugin } from "@aws-sdk/middleware-signing"; -import { getEndpointPlugin } from "@smithy/middleware-endpoint"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthCommand.ts index c478b6babcbef..f6e7f5a325f97 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthCommand.ts @@ -1,13 +1,14 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { getHttpApiKeyAuthPlugin } from "../middleware/HttpApiKeyAuth"; -import { de_OnlyHttpApiKeyAuthCommand, se_OnlyHttpApiKeyAuthCommand } from "../protocols/Aws_restJson1"; import { getSigV4AuthPlugin } from "@aws-sdk/middleware-signing"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { getHttpApiKeyAuthPlugin } from "../middleware/HttpApiKeyAuth"; +import { de_OnlyHttpApiKeyAuthCommand, se_OnlyHttpApiKeyAuthCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts index bd946fed885cd..50b33641c7ae2 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyHttpApiKeyAuthOptionalCommand, se_OnlyHttpApiKeyAuthOptionalCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyHttpApiKeyAuthOptionalCommand, se_OnlyHttpApiKeyAuthOptionalCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthCommand.ts index cde49c8f36d73..50903f613ba09 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthCommand.ts @@ -1,12 +1,13 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyHttpBearerAuthCommand, se_OnlyHttpBearerAuthCommand } from "../protocols/Aws_restJson1"; import { getSigV4AuthPlugin } from "@aws-sdk/middleware-signing"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyHttpBearerAuthCommand, se_OnlyHttpBearerAuthCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthOptionalCommand.ts b/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthOptionalCommand.ts index 9039b1bef35ed..9ed136c959f27 100644 --- a/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthOptionalCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlyHttpBearerAuthOptionalCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyHttpBearerAuthOptionalCommand, se_OnlyHttpBearerAuthOptionalCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyHttpBearerAuthOptionalCommand, se_OnlyHttpBearerAuthOptionalCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/OnlySigv4AuthCommand.ts b/private/weather-legacy-auth/src/commands/OnlySigv4AuthCommand.ts index 841587a9542c9..8f769e181a759 100644 --- a/private/weather-legacy-auth/src/commands/OnlySigv4AuthCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlySigv4AuthCommand.ts @@ -1,12 +1,13 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlySigv4AuthCommand, se_OnlySigv4AuthCommand } from "../protocols/Aws_restJson1"; import { getSigV4AuthPlugin } from "@aws-sdk/middleware-signing"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlySigv4AuthCommand, se_OnlySigv4AuthCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/OnlySigv4AuthOptionalCommand.ts b/private/weather-legacy-auth/src/commands/OnlySigv4AuthOptionalCommand.ts index a44e700008130..3275bfc9f60c0 100644 --- a/private/weather-legacy-auth/src/commands/OnlySigv4AuthOptionalCommand.ts +++ b/private/weather-legacy-auth/src/commands/OnlySigv4AuthOptionalCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlySigv4AuthOptionalCommand, se_OnlySigv4AuthOptionalCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlySigv4AuthOptionalCommand, se_OnlySigv4AuthOptionalCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/commands/SameAsServiceCommand.ts b/private/weather-legacy-auth/src/commands/SameAsServiceCommand.ts index 9c876af35af5f..5663f57164137 100644 --- a/private/weather-legacy-auth/src/commands/SameAsServiceCommand.ts +++ b/private/weather-legacy-auth/src/commands/SameAsServiceCommand.ts @@ -1,13 +1,14 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { SameAsServiceOutput } from "../models/models_0"; -import { de_SameAsServiceCommand, se_SameAsServiceCommand } from "../protocols/Aws_restJson1"; import { getSigV4AuthPlugin } from "@aws-sdk/middleware-signing"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import type { SameAsServiceOutput } from "../models/models_0"; +import { de_SameAsServiceCommand, se_SameAsServiceCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather-legacy-auth/src/endpoint/EndpointParameters.ts b/private/weather-legacy-auth/src/endpoint/EndpointParameters.ts index 45d1002c64061..81af453cdbcab 100644 --- a/private/weather-legacy-auth/src/endpoint/EndpointParameters.ts +++ b/private/weather-legacy-auth/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointV2, Provider, EndpointParameters as __EndpointParameters } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/weather-legacy-auth/src/endpoint/endpointResolver.ts b/private/weather-legacy-auth/src/endpoint/endpointResolver.ts index c7fbb6d7f36d2..b706521d0529d 100644 --- a/private/weather-legacy-auth/src/endpoint/endpointResolver.ts +++ b/private/weather-legacy-auth/src/endpoint/endpointResolver.ts @@ -1,8 +1,9 @@ // smithy-typescript generated code -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; + +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; -import { EndpointV2, Logger } from "@smithy/types"; -import { EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; const cache = new EndpointCache({ size: 50, diff --git a/private/weather-legacy-auth/src/endpoint/ruleset.ts b/private/weather-legacy-auth/src/endpoint/ruleset.ts index 14416a50b2697..d8b2ce3d9083e 100644 --- a/private/weather-legacy-auth/src/endpoint/ruleset.ts +++ b/private/weather-legacy-auth/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/weather-legacy-auth/src/extensionConfiguration.ts b/private/weather-legacy-auth/src/extensionConfiguration.ts index 0210ef1382e20..5844313ef002a 100644 --- a/private/weather-legacy-auth/src/extensionConfiguration.ts +++ b/private/weather-legacy-auth/src/extensionConfiguration.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; /** * @internal diff --git a/private/weather-legacy-auth/src/models/WeatherServiceException.ts b/private/weather-legacy-auth/src/models/WeatherServiceException.ts index 15983c8929435..e8e3a2bb5908f 100644 --- a/private/weather-legacy-auth/src/models/WeatherServiceException.ts +++ b/private/weather-legacy-auth/src/models/WeatherServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/weather-legacy-auth/src/protocols/Aws_restJson1.ts b/private/weather-legacy-auth/src/protocols/Aws_restJson1.ts index 5a2bee1eafbd4..5fdb6f7052bf7 100644 --- a/private/weather-legacy-auth/src/protocols/Aws_restJson1.ts +++ b/private/weather-legacy-auth/src/protocols/Aws_restJson1.ts @@ -1,4 +1,23 @@ // smithy-typescript generated code +import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core"; +import { requestBuilder as rb } from "@smithy/core"; +import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; +import { + _json, + collectBody, + expectNonNull as __expectNonNull, + expectObject as __expectObject, + expectString as __expectString, + map, + take, + withBaseException, +} from "@smithy/smithy-client"; +import type { + Endpoint as __Endpoint, + ResponseMetadata as __ResponseMetadata, + SerdeContext as __SerdeContext, +} from "@smithy/types"; + import { OnlyCustomAuthCommandInput, OnlyCustomAuthCommandOutput } from "../commands/OnlyCustomAuthCommand"; import { OnlyCustomAuthOptionalCommandInput, @@ -29,24 +48,6 @@ import { } from "../commands/OnlySigv4AuthOptionalCommand"; import { SameAsServiceCommandInput, SameAsServiceCommandOutput } from "../commands/SameAsServiceCommand"; import { WeatherServiceException as __BaseException } from "../models/WeatherServiceException"; -import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core"; -import { requestBuilder as rb } from "@smithy/core"; -import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; -import { - expectNonNull as __expectNonNull, - expectObject as __expectObject, - expectString as __expectString, - _json, - collectBody, - map, - take, - withBaseException, -} from "@smithy/smithy-client"; -import { - Endpoint as __Endpoint, - ResponseMetadata as __ResponseMetadata, - SerdeContext as __SerdeContext, -} from "@smithy/types"; /** * serializeAws_restJson1OnlyCustomAuthCommand diff --git a/private/weather-legacy-auth/src/runtimeConfig.browser.ts b/private/weather-legacy-auth/src/runtimeConfig.browser.ts index 8fd2dc9f0bba4..16bba80681f23 100644 --- a/private/weather-legacy-auth/src/runtimeConfig.browser.ts +++ b/private/weather-legacy-auth/src/runtimeConfig.browser.ts @@ -6,12 +6,13 @@ import { Sha256 } from "@aws-crypto/sha256-browser"; import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WeatherClientConfig } from "./WeatherClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WeatherClientConfig } from "./WeatherClient"; /** * @internal diff --git a/private/weather-legacy-auth/src/runtimeConfig.native.ts b/private/weather-legacy-auth/src/runtimeConfig.native.ts index cd1d8c3b5b673..e859ddc1958ac 100644 --- a/private/weather-legacy-auth/src/runtimeConfig.native.ts +++ b/private/weather-legacy-auth/src/runtimeConfig.native.ts @@ -1,7 +1,8 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { WeatherClientConfig } from "./WeatherClient"; + import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; +import type { WeatherClientConfig } from "./WeatherClient"; /** * @internal diff --git a/private/weather-legacy-auth/src/runtimeConfig.shared.ts b/private/weather-legacy-auth/src/runtimeConfig.shared.ts index 7071cad1cc9ac..a9a411a33d110 100644 --- a/private/weather-legacy-auth/src/runtimeConfig.shared.ts +++ b/private/weather-legacy-auth/src/runtimeConfig.shared.ts @@ -1,10 +1,11 @@ // smithy-typescript generated code -import { defaultEndpointResolver } from "./endpoint/endpointResolver"; import { NoOpLogger } from "@smithy/smithy-client"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { WeatherClientConfig } from "./WeatherClient"; + +import { defaultEndpointResolver } from "./endpoint/endpointResolver"; +import type { WeatherClientConfig } from "./WeatherClient"; /** * @internal diff --git a/private/weather-legacy-auth/src/runtimeConfig.ts b/private/weather-legacy-auth/src/runtimeConfig.ts index 810a49adcec09..c5737ddacdf3d 100644 --- a/private/weather-legacy-auth/src/runtimeConfig.ts +++ b/private/weather-legacy-auth/src/runtimeConfig.ts @@ -9,13 +9,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WeatherClientConfig } from "./WeatherClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WeatherClientConfig } from "./WeatherClient"; /** * @internal diff --git a/private/weather-legacy-auth/src/runtimeExtensions.ts b/private/weather-legacy-auth/src/runtimeExtensions.ts index 2642aefec98ea..23a4f9b1766e6 100644 --- a/private/weather-legacy-auth/src/runtimeExtensions.ts +++ b/private/weather-legacy-auth/src/runtimeExtensions.ts @@ -5,7 +5,7 @@ import { } from "@aws-sdk/region-config-resolver"; import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http"; import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; -import { WeatherExtensionConfiguration } from "./extensionConfiguration"; +import type { WeatherExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/private/weather/package.json b/private/weather/package.json index 2bfc7e92b2c30..d85d77037191c 100644 --- a/private/weather/package.json +++ b/private/weather/package.json @@ -30,27 +30,27 @@ "@aws-sdk/util-user-agent-browser": "*", "@aws-sdk/util-user-agent-node": "*", "@smithy/config-resolver": "^4.4.3", - "@smithy/core": "^3.18.5", - "@smithy/experimental-identity-and-auth": "^0.5.12", + "@smithy/core": "^3.18.6", + "@smithy/experimental-identity-and-auth": "^0.5.13", "@smithy/fetch-http-handler": "^5.3.6", "@smithy/hash-node": "^4.2.5", "@smithy/invalid-dependency": "^4.2.5", "@smithy/middleware-content-length": "^4.2.5", - "@smithy/middleware-endpoint": "^4.3.12", - "@smithy/middleware-retry": "^4.4.12", + "@smithy/middleware-endpoint": "^4.3.13", + "@smithy/middleware-retry": "^4.4.13", "@smithy/middleware-serde": "^4.2.6", "@smithy/middleware-stack": "^4.2.5", "@smithy/node-config-provider": "^4.3.5", "@smithy/node-http-handler": "^4.4.5", "@smithy/protocol-http": "^5.3.5", - "@smithy/smithy-client": "^4.9.8", + "@smithy/smithy-client": "^4.9.9", "@smithy/types": "^4.9.0", "@smithy/url-parser": "^4.2.5", "@smithy/util-base64": "^4.3.0", "@smithy/util-body-length-browser": "^4.2.0", "@smithy/util-body-length-node": "^4.2.1", - "@smithy/util-defaults-mode-browser": "^4.3.11", - "@smithy/util-defaults-mode-node": "^4.2.14", + "@smithy/util-defaults-mode-browser": "^4.3.12", + "@smithy/util-defaults-mode-node": "^4.2.15", "@smithy/util-endpoints": "^3.2.5", "@smithy/util-middleware": "^4.2.5", "@smithy/util-retry": "^4.2.5", diff --git a/private/weather/src/Weather.ts b/private/weather/src/Weather.ts index c21f4bc1acc9d..d922a21a79019 100644 --- a/private/weather/src/Weather.ts +++ b/private/weather/src/Weather.ts @@ -1,5 +1,7 @@ // smithy-typescript generated code -import { WeatherClient, WeatherClientConfig } from "./WeatherClient"; +import { createAggregatedClient } from "@smithy/smithy-client"; +import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; + import { OnlyCustomAuthCommand, OnlyCustomAuthCommandInput, @@ -55,8 +57,7 @@ import { SameAsServiceCommandInput, SameAsServiceCommandOutput, } from "./commands/SameAsServiceCommand"; -import { createAggregatedClient } from "@smithy/smithy-client"; -import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; +import { WeatherClient } from "./WeatherClient"; const commands = { OnlyCustomAuthCommand, diff --git a/private/weather/src/WeatherClient.ts b/private/weather/src/WeatherClient.ts index f7003a4a35822..275b1669e9d09 100644 --- a/private/weather/src/WeatherClient.ts +++ b/private/weather/src/WeatherClient.ts @@ -1,7 +1,65 @@ // smithy-typescript generated code import { - HttpAuthSchemeInputConfig, - HttpAuthSchemeResolvedConfig, + type HostHeaderInputConfig, + type HostHeaderResolvedConfig, + getHostHeaderPlugin, + resolveHostHeaderConfig, +} from "@aws-sdk/middleware-host-header"; +import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; +import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; +import { + type UserAgentInputConfig, + type UserAgentResolvedConfig, + getUserAgentPlugin, + resolveUserAgentConfig, +} from "@aws-sdk/middleware-user-agent"; +import { type RegionInputConfig, type RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; +import { + DefaultIdentityProviderConfig, + getHttpAuthSchemeEndpointRuleSetPlugin, + getHttpSigningPlugin, +} from "@smithy/core"; +import { getContentLengthPlugin } from "@smithy/middleware-content-length"; +import { + type EndpointInputConfig, + type EndpointRequiredInputConfig, + type EndpointRequiredResolvedConfig, + type EndpointResolvedConfig, + resolveEndpointConfig, + resolveEndpointRequiredConfig, +} from "@smithy/middleware-endpoint"; +import { + type RetryInputConfig, + type RetryResolvedConfig, + getRetryPlugin, + resolveRetryConfig, +} from "@smithy/middleware-retry"; +import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; +import { + type DefaultsMode as __DefaultsMode, + type SmithyConfiguration as __SmithyConfiguration, + type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, + Client as __Client, +} from "@smithy/smithy-client"; +import { + type BodyLengthCalculator as __BodyLengthCalculator, + type CheckOptionalClientConfig as __CheckOptionalClientConfig, + type ChecksumConstructor as __ChecksumConstructor, + type Decoder as __Decoder, + type Encoder as __Encoder, + type HashConstructor as __HashConstructor, + type HttpHandlerOptions as __HttpHandlerOptions, + type Logger as __Logger, + type Provider as __Provider, + type StreamCollector as __StreamCollector, + type UrlParser as __UrlParser, + Provider, + UserAgent as __UserAgent, +} from "@smithy/types"; + +import { + type HttpAuthSchemeInputConfig, + type HttpAuthSchemeResolvedConfig, defaultWeatherHttpAuthSchemeParametersProvider, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider"; @@ -35,65 +93,13 @@ import { } from "./commands/OnlySigv4AuthOptionalCommand"; import { SameAsServiceCommandInput, SameAsServiceCommandOutput } from "./commands/SameAsServiceCommand"; import { - ClientInputEndpointParameters, - ClientResolvedEndpointParameters, - EndpointParameters, + type ClientInputEndpointParameters, + type ClientResolvedEndpointParameters, + type EndpointParameters, resolveClientEndpointParameters, } from "./endpoint/EndpointParameters"; import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig"; -import { RuntimeExtension, RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; -import { - HostHeaderInputConfig, - HostHeaderResolvedConfig, - getHostHeaderPlugin, - resolveHostHeaderConfig, -} from "@aws-sdk/middleware-host-header"; -import { getLoggerPlugin } from "@aws-sdk/middleware-logger"; -import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection"; -import { - UserAgentInputConfig, - UserAgentResolvedConfig, - getUserAgentPlugin, - resolveUserAgentConfig, -} from "@aws-sdk/middleware-user-agent"; -import { RegionInputConfig, RegionResolvedConfig, resolveRegionConfig } from "@smithy/config-resolver"; -import { - DefaultIdentityProviderConfig, - getHttpAuthSchemeEndpointRuleSetPlugin, - getHttpSigningPlugin, -} from "@smithy/core"; -import { getContentLengthPlugin } from "@smithy/middleware-content-length"; -import { - EndpointInputConfig, - EndpointRequiredInputConfig, - EndpointRequiredResolvedConfig, - EndpointResolvedConfig, - resolveEndpointConfig, - resolveEndpointRequiredConfig, -} from "@smithy/middleware-endpoint"; -import { RetryInputConfig, RetryResolvedConfig, getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry"; -import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http"; -import { - Client as __Client, - DefaultsMode as __DefaultsMode, - SmithyConfiguration as __SmithyConfiguration, - SmithyResolvedConfiguration as __SmithyResolvedConfiguration, -} from "@smithy/smithy-client"; -import { - Provider, - BodyLengthCalculator as __BodyLengthCalculator, - CheckOptionalClientConfig as __CheckOptionalClientConfig, - ChecksumConstructor as __ChecksumConstructor, - Decoder as __Decoder, - Encoder as __Encoder, - HashConstructor as __HashConstructor, - HttpHandlerOptions as __HttpHandlerOptions, - Logger as __Logger, - Provider as __Provider, - StreamCollector as __StreamCollector, - UrlParser as __UrlParser, - UserAgent as __UserAgent, -} from "@smithy/types"; +import { type RuntimeExtension, type RuntimeExtensionsConfig, resolveRuntimeExtensions } from "./runtimeExtensions"; export { __Client }; diff --git a/private/weather/src/auth/httpAuthExtensionConfiguration.ts b/private/weather/src/auth/httpAuthExtensionConfiguration.ts index fcdf057a6ff31..b44f3c00020e7 100644 --- a/private/weather/src/auth/httpAuthExtensionConfiguration.ts +++ b/private/weather/src/auth/httpAuthExtensionConfiguration.ts @@ -1,15 +1,16 @@ // smithy-typescript generated code -import { WeatherHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; import { + type HttpAuthScheme, ApiKeyIdentity, ApiKeyIdentityProvider, AwsCredentialIdentity, AwsCredentialIdentityProvider, - HttpAuthScheme, TokenIdentity, TokenIdentityProvider, } from "@smithy/types"; +import type { WeatherHttpAuthSchemeProvider } from "./httpAuthSchemeProvider"; + /** * @internal */ diff --git a/private/weather/src/auth/httpAuthSchemeProvider.ts b/private/weather/src/auth/httpAuthSchemeProvider.ts index 2fb428491d9c3..efd7ea2fd738d 100644 --- a/private/weather/src/auth/httpAuthSchemeProvider.ts +++ b/private/weather/src/auth/httpAuthSchemeProvider.ts @@ -1,25 +1,26 @@ // smithy-typescript generated code -import { WeatherClientResolvedConfig } from "../WeatherClient"; import { doesIdentityRequireRefresh, isIdentityExpired, memoizeIdentityProvider } from "@smithy/core"; import { + type HandlerExecutionContext, + type HttpAuthOption, + type HttpAuthScheme, + type HttpAuthSchemeParameters, + type HttpAuthSchemeParametersProvider, + type HttpAuthSchemeProvider, + type Provider, ApiKeyIdentity, ApiKeyIdentityProvider, AwsCredentialIdentity, AwsCredentialIdentityProvider, - HandlerExecutionContext, HttpApiKeyAuthLocation, - HttpAuthOption, - HttpAuthScheme, - HttpAuthSchemeParameters, - HttpAuthSchemeParametersProvider, - HttpAuthSchemeProvider, - Provider, + Provider as __Provider, TokenIdentity, TokenIdentityProvider, - Provider as __Provider, } from "@smithy/types"; import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware"; +import type { WeatherClientResolvedConfig } from "../WeatherClient"; + /** * @internal */ diff --git a/private/weather/src/commands/OnlyCustomAuthCommand.ts b/private/weather/src/commands/OnlyCustomAuthCommand.ts index 78e7d31159420..54e7a1fc0392a 100644 --- a/private/weather/src/commands/OnlyCustomAuthCommand.ts +++ b/private/weather/src/commands/OnlyCustomAuthCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyCustomAuthCommand, se_OnlyCustomAuthCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyCustomAuthCommand, se_OnlyCustomAuthCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/OnlyCustomAuthOptionalCommand.ts b/private/weather/src/commands/OnlyCustomAuthOptionalCommand.ts index 52f300dfa3f57..cf69cc3932c79 100644 --- a/private/weather/src/commands/OnlyCustomAuthOptionalCommand.ts +++ b/private/weather/src/commands/OnlyCustomAuthOptionalCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyCustomAuthOptionalCommand, se_OnlyCustomAuthOptionalCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyCustomAuthOptionalCommand, se_OnlyCustomAuthOptionalCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts b/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts index ebf9235d3dcd7..5e325fdb81a45 100644 --- a/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts +++ b/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthCommand.ts @@ -1,14 +1,15 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; +import { getEndpointPlugin } from "@smithy/middleware-endpoint"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + import { commonParams } from "../endpoint/EndpointParameters"; import { de_OnlyHttpApiKeyAndBearerAuthCommand, se_OnlyHttpApiKeyAndBearerAuthCommand, } from "../protocols/Aws_restJson1"; -import { getEndpointPlugin } from "@smithy/middleware-endpoint"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts b/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts index 1d7b9a53413b6..bef4c0d1e4ebc 100644 --- a/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts +++ b/private/weather/src/commands/OnlyHttpApiKeyAndBearerAuthReversedCommand.ts @@ -1,14 +1,15 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; +import { getEndpointPlugin } from "@smithy/middleware-endpoint"; +import { getSerdePlugin } from "@smithy/middleware-serde"; +import { Command as $Command } from "@smithy/smithy-client"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + import { commonParams } from "../endpoint/EndpointParameters"; import { de_OnlyHttpApiKeyAndBearerAuthReversedCommand, se_OnlyHttpApiKeyAndBearerAuthReversedCommand, } from "../protocols/Aws_restJson1"; -import { getEndpointPlugin } from "@smithy/middleware-endpoint"; -import { getSerdePlugin } from "@smithy/middleware-serde"; -import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/OnlyHttpApiKeyAuthCommand.ts b/private/weather/src/commands/OnlyHttpApiKeyAuthCommand.ts index 10b641c745af9..872f712dee0cc 100644 --- a/private/weather/src/commands/OnlyHttpApiKeyAuthCommand.ts +++ b/private/weather/src/commands/OnlyHttpApiKeyAuthCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyHttpApiKeyAuthCommand, se_OnlyHttpApiKeyAuthCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyHttpApiKeyAuthCommand, se_OnlyHttpApiKeyAuthCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts b/private/weather/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts index 4b7daa7d620fc..146492a643488 100644 --- a/private/weather/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts +++ b/private/weather/src/commands/OnlyHttpApiKeyAuthOptionalCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyHttpApiKeyAuthOptionalCommand, se_OnlyHttpApiKeyAuthOptionalCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyHttpApiKeyAuthOptionalCommand, se_OnlyHttpApiKeyAuthOptionalCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/OnlyHttpBearerAuthCommand.ts b/private/weather/src/commands/OnlyHttpBearerAuthCommand.ts index 1b0b6ae1c9382..130e2646fe1ad 100644 --- a/private/weather/src/commands/OnlyHttpBearerAuthCommand.ts +++ b/private/weather/src/commands/OnlyHttpBearerAuthCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyHttpBearerAuthCommand, se_OnlyHttpBearerAuthCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyHttpBearerAuthCommand, se_OnlyHttpBearerAuthCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/OnlyHttpBearerAuthOptionalCommand.ts b/private/weather/src/commands/OnlyHttpBearerAuthOptionalCommand.ts index a0ed5eb252a8f..1516f73a99d79 100644 --- a/private/weather/src/commands/OnlyHttpBearerAuthOptionalCommand.ts +++ b/private/weather/src/commands/OnlyHttpBearerAuthOptionalCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlyHttpBearerAuthOptionalCommand, se_OnlyHttpBearerAuthOptionalCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlyHttpBearerAuthOptionalCommand, se_OnlyHttpBearerAuthOptionalCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/OnlySigv4AuthCommand.ts b/private/weather/src/commands/OnlySigv4AuthCommand.ts index 6426ab1d9d212..271f01fb0bc44 100644 --- a/private/weather/src/commands/OnlySigv4AuthCommand.ts +++ b/private/weather/src/commands/OnlySigv4AuthCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlySigv4AuthCommand, se_OnlySigv4AuthCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlySigv4AuthCommand, se_OnlySigv4AuthCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/OnlySigv4AuthOptionalCommand.ts b/private/weather/src/commands/OnlySigv4AuthOptionalCommand.ts index 1476010bc54f1..4bb29858c8e9c 100644 --- a/private/weather/src/commands/OnlySigv4AuthOptionalCommand.ts +++ b/private/weather/src/commands/OnlySigv4AuthOptionalCommand.ts @@ -1,11 +1,12 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { de_OnlySigv4AuthOptionalCommand, se_OnlySigv4AuthOptionalCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import { de_OnlySigv4AuthOptionalCommand, se_OnlySigv4AuthOptionalCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/commands/SameAsServiceCommand.ts b/private/weather/src/commands/SameAsServiceCommand.ts index a794e9d23705c..dafc9f6a595a3 100644 --- a/private/weather/src/commands/SameAsServiceCommand.ts +++ b/private/weather/src/commands/SameAsServiceCommand.ts @@ -1,12 +1,13 @@ // smithy-typescript generated code -import { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; -import { commonParams } from "../endpoint/EndpointParameters"; -import { SameAsServiceOutput } from "../models/models_0"; -import { de_SameAsServiceCommand, se_SameAsServiceCommand } from "../protocols/Aws_restJson1"; import { getEndpointPlugin } from "@smithy/middleware-endpoint"; import { getSerdePlugin } from "@smithy/middleware-serde"; import { Command as $Command } from "@smithy/smithy-client"; -import { MetadataBearer as __MetadataBearer } from "@smithy/types"; +import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; + +import { commonParams } from "../endpoint/EndpointParameters"; +import type { SameAsServiceOutput } from "../models/models_0"; +import { de_SameAsServiceCommand, se_SameAsServiceCommand } from "../protocols/Aws_restJson1"; +import type { ServiceInputTypes, ServiceOutputTypes, WeatherClientResolvedConfig } from "../WeatherClient"; /** * @public diff --git a/private/weather/src/endpoint/EndpointParameters.ts b/private/weather/src/endpoint/EndpointParameters.ts index 45d1002c64061..81af453cdbcab 100644 --- a/private/weather/src/endpoint/EndpointParameters.ts +++ b/private/weather/src/endpoint/EndpointParameters.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { Endpoint, EndpointV2, Provider, EndpointParameters as __EndpointParameters } from "@smithy/types"; +import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; /** * @public diff --git a/private/weather/src/endpoint/endpointResolver.ts b/private/weather/src/endpoint/endpointResolver.ts index c7fbb6d7f36d2..b706521d0529d 100644 --- a/private/weather/src/endpoint/endpointResolver.ts +++ b/private/weather/src/endpoint/endpointResolver.ts @@ -1,8 +1,9 @@ // smithy-typescript generated code -import { EndpointParameters } from "./EndpointParameters"; +import type { EndpointV2, Logger } from "@smithy/types"; +import { type EndpointParams, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints"; + +import type { EndpointParameters } from "./EndpointParameters"; import { ruleSet } from "./ruleset"; -import { EndpointV2, Logger } from "@smithy/types"; -import { EndpointCache, EndpointParams, resolveEndpoint } from "@smithy/util-endpoints"; const cache = new EndpointCache({ size: 50, diff --git a/private/weather/src/endpoint/ruleset.ts b/private/weather/src/endpoint/ruleset.ts index 14416a50b2697..d8b2ce3d9083e 100644 --- a/private/weather/src/endpoint/ruleset.ts +++ b/private/weather/src/endpoint/ruleset.ts @@ -1,5 +1,5 @@ // smithy-typescript generated code -import { RuleSetObject } from "@smithy/types"; +import type { RuleSetObject } from "@smithy/types"; export const ruleSet: RuleSetObject = { version: "1.0", diff --git a/private/weather/src/extensionConfiguration.ts b/private/weather/src/extensionConfiguration.ts index 2751a1a9fe8a2..ac0f55ae474cb 100644 --- a/private/weather/src/extensionConfiguration.ts +++ b/private/weather/src/extensionConfiguration.ts @@ -1,8 +1,9 @@ // smithy-typescript generated code -import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; -import { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; -import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; -import { DefaultExtensionConfiguration } from "@smithy/types"; +import type { AwsRegionExtensionConfiguration } from "@aws-sdk/types"; +import type { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http"; +import type { DefaultExtensionConfiguration } from "@smithy/types"; + +import type { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration"; /** * @internal diff --git a/private/weather/src/models/WeatherServiceException.ts b/private/weather/src/models/WeatherServiceException.ts index 15983c8929435..e8e3a2bb5908f 100644 --- a/private/weather/src/models/WeatherServiceException.ts +++ b/private/weather/src/models/WeatherServiceException.ts @@ -1,7 +1,7 @@ // smithy-typescript generated code import { + type ServiceExceptionOptions as __ServiceExceptionOptions, ServiceException as __ServiceException, - ServiceExceptionOptions as __ServiceExceptionOptions, } from "@smithy/smithy-client"; export type { __ServiceExceptionOptions }; diff --git a/private/weather/src/protocols/Aws_restJson1.ts b/private/weather/src/protocols/Aws_restJson1.ts index 5a2bee1eafbd4..5fdb6f7052bf7 100644 --- a/private/weather/src/protocols/Aws_restJson1.ts +++ b/private/weather/src/protocols/Aws_restJson1.ts @@ -1,4 +1,23 @@ // smithy-typescript generated code +import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core"; +import { requestBuilder as rb } from "@smithy/core"; +import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; +import { + _json, + collectBody, + expectNonNull as __expectNonNull, + expectObject as __expectObject, + expectString as __expectString, + map, + take, + withBaseException, +} from "@smithy/smithy-client"; +import type { + Endpoint as __Endpoint, + ResponseMetadata as __ResponseMetadata, + SerdeContext as __SerdeContext, +} from "@smithy/types"; + import { OnlyCustomAuthCommandInput, OnlyCustomAuthCommandOutput } from "../commands/OnlyCustomAuthCommand"; import { OnlyCustomAuthOptionalCommandInput, @@ -29,24 +48,6 @@ import { } from "../commands/OnlySigv4AuthOptionalCommand"; import { SameAsServiceCommandInput, SameAsServiceCommandOutput } from "../commands/SameAsServiceCommand"; import { WeatherServiceException as __BaseException } from "../models/WeatherServiceException"; -import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core"; -import { requestBuilder as rb } from "@smithy/core"; -import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; -import { - expectNonNull as __expectNonNull, - expectObject as __expectObject, - expectString as __expectString, - _json, - collectBody, - map, - take, - withBaseException, -} from "@smithy/smithy-client"; -import { - Endpoint as __Endpoint, - ResponseMetadata as __ResponseMetadata, - SerdeContext as __SerdeContext, -} from "@smithy/types"; /** * serializeAws_restJson1OnlyCustomAuthCommand diff --git a/private/weather/src/runtimeConfig.browser.ts b/private/weather/src/runtimeConfig.browser.ts index 52bf279b809f6..802d32c8847b7 100644 --- a/private/weather/src/runtimeConfig.browser.ts +++ b/private/weather/src/runtimeConfig.browser.ts @@ -6,12 +6,13 @@ import { Sha256 } from "@aws-crypto/sha256-browser"; import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser"; import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler"; import { invalidProvider } from "@smithy/invalid-dependency"; +import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-browser"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WeatherClientConfig } from "./WeatherClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser"; +import type { WeatherClientConfig } from "./WeatherClient"; /** * @internal diff --git a/private/weather/src/runtimeConfig.native.ts b/private/weather/src/runtimeConfig.native.ts index cd1d8c3b5b673..e859ddc1958ac 100644 --- a/private/weather/src/runtimeConfig.native.ts +++ b/private/weather/src/runtimeConfig.native.ts @@ -1,7 +1,8 @@ // smithy-typescript generated code import { Sha256 } from "@aws-crypto/sha256-js"; -import { WeatherClientConfig } from "./WeatherClient"; + import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser"; +import type { WeatherClientConfig } from "./WeatherClient"; /** * @internal diff --git a/private/weather/src/runtimeConfig.shared.ts b/private/weather/src/runtimeConfig.shared.ts index 3f9030319d5b6..fcd01aed61dfb 100644 --- a/private/weather/src/runtimeConfig.shared.ts +++ b/private/weather/src/runtimeConfig.shared.ts @@ -1,14 +1,15 @@ // smithy-typescript generated code -import { defaultWeatherHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; -import { defaultEndpointResolver } from "./endpoint/endpointResolver"; import { HttpApiKeyAuthSigner, HttpBearerAuthSigner, NoAuthSigner } from "@smithy/core"; import { SigV4Signer } from "@smithy/experimental-identity-and-auth"; import { NoOpLogger } from "@smithy/smithy-client"; -import { IdentityProviderConfig } from "@smithy/types"; +import type { IdentityProviderConfig } from "@smithy/types"; import { parseUrl } from "@smithy/url-parser"; import { fromBase64, toBase64 } from "@smithy/util-base64"; import { fromUtf8, toUtf8 } from "@smithy/util-utf8"; -import { WeatherClientConfig } from "./WeatherClient"; + +import { defaultWeatherHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider"; +import { defaultEndpointResolver } from "./endpoint/endpointResolver"; +import type { WeatherClientConfig } from "./WeatherClient"; /** * @internal diff --git a/private/weather/src/runtimeConfig.ts b/private/weather/src/runtimeConfig.ts index 89d7dfc3b436f..a38e91836e93c 100644 --- a/private/weather/src/runtimeConfig.ts +++ b/private/weather/src/runtimeConfig.ts @@ -10,13 +10,13 @@ import { Hash } from "@smithy/hash-node"; import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry"; import { loadConfig as loadNodeConfig } from "@smithy/node-config-provider"; import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler"; +import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client"; import { calculateBodyLength } from "@smithy/util-body-length-node"; +import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; import { DEFAULT_RETRY_MODE } from "@smithy/util-retry"; -import { WeatherClientConfig } from "./WeatherClient"; + import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared"; -import { loadConfigsForDefaultMode } from "@smithy/smithy-client"; -import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node"; -import { emitWarningIfUnsupportedVersion } from "@smithy/smithy-client"; +import type { WeatherClientConfig } from "./WeatherClient"; /** * @internal diff --git a/private/weather/src/runtimeExtensions.ts b/private/weather/src/runtimeExtensions.ts index e6336861c86d6..07dbd4006afa3 100644 --- a/private/weather/src/runtimeExtensions.ts +++ b/private/weather/src/runtimeExtensions.ts @@ -1,12 +1,13 @@ // smithy-typescript generated code -import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, } from "@aws-sdk/region-config-resolver"; import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http"; import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client"; -import { WeatherExtensionConfiguration } from "./extensionConfiguration"; + +import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration"; +import type { WeatherExtensionConfiguration } from "./extensionConfiguration"; /** * @public diff --git a/yarn.lock b/yarn.lock index 4a396ef79d805..e32a5142966ff 100644 --- a/yarn.lock +++ b/yarn.lock @@ -112,15 +112,15 @@ __metadata: "@smithy/eventstream-serde-node": "npm:^4.2.5" "@smithy/hash-node": "npm:^4.2.5" "@smithy/hash-stream-node": "npm:^4.2.5" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-retry": "npm:^4.2.5" "@smithy/util-stream": "npm:^4.5.6" "@smithy/util-utf8": "npm:^4.2.0" @@ -165,26 +165,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -242,27 +242,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -296,27 +296,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -351,27 +351,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -405,27 +405,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -460,26 +460,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -514,26 +514,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -567,27 +567,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -621,27 +621,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -675,27 +675,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -729,27 +729,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -785,26 +785,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -841,26 +841,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -895,26 +895,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -951,26 +951,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1006,7 +1006,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -1017,24 +1017,24 @@ __metadata: "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/md5-js": "npm:^4.2.5" "@smithy/middleware-apply-body-checksum": "npm:^4.3.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/querystring-builder": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1071,7 +1071,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-codec": "npm:^4.2.5" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" @@ -1083,24 +1083,24 @@ __metadata: "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/md5-js": "npm:^4.2.5" "@smithy/middleware-apply-body-checksum": "npm:^4.3.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/querystring-builder": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1136,28 +1136,28 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/querystring-builder": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1195,28 +1195,28 @@ __metadata: "@aws-sdk/util-user-agent-node": "npm:*" "@aws-sdk/xml-builder": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/querystring-builder": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1251,26 +1251,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1300,26 +1300,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1350,19 +1350,19 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-utf8": "npm:^4.2.0" "@tsconfig/node18": "npm:18.2.4" @@ -1390,19 +1390,19 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-utf8": "npm:^4.2.0" "@tsconfig/node18": "npm:18.2.4" @@ -1514,26 +1514,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1566,26 +1566,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1618,26 +1618,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1671,26 +1671,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1724,26 +1724,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1776,26 +1776,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1829,26 +1829,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1881,26 +1881,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1933,26 +1933,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -1986,26 +1986,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2039,26 +2039,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2091,26 +2091,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2144,26 +2144,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2196,26 +2196,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2250,26 +2250,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2303,26 +2303,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2355,26 +2355,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2407,26 +2407,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2459,26 +2459,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2511,26 +2511,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2563,26 +2563,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2615,26 +2615,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2667,26 +2667,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2719,26 +2719,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2771,26 +2771,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2824,26 +2824,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2877,26 +2877,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2930,26 +2930,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -2982,26 +2982,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3034,26 +3034,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3086,26 +3086,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3138,26 +3138,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3190,26 +3190,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3243,26 +3243,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3296,26 +3296,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3348,26 +3348,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3400,26 +3400,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3452,26 +3452,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3504,26 +3504,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3556,26 +3556,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3608,26 +3608,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3660,26 +3660,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3712,7 +3712,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -3720,21 +3720,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3767,26 +3767,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3819,26 +3819,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3872,7 +3872,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -3880,21 +3880,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3928,26 +3928,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -3980,26 +3980,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4036,7 +4036,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -4044,21 +4044,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4093,26 +4093,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4145,26 +4145,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4197,26 +4197,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4249,26 +4249,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4301,26 +4301,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4353,26 +4353,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4405,26 +4405,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4457,26 +4457,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4509,26 +4509,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4561,26 +4561,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4613,26 +4613,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4665,26 +4665,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4717,26 +4717,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4769,26 +4769,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4821,26 +4821,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4873,26 +4873,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4926,26 +4926,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -4978,26 +4978,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5032,26 +5032,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5084,26 +5084,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5138,26 +5138,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5190,26 +5190,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5242,26 +5242,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5294,26 +5294,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5346,26 +5346,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5398,26 +5398,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5450,26 +5450,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5502,7 +5502,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -5510,21 +5510,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5557,27 +5557,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" - "@smithy/middleware-compression": "npm:^4.3.12" + "@smithy/middleware-compression": "npm:^4.3.13" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5611,26 +5611,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5664,26 +5664,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5716,26 +5716,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5768,26 +5768,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5820,26 +5820,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5872,26 +5872,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5925,26 +5925,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -5978,26 +5978,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6030,26 +6030,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6083,26 +6083,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6135,26 +6135,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6187,26 +6187,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6239,26 +6239,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6292,26 +6292,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6345,26 +6345,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6397,26 +6397,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6449,26 +6449,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6501,26 +6501,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6553,26 +6553,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6605,26 +6605,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6657,26 +6657,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6709,26 +6709,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6761,26 +6761,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6813,26 +6813,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6865,26 +6865,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6917,26 +6917,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -6969,26 +6969,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7021,26 +7021,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7073,26 +7073,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7125,26 +7125,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7177,26 +7177,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7229,26 +7229,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7281,26 +7281,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7333,26 +7333,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7386,26 +7386,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7438,26 +7438,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7490,26 +7490,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7542,26 +7542,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7595,26 +7595,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7647,26 +7647,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7700,26 +7700,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7752,26 +7752,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7804,26 +7804,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7856,26 +7856,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7908,26 +7908,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -7960,26 +7960,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8013,26 +8013,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8065,26 +8065,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8118,26 +8118,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8171,26 +8171,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8223,26 +8223,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8276,26 +8276,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8329,26 +8329,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8382,26 +8382,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8435,26 +8435,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8488,26 +8488,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8541,26 +8541,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8593,26 +8593,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8646,26 +8646,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8699,26 +8699,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8751,26 +8751,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8803,26 +8803,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8856,26 +8856,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8909,26 +8909,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -8962,26 +8962,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9015,26 +9015,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9068,26 +9068,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9121,26 +9121,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9173,26 +9173,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9225,26 +9225,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9277,26 +9277,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9330,26 +9330,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9384,26 +9384,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9436,26 +9436,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9488,26 +9488,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9540,26 +9540,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9592,26 +9592,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9644,26 +9644,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9696,26 +9696,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9748,26 +9748,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9800,26 +9800,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9852,26 +9852,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9904,26 +9904,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -9956,26 +9956,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10008,26 +10008,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10060,26 +10060,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10112,26 +10112,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10165,26 +10165,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10218,26 +10218,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10270,26 +10270,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10325,26 +10325,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10379,26 +10379,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10431,26 +10431,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10483,26 +10483,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10535,26 +10535,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10587,26 +10587,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10639,26 +10639,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10692,26 +10692,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10744,26 +10744,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10796,26 +10796,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10849,26 +10849,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10902,26 +10902,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -10954,26 +10954,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11006,26 +11006,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11058,26 +11058,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11110,26 +11110,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11162,26 +11162,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11214,26 +11214,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11266,26 +11266,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11319,26 +11319,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11371,26 +11371,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11423,26 +11423,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11475,26 +11475,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11527,26 +11527,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11580,26 +11580,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11632,26 +11632,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11684,26 +11684,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11736,26 +11736,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11788,26 +11788,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11840,7 +11840,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -11848,21 +11848,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11896,26 +11896,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -11948,26 +11948,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12000,26 +12000,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12052,26 +12052,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12104,26 +12104,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12156,26 +12156,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12208,26 +12208,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12260,26 +12260,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12312,26 +12312,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12364,26 +12364,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12416,26 +12416,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12468,26 +12468,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12520,26 +12520,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12572,26 +12572,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12625,26 +12625,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12678,26 +12678,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12730,26 +12730,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12782,26 +12782,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12834,7 +12834,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -12842,21 +12842,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12890,26 +12890,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12942,26 +12942,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -12995,7 +12995,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -13003,21 +13003,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13052,26 +13052,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13104,26 +13104,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13156,26 +13156,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13209,26 +13209,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13264,7 +13264,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -13272,21 +13272,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13320,26 +13320,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13372,26 +13372,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13424,26 +13424,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13476,26 +13476,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13528,26 +13528,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13581,26 +13581,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13633,26 +13633,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13686,26 +13686,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13739,26 +13739,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13792,26 +13792,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13844,26 +13844,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13896,26 +13896,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -13948,26 +13948,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14000,26 +14000,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14052,26 +14052,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14104,26 +14104,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14156,26 +14156,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14208,26 +14208,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14260,26 +14260,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14312,26 +14312,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14365,26 +14365,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14417,26 +14417,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14471,26 +14471,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14523,26 +14523,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14575,26 +14575,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14628,26 +14628,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14681,26 +14681,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14733,26 +14733,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14785,26 +14785,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14838,26 +14838,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14890,26 +14890,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14942,26 +14942,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -14994,26 +14994,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15046,26 +15046,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15098,26 +15098,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15150,26 +15150,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15202,26 +15202,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15254,26 +15254,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15306,26 +15306,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15358,26 +15358,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15410,26 +15410,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15462,26 +15462,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15517,26 +15517,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15570,26 +15570,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15623,26 +15623,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15675,26 +15675,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15727,26 +15727,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15779,26 +15779,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15831,26 +15831,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15883,26 +15883,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15935,26 +15935,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -15987,26 +15987,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16039,26 +16039,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16091,26 +16091,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16145,26 +16145,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16197,26 +16197,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16249,26 +16249,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16301,26 +16301,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16353,26 +16353,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16405,26 +16405,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16457,26 +16457,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16509,26 +16509,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16562,26 +16562,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16614,26 +16614,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16666,26 +16666,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16718,26 +16718,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16770,26 +16770,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16822,26 +16822,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16874,26 +16874,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16926,26 +16926,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -16978,26 +16978,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17030,26 +17030,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17082,26 +17082,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17134,26 +17134,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17186,26 +17186,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17238,26 +17238,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17290,26 +17290,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17342,26 +17342,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17394,26 +17394,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17447,26 +17447,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17499,26 +17499,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17552,26 +17552,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17606,7 +17606,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -17614,21 +17614,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17661,26 +17661,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17713,26 +17713,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17765,26 +17765,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17817,26 +17817,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17869,26 +17869,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17922,26 +17922,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -17975,26 +17975,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18027,26 +18027,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18079,26 +18079,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18132,26 +18132,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18188,7 +18188,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -18196,21 +18196,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18243,26 +18243,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18296,26 +18296,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18348,26 +18348,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18400,26 +18400,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18452,26 +18452,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18504,26 +18504,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18556,26 +18556,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18609,26 +18609,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18662,26 +18662,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18714,26 +18714,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18767,26 +18767,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18819,26 +18819,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18871,26 +18871,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18923,26 +18923,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -18975,26 +18975,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19028,26 +19028,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19082,7 +19082,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-blob-browser": "npm:^4.2.6" "@smithy/hash-node": "npm:^4.2.5" @@ -19091,21 +19091,21 @@ __metadata: "@smithy/md5-js": "npm:^4.2.5" "@smithy/middleware-apply-body-checksum": "npm:^4.3.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19147,7 +19147,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -19158,21 +19158,21 @@ __metadata: "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/md5-js": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19207,26 +19207,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19259,26 +19259,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19311,26 +19311,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19363,26 +19363,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19415,26 +19415,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19467,26 +19467,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19519,26 +19519,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19572,26 +19572,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19626,7 +19626,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -19634,21 +19634,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19681,7 +19681,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -19689,21 +19689,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19737,26 +19737,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19790,26 +19790,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19842,26 +19842,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19894,26 +19894,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -19948,26 +19948,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20000,26 +20000,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20052,26 +20052,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20104,26 +20104,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20156,26 +20156,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20208,26 +20208,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20260,26 +20260,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20312,26 +20312,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20364,26 +20364,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20416,26 +20416,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20470,26 +20470,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20522,26 +20522,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20574,26 +20574,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20626,26 +20626,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20679,26 +20679,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20731,26 +20731,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20783,26 +20783,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20835,26 +20835,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20887,26 +20887,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20939,26 +20939,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -20992,27 +20992,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/md5-js": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21045,26 +21045,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21097,26 +21097,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21149,26 +21149,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21202,26 +21202,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21254,26 +21254,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21306,26 +21306,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21359,26 +21359,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21411,26 +21411,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21462,26 +21462,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21514,26 +21514,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21566,26 +21566,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21618,26 +21618,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21670,26 +21670,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21722,26 +21722,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21774,26 +21774,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21826,26 +21826,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21878,26 +21878,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21930,26 +21930,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -21982,26 +21982,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22035,26 +22035,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22088,26 +22088,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22140,26 +22140,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22197,7 +22197,7 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/eventstream-serde-browser": "npm:^4.2.5" "@smithy/eventstream-serde-config-resolver": "npm:^4.3.5" "@smithy/eventstream-serde-node": "npm:^4.2.5" @@ -22205,21 +22205,21 @@ __metadata: "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22252,26 +22252,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22304,26 +22304,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22357,26 +22357,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22409,26 +22409,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22461,26 +22461,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22513,26 +22513,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22565,26 +22565,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22617,26 +22617,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22669,26 +22669,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22721,26 +22721,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22773,26 +22773,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22825,26 +22825,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22877,26 +22877,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22929,26 +22929,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -22981,26 +22981,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -23034,26 +23034,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -23086,26 +23086,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -23138,26 +23138,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -23190,26 +23190,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -23242,26 +23242,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -23280,7 +23280,7 @@ __metadata: version: 0.0.0-use.local resolution: "@aws-sdk/cloudfront-signer@workspace:packages/cloudfront-signer" dependencies: - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/url-parser": "npm:^4.2.5" "@tsconfig/recommended": "npm:1.0.1" concurrently: "npm:7.0.0" @@ -23297,12 +23297,12 @@ __metadata: dependencies: "@aws-sdk/types": "npm:*" "@aws-sdk/xml-builder": "npm:*" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/property-provider": "npm:^4.2.5" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-middleware": "npm:^4.2.5" @@ -23379,7 +23379,7 @@ __metadata: "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/property-provider": "npm:^4.2.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/util-stream": "npm:^4.5.6" "@tsconfig/recommended": "npm:1.0.1" @@ -23543,7 +23543,7 @@ __metadata: "@aws-sdk/nested-clients": "npm:*" "@aws-sdk/types": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/credential-provider-imds": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/property-provider": "npm:^4.2.5" @@ -23674,8 +23674,8 @@ __metadata: "@aws-sdk/client-dynamodb": "npm:*" "@aws-sdk/core": "npm:*" "@aws-sdk/util-dynamodb": "npm:*" - "@smithy/core": "npm:^3.18.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/core": "npm:^3.18.6" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@tsconfig/recommended": "npm:1.0.1" "@types/node": "npm:^18.19.69" @@ -23695,8 +23695,8 @@ __metadata: dependencies: "@aws-sdk/client-s3": "npm:*" "@smithy/abort-controller": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@tsconfig/recommended": "npm:1.0.1" "@types/node": "npm:^18.19.69" @@ -23929,10 +23929,10 @@ __metadata: dependencies: "@aws-sdk/types": "npm:*" "@aws-sdk/util-format-url": "npm:*" - "@smithy/middleware-endpoint": "npm:^4.3.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@tsconfig/recommended": "npm:1.0.1" concurrently: "npm:7.0.0" @@ -23981,7 +23981,7 @@ __metadata: dependencies: "@aws-sdk/types": "npm:*" "@aws-sdk/util-format-url": "npm:*" - "@smithy/middleware-endpoint": "npm:^4.3.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/signature-v4": "npm:^5.3.5" "@smithy/types": "npm:^4.9.0" @@ -24037,11 +24037,11 @@ __metadata: "@aws-sdk/core": "npm:*" "@aws-sdk/types": "npm:*" "@aws-sdk/util-arn-parser": "npm:*" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/signature-v4": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/util-config-provider": "npm:^4.2.0" "@smithy/util-middleware": "npm:^4.2.5" @@ -24061,7 +24061,7 @@ __metadata: resolution: "@aws-sdk/middleware-sdk-sqs@workspace:packages/middleware-sdk-sqs" dependencies: "@aws-sdk/types": "npm:*" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/util-hex-encoding": "npm:^4.2.0" "@smithy/util-utf8": "npm:^4.2.0" @@ -24172,7 +24172,7 @@ __metadata: "@aws-sdk/core": "npm:*" "@aws-sdk/types": "npm:*" "@aws-sdk/util-endpoints": "npm:*" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/types": "npm:^4.9.0" "@tsconfig/recommended": "npm:1.0.1" @@ -24226,26 +24226,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -24337,7 +24337,7 @@ __metadata: "@aws-sdk/client-s3": "npm:*" "@aws-sdk/types": "npm:*" "@aws-sdk/util-format-url": "npm:*" - "@smithy/middleware-endpoint": "npm:^4.3.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" "@smithy/signature-v4": "npm:^5.3.5" "@smithy/types": "npm:^4.9.0" "@smithy/util-hex-encoding": "npm:^4.2.0" @@ -24362,9 +24362,9 @@ __metadata: "@aws-sdk/types": "npm:*" "@aws-sdk/util-format-url": "npm:*" "@smithy/hash-node": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@tsconfig/recommended": "npm:1.0.1" "@types/node": "npm:^18.19.69" @@ -24453,7 +24453,7 @@ __metadata: version: 0.0.0-use.local resolution: "@aws-sdk/smithy-client@workspace:packages/smithy-client" dependencies: - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@tsconfig/recommended": "npm:1.0.1" "@types/node": "npm:^18.19.69" concurrently: "npm:7.0.0" @@ -24529,7 +24529,7 @@ __metadata: "@aws-sdk/types": "npm:*" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@tsconfig/recommended": "npm:1.0.1" "@types/node": "npm:^18.19.69" @@ -24686,26 +24686,26 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -24737,27 +24737,27 @@ __metadata: "@aws-sdk/util-user-agent-browser": "npm:*" "@aws-sdk/util-user-agent-node": "npm:*" "@smithy/config-resolver": "npm:^4.4.3" - "@smithy/core": "npm:^3.18.5" - "@smithy/experimental-identity-and-auth": "npm:^0.5.12" + "@smithy/core": "npm:^3.18.6" + "@smithy/experimental-identity-and-auth": "npm:^0.5.13" "@smithy/fetch-http-handler": "npm:^5.3.6" "@smithy/hash-node": "npm:^4.2.5" "@smithy/invalid-dependency": "npm:^4.2.5" "@smithy/middleware-content-length": "npm:^4.2.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/node-http-handler": "npm:^4.4.5" "@smithy/protocol-http": "npm:^5.3.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-base64": "npm:^4.3.0" "@smithy/util-body-length-browser": "npm:^4.2.0" "@smithy/util-body-length-node": "npm:^4.2.1" - "@smithy/util-defaults-mode-browser": "npm:^4.3.11" - "@smithy/util-defaults-mode-node": "npm:^4.2.14" + "@smithy/util-defaults-mode-browser": "npm:^4.3.12" + "@smithy/util-defaults-mode-node": "npm:^4.2.15" "@smithy/util-endpoints": "npm:^3.2.5" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" @@ -28690,9 +28690,9 @@ __metadata: languageName: node linkType: hard -"@smithy/core@npm:^3.18.5": - version: 3.18.5 - resolution: "@smithy/core@npm:3.18.5" +"@smithy/core@npm:^3.18.6": + version: 3.18.6 + resolution: "@smithy/core@npm:3.18.6" dependencies: "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/protocol-http": "npm:^5.3.5" @@ -28704,7 +28704,7 @@ __metadata: "@smithy/util-utf8": "npm:^4.2.0" "@smithy/uuid": "npm:^1.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/c6ccaf4a0639524e0141905224cbbd0142a98ee4917bc0e3e914bcc887be5f7740f1baa2717dab131f5e185fa69002d3cb5cb1a40e5a1a31c5c2c30bd946060d + checksum: 10c0/930a34641f4e9d97877a0348e8338eebaf476d9adad4d15f8548b978db0776da3dae5c421ca01ae14ea537622479a26ebcee3561f0471a65dcf6100776e37d5f languageName: node linkType: hard @@ -28776,19 +28776,19 @@ __metadata: languageName: node linkType: hard -"@smithy/experimental-identity-and-auth@npm:^0.5.12": - version: 0.5.12 - resolution: "@smithy/experimental-identity-and-auth@npm:0.5.12" +"@smithy/experimental-identity-and-auth@npm:^0.5.13": + version: 0.5.13 + resolution: "@smithy/experimental-identity-and-auth@npm:0.5.13" dependencies: - "@smithy/middleware-endpoint": "npm:^4.3.12" - "@smithy/middleware-retry": "npm:^4.4.12" + "@smithy/middleware-endpoint": "npm:^4.3.13" + "@smithy/middleware-retry": "npm:^4.4.13" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/signature-v4": "npm:^5.3.5" "@smithy/types": "npm:^4.9.0" "@smithy/util-middleware": "npm:^4.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/ae706faa287686ac035a3700969efd6548cf816683617423acd0fab8605ecb38dd3ae1bfa4f3aa94f87fcc4b61a61e86c665e7480e992b7ae19dfaa81dc8d84d + checksum: 10c0/c79dbfec4df02d6c15136703814d94679c2a08a19b363c03ac93c4647d85e4b629be5bf9e33355997b09f216dc0b62a7f01ba73fb8acfe4c9153d5a390a576a2 languageName: node linkType: hard @@ -28891,11 +28891,11 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-compression@npm:^4.3.12": - version: 4.3.12 - resolution: "@smithy/middleware-compression@npm:4.3.12" +"@smithy/middleware-compression@npm:^4.3.13": + version: 4.3.13 + resolution: "@smithy/middleware-compression@npm:4.3.13" dependencies: - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/is-array-buffer": "npm:^4.2.0" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/protocol-http": "npm:^5.3.5" @@ -28905,7 +28905,7 @@ __metadata: "@smithy/util-utf8": "npm:^4.2.0" fflate: "npm:0.8.1" tslib: "npm:^2.6.2" - checksum: 10c0/0063497f4cfc0e88f9bdf8bd0524f9c4db90e069a928e939b414ddd04dd1b5266ba9f3d74de4f03dba4ea67af444b84d6dbcb5ec6ff8a473e1dd303c49fcfe6d + checksum: 10c0/52637e50e6f38604735d1460abb6721716f42c7ed51f85c0ad0e3a895f2dc5a57c7d0f85397cea45ae2eefbbdfb8b37a686849ba92bbf7e381a9b45353764ba5 languageName: node linkType: hard @@ -28920,11 +28920,11 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^4.3.12": - version: 4.3.12 - resolution: "@smithy/middleware-endpoint@npm:4.3.12" +"@smithy/middleware-endpoint@npm:^4.3.13": + version: 4.3.13 + resolution: "@smithy/middleware-endpoint@npm:4.3.13" dependencies: - "@smithy/core": "npm:^3.18.5" + "@smithy/core": "npm:^3.18.6" "@smithy/middleware-serde": "npm:^4.2.6" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/shared-ini-file-loader": "npm:^4.4.0" @@ -28932,24 +28932,24 @@ __metadata: "@smithy/url-parser": "npm:^4.2.5" "@smithy/util-middleware": "npm:^4.2.5" tslib: "npm:^2.6.2" - checksum: 10c0/0bfb1d825d15eed389e603e547aab134c8064c3e82fad9241f721d0f896d2f3490516d8b0a845869c78a1d071040df26cd4e3234b171bab130f0da13cb4f2a94 + checksum: 10c0/88cd7cd7e66e46683ada7714a407c54bb8a3b69d615d85c2ec08774eda1afbfcc2fe28f46103c8915a9ef5ddc78c69e383572a4f7db696d49a3e945570a14147 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^4.4.12": - version: 4.4.12 - resolution: "@smithy/middleware-retry@npm:4.4.12" +"@smithy/middleware-retry@npm:^4.4.13": + version: 4.4.13 + resolution: "@smithy/middleware-retry@npm:4.4.13" dependencies: "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/service-error-classification": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" "@smithy/util-middleware": "npm:^4.2.5" "@smithy/util-retry": "npm:^4.2.5" "@smithy/uuid": "npm:^1.1.0" tslib: "npm:^2.6.2" - checksum: 10c0/3c958a58c6346b07d3d1231e4835754fe159f4697bb2b8d8a0e173ec9325e92d5e73a21b1f8f7854b390fc5a5715c44a44a50ea389c17edf95178a8173d819c4 + checksum: 10c0/bcf07e6697f6099290a7e44b52c9342a4116c407ed3b96c17aff0dbdb45e29b098d4483dc86af9cf4c8844969d7bd62275aa8d1813f24e0144b8f0eb8ad31f73 languageName: node linkType: hard @@ -29088,18 +29088,18 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^4.9.8": - version: 4.9.8 - resolution: "@smithy/smithy-client@npm:4.9.8" +"@smithy/smithy-client@npm:^4.9.9": + version: 4.9.9 + resolution: "@smithy/smithy-client@npm:4.9.9" dependencies: - "@smithy/core": "npm:^3.18.5" - "@smithy/middleware-endpoint": "npm:^4.3.12" + "@smithy/core": "npm:^3.18.6" + "@smithy/middleware-endpoint": "npm:^4.3.13" "@smithy/middleware-stack": "npm:^4.2.5" "@smithy/protocol-http": "npm:^5.3.5" "@smithy/types": "npm:^4.9.0" "@smithy/util-stream": "npm:^4.5.6" tslib: "npm:^2.6.2" - checksum: 10c0/42752686da591865cea0f5f7379eb729bdba003ddf59cfc05368e4155b350d6499772426e66b32c9e9af003fe1eb812170652a5d0f996097df4411c722120852 + checksum: 10c0/b1601fa620b1da83fdda0ada5a7a0f8be135f7ae58fbbdcaa50c1b11aa8ea7683fd6d55fde9a0118c031e1aa9116a81ee55dc25c4e56b9a4f829c2e38b7a577f languageName: node linkType: hard @@ -29190,30 +29190,30 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^4.3.11": - version: 4.3.11 - resolution: "@smithy/util-defaults-mode-browser@npm:4.3.11" +"@smithy/util-defaults-mode-browser@npm:^4.3.12": + version: 4.3.12 + resolution: "@smithy/util-defaults-mode-browser@npm:4.3.12" dependencies: "@smithy/property-provider": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/ec5601922356a7249448007d03036e9ffc9ddede5f2567f5de2a826a2dc18c1f27c038543eae96a58837a248f412fbb67c965cc43e1029a2519e8440760e790f + checksum: 10c0/dadd6de6310f726a546006564ab254615a42f37f6e9159b98fbab46666e7192e7a66617253748d8ba213b641e1f539f5478c260023fb8fc5e45a3473efa77691 languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^4.2.14": - version: 4.2.14 - resolution: "@smithy/util-defaults-mode-node@npm:4.2.14" +"@smithy/util-defaults-mode-node@npm:^4.2.15": + version: 4.2.15 + resolution: "@smithy/util-defaults-mode-node@npm:4.2.15" dependencies: "@smithy/config-resolver": "npm:^4.4.3" "@smithy/credential-provider-imds": "npm:^4.2.5" "@smithy/node-config-provider": "npm:^4.3.5" "@smithy/property-provider": "npm:^4.2.5" - "@smithy/smithy-client": "npm:^4.9.8" + "@smithy/smithy-client": "npm:^4.9.9" "@smithy/types": "npm:^4.9.0" tslib: "npm:^2.6.2" - checksum: 10c0/965860eddf4f73de7574060bc717a8ca27591456ca0cd36f114ceab2ba5a05cb53931b40088642bc866e3bde9f812bb60b5a12ff04fe1820d059b362a9443a41 + checksum: 10c0/fb1bf771513bcf02440a680e38fc6f67bbabf8bbe72c04c773cfa45ba5563982f6d760cc1fdcc26c38f6345cea754291301db8c79f442cef22eff02656165be8 languageName: node linkType: hard